commit 369a9eb8e7bc98976461b408e847b001e2c68df2 Author: Anna-Sara Sélea Date: Tue May 12 20:43:17 2026 +0200 Setup, Markup and Styling diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a186cd2 --- /dev/null +++ b/.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/.env.example b/.env.example new file mode 100644 index 0000000..c0660ea --- /dev/null +++ b/.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/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fcb21d3 --- /dev/null +++ b/.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/.gitignore b/.gitignore new file mode 100644 index 0000000..0eeb578 --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +*.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/pail +/vendor +_ide_helper.php +Homestead.json +Homestead.yaml +Thumbs.db diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5d8198c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,33 @@ +FROM php:8.4-apache + + +RUN apt-get update && apt-get install -y \ + gnupg2 \ + libzip-dev \ + zlib1g-dev \ + libpng-dev \ + libfreetype6-dev \ + libjpeg62-turbo-dev \ + libmcrypt-dev \ + libxml2-dev \ + libicu-dev \ + libpq-dev \ + && docker-php-ext-configure gd --with-freetype --with-jpeg \ + && docker-php-ext-install -j$(nproc) zip pdo exif pdo_pgsql gd intl \ + && docker-php-ext-enable exif \ + && rm -rf /var/lib/apt/lists/* + +# Enable Apache modules +RUN a2enmod rewrite + +# Align www-data UID for permission consistency with host (optional but common) +RUN usermod -u 1000 www-data + +# Install Composer using the official image (faster/cleaner than curl) +COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer +# Configure Apache Document Root +ENV APACHE_DOCUMENT_ROOT /var/www/html/public +RUN sed -ri -e 's!/var/www/html!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/sites-available/*.conf \ + && sed -ri -e 's!/var/www/!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/apache2.conf /etc/apache2/conf-available/*.conf + +WORKDIR /var/www/html \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..5ad1377 --- /dev/null +++ b/README.md @@ -0,0 +1,58 @@ +

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. + +In addition, [Laracasts](https://laracasts.com) 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. + +You can also watch bite-sized lessons with real-world projects on [Laravel Learn](https://laravel.com/learn), where you will be guided through building a Laravel application from scratch while learning PHP fundamentals. + +## Agentic Development + +Laravel's predictable structure and conventions make it ideal for AI coding agents like Claude Code, Cursor, and GitHub Copilot. Install [Laravel Boost](https://laravel.com/docs/ai) to supercharge your AI workflow: + +```bash +composer require laravel/boost --dev + +php artisan boost:install +``` + +Boost provides your agent 15+ tools and skills that help agents build Laravel applications while following best practices. + +## 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/app/Filament/Pages/Home.php b/app/Filament/Pages/Home.php new file mode 100644 index 0000000..c7b5107 --- /dev/null +++ b/app/Filament/Pages/Home.php @@ -0,0 +1,29 @@ +user(); + + // Redirect based on role or specific logic + if ($user->role === 'admin') { + // Your specific resource create path + redirect('/photo-geo-data'); + } else { + // Redirect regular users to the list view + redirect('/photo-geo-data/create'); + } + } +} diff --git a/app/Filament/Pages/ThankYou.php b/app/Filament/Pages/ThankYou.php new file mode 100644 index 0000000..77acb07 --- /dev/null +++ b/app/Filament/Pages/ThankYou.php @@ -0,0 +1,31 @@ +record = session('created_record') ?? [ + 'title' => 'Test Photo', + 'uploaded_by' => 'Anna-Sara', + 'captured_at' => '2026-04-05', + 'lat' => '59.3293', + 'lng' => '18.0686', + 'desc' => 'A test description', + 'story' => 'A longer story about this photo.', + ]; + } +} diff --git a/app/Filament/Resources/PhotoGeoData/Pages/Concerns/HandlesImageMetadata.php b/app/Filament/Resources/PhotoGeoData/Pages/Concerns/HandlesImageMetadata.php new file mode 100644 index 0000000..9aaf534 --- /dev/null +++ b/app/Filament/Resources/PhotoGeoData/Pages/Concerns/HandlesImageMetadata.php @@ -0,0 +1,87 @@ +extractImageMetadata($this->record->image_path); + + if ($metadata === null) { + return; + } + + $this->record->update(['metadata' => $metadata]); + } + + private function extractImageMetadata(mixed $imagePath): ?array + { + if (empty($imagePath)) { + return null; + } + + $path = is_array($imagePath) ? reset($imagePath) : $imagePath; + $fullPath = Storage::disk('public')->path($path); + + if (!file_exists($fullPath)) { + Log::warning('extractImageMetadata: file not found', ['path' => $fullPath]); + return null; + } + + $exif = @exif_read_data($fullPath, null, true); + + if ($exif === false) { + Log::debug('extractImageMetadata: no EXIF data', ['path' => $fullPath]); + return null; + } + + return $exif; + } + + private function extractGpsCoordinates(array $exif): ?array + { + $gps = $exif['GPS'] ?? null; + + if (!$gps) { + return null; + } + + $lat = $this->rationalToDecimal($gps['GPSLatitude'] ?? null); + $lng = $this->rationalToDecimal($gps['GPSLongitude'] ?? null); + + if ($lat === null || $lng === null) { + return null; + } + + if (($gps['GPSLatitudeRef'] ?? 'N') === 'S') { + $lat = -$lat; + } + + if (($gps['GPSLongitudeRef'] ?? 'E') === 'W') { + $lng = -$lng; + } + + return ['lat' => $lat, 'lng' => $lng]; + } + + private function rationalToDecimal(?array $rational): ?float + { + if (!$rational || count($rational) < 3) { + return null; + } + + return $this->rationalValue($rational[0]) + + $this->rationalValue($rational[1]) / 60 + + $this->rationalValue($rational[2]) / 3600; + } + + private function rationalValue(string $rational): float + { + [$num, $den] = array_pad(explode('/', $rational, 2), 2, '1'); + return $den != 0 ? (float) $num / (float) $den : 0.0; + } +} diff --git a/app/Filament/Resources/PhotoGeoData/Pages/CreatePhotoGeoData.php b/app/Filament/Resources/PhotoGeoData/Pages/CreatePhotoGeoData.php new file mode 100644 index 0000000..6bb5676 --- /dev/null +++ b/app/Filament/Resources/PhotoGeoData/Pages/CreatePhotoGeoData.php @@ -0,0 +1,46 @@ +user()?->role === 'user') { + return []; + } + + return parent::getBreadcrumbs(); + } + + + protected function getFormActions(): array + { + return [ + $this->getCreateFormAction(), + $this->getCancelFormAction(), + ]; + } + + protected function afterCreate(): void + { + $this->syncMetadataFromImage(); + + session()->flash('created_record', $this->record->only([ + 'title', 'uploaded_by', 'captured_at', 'lat', 'lng', 'desc', 'story', 'image_path', + ])); + } +} diff --git a/app/Filament/Resources/PhotoGeoData/Pages/EditPhotoGeoData.php b/app/Filament/Resources/PhotoGeoData/Pages/EditPhotoGeoData.php new file mode 100644 index 0000000..42bc94a --- /dev/null +++ b/app/Filament/Resources/PhotoGeoData/Pages/EditPhotoGeoData.php @@ -0,0 +1,27 @@ +syncMetadataFromImage(); + } +} diff --git a/app/Filament/Resources/PhotoGeoData/Pages/ListPhotoGeoData.php b/app/Filament/Resources/PhotoGeoData/Pages/ListPhotoGeoData.php new file mode 100644 index 0000000..56a64c5 --- /dev/null +++ b/app/Filament/Resources/PhotoGeoData/Pages/ListPhotoGeoData.php @@ -0,0 +1,19 @@ +user()?->role === 'admin'; + } + + + public static function getNavigationIcon(): string + { + return 'heroicon-o-plus-circle'; // Your symbol for the left menu + } + + + public static function getRelations(): array + { + return [ + // + ]; + } + + public static function getPages(): array + { + return [ + 'index' => ListPhotoGeoData::route('/'), + 'create' => CreatePhotoGeoData::route('/create'), + 'edit' => EditPhotoGeoData::route('/{record}/edit'), + ]; + } +} diff --git a/app/Filament/Resources/PhotoGeoData/Schemas/PhotoGeoDataForm.php b/app/Filament/Resources/PhotoGeoData/Schemas/PhotoGeoDataForm.php new file mode 100644 index 0000000..397a6f7 --- /dev/null +++ b/app/Filament/Resources/PhotoGeoData/Schemas/PhotoGeoDataForm.php @@ -0,0 +1,55 @@ +components([ + FileUpload::make('image_path') + ->label('Bild') + ->required() + ->columnSpan('full') + ->disk('public') + ->directory('photos') + ->image(), + TextInput::make('title') + ->label('Rubrik') + ->columnSpan('full') + ->required(), + TextInput::make('uploaded_by') + ->label('Uppladdat av') + ->columnSpan('full') + ->required(), + DatePicker::make('captured_at') + ->label('Datum då foto togs') + ->columnSpan('full'), + TextInput::make('desc') + ->label('Kort beskrivning') + ->columnSpan('full'), + Textarea::make('story') + ->label('Berättelse') + ->columnSpanFull(), + MapPicker::make('location') + ->label('Plats') + ->height(400) + ->center(57.63072, 12.847787) + ->zoom(15) + ->autoCenter() + ->tileLayersUrl(TileLayer::OpenStreetMap) + ->columnSpanFull() + ->latitudeFieldName('lat') + ->longitudeFieldName('lng'), + ]); + } +} diff --git a/app/Filament/Resources/PhotoGeoData/Tables/PhotoGeoDataTable.php b/app/Filament/Resources/PhotoGeoData/Tables/PhotoGeoDataTable.php new file mode 100644 index 0000000..a0ed0ac --- /dev/null +++ b/app/Filament/Resources/PhotoGeoData/Tables/PhotoGeoDataTable.php @@ -0,0 +1,63 @@ +columns([ + TextColumn::make('id') + ->label('ID') + ->searchable() + ->toggleable(isToggledHiddenByDefault: true), + TextColumn::make('uploaded_by') + + ->searchable() + ->toggleable(isToggledHiddenByDefault: true) + ->searchable(), + ImageColumn::make('image_path') + ->disk('public'), + TextColumn::make('captured_at') + ->dateTime() + ->sortable(), + TextColumn::make('lat') + ->numeric() + ->sortable() + ->toggleable(isToggledHiddenByDefault: true), + TextColumn::make('lng') + ->numeric() + ->sortable() + ->toggleable(isToggledHiddenByDefault: true), + TextColumn::make('title') + ->searchable(), + TextColumn::make('created_at') + ->dateTime() + ->sortable() + ->toggleable(isToggledHiddenByDefault: true), + TextColumn::make('updated_at') + ->dateTime() + ->sortable() + ->toggleable(isToggledHiddenByDefault: true), + ]) + ->filters([ + // + ]) + ->recordActions([ + EditAction::make(), + ]) + ->toolbarActions([ + BulkActionGroup::make([ + DeleteBulkAction::make(), + ]), + ]); + } +} diff --git a/app/Filament/Resources/Users/Pages/CreateUser.php b/app/Filament/Resources/Users/Pages/CreateUser.php new file mode 100644 index 0000000..125b3ff --- /dev/null +++ b/app/Filament/Resources/Users/Pages/CreateUser.php @@ -0,0 +1,11 @@ +components([ + TextInput::make('name') + ->required(), + TextInput::make('email') + ->label('Email address') + ->email() + ->required(), + DateTimePicker::make('email_verified_at'), + TextInput::make('password') + ->password() + ->required(), + TextInput::make('role') + ->required() + ->default('admin'), + ]); + } +} diff --git a/app/Filament/Resources/Users/Tables/UsersTable.php b/app/Filament/Resources/Users/Tables/UsersTable.php new file mode 100644 index 0000000..78d496d --- /dev/null +++ b/app/Filament/Resources/Users/Tables/UsersTable.php @@ -0,0 +1,48 @@ +columns([ + TextColumn::make('name') + ->searchable(), + TextColumn::make('email') + ->label('Email address') + ->searchable(), + TextColumn::make('email_verified_at') + ->dateTime() + ->sortable(), + TextColumn::make('role') + ->searchable(), + TextColumn::make('created_at') + ->dateTime() + ->sortable() + ->toggleable(isToggledHiddenByDefault: true), + TextColumn::make('updated_at') + ->dateTime() + ->sortable() + ->toggleable(isToggledHiddenByDefault: true), + ]) + ->filters([ + // + ]) + ->recordActions([ + EditAction::make(), + ]) + ->toolbarActions([ + BulkActionGroup::make([ + DeleteBulkAction::make(), + ]), + ]); + } +} diff --git a/app/Filament/Resources/Users/UserResource.php b/app/Filament/Resources/Users/UserResource.php new file mode 100644 index 0000000..30d7349 --- /dev/null +++ b/app/Filament/Resources/Users/UserResource.php @@ -0,0 +1,54 @@ +user()->role === 'admin'; + } + + public static function getRelations(): array + { + return [ + // + ]; + } + + public static function getPages(): array + { + return [ + 'index' => ListUsers::route('/'), + 'create' => CreateUser::route('/create'), + 'edit' => EditUser::route('/{record}/edit'), + ]; + } +} diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..8677cd5 --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,8 @@ + 'array', + ]; +} diff --git a/app/Models/User.php b/app/Models/User.php new file mode 100644 index 0000000..3fcef08 --- /dev/null +++ b/app/Models/User.php @@ -0,0 +1,32 @@ + */ + use HasFactory, Notifiable; + + /** + * Get the attributes that should be cast. + * + * @return array + */ + protected function casts(): array + { + return [ + 'email_verified_at' => 'datetime', + 'password' => 'hashed', + ]; + } +} diff --git a/app/Policies/PhotoGeoDataPolicy.php b/app/Policies/PhotoGeoDataPolicy.php new file mode 100644 index 0000000..0b1c7e9 --- /dev/null +++ b/app/Policies/PhotoGeoDataPolicy.php @@ -0,0 +1,71 @@ +role === 'admin'; + } + + /** + * Determine whether the user can create models. + */ + public function create(User $user): bool + { + return true; + } + + /** + * Determine whether the user can update the model. + */ + public function update(User $user, PhotoGeoData $record): bool + { + return $user->role === 'admin'; + } + + /** + * Determine whether the user can delete the model. + */ + public function delete(User $user, PhotoGeoData $record): bool + { + return $user->role === 'admin'; + } + + /** + * Determine whether the user can restore the model. + */ + public function restore(User $user, PhotoGeoData $record): bool + { + return $user->role === 'admin'; + } + + /** + * Determine whether the user can permanently delete the model. + */ + public function forceDelete(User $user, PhotoGeoData $record): bool + { + return $user->role === 'admin'; + } + +} diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php new file mode 100644 index 0000000..e67dd92 --- /dev/null +++ b/app/Providers/AppServiceProvider.php @@ -0,0 +1,25 @@ + (auth()->user()?->role !== 'admin') + ? '' + : '', + ); + } + + public function panel(Panel $panel): Panel + { + return $panel + ->default() + ->id('admin') + ->path('') + ->login() + ->renderHook( + PanelsRenderHook::AUTH_LOGIN_FORM_BEFORE, + fn (): string => Blade::render('

Välkommen! Logga in för att komma åt formuläret.

'), + ) + ->colors([ + 'primary' => Color::Zinc, + ]) + ->discoverResources(in: app_path('Filament/Resources'), for: 'App\Filament\Resources') + ->pages([ + \App\Filament\Pages\Home::class, + \App\Filament\Pages\ThankYou::class, + ]) + ->discoverWidgets(in: app_path('Filament/Widgets'), for: 'App\Filament\Widgets') + ->widgets([ + + ]) + ->middleware([ + EncryptCookies::class, + AddQueuedCookiesToResponse::class, + StartSession::class, + AuthenticateSession::class, + ShareErrorsFromSession::class, + PreventRequestForgery::class, + SubstituteBindings::class, + DisableBladeIconComponents::class, + DispatchServingFilamentEvent::class, + ]) + ->authMiddleware([ + Authenticate::class, + ]) + ->darkMode(false) + ; + } +} diff --git a/artisan b/artisan new file mode 100755 index 0000000..c35e31d --- /dev/null +++ b/artisan @@ -0,0 +1,18 @@ +#!/usr/bin/env php +handleCommand(new ArgvInput); + +exit($status); diff --git a/bootstrap/app.php b/bootstrap/app.php new file mode 100644 index 0000000..c183276 --- /dev/null +++ b/bootstrap/app.php @@ -0,0 +1,18 @@ +withRouting( + web: __DIR__.'/../routes/web.php', + commands: __DIR__.'/../routes/console.php', + health: '/up', + ) + ->withMiddleware(function (Middleware $middleware): void { + // + }) + ->withExceptions(function (Exceptions $exceptions): void { + // + })->create(); diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore new file mode 100755 index 0000000..d6b7ef3 --- /dev/null +++ b/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/bootstrap/providers.php b/bootstrap/providers.php new file mode 100644 index 0000000..22744d1 --- /dev/null +++ b/bootstrap/providers.php @@ -0,0 +1,6 @@ +=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": "chillerlan/php-qrcode", + "version": "5.0.5", + "source": { + "type": "git", + "url": "https://github.com/chillerlan/php-qrcode.git", + "reference": "7b66282572fc14075c0507d74d9837dab25b38d6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/chillerlan/php-qrcode/zipball/7b66282572fc14075c0507d74d9837dab25b38d6", + "reference": "7b66282572fc14075c0507d74d9837dab25b38d6", + "shasum": "" + }, + "require": { + "chillerlan/php-settings-container": "^2.1.6 || ^3.2.1", + "ext-mbstring": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "chillerlan/php-authenticator": "^4.3.1 || ^5.2.1", + "ext-fileinfo": "*", + "phan/phan": "^5.5.2", + "phpcompatibility/php-compatibility": "10.x-dev", + "phpmd/phpmd": "^2.15", + "phpunit/phpunit": "^9.6", + "setasign/fpdf": "^1.8.2", + "slevomat/coding-standard": "^8.23.0", + "squizlabs/php_codesniffer": "^4.0.0" + }, + "suggest": { + "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.", + "setasign/fpdf": "Required to use the QR FPDF output.", + "simple-icons/simple-icons": "SVG icons that you can use to embed as logos in the QR Code" + }, + "type": "library", + "autoload": { + "psr-4": { + "chillerlan\\QRCode\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT", + "Apache-2.0" + ], + "authors": [ + { + "name": "Kazuhiko Arase", + "homepage": "https://github.com/kazuhikoarase/qrcode-generator" + }, + { + "name": "ZXing Authors", + "homepage": "https://github.com/zxing/zxing" + }, + { + "name": "Ashot Khanamiryan", + "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder" + }, + { + "name": "Smiley", + "email": "smiley@chillerlan.net", + "homepage": "https://github.com/codemasher" + }, + { + "name": "Contributors", + "homepage": "https://github.com/chillerlan/php-qrcode/graphs/contributors" + } + ], + "description": "A QR Code generator and reader with a user-friendly API. PHP 7.4+", + "homepage": "https://github.com/chillerlan/php-qrcode", + "keywords": [ + "phpqrcode", + "qr", + "qr code", + "qr-reader", + "qrcode", + "qrcode-generator", + "qrcode-reader" + ], + "support": { + "docs": "https://php-qrcode.readthedocs.io", + "issues": "https://github.com/chillerlan/php-qrcode/issues", + "source": "https://github.com/chillerlan/php-qrcode" + }, + "funding": [ + { + "url": "https://ko-fi.com/codemasher", + "type": "Ko-Fi" + } + ], + "time": "2025-11-23T23:51:44+00:00" + }, + { + "name": "chillerlan/php-settings-container", + "version": "3.3.0", + "source": { + "type": "git", + "url": "https://github.com/chillerlan/php-settings-container.git", + "reference": "a0a487cbf5344f721eb504bf0f59bada40c381b7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/chillerlan/php-settings-container/zipball/a0a487cbf5344f721eb504bf0f59bada40c381b7", + "reference": "a0a487cbf5344f721eb504bf0f59bada40c381b7", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^8.1" + }, + "require-dev": { + "phan/phan": "^5.5.2", + "phpmd/phpmd": "^2.15", + "phpstan/phpstan": "^2.1.31", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^10.5", + "slevomat/coding-standard": "^8.22", + "squizlabs/php_codesniffer": "^4.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "chillerlan\\Settings\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Smiley", + "email": "smiley@chillerlan.net", + "homepage": "https://github.com/codemasher" + } + ], + "description": "A container class for immutable settings objects. Not a DI container.", + "homepage": "https://github.com/chillerlan/php-settings-container", + "keywords": [ + "Settings", + "configuration", + "container", + "helper", + "property hook" + ], + "support": { + "issues": "https://github.com/chillerlan/php-settings-container/issues", + "source": "https://github.com/chillerlan/php-settings-container" + }, + "funding": [ + { + "url": "https://www.paypal.com/donate?hosted_button_id=WLYUNAT9ZTJZ4", + "type": "custom" + }, + { + "url": "https://ko-fi.com/codemasher", + "type": "ko_fi" + } + ], + "time": "2026-03-20T21:10:52+00:00" + }, + { + "name": "danharrin/date-format-converter", + "version": "v0.3.1", + "source": { + "type": "git", + "url": "https://github.com/danharrin/date-format-converter.git", + "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/7c31171bc981e48726729a5f3a05a2d2b63f0b1e", + "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0" + }, + "type": "library", + "autoload": { + "files": [ + "src/helpers.php", + "src/standards.php" + ], + "psr-4": { + "DanHarrin\\DateFormatConverter\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dan Harrin", + "email": "dan@danharrin.com" + } + ], + "description": "Convert token-based date formats between standards.", + "homepage": "https://github.com/danharrin/date-format-converter", + "support": { + "issues": "https://github.com/danharrin/date-format-converter/issues", + "source": "https://github.com/danharrin/date-format-converter" + }, + "funding": [ + { + "url": "https://github.com/danharrin", + "type": "github" + } + ], + "time": "2024-06-13T09:38:44+00:00" + }, + { + "name": "danharrin/livewire-rate-limiting", + "version": "v2.2.0", + "source": { + "type": "git", + "url": "https://github.com/danharrin/livewire-rate-limiting.git", + "reference": "c03e649220089f6e5a52d422e24e3f98c73e456d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/c03e649220089f6e5a52d422e24e3f98c73e456d", + "reference": "c03e649220089f6e5a52d422e24e3f98c73e456d", + "shasum": "" + }, + "require": { + "illuminate/support": "^9.0|^10.0|^11.0|^12.0|^13.0", + "php": "^8.0" + }, + "require-dev": { + "livewire/livewire": "^3.0", + "livewire/volt": "^1.3", + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0|^11.0", + "phpunit/phpunit": "^9.0|^10.0|^11.5.3|^12.5.12" + }, + "type": "library", + "autoload": { + "psr-4": { + "DanHarrin\\LivewireRateLimiting\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dan Harrin", + "email": "dan@danharrin.com" + } + ], + "description": "Apply rate limiters to Laravel Livewire actions.", + "homepage": "https://github.com/danharrin/livewire-rate-limiting", + "support": { + "issues": "https://github.com/danharrin/livewire-rate-limiting/issues", + "source": "https://github.com/danharrin/livewire-rate-limiting" + }, + "funding": [ + { + "url": "https://github.com/danharrin", + "type": "github" + } + ], + "time": "2026-03-16T11:29:23+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": "eduardoribeirodev/filament-leaflet", + "version": "v4.7.3", + "source": { + "type": "git", + "url": "https://github.com/eduardoribeirodev/filament-leaflet.git", + "reference": "d9a47d0c4b93242b15d98475cd87548ccb8d5cdb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/eduardoribeirodev/filament-leaflet/zipball/d9a47d0c4b93242b15d98475cd87548ccb8d5cdb", + "reference": "d9a47d0c4b93242b15d98475cd87548ccb8d5cdb", + "shasum": "" + }, + "require": { + "filament/filament": "^4.0|^5.0", + "php": "^8.1" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "EduardoRibeiroDev\\FilamentLeaflet\\FilamentLeafletServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "EduardoRibeiroDev\\FilamentLeaflet\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Um widget de mapa para FilamentPHP.", + "support": { + "issues": "https://github.com/eduardoribeirodev/filament-leaflet/issues", + "source": "https://github.com/eduardoribeirodev/filament-leaflet/tree/v4.7.3" + }, + "time": "2026-03-30T13:23:00+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": "filament/actions", + "version": "v5.4.4", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/actions.git", + "reference": "2de4a4ff59599c76c2ad4418b2a2ffdb50314408" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/actions/zipball/2de4a4ff59599c76c2ad4418b2a2ffdb50314408", + "reference": "2de4a4ff59599c76c2ad4418b2a2ffdb50314408", + "shasum": "" + }, + "require": { + "filament/forms": "self.version", + "filament/infolists": "self.version", + "filament/notifications": "self.version", + "filament/support": "self.version", + "league/csv": "^9.27", + "openspout/openspout": "^4.23", + "php": "^8.2" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Actions\\ActionsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Filament\\Actions\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Easily add beautiful action modals to any Livewire component.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2026-04-03T15:39:47+00:00" + }, + { + "name": "filament/filament", + "version": "v5.4.4", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/panels.git", + "reference": "d4ea3b4842c9684bf84c5f45e5da44bb6b33a519" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/panels/zipball/d4ea3b4842c9684bf84c5f45e5da44bb6b33a519", + "reference": "d4ea3b4842c9684bf84c5f45e5da44bb6b33a519", + "shasum": "" + }, + "require": { + "chillerlan/php-qrcode": "^5.0", + "filament/actions": "self.version", + "filament/forms": "self.version", + "filament/infolists": "self.version", + "filament/notifications": "self.version", + "filament/schemas": "self.version", + "filament/support": "self.version", + "filament/tables": "self.version", + "filament/widgets": "self.version", + "php": "^8.2", + "pragmarx/google2fa": "^8.0|^9.0", + "pragmarx/google2fa-qrcode": "^3.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\FilamentServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/global_helpers.php", + "src/helpers.php" + ], + "psr-4": { + "Filament\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A collection of full-stack components for accelerated Laravel app development.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2026-04-03T15:39:52+00:00" + }, + { + "name": "filament/forms", + "version": "v5.4.4", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/forms.git", + "reference": "b5f4fcf831f314a5d070bee737a824f0d36070cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/forms/zipball/b5f4fcf831f314a5d070bee737a824f0d36070cf", + "reference": "b5f4fcf831f314a5d070bee737a824f0d36070cf", + "shasum": "" + }, + "require": { + "danharrin/date-format-converter": "^0.3", + "filament/actions": "self.version", + "filament/schemas": "self.version", + "filament/support": "self.version", + "php": "^8.2", + "ueberdosis/tiptap-php": "^2.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Forms\\FormsServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Filament\\Forms\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Easily add beautiful forms to any Livewire component.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2026-04-03T15:39:50+00:00" + }, + { + "name": "filament/infolists", + "version": "v5.4.4", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/infolists.git", + "reference": "06ff52db235a83173997ec362fad960f94cefe9f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/infolists/zipball/06ff52db235a83173997ec362fad960f94cefe9f", + "reference": "06ff52db235a83173997ec362fad960f94cefe9f", + "shasum": "" + }, + "require": { + "filament/actions": "self.version", + "filament/schemas": "self.version", + "filament/support": "self.version", + "php": "^8.2" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Infolists\\InfolistsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Filament\\Infolists\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Easily add beautiful read-only infolists to any Livewire component.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2026-04-03T15:39:46+00:00" + }, + { + "name": "filament/notifications", + "version": "v5.4.4", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/notifications.git", + "reference": "44944f1ec485caf36ca1e2ccadf5757fa44b5c87" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/notifications/zipball/44944f1ec485caf36ca1e2ccadf5757fa44b5c87", + "reference": "44944f1ec485caf36ca1e2ccadf5757fa44b5c87", + "shasum": "" + }, + "require": { + "filament/actions": "self.version", + "filament/support": "self.version", + "php": "^8.2" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Notifications\\NotificationsServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/Testing/helpers.php" + ], + "psr-4": { + "Filament\\Notifications\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Easily add beautiful notifications to any Livewire app.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2026-03-29T09:24:18+00:00" + }, + { + "name": "filament/query-builder", + "version": "v5.4.4", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/query-builder.git", + "reference": "31b53bcd79b3f7d4ce5c753f9a300a0594fc7ecd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/query-builder/zipball/31b53bcd79b3f7d4ce5c753f9a300a0594fc7ecd", + "reference": "31b53bcd79b3f7d4ce5c753f9a300a0594fc7ecd", + "shasum": "" + }, + "require": { + "filament/actions": "self.version", + "filament/forms": "self.version", + "filament/schemas": "self.version", + "filament/support": "self.version", + "php": "^8.2" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\QueryBuilder\\QueryBuilderServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Filament\\QueryBuilder\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A powerful query builder component for Filament.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2026-04-03T15:39:47+00:00" + }, + { + "name": "filament/schemas", + "version": "v5.4.4", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/schemas.git", + "reference": "92ce3062ddc65ab306f8abc184a810577af74779" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/schemas/zipball/92ce3062ddc65ab306f8abc184a810577af74779", + "reference": "92ce3062ddc65ab306f8abc184a810577af74779", + "shasum": "" + }, + "require": { + "danharrin/date-format-converter": "^0.3", + "filament/actions": "self.version", + "filament/support": "self.version", + "php": "^8.2" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Schemas\\SchemasServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Filament\\Schemas\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Easily add beautiful UI to any Livewire component.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2026-04-03T15:39:47+00:00" + }, + { + "name": "filament/support", + "version": "v5.4.4", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/support.git", + "reference": "7ad0cf23230f4e38d5e586df2d5840471e2377da" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/support/zipball/7ad0cf23230f4e38d5e586df2d5840471e2377da", + "reference": "7ad0cf23230f4e38d5e586df2d5840471e2377da", + "shasum": "" + }, + "require": { + "blade-ui-kit/blade-heroicons": "^2.5", + "danharrin/livewire-rate-limiting": "^2.0", + "ext-intl": "*", + "illuminate/contracts": "^11.28|^12.0|^13.0", + "kirschbaum-development/eloquent-power-joins": "^4.0", + "league/uri-components": "^7.0", + "livewire/livewire": "^4.1", + "nette/php-generator": "^4.0", + "php": "^8.2", + "ryangjchandler/blade-capture-directive": "^1.0", + "spatie/invade": "^2.0", + "spatie/laravel-package-tools": "^1.9", + "symfony/console": "^7.0|^8.0", + "symfony/html-sanitizer": "^7.0|^8.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Support\\SupportServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Filament\\Support\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Core helper methods and foundation code for all Filament packages.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2026-04-03T15:40:33+00:00" + }, + { + "name": "filament/tables", + "version": "v5.4.4", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/tables.git", + "reference": "f3205e51134ce0046bdba7eba4e82e3cb33e0b08" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/tables/zipball/f3205e51134ce0046bdba7eba4e82e3cb33e0b08", + "reference": "f3205e51134ce0046bdba7eba4e82e3cb33e0b08", + "shasum": "" + }, + "require": { + "filament/actions": "self.version", + "filament/forms": "self.version", + "filament/query-builder": "self.version", + "filament/support": "self.version", + "php": "^8.2" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Tables\\TablesServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Filament\\Tables\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Easily add beautiful tables to any Livewire component.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2026-04-03T15:40:04+00:00" + }, + { + "name": "filament/widgets", + "version": "v5.4.4", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/widgets.git", + "reference": "9d015855538378f536156feb9d2af494fb236579" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/widgets/zipball/9d015855538378f536156feb9d2af494fb236579", + "reference": "9d015855538378f536156feb9d2af494fb236579", + "shasum": "" + }, + "require": { + "filament/schemas": "self.version", + "filament/support": "self.version", + "php": "^8.2" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Widgets\\WidgetsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Filament\\Widgets\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Easily add beautiful dashboard widgets to any Livewire component.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2026-04-03T15:40:06+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.9.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/7d0ed42f28e42d61352a7a79de682e5e67fec884", + "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884", + "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", + "jshttp/mime-db": "1.54.0.1", + "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.9.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": "2026-03-10T16:41:02+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": "intervention/gif", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/Intervention/gif.git", + "reference": "d856f59205aec768059d837148d755c079cdb94a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Intervention/gif/zipball/d856f59205aec768059d837148d755c079cdb94a", + "reference": "d856f59205aec768059d837148d755c079cdb94a", + "shasum": "" + }, + "require": { + "php": "^8.3" + }, + "require-dev": { + "phpstan/phpstan": "^2.1", + "phpunit/phpunit": "^12.0", + "slevomat/coding-standard": "~8.0", + "squizlabs/php_codesniffer": "^4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Intervention\\Gif\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Oliver Vogel", + "email": "oliver@intervention.io", + "homepage": "https://intervention.io/" + } + ], + "description": "PHP GIF Encoder/Decoder", + "homepage": "https://github.com/intervention/gif", + "keywords": [ + "animation", + "gd", + "gif", + "image" + ], + "support": { + "issues": "https://github.com/Intervention/gif/issues", + "source": "https://github.com/Intervention/gif/tree/5.0.0" + }, + "funding": [ + { + "url": "https://paypal.me/interventionio", + "type": "custom" + }, + { + "url": "https://github.com/Intervention", + "type": "github" + }, + { + "url": "https://ko-fi.com/interventionphp", + "type": "ko_fi" + } + ], + "time": "2026-03-21T05:08:17+00:00" + }, + { + "name": "intervention/image", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/Intervention/image.git", + "reference": "66865f150576ab36e72d1096e8e108c072d40fff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Intervention/image/zipball/66865f150576ab36e72d1096e8e108c072d40fff", + "reference": "66865f150576ab36e72d1096e8e108c072d40fff", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "intervention/gif": "^5", + "php": "^8.3" + }, + "require-dev": { + "mockery/mockery": "^1.6", + "phpstan/phpstan": "^2.1", + "phpunit/phpunit": "^12.0", + "slevomat/coding-standard": "~8.0", + "squizlabs/php_codesniffer": "^4" + }, + "suggest": { + "ext-exif": "Recommended to be able to read EXIF data properly." + }, + "type": "library", + "autoload": { + "psr-4": { + "Intervention\\Image\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Oliver Vogel", + "email": "oliver@intervention.io", + "homepage": "https://intervention.io" + } + ], + "description": "PHP Image Processing", + "homepage": "https://image.intervention.io", + "keywords": [ + "gd", + "image", + "imagick", + "resize", + "thumbnail", + "watermark" + ], + "support": { + "issues": "https://github.com/Intervention/image/issues", + "source": "https://github.com/Intervention/image/tree/4.0.0" + }, + "funding": [ + { + "url": "https://paypal.me/interventionio", + "type": "custom" + }, + { + "url": "https://github.com/Intervention", + "type": "github" + }, + { + "url": "https://ko-fi.com/interventionphp", + "type": "ko_fi" + } + ], + "time": "2026-03-28T07:02:39+00:00" + }, + { + "name": "kirschbaum-development/eloquent-power-joins", + "version": "4.3.1", + "source": { + "type": "git", + "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git", + "reference": "3f77b096c1e8b5aa1fc40d7080e55e795f3430ae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/3f77b096c1e8b5aa1fc40d7080e55e795f3430ae", + "reference": "3f77b096c1e8b5aa1fc40d7080e55e795f3430ae", + "shasum": "" + }, + "require": { + "illuminate/database": "^11.42|^12.0|^13.0", + "illuminate/support": "^11.42|^12.0|^13.0", + "php": "^8.2" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "dev-master", + "laravel/legacy-factories": "^1.0@dev|dev-master", + "orchestra/testbench": "^9.0|^10.0|^11.0", + "phpunit/phpunit": "^10.0|^11.0|^12.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Kirschbaum\\PowerJoins\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Luis Dalmolin", + "email": "luis.nh@gmail.com", + "role": "Developer" + } + ], + "description": "The Laravel magic applied to joins.", + "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins", + "keywords": [ + "eloquent", + "join", + "laravel", + "mysql" + ], + "support": { + "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues", + "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.3.1" + }, + "time": "2026-03-29T12:05:03+00:00" + }, + { + "name": "laravel/framework", + "version": "v13.3.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "118b7063c44a2f3421d1646f5ddf08defcfd1db3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/118b7063c44a2f3421d1646f5ddf08defcfd1db3", + "reference": "118b7063c44a2f3421d1646f5ddf08defcfd1db3", + "shasum": "" + }, + "require": { + "brick/math": "^0.14.2 || ^0.15 || ^0.16 || ^0.17", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.4", + "egulias/email-validator": "^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/promises": "^2.0.3", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.3.0", + "laravel/serializable-closure": "^2.0.10", + "league/commonmark": "^2.8.1", + "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.3", + "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.4.0 || ^8.0.0", + "symfony/error-handler": "^7.4.0 || ^8.0.0", + "symfony/finder": "^7.4.0 || ^8.0.0", + "symfony/http-foundation": "^7.4.0 || ^8.0.0", + "symfony/http-kernel": "^7.4.0 || ^8.0.0", + "symfony/mailer": "^7.4.0 || ^8.0.0", + "symfony/mime": "^7.4.0 || ^8.0.0", + "symfony/polyfill-php84": "^1.33", + "symfony/polyfill-php85": "^1.33", + "symfony/process": "^7.4.5 || ^8.0.5", + "symfony/routing": "^7.4.0 || ^8.0.0", + "symfony/uid": "^7.4.0 || ^8.0.0", + "symfony/var-dumper": "^7.4.0 || ^8.0.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/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": "^11.0.0", + "pda/pheanstalk": "^7.0.0 || ^8.0.0", + "php-http/discovery": "^1.15", + "phpstan/phpstan": "^2.0", + "phpunit/phpunit": "^11.5.50 || ^12.5.8 || ^13.0.3", + "predis/predis": "^2.3 || ^3.0", + "rector/rector": "^2.3", + "resend/resend-php": "^1.0", + "symfony/cache": "^7.4.0 || ^8.0.0", + "symfony/http-client": "^7.4.0 || ^8.0.0", + "symfony/psr-http-message-bridge": "^7.4.0 || ^8.0.0", + "symfony/translation": "^7.4.0 || ^8.0.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 (^7.0 || ^8.0).", + "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).", + "phpunit/phpunit": "Required to use assertions and run tests (^11.5.50 || ^12.5.8 || ^13.0.3).", + "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.4 || ^8.0).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^7.4 || ^8.0).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.4 || ^8.0).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.4 || ^8.0).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.4 || ^8.0).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.4 || ^8.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "13.0.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-04-01T15:39:53+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.3.16", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "11e7d5f93803a2190b00e145142cb00a33d17ad2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/11e7d5f93803a2190b00e145142cb00a33d17ad2", + "reference": "11e7d5f93803a2190b00e145142cb00a33d17ad2", + "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.16" + }, + "time": "2026-03-23T14:35:33+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": "v3.0.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "cc74081282ba2e3dae1f0068ccb330370d24634e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/cc74081282ba2e3dae1f0068ccb330370d24634e", + "reference": "cc74081282ba2e3dae1f0068ccb330370d24634e", + "shasum": "" + }, + "require": { + "illuminate/console": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0", + "php": "^8.1", + "psy/psysh": "^0.12.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0|^8.0" + }, + "require-dev": { + "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5|^11.5" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (^8.0|^9.0|^10.0|^11.0|^12.0|^13.0)." + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + }, + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "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/v3.0.0" + }, + "time": "2026-03-17T14:53:17+00:00" + }, + { + "name": "league/commonmark", + "version": "2.8.2", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "59fb075d2101740c337c7216e3f32b36c204218b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/59fb075d2101740c337c7216e3f32b36c204218b", + "reference": "59fb075d2101740c337c7216e3f32b36c204218b", + "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 || ^8.0", + "symfony/process": "^5.4 | ^6.0 | ^7.0 || ^8.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0 || ^8.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": "2026-03-19T13:16:38+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/csv", + "version": "9.28.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/csv.git", + "reference": "6582ace29ae09ba5b07049d40ea13eb19c8b5073" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/6582ace29ae09ba5b07049d40ea13eb19c8b5073", + "reference": "6582ace29ae09ba5b07049d40ea13eb19c8b5073", + "shasum": "" + }, + "require": { + "ext-filter": "*", + "php": "^8.1.2" + }, + "require-dev": { + "ext-dom": "*", + "ext-xdebug": "*", + "friendsofphp/php-cs-fixer": "^3.92.3", + "phpbench/phpbench": "^1.4.3", + "phpstan/phpstan": "^1.12.32", + "phpstan/phpstan-deprecation-rules": "^1.2.1", + "phpstan/phpstan-phpunit": "^1.4.2", + "phpstan/phpstan-strict-rules": "^1.6.2", + "phpunit/phpunit": "^10.5.16 || ^11.5.22 || ^12.5.4", + "symfony/var-dumper": "^6.4.8 || ^7.4.0 || ^8.0" + }, + "suggest": { + "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes", + "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters", + "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters", + "ext-mysqli": "Requiered to use the package with the MySQLi extension", + "ext-pdo": "Required to use the package with the PDO extension", + "ext-pgsql": "Requiered to use the package with the PgSQL extension", + "ext-sqlite3": "Required to use the package with the SQLite3 extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "9.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "League\\Csv\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://github.com/nyamsprod/", + "role": "Developer" + } + ], + "description": "CSV data manipulation made easy in PHP", + "homepage": "https://csv.thephpleague.com", + "keywords": [ + "convert", + "csv", + "export", + "filter", + "import", + "read", + "transform", + "write" + ], + "support": { + "docs": "https://csv.thephpleague.com", + "issues": "https://github.com/thephpleague/csv/issues", + "rss": "https://github.com/thephpleague/csv/releases.atom", + "source": "https://github.com/thephpleague/csv" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2025-12-27T15:18:42+00:00" + }, + { + "name": "league/flysystem", + "version": "3.33.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "570b8871e0ce693764434b29154c54b434905350" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/570b8871e0ce693764434b29154c54b434905350", + "reference": "570b8871e0ce693764434b29154c54b434905350", + "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.33.0" + }, + "time": "2026-03-25T07:59:30+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.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri.git", + "reference": "08cf38e3924d4f56238125547b5720496fac8fd4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/08cf38e3924d4f56238125547b5720496fac8fd4", + "reference": "08cf38e3924d4f56238125547b5720496fac8fd4", + "shasum": "" + }, + "require": { + "league/uri-interfaces": "^7.8.1", + "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.1" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2026-03-15T20:22:25+00:00" + }, + { + "name": "league/uri-components", + "version": "7.8.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri-components.git", + "reference": "848ff9db2f0be06229d6034b7c2e33d41b4fd675" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri-components/zipball/848ff9db2f0be06229d6034b7c2e33d41b4fd675", + "reference": "848ff9db2f0be06229d6034b7c2e33d41b4fd675", + "shasum": "" + }, + "require": { + "league/uri": "^7.8.1", + "php": "^8.1" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "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-mbstring": "to use the sorting algorithm of URLSearchParams", + "jeremykendall/php-domain-parser": "to further parse the URI host and resolve its Public Suffix and Top Level Domain", + "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 components manipulation library", + "homepage": "http://uri.thephpleague.com", + "keywords": [ + "authority", + "components", + "fragment", + "host", + "middleware", + "modifier", + "path", + "port", + "query", + "rfc3986", + "scheme", + "uri", + "url", + "userinfo" + ], + "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-components/tree/7.8.1" + }, + "funding": [ + { + "url": "https://github.com/nyamsprod", + "type": "github" + } + ], + "time": "2026-03-15T20:22:25+00:00" + }, + { + "name": "league/uri-interfaces", + "version": "7.8.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri-interfaces.git", + "reference": "85d5c77c5d6d3af6c54db4a78246364908f3c928" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/85d5c77c5d6d3af6c54db4a78246364908f3c928", + "reference": "85d5c77c5d6d3af6c54db4a78246364908f3c928", + "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.1" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2026-03-08T20:05:35+00:00" + }, + { + "name": "livewire/livewire", + "version": "v4.2.4", + "source": { + "type": "git", + "url": "https://github.com/livewire/livewire.git", + "reference": "7d0bfa46269b1ec186b8cdd38baffee5cc647d10" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/livewire/livewire/zipball/7d0bfa46269b1ec186b8cdd38baffee5cc647d10", + "reference": "7d0bfa46269b1ec186b8cdd38baffee5cc647d10", + "shasum": "" + }, + "require": { + "illuminate/database": "^10.0|^11.0|^12.0|^13.0", + "illuminate/routing": "^10.0|^11.0|^12.0|^13.0", + "illuminate/support": "^10.0|^11.0|^12.0|^13.0", + "illuminate/validation": "^10.0|^11.0|^12.0|^13.0", + "laravel/prompts": "^0.1.24|^0.2|^0.3", + "league/mime-type-detection": "^1.9", + "php": "^8.1", + "symfony/console": "^6.0|^7.0|^8.0", + "symfony/http-kernel": "^6.2|^7.0|^8.0" + }, + "require-dev": { + "calebporzio/sushi": "^2.1", + "laravel/framework": "^10.15.0|^11.0|^12.0|^13.0", + "mockery/mockery": "^1.3.1", + "orchestra/testbench": "^8.21.0|^9.0|^10.0|^11.0", + "orchestra/testbench-dusk": "^8.24|^9.1|^10.0|^11.0", + "phpunit/phpunit": "^10.4|^11.5|^12.5", + "psy/psysh": "^0.11.22|^0.12" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "Livewire": "Livewire\\Livewire" + }, + "providers": [ + "Livewire\\LivewireServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Livewire\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Caleb Porzio", + "email": "calebporzio@gmail.com" + } + ], + "description": "A front-end framework for Laravel.", + "support": { + "issues": "https://github.com/livewire/livewire/issues", + "source": "https://github.com/livewire/livewire/tree/v4.2.4" + }, + "funding": [ + { + "url": "https://github.com/livewire", + "type": "github" + } + ], + "time": "2026-04-02T20:48:35+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.3", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon.git", + "reference": "6a7e652845bb018c668220c2a545aded8594fbbf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/6a7e652845bb018c668220c2a545aded8594fbbf", + "reference": "6a7e652845bb018c668220c2a545aded8594fbbf", + "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-03-11T17:23:39+00:00" + }, + { + "name": "nette/php-generator", + "version": "v4.2.2", + "source": { + "type": "git", + "url": "https://github.com/nette/php-generator.git", + "reference": "0d7060926f5c3e8c488b9b9ced42d857f12a34b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/php-generator/zipball/0d7060926f5c3e8c488b9b9ced42d857f12a34b5", + "reference": "0d7060926f5c3e8c488b9b9ced42d857f12a34b5", + "shasum": "" + }, + "require": { + "nette/utils": "^4.0.6", + "php": "8.1 - 8.5" + }, + "require-dev": { + "jetbrains/phpstorm-attributes": "^1.2", + "nette/phpstan-rules": "^1.0", + "nette/tester": "^2.6", + "nikic/php-parser": "^5.0", + "phpstan/extension-installer": "^1.4@stable", + "phpstan/phpstan": "^2.1.40@stable", + "tracy/tracy": "^2.8" + }, + "suggest": { + "nikic/php-parser": "to use ClassType::from(withBodies: true) & ClassType::fromCode()" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.2-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 PHP Generator: generates neat PHP code for you. Supports new PHP 8.5 features.", + "homepage": "https://nette.org", + "keywords": [ + "code", + "nette", + "php", + "scaffolding" + ], + "support": { + "issues": "https://github.com/nette/php-generator/issues", + "source": "https://github.com/nette/php-generator/tree/v4.2.2" + }, + "time": "2026-02-26T00:58:33+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": "openspout/openspout", + "version": "v4.32.0", + "source": { + "type": "git", + "url": "https://github.com/openspout/openspout.git", + "reference": "41f045c1f632e1474e15d4c7bc3abcb4a153563d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/openspout/openspout/zipball/41f045c1f632e1474e15d4c7bc3abcb4a153563d", + "reference": "41f045c1f632e1474e15d4c7bc3abcb4a153563d", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-fileinfo": "*", + "ext-filter": "*", + "ext-libxml": "*", + "ext-xmlreader": "*", + "ext-zip": "*", + "php": "~8.3.0 || ~8.4.0 || ~8.5.0" + }, + "require-dev": { + "ext-zlib": "*", + "friendsofphp/php-cs-fixer": "^3.86.0", + "infection/infection": "^0.31.2", + "phpbench/phpbench": "^1.4.1", + "phpstan/phpstan": "^2.1.22", + "phpstan/phpstan-phpunit": "^2.0.7", + "phpstan/phpstan-strict-rules": "^2.0.6", + "phpunit/phpunit": "^12.3.7" + }, + "suggest": { + "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)", + "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.3.x-dev" + } + }, + "autoload": { + "psr-4": { + "OpenSpout\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Adrien Loison", + "email": "adrien@box.com" + } + ], + "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way", + "homepage": "https://github.com/openspout/openspout", + "keywords": [ + "OOXML", + "csv", + "excel", + "memory", + "odf", + "ods", + "office", + "open", + "php", + "read", + "scale", + "spreadsheet", + "stream", + "write", + "xlsx" + ], + "support": { + "issues": "https://github.com/openspout/openspout/issues", + "source": "https://github.com/openspout/openspout/tree/v4.32.0" + }, + "funding": [ + { + "url": "https://paypal.me/filippotessarotto", + "type": "custom" + }, + { + "url": "https://github.com/Slamdunk", + "type": "github" + } + ], + "time": "2025-09-03T16:03:54+00:00" + }, + { + "name": "paragonie/constant_time_encoding", + "version": "v3.1.3", + "source": { + "type": "git", + "url": "https://github.com/paragonie/constant_time_encoding.git", + "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77", + "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77", + "shasum": "" + }, + "require": { + "php": "^8" + }, + "require-dev": { + "infection/infection": "^0", + "nikic/php-fuzzer": "^0", + "phpunit/phpunit": "^9|^10|^11", + "vimeo/psalm": "^4|^5|^6" + }, + "type": "library", + "autoload": { + "psr-4": { + "ParagonIE\\ConstantTime\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com", + "role": "Maintainer" + }, + { + "name": "Steve 'Sc00bz' Thomas", + "email": "steve@tobtu.com", + "homepage": "https://www.tobtu.com", + "role": "Original Developer" + } + ], + "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)", + "keywords": [ + "base16", + "base32", + "base32_decode", + "base32_encode", + "base64", + "base64_decode", + "base64_encode", + "bin2hex", + "encoding", + "hex", + "hex2bin", + "rfc4648" + ], + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/constant_time_encoding/issues", + "source": "https://github.com/paragonie/constant_time_encoding" + }, + "time": "2025-09-24T15:06:41+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": "pragmarx/google2fa", + "version": "v9.0.0", + "source": { + "type": "git", + "url": "https://github.com/antonioribeiro/google2fa.git", + "reference": "e6bc62dd6ae83acc475f57912e27466019a1f2cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/e6bc62dd6ae83acc475f57912e27466019a1f2cf", + "reference": "e6bc62dd6ae83acc475f57912e27466019a1f2cf", + "shasum": "" + }, + "require": { + "paragonie/constant_time_encoding": "^1.0|^2.0|^3.0", + "php": "^7.1|^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.9", + "phpunit/phpunit": "^7.5.15|^8.5|^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "PragmaRX\\Google2FA\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Antonio Carlos Ribeiro", + "email": "acr@antoniocarlosribeiro.com", + "role": "Creator & Designer" + } + ], + "description": "A One Time Password Authentication package, compatible with Google Authenticator.", + "keywords": [ + "2fa", + "Authentication", + "Two Factor Authentication", + "google2fa" + ], + "support": { + "issues": "https://github.com/antonioribeiro/google2fa/issues", + "source": "https://github.com/antonioribeiro/google2fa/tree/v9.0.0" + }, + "time": "2025-09-19T22:51:08+00:00" + }, + { + "name": "pragmarx/google2fa-qrcode", + "version": "v3.0.0", + "source": { + "type": "git", + "url": "https://github.com/antonioribeiro/google2fa-qrcode.git", + "reference": "ce4d8a729b6c93741c607cfb2217acfffb5bf76b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/antonioribeiro/google2fa-qrcode/zipball/ce4d8a729b6c93741c607cfb2217acfffb5bf76b", + "reference": "ce4d8a729b6c93741c607cfb2217acfffb5bf76b", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "pragmarx/google2fa": ">=4.0" + }, + "require-dev": { + "bacon/bacon-qr-code": "^2.0", + "chillerlan/php-qrcode": "^1.0|^2.0|^3.0|^4.0", + "khanamiryan/qrcode-detector-decoder": "^1.0", + "phpunit/phpunit": "~4|~5|~6|~7|~8|~9" + }, + "suggest": { + "bacon/bacon-qr-code": "For QR Code generation, requires imagick", + "chillerlan/php-qrcode": "For QR Code generation" + }, + "type": "library", + "extra": { + "component": "package", + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "psr-4": { + "PragmaRX\\Google2FAQRCode\\": "src/", + "PragmaRX\\Google2FAQRCode\\Tests\\": "tests/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Antonio Carlos Ribeiro", + "email": "acr@antoniocarlosribeiro.com", + "role": "Creator & Designer" + } + ], + "description": "QR Code package for Google2FA", + "keywords": [ + "2fa", + "Authentication", + "Two Factor Authentication", + "google2fa", + "qr code", + "qrcode" + ], + "support": { + "issues": "https://github.com/antonioribeiro/google2fa-qrcode/issues", + "source": "https://github.com/antonioribeiro/google2fa-qrcode/tree/v3.0.0" + }, + "time": "2021-08-15T12:53:48+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.22", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "3be75d5b9244936dd4ac62ade2bfb004d13acf0f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3be75d5b9244936dd4ac62ade2bfb004d13acf0f", + "reference": "3be75d5b9244936dd4ac62ade2bfb004d13acf0f", + "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.22" + }, + "time": "2026-03-22T23:03:24+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": "ryangjchandler/blade-capture-directive", + "version": "v1.1.1", + "source": { + "type": "git", + "url": "https://github.com/ryangjchandler/blade-capture-directive.git", + "reference": "3f9e80b56ff60b78755ef320e3e16d88850101d6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/3f9e80b56ff60b78755ef320e3e16d88850101d6", + "reference": "3f9e80b56ff60b78755ef320e3e16d88850101d6", + "shasum": "" + }, + "require": { + "illuminate/contracts": "^10.0|^11.0|^12.0|^13.0", + "php": "^8.1", + "spatie/laravel-package-tools": "^1.9.2" + }, + "require-dev": { + "nunomaduro/collision": "^7.0|^8.0", + "nunomaduro/larastan": "^2.0|^3.0", + "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0", + "pestphp/pest": "^2.0|^3.7|^4.1", + "pestphp/pest-plugin-laravel": "^2.0|^3.1|^v4.1.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0|^2.0", + "phpstan/phpstan-phpunit": "^1.0|^2.0", + "phpunit/phpunit": "^10.0|^11.5.3|^12.0", + "spatie/laravel-ray": "^1.26" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective" + }, + "providers": [ + "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "RyanChandler\\BladeCaptureDirective\\": "src", + "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ryan Chandler", + "email": "support@ryangjchandler.co.uk", + "role": "Developer" + } + ], + "description": "Create inline partials in your Blade templates with ease.", + "homepage": "https://github.com/ryangjchandler/blade-capture-directive", + "keywords": [ + "blade-capture-directive", + "laravel", + "ryangjchandler" + ], + "support": { + "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues", + "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.1.1" + }, + "funding": [ + { + "url": "https://github.com/ryangjchandler", + "type": "github" + } + ], + "time": "2026-03-19T10:36:26+00:00" + }, + { + "name": "scrivo/highlight.php", + "version": "v9.18.1.10", + "source": { + "type": "git", + "url": "https://github.com/scrivo/highlight.php.git", + "reference": "850f4b44697a2552e892ffe71490ba2733c2fc6e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/850f4b44697a2552e892ffe71490ba2733c2fc6e", + "reference": "850f4b44697a2552e892ffe71490ba2733c2fc6e", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": ">=5.4" + }, + "require-dev": { + "phpunit/phpunit": "^4.8|^5.7", + "sabberworm/php-css-parser": "^8.3", + "symfony/finder": "^2.8|^3.4|^5.4", + "symfony/var-dumper": "^2.8|^3.4|^5.4" + }, + "suggest": { + "ext-mbstring": "Allows highlighting code with unicode characters and supports language with unicode keywords" + }, + "type": "library", + "autoload": { + "files": [ + "HighlightUtilities/functions.php" + ], + "psr-0": { + "Highlight\\": "", + "HighlightUtilities\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Geert Bergman", + "homepage": "http://www.scrivo.org/", + "role": "Project Author" + }, + { + "name": "Vladimir Jimenez", + "homepage": "https://allejo.io", + "role": "Maintainer" + }, + { + "name": "Martin Folkers", + "homepage": "https://twobrain.io", + "role": "Contributor" + } + ], + "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js", + "keywords": [ + "code", + "highlight", + "highlight.js", + "highlight.php", + "syntax" + ], + "support": { + "issues": "https://github.com/scrivo/highlight.php/issues", + "source": "https://github.com/scrivo/highlight.php" + }, + "funding": [ + { + "url": "https://github.com/allejo", + "type": "github" + } + ], + "time": "2022-12-17T21:53:22+00:00" + }, + { + "name": "spatie/invade", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/invade.git", + "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63", + "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "pestphp/pest": "^1.20", + "phpstan/phpstan": "^1.4", + "spatie/ray": "^1.28" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Spatie\\Invade\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "role": "Developer" + } + ], + "description": "A PHP function to work with private properties and methods", + "homepage": "https://github.com/spatie/invade", + "keywords": [ + "invade", + "spatie" + ], + "support": { + "source": "https://github.com/spatie/invade/tree/2.1.0" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-05-17T09:06:10+00:00" + }, + { + "name": "spatie/laravel-package-tools", + "version": "1.93.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-package-tools.git", + "reference": "0d097bce95b2bf6802fb1d83e1e753b0f5a948e7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/0d097bce95b2bf6802fb1d83e1e753b0f5a948e7", + "reference": "0d097bce95b2bf6802fb1d83e1e753b0f5a948e7", + "shasum": "" + }, + "require": { + "illuminate/contracts": "^10.0|^11.0|^12.0|^13.0", + "php": "^8.1" + }, + "require-dev": { + "mockery/mockery": "^1.5", + "orchestra/testbench": "^8.0|^9.2|^10.0|^11.0", + "pestphp/pest": "^2.1|^3.1|^4.0", + "phpunit/php-code-coverage": "^10.0|^11.0|^12.0", + "phpunit/phpunit": "^10.5|^11.5|^12.5", + "spatie/pest-plugin-test-time": "^2.2|^3.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\LaravelPackageTools\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "role": "Developer" + } + ], + "description": "Tools for creating Laravel packages", + "homepage": "https://github.com/spatie/laravel-package-tools", + "keywords": [ + "laravel-package-tools", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/laravel-package-tools/issues", + "source": "https://github.com/spatie/laravel-package-tools/tree/1.93.0" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2026-02-21T12:49:54+00:00" + }, + { + "name": "spatie/shiki-php", + "version": "2.3.3", + "source": { + "type": "git", + "url": "https://github.com/spatie/shiki-php.git", + "reference": "9d50ff4d9825d87d3283a6695c65ae9c3c3caa6b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/shiki-php/zipball/9d50ff4d9825d87d3283a6695c65ae9c3c3caa6b", + "reference": "9d50ff4d9825d87d3283a6695c65ae9c3c3caa6b", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^8.0", + "symfony/process": "^5.4|^6.4|^7.1|^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^v3.0", + "pestphp/pest": "^1.8", + "phpunit/phpunit": "^9.5", + "spatie/pest-plugin-snapshots": "^1.1", + "spatie/ray": "^1.10" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\ShikiPhp\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Rias Van der Veken", + "email": "rias@spatie.be", + "role": "Developer" + }, + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "role": "Developer" + } + ], + "description": "Highlight code using Shiki in PHP", + "homepage": "https://github.com/spatie/shiki-php", + "keywords": [ + "shiki", + "spatie" + ], + "support": { + "source": "https://github.com/spatie/shiki-php/tree/2.3.3" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2026-02-01T09:30:04+00:00" + }, + { + "name": "symfony/clock", + "version": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/clock.git", + "reference": "b55a638b189a6faa875e0ccdb00908fb87af95b3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/clock/zipball/b55a638b189a6faa875e0ccdb00908fb87af95b3", + "reference": "b55a638b189a6faa875e0ccdb00908fb87af95b3", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "psr/clock": "^1.0" + }, + "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/v8.0.8" + }, + "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-03-30T15:14:47+00:00" + }, + { + "name": "symfony/console", + "version": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "5b66d385dc58f69652e56f78a4184615e3f2b7f7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/5b66d385dc58f69652e56f78a4184615e3f2b7f7", + "reference": "5b66d385dc58f69652e56f78a4184615e3f2b7f7", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-mbstring": "^1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^7.4|^8.0" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/event-dispatcher": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/lock": "^7.4|^8.0", + "symfony/messenger": "^7.4|^8.0", + "symfony/process": "^7.4|^8.0", + "symfony/stopwatch": "^7.4|^8.0", + "symfony/var-dumper": "^7.4|^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/v8.0.8" + }, + "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-03-30T15:14:47+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "8db1c00226a94d8ab6aa89d9224eeee91e2ea2ed" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/8db1c00226a94d8ab6aa89d9224eeee91e2ea2ed", + "reference": "8db1c00226a94d8ab6aa89d9224eeee91e2ea2ed", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "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/v8.0.8" + }, + "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-03-30T15:14:47+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": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "c1119fe8dcfc3825ec74ec061b96ef0c8f281517" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/c1119fe8dcfc3825ec74ec061b96ef0c8f281517", + "reference": "c1119fe8dcfc3825ec74ec061b96ef0c8f281517", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "psr/log": "^1|^2|^3", + "symfony/polyfill-php85": "^1.32", + "symfony/var-dumper": "^7.4|^8.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5" + }, + "require-dev": { + "symfony/console": "^7.4|^8.0", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/serializer": "^7.4|^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/v8.0.8" + }, + "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-03-30T15:14:47+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "f662acc6ab22a3d6d716dcb44c381c6002940df6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f662acc6ab22a3d6d716dcb44c381c6002940df6", + "reference": "f662acc6ab22a3d6d716dcb44c381c6002940df6", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/security-http": "<7.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": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/error-handler": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/framework-bundle": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^7.4|^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/v8.0.8" + }, + "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-03-30T15:14:47+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": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "8da41214757b87d97f181e3d14a4179286151007" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/8da41214757b87d97f181e3d14a4179286151007", + "reference": "8da41214757b87d97f181e3d14a4179286151007", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "symfony/filesystem": "^7.4|^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/v8.0.8" + }, + "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-03-30T15:14:47+00:00" + }, + { + "name": "symfony/html-sanitizer", + "version": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/html-sanitizer.git", + "reference": "b0e4a2d9a82ab6bdcc742a63398781f6dae64fe5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/b0e4a2d9a82ab6bdcc742a63398781f6dae64fe5", + "reference": "b0e4a2d9a82ab6bdcc742a63398781f6dae64fe5", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "league/uri": "^6.5|^7.0", + "php": ">=8.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HtmlSanitizer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Titouan Galopin", + "email": "galopintitouan@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.", + "homepage": "https://symfony.com", + "keywords": [ + "Purifier", + "html", + "sanitizer" + ], + "support": { + "source": "https://github.com/symfony/html-sanitizer/tree/v8.0.8" + }, + "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-03-30T15:14:47+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "02656f7ebeae5c155d659e946f6b3a33df24051b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/02656f7ebeae5c155d659e946f6b3a33df24051b", + "reference": "02656f7ebeae5c155d659e946f6b3a33df24051b", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-mbstring": "^1.1" + }, + "conflict": { + "doctrine/dbal": "<4.3" + }, + "require-dev": { + "doctrine/dbal": "^4.3", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^7.4|^8.0", + "symfony/clock": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/mime": "^7.4|^8.0", + "symfony/rate-limiter": "^7.4|^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/v8.0.8" + }, + "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-03-30T15:14:47+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "1770f6818d83b2fddc12185025b93f39a90cb628" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1770f6818d83b2fddc12185025b93f39a90cb628", + "reference": "1770f6818d83b2fddc12185025b93f39a90cb628", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "psr/log": "^1|^2|^3", + "symfony/error-handler": "^7.4|^8.0", + "symfony/event-dispatcher": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/flex": "<2.10", + "symfony/http-client-contracts": "<2.5", + "symfony/translation-contracts": "<2.5", + "twig/twig": "<3.21" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^7.4|^8.0", + "symfony/clock": "^7.4|^8.0", + "symfony/config": "^7.4|^8.0", + "symfony/console": "^7.4|^8.0", + "symfony/css-selector": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/dom-crawler": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/finder": "^7.4|^8.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^7.4|^8.0", + "symfony/property-access": "^7.4|^8.0", + "symfony/routing": "^7.4|^8.0", + "symfony/serializer": "^7.4|^8.0", + "symfony/stopwatch": "^7.4|^8.0", + "symfony/translation": "^7.4|^8.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^7.4|^8.0", + "symfony/validator": "^7.4|^8.0", + "symfony/var-dumper": "^7.4|^8.0", + "symfony/var-exporter": "^7.4|^8.0", + "twig/twig": "^3.21" + }, + "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/v8.0.8" + }, + "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-03-31T21:14:05+00:00" + }, + { + "name": "symfony/mailer", + "version": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "ca5f6edaf8780ece814404b58a4482b22b509c56" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/ca5f6edaf8780ece814404b58a4482b22b509c56", + "reference": "ca5f6edaf8780ece814404b58a4482b22b509c56", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.4", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^7.4|^8.0", + "symfony/mime": "^7.4|^8.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5" + }, + "require-dev": { + "symfony/console": "^7.4|^8.0", + "symfony/http-client": "^7.4|^8.0", + "symfony/messenger": "^7.4|^8.0", + "symfony/twig-bridge": "^7.4|^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/v8.0.8" + }, + "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-03-30T15:14:47+00:00" + }, + { + "name": "symfony/mime", + "version": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "ddff21f14c7ce04b98101b399a9463dce8b0ce66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/ddff21f14c7ce04b98101b399a9463dce8b0ce66", + "reference": "ddff21f14c7ce04b98101b399a9463dce8b0ce66", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "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" + }, + "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": "^7.4|^8.0", + "symfony/process": "^7.4|^8.0", + "symfony/property-access": "^7.4|^8.0", + "symfony/property-info": "^7.4|^8.0", + "symfony/serializer": "^7.4|^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/v8.0.8" + }, + "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-03-30T15:14:47+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-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": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "cb8939aff03470d1a9d1d1b66d08c6fa71b3bbdc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/cb8939aff03470d1a9d1d1b66d08c6fa71b3bbdc", + "reference": "cb8939aff03470d1a9d1d1b66d08c6fa71b3bbdc", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "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/v8.0.8" + }, + "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-03-30T15:14:47+00:00" + }, + { + "name": "symfony/routing", + "version": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "0de330ec2ea922a7b08ec45615bd51179de7fda4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/0de330ec2ea922a7b08ec45615bd51179de7fda4", + "reference": "0de330ec2ea922a7b08ec45615bd51179de7fda4", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/yaml": "^7.4|^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/v8.0.8" + }, + "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-03-30T15:14:47+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": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "ae9488f874d7603f9d2dfbf120203882b645d963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/ae9488f874d7603f9d2dfbf120203882b645d963", + "reference": "ae9488f874d7603f9d2dfbf120203882b645d963", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "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.4|^8.0", + "symfony/http-client": "^7.4|^8.0", + "symfony/intl": "^7.4|^8.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^7.4|^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/v8.0.8" + }, + "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-03-30T15:14:47+00:00" + }, + { + "name": "symfony/translation", + "version": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "27c03ae3940de24ba2f71cfdbac824f2aa1fdf2f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/27c03ae3940de24ba2f71cfdbac824f2aa1fdf2f", + "reference": "27c03ae3940de24ba2f71cfdbac824f2aa1fdf2f", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-mbstring": "^1.0", + "symfony/translation-contracts": "^3.6.1" + }, + "conflict": { + "nikic/php-parser": "<5.0", + "symfony/http-client-contracts": "<2.5", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^7.4|^8.0", + "symfony/console": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/finder": "^7.4|^8.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/intl": "^7.4|^8.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^7.4|^8.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^7.4|^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/v8.0.8" + }, + "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-03-30T15:14:47+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": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "f63fa6096a24147283bce4d29327d285326438e0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/f63fa6096a24147283bce4d29327d285326438e0", + "reference": "f63fa6096a24147283bce4d29327d285326438e0", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^7.4|^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/v8.0.8" + }, + "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-03-30T15:14:47+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "cfb7badd53bf4177f6e9416cfbbccc13c0e773a1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cfb7badd53bf4177f6e9416cfbbccc13c0e773a1", + "reference": "cfb7badd53bf4177f6e9416cfbbccc13c0e773a1", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "symfony/console": "<7.4", + "symfony/error-handler": "<7.4" + }, + "require-dev": { + "symfony/console": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/process": "^7.4|^8.0", + "symfony/uid": "^7.4|^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/v8.0.8" + }, + "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-03-31T07:15:36+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": "ueberdosis/tiptap-php", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/ueberdosis/tiptap-php.git", + "reference": "6ea321fa665080e1a72ac5f52dfab19f6a292e2d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ueberdosis/tiptap-php/zipball/6ea321fa665080e1a72ac5f52dfab19f6a292e2d", + "reference": "6ea321fa665080e1a72ac5f52dfab19f6a292e2d", + "shasum": "" + }, + "require": { + "php": "^8.0", + "scrivo/highlight.php": "^9.18", + "spatie/shiki-php": "^2.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.5", + "pestphp/pest": "^1.21", + "phpunit/phpunit": "^9.5", + "vimeo/psalm": "^4.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Tiptap\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Hans Pagel", + "email": "humans@tiptap.dev", + "role": "Developer" + } + ], + "description": "A PHP package to work with Tiptap output", + "homepage": "https://github.com/ueberdosis/tiptap-php", + "keywords": [ + "prosemirror", + "tiptap", + "ueberdosis" + ], + "support": { + "issues": "https://github.com/ueberdosis/tiptap-php/issues", + "source": "https://github.com/ueberdosis/tiptap-php/tree/2.1.0" + }, + "funding": [ + { + "url": "https://tiptap.dev/pricing", + "type": "custom" + }, + { + "url": "https://github.com/ueberdosis", + "type": "github" + }, + { + "url": "https://opencollective.com/tiptap", + "type": "open_collective" + } + ], + "time": "2026-01-10T16:40:02+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/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.29.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "bdec963f53172c5e36330f3a400604c69bf02d39" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/bdec963f53172c5e36330f3a400604c69bf02d39", + "reference": "bdec963f53172c5e36330f3a400604c69bf02d39", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.2.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.94.2", + "illuminate/view": "^12.54.1", + "larastan/larastan": "^3.9.3", + "laravel-zero/framework": "^12.0.5", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^2.4.0", + "pestphp/pest": "^3.8.6", + "shipfastlabs/agent-detector": "^1.1.0" + }, + "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-03-12T15:51:39+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.56.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "f43426bb42a1cb7a51a3861d9138063e54766d28" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/f43426bb42a1cb7a51a3861d9138063e54766d28", + "reference": "f43426bb42a1cb7a51a3861d9138063e54766d28", + "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-04-01T15:17:32+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.2", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "6eb16883e74fd725ac64dbe81544c961ab448ba5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/6eb16883e74fd725ac64dbe81544c961ab448ba5", + "reference": "6eb16883e74fd725ac64dbe81544c961ab448ba5", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.18.4", + "nunomaduro/termwind": "^2.4.0", + "php": "^8.2.0", + "symfony/console": "^7.4.8 || ^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.3", + "laravel/framework": "^11.48.0 || ^12.56.0 || ^13.2.0", + "laravel/pint": "^1.29.0", + "orchestra/testbench-core": "^9.12.0 || ^10.12.1 || ^11.0.0", + "pestphp/pest": "^3.8.5 || ^4.4.3 || ^5.0.0", + "sebastian/environment": "^7.2.1 || ^8.0.4 || ^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-03-31T21:51:27+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": "12.5.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "b015312f28dd75b75d3422ca37dff2cd1a565e8d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/b015312f28dd75b75d3422ca37dff2cd1a565e8d", + "reference": "b015312f28dd75b75d3422ca37dff2cd1a565e8d", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^5.7.0", + "php": ">=8.3", + "phpunit/php-file-iterator": "^6.0", + "phpunit/php-text-template": "^5.0", + "sebastian/complexity": "^5.0", + "sebastian/environment": "^8.0.3", + "sebastian/lines-of-code": "^4.0", + "sebastian/version": "^6.0", + "theseer/tokenizer": "^2.0.1" + }, + "require-dev": { + "phpunit/phpunit": "^12.5.1" + }, + "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": "12.5.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/12.5.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/phpunit/php-code-coverage", + "type": "tidelift" + } + ], + "time": "2026-02-06T06:01:44+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "6.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5", + "reference": "3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5", + "shasum": "" + }, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.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", + "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/6.0.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-02T14:04:18+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406", + "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406", + "shasum": "" + }, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^12.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "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", + "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/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-02-07T04:58:58+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53", + "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53", + "shasum": "" + }, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.0" + }, + "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": "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/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-02-07T04:59:16+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "8.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc", + "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc", + "shasum": "" + }, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "8.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/8.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-02-07T04:59:38+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "12.5.16", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "b2429f58ae75cae980b5bb9873abe4de6aac8b58" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b2429f58ae75cae980b5bb9873abe4de6aac8b58", + "reference": "b2429f58ae75cae980b5bb9873abe4de6aac8b58", + "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.3", + "phpunit/php-code-coverage": "^12.5.3", + "phpunit/php-file-iterator": "^6.0.1", + "phpunit/php-invoker": "^6.0.0", + "phpunit/php-text-template": "^5.0.0", + "phpunit/php-timer": "^8.0.0", + "sebastian/cli-parser": "^4.2.0", + "sebastian/comparator": "^7.1.4", + "sebastian/diff": "^7.0.0", + "sebastian/environment": "^8.0.4", + "sebastian/exporter": "^7.0.2", + "sebastian/global-state": "^8.0.2", + "sebastian/object-enumerator": "^7.0.0", + "sebastian/recursion-context": "^7.0.1", + "sebastian/type": "^6.0.3", + "sebastian/version": "^6.0.0", + "staabm/side-effects-detector": "^1.0.5" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "12.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/12.5.16" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsoring.html", + "type": "other" + } + ], + "time": "2026-04-03T05:26:42+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "4.2.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "90f41072d220e5c40df6e8635f5dafba2d9d4d04" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/90f41072d220e5c40df6e8635f5dafba2d9d4d04", + "reference": "90f41072d220e5c40df6e8635f5dafba2d9d4d04", + "shasum": "" + }, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.2-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/4.2.0" + }, + "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/cli-parser", + "type": "tidelift" + } + ], + "time": "2025-09-14T09:36:45+00:00" + }, + { + "name": "sebastian/comparator", + "version": "7.1.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "6a7de5df2e094f9a80b40a522391a7e6022df5f6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/6a7de5df2e094f9a80b40a522391a7e6022df5f6", + "reference": "6a7de5df2e094f9a80b40a522391a7e6022df5f6", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.3", + "sebastian/diff": "^7.0", + "sebastian/exporter": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^12.2" + }, + "suggest": { + "ext-bcmath": "For comparing BcMath\\Number objects" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.1-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/7.1.4" + }, + "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:28:48+00:00" + }, + { + "name": "sebastian/complexity", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb", + "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.0" + }, + "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 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/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-02-07T04:55:25+00:00" + }, + { + "name": "sebastian/diff", + "version": "7.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "7ab1ea946c012266ca32390913653d844ecd085f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f", + "reference": "7ab1ea946c012266ca32390913653d844ecd085f", + "shasum": "" + }, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.0", + "symfony/process": "^7.2" + }, + "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" + }, + { + "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/7.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-02-07T04:55:46+00:00" + }, + { + "name": "sebastian/environment", + "version": "8.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "7b8842c2d8e85d0c3a5831236bf5869af6ab2a11" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/7b8842c2d8e85d0c3a5831236bf5869af6ab2a11", + "reference": "7b8842c2d8e85d0c3a5831236bf5869af6ab2a11", + "shasum": "" + }, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.0" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "8.0-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/8.0.4" + }, + "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": "2026-03-15T07:05:40+00:00" + }, + { + "name": "sebastian/exporter", + "version": "7.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "016951ae10980765e4e7aee491eb288c64e505b7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/016951ae10980765e4e7aee491eb288c64e505b7", + "reference": "016951ae10980765e4e7aee491eb288c64e505b7", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.3", + "sebastian/recursion-context": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^12.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" + }, + { + "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/7.0.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:16:11+00:00" + }, + { + "name": "sebastian/global-state", + "version": "8.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "ef1377171613d09edd25b7816f05be8313f9115d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/ef1377171613d09edd25b7816f05be8313f9115d", + "reference": "ef1377171613d09edd25b7816f05be8313f9115d", + "shasum": "" + }, + "require": { + "php": ">=8.3", + "sebastian/object-reflector": "^5.0", + "sebastian/recursion-context": "^7.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^12.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "8.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/8.0.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/global-state", + "type": "tidelift" + } + ], + "time": "2025-08-29T11:29:25+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f", + "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.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 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/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-02-07T04:57:28+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "7.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894", + "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894", + "shasum": "" + }, + "require": { + "php": ">=8.3", + "sebastian/object-reflector": "^5.0", + "sebastian/recursion-context": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^12.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": "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/7.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-02-07T04:57:48+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "4bfa827c969c98be1e527abd576533293c634f6a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a", + "reference": "4bfa827c969c98be1e527abd576533293c634f6a", + "shasum": "" + }, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.0" + }, + "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" + } + ], + "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/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-02-07T04:58:17+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "7.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "0b01998a7d5b1f122911a66bebcb8d46f0c82d8c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/0b01998a7d5b1f122911a66bebcb8d46f0c82d8c", + "reference": "0b01998a7d5b1f122911a66bebcb8d46f0c82d8c", + "shasum": "" + }, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.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" + }, + { + "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/7.0.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/recursion-context", + "type": "tidelift" + } + ], + "time": "2025-08-13T04:44:59+00:00" + }, + { + "name": "sebastian/type", + "version": "6.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "e549163b9760b8f71f191651d22acf32d56d6d4d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/e549163b9760b8f71f191651d22acf32d56d6d4d", + "reference": "e549163b9760b8f71f191651d22acf32d56d6d4d", + "shasum": "" + }, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.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", + "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/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/type", + "type": "tidelift" + } + ], + "time": "2025-08-09T06:57:12+00:00" + }, + { + "name": "sebastian/version", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c", + "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c", + "shasum": "" + }, + "require": { + "php": ">=8.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", + "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/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-02-07T05:00:38+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": "v8.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "54174ab48c0c0f9e21512b304be17f8150ccf8f1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/54174ab48c0c0f9e21512b304be17f8150ccf8f1", + "reference": "54174ab48c0c0f9e21512b304be17f8150ccf8f1", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<7.4" + }, + "require-dev": { + "symfony/console": "^7.4|^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/v8.0.8" + }, + "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-03-30T15:14:47+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "7989e43bf381af0eac72e4f0ca5bcbfa81658be4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/7989e43bf381af0eac72e4f0ca5bcbfa81658be4", + "reference": "7989e43bf381af0eac72e4f0ca5bcbfa81658be4", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^8.1" + }, + "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/2.0.1" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2025-12-08T11:19:18+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": "^8.3" + }, + "platform-dev": [], + "plugin-api-version": "2.3.0" +} diff --git a/config/app.php b/config/app.php new file mode 100644 index 0000000..423eed5 --- /dev/null +++ b/config/app.php @@ -0,0 +1,126 @@ + env('APP_NAME', 'Laravel'), + + /* + |-------------------------------------------------------------------------- + | 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/config/auth.php b/config/auth.php new file mode 100644 index 0000000..d7568ff --- /dev/null +++ b/config/auth.php @@ -0,0 +1,117 @@ + [ + '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', 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/config/cache.php b/config/cache.php new file mode 100644 index 0000000..c68acdf --- /dev/null +++ b/config/cache.php @@ -0,0 +1,130 @@ + 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-'), + + /* + |-------------------------------------------------------------------------- + | Serializable Classes + |-------------------------------------------------------------------------- + | + | This value determines the classes that can be unserialized from cache + | storage. By default, no PHP classes will be unserialized from your + | cache to prevent gadget chain attacks if your APP_KEY is leaked. + | + */ + + 'serializable_classes' => false, + +]; diff --git a/config/database.php b/config/database.php new file mode 100644 index 0000000..64709ce --- /dev/null +++ b/config/database.php @@ -0,0 +1,184 @@ + 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 ? 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 ? 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'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | 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/config/filament.php b/config/filament.php new file mode 100644 index 0000000..09264d2 --- /dev/null +++ b/config/filament.php @@ -0,0 +1,120 @@ + [ + + // 'echo' => [ + // 'broadcaster' => 'pusher', + // 'key' => env('VITE_PUSHER_APP_KEY'), + // 'cluster' => env('VITE_PUSHER_APP_CLUSTER'), + // 'wsHost' => env('VITE_PUSHER_HOST'), + // 'wsPort' => env('VITE_PUSHER_PORT'), + // 'wssPort' => env('VITE_PUSHER_PORT'), + // 'authEndpoint' => '/broadcasting/auth', + // 'disableStats' => true, + // 'encrypted' => true, + // 'forceTLS' => env('VITE_PUSHER_SCHEME', 'https') === 'https', + // ], + + ], + + /* + |-------------------------------------------------------------------------- + | Default Filesystem Disk + |-------------------------------------------------------------------------- + | + | This is the storage disk Filament will use to store files. You may use + | any of the disks defined in the `config/filesystems.php`. + | + */ + + 'default_filesystem_disk' => env('FILESYSTEM_DISK', 'local'), + + /* + |-------------------------------------------------------------------------- + | Assets Path + |-------------------------------------------------------------------------- + | + | This is the directory where Filament's assets will be published to. It + | is relative to the `public` directory of your Laravel application. + | + | After changing the path, you should run `php artisan filament:assets`. + | + */ + + 'assets_path' => null, + + /* + |-------------------------------------------------------------------------- + | Cache Path + |-------------------------------------------------------------------------- + | + | This is the directory that Filament will use to store cache files that + | are used to optimize the registration of components. + | + | After changing the path, you should run `php artisan filament:cache-components`. + | + */ + + 'cache_path' => base_path('bootstrap/cache/filament'), + + /* + |-------------------------------------------------------------------------- + | Livewire Loading Delay + |-------------------------------------------------------------------------- + | + | This sets the delay before loading indicators appear. + | + | Setting this to 'none' makes indicators appear immediately, which can be + | desirable for high-latency connections. Setting it to 'default' applies + | Livewire's standard 200ms delay. + | + */ + + 'livewire_loading_delay' => 'default', + + /* + |-------------------------------------------------------------------------- + | File Generation + |-------------------------------------------------------------------------- + | + | Artisan commands that generate files can be configured here by setting + | configuration flags that will impact their location or content. + | + | Often, this is useful to preserve file generation behavior from a + | previous version of Filament, to ensure consistency between older and + | newer generated files. These flags are often documented in the upgrade + | guide for the version of Filament you are upgrading to. + | + */ + + 'file_generation' => [ + 'flags' => [], + ], + + /* + |-------------------------------------------------------------------------- + | System Route Prefix + |-------------------------------------------------------------------------- + | + | This is the prefix used for the system routes that Filament registers, + | such as the routes for downloading exports and failed import rows. + | + */ + + 'system_route_prefix' => 'filament', + +]; diff --git a/config/filesystems.php b/config/filesystems.php new file mode 100644 index 0000000..37d8fca --- /dev/null +++ b/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/config/image.php b/config/image.php new file mode 100644 index 0000000..2dfdba1 --- /dev/null +++ b/config/image.php @@ -0,0 +1,46 @@ + env('IMAGE_DRIVER', \Intervention\Image\Drivers\Gd\Driver::class), + + /* + |-------------------------------------------------------------------------- + | Configuration Options + |-------------------------------------------------------------------------- + | + | These options control the behavior of Intervention Image. + | + | - "autoOrientation" controls whether an imported image should be + | automatically rotated according to any existing Exif data. + | + | - "decodeAnimation" decides whether a possibly animated image is + | decoded as such or whether the animation is discarded. + | + | - "backgroundColor" Defines the default background & blending color. + | + | - "strip" controls if meta data like exif tags should be removed when + | encoding images. + */ + + 'options' => [ + 'autoOrientation' => true, + 'decodeAnimation' => true, + 'backgroundColor' => 'ffffff', + 'strip' => false, + ] +]; diff --git a/config/logging.php b/config/logging.php new file mode 100644 index 0000000..b09cb25 --- /dev/null +++ b/config/logging.php @@ -0,0 +1,132 @@ + 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', env('APP_NAME', 'Laravel')), + '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], + ], + + '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/config/mail.php b/config/mail.php new file mode 100644 index 0000000..e32e88d --- /dev/null +++ b/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', env('APP_NAME', 'Laravel')), + ], + +]; diff --git a/config/queue.php b/config/queue.php new file mode 100644 index 0000000..79c2c0a --- /dev/null +++ b/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/config/services.php b/config/services.php new file mode 100644 index 0000000..6a90eb8 --- /dev/null +++ b/config/services.php @@ -0,0 +1,38 @@ + [ + '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'), + ], + ], + +]; diff --git a/config/session.php b/config/session.php new file mode 100644 index 0000000..f574482 --- /dev/null +++ b/config/session.php @@ -0,0 +1,233 @@ + 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), + + /* + |-------------------------------------------------------------------------- + | Session Serialization + |-------------------------------------------------------------------------- + | + | This value controls the serialization strategy for session data, which + | is JSON by default. Setting this to "php" allows the storage of PHP + | objects in the session but can make an application vulnerable to + | "gadget chain" serialization attacks if the APP_KEY is leaked. + | + | Supported: "json", "php" + | + */ + + 'serialization' => 'json', + +]; diff --git a/database/.gitignore b/database/.gitignore new file mode 100644 index 0000000..9b19b93 --- /dev/null +++ b/database/.gitignore @@ -0,0 +1 @@ +*.sqlite* diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php new file mode 100644 index 0000000..c4ceb07 --- /dev/null +++ b/database/factories/UserFactory.php @@ -0,0 +1,45 @@ + + */ +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/database/migrations/0001_01_01_000000_create_users_table.php b/database/migrations/0001_01_01_000000_create_users_table.php new file mode 100644 index 0000000..8a5b5d1 --- /dev/null +++ b/database/migrations/0001_01_01_000000_create_users_table.php @@ -0,0 +1,50 @@ +id(); + $table->string('name'); + $table->string('email')->unique(); + $table->timestamp('email_verified_at')->nullable(); + $table->string('password'); + $table->string('role')->default('admin'); + $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/database/migrations/0001_01_01_000001_create_cache_table.php b/database/migrations/0001_01_01_000001_create_cache_table.php new file mode 100644 index 0000000..06dc7a5 --- /dev/null +++ b/database/migrations/0001_01_01_000001_create_cache_table.php @@ -0,0 +1,35 @@ +string('key')->primary(); + $table->mediumText('value'); + $table->bigInteger('expiration')->index(); + }); + + Schema::create('cache_locks', function (Blueprint $table) { + $table->string('key')->primary(); + $table->string('owner'); + $table->bigInteger('expiration')->index(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('cache'); + Schema::dropIfExists('cache_locks'); + } +}; diff --git a/database/migrations/0001_01_01_000002_create_jobs_table.php b/database/migrations/0001_01_01_000002_create_jobs_table.php new file mode 100644 index 0000000..425e705 --- /dev/null +++ b/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/database/migrations/2026_04_05_074854_create_photo_geo_data_table.php b/database/migrations/2026_04_05_074854_create_photo_geo_data_table.php new file mode 100644 index 0000000..b2e12f4 --- /dev/null +++ b/database/migrations/2026_04_05_074854_create_photo_geo_data_table.php @@ -0,0 +1,36 @@ +ulid('id')->primary(); + $table->string('uploaded_by'); + $table->string('image_path'); + $table->string('title'); + $table->timestamp('captured_at')->nullable(); + $table->decimal('lat',10,8)->nullable(); + $table->decimal('lng',10,8)->nullable(); + $table->string('desc',500)->nullable(); + $table->longText('story')->nullable(); + $table->json('metadata')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('photo_geo_data'); + } +}; diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php new file mode 100644 index 0000000..6b901f8 --- /dev/null +++ b/database/seeders/DatabaseSeeder.php @@ -0,0 +1,25 @@ +create(); + + User::factory()->create([ + 'name' => 'Test User', + 'email' => 'test@example.com', + ]); + } +} diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..790ce0e --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,28 @@ +services: + api: + image: php + build: . + volumes: + - .:/var/www/html + ports: + - "8080:80" + networks: + - app + db: + image: "postgres:latest" + ports: + - "5432:5432" + environment: + POSTGRES_DB: "photogeodata" + POSTGRES_USER: "user" # Changed from root; Postgres best practice + POSTGRES_PASSWORD: "password" + volumes: + - "appdb:/var/lib/postgresql/data" + networks: + - app +networks: + app: + driver: bridge +volumes: + appdb: + driver: local \ No newline at end of file diff --git a/lang/en/auth.php b/lang/en/auth.php new file mode 100644 index 0000000..6598e2c --- /dev/null +++ b/lang/en/auth.php @@ -0,0 +1,20 @@ + 'These credentials do not match our records.', + 'password' => 'The provided password is incorrect.', + 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', + +]; diff --git a/lang/en/pagination.php b/lang/en/pagination.php new file mode 100644 index 0000000..d481411 --- /dev/null +++ b/lang/en/pagination.php @@ -0,0 +1,19 @@ + '« Previous', + 'next' => 'Next »', + +]; diff --git a/lang/en/passwords.php b/lang/en/passwords.php new file mode 100644 index 0000000..fad3a7d --- /dev/null +++ b/lang/en/passwords.php @@ -0,0 +1,22 @@ + 'Your password has been reset.', + 'sent' => 'We have emailed your password reset link.', + 'throttled' => 'Please wait before retrying.', + 'token' => 'This password reset token is invalid.', + 'user' => "We can't find a user with that email address.", + +]; diff --git a/lang/en/validation.php b/lang/en/validation.php new file mode 100644 index 0000000..63ec29a --- /dev/null +++ b/lang/en/validation.php @@ -0,0 +1,200 @@ + 'The :attribute field must be accepted.', + 'accepted_if' => 'The :attribute field must be accepted when :other is :value.', + 'active_url' => 'The :attribute field must be a valid URL.', + 'after' => 'The :attribute field must be a date after :date.', + 'after_or_equal' => 'The :attribute field must be a date after or equal to :date.', + 'alpha' => 'The :attribute field must only contain letters.', + 'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.', + 'alpha_num' => 'The :attribute field must only contain letters and numbers.', + 'any_of' => 'The :attribute field is invalid.', + 'array' => 'The :attribute field must be an array.', + 'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', + 'before' => 'The :attribute field must be a date before :date.', + 'before_or_equal' => 'The :attribute field must be a date before or equal to :date.', + 'between' => [ + 'array' => 'The :attribute field must have between :min and :max items.', + 'file' => 'The :attribute field must be between :min and :max kilobytes.', + 'numeric' => 'The :attribute field must be between :min and :max.', + 'string' => 'The :attribute field must be between :min and :max characters.', + ], + 'boolean' => 'The :attribute field must be true or false.', + 'can' => 'The :attribute field contains an unauthorized value.', + 'confirmed' => 'The :attribute field confirmation does not match.', + 'contains' => 'The :attribute field is missing a required value.', + 'current_password' => 'The password is incorrect.', + 'date' => 'The :attribute field must be a valid date.', + 'date_equals' => 'The :attribute field must be a date equal to :date.', + 'date_format' => 'The :attribute field must match the format :format.', + 'decimal' => 'The :attribute field must have :decimal decimal places.', + 'declined' => 'The :attribute field must be declined.', + 'declined_if' => 'The :attribute field must be declined when :other is :value.', + 'different' => 'The :attribute field and :other must be different.', + 'digits' => 'The :attribute field must be :digits digits.', + 'digits_between' => 'The :attribute field must be between :min and :max digits.', + 'dimensions' => 'The :attribute field has invalid image dimensions.', + 'distinct' => 'The :attribute field has a duplicate value.', + 'doesnt_contain' => 'The :attribute field must not contain any of the following: :values.', + 'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.', + 'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.', + 'email' => 'The :attribute field must be a valid email address.', + 'encoding' => 'The :attribute field must be encoded in :encoding.', + 'ends_with' => 'The :attribute field must end with one of the following: :values.', + 'enum' => 'The selected :attribute is invalid.', + 'exists' => 'The selected :attribute is invalid.', + 'extensions' => 'The :attribute field must have one of the following extensions: :values.', + 'file' => 'The :attribute field must be a file.', + 'filled' => 'The :attribute field must have a value.', + 'gt' => [ + 'array' => 'The :attribute field must have more than :value items.', + 'file' => 'The :attribute field must be greater than :value kilobytes.', + 'numeric' => 'The :attribute field must be greater than :value.', + 'string' => 'The :attribute field must be greater than :value characters.', + ], + 'gte' => [ + 'array' => 'The :attribute field must have :value items or more.', + 'file' => 'The :attribute field must be greater than or equal to :value kilobytes.', + 'numeric' => 'The :attribute field must be greater than or equal to :value.', + 'string' => 'The :attribute field must be greater than or equal to :value characters.', + ], + 'hex_color' => 'The :attribute field must be a valid hexadecimal color.', + 'image' => 'The :attribute field must be an image.', + 'in' => 'The selected :attribute is invalid.', + 'in_array' => 'The :attribute field must exist in :other.', + 'in_array_keys' => 'The :attribute field must contain at least one of the following keys: :values.', + 'integer' => 'The :attribute field must be an integer.', + 'ip' => 'The :attribute field must be a valid IP address.', + 'ipv4' => 'The :attribute field must be a valid IPv4 address.', + 'ipv6' => 'The :attribute field must be a valid IPv6 address.', + 'json' => 'The :attribute field must be a valid JSON string.', + 'list' => 'The :attribute field must be a list.', + 'lowercase' => 'The :attribute field must be lowercase.', + 'lt' => [ + 'array' => 'The :attribute field must have less than :value items.', + 'file' => 'The :attribute field must be less than :value kilobytes.', + 'numeric' => 'The :attribute field must be less than :value.', + 'string' => 'The :attribute field must be less than :value characters.', + ], + 'lte' => [ + 'array' => 'The :attribute field must not have more than :value items.', + 'file' => 'The :attribute field must be less than or equal to :value kilobytes.', + 'numeric' => 'The :attribute field must be less than or equal to :value.', + 'string' => 'The :attribute field must be less than or equal to :value characters.', + ], + 'mac_address' => 'The :attribute field must be a valid MAC address.', + 'max' => [ + 'array' => 'The :attribute field must not have more than :max items.', + 'file' => 'The :attribute field must not be greater than :max kilobytes.', + 'numeric' => 'The :attribute field must not be greater than :max.', + 'string' => 'The :attribute field must not be greater than :max characters.', + ], + 'max_digits' => 'The :attribute field must not have more than :max digits.', + 'mimes' => 'The :attribute field must be a file of type: :values.', + 'mimetypes' => 'The :attribute field must be a file of type: :values.', + 'min' => [ + 'array' => 'The :attribute field must have at least :min items.', + 'file' => 'The :attribute field must be at least :min kilobytes.', + 'numeric' => 'The :attribute field must be at least :min.', + 'string' => 'The :attribute field must be at least :min characters.', + ], + 'min_digits' => 'The :attribute field must have at least :min digits.', + 'missing' => 'The :attribute field must be missing.', + 'missing_if' => 'The :attribute field must be missing when :other is :value.', + 'missing_unless' => 'The :attribute field must be missing unless :other is :value.', + 'missing_with' => 'The :attribute field must be missing when :values is present.', + 'missing_with_all' => 'The :attribute field must be missing when :values are present.', + 'multiple_of' => 'The :attribute field must be a multiple of :value.', + 'not_in' => 'The selected :attribute is invalid.', + 'not_regex' => 'The :attribute field format is invalid.', + 'numeric' => 'The :attribute field must be a number.', + 'password' => [ + 'letters' => 'The :attribute field must contain at least one letter.', + 'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.', + 'numbers' => 'The :attribute field must contain at least one number.', + 'symbols' => 'The :attribute field must contain at least one symbol.', + 'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.', + ], + 'present' => 'The :attribute field must be present.', + 'present_if' => 'The :attribute field must be present when :other is :value.', + 'present_unless' => 'The :attribute field must be present unless :other is :value.', + 'present_with' => 'The :attribute field must be present when :values is present.', + 'present_with_all' => 'The :attribute field must be present when :values are present.', + 'prohibited' => 'The :attribute field is prohibited.', + 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', + 'prohibited_if_accepted' => 'The :attribute field is prohibited when :other is accepted.', + 'prohibited_if_declined' => 'The :attribute field is prohibited when :other is declined.', + 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', + 'prohibits' => 'The :attribute field prohibits :other from being present.', + 'regex' => 'The :attribute field format is invalid.', + 'required' => 'The :attribute field is required.', + 'required_array_keys' => 'The :attribute field must contain entries for: :values.', + 'required_if' => 'The :attribute field is required when :other is :value.', + 'required_if_accepted' => 'The :attribute field is required when :other is accepted.', + 'required_if_declined' => 'The :attribute field is required when :other is declined.', + 'required_unless' => 'The :attribute field is required unless :other is in :values.', + 'required_with' => 'The :attribute field is required when :values is present.', + 'required_with_all' => 'The :attribute field is required when :values are present.', + 'required_without' => 'The :attribute field is required when :values is not present.', + 'required_without_all' => 'The :attribute field is required when none of :values are present.', + 'same' => 'The :attribute field must match :other.', + 'size' => [ + 'array' => 'The :attribute field must contain :size items.', + 'file' => 'The :attribute field must be :size kilobytes.', + 'numeric' => 'The :attribute field must be :size.', + 'string' => 'The :attribute field must be :size characters.', + ], + 'starts_with' => 'The :attribute field must start with one of the following: :values.', + 'string' => 'The :attribute field must be a string.', + 'timezone' => 'The :attribute field must be a valid timezone.', + 'unique' => 'The :attribute has already been taken.', + 'uploaded' => 'The :attribute failed to upload.', + 'uppercase' => 'The :attribute field must be uppercase.', + 'url' => 'The :attribute field must be a valid URL.', + 'ulid' => 'The :attribute field must be a valid ULID.', + 'uuid' => 'The :attribute field must be a valid UUID.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap our attribute placeholder + | with something more reader friendly such as "E-Mail Address" instead + | of "email". This simply helps us make our message more expressive. + | + */ + + 'attributes' => [], + +]; diff --git a/lang/sv/auth.php b/lang/sv/auth.php new file mode 100644 index 0000000..eaf875a --- /dev/null +++ b/lang/sv/auth.php @@ -0,0 +1,7 @@ + 'Dessa uppgifter stämmer inte med våra register.', + 'password' => 'Det angivna lösenordet är felaktigt.', + 'throttle' => 'För många inloggningsförsök. Försök igen om :seconds sekunder.', +]; diff --git a/lang/sv/pagination.php b/lang/sv/pagination.php new file mode 100644 index 0000000..9e0373c --- /dev/null +++ b/lang/sv/pagination.php @@ -0,0 +1,6 @@ + '« Föregående', + 'next' => 'Nästa »', +]; diff --git a/lang/sv/passwords.php b/lang/sv/passwords.php new file mode 100644 index 0000000..8fbfa2b --- /dev/null +++ b/lang/sv/passwords.php @@ -0,0 +1,9 @@ + 'Ditt lösenord har återställts.', + 'sent' => 'Vi har skickat en länk för återställning av lösenordet till din e-post.', + 'throttled' => 'Vänta innan du försöker igen.', + 'token' => 'Denna token för återställning av lösenord är ogiltig.', + 'user' => 'Vi kan inte hitta någon användare med den e-postadressen.', +]; diff --git a/lang/sv/validation.php b/lang/sv/validation.php new file mode 100644 index 0000000..c0dab60 --- /dev/null +++ b/lang/sv/validation.php @@ -0,0 +1,165 @@ + 'Fältet :attribute måste accepteras.', + 'accepted_if' => 'Fältet :attribute måste accepteras när :other är :value.', + 'active_url' => 'Fältet :attribute måste vara en giltig URL.', + 'after' => 'Fältet :attribute måste vara ett datum efter :date.', + 'after_or_equal' => 'Fältet :attribute måste vara ett datum efter eller lika med :date.', + 'alpha' => 'Fältet :attribute får bara innehålla bokstäver.', + 'alpha_dash' => 'Fältet :attribute får bara innehålla bokstäver, siffror, bindestreck och understreck.', + 'alpha_num' => 'Fältet :attribute får bara innehålla bokstäver och siffror.', + 'any_of' => 'Fältet :attribute är ogiltigt.', + 'array' => 'Fältet :attribute måste vara en array.', + 'ascii' => 'Fältet :attribute får bara innehålla enkelbyte alfanumeriska tecken och symboler.', + 'before' => 'Fältet :attribute måste vara ett datum före :date.', + 'before_or_equal' => 'Fältet :attribute måste vara ett datum före eller lika med :date.', + 'between' => [ + 'array' => 'Fältet :attribute måste ha mellan :min och :max poster.', + 'file' => 'Fältet :attribute måste vara mellan :min och :max kilobyte.', + 'numeric' => 'Fältet :attribute måste vara mellan :min och :max.', + 'string' => 'Fältet :attribute måste vara mellan :min och :max tecken.', + ], + 'boolean' => 'Fältet :attribute måste vara sant eller falskt.', + 'can' => 'Fältet :attribute innehåller ett otillåtet värde.', + 'confirmed' => 'Bekräftelsen av fältet :attribute stämmer inte.', + 'contains' => 'Fältet :attribute saknar ett obligatoriskt värde.', + 'current_password' => 'Lösenordet är felaktigt.', + 'date' => 'Fältet :attribute måste vara ett giltigt datum.', + 'date_equals' => 'Fältet :attribute måste vara ett datum lika med :date.', + 'date_format' => 'Fältet :attribute måste matcha formatet :format.', + 'decimal' => 'Fältet :attribute måste ha :decimal decimaler.', + 'declined' => 'Fältet :attribute måste avvisas.', + 'declined_if' => 'Fältet :attribute måste avvisas när :other är :value.', + 'different' => 'Fältet :attribute och :other måste vara olika.', + 'digits' => 'Fältet :attribute måste vara :digits siffror.', + 'digits_between' => 'Fältet :attribute måste vara mellan :min och :max siffror.', + 'dimensions' => 'Fältet :attribute har ogiltiga bilddimensioner.', + 'distinct' => 'Fältet :attribute har ett duplicerat värde.', + 'doesnt_contain' => 'Fältet :attribute får inte innehålla något av följande: :values.', + 'doesnt_end_with' => 'Fältet :attribute får inte sluta med något av följande: :values.', + 'doesnt_start_with' => 'Fältet :attribute får inte börja med något av följande: :values.', + 'email' => 'Fältet :attribute måste vara en giltig e-postadress.', + 'encoding' => 'Fältet :attribute måste vara kodat i :encoding.', + 'ends_with' => 'Fältet :attribute måste sluta med något av följande: :values.', + 'enum' => 'Det valda :attribute är ogiltigt.', + 'exists' => 'Det valda :attribute är ogiltigt.', + 'extensions' => 'Fältet :attribute måste ha ett av följande filnamnstillägg: :values.', + 'file' => 'Fältet :attribute måste vara en fil.', + 'filled' => 'Fältet :attribute måste ha ett värde.', + 'gt' => [ + 'array' => 'Fältet :attribute måste ha fler än :value poster.', + 'file' => 'Fältet :attribute måste vara större än :value kilobyte.', + 'numeric' => 'Fältet :attribute måste vara större än :value.', + 'string' => 'Fältet :attribute måste vara längre än :value tecken.', + ], + 'gte' => [ + 'array' => 'Fältet :attribute måste ha :value poster eller fler.', + 'file' => 'Fältet :attribute måste vara större än eller lika med :value kilobyte.', + 'numeric' => 'Fältet :attribute måste vara större än eller lika med :value.', + 'string' => 'Fältet :attribute måste vara längre än eller lika med :value tecken.', + ], + 'hex_color' => 'Fältet :attribute måste vara en giltig hexadecimal färg.', + 'image' => 'Fältet :attribute måste vara en bild.', + 'in' => 'Det valda :attribute är ogiltigt.', + 'in_array' => 'Fältet :attribute måste finnas i :other.', + 'in_array_keys' => 'Fältet :attribute måste innehålla minst en av följande nycklar: :values.', + 'integer' => 'Fältet :attribute måste vara ett heltal.', + 'ip' => 'Fältet :attribute måste vara en giltig IP-adress.', + 'ipv4' => 'Fältet :attribute måste vara en giltig IPv4-adress.', + 'ipv6' => 'Fältet :attribute måste vara en giltig IPv6-adress.', + 'json' => 'Fältet :attribute måste vara en giltig JSON-sträng.', + 'list' => 'Fältet :attribute måste vara en lista.', + 'lowercase' => 'Fältet :attribute måste vara med gemener.', + 'lt' => [ + 'array' => 'Fältet :attribute måste ha färre än :value poster.', + 'file' => 'Fältet :attribute måste vara mindre än :value kilobyte.', + 'numeric' => 'Fältet :attribute måste vara mindre än :value.', + 'string' => 'Fältet :attribute måste vara kortare än :value tecken.', + ], + 'lte' => [ + 'array' => 'Fältet :attribute får inte ha fler än :value poster.', + 'file' => 'Fältet :attribute måste vara mindre än eller lika med :value kilobyte.', + 'numeric' => 'Fältet :attribute måste vara mindre än eller lika med :value.', + 'string' => 'Fältet :attribute måste vara kortare än eller lika med :value tecken.', + ], + 'mac_address' => 'Fältet :attribute måste vara en giltig MAC-adress.', + 'max' => [ + 'array' => 'Fältet :attribute får inte ha fler än :max poster.', + 'file' => 'Fältet :attribute får inte vara större än :max kilobyte.', + 'numeric' => 'Fältet :attribute får inte vara större än :max.', + 'string' => 'Fältet :attribute får inte vara längre än :max tecken.', + ], + 'max_digits' => 'Fältet :attribute får inte ha fler än :max siffror.', + 'mimes' => 'Fältet :attribute måste vara en fil av typen: :values.', + 'mimetypes' => 'Fältet :attribute måste vara en fil av typen: :values.', + 'min' => [ + 'array' => 'Fältet :attribute måste ha minst :min poster.', + 'file' => 'Fältet :attribute måste vara minst :min kilobyte.', + 'numeric' => 'Fältet :attribute måste vara minst :min.', + 'string' => 'Fältet :attribute måste vara minst :min tecken.', + ], + 'min_digits' => 'Fältet :attribute måste ha minst :min siffror.', + 'missing' => 'Fältet :attribute måste saknas.', + 'missing_if' => 'Fältet :attribute måste saknas när :other är :value.', + 'missing_unless' => 'Fältet :attribute måste saknas om inte :other är :value.', + 'missing_with' => 'Fältet :attribute måste saknas när :values är närvarande.', + 'missing_with_all' => 'Fältet :attribute måste saknas när :values är närvarande.', + 'multiple_of' => 'Fältet :attribute måste vara en multipel av :value.', + 'not_in' => 'Det valda :attribute är ogiltigt.', + 'not_regex' => 'Formatet för fältet :attribute är ogiltigt.', + 'numeric' => 'Fältet :attribute måste vara ett nummer.', + 'password' => [ + 'letters' => 'Fältet :attribute måste innehålla minst en bokstav.', + 'mixed' => 'Fältet :attribute måste innehålla minst en stor och en liten bokstav.', + 'numbers' => 'Fältet :attribute måste innehålla minst ett nummer.', + 'symbols' => 'Fältet :attribute måste innehålla minst en symbol.', + 'uncompromised' => 'Det angivna :attribute har förekommit i en dataläcka. Välj ett annat :attribute.', + ], + 'present' => 'Fältet :attribute måste vara närvarande.', + 'present_if' => 'Fältet :attribute måste vara närvarande när :other är :value.', + 'present_unless' => 'Fältet :attribute måste vara närvarande om inte :other är :value.', + 'present_with' => 'Fältet :attribute måste vara närvarande när :values är närvarande.', + 'present_with_all' => 'Fältet :attribute måste vara närvarande när :values är närvarande.', + 'prohibited' => 'Fältet :attribute är förbjudet.', + 'prohibited_if' => 'Fältet :attribute är förbjudet när :other är :value.', + 'prohibited_if_accepted' => 'Fältet :attribute är förbjudet när :other är accepterat.', + 'prohibited_if_declined' => 'Fältet :attribute är förbjudet när :other är avvisat.', + 'prohibited_unless' => 'Fältet :attribute är förbjudet om inte :other finns i :values.', + 'prohibits' => 'Fältet :attribute förbjuder att :other är närvarande.', + 'regex' => 'Formatet för fältet :attribute är ogiltigt.', + 'required' => 'Fältet :attribute är obligatoriskt.', + 'required_array_keys' => 'Fältet :attribute måste innehålla poster för: :values.', + 'required_if' => 'Fältet :attribute är obligatoriskt när :other är :value.', + 'required_if_accepted' => 'Fältet :attribute är obligatoriskt när :other är accepterat.', + 'required_if_declined' => 'Fältet :attribute är obligatoriskt när :other är avvisat.', + 'required_unless' => 'Fältet :attribute är obligatoriskt om inte :other finns i :values.', + 'required_with' => 'Fältet :attribute är obligatoriskt när :values är närvarande.', + 'required_with_all' => 'Fältet :attribute är obligatoriskt när :values är närvarande.', + 'required_without' => 'Fältet :attribute är obligatoriskt när :values inte är närvarande.', + 'required_without_all' => 'Fältet :attribute är obligatoriskt när ingen av :values är närvarande.', + 'same' => 'Fältet :attribute måste matcha :other.', + 'size' => [ + 'array' => 'Fältet :attribute måste innehålla :size poster.', + 'file' => 'Fältet :attribute måste vara :size kilobyte.', + 'numeric' => 'Fältet :attribute måste vara :size.', + 'string' => 'Fältet :attribute måste vara :size tecken.', + ], + 'starts_with' => 'Fältet :attribute måste börja med något av följande: :values.', + 'string' => 'Fältet :attribute måste vara en sträng.', + 'timezone' => 'Fältet :attribute måste vara en giltig tidszon.', + 'unique' => ':attribute har redan tagits.', + 'uploaded' => ':attribute kunde inte laddas upp.', + 'uppercase' => 'Fältet :attribute måste vara med versaler.', + 'url' => 'Fältet :attribute måste vara en giltig URL.', + 'ulid' => 'Fältet :attribute måste vara ett giltigt ULID.', + 'uuid' => 'Fältet :attribute måste vara ett giltigt UUID.', + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + + 'attributes' => [], +]; diff --git a/lang/vendor/filament-actions/am/associate.php b/lang/vendor/filament-actions/am/associate.php new file mode 100644 index 0000000..8e0878b --- /dev/null +++ b/lang/vendor/filament-actions/am/associate.php @@ -0,0 +1,39 @@ + [ + + 'label' => 'አጣምር', + 'modal' => [ + + 'heading' => ':labelን አጣምር', + 'fields' => [ + + 'record_id' => [ + + 'label' => 'ሪከርድ', + ], + ], + 'actions' => [ + + 'associate' => [ + + 'label' => 'አጣምር', + + ], + 'associate_another' => [ + + 'label' => 'አጣምር & ሌላ አጣምር', + ], + ], + ], + 'notifications' => [ + + 'associated' => [ + + 'title' => 'ተጣምሮዋል', + ], + ], + ], +]; diff --git a/lang/vendor/filament-actions/am/attach.php b/lang/vendor/filament-actions/am/attach.php new file mode 100644 index 0000000..0839ea1 --- /dev/null +++ b/lang/vendor/filament-actions/am/attach.php @@ -0,0 +1,38 @@ + [ + + 'label' => 'ያያይዙ', + 'modal' => [ + + 'heading' => ':labelን ያያይዙ', + 'fields' => [ + + 'record_id' => [ + + 'label' => 'ሪከርድ', + ], + ], + 'actions' => [ + + 'attach' => [ + + 'label' => 'ያያይዙ', + ], + 'attach_another' => [ + + 'label' => 'ያያይዙ & ሌላ ያያይዙ', + ], + ], + ], + 'notifications' => [ + + 'attached' => [ + + 'title' => 'ተያይዞዋል', + ], + ], + ], +]; diff --git a/lang/vendor/filament-actions/am/create.php b/lang/vendor/filament-actions/am/create.php new file mode 100644 index 0000000..7ce4b54 --- /dev/null +++ b/lang/vendor/filament-actions/am/create.php @@ -0,0 +1,32 @@ + [ + + 'label' => 'አዲስ :label', + + 'modal' => [ + + 'heading' => ':labelን መዝግብ', + 'actions' => [ + + 'create' => [ + + 'label' => 'መዝግብ', + ], + 'create_another' => [ + + 'label' => 'መዝግብ & ሌላ መዝግብ', + ], + ], + ], + 'notifications' => [ + + 'created' => [ + + 'title' => 'ተመዝግቦዋል', + ], + ], + ], +]; diff --git a/lang/vendor/filament-actions/am/delete.php b/lang/vendor/filament-actions/am/delete.php new file mode 100644 index 0000000..6f96410 --- /dev/null +++ b/lang/vendor/filament-actions/am/delete.php @@ -0,0 +1,49 @@ + [ + + 'label' => 'አጥፋ', + 'modal' => [ + + 'heading' => ':labelን አጥፋ', + 'actions' => [ + + 'delete' => [ + + 'label' => 'አጥፋ', + ], + ], + ], + 'notifications' => [ + + 'deleted' => [ + + 'title' => 'ጠፍቶዋል', + ], + ], + ], + 'multiple' => [ + + 'label' => 'የተመረጡትን አጥፋ', + 'modal' => [ + + 'heading' => 'የተመረጡት :labelን አጥፋ', + 'actions' => [ + + 'delete' => [ + + 'label' => 'አጥፋ', + ], + ], + ], + 'notifications' => [ + + 'deleted' => [ + + 'title' => 'ጠፍቶዋል', + ], + ], + ], +]; diff --git a/lang/vendor/filament-actions/am/detach.php b/lang/vendor/filament-actions/am/detach.php new file mode 100644 index 0000000..41e0322 --- /dev/null +++ b/lang/vendor/filament-actions/am/detach.php @@ -0,0 +1,49 @@ + [ + + 'label' => 'ለያይ', + 'modal' => [ + + 'heading' => ':labelን ለያይ', + 'actions' => [ + + 'detach' => [ + + 'label' => 'ለያይ', + ], + ], + ], + 'notifications' => [ + + 'detached' => [ + + 'title' => 'ተለያይቶዋል', + ], + ], + ], + 'multiple' => [ + + 'label' => 'የተመረጡትን ለያይ', + 'modal' => [ + + 'heading' => 'የተመረጡት :labelን ለያይ', + 'actions' => [ + + 'detach' => [ + + 'label' => 'ለያይ', + ], + ], + ], + 'notifications' => [ + + 'detached' => [ + + 'title' => 'ለያይ', + ], + ], + ], +]; diff --git a/lang/vendor/filament-actions/am/dissociate.php b/lang/vendor/filament-actions/am/dissociate.php new file mode 100644 index 0000000..08da582 --- /dev/null +++ b/lang/vendor/filament-actions/am/dissociate.php @@ -0,0 +1,49 @@ + [ + + 'label' => 'አለያይ', + 'modal' => [ + + 'heading' => ':labelን አለያይ', + 'actions' => [ + + 'dissociate' => [ + + 'label' => 'አለያይ', + ], + ], + ], + 'notifications' => [ + + 'dissociated' => [ + + 'title' => 'ተለያይቶዋል', + ], + ], + ], + 'multiple' => [ + + 'label' => 'የተመረጡትን አለያይ', + 'modal' => [ + + 'heading' => 'የተመረጡ :labelን አለያይ', + 'actions' => [ + + 'dissociate' => [ + + 'label' => 'አለያይ', + ], + ], + ], + 'notifications' => [ + + 'dissociated' => [ + + 'title' => 'ሁሉም ተለያይተዋል', + ], + ], + ], +]; diff --git a/lang/vendor/filament-actions/am/edit.php b/lang/vendor/filament-actions/am/edit.php new file mode 100644 index 0000000..e42935f --- /dev/null +++ b/lang/vendor/filament-actions/am/edit.php @@ -0,0 +1,27 @@ + [ + + 'label' => 'አድስ', + 'modal' => [ + + 'heading' => ':labelን አድስ', + 'actions' => [ + + 'save' => [ + + 'label' => 'አስቀምጥ', + ], + ], + ], + 'notifications' => [ + + 'saved' => [ + + 'title' => 'እድሳቱ ተጠናቆዋል', + ], + ], + ], +]; diff --git a/lang/vendor/filament-actions/am/export.php b/lang/vendor/filament-actions/am/export.php new file mode 100644 index 0000000..f7870eb --- /dev/null +++ b/lang/vendor/filament-actions/am/export.php @@ -0,0 +1,64 @@ + 'ኤክስፖርት :label', + 'modal' => [ + + 'heading' => 'ኤክስፖርት :label', + 'form' => [ + + 'columns' => [ + + 'label' => 'አምዶች', + 'form' => [ + + 'is_enabled' => [ + + 'label' => ':column በርቶዋል', + ], + 'label' => [ + + 'label' => ':column መለያ', + ], + ], + ], + ], + 'actions' => [ + + 'export' => [ + + 'label' => 'ኤክስፖርት', + ], + ], + ], + 'notifications' => [ + + 'completed' => [ + + 'title' => 'ኤክስፖርት ተጠናቋል', + 'actions' => [ + + 'download_csv' => [ + + 'label' => '.csv አውርድ', + ], + 'download_xlsx' => [ + + 'label' => '.xlsx አውርድ', + ], + ], + ], + 'max_rows' => [ + + 'title' => 'ይህ በጣም ትልቅ ነው', + 'body' => 'በአንድ ጊዜ ከ 1 ረድፍ በላይ ኤክስፖርት ማድረግ አይችሉም።|ረድፎችን በአንድ ጊዜ ከ:count በላይ ኤክስፖርት ማድረግ አይችሉም።', + ], + 'started' => [ + + 'title' => 'ኤክስፖርት ተጀምሮዋል', + 'body' => 'ኤክስፖርቱ ተጀምሯል እና 1 ረድፍ ከበስተጀርባ ይካሄዳል።|ኤክስፖርቱ ጀምሯል እና :count ረድፎች ከበስተጀርባ ይከናወናሉ.', + ], + ], + 'file_name' => 'export-:export_id-:model', +]; diff --git a/lang/vendor/filament-actions/am/force-delete.php b/lang/vendor/filament-actions/am/force-delete.php new file mode 100644 index 0000000..1ec9188 --- /dev/null +++ b/lang/vendor/filament-actions/am/force-delete.php @@ -0,0 +1,49 @@ + [ + + 'label' => 'የምር አጥፋ', + 'modal' => [ + + 'heading' => ':labelን የምር አጥፋ', + 'actions' => [ + + 'delete' => [ + + 'label' => 'አጥፋ', + ], + ], + ], + 'notifications' => [ + + 'deleted' => [ + + 'title' => 'ጠፍቶዋል', + ], + ], + ], + 'multiple' => [ + + 'label' => 'የተመረጡትን የምር አጥፋ', + 'modal' => [ + + 'heading' => 'የተመረጡትን :label የምር አጥፋ', + 'actions' => [ + + 'delete' => [ + + 'label' => 'አጥፋ', + ], + ], + ], + 'notifications' => [ + + 'deleted' => [ + + 'title' => 'ጠፍቶዋል', + ], + ], + ], +]; diff --git a/lang/vendor/filament-actions/am/group.php b/lang/vendor/filament-actions/am/group.php new file mode 100644 index 0000000..02d2122 --- /dev/null +++ b/lang/vendor/filament-actions/am/group.php @@ -0,0 +1,9 @@ + [ + + 'label' => 'ድርጊቶች', + ], +]; diff --git a/lang/vendor/filament-actions/am/import.php b/lang/vendor/filament-actions/am/import.php new file mode 100644 index 0000000..7dead9a --- /dev/null +++ b/lang/vendor/filament-actions/am/import.php @@ -0,0 +1,73 @@ + ':labelን ኢምፖርት', + 'modal' => [ + + 'heading' => ':labelን ኢምፖርት', + 'form' => [ + + 'file' => [ + + 'label' => 'ፋይል', + 'placeholder' => 'የCSV ፋይል ይስቀሉ።', + 'rules' => [ + + 'duplicate_columns' => '{0} The file must not contain more than one empty column header.|{1,*} The file must not contain duplicate column headers: :columns.', + ], + ], + 'columns' => [ + + 'label' => 'አምዶች', + 'placeholder' => 'አምድ ይምረጡ', + ], + ], + 'actions' => [ + + 'download_example' => [ + + 'label' => 'ምሳሌ የCSV ፋይል ያውርዱ', + ], + 'import' => [ + + 'label' => 'ኢምፖርት', + ], + ], + ], + 'notifications' => [ + + 'completed' => [ + + 'title' => 'ኢምፖርቱ ተጠናቆዋል', + 'actions' => [ + + 'download_failed_rows_csv' => [ + + 'label' => 'ስለ ያልተሳካው ረድፍ መረጃ ያውርዱ|ስለ ያልተሳኩ ረድፎች መረጃ ያውርዱ', + ], + ], + ], + 'max_rows' => [ + + 'title' => 'የተጫነው የCSV ፋይል በጣም ትልቅ ነው።', + 'body' => 'በአንድ ጊዜ ከ1 ረድፍ በላይ መጫን አይችሉም።|ረድፎችን በአንድ ጊዜ ከ:count በላይ ማስገባት አይችሉም።', + ], + 'started' => [ + + 'title' => 'ኢምፖርቱ ተጀምሮዋል', + 'body' => 'መጫን ጀምሯል እና 1 ረድፍ ከበስተጀርባ ይካሄዳል።|የእርስዎ መጫን ጀምሯል እና :count ረድፎች ከበስተጀርባ ይሰራሉ።', + ], + ], + 'example_csv' => [ + + 'file_name' => ':importer-example', + ], + 'failure_csv' => [ + + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'ስህተት', + 'system_error' => 'የሲስተም ስህተት፣ እባክዎ ድጋፍን ያግኙ።', + 'column_mapping_required_for_new_record' => 'The :attribute column was not mapped to a column in the file, but it is required for creating new records.', + ], +]; diff --git a/lang/vendor/filament-actions/am/modal.php b/lang/vendor/filament-actions/am/modal.php new file mode 100644 index 0000000..abfb0e4 --- /dev/null +++ b/lang/vendor/filament-actions/am/modal.php @@ -0,0 +1,21 @@ + 'እርግጠኛ ነዎት ይህን ማድረግ ይፈልጋሉ?', + 'actions' => [ + + 'cancel' => [ + + 'label' => 'ይቅር', + ], + 'confirm' => [ + + 'label' => 'አጽድቅ', + ], + 'submit' => [ + + 'label' => 'መዝግብ', + ], + ], +]; diff --git a/lang/vendor/filament-actions/am/replicate.php b/lang/vendor/filament-actions/am/replicate.php new file mode 100644 index 0000000..5da9aa9 --- /dev/null +++ b/lang/vendor/filament-actions/am/replicate.php @@ -0,0 +1,27 @@ + [ + + 'label' => 'ይድገሙት', + 'modal' => [ + + 'heading' => ':labelን ይድገሙት', + 'actions' => [ + + 'replicate' => [ + + 'label' => 'ይድገሙት', + ], + ], + ], + 'notifications' => [ + + 'replicated' => [ + + 'title' => 'ተደግሟል', + ], + ], + ], +]; diff --git a/lang/vendor/filament-actions/am/restore.php b/lang/vendor/filament-actions/am/restore.php new file mode 100644 index 0000000..2797216 --- /dev/null +++ b/lang/vendor/filament-actions/am/restore.php @@ -0,0 +1,49 @@ + [ + + 'label' => 'እነበረበት መልስ', + 'modal' => [ + + 'heading' => ':labeln መልስ', + 'actions' => [ + + 'restore' => [ + + 'label' => 'እነበረበት መልስ', + ], + ], + ], + 'notifications' => [ + + 'restored' => [ + + 'title' => 'ወደነበረበት ተመልሷል', + ], + ], + ], + 'multiple' => [ + + 'label' => 'የተመረጡትን መልስ', + 'modal' => [ + + 'heading' => 'የተመረጡት :labelን መልስ', + 'actions' => [ + + 'restore' => [ + + 'label' => 'እነበረበት መልስ', + ], + ], + ], + 'notifications' => [ + + 'restored' => [ + + 'title' => 'ወደነበረበት ተመልሷል', + ], + ], + ], +]; diff --git a/lang/vendor/filament-actions/am/view.php b/lang/vendor/filament-actions/am/view.php new file mode 100644 index 0000000..c9fb8c6 --- /dev/null +++ b/lang/vendor/filament-actions/am/view.php @@ -0,0 +1,20 @@ + [ + + 'label' => 'እይ', + 'modal' => [ + + 'heading' => ':labelን እይ', + 'actions' => [ + + 'close' => [ + + 'label' => 'ዝጋ', + ], + ], + ], + ], +]; diff --git a/lang/vendor/filament-actions/ar/associate.php b/lang/vendor/filament-actions/ar/associate.php new file mode 100644 index 0000000..09ae37c --- /dev/null +++ b/lang/vendor/filament-actions/ar/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'ارتباط', + + 'modal' => [ + + 'heading' => 'ربط :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'السجلات', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'ربط', + ], + + 'associate_another' => [ + 'label' => 'ربط وبدء ربط المزيد', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'تم الربط', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ar/attach.php b/lang/vendor/filament-actions/ar/attach.php new file mode 100644 index 0000000..d8ca7a9 --- /dev/null +++ b/lang/vendor/filament-actions/ar/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'إرفاق', + + 'modal' => [ + + 'heading' => 'إرفاق :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'سجل', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'إرفاق', + ], + + 'attach_another' => [ + 'label' => 'إرفاق وبدء إرفاق المزيد', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'تم الإرفاق', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ar/create.php b/lang/vendor/filament-actions/ar/create.php new file mode 100644 index 0000000..49cf98f --- /dev/null +++ b/lang/vendor/filament-actions/ar/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'إضافة :label', + + 'modal' => [ + + 'heading' => 'إضافة :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'إضافة', + ], + + 'create_another' => [ + 'label' => 'إضافة وبدء إضافة المزيد', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'تمت الإضافة', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ar/delete.php b/lang/vendor/filament-actions/ar/delete.php new file mode 100644 index 0000000..6bc810f --- /dev/null +++ b/lang/vendor/filament-actions/ar/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'حذف', + + 'modal' => [ + + 'heading' => 'حذف :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'حذف', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'تم الحذف', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'حذف المحدد', + + 'modal' => [ + + 'heading' => 'حذف المحدد :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'حذف', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'تم الحذف', + ], + + 'deleted_partial' => [ + 'title' => 'تم حذف :count من :total', + 'missing_authorization_failure_message' => 'ليس لديك إذن لحذف :count.', + 'missing_processing_failure_message' => ':count لم يتم حذفه.', + ], + + 'deleted_none' => [ + 'title' => 'لم يتم حذف أي شيء', + 'missing_authorization_failure_message' => 'ليس لديك إذن لحذف :count.', + 'missing_processing_failure_message' => 'لم يتم حذف :count.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ar/detach.php b/lang/vendor/filament-actions/ar/detach.php new file mode 100644 index 0000000..2525194 --- /dev/null +++ b/lang/vendor/filament-actions/ar/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'فصل', + + 'modal' => [ + + 'heading' => 'فصل :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'فصل', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'تم الفصل', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'فصل المحدد', + + 'modal' => [ + + 'heading' => 'فصل المحدد :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'فصل', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'تم الفصل', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ar/dissociate.php b/lang/vendor/filament-actions/ar/dissociate.php new file mode 100644 index 0000000..85e5782 --- /dev/null +++ b/lang/vendor/filament-actions/ar/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'فك الارتباط', + + 'modal' => [ + + 'heading' => 'فك ربط :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'فك الارتباط', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'تم فك الارتباط', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'فك ارتباط المحدد', + + 'modal' => [ + + 'heading' => 'فك ارتباط :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'فك الارتباط', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'تم فك الارتباط', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ar/edit.php b/lang/vendor/filament-actions/ar/edit.php new file mode 100644 index 0000000..c0bc060 --- /dev/null +++ b/lang/vendor/filament-actions/ar/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'تعديل', + + 'modal' => [ + + 'heading' => 'تعديل :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'حفظ التغييرات', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'تم الحفظ', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ar/export.php b/lang/vendor/filament-actions/ar/export.php new file mode 100644 index 0000000..89ad611 --- /dev/null +++ b/lang/vendor/filament-actions/ar/export.php @@ -0,0 +1,94 @@ + 'تصدير :label', + + 'modal' => [ + + 'heading' => 'تصدير :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'الأعمدة', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'تحديد الكل', + ], + + 'deselect_all' => [ + 'label' => 'إلغاء تحديد الكل', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column مفعل', + ], + + 'label' => [ + 'label' => 'تسمية :column', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'تصدير', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'اكتمل التصدير', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'تنزيل .csv', + ], + + 'download_xlsx' => [ + 'label' => 'تنزيل .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'التصدير كبير جداً', + 'body' => 'لا يمكنك تصدير أكثر من صف واحد في المرة الواحدة.|لا يمكنك تصدير أكثر من :count صف في المرة الواحدة.', + ], + + 'no_columns' => [ + 'title' => 'لم يتم تحديد أعمدة', + 'body' => 'يرجى تحديد عمود واحد على الأقل للتصدير.', + ], + + 'started' => [ + 'title' => 'بدأ التصدير', + 'body' => 'بدأ التصدير الخاص بك وسيتم معالجة صف واحد في الخلفية. ستتلقى إشعاراً برابط التنزيل عند الانتهاء.|بدأ التصدير الخاص بك وسيتم معالجة :count صف في الخلفية. ستتلقى إشعاراً برابط التنزيل عند الانتهاء.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/ar/force-delete.php b/lang/vendor/filament-actions/ar/force-delete.php new file mode 100644 index 0000000..5109262 --- /dev/null +++ b/lang/vendor/filament-actions/ar/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'حذف نهائي', + + 'modal' => [ + + 'heading' => 'حذف نهائي لـ :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'حذف', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'تم الحذف', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'حذف المحدد نهائيا', + + 'modal' => [ + + 'heading' => 'حذف نهائي لـ :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'حذف', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'تم الحذف', + ], + + 'deleted_partial' => [ + 'title' => 'تم حذف :count من أصل :total', + 'missing_authorization_failure_message' => 'ليس لديك صلاحية لحذف :count.', + 'missing_processing_failure_message' => 'تعذر حذف :count.', + ], + + 'deleted_none' => [ + 'title' => 'فشل في الحذف', + 'missing_authorization_failure_message' => 'ليس لديك صلاحية لحذف :count.', + 'missing_processing_failure_message' => 'تعذر حذف :count.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ar/group.php b/lang/vendor/filament-actions/ar/group.php new file mode 100644 index 0000000..9226257 --- /dev/null +++ b/lang/vendor/filament-actions/ar/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'الإجراءات', + ], + +]; diff --git a/lang/vendor/filament-actions/ar/import.php b/lang/vendor/filament-actions/ar/import.php new file mode 100644 index 0000000..93a00fc --- /dev/null +++ b/lang/vendor/filament-actions/ar/import.php @@ -0,0 +1,81 @@ + 'استيراد :label', + + 'modal' => [ + + 'heading' => 'استيراد :label', + + 'form' => [ + + 'file' => [ + 'label' => 'ملف', + 'placeholder' => 'تحميل ملف CSV', + 'rules' => [ + 'duplicate_columns' => '{0} يجب ألا يحتوي الملف على أكثر من عنوان عمود فارغ واحد.|{1,*} يجب ألا يحتوي الملف على عناوين أعمدة مكررة: :columns.', + ], + ], + + 'columns' => [ + 'label' => 'الأعمدة', + 'placeholder' => 'اختر عمود', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'تنزيل مثال لملف CSV', + ], + + 'import' => [ + 'label' => 'استيراد', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'اكتمل الاستيراد', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'تنزيل معلومات حول الصف الفاشل|تنزيل معلومات حول الصفوف الفاشلة', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'ملف CSV الذي تم تحميله كبير جدًا', + 'body' => 'لا تستطيع استيراد أكثر من صف واحد في كل مرة.|لا تستطيع استيراد أكثر من :count صف في كل مرة.', + ], + + 'started' => [ + 'title' => 'بدء الاستيراد', + 'body' => 'بدأت عملية الاستيراد الخاصة بك وستتم معالجة صف واحد في الخلفية.|بدأت عملية الاستيراد الخاصة بك وستتم معالجة :count صفوف في الخلفية.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'خطأ', + 'system_error' => 'خطأ في النظام، يرجى الاتصال بالدعم.', + 'column_mapping_required_for_new_record' => 'لم يتم تعيين العمود :attribut إلى عمود في الملف، ولكنه مطلوب لإنشاء سجلات جديدة.', + ], + +]; diff --git a/lang/vendor/filament-actions/ar/modal.php b/lang/vendor/filament-actions/ar/modal.php new file mode 100644 index 0000000..de23481 --- /dev/null +++ b/lang/vendor/filament-actions/ar/modal.php @@ -0,0 +1,23 @@ + 'هل أنت متأكد من القيام بهذه العملية؟', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'إلغاء', + ], + + 'confirm' => [ + 'label' => 'تأكيد', + ], + + 'submit' => [ + 'label' => 'إرسال', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ar/notifications.php b/lang/vendor/filament-actions/ar/notifications.php new file mode 100644 index 0000000..9f1ce23 --- /dev/null +++ b/lang/vendor/filament-actions/ar/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'تم تجاوز الحد المسموح', + 'body' => 'يرجى المحاولة مرة أخرى بعد :seconds ثانية.', + ], + +]; diff --git a/lang/vendor/filament-actions/ar/replicate.php b/lang/vendor/filament-actions/ar/replicate.php new file mode 100644 index 0000000..789ae94 --- /dev/null +++ b/lang/vendor/filament-actions/ar/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'نسخة', + + 'modal' => [ + + 'heading' => 'استنساخ :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'نسخ', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'تم النسخ', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ar/restore.php b/lang/vendor/filament-actions/ar/restore.php new file mode 100644 index 0000000..afa159c --- /dev/null +++ b/lang/vendor/filament-actions/ar/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'استعادة', + + 'modal' => [ + + 'heading' => 'استعادة :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'استعادة', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'تمت الاستعادة', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'استعادة المحدد', + + 'modal' => [ + + 'heading' => 'استعادة :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'استعادة', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'تمت الاستعادة', + ], + + 'restored_partial' => [ + 'title' => 'تمت استعادة :count من أصل :total', + 'missing_authorization_failure_message' => 'ليس لديك صلاحية لاستعادة :count.', + 'missing_processing_failure_message' => 'تعذر استعادة :count.', + ], + + 'restored_none' => [ + 'title' => 'فشل في الاستعادة', + 'missing_authorization_failure_message' => 'ليس لديك صلاحية لاستعادة :count.', + 'missing_processing_failure_message' => 'تعذر استعادة :count.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ar/view.php b/lang/vendor/filament-actions/ar/view.php new file mode 100644 index 0000000..b891f81 --- /dev/null +++ b/lang/vendor/filament-actions/ar/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'عرض', + + 'modal' => [ + + 'heading' => 'عرض :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'إغلاق', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/az/associate.php b/lang/vendor/filament-actions/az/associate.php new file mode 100644 index 0000000..6597b20 --- /dev/null +++ b/lang/vendor/filament-actions/az/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Əlaqələndir', + + 'modal' => [ + + 'heading' => ':label Əlaqələndir', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Məlumat', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Əlaqələndir', + ], + + 'associate_another' => [ + 'label' => 'Əlaqələndir və başqasına başla', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Əlaqələndirildi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/az/attach.php b/lang/vendor/filament-actions/az/attach.php new file mode 100644 index 0000000..e064dc3 --- /dev/null +++ b/lang/vendor/filament-actions/az/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'İlişdir', + + 'modal' => [ + + 'heading' => ':label ilişdir', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Məlumat', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'İlişdir', + ], + + 'attach_another' => [ + 'label' => 'İlişdir və başqasına başla', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'İlişdirildi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/az/create.php b/lang/vendor/filament-actions/az/create.php new file mode 100644 index 0000000..a5980f9 --- /dev/null +++ b/lang/vendor/filament-actions/az/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => ':label Yarat', + + 'modal' => [ + + 'heading' => ':label yarat', + + 'actions' => [ + + 'create' => [ + 'label' => 'Yarat', + ], + + 'create_another' => [ + 'label' => 'Yarat və başqasını yarat', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Yaradıldı', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/az/delete.php b/lang/vendor/filament-actions/az/delete.php new file mode 100644 index 0000000..c675c5e --- /dev/null +++ b/lang/vendor/filament-actions/az/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Sil', + + 'modal' => [ + + 'heading' => ':label Sil', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Sil', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Silindi', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Seçilənləri sil', + + 'modal' => [ + + 'heading' => 'Seçilənləri sil', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Sil', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Silindi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/az/detach.php b/lang/vendor/filament-actions/az/detach.php new file mode 100644 index 0000000..653bd8e --- /dev/null +++ b/lang/vendor/filament-actions/az/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Ayır', + + 'modal' => [ + + 'heading' => ':label ayır', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Ayır', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Ayrıldı', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Seçiləni ayır', + + 'modal' => [ + + 'heading' => ':label seçiləni ayır ', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Seçiləni ayır', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Ayrıldı', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/az/dissociate.php b/lang/vendor/filament-actions/az/dissociate.php new file mode 100644 index 0000000..f6fe130 --- /dev/null +++ b/lang/vendor/filament-actions/az/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Parçala', + + 'modal' => [ + + 'heading' => ':label parçala', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Parçala', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Parçalandı', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Seçiləni parçala', + + 'modal' => [ + + 'heading' => ':label seçiləni parçala', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Seçiləni parçala', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Parçalandı', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/az/edit.php b/lang/vendor/filament-actions/az/edit.php new file mode 100644 index 0000000..4141d22 --- /dev/null +++ b/lang/vendor/filament-actions/az/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Redaktə et', + + 'modal' => [ + + 'heading' => ':label redaktə et', + + 'actions' => [ + + 'save' => [ + 'label' => 'Yadda saxla', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Yadda saxlanıldı', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/az/export.php b/lang/vendor/filament-actions/az/export.php new file mode 100644 index 0000000..22d9d79 --- /dev/null +++ b/lang/vendor/filament-actions/az/export.php @@ -0,0 +1,77 @@ + 'İxrac :label', + + 'modal' => [ + + 'heading' => 'İxrac :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Sütunlar', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column aktiv', + ], + + 'label' => [ + 'label' => ':column etiketi', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'İxrac', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'İxrac tamamlandı', + + 'actions' => [ + + 'download_csv' => [ + 'label' => '.csv olaraq endir', + ], + + 'download_xlsx' => [ + 'label' => '.xlsx olaraq endir', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'İxrac çox böyükdür', + 'body' => 'Bir dəfədə 1 sətirdən çox ixrac edə bilməzsiniz.| Bir dəfədə :count sətirdən çox ixrac edə bilməzsiniz.', + ], + + 'started' => [ + 'title' => 'İxrac başladı', + 'body' => 'İxrac başladı və 1 sətir arxa planda işlənəcək.|İxrac başladı və :count sətir arxa planda işlənəcək.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/az/force-delete.php b/lang/vendor/filament-actions/az/force-delete.php new file mode 100644 index 0000000..5e4f2f2 --- /dev/null +++ b/lang/vendor/filament-actions/az/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Həmişəlik sil', + + 'modal' => [ + + 'heading' => ':label həmişəlik sil', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Həmişəlik sil', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Məlumat həmişəlik silindi', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Seçilənləri həmişəlik sil', + + 'modal' => [ + + 'heading' => ':label seçilənləri həmişəlik sil', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Həmişəlik sil', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Məlumat həmişəlik silindi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/az/group.php b/lang/vendor/filament-actions/az/group.php new file mode 100644 index 0000000..1470b5e --- /dev/null +++ b/lang/vendor/filament-actions/az/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Tətikləyicilər', + ], + +]; diff --git a/lang/vendor/filament-actions/az/import.php b/lang/vendor/filament-actions/az/import.php new file mode 100644 index 0000000..f6885f2 --- /dev/null +++ b/lang/vendor/filament-actions/az/import.php @@ -0,0 +1,81 @@ + 'İdxal: :label', + + 'modal' => [ + + 'heading' => 'İdxal: :label', + + 'form' => [ + + 'file' => [ + 'label' => 'Fayl', + 'placeholder' => 'Bir CSV faylı seçin', + 'rules' => [ + 'duplicate_columns' => '{0} Fayl bir boş sütun başlığından çox olmamalıdır. |{1,*} Fayl təkrarlanan sütun başlıqlarına sahib olmamalıdır: :columns.', + ], + ], + + 'columns' => [ + 'label' => 'Sütunlar', + 'placeholder' => 'Sütunları uyğunlaşdırın', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Nümunə CSV faylını endir', + ], + + 'import' => [ + 'label' => 'İdxal', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'İdxal tamamlandı', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Uğursuz sətir haqqında məlumatları endir|Uğursuz sətirlər haqqında məlumatları endir', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Seçilən fayl çox böyükdür', + 'body' => 'Bir dəfədə 1-dən çox sətiri olan faylı idxal edə bilməzsiniz.|Bir dəfədə :count dən çox sətiri olan faylı idxal edə bilməzsiniz.', + ], + + 'started' => [ + 'title' => 'İdxal başladı', + 'body' => 'İdxal başladı və 1 sətir arxa planda işlənəcək.|İdxal başladı və :count sətir arxa planda işlənəcək', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'xəta', + 'system_error' => 'Sistem xətası, texniki dəstək ilə əlaqə saxlayın', + 'column_mapping_required_for_new_record' => ':attribute sütunu faylda bir sütuna təyin edilməyib, amma yeni qeydlər yaratmaq üçün tələb olunur.', + ], + +]; diff --git a/lang/vendor/filament-actions/az/modal.php b/lang/vendor/filament-actions/az/modal.php new file mode 100644 index 0000000..b07c5dd --- /dev/null +++ b/lang/vendor/filament-actions/az/modal.php @@ -0,0 +1,23 @@ + 'Bunu etmək istədiyinizdən əminsiniz?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'İmtina', + ], + + 'confirm' => [ + 'label' => 'Təsdiqlə', + ], + + 'submit' => [ + 'label' => 'Təqdim et', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/az/replicate.php b/lang/vendor/filament-actions/az/replicate.php new file mode 100644 index 0000000..f912f57 --- /dev/null +++ b/lang/vendor/filament-actions/az/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Çoxalt', + + 'modal' => [ + + 'heading' => ':label çoxalt', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Çoxalt', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Məlumat çoxaldıldı', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/az/restore.php b/lang/vendor/filament-actions/az/restore.php new file mode 100644 index 0000000..f171201 --- /dev/null +++ b/lang/vendor/filament-actions/az/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Bərpa et', + + 'modal' => [ + + 'heading' => ':label bərpa et', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Bərpa et', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Məlumat bərpa edildi', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Seçilənləri bərpa et', + + 'modal' => [ + + 'heading' => ':label seçilənləri bərpa et', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Bərpa et', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Məlumatlar bərpa edildi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/az/view.php b/lang/vendor/filament-actions/az/view.php new file mode 100644 index 0000000..ed393d4 --- /dev/null +++ b/lang/vendor/filament-actions/az/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Göstər', + + 'modal' => [ + + 'heading' => ':label göstər', + + 'actions' => [ + + 'close' => [ + 'label' => 'Bağla', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bg/associate.php b/lang/vendor/filament-actions/bg/associate.php new file mode 100644 index 0000000..8efe161 --- /dev/null +++ b/lang/vendor/filament-actions/bg/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Асоцииране', + + 'modal' => [ + + 'heading' => 'Асоциирай :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Запис', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Асоциирай', + ], + + 'associate_another' => [ + 'label' => 'Асоциирай и асоциирай друг', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Асоциирано', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bg/attach.php b/lang/vendor/filament-actions/bg/attach.php new file mode 100644 index 0000000..00d729d --- /dev/null +++ b/lang/vendor/filament-actions/bg/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Закачи', + + 'modal' => [ + + 'heading' => 'Закачи :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Запис', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Закачи', + ], + + 'attach_another' => [ + 'label' => 'Закачи и закачи друг', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Закачен', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bg/create.php b/lang/vendor/filament-actions/bg/create.php new file mode 100644 index 0000000..d2f95af --- /dev/null +++ b/lang/vendor/filament-actions/bg/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Създай :label', + + 'modal' => [ + + 'heading' => 'Създаване на :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Създай', + ], + + 'create_another' => [ + 'label' => 'Създай и създай друг', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Създаден', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bg/delete.php b/lang/vendor/filament-actions/bg/delete.php new file mode 100644 index 0000000..9175113 --- /dev/null +++ b/lang/vendor/filament-actions/bg/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Изтрий', + + 'modal' => [ + + 'heading' => 'Изтрий :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Изтрий', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Изтрит', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Изтрий избраните', + + 'modal' => [ + + 'heading' => 'Изтрий избраните :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Изтрий', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Изтрити', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bg/detach.php b/lang/vendor/filament-actions/bg/detach.php new file mode 100644 index 0000000..a87f907 --- /dev/null +++ b/lang/vendor/filament-actions/bg/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Разкачи', + + 'modal' => [ + + 'heading' => 'Разкачи :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Разкачи', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Разкачен', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Разкачи избраните', + + 'modal' => [ + + 'heading' => 'Разкачи избраните :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Разкачи', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Разкачени', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bg/dissociate.php b/lang/vendor/filament-actions/bg/dissociate.php new file mode 100644 index 0000000..aec3e6d --- /dev/null +++ b/lang/vendor/filament-actions/bg/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Деасоциирай', + + 'modal' => [ + + 'heading' => 'Деасоциирай :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Деасоциирай', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Деасоциирано', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Деасоциирай избраните', + + 'modal' => [ + + 'heading' => 'Деасоциирай избраните :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Деасоциирай', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Деасоциирани', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bg/edit.php b/lang/vendor/filament-actions/bg/edit.php new file mode 100644 index 0000000..a593ff6 --- /dev/null +++ b/lang/vendor/filament-actions/bg/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Редакция', + + 'modal' => [ + + 'heading' => 'Редактиране :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Запазване', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Запазено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bg/force-delete.php b/lang/vendor/filament-actions/bg/force-delete.php new file mode 100644 index 0000000..236013a --- /dev/null +++ b/lang/vendor/filament-actions/bg/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Оконачтелно изтриване', + + 'modal' => [ + + 'heading' => 'Оконачтелно изтриване на :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Изтрий', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Изтрито', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Оконачтелно изтриване на избраните', + + 'modal' => [ + + 'heading' => 'Оконачтелно изтриване на избраните :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Изтрий', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Изтрити', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bg/group.php b/lang/vendor/filament-actions/bg/group.php new file mode 100644 index 0000000..727dd79 --- /dev/null +++ b/lang/vendor/filament-actions/bg/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Действия', + ], + +]; diff --git a/lang/vendor/filament-actions/bg/modal.php b/lang/vendor/filament-actions/bg/modal.php new file mode 100644 index 0000000..8fdd8a6 --- /dev/null +++ b/lang/vendor/filament-actions/bg/modal.php @@ -0,0 +1,23 @@ + 'Сигурен ли си, че искаш да направиш това?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Откажи', + ], + + 'confirm' => [ + 'label' => 'Потвърди', + ], + + 'submit' => [ + 'label' => 'Изпрати', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bg/replicate.php b/lang/vendor/filament-actions/bg/replicate.php new file mode 100644 index 0000000..0187934 --- /dev/null +++ b/lang/vendor/filament-actions/bg/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Клонирай', + + 'modal' => [ + + 'heading' => 'Клонирай :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Клонирай', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Клониран', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bg/restore.php b/lang/vendor/filament-actions/bg/restore.php new file mode 100644 index 0000000..f4f850d --- /dev/null +++ b/lang/vendor/filament-actions/bg/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Възстанови', + + 'modal' => [ + + 'heading' => 'Възстанови :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Възстанови', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Възстановен', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Възстанови избраните', + + 'modal' => [ + + 'heading' => 'Възстанови избраните :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Възстанови', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Възстановени', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bg/view.php b/lang/vendor/filament-actions/bg/view.php new file mode 100644 index 0000000..c48b93e --- /dev/null +++ b/lang/vendor/filament-actions/bg/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Преглед', + + 'modal' => [ + + 'heading' => 'Прегледай :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Затвори', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bn/associate.php b/lang/vendor/filament-actions/bn/associate.php new file mode 100644 index 0000000..eb17a9c --- /dev/null +++ b/lang/vendor/filament-actions/bn/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'যুক্ত করুন', + + 'modal' => [ + + 'heading' => ':label যুক্ত করুন', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'রেকর্ড', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'যুক্ত করুন', + ], + + 'associate_another' => [ + 'label' => 'যুক্ত এবং পুনরায় যুক্ত করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'যুক্ত করা হয়েছে', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bn/attach.php b/lang/vendor/filament-actions/bn/attach.php new file mode 100644 index 0000000..7a14ce7 --- /dev/null +++ b/lang/vendor/filament-actions/bn/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'সংযুক্ত করুন', + + 'modal' => [ + + 'heading' => ':label সংযুক্ত করুন', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'রেকর্ড', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'সংযুক্ত করুন', + ], + + 'attach_another' => [ + 'label' => 'সংযুক্ত এবং পুনরায় সংযুক্ত করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'সংযুক্ত করা হয়েছে', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bn/create.php b/lang/vendor/filament-actions/bn/create.php new file mode 100644 index 0000000..172351a --- /dev/null +++ b/lang/vendor/filament-actions/bn/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'নতুন :label', + + 'modal' => [ + + 'heading' => ':label তৈরি করুন', + + 'actions' => [ + + 'create' => [ + 'label' => 'তৈরি করুন', + ], + + 'create_another' => [ + 'label' => 'তৈরি এবং নতুন তৈরি করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'তৈরি হয়েছে', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bn/delete.php b/lang/vendor/filament-actions/bn/delete.php new file mode 100644 index 0000000..96beb71 --- /dev/null +++ b/lang/vendor/filament-actions/bn/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'মুছে ফেলুন', + + 'modal' => [ + + 'heading' => ':label মুছে ফেলুন', + + 'actions' => [ + + 'delete' => [ + 'label' => 'মুছে ফেলুন', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'মুছে ফেলা হয়েছে', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'নির্বাচিত গুলো মুছে ফেলুন', + + 'modal' => [ + + 'heading' => 'নির্বাচিত :label মুছে ফেলুন', + + 'actions' => [ + + 'delete' => [ + 'label' => 'মুছে ফেলুন', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'মুছে ফেলা হয়েছে', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bn/detach.php b/lang/vendor/filament-actions/bn/detach.php new file mode 100644 index 0000000..5923385 --- /dev/null +++ b/lang/vendor/filament-actions/bn/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'বিচ্ছিন্ন করুন', + + 'modal' => [ + + 'heading' => ':label বিচ্ছিন্ন করুন', + + 'actions' => [ + + 'detach' => [ + 'label' => 'বিচ্ছিন্ন করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'বিচ্ছিন্ন করা হয়েছে', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'নির্বাচিত গুলো বিচ্ছিন্ন করুন', + + 'modal' => [ + + 'heading' => 'নির্বাচিত :label বিচ্ছিন্ন করুন', + + 'actions' => [ + + 'detach' => [ + 'label' => 'বিচ্ছিন্ন করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'বিচ্ছিন্ন করা হয়েছে', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bn/dissociate.php b/lang/vendor/filament-actions/bn/dissociate.php new file mode 100644 index 0000000..f810b51 --- /dev/null +++ b/lang/vendor/filament-actions/bn/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'পৃথক করুন', + + 'modal' => [ + + 'heading' => ':label পৃথক করুন', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'পৃথক করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'পৃথক করা হয়েছে', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'নির্বাচিত গুলো পৃথক করুন', + + 'modal' => [ + + 'heading' => 'নির্বাচিত :label পৃথক করুন', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'পৃথক করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'পৃথক করা হয়েছে', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bn/edit.php b/lang/vendor/filament-actions/bn/edit.php new file mode 100644 index 0000000..82a9669 --- /dev/null +++ b/lang/vendor/filament-actions/bn/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'সম্পাদন করুন', + + 'modal' => [ + + 'heading' => ':label সম্পাদন করুন', + + 'actions' => [ + + 'save' => [ + 'label' => 'সংরক্ষণ করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'সংরক্ষিত হয়েছে', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bn/export.php b/lang/vendor/filament-actions/bn/export.php new file mode 100644 index 0000000..bb6e55f --- /dev/null +++ b/lang/vendor/filament-actions/bn/export.php @@ -0,0 +1,77 @@ + ':label রপ্তানি করুন', + + 'modal' => [ + + 'heading' => ':label রপ্তানি করুন', + + 'form' => [ + + 'columns' => [ + + 'label' => 'কলাম', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column সক্রিয়', + ], + + 'label' => [ + 'label' => ':column লেবেল', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'রপ্তানি করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'রপ্তানি সম্পন্ন হয়েছে', + + 'actions' => [ + + 'download_csv' => [ + 'label' => '.csv ডাউনলোড করুন', + ], + + 'download_xlsx' => [ + 'label' => '.xlsx ডাউনলোড করুন', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'রপ্তানি খুব বড়', + 'body' => 'আপনি একবারে ১টি সারির বেশি রপ্তানি করতে পারবেন না।|আপনি একবারে :countটি সারির বেশি রপ্তানি করতে পারবেন না।', + ], + + 'started' => [ + 'title' => 'রপ্তানি শুরু হয়েছে', + 'body' => 'আপনার রপ্তানি শুরু হয়েছে এবং ১টি সারি ব্যাকগ্রাউন্ডে প্রক্রিয়াকরণ করা হবে। সম্পূর্ণ হলে আপনি ডাউনলোড লিংক সহ একটি বিজ্ঞপ্তি পাবেন।|আপনার রপ্তানি শুরু হয়েছে এবং :countটি সারি ব্যাকগ্রাউন্ডে প্রক্রিয়াকরণ করা হবে। সম্পূর্ণ হলে আপনি ডাউনলোড লিংক সহ একটি বিজ্ঞপ্তি পাবেন।', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/bn/force-delete.php b/lang/vendor/filament-actions/bn/force-delete.php new file mode 100644 index 0000000..90d117f --- /dev/null +++ b/lang/vendor/filament-actions/bn/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'জোর পূর্বক মুছে ফেলুন', + + 'modal' => [ + + 'heading' => ':label জোর পূর্বক মুছে ফেলুন', + + 'actions' => [ + + 'delete' => [ + 'label' => 'মুছে ফেলুন', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'মুছে ফেলা হয়েছে', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'নির্বাচিত গুলো জোর পূর্বক মুছে ফেলুন', + + 'modal' => [ + + 'heading' => ':label জোর পূর্বক মুছে ফেলুন', + + 'actions' => [ + + 'delete' => [ + 'label' => 'মুছে ফেলুন', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'মুছে ফেলা হয়েছে', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bn/group.php b/lang/vendor/filament-actions/bn/group.php new file mode 100644 index 0000000..51736a2 --- /dev/null +++ b/lang/vendor/filament-actions/bn/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'কার্যক্রম', + ], + +]; diff --git a/lang/vendor/filament-actions/bn/import.php b/lang/vendor/filament-actions/bn/import.php new file mode 100644 index 0000000..62dad27 --- /dev/null +++ b/lang/vendor/filament-actions/bn/import.php @@ -0,0 +1,85 @@ + ':label আমদানি করুন', + + 'modal' => [ + + 'heading' => ':label আমদানি করুন', + + 'form' => [ + + 'file' => [ + + 'label' => 'ফাইল', + + 'placeholder' => 'একটি CSV ফাইল আপলোড করুন', + + 'rules' => [ + 'duplicate_columns' => '{0} ফাইলে একাধিক খালি কলাম হেডার থাকতে হবে না।|{1,*} ফাইলে ডুপ্লিকেট কলাম হেডার থাকতে হবে না: :columns।', + ], + + ], + + 'columns' => [ + 'label' => 'কলাম', + 'placeholder' => 'একটি কলাম নির্বাচন করুন', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'উদাহরণ CSV ফাইল ডাউনলোড করুন', + ], + + 'import' => [ + 'label' => 'আমদানি করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'আমদানি সম্পন্ন হয়েছে', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'ব্যর্থ সারি সম্পর্কে তথ্য ডাউনলোড করুন|ব্যর্থ সারিগুলি সম্পর্কে তথ্য ডাউনলোড করুন', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'আপলোড করা CSV ফাইল খুব বড়', + 'body' => 'আপনি একবারে ১টি সারির বেশি আমদানি করতে পারবেন না।|আপনি একবারে :countটি সারির বেশি আমদানি করতে পারবেন না।', + ], + + 'started' => [ + 'title' => 'আমদানি শুরু হয়েছে', + 'body' => 'আপনার আমদানি শুরু হয়েছে এবং ১টি সারি ব্যাকগ্রাউন্ডে প্রক্রিয়াকরণ করা হবে।|আপনার আমদানি শুরু হয়েছে এবং :countটি সারি ব্যাকগ্রাউন্ডে প্রক্রিয়াকরণ করা হবে।', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'ত্রুটি', + 'system_error' => 'সিস্টেম ত্রুটি, দয়া করে সহায়তা নিন।', + 'column_mapping_required_for_new_record' => ':attribute কলাম ফাইলের একটি কলামের সাথে ম্যাপ করা হয়নি, কিন্তু নতুন রেকর্ড তৈরি করার জন্য এটি প্রয়োজন।', + ], + +]; diff --git a/lang/vendor/filament-actions/bn/modal.php b/lang/vendor/filament-actions/bn/modal.php new file mode 100644 index 0000000..229571a --- /dev/null +++ b/lang/vendor/filament-actions/bn/modal.php @@ -0,0 +1,23 @@ + 'আপনি কি নিশ্চিত আপনি এটি করতে চান?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'বাতিল করুন', + ], + + 'confirm' => [ + 'label' => 'নিশ্চিত করুন', + ], + + 'submit' => [ + 'label' => 'জমা দিন', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bn/notifications.php b/lang/vendor/filament-actions/bn/notifications.php new file mode 100644 index 0000000..8a485f3 --- /dev/null +++ b/lang/vendor/filament-actions/bn/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'অতিরিক্ত চেষ্টা', + 'body' => 'দয়া করে :seconds সেকেন্ড পর আবার চেষ্টা করুন।', + ], + +]; diff --git a/lang/vendor/filament-actions/bn/replicate.php b/lang/vendor/filament-actions/bn/replicate.php new file mode 100644 index 0000000..75f7d84 --- /dev/null +++ b/lang/vendor/filament-actions/bn/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'প্রতিরূপ করুন', + + 'modal' => [ + + 'heading' => ':label প্রতিরূপ করুন', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'প্রতিরূপ করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'প্রতিরূপ তৈরি করা হয়েছে', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bn/restore.php b/lang/vendor/filament-actions/bn/restore.php new file mode 100644 index 0000000..2d25021 --- /dev/null +++ b/lang/vendor/filament-actions/bn/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'পুনরুদ্ধার করুন', + + 'modal' => [ + + 'heading' => ':label পুনরুদ্ধার করুন', + + 'actions' => [ + + 'restore' => [ + 'label' => 'পুনরুদ্ধার করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'পুনরুদ্ধার করা হয়েছে', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'নির্বাচিত গুলো পুনরুদ্ধার করুন', + + 'modal' => [ + + 'heading' => 'নির্বাচিত :label পুনরুদ্ধার করুন', + + 'actions' => [ + + 'restore' => [ + 'label' => 'পুনরুদ্ধার করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'পুনরুদ্ধার করা হয়েছে', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bn/view.php b/lang/vendor/filament-actions/bn/view.php new file mode 100644 index 0000000..7de9a93 --- /dev/null +++ b/lang/vendor/filament-actions/bn/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'দেখুন', + + 'modal' => [ + + 'heading' => ':label দেখুন', + + 'actions' => [ + + 'close' => [ + 'label' => 'বন্ধ করুন', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bs/associate.php b/lang/vendor/filament-actions/bs/associate.php new file mode 100644 index 0000000..9d100e2 --- /dev/null +++ b/lang/vendor/filament-actions/bs/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Povežite', + + 'modal' => [ + + 'heading' => 'Povežite :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Zapis', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Povežite', + ], + + 'associate_another' => [ + 'label' => 'Povežite i povežite još jedan', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Povezano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bs/attach.php b/lang/vendor/filament-actions/bs/attach.php new file mode 100644 index 0000000..39c07a1 --- /dev/null +++ b/lang/vendor/filament-actions/bs/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Priložite', + + 'modal' => [ + + 'heading' => 'Priložite :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Zapis', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Priložite', + ], + + 'attach_another' => [ + 'label' => 'Priložite i priložite još jedan', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Priloženo', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bs/create.php b/lang/vendor/filament-actions/bs/create.php new file mode 100644 index 0000000..102e64c --- /dev/null +++ b/lang/vendor/filament-actions/bs/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Kreirajte', + + 'modal' => [ + + 'heading' => 'Kreirajte :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Kreirati', + ], + + 'create_another' => [ + 'label' => 'Kreirajte i kreirajte još jedan', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Uspješno kreirano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bs/delete.php b/lang/vendor/filament-actions/bs/delete.php new file mode 100644 index 0000000..ffeaf70 --- /dev/null +++ b/lang/vendor/filament-actions/bs/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Izbrišite', + + 'modal' => [ + + 'heading' => 'Brisanje :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Izbrisati', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Izbrisano', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Izbrišite izabrano', + + 'modal' => [ + + 'heading' => 'Izbrišite izabrani :label ', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Izbrišite izabrani', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Izbrisano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bs/detach.php b/lang/vendor/filament-actions/bs/detach.php new file mode 100644 index 0000000..2c2de41 --- /dev/null +++ b/lang/vendor/filament-actions/bs/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Odvojite', + + 'modal' => [ + + 'heading' => 'Odvojite :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odvojite', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Odvojeno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Odvojite izabrani', + + 'modal' => [ + + 'heading' => 'Odvojite izabrani :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odvojite izabrani', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Odvojeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bs/dissociate.php b/lang/vendor/filament-actions/bs/dissociate.php new file mode 100644 index 0000000..21b3c2c --- /dev/null +++ b/lang/vendor/filament-actions/bs/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Odvojite', + + 'modal' => [ + + 'heading' => 'Odvojite :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Odvojite', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Odvojeno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Odvojite izabrani', + + 'modal' => [ + + 'heading' => 'Odvojite izabrani :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Odvojite izabrani', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Odvojeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bs/edit.php b/lang/vendor/filament-actions/bs/edit.php new file mode 100644 index 0000000..1a18f1f --- /dev/null +++ b/lang/vendor/filament-actions/bs/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Uredite', + + 'modal' => [ + + 'heading' => 'Uredite :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Sačuvajte', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Sačuvano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bs/export.php b/lang/vendor/filament-actions/bs/export.php new file mode 100644 index 0000000..947d510 --- /dev/null +++ b/lang/vendor/filament-actions/bs/export.php @@ -0,0 +1,77 @@ + 'Eksportujte :label', + + 'modal' => [ + + 'heading' => 'Exportujte :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Kolone', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column kolona aktivna', + ], + + 'label' => [ + 'label' => ':column oznaka', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Eksportujte', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Eksport završen', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Preuzmite .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Preuzmite .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Eksport je prevelik.', + 'body' => 'Ne možete eksportovati više od 1 reda odjednom.|Ne možete eksportovati više od :count redova odjednom', + ], + + 'started' => [ + 'title' => 'Eksport započet', + 'body' => 'Vaš eksport je započeo i 1 red će se obrađivati u pozadini. Dobit ćete obavijest s linkom za preuzimanje kada bude dovršeno. | Vaš eksport je započeo i :count redova će se obrađivati u pozadini. Dobit ćete obavijest s linkom za preuzimanje kada bude dovršeno.', + ], + + ], + + 'file_name' => 'eksport-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/bs/force-delete.php b/lang/vendor/filament-actions/bs/force-delete.php new file mode 100644 index 0000000..75a2af5 --- /dev/null +++ b/lang/vendor/filament-actions/bs/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Izbrišite zauvijek', + + 'modal' => [ + + 'heading' => 'Izbrišite :label zauvijek', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Izbrišite', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Zapis izbrisan', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Izabrano izbrišite zauvijek', + + 'modal' => [ + + 'heading' => 'Zauvijek izbrišite :label ', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Izbrisati', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Zapisi izbrisani', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bs/group.php b/lang/vendor/filament-actions/bs/group.php new file mode 100644 index 0000000..edd7ebb --- /dev/null +++ b/lang/vendor/filament-actions/bs/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Akcije', + ], + +]; diff --git a/lang/vendor/filament-actions/bs/import.php b/lang/vendor/filament-actions/bs/import.php new file mode 100644 index 0000000..b226048 --- /dev/null +++ b/lang/vendor/filament-actions/bs/import.php @@ -0,0 +1,85 @@ + 'Importujte :label', + + 'modal' => [ + + 'heading' => 'Importujte :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Fajl', + + 'placeholder' => 'Priložite CSV fajl', + + 'rules' => [ + 'duplicate_columns' => '{0} Fajl ne smije sadržavati više od jednog praznog zaglavlja kolone.|{1,*} Fajl ne smije sadržavati duplicirana zaglavlja kolona: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Kolone', + 'placeholder' => 'Odaberite kolonu', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Preuzmite primjer CSV fajla', + ], + + 'import' => [ + 'label' => 'Importujte', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Import završen', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Preuzmite informacije o neuspješnom redu|Preuzmite informacije o neuspješnim redovima', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Učitani CSV fajl je prevelik', + 'body' => 'Ne možete importovati više od 1 reda odjednom.|Ne možete uvesti više od :count redova odjednom.', + ], + + 'started' => [ + 'title' => 'Import započet', + 'body' => 'Vaš uvoz je započeo i 1 red će se obrađivati u pozadini.|Vaš uvoz je započeo i :count redova će se obrađivati u pozadini.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-primjer', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-neuspješni-redovi', + 'error_header' => 'greška', + 'system_error' => 'Sistemska greška, molimo kontaktirajte podršku.', + 'column_mapping_required_for_new_record' => ':attribute kolona nije povezana s kolonom u fajlu, a potrebna je za kreiranje novih zapisa.', + ], + +]; diff --git a/lang/vendor/filament-actions/bs/modal.php b/lang/vendor/filament-actions/bs/modal.php new file mode 100644 index 0000000..a82c758 --- /dev/null +++ b/lang/vendor/filament-actions/bs/modal.php @@ -0,0 +1,23 @@ + 'Jeste li sigurni da želite to učiniti?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Prekid', + ], + + 'confirm' => [ + 'label' => 'Potvrdi', + ], + + 'submit' => [ + 'label' => 'Pošalji', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bs/replicate.php b/lang/vendor/filament-actions/bs/replicate.php new file mode 100644 index 0000000..cba9615 --- /dev/null +++ b/lang/vendor/filament-actions/bs/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Duplicirajte', + + 'modal' => [ + + 'heading' => 'Duplicirajte :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Duplicirati', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Zapis dupliciran', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bs/restore.php b/lang/vendor/filament-actions/bs/restore.php new file mode 100644 index 0000000..1bd5159 --- /dev/null +++ b/lang/vendor/filament-actions/bs/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Povrati', + + 'modal' => [ + + 'heading' => 'Povrati :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Povrati', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Zapis vraćen', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Izabrani vratiti', + + 'modal' => [ + + 'heading' => 'Povrati :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Povratiti', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Zapisi vraćen', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/bs/view.php b/lang/vendor/filament-actions/bs/view.php new file mode 100644 index 0000000..bda2d94 --- /dev/null +++ b/lang/vendor/filament-actions/bs/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Pregledajte', + + 'modal' => [ + + 'heading' => 'Pregled :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Zatvoriti', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ca/associate.php b/lang/vendor/filament-actions/ca/associate.php new file mode 100644 index 0000000..3b92c32 --- /dev/null +++ b/lang/vendor/filament-actions/ca/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Associar', + + 'modal' => [ + + 'heading' => 'Associar :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Registre', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Associar', + ], + + 'associate_another' => [ + 'label' => 'Associar i associar un altre', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Associat', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ca/attach.php b/lang/vendor/filament-actions/ca/attach.php new file mode 100644 index 0000000..f5d6eda --- /dev/null +++ b/lang/vendor/filament-actions/ca/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Vincular', + + 'modal' => [ + + 'heading' => 'Vincular :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Registre', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Vincular', + ], + + 'attach_another' => [ + 'label' => 'Vincular i vincular un altre', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Vinculats', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ca/create.php b/lang/vendor/filament-actions/ca/create.php new file mode 100644 index 0000000..167c3e4 --- /dev/null +++ b/lang/vendor/filament-actions/ca/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Crear :label', + + 'modal' => [ + + 'heading' => 'Crear :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Crear', + ], + + 'create_another' => [ + 'label' => 'Crear i crear un altre', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Creat', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ca/delete.php b/lang/vendor/filament-actions/ca/delete.php new file mode 100644 index 0000000..ab36790 --- /dev/null +++ b/lang/vendor/filament-actions/ca/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Esborrar', + + 'modal' => [ + + 'heading' => 'Esborrar :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Esborrar', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Esborrat', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Esborrar seleccionats', + + 'modal' => [ + + 'heading' => 'Esborrar :label seleccionats', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Esborrar', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Esborrats', + ], + + 'deleted_partial' => [ + 'title' => 'Esborrats :count de :total', + 'missing_authorization_failure_message' => 'No tens permís per eliminar :count.', + 'missing_processing_failure_message' => ':count no s\'han pogut eliminar.', + ], + + 'deleted_none' => [ + 'title' => 'No s\'ha pogut eliminar', + 'missing_authorization_failure_message' => 'No tens permís per eliminar :count.', + 'missing_processing_failure_message' => ':count no s\'han pogut eliminar.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ca/detach.php b/lang/vendor/filament-actions/ca/detach.php new file mode 100644 index 0000000..b1dd0ec --- /dev/null +++ b/lang/vendor/filament-actions/ca/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Desvincular', + + 'modal' => [ + + 'heading' => 'Desvincular :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Desvincular', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Desvinculat', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Desvincular seleccionats', + + 'modal' => [ + + 'heading' => 'Desvincular :label seleccionats', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Desvincular seleccionats', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Desvinculats', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ca/dissociate.php b/lang/vendor/filament-actions/ca/dissociate.php new file mode 100644 index 0000000..aee6d96 --- /dev/null +++ b/lang/vendor/filament-actions/ca/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Dissociar', + + 'modal' => [ + + 'heading' => 'Dissociar :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissociar', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissociat', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Dissociar seleccionats', + + 'modal' => [ + + 'heading' => 'Dissociar :label seleccionats', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissociar', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissociats', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ca/edit.php b/lang/vendor/filament-actions/ca/edit.php new file mode 100644 index 0000000..f23fc53 --- /dev/null +++ b/lang/vendor/filament-actions/ca/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Editar', + + 'modal' => [ + + 'heading' => 'Editar :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Desar canvis', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Desat', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ca/export.php b/lang/vendor/filament-actions/ca/export.php new file mode 100644 index 0000000..c36135a --- /dev/null +++ b/lang/vendor/filament-actions/ca/export.php @@ -0,0 +1,94 @@ + 'Exportar :label', + + 'modal' => [ + + 'heading' => 'Exportar :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Columnes', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Seleccionar tot', + ], + + 'deselect_all' => [ + 'label' => 'Deseleccionar tot', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column activada', + ], + + 'label' => [ + 'label' => 'etiqueta per a :column', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Exportar', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Exportació completada', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Descarregar .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Descarregar .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'L\'exportació és massa gran', + 'body' => 'No es pot exportar més d\'una fila alhora.|No es poden exportar més de :count files alhora.', + ], + + 'no_columns' => [ + 'title' => 'No s\'ha seleccionat cap columna', + 'body' => 'Si us plau, selecciona almenys una columna per exportar.', + ], + + 'started' => [ + 'title' => 'Exportació iniciada', + 'body' => 'L\'exportació ha començat i es processarà una fila en segon pla.|L\'exportació ha començat i es processaran :count files en segon pla.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/ca/force-delete.php b/lang/vendor/filament-actions/ca/force-delete.php new file mode 100644 index 0000000..8b1264e --- /dev/null +++ b/lang/vendor/filament-actions/ca/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Forçar l\'esborrat', + + 'modal' => [ + + 'heading' => 'Forçar l\'esborrat de :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Esborrar', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Registre esborrat', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Forçar l\'esborrat dels elements seleccionats', + + 'modal' => [ + + 'heading' => 'Forçar l\'esborrat dels :label seleccionats', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Esborrar', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Registres esborrats', + ], + + 'deleted_partial' => [ + 'title' => 'Esborrats :count de :total', + 'missing_authorization_failure_message' => 'No tens permís per esborrar :count.', + 'missing_processing_failure_message' => ':count no s\'han pogut esborrar.', + ], + + 'deleted_none' => [ + 'title' => 'No s\'ha pogut esborrar', + 'missing_authorization_failure_message' => 'No tens permís per esborrar :count.', + 'missing_processing_failure_message' => ':count no s\'han pogut esborrar.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ca/group.php b/lang/vendor/filament-actions/ca/group.php new file mode 100644 index 0000000..d17c8a0 --- /dev/null +++ b/lang/vendor/filament-actions/ca/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Accions', + ], + +]; diff --git a/lang/vendor/filament-actions/ca/import.php b/lang/vendor/filament-actions/ca/import.php new file mode 100644 index 0000000..c5d263a --- /dev/null +++ b/lang/vendor/filament-actions/ca/import.php @@ -0,0 +1,81 @@ + 'Importar :label', + + 'modal' => [ + + 'heading' => 'Importar :label', + + 'form' => [ + + 'file' => [ + 'label' => 'Arxiu', + 'placeholder' => 'Carregar un arxiu CSV', + 'rules' => [ + 'duplicate_columns' => '{0} El fitxer no ha de contenir més d\'un encapçalament de columna buit.|{1,*} El fitxer no ha de contenir encapçalaments de columna duplicats: :columns.', + ], + ], + + 'columns' => [ + 'label' => 'Columnes', + 'placeholder' => 'Seleccionar una columna', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Descarregar arxiu CSV d\'exemple', + ], + + 'import' => [ + 'label' => 'Importar', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Importació completada', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Descarregar informació de la fila fallida|Descarregar informació de les files fallides', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'L\'arxiu CSV carregat és massa gran', + 'body' => 'No es pot importar més d\'una fila alhora.|No es poden importar més de :count files alhora.', + ], + + 'started' => [ + 'title' => 'Importació iniciada', + 'body' => 'La vostra importació ha començat i es processarà 1 fila en segon pla.|La vostra importació ha començat i es processaran :count files en segon pla.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'error', + 'system_error' => 'Error del sistema, poseu-vos en contacte amb el servei d\'assistència.', + 'column_mapping_required_for_new_record' => 'La columna :attribute no s\'ha assignat a cap columna del fitxer, però és necessària per crear nous registres.', + ], + +]; diff --git a/lang/vendor/filament-actions/ca/modal.php b/lang/vendor/filament-actions/ca/modal.php new file mode 100644 index 0000000..69d44b4 --- /dev/null +++ b/lang/vendor/filament-actions/ca/modal.php @@ -0,0 +1,23 @@ + 'Està segur/a de fer això?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancel·lar', + ], + + 'confirm' => [ + 'label' => 'Confirmar', + ], + + 'submit' => [ + 'label' => 'Enviar', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ca/notifications.php b/lang/vendor/filament-actions/ca/notifications.php new file mode 100644 index 0000000..81b6278 --- /dev/null +++ b/lang/vendor/filament-actions/ca/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Massa intents', + 'body' => 'Si us plau, torna-ho a provar en :seconds segons.', + ], + +]; diff --git a/lang/vendor/filament-actions/ca/replicate.php b/lang/vendor/filament-actions/ca/replicate.php new file mode 100644 index 0000000..51ff4ef --- /dev/null +++ b/lang/vendor/filament-actions/ca/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Replicar', + + 'modal' => [ + + 'heading' => 'Replicar :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Replicar', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Registre replicat', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ca/restore.php b/lang/vendor/filament-actions/ca/restore.php new file mode 100644 index 0000000..4247448 --- /dev/null +++ b/lang/vendor/filament-actions/ca/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Restaurar', + + 'modal' => [ + + 'heading' => 'Restaurar :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restaurar', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Registre restaurat', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Restaurar seleccionats', + + 'modal' => [ + + 'heading' => 'Restaurar els :label seleccionats', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restaurar', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Registres restaurats', + ], + + 'restored_partial' => [ + 'title' => 'Restaurats :count de :total', + 'missing_authorization_failure_message' => 'No tens permís per restaurar :count.', + 'missing_processing_failure_message' => ':count no s\'han pogut restaurar.', + ], + + 'restored_none' => [ + 'title' => 'Cap registre restaurat', + 'missing_authorization_failure_message' => 'No tens permís per restaurar :count.', + 'missing_processing_failure_message' => ':count no s\'han pogut restaurar.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ca/view.php b/lang/vendor/filament-actions/ca/view.php new file mode 100644 index 0000000..1dc9be6 --- /dev/null +++ b/lang/vendor/filament-actions/ca/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Vista', + + 'modal' => [ + + 'heading' => 'Vista de :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Tancar', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/associate.php b/lang/vendor/filament-actions/ckb/associate.php new file mode 100644 index 0000000..e25fd89 --- /dev/null +++ b/lang/vendor/filament-actions/ckb/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'هاوبەشکردن', + + 'modal' => [ + + 'heading' => 'هاوبەشکردنی :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'تۆمار', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'هاوبەشکردن', + ], + + 'associate_another' => [ + 'label' => 'هاوبەشکردن و تۆمارێکی تر', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'هاوبەشکراو', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/attach.php b/lang/vendor/filament-actions/ckb/attach.php new file mode 100644 index 0000000..34cbaba --- /dev/null +++ b/lang/vendor/filament-actions/ckb/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'پەیوەستکردن', + + 'modal' => [ + + 'heading' => 'پەیوەستکردنی :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'تۆمار', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'لکاندن', + ], + + 'attach_another' => [ + 'label' => 'لکاندن و تۆمارێکی تر', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'پەیوەستکرا', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/create.php b/lang/vendor/filament-actions/ckb/create.php new file mode 100644 index 0000000..8a13e5c --- /dev/null +++ b/lang/vendor/filament-actions/ckb/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'زیادکردنی :label', + + 'modal' => [ + + 'heading' => ':زیادکردنی :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'زیادکردن', + ], + + 'create_another' => [ + 'label' => 'زیادکردن و تۆمارێکی تر', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'زیادکرا', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/delete.php b/lang/vendor/filament-actions/ckb/delete.php new file mode 100644 index 0000000..a8f1e55 --- /dev/null +++ b/lang/vendor/filament-actions/ckb/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'سڕینەوە', + + 'modal' => [ + + 'heading' => 'سڕینەوەی :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'سڕینەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'سڕدرایەوە', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'سڕینەوەی هەڵبژێردراوەکان', + + 'modal' => [ + + 'heading' => 'سڕینەوەی هەڵبژێردراوەکانی :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'سڕینەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'سڕدرایەوە', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/detach.php b/lang/vendor/filament-actions/ckb/detach.php new file mode 100644 index 0000000..86a6af7 --- /dev/null +++ b/lang/vendor/filament-actions/ckb/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'جیاکردنەوە', + + 'modal' => [ + + 'heading' => 'جیاکردنەوەی :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'جیاکردنەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'جیاکرایەوە', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'جیاکردنەوەی هەڵبژێردراوەکان', + + 'modal' => [ + + 'heading' => 'جیاکردنەوەی هەڵبژێردراوەکانی :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'جیاکردنەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'جیاکرایەوە', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/dissociate.php b/lang/vendor/filament-actions/ckb/dissociate.php new file mode 100644 index 0000000..43c2fef --- /dev/null +++ b/lang/vendor/filament-actions/ckb/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'جیاکردنەوە', + + 'modal' => [ + + 'heading' => 'جیاکردنەوەی :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'جیاکردنەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'جیاکرایەوە', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'جیاکردنەوەی هەڵبژێردراوەکان', + + 'modal' => [ + + 'heading' => 'جیاکردنەوەی هەڵبژێردراوەکانی :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'جیاکردنەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'جیاکرایەوە', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/edit.php b/lang/vendor/filament-actions/ckb/edit.php new file mode 100644 index 0000000..c424847 --- /dev/null +++ b/lang/vendor/filament-actions/ckb/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'دەستکاریکردن', + + 'modal' => [ + + 'heading' => 'دەستکاریکردنی :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'پاشەکەوتکردن', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'پاشەکەوتکرا', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/force-delete.php b/lang/vendor/filament-actions/ckb/force-delete.php new file mode 100644 index 0000000..a740950 --- /dev/null +++ b/lang/vendor/filament-actions/ckb/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'سڕینەوەی بەزۆر', + + 'modal' => [ + + 'heading' => 'سڕینەوەی بەزۆری :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'سڕینەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'سڕایەوە', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'سڕینەوەی بەزۆری هەڵبژێردراوەکان', + + 'modal' => [ + + 'heading' => 'سڕینەوەی بەزۆری هەڵبژێردراوەکانی :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'سڕینەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'سڕایەوە', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/group.php b/lang/vendor/filament-actions/ckb/group.php new file mode 100644 index 0000000..700a02e --- /dev/null +++ b/lang/vendor/filament-actions/ckb/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'کردارەکان', + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/import.php b/lang/vendor/filament-actions/ckb/import.php new file mode 100644 index 0000000..2d54ae2 --- /dev/null +++ b/lang/vendor/filament-actions/ckb/import.php @@ -0,0 +1,82 @@ + ':label هاوردەی', + + 'modal' => [ + + 'heading' => ':label هاوردەی', + + 'form' => [ + + 'file' => [ + 'label' => 'پەڕگەی', + 'placeholder' => 'بارکردنی پەڕگەی CSV', + 'rules' => [ + 'duplicate_columns' => '{0} پەڕگەکە نابێت لە یەک ستونی سەرەوەی زیاتری بەتاڵ بێت.|{1,*} پەڕگەکە نابێت ستونی بەتاڵی دووبارەی تێدابێت: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'ستونەکان', + 'placeholder' => 'هەڵبژاردنی ستون', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'داگرتنی نمونەی پەڕگەی CSV', + ], + + 'import' => [ + 'label' => 'هاوردەکردن', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'هاوردەکردن تەواو بوو', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'داگرتنی زانیاریی لەبارەی ڕیزی هەڵە|داگرتنی زانیاریی لەبارەی ڕیزە هەڵەکان', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'پەڕگەی CSV زۆر گەورەیە', + 'body' => 'نابێت لەیەک ڕیز زیاتر بەیەکجار هاوردەبکەیت.|نابێت زیاتر لە :count ڕیز بەیەکجار هاوردەبکەیت.', + ], + + 'started' => [ + 'title' => 'هاوردەکردن دەستیپێکرد', + 'body' => 'هاوردەکردن دەستیپێکردو ڕیزێک لە پشتەوە کاری لەسەر دەکرێت.|هاوردەکردن دەستیپێکردو :count ڕیز لەپشتەوە کاری لەسەر دەکرێت.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'هەڵە', + 'system_error' => 'هەڵەی سیستەم, تکایە پەیوەندی بە پاڵپشتکارەوە.', + 'column_mapping_required_for_new_record' => 'ستونی :attribute-Spalte لەناو ستونێک لەناو پەڕگەکە ڕێکنەخرا, بەڵام بۆ زیادکردنی تۆمارێکی نوێ پێویستە.', + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/modal.php b/lang/vendor/filament-actions/ckb/modal.php new file mode 100644 index 0000000..31c8282 --- /dev/null +++ b/lang/vendor/filament-actions/ckb/modal.php @@ -0,0 +1,23 @@ + 'ئایە دڵنیای لە ئەنجامدانی ئەم کردارە؟', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'پاشگەزبوونەوە', + ], + + 'confirm' => [ + 'label' => 'دڵنیام', + ], + + 'submit' => [ + 'label' => 'ناردن', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/replicate.php b/lang/vendor/filament-actions/ckb/replicate.php new file mode 100644 index 0000000..6fa5317 --- /dev/null +++ b/lang/vendor/filament-actions/ckb/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'لەبەرگرتنەوە', + + 'modal' => [ + + 'heading' => 'لەبەرگرتنەوەی :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'لەبەرگرتنەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'لەبەرگیرایەوە', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/restore.php b/lang/vendor/filament-actions/ckb/restore.php new file mode 100644 index 0000000..98c75cb --- /dev/null +++ b/lang/vendor/filament-actions/ckb/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'گەڕاندنەوە', + + 'modal' => [ + + 'heading' => 'گەڕاندنەوەی :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'گەڕاندنەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'گەڕێندراوەیەوە', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'گەڕاندنەوەی هەڵبژێردراوەکان', + + 'modal' => [ + + 'heading' => 'گەڕاندنەوەی هەڵبژێردراوەکانی :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'گەڕاندنەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'گەڕێندراوەیەوە', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ckb/view.php b/lang/vendor/filament-actions/ckb/view.php new file mode 100644 index 0000000..d6c9542 --- /dev/null +++ b/lang/vendor/filament-actions/ckb/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'بینین', + + 'modal' => [ + + 'heading' => 'بینینی :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'داخستن', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/cs/associate.php b/lang/vendor/filament-actions/cs/associate.php new file mode 100644 index 0000000..1858e52 --- /dev/null +++ b/lang/vendor/filament-actions/cs/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Připojit', + + 'modal' => [ + + 'heading' => 'Připojit :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Záznam', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Připojit', + ], + + 'associate_another' => [ + 'label' => 'Připojit & připojit další', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Připojeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/cs/attach.php b/lang/vendor/filament-actions/cs/attach.php new file mode 100644 index 0000000..4e2605f --- /dev/null +++ b/lang/vendor/filament-actions/cs/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Přidat', + + 'modal' => [ + + 'heading' => 'Přidat :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Záznam', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Přidat', + ], + + 'attach_another' => [ + 'label' => 'Přidat & přidat další', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Přidáno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/cs/create.php b/lang/vendor/filament-actions/cs/create.php new file mode 100644 index 0000000..ad4ff5b --- /dev/null +++ b/lang/vendor/filament-actions/cs/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Vytvořit', + + 'modal' => [ + + 'heading' => 'Vytvořit :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Vytvořit', + ], + + 'create_another' => [ + 'label' => 'Vytvořit & vytvořit další', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Vytvořeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/cs/delete.php b/lang/vendor/filament-actions/cs/delete.php new file mode 100644 index 0000000..5878850 --- /dev/null +++ b/lang/vendor/filament-actions/cs/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Smazat', + + 'modal' => [ + + 'heading' => 'Smazat :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Smazat', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Smazáno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Smazat vybrané', + + 'modal' => [ + + 'heading' => 'Smazat vybrané :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Smazat vybrané', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Smazáno', + ], + + 'deleted_partial' => [ + 'title' => 'Odstraněno :count z :total', + 'missing_authorization_failure_message' => 'Nemáte oprávnění odstranit :count.', + 'missing_processing_failure_message' => ':count se nepodařilo odstranit.', + ], + + 'deleted_none' => [ + 'title' => 'Odstranění selhalo', + 'missing_authorization_failure_message' => 'Nemáte oprávnění odstranit :count.', + 'missing_processing_failure_message' => ':count se nepodařilo odstranit.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/cs/detach.php b/lang/vendor/filament-actions/cs/detach.php new file mode 100644 index 0000000..2bfb535 --- /dev/null +++ b/lang/vendor/filament-actions/cs/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Odebrat', + + 'modal' => [ + + 'heading' => 'Odebrat :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odebrat', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Odebráno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Odebrat zvolené', + + 'modal' => [ + + 'heading' => 'Odebrat zvolené :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odebrat zvolené', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Odebráno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/cs/dissociate.php b/lang/vendor/filament-actions/cs/dissociate.php new file mode 100644 index 0000000..13c1ff8 --- /dev/null +++ b/lang/vendor/filament-actions/cs/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Odpojit', + + 'modal' => [ + + 'heading' => 'Odpojit :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Odpojit', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Odpojeno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Odpojit zvolené', + + 'modal' => [ + + 'heading' => 'Odpojit zvolené :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Odpojit zvolené', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Odpojeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/cs/edit.php b/lang/vendor/filament-actions/cs/edit.php new file mode 100644 index 0000000..5cac061 --- /dev/null +++ b/lang/vendor/filament-actions/cs/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Upravit', + + 'modal' => [ + + 'heading' => 'Upravit :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Uložit', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Uloženo', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/cs/export.php b/lang/vendor/filament-actions/cs/export.php new file mode 100644 index 0000000..d2fe688 --- /dev/null +++ b/lang/vendor/filament-actions/cs/export.php @@ -0,0 +1,94 @@ + 'Exportovat :label', + + 'modal' => [ + + 'heading' => 'Exportovat :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Sloupce', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Vybrat vše', + ], + + 'deselect_all' => [ + 'label' => 'Zrušit výběr všeho', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column povoleno', + ], + + 'label' => [ + 'label' => ':column popisek', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Exportovat', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Export dokončen', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Stáhnout .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Stáhnout .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Export překračuje povolenou velikost', + 'body' => 'Není možné exportovat více než 1 řádek najednou.|Není možné exportovat více než :count řádků najednou.', + ], + + 'no_columns' => [ + 'title' => 'Nejsou vybrány žádné sloupce', + 'body' => 'Prosím vyberte alespoň jeden sloupec k exportu.', + ], + + 'started' => [ + 'title' => 'Export byl zahájen', + 'body' => 'Export byl zahájen a 1 řádek bude zpracován na pozadí.|Váš export byl zahájen a :count řádků bude zpracováno na pozadí.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/cs/force-delete.php b/lang/vendor/filament-actions/cs/force-delete.php new file mode 100644 index 0000000..08b9eec --- /dev/null +++ b/lang/vendor/filament-actions/cs/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Trvale smazat', + + 'modal' => [ + + 'heading' => 'Trvale smazat :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Smazat', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Smazáno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Trvale smazat vybrané', + + 'modal' => [ + + 'heading' => 'Trvale smazat vybrané :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Smazat', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Smazáno', + ], + + 'deleted_partial' => [ + 'title' => 'Odstraněno :count z :total', + 'missing_authorization_failure_message' => 'Nemáte oprávnění odstranit :count.', + 'missing_processing_failure_message' => ':count se nepodařilo odstranit.', + ], + + 'deleted_none' => [ + 'title' => 'Odstranění se nezdařilo', + 'missing_authorization_failure_message' => 'Nemáte oprávnění odstranit :count.', + 'missing_processing_failure_message' => ':count se nepodařilo odstranit.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/cs/group.php b/lang/vendor/filament-actions/cs/group.php new file mode 100644 index 0000000..f55f9b3 --- /dev/null +++ b/lang/vendor/filament-actions/cs/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Akce', + ], + +]; diff --git a/lang/vendor/filament-actions/cs/import.php b/lang/vendor/filament-actions/cs/import.php new file mode 100644 index 0000000..13898b7 --- /dev/null +++ b/lang/vendor/filament-actions/cs/import.php @@ -0,0 +1,81 @@ + 'Import :label', + + 'modal' => [ + + 'heading' => 'Import :label', + + 'form' => [ + + 'file' => [ + 'label' => 'Soubor', + 'placeholder' => 'Nahrát CSV soubor', + 'rules' => [ + 'duplicate_columns' => '{0} Soubor nesmí obsahovat více než jednu prázdnou hlavičku sloupce.|{1,*} Soubor nesmí obsahovat duplicitní hlavičky sloupců: :columns.', + ], + ], + + 'columns' => [ + 'label' => 'Sloupce', + 'placeholder' => 'Vyberte sloupec', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Stáhnout vzorový soubor CSV', + ], + + 'import' => [ + 'label' => 'Import', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Import dokončen', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Stáhnout informace o chybném řádku|Stáhnout informace o chybných řádcích', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Nahraný CSV soubor je příliš velký', + 'body' => 'Nelze importovat více než 1 řádek najednou.|Nelze importovat více než :count řádků najednou.', + ], + + 'started' => [ + 'title' => 'Zahájení importu', + 'body' => 'Váš import byl zahájen a na pozadí bude zpracován 1 řádek.|Váš import byl zahájen a na pozadí budou zpracovány řádky :count.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'chyba', + 'system_error' => 'Chyba systému, kontaktujte prosím podporu.', + 'column_mapping_required_for_new_record' => 'Sloupec :attribute nebyl přiřazen k žádnému sloupci ve souboru, ale je vyžadován pro vytvoření nových záznamů.', + ], + +]; diff --git a/lang/vendor/filament-actions/cs/modal.php b/lang/vendor/filament-actions/cs/modal.php new file mode 100644 index 0000000..b681b5c --- /dev/null +++ b/lang/vendor/filament-actions/cs/modal.php @@ -0,0 +1,23 @@ + 'Jste si jistí touto akcí?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Zrušit', + ], + + 'confirm' => [ + 'label' => 'Potvrdit', + ], + + 'submit' => [ + 'label' => 'Odeslat', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/cs/notifications.php b/lang/vendor/filament-actions/cs/notifications.php new file mode 100644 index 0000000..8028959 --- /dev/null +++ b/lang/vendor/filament-actions/cs/notifications.php @@ -0,0 +1,8 @@ + [ + 'title' => 'Příliš mnoho pokusů', + 'body' => 'Zkuste to prosím znovu za :seconds sekund.', + ], +]; diff --git a/lang/vendor/filament-actions/cs/replicate.php b/lang/vendor/filament-actions/cs/replicate.php new file mode 100644 index 0000000..ebf9241 --- /dev/null +++ b/lang/vendor/filament-actions/cs/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Duplikovat', + + 'modal' => [ + + 'heading' => 'Duplikovat :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Duplikovat', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Záznam duplikován', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/cs/restore.php b/lang/vendor/filament-actions/cs/restore.php new file mode 100644 index 0000000..795e9ee --- /dev/null +++ b/lang/vendor/filament-actions/cs/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Obnovit', + + 'modal' => [ + + 'heading' => 'Obnovit :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Obnovit', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Obnoveno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Obnovit vybrané', + + 'modal' => [ + + 'heading' => 'Obnovit vybrané :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Obnovit', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Obnoveno', + ], + + 'restored_partial' => [ + 'title' => 'Obnoveno :count z :total', + 'missing_authorization_failure_message' => 'Nemáte oprávnění obnovit :count.', + 'missing_processing_failure_message' => ':count se nepodařilo obnovit.', + ], + + 'restored_none' => [ + 'title' => 'Obnovení selhalo', + 'missing_authorization_failure_message' => 'Nemáte oprávnění obnovit :count.', + 'missing_processing_failure_message' => ':count se nepodařilo obnovit.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/cs/view.php b/lang/vendor/filament-actions/cs/view.php new file mode 100644 index 0000000..dd1abf8 --- /dev/null +++ b/lang/vendor/filament-actions/cs/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Zobrazit', + + 'modal' => [ + + 'heading' => 'Zobrazit :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Zavřít', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/da/associate.php b/lang/vendor/filament-actions/da/associate.php new file mode 100644 index 0000000..c2b47f0 --- /dev/null +++ b/lang/vendor/filament-actions/da/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Associer', + + 'modal' => [ + + 'heading' => 'Associer :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Registrering', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Associer', + ], + + 'associate_another' => [ + 'label' => 'Associer & Associer en mere', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Associeret', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/da/attach.php b/lang/vendor/filament-actions/da/attach.php new file mode 100644 index 0000000..4d1fc3d --- /dev/null +++ b/lang/vendor/filament-actions/da/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Vedhæft', + + 'modal' => [ + + 'heading' => 'Vedhæft :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Record', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Vedhæft', + ], + + 'attach_another' => [ + 'label' => 'Vedhæft & vedhæft en mere', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Vedhæftet', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/da/create.php b/lang/vendor/filament-actions/da/create.php new file mode 100644 index 0000000..3d551ac --- /dev/null +++ b/lang/vendor/filament-actions/da/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Opret :label', + + 'modal' => [ + + 'heading' => 'Opret :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Opret', + ], + + 'create_another' => [ + 'label' => 'Opret & opret en mere', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Oprettet', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/da/delete.php b/lang/vendor/filament-actions/da/delete.php new file mode 100644 index 0000000..c310277 --- /dev/null +++ b/lang/vendor/filament-actions/da/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Slet', + + 'modal' => [ + + 'heading' => 'Slet :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Slet', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Slettet', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Slet valgte', + + 'modal' => [ + + 'heading' => 'Slet valgte :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Slet', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Slettet', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/da/detach.php b/lang/vendor/filament-actions/da/detach.php new file mode 100644 index 0000000..ca69792 --- /dev/null +++ b/lang/vendor/filament-actions/da/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Frigør', + + 'modal' => [ + + 'heading' => 'Frigør :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Frigør', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Frigjort', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Frigør valgte', + + 'modal' => [ + + 'heading' => 'Frigør valgte :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Frigør', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Frigjort', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/da/dissociate.php b/lang/vendor/filament-actions/da/dissociate.php new file mode 100644 index 0000000..aa6e713 --- /dev/null +++ b/lang/vendor/filament-actions/da/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Dissocier', + + 'modal' => [ + + 'heading' => 'Dissocier :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissocier', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissocieret', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Dissocier valgte', + + 'modal' => [ + + 'heading' => 'Dissocier valgte :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissocier', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissocieret', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/da/edit.php b/lang/vendor/filament-actions/da/edit.php new file mode 100644 index 0000000..4f0a3fc --- /dev/null +++ b/lang/vendor/filament-actions/da/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Rediger', + + 'modal' => [ + + 'heading' => 'Rediger :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Gem ændringer', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Gemt', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/da/export.php b/lang/vendor/filament-actions/da/export.php new file mode 100644 index 0000000..5c4e054 --- /dev/null +++ b/lang/vendor/filament-actions/da/export.php @@ -0,0 +1,77 @@ + 'Eksporter :label', + + 'modal' => [ + + 'heading' => 'Eksporter :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Kolonner', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column aktiveret', + ], + + 'label' => [ + 'label' => ':column etiket', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Eksporter', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Eksporter fuldført', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Download .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Download .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Eksporten er for stor', + 'body' => 'Du må ikke eksportere mere end 1 række på én gang.|Du må ikke eksportere mere end :count rækker på én gang.', + ], + + 'started' => [ + 'title' => 'Eksport er started', + 'body' => 'Din eksport er begyndt, og 1 række vil blive behandlet i baggrunden.|Din eksport er begyndt, og :count rækker vil blive behandlet i baggrunden.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/da/force-delete.php b/lang/vendor/filament-actions/da/force-delete.php new file mode 100644 index 0000000..bc9ca08 --- /dev/null +++ b/lang/vendor/filament-actions/da/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Fremtving sletning', + + 'modal' => [ + + 'heading' => 'Fremtving sletning af :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Slet', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Slettet', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Fremtving sletning af valgte', + + 'modal' => [ + + 'heading' => 'Fremtving sletning af valgte :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Slet', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Slettet', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/da/group.php b/lang/vendor/filament-actions/da/group.php new file mode 100644 index 0000000..7745c75 --- /dev/null +++ b/lang/vendor/filament-actions/da/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Handlinger', + ], + +]; diff --git a/lang/vendor/filament-actions/da/import.php b/lang/vendor/filament-actions/da/import.php new file mode 100644 index 0000000..960b896 --- /dev/null +++ b/lang/vendor/filament-actions/da/import.php @@ -0,0 +1,77 @@ + 'Importer :label', + + 'modal' => [ + + 'heading' => 'Importer :label', + + 'form' => [ + + 'file' => [ + 'label' => 'Fil', + 'placeholder' => 'Upload en CSV fil', + ], + + 'columns' => [ + 'label' => 'Kolonner', + 'placeholder' => 'Vælg en kolonne', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Download eksempel på CSV fil', + ], + + 'import' => [ + 'label' => 'Importer', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Import afsluttet', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Download information om rækken med fejl|Download information om rækkerne med fejl', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Uploadet CSV fil er for stor', + 'body' => 'Du må ikke importere mere end 1 række på én gang.|Du må ikke importere mere end :count rækker på én gang.', + ], + + 'started' => [ + 'title' => 'Import started', + 'body' => 'Din import er begyndt, og 1 række vil blive behandlet i baggrunden.|Din import er begyndt, og :count rækker vil blive behandlet i baggrunden', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'fejl', + 'system_error' => 'Systemfejl, kontakt venligst support.', + ], + +]; diff --git a/lang/vendor/filament-actions/da/modal.php b/lang/vendor/filament-actions/da/modal.php new file mode 100644 index 0000000..f8da34b --- /dev/null +++ b/lang/vendor/filament-actions/da/modal.php @@ -0,0 +1,23 @@ + 'Er du sikker på, at du gerne vil gøre dette?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annuller', + ], + + 'confirm' => [ + 'label' => 'Bekræft', + ], + + 'submit' => [ + 'label' => 'Send', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/da/replicate.php b/lang/vendor/filament-actions/da/replicate.php new file mode 100644 index 0000000..3dfeb49 --- /dev/null +++ b/lang/vendor/filament-actions/da/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Repliker', + + 'modal' => [ + + 'heading' => 'Repliker :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Repliker', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Replikeret', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/da/restore.php b/lang/vendor/filament-actions/da/restore.php new file mode 100644 index 0000000..22d3f0d --- /dev/null +++ b/lang/vendor/filament-actions/da/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Gendan', + + 'modal' => [ + + 'heading' => 'Gendan :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Gendan', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Gendannet', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Gendan valgte', + + 'modal' => [ + + 'heading' => 'Gendan valgte :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Gendan', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Gendannet', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/da/view.php b/lang/vendor/filament-actions/da/view.php new file mode 100644 index 0000000..7abe0ab --- /dev/null +++ b/lang/vendor/filament-actions/da/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Vis', + + 'modal' => [ + + 'heading' => 'Vis :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Luk', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/de/associate.php b/lang/vendor/filament-actions/de/associate.php new file mode 100644 index 0000000..a5b4763 --- /dev/null +++ b/lang/vendor/filament-actions/de/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Verknüpfen', + + 'modal' => [ + + 'heading' => ':label verknüpfen', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Eintrag', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Verknüpfen', + ], + + 'associate_another' => [ + 'label' => 'Verknüpfen & weiterer Eintrag', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Verknüpft', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/de/attach.php b/lang/vendor/filament-actions/de/attach.php new file mode 100644 index 0000000..667b4b9 --- /dev/null +++ b/lang/vendor/filament-actions/de/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Verknüpfen', + + 'modal' => [ + + 'heading' => ':label verknüpfen', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Eintrag', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Verknüpfen', + ], + + 'attach_another' => [ + 'label' => 'Verknüpfen & weiterer Eintrag', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Verknüpft', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/de/create.php b/lang/vendor/filament-actions/de/create.php new file mode 100644 index 0000000..bd8c6ef --- /dev/null +++ b/lang/vendor/filament-actions/de/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Erstellen', + + 'modal' => [ + + 'heading' => ':label erstellen', + + 'actions' => [ + + 'create' => [ + 'label' => 'Erstellen', + ], + + 'create_another' => [ + 'label' => 'Erstellen & weiterer Eintrag', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Erstellt', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/de/delete.php b/lang/vendor/filament-actions/de/delete.php new file mode 100644 index 0000000..351e3d4 --- /dev/null +++ b/lang/vendor/filament-actions/de/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Löschen', + + 'modal' => [ + + 'heading' => ':label löschen', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Löschen', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Gelöscht', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Ausgewählte löschen', + + 'modal' => [ + + 'heading' => 'Ausgewählte :label löschen', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ausgewählte löschen', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Gelöscht', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/de/detach.php b/lang/vendor/filament-actions/de/detach.php new file mode 100644 index 0000000..159d490 --- /dev/null +++ b/lang/vendor/filament-actions/de/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Trennen', + + 'modal' => [ + + 'heading' => ':label trennen', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Trennen', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Getrennt', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Ausgewählte trennen', + + 'modal' => [ + + 'heading' => 'Ausgewählte :label trennen', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Ausgewählte trennen', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Getrennt', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/de/dissociate.php b/lang/vendor/filament-actions/de/dissociate.php new file mode 100644 index 0000000..6a3d2c3 --- /dev/null +++ b/lang/vendor/filament-actions/de/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Trennen', + + 'modal' => [ + + 'heading' => ':label trennen', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Trennen', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Getrennt', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Ausgewählte trennen', + + 'modal' => [ + + 'heading' => 'Ausgewählte :label trennen', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Ausgewählte trennen', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Getrennt', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/de/edit.php b/lang/vendor/filament-actions/de/edit.php new file mode 100644 index 0000000..73da497 --- /dev/null +++ b/lang/vendor/filament-actions/de/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Bearbeiten', + + 'modal' => [ + + 'heading' => ':label bearbeiten', + + 'actions' => [ + + 'save' => [ + 'label' => 'Speichern', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Gespeichert', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/de/export.php b/lang/vendor/filament-actions/de/export.php new file mode 100644 index 0000000..5a3109d --- /dev/null +++ b/lang/vendor/filament-actions/de/export.php @@ -0,0 +1,77 @@ + 'Exportiere :label', + + 'modal' => [ + + 'heading' => 'Exportiere :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Spalten', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column ist aktiviert', + ], + + 'label' => [ + 'label' => ':column Beschriftung', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Export', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Export abgeschlossen', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Lade .csv herunter', + ], + + 'download_xlsx' => [ + 'label' => 'Lade .xlsx herunter', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Der Export ist zu groß', + 'body' => 'Nicht mehr als 1 Zeile auf einmal exportieren.|Nicht mehr als :count Zeilen auf einmal exportieren.', + ], + + 'started' => [ + 'title' => 'Export gestartet', + 'body' => 'Der Export wurde gestartet und 1 Zeile wird im Hintergrund verarbeitet.| Der Export wurde gestartet und :count Zeilen werden im Hintergrund verarbeitet.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/de/force-delete.php b/lang/vendor/filament-actions/de/force-delete.php new file mode 100644 index 0000000..56440ce --- /dev/null +++ b/lang/vendor/filament-actions/de/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Endgültig löschen', + + 'modal' => [ + + 'heading' => ':label endgültig löschen', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Löschen', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Eintrag gelöscht', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Ausgewählte endgültig löschen', + + 'modal' => [ + + 'heading' => 'Ausgewählte :label endgültig löschen', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Löschen', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Einträge gelöscht', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/de/group.php b/lang/vendor/filament-actions/de/group.php new file mode 100644 index 0000000..c9ddf6e --- /dev/null +++ b/lang/vendor/filament-actions/de/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Aktionen', + ], + +]; diff --git a/lang/vendor/filament-actions/de/import.php b/lang/vendor/filament-actions/de/import.php new file mode 100644 index 0000000..fd2949e --- /dev/null +++ b/lang/vendor/filament-actions/de/import.php @@ -0,0 +1,82 @@ + ':label Import', + + 'modal' => [ + + 'heading' => ':label Import', + + 'form' => [ + + 'file' => [ + 'label' => 'Datei', + 'placeholder' => 'CSV Datei hochladen', + 'rules' => [ + 'duplicate_columns' => '{0} Die Datei darf nicht mehr als einen leeren Spaltenkopf enthalten.|{1,*} Die Datei darf keine doppelten Spaltenköpfe enthalten: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Spalten', + 'placeholder' => 'Spalte auswählen', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Lade Beispiel CSV herunter', + ], + + 'import' => [ + 'label' => 'Importieren', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Import abgeschlossen', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Informationen über die fehlgeschlagene Zeile herunterladen|Informationen über die fehlgeschlagenen Zeilen herunterladen', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'CSV Datei ist zu groß', + 'body' => 'Nicht mehr als 1 Zeile auf einmal importieren.|Nicht mehr als :count Zeilen auf einmal importieren.', + ], + + 'started' => [ + 'title' => 'Import gestartet', + 'body' => 'Der Import wurde gestartet und 1 Zeile wird im Hintergrund verarbeitet.|Der Import wurde gestartet und :count Zeilen werden im Hintergrund verarbeitet.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'Fehler', + 'system_error' => 'Systemfehler, bitte Supportanfrage stellen.', + 'column_mapping_required_for_new_record' => 'Die :attribute-Spalte wurde nicht einer Spalte in der Datei zugeordnet, wird jedoch für die Erstellung neuer Datensätze benötigt.', + ], + +]; diff --git a/lang/vendor/filament-actions/de/modal.php b/lang/vendor/filament-actions/de/modal.php new file mode 100644 index 0000000..9ddc04c --- /dev/null +++ b/lang/vendor/filament-actions/de/modal.php @@ -0,0 +1,23 @@ + 'Sind Sie sicher, dass Sie dies tun möchten?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Abbrechen', + ], + + 'confirm' => [ + 'label' => 'Bestätigen', + ], + + 'submit' => [ + 'label' => 'Absenden', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/de/notifications.php b/lang/vendor/filament-actions/de/notifications.php new file mode 100644 index 0000000..7cdcb76 --- /dev/null +++ b/lang/vendor/filament-actions/de/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Zu viele Versuche', + 'body' => 'Bitte versuchen Sie es in :seconds Sekunden erneut.', + ], + +]; diff --git a/lang/vendor/filament-actions/de/replicate.php b/lang/vendor/filament-actions/de/replicate.php new file mode 100644 index 0000000..522689f --- /dev/null +++ b/lang/vendor/filament-actions/de/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Duplizieren', + + 'modal' => [ + + 'heading' => ':label duplizieren', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Duplizieren', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Eintrag dupliziert', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/de/restore.php b/lang/vendor/filament-actions/de/restore.php new file mode 100644 index 0000000..45b1e53 --- /dev/null +++ b/lang/vendor/filament-actions/de/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Wiederherstellen', + + 'modal' => [ + + 'heading' => ':label wiederherstellen', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Wiederherstellen', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Eintrag wiederhergestellt', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Ausgewählte wiederherstellen', + + 'modal' => [ + + 'heading' => 'Ausgewählte :label wiederherstellen', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Wiederherstellen', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Einträge wiederhergestellt', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/de/view.php b/lang/vendor/filament-actions/de/view.php new file mode 100644 index 0000000..db6bad4 --- /dev/null +++ b/lang/vendor/filament-actions/de/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Anzeigen', + + 'modal' => [ + + 'heading' => ':label anzeigen', + + 'actions' => [ + + 'close' => [ + 'label' => 'Schließen', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/el/associate.php b/lang/vendor/filament-actions/el/associate.php new file mode 100644 index 0000000..2d84348 --- /dev/null +++ b/lang/vendor/filament-actions/el/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Συσχέτιση', + + 'modal' => [ + + 'heading' => 'Associate :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Record', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Associate', + ], + + 'associate_another' => [ + 'label' => 'Associate & associate another', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Associated', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/el/attach.php b/lang/vendor/filament-actions/el/attach.php new file mode 100644 index 0000000..09dc549 --- /dev/null +++ b/lang/vendor/filament-actions/el/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Attach', + + 'modal' => [ + + 'heading' => 'Attach :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Record', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Attach', + ], + + 'attach_another' => [ + 'label' => 'Attach & attach another', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Attached', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/el/create.php b/lang/vendor/filament-actions/el/create.php new file mode 100644 index 0000000..8ef283d --- /dev/null +++ b/lang/vendor/filament-actions/el/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Προσθήκη :label', + + 'modal' => [ + + 'heading' => 'Δημιουργία :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Δημιουργία', + ], + + 'create_another' => [ + 'label' => 'Δημιουργία & δημιουργία νέου', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Δημιουργήθηκε επιτυχώς', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/el/delete.php b/lang/vendor/filament-actions/el/delete.php new file mode 100644 index 0000000..2675364 --- /dev/null +++ b/lang/vendor/filament-actions/el/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Διαγραφή', + + 'modal' => [ + + 'heading' => 'Διαγραφή :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Διαγραφή', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Διαγράφηκε επιτυχώς', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Διαγραφή επιλεγμένων', + + 'modal' => [ + + 'heading' => 'Διαγραφή επιλεγμένων :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Διαγραφή', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Διαγράφηκαν επιτυχώς', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/el/detach.php b/lang/vendor/filament-actions/el/detach.php new file mode 100644 index 0000000..d9799c5 --- /dev/null +++ b/lang/vendor/filament-actions/el/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Detach', + + 'modal' => [ + + 'heading' => 'Detach :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Detach', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Detached', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Detach selected', + + 'modal' => [ + + 'heading' => 'Detach selected :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Detach', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Detached', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/el/dissociate.php b/lang/vendor/filament-actions/el/dissociate.php new file mode 100644 index 0000000..7b70248 --- /dev/null +++ b/lang/vendor/filament-actions/el/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Dissociate', + + 'modal' => [ + + 'heading' => 'Dissociate :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissociate', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissociated', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Dissociate selected', + + 'modal' => [ + + 'heading' => 'Dissociate selected :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissociate', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissociated', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/el/edit.php b/lang/vendor/filament-actions/el/edit.php new file mode 100644 index 0000000..bf36c33 --- /dev/null +++ b/lang/vendor/filament-actions/el/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Επεξεργασία', + + 'modal' => [ + + 'heading' => 'Επεξεργασία :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Αποθήκευση αλλαγών', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Η αποθήκευση ολοκληρώθηκε', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/el/export.php b/lang/vendor/filament-actions/el/export.php new file mode 100644 index 0000000..9c754a9 --- /dev/null +++ b/lang/vendor/filament-actions/el/export.php @@ -0,0 +1,77 @@ + 'Export :label', + + 'modal' => [ + + 'heading' => 'Export :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Columns', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column enabled', + ], + + 'label' => [ + 'label' => ':column label', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Export', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Export completed', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Download .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Download .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Export is too large', + 'body' => 'You may not export more than 1 row at once.|You may not export more than :count rows at once.', + ], + + 'started' => [ + 'title' => 'Export started', + 'body' => 'Your export has begun and 1 row will be processed in the background.|Your export has begun and :count rows will be processed in the background.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/el/force-delete.php b/lang/vendor/filament-actions/el/force-delete.php new file mode 100644 index 0000000..f8ffa52 --- /dev/null +++ b/lang/vendor/filament-actions/el/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Καθολική διαγραφή', + + 'modal' => [ + + 'heading' => 'Καθολική διαγραφή :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Διαγραφή', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Διαγράφηκε επιτυχώς', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Καθολική διαγραφή επιλεγμένων', + + 'modal' => [ + + 'heading' => 'Καθολική διαγραφή επιλεγμένων :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Διαγραφή', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Διαγράφηκαν επιτυχώς', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/el/group.php b/lang/vendor/filament-actions/el/group.php new file mode 100644 index 0000000..92765dc --- /dev/null +++ b/lang/vendor/filament-actions/el/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Actions', + ], + +]; diff --git a/lang/vendor/filament-actions/el/import.php b/lang/vendor/filament-actions/el/import.php new file mode 100644 index 0000000..4770427 --- /dev/null +++ b/lang/vendor/filament-actions/el/import.php @@ -0,0 +1,77 @@ + 'Import :label', + + 'modal' => [ + + 'heading' => 'Import :label', + + 'form' => [ + + 'file' => [ + 'label' => 'File', + 'placeholder' => 'Upload a CSV file', + ], + + 'columns' => [ + 'label' => 'Columns', + 'placeholder' => 'Select a column', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Download example CSV file', + ], + + 'import' => [ + 'label' => 'Import', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Import completed', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Download information about the failed row|Download information about the failed rows', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Uploaded CSV file is too large', + 'body' => 'You may not import more than 1 row at once.|You may not import more than :count rows at once.', + ], + + 'started' => [ + 'title' => 'Import started', + 'body' => 'Your import has begun and 1 row will be processed in the background.|Your import has begun and :count rows will be processed in the background.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'error', + 'system_error' => 'System error, please contact support.', + ], + +]; diff --git a/lang/vendor/filament-actions/el/modal.php b/lang/vendor/filament-actions/el/modal.php new file mode 100644 index 0000000..920e715 --- /dev/null +++ b/lang/vendor/filament-actions/el/modal.php @@ -0,0 +1,23 @@ + "Είστε σίγουρος/η γι' αυτή την ενέργεια;", + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Άκυρο', + ], + + 'confirm' => [ + 'label' => 'Επιβεβαίωση', + ], + + 'submit' => [ + 'label' => 'Submit', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/el/replicate.php b/lang/vendor/filament-actions/el/replicate.php new file mode 100644 index 0000000..4ffd5bb --- /dev/null +++ b/lang/vendor/filament-actions/el/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Αντιγραφή', + + 'modal' => [ + + 'heading' => 'Αντιγραφή :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Αντιγραφή', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Αντιγράφηκε επιτυχώς', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/el/restore.php b/lang/vendor/filament-actions/el/restore.php new file mode 100644 index 0000000..5a3b2fe --- /dev/null +++ b/lang/vendor/filament-actions/el/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Επαναφορά', + + 'modal' => [ + + 'heading' => 'Επαναφορά :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Επαναφορά', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Έγινε επιτυχής επαναφορά', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Επαναφορά επιλεγμένων', + + 'modal' => [ + + 'heading' => 'Επαναφορά επιλεγμένων :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Επαναφορά', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Έγινε επιτυχής επαναφορά', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/el/view.php b/lang/vendor/filament-actions/el/view.php new file mode 100644 index 0000000..db8a83e --- /dev/null +++ b/lang/vendor/filament-actions/el/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Προβολή', + + 'modal' => [ + + 'heading' => 'Προβολή :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Άκυρο', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/en/associate.php b/lang/vendor/filament-actions/en/associate.php new file mode 100644 index 0000000..1fe931d --- /dev/null +++ b/lang/vendor/filament-actions/en/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Associate', + + 'modal' => [ + + 'heading' => 'Associate :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Record', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Associate', + ], + + 'associate_another' => [ + 'label' => 'Associate & associate another', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Associated', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/en/attach.php b/lang/vendor/filament-actions/en/attach.php new file mode 100644 index 0000000..09dc549 --- /dev/null +++ b/lang/vendor/filament-actions/en/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Attach', + + 'modal' => [ + + 'heading' => 'Attach :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Record', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Attach', + ], + + 'attach_another' => [ + 'label' => 'Attach & attach another', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Attached', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/en/create.php b/lang/vendor/filament-actions/en/create.php new file mode 100644 index 0000000..8437fdf --- /dev/null +++ b/lang/vendor/filament-actions/en/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'New :label', + + 'modal' => [ + + 'heading' => 'Create :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Lägg till foto', + ], + + 'create_another' => [ + 'label' => 'Create & create another', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Created', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/en/delete.php b/lang/vendor/filament-actions/en/delete.php new file mode 100644 index 0000000..f466989 --- /dev/null +++ b/lang/vendor/filament-actions/en/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Delete', + + 'modal' => [ + + 'heading' => 'Delete :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Delete', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Deleted', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Delete selected', + + 'modal' => [ + + 'heading' => 'Delete selected :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Delete', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Deleted', + ], + + 'deleted_partial' => [ + 'title' => 'Deleted :count of :total', + 'missing_authorization_failure_message' => 'You don\'t have permission to delete :count.', + 'missing_processing_failure_message' => ':count could not be deleted.', + ], + + 'deleted_none' => [ + 'title' => 'Failed to delete', + 'missing_authorization_failure_message' => 'You don\'t have permission to delete :count.', + 'missing_processing_failure_message' => ':count could not be deleted.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/en/detach.php b/lang/vendor/filament-actions/en/detach.php new file mode 100644 index 0000000..d9799c5 --- /dev/null +++ b/lang/vendor/filament-actions/en/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Detach', + + 'modal' => [ + + 'heading' => 'Detach :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Detach', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Detached', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Detach selected', + + 'modal' => [ + + 'heading' => 'Detach selected :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Detach', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Detached', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/en/dissociate.php b/lang/vendor/filament-actions/en/dissociate.php new file mode 100644 index 0000000..7b70248 --- /dev/null +++ b/lang/vendor/filament-actions/en/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Dissociate', + + 'modal' => [ + + 'heading' => 'Dissociate :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissociate', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissociated', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Dissociate selected', + + 'modal' => [ + + 'heading' => 'Dissociate selected :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissociate', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissociated', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/en/edit.php b/lang/vendor/filament-actions/en/edit.php new file mode 100644 index 0000000..28cc208 --- /dev/null +++ b/lang/vendor/filament-actions/en/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Edit', + + 'modal' => [ + + 'heading' => 'Edit :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Save changes', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Saved', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/en/export.php b/lang/vendor/filament-actions/en/export.php new file mode 100644 index 0000000..dff48fd --- /dev/null +++ b/lang/vendor/filament-actions/en/export.php @@ -0,0 +1,94 @@ + 'Export :label', + + 'modal' => [ + + 'heading' => 'Export :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Columns', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Select all', + ], + + 'deselect_all' => [ + 'label' => 'Deselect all', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column enabled', + ], + + 'label' => [ + 'label' => ':column label', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Export', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Export completed', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Download .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Download .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Export is too large', + 'body' => 'You may not export more than 1 row at once.|You may not export more than :count rows at once.', + ], + + 'no_columns' => [ + 'title' => 'No columns selected', + 'body' => 'Please select at least one column to export.', + ], + + 'started' => [ + 'title' => 'Export started', + 'body' => 'Your export has begun and 1 row will be processed in the background. You will receive a notification with the download link when it is complete.|Your export has begun and :count rows will be processed in the background. You will receive a notification with the download link when it is complete.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/en/force-delete.php b/lang/vendor/filament-actions/en/force-delete.php new file mode 100644 index 0000000..26c361b --- /dev/null +++ b/lang/vendor/filament-actions/en/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Force delete', + + 'modal' => [ + + 'heading' => 'Force delete :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Delete', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Deleted', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Force delete selected', + + 'modal' => [ + + 'heading' => 'Force delete selected :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Delete', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Deleted', + ], + + 'deleted_partial' => [ + 'title' => 'Deleted :count of :total', + 'missing_authorization_failure_message' => 'You don\'t have permission to delete :count.', + 'missing_processing_failure_message' => ':count could not be deleted.', + ], + + 'deleted_none' => [ + 'title' => 'Failed to delete', + 'missing_authorization_failure_message' => 'You don\'t have permission to delete :count.', + 'missing_processing_failure_message' => ':count could not be deleted.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/en/group.php b/lang/vendor/filament-actions/en/group.php new file mode 100644 index 0000000..92765dc --- /dev/null +++ b/lang/vendor/filament-actions/en/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Actions', + ], + +]; diff --git a/lang/vendor/filament-actions/en/import.php b/lang/vendor/filament-actions/en/import.php new file mode 100644 index 0000000..4593198 --- /dev/null +++ b/lang/vendor/filament-actions/en/import.php @@ -0,0 +1,85 @@ + 'Import :label', + + 'modal' => [ + + 'heading' => 'Import :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'File', + + 'placeholder' => 'Upload a CSV file', + + 'rules' => [ + 'duplicate_columns' => '{0} The file must not contain more than one empty column header.|{1,*} The file must not contain duplicate column headers: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Columns', + 'placeholder' => 'Select a column', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Download example CSV file', + ], + + 'import' => [ + 'label' => 'Import', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Import completed', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Download information about the failed row|Download information about the failed rows', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Uploaded CSV file is too large', + 'body' => 'You may not import more than 1 row at once.|You may not import more than :count rows at once.', + ], + + 'started' => [ + 'title' => 'Import started', + 'body' => 'Your import has begun and 1 row will be processed in the background.|Your import has begun and :count rows will be processed in the background.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'error', + 'system_error' => 'System error, please contact support.', + 'column_mapping_required_for_new_record' => 'The :attribute column was not mapped to a column in the file, but it is required for creating new records.', + ], + +]; diff --git a/lang/vendor/filament-actions/en/modal.php b/lang/vendor/filament-actions/en/modal.php new file mode 100644 index 0000000..1ce970d --- /dev/null +++ b/lang/vendor/filament-actions/en/modal.php @@ -0,0 +1,23 @@ + 'Are you sure you would like to do this?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancel', + ], + + 'confirm' => [ + 'label' => 'Confirm', + ], + + 'submit' => [ + 'label' => 'Submit', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/en/notifications.php b/lang/vendor/filament-actions/en/notifications.php new file mode 100644 index 0000000..b5a707e --- /dev/null +++ b/lang/vendor/filament-actions/en/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Too many attempts', + 'body' => 'Please try again in :seconds seconds.', + ], + +]; diff --git a/lang/vendor/filament-actions/en/replicate.php b/lang/vendor/filament-actions/en/replicate.php new file mode 100644 index 0000000..7fff7cc --- /dev/null +++ b/lang/vendor/filament-actions/en/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Replicate', + + 'modal' => [ + + 'heading' => 'Replicate :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Replicate', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Replicated', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/en/restore.php b/lang/vendor/filament-actions/en/restore.php new file mode 100644 index 0000000..8505eeb --- /dev/null +++ b/lang/vendor/filament-actions/en/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Restore', + + 'modal' => [ + + 'heading' => 'Restore :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restore', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Restored', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Restore selected', + + 'modal' => [ + + 'heading' => 'Restore selected :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restore', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Restored', + ], + + 'restored_partial' => [ + 'title' => 'Restored :count of :total', + 'missing_authorization_failure_message' => 'You don\'t have permission to restore :count.', + 'missing_processing_failure_message' => ':count could not be restored.', + ], + + 'restored_none' => [ + 'title' => 'Failed to restore', + 'missing_authorization_failure_message' => 'You don\'t have permission to restore :count.', + 'missing_processing_failure_message' => ':count could not be restored.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/en/view.php b/lang/vendor/filament-actions/en/view.php new file mode 100644 index 0000000..fd33de1 --- /dev/null +++ b/lang/vendor/filament-actions/en/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'View', + + 'modal' => [ + + 'heading' => 'View :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Close', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/es/associate.php b/lang/vendor/filament-actions/es/associate.php new file mode 100644 index 0000000..f80d2ca --- /dev/null +++ b/lang/vendor/filament-actions/es/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Asociar', + + 'modal' => [ + + 'heading' => 'Asociar :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Registro', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Asociar', + ], + + 'associate_another' => [ + 'label' => 'Asociar y asociar otra', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Asociada', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/es/attach.php b/lang/vendor/filament-actions/es/attach.php new file mode 100644 index 0000000..a42a410 --- /dev/null +++ b/lang/vendor/filament-actions/es/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Vincular', + + 'modal' => [ + + 'heading' => 'Vincular :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Registro', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Vincular', + ], + + 'attach_another' => [ + 'label' => 'Vincular y vincular otro', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Vinculados', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/es/create.php b/lang/vendor/filament-actions/es/create.php new file mode 100644 index 0000000..f311bb1 --- /dev/null +++ b/lang/vendor/filament-actions/es/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Crear :label', + + 'modal' => [ + + 'heading' => 'Crear :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Crear', + ], + + 'create_another' => [ + 'label' => 'Crear y crear otro', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Creado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/es/delete.php b/lang/vendor/filament-actions/es/delete.php new file mode 100644 index 0000000..c306bed --- /dev/null +++ b/lang/vendor/filament-actions/es/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Borrar', + + 'modal' => [ + + 'heading' => 'Borrar :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Borrar', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Borrado', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Borrar seleccionados', + + 'modal' => [ + + 'heading' => 'Borrar :label seleccionados', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Borrar', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Borrados', + ], + + 'deleted_partial' => [ + 'title' => 'Borrados :count de :total', + 'missing_authorization_failure_message' => 'Usted no tiene permiso para eliminar :count.', + 'missing_processing_failure_message' => ':count no se pudieron eliminar.', + ], + + 'deleted_none' => [ + 'title' => 'No se pudo eliminar', + 'missing_authorization_failure_message' => 'Usted no tiene permiso para eliminar :count.', + 'missing_processing_failure_message' => ':count no se pudieron eliminar.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/es/detach.php b/lang/vendor/filament-actions/es/detach.php new file mode 100644 index 0000000..c758e15 --- /dev/null +++ b/lang/vendor/filament-actions/es/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Desvincular', + + 'modal' => [ + + 'heading' => 'Desvincular :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Desvincular', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Desvinculado', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Desvincular seleccionados', + + 'modal' => [ + + 'heading' => 'Desvincular :label seleccionados', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Desvincular seleccionados', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Desvinculados', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/es/dissociate.php b/lang/vendor/filament-actions/es/dissociate.php new file mode 100644 index 0000000..6109800 --- /dev/null +++ b/lang/vendor/filament-actions/es/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Disociar', + + 'modal' => [ + + 'heading' => 'Disociar :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Disociar', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Disociado', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Disociar seleccionados', + + 'modal' => [ + + 'heading' => 'Disociar :label seleccionados', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Disociar', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Disociados', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/es/edit.php b/lang/vendor/filament-actions/es/edit.php new file mode 100644 index 0000000..60bad4d --- /dev/null +++ b/lang/vendor/filament-actions/es/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Editar', + + 'modal' => [ + + 'heading' => 'Editar :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Guardar cambios', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Guardado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/es/export.php b/lang/vendor/filament-actions/es/export.php new file mode 100644 index 0000000..7fddfba --- /dev/null +++ b/lang/vendor/filament-actions/es/export.php @@ -0,0 +1,94 @@ + 'Exportar :label', + + 'modal' => [ + + 'heading' => 'Exportar :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Columnas', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Seleccionar todo', + ], + + 'deselect_all' => [ + 'label' => 'Deseleccionar todo', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column habilitada', + ], + + 'label' => [ + 'label' => 'etiqueta para :column', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Exportar', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Exportación completada', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Descargar .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Descargar .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'La exportación es demasiado grande', + 'body' => 'No se puede exportar más de 1 fila a la vez.|No se pueden exportar más de :count filas a la vez.', + ], + + 'no_columns' => [ + 'title' => 'No se seleccionaron columnas', + 'body' => 'Por favor, seleccione al menos una columna para exportar.', + ], + + 'started' => [ + 'title' => 'Exportación iniciada', + 'body' => 'Su exportación ha comenzado y se procesará 1 fila en segundo plano.|Su exportación ha comenzado y se procesarán :count filas en segundo plano.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/es/force-delete.php b/lang/vendor/filament-actions/es/force-delete.php new file mode 100644 index 0000000..dcec02b --- /dev/null +++ b/lang/vendor/filament-actions/es/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Forzar borrado', + + 'modal' => [ + + 'heading' => 'Forzar el borrado de :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Eliminar', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Registro eliminado', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Forzar la eliminación de los elementos seleccionados', + + 'modal' => [ + + 'heading' => 'Forzar la eliminación de los :label seleccionados', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Eliminar', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Registros eliminados', + ], + + 'deleted_partial' => [ + 'title' => 'Borrados :count de :total', + 'missing_authorization_failure_message' => 'Usted no tiene permiso para eliminar :count.', + 'missing_processing_failure_message' => ':count no se pudieron eliminar.', + ], + + 'deleted_none' => [ + 'title' => 'No se pudo eliminar', + 'missing_authorization_failure_message' => 'Usted no tiene permiso para eliminar :count.', + 'missing_processing_failure_message' => ':count no se pudieron eliminar.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/es/group.php b/lang/vendor/filament-actions/es/group.php new file mode 100644 index 0000000..c07aeb3 --- /dev/null +++ b/lang/vendor/filament-actions/es/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Acciones', + ], + +]; diff --git a/lang/vendor/filament-actions/es/import.php b/lang/vendor/filament-actions/es/import.php new file mode 100644 index 0000000..05f7bba --- /dev/null +++ b/lang/vendor/filament-actions/es/import.php @@ -0,0 +1,85 @@ + 'Importar :label', + + 'modal' => [ + + 'heading' => 'Importar :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Archivo', + + 'placeholder' => 'Cargar un archivo CSV', + + 'rules' => [ + 'duplicate_columns' => '{0} El archivo no debe contener más de un encabezado de columna vacío.|{1,*} El archivo no debe contener encabezados de columna duplicados: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Columnas', + 'placeholder' => 'Seleccionar una columna', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Descargar archivo CSV de ejemplo', + ], + + 'import' => [ + 'label' => 'Importar', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Importación completada', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Descargar información de la fila fallida|Descargar información de las filas fallidas', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'El archivo CSV cargado es demasiado grande', + 'body' => 'No se puede importar más de una fila a la vez.|No se pueden importar más de :count filas a la vez.', + ], + + 'started' => [ + 'title' => 'Importación iniciada', + 'body' => 'Su importación ha comenzado y se procesará 1 fila en segundo plano.|Su importación ha comenzado y se procesarán :count filas en segundo plano.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'error', + 'system_error' => 'Error del sistema, póngase en contacto con el servicio de asistencia.', + 'column_mapping_required_for_new_record' => 'La columna :attribute no se asignó a una columna del archivo, pero esto es necesario para crear nuevos registros.', + ], + +]; diff --git a/lang/vendor/filament-actions/es/modal.php b/lang/vendor/filament-actions/es/modal.php new file mode 100644 index 0000000..f2a1a09 --- /dev/null +++ b/lang/vendor/filament-actions/es/modal.php @@ -0,0 +1,23 @@ + '¿Está segura/o de hacer esto?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancelar', + ], + + 'confirm' => [ + 'label' => 'Confirmar', + ], + + 'submit' => [ + 'label' => 'Enviar', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/es/notifications.php b/lang/vendor/filament-actions/es/notifications.php new file mode 100644 index 0000000..0e811b9 --- /dev/null +++ b/lang/vendor/filament-actions/es/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Demasiados intentos', + 'body' => 'Por favor intente nuevamente en :seconds segundos.', + ], + +]; diff --git a/lang/vendor/filament-actions/es/replicate.php b/lang/vendor/filament-actions/es/replicate.php new file mode 100644 index 0000000..42e1015 --- /dev/null +++ b/lang/vendor/filament-actions/es/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Replicar', + + 'modal' => [ + + 'heading' => 'Replicar :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Replicar', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Registro replicado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/es/restore.php b/lang/vendor/filament-actions/es/restore.php new file mode 100644 index 0000000..dc7824c --- /dev/null +++ b/lang/vendor/filament-actions/es/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Restaurar', + + 'modal' => [ + + 'heading' => 'Restaurar :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restaurar', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Registro restaurado', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Restaurar seleccionados', + + 'modal' => [ + + 'heading' => 'Restaurar los :label seleccionados', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restaurar', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Registros restaurados', + ], + + 'restored_partial' => [ + 'title' => 'Restaurados :count de :total', + 'missing_authorization_failure_message' => 'Usted no tiene permiso para restaurar :count.', + 'missing_processing_failure_message' => ':count no se pudieron restaurar.', + ], + + 'restored_none' => [ + 'title' => 'Ningún registro restaurado', + 'missing_authorization_failure_message' => 'Usted no tiene permiso para restaurar :count.', + 'missing_processing_failure_message' => ':count no se pudieron restaurar.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/es/view.php b/lang/vendor/filament-actions/es/view.php new file mode 100644 index 0000000..29984e8 --- /dev/null +++ b/lang/vendor/filament-actions/es/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Ver', + + 'modal' => [ + + 'heading' => 'Vista de :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Cerrar', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/eu/associate.php b/lang/vendor/filament-actions/eu/associate.php new file mode 100644 index 0000000..e9a26e6 --- /dev/null +++ b/lang/vendor/filament-actions/eu/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Lotu', + + 'modal' => [ + + 'heading' => 'Lotu :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Erregistroa', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Lotu', + ], + + 'associate_another' => [ + 'label' => 'Lotu eta beste bat lotu', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Lotuta', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/eu/attach.php b/lang/vendor/filament-actions/eu/attach.php new file mode 100644 index 0000000..1b98999 --- /dev/null +++ b/lang/vendor/filament-actions/eu/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Erantsi', + + 'modal' => [ + + 'heading' => 'Erantsi :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Erregistroa', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Erantsi', + ], + + 'attach_another' => [ + 'label' => 'Erantsi eta beste bat erantsi', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Erantsita', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/eu/create.php b/lang/vendor/filament-actions/eu/create.php new file mode 100644 index 0000000..a3389b0 --- /dev/null +++ b/lang/vendor/filament-actions/eu/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => ':label berria', + + 'modal' => [ + + 'heading' => 'Sortu :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Sortu', + ], + + 'create_another' => [ + 'label' => 'Sortu eta beste bat sortu', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Sortuta', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/eu/delete.php b/lang/vendor/filament-actions/eu/delete.php new file mode 100644 index 0000000..c756247 --- /dev/null +++ b/lang/vendor/filament-actions/eu/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Ezabatu', + + 'modal' => [ + + 'heading' => 'Ezabatu :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ezabatu', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Ezabatuta', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Hautatuak ezabatu', + + 'modal' => [ + + 'heading' => 'Hautatutako :label ezabatu', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ezabatu', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Ezabatuta', + ], + + 'deleted_partial' => [ + 'title' => ':count / :total ezabatu dira', + 'missing_authorization_failure_message' => 'Ez duzu baimenik :count ezabatzeko.', + 'missing_processing_failure_message' => ':count ezin izan dira ezabatu.', + ], + + 'deleted_none' => [ + 'title' => 'Ezin izan da ezabatu', + 'missing_authorization_failure_message' => 'Ez duzu baimenik :count ezabatzeko.', + 'missing_processing_failure_message' => ':count ezin izan dira ezabatu.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/eu/detach.php b/lang/vendor/filament-actions/eu/detach.php new file mode 100644 index 0000000..914ea37 --- /dev/null +++ b/lang/vendor/filament-actions/eu/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Askatu', + + 'modal' => [ + + 'heading' => 'Askatu :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Askatu', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Askatuta', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Hautatuak askatu', + + 'modal' => [ + + 'heading' => 'Hautatutako :label askatu', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Askatu', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Askatuta', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/eu/dissociate.php b/lang/vendor/filament-actions/eu/dissociate.php new file mode 100644 index 0000000..89d77f2 --- /dev/null +++ b/lang/vendor/filament-actions/eu/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Deslotu', + + 'modal' => [ + + 'heading' => 'Deslotu :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Deslotu', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Deslotuta', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Hautatuak deslotu', + + 'modal' => [ + + 'heading' => 'Hautatutako :label deslotu', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Deslotu', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Deslotuta', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/eu/edit.php b/lang/vendor/filament-actions/eu/edit.php new file mode 100644 index 0000000..623f952 --- /dev/null +++ b/lang/vendor/filament-actions/eu/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Editatu', + + 'modal' => [ + + 'heading' => 'Editatu :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Gorde aldaketak', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Gordeta', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/eu/export.php b/lang/vendor/filament-actions/eu/export.php new file mode 100644 index 0000000..2ec3c31 --- /dev/null +++ b/lang/vendor/filament-actions/eu/export.php @@ -0,0 +1,94 @@ + 'Esportatu :label', + + 'modal' => [ + + 'heading' => 'Esportatu :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Zutabeak', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Aukeratu guztia', + ], + + 'deselect_all' => [ + 'label' => 'Deselektatu guztia', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column gaituta', + ], + + 'label' => [ + 'label' => ':column etiketa', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Esportatu', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Esportazioa osatuta', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Deskargatu .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Deskargatu .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Esportazioa handiegia da', + 'body' => 'Ezin duzu errenkada bat baino gehiago esportatu aldi berean.|Ezin dituzu :count errenkada baino gehiago esportatu aldi berean.', + ], + + 'no_columns' => [ + 'title' => 'Ez da zutaberik hautatu', + 'body' => 'Mesedez, hautatu gutxienez zutabe bat esportatzeko.', + ], + + 'started' => [ + 'title' => 'Esportazioa hasita', + 'body' => 'Esportazioa hasi da eta errenkada bat atzeko planoan prozesatuko da. Deskarga-estekarekin jakinarazpen bat jasoko duzu amaitzean.|Esportazioa hasi da eta :count errenkada atzeko planoan prozesatuko dira. Deskarga-estekarekin jakinarazpen bat jasoko duzu amaitzean.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/eu/force-delete.php b/lang/vendor/filament-actions/eu/force-delete.php new file mode 100644 index 0000000..9c46ee4 --- /dev/null +++ b/lang/vendor/filament-actions/eu/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Behartu ezabatzera', + + 'modal' => [ + + 'heading' => 'Behartu :label ezabatzera', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ezabatu', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Ezabatuta', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Hautatuak behartu ezabatzera', + + 'modal' => [ + + 'heading' => 'Hautatutako :label behartu ezabatzera', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ezabatu', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Ezabatuta', + ], + + 'deleted_partial' => [ + 'title' => ':count / :total ezabatu dira', + 'missing_authorization_failure_message' => 'Ez duzu baimenik :count ezabatzeko.', + 'missing_processing_failure_message' => ':count ezin izan dira ezabatu.', + ], + + 'deleted_none' => [ + 'title' => 'Ezin izan da ezabatu', + 'missing_authorization_failure_message' => 'Ez duzu baimenik :count ezabatzeko.', + 'missing_processing_failure_message' => ':count ezin izan dira ezabatu.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/eu/group.php b/lang/vendor/filament-actions/eu/group.php new file mode 100644 index 0000000..07da9b6 --- /dev/null +++ b/lang/vendor/filament-actions/eu/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Ekintzak', + ], + +]; diff --git a/lang/vendor/filament-actions/eu/import.php b/lang/vendor/filament-actions/eu/import.php new file mode 100644 index 0000000..f4481f7 --- /dev/null +++ b/lang/vendor/filament-actions/eu/import.php @@ -0,0 +1,85 @@ + 'Inportatu :label', + + 'modal' => [ + + 'heading' => 'Inportatu :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Fitxategia', + + 'placeholder' => 'Igo CSV fitxategia', + + 'rules' => [ + 'duplicate_columns' => '{0} Fitxategiak ezin du zutabe-goiburu huts bat baino gehiago izan.|{1,*} Fitxategiak ezin ditu bikoiztutako zutabe-goiburuak izan: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Zutabeak', + 'placeholder' => 'Hautatu zutabe bat', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Deskargatu CSV fitxategi eredua', + ], + + 'import' => [ + 'label' => 'Inportatu', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Inportazioa osatuta', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Deskargatu huts egindako errenkadaren informazioa|Deskargatu huts egindako errenkaden informazioa', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Igotako CSV fitxategia handiegia da', + 'body' => 'Ezin duzu errenkada bat baino gehiago inportatu aldi berean.|Ezin dituzu :count errenkada baino gehiago inportatu aldi berean.', + ], + + 'started' => [ + 'title' => 'Inportazioa hasita', + 'body' => 'Inportazioa hasi da eta errenkada bat atzeko planoan prozesatuko da.|Inportazioa hasi da eta :count errenkada atzeko planoan prozesatuko dira.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'errorea', + 'system_error' => 'Sistemaren errorea, jarri harremanetan laguntza-zerbitzuarekin.', + 'column_mapping_required_for_new_record' => ':attribute zutabea ez da fitxategiko zutabe batekin mapeatu, baina beharrezkoa da erregistro berriak sortzeko.', + ], + +]; diff --git a/lang/vendor/filament-actions/eu/modal.php b/lang/vendor/filament-actions/eu/modal.php new file mode 100644 index 0000000..507ac48 --- /dev/null +++ b/lang/vendor/filament-actions/eu/modal.php @@ -0,0 +1,23 @@ + 'Ziur zaude hau egin nahi duzula?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Utzi', + ], + + 'confirm' => [ + 'label' => 'Berretsi', + ], + + 'submit' => [ + 'label' => 'Bidali', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/eu/notifications.php b/lang/vendor/filament-actions/eu/notifications.php new file mode 100644 index 0000000..7f27ad3 --- /dev/null +++ b/lang/vendor/filament-actions/eu/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Saiakera gehiegi', + 'body' => 'Mesedez, saiatu berriro :seconds segundu barru.', + ], + +]; diff --git a/lang/vendor/filament-actions/eu/replicate.php b/lang/vendor/filament-actions/eu/replicate.php new file mode 100644 index 0000000..1b97b66 --- /dev/null +++ b/lang/vendor/filament-actions/eu/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Erreplikatu', + + 'modal' => [ + + 'heading' => 'Erreplikatu :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Erreplikatu', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Errepikatuta', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/eu/restore.php b/lang/vendor/filament-actions/eu/restore.php new file mode 100644 index 0000000..a5f1043 --- /dev/null +++ b/lang/vendor/filament-actions/eu/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Berreskuratu', + + 'modal' => [ + + 'heading' => 'Berreskuratu :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Berreskuratu', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Berreskuratuta', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Hautatuak berreskuratu', + + 'modal' => [ + + 'heading' => 'Hautatutako :label berreskuratu', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Berreskuratu', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Berreskuratuta', + ], + + 'restored_partial' => [ + 'title' => ':count / :total berreskuratu dira', + 'missing_authorization_failure_message' => 'Ez duzu baimenik :count berreskuratzeko.', + 'missing_processing_failure_message' => ':count ezin izan dira berreskuratu.', + ], + + 'restored_none' => [ + 'title' => 'Ezin izan da berreskuratu', + 'missing_authorization_failure_message' => 'Ez duzu baimenik :count berreskuratzeko.', + 'missing_processing_failure_message' => ':count ezin izan dira berreskuratu.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/eu/view.php b/lang/vendor/filament-actions/eu/view.php new file mode 100644 index 0000000..6c46510 --- /dev/null +++ b/lang/vendor/filament-actions/eu/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Ikusi', + + 'modal' => [ + + 'heading' => 'Ikusi :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Itxi', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fa/associate.php b/lang/vendor/filament-actions/fa/associate.php new file mode 100644 index 0000000..714d68b --- /dev/null +++ b/lang/vendor/filament-actions/fa/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'ارتباط', + + 'modal' => [ + + 'heading' => 'ارتباط :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'رکورد', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'ارتباط', + ], + + 'associate_another' => [ + 'label' => 'ارتباط و ارتباط دیگر', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'مرتبط شد', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fa/attach.php b/lang/vendor/filament-actions/fa/attach.php new file mode 100644 index 0000000..5b3ecd0 --- /dev/null +++ b/lang/vendor/filament-actions/fa/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'افزودن', + + 'modal' => [ + + 'heading' => 'افزودن :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'رکورد', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'افزودن', + ], + + 'attach_another' => [ + 'label' => 'افزودن و افزودن یکی دیگر', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'افزوده شد', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fa/create.php b/lang/vendor/filament-actions/fa/create.php new file mode 100644 index 0000000..80e6a7f --- /dev/null +++ b/lang/vendor/filament-actions/fa/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'ایجاد :label', + + 'modal' => [ + + 'heading' => 'ایجاد :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'ایجاد', + ], + + 'create_another' => [ + 'label' => 'ایجاد و ایجاد یکی دیگر', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'ایجاد شد', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fa/delete.php b/lang/vendor/filament-actions/fa/delete.php new file mode 100644 index 0000000..2163240 --- /dev/null +++ b/lang/vendor/filament-actions/fa/delete.php @@ -0,0 +1,71 @@ + [ + + 'label' => 'حذف', + + 'modal' => [ + + 'heading' => 'حذف :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'حذف', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'حذف شد', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'حذف انتخاب شده‌', + + 'modal' => [ + + 'heading' => 'حذف :label انتخاب شده', + + 'actions' => [ + + 'delete' => [ + 'label' => 'حذف انتخاب شده‌', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'حذف شد', + ], + 'deleted_partial' => [ + 'title' => ':count از :total حذف شد', + 'missing_authorization_failure_message' => 'شما اجازه حذف :count را ندارید.', + 'missing_processing_failure_message' => ':count نتوانست حذف شود.', + ], + + 'deleted_none' => [ + 'title' => 'حذف انجام نشد', + 'missing_authorization_failure_message' => 'شما اجازه حذف :count را ندارید.', + 'missing_processing_failure_message' => ':count نتوانست حذف شود.', + ], + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fa/detach.php b/lang/vendor/filament-actions/fa/detach.php new file mode 100644 index 0000000..5e6654f --- /dev/null +++ b/lang/vendor/filament-actions/fa/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'جدا کردن', + + 'modal' => [ + + 'heading' => 'جدا کردن :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'جدا کردن', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'جدا شد', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'جدا کردن انتخاب شده', + + 'modal' => [ + + 'heading' => 'جدا کردن :label انتخاب شده', + + 'actions' => [ + + 'detach' => [ + 'label' => 'جدا کردن انتخاب شده', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'جدا شد', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fa/dissociate.php b/lang/vendor/filament-actions/fa/dissociate.php new file mode 100644 index 0000000..893e94c --- /dev/null +++ b/lang/vendor/filament-actions/fa/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'جداکردن', + + 'modal' => [ + + 'heading' => 'جداکردن :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'جداکردن', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'جداکردن', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'جداکردن انتخاب شده', + + 'modal' => [ + + 'heading' => 'جداکردن :label انتخاب شده', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'جداکردن انتخاب شده', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'جدا شد', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fa/edit.php b/lang/vendor/filament-actions/fa/edit.php new file mode 100644 index 0000000..d3cbd46 --- /dev/null +++ b/lang/vendor/filament-actions/fa/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'ویرایش', + + 'modal' => [ + + 'heading' => 'ویرایش :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'ذخیره', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'ذخیره شد', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fa/export.php b/lang/vendor/filament-actions/fa/export.php new file mode 100644 index 0000000..7e6a107 --- /dev/null +++ b/lang/vendor/filament-actions/fa/export.php @@ -0,0 +1,77 @@ + 'اکسپورت :label', + + 'modal' => [ + + 'heading' => 'اکسپورت :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'ستون ها', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':ستون فعال است', + ], + + 'label' => [ + 'label' => ':برچسب ستونی', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'اکسپورت', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'اکسپورت انجام شد', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'دانلود csv.', + ], + + 'download_xlsx' => [ + 'label' => 'دانلود xlsx.', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'اکسپورت خیلی بزرگ است', + 'body' => 'شما نمی توانید بیش از 1 ردیف را به طور همزمان صادر کنید.|شما نمی توانید بیش از :count ردیف را به طور همزمان صادر کنید.', + ], + + 'started' => [ + 'title' => 'اکسپورت آغاز شد', + 'body' => 'اکسپورت شما آغاز شده است و 1 ردیف در پس‌زمینه پردازش می‌شود.|اکسپورت شما آغاز شده است و :count ردیف در پس‌زمینه پردازش می‌شوند.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/fa/force-delete.php b/lang/vendor/filament-actions/fa/force-delete.php new file mode 100644 index 0000000..41a7620 --- /dev/null +++ b/lang/vendor/filament-actions/fa/force-delete.php @@ -0,0 +1,72 @@ + [ + + 'label' => 'حذف دائمی', + + 'modal' => [ + + 'heading' => 'حذف دائمی :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'حذف', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'رکورد حذف شد', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'حذف دائمی انتخاب شده', + + 'modal' => [ + + 'heading' => 'حذف دائمی :label انتخاب شده', + + 'actions' => [ + + 'delete' => [ + 'label' => 'حذف', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'رکوردها حذف شدند', + ], + + 'deleted_partial' => [ + 'title' => ':count از :total حذف شد', + 'missing_authorization_failure_message' => 'شما اجازه حذف :count را ندارید.', + 'missing_processing_failure_message' => ':count نتوانست حذف شود.', + ], + + 'deleted_none' => [ + 'title' => 'حذف انجام نشد', + 'missing_authorization_failure_message' => 'شما اجازه حذف :count را ندارید.', + 'missing_processing_failure_message' => ':count نتوانست حذف شود.', + ], + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fa/group.php b/lang/vendor/filament-actions/fa/group.php new file mode 100644 index 0000000..c3eaca1 --- /dev/null +++ b/lang/vendor/filament-actions/fa/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'عملیات', + ], + +]; diff --git a/lang/vendor/filament-actions/fa/import.php b/lang/vendor/filament-actions/fa/import.php new file mode 100644 index 0000000..6f5c156 --- /dev/null +++ b/lang/vendor/filament-actions/fa/import.php @@ -0,0 +1,85 @@ + 'ایمپورت :label', + + 'modal' => [ + + 'heading' => 'ایمپورت :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'پرونده', + + 'placeholder' => 'آپلود یک فایل CSV', + + 'rules' => [ + 'duplicate_columns' => '{0} فایل نباید بیش از یک ستون با هدر خالی داشته باشد.|{1,*} فایل نباید شامل ستون‌های با هدر تکراری باشد: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'ستون ها', + 'placeholder' => 'یک ستون را انتخاب کنید', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'دانلود نمونه فایل CSV', + ], + + 'import' => [ + 'label' => 'ایمپورت', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'ایمپورت تکمیل شد', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'دانلود اطلاعات در مورد ردیف ناموفق|دانلود اطلاعات در مورد ردیف های ناموفق', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'فایل CSV آپلود شده خیلی بزرگ است', + 'body' => 'شما نمی توانید بیش از 1 ردیف را به طور همزمان وارد کنید.|شما نمی توانید بیش از :count ردیف را در یک زمان وارد کنید.', + ], + + 'started' => [ + 'title' => 'ایمپورت آغاز شد', + 'body' => 'ایمپورت شما شروع شده است و 1 ردیف در پس‌زمینه پردازش می‌شود.|ایمپورت شما آغاز شده است و :count ردیف در پس‌زمینه پردازش می‌شوند.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'خطا', + 'system_error' => 'خطای سیستمی، لطفا با پشتیبانی تماس بگیرید.', + 'column_mapping_required_for_new_record' => 'ستون :attribute به هیچ ستونی در فایل نگاشت نشد، ولی وجود آن برای ایجاد رکوردهای جدید لازم است.', + ], + +]; diff --git a/lang/vendor/filament-actions/fa/modal.php b/lang/vendor/filament-actions/fa/modal.php new file mode 100644 index 0000000..ac5ceb8 --- /dev/null +++ b/lang/vendor/filament-actions/fa/modal.php @@ -0,0 +1,23 @@ + 'آیا برای انجام این کار مطمئن هستید؟', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'لغو', + ], + + 'confirm' => [ + 'label' => 'تایید', + ], + + 'submit' => [ + 'label' => 'ثبت', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fa/notifications.php b/lang/vendor/filament-actions/fa/notifications.php new file mode 100644 index 0000000..7409125 --- /dev/null +++ b/lang/vendor/filament-actions/fa/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'تلاش بیش از حد مجاز', + 'body' => 'لطفا بعد از :seconds ثانیه دوباره تلاش کنید.', + ], + +]; diff --git a/lang/vendor/filament-actions/fa/replicate.php b/lang/vendor/filament-actions/fa/replicate.php new file mode 100644 index 0000000..b15d7f2 --- /dev/null +++ b/lang/vendor/filament-actions/fa/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'تکثیر', + + 'modal' => [ + + 'heading' => 'تکثیر :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'تکثیر', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'رکورد تکثیر شد', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fa/restore.php b/lang/vendor/filament-actions/fa/restore.php new file mode 100644 index 0000000..6ab0fb8 --- /dev/null +++ b/lang/vendor/filament-actions/fa/restore.php @@ -0,0 +1,72 @@ + [ + + 'label' => 'بازگردانی', + + 'modal' => [ + + 'heading' => 'بازگردانی :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'بازگردانی', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'رکورد بازگردانی شد', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'بازگردانی انتخاب شده', + + 'modal' => [ + + 'heading' => 'بازگردانی :label انتخاب شده', + + 'actions' => [ + + 'restore' => [ + 'label' => 'بازگردانی', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'رکوردها بازگردانی شدند', + ], + + 'restored_partial' => [ + 'title' => ':count از :total بازگردانی شد', + 'missing_authorization_failure_message' => 'شما اجازه بازگردانی :count را ندارید.', + 'missing_processing_failure_message' => ':count نتوانست بازگردانی شود.', + ], + + 'restored_none' => [ + 'title' => 'بازگردانی نشد', + 'missing_authorization_failure_message' => 'شما اجازه بازگردانی :count را ندارید.', + 'missing_processing_failure_message' => ':count نتوانست بازگردانی شود.', + ], + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fa/view.php b/lang/vendor/filament-actions/fa/view.php new file mode 100644 index 0000000..a65182b --- /dev/null +++ b/lang/vendor/filament-actions/fa/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'نمایش', + + 'modal' => [ + + 'heading' => 'نمایش :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'بستن', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fi/associate.php b/lang/vendor/filament-actions/fi/associate.php new file mode 100644 index 0000000..d04b561 --- /dev/null +++ b/lang/vendor/filament-actions/fi/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Yhdistä', + + 'modal' => [ + + 'heading' => 'Yhdistä :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Tietue', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Yhdistä', + ], + + 'associate_another' => [ + 'label' => 'Yhdistä & yhdistä toinen', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Yhdistetty', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fi/attach.php b/lang/vendor/filament-actions/fi/attach.php new file mode 100644 index 0000000..75b5fce --- /dev/null +++ b/lang/vendor/filament-actions/fi/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Liitä', + + 'modal' => [ + + 'heading' => 'Liitä :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Tietue', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Liitä', + ], + + 'attach_another' => [ + 'label' => 'Liitä & liitä toinen', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Liitetty', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fi/create.php b/lang/vendor/filament-actions/fi/create.php new file mode 100644 index 0000000..fa0cd38 --- /dev/null +++ b/lang/vendor/filament-actions/fi/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Uusi :label', + + 'modal' => [ + + 'heading' => 'Uusi :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Luo', + ], + + 'create_another' => [ + 'label' => 'Luo & luo toinen', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Luotu', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fi/delete.php b/lang/vendor/filament-actions/fi/delete.php new file mode 100644 index 0000000..e387b45 --- /dev/null +++ b/lang/vendor/filament-actions/fi/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Poista', + + 'modal' => [ + + 'heading' => 'Poista :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Poista', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Poistettu', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Poista valitut', + + 'modal' => [ + + 'heading' => 'Poista valitut :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Poista', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Poistettu', + ], + + 'deleted_partial' => [ + 'title' => 'Poistettu :count / :total', + 'missing_authorization_failure_message' => 'Sinulla ei ole oikeuksia poistaa :count.', + 'missing_processing_failure_message' => ':count ei voitu poistaa.', + ], + + 'deleted_none' => [ + 'title' => 'Poistaminen epäonnistui', + 'missing_authorization_failure_message' => 'Sinulla ei ole oikeuksia poistaa :count.', + 'missing_processing_failure_message' => ':count ei voitu poistaa.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fi/detach.php b/lang/vendor/filament-actions/fi/detach.php new file mode 100644 index 0000000..ee4aadf --- /dev/null +++ b/lang/vendor/filament-actions/fi/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Irrota', + + 'modal' => [ + + 'heading' => 'Irrota :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Irrota', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Irrotettu', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Irrota valitut', + + 'modal' => [ + + 'heading' => 'Irrota valitut :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Irrota valitut', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Irrotettu', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fi/dissociate.php b/lang/vendor/filament-actions/fi/dissociate.php new file mode 100644 index 0000000..d096397 --- /dev/null +++ b/lang/vendor/filament-actions/fi/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Erota', + + 'modal' => [ + + 'heading' => 'Erota :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Erota', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Erotettu', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Erota valitut', + + 'modal' => [ + + 'heading' => 'Erota valitut :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Erota valitut', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Erotettu', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fi/edit.php b/lang/vendor/filament-actions/fi/edit.php new file mode 100644 index 0000000..11572fa --- /dev/null +++ b/lang/vendor/filament-actions/fi/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Muokkaa', + + 'modal' => [ + + 'heading' => 'Muokkaa :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Tallenna', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Tallennettu', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fi/export.php b/lang/vendor/filament-actions/fi/export.php new file mode 100644 index 0000000..152b88c --- /dev/null +++ b/lang/vendor/filament-actions/fi/export.php @@ -0,0 +1,94 @@ + 'Vie :label', + + 'modal' => [ + + 'heading' => 'Vie :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Sarakkeet', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Valitse kaikki', + ], + + 'deselect_all' => [ + 'label' => 'Poista valinta kaikista', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column valittu', + ], + + 'label' => [ + 'label' => ':column nimike', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Vie', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Vienti valmis', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Lataa .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Lataa .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Vienti on liian iso', + 'body' => 'Et voi viedä kuin yhden rivin kerralla.|Et voi viedä kuin :count riviä yhdellä kerralla.', + ], + + 'no_columns' => [ + 'title' => 'Sarakkeita ei ole valittu', + 'body' => 'Valitse ainakin yksi sarake vientiä varten.', + ], + + 'started' => [ + 'title' => 'Vienti aloitettu', + 'body' => 'Vienti on aloitettu ja 1 rivi käsitellään taustalla. Saat ilmoituksen latauslinkillä kun se on valmis.|Vienti on aloitettu ja :count riviä käsitellään taustalla. Saat ilmoituksen latauslinkillä kun se on valmis.', + ], + + ], + + 'file_name' => 'vienti-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/fi/force-delete.php b/lang/vendor/filament-actions/fi/force-delete.php new file mode 100644 index 0000000..a920131 --- /dev/null +++ b/lang/vendor/filament-actions/fi/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Poista lopullisesti', + + 'modal' => [ + + 'heading' => 'Pakota poistaminen :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Poista', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Tietue poistettu', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Poista valitut lopullisesti', + + 'modal' => [ + + 'heading' => 'Poista valitut lopullisesti :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Poista', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Tietueet poistettu', + ], + + 'deleted_partial' => [ + 'title' => 'Poistettu :count / :total', + 'missing_authorization_failure_message' => 'Sinulla ei ole oikeuksia poistaa :count.', + 'missing_processing_failure_message' => ':count ei voitu poistaa.', + ], + + 'deleted_none' => [ + 'title' => 'Poistaminen epäonnistui', + 'missing_authorization_failure_message' => 'Sinulla ei ole oikeuksia poistaa :count.', + 'missing_processing_failure_message' => ':count ei voitu poistaa.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fi/group.php b/lang/vendor/filament-actions/fi/group.php new file mode 100644 index 0000000..49a9b28 --- /dev/null +++ b/lang/vendor/filament-actions/fi/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Toimenpiteet', + ], + +]; diff --git a/lang/vendor/filament-actions/fi/import.php b/lang/vendor/filament-actions/fi/import.php new file mode 100644 index 0000000..f4513f3 --- /dev/null +++ b/lang/vendor/filament-actions/fi/import.php @@ -0,0 +1,85 @@ + 'Tuo :label', + + 'modal' => [ + + 'heading' => 'Tuo :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Tiedosto', + + 'placeholder' => 'Siirrä CSV tiedosto', + + 'rules' => [ + 'duplicate_columns' => '{0} Tiedostossa voi olla enimmillään yksi tyhjä sarakkeen otsake.|{1,*} Tiedostossa ei voi olla toistuvia sarakkeiden otsakkeita: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Sarakkeet', + 'placeholder' => 'Valitse sarake', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Lataa esimerkki CSV-tiedosto', + ], + + 'import' => [ + 'label' => 'Tuonti', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Tuonti valmis', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Lataa tietoja epäonnistuneesta rivistä|Lataa tietoja epäonnistuneesta riveistä', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Siirretty CSV on liian iso', + 'body' => 'Voi tuoda vain yhden rivin kerrallaan.|Voit tuoda vain :count riviä kerralla.', + ], + + 'started' => [ + 'title' => 'Tuonti aloitettu', + 'body' => 'Tuonti on aloitettu ja 1 rivi käsitellään taustalla.|Tuonti on aloitettu ja :count riviä käsitellään taustalla.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-esimerkki', + ], + + 'failure_csv' => [ + 'file_name' => 'tuonti-:import_id-:csv_name-virheelliset-rivit', + 'error_header' => 'virhe', + 'system_error' => 'Järjestelmävirhe, ota yhteyttä tukeen.', + 'column_mapping_required_for_new_record' => 'Otsaketta :attribute ei voitu yhdistää tiedostosta löytyvään otsakkeeseen, se on vaadittu tuontia varten.', + ], + +]; diff --git a/lang/vendor/filament-actions/fi/modal.php b/lang/vendor/filament-actions/fi/modal.php new file mode 100644 index 0000000..dc202f8 --- /dev/null +++ b/lang/vendor/filament-actions/fi/modal.php @@ -0,0 +1,23 @@ + 'Oletko varma että haluat tehdä tämän?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Peruuta', + ], + + 'confirm' => [ + 'label' => 'Vahvista', + ], + + 'submit' => [ + 'label' => 'Lähetä', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fi/notifications.php b/lang/vendor/filament-actions/fi/notifications.php new file mode 100644 index 0000000..8bc4d12 --- /dev/null +++ b/lang/vendor/filament-actions/fi/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Liian monta yritystä', + 'body' => 'Yritä uudelleen :seconds sekunnin päästä.', + ], + +]; diff --git a/lang/vendor/filament-actions/fi/replicate.php b/lang/vendor/filament-actions/fi/replicate.php new file mode 100644 index 0000000..6c34ff0 --- /dev/null +++ b/lang/vendor/filament-actions/fi/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Monista', + + 'modal' => [ + + 'heading' => 'Monista :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Monista', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Tietue monistettu', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fi/restore.php b/lang/vendor/filament-actions/fi/restore.php new file mode 100644 index 0000000..a18b7d8 --- /dev/null +++ b/lang/vendor/filament-actions/fi/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Palauta', + + 'modal' => [ + + 'heading' => 'Palauta :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Palauta', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Palautettu', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Palauta valitut', + + 'modal' => [ + + 'heading' => 'Palauta valitut :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Palauta', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Palautettu', + ], + + 'restored_partial' => [ + 'title' => 'Palautettu :count / :total', + 'missing_authorization_failure_message' => 'Sinulla ei ole oikeuksia palauttaa :count.', + 'missing_processing_failure_message' => ':count ei voitu palauttaa.', + ], + + 'restored_none' => [ + 'title' => 'Palautus epäonnistui', + 'missing_authorization_failure_message' => 'Sinulla ei ole oikeuksia palauttaa :count.', + 'missing_processing_failure_message' => ':count ei voitu palauttaa.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fi/view.php b/lang/vendor/filament-actions/fi/view.php new file mode 100644 index 0000000..ed85c51 --- /dev/null +++ b/lang/vendor/filament-actions/fi/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Näytä', + + 'modal' => [ + + 'heading' => 'Näytä :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Sulje', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fr/associate.php b/lang/vendor/filament-actions/fr/associate.php new file mode 100644 index 0000000..a52878d --- /dev/null +++ b/lang/vendor/filament-actions/fr/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Associer', + + 'modal' => [ + + 'heading' => 'Associer :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Enregistrements', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Associer', + ], + + 'associate_another' => [ + 'label' => 'Associer & associer un autre', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Associé', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fr/attach.php b/lang/vendor/filament-actions/fr/attach.php new file mode 100644 index 0000000..c50e366 --- /dev/null +++ b/lang/vendor/filament-actions/fr/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Attacher', + + 'modal' => [ + + 'heading' => 'Attacher :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Enregistrement', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Attacher', + ], + + 'attach_another' => [ + 'label' => 'Attacher & Attacher un autre', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Attaché(e)s', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fr/create.php b/lang/vendor/filament-actions/fr/create.php new file mode 100644 index 0000000..d4a0cbb --- /dev/null +++ b/lang/vendor/filament-actions/fr/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Créer', + + 'modal' => [ + + 'heading' => 'Créer :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Créer', + ], + + 'create_another' => [ + 'label' => 'Créer & Ajouter un autre', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Créé(e)', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fr/delete.php b/lang/vendor/filament-actions/fr/delete.php new file mode 100644 index 0000000..5969d6f --- /dev/null +++ b/lang/vendor/filament-actions/fr/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Supprimer', + + 'modal' => [ + + 'heading' => 'Supprimer :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Supprimer', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Supprimé(e)', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Supprimer la sélection', + + 'modal' => [ + + 'heading' => 'Supprimer la sélection de :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Supprimer la sélection', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Supprimé(e)s', + ], + + 'deleted_partial' => [ + 'title' => 'Supprimé :count sur :total', + 'missing_authorization_failure_message' => 'Vous n\'avez pas la permission de supprimer :count.', + 'missing_processing_failure_message' => ':count n\'ont pas pu être supprimés.', + ], + + 'deleted_none' => [ + 'title' => 'Échec de la suppression', + 'missing_authorization_failure_message' => 'Vous n\'avez pas la permission de supprimer :count.', + 'missing_processing_failure_message' => ':count n\'ont pas pu être supprimés.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fr/detach.php b/lang/vendor/filament-actions/fr/detach.php new file mode 100644 index 0000000..df6e409 --- /dev/null +++ b/lang/vendor/filament-actions/fr/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Détacher', + + 'modal' => [ + + 'heading' => 'Détacher :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Détacher', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Détaché(e)', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Détacher la sélection', + + 'modal' => [ + + 'heading' => 'Détacher la sélection de :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Détacher la sélection', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Détaché(e)s', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fr/dissociate.php b/lang/vendor/filament-actions/fr/dissociate.php new file mode 100644 index 0000000..33b3cfd --- /dev/null +++ b/lang/vendor/filament-actions/fr/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Dissocier', + + 'modal' => [ + + 'heading' => 'Dissocier :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissocier', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissocié', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Dissocier sélection', + + 'modal' => [ + + 'heading' => 'Dissocier la sélection :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissocier sélection', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissocié', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fr/edit.php b/lang/vendor/filament-actions/fr/edit.php new file mode 100644 index 0000000..b64a643 --- /dev/null +++ b/lang/vendor/filament-actions/fr/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Modifier', + + 'modal' => [ + + 'heading' => 'Modifier :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Sauvegarder les modifications', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Sauvegardé', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fr/export.php b/lang/vendor/filament-actions/fr/export.php new file mode 100644 index 0000000..ce088e5 --- /dev/null +++ b/lang/vendor/filament-actions/fr/export.php @@ -0,0 +1,89 @@ + 'Exporter :label', + + 'modal' => [ + + 'heading' => 'Exporter :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Colonnes', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Sélectionner tout', + ], + + 'deselect_all' => [ + 'label' => 'Désélectionner tout', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column sélectionnée', + ], + + 'label' => [ + 'label' => ':column label', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Exporter', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Exportation terminée', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Télécharger .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Télécharger .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'L\'exportation est trop volumineuse', + 'body' => 'Vous ne pouvez pas exporter plus d’une ligne à la fois.|Vous ne pouvez pas exporter plus de :count lignes à la fois', + ], + + 'started' => [ + 'title' => 'L’exportation a commencé', + 'body' => 'Votre exportation a commencé et 1 ligne sera traitée en arrière-plan.|Votre exportation a commencé et :count lignes seront traitées en arrière-plan.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/fr/force-delete.php b/lang/vendor/filament-actions/fr/force-delete.php new file mode 100644 index 0000000..7b405bb --- /dev/null +++ b/lang/vendor/filament-actions/fr/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Supprimer définitivement', + + 'modal' => [ + + 'heading' => 'Supprimer définitivement :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Supprimer', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Enregistrement supprimé', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Forcer la suppression de la sélection', + + 'modal' => [ + + 'heading' => 'Forcer la suppression de la sélection de :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Supprimer', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Enregistrements supprimés', + ], + + 'deleted_partial' => [ + 'title' => 'Supprimé :count sur :total', + 'missing_authorization_failure_message' => 'Vous n\'avez pas la permission de supprimer :count.', + 'missing_processing_failure_message' => ':count n\'ont pas pu être supprimés.', + ], + + 'deleted_none' => [ + 'title' => 'Échec de la suppression', + 'missing_authorization_failure_message' => 'Vous n\'avez pas la permission de supprimer :count.', + 'missing_processing_failure_message' => ':count n\'ont pas pu être supprimés.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fr/group.php b/lang/vendor/filament-actions/fr/group.php new file mode 100644 index 0000000..92765dc --- /dev/null +++ b/lang/vendor/filament-actions/fr/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Actions', + ], + +]; diff --git a/lang/vendor/filament-actions/fr/import.php b/lang/vendor/filament-actions/fr/import.php new file mode 100644 index 0000000..e1a9641 --- /dev/null +++ b/lang/vendor/filament-actions/fr/import.php @@ -0,0 +1,81 @@ + 'Importer :label', + + 'modal' => [ + + 'heading' => 'Importer :label', + + 'form' => [ + + 'file' => [ + 'label' => 'Fichier', + 'placeholder' => 'Télécharger un fichier CSV', + 'rules' => [ + 'duplicate_columns' => '{0} Le fichier ne doit pas contenir plus d\'un nom de colonne vide.|{1,*} Le fichier ne doit pas contenir de doublons de noms de colonne.: :columns.', + ], + ], + + 'columns' => [ + 'label' => 'Colonnes', + 'placeholder' => 'Choisir une colonne', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Télécharger le fichier CSV exemple', + ], + + 'import' => [ + 'label' => 'Importer', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Importation terminée', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Télécharger les informations sur la ligne qui a échoué|Télécharger les informations sur les lignes qui ont échoué', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Le fichier CSV est trop volumineux', + 'body' => 'Vous ne pouvez pas importer plus d\'une ligne à la fois.|Vous ne pouvez pas importer plus de :count lignes à la fois.', + ], + + 'started' => [ + 'title' => 'L\'importation a commencée', + 'body' => 'Votre importation a commencé et 1 ligne sera traitée en arrière-plan.|Votre importation a commencé et :count lignes seront traitées en arrière-plan.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'error', + 'system_error' => 'Erreur système, veuillez contacter le support.', + 'column_mapping_required_for_new_record' => 'La colonne :attribute n\'a pas été associée à une colonne dans le fichier, mais elle est requise pour créer de nouveaux enregistrements.', + ], + +]; diff --git a/lang/vendor/filament-actions/fr/modal.php b/lang/vendor/filament-actions/fr/modal.php new file mode 100644 index 0000000..79889de --- /dev/null +++ b/lang/vendor/filament-actions/fr/modal.php @@ -0,0 +1,23 @@ + 'Êtes-vous sûr de vouloir faire cela ?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annuler', + ], + + 'confirm' => [ + 'label' => 'Confirmer', + ], + + 'submit' => [ + 'label' => 'Soumettre', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fr/notifications.php b/lang/vendor/filament-actions/fr/notifications.php new file mode 100644 index 0000000..e4ffc44 --- /dev/null +++ b/lang/vendor/filament-actions/fr/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Trop de tentatives', + 'body' => 'Veuillez réessayer dans :seconds secondes.', + ], + +]; diff --git a/lang/vendor/filament-actions/fr/replicate.php b/lang/vendor/filament-actions/fr/replicate.php new file mode 100644 index 0000000..f456fd4 --- /dev/null +++ b/lang/vendor/filament-actions/fr/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Dupliquer', + + 'modal' => [ + + 'heading' => 'Dupliquer :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Dupliquer', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Enregistrement dupliqué', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fr/restore.php b/lang/vendor/filament-actions/fr/restore.php new file mode 100644 index 0000000..57102ad --- /dev/null +++ b/lang/vendor/filament-actions/fr/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Restaurer', + + 'modal' => [ + + 'heading' => 'Restaurer :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restaurer', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Enregistrement restauré', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Restaurer la sélection', + + 'modal' => [ + + 'heading' => 'Restaurer la sélection :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restaurer', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Enregistrements restaurés', + ], + + 'restored_partial' => [ + 'title' => 'Restauré :count sur :total', + 'missing_authorization_failure_message' => 'Vous n\'avez pas la permission de restaurer :count.', + 'missing_processing_failure_message' => ':count n\'ont pas pu être restaurés.', + ], + + 'restored_none' => [ + 'title' => 'Échec de la restauration', + 'missing_authorization_failure_message' => 'Vous n\'avez pas la permission de restaurer :count.', + 'missing_processing_failure_message' => ':count n\'ont pas pu être restaurés.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/fr/view.php b/lang/vendor/filament-actions/fr/view.php new file mode 100644 index 0000000..0b52deb --- /dev/null +++ b/lang/vendor/filament-actions/fr/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Voir', + + 'modal' => [ + + 'heading' => 'Voir :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Fermer', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/he/associate.php b/lang/vendor/filament-actions/he/associate.php new file mode 100644 index 0000000..2b8766d --- /dev/null +++ b/lang/vendor/filament-actions/he/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'שיוך', + + 'modal' => [ + + 'heading' => 'שייך את :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'רשומה', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'שייך', + ], + + 'associate_another' => [ + 'label' => 'שייך ושייך אחד נוסף', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'שויך', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/he/attach.php b/lang/vendor/filament-actions/he/attach.php new file mode 100644 index 0000000..e0e0b46 --- /dev/null +++ b/lang/vendor/filament-actions/he/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'קשר', + + 'modal' => [ + + 'heading' => 'קשר את :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'רשומה', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'קשר', + ], + + 'attach_another' => [ + 'label' => 'קשר וקשר עוד אחד', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'קושר', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/he/create.php b/lang/vendor/filament-actions/he/create.php new file mode 100644 index 0000000..e1154d0 --- /dev/null +++ b/lang/vendor/filament-actions/he/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'יצירת :label', + + 'modal' => [ + + 'heading' => 'יצירת :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'יצירה', + ], + + 'create_another' => [ + 'label' => 'צור וצור עוד אחד', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'נוצר', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/he/delete.php b/lang/vendor/filament-actions/he/delete.php new file mode 100644 index 0000000..ac9bcc9 --- /dev/null +++ b/lang/vendor/filament-actions/he/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'מחיקה', + + 'modal' => [ + + 'heading' => 'מחיקת :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'מחק', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'נמחק', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'מחק נבחרים', + + 'modal' => [ + + 'heading' => 'מחק את ה:label שנבחרו', + + 'actions' => [ + + 'delete' => [ + 'label' => 'מחק', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'נמחק', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/he/detach.php b/lang/vendor/filament-actions/he/detach.php new file mode 100644 index 0000000..e357c6e --- /dev/null +++ b/lang/vendor/filament-actions/he/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'הסרת קישור', + + 'modal' => [ + + 'heading' => 'הסר קישור של :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'הסר קישור', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'קישור הוסר', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'הסר קישור של נבחרים', + + 'modal' => [ + + 'heading' => 'הסר קישור נבחרים של :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'הסר קישור', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'קישורים הוסרו', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/he/dissociate.php b/lang/vendor/filament-actions/he/dissociate.php new file mode 100644 index 0000000..5ad6a0e --- /dev/null +++ b/lang/vendor/filament-actions/he/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'הסרת שיוך', + + 'modal' => [ + + 'heading' => 'הסר שיוך של :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'הסר שיוך', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'שיוך הוסר', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'הסר שיוך של נבחרים', + + 'modal' => [ + + 'heading' => 'הסר שיוך נבחרים של :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'הסר שיוך', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'שיוך הוסר', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/he/edit.php b/lang/vendor/filament-actions/he/edit.php new file mode 100644 index 0000000..81fafc5 --- /dev/null +++ b/lang/vendor/filament-actions/he/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'עריכה', + + 'modal' => [ + + 'heading' => 'עריכת :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'שמור שינויים', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'נשמר', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/he/export.php b/lang/vendor/filament-actions/he/export.php new file mode 100644 index 0000000..ba20785 --- /dev/null +++ b/lang/vendor/filament-actions/he/export.php @@ -0,0 +1,77 @@ + 'ייצוא :label', + + 'modal' => [ + + 'heading' => 'ייצוא :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'עמודות', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column מופעל', + ], + + 'label' => [ + 'label' => ':column שם', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'ייצא', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'ייצוא הושלם', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'הורדת קובץ .csv', + ], + + 'download_xlsx' => [ + 'label' => 'הורדת קובץ .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'ייצוא גדול מידי', + 'body' => 'You may not export more than 1 row at once.|You may not export more than :count rows at once.', + ], + + 'started' => [ + 'title' => 'ייצוא התחיל', + 'body' => 'פעולת הייצוא התחילה, שורה אחת תעובד ברקע. תוצג התראה כאשר קישור ההורדה יהיה מוכן.|פעולת הייצוא התחילה, :count שורות יעובדו ברקע. תוצג התראה כאשר קישור ההורדה יהיה מוכן.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/he/force-delete.php b/lang/vendor/filament-actions/he/force-delete.php new file mode 100644 index 0000000..0db5c6f --- /dev/null +++ b/lang/vendor/filament-actions/he/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'מחיקה לתמיד', + + 'modal' => [ + + 'heading' => 'מחק לתמיד את :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'מחק', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'נמחק', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'נבחרו למחיקה לתמיד', + + 'modal' => [ + + 'heading' => 'נבחרו עבור מחיקה לתיד :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'מחק', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'נמחק', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/he/group.php b/lang/vendor/filament-actions/he/group.php new file mode 100644 index 0000000..1c9220e --- /dev/null +++ b/lang/vendor/filament-actions/he/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'פעולות', + ], + +]; diff --git a/lang/vendor/filament-actions/he/import.php b/lang/vendor/filament-actions/he/import.php new file mode 100644 index 0000000..79605c3 --- /dev/null +++ b/lang/vendor/filament-actions/he/import.php @@ -0,0 +1,85 @@ + 'ייבוא :label', + + 'modal' => [ + + 'heading' => 'ייבוא :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'קובץ', + + 'placeholder' => 'העלה קובץ CSV', + + 'rules' => [ + 'duplicate_columns' => '{0} The file must not contain more than one empty column header.|{1,*} The file must not contain duplicate column headers: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'עמודות', + 'placeholder' => 'בחר עמודה', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'הורד קובץ CSV לדוגמה', + ], + + 'import' => [ + 'label' => 'ייבא', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'ייבוא הושלם', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'הורד מידע על השורה שנכשלה|הורד מידע על השורות שנכשלו', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'קובץ ה CSV שהועלה גדול מידי', + 'body' => 'אין לייבא יותר משורה אחת בבת אחת.|אין לייבא יותר מ :count שורות בבת אחת.', + ], + + 'started' => [ + 'title' => 'ייבוא התחיל', + 'body' => 'הייבוא התחיל והעיבוד של שורה אחת יתבצע ברקע.|הייבוא התחיל והעיבוד של :count שורות יתבצע ברקע.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'שגיאה', + 'system_error' => 'שגיאה מערכת, נא צור קשר עם התמיכה.', + 'column_mapping_required_for_new_record' => 'העמודה :attribute לא מופתה לעמודה בקובץ, אך היא נדרשת ליצירת רשומות חדשות.', + ], + +]; diff --git a/lang/vendor/filament-actions/he/modal.php b/lang/vendor/filament-actions/he/modal.php new file mode 100644 index 0000000..51d322f --- /dev/null +++ b/lang/vendor/filament-actions/he/modal.php @@ -0,0 +1,23 @@ + 'האם אתה בטוח?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'ביטול', + ], + + 'confirm' => [ + 'label' => 'אישור', + ], + + 'submit' => [ + 'label' => 'שלח', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/he/notifications.php b/lang/vendor/filament-actions/he/notifications.php new file mode 100644 index 0000000..e87d564 --- /dev/null +++ b/lang/vendor/filament-actions/he/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'יותר מדי ניסיונות', + 'body' => 'אנא נסה שוב בעוד :seconds שניות.', + ], + +]; diff --git a/lang/vendor/filament-actions/he/replicate.php b/lang/vendor/filament-actions/he/replicate.php new file mode 100644 index 0000000..51b9e5e --- /dev/null +++ b/lang/vendor/filament-actions/he/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'שכפול', + + 'modal' => [ + + 'heading' => 'שכפול :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'שכפל', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'שוכפל', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/he/restore.php b/lang/vendor/filament-actions/he/restore.php new file mode 100644 index 0000000..5d9dbaf --- /dev/null +++ b/lang/vendor/filament-actions/he/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'שחזור', + + 'modal' => [ + + 'heading' => 'שחזור :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'שחזור', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'שוחזר', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'שחזר את הנבחרים', + + 'modal' => [ + + 'heading' => 'שוחזרו הנבחרים מ :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'שחזר', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'שוחזר', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/he/view.php b/lang/vendor/filament-actions/he/view.php new file mode 100644 index 0000000..0b5346a --- /dev/null +++ b/lang/vendor/filament-actions/he/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'תצוגה', + + 'modal' => [ + + 'heading' => 'מציג :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'סגור', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hi/attach.php b/lang/vendor/filament-actions/hi/attach.php new file mode 100644 index 0000000..b5d30d2 --- /dev/null +++ b/lang/vendor/filament-actions/hi/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'जोड़े', + + 'modal' => [ + + 'heading' => ':label जोड़े', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'रिकार्ड्स', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'जोड़े', + ], + + 'attach_another' => [ + 'label' => 'इसे जोड़े और एक और जोड़े', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'जुड़ गया', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hi/create.php b/lang/vendor/filament-actions/hi/create.php new file mode 100644 index 0000000..45376a1 --- /dev/null +++ b/lang/vendor/filament-actions/hi/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'बनाएँ', + + 'modal' => [ + + 'heading' => ':label बनाएँ', + + 'actions' => [ + + 'create' => [ + 'label' => 'बनाएँ', + ], + + 'create_another' => [ + 'label' => 'बनाएँ और एक और एक और बनाएँ', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'बन गया', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hi/delete.php b/lang/vendor/filament-actions/hi/delete.php new file mode 100644 index 0000000..316ef93 --- /dev/null +++ b/lang/vendor/filament-actions/hi/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'हटाएँ', + + 'modal' => [ + + 'heading' => ':label हटाएँ', + + 'actions' => [ + + 'delete' => [ + 'label' => 'हटाएँ', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'हटा दिया', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'चयनित हटाएँ', + + 'modal' => [ + + 'heading' => 'चयनित :label हटाएँ', + + 'actions' => [ + + 'delete' => [ + 'label' => 'चयनित हटाएँ', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'हटा दिया', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hi/detach.php b/lang/vendor/filament-actions/hi/detach.php new file mode 100644 index 0000000..cdbff24 --- /dev/null +++ b/lang/vendor/filament-actions/hi/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'अलग करें', + + 'modal' => [ + + 'heading' => ':label अलग करें', + + 'actions' => [ + + 'detach' => [ + 'label' => 'अलग करें', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'अलग हो गया', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'चयनित अलग करे', + + 'modal' => [ + + 'heading' => 'चयनित :label अलग करे', + + 'actions' => [ + + 'detach' => [ + 'label' => 'चयनित अलग करे', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'अलग हो गए', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hi/edit.php b/lang/vendor/filament-actions/hi/edit.php new file mode 100644 index 0000000..0e78a7e --- /dev/null +++ b/lang/vendor/filament-actions/hi/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'संपादन', + + 'modal' => [ + + 'heading' => ':label संपादित करें', + + 'actions' => [ + + 'save' => [ + 'label' => 'सेव', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'सेव हो गया', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hi/modal.php b/lang/vendor/filament-actions/hi/modal.php new file mode 100644 index 0000000..85d37c9 --- /dev/null +++ b/lang/vendor/filament-actions/hi/modal.php @@ -0,0 +1,23 @@ + 'क्या आप वाकई ऐसा करना चाहेंगे?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'रद्द करें', + ], + + 'confirm' => [ + 'label' => 'पुष्टि करें', + ], + + 'submit' => [ + 'label' => 'सबमिट', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hr/associate.php b/lang/vendor/filament-actions/hr/associate.php new file mode 100644 index 0000000..f76fd05 --- /dev/null +++ b/lang/vendor/filament-actions/hr/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Poveži', + + 'modal' => [ + + 'heading' => 'Poveži :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Zapis', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Poveži', + ], + + 'associate_another' => [ + 'label' => 'Poveži i poveži drugi', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Povezano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hr/attach.php b/lang/vendor/filament-actions/hr/attach.php new file mode 100644 index 0000000..4b78b5d --- /dev/null +++ b/lang/vendor/filament-actions/hr/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Priloži', + + 'modal' => [ + + 'heading' => 'Priloži :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Zapis', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Priloži', + ], + + 'attach_another' => [ + 'label' => 'Priloži i dodaj još jedan', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Priloženo', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hr/create.php b/lang/vendor/filament-actions/hr/create.php new file mode 100644 index 0000000..4b37dad --- /dev/null +++ b/lang/vendor/filament-actions/hr/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Dodaj :label', + + 'modal' => [ + + 'heading' => 'Napravi :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Napravi', + ], + + 'create_another' => [ + 'label' => 'Napravi i dodaj još jedan', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Napravljeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hr/delete.php b/lang/vendor/filament-actions/hr/delete.php new file mode 100644 index 0000000..e2eb74c --- /dev/null +++ b/lang/vendor/filament-actions/hr/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Obriši', + + 'modal' => [ + + 'heading' => 'Obriši :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Obriši', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Obrisano', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Obriši odabrano', + + 'modal' => [ + + 'heading' => 'Obriši odabrano', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Obriši', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Obrisano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hr/detach.php b/lang/vendor/filament-actions/hr/detach.php new file mode 100644 index 0000000..6d5cc8c --- /dev/null +++ b/lang/vendor/filament-actions/hr/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Odvoji', + + 'modal' => [ + + 'heading' => 'Odvoji :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odvoji', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Odvojeno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Odvoji odabrano', + + 'modal' => [ + + 'heading' => 'Odvoji odabrano :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odvoji', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Odvojeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hr/dissociate.php b/lang/vendor/filament-actions/hr/dissociate.php new file mode 100644 index 0000000..f47a7e3 --- /dev/null +++ b/lang/vendor/filament-actions/hr/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Razdvoji', + + 'modal' => [ + + 'heading' => 'Razdvoji :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Razdvoji', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Razdvojeno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Dissociate selected', + + 'modal' => [ + + 'heading' => 'Razdvoji odabrano :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Razdvoji', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Razdvojeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hr/edit.php b/lang/vendor/filament-actions/hr/edit.php new file mode 100644 index 0000000..b72699f --- /dev/null +++ b/lang/vendor/filament-actions/hr/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Uredi', + + 'modal' => [ + + 'heading' => 'Uredi :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Spremi promjene', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Spremljeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hr/export.php b/lang/vendor/filament-actions/hr/export.php new file mode 100644 index 0000000..3b8534d --- /dev/null +++ b/lang/vendor/filament-actions/hr/export.php @@ -0,0 +1,76 @@ + 'Izvezi :label', + + 'modal' => [ + + 'heading' => 'Izvezi :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Stupci', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column je omogućen', + ], + + 'label' => [ + 'label' => ':column oznaka', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Izvoz', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Izvoz podataka završen', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Preuzmi .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Preuzmi .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Datoteka za preuzimanje je prevelika', + 'body' => '{1} Ne možeš preuzeti više od jednog reda odjednom.|[2,4] Ne možeš preuzeti više od :count reda odjednom.|[5,*] Ne možeš preuzeti više od :count redova odjednom.', + ], + + 'started' => [ + 'title' => 'Izvoz datoteka je započeo', + 'body' => '{1} Tvoj izvoz datoteka je započeo i jedan red će se obraditi u pozadini. Dobit ćeš obavijest kada je izrađena poveznica za preuzimanje.|[2,4] Tvoj izvoz datoteka je započeo i :count reda će se obraditi u pozadini. Dobit ćeš obavijest kada je izrađena poveznica za preuzimanje.|[5,*] Tvoj izvoz datoteka je započeo i :count redova će se obraditi u pozadini. Dobit ćeš obavijest kada je izrađena poveznica za preuzimanje.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/hr/force-delete.php b/lang/vendor/filament-actions/hr/force-delete.php new file mode 100644 index 0000000..d9cbf2d --- /dev/null +++ b/lang/vendor/filament-actions/hr/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Prisilno obriši', + + 'modal' => [ + + 'heading' => 'Prisilno obriši :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Obriši', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Obrisano', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Prisilno obriši odabrano', + + 'modal' => [ + + 'heading' => 'Prisilno obriši odabrano', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Obriši', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Obrisano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hr/group.php b/lang/vendor/filament-actions/hr/group.php new file mode 100644 index 0000000..edd7ebb --- /dev/null +++ b/lang/vendor/filament-actions/hr/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Akcije', + ], + +]; diff --git a/lang/vendor/filament-actions/hr/import.php b/lang/vendor/filament-actions/hr/import.php new file mode 100644 index 0000000..94a63d9 --- /dev/null +++ b/lang/vendor/filament-actions/hr/import.php @@ -0,0 +1,84 @@ + 'Uvezi :label', + + 'modal' => [ + + 'heading' => 'Uvezi :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'File', + + 'placeholder' => 'Prenesi CSV datoteku', + // Ovdje nisam bio siguran je li moramo i to pravilo prevesti + 'rules' => [ + 'duplicate_columns' => '{0} The file must not contain more than one empty column header.|{1,*} The file must not contain duplicate column headers: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Stupac', + 'placeholder' => 'Odaberi stupac', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Preuzmi primjer CSV datoteke', + ], + + 'import' => [ + 'label' => 'Uvoz', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Uvoz je završen', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Preuzmi informaciju o neuspjelom pokušaju preuzimanja retka|Preuzmi informaciju o neuspjelom pokušaju preuzimanja redaka', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Poslana CSV datoteka je prevelika', + 'body' => '{1} Ne možeš uvesti više od jednog reda odjednom.|[2,4] Ne možeš uvesti više od :count reda odjednom.|[5,*] Ne možeš uvesti više od :count redova odjednom.', + ], + + 'started' => [ + 'title' => 'Uvoz je započeo', + 'body' => '{1} Uvoz je započeo i jedan red će se obraditi u pozadini.|[2,4] Uvoz je započeo i :count reda će se obraditi u pozadini.|[5,*] Uvoz je započeo i :count redova će se obraditi u pozadini.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'error', + 'system_error' => 'System error, please contact support.', + 'column_mapping_required_for_new_record' => 'The :attribute column was not mapped to a column in the file, but it is required for creating new records.', + ], + +]; diff --git a/lang/vendor/filament-actions/hr/modal.php b/lang/vendor/filament-actions/hr/modal.php new file mode 100644 index 0000000..80e22dc --- /dev/null +++ b/lang/vendor/filament-actions/hr/modal.php @@ -0,0 +1,23 @@ + 'Jesi li siguran da želiš to učiniti?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Odustani', + ], + + 'confirm' => [ + 'label' => 'Potvrdi', + ], + + 'submit' => [ + 'label' => 'Pošalji', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hr/replicate.php b/lang/vendor/filament-actions/hr/replicate.php new file mode 100644 index 0000000..fa937b7 --- /dev/null +++ b/lang/vendor/filament-actions/hr/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Repliciraj', + + 'modal' => [ + + 'heading' => 'Repliciraj :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Repliciraj', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Replicirano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hr/restore.php b/lang/vendor/filament-actions/hr/restore.php new file mode 100644 index 0000000..ef23b7c --- /dev/null +++ b/lang/vendor/filament-actions/hr/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Vrati', + + 'modal' => [ + + 'heading' => 'Vrati :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Vrati', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Vraćeno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Vrati odabrano', + + 'modal' => [ + + 'heading' => 'Vrati odabrano :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Vrati', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Vraćeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hr/view.php b/lang/vendor/filament-actions/hr/view.php new file mode 100644 index 0000000..ac7b78f --- /dev/null +++ b/lang/vendor/filament-actions/hr/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Pregledaj', + + 'modal' => [ + + 'heading' => 'Pregled :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Zatvori', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hu/associate.php b/lang/vendor/filament-actions/hu/associate.php new file mode 100644 index 0000000..f4f0d74 --- /dev/null +++ b/lang/vendor/filament-actions/hu/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Társítás', + + 'modal' => [ + + 'heading' => ':label társítása', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Elemek', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Társítás', + ], + + 'associate_another' => [ + 'label' => 'Mentés és új társítása', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Társítva', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hu/attach.php b/lang/vendor/filament-actions/hu/attach.php new file mode 100644 index 0000000..13e620b --- /dev/null +++ b/lang/vendor/filament-actions/hu/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Csatolás', + + 'modal' => [ + + 'heading' => ':label csatolása', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Elemek', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Csatolás', + ], + + 'attach_another' => [ + 'label' => 'Mentés és új csatolása', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Csatolva', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hu/create.php b/lang/vendor/filament-actions/hu/create.php new file mode 100644 index 0000000..f761e3f --- /dev/null +++ b/lang/vendor/filament-actions/hu/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Új :label', + + 'modal' => [ + + 'heading' => 'Új :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Létrehozás', + ], + + 'create_another' => [ + 'label' => 'Mentés és új létrehozása', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Létrehozva', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hu/delete.php b/lang/vendor/filament-actions/hu/delete.php new file mode 100644 index 0000000..c608389 --- /dev/null +++ b/lang/vendor/filament-actions/hu/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Törlés', + + 'modal' => [ + + 'heading' => ':label törlése', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Törlés', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Törölve', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Kijelöltek törlése', + + 'modal' => [ + + 'heading' => 'Kijelölt :label törlése', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Törlés', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Törölve', + ], + + 'deleted_partial' => [ + 'title' => ':count elem törölve a :total-ból', + 'missing_authorization_failure_message' => 'Nincs jogosultságod :count elem törléséhez.', + 'missing_processing_failure_message' => ':count elem nem törölhető.', + ], + + 'deleted_none' => [ + 'title' => 'Törlés sikertelen', + 'missing_authorization_failure_message' => 'Nincs jogosultságod :count elem törléséhez.', + 'missing_processing_failure_message' => ':count elem nem törölhető.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hu/detach.php b/lang/vendor/filament-actions/hu/detach.php new file mode 100644 index 0000000..aeb13b5 --- /dev/null +++ b/lang/vendor/filament-actions/hu/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Leválasztás', + + 'modal' => [ + + 'heading' => ':label leválasztása', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Leválasztás', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Leválasztva', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Kijelöltek leválasztása', + + 'modal' => [ + + 'heading' => 'Kijelölt :label leválasztása', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Kijelöltek leválasztása', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Leválasztva', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hu/dissociate.php b/lang/vendor/filament-actions/hu/dissociate.php new file mode 100644 index 0000000..af17eb2 --- /dev/null +++ b/lang/vendor/filament-actions/hu/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Lecsatolás', + + 'modal' => [ + + 'heading' => ':label lecsatolása', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Lecsatolás', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Lecsatolva', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Kijelöltek lecsatolása', + + 'modal' => [ + + 'heading' => 'Kijelölt :label lecsatolása', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Kijelöltek lecsatolása', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Lecsatolva', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hu/edit.php b/lang/vendor/filament-actions/hu/edit.php new file mode 100644 index 0000000..6b47c59 --- /dev/null +++ b/lang/vendor/filament-actions/hu/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Szerkesztés', + + 'modal' => [ + + 'heading' => ':label szerkesztése', + + 'actions' => [ + + 'save' => [ + 'label' => 'Mentés', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Mentve', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hu/export.php b/lang/vendor/filament-actions/hu/export.php new file mode 100644 index 0000000..2e2e8c7 --- /dev/null +++ b/lang/vendor/filament-actions/hu/export.php @@ -0,0 +1,77 @@ + ':label exportálása', + + 'modal' => [ + + 'heading' => ':label exportálása', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Oszlopok', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column bekapcsolva', + ], + + 'label' => [ + 'label' => ':column fejléc', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Exportálás', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Az exportálás befejeződött', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'CSV letöltése', + ], + + 'download_xlsx' => [ + 'label' => 'XLSX letöltése', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Túl sok exportálandó sor', + 'body' => 'Nem exportálhatsz több mint 1 sort egyszerre.|Nem exportálhatsz több mint :count sor egyszerre.', + ], + + 'started' => [ + 'title' => 'Az exportálás elkezdődött', + 'body' => 'Elkezdődött 1 sor exportálása a háttérben. Ha elkészült, akkor a letöltési hivatkozás egy új értesítésben fog megjelenni.|Elkezdődött :count sor exportálása a háttérben. Ha elkészült, akkor a letöltési hivatkozás egy új értesítésben fog megjelenni.', + ], + + ], + + 'file_name' => 'exportálás-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/hu/force-delete.php b/lang/vendor/filament-actions/hu/force-delete.php new file mode 100644 index 0000000..30a7a68 --- /dev/null +++ b/lang/vendor/filament-actions/hu/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Végleges törlés', + + 'modal' => [ + + 'heading' => ':label végleges törlése', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Törlés', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Törölve', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Kijelöltek végleges törlése', + + 'modal' => [ + + 'heading' => 'Kijelölt :label végleges törlése', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Törlés', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Törölve', + ], + + 'deleted_partial' => [ + 'title' => ':count elem törölve a :total-ból', + 'missing_authorization_failure_message' => 'Nincs jogosultságod :count elem törléséhez.', + 'missing_processing_failure_message' => ':count elem törlése nem sikerült.', + ], + + 'deleted_none' => [ + 'title' => 'Törlés sikertelen', + 'missing_authorization_failure_message' => 'Nincs jogosultságod :count elem törléséhez.', + 'missing_processing_failure_message' => ':count elem törlése nem sikerült.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hu/group.php b/lang/vendor/filament-actions/hu/group.php new file mode 100644 index 0000000..c756cfb --- /dev/null +++ b/lang/vendor/filament-actions/hu/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Műveletek', + ], + +]; diff --git a/lang/vendor/filament-actions/hu/import.php b/lang/vendor/filament-actions/hu/import.php new file mode 100644 index 0000000..d59c5c6 --- /dev/null +++ b/lang/vendor/filament-actions/hu/import.php @@ -0,0 +1,81 @@ + ':label importálása', + + 'modal' => [ + + 'heading' => ':label importálása', + + 'form' => [ + + 'file' => [ + 'label' => 'Fájl', + 'placeholder' => 'Tölts fel egy CSV fájlt', + 'rules' => [ + 'duplicate_columns' => '{0} A fájl nem tartalmazhat egynél több üres oszlopfejlécet.|{1,*} A fájl nem tartalmazhat ismétlődő oszlopfejléceket: :columns.', + ], + ], + + 'columns' => [ + 'label' => 'Oszlopok', + 'placeholder' => 'Válassz egy oszlopot', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Minta CSV fájl letöltése', + ], + + 'import' => [ + 'label' => 'Importálás', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Importálás befejezve', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Információ letöltése a sikertelenül importált sorról|Információ letöltése a sikertelenül importált sorokról', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'A feltöltött CSV fájl túl nagy', + 'body' => 'Egyszerre nem importálhatsz több mint :count sort.|Egyszerre nem importálhatsz több mint :count sort.', + ], + + 'started' => [ + 'title' => 'Importálás elkezdve', + 'body' => 'A fájl importálása elkezdődött és :count sor feldolgozása jelenleg is zajlik a háttérben.|A fájl importálása elkezdődött és :count sor feldolgozása jelenleg is zajlik a háttérben.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-minta', + ], + + 'failure_csv' => [ + 'file_name' => 'importálás-:import_id-:csv_name-sikertelen-sorok', + 'error_header' => 'hiba', + 'system_error' => 'Rendszerhiba, kérlek lépj kapcsolatba az ügyfélszolgálattal.', + 'column_mapping_required_for_new_record' => 'A :attribute oszlopot a fájlban lévő oszlopok egyikéhez sem sikerült hozzárendelni, így nem hozhatóak létre új rekordok.', + ], + +]; diff --git a/lang/vendor/filament-actions/hu/modal.php b/lang/vendor/filament-actions/hu/modal.php new file mode 100644 index 0000000..858ee5d --- /dev/null +++ b/lang/vendor/filament-actions/hu/modal.php @@ -0,0 +1,23 @@ + 'Biztos, hogy ezt akarod csinálni?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Mégsem', + ], + + 'confirm' => [ + 'label' => 'Megerősítés', + ], + + 'submit' => [ + 'label' => 'Beküldés', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hu/notifications.php b/lang/vendor/filament-actions/hu/notifications.php new file mode 100644 index 0000000..74f9c97 --- /dev/null +++ b/lang/vendor/filament-actions/hu/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Túl sok próbálkozás', + 'body' => 'Kérjük próbáld újra :seconds másodperc múlva.', + ], + +]; diff --git a/lang/vendor/filament-actions/hu/replicate.php b/lang/vendor/filament-actions/hu/replicate.php new file mode 100644 index 0000000..0abb036 --- /dev/null +++ b/lang/vendor/filament-actions/hu/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Duplikálás', + + 'modal' => [ + + 'heading' => ':label duplikálása', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Duplikálás', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Duplikálva', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hu/restore.php b/lang/vendor/filament-actions/hu/restore.php new file mode 100644 index 0000000..6129a8c --- /dev/null +++ b/lang/vendor/filament-actions/hu/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Visszaállítás', + + 'modal' => [ + + 'heading' => ':label visszaállítása', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Visszaállítás', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Visszaállítva', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Kijelöltek visszaállítása', + + 'modal' => [ + + 'heading' => 'Kijelölt :label visszaállítása', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Visszaállítás', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Visszaállítva', + ], + + 'restored_partial' => [ + 'title' => ':count elem visszaállítva :total-ból', + 'missing_authorization_failure_message' => 'Nincs jogosultságod :count elem visszaállítására.', + 'missing_processing_failure_message' => ':count elem nem állítható vissza.', + ], + + 'restored_none' => [ + 'title' => 'Visszaállítás sikertelen', + 'missing_authorization_failure_message' => 'Nincs jogosultságod :count elem visszaállítására.', + 'missing_processing_failure_message' => ':count elem nem állítható vissza.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hu/view.php b/lang/vendor/filament-actions/hu/view.php new file mode 100644 index 0000000..dcf0d0b --- /dev/null +++ b/lang/vendor/filament-actions/hu/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Megtekintés', + + 'modal' => [ + + 'heading' => ':label megtekintése', + + 'actions' => [ + + 'close' => [ + 'label' => 'Bezárás', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hy/associate.php b/lang/vendor/filament-actions/hy/associate.php new file mode 100644 index 0000000..40aa1cf --- /dev/null +++ b/lang/vendor/filament-actions/hy/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Ասոցացնել', + + 'modal' => [ + + 'heading' => 'Ասոցացնել :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Գրառումներ', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Ասոցացնել', + ], + + 'associate_another' => [ + 'label' => 'Ասոցացնել և ասոցացնել մեկ այլ', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Ասոցացվել է', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hy/attach.php b/lang/vendor/filament-actions/hy/attach.php new file mode 100644 index 0000000..35035be --- /dev/null +++ b/lang/vendor/filament-actions/hy/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Կցել', + + 'modal' => [ + + 'heading' => 'Կցել :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Գրառումներ', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Կցել', + ], + + 'attach_another' => [ + 'label' => 'Կցել և կցել մեկ այլ', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Կցվել է', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hy/create.php b/lang/vendor/filament-actions/hy/create.php new file mode 100644 index 0000000..97ef5e8 --- /dev/null +++ b/lang/vendor/filament-actions/hy/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Նոր :label', + + 'modal' => [ + + 'heading' => 'Ստեղծել :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Ստեղծել', + ], + + 'create_another' => [ + 'label' => 'Ստեղծել և ստեղծել մեկ այլ', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Ստեղծվել է', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hy/delete.php b/lang/vendor/filament-actions/hy/delete.php new file mode 100644 index 0000000..7e7f88c --- /dev/null +++ b/lang/vendor/filament-actions/hy/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Ջնջել', + + 'modal' => [ + + 'heading' => 'Ջնջել :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ջնջել', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Ջնջված է', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Ջնջել ընտրածը', + + 'modal' => [ + + 'heading' => 'Ջնջել ընտրած :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ջնջել', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Ջնջված է', + ], + + 'deleted_partial' => [ + 'title' => 'Ջնջվեց :count-ը ընդհանուր :total-ից', + 'missing_authorization_failure_message' => 'Դուք իրավունք չունեք ջնջելու :count-ը։', + 'missing_processing_failure_message' => ':count-ը հնարավոր չէր ջնջել։', + ], + + 'deleted_none' => [ + 'title' => 'Չհաջողվեց ջնջել', + 'missing_authorization_failure_message' => 'Դուք իրավունք չունեք ջնջելու :count-ը։', + 'missing_processing_failure_message' => ':count-ը հնարավոր չէր ջնջել։', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hy/detach.php b/lang/vendor/filament-actions/hy/detach.php new file mode 100644 index 0000000..8ca189c --- /dev/null +++ b/lang/vendor/filament-actions/hy/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Անջատել', + + 'modal' => [ + + 'heading' => 'Անջատել :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Անջատել', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Անջատվել է', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Անջատել ընտրվածը', + + 'modal' => [ + + 'heading' => 'Անջատել ընտրված :labelը', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Անջատել ընտրվածը', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Անջատվել է', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hy/dissociate.php b/lang/vendor/filament-actions/hy/dissociate.php new file mode 100644 index 0000000..ea22f26 --- /dev/null +++ b/lang/vendor/filament-actions/hy/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Տարանջատել', + + 'modal' => [ + + 'heading' => 'Տարանջատել :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Տարանջատել', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Տարանջատվել է', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Տարանջատել ընտրվածը', + + 'modal' => [ + + 'heading' => 'Տարանջատել ընտրված :labelը', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Տարանջատել ընտրվածը', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Տարանջատվել է', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hy/edit.php b/lang/vendor/filament-actions/hy/edit.php new file mode 100644 index 0000000..4453f1a --- /dev/null +++ b/lang/vendor/filament-actions/hy/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Խմբագրել', + + 'modal' => [ + + 'heading' => 'Խմբագրել :labelը', + + 'actions' => [ + + 'save' => [ + 'label' => 'Պահպանել', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Պահպանվել է', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hy/export.php b/lang/vendor/filament-actions/hy/export.php new file mode 100644 index 0000000..f47e8ae --- /dev/null +++ b/lang/vendor/filament-actions/hy/export.php @@ -0,0 +1,77 @@ + 'Արտահանել :label', + + 'modal' => [ + + 'heading' => 'Արտահանել :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Սյունակներ', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column միացված է', + ], + + 'label' => [ + 'label' => ':column պիտակ', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Արտահանել', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Արտահանումն ավարտված է', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Ներբեռնել .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Ներբեռնել .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Արտահանումը չափազանց մեծ է', + 'body' => 'Դուք չեք կարող միաժամանակ արտահանել ավելի քան 1 տող։|Դուք չեք կարող միաժամանակ արտահանել ավելի քան :count տող։', + ], + + 'started' => [ + 'title' => 'Արտահանումը սկսվել է', + 'body' => 'Ձեր արտահանումը սկսվել է, և 1 տողը կմշակվի հետին պլանում։ Ավարտվելուց հետո դուք կստանաք ծանուցում ներբեռնման հղումով։|Ձեր արտահանումը սկսվել է, և :count տողը կմշակվի հետին պլանում։ Ավարտվելուց հետո դուք կստանաք ծանուցում ներբեռնման հղումով։', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/hy/force-delete.php b/lang/vendor/filament-actions/hy/force-delete.php new file mode 100644 index 0000000..c6d4587 --- /dev/null +++ b/lang/vendor/filament-actions/hy/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Սպառիչ ջնջում', + + 'modal' => [ + + 'heading' => 'Սպառիչ ջնջում :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ջնջել', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Ջնջված է', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Սպառիչ ջնջել ընտրածը', + + 'modal' => [ + + 'heading' => 'Սպառիչ ջնջել ընտրած :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ջնջել', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Ջնջված է', + ], + + 'deleted_partial' => [ + 'title' => 'Ջնջվեց :count-ը ընդհանուր :total-ից', + 'missing_authorization_failure_message' => 'Դուք իրավունք չունեք ջնջելու :count-ը։', + 'missing_processing_failure_message' => ':count-ը հնարավոր չէր ջնջել։', + ], + + 'deleted_none' => [ + 'title' => 'Չհաջողվեց ջնջել', + 'missing_authorization_failure_message' => 'Դուք իրավունք չունեք ջնջելու :count-ը։', + 'missing_processing_failure_message' => ':count-ը հնարավոր չէր ջնջել։', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hy/group.php b/lang/vendor/filament-actions/hy/group.php new file mode 100644 index 0000000..0b1c373 --- /dev/null +++ b/lang/vendor/filament-actions/hy/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Գործողություններ', + ], + +]; diff --git a/lang/vendor/filament-actions/hy/import.php b/lang/vendor/filament-actions/hy/import.php new file mode 100644 index 0000000..2287fc7 --- /dev/null +++ b/lang/vendor/filament-actions/hy/import.php @@ -0,0 +1,85 @@ + 'Ներմուծել :label', + + 'modal' => [ + + 'heading' => 'Ներմուծել :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Ֆայլ', + + 'placeholder' => 'Վերբեռնել CSV ֆայլը', + + 'rules' => [ + 'duplicate_columns' => '{0} ֆայլը չպետք է պարունակի մեկից ավելի դատարկ սյունակի վերնագիր։ |{1,*} ֆայլը չպետք է պարունակի կրկնօրինակ սյունակի :columns վերնագրեր։', + ], + + ], + + 'columns' => [ + 'label' => 'Սյունակներ', + 'placeholder' => 'Ընտրեք սյունակը', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Ներբեռնել CSV ֆայլի օրինակ', + ], + + 'import' => [ + 'label' => 'Ներմուծել', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Ներմուծումն ավարտված է', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Ներբեռնել սխալ տողի տեղեկատվությունը|Ներբեռնել սխալ տողերի տեղեկատվությունը', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Ներբեռնված CSV ֆայլը չափազանց մեծ է', + 'body' => 'Դուք չեք կարող միաժամանակ ներմուծել ավելի քան 1 տող։/ Դուք չեք կարող միաժամանակ ներմուծել ավելի քան :count տող։', + ], + + 'started' => [ + 'title' => 'Ներմուծումը սկսվել է', + 'body' => 'Ձեր ներմուծումը սկսվել է, և 1 տողը կմշակվի հետին պլանում։|Ձեր ներմուծումը սկսվել է, և :count տող կվերամշակվեն հետին պլանում։', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'սխալ', + 'system_error' => 'Համակարգի սխալ, խնդրում ենք կապվել սպասարկման կենտրոնի հետ։', + 'column_mapping_required_for_new_record' => 'Այս :attribute սյունակը համատեղված չէ ֆայլի սյունակում, բայց պահանջվում է նոր գրառումներ ստեղծելու համար։', + ], + +]; diff --git a/lang/vendor/filament-actions/hy/modal.php b/lang/vendor/filament-actions/hy/modal.php new file mode 100644 index 0000000..d06e715 --- /dev/null +++ b/lang/vendor/filament-actions/hy/modal.php @@ -0,0 +1,23 @@ + 'Վստա՞հ եք, որ ցանկանում եք դա անել։', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Չեղարկել', + ], + + 'confirm' => [ + 'label' => 'Հաստատել', + ], + + 'submit' => [ + 'label' => 'Հաստատել', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hy/notifications.php b/lang/vendor/filament-actions/hy/notifications.php new file mode 100644 index 0000000..2203d5e --- /dev/null +++ b/lang/vendor/filament-actions/hy/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Չափազանց շատ փորձեր', + 'body' => 'Խնդրում ենք կրկին փորձել :seconds վայրկյան հետո։', + ], + +]; diff --git a/lang/vendor/filament-actions/hy/replicate.php b/lang/vendor/filament-actions/hy/replicate.php new file mode 100644 index 0000000..687f853 --- /dev/null +++ b/lang/vendor/filament-actions/hy/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Կրկնօրինակել', + + 'modal' => [ + + 'heading' => 'Կրկնօրինակել :labelը', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Կրկնօրինակել', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Գրառումը կրկնօրինակվել է', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hy/restore.php b/lang/vendor/filament-actions/hy/restore.php new file mode 100644 index 0000000..481ed79 --- /dev/null +++ b/lang/vendor/filament-actions/hy/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Վերականգնել', + + 'modal' => [ + + 'heading' => 'Վերականգնել :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Վերականգնել', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Վերականգնված է', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Վերականգնել ընտրածը', + + 'modal' => [ + + 'heading' => 'Վերականգնել ընտրած :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Վերականգնել', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Վերականգնված է', + ], + + 'restored_partial' => [ + 'title' => 'Վերականգնվեց :count-ը ընդհանուր :total-ից', + 'missing_authorization_failure_message' => 'Դուք իրավունք չունեք վերականգնելու :count-ը։', + 'missing_processing_failure_message' => ':count-ը հնարավոր չէր վերականգնել։', + ], + + 'restored_none' => [ + 'title' => 'Չհաջողվեց վերականգնել', + 'missing_authorization_failure_message' => 'Դուք իրավունք չունեք վերականգնելու :count-ը։', + 'missing_processing_failure_message' => ':count-ը հնարավոր չէր վերականգնել։', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/hy/view.php b/lang/vendor/filament-actions/hy/view.php new file mode 100644 index 0000000..41f07df --- /dev/null +++ b/lang/vendor/filament-actions/hy/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Դիտել', + + 'modal' => [ + + 'heading' => 'Դիտել :labelը', + + 'actions' => [ + + 'close' => [ + 'label' => 'Փակել', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/id/associate.php b/lang/vendor/filament-actions/id/associate.php new file mode 100644 index 0000000..d141407 --- /dev/null +++ b/lang/vendor/filament-actions/id/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Kaitkan', + + 'modal' => [ + + 'heading' => 'Kaitkan :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Data', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Kaitkan', + ], + + 'associate_another' => [ + 'label' => 'Kaitkan & kaitkan lainnya', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Data berhasil dikaitkan', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/id/attach.php b/lang/vendor/filament-actions/id/attach.php new file mode 100644 index 0000000..5ed839a --- /dev/null +++ b/lang/vendor/filament-actions/id/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Lampirkan', + + 'modal' => [ + + 'heading' => 'Lampirkan :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Data', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Lampirkan', + ], + + 'attach_another' => [ + 'label' => 'Lampirkan & lampirkan lainnya', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Data berhasil dilampirkan', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/id/create.php b/lang/vendor/filament-actions/id/create.php new file mode 100644 index 0000000..13c0551 --- /dev/null +++ b/lang/vendor/filament-actions/id/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Buat :label', + + 'modal' => [ + + 'heading' => 'Buat :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Buat', + ], + + 'create_another' => [ + 'label' => 'Buat & buat lainnya', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Data berhasil dibuat', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/id/delete.php b/lang/vendor/filament-actions/id/delete.php new file mode 100644 index 0000000..1983826 --- /dev/null +++ b/lang/vendor/filament-actions/id/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Hapus', + + 'modal' => [ + + 'heading' => 'Hapus :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Hapus', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Data berhasil dihapus', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Hapus yang dipilih', + + 'modal' => [ + + 'heading' => 'Hapus :label yang dipilih', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Hapus', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Data berhasil dihapus', + ], + + 'deleted_partial' => [ + 'title' => 'Menghapus :count dari :total', + 'missing_authorization_failure_message' => 'Anda tidak mempunyai akses untuk menghapus :count.', + 'missing_processing_failure_message' => ':count tidak dapat dihapus.', + ], + + 'deleted_none' => [ + 'title' => 'Gagal menghapus', + 'missing_authorization_failure_message' => 'Anda tidak mempunyai akses untuk menghapus :count.', + 'missing_processing_failure_message' => ':count tidak dapat dihapus.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/id/detach.php b/lang/vendor/filament-actions/id/detach.php new file mode 100644 index 0000000..6f808eb --- /dev/null +++ b/lang/vendor/filament-actions/id/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Lepaskan lampiran', + + 'modal' => [ + + 'heading' => 'Lepaskan lampiran :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Lepaskan lampiran', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Lampiran berhasil dilepaskan', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Lepaskan lampiran yang dipilih', + + 'modal' => [ + + 'heading' => 'Lepaskan lampiran :label yang dipilih', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Lepaskan lampiran yang dipilih', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Lampiran berhasil dilepaskan', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/id/dissociate.php b/lang/vendor/filament-actions/id/dissociate.php new file mode 100644 index 0000000..21d0617 --- /dev/null +++ b/lang/vendor/filament-actions/id/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Pisahkan', + + 'modal' => [ + + 'heading' => 'Pisahkan :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Pisahkan', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Data berhasil dipisahkan', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Pisahkan yang dipilih', + + 'modal' => [ + + 'heading' => 'Pisahkan :label yang dipilih', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Pisahkan yang dipilih', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Data berhasil dipisahkan', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/id/edit.php b/lang/vendor/filament-actions/id/edit.php new file mode 100644 index 0000000..e4c7f68 --- /dev/null +++ b/lang/vendor/filament-actions/id/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Ubah', + + 'modal' => [ + + 'heading' => 'Ubah :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Simpan', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Data berhasil disimpan', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/id/export.php b/lang/vendor/filament-actions/id/export.php new file mode 100644 index 0000000..d5a6354 --- /dev/null +++ b/lang/vendor/filament-actions/id/export.php @@ -0,0 +1,77 @@ + 'Ekspor :label', + + 'modal' => [ + + 'heading' => 'Ekspor :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Kolom', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column diaktifkan', + ], + + 'label' => [ + 'label' => 'Label :column', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Ekspor', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Ekspor selesai', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Unduh .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Unduh .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Ekspor terlalu besar', + 'body' => 'Anda tidak dapat mengekspor lebih dari :count sekaligus.', + ], + + 'started' => [ + 'title' => 'Ekspor dimulai', + 'body' => 'Mulai mengekspor :count baris dan proses akan berjalan di belakang layar.', + ], + + ], + + 'file_name' => 'ekspor-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/id/force-delete.php b/lang/vendor/filament-actions/id/force-delete.php new file mode 100644 index 0000000..ecec914 --- /dev/null +++ b/lang/vendor/filament-actions/id/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Hapus selamanya', + + 'modal' => [ + + 'heading' => 'Hapus selamanya :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Hapus', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Data berhasil dihapus', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Hapus selamanya data yang dipilih', + + 'modal' => [ + + 'heading' => 'Hapus selamanya :label yang dipilih', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Hapus', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Data berhasil dihapus', + ], + + 'deleted_partial' => [ + 'title' => 'Menghapus :count dari :total', + 'missing_authorization_failure_message' => 'Anda tidak mempunyai akses untuk menghapus :count.', + 'missing_processing_failure_message' => ':count tidak dapat dihapus.', + ], + + 'deleted_none' => [ + 'title' => 'Gagal menghapus', + 'missing_authorization_failure_message' => 'Anda tidak mempunyai akses untuk menghapus :count.', + 'missing_processing_failure_message' => ':count tidak dapat dihapus.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/id/group.php b/lang/vendor/filament-actions/id/group.php new file mode 100644 index 0000000..22824e9 --- /dev/null +++ b/lang/vendor/filament-actions/id/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Tindakan', + ], + +]; diff --git a/lang/vendor/filament-actions/id/import.php b/lang/vendor/filament-actions/id/import.php new file mode 100644 index 0000000..ef3dd4e --- /dev/null +++ b/lang/vendor/filament-actions/id/import.php @@ -0,0 +1,85 @@ + 'Impor :label', + + 'modal' => [ + + 'heading' => 'Impor :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Berkas', + + 'placeholder' => 'Unggah berkas CSV', + + 'rules' => [ + 'duplicate_columns' => '{0} Berkas tidak boleh memiliki lebih dari satu kolom header yang kosong.|{1,*} Berkas tidak boleh memiliki kolom header yang duplikat: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Kolom', + 'placeholder' => 'Pilih kolom', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Unduh contoh berkas CSV', + ], + + 'import' => [ + 'label' => 'Impor', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Impor selesai', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Unduh informasi baris yang gagal diimpor', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Ukuran berkas CSV terlalu besar', + 'body' => 'Anda tidak dapat mengimpor lebih dari :count baris sekaligus.', + ], + + 'started' => [ + 'title' => 'Impor dimulai', + 'body' => 'Mulai mengimpor :count baris dan proses akan berjalan di belakang layar.', + ], + + ], + + 'example_csv' => [ + 'file_name' => 'contoh-:importer', + ], + + 'failure_csv' => [ + 'file_name' => 'impor-:import_id-:csv_name-gagal', + 'error_header' => 'kesalahan', + 'system_error' => 'Terjadi kesalahan sistem, harap hubungi tim support.', + 'column_mapping_required_for_new_record' => 'Kolom :attribute tidak dipetakan ke kolom dalam berkas, tetapi diperlukan untuk membuat data baru.', + ], + +]; diff --git a/lang/vendor/filament-actions/id/modal.php b/lang/vendor/filament-actions/id/modal.php new file mode 100644 index 0000000..ef67b2b --- /dev/null +++ b/lang/vendor/filament-actions/id/modal.php @@ -0,0 +1,23 @@ + 'Apakah Anda yakin ingin melakukan ini?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Batal', + ], + + 'confirm' => [ + 'label' => 'Konfirmasi', + ], + + 'submit' => [ + 'label' => 'Kirim', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/id/notifications.php b/lang/vendor/filament-actions/id/notifications.php new file mode 100644 index 0000000..adfe4bb --- /dev/null +++ b/lang/vendor/filament-actions/id/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Terlalu banyak permintaan', + 'body' => 'Silakan coba lagi dalam :seconds detik.', + ], + +]; diff --git a/lang/vendor/filament-actions/id/replicate.php b/lang/vendor/filament-actions/id/replicate.php new file mode 100644 index 0000000..00bec60 --- /dev/null +++ b/lang/vendor/filament-actions/id/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Duplikat data', + + 'modal' => [ + + 'heading' => 'Duplikat :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Duplikat data', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Data berhasil diduplikat', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/id/restore.php b/lang/vendor/filament-actions/id/restore.php new file mode 100644 index 0000000..4bd9bca --- /dev/null +++ b/lang/vendor/filament-actions/id/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Pulihkan data', + + 'modal' => [ + + 'heading' => 'Pulihkan :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Pulihkan', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Data berhasil dipulihkan', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Pulihkan data yang dipilih', + + 'modal' => [ + + 'heading' => 'Pulihkan :label yang dipilih', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Pulihkan', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Data berhasil dipulihkan', + ], + + 'restored_partial' => [ + 'title' => 'Pulihkan :count dari :total', + 'missing_authorization_failure_message' => 'Anda tidak punya akses untuk memulihkan :count.', + 'missing_processing_failure_message' => ':count tidak dapat dipulihkan.', + ], + + 'restored_none' => [ + 'title' => 'Gagal memulihkan', + 'missing_authorization_failure_message' => 'Anda tidak punya akses untuk memulihkan :count.', + 'missing_processing_failure_message' => ':count tidak dapat dipulihkan.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/id/view.php b/lang/vendor/filament-actions/id/view.php new file mode 100644 index 0000000..65a2b50 --- /dev/null +++ b/lang/vendor/filament-actions/id/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Lihat', + + 'modal' => [ + + 'heading' => 'Lihat :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Tutup', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/it/associate.php b/lang/vendor/filament-actions/it/associate.php new file mode 100644 index 0000000..dc64656 --- /dev/null +++ b/lang/vendor/filament-actions/it/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Associa', + + 'modal' => [ + + 'heading' => 'Associa :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Record', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Associa', + ], + + 'associate_another' => [ + 'label' => 'Associa & associa un altro', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Associato', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/it/attach.php b/lang/vendor/filament-actions/it/attach.php new file mode 100644 index 0000000..255a0bb --- /dev/null +++ b/lang/vendor/filament-actions/it/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Collega', + + 'modal' => [ + + 'heading' => 'Collega :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Record', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Collega', + ], + + 'attach_another' => [ + 'label' => 'Collega & collega un altro', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Collegato', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/it/create.php b/lang/vendor/filament-actions/it/create.php new file mode 100644 index 0000000..67b5d59 --- /dev/null +++ b/lang/vendor/filament-actions/it/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Nuovo', + + 'modal' => [ + + 'heading' => 'Salva :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Salva', + ], + + 'create_another' => [ + 'label' => 'Salva & crea un altro', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Creato', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/it/delete.php b/lang/vendor/filament-actions/it/delete.php new file mode 100644 index 0000000..2a64aae --- /dev/null +++ b/lang/vendor/filament-actions/it/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Elimina', + + 'modal' => [ + + 'heading' => 'Elimina :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Elimina', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Eliminato', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Elimina selezionati', + + 'modal' => [ + + 'heading' => 'Elimina :label selezionati', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Elimina', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Eliminati', + ], + + 'deleted_partial' => [ + 'title' => 'Eliminati :count di :total', + 'missing_authorization_failure_message' => 'Non hai il permesso di eliminare :count.', + 'missing_processing_failure_message' => ':count non possono essere eliminati.', + ], + + 'deleted_none' => [ + 'title' => 'Eliminazione fallita', + 'missing_authorization_failure_message' => 'Non hai il permesso di eliminare :count.', + 'missing_processing_failure_message' => ':count non possono essere eliminati.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/it/detach.php b/lang/vendor/filament-actions/it/detach.php new file mode 100644 index 0000000..39d7af0 --- /dev/null +++ b/lang/vendor/filament-actions/it/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Scollega', + + 'modal' => [ + + 'heading' => 'Scollega :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Scollega', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Scollegato', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Scollega selezionati', + + 'modal' => [ + + 'heading' => 'Scollega :label selezionati', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Scollega', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Scollegati', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/it/dissociate.php b/lang/vendor/filament-actions/it/dissociate.php new file mode 100644 index 0000000..d44140e --- /dev/null +++ b/lang/vendor/filament-actions/it/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Dissocia', + + 'modal' => [ + + 'heading' => 'Dissocia :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissocia', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissociato', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Dissocia selezionati', + + 'modal' => [ + + 'heading' => 'Dissocia :label selezionati', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissocia', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissociati', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/it/edit.php b/lang/vendor/filament-actions/it/edit.php new file mode 100644 index 0000000..b4266ca --- /dev/null +++ b/lang/vendor/filament-actions/it/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Modifica', + + 'modal' => [ + + 'heading' => 'Modifica :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Salva', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Salvato', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/it/export.php b/lang/vendor/filament-actions/it/export.php new file mode 100644 index 0000000..91d3ba0 --- /dev/null +++ b/lang/vendor/filament-actions/it/export.php @@ -0,0 +1,94 @@ + 'Esporta :label', + + 'modal' => [ + + 'heading' => 'Esporta :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Colonne', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Seleziona tutte', + ], + + 'deselect_all' => [ + 'label' => 'Deseleziona tutte', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column abilitata', + ], + + 'label' => [ + 'label' => ':column etichetta', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Esporta', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Esportazione completata', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Scarica .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Scarica .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'L\'esportazione è troppo grande', + 'body' => 'Non puoi esportare più di 1 riga alla volta.|Non puoi esportare più di :count righe alla volta.', + ], + + 'no_columns' => [ + 'title' => 'Nessuna colonna selezionata', + 'body' => 'Seleziona almeno una colonna per esportare.', + ], + + 'started' => [ + 'title' => 'Esportazione avviata', + 'body' => 'L\'esportazione è iniziata e 1 riga verrà elaborata in background.|L\'esportazione è iniziata e :count righe verranno elaborate in background.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/it/force-delete.php b/lang/vendor/filament-actions/it/force-delete.php new file mode 100644 index 0000000..2b0eca3 --- /dev/null +++ b/lang/vendor/filament-actions/it/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Forza eliminazione', + + 'modal' => [ + + 'heading' => 'Forza eliminazione :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Elimina', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Eliminato', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Elimina forzatamente selezionati', + + 'modal' => [ + + 'heading' => 'Elimina forzatamente :label selezionati', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Elimina', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Eliminati', + ], + + 'deleted_partial' => [ + 'title' => 'Eliminati :count di :total', + 'missing_authorization_failure_message' => 'Non hai il permesso di eliminare :count.', + 'missing_processing_failure_message' => ':count non possono essere eliminati.', + ], + + 'deleted_none' => [ + 'title' => 'Eliminazione fallita', + 'missing_authorization_failure_message' => 'Non hai il permesso di eliminare :count.', + 'missing_processing_failure_message' => ':count non possono essere eliminati.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/it/group.php b/lang/vendor/filament-actions/it/group.php new file mode 100644 index 0000000..9c166bd --- /dev/null +++ b/lang/vendor/filament-actions/it/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Azioni', + ], + +]; diff --git a/lang/vendor/filament-actions/it/import.php b/lang/vendor/filament-actions/it/import.php new file mode 100644 index 0000000..774e6e3 --- /dev/null +++ b/lang/vendor/filament-actions/it/import.php @@ -0,0 +1,82 @@ + 'Importa :label', + + 'modal' => [ + + 'heading' => 'Importa :label', + + 'form' => [ + + 'file' => [ + 'label' => 'File', + 'placeholder' => 'Carica un file CSV', + + 'rules' => [ + 'duplicate_columns' => '{0} Il file non deve contenere più di un\'intestazione di colonna vuota.|{1,*} Il file non deve contenere intestazioni di colonna duplicate: :columns.', + ], + ], + + 'columns' => [ + 'label' => 'Colonne', + 'placeholder' => 'Seleziona una colonna', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Scarica un file CSV di esempio', + ], + + 'import' => [ + 'label' => 'Importa', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Importazione completata', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Scarica le informazioni riguardo le righe fallite|Scarica l\'informazione riguardo la riga fallita', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Il file CSV caricato è troppo grande', + 'body' => 'Non puoi importare più di 1 riga alla volta.|Non puoi importare più di :count righe alla volta.', + ], + + 'started' => [ + 'title' => 'L\'importazione è iniziata', + 'body' => 'L\'importazione è iniziata e 1 riga verrà elaborata in background.|L\'importazione è iniziata e :count righe verranno elaborate in background.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'errore', + 'system_error' => 'Errore di sistema, per favore contatta il supporto.', + 'column_mapping_required_for_new_record' => 'La colonna :attribute non è stata mappata ad una colonna nel file, ma è richiesta per la creazione di nuovi record.', + ], + +]; diff --git a/lang/vendor/filament-actions/it/modal.php b/lang/vendor/filament-actions/it/modal.php new file mode 100644 index 0000000..f116fc0 --- /dev/null +++ b/lang/vendor/filament-actions/it/modal.php @@ -0,0 +1,23 @@ + 'Sei sicuro di volerlo fare?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annulla', + ], + + 'confirm' => [ + 'label' => 'Conferma', + ], + + 'submit' => [ + 'label' => 'Invia', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/it/notifications.php b/lang/vendor/filament-actions/it/notifications.php new file mode 100644 index 0000000..5666486 --- /dev/null +++ b/lang/vendor/filament-actions/it/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Troppi tentativi', + 'body' => 'Per favore riprova tra :seconds secondi.', + ], + +]; diff --git a/lang/vendor/filament-actions/it/replicate.php b/lang/vendor/filament-actions/it/replicate.php new file mode 100644 index 0000000..a5b1103 --- /dev/null +++ b/lang/vendor/filament-actions/it/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Duplica', + + 'modal' => [ + + 'heading' => 'Duplica :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Duplica', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Duplicato', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/it/restore.php b/lang/vendor/filament-actions/it/restore.php new file mode 100644 index 0000000..a65946d --- /dev/null +++ b/lang/vendor/filament-actions/it/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Ripristina', + + 'modal' => [ + + 'heading' => 'Ripristina :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Ripristina', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Ripristinato', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Ripristina selezionati', + + 'modal' => [ + + 'heading' => 'Ripristina selezionati :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Ripristina', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Ripristinati', + ], + + 'restored_partial' => [ + 'title' => 'Ripristinati :count di :total', + 'missing_authorization_failure_message' => 'Non hai il permesso di ripristinare :count.', + 'missing_processing_failure_message' => ':count non possono essere ripristinati.', + ], + + 'restored_none' => [ + 'title' => 'Ripristino fallito', + 'missing_authorization_failure_message' => 'Non hai il permesso di ripristinare :count.', + 'missing_processing_failure_message' => ':count non possono essere ripristinati.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/it/view.php b/lang/vendor/filament-actions/it/view.php new file mode 100644 index 0000000..da8dbca --- /dev/null +++ b/lang/vendor/filament-actions/it/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Vedi', + + 'modal' => [ + + 'heading' => 'Vedi :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Chiudi', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ja/associate.php b/lang/vendor/filament-actions/ja/associate.php new file mode 100644 index 0000000..e8487fa --- /dev/null +++ b/lang/vendor/filament-actions/ja/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => '関連付ける', + + 'modal' => [ + + 'heading' => ':labelを関連付ける', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'レコード', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => '関連付ける', + ], + + 'associate_another' => [ + 'label' => '保存して、続けて関連付ける', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => '関連付けしました', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ja/attach.php b/lang/vendor/filament-actions/ja/attach.php new file mode 100644 index 0000000..bbdb96d --- /dev/null +++ b/lang/vendor/filament-actions/ja/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => '紐付ける', + + 'modal' => [ + + 'heading' => ':labelを紐付ける', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'レコード', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => '紐付ける', + ], + + 'attach_another' => [ + 'label' => '紐付けして、続けて紐付ける', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => '紐付けしました', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ja/create.php b/lang/vendor/filament-actions/ja/create.php new file mode 100644 index 0000000..6e8de63 --- /dev/null +++ b/lang/vendor/filament-actions/ja/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => '作成', + + 'modal' => [ + + 'heading' => ':label 作成', + + 'actions' => [ + + 'create' => [ + 'label' => '作成', + ], + + 'create_another' => [ + 'label' => '保存して、続けて作成', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => '作成しました', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ja/delete.php b/lang/vendor/filament-actions/ja/delete.php new file mode 100644 index 0000000..e09bf93 --- /dev/null +++ b/lang/vendor/filament-actions/ja/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => '削除', + + 'modal' => [ + + 'heading' => ':label 削除', + + 'actions' => [ + + 'delete' => [ + 'label' => '削除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '削除しました', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '選択中を削除', + + 'modal' => [ + + 'heading' => '選択中の:labelを削除', + + 'actions' => [ + + 'delete' => [ + 'label' => '削除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '削除しました', + ], + + 'deleted_partial' => [ + 'title' => ':total件中:count件を削除しました', + 'missing_authorization_failure_message' => ':count件を削除する権限がありません。', + 'missing_processing_failure_message' => ':count件を削除できませんでした。', + ], + + 'deleted_none' => [ + 'title' => '削除に失敗しました', + 'missing_authorization_failure_message' => ':count件を削除する権限がありません。', + 'missing_processing_failure_message' => ':count件を削除できませんでした。', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ja/detach.php b/lang/vendor/filament-actions/ja/detach.php new file mode 100644 index 0000000..4d5e031 --- /dev/null +++ b/lang/vendor/filament-actions/ja/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => '解除', + + 'modal' => [ + + 'heading' => ':labelを解除', + + 'actions' => [ + + 'detach' => [ + 'label' => '解除', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => '解除しました', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '選択中を解除', + + 'modal' => [ + + 'heading' => '選択中の:labelを解除', + + 'actions' => [ + + 'detach' => [ + 'label' => '解除', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => '解除しました', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ja/dissociate.php b/lang/vendor/filament-actions/ja/dissociate.php new file mode 100644 index 0000000..51eeb0c --- /dev/null +++ b/lang/vendor/filament-actions/ja/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => '関連付け解除', + + 'modal' => [ + + 'heading' => ':labelの関連付け解除', + + 'actions' => [ + + 'dissociate' => [ + 'label' => '関連付け解除', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => '関連付け解除しました', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '選択中を関連付け解除', + + 'modal' => [ + + 'heading' => '選択中の:labelを関連付け解除', + + 'actions' => [ + + 'dissociate' => [ + 'label' => '関連付け解除', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => '関連付け解除しました', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ja/edit.php b/lang/vendor/filament-actions/ja/edit.php new file mode 100644 index 0000000..cc54134 --- /dev/null +++ b/lang/vendor/filament-actions/ja/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => '編集', + + 'modal' => [ + + 'heading' => ':label 編集', + + 'actions' => [ + + 'save' => [ + 'label' => '変更を保存', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '保存しました', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ja/export.php b/lang/vendor/filament-actions/ja/export.php new file mode 100644 index 0000000..e19c735 --- /dev/null +++ b/lang/vendor/filament-actions/ja/export.php @@ -0,0 +1,94 @@ + 'エクスポート', + + 'modal' => [ + + 'heading' => 'エクスポート :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'カラム', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'すべて選択', + ], + + 'deselect_all' => [ + 'label' => 'すべて解除', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column が有効になりました', + ], + + 'label' => [ + 'label' => ':column ラベル', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'エクスポート', + ], + + ], + + ], + + 'notifications' => [ + + 'no_columns' => [ + 'title' => 'カラムが選択されていません', + 'body' => 'エクスポートするカラムを少なくとも1つ選択してください。', + ], + + 'completed' => [ + + 'title' => 'エクスポート完了', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'csv形式をダウンロード', + ], + + 'download_xlsx' => [ + 'label' => 'xlsx形式をダウンロード', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'エクスポートするデータが大きすぎます', + 'body' => '一度に:count行を超える行をエクスポートすることはできません。', + ], + + 'started' => [ + 'title' => 'エクスポート開始', + 'body' => 'エクスポートが開始され、:count行がバックグラウンドで処理されます。', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/ja/force-delete.php b/lang/vendor/filament-actions/ja/force-delete.php new file mode 100644 index 0000000..cc6f77b --- /dev/null +++ b/lang/vendor/filament-actions/ja/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => '強制削除', + + 'modal' => [ + + 'heading' => ':label 強制削除', + + 'actions' => [ + + 'delete' => [ + 'label' => '削除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '削除しました', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '選択中を強制削除', + + 'modal' => [ + + 'heading' => '選択中の:labelを強制削除', + + 'actions' => [ + + 'delete' => [ + 'label' => '削除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '削除しました', + ], + + 'deleted_partial' => [ + 'title' => ':total件中:count件を削除しました', + 'missing_authorization_failure_message' => ':count件を削除する権限がありません。', + 'missing_processing_failure_message' => ':count件を削除できませんでした。', + ], + + 'deleted_none' => [ + 'title' => '削除に失敗しました', + 'missing_authorization_failure_message' => ':count件を削除する権限がありません。', + 'missing_processing_failure_message' => ':count件を削除できませんでした。', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ja/group.php b/lang/vendor/filament-actions/ja/group.php new file mode 100644 index 0000000..be95fc0 --- /dev/null +++ b/lang/vendor/filament-actions/ja/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'アクション', + ], + +]; diff --git a/lang/vendor/filament-actions/ja/import.php b/lang/vendor/filament-actions/ja/import.php new file mode 100644 index 0000000..109abac --- /dev/null +++ b/lang/vendor/filament-actions/ja/import.php @@ -0,0 +1,83 @@ + 'インポート', + + 'modal' => [ + + 'heading' => 'インポート :label', + + 'form' => [ + + 'file' => [ + 'label' => 'File', + 'placeholder' => 'CSVファイルをアップロード', + + 'rules' => [ + 'duplicate_columns' => '{0} 空の列ヘッダーが複数存在してはいけません。|{1,*} 次の列ヘッダーが重複しています: :columns。', + ], + + ], + + 'columns' => [ + 'label' => 'カラム', + 'placeholder' => '列を選択', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'サンプルCSVファイルをダウンロード', + ], + + 'import' => [ + 'label' => 'インポート', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'インポート完了', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => '失敗した行に関する情報のダウンロード', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'CSVファイルが大きすぎます', + 'body' => '一度に:count行を超える行をインポートすることはできません。', + ], + + 'started' => [ + 'title' => 'インポート開始', + 'body' => 'インポートが開始され、:count行がバックグラウンドで処理されます。', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'エラー', + 'system_error' => 'システムエラーです。サポートにお問い合わせください。', + 'column_mapping_required_for_new_record' => ':attribute 列がファイル内のどの列にも対応付けられていませんが、新規レコードの作成には必須です。', + ], + +]; diff --git a/lang/vendor/filament-actions/ja/modal.php b/lang/vendor/filament-actions/ja/modal.php new file mode 100644 index 0000000..db826a7 --- /dev/null +++ b/lang/vendor/filament-actions/ja/modal.php @@ -0,0 +1,23 @@ + '本当に実行しますか?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'キャンセル', + ], + + 'confirm' => [ + 'label' => '確定', + ], + + 'submit' => [ + 'label' => '完了', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ja/notifications.php b/lang/vendor/filament-actions/ja/notifications.php new file mode 100644 index 0000000..390ca0a --- /dev/null +++ b/lang/vendor/filament-actions/ja/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => '試行回数が多すぎます', + 'body' => ':seconds 秒後に再試行してください。', + ], + +]; diff --git a/lang/vendor/filament-actions/ja/replicate.php b/lang/vendor/filament-actions/ja/replicate.php new file mode 100644 index 0000000..cc1ffab --- /dev/null +++ b/lang/vendor/filament-actions/ja/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => '複製', + + 'modal' => [ + + 'heading' => ':label 複製', + + 'actions' => [ + + 'replicate' => [ + 'label' => '複製', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => '複製しました', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ja/restore.php b/lang/vendor/filament-actions/ja/restore.php new file mode 100644 index 0000000..68fa4a4 --- /dev/null +++ b/lang/vendor/filament-actions/ja/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => '復旧', + + 'modal' => [ + + 'heading' => ':label 復旧', + + 'actions' => [ + + 'restore' => [ + 'label' => '復旧', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => '復旧しました', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '選択中を復旧', + + 'modal' => [ + + 'heading' => '選択中の:labelを復旧', + + 'actions' => [ + + 'restore' => [ + 'label' => '復旧', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => '復旧しました', + ], + + 'restored_partial' => [ + 'title' => ':total件中:count件を復元しました', + 'missing_authorization_failure_message' => ':count件を復元する権限がありません。', + 'missing_processing_failure_message' => ':count件を復元できませんでした。', + ], + + 'restored_none' => [ + 'title' => '復元に失敗しました', + 'missing_authorization_failure_message' => ':count件を復元する権限がありません。', + 'missing_processing_failure_message' => ':count件を復元できませんでした。', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ja/view.php b/lang/vendor/filament-actions/ja/view.php new file mode 100644 index 0000000..4994eca --- /dev/null +++ b/lang/vendor/filament-actions/ja/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => '表示', + + 'modal' => [ + + 'heading' => ':label 表示', + + 'actions' => [ + + 'close' => [ + 'label' => '閉じる', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ka/associate.php b/lang/vendor/filament-actions/ka/associate.php new file mode 100644 index 0000000..d47862c --- /dev/null +++ b/lang/vendor/filament-actions/ka/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'დაკავშირება', + + 'modal' => [ + + 'heading' => 'აკავშირებ :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'ჩანაწერი', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'დაკავშირება', + ], + + 'associate_another' => [ + 'label' => 'დაკავშირება და ახალი დაკავშირება', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'დაკავშირებულია', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ka/attach.php b/lang/vendor/filament-actions/ka/attach.php new file mode 100644 index 0000000..006f1d8 --- /dev/null +++ b/lang/vendor/filament-actions/ka/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'მიმაგრება', + + 'modal' => [ + + 'heading' => 'ამაგრებთ :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'ჩანაწერი', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'მიმაგრება', + ], + + 'attach_another' => [ + 'label' => 'მიმაგრება და ახალი მიმაგრება', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'მიმაგრება', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ka/create.php b/lang/vendor/filament-actions/ka/create.php new file mode 100644 index 0000000..d20cd4c --- /dev/null +++ b/lang/vendor/filament-actions/ka/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'ახალი :label', + + 'modal' => [ + + 'heading' => 'ქმნით :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'შექმნა', + ], + + 'create_another' => [ + 'label' => 'შექმნა და ახალი შექმნა', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'შექმნილია', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ka/delete.php b/lang/vendor/filament-actions/ka/delete.php new file mode 100644 index 0000000..6263ba6 --- /dev/null +++ b/lang/vendor/filament-actions/ka/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'წაშლა', + + 'modal' => [ + + 'heading' => 'შლით :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'წაშლა', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'წაშლილია', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'არჩეულიების წაშლა', + + 'modal' => [ + + 'heading' => 'მონიშნულების წაშლა :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'წაშლა', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'წაშლილია', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ka/detach.php b/lang/vendor/filament-actions/ka/detach.php new file mode 100644 index 0000000..f3ce68e --- /dev/null +++ b/lang/vendor/filament-actions/ka/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'მოშორება', + + 'modal' => [ + + 'heading' => 'აშორებთ :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'მოშორება', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'მოშორებულია', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'არჩეულიების მოშორება', + + 'modal' => [ + + 'heading' => 'არჩეულიების მოშორება :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'მოშორება', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'მოშორებულია', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ka/dissociate.php b/lang/vendor/filament-actions/ka/dissociate.php new file mode 100644 index 0000000..53b9d5e --- /dev/null +++ b/lang/vendor/filament-actions/ka/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'განკავშირება', + + 'modal' => [ + + 'heading' => 'განკავშირება :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'განკავშირება', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'განკავშირებულია', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'არჩეულიების განკავშირება', + + 'modal' => [ + + 'heading' => 'არჩეულიების განკავშირება :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'განკავშირება', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'განკავშირებულია', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ka/edit.php b/lang/vendor/filament-actions/ka/edit.php new file mode 100644 index 0000000..06b4998 --- /dev/null +++ b/lang/vendor/filament-actions/ka/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'რედაქტირება', + + 'modal' => [ + + 'heading' => 'არედაქტირებ :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'ცვლილებების შენახვა', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'შენახულია', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ka/export.php b/lang/vendor/filament-actions/ka/export.php new file mode 100644 index 0000000..966b897 --- /dev/null +++ b/lang/vendor/filament-actions/ka/export.php @@ -0,0 +1,77 @@ + 'ექსპორტი :label', + + 'modal' => [ + + 'heading' => 'ექსპორტდება :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'სვეტები', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column ჩართულია', + ], + + 'label' => [ + 'label' => ':column დასახელება', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'ექსპორტი', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'ექსპორტი დასრულებულია', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'გადმოწერეთ .csv', + ], + + 'download_xlsx' => [ + 'label' => 'გადმოწერეთ .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'ექსპორტი ზედმეტად დიდია', + 'body' => 'შეგიძლიათ მაქსიმუმ 1 ჩანაწერის ექსპორტი ერთდროულად.|შეგიძლიათ მაქსიმუმ :count ჩანაწერის ექსპორტი ერთდროულად.', + ], + + 'started' => [ + 'title' => 'ექსპორტი დაწყებულია', + 'body' => 'თქვენი ექსპორტი დაიწყო და 1 ჩანაწერი დამუშავდება სერვერის მიერ. თქვენ მიიღებთ შეტყობინებას გადმოწერის ბმულთან ერთად, როდესაც ის დასრულდება.|თქვენი ექსპორტი დაიწყო და :count ჩანაწერი დამუშავდება სერვერზე. თქვენ მიიღებთ შეტყობინებას გადმოწერის ბმულთან ერთად, როდესაც ის დასრულდება.', + ], + + ], + + 'file_name' => 'ექსპორტი-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/ka/force-delete.php b/lang/vendor/filament-actions/ka/force-delete.php new file mode 100644 index 0000000..405a7d0 --- /dev/null +++ b/lang/vendor/filament-actions/ka/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'ფორსირებული წაშლა', + + 'modal' => [ + + 'heading' => 'ფორსირებით შლით :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'წაშლა', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'წაშლილია', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'ფორსირებით წასაშლელად არჩეულია', + + 'modal' => [ + + 'heading' => 'ფორსირებით წასაშლელად არჩეულია :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'წაშლა', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'წაშლილია', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ka/group.php b/lang/vendor/filament-actions/ka/group.php new file mode 100644 index 0000000..025f628 --- /dev/null +++ b/lang/vendor/filament-actions/ka/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'ქმედება', + ], + +]; diff --git a/lang/vendor/filament-actions/ka/import.php b/lang/vendor/filament-actions/ka/import.php new file mode 100644 index 0000000..c460709 --- /dev/null +++ b/lang/vendor/filament-actions/ka/import.php @@ -0,0 +1,85 @@ + 'იმპორტი :label', + + 'modal' => [ + + 'heading' => 'იმპორტი :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'ფაილი', + + 'placeholder' => 'ატვირთეთ CSV ფაილი', + + 'rules' => [ + 'duplicate_columns' => '{0} ფაილში არ უნდა იყოს ერთზე მეტი ცარიელი სვეტი სათაურში.|{1,*} ფაილში არ უნდა იყოს დუბლირებული სვეტის სათაურები: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'სვეტები', + 'placeholder' => 'აირჩიეთ სვეტი', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'გადმოწერეთ მაგალითი(CSV ფაილი)', + ], + + 'import' => [ + 'label' => 'იმპორტი', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'იმპორტი დასრულდა', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'გადმოწერეთ ინფორმაცია შეცდომით ჩანაწერის შესახებ|გადმოწერეთ ინფორმაცია შეცდომით ჩანაწერების შესახებ', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'ატვირთული CSV ფაილი ზედმეტად დიდია', + 'body' => 'თქვენ არ შეგიძლიათ ერთდროულად ერთზე მეტი ჩანაწერის იმპორტი.|თქვენ არ შეგიძლიათ ერთდროულად :count -ზე მეტი ჩანაწერის იმპორტი.', + ], + + 'started' => [ + 'title' => 'იმპორტი დაწყებულია', + 'body' => 'იმპორტი დაიწყო და 1 ჩანაწერი დამუშავდება სერვერზე.|იმპორტი დაიწყო და :count ჩანაწერი დამუშავდება სერვერზე.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'იმპორტი-:import_id-:csv_name-შეცდომები', + 'error_header' => 'შეცდომა', + 'system_error' => 'სისტემური შეცდომა, გთხოვთ დაუკავშირდეთ მხარდაჭერის სამსახურს.', + 'column_mapping_required_for_new_record' => ':attribute სვეტი არ მიესადაგებული ფაილის სვეტს, მაგრამ ის საჭიროა ახალი ჩანაწერების შესაქმნელად.', + ], + +]; diff --git a/lang/vendor/filament-actions/ka/modal.php b/lang/vendor/filament-actions/ka/modal.php new file mode 100644 index 0000000..caa26ba --- /dev/null +++ b/lang/vendor/filament-actions/ka/modal.php @@ -0,0 +1,23 @@ + 'დარწმუნებული ხართ, რომ გსურთ ამის გაკეთება?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'გაუქმება', + ], + + 'confirm' => [ + 'label' => 'დადასტურება', + ], + + 'submit' => [ + 'label' => 'დადასტურება', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ka/replicate.php b/lang/vendor/filament-actions/ka/replicate.php new file mode 100644 index 0000000..98e656a --- /dev/null +++ b/lang/vendor/filament-actions/ka/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'დუბლირება', + + 'modal' => [ + + 'heading' => 'ადუბლირებთ :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'დუბლირება', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'დუბლირებულია', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ka/restore.php b/lang/vendor/filament-actions/ka/restore.php new file mode 100644 index 0000000..8c2a3b0 --- /dev/null +++ b/lang/vendor/filament-actions/ka/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'აღდგენა', + + 'modal' => [ + + 'heading' => 'აღადგენთ :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'აღდგენა', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'აღდგენილია', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'არჩეულიების აღდგენა', + + 'modal' => [ + + 'heading' => 'არჩეულიების აღდგენა :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'აღდგენა', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'აღდგენილია', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ka/view.php b/lang/vendor/filament-actions/ka/view.php new file mode 100644 index 0000000..69ef7e8 --- /dev/null +++ b/lang/vendor/filament-actions/ka/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'დათვალიერება', + + 'modal' => [ + + 'heading' => 'ათვალიერებთ :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'დახურვა', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/km/associate.php b/lang/vendor/filament-actions/km/associate.php new file mode 100644 index 0000000..041b194 --- /dev/null +++ b/lang/vendor/filament-actions/km/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'សហការី', + + 'modal' => [ + + 'heading' => 'សហការី :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'ទិន្នន័យ', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'សហការី', + ], + + 'associate_another' => [ + 'label' => 'សេពគប់ & សេពគប់អ្នកដទៃ', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'ពាក់ព័ន្ធ', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/km/attach.php b/lang/vendor/filament-actions/km/attach.php new file mode 100644 index 0000000..3145103 --- /dev/null +++ b/lang/vendor/filament-actions/km/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'ភ្ជាប់', + + 'modal' => [ + + 'heading' => 'ភ្ជាប់ :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'ទិន្នន័យ', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'ភ្ជាប់', + ], + + 'attach_another' => [ + 'label' => 'ភ្ជាប់ & ភ្ជាប់ឡើងវិញ', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'បានភ្ជាប់ជោគជ័យ', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/km/create.php b/lang/vendor/filament-actions/km/create.php new file mode 100644 index 0000000..e51bfba --- /dev/null +++ b/lang/vendor/filament-actions/km/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'បង្កើត :label ថ្មី', + + 'modal' => [ + + 'heading' => 'បង្កើត :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'បង្កើត', + ], + + 'create_another' => [ + 'label' => 'បង្កើត & បង្កើតឡើងវិញ', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'បានបង្កើត', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/km/delete.php b/lang/vendor/filament-actions/km/delete.php new file mode 100644 index 0000000..e3b4841 --- /dev/null +++ b/lang/vendor/filament-actions/km/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'លុប', + + 'modal' => [ + + 'heading' => 'លុប :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'លុប', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'បានលុប', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'លុបចោលការជ្រើសរើស', + + 'modal' => [ + + 'heading' => 'លុបចោលការជ្រើសរើស :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'លុប', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'បានលុប', + ], + + 'deleted_partial' => [ + 'title' => 'បានលុប :count នៃ :total', + 'missing_authorization_failure_message' => 'អ្នកមិនមានសិទ្ធិលុប :count ទេ។', + 'missing_processing_failure_message' => ':count មិនអាចលុបបានទេ។', + ], + + 'deleted_none' => [ + 'title' => 'បរាជ័យក្នុងការលុប', + 'missing_authorization_failure_message' => 'អ្នកមិនមានសិទ្ធិលុប :count ទេ។', + 'missing_processing_failure_message' => ':count មិនអាចលុបបានទេ។', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/km/detach.php b/lang/vendor/filament-actions/km/detach.php new file mode 100644 index 0000000..07f5465 --- /dev/null +++ b/lang/vendor/filament-actions/km/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'ផ្ដាច់', + + 'modal' => [ + + 'heading' => 'ផ្ដាច់ :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'ផ្ដាច់', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'បានផ្ដាច់', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'ផ្ដាច់នៃការជ្រើសរើស', + + 'modal' => [ + + 'heading' => 'បានផ្ដាច់នៃការជ្រើសរើស :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'ផ្ដាច់', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'បានផ្ដាច់', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/km/dissociate.php b/lang/vendor/filament-actions/km/dissociate.php new file mode 100644 index 0000000..7d86731 --- /dev/null +++ b/lang/vendor/filament-actions/km/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'ផ្តាច់ខ្លួន', + + 'modal' => [ + + 'heading' => 'ផ្តាច់ខ្លួន :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'ផ្តាច់ខ្លួន', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'បែកគ្នា', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'បានជ្រើសរើសផ្តាច់មុខ', + + 'modal' => [ + + 'heading' => 'បានជ្រើសរើសផ្តាច់មុខ :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'ផ្តាច់ខ្លួន', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'បែកគ្នា។', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/km/edit.php b/lang/vendor/filament-actions/km/edit.php new file mode 100644 index 0000000..3626dea --- /dev/null +++ b/lang/vendor/filament-actions/km/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'កែសម្រួល', + + 'modal' => [ + + 'heading' => 'កែសម្រួល :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'រក្សាទុកការផ្លាស់ប្តូរ', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'បានរក្សាទុក', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/km/export.php b/lang/vendor/filament-actions/km/export.php new file mode 100644 index 0000000..fdea1f3 --- /dev/null +++ b/lang/vendor/filament-actions/km/export.php @@ -0,0 +1,91 @@ + 'ទាញយក :label', + + 'modal' => [ + + 'heading' => 'ទាញយក :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'ជួរឈរ', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column បើកដំណើរការ', + ], + + 'label' => [ + 'label' => ':column ស្លាក សញ្ញា', + ], + + ], + + 'actions' => [ + 'select_all' => [ + 'label' => 'ជ្រើសរើសទាំងអស់', + ], + 'deselect_all' => [ + 'label' => 'ដកការជ្រើសរើសទាំងអស់', + ], + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'ទាញយក', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'បញ្ចប់ការទាញយក', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'ទាញយក .csv', + ], + + 'download_xlsx' => [ + 'label' => 'ទាញយក .xlsx', + ], + + ], + + ], + + 'no_columns' => [ + 'title' => 'មិនមានជួរឈរត្រូវបានជ្រើសរើសទេ', + 'body' => 'សូមជ្រើសរើសយ៉ាងហោចណាស់មួយជួរឈរដើម្បីនាំចេញ។', + ], + + 'max_rows' => [ + 'title' => 'ការទាញយកមានទំហំធំពេក', + 'body' => 'អ្នកមិនអាចទាញយកលើសពី 1 ជួរក្នុងពេលតែមួយបានទេ។ | អ្នកមិនអាចទាញយកលើសពី :count ជួរក្នុងពេលតែមួយបានទេ។', + ], + + 'started' => [ + 'title' => 'ចាប់ផ្ដើមទាញយក', + 'body' => 'ការទាញយករបស់អ្នកបានចាប់ផ្តើមហើយ 1 ជួរនឹងត្រូវបានដំណើរការក្នុងផ្ទៃខាងក្រោយ។. អ្នក​នឹង​ទទួល​បាន​ការ​ជូន​ដំណឹង​ជាមួយ​នឹង​តំណ​ទាញ​យក​នៅ​ពេល​ដែល​វា​បាន​បញ្ចប់។.|ការទាញយករបស់អ្នកបានចាប់ផ្តើមហើយ :count ជួរនឹងត្រូវបានដំណើរការក្នុងផ្ទៃខាងក្រោយ។. អ្នក​នឹង​ទទួល​បាន​ការ​ជូន​ដំណឹង​ជាមួយ​នឹង​តំណ​ទាញ​យក​នៅ​ពេល​ដែល​វា​បាន​បញ្ចប់។.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/km/force-delete.php b/lang/vendor/filament-actions/km/force-delete.php new file mode 100644 index 0000000..171a885 --- /dev/null +++ b/lang/vendor/filament-actions/km/force-delete.php @@ -0,0 +1,72 @@ + [ + + 'label' => 'បង្ខំ​លុប', + + 'modal' => [ + + 'heading' => 'បង្ខំ​លុប :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'លុប', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'បានលុប', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'បង្ខំការលុបដែលបានជ្រើសរើស', + + 'modal' => [ + + 'heading' => 'បង្ខំការលុបដែលបានជ្រើសរើស :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'លុប', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'បានលុប', + ], + + 'deleted_partial' => [ + 'title' => 'Deleted :count of :total', + 'missing_authorization_failure_message' => 'You don\'t have permission to delete :count.', + 'missing_processing_failure_message' => ':count could not be deleted.', + ], + + 'deleted_none' => [ + 'title' => 'Failed to delete', + 'missing_authorization_failure_message' => 'You don\'t have permission to delete :count.', + 'missing_processing_failure_message' => ':count could not be deleted.', + ], + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/km/group.php b/lang/vendor/filament-actions/km/group.php new file mode 100644 index 0000000..f120e78 --- /dev/null +++ b/lang/vendor/filament-actions/km/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'សកម្មភាព', + ], + +]; diff --git a/lang/vendor/filament-actions/km/import.php b/lang/vendor/filament-actions/km/import.php new file mode 100644 index 0000000..a0b16d6 --- /dev/null +++ b/lang/vendor/filament-actions/km/import.php @@ -0,0 +1,85 @@ + 'ដាក់ចូល :label', + + 'modal' => [ + + 'heading' => 'ដាក់ចូល :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'ឯកសារ', + + 'placeholder' => 'ផ្ទុកឡើងឯកសារ CSV', + + 'rules' => [ + 'duplicate_columns' => '{0} ឯកសារមិនត្រូវមានបឋមកថាជួរឈរទទេច្រើនជាងមួយទេ។.|{1,*} ឯកសារមិនត្រូវមានបឋមកថាជួរឈរស្ទួនទេ។: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'ជួរឈរ', + 'placeholder' => 'ជ្រើសរើសជួរឈរ', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'ទាញយកឯកសារ CSV (ឧទាហរណ៍)', + ], + + 'import' => [ + 'label' => 'ដាក់ចូល', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'ដាក់ចូលបានបញ្ចប់', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'ទាញយកព័ត៌មានអំពីជួរដែលបរាជ័យ|ទាញយកព័ត៌មានអំពីជួរដែលបរាជ័យ', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'ឯកសារ CSV ដែលបានបង្ហោះមានទំហំធំពេក', + 'body' => 'អ្នកមិនអាចនាំចូលលើសពី 1 ជួរក្នុងពេលតែមួយបានទេ។|អ្នកមិនអាចនាំចូលលើសពី :count ជួរដេកក្នុងពេលតែមួយ។', + ], + + 'started' => [ + 'title' => 'ចាប់ផ្ដើមដាក់ចូល', + 'body' => 'ការនាំចូលរបស់អ្នកបានចាប់ផ្តើម ហើយ 1 ជួរនឹងត្រូវបានដំណើរការនៅផ្ទៃខាងក្រោយ។|ការនាំចូលរបស់អ្នកបានចាប់ផ្តើមហើយ :count ជួរដេកនឹងត្រូវបានដំណើរការនៅផ្ទៃខាងក្រោយ។', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'កំហុស', + 'system_error' => 'ប្រព័ន្ធមានកំហុស,សូមទាក់ទងផ្នែកជំនួយ។', + 'column_mapping_required_for_new_record' => 'ជួរឈរ :attribute មិនត្រូវបានផ្គូផ្គងទៅនឹងជួរឈរក្នុងឯកសារនោះទេ ប៉ុន្តែវាត្រូវបានទាមទារសម្រាប់ការបង្កើតទិន្នន័យថ្មី។', + ], + +]; diff --git a/lang/vendor/filament-actions/km/modal.php b/lang/vendor/filament-actions/km/modal.php new file mode 100644 index 0000000..774a319 --- /dev/null +++ b/lang/vendor/filament-actions/km/modal.php @@ -0,0 +1,23 @@ + 'តើអ្នកប្រាកដទេថាអ្នកចង់ធ្វើបែបនេះ?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'លុបចោល', + ], + + 'confirm' => [ + 'label' => 'យល់ព្រម', + ], + + 'submit' => [ + 'label' => 'ស្នើសុំ', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/km/notifications.php b/lang/vendor/filament-actions/km/notifications.php new file mode 100644 index 0000000..4cae548 --- /dev/null +++ b/lang/vendor/filament-actions/km/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'ការព្យាយាមច្រើនពេក', + 'body' => 'សូមព្យាយាមម្ដងទៀតក្នុងរយៈពេល :seconds វិនាទី។', + ], + +]; diff --git a/lang/vendor/filament-actions/km/replicate.php b/lang/vendor/filament-actions/km/replicate.php new file mode 100644 index 0000000..352abfb --- /dev/null +++ b/lang/vendor/filament-actions/km/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'ចម្លង', + + 'modal' => [ + + 'heading' => 'ចម្លង :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'ចម្លង', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'ចម្លង', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/km/restore.php b/lang/vendor/filament-actions/km/restore.php new file mode 100644 index 0000000..6092702 --- /dev/null +++ b/lang/vendor/filament-actions/km/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'ស្តារ', + + 'modal' => [ + + 'heading' => 'ស្តារ :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'ស្តារ', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'បានស្ដារឡើងវិញ', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'បានជ្រើសរើសឡើងវិញ', + + 'modal' => [ + + 'heading' => 'បានជ្រើសរើសឡើងវិញ :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'ស្តារ', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'បានស្ដារឡើងវិញ', + ], + + 'restored_partial' => [ + 'title' => 'បានស្តារ :count នៃ :total', + 'missing_authorization_failure_message' => 'អ្នកមិនមានសិទ្ធិស្តារ :count ទេ។', + 'missing_processing_failure_message' => ':count មិនអាចស្តារបានទេ។', + ], + + 'restored_none' => [ + 'title' => 'បរាជ័យក្នុងការស្តារ', + 'missing_authorization_failure_message' => 'អ្នកមិនមានសិទ្ធិស្តារ :count ទេ។', + 'missing_processing_failure_message' => ':count មិនអាចស្តារបានទេ។', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/km/view.php b/lang/vendor/filament-actions/km/view.php new file mode 100644 index 0000000..263c63b --- /dev/null +++ b/lang/vendor/filament-actions/km/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'មើល', + + 'modal' => [ + + 'heading' => 'មើល :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'បិទ', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ko/associate.php b/lang/vendor/filament-actions/ko/associate.php new file mode 100644 index 0000000..995a46e --- /dev/null +++ b/lang/vendor/filament-actions/ko/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => '연결', + + 'modal' => [ + + 'heading' => ':label 연결', + + 'fields' => [ + + 'record_id' => [ + 'label' => '기록', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => '연결', + ], + + 'associate_another' => [ + 'label' => '계속 연결', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => '연결 완료', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ko/attach.php b/lang/vendor/filament-actions/ko/attach.php new file mode 100644 index 0000000..b98c4ed --- /dev/null +++ b/lang/vendor/filament-actions/ko/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => '추가', + + 'modal' => [ + + 'heading' => ':label 추가', + + 'fields' => [ + + 'record_id' => [ + 'label' => '기록', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => '추가', + ], + + 'attach_another' => [ + 'label' => '계속 추가', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => '추가 완료', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ko/create.php b/lang/vendor/filament-actions/ko/create.php new file mode 100644 index 0000000..147844e --- /dev/null +++ b/lang/vendor/filament-actions/ko/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => '만들기', + + 'modal' => [ + + 'heading' => ':label 만들기', + + 'actions' => [ + + 'create' => [ + 'label' => '만들기', + ], + + 'create_another' => [ + 'label' => '계속 만들기', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => '생성 완료', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ko/delete.php b/lang/vendor/filament-actions/ko/delete.php new file mode 100644 index 0000000..6023e0d --- /dev/null +++ b/lang/vendor/filament-actions/ko/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => '삭제', + + 'modal' => [ + + 'heading' => '삭제 :label', + + 'actions' => [ + + 'delete' => [ + 'label' => '삭제', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '삭제 완료', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '선택한 항목 삭제', + + 'modal' => [ + + 'heading' => ':label 선택한 항목 삭제', + + 'actions' => [ + + 'delete' => [ + 'label' => '선택한 항목 삭제', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '삭제 완료', + ], + + 'deleted_partial' => [ + 'title' => ':total 중 :count개 삭제됨', + 'missing_authorization_failure_message' => ':count개를 삭제할 권한이 없습니다.', + 'missing_processing_failure_message' => ':count개를 삭제할 수 없습니다.', + ], + + 'deleted_none' => [ + 'title' => '삭제 실패', + 'missing_authorization_failure_message' => ':count개를 삭제할 권한이 없습니다.', + 'missing_processing_failure_message' => ':count개를 삭제할 수 없습니다.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ko/detach.php b/lang/vendor/filament-actions/ko/detach.php new file mode 100644 index 0000000..efee892 --- /dev/null +++ b/lang/vendor/filament-actions/ko/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => '분리', + + 'modal' => [ + + 'heading' => ':label 분리', + + 'actions' => [ + + 'detach' => [ + 'label' => '분리', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => '분리 완료', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '선택한 항목 분리', + + 'modal' => [ + + 'heading' => ':label 선택한 항목 분리', + + 'actions' => [ + + 'detach' => [ + 'label' => '선택한 항목 분리', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => '분리 완료', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ko/dissociate.php b/lang/vendor/filament-actions/ko/dissociate.php new file mode 100644 index 0000000..55fe260 --- /dev/null +++ b/lang/vendor/filament-actions/ko/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => '분리', + + 'modal' => [ + + 'heading' => ':label 분리', + + 'actions' => [ + + 'dissociate' => [ + 'label' => '분리', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => '분리 완료', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '선택한 항목 분리', + + 'modal' => [ + + 'heading' => '선택한 :label 분리', + + 'actions' => [ + + 'dissociate' => [ + 'label' => '분리', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => '분리 완료', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ko/edit.php b/lang/vendor/filament-actions/ko/edit.php new file mode 100644 index 0000000..afdc59c --- /dev/null +++ b/lang/vendor/filament-actions/ko/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => '수정', + + 'modal' => [ + + 'heading' => ':label 수정', + + 'actions' => [ + + 'save' => [ + 'label' => '저장', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '저장 완료', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ko/export.php b/lang/vendor/filament-actions/ko/export.php new file mode 100644 index 0000000..0636d17 --- /dev/null +++ b/lang/vendor/filament-actions/ko/export.php @@ -0,0 +1,77 @@ + '내보내기', + + 'modal' => [ + + 'heading' => ':label 내보내기', + + 'form' => [ + + 'columns' => [ + + 'label' => '열', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column 활성화됨', + ], + + 'label' => [ + 'label' => ':column 라벨', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => '내보내기', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => '내보내기 완료', + + 'actions' => [ + + 'download_csv' => [ + 'label' => '.csv 다운로드', + ], + + 'download_xlsx' => [ + 'label' => '.xlsx 다운로드', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => '내보내기가 너무 큽니다', + 'body' => '한 번에 1개 이상의 행을 내보낼 수 없습니다.|한 번에 :count개 이상의 행을 내보낼 수 없습니다.', + ], + + 'started' => [ + 'title' => '내보내기 시작됨', + 'body' => '내보내기가 시작되었으며 1개의 행이 백그라운드에서 처리됩니다.|내보내기가 시작되었으며 :count개의 행이 백그라운드에서 처리됩니다.', + ], + + ], + + 'file_name' => '내보내기-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/ko/force-delete.php b/lang/vendor/filament-actions/ko/force-delete.php new file mode 100644 index 0000000..a605580 --- /dev/null +++ b/lang/vendor/filament-actions/ko/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => '영구 삭제', + + 'modal' => [ + + 'heading' => ':label 영구 삭제', + + 'actions' => [ + + 'delete' => [ + 'label' => '삭제', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '삭제 완료', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '선택한 항목 영구 삭제', + + 'modal' => [ + + 'heading' => '선택한 :label 영구 삭제', + + 'actions' => [ + + 'delete' => [ + 'label' => '삭제', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '삭제 완료', + ], + + 'deleted_partial' => [ + 'title' => ':total 중 :count개 삭제됨', + 'missing_authorization_failure_message' => ':count개를 삭제할 권한이 없습니다.', + 'missing_processing_failure_message' => ':count개를 삭제할 수 없습니다.', + ], + + 'deleted_none' => [ + 'title' => '삭제 실패', + 'missing_authorization_failure_message' => ':count개를 삭제할 권한이 없습니다.', + 'missing_processing_failure_message' => ':count개를 삭제할 수 없습니다.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ko/group.php b/lang/vendor/filament-actions/ko/group.php new file mode 100644 index 0000000..7f531d9 --- /dev/null +++ b/lang/vendor/filament-actions/ko/group.php @@ -0,0 +1,9 @@ + [ + 'label' => '작업', + ], + +]; diff --git a/lang/vendor/filament-actions/ko/import.php b/lang/vendor/filament-actions/ko/import.php new file mode 100644 index 0000000..c1a194a --- /dev/null +++ b/lang/vendor/filament-actions/ko/import.php @@ -0,0 +1,81 @@ + ':label 가져오기', + + 'modal' => [ + + 'heading' => ':label 가져오기', + + 'form' => [ + + 'file' => [ + 'label' => '파일', + 'placeholder' => 'CSV 파일 업로드', + 'rules' => [ + 'duplicate_columns' => '{0} 파일에 빈 열 헤더가 두 개 이상 있으면 안 됩니다.|{1,*} 파일에 중복된 열 헤더가 있으면 안 됩니다: :columns.', + ], + ], + + 'columns' => [ + 'label' => '열', + 'placeholder' => '열을 선택하세요', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => '예시 CSV 파일 다운로드', + ], + + 'import' => [ + 'label' => '가져오기', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => '가져오기 완료', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => '실패한 행에 대한 정보 다운로드|실패한 행들에 대한 정보 다운로드', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => '업로드된 CSV 파일이 너무 큽니다', + 'body' => '한 번에 1개의 행만 가져올 수 있습니다.|한 번에 :count개 이상의 행은 가져올 수 없습니다.', + ], + + 'started' => [ + 'title' => '가져오기 시작됨', + 'body' => '가져오기가 시작되었으며 1개의 행이 백그라운드에서 처리됩니다.|가져오기가 시작되었으며 :count개의 행이 백그라운드에서 처리됩니다.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => '오류', + 'system_error' => '시스템 오류가 발생했습니다. 지원팀에 문의하세요.', + 'column_mapping_required_for_new_record' => '새 레코드를 생성하려면 :attribute 열이 파일의 열과 매핑되어야 합니다.', + ], + +]; diff --git a/lang/vendor/filament-actions/ko/modal.php b/lang/vendor/filament-actions/ko/modal.php new file mode 100644 index 0000000..76eb5ce --- /dev/null +++ b/lang/vendor/filament-actions/ko/modal.php @@ -0,0 +1,23 @@ + '이 작업을 수행하시겠습니까?', + + 'actions' => [ + + 'cancel' => [ + 'label' => '취소', + ], + + 'confirm' => [ + 'label' => '확인', + ], + + 'submit' => [ + 'label' => '제출', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ko/notifications.php b/lang/vendor/filament-actions/ko/notifications.php new file mode 100644 index 0000000..1814ecd --- /dev/null +++ b/lang/vendor/filament-actions/ko/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => '너무 많은 시도', + 'body' => ':seconds초 후에 다시 시도해 주세요.', + ], + +]; diff --git a/lang/vendor/filament-actions/ko/replicate.php b/lang/vendor/filament-actions/ko/replicate.php new file mode 100644 index 0000000..b855f27 --- /dev/null +++ b/lang/vendor/filament-actions/ko/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => '복제', + + 'modal' => [ + + 'heading' => ':label 복제', + + 'actions' => [ + + 'replicate' => [ + 'label' => '복제', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => '복제 완료', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ko/restore.php b/lang/vendor/filament-actions/ko/restore.php new file mode 100644 index 0000000..3580a02 --- /dev/null +++ b/lang/vendor/filament-actions/ko/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => '복원', + + 'modal' => [ + + 'heading' => ':label 복원', + + 'actions' => [ + + 'restore' => [ + 'label' => '복원', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => '복원 완료', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '선택한 항목 복원', + + 'modal' => [ + + 'heading' => '선택한 :label 복원', + + 'actions' => [ + + 'restore' => [ + 'label' => '복원', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => '복원 완료', + ], + + 'restored_partial' => [ + 'title' => ':total 중 :count개 복원됨', + 'missing_authorization_failure_message' => ':count개를 복원할 권한이 없습니다.', + 'missing_processing_failure_message' => ':count개를 복원할 수 없습니다.', + ], + + 'restored_none' => [ + 'title' => '복원 실패', + 'missing_authorization_failure_message' => ':count개를 복원할 권한이 없습니다.', + 'missing_processing_failure_message' => ':count개를 복원할 수 없습니다.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ko/view.php b/lang/vendor/filament-actions/ko/view.php new file mode 100644 index 0000000..66d1ad8 --- /dev/null +++ b/lang/vendor/filament-actions/ko/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => '보기', + + 'modal' => [ + + 'heading' => ':label 보기', + + 'actions' => [ + + 'close' => [ + 'label' => '닫기', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ku/associate.php b/lang/vendor/filament-actions/ku/associate.php new file mode 100644 index 0000000..e25fd89 --- /dev/null +++ b/lang/vendor/filament-actions/ku/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'هاوبەشکردن', + + 'modal' => [ + + 'heading' => 'هاوبەشکردنی :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'تۆمار', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'هاوبەشکردن', + ], + + 'associate_another' => [ + 'label' => 'هاوبەشکردن و تۆمارێکی تر', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'هاوبەشکراو', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ku/attach.php b/lang/vendor/filament-actions/ku/attach.php new file mode 100644 index 0000000..6144487 --- /dev/null +++ b/lang/vendor/filament-actions/ku/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'لکاندن', + + 'modal' => [ + + 'heading' => 'لکاندنی :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'تۆمار', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'لکاندن', + ], + + 'attach_another' => [ + 'label' => 'لکاندن و تۆمارێکی تر', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'لکێنرا', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ku/create.php b/lang/vendor/filament-actions/ku/create.php new file mode 100644 index 0000000..e253343 --- /dev/null +++ b/lang/vendor/filament-actions/ku/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'دروستکردنی :label', + + 'modal' => [ + + 'heading' => ':دروستکردنی :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'دروستکردن', + ], + + 'create_another' => [ + 'label' => 'دروستکردن و تۆمارێکی تر', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'دروستکرا', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ku/delete.php b/lang/vendor/filament-actions/ku/delete.php new file mode 100644 index 0000000..a6f7ba7 --- /dev/null +++ b/lang/vendor/filament-actions/ku/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'سڕینەوە', + + 'modal' => [ + + 'heading' => 'سڕینەوەی :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'سڕینەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'سڕدرایەوە', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'سڕینەوەی دیاریکراوەکان', + + 'modal' => [ + + 'heading' => 'سڕینەوەی دیاریکراوەکانی :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'سڕینەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'سڕدرایەوە', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ku/detach.php b/lang/vendor/filament-actions/ku/detach.php new file mode 100644 index 0000000..2b9b52b --- /dev/null +++ b/lang/vendor/filament-actions/ku/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'سەربەخۆکردن', + + 'modal' => [ + + 'heading' => 'سەربەخۆکردنی :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'سەربەخۆکردن', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'سەربەخۆکرا', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'سەربەخۆکردنی دیاریکراوەکان', + + 'modal' => [ + + 'heading' => 'سەربەخۆکردنی دیاریکراوەکانی :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'سەربەخۆکردن', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'سەربەخۆکرا', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ku/dissociate.php b/lang/vendor/filament-actions/ku/dissociate.php new file mode 100644 index 0000000..b79a824 --- /dev/null +++ b/lang/vendor/filament-actions/ku/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'جوداکردن', + + 'modal' => [ + + 'heading' => 'جوداکردنی :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'جوداکردن', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'جوداکرا', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'جوداکردنی دیاریکراوەکان', + + 'modal' => [ + + 'heading' => 'جوداکردنی دیاریکراوەکانی :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'جوداکردن', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'جوداکرا', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ku/edit.php b/lang/vendor/filament-actions/ku/edit.php new file mode 100644 index 0000000..cdfc331 --- /dev/null +++ b/lang/vendor/filament-actions/ku/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'دەستکارکردن', + + 'modal' => [ + + 'heading' => 'دەستکارکردنی :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'نوێکردنەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'نوێکرایەوە', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ku/force-delete.php b/lang/vendor/filament-actions/ku/force-delete.php new file mode 100644 index 0000000..c984bf3 --- /dev/null +++ b/lang/vendor/filament-actions/ku/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'سڕینەوەی بەهێز', + + 'modal' => [ + + 'heading' => 'سڕینەوەی بەهێزی :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'سڕینەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'سڕدرایەوە', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'سڕینەوەی بەهێزی دیاریکراوەکان', + + 'modal' => [ + + 'heading' => 'سڕینەوەی بەهێزی دیاریکراوەکانی :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'سڕینەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'سڕدرایەوە', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ku/group.php b/lang/vendor/filament-actions/ku/group.php new file mode 100644 index 0000000..700a02e --- /dev/null +++ b/lang/vendor/filament-actions/ku/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'کردارەکان', + ], + +]; diff --git a/lang/vendor/filament-actions/ku/modal.php b/lang/vendor/filament-actions/ku/modal.php new file mode 100644 index 0000000..fff5d52 --- /dev/null +++ b/lang/vendor/filament-actions/ku/modal.php @@ -0,0 +1,23 @@ + 'ئایە دڵنیای لە کردنی ئەم کارە؟', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'پاشگەزبوونەوە', + ], + + 'confirm' => [ + 'label' => 'دڵنیام', + ], + + 'submit' => [ + 'label' => 'ناردن', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ku/replicate.php b/lang/vendor/filament-actions/ku/replicate.php new file mode 100644 index 0000000..6fa5317 --- /dev/null +++ b/lang/vendor/filament-actions/ku/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'لەبەرگرتنەوە', + + 'modal' => [ + + 'heading' => 'لەبەرگرتنەوەی :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'لەبەرگرتنەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'لەبەرگیرایەوە', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ku/restore.php b/lang/vendor/filament-actions/ku/restore.php new file mode 100644 index 0000000..1567946 --- /dev/null +++ b/lang/vendor/filament-actions/ku/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'گێڕانەوە', + + 'modal' => [ + + 'heading' => 'گێڕانەوەی :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'گێڕانەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'گێڕێندرایەوە', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'گێڕانەوەی دیاریکراوەکان', + + 'modal' => [ + + 'heading' => 'گێڕانەوەی دیاریکراوەکانی :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'گێڕانەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'گێڕێندرایەوە', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ku/view.php b/lang/vendor/filament-actions/ku/view.php new file mode 100644 index 0000000..d6c9542 --- /dev/null +++ b/lang/vendor/filament-actions/ku/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'بینین', + + 'modal' => [ + + 'heading' => 'بینینی :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'داخستن', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lt/associate.php b/lang/vendor/filament-actions/lt/associate.php new file mode 100644 index 0000000..f3b457a --- /dev/null +++ b/lang/vendor/filament-actions/lt/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Susieti', + + 'modal' => [ + + 'heading' => 'Susieti :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Įrašas', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Susieta', + ], + + 'associate_another' => [ + 'label' => 'Susieti ir susieti kitą', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Susieta', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lt/attach.php b/lang/vendor/filament-actions/lt/attach.php new file mode 100644 index 0000000..945c29e --- /dev/null +++ b/lang/vendor/filament-actions/lt/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Pridėti', + + 'modal' => [ + + 'heading' => 'Pridėti :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Įrašas', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Pridėti', + ], + + 'attach_another' => [ + 'label' => 'Pridėti ir pridėti kitą', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Pridėta', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lt/create.php b/lang/vendor/filament-actions/lt/create.php new file mode 100644 index 0000000..b09d6dc --- /dev/null +++ b/lang/vendor/filament-actions/lt/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Sukurti :label', + + 'modal' => [ + + 'heading' => 'Sukurti :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Sukurti', + ], + + 'create_another' => [ + 'label' => 'Sukurti ir sukurti naują', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Sukurta', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lt/delete.php b/lang/vendor/filament-actions/lt/delete.php new file mode 100644 index 0000000..e0bfad2 --- /dev/null +++ b/lang/vendor/filament-actions/lt/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Ištrinti', + + 'modal' => [ + + 'heading' => 'Ištrinti :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ištrinti', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Ištrinta', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Ištrinti pasirinktus', + + 'modal' => [ + + 'heading' => 'Ištrinti pasirinktus :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ištrinti', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Ištrinta', + ], + + 'deleted_partial' => [ + 'title' => 'Ištrinta :count iš :total', + 'missing_authorization_failure_message' => 'Neturite leidimo ištrinti :count.', + 'missing_processing_failure_message' => ':count negalėjo būti ištrinta.', + ], + + 'deleted_none' => [ + 'title' => 'Nepavyko ištrinti', + 'missing_authorization_failure_message' => 'Neturite leidimo ištrinti :count.', + 'missing_processing_failure_message' => ':count negalėjo būti ištrinta.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lt/detach.php b/lang/vendor/filament-actions/lt/detach.php new file mode 100644 index 0000000..8c08073 --- /dev/null +++ b/lang/vendor/filament-actions/lt/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Atskirti', + + 'modal' => [ + + 'heading' => 'Atskirti :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Atskirti', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Atskirta', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Atskirti pasirinktus', + + 'modal' => [ + + 'heading' => 'Atskirti pasirinktus :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Atskirti', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Atskirta', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lt/dissociate.php b/lang/vendor/filament-actions/lt/dissociate.php new file mode 100644 index 0000000..b5fe8c8 --- /dev/null +++ b/lang/vendor/filament-actions/lt/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Atsieti', + + 'modal' => [ + + 'heading' => 'Atsieti :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Atsieti', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Atsieta', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Atsieti pasirinktus', + + 'modal' => [ + + 'heading' => 'Atsieti pasirinktus :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Atsieti', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Atsieta', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lt/edit.php b/lang/vendor/filament-actions/lt/edit.php new file mode 100644 index 0000000..3877250 --- /dev/null +++ b/lang/vendor/filament-actions/lt/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Redaguoti', + + 'modal' => [ + + 'heading' => 'Redaguoti :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Išsaugoti pakeitimus', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Išsaugota', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lt/export.php b/lang/vendor/filament-actions/lt/export.php new file mode 100644 index 0000000..45ccb64 --- /dev/null +++ b/lang/vendor/filament-actions/lt/export.php @@ -0,0 +1,94 @@ + 'Eksportuoti :label', + + 'modal' => [ + + 'heading' => 'Eksportuoti :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Stulpeliai', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Pažymėti visus', + ], + + 'deselect_all' => [ + 'label' => 'Atžymėti visus', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column įjungtas', + ], + + 'label' => [ + 'label' => ':column label', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Eksportuoti', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Eksportas baigtas', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Atsisiųsti .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Atsisiųsti .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Eksportas per didelis', + 'body' => 'Negalite eksportuoti daugiau nei 1 eilutės vienu metu.|Negalite eksportuoti daugiau nei :count eilučių vienu metu.', + ], + + 'no_columns' => [ + 'title' => 'Nepasirinkti stulpeliai', + 'body' => 'Prašome pasirinkti bent vieną stulpelį eksportui.', + ], + + 'started' => [ + 'title' => 'Eksportas pradėtas', + 'body' => 'Eksportas pradėtas ir 1 eilutė bus apdorota fone.|Eksportas pradėtas ir :count eilutės bus apdorotos fone.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/lt/force-delete.php b/lang/vendor/filament-actions/lt/force-delete.php new file mode 100644 index 0000000..a90509f --- /dev/null +++ b/lang/vendor/filament-actions/lt/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Priverstinai ištrinti', + + 'modal' => [ + + 'heading' => 'Priverstinai ištrinti :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ištrinti', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Ištrinta', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Priverstinai ištrinti pasirinktus', + + 'modal' => [ + + 'heading' => 'Priverstinai ištrinti pasirinktus :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ištrinti', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Ištrinta', + ], + + 'deleted_partial' => [ + 'title' => 'Ištrinta :count iš :total', + 'missing_authorization_failure_message' => 'Neturite leidimo ištrinti :count.', + 'missing_processing_failure_message' => ':count negalėjo būti ištrinta.', + ], + + 'deleted_none' => [ + 'title' => 'Nepavyko ištrinti', + 'missing_authorization_failure_message' => 'Neturite leidimo ištrinti :count.', + 'missing_processing_failure_message' => ':count negalėjo būti ištrinta.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lt/group.php b/lang/vendor/filament-actions/lt/group.php new file mode 100644 index 0000000..17c8ce6 --- /dev/null +++ b/lang/vendor/filament-actions/lt/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Veiksmai', + ], + +]; diff --git a/lang/vendor/filament-actions/lt/import.php b/lang/vendor/filament-actions/lt/import.php new file mode 100644 index 0000000..ebd19ca --- /dev/null +++ b/lang/vendor/filament-actions/lt/import.php @@ -0,0 +1,83 @@ + 'Importuoti :label', + + 'modal' => [ + + 'heading' => 'Importuoti :label', + + 'form' => [ + + 'file' => [ + 'label' => 'Failas', + + 'placeholder' => 'Įkelti CSV failą', + + 'rules' => [ + 'duplicate_columns' => '{0} Failas neturi turėti daugiau nei vieną tuščią stulpelio antraštę.|{1,*} Failas neturi turėti pasikartojančių stulpelio antraščių: :columns.', + ], + ], + + 'columns' => [ + 'label' => 'Stulpeliai', + 'placeholder' => 'Pasirinkite stulpelį', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Atsisiųsti CSV pavyzdį', + ], + + 'import' => [ + 'label' => 'Importuoti', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Importas atliktas', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Atsisiųsti informaciją apie nepavykusią eilutę|Atsisiųsti informaciją apie nepavykusias eilutes', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Įkeltas CSV filas per didelis', + 'body' => 'Negalite importuoti daugiau nei 1 eilutės vienu metu.|Negalite importuoti dagiau nei :count eilučių vienu metu.', + ], + + 'started' => [ + 'title' => 'Importas pradėtas', + 'body' => 'Importas pradėtas ir 1 eilutė bus apdorojama fone.|Importas pradėtas ir :count eilutės bus apdorojamos fone.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'klaida', + 'system_error' => 'Sistemos klaida, susisiekite su klientų aptarnavimu.', + 'column_mapping_required_for_new_record' => 'Stulpelis :attribute nebuvo susietas su failo stulpeliu, tačiau jis yra būtinas naujiems įrašams kurti.', + ], + +]; diff --git a/lang/vendor/filament-actions/lt/modal.php b/lang/vendor/filament-actions/lt/modal.php new file mode 100644 index 0000000..931cacd --- /dev/null +++ b/lang/vendor/filament-actions/lt/modal.php @@ -0,0 +1,23 @@ + 'Ar tikrai norite tai atlikti?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Atšaukti', + ], + + 'confirm' => [ + 'label' => 'Patvirtinti', + ], + + 'submit' => [ + 'label' => 'Pateikti', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lt/notifications.php b/lang/vendor/filament-actions/lt/notifications.php new file mode 100644 index 0000000..fd0e0fb --- /dev/null +++ b/lang/vendor/filament-actions/lt/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Per daug bandymų', + 'body' => 'Prašome bandyti dar kartą po :seconds sekundžių.', + ], + +]; diff --git a/lang/vendor/filament-actions/lt/replicate.php b/lang/vendor/filament-actions/lt/replicate.php new file mode 100644 index 0000000..2037884 --- /dev/null +++ b/lang/vendor/filament-actions/lt/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Atkartoti', + + 'modal' => [ + + 'heading' => 'Atkartoti :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Atkartoti', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Atkartota', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lt/restore.php b/lang/vendor/filament-actions/lt/restore.php new file mode 100644 index 0000000..2930590 --- /dev/null +++ b/lang/vendor/filament-actions/lt/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Atkurti', + + 'modal' => [ + + 'heading' => 'Atkurti :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Atkurti', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Atkurta', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Atkurti pasirinktus', + + 'modal' => [ + + 'heading' => 'Atkurti pasirinktus :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Atkurti', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Atkurta', + ], + + 'restored_partial' => [ + 'title' => 'Atkurta :count iš :total', + 'missing_authorization_failure_message' => 'Neturite leidimo atkurti :count.', + 'missing_processing_failure_message' => ':count negalėjo būti atkurta.', + ], + + 'restored_none' => [ + 'title' => 'Nepavyko atkurti', + 'missing_authorization_failure_message' => 'Neturite leidimo atkurti :count.', + 'missing_processing_failure_message' => ':count negalėjo būti atkurta.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lt/view.php b/lang/vendor/filament-actions/lt/view.php new file mode 100644 index 0000000..f540689 --- /dev/null +++ b/lang/vendor/filament-actions/lt/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Peržiūrėti', + + 'modal' => [ + + 'heading' => 'Peržiūrėti :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Uždaryti', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lus/associate.php b/lang/vendor/filament-actions/lus/associate.php new file mode 100644 index 0000000..e5b4050 --- /dev/null +++ b/lang/vendor/filament-actions/lus/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Inzawmna', + + 'modal' => [ + + 'heading' => ':Label inzawmna', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Record', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Inzawmna', + ], + + 'associate_another' => [ + 'label' => 'Pakhat zawm a adang zawm lehna', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'A inzawm khâwm e.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lus/attach.php b/lang/vendor/filament-actions/lus/attach.php new file mode 100644 index 0000000..62f1208 --- /dev/null +++ b/lang/vendor/filament-actions/lus/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Behtîrna', + + 'modal' => [ + + 'heading' => ':Label behtîrna', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Record', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Behtîrna', + ], + + 'attach_another' => [ + 'label' => 'Pakhat behtîra adang behtîr lehna', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Behtîr a ni e.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lus/create.php b/lang/vendor/filament-actions/lus/create.php new file mode 100644 index 0000000..6eb9835 --- /dev/null +++ b/lang/vendor/filament-actions/lus/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => ':Label siamna', + + 'modal' => [ + + 'heading' => ':Label siamna', + + 'actions' => [ + + 'create' => [ + 'label' => 'Siamna', + ], + + 'create_another' => [ + 'label' => 'Pakhat siama adang siam lehna', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'A thar siam ani.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lus/delete.php b/lang/vendor/filament-actions/lus/delete.php new file mode 100644 index 0000000..72d3540 --- /dev/null +++ b/lang/vendor/filament-actions/lus/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Thai bona', + + 'modal' => [ + + 'heading' => ':Label thai bona', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Thai bona', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Thai bo ani e.', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Thlanho thai bona', + + 'modal' => [ + + 'heading' => ':Label thlanho thai bona', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Thai bona', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Thai bo ani e.', + ], + + 'deleted_partial' => [ + 'title' => ':total atanga :count thai bo ani.', + 'missing_authorization_failure_message' => 'Hemi :count thai bo phalna I neilo.', + 'missing_processing_failure_message' => ':count hi a thai bo theihloh.', + ], + + 'deleted_none' => [ + 'title' => 'Thai bo tumna a hlawhchham', + 'missing_authorization_failure_message' => 'Hemi :count thai bo phalna I neilo.', + 'missing_processing_failure_message' => ':count hi a thai bo theihloh.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lus/detach.php b/lang/vendor/filament-actions/lus/detach.php new file mode 100644 index 0000000..4b56063 --- /dev/null +++ b/lang/vendor/filament-actions/lus/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Thlawnna', + + 'modal' => [ + + 'heading' => ':Label thlawnna', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Thlawnna', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Thlawn a ni e.', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Thlan ho thlawn thenna', + + 'modal' => [ + + 'heading' => ':Label thlan ho thlawn thenna', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Thlawnna', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Thlawn ṭhen a ni e.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lus/dissociate.php b/lang/vendor/filament-actions/lus/dissociate.php new file mode 100644 index 0000000..2e92897 --- /dev/null +++ b/lang/vendor/filament-actions/lus/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Phelhna', + + 'modal' => [ + + 'heading' => ':Label Phelhna', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Phelhna', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Phelh a ni e.', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Thlan ho phelh thenna', + + 'modal' => [ + + 'heading' => ':Label thlan ho phelh thenna', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Phelhna', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Phelh a ni e.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lus/edit.php b/lang/vendor/filament-actions/lus/edit.php new file mode 100644 index 0000000..de60070 --- /dev/null +++ b/lang/vendor/filament-actions/lus/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Tihdikna', + + 'modal' => [ + + 'heading' => ':Label tihdikna', + + 'actions' => [ + + 'save' => [ + 'label' => 'Thlâkthlengna', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'A in thlâkthleng e.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lus/export.php b/lang/vendor/filament-actions/lus/export.php new file mode 100644 index 0000000..8cbb44c --- /dev/null +++ b/lang/vendor/filament-actions/lus/export.php @@ -0,0 +1,94 @@ + ':Label dah chhuahna', + + 'modal' => [ + + 'heading' => ':Label dah chhuahna', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Columns', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Avaia thlanna', + ], + + 'deselect_all' => [ + 'label' => 'Avaia paih na', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column enabled', + ], + + 'label' => [ + 'label' => ':column label', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Dah chhuahna', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Dah chhuah a zo e.', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Download .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Download .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Dah chhuah tum hi a lian lutuk', + 'body' => 'Vawikhatah row 1 ai a tam a dah chhuah theiloh.|Vawikhatah rows :count ai a tam a dah chhuah theiloh', + ], + + 'no_columns' => [ + 'title' => 'Column thlan a awmlo', + 'body' => 'Khawngaihin dah chhuak turin column pakhat tal thlang rawh.', + ], + + 'started' => [ + 'title' => 'Dah chhuah a intan e', + 'body' => 'I dah chhuah a intan a, row 1 background ah a insiam ang. A zawh hunah download link awmna nen hriattîrna i dawng ang.|I dahchhuah a intan a, rows :count background ah a insiam ang. A zawh hunah download link awmna nen hriattîrna i dawng ang.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/lus/force-delete.php b/lang/vendor/filament-actions/lus/force-delete.php new file mode 100644 index 0000000..0ab36e9 --- /dev/null +++ b/lang/vendor/filament-actions/lus/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Thai bo hlenna', + + 'modal' => [ + + 'heading' => ':Label thai bo hlenna', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Thai bona', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Thai bo ani e.', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Thlanho thai bo hlenna', + + 'modal' => [ + + 'heading' => ':Label thlanho thai bo hlenna', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Thai bona', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Thai bo ani e.', + ], + + 'deleted_partial' => [ + 'title' => ':total atanga :count thai bo ani.', + 'missing_authorization_failure_message' => 'Hemi :count thai bo phalna I neilo.', + 'missing_processing_failure_message' => ':count hi a thai bo theihloh.', + ], + + 'deleted_none' => [ + 'title' => 'Thai bo tumna a hlawhchham', + 'missing_authorization_failure_message' => 'Hemi :count thai bo phalna I neilo.', + 'missing_processing_failure_message' => ':count hi a thai bo theihloh.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lus/group.php b/lang/vendor/filament-actions/lus/group.php new file mode 100644 index 0000000..349407e --- /dev/null +++ b/lang/vendor/filament-actions/lus/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Thiltihna', + ], + +]; diff --git a/lang/vendor/filament-actions/lus/import.php b/lang/vendor/filament-actions/lus/import.php new file mode 100644 index 0000000..07cfcc6 --- /dev/null +++ b/lang/vendor/filament-actions/lus/import.php @@ -0,0 +1,85 @@ + ':Label lâkluhna', + + 'modal' => [ + + 'heading' => ':Label lâkluhna', + + 'form' => [ + + 'file' => [ + + 'label' => 'File', + + 'placeholder' => 'CSV file upload rawh', + + 'rules' => [ + 'duplicate_columns' => '{0} File hian column header awmlo pakhat aia tam anei theilo.|{1,*} File hian column header in ang a nei theilo: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Columns', + 'placeholder' => 'Column thlang rawh', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'CSV example file download rawh', + ], + + 'import' => [ + 'label' => 'Lâkluhna', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Lâkluh a zo e.', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'A hlawhchham na chhan download rawh|A hlawhchham na chhan te download rawh', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'CSV file upload hi a lian lutuk', + 'body' => 'Vawikhatah row 1 ai a tam a lâkluh theiloh.|Vawikhatah rows :count ai a tam a lâkluh theiloh', + ], + + 'started' => [ + 'title' => 'Lâkluh a intan e.', + 'body' => 'I lâkluh a intan a, row 1 background ah a insiam ang.|I lâkluh a intan a, rows :count background ah a insiam ang.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'error', + 'system_error' => 'System error, please contact support.', + 'column_mapping_required_for_new_record' => 'He :attribute column hi file a column nen a inmil lo, mahse records thar siamnan indah mil ngei a ngai.', + ], + +]; diff --git a/lang/vendor/filament-actions/lus/modal.php b/lang/vendor/filament-actions/lus/modal.php new file mode 100644 index 0000000..7b932f8 --- /dev/null +++ b/lang/vendor/filament-actions/lus/modal.php @@ -0,0 +1,23 @@ + 'He thil hi iti duh tak tak em?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Sûtna', + ], + + 'confirm' => [ + 'label' => 'Nemnghehna', + ], + + 'submit' => [ + 'label' => 'Theh lûhna', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lus/notifications.php b/lang/vendor/filament-actions/lus/notifications.php new file mode 100644 index 0000000..3355306 --- /dev/null +++ b/lang/vendor/filament-actions/lus/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Tumna a tam lutuk', + 'body' => 'Khawngaihin seconds :seconds hnuah ti nawn leh rawh.', + ], + +]; diff --git a/lang/vendor/filament-actions/lus/replicate.php b/lang/vendor/filament-actions/lus/replicate.php new file mode 100644 index 0000000..c420476 --- /dev/null +++ b/lang/vendor/filament-actions/lus/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Anpui siamna', + + 'modal' => [ + + 'heading' => ':Label anpui siamna', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Anpui siamna', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Anpui siam ani e.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lus/restore.php b/lang/vendor/filament-actions/lus/restore.php new file mode 100644 index 0000000..b6599ad --- /dev/null +++ b/lang/vendor/filament-actions/lus/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Ngai awhtîr lehna', + + 'modal' => [ + + 'heading' => ':Label ngai awhtîr lehna', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Ngai awhtîr lehna', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Ngai awhtîr leh ani e.', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Thlanho ngai awhtîr lehna', + + 'modal' => [ + + 'heading' => ':Label thlanho ngai awhtîr lehna', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Ngai awhtîr lehna', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Ngai awhtîr leh ani e.', + ], + + 'restored_partial' => [ + 'title' => ':total atanga :count ngai awhtîr leh ani.', + 'missing_authorization_failure_message' => 'Hemi :count ngai awhtîr leh tur hian phalna I neilo.', + 'missing_processing_failure_message' => ':count hi ngai a awhtîr leh theihloh.', + ], + + 'restored_none' => [ + 'title' => 'Ngai awhtîr leh tumna a hlawhchham', + 'missing_authorization_failure_message' => 'Hemi :count ngai awhtîr leh tur hian phalna I neilo.', + 'missing_processing_failure_message' => ':count hi ngai a awhtîr leh theihloh.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lus/view.php b/lang/vendor/filament-actions/lus/view.php new file mode 100644 index 0000000..545bdd1 --- /dev/null +++ b/lang/vendor/filament-actions/lus/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Enna', + + 'modal' => [ + + 'heading' => ':Label enna', + + 'actions' => [ + + 'close' => [ + 'label' => 'Khârna', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lv/associate.php b/lang/vendor/filament-actions/lv/associate.php new file mode 100644 index 0000000..1f8cd17 --- /dev/null +++ b/lang/vendor/filament-actions/lv/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Saistīt', + + 'modal' => [ + + 'heading' => 'Saistīt :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Ieraksts', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Saistīt', + ], + + 'associate_another' => [ + 'label' => 'Saistīt & saistīt citu', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Saistīts', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lv/attach.php b/lang/vendor/filament-actions/lv/attach.php new file mode 100644 index 0000000..45b7cbb --- /dev/null +++ b/lang/vendor/filament-actions/lv/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Pievienot', + + 'modal' => [ + + 'heading' => 'Pievienot :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Ieraksts', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Pievienot', + ], + + 'attach_another' => [ + 'label' => 'Pievienot & pievienot citu', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Pievienots', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lv/create.php b/lang/vendor/filament-actions/lv/create.php new file mode 100644 index 0000000..b24b44b --- /dev/null +++ b/lang/vendor/filament-actions/lv/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Jauns :label', + + 'modal' => [ + + 'heading' => 'Izveidot :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Izveidot', + ], + + 'create_another' => [ + 'label' => 'Izveidot & izveidot citu', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Izveidots', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lv/delete.php b/lang/vendor/filament-actions/lv/delete.php new file mode 100644 index 0000000..ab72d89 --- /dev/null +++ b/lang/vendor/filament-actions/lv/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Dzēst', + + 'modal' => [ + + 'heading' => 'Dzēst :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Dzēst', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Dzēsts', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Dzēst izvēlētos', + + 'modal' => [ + + 'heading' => 'Dzēst izvēlētos :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Dzēst', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Dzēsts', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lv/detach.php b/lang/vendor/filament-actions/lv/detach.php new file mode 100644 index 0000000..e781988 --- /dev/null +++ b/lang/vendor/filament-actions/lv/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Atvienot', + + 'modal' => [ + + 'heading' => 'Atvienot :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Atvienot', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Atvienots', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Atvienot izvēlētos', + + 'modal' => [ + + 'heading' => 'Atvienot izvēlētos :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Atvienot', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Atvienots', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lv/dissociate.php b/lang/vendor/filament-actions/lv/dissociate.php new file mode 100644 index 0000000..060b1a3 --- /dev/null +++ b/lang/vendor/filament-actions/lv/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Atdalīt', + + 'modal' => [ + + 'heading' => 'Atdalīt :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Atdalīt', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Atdalīts', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Atdalīt izvēlētos', + + 'modal' => [ + + 'heading' => 'Atdalīt izvēlētos :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Atdalīt', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Atdalīts', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lv/edit.php b/lang/vendor/filament-actions/lv/edit.php new file mode 100644 index 0000000..adbcec7 --- /dev/null +++ b/lang/vendor/filament-actions/lv/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Rediģēt', + + 'modal' => [ + + 'heading' => 'Rediģēt :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Saglabāt izmaiņas', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Saglabāts', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lv/force-delete.php b/lang/vendor/filament-actions/lv/force-delete.php new file mode 100644 index 0000000..2bb1201 --- /dev/null +++ b/lang/vendor/filament-actions/lv/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Piespiedu kārtā dzēst', + + 'modal' => [ + + 'heading' => 'Piespiedu kārtā dzēst :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Dzēst', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Dzēsts', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Piespiedu kārtā dzēst izvēlētos', + + 'modal' => [ + + 'heading' => 'Piespiedu kārtā dzēst izvēlētos :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Dzēst', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Dzēsts', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lv/group.php b/lang/vendor/filament-actions/lv/group.php new file mode 100644 index 0000000..fc46749 --- /dev/null +++ b/lang/vendor/filament-actions/lv/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Darbības', + ], + +]; diff --git a/lang/vendor/filament-actions/lv/modal.php b/lang/vendor/filament-actions/lv/modal.php new file mode 100644 index 0000000..b750449 --- /dev/null +++ b/lang/vendor/filament-actions/lv/modal.php @@ -0,0 +1,23 @@ + 'Vai tiešām vēlaties to darīt?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Atcelt', + ], + + 'confirm' => [ + 'label' => 'Apstiprināt', + ], + + 'submit' => [ + 'label' => 'Iesniegt', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lv/replicate.php b/lang/vendor/filament-actions/lv/replicate.php new file mode 100644 index 0000000..ef067d9 --- /dev/null +++ b/lang/vendor/filament-actions/lv/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Atkārtot', + + 'modal' => [ + + 'heading' => 'Atkārtot :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Atkārtot', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Atkārtots', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lv/restore.php b/lang/vendor/filament-actions/lv/restore.php new file mode 100644 index 0000000..79fb052 --- /dev/null +++ b/lang/vendor/filament-actions/lv/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Atjaunot', + + 'modal' => [ + + 'heading' => 'Atjaunot :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Atjaunot', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Atjaunots', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Atjaunot izvēlētos', + + 'modal' => [ + + 'heading' => 'Atjaunot izvēlētos :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Atjaunot', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Atjaunots', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/lv/view.php b/lang/vendor/filament-actions/lv/view.php new file mode 100644 index 0000000..fdbb267 --- /dev/null +++ b/lang/vendor/filament-actions/lv/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Skatīt', + + 'modal' => [ + + 'heading' => 'Skatīt :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Aizvērt', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mk/associate.php b/lang/vendor/filament-actions/mk/associate.php new file mode 100644 index 0000000..6db5f9e --- /dev/null +++ b/lang/vendor/filament-actions/mk/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Поврзи', + + 'modal' => [ + + 'heading' => 'Поврзи :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Запис', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Поврзи', + ], + + 'associate_another' => [ + 'label' => 'Поврзи и поврзи нов', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Поврзано', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mk/attach.php b/lang/vendor/filament-actions/mk/attach.php new file mode 100644 index 0000000..45462a5 --- /dev/null +++ b/lang/vendor/filament-actions/mk/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Прикачи', + + 'modal' => [ + + 'heading' => 'Прикачи :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Запис', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Прикачи', + ], + + 'attach_another' => [ + 'label' => 'Прикачи и прикачи друг', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Прикачено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mk/create.php b/lang/vendor/filament-actions/mk/create.php new file mode 100644 index 0000000..a443088 --- /dev/null +++ b/lang/vendor/filament-actions/mk/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Нов :label', + + 'modal' => [ + + 'heading' => 'Креирај :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Креирај', + ], + + 'create_another' => [ + 'label' => 'Креирај и креирај друг', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Креирано', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mk/delete.php b/lang/vendor/filament-actions/mk/delete.php new file mode 100644 index 0000000..ecd61d5 --- /dev/null +++ b/lang/vendor/filament-actions/mk/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Избриши', + + 'modal' => [ + + 'heading' => 'Избриши :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Избриши', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Избришано', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Избриши избрани', + + 'modal' => [ + + 'heading' => 'Избриши избрани :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Избриши', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Избришано', + ], + + 'deleted_partial' => [ + 'title' => 'Избришани :count од :total', + 'missing_authorization_failure_message' => 'Немате дозвола да избришете :count.', + 'missing_processing_failure_message' => ':count не можаа да бидат избришани.', + ], + + 'deleted_none' => [ + 'title' => 'Неуспешно бришење', + 'missing_authorization_failure_message' => 'Немате дозвола да избришете :count.', + 'missing_processing_failure_message' => ':count не можаа да бидат избришани.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mk/detach.php b/lang/vendor/filament-actions/mk/detach.php new file mode 100644 index 0000000..c4e1230 --- /dev/null +++ b/lang/vendor/filament-actions/mk/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Откачи', + + 'modal' => [ + + 'heading' => 'Откачи :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Откачи', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Откачено', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Откачи избрани', + + 'modal' => [ + + 'heading' => 'Откачи избрани :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Откачи', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Откачено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mk/dissociate.php b/lang/vendor/filament-actions/mk/dissociate.php new file mode 100644 index 0000000..123173b --- /dev/null +++ b/lang/vendor/filament-actions/mk/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Одврзи', + + 'modal' => [ + + 'heading' => 'Одврзи :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Одврзи', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Одврзано', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Одврзи избрани', + + 'modal' => [ + + 'heading' => 'Одврзи избрани :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Одврзи', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Одврзано', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mk/edit.php b/lang/vendor/filament-actions/mk/edit.php new file mode 100644 index 0000000..a033f47 --- /dev/null +++ b/lang/vendor/filament-actions/mk/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Уреди', + + 'modal' => [ + + 'heading' => 'Уреди :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Зачувај промени', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Зачувано', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mk/export.php b/lang/vendor/filament-actions/mk/export.php new file mode 100644 index 0000000..87f86de --- /dev/null +++ b/lang/vendor/filament-actions/mk/export.php @@ -0,0 +1,94 @@ + 'Извези :label', + + 'modal' => [ + + 'heading' => 'Извези :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Колони', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Избери сите', + ], + + 'deselect_all' => [ + 'label' => 'Одбери сите', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column овозможено', + ], + + 'label' => [ + 'label' => ':column етикета', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Извези', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Извозот е завршен', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Преземи .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Преземи .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Извозот е преголем', + 'body' => 'Не можете да извезувате повеќе од 1 ред одеднаш.|Не можете да извезувате повеќе од :count редови одеднаш.', + ], + + 'no_columns' => [ + 'title' => 'Нема избрани колони', + 'body' => 'Ве молиме изберете барем една колона за извоз.', + ], + + 'started' => [ + 'title' => 'Извозот е започнат', + 'body' => 'Вашиот извоз започна и 1 ред ќе биде обработен во позадина. Ќе добиете известување со линк за преземање кога ќе заврши.|Вашиот извоз започна и :count редови ќе бидат обработени во позадина. Ќе добиете известување со линк за преземање кога ќе заврши.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/mk/force-delete.php b/lang/vendor/filament-actions/mk/force-delete.php new file mode 100644 index 0000000..5f94291 --- /dev/null +++ b/lang/vendor/filament-actions/mk/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Присилно избриши', + + 'modal' => [ + + 'heading' => 'Присилно избриши :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Избриши', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Избришано', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Присилно избриши избрани', + + 'modal' => [ + + 'heading' => 'Присилно избриши избрани :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Избриши', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Избришано', + ], + + 'deleted_partial' => [ + 'title' => 'Избришани :count од :total', + 'missing_authorization_failure_message' => 'Немате дозвола да избришете :count.', + 'missing_processing_failure_message' => ':count не можаа да бидат избришани.', + ], + + 'deleted_none' => [ + 'title' => 'Неуспешно бришење', + 'missing_authorization_failure_message' => 'Немате дозвола да избришете :count.', + 'missing_processing_failure_message' => ':count не можаа да бидат избришани.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mk/group.php b/lang/vendor/filament-actions/mk/group.php new file mode 100644 index 0000000..3b7fc61 --- /dev/null +++ b/lang/vendor/filament-actions/mk/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Акции', + ], + +]; diff --git a/lang/vendor/filament-actions/mk/import.php b/lang/vendor/filament-actions/mk/import.php new file mode 100644 index 0000000..1951781 --- /dev/null +++ b/lang/vendor/filament-actions/mk/import.php @@ -0,0 +1,85 @@ + 'Увези :label', + + 'modal' => [ + + 'heading' => 'Увези :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Датотека', + + 'placeholder' => 'Прикачи CSV датотека', + + 'rules' => [ + 'duplicate_columns' => '{0} Датотеката не смее да содржи повеќе од една празна колона за наслов.|{1,*} Датотеката не смее да содржи дуплирани колони за наслов: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Колони', + 'placeholder' => 'Избери колона', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Преземи пример CSV датотека', + ], + + 'import' => [ + 'label' => 'Увези', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Увозот е завршен', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Преземи информации за неуспешниот ред|Преземи информации за неуспешните редови', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Прикачената CSV датотека е преголема', + 'body' => 'Не можете да увезувате повеќе од 1 ред одеднаш.|Не можете да увезувате повеќе од :count редови одеднаш.', + ], + + 'started' => [ + 'title' => 'Увозот е започнат', + 'body' => 'Вашиот увоз започна и 1 ред ќе биде обработен во позадина.|Вашиот увоз започна и :count редови ќе бидат обработени во позадина.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'грешка', + 'system_error' => 'Системска грешка, ве молиме контактирајте со поддршка.', + 'column_mapping_required_for_new_record' => 'Колоната :attribute не беше мапирана на колона во датотеката, но е задолжителна за креирање на нови записи.', + ], + +]; diff --git a/lang/vendor/filament-actions/mk/modal.php b/lang/vendor/filament-actions/mk/modal.php new file mode 100644 index 0000000..46ff345 --- /dev/null +++ b/lang/vendor/filament-actions/mk/modal.php @@ -0,0 +1,23 @@ + 'Дали сте сигурни дека сакате да го направите ова?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Откажи', + ], + + 'confirm' => [ + 'label' => 'Потврди', + ], + + 'submit' => [ + 'label' => 'Поднеси', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mk/notifications.php b/lang/vendor/filament-actions/mk/notifications.php new file mode 100644 index 0000000..6d7d538 --- /dev/null +++ b/lang/vendor/filament-actions/mk/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Премногу обиди', + 'body' => 'Ве молиме обидете се повторно за :seconds секунди.', + ], + +]; diff --git a/lang/vendor/filament-actions/mk/replicate.php b/lang/vendor/filament-actions/mk/replicate.php new file mode 100644 index 0000000..15237e8 --- /dev/null +++ b/lang/vendor/filament-actions/mk/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Реплицирај', + + 'modal' => [ + + 'heading' => 'Реплицирај :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Реплицирај', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Реплицирано', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mk/restore.php b/lang/vendor/filament-actions/mk/restore.php new file mode 100644 index 0000000..151522d --- /dev/null +++ b/lang/vendor/filament-actions/mk/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Врати', + + 'modal' => [ + + 'heading' => 'Врати :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Врати', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Вратено', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Врати избрани', + + 'modal' => [ + + 'heading' => 'Врати избрани :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Врати', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Вратено', + ], + + 'restored_partial' => [ + 'title' => 'Вратени :count од :total', + 'missing_authorization_failure_message' => 'Немате дозвола да вратите :count.', + 'missing_processing_failure_message' => ':count не можаа да бидат вратени.', + ], + + 'restored_none' => [ + 'title' => 'Неуспешно враќање', + 'missing_authorization_failure_message' => 'Немате дозвола да вратите :count.', + 'missing_processing_failure_message' => ':count не можаа да бидат вратени.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mk/view.php b/lang/vendor/filament-actions/mk/view.php new file mode 100644 index 0000000..ef3e210 --- /dev/null +++ b/lang/vendor/filament-actions/mk/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Погледни', + + 'modal' => [ + + 'heading' => 'Погледни :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Затвори', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mn/associate.php b/lang/vendor/filament-actions/mn/associate.php new file mode 100644 index 0000000..4b38056 --- /dev/null +++ b/lang/vendor/filament-actions/mn/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Харилцан холбоос', + + 'modal' => [ + + 'heading' => 'Холбох :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Бичлэг', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Холбох', + ], + + 'associate_another' => [ + 'label' => 'Хадгалаад & ахиад шинийг үүсгэх', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Холбоос үүсэв', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mn/attach.php b/lang/vendor/filament-actions/mn/attach.php new file mode 100644 index 0000000..a62f5e8 --- /dev/null +++ b/lang/vendor/filament-actions/mn/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Хавсаргах', + + 'modal' => [ + + 'heading' => 'Хавсаргах :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Бичлэг', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Хавсаргах', + ], + + 'attach_another' => [ + 'label' => 'Хадгалаад & ахиад шинийг үүсгэх', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Амжилттай', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mn/create.php b/lang/vendor/filament-actions/mn/create.php new file mode 100644 index 0000000..2517d36 --- /dev/null +++ b/lang/vendor/filament-actions/mn/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Шинэ :label', + + 'modal' => [ + + 'heading' => 'Шинэ :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Шинэ', + ], + + 'create_another' => [ + 'label' => 'Хадгалаад & дахин шинийг үүсгэх', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Үүсэв', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mn/delete.php b/lang/vendor/filament-actions/mn/delete.php new file mode 100644 index 0000000..9b1afc3 --- /dev/null +++ b/lang/vendor/filament-actions/mn/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Устгах', + + 'modal' => [ + + 'heading' => 'Устгах :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Устгах', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Устгасан', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Сонгосонг устгах', + + 'modal' => [ + + 'heading' => 'Устгах :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Устгах', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Устгасан', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mn/detach.php b/lang/vendor/filament-actions/mn/detach.php new file mode 100644 index 0000000..d1de6be --- /dev/null +++ b/lang/vendor/filament-actions/mn/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Салгах', + + 'modal' => [ + + 'heading' => 'Салгах :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Салгах', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Салгасан', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Сонгосонг салгах', + + 'modal' => [ + + 'heading' => 'Салгах :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Салгах', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Салгасан', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mn/dissociate.php b/lang/vendor/filament-actions/mn/dissociate.php new file mode 100644 index 0000000..8b24c39 --- /dev/null +++ b/lang/vendor/filament-actions/mn/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Холбоосыг салгах', + + 'modal' => [ + + 'heading' => 'Салгах :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Салгах', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Салгасан', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Сонгосонг салгах', + + 'modal' => [ + + 'heading' => 'Салгах :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Салгах', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Салгасан', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mn/edit.php b/lang/vendor/filament-actions/mn/edit.php new file mode 100644 index 0000000..25021b5 --- /dev/null +++ b/lang/vendor/filament-actions/mn/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Засах', + + 'modal' => [ + + 'heading' => 'Засах :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Хадгалах', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Хадгалсан', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mn/export.php b/lang/vendor/filament-actions/mn/export.php new file mode 100644 index 0000000..77f18cc --- /dev/null +++ b/lang/vendor/filament-actions/mn/export.php @@ -0,0 +1,77 @@ + 'Экспорт :label', + + 'modal' => [ + + 'heading' => 'Экспорт :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Баганууд', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column нээлттэй', + ], + + 'label' => [ + 'label' => ':column нэр', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Экспорт', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Экспорт дууссан', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Татаж авах .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Татаж авах .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Экспорт хэт том байна', + 'body' => 'Та нэг удаад нэгээс олон мөр экспортлох боломжгүй.|Та нэг удаад :count - с олон мөр экспортлох боломжгүй.', + ], + + 'started' => [ + 'title' => 'Экспорт эхлэлээ', + 'body' => 'Таны 1 мөрийг экспорт хийх үйлдэл эхлэсэн. Үйлдэл дууссаны дараа та татаж авах холбоостой мэдэгдэл хүлээн авах болно.|Таны :count мөрийг экспорт хийх үйлдэл эхлэсэн. Үйлдэл дууссаны дараа та татаж авах холбоостой мэдэгдэл хүлээн авах болно.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/mn/force-delete.php b/lang/vendor/filament-actions/mn/force-delete.php new file mode 100644 index 0000000..796040c --- /dev/null +++ b/lang/vendor/filament-actions/mn/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Устгах үйлдэл (force)', + + 'modal' => [ + + 'heading' => 'Устгах :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Устгах', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Устгасан', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Сонгосон устгах', + + 'modal' => [ + + 'heading' => 'Сонгосон устгах :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Устгах', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Устгасан', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mn/group.php b/lang/vendor/filament-actions/mn/group.php new file mode 100644 index 0000000..27ee6e6 --- /dev/null +++ b/lang/vendor/filament-actions/mn/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Үйлдэл', + ], + +]; diff --git a/lang/vendor/filament-actions/mn/import.php b/lang/vendor/filament-actions/mn/import.php new file mode 100644 index 0000000..4593198 --- /dev/null +++ b/lang/vendor/filament-actions/mn/import.php @@ -0,0 +1,85 @@ + 'Import :label', + + 'modal' => [ + + 'heading' => 'Import :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'File', + + 'placeholder' => 'Upload a CSV file', + + 'rules' => [ + 'duplicate_columns' => '{0} The file must not contain more than one empty column header.|{1,*} The file must not contain duplicate column headers: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Columns', + 'placeholder' => 'Select a column', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Download example CSV file', + ], + + 'import' => [ + 'label' => 'Import', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Import completed', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Download information about the failed row|Download information about the failed rows', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Uploaded CSV file is too large', + 'body' => 'You may not import more than 1 row at once.|You may not import more than :count rows at once.', + ], + + 'started' => [ + 'title' => 'Import started', + 'body' => 'Your import has begun and 1 row will be processed in the background.|Your import has begun and :count rows will be processed in the background.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'error', + 'system_error' => 'System error, please contact support.', + 'column_mapping_required_for_new_record' => 'The :attribute column was not mapped to a column in the file, but it is required for creating new records.', + ], + +]; diff --git a/lang/vendor/filament-actions/mn/modal.php b/lang/vendor/filament-actions/mn/modal.php new file mode 100644 index 0000000..05dd78a --- /dev/null +++ b/lang/vendor/filament-actions/mn/modal.php @@ -0,0 +1,23 @@ + 'Та үүнийг устгахдаа итгэлтэй байна уу?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Цуцлах', + ], + + 'confirm' => [ + 'label' => 'Баталгаажуулах', + ], + + 'submit' => [ + 'label' => 'Батлах', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mn/replicate.php b/lang/vendor/filament-actions/mn/replicate.php new file mode 100644 index 0000000..5629cd7 --- /dev/null +++ b/lang/vendor/filament-actions/mn/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Олшруулах', + + 'modal' => [ + + 'heading' => 'Олшруулах :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Олшруулах', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Олшруулав', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mn/restore.php b/lang/vendor/filament-actions/mn/restore.php new file mode 100644 index 0000000..d47054f --- /dev/null +++ b/lang/vendor/filament-actions/mn/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Сэргээх', + + 'modal' => [ + + 'heading' => 'Сэргээх :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Сэргээх', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Сэргээв', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Сонгосонг сэргээх', + + 'modal' => [ + + 'heading' => 'Сэргээх :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Сэргээх', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Сэргээв', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/mn/view.php b/lang/vendor/filament-actions/mn/view.php new file mode 100644 index 0000000..ea5fcfb --- /dev/null +++ b/lang/vendor/filament-actions/mn/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Харах', + + 'modal' => [ + + 'heading' => 'Харах :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Хаах', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ms/associate.php b/lang/vendor/filament-actions/ms/associate.php new file mode 100644 index 0000000..ddaa81e --- /dev/null +++ b/lang/vendor/filament-actions/ms/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Kaitkan', + + 'modal' => [ + + 'heading' => 'Kaitkan :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Rekod', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Kaitkan', + ], + + 'associate_another' => [ + 'label' => 'Kaitkan & kaitan yang lain', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Berkaitan', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ms/attach.php b/lang/vendor/filament-actions/ms/attach.php new file mode 100644 index 0000000..7b68e47 --- /dev/null +++ b/lang/vendor/filament-actions/ms/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Lampirkan', + + 'modal' => [ + + 'heading' => 'Lampirkan :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Rekod', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Lampirkan', + ], + + 'attach_another' => [ + 'label' => 'Lampirkan & lampirkan yang lain', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Dilampirkan', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ms/create.php b/lang/vendor/filament-actions/ms/create.php new file mode 100644 index 0000000..978aad3 --- /dev/null +++ b/lang/vendor/filament-actions/ms/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Cipta', + + 'modal' => [ + + 'heading' => 'Cipta :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Cipta', + ], + + 'create_another' => [ + 'label' => 'Cipta dan cipta yang lain', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Dicipta', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ms/delete.php b/lang/vendor/filament-actions/ms/delete.php new file mode 100644 index 0000000..3e1ee5b --- /dev/null +++ b/lang/vendor/filament-actions/ms/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Padam', + + 'modal' => [ + + 'heading' => 'Padam :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Padam', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Dipadamkan', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Padam pilihan', + + 'modal' => [ + + 'heading' => 'Padam pilihan :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Padam pilihan', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Dipadamkan', + ], + + 'deleted_partial' => [ + 'title' => 'Dipadamkan :count daripada :total', + 'missing_authorization_failure_message' => 'Anda tidak mempunyai kebenaran untuk memadam :count.', + 'missing_processing_failure_message' => ':count tidak dapat dipadamkan.', + ], + + 'deleted_none' => [ + 'title' => 'Tiada yang dipadamkan', + 'missing_authorization_failure_message' => 'Anda tidak mempunyai kebenaran untuk memadam :count.', + 'missing_processing_failure_message' => ':count tidak dapat dipadamkan.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ms/detach.php b/lang/vendor/filament-actions/ms/detach.php new file mode 100644 index 0000000..b93b7d2 --- /dev/null +++ b/lang/vendor/filament-actions/ms/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Tanggalkan', + + 'modal' => [ + + 'heading' => 'Tanggalkan :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Tanggalkan', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Ditanggalkan', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Tanggalkan pilihan', + + 'modal' => [ + + 'heading' => 'Tanggalkan pilihan :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Tanggalkan pilihan', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Ditanggalkan', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ms/dissociate.php b/lang/vendor/filament-actions/ms/dissociate.php new file mode 100644 index 0000000..b11fb9a --- /dev/null +++ b/lang/vendor/filament-actions/ms/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Nyahkait', + + 'modal' => [ + + 'heading' => 'Nyahkait :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Nyahkait', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Ternyahkait', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Nyahkait pilihan', + + 'modal' => [ + + 'heading' => 'Nyahkait pilihan :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Nyahkait', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Ternyahkait', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ms/edit.php b/lang/vendor/filament-actions/ms/edit.php new file mode 100644 index 0000000..5aee49e --- /dev/null +++ b/lang/vendor/filament-actions/ms/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Sunting', + + 'modal' => [ + + 'heading' => 'Sunting :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Simpan', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Disimpan', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ms/export.php b/lang/vendor/filament-actions/ms/export.php new file mode 100644 index 0000000..2c655fd --- /dev/null +++ b/lang/vendor/filament-actions/ms/export.php @@ -0,0 +1,77 @@ + 'Eksport :label', + + 'modal' => [ + + 'heading' => 'Eksport :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Kolum', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column diaktifkan', + ], + + 'label' => [ + 'label' => ':column label', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Eksport', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Eksport selesai', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Muat turun .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Muat turun .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Eksport terlalu besar', + 'body' => 'Anda tidak boleh mengeluarkan lebih dari 1 baris pada satu masa.|Anda tidak boleh mengeluarkan lebih dari :count baris pada satu masa.', + ], + + 'started' => [ + 'title' => 'Eksport bermula', + 'body' => 'Eksport anda telah bermula dan 1 baris akan diproses di belakang tabir.|Eksport anda telah bermula dan :count baris akan diproses di belakang tabir.', + ], + + ], + + 'file_name' => 'eksport-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/ms/force-delete.php b/lang/vendor/filament-actions/ms/force-delete.php new file mode 100644 index 0000000..aa806fe --- /dev/null +++ b/lang/vendor/filament-actions/ms/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Padam paksa', + + 'modal' => [ + + 'heading' => 'Padam paksa :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Padam', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Terpadam', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Padam paksa pilihan', + + 'modal' => [ + + 'heading' => 'Padam paksa pilihan :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Padam', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Terpadam', + ], + + 'deleted_partial' => [ + 'title' => 'Terpadam :count daripada :total', + 'missing_authorization_failure_message' => 'Anda tidak mempunyai kebenaran untuk memadam :count.', + 'missing_processing_failure_message' => ':count tidak dapat dipadamkan.', + ], + + 'deleted_none' => [ + 'title' => 'Tiada yang dipadam', + 'missing_authorization_failure_message' => 'Anda tidak mempunyai kebenaran untuk memadam :count.', + 'missing_processing_failure_message' => ':count tidak dapat dipadamkan.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ms/group.php b/lang/vendor/filament-actions/ms/group.php new file mode 100644 index 0000000..22824e9 --- /dev/null +++ b/lang/vendor/filament-actions/ms/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Tindakan', + ], + +]; diff --git a/lang/vendor/filament-actions/ms/import.php b/lang/vendor/filament-actions/ms/import.php new file mode 100644 index 0000000..62f8382 --- /dev/null +++ b/lang/vendor/filament-actions/ms/import.php @@ -0,0 +1,84 @@ + 'Import :label', + + 'modal' => [ + + 'heading' => 'Import :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Fail', + + 'placeholder' => 'Muat naik fail CSV', + + 'rules' => [ + 'duplicate_columns' => '{0} Fail tidak boleh mengandungi lebih daripada satu pengepala lajur kosong.|{1,*} Fail tidak boleh mengandungi pengepala lajur pendua: :columns.', + ], + ], + + 'columns' => [ + 'label' => 'Lajur', + 'placeholder' => 'Pilih lajur', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Muat turun contoh fail CSV', + ], + + 'import' => [ + 'label' => 'Import', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Import selesai', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Muat turun maklumat tentang baris yang gagal|Muat turun maklumat tentang baris yang gagal', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Fail CSV yang dimuat naik terlalu besar', + 'body' => 'Anda tidak boleh mengimport lebih daripada 1 baris sekaligus.|Anda tidak boleh mengimport lebih daripada :count baris sekaligus.', + ], + + 'started' => [ + 'title' => 'Import dimulakan', + 'body' => 'Import anda telah bermula dan 1 baris akan diproses di latar belakang.|Import anda telah bermula dan :count baris akan diproses di latar belakang.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'ralat', + 'system_error' => 'Ralat sistem, sila hubungi sokongan.', + 'column_mapping_required_for_new_record' => 'Lajur :attribute tidak dipetakan ke lajur dalam fail, tetapi ia diperlukan untuk mencipta rekod baharu.', + ], + +]; diff --git a/lang/vendor/filament-actions/ms/modal.php b/lang/vendor/filament-actions/ms/modal.php new file mode 100644 index 0000000..48ce4d6 --- /dev/null +++ b/lang/vendor/filament-actions/ms/modal.php @@ -0,0 +1,23 @@ + 'Adakah anda pasti mahu melakukan ini?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Batal', + ], + + 'confirm' => [ + 'label' => 'Sahkan', + ], + + 'submit' => [ + 'label' => 'Hantar', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ms/notifications.php b/lang/vendor/filament-actions/ms/notifications.php new file mode 100644 index 0000000..25890bf --- /dev/null +++ b/lang/vendor/filament-actions/ms/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Terlalu banyak percubaan', + 'body' => 'Sila cuba lagi dalam :seconds saat.', + ], + +]; diff --git a/lang/vendor/filament-actions/ms/replicate.php b/lang/vendor/filament-actions/ms/replicate.php new file mode 100644 index 0000000..d849060 --- /dev/null +++ b/lang/vendor/filament-actions/ms/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Replika', + + 'modal' => [ + + 'heading' => 'Replika :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Replika', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Direplikasi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ms/restore.php b/lang/vendor/filament-actions/ms/restore.php new file mode 100644 index 0000000..be0ba43 --- /dev/null +++ b/lang/vendor/filament-actions/ms/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Pulihkan', + + 'modal' => [ + + 'heading' => 'Pulihkan :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Pulihkan', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Dipulihkan', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Pulihkan pilihan', + + 'modal' => [ + + 'heading' => 'Pulihkan pilihan :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Pulihkan', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Dipulihkan', + ], + + 'restored_partial' => [ + 'title' => 'Dipulihkan :count daripada :total', + 'missing_authorization_failure_message' => 'Anda tidak mempunyai kebenaran untuk memulihkan :count.', + 'missing_processing_failure_message' => ':count tidak dapat dipulihkan.', + ], + + 'restored_none' => [ + 'title' => 'Tiada dipulihkan', + 'missing_authorization_failure_message' => 'Anda tidak mempunyai kebenaran untuk memulihkan :count.', + 'missing_processing_failure_message' => ':count tidak dapat dipulihkan.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ms/view.php b/lang/vendor/filament-actions/ms/view.php new file mode 100644 index 0000000..119dee2 --- /dev/null +++ b/lang/vendor/filament-actions/ms/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Paparan', + + 'modal' => [ + + 'heading' => 'Paparan :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Tutup', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/my/associate.php b/lang/vendor/filament-actions/my/associate.php new file mode 100644 index 0000000..974e983 --- /dev/null +++ b/lang/vendor/filament-actions/my/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'တွဲဘက်', + + 'modal' => [ + + 'heading' => ':label တွဲဘက်', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'မှတ်တမ်းများ', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'တွဲဘက်', + ], + + 'associate_another' => [ + 'label' => 'သိမ်းဆည်းပြီး နောက်တစ်ခုကို ဖန်တီးပါ', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'သိမ်းဆည်းပြီး', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/my/attach.php b/lang/vendor/filament-actions/my/attach.php new file mode 100644 index 0000000..1ab7137 --- /dev/null +++ b/lang/vendor/filament-actions/my/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'ပူးတွဲရန်', + + 'modal' => [ + + 'heading' => ':label ပူးတွဲရန်', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'မှတ်တမ်းများ', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'ပူးတွဲရန်', + ], + + 'attach_another' => [ + 'label' => 'သိမ်းဆည်းပြီး နောက်တစ်ခုကို ဖန်တီးပါ', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'သိမ်းဆည်းပြီး', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/my/create.php b/lang/vendor/filament-actions/my/create.php new file mode 100644 index 0000000..536c4bd --- /dev/null +++ b/lang/vendor/filament-actions/my/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'ဖန်တီးပါ', + + 'modal' => [ + + 'heading' => ':label ဖန်တီးပါ', + + 'actions' => [ + + 'create' => [ + 'label' => 'ဖန်တီးပါ', + ], + + 'create_another' => [ + 'label' => 'သိမ်းဆည်းပြီး နောက်တစ်ခုကို ဖန်တီးပါ', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'သိမ်းဆည်းပြီး', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/my/delete.php b/lang/vendor/filament-actions/my/delete.php new file mode 100644 index 0000000..f5ff05c --- /dev/null +++ b/lang/vendor/filament-actions/my/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'ဖျက်ပါ', + + 'modal' => [ + + 'heading' => ':label ကိုဖျက်ပါ', + + 'actions' => [ + + 'delete' => [ + 'label' => 'ဖျက်ပါ', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'ဖျက်ပြီးပါပြီ', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'ဖျက်ပါ', + + 'modal' => [ + + 'heading' => 'ရွေးချယ်ထားသည့် :label (များ)အား ဖျက်ပါ', + + 'actions' => [ + + 'delete' => [ + 'label' => 'ဖျက်ပါ', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'ဖျက်ပြီးပါပြီ', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/my/detach.php b/lang/vendor/filament-actions/my/detach.php new file mode 100644 index 0000000..d0057f6 --- /dev/null +++ b/lang/vendor/filament-actions/my/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'ခွဲထုတ်ပါ', + + 'modal' => [ + + 'heading' => ':label ခွဲထုတ်ပါ။', + + 'actions' => [ + + 'detach' => [ + 'label' => 'ခွဲထုတ်ပါ', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'သိမ်းဆည်းပြီး', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Detach selected', + + 'modal' => [ + + 'heading' => 'Detach selected :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Detach selected', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Detached', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/my/dissociate.php b/lang/vendor/filament-actions/my/dissociate.php new file mode 100644 index 0000000..18a62b7 --- /dev/null +++ b/lang/vendor/filament-actions/my/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'သီးခြား', + + 'modal' => [ + + 'heading' => ':label သီးခြား', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'သီးခြား', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'သိမ်းဆည်းပြီး', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Dissociate selected', + + 'modal' => [ + + 'heading' => 'Dissociate selected :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissociate selected', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissociated', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/my/edit.php b/lang/vendor/filament-actions/my/edit.php new file mode 100644 index 0000000..08f702e --- /dev/null +++ b/lang/vendor/filament-actions/my/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'တည်းဖြတ်ပါ', + + 'modal' => [ + + 'heading' => ':label ကိုတည်းဖြတ်ပါ', + + 'actions' => [ + + 'save' => [ + 'label' => 'မှတ်ပါ', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'သိမ်းဆည်းပြီး', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/my/export.php b/lang/vendor/filament-actions/my/export.php new file mode 100644 index 0000000..91013a0 --- /dev/null +++ b/lang/vendor/filament-actions/my/export.php @@ -0,0 +1,77 @@ + 'ထုတ်ယူရန်', + + 'modal' => [ + + 'heading' => ':label ထုတ်ယူရန်', + + 'form' => [ + + 'columns' => [ + + 'label' => 'ကော်လံများ', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column ကို ဖွင့်ထားသည်', + ], + + 'label' => [ + 'label' => ':column အမည်', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'ထုတ်ယူရန်', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'ထုတ်ယူခြင်း ပြီးဆုံးပါပြီ', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'csv ဖိုင်ဖြင့် ဒေါင်းလုပ်ရန်', + ], + + 'download_xlsx' => [ + 'label' => 'xlsx ဖိုင်ဖြင့် ဒေါင်းလုပ်ရန်', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'ထုတ်ယူရန် ဒေတာပမာဏ များလွန်းနေပါသည်', + 'body' => 'တစ်ကြိမ်တည်းတွင် စာကြောင်းရေ :count ထက်ပိုပြီး ထုတ်ယူ၍မရပါ။', + ], + + 'started' => [ + 'title' => 'ထုတ်ယူခြင်း စတင်ပါပြီ', + 'body' => 'ထုတ်ယူခြင်း စတင်ပါပြီ။ စာကြောင်းရေ :count ကို နောက်ကွယ်တွင် လုပ်ဆောင်နေပါသည်။', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/my/force-delete.php b/lang/vendor/filament-actions/my/force-delete.php new file mode 100644 index 0000000..19557d0 --- /dev/null +++ b/lang/vendor/filament-actions/my/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'အတင်းဖျက်ရန်', + + 'modal' => [ + + 'heading' => ':label အတင်းဖျက်ရန်', + + 'actions' => [ + + 'delete' => [ + 'label' => 'ဖျက်ရန်', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'ဖျက်ပြီးပါပြီ', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'ရွေးချယ်ထားသည်များကို အတင်းဖျက်ရန်', + + 'modal' => [ + + 'heading' => 'ရွေးချယ်ထားသော :label များကို အတင်းဖျက်ရန်', + + 'actions' => [ + + 'delete' => [ + 'label' => 'ဖျက်ရန်', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'ဖျက်ပြီးပါပြီ', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/my/group.php b/lang/vendor/filament-actions/my/group.php new file mode 100644 index 0000000..3302bce --- /dev/null +++ b/lang/vendor/filament-actions/my/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'လုပ်ဆောင်ချက်များ', + ], + +]; diff --git a/lang/vendor/filament-actions/my/import.php b/lang/vendor/filament-actions/my/import.php new file mode 100644 index 0000000..3538da8 --- /dev/null +++ b/lang/vendor/filament-actions/my/import.php @@ -0,0 +1,81 @@ + 'တင်သွင်းရန်', + + 'modal' => [ + + 'heading' => ':label တင်သွင်းရန်', + + 'form' => [ + + 'file' => [ + 'label' => 'ဖိုင်', + 'placeholder' => 'CSV ဖိုင်တင်ရန်', + 'rules' => [ + 'duplicate_columns' => '{0} ဖိုင်တွင် ကော်လံခေါင်းစဉ် ဗလာတစ်ခုထက်ပို၍ မပါရှိရပါ။|{1,*} ဖိုင်တွင် ထပ်တူကျသော ကော်လံခေါင်းစဉ်များ မပါရှိရပါ: :columns။', + ], + ], + + 'columns' => [ + 'label' => 'ကော်လံများ', + 'placeholder' => 'ကော်လံရွေးချယ်ရန်', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'နမူနာ CSV ဖိုင်ကို ဒေါင်းလုပ်ရန်', + ], + + 'import' => [ + 'label' => 'တင်သွင်းရန်', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'တင်သွင်းခြင်း ပြီးဆုံးပါပြီ', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'မအောင်မြင်သော အချက်အလက်များကို ဒေါင်းလုပ်ရန်', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'CSV ဖိုင်သည် အလွန်ကြီးနေပါသည်', + 'body' => 'တစ်ကြိမ်တည်းတွင် စာကြောင်းရေ :count ထက်ပို၍ တင်သွင်း၍မရပါ။', + ], + + 'started' => [ + 'title' => 'တင်သွင်းခြင်း စတင်ပါပြီ', + 'body' => 'တင်သွင်းခြင်း စတင်ပြီး စာကြောင်းရေ :count ကို နောက်ကွယ်တွင် လုပ်ဆောင်နေပါသည်။', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-နမူနာ', + ], + + 'failure_csv' => [ + 'file_name' => 'တင်သွင်းခြင်း-:import_id-:csv_name-မအောင်မြင်သောအချက်အလက်များ', + 'error_header' => 'အမှား', + 'system_error' => 'စနစ်အမှားဖြစ်ပါသည်။ အကူအညီရယူရန် ဆက်သွယ်ပါ။', + 'column_mapping_required_for_new_record' => ':attribute ကော်လံသည် ဖိုင်ထဲရှိ မည်သည့်ကော်လံနှင့်မှ ချိတ်ဆက်ထားခြင်းမရှိသော်လည်း မှတ်တမ်းအသစ်များ ဖန်တီးရန်အတွက် လိုအပ်ပါသည်။', + ], + +]; diff --git a/lang/vendor/filament-actions/my/modal.php b/lang/vendor/filament-actions/my/modal.php new file mode 100644 index 0000000..678aad8 --- /dev/null +++ b/lang/vendor/filament-actions/my/modal.php @@ -0,0 +1,23 @@ + 'ဒီလိုလုပ်ချင်တာသေချာလား', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'မလုပ်တော့ပါ', + ], + + 'confirm' => [ + 'label' => 'အတည်ပြုသည်', + ], + + 'submit' => [ + 'label' => 'နှိပ်ပါ', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/my/replicate.php b/lang/vendor/filament-actions/my/replicate.php new file mode 100644 index 0000000..7a91e49 --- /dev/null +++ b/lang/vendor/filament-actions/my/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'ပုံတူကူးရန်', + + 'modal' => [ + + 'heading' => ':label ပုံတူကူးရန်', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'ပုံတူကူးရန်', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'ကူးယူပြီးပါပြီ', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/my/restore.php b/lang/vendor/filament-actions/my/restore.php new file mode 100644 index 0000000..294cd0c --- /dev/null +++ b/lang/vendor/filament-actions/my/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'ပြန်လည်ရယူရန်', + + 'modal' => [ + + 'heading' => ':label ပြန်လည်ရယူရန်', + + 'actions' => [ + + 'restore' => [ + 'label' => 'ပြန်လည်ရယူရန်', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'ပြန်လည်ရယူပြီးပါပြီ', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'ရွေးချယ်ထားသည်များကို ပြန်လည်ရယူရန်', + + 'modal' => [ + + 'heading' => 'ရွေးချယ်ထားသော :label ကို ပြန်လည်ရယူရန်', + + 'actions' => [ + + 'restore' => [ + 'label' => 'ပြန်လည်ရယူရန်', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'ပြန်လည်ရယူပြီးပါပြီ', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/my/view.php b/lang/vendor/filament-actions/my/view.php new file mode 100644 index 0000000..eb4b8d4 --- /dev/null +++ b/lang/vendor/filament-actions/my/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'ကြည့်ရှုရန်', + + 'modal' => [ + + 'heading' => ':label ကြည့်ရှုရန်', + + 'actions' => [ + + 'close' => [ + 'label' => 'ပိတ်ရန်', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nb/associate.php b/lang/vendor/filament-actions/nb/associate.php new file mode 100644 index 0000000..fad2cea --- /dev/null +++ b/lang/vendor/filament-actions/nb/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Koble til', + + 'modal' => [ + + 'heading' => 'Koble til :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Post', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Koble til', + ], + + 'associate_another' => [ + 'label' => 'Koble til & koble til en annen', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Koblet til', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nb/attach.php b/lang/vendor/filament-actions/nb/attach.php new file mode 100644 index 0000000..b029c70 --- /dev/null +++ b/lang/vendor/filament-actions/nb/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Legg til', + + 'modal' => [ + + 'heading' => 'Legg til :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Post', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Legg til', + ], + + 'attach_another' => [ + 'label' => 'Legg til & legg til en annen', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Lagt til', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nb/create.php b/lang/vendor/filament-actions/nb/create.php new file mode 100644 index 0000000..018cc4d --- /dev/null +++ b/lang/vendor/filament-actions/nb/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Opprett :label', + + 'modal' => [ + + 'heading' => 'Opprett :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Opprett', + ], + + 'create_another' => [ + 'label' => 'Opprett & opprett en til', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Opprettet', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nb/delete.php b/lang/vendor/filament-actions/nb/delete.php new file mode 100644 index 0000000..c441945 --- /dev/null +++ b/lang/vendor/filament-actions/nb/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Slett', + + 'modal' => [ + + 'heading' => 'Slett :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Slett', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Slettet', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Slett valgte', + + 'modal' => [ + + 'heading' => 'Slett valgte :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Slett', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Slettet', + ], + + 'deleted_partial' => [ + 'title' => 'Slettet :count av :total', + 'missing_authorization_failure_message' => 'Du har ikke tillatelse til å slette :count.', + 'missing_processing_failure_message' => ':count kunne ikke slettes.', + ], + + 'deleted_none' => [ + 'title' => 'Kunne ikke slette', + 'missing_authorization_failure_message' => 'Du har ikke tillatelse til å slette :count.', + 'missing_processing_failure_message' => ':count kunne ikke slettes.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nb/detach.php b/lang/vendor/filament-actions/nb/detach.php new file mode 100644 index 0000000..e2ba26e --- /dev/null +++ b/lang/vendor/filament-actions/nb/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Fjern', + + 'modal' => [ + + 'heading' => 'Fjern :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Fjern', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Fjernet', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Fjern valgte', + + 'modal' => [ + + 'heading' => 'Fjern valgte :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Fjern', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Fjernet', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nb/dissociate.php b/lang/vendor/filament-actions/nb/dissociate.php new file mode 100644 index 0000000..0bab3bd --- /dev/null +++ b/lang/vendor/filament-actions/nb/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Koble fra', + + 'modal' => [ + + 'heading' => 'Koble fra :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Koble fra', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Koblet fra', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Koble fra valgte', + + 'modal' => [ + + 'heading' => 'Koble fra valgte :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Koble fra', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Koblet fra', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nb/edit.php b/lang/vendor/filament-actions/nb/edit.php new file mode 100644 index 0000000..98dd864 --- /dev/null +++ b/lang/vendor/filament-actions/nb/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Endre', + + 'modal' => [ + + 'heading' => 'Endre :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Lagre endringer', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Lagret', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nb/export.php b/lang/vendor/filament-actions/nb/export.php new file mode 100644 index 0000000..216ec56 --- /dev/null +++ b/lang/vendor/filament-actions/nb/export.php @@ -0,0 +1,94 @@ + 'Eksporter :label', + + 'modal' => [ + + 'heading' => 'Eksporter :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Kolonner', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Velg alle', + ], + + 'deselect_all' => [ + 'label' => 'Velg bort alle', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column aktivert', + ], + + 'label' => [ + 'label' => ':column etikett', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Eksporter', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Eksportering gjennomført', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Last ned .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Last ned .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Eksporteringen er for stor', + 'body' => 'Du kan ikke eksporterer mer enn 1 rap av gangen.|Du kan ikke eksportere mer enn :count rader av gangen.', + ], + + 'no_columns' => [ + 'title' => 'Ingen kolonner valgt', + 'body' => 'Vennligst velg en kolonne for eksport.', + ], + + 'started' => [ + 'title' => 'Eksportering startet', + 'body' => 'Din eksportering har startet og 1 rad vil bli behandlet i bakgrunnen.|Din eksportering har startet og :count rader vil bli behandlet i bakgrunnen.', + ], + + ], + + 'file_name' => 'eksport-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/nb/force-delete.php b/lang/vendor/filament-actions/nb/force-delete.php new file mode 100644 index 0000000..d2cd1d9 --- /dev/null +++ b/lang/vendor/filament-actions/nb/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Tving sletting', + + 'modal' => [ + + 'heading' => 'Tving sletting av :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Slett', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Slettet', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Tving sletting av valgte', + + 'modal' => [ + + 'heading' => 'Tving sletting av valgte :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Slett', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Slettet', + ], + + 'deleted_partial' => [ + 'title' => 'Slettet :count av :total', + 'missing_authorization_failure_message' => 'Du har ikke tillatelse til å slette :count.', + 'missing_processing_failure_message' => ':count kunne ikke slettes.', + ], + + 'deleted_none' => [ + 'title' => 'Kunne ikke slette', + 'missing_authorization_failure_message' => 'Du har ikke tillatelse til å slette :count.', + 'missing_processing_failure_message' => ':count kunne ikke slettes.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nb/group.php b/lang/vendor/filament-actions/nb/group.php new file mode 100644 index 0000000..7745c75 --- /dev/null +++ b/lang/vendor/filament-actions/nb/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Handlinger', + ], + +]; diff --git a/lang/vendor/filament-actions/nb/import.php b/lang/vendor/filament-actions/nb/import.php new file mode 100644 index 0000000..e86122b --- /dev/null +++ b/lang/vendor/filament-actions/nb/import.php @@ -0,0 +1,81 @@ + 'Importér :label', + + 'modal' => [ + + 'heading' => 'Importér :label', + + 'form' => [ + + 'file' => [ + 'label' => 'Fil', + 'placeholder' => 'Last opp en CSV fil', + 'rules' => [ + 'duplicate_columns' => '{0} Filen kan ikke inneholde mer enn én tom kolonneoverskrift.|{1,*} Filen kan ikke inneholde dupliserte kolonneoverskrifter: :columns.', + ], + ], + + 'columns' => [ + 'label' => 'Kolonner', + 'placeholder' => 'Velg en kolonne', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Last ned en CSV-eksempel fil', + ], + + 'import' => [ + 'label' => 'Importér', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Importering gjennomført', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Last ned informasjon om raden som feilet|Last ned informasjon om rader som feilet', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Opplastet CSV fil er for stor', + 'body' => 'Du kan ikke importere mer enn 1 rad av gangen.|Du kan ikke importere mer enn :count rader av gangen.', + ], + + 'started' => [ + 'title' => 'Importering startet', + 'body' => 'Din importering har startet og 1 rad vil bli behandlet i bakgrunnen.|Din importering har startet og :count rader vil bli behandlet i bakgrunnen.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-eksempel', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-rader-feilet', + 'error_header' => 'feil', + 'system_error' => 'Systemfeil, vennligst kontakt support.', + 'column_mapping_required_for_new_record' => ':attribute-kolonnen ble ikke koblet til en kolonne i filen, men den er påkrevd for å opprette nye poster.', + ], + +]; diff --git a/lang/vendor/filament-actions/nb/modal.php b/lang/vendor/filament-actions/nb/modal.php new file mode 100644 index 0000000..63d0136 --- /dev/null +++ b/lang/vendor/filament-actions/nb/modal.php @@ -0,0 +1,23 @@ + 'Er du sikker på at du vil gjøre dette?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Avbryt', + ], + + 'confirm' => [ + 'label' => 'Bekreft', + ], + + 'submit' => [ + 'label' => 'Send', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nb/notifications.php b/lang/vendor/filament-actions/nb/notifications.php new file mode 100644 index 0000000..4d904ae --- /dev/null +++ b/lang/vendor/filament-actions/nb/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'For mange forsøk', + 'body' => 'Prøv igjen om :seconds sekunder.', + ], + +]; diff --git a/lang/vendor/filament-actions/nb/replicate.php b/lang/vendor/filament-actions/nb/replicate.php new file mode 100644 index 0000000..325b2b3 --- /dev/null +++ b/lang/vendor/filament-actions/nb/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Lag kopi', + + 'modal' => [ + + 'heading' => 'Lag kopi av :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Lag kopi', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Kopi opprettet', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nb/restore.php b/lang/vendor/filament-actions/nb/restore.php new file mode 100644 index 0000000..d49a570 --- /dev/null +++ b/lang/vendor/filament-actions/nb/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Gjenopprett', + + 'modal' => [ + + 'heading' => 'Gjenopprett :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Gjenopprett', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Gjenopprettet', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Gjenopprett valgte', + + 'modal' => [ + + 'heading' => 'Gjenopprett valgte :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Gjenopprett', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Gjenopprettet', + ], + + 'restored_partial' => [ + 'title' => 'Gjenopprettet :count av :total', + 'missing_authorization_failure_message' => 'Du har ikke tillatelse til å gjenopprette :count.', + 'missing_processing_failure_message' => ':count kunne ikke gjenopprettes.', + ], + + 'restored_none' => [ + 'title' => 'Kunne ikke gjenopprette', + 'missing_authorization_failure_message' => 'Du har ikke tillatelse til å gjenopprette :count.', + 'missing_processing_failure_message' => ':count kunne ikke gjenopprettes.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nb/view.php b/lang/vendor/filament-actions/nb/view.php new file mode 100644 index 0000000..2150324 --- /dev/null +++ b/lang/vendor/filament-actions/nb/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Vis', + + 'modal' => [ + + 'heading' => 'Vis :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Lukk', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/associate.php b/lang/vendor/filament-actions/ne/associate.php new file mode 100644 index 0000000..dbf492f --- /dev/null +++ b/lang/vendor/filament-actions/ne/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'जोड्नुहोस्', + + 'modal' => [ + + 'heading' => ':label सँग जोड्नुहोस्', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'रेकर्ड', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'जोड्नुहोस्', + ], + + 'associate_another' => [ + 'label' => 'यो जोड्नुहोस र अर्को जोड्नुहोस', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'जोडियो', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/attach.php b/lang/vendor/filament-actions/ne/attach.php new file mode 100644 index 0000000..9153ecf --- /dev/null +++ b/lang/vendor/filament-actions/ne/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'संलग्न', + + 'modal' => [ + + 'heading' => ':label सँग संलग्न गर्नुहोस्', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'रेकर्ड', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'संलग्न', + ], + + 'attach_another' => [ + 'label' => 'यो जोड्नुहोस र अर्को जोड्नुहोस', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'संलग्न गरियो', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/create.php b/lang/vendor/filament-actions/ne/create.php new file mode 100644 index 0000000..581701a --- /dev/null +++ b/lang/vendor/filament-actions/ne/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'नयाँ :label', + + 'modal' => [ + + 'heading' => ':label सिर्जना गर्नुहोस्', + + 'actions' => [ + + 'create' => [ + 'label' => 'सिर्जना गर्नुहोस्', + ], + + 'create_another' => [ + 'label' => 'बनाउनुहोस् र अर्को सिर्जना गर्नुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'सिर्जना गरियो', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/delete.php b/lang/vendor/filament-actions/ne/delete.php new file mode 100644 index 0000000..7cce795 --- /dev/null +++ b/lang/vendor/filament-actions/ne/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'मेटाउनुहोस्', + + 'modal' => [ + + 'heading' => ':label मेटाउनुहोस्', + + 'actions' => [ + + 'delete' => [ + 'label' => 'मेटाउनुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'मेटाइयो', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'चयन गरिएको मेटाउनुहोस्', + + 'modal' => [ + + 'heading' => 'चयन गरिएका :label मेटाउनुहोस्', + + 'actions' => [ + + 'delete' => [ + 'label' => 'मेटाउनुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'मेटाइयो', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/detach.php b/lang/vendor/filament-actions/ne/detach.php new file mode 100644 index 0000000..e372cce --- /dev/null +++ b/lang/vendor/filament-actions/ne/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'अलग गर्नुहोस्', + + 'modal' => [ + + 'heading' => ':label अलग गर्नुहोस्', + + 'actions' => [ + + 'detach' => [ + 'label' => 'अलग गर्नुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'अलग भयो', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'चयन गरिएको अलग गर्नुहोस्', + + 'modal' => [ + + 'heading' => 'चयन गरिएका :label अलग गर्नुहोस्', + + 'actions' => [ + + 'detach' => [ + 'label' => 'अलग गर्नुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'अलग भयो', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/dissociate.php b/lang/vendor/filament-actions/ne/dissociate.php new file mode 100644 index 0000000..8d6b811 --- /dev/null +++ b/lang/vendor/filament-actions/ne/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'छुटाउनुहोस', + + 'modal' => [ + + 'heading' => ':label लाई छुटाउनुहोस', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'छुटाउनुहोस', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'छुटाइयो', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'चयन गरिएको छुटाउनुहोस', + + 'modal' => [ + + 'heading' => 'चयन गरिएका :label छुटाउनुहोस ', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'छुटाउनुहोस', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'छुटाइयो', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/edit.php b/lang/vendor/filament-actions/ne/edit.php new file mode 100644 index 0000000..e340fe1 --- /dev/null +++ b/lang/vendor/filament-actions/ne/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'सम्पादन गर्नुहोस्', + + 'modal' => [ + + 'heading' => ':label सम्पादन गर्नुहोस्', + + 'actions' => [ + + 'save' => [ + 'label' => 'परिवर्तनहरू सुरक्षित गर्नुहोस', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'परिवर्तन सुरक्षित गरियो', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/force-delete.php b/lang/vendor/filament-actions/ne/force-delete.php new file mode 100644 index 0000000..b15faf4 --- /dev/null +++ b/lang/vendor/filament-actions/ne/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'जबर्जस्ती मेटाउनुहोस्', + + 'modal' => [ + + 'heading' => ':label जबर्जस्ती मेटाउनुहोस्', + + 'actions' => [ + + 'delete' => [ + 'label' => 'मेटाउनुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'मेटाइयो', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'चयन गरिएको मेटाउनुहोस्', + + 'modal' => [ + + 'heading' => 'चयन गरिएका :label मेटाउनुहोस्', + + 'actions' => [ + + 'delete' => [ + 'label' => 'मेटाउनुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'मेटाइयो', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/global-search.php b/lang/vendor/filament-actions/ne/global-search.php new file mode 100644 index 0000000..ea46902 --- /dev/null +++ b/lang/vendor/filament-actions/ne/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'सार्वभौमिक खोजी', + 'placeholder' => 'खोज्नुहोस्', + ], + + 'no_results_message' => 'कुनै खोज परिणाम फेला परेन।', + +]; diff --git a/lang/vendor/filament-actions/ne/group.php b/lang/vendor/filament-actions/ne/group.php new file mode 100644 index 0000000..bbae150 --- /dev/null +++ b/lang/vendor/filament-actions/ne/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'कार्यहरू', + ], + +]; diff --git a/lang/vendor/filament-actions/ne/layout.php b/lang/vendor/filament-actions/ne/layout.php new file mode 100644 index 0000000..0461927 --- /dev/null +++ b/lang/vendor/filament-actions/ne/layout.php @@ -0,0 +1,55 @@ + 'ltr', // 'ltr' (left-to-right) is standard for Nepali text, but if you're accommodating for languages that read right-to-left, you might dynamically switch this. + + 'actions' => [ + + 'billing' => [ + 'label' => 'सदस्यता व्यवस्थापन गर्नुहोस्', + ], + + 'logout' => [ + 'label' => 'साइन आउट', + ], + + 'open_database_notifications' => [ + 'label' => 'सूचनाहरू खोल्नुहोस्', + ], + + 'open_user_menu' => [ + 'label' => 'प्रयोगकर्ता मेनु', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'साइडबार भत्काउनुहोस्', + ], + + 'expand' => [ + 'label' => 'साइडबार विस्तार गर्नुहोस्', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'गाढा थिम सक्रिय गर्नुहोस्', + ], + + 'light' => [ + 'label' => 'उज्यालो थिम सक्रिय गर्नुहोस्', + ], + + 'system' => [ + 'label' => 'सिस्टम थिम सक्रिय गर्नुहोस्', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/modal.php b/lang/vendor/filament-actions/ne/modal.php new file mode 100644 index 0000000..6f4c660 --- /dev/null +++ b/lang/vendor/filament-actions/ne/modal.php @@ -0,0 +1,23 @@ + 'के तपाइँ यो गर्न निश्चित हुनुहुन्छ?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'रद्द गर्नुहोस्', + ], + + 'confirm' => [ + 'label' => 'पुष्टि गर्नुहोस्', + ], + + 'submit' => [ + 'label' => 'पेश गर्नुहोस्', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/pages/auth/edit-profile.php b/lang/vendor/filament-actions/ne/pages/auth/edit-profile.php new file mode 100644 index 0000000..b53a0f8 --- /dev/null +++ b/lang/vendor/filament-actions/ne/pages/auth/edit-profile.php @@ -0,0 +1,51 @@ + 'प्रोफाइल', + + 'form' => [ + + 'email' => [ + 'label' => 'ईमेल ठेगाना', + ], + + 'name' => [ + 'label' => 'नाम', + ], + + 'password' => [ + 'label' => 'नयाँ पासवर्ड', + ], + + 'password_confirmation' => [ + 'label' => 'नयाँ पासवर्ड पुष्टि गर्नुहोस्', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'परिवर्तनहरू सेभ गर्नुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'सेभ गरियो', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'रद्द गर्नुहोस्', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/pages/auth/email-verification/email-verification-prompt.php b/lang/vendor/filament-actions/ne/pages/auth/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..956f54b --- /dev/null +++ b/lang/vendor/filament-actions/ne/pages/auth/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'तपाईंको ईमेल ठेगाना प्रमाणित गर्नुहोस्', + + 'heading' => 'तपाईंको ईमेल ठेगाना प्रमाणित गर्नुहोस्', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'पुनः पठाउनुहोस्', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'हामीले पठाएको ईमेल तपाईंले पाउनुभएन?', + 'notification_sent' => 'तपाईंको ईमेल :email मा प्रमाणित गर्ने निर्देशनहरू सहित एउटा ईमेल पठाइएको छ।', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'हामीले ईमेल पुनः पठाएका छौं।', + ], + + 'notification_resend_throttled' => [ + 'title' => 'धेरै पटक पुनः पठाउने प्रयास गरियो', + 'body' => ':seconds सेकेण्डमा पुनः प्रयास गर्नुहोस्।', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/pages/auth/login.php b/lang/vendor/filament-actions/ne/pages/auth/login.php new file mode 100644 index 0000000..f58a7dd --- /dev/null +++ b/lang/vendor/filament-actions/ne/pages/auth/login.php @@ -0,0 +1,61 @@ + 'Login', + + 'heading' => 'Sign in', + + 'actions' => [ + + 'register' => [ + 'before' => 'or', + 'label' => 'sign up for an account', + ], + + 'request_password_reset' => [ + 'label' => 'Forgot password?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email address', + ], + + 'password' => [ + 'label' => 'Password', + ], + + 'remember' => [ + 'label' => 'Remember me', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Sign in', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'These credentials do not match our records.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Too many login attempts', + 'body' => 'Please try again in :seconds seconds.', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/pages/auth/password-reset/request-password-reset.php b/lang/vendor/filament-actions/ne/pages/auth/password-reset/request-password-reset.php new file mode 100644 index 0000000..0c24533 --- /dev/null +++ b/lang/vendor/filament-actions/ne/pages/auth/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'तपाईंको पासवर्ड रिसेट गर्नुहोस्', + + 'heading' => 'पासवर्ड बिर्सनुभयो?', + + 'actions' => [ + + 'login' => [ + 'label' => 'लगइनमा फर्कनुहोस्', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ईमेल ठेगाना', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'ईमेल पठाउनुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'धेरै अनुरोधहरू', + 'body' => ':seconds सेकेण्डमा पुनः प्रयास गर्नुहोस्।', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/pages/auth/password-reset/reset-password.php b/lang/vendor/filament-actions/ne/pages/auth/password-reset/reset-password.php new file mode 100644 index 0000000..7107ef1 --- /dev/null +++ b/lang/vendor/filament-actions/ne/pages/auth/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'तपाइँको पासवर्ड रिसेट गर्नुहोस्', + + 'heading' => 'तपाइँको पासवर्ड रिसेट गर्नुहोस्', + + 'form' => [ + + 'email' => [ + 'label' => 'ईमेल ठेगाना', + ], + + 'password' => [ + 'label' => 'पासवर्ड', + 'validation_attribute' => 'पासवर्ड', + ], + + 'password_confirmation' => [ + 'label' => 'पासवर्ड पुष्टि गर्नुहोस्', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'पासवर्ड रिसेट गर्नुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'धेरै पटक रिसेट प्रयास गरिएको', + 'body' => ':seconds सेकेण्डमा पुन: प्रयास गर्नुहोस्।', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/pages/auth/register.php b/lang/vendor/filament-actions/ne/pages/auth/register.php new file mode 100644 index 0000000..c38064e --- /dev/null +++ b/lang/vendor/filament-actions/ne/pages/auth/register.php @@ -0,0 +1,61 @@ + 'लग - इन', + + 'heading' => 'साइन इन गर्नुहोस्', + + 'actions' => [ + + 'register' => [ + 'before' => 'वा', + 'label' => 'खाता को लागि साइन अप गर्नुहोस्', + ], + + 'request_password_reset' => [ + 'label' => 'पासवर्ड बिर्सनुभयो?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ईमेल ठेगाना', + ], + + 'password' => [ + 'label' => 'पासवर्ड', + ], + + 'remember' => [ + 'label' => 'मलाई सम्झनुहोस्', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'साइन इन गर्नुहोस्', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'यी प्रमाणहरू हाम्रो रेकर्डसँग मेल खाँदैनन्।', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'धेरै पटक लगिन प्रयास गरिएको', + 'body' => ':seconds सेकेण्डमा पुनः प्रयास गर्नुहोस्।', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/pages/dashboard.php b/lang/vendor/filament-actions/ne/pages/dashboard.php new file mode 100644 index 0000000..616c1a9 --- /dev/null +++ b/lang/vendor/filament-actions/ne/pages/dashboard.php @@ -0,0 +1,33 @@ + 'ड्यासबोर्ड', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'फिल्टर', + + 'modal' => [ + + 'heading' => 'फिल्टर', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'लागू गर्नुहोस्', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-actions/ne/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..ca23c6b --- /dev/null +++ b/lang/vendor/filament-actions/ne/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'परिवर्तनहरू सेभ गर्नुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'सेभ भयो', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/replicate.php b/lang/vendor/filament-actions/ne/replicate.php new file mode 100644 index 0000000..1b8a101 --- /dev/null +++ b/lang/vendor/filament-actions/ne/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'नक्कल गर्नुहोस्', + + 'modal' => [ + + 'heading' => ':label को नक्कल गर्नुहोस्', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'नक्कल गर्नुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'नक्कल गरियो', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/resources/pages/create-record.php b/lang/vendor/filament-actions/ne/resources/pages/create-record.php new file mode 100644 index 0000000..ff85393 --- /dev/null +++ b/lang/vendor/filament-actions/ne/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'सिर्जना :label', + + 'breadcrumb' => 'सिर्जना', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'रद्द गर्नुहोस्', + ], + + 'create' => [ + 'label' => 'सिर्जना गर्नुहोस्', + ], + + 'create_another' => [ + 'label' => 'अर्को सिर्जना गर्नुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'सिर्जना भयो', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/resources/pages/edit-record.php b/lang/vendor/filament-actions/ne/resources/pages/edit-record.php new file mode 100644 index 0000000..5e4912b --- /dev/null +++ b/lang/vendor/filament-actions/ne/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'सम्पादन गर्नुहोस् :label', + + 'breadcrumb' => 'सम्पादन गर्नुहोस्', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'रद्द गर्नुहोस्', + ], + + 'save' => [ + 'label' => 'परिवर्तनहरू सुरक्षित गर्नुहोस', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'सम्पादन गर्नुहोस्', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'सुरक्षित गरियो', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/resources/pages/list-records.php b/lang/vendor/filament-actions/ne/resources/pages/list-records.php new file mode 100644 index 0000000..6de1a4b --- /dev/null +++ b/lang/vendor/filament-actions/ne/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'सूची', + +]; diff --git a/lang/vendor/filament-actions/ne/resources/pages/view-record.php b/lang/vendor/filament-actions/ne/resources/pages/view-record.php new file mode 100644 index 0000000..5f037e3 --- /dev/null +++ b/lang/vendor/filament-actions/ne/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'हेर्नुहोस् :label', + + 'breadcrumb' => 'हेर्नुहोस्', + + 'content' => [ + + 'tab' => [ + 'label' => 'हेर्नुहोस्', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/restore.php b/lang/vendor/filament-actions/ne/restore.php new file mode 100644 index 0000000..1bf850b --- /dev/null +++ b/lang/vendor/filament-actions/ne/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'पुनर्स्थापना गर्नुहोस्', + + 'modal' => [ + + 'heading' => ':label को पुनर्स्थापना गर्नुहोस्', + + 'actions' => [ + + 'restore' => [ + 'label' => 'पुनर्स्थापना गर्नुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'पुनर्स्थापित', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'चयन गरिएको पुनर्स्थापना गर्नुहोस्', + + 'modal' => [ + + 'heading' => 'चयन गरिएका :label पुनर्स्थापना गर्नुहोस्', + + 'actions' => [ + + 'restore' => [ + 'label' => 'पुनर्स्थापना गर्नुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'पुनर्स्थापित', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/view.php b/lang/vendor/filament-actions/ne/view.php new file mode 100644 index 0000000..fc55c9b --- /dev/null +++ b/lang/vendor/filament-actions/ne/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'हेर्नुहोस्', + + 'modal' => [ + + 'heading' => ':label हेर्नुहोस्', + + 'actions' => [ + + 'close' => [ + 'label' => 'बन्द गर्नुहोस्', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ne/widgets/account-widget.php b/lang/vendor/filament-actions/ne/widgets/account-widget.php new file mode 100644 index 0000000..f49f911 --- /dev/null +++ b/lang/vendor/filament-actions/ne/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'साइन आउट गर्नुहोस्', + ], + + ], + + 'welcome' => 'स्वागत छ', + +]; diff --git a/lang/vendor/filament-actions/ne/widgets/filament-info-widget.php b/lang/vendor/filament-actions/ne/widgets/filament-info-widget.php new file mode 100644 index 0000000..e559504 --- /dev/null +++ b/lang/vendor/filament-actions/ne/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Documentation', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nl/associate.php b/lang/vendor/filament-actions/nl/associate.php new file mode 100644 index 0000000..5c7a824 --- /dev/null +++ b/lang/vendor/filament-actions/nl/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Koppelen', + + 'modal' => [ + + 'heading' => ':Label koppelen', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Record', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Koppelen', + ], + + 'associate_another' => [ + 'label' => 'Koppelen & nieuwe koppelen', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Gekoppeld', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nl/attach.php b/lang/vendor/filament-actions/nl/attach.php new file mode 100644 index 0000000..8625a02 --- /dev/null +++ b/lang/vendor/filament-actions/nl/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Koppelen', + + 'modal' => [ + + 'heading' => ':Label koppelen', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Record', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Koppelen', + ], + + 'attach_another' => [ + 'label' => 'Koppelen & nieuwe koppelen', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Gekoppeld', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nl/create.php b/lang/vendor/filament-actions/nl/create.php new file mode 100644 index 0000000..c1548d6 --- /dev/null +++ b/lang/vendor/filament-actions/nl/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => ':Label aanmaken', + + 'modal' => [ + + 'heading' => ':Label aanmaken', + + 'actions' => [ + + 'create' => [ + 'label' => 'Aanmaken', + ], + + 'create_another' => [ + 'label' => 'Aanmaken & nieuwe aanmaken', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Aangemaakt', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nl/delete.php b/lang/vendor/filament-actions/nl/delete.php new file mode 100644 index 0000000..75b0d0b --- /dev/null +++ b/lang/vendor/filament-actions/nl/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Verwijderen', + + 'modal' => [ + + 'heading' => ':Label verwijderen', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Verwijderen', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Verwijderd', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Geselecteerde verwijderen', + + 'modal' => [ + + 'heading' => 'Geselecteerde :label verwijderen', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Verwijderen', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Verwijderd', + ], + + 'deleted_partial' => [ + 'title' => ':count van :total verwijderd', + 'missing_authorization_failure_message' => 'Je hebt geen toestemming om :count te verwijderen.', + 'missing_processing_failure_message' => ':count kon niet worden verwijderd.', + ], + + 'deleted_none' => [ + 'title' => 'Verwijderen mislukt', + 'missing_authorization_failure_message' => 'Je hebt geen toestemming om :count te verwijderen.', + 'missing_processing_failure_message' => ':count kon niet worden verwijderd.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nl/detach.php b/lang/vendor/filament-actions/nl/detach.php new file mode 100644 index 0000000..abf9419 --- /dev/null +++ b/lang/vendor/filament-actions/nl/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Ontkoppelen', + + 'modal' => [ + + 'heading' => ':Label ontkoppelen', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Ontkoppelen', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Ontkoppeld', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Geselecteerde ontkoppelen', + + 'modal' => [ + + 'heading' => 'Geselecteerde :label ontkoppelen', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Ontkoppelen', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Ontkoppeld', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nl/dissociate.php b/lang/vendor/filament-actions/nl/dissociate.php new file mode 100644 index 0000000..7d49fa0 --- /dev/null +++ b/lang/vendor/filament-actions/nl/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Ontkoppelen', + + 'modal' => [ + + 'heading' => ':Label ontkoppelen', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Ontkoppelen', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Ontkoppeld', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Geselecteerde ontkoppelen', + + 'modal' => [ + + 'heading' => 'Geselecteerde :label ontkoppelen', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Ontkoppelen', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Ontkoppeld', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nl/edit.php b/lang/vendor/filament-actions/nl/edit.php new file mode 100644 index 0000000..3f4a455 --- /dev/null +++ b/lang/vendor/filament-actions/nl/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Bewerken', + + 'modal' => [ + + 'heading' => ':Label bewerken', + + 'actions' => [ + + 'save' => [ + 'label' => 'Wijzigingen opslaan', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Opgeslagen', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nl/export.php b/lang/vendor/filament-actions/nl/export.php new file mode 100644 index 0000000..e8d27ac --- /dev/null +++ b/lang/vendor/filament-actions/nl/export.php @@ -0,0 +1,94 @@ + ':Label exporteren', + + 'modal' => [ + + 'heading' => ':Label exporteren', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Kolommen', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Alles selecteren', + ], + + 'deselect_all' => [ + 'label' => 'Alles deselecteren', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column ingeschakeld', + ], + + 'label' => [ + 'label' => ':column label', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Exporteren', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Exporteren voltooid', + + 'actions' => [ + + 'download_csv' => [ + 'label' => '.csv downloaden', + ], + + 'download_xlsx' => [ + 'label' => '.xlsx downloaden', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Export is te groot', + 'body' => 'Je mag niet meer dan 1 rij tegelijk exporteren.|Je mag niet meer dan :count rijen tegelijk exporteren.', + ], + + 'no_columns' => [ + 'title' => 'Geen kolommen geselecteerd', + 'body' => 'Selecteer ten minste één kolom om te exporteren.', + ], + + 'started' => [ + 'title' => 'Exporteren gestart', + 'body' => 'Je export is begonnen en 1 rij wordt op de achtergrond verwerkt. Je ontvangt een melding met de downloadlink wanneer deze is voltooid.|Je export is begonnen en :count rijen worden op de achtergrond verwerkt. Je ontvangt een melding met de downloadlink wanneer deze is voltooid.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/nl/force-delete.php b/lang/vendor/filament-actions/nl/force-delete.php new file mode 100644 index 0000000..fd3a6ef --- /dev/null +++ b/lang/vendor/filament-actions/nl/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Geforceerd verwijderen', + + 'modal' => [ + + 'heading' => ':Label geforceerd verwijderen', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Verwijderen', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Verwijderd', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Geselecteerde geforceerd verwijderen', + + 'modal' => [ + + 'heading' => 'Geselecteerde :label geforceerd verwijderen', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Verwijderen', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Verwijderd', + ], + + 'deleted_partial' => [ + 'title' => ':count van :total verwijderd', + 'missing_authorization_failure_message' => 'Je hebt geen toestemming om :count te verwijderen.', + 'missing_processing_failure_message' => ':count kon niet worden verwijderd.', + ], + + 'deleted_none' => [ + 'title' => 'Verwijderen mislukt', + 'missing_authorization_failure_message' => 'Je hebt geen toestemming om :count te verwijderen.', + 'missing_processing_failure_message' => ':count kon niet worden verwijderd.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nl/group.php b/lang/vendor/filament-actions/nl/group.php new file mode 100644 index 0000000..4f62eba --- /dev/null +++ b/lang/vendor/filament-actions/nl/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Acties', + ], + +]; diff --git a/lang/vendor/filament-actions/nl/import.php b/lang/vendor/filament-actions/nl/import.php new file mode 100644 index 0000000..c746710 --- /dev/null +++ b/lang/vendor/filament-actions/nl/import.php @@ -0,0 +1,85 @@ + ':Label importeren', + + 'modal' => [ + + 'heading' => ':Label importeren', + + 'form' => [ + + 'file' => [ + + 'label' => 'Bestand', + + 'placeholder' => 'Upload een CSV-bestand', + + 'rules' => [ + 'duplicate_columns' => '{0} Het bestand mag niet meer dan één lege kolomkop bevatten.|{1,*} Het bestand mag geen dubbele kolomkoppen bevatten: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Kolommen', + 'placeholder' => 'Selecteer een kolom', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Voorbeeld CSV-bestand downloaden', + ], + + 'import' => [ + 'label' => 'Importeren', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Importeren voltooid', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Informatie over de mislukte rij downloaden|Informatie over de mislukte rijen downloaden', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Geüploade CSV-bestand is te groot', + 'body' => 'Je mag niet meer dan 1 rij tegelijk importeren.|Je mag niet meer dan :count rijen tegelijk importeren.', + ], + + 'started' => [ + 'title' => 'Importeren gestart', + 'body' => 'Je import is begonnen en 1 rij wordt op de achtergrond verwerkt.|Je import is begonnen en :count rijen worden op de achtergrond verwerkt.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-voorbeeld', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-mislukte-rijen', + 'error_header' => 'fout', + 'system_error' => 'Systeemfout, neem contact op met ondersteuning.', + 'column_mapping_required_for_new_record' => 'De :attribute kolom is niet toegewezen aan een kolom in het bestand, maar is vereist voor het aanmaken van nieuwe records.', + ], + +]; diff --git a/lang/vendor/filament-actions/nl/modal.php b/lang/vendor/filament-actions/nl/modal.php new file mode 100644 index 0000000..330b0e6 --- /dev/null +++ b/lang/vendor/filament-actions/nl/modal.php @@ -0,0 +1,23 @@ + 'Weet je zeker dat je dit wilt doen?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annuleren', + ], + + 'confirm' => [ + 'label' => 'Bevestigen', + ], + + 'submit' => [ + 'label' => 'Verzenden', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nl/notifications.php b/lang/vendor/filament-actions/nl/notifications.php new file mode 100644 index 0000000..30c6679 --- /dev/null +++ b/lang/vendor/filament-actions/nl/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Te veel pogingen', + 'body' => 'Probeer het over :seconds seconden opnieuw.', + ], + +]; diff --git a/lang/vendor/filament-actions/nl/replicate.php b/lang/vendor/filament-actions/nl/replicate.php new file mode 100644 index 0000000..99dab6e --- /dev/null +++ b/lang/vendor/filament-actions/nl/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Dupliceren', + + 'modal' => [ + + 'heading' => ':Label dupliceren', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Dupliceren', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Gedupliceerd', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nl/restore.php b/lang/vendor/filament-actions/nl/restore.php new file mode 100644 index 0000000..1df028e --- /dev/null +++ b/lang/vendor/filament-actions/nl/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Herstellen', + + 'modal' => [ + + 'heading' => ':Label herstellen', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Herstellen', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Hersteld', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Geselecteerde herstellen', + + 'modal' => [ + + 'heading' => 'Geselecteerde :label herstellen', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Herstellen', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Hersteld', + ], + + 'restored_partial' => [ + 'title' => ':count van :total hersteld', + 'missing_authorization_failure_message' => 'Je hebt geen toestemming om :count te herstellen.', + 'missing_processing_failure_message' => ':count kon niet worden hersteld.', + ], + + 'restored_none' => [ + 'title' => 'Herstellen mislukt', + 'missing_authorization_failure_message' => 'Je hebt geen toestemming om :count te herstellen.', + 'missing_processing_failure_message' => ':count kon niet worden hersteld.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/nl/view.php b/lang/vendor/filament-actions/nl/view.php new file mode 100644 index 0000000..3911fda --- /dev/null +++ b/lang/vendor/filament-actions/nl/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Bekijken', + + 'modal' => [ + + 'heading' => ':Label bekijken', + + 'actions' => [ + + 'close' => [ + 'label' => 'Sluiten', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pl/associate.php b/lang/vendor/filament-actions/pl/associate.php new file mode 100644 index 0000000..d527aa9 --- /dev/null +++ b/lang/vendor/filament-actions/pl/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Powiąż', + + 'modal' => [ + + 'heading' => 'Powiąż :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Rekord', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Powiąż', + ], + + 'associate_another' => [ + 'label' => 'Powiąż i powiąż kolejny', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Utworzono powiązanie', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pl/attach.php b/lang/vendor/filament-actions/pl/attach.php new file mode 100644 index 0000000..02350c4 --- /dev/null +++ b/lang/vendor/filament-actions/pl/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Dołącz', + + 'modal' => [ + + 'heading' => 'Dołącz :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Rekord', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Dołącz', + ], + + 'attach_another' => [ + 'label' => 'Dołącz i dołącz kolejny', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Dołączono', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pl/create.php b/lang/vendor/filament-actions/pl/create.php new file mode 100644 index 0000000..44eb4f2 --- /dev/null +++ b/lang/vendor/filament-actions/pl/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Utwórz', + + 'modal' => [ + + 'heading' => 'Utwórz :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Utwórz', + ], + + 'create_another' => [ + 'label' => 'Utwórz i utwórz kolejny', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Utworzono', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pl/delete.php b/lang/vendor/filament-actions/pl/delete.php new file mode 100644 index 0000000..5f00345 --- /dev/null +++ b/lang/vendor/filament-actions/pl/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Usuń', + + 'modal' => [ + + 'heading' => 'Usuń :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Usuń', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Usunięto', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Usuń zaznaczone', + + 'modal' => [ + + 'heading' => 'Usuń zaznaczone :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Usuń zaznaczone', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Usunięto', + ], + + 'deleted_partial' => [ + 'title' => 'Usunięto :count z :total rekordów', + 'missing_authorization_failure_message' => 'Nie masz uprawnień do usunięcia :count rekordów.', + 'missing_processing_failure_message' => ':count rekordów nie mogło zostać usunięte.', + ], + + 'deleted_none' => [ + 'title' => 'Usuwanie nie powiodło się', + 'missing_authorization_failure_message' => 'Nie masz uprawnień do usunięcia :count rekordów.', + 'missing_processing_failure_message' => ':count rekordów nie mogło zostać usunięte.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pl/detach.php b/lang/vendor/filament-actions/pl/detach.php new file mode 100644 index 0000000..f840c3c --- /dev/null +++ b/lang/vendor/filament-actions/pl/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Odłącz', + + 'modal' => [ + + 'heading' => 'Odłącz :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odłącz', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Odłączono', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Odłącz zaznaczone', + + 'modal' => [ + + 'heading' => 'Odłącz zaznaczone :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odłącz zaznaczone', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Odłączono', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pl/dissociate.php b/lang/vendor/filament-actions/pl/dissociate.php new file mode 100644 index 0000000..45b3133 --- /dev/null +++ b/lang/vendor/filament-actions/pl/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Usuń powiązanie', + + 'modal' => [ + + 'heading' => 'Usuń powiązanie :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Usuń powiązanie', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Usunięto powiązanie', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Usuń powiązanie zaznaczonych', + + 'modal' => [ + + 'heading' => 'Usuń powiązania zaznaczonych :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Usuń powiązanie zaznaczonych', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Usunięto powiązania', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pl/edit.php b/lang/vendor/filament-actions/pl/edit.php new file mode 100644 index 0000000..40d24f2 --- /dev/null +++ b/lang/vendor/filament-actions/pl/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Edytuj', + + 'modal' => [ + + 'heading' => 'Edytuj :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Zapisz', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Zmiany zapisane', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pl/export.php b/lang/vendor/filament-actions/pl/export.php new file mode 100644 index 0000000..2ed0663 --- /dev/null +++ b/lang/vendor/filament-actions/pl/export.php @@ -0,0 +1,94 @@ + 'Eksportuj :label', + + 'modal' => [ + + 'heading' => 'Eksportuj :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Kolumny', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Zaznacz wszystko', + ], + + 'deselect_all' => [ + 'label' => 'Odznacz wszystko', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column włączony', + ], + + 'label' => [ + 'label' => 'Etykieta :column', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Eksportuj', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Eksport zakończony', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Pobierz .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Pobierz .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Zbyt dużo wierszy', + 'body' => 'Nie możesz wyeksportować więcej niż 1 wiersz na raz.|Nie możesz wyeksportować więcej niż :count wierszy na raz.', + ], + + 'no_columns' => [ + 'title' => 'Brak wybranych kolumn', + 'body' => 'Proszę wybrać przynajmniej jedną kolumnę do eksportu.', + ], + + 'started' => [ + 'title' => 'Eksport rozpoczęty', + 'body' => 'Rozpoczęto eksport i 1 wiersz zostanie przetworzony w tle.|Rozpoczęto eksport i :count wierszy zostanie przetworzonych w tle.', + ], + + ], + + 'file_name' => 'eksport-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/pl/force-delete.php b/lang/vendor/filament-actions/pl/force-delete.php new file mode 100644 index 0000000..4b75c15 --- /dev/null +++ b/lang/vendor/filament-actions/pl/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Usuń trwale', + + 'modal' => [ + + 'heading' => 'Trwale usuń :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Usuń trwale', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Trwale usunięto', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Trwale usuń zaznaczone', + + 'modal' => [ + + 'heading' => 'Trwale usuń zaznaczone :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Usuń trwale', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Trwale usunięto', + ], + + 'deleted_partial' => [ + 'title' => 'Usunięto :count z :total rekordów', + 'missing_authorization_failure_message' => 'Nie masz uprawnień do usunięcia :count rekordów.', + 'missing_processing_failure_message' => ':count rekordów nie mogło zostać usunięte.', + ], + + 'deleted_none' => [ + 'title' => 'Usuwanie nie powiodło się', + 'missing_authorization_failure_message' => 'Nie masz uprawnień do usunięcia :count rekordów.', + 'missing_processing_failure_message' => ':count rekordów nie mogło zostać usunięte.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pl/group.php b/lang/vendor/filament-actions/pl/group.php new file mode 100644 index 0000000..da48b84 --- /dev/null +++ b/lang/vendor/filament-actions/pl/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Czynności', + ], + +]; diff --git a/lang/vendor/filament-actions/pl/import.php b/lang/vendor/filament-actions/pl/import.php new file mode 100644 index 0000000..a72505b --- /dev/null +++ b/lang/vendor/filament-actions/pl/import.php @@ -0,0 +1,85 @@ + 'Importuj :label', + + 'modal' => [ + + 'heading' => 'Importuj :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Plik', + + 'placeholder' => 'Wybierz plik CSV', + + 'rules' => [ + 'duplicate_columns' => '{0} Plik nie może zawierać więcej niż jednego pustego nagłówka kolumny.|{1,*} Plik nie może zawierać duplikatów nagłówków kolumn: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Kolumny', + 'placeholder' => 'Wybierz kolumnę', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Pobierz przykładowy plik CSV', + ], + + 'import' => [ + 'label' => 'Importuj', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Import zakończony', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Pobierz informacje o niepowodzeniach', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Przesłany plik CSV jest zbyt duży', + 'body' => 'Nie możesz zaimportować więcej niż 1 wiersz na raz.|Nie możesz zaimportować więcej niż :count wierszy na raz.', + ], + + 'started' => [ + 'title' => 'Import rozpoczęty', + 'body' => 'Import rozpoczęty i 1 wiersz zostanie przetworzony w tle.|Import rozpoczęty i :count wierszy zostanie przetworzonych w tle.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'błąd', + 'system_error' => 'Błąd systemu, skontaktuj się z pomocą techniczną.', + 'column_mapping_required_for_new_record' => 'Kolumna :attribute nie została odwzorowana na kolumnę w pliku, ale jest wymagana do tworzenia nowych rekordów.', + ], + +]; diff --git a/lang/vendor/filament-actions/pl/modal.php b/lang/vendor/filament-actions/pl/modal.php new file mode 100644 index 0000000..9f3a0d2 --- /dev/null +++ b/lang/vendor/filament-actions/pl/modal.php @@ -0,0 +1,23 @@ + 'Czy na pewno chcesz to zrobić?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Anuluj', + ], + + 'confirm' => [ + 'label' => 'Potwierdź', + ], + + 'submit' => [ + 'label' => 'Zatwierdź', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pl/notifications.php b/lang/vendor/filament-actions/pl/notifications.php new file mode 100644 index 0000000..e701d7a --- /dev/null +++ b/lang/vendor/filament-actions/pl/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Zbyt wiele nieudanych prób', + 'body' => 'Spróbuj ponownie za :seconds sekund.', + ], + +]; diff --git a/lang/vendor/filament-actions/pl/replicate.php b/lang/vendor/filament-actions/pl/replicate.php new file mode 100644 index 0000000..ffd24c7 --- /dev/null +++ b/lang/vendor/filament-actions/pl/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Powiel', + + 'modal' => [ + + 'heading' => 'Powiel :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Powiel', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Powielono', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pl/restore.php b/lang/vendor/filament-actions/pl/restore.php new file mode 100644 index 0000000..83222b0 --- /dev/null +++ b/lang/vendor/filament-actions/pl/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Przywróć', + + 'modal' => [ + + 'heading' => 'Przywróć :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Przywróć', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Przywrócono', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Przywróć zaznaczone', + + 'modal' => [ + + 'heading' => 'Przywróć zaznaczone :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Przywróć', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Przywrócono', + ], + + 'restored_partial' => [ + 'title' => 'Przywrócono :count z :total rekordów', + 'missing_authorization_failure_message' => 'Nie masz uprawnień do przywrócenia :count rekordów.', + 'missing_processing_failure_message' => ':count rekordów nie mogło zostać przywróconych.', + ], + + 'restored_none' => [ + 'title' => 'Przywracanie nie powiodło się', + 'missing_authorization_failure_message' => 'Nie masz uprawnień do przywrócenia :count rekordów.', + 'missing_processing_failure_message' => ':count rekordów nie mogło zostać przywróconych.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pl/view.php b/lang/vendor/filament-actions/pl/view.php new file mode 100644 index 0000000..b7108b5 --- /dev/null +++ b/lang/vendor/filament-actions/pl/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Podgląd', + + 'modal' => [ + + 'heading' => 'Podgląd :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Zamknij', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt/associate.php b/lang/vendor/filament-actions/pt/associate.php new file mode 100644 index 0000000..4bc473e --- /dev/null +++ b/lang/vendor/filament-actions/pt/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Associar', + + 'modal' => [ + + 'heading' => 'Associar :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Registo', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Associar', + ], + + 'associate_another' => [ + 'label' => 'Associar e associar outro', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Associado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt/attach.php b/lang/vendor/filament-actions/pt/attach.php new file mode 100644 index 0000000..ae363e7 --- /dev/null +++ b/lang/vendor/filament-actions/pt/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Vincular', + + 'modal' => [ + + 'heading' => 'Vincular :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Registo', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Vincular', + ], + + 'attach_another' => [ + 'label' => 'Vincular e vincular outro', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Vinculado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt/create.php b/lang/vendor/filament-actions/pt/create.php new file mode 100644 index 0000000..ad17f78 --- /dev/null +++ b/lang/vendor/filament-actions/pt/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Criar :label', + + 'modal' => [ + + 'heading' => 'Criar :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Criar', + ], + + 'create_another' => [ + 'label' => 'Criar e criar novo', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Criado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt/delete.php b/lang/vendor/filament-actions/pt/delete.php new file mode 100644 index 0000000..a8df5f5 --- /dev/null +++ b/lang/vendor/filament-actions/pt/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Eliminar', + + 'modal' => [ + + 'heading' => 'Eliminar :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Eliminar', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Eliminado', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Eliminar seleccionados', + + 'modal' => [ + + 'heading' => 'Eliminar :label seleccionados', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Eliminar', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Eliminado', + ], + + 'deleted_partial' => [ + 'title' => 'Eliminados :count de :total', + 'missing_authorization_failure_message' => 'Não tem permissão para eliminar :count.', + 'missing_processing_failure_message' => ':count não puderam ser eliminados.', + ], + + 'deleted_none' => [ + 'title' => 'Falha ao eliminar', + 'missing_authorization_failure_message' => 'Não tem permissão para eliminar :count.', + 'missing_processing_failure_message' => ':count não puderam ser eliminados.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt/detach.php b/lang/vendor/filament-actions/pt/detach.php new file mode 100644 index 0000000..9e21bf2 --- /dev/null +++ b/lang/vendor/filament-actions/pt/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Desvincular', + + 'modal' => [ + + 'heading' => 'Desvincular :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Desvincular', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Desvinculado', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Desvincular seleccionados', + + 'modal' => [ + + 'heading' => 'Desvincular :label seleccionados', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Desvincular', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Desvinculado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt/dissociate.php b/lang/vendor/filament-actions/pt/dissociate.php new file mode 100644 index 0000000..26075f2 --- /dev/null +++ b/lang/vendor/filament-actions/pt/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Desassociar', + + 'modal' => [ + + 'heading' => 'Desassociar :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Desassociar', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Desassociado', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Desassociar seleccionados', + + 'modal' => [ + + 'heading' => 'Desassociar :label seleccionados', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Desassociar', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Desassociado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt/edit.php b/lang/vendor/filament-actions/pt/edit.php new file mode 100644 index 0000000..de90a18 --- /dev/null +++ b/lang/vendor/filament-actions/pt/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Editar', + + 'modal' => [ + + 'heading' => 'Editar :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Guardar alterações', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Guardado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt/export.php b/lang/vendor/filament-actions/pt/export.php new file mode 100644 index 0000000..4909f2c --- /dev/null +++ b/lang/vendor/filament-actions/pt/export.php @@ -0,0 +1,77 @@ + 'Exportar :label', + + 'modal' => [ + + 'heading' => 'Exportar :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Colunas', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column activa', + ], + + 'label' => [ + 'label' => 'etiqueta para :column', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Exportar', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Exportação terminada', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Descarregar .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Descarregar .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'A exportação é demasiado grande', + 'body' => 'Não é possível exportar mais de um registo de uma só vez.|Não é possível exportar mais de :count registos de uma só vez.', + ], + + 'started' => [ + 'title' => 'Exportação iniciada', + 'body' => 'A exportação foi iniciada e 1 registo será processado em segundo plano.|A exportação foi iniciada e :count registos serão processados em segundo plano.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/pt/force-delete.php b/lang/vendor/filament-actions/pt/force-delete.php new file mode 100644 index 0000000..97c3a6c --- /dev/null +++ b/lang/vendor/filament-actions/pt/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Eliminar permanentemente', + + 'modal' => [ + + 'heading' => 'Eliminar permanentemente :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Eliminar', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Eliminado', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Eliminar permanentemente seleccionados', + + 'modal' => [ + + 'heading' => 'Eliminar permanentemente :label seleccionados', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Eliminar', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Eliminado', + ], + + 'deleted_partial' => [ + 'title' => 'Eliminados :count de :total', + 'missing_authorization_failure_message' => 'Não tem permissão para eliminar :count.', + 'missing_processing_failure_message' => ':count não puderam ser eliminados.', + ], + + 'deleted_none' => [ + 'title' => 'Falha ao eliminar', + 'missing_authorization_failure_message' => 'Não tem permissão para eliminar :count.', + 'missing_processing_failure_message' => ':count não puderam ser eliminados.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt/group.php b/lang/vendor/filament-actions/pt/group.php new file mode 100644 index 0000000..83a745e --- /dev/null +++ b/lang/vendor/filament-actions/pt/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Acções', + ], + +]; diff --git a/lang/vendor/filament-actions/pt/import.php b/lang/vendor/filament-actions/pt/import.php new file mode 100644 index 0000000..66a775f --- /dev/null +++ b/lang/vendor/filament-actions/pt/import.php @@ -0,0 +1,81 @@ + 'Importar :label', + + 'modal' => [ + + 'heading' => 'Importar :label', + + 'form' => [ + + 'file' => [ + 'label' => 'Ficheiro', + 'placeholder' => 'Carregar um ficheiro CSV', + 'rules' => [ + 'duplicate_columns' => '{0} O ficheiro não pode conter, em falta, mais de um cabeçalho.|{1,*} O ficheiro não pode conter cabeçalhos em duplicado: :columns.', + ], + ], + + 'columns' => [ + 'label' => 'Colunas', + 'placeholder' => 'Seleccione uma coluna', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Descarregar um ficheiro CSV de exemplo', + ], + + 'import' => [ + 'label' => 'Importar', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Importação completa', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Descarregar informação sobre a falha na linha|Descarregar informação sobre as falhas nas linhas', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'O ficheiro CSV carregado é demasiado grande', + 'body' => 'Não é possível importar mais de uma linha de uma só vez.|Não é possível importar mais de :count linhas de uma só vez.', + ], + + 'started' => [ + 'title' => 'Importação iniciada', + 'body' => 'A importação foi iniciada e 1 linha será processada em segundo plano.|A importação foi iniciada e :count linhas serão processadas em segundo plano.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'erro', + 'system_error' => 'Erro de sistema, por favor, contacte o suporte técnico.', + 'column_mapping_required_for_new_record' => 'A coluna :attribute não foi mapeada a uma coluna no ficheiro, no entanto é necessária para a criação de novos registos.', + ], + +]; diff --git a/lang/vendor/filament-actions/pt/modal.php b/lang/vendor/filament-actions/pt/modal.php new file mode 100644 index 0000000..fdda304 --- /dev/null +++ b/lang/vendor/filament-actions/pt/modal.php @@ -0,0 +1,23 @@ + 'Tem a certeza que deseja prosseguir?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancelar', + ], + + 'confirm' => [ + 'label' => 'Confirmar', + ], + + 'submit' => [ + 'label' => 'Submeter', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt/notifications.php b/lang/vendor/filament-actions/pt/notifications.php new file mode 100644 index 0000000..7c881e4 --- /dev/null +++ b/lang/vendor/filament-actions/pt/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Demasiadas tentativas', + 'body' => 'Tente novamente em :seconds segundos.', + ], + +]; diff --git a/lang/vendor/filament-actions/pt/replicate.php b/lang/vendor/filament-actions/pt/replicate.php new file mode 100644 index 0000000..15333fc --- /dev/null +++ b/lang/vendor/filament-actions/pt/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Replicar', + + 'modal' => [ + + 'heading' => 'Replicar :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Replicar', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Replicado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt/restore.php b/lang/vendor/filament-actions/pt/restore.php new file mode 100644 index 0000000..980b571 --- /dev/null +++ b/lang/vendor/filament-actions/pt/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Restaurar', + + 'modal' => [ + + 'heading' => 'Restaurar :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restaurar', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Restaurado', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Restaurar seleccionados', + + 'modal' => [ + + 'heading' => 'Restaurar :label seleccionados', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restaurar', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Restaurado', + ], + + 'restored_partial' => [ + 'title' => 'Restaurados :count de :total', + 'missing_authorization_failure_message' => 'Não tem permissão para restaurar :count.', + 'missing_processing_failure_message' => ':count não puderam ser restaurados.', + ], + + 'restored_none' => [ + 'title' => 'Falha ao restaurar', + 'missing_authorization_failure_message' => 'Não tem permissão para restaurar :count.', + 'missing_processing_failure_message' => ':count não puderam ser restaurados.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt/view.php b/lang/vendor/filament-actions/pt/view.php new file mode 100644 index 0000000..70829ec --- /dev/null +++ b/lang/vendor/filament-actions/pt/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Visualizar', + + 'modal' => [ + + 'heading' => 'Visualizar :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Fechar', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/associate.php b/lang/vendor/filament-actions/pt_BR/associate.php new file mode 100644 index 0000000..ae5cca5 --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Associar', + + 'modal' => [ + + 'heading' => 'Associar :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Registro', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Associar', + ], + + 'associate_another' => [ + 'label' => 'Salvar e associar outro', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Associado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/attach.php b/lang/vendor/filament-actions/pt_BR/attach.php new file mode 100644 index 0000000..687ea79 --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Vincular', + + 'modal' => [ + + 'heading' => 'Vincular :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Registro', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Vincular', + ], + + 'attach_another' => [ + 'label' => 'Salvar e vincular outro', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Vinculado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/create.php b/lang/vendor/filament-actions/pt_BR/create.php new file mode 100644 index 0000000..bf0628e --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Criar :label', + + 'modal' => [ + + 'heading' => 'Criar :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Criar', + ], + + 'create_another' => [ + 'label' => 'Salvar e criar outro', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Criado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/delete.php b/lang/vendor/filament-actions/pt_BR/delete.php new file mode 100644 index 0000000..209b845 --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Excluir', + + 'modal' => [ + + 'heading' => 'Excluir :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Excluir', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Excluído', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Excluir selecionado', + + 'modal' => [ + + 'heading' => 'Excluir :label selecionado', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Excluir', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Excluído', + ], + + 'deleted_partial' => [ + 'title' => 'Excluídos :count de :total', + 'missing_authorization_failure_message' => 'Você não tem permissão para excluir :count.', + 'missing_processing_failure_message' => ':count não pôde(m) ser excluído(s).', + ], + + 'deleted_none' => [ + 'title' => 'Falha ao excluir', + 'missing_authorization_failure_message' => 'Você não tem permissão para excluir :count.', + 'missing_processing_failure_message' => ':count não pôde(m) ser excluído(s).', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/detach.php b/lang/vendor/filament-actions/pt_BR/detach.php new file mode 100644 index 0000000..2ddd3be --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Desvincular', + + 'modal' => [ + + 'heading' => 'Desvincular :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Desvincular', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Desvinculado', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Desvincular selecionado', + + 'modal' => [ + + 'heading' => 'Desvincular :label selecionado', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Desvincular', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Desvinculado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/dissociate.php b/lang/vendor/filament-actions/pt_BR/dissociate.php new file mode 100644 index 0000000..02576d4 --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Dissociar', + + 'modal' => [ + + 'heading' => 'Dissociar :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissociar', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissociado', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Dissociar selecionado', + + 'modal' => [ + + 'heading' => 'Dissociar :label selecionado', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Dissociar', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Dissociado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/edit.php b/lang/vendor/filament-actions/pt_BR/edit.php new file mode 100644 index 0000000..0fb5950 --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Editar', + + 'modal' => [ + + 'heading' => 'Editar :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Salvar alterações', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Salvo', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/export.php b/lang/vendor/filament-actions/pt_BR/export.php new file mode 100644 index 0000000..8329265 --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/export.php @@ -0,0 +1,77 @@ + 'Exportar :label', + + 'modal' => [ + + 'heading' => 'Exportar :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Colunas', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column ativa', + ], + + 'label' => [ + 'label' => 'Rótulo para :column', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Exportar', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Exportação completa', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Baixar .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Baixar .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'A exportação é muito grande', + 'body' => 'Não é possível exportar mais de 1 linha de uma vez.|Não é possível exportar mais de :count linhas de uma vez.', + ], + + 'started' => [ + 'title' => 'Exportação iniciada', + 'body' => 'A exportação foi iniciada e 1 linha será processada em segundo plano.|A exportação foi iniciada e :count linhas serão processadas em segundo plano.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/pt_BR/force-delete.php b/lang/vendor/filament-actions/pt_BR/force-delete.php new file mode 100644 index 0000000..75316ff --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Forçar exclusão', + + 'modal' => [ + + 'heading' => 'Forçar exclusão de :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Excluir', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Excluído', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Forçar exclusão selecionado', + + 'modal' => [ + + 'heading' => 'Forçar exclusão de :label selecionado', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Excluir', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Excluído', + ], + + 'deleted_partial' => [ + 'title' => 'Excluídos :count de :total', + 'missing_authorization_failure_message' => 'Você não tem permissão para excluir :count.', + 'missing_processing_failure_message' => ':count não pôde(m) ser excluído(s).', + ], + + 'deleted_none' => [ + 'title' => 'Falha ao excluir', + 'missing_authorization_failure_message' => 'Você não tem permissão para excluir :count.', + 'missing_processing_failure_message' => ':count não pôde(m) ser excluído(s).', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/group.php b/lang/vendor/filament-actions/pt_BR/group.php new file mode 100644 index 0000000..c564b24 --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Ações', + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/import.php b/lang/vendor/filament-actions/pt_BR/import.php new file mode 100644 index 0000000..bad2514 --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/import.php @@ -0,0 +1,85 @@ + 'Importar :label', + + 'modal' => [ + + 'heading' => 'Importar :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Arquivo', + + 'placeholder' => 'Enviar um arquivo CSV', + + 'rules' => [ + 'duplicate_columns' => '{0} O arquivo não deve possuir mais de uma coluna sem cabeçalho.|{1,*} O arquivo não pode conter colunas com cabeçalhos iguais: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Colunas', + 'placeholder' => 'Selecione uma coluna', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Baixar um arquivo CSV de exemplo', + ], + + 'import' => [ + 'label' => 'Importar', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Importação completa', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Baixar informações sobre a linha que falhou|Baixar informações sobre as linhas que falharam', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'O arquivo CSV enviado é muito grande', + 'body' => 'Não é possível importar mais de 1 linha de uma vez.|Não é possível importar mais de :count linhas de uma vez.', + ], + + 'started' => [ + 'title' => 'Importação iniciada', + 'body' => 'A importação foi iniciada e 1 linha será processada em segundo plano.|A importação foi iniciada e :count linhas serão processadas em segundo plano.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'erro', + 'system_error' => 'Erro de sistema, por favor, entre em contato com o suporte.', + 'column_mapping_required_for_new_record' => 'A coluna :attribute não foi mapeada para uma coluna no arquivo, mas é necessária para criar novos registros.', + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/modal.php b/lang/vendor/filament-actions/pt_BR/modal.php new file mode 100644 index 0000000..a2489f0 --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/modal.php @@ -0,0 +1,23 @@ + 'Você tem certeza que gostaria de fazer isso?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancelar', + ], + + 'confirm' => [ + 'label' => 'Confirmar', + ], + + 'submit' => [ + 'label' => 'Enviar', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/notifications.php b/lang/vendor/filament-actions/pt_BR/notifications.php new file mode 100644 index 0000000..f579dd8 --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Muitas tentativas', + 'body' => 'Tente novamente em :seconds segundos.', + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/replicate.php b/lang/vendor/filament-actions/pt_BR/replicate.php new file mode 100644 index 0000000..15333fc --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Replicar', + + 'modal' => [ + + 'heading' => 'Replicar :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Replicar', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Replicado', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/restore.php b/lang/vendor/filament-actions/pt_BR/restore.php new file mode 100644 index 0000000..643332f --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Restaurar', + + 'modal' => [ + + 'heading' => 'Restaurar :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restaurar', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Restaurado', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Restaurar selecionado', + + 'modal' => [ + + 'heading' => 'Restaurar :label selecionado', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restaurar', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Restaurado', + ], + + 'restored_partial' => [ + 'title' => 'Restaurados :count de :total', + 'missing_authorization_failure_message' => 'Você não tem permissão para restaurar :count.', + 'missing_processing_failure_message' => ':count não puderam ser restaurados.', + ], + + 'restored_none' => [ + 'title' => 'Falha ao restaurar', + 'missing_authorization_failure_message' => 'Você não tem permissão para restaurar :count.', + 'missing_processing_failure_message' => ':count não puderam ser restaurados.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/pt_BR/view.php b/lang/vendor/filament-actions/pt_BR/view.php new file mode 100644 index 0000000..70829ec --- /dev/null +++ b/lang/vendor/filament-actions/pt_BR/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Visualizar', + + 'modal' => [ + + 'heading' => 'Visualizar :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Fechar', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ro/associate.php b/lang/vendor/filament-actions/ro/associate.php new file mode 100644 index 0000000..9453951 --- /dev/null +++ b/lang/vendor/filament-actions/ro/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Asociere', + + 'modal' => [ + + 'heading' => 'Asociere :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Înregistrare', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Asociere', + ], + + 'associate_another' => [ + 'label' => 'Asociați și asociați altul', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Asociat cu succes', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ro/attach.php b/lang/vendor/filament-actions/ro/attach.php new file mode 100644 index 0000000..e291718 --- /dev/null +++ b/lang/vendor/filament-actions/ro/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Atașare', + + 'modal' => [ + + 'heading' => 'Atașare :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Înregistrare', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Atașare', + ], + + 'attach_another' => [ + 'label' => 'Atașați și atașați altul', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Atașat cu succes', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ro/create.php b/lang/vendor/filament-actions/ro/create.php new file mode 100644 index 0000000..d0d1c8d --- /dev/null +++ b/lang/vendor/filament-actions/ro/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Adăugare :label', + + 'modal' => [ + + 'heading' => 'Creare :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Creare', + ], + + 'create_another' => [ + 'label' => 'Creați și creați altul', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Creat cu succes', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ro/delete.php b/lang/vendor/filament-actions/ro/delete.php new file mode 100644 index 0000000..2ea3b8c --- /dev/null +++ b/lang/vendor/filament-actions/ro/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Ștergere', + + 'modal' => [ + + 'heading' => 'Ștergere :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ștergere', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Șters cu succes', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Ștergeți înregistrările selectate', + + 'modal' => [ + + 'heading' => 'Ștergeți :label selectate', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ștergere', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Șters cu succes', + ], + + 'deleted_partial' => [ + 'title' => 'S-au șters :count din :total', + 'missing_authorization_failure_message' => 'Nu aveți permisiunea de a șterge :count.', + 'missing_processing_failure_message' => ':count nu au putut fi șterse.', + ], + + 'deleted_none' => [ + 'title' => 'Ștergerea a eșuat', + 'missing_authorization_failure_message' => 'Nu aveți permisiunea de a șterge :count.', + 'missing_processing_failure_message' => ':count nu au putut fi șterse.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ro/detach.php b/lang/vendor/filament-actions/ro/detach.php new file mode 100644 index 0000000..b21404e --- /dev/null +++ b/lang/vendor/filament-actions/ro/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Detașare', + + 'modal' => [ + + 'heading' => 'Detașare :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Detașare', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Detașat cu succes', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Detașați înregistrările selectate', + + 'modal' => [ + + 'heading' => 'Detașați :label selectate', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Detașați înregistrările selectate', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Detașat cu succes', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ro/dissociate.php b/lang/vendor/filament-actions/ro/dissociate.php new file mode 100644 index 0000000..1b949b3 --- /dev/null +++ b/lang/vendor/filament-actions/ro/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Disociere', + + 'modal' => [ + + 'heading' => 'Disociere :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Disociere', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Disociat cu succes', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Disociați înregistrările selectate', + + 'modal' => [ + + 'heading' => 'Disociați :label selectate', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Disociați înregistrările selectate', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Disociat cu succes', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ro/edit.php b/lang/vendor/filament-actions/ro/edit.php new file mode 100644 index 0000000..198aea0 --- /dev/null +++ b/lang/vendor/filament-actions/ro/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Editare', + + 'modal' => [ + + 'heading' => 'Editare :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Salvare', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Salvat cu succes', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ro/export.php b/lang/vendor/filament-actions/ro/export.php new file mode 100644 index 0000000..31f8ee8 --- /dev/null +++ b/lang/vendor/filament-actions/ro/export.php @@ -0,0 +1,94 @@ + 'Exportă :label', + + 'modal' => [ + + 'heading' => 'Exportă :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Coloane', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Selectează toate', + ], + + 'deselect_all' => [ + 'label' => 'Deselectează toate', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column activat', + ], + + 'label' => [ + 'label' => 'Eticheta :column', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Exportă', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Export complet', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Descarcă .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Descarcă .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Exportul este prea mare', + 'body' => 'Nu puteți exporta mai mult de 1 rând odată.|Nu puteți exporta mai mult de :count rânduri odată.', + ], + + 'no_columns' => [ + 'title' => 'Nicio coloană selectată', + 'body' => 'Vă rugăm să selectați cel puțin o coloană pentru export.', + ], + + 'started' => [ + 'title' => 'Exportul a început', + 'body' => 'Exportul dvs. a început și 1 rând va fi procesat în fundal.|Exportul dvs. a început și :count rânduri vor fi procesate în fundal.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/ro/force-delete.php b/lang/vendor/filament-actions/ro/force-delete.php new file mode 100644 index 0000000..a9a9bdd --- /dev/null +++ b/lang/vendor/filament-actions/ro/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Ștergerea forțată', + + 'modal' => [ + + 'heading' => 'Ștergere forțată :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ștergere', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Șters cu succes', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Ștergere forțată înregistrările selectate', + + 'modal' => [ + + 'heading' => 'Ștergere forțată :label selectate', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Ștergere', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Șters cu succes', + ], + + 'deleted_partial' => [ + 'title' => 'S-au șters :count din :total', + 'missing_authorization_failure_message' => 'Nu aveți permisiunea de a șterge :count.', + 'missing_processing_failure_message' => ':count nu au putut fi șterse.', + ], + + 'deleted_none' => [ + 'title' => 'Ștergerea a eșuat', + 'missing_authorization_failure_message' => 'Nu aveți permisiunea de a șterge :count.', + 'missing_processing_failure_message' => ':count nu au putut fi șterse.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ro/group.php b/lang/vendor/filament-actions/ro/group.php new file mode 100644 index 0000000..4c2eab4 --- /dev/null +++ b/lang/vendor/filament-actions/ro/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Operaţii', + ], + +]; diff --git a/lang/vendor/filament-actions/ro/import.php b/lang/vendor/filament-actions/ro/import.php new file mode 100644 index 0000000..7ae9d2f --- /dev/null +++ b/lang/vendor/filament-actions/ro/import.php @@ -0,0 +1,85 @@ + 'Importă :label', + + 'modal' => [ + + 'heading' => 'Importă :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Fișier', + + 'placeholder' => 'Încarcă un fișier CSV', + + 'rules' => [ + 'duplicate_columns' => '{0} Fișierul nu poate conține mai mult de un antet de coloană gol.|{1,*} Fișierul nu poate conține antete de coloane duplicate: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Coloane', + 'placeholder' => 'Alege Coloanele', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Descarcă exemplu în format CSV', + ], + + 'import' => [ + 'label' => 'Importă', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Import finalizat', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Descarcă informațiiler despre câmpul ce a avut eroaro|Descarcă informații despre câmpurile ce au auvt erori', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Fișierul CSV file este prea mare', + 'body' => 'Nu este permis importul a mai mult de o linile într-un singur fișier.|Nu este permis imporutl a mai mult de :count linii într-un singur fișier.', + ], + + 'started' => [ + 'title' => 'Importul a început', + 'body' => 'Importul dumneavostră a început, iar rândul va fi procesa în fundal.|Importul dumneavoastră a început, iar cele :count rânduri vor fi procesate în fundal.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-randuri-esuate', + 'error_header' => 'eroare', + 'system_error' => 'Eroare de sistem, vă rugăm contactați echipa de suport.', + 'column_mapping_required_for_new_record' => 'Coloana :attribute nu a fost mapată la o coloană din fișier, dar este necesară pentru crearea înregistrărilor noi.', + ], + +]; diff --git a/lang/vendor/filament-actions/ro/modal.php b/lang/vendor/filament-actions/ro/modal.php new file mode 100644 index 0000000..209e609 --- /dev/null +++ b/lang/vendor/filament-actions/ro/modal.php @@ -0,0 +1,23 @@ + 'Sunteţi sigur că doriţi să efectuaţi operaţia ?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Anulare', + ], + + 'confirm' => [ + 'label' => 'Confirmare', + ], + + 'submit' => [ + 'label' => 'Executați', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ro/notifications.php b/lang/vendor/filament-actions/ro/notifications.php new file mode 100644 index 0000000..4e805ca --- /dev/null +++ b/lang/vendor/filament-actions/ro/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Prea multe încercări', + 'body' => 'Vă rugăm să încercați din nou în :seconds secunde.', + ], + +]; diff --git a/lang/vendor/filament-actions/ro/replicate.php b/lang/vendor/filament-actions/ro/replicate.php new file mode 100644 index 0000000..e436384 --- /dev/null +++ b/lang/vendor/filament-actions/ro/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Replicare', + + 'modal' => [ + + 'heading' => 'Replicare :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Replicare', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Replicat cu succes', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ro/restore.php b/lang/vendor/filament-actions/ro/restore.php new file mode 100644 index 0000000..f944947 --- /dev/null +++ b/lang/vendor/filament-actions/ro/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Restaurare', + + 'modal' => [ + + 'heading' => 'Restaurare :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restaurare', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Restaurat cu succes', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Restaurare înregistrările selectate', + + 'modal' => [ + + 'heading' => 'Restaurare :label selectate', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Restaurare', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Restaurat cu succes', + ], + + 'restored_partial' => [ + 'title' => 'S-au restaurat :count din :total', + 'missing_authorization_failure_message' => 'Nu aveți permisiunea de a restaura :count.', + 'missing_processing_failure_message' => ':count nu au putut fi restaurate.', + ], + + 'restored_none' => [ + 'title' => 'Restaurarea a eșuat', + 'missing_authorization_failure_message' => 'Nu aveți permisiunea de a restaura :count.', + 'missing_processing_failure_message' => ':count nu au putut fi restaurate.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ro/view.php b/lang/vendor/filament-actions/ro/view.php new file mode 100644 index 0000000..38c4404 --- /dev/null +++ b/lang/vendor/filament-actions/ro/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Vizualizare', + + 'modal' => [ + + 'heading' => 'Vizualizare :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Închidere', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ru/associate.php b/lang/vendor/filament-actions/ru/associate.php new file mode 100644 index 0000000..1e8dc79 --- /dev/null +++ b/lang/vendor/filament-actions/ru/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Подключить', + + 'modal' => [ + + 'heading' => 'Подключить :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Запись', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Подключить', + ], + + 'associate_another' => [ + 'label' => 'Подключить и Подключить другое', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Подключено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ru/attach.php b/lang/vendor/filament-actions/ru/attach.php new file mode 100644 index 0000000..e3eec14 --- /dev/null +++ b/lang/vendor/filament-actions/ru/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Прикрепить', + + 'modal' => [ + + 'heading' => 'Прикрепить :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Запись', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Прикрепить', + ], + + 'attach_another' => [ + 'label' => 'Прикрепить и прикрепить еще', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Прикреплено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ru/create.php b/lang/vendor/filament-actions/ru/create.php new file mode 100644 index 0000000..4250ac9 --- /dev/null +++ b/lang/vendor/filament-actions/ru/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Создать', + + 'modal' => [ + + 'heading' => 'Создать :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Создать', + ], + + 'create_another' => [ + 'label' => 'Создать и создать еще один', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Создано', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ru/delete.php b/lang/vendor/filament-actions/ru/delete.php new file mode 100644 index 0000000..a2f573f --- /dev/null +++ b/lang/vendor/filament-actions/ru/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Удалить', + + 'modal' => [ + + 'heading' => 'Удалить :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Удалить', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Удалено', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Удалить отмеченное', + + 'modal' => [ + + 'heading' => 'Удалить отмеченное :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Удалить отмеченное', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Удалено', + ], + + 'deleted_partial' => [ + 'title' => 'Удалено :count из :total', + 'missing_authorization_failure_message' => 'У вас нет прав для удаления :count.', + 'missing_processing_failure_message' => ':count не может быть удалено.', + ], + + 'deleted_none' => [ + 'title' => 'Не удалось удалить', + 'missing_authorization_failure_message' => 'У вас нет прав для удаления :count.', + 'missing_processing_failure_message' => ':count не может быть удалено.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ru/detach.php b/lang/vendor/filament-actions/ru/detach.php new file mode 100644 index 0000000..f54079e --- /dev/null +++ b/lang/vendor/filament-actions/ru/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Открепить', + + 'modal' => [ + + 'heading' => 'Открепить :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Открепить', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Откреплено', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Открепить', + + 'modal' => [ + + 'heading' => 'Открепить отмеченное :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Открепить отмеченное', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Откреплено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ru/dissociate.php b/lang/vendor/filament-actions/ru/dissociate.php new file mode 100644 index 0000000..be483bb --- /dev/null +++ b/lang/vendor/filament-actions/ru/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Отделить', + + 'modal' => [ + + 'heading' => 'Отделено :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Отделить', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Отделено', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Отделить отмеченное', + + 'modal' => [ + + 'heading' => 'Отделить отмеченное :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Отделить отмеченное', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Отделено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ru/edit.php b/lang/vendor/filament-actions/ru/edit.php new file mode 100644 index 0000000..b8df9a8 --- /dev/null +++ b/lang/vendor/filament-actions/ru/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Изменить', + + 'modal' => [ + + 'heading' => 'Изменить :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Сохранить', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Сохранено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ru/export.php b/lang/vendor/filament-actions/ru/export.php new file mode 100644 index 0000000..6c7be17 --- /dev/null +++ b/lang/vendor/filament-actions/ru/export.php @@ -0,0 +1,77 @@ + 'Экспорт :label', + + 'modal' => [ + + 'heading' => 'Экспорт :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Столбцы', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column включено', + ], + + 'label' => [ + 'label' => ':column метка', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Экспорт', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Экспорт завершен', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Скачать .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Скачать .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Экспорт слишком велик', + 'body' => 'Вы не можете экспортировать более 1 строки одновременно.|Вы не можете экспортировать более :count строк одновременно.', + ], + + 'started' => [ + 'title' => 'Экспорт начался', + 'body' => 'Ваш экспорт начался, и 1 строка будет обработана в фоновом режиме.|Ваш экспорт начался, и :count строк будет обработан в фоновом режиме.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/ru/force-delete.php b/lang/vendor/filament-actions/ru/force-delete.php new file mode 100644 index 0000000..1c05bd9 --- /dev/null +++ b/lang/vendor/filament-actions/ru/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Удалить навсегда', + + 'modal' => [ + + 'heading' => 'Удалить навсегда :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Удалить', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Запись удалена', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Удалить навсегда выбранное', + + 'modal' => [ + + 'heading' => 'Удалить навсегда выбранное :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Удалить', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Записи удалены', + ], + + 'deleted_partial' => [ + 'title' => 'Удалено :count из :total', + 'missing_authorization_failure_message' => 'У вас нет прав для удаления :count.', + 'missing_processing_failure_message' => ':count не может быть удалено.', + ], + + 'deleted_none' => [ + 'title' => 'Не удалось удалить', + 'missing_authorization_failure_message' => 'У вас нет прав для удаления :count.', + 'missing_processing_failure_message' => ':count не может быть удалено.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ru/group.php b/lang/vendor/filament-actions/ru/group.php new file mode 100644 index 0000000..727dd79 --- /dev/null +++ b/lang/vendor/filament-actions/ru/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Действия', + ], + +]; diff --git a/lang/vendor/filament-actions/ru/import.php b/lang/vendor/filament-actions/ru/import.php new file mode 100644 index 0000000..527f135 --- /dev/null +++ b/lang/vendor/filament-actions/ru/import.php @@ -0,0 +1,85 @@ + 'Импорт :label', + + 'modal' => [ + + 'heading' => 'Импорт :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Файл', + + 'placeholder' => 'Загрузить CSV-файл', + + 'rules' => [ + 'duplicate_columns' => '{0} Файл не должен содержать более одного пустого заголовка столбца.|{1,*} Файл не должен содержать повторяющихся заголовков столбцов: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Столбцы', + 'placeholder' => 'Выберите столбец', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Скачать пример CSV-файла', + ], + + 'import' => [ + 'label' => 'Импорт', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Импорт завершен', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Загрузить информацию о неудавшейся строке|Загрузить информацию о неудавшейся строке', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Загруженный файл CSV слишком велик.', + 'body' => 'Вы не можете импортировать более 1 строки одновременно.|Вы не можете импортировать более :count строк одновременно.', + ], + + 'started' => [ + 'title' => 'Импорт начался', + 'body' => 'Ваш импорт начался, и 1 строка будет обработана в фоновом режиме.|Ваш импорт начался, и :count строк будет обрабатываться в фоновом режиме.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'Ошибка', + 'system_error' => 'Системная ошибка, обратитесь в службу поддержки.', + 'column_mapping_required_for_new_record' => 'Для :attribute необходимо указать соответствие столбца в файле, так как он требуется при создании записей.', + ], + +]; diff --git a/lang/vendor/filament-actions/ru/modal.php b/lang/vendor/filament-actions/ru/modal.php new file mode 100644 index 0000000..ed937d2 --- /dev/null +++ b/lang/vendor/filament-actions/ru/modal.php @@ -0,0 +1,23 @@ + 'Вы уверены, что хотите это сделать?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Отменить', + ], + + 'confirm' => [ + 'label' => 'Подтвердить', + ], + + 'submit' => [ + 'label' => 'Отправить', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ru/notifications.php b/lang/vendor/filament-actions/ru/notifications.php new file mode 100644 index 0000000..56ee6cb --- /dev/null +++ b/lang/vendor/filament-actions/ru/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Слишком много попыток', + 'body' => 'Повторите попытку через :seconds сек.', + ], + +]; diff --git a/lang/vendor/filament-actions/ru/replicate.php b/lang/vendor/filament-actions/ru/replicate.php new file mode 100644 index 0000000..26a9d92 --- /dev/null +++ b/lang/vendor/filament-actions/ru/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Копировать', + + 'modal' => [ + + 'heading' => 'Копировать :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Копировать', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Запись скопирована', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ru/restore.php b/lang/vendor/filament-actions/ru/restore.php new file mode 100644 index 0000000..8941700 --- /dev/null +++ b/lang/vendor/filament-actions/ru/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Восстановить', + + 'modal' => [ + + 'heading' => 'Восстановить :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Восстановить', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Запись восстановлена', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Восстановить выбранное', + + 'modal' => [ + + 'heading' => 'Восстановить выбранное :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Восстановить', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Записи восстановлены', + ], + + 'restored_partial' => [ + 'title' => 'Восстановлено :count из :total', + 'missing_authorization_failure_message' => 'У вас нет прав на восстановление :count.', + 'missing_processing_failure_message' => 'Не удалось восстановить :count.', + ], + + 'restored_none' => [ + 'title' => 'Failed to restore', + 'missing_authorization_failure_message' => 'У вас нет прав на восстановление :count.', + 'missing_processing_failure_message' => 'Не удалось восстановить :count.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ru/view.php b/lang/vendor/filament-actions/ru/view.php new file mode 100644 index 0000000..2c7a7cc --- /dev/null +++ b/lang/vendor/filament-actions/ru/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Просмотр', + + 'modal' => [ + + 'heading' => 'Просмотр :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Закрыть', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sk/associate.php b/lang/vendor/filament-actions/sk/associate.php new file mode 100644 index 0000000..83f39e2 --- /dev/null +++ b/lang/vendor/filament-actions/sk/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Pripojiť', + + 'modal' => [ + + 'heading' => 'Pripojiť :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Záznam', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Pripojiť', + ], + + 'associate_another' => [ + 'label' => 'Pripojiť & pripojiť ďalšie', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Pripojené', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sk/attach.php b/lang/vendor/filament-actions/sk/attach.php new file mode 100644 index 0000000..31fee0a --- /dev/null +++ b/lang/vendor/filament-actions/sk/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Pridať', + + 'modal' => [ + + 'heading' => 'Pridať :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Záznam', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Pridať', + ], + + 'attach_another' => [ + 'label' => 'Pridať & pridať ďalšie', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Pridané', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sk/create.php b/lang/vendor/filament-actions/sk/create.php new file mode 100644 index 0000000..61a0cc3 --- /dev/null +++ b/lang/vendor/filament-actions/sk/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Vytvoriť', + + 'modal' => [ + + 'heading' => 'Vytvoriť :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Vytvoriť', + ], + + 'create_another' => [ + 'label' => 'Vytvoriť & vytvoriť ďalšie', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Vytvorené', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sk/delete.php b/lang/vendor/filament-actions/sk/delete.php new file mode 100644 index 0000000..0b943c9 --- /dev/null +++ b/lang/vendor/filament-actions/sk/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Odstrániť', + + 'modal' => [ + + 'heading' => 'Odstrániť :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Odstrániť', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Odstránené', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Odstrániť vybrané', + + 'modal' => [ + + 'heading' => 'Odstrániť vybrané :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Odstrániť', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Odstránené', + ], + + 'deleted_partial' => [ + 'title' => 'Odstránených :count z :total', + 'missing_authorization_failure_message' => 'Nemáte oprávnenie odstrániť :count.', + 'missing_processing_failure_message' => ':count sa nepodarilo odstrániť.', + ], + + 'deleted_none' => [ + 'title' => 'Odstránenie zlyhalo', + 'missing_authorization_failure_message' => 'Nemáte oprávnenie odstrániť :count.', + 'missing_processing_failure_message' => ':count sa nepodarilo odstrániť.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sk/detach.php b/lang/vendor/filament-actions/sk/detach.php new file mode 100644 index 0000000..ef9d62b --- /dev/null +++ b/lang/vendor/filament-actions/sk/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Odobrať', + + 'modal' => [ + + 'heading' => 'Odobrať :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odobrať', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Odobrať', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Odobrať vybrané', + + 'modal' => [ + + 'heading' => 'Odobrať vybrané :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odobrať', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Odobrať', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sk/dissociate.php b/lang/vendor/filament-actions/sk/dissociate.php new file mode 100644 index 0000000..65cd3c6 --- /dev/null +++ b/lang/vendor/filament-actions/sk/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Odpojiť', + + 'modal' => [ + + 'heading' => 'Odpojiť :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Odpojiť', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Odpojené', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Odpojiť vybrané', + + 'modal' => [ + + 'heading' => 'Odpojiť vybrané :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Odpojiť', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Odpojené', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sk/edit.php b/lang/vendor/filament-actions/sk/edit.php new file mode 100644 index 0000000..6711af3 --- /dev/null +++ b/lang/vendor/filament-actions/sk/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Upraviť', + + 'modal' => [ + + 'heading' => 'Upraviť :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Uložiť zmeny', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Uložené', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sk/export.php b/lang/vendor/filament-actions/sk/export.php new file mode 100644 index 0000000..6cec080 --- /dev/null +++ b/lang/vendor/filament-actions/sk/export.php @@ -0,0 +1,94 @@ + 'Export :label', + + 'modal' => [ + + 'heading' => 'Export :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Stĺpce', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Vybrať všetko', + ], + + 'deselect_all' => [ + 'label' => 'Zrušiť výber všetkých', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column povolené', + ], + + 'label' => [ + 'label' => ':column popis', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Exportovať', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Export dokončený', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Stiahnuť .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Stiahnuť .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Export je príliš veľký', + 'body' => 'Naraz nemôžete exportovať viac ako 1 riadok.|Naraz nemôžete exportovať viac ako :count riadkov.', + ], + + 'no_columns' => [ + 'title' => 'Nie sú vybrané žiadne stĺpce', + 'body' => 'Prosím vyberte aspoň jeden stĺpec na export.', + ], + + 'started' => [ + 'title' => 'Export zahájený', + 'body' => 'Export bol zahájený a 1 riadok sa spracuje na pozadí.|Export bol zahájený a :count riadkov sa spracuje na pozadí.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/sk/force-delete.php b/lang/vendor/filament-actions/sk/force-delete.php new file mode 100644 index 0000000..ae948a2 --- /dev/null +++ b/lang/vendor/filament-actions/sk/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Trvalo odstrániť', + + 'modal' => [ + + 'heading' => 'Trvalo odstrániť :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Odstrániť', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Odstránené', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Trvalo odstrániť vybrané', + + 'modal' => [ + + 'heading' => 'Trvalo odstrániť vybrané :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Odstránené', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Odstránené', + ], + + 'deleted_partial' => [ + 'title' => 'Odstránených :count z :total', + 'missing_authorization_failure_message' => 'Nemáte oprávnenie odstrániť :count.', + 'missing_processing_failure_message' => ':count sa nepodarilo odstrániť.', + ], + + 'deleted_none' => [ + 'title' => 'Nepodarilo sa odstrániť', + 'missing_authorization_failure_message' => 'Nemáte oprávnenie odstrániť :count.', + 'missing_processing_failure_message' => ':count sa nepodarilo odstrániť.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sk/group.php b/lang/vendor/filament-actions/sk/group.php new file mode 100644 index 0000000..1a13018 --- /dev/null +++ b/lang/vendor/filament-actions/sk/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Akcie', + ], + +]; diff --git a/lang/vendor/filament-actions/sk/import.php b/lang/vendor/filament-actions/sk/import.php new file mode 100644 index 0000000..758bf56 --- /dev/null +++ b/lang/vendor/filament-actions/sk/import.php @@ -0,0 +1,85 @@ + 'Import :label', + + 'modal' => [ + + 'heading' => 'Import :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Súbor', + + 'placeholder' => 'Nahrať CSV súbor', + + 'rules' => [ + 'duplicate_columns' => '{0} Súbor nesmie obsahovať viac ako jeden prázdny názov stĺpca.|{1,*} Súbor nesmie obsahovať duplicitné názvy stĺpcov: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Stĺpce', + 'placeholder' => 'Vybrať stĺpce', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Stiahnuť vzorový CSV súbor', + ], + + 'import' => [ + 'label' => 'Importovať', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Import dokončený', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Stiahnuť informácie o chybnom riadku|Stiahnuť informácie o chybných riadkoch', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Nahraný CSV súbor je príliš veľký', + 'body' => 'Naraz nemôžete importovať viac ako 1 riadok.|Naraz nemôžete importovať viac ako :count riadkov.', + ], + + 'started' => [ + 'title' => 'Import zahájený', + 'body' => 'Import bol zahájený a 1 riadok sa spracuje na pozadí.|Import bol zahájený a :count riadkov sa spracuje na pozadí.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'chyba', + 'system_error' => 'Chyba systému, prosím, kontaktujte podporu.', + 'column_mapping_required_for_new_record' => 'Stĺpec :attribute nebol namapovaný na stĺpec v súbore, ale je potrebný pre vytvorenie nových záznamov.', + ], + +]; diff --git a/lang/vendor/filament-actions/sk/modal.php b/lang/vendor/filament-actions/sk/modal.php new file mode 100644 index 0000000..aafaf8e --- /dev/null +++ b/lang/vendor/filament-actions/sk/modal.php @@ -0,0 +1,23 @@ + 'Naozaj chcete pokračovať?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Zrušiť', + ], + + 'confirm' => [ + 'label' => 'Potvrdiť', + ], + + 'submit' => [ + 'label' => 'Odoslať', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sk/notifications.php b/lang/vendor/filament-actions/sk/notifications.php new file mode 100644 index 0000000..b120f3b --- /dev/null +++ b/lang/vendor/filament-actions/sk/notifications.php @@ -0,0 +1,8 @@ + [ + 'title' => 'Príliš veľa pokusov', + 'body' => 'Skúste to znova o :seconds sekúnd.', + ], +]; diff --git a/lang/vendor/filament-actions/sk/replicate.php b/lang/vendor/filament-actions/sk/replicate.php new file mode 100644 index 0000000..4d50a8e --- /dev/null +++ b/lang/vendor/filament-actions/sk/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Duplikovať', + + 'modal' => [ + + 'heading' => 'Duplikovať :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Duplikovať', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Duplikované', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sk/restore.php b/lang/vendor/filament-actions/sk/restore.php new file mode 100644 index 0000000..dad6096 --- /dev/null +++ b/lang/vendor/filament-actions/sk/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Obnoviť', + + 'modal' => [ + + 'heading' => 'Obnoviť :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Obnoviť', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Obnovené', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Obnoviť vybrané', + + 'modal' => [ + + 'heading' => 'Obnoviť vybrané :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Obnoviť', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Obnovené', + ], + + 'restored_partial' => [ + 'title' => 'Obnovených :count z :total', + 'missing_authorization_failure_message' => 'Nemáte oprávnenie obnoviť :count.', + 'missing_processing_failure_message' => ':count sa nepodarilo obnoviť.', + ], + + 'restored_none' => [ + 'title' => 'Obnovenie zlyhalo', + 'missing_authorization_failure_message' => 'Nemáte oprávnenie obnoviť :count.', + 'missing_processing_failure_message' => ':count sa nepodarilo obnoviť.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sk/view.php b/lang/vendor/filament-actions/sk/view.php new file mode 100644 index 0000000..e575d2f --- /dev/null +++ b/lang/vendor/filament-actions/sk/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Zobraziť', + + 'modal' => [ + + 'heading' => 'Zobraziť :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Zavrieť', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sl/associate.php b/lang/vendor/filament-actions/sl/associate.php new file mode 100644 index 0000000..4266345 --- /dev/null +++ b/lang/vendor/filament-actions/sl/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Poveži', + + 'modal' => [ + + 'heading' => 'Poveži :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Zapis', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Poveži', + ], + + 'associate_another' => [ + 'label' => 'Poveži in poveži drugega', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Povezano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sl/attach.php b/lang/vendor/filament-actions/sl/attach.php new file mode 100644 index 0000000..3f99bad --- /dev/null +++ b/lang/vendor/filament-actions/sl/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Poveži', + + 'modal' => [ + + 'heading' => 'Poveži :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Zapis', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Poveži', + ], + + 'attach_another' => [ + 'label' => 'Poveži in poveži drugega', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Povezano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sl/create.php b/lang/vendor/filament-actions/sl/create.php new file mode 100644 index 0000000..6fbe749 --- /dev/null +++ b/lang/vendor/filament-actions/sl/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Nov :label', + + 'modal' => [ + + 'heading' => 'Ustvari :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Ustvari', + ], + + 'create_another' => [ + 'label' => 'Ustvari in ustvari novega', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Ustvarjeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sl/delete.php b/lang/vendor/filament-actions/sl/delete.php new file mode 100644 index 0000000..2728d0a --- /dev/null +++ b/lang/vendor/filament-actions/sl/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Izbriši', + + 'modal' => [ + + 'heading' => 'Izbriši :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Izbriši', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Izbrisano', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Izbriši izbrane', + + 'modal' => [ + + 'heading' => 'Izbriši izbrane :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Izbriši', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Izbrisano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sl/detach.php b/lang/vendor/filament-actions/sl/detach.php new file mode 100644 index 0000000..38ffe2d --- /dev/null +++ b/lang/vendor/filament-actions/sl/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Odstrani povezavo', + + 'modal' => [ + + 'heading' => 'Odstrani povezavo :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odstrani povezavo', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Povezava odstranjena', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Odstrani povezavo iz izbranih', + + 'modal' => [ + + 'heading' => 'Odstrani povezavo iz izbranih :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odstrani povezavo', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Povezava odstranjena', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sl/dissociate.php b/lang/vendor/filament-actions/sl/dissociate.php new file mode 100644 index 0000000..d28d0c8 --- /dev/null +++ b/lang/vendor/filament-actions/sl/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Loči', + + 'modal' => [ + + 'heading' => 'Loči :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Loči', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Ločeno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Loči izbrane', + + 'modal' => [ + + 'heading' => 'Loči izbrane :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Loči', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Ločeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sl/edit.php b/lang/vendor/filament-actions/sl/edit.php new file mode 100644 index 0000000..2b8ddba --- /dev/null +++ b/lang/vendor/filament-actions/sl/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Uredi', + + 'modal' => [ + + 'heading' => 'Uredi :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Shrani spremembe', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Shranjeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sl/export.php b/lang/vendor/filament-actions/sl/export.php new file mode 100644 index 0000000..17f6893 --- /dev/null +++ b/lang/vendor/filament-actions/sl/export.php @@ -0,0 +1,77 @@ + 'Izvozi :label', + + 'modal' => [ + + 'heading' => 'Izvozi :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Stolpci', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column omogočeno', + ], + + 'label' => [ + 'label' => 'Oznaka :column', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Izvozi', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Izvoz zaključen', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Prenesi .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Prenesi .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Izvoz je prevelik', + 'body' => 'Naenkrat lahko izvozite največ 1 vrstico.|Naenkrat lahko izvozite največ :count vrstic.', + ], + + 'started' => [ + 'title' => 'Izvoz se je začel', + 'body' => 'Vaš izvoz se je začel in 1 vrstica bo obdelana v ozadju. Ko bo končano, boste prejeli obvestilo s povezavo za prenos.|Vaš izvoz se je začel in :count vrstic bo obdelanih v ozadju. Ko bo končano, boste prejeli obvestilo s povezavo za prenos.', + ], + + ], + + 'file_name' => 'izvoz-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/sl/force-delete.php b/lang/vendor/filament-actions/sl/force-delete.php new file mode 100644 index 0000000..846a94f --- /dev/null +++ b/lang/vendor/filament-actions/sl/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Trajno izbriši', + + 'modal' => [ + + 'heading' => 'Trajno izbriši :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Trajno izbriši', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Trajno izbrisano', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Trajno izbriši izbrane', + + 'modal' => [ + + 'heading' => 'Trajno izbriši izbrane :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Izbriši', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Izbrisano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sl/group.php b/lang/vendor/filament-actions/sl/group.php new file mode 100644 index 0000000..edd7ebb --- /dev/null +++ b/lang/vendor/filament-actions/sl/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Akcije', + ], + +]; diff --git a/lang/vendor/filament-actions/sl/import.php b/lang/vendor/filament-actions/sl/import.php new file mode 100644 index 0000000..c842aca --- /dev/null +++ b/lang/vendor/filament-actions/sl/import.php @@ -0,0 +1,85 @@ + 'Uvozi :label', + + 'modal' => [ + + 'heading' => 'Uvozi :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Datoteka', + + 'placeholder' => 'Naloži CSV datoteko', + + 'rules' => [ + 'duplicate_columns' => '{0} Datoteka ne sme vsebovati več kot enega praznega imena stolpca.|{1,*} Datoteka ne sme vsebovati podvojenih imen stolpcev: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Stolpci', + 'placeholder' => 'Izberi stolpec', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Prenesi primer CSV datoteke', + ], + + 'import' => [ + 'label' => 'Uvozi', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Uvoz zaključen', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Prenesi informacije o neuspešni vrstici|Prenesi informacije o neuspešnih vrsticah', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Naložena CSV datoteka je prevelika', + 'body' => 'Naenkrat lahko uvozite največ 1 vrstico.|Naenkrat lahko uvozite največ :count vrstic.', + ], + + 'started' => [ + 'title' => 'Uvoz se je začel', + 'body' => 'Vaš uvoz se je začel in 1 vrstica bo obdelana v ozadju.|Vaš uvoz se je začel in :count vrstic bo obdelanih v ozadju.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'uvoz-:import_id-:csv_name-failed-rows', + 'error_header' => 'error', + 'system_error' => 'Sistemska napaka, prosimo kontaktirajte podporo.', + 'column_mapping_required_for_new_record' => 'Stolpec :attribute ni bil povezan s stolpcem v datoteki, vendar je obvezen za ustvarjanje novih zapisov.', + ], + +]; diff --git a/lang/vendor/filament-actions/sl/modal.php b/lang/vendor/filament-actions/sl/modal.php new file mode 100644 index 0000000..a64e5ac --- /dev/null +++ b/lang/vendor/filament-actions/sl/modal.php @@ -0,0 +1,23 @@ + 'Ali ste prepričani, da želite to narediti?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Prekliči', + ], + + 'confirm' => [ + 'label' => 'Potrdi', + ], + + 'submit' => [ + 'label' => 'Pošlji', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sl/replicate.php b/lang/vendor/filament-actions/sl/replicate.php new file mode 100644 index 0000000..b832b9d --- /dev/null +++ b/lang/vendor/filament-actions/sl/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Podvoji', + + 'modal' => [ + + 'heading' => 'Podvoji :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Podvoji', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Podvojeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sl/restore.php b/lang/vendor/filament-actions/sl/restore.php new file mode 100644 index 0000000..6984f5b --- /dev/null +++ b/lang/vendor/filament-actions/sl/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Obnovi', + + 'modal' => [ + + 'heading' => 'Obnovi :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Obnovi', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Obnovljeno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Obnovi izbrane', + + 'modal' => [ + + 'heading' => 'Obnovi izbrane :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Obnovi', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Obnovljeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sl/view.php b/lang/vendor/filament-actions/sl/view.php new file mode 100644 index 0000000..eee83bc --- /dev/null +++ b/lang/vendor/filament-actions/sl/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Prikaži', + + 'modal' => [ + + 'heading' => 'Prikaži :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Zapri', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sq/associate.php b/lang/vendor/filament-actions/sq/associate.php new file mode 100644 index 0000000..7cb8033 --- /dev/null +++ b/lang/vendor/filament-actions/sq/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Lidh', + + 'modal' => [ + + 'heading' => 'Lidh :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Regjistro', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Lidh', + ], + + 'associate_another' => [ + 'label' => 'Lidh & lidh another', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'U lidh', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sq/attach.php b/lang/vendor/filament-actions/sq/attach.php new file mode 100644 index 0000000..c14df0f --- /dev/null +++ b/lang/vendor/filament-actions/sq/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Ngarko', + + 'modal' => [ + + 'heading' => 'Ngarko :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Record', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Ngarko', + ], + + 'attach_another' => [ + 'label' => 'Ngarko & ngarko një tjetër', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'U ngarkua', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sq/create.php b/lang/vendor/filament-actions/sq/create.php new file mode 100644 index 0000000..5af5654 --- /dev/null +++ b/lang/vendor/filament-actions/sq/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Krijo :label', + + 'modal' => [ + + 'heading' => 'Krijo :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Krijo', + ], + + 'create_another' => [ + 'label' => 'Krijo & krijo një tjetër', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'U krijua', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sq/delete.php b/lang/vendor/filament-actions/sq/delete.php new file mode 100644 index 0000000..c7cfb11 --- /dev/null +++ b/lang/vendor/filament-actions/sq/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Fshi', + + 'modal' => [ + + 'heading' => 'Fshi :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Fshi', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'U fshi', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Fshi të selektuarin', + + 'modal' => [ + + 'heading' => 'Fshi të selektuarin :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Fshi', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'U fshi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sq/detach.php b/lang/vendor/filament-actions/sq/detach.php new file mode 100644 index 0000000..c4c8fab --- /dev/null +++ b/lang/vendor/filament-actions/sq/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Shkëput', + + 'modal' => [ + + 'heading' => 'Shkëput :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Shkëput', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'U shkëput', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Shkëput të përzgjedhurin', + + 'modal' => [ + + 'heading' => 'Shkëput të përzgjedhurin :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Shkëput', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'U shkëput', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sq/dissociate.php b/lang/vendor/filament-actions/sq/dissociate.php new file mode 100644 index 0000000..0fc5228 --- /dev/null +++ b/lang/vendor/filament-actions/sq/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Shkëput', + + 'modal' => [ + + 'heading' => 'Shkëput :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Shkëput', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Shkëput', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Shkëput të përzgjedhurin', + + 'modal' => [ + + 'heading' => 'Shkëput të përzgjedhurin :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Shkëput', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'U shkëput', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sq/edit.php b/lang/vendor/filament-actions/sq/edit.php new file mode 100644 index 0000000..9f6194a --- /dev/null +++ b/lang/vendor/filament-actions/sq/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Modifiko', + + 'modal' => [ + + 'heading' => 'Modifiko :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Ruaj ndryshimet', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'U ruajt', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sq/force-delete.php b/lang/vendor/filament-actions/sq/force-delete.php new file mode 100644 index 0000000..6ba06ff --- /dev/null +++ b/lang/vendor/filament-actions/sq/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Fshi me forcë', + + 'modal' => [ + + 'heading' => 'Fshi me forcë :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Fshi', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'U fshi', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Fshi me forcë të selektuarin', + + 'modal' => [ + + 'heading' => 'Fshi me forcë të selektuarin :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Fshi', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'U fshi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sq/group.php b/lang/vendor/filament-actions/sq/group.php new file mode 100644 index 0000000..a05a8c1 --- /dev/null +++ b/lang/vendor/filament-actions/sq/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Veprimet', + ], + +]; diff --git a/lang/vendor/filament-actions/sq/modal.php b/lang/vendor/filament-actions/sq/modal.php new file mode 100644 index 0000000..5f3294f --- /dev/null +++ b/lang/vendor/filament-actions/sq/modal.php @@ -0,0 +1,23 @@ + 'Jeni të sigurt që dëshironi ta bëni këtë?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Anulo', + ], + + 'confirm' => [ + 'label' => 'Konfirmo', + ], + + 'submit' => [ + 'label' => 'Ruaj', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sq/replicate.php b/lang/vendor/filament-actions/sq/replicate.php new file mode 100644 index 0000000..d23b1fb --- /dev/null +++ b/lang/vendor/filament-actions/sq/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Kopjo', + + 'modal' => [ + + 'heading' => 'Kopjo :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Kopjo', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'U kopjua', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sq/restore.php b/lang/vendor/filament-actions/sq/restore.php new file mode 100644 index 0000000..a00cd87 --- /dev/null +++ b/lang/vendor/filament-actions/sq/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Rivendos', + + 'modal' => [ + + 'heading' => 'Rivendos :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Rivendos', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'U rivendos', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Rivendos të selektuarin', + + 'modal' => [ + + 'heading' => 'Rivendos të selektuarin :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Rivendos', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'U rivendos', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sq/view.php b/lang/vendor/filament-actions/sq/view.php new file mode 100644 index 0000000..2e796c0 --- /dev/null +++ b/lang/vendor/filament-actions/sq/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Pamje', + + 'modal' => [ + + 'heading' => 'Pamje :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Mbyll', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/associate.php b/lang/vendor/filament-actions/sr_Cyrl/associate.php new file mode 100644 index 0000000..9afeb7a --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Повежи', + + 'modal' => [ + + 'heading' => 'Повежи :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Запис', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Повежи', + ], + + 'associate_another' => [ + 'label' => 'Повежи и повежи други', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Повезано', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/attach.php b/lang/vendor/filament-actions/sr_Cyrl/attach.php new file mode 100644 index 0000000..9fffdb0 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Приложи', + + 'modal' => [ + + 'heading' => 'Приложи :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Запис', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Приложи', + ], + + 'attach_another' => [ + 'label' => 'Приложи и приложи још један', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Приложено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/create.php b/lang/vendor/filament-actions/sr_Cyrl/create.php new file mode 100644 index 0000000..e7bd2af --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Додај :label', + + 'modal' => [ + + 'heading' => 'Направи :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Направи', + ], + + 'create_another' => [ + 'label' => 'Направи и додај још један', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Направљено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/delete.php b/lang/vendor/filament-actions/sr_Cyrl/delete.php new file mode 100644 index 0000000..19fe840 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Избриши', + + 'modal' => [ + + 'heading' => 'Избриши :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Избриши', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Избрисано', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Избриши изабрано', + + 'modal' => [ + + 'heading' => 'Избриши изабрано', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Избриши', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Избрисано', + ], + + 'deleted_partial' => [ + 'title' => 'Избрисано :count од :total', + 'missing_authorization_failure_message' => 'Немате дозволу да избришите :count.', + 'missing_processing_failure_message' => ':count не може да се избрише.', + ], + + 'deleted_none' => [ + 'title' => 'Брисање није успело', + 'missing_authorization_failure_message' => 'Немате дозволу да избришите :count.', + 'missing_processing_failure_message' => ':count не може да се избрише.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/detach.php b/lang/vendor/filament-actions/sr_Cyrl/detach.php new file mode 100644 index 0000000..0d56e3c --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Одвоји', + + 'modal' => [ + + 'heading' => 'Одвоји :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Одвоји', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Одвојено', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Одвоји изабрано', + + 'modal' => [ + + 'heading' => 'Одвоји изабрано :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Одвоји', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Одвојено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/dissociate.php b/lang/vendor/filament-actions/sr_Cyrl/dissociate.php new file mode 100644 index 0000000..8a7b981 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Раздвоји', + + 'modal' => [ + + 'heading' => 'Раздвоји :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Раздвоји', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Раздвојено', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Раздвоји изабрано', + + 'modal' => [ + + 'heading' => 'Раздвоји изабрано :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Раздвоји', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Раздвојено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/edit.php b/lang/vendor/filament-actions/sr_Cyrl/edit.php new file mode 100644 index 0000000..4a5ae93 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Уреди', + + 'modal' => [ + + 'heading' => 'Уреди :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Сними измене', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Снимљено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/export.php b/lang/vendor/filament-actions/sr_Cyrl/export.php new file mode 100644 index 0000000..8067717 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/export.php @@ -0,0 +1,76 @@ + 'Извези :label', + + 'modal' => [ + + 'heading' => 'Извези :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Ступци', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column је омогућен', + ], + + 'label' => [ + 'label' => ':column ознака', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Извези', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Извези података завршен', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Преузми .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Преузми .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Датотека за преузимање је превелика', + 'body' => '{1} Не можете преузети више од једног реда одједном.|[2,4] Не можете преузети више од :count реда одједном.|[5,*] Не можете преузети више од :count редова одједном.', + ], + + 'started' => [ + 'title' => 'Извоз датотека је започет', + 'body' => '{1} Твој извоз датотека је започет и један ред ће се обрадити у позадини. Добићете обавештење када је израђена веза за преузимање.|[2,4] Твој извоз датотека је започео и :count реда ће се обрадити у позадини. Добићете обавештење када је израђена веза за преузимање.|[5,*] Твој извоз датотека је започео и :count редова ће се обрадити у позадини. Добићете обавештење када је израђена веза за преузимање.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/force-delete.php b/lang/vendor/filament-actions/sr_Cyrl/force-delete.php new file mode 100644 index 0000000..74be2c3 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/force-delete.php @@ -0,0 +1,72 @@ + [ + + 'label' => 'Присилно избриши', + + 'modal' => [ + + 'heading' => 'Присилно избриши :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Избриши', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Избрисано', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Присилно избриши изабрано', + + 'modal' => [ + + 'heading' => 'Присилно избриши изабрано', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Избриши', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Избрисано', + ], + + 'deleted_partial' => [ + 'title' => 'Избрисано :count од :total', + 'missing_authorization_failure_message' => 'Немате дозволу да избришите :count.', + 'missing_processing_failure_message' => ':count не може да се избрише.', + ], + + 'deleted_none' => [ + 'title' => 'Брисање није успело', + 'missing_authorization_failure_message' => 'Немате дозволу да избришите :count.', + 'missing_processing_failure_message' => ':count не може да се избрише.', + ], + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/group.php b/lang/vendor/filament-actions/sr_Cyrl/group.php new file mode 100644 index 0000000..e080bca --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Акције', + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/import.php b/lang/vendor/filament-actions/sr_Cyrl/import.php new file mode 100644 index 0000000..8c7f6d1 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/import.php @@ -0,0 +1,83 @@ + 'Увези :label', + + 'modal' => [ + + 'heading' => 'Увези :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Датотека', + + 'placeholder' => 'Изабери CSV датотеку', + 'rules' => [ + 'duplicate_columns' => '{0} Датотека не сме да садржи више од једне празне заглавље колоне.|{1,*} Датотека не сме да садржи дуплирана заглавља колона: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Колона', + 'placeholder' => 'Изабери колону', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Преузми пример CSV датотеке', + ], + + 'import' => [ + 'label' => 'Увоз', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Увоз је завршен', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Преузми информацију о неуспешном покушају преузимања реда|Преузми информацију о неуспешном покушају преузимања редова', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Послата CSV датотека је превелика', + 'body' => '{1} Не можеш увести више од једног реда одједном.|[2,4] Не можеш увести више од :count реда одједном.|[5,*] Не можеш увести више од :count редова одједном.', + ], + + 'started' => [ + 'title' => 'Увоз је започет', + 'body' => '{1} Увоз је започет и један ред ће се обрадити у позадини.|[2,4] Увоз је започет и :count реда ће се обрадити у позадини.|[5,*] Увоз је започет и :count редова ће се обрадити у позадини.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'грешка', + 'system_error' => 'Системска грешка, контактирајте подршку.', + 'column_mapping_required_for_new_record' => ':attribute колона није мапирана на колону у датотеци, али је обавезна за креирање нових записа.', + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/modal.php b/lang/vendor/filament-actions/sr_Cyrl/modal.php new file mode 100644 index 0000000..cf96596 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/modal.php @@ -0,0 +1,23 @@ + 'Да ли си сигуран да желиш да учиниш то?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Одустани', + ], + + 'confirm' => [ + 'label' => 'Потврди', + ], + + 'submit' => [ + 'label' => 'Пошаљи', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/notifications.php b/lang/vendor/filament-actions/sr_Cyrl/notifications.php new file mode 100644 index 0000000..a7bc830 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Превише покушаја', + 'body' => 'Покушајте поново за :seconds s.', + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/replicate.php b/lang/vendor/filament-actions/sr_Cyrl/replicate.php new file mode 100644 index 0000000..15237e8 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Реплицирај', + + 'modal' => [ + + 'heading' => 'Реплицирај :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Реплицирај', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Реплицирано', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/restore.php b/lang/vendor/filament-actions/sr_Cyrl/restore.php new file mode 100644 index 0000000..90f66a1 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/restore.php @@ -0,0 +1,72 @@ + [ + + 'label' => 'Врати', + + 'modal' => [ + + 'heading' => 'Врати :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Врати', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Враћено', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Поврати изабрано', + + 'modal' => [ + + 'heading' => 'Поврати изабрано :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Поврати', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Повраћено', + ], + + 'restored_partial' => [ + 'title' => 'Повраћено :count од :total', + 'missing_authorization_failure_message' => 'Немате дозволу да повратите :count.', + 'missing_processing_failure_message' => ':count не може да се поврати.', + ], + + 'restored_none' => [ + 'title' => 'Враћање није успело', + 'missing_authorization_failure_message' => 'Немате дозволу да повратите :count.', + 'missing_processing_failure_message' => ':count не може да се поврати.', + ], + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Cyrl/view.php b/lang/vendor/filament-actions/sr_Cyrl/view.php new file mode 100644 index 0000000..1bc3719 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Cyrl/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Прегледај', + + 'modal' => [ + + 'heading' => 'Преглед :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Затвори', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/associate.php b/lang/vendor/filament-actions/sr_Latn/associate.php new file mode 100644 index 0000000..f76fd05 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Poveži', + + 'modal' => [ + + 'heading' => 'Poveži :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Zapis', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Poveži', + ], + + 'associate_another' => [ + 'label' => 'Poveži i poveži drugi', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Povezano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/attach.php b/lang/vendor/filament-actions/sr_Latn/attach.php new file mode 100644 index 0000000..cad85d4 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Priloži', + + 'modal' => [ + + 'heading' => 'Priloži :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Zapis', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Priloži', + ], + + 'attach_another' => [ + 'label' => 'Priloži i priloži još jedan', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Priloženo', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/create.php b/lang/vendor/filament-actions/sr_Latn/create.php new file mode 100644 index 0000000..4b37dad --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Dodaj :label', + + 'modal' => [ + + 'heading' => 'Napravi :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Napravi', + ], + + 'create_another' => [ + 'label' => 'Napravi i dodaj još jedan', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Napravljeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/delete.php b/lang/vendor/filament-actions/sr_Latn/delete.php new file mode 100644 index 0000000..63f2e97 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Izbriši', + + 'modal' => [ + + 'heading' => 'Izbriši :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Izbriši', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Izbrisano', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Izbriši izabrano', + + 'modal' => [ + + 'heading' => 'Izbriši izabrano', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Izbriši', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Izbrisano', + ], + + 'deleted_partial' => [ + 'title' => 'Izbrisano :count od :total', + 'missing_authorization_failure_message' => 'Nemate dozvolu da izbrišite :count.', + 'missing_processing_failure_message' => ':count ne može da se izbriše.', + ], + + 'deleted_none' => [ + 'title' => 'Brisanje nije uspelo', + 'missing_authorization_failure_message' => 'Nemate dozvolu da izbrišite :count.', + 'missing_processing_failure_message' => ':count ne može da se izbriše.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/detach.php b/lang/vendor/filament-actions/sr_Latn/detach.php new file mode 100644 index 0000000..3553143 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Odvoji', + + 'modal' => [ + + 'heading' => 'Odvoji :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odvoji', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Odvojeno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Odvoji izabrano', + + 'modal' => [ + + 'heading' => 'Odvoji izabrano :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Odvoji', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Odvojeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/dissociate.php b/lang/vendor/filament-actions/sr_Latn/dissociate.php new file mode 100644 index 0000000..5f4e26e --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Razdvoji', + + 'modal' => [ + + 'heading' => 'Razdvoji :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Razdvoji', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Razdvojeno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Razdvoji izabrano', + + 'modal' => [ + + 'heading' => 'Razdvoji izabrano :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Razdvoji', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Razdvojeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/edit.php b/lang/vendor/filament-actions/sr_Latn/edit.php new file mode 100644 index 0000000..50a1d82 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Uredi', + + 'modal' => [ + + 'heading' => 'Uredi :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Snimi izmene', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Snimljeno', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/export.php b/lang/vendor/filament-actions/sr_Latn/export.php new file mode 100644 index 0000000..6d642c0 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/export.php @@ -0,0 +1,76 @@ + 'Izvezi :label', + + 'modal' => [ + + 'heading' => 'Izvezi :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Stupci', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column je omogućen', + ], + + 'label' => [ + 'label' => ':column oznaka', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Izvezi', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Izvezi podataka završen', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Preuzmi .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Preuzmi .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Datoteka za preuzimanje je prevelika', + 'body' => '{1} Ne možete preuzeti više od jednog reda odjednom.|[2,4] Ne možete preuzeti više od :count reda odjednom.|[5,*] Ne možete preuzeti više od :count redova odjednom.', + ], + + 'started' => [ + 'title' => 'Izvoz datoteka je započet', + 'body' => '{1} Tvoj izvoz datoteka je započet i jedan red će se obraditi u pozadini. Dobićete obaveštenje kada je izrađena veza za preuzimanje.|[2,4] Tvoj izvoz datoteka je započeo i :count reda će se obraditi u pozadini. Dobićete obaveštenje kada je izrađena veza za preuzimanje.|[5,*] Tvoj izvoz datoteka je započeo i :count redova će se obraditi u pozadini. Dobićete obaveštenje kada je izrađena veza za preuzimanje.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/force-delete.php b/lang/vendor/filament-actions/sr_Latn/force-delete.php new file mode 100644 index 0000000..b9c63f3 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/force-delete.php @@ -0,0 +1,72 @@ + [ + + 'label' => 'Prisilno izbriši', + + 'modal' => [ + + 'heading' => 'Prisilno izbriši :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Izbriši', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Izbrisano', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Prisilno izbriši izabrano', + + 'modal' => [ + + 'heading' => 'Prisilno izbriši izabrano', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Izbriši', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Izbrisano', + ], + + 'deleted_partial' => [ + 'title' => 'Izbrisano :count od :total', + 'missing_authorization_failure_message' => 'Nemate dozvolu da izbrišite :count.', + 'missing_processing_failure_message' => ':count ne može da se izbriše.', + ], + + 'deleted_none' => [ + 'title' => 'Brisanje nije uspelo', + 'missing_authorization_failure_message' => 'Nemate dozvolu da izbrišite :count.', + 'missing_processing_failure_message' => ':count ne može da se izbriše.', + ], + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/group.php b/lang/vendor/filament-actions/sr_Latn/group.php new file mode 100644 index 0000000..edd7ebb --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Akcije', + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/import.php b/lang/vendor/filament-actions/sr_Latn/import.php new file mode 100644 index 0000000..33b5eb1 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/import.php @@ -0,0 +1,83 @@ + 'Uvezi :label', + + 'modal' => [ + + 'heading' => 'Uvezi :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Datoteka', + + 'placeholder' => 'Izaberi CSV datoteku', + 'rules' => [ + 'duplicate_columns' => '{0} Datoteka ne sme da sadrži više od jedne prazne zaglavlje kolone.|{1,*} Datoteka ne sme da sadrži duplirana zaglavlja kolona: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Kolona', + 'placeholder' => 'Izaberi kolonu', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Preuzmi primer CSV datoteke', + ], + + 'import' => [ + 'label' => 'Uvoz', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Uvoz je završen', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Preuzmi informaciju o neuspešnom pokušaju preuzimanja reda|Preuzmi informaciju o neuspešnom pokušaju preuzimanja redova', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Poslata CSV datoteka je prevelika', + 'body' => '{1} Ne možeš uvesti više od jednog reda odjednom.|[2,4] Ne možeš uvesti više od :count reda odjednom.|[5,*] Ne možeš uvesti više od :count redova odjednom.', + ], + + 'started' => [ + 'title' => 'Uvoz je započet', + 'body' => '{1} Uvoz je započet i jedan red će se obraditi u pozadini.|[2,4] Uvoz je započet i :count reda će se obraditi u pozadini.|[5,*] Uvoz je započet i :count redova će se obraditi u pozadini.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'greška', + 'system_error' => 'Sistemska greška, kontaktirajte podršku.', + 'column_mapping_required_for_new_record' => ':attribute kolona nije mapirana na kolonu u datoteci, ali je obavezna za kreiranje novih zapisa.', + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/modal.php b/lang/vendor/filament-actions/sr_Latn/modal.php new file mode 100644 index 0000000..135d896 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/modal.php @@ -0,0 +1,23 @@ + 'Da li si siguran da želiš da učiniš to?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Odustani', + ], + + 'confirm' => [ + 'label' => 'Potvrdi', + ], + + 'submit' => [ + 'label' => 'Pošalji', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/notifications.php b/lang/vendor/filament-actions/sr_Latn/notifications.php new file mode 100644 index 0000000..e35a17a --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Previše pokušaja', + 'body' => 'Pokušajte ponovo za :seconds s.', + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/replicate.php b/lang/vendor/filament-actions/sr_Latn/replicate.php new file mode 100644 index 0000000..fa937b7 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Repliciraj', + + 'modal' => [ + + 'heading' => 'Repliciraj :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Repliciraj', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Replicirano', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/restore.php b/lang/vendor/filament-actions/sr_Latn/restore.php new file mode 100644 index 0000000..bde3ab7 --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/restore.php @@ -0,0 +1,72 @@ + [ + + 'label' => 'Vrati', + + 'modal' => [ + + 'heading' => 'Vrati :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Vrati', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Vraćeno', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Povrati izabrano', + + 'modal' => [ + + 'heading' => 'Povrati izabrano :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Povrati', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Povraćeno', + ], + + 'restored_partial' => [ + 'title' => 'Povraćeno :count od :total', + 'missing_authorization_failure_message' => 'Nemate dozvolu da povratite :count.', + 'missing_processing_failure_message' => ':count ne može da se povrati.', + ], + + 'restored_none' => [ + 'title' => 'Vraćanje nije uspelo', + 'missing_authorization_failure_message' => 'Nemate dozvolu da povratite :count.', + 'missing_processing_failure_message' => ':count ne može da se povrati.', + ], + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sr_Latn/view.php b/lang/vendor/filament-actions/sr_Latn/view.php new file mode 100644 index 0000000..ac7b78f --- /dev/null +++ b/lang/vendor/filament-actions/sr_Latn/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Pregledaj', + + 'modal' => [ + + 'heading' => 'Pregled :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Zatvori', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sv/associate.php b/lang/vendor/filament-actions/sv/associate.php new file mode 100644 index 0000000..b3b7727 --- /dev/null +++ b/lang/vendor/filament-actions/sv/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Koppla', + + 'modal' => [ + + 'heading' => 'Koppla :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Objekt', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Koppla', + ], + + 'associate_another' => [ + 'label' => 'Koppla & koppla en till', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Kopplades', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sv/attach.php b/lang/vendor/filament-actions/sv/attach.php new file mode 100644 index 0000000..863f4bf --- /dev/null +++ b/lang/vendor/filament-actions/sv/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Koppla', + + 'modal' => [ + + 'heading' => 'Koppla :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Objekt', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Koppla', + ], + + 'attach_another' => [ + 'label' => 'Koppla & koppla en till', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Kopplades', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sv/create.php b/lang/vendor/filament-actions/sv/create.php new file mode 100644 index 0000000..023940c --- /dev/null +++ b/lang/vendor/filament-actions/sv/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Ny :label', + + 'modal' => [ + + 'heading' => 'Skapa :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Skapa', + ], + + 'create_another' => [ + 'label' => 'Skapa & skapa en till', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Skapades', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sv/delete.php b/lang/vendor/filament-actions/sv/delete.php new file mode 100644 index 0000000..e531c8b --- /dev/null +++ b/lang/vendor/filament-actions/sv/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Radera', + + 'modal' => [ + + 'heading' => 'Radera :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Radera', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Raderades', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Radera valda', + + 'modal' => [ + + 'heading' => 'Radera valda :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Radera', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Raderades', + ], + + 'deleted_partial' => [ + 'title' => 'Raderade :count av :total', + 'missing_authorization_failure_message' => 'Du har inte behörighet att radera :count.', + 'missing_processing_failure_message' => ':count kunde inte raderas.', + ], + + 'deleted_none' => [ + 'title' => 'Misslyckades att radera', + 'missing_authorization_failure_message' => 'Du har inte behörighet att radera :count.', + 'missing_processing_failure_message' => ':count kunde inte raderas.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sv/detach.php b/lang/vendor/filament-actions/sv/detach.php new file mode 100644 index 0000000..943588e --- /dev/null +++ b/lang/vendor/filament-actions/sv/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Frånkoppla', + + 'modal' => [ + + 'heading' => 'Frånkoppla :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Frånkoppla', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Frånkopplades', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Frånkoppla valda', + + 'modal' => [ + + 'heading' => 'Frånkoppla valda :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Frånkoppla', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Frånkopplades', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sv/dissociate.php b/lang/vendor/filament-actions/sv/dissociate.php new file mode 100644 index 0000000..415f359 --- /dev/null +++ b/lang/vendor/filament-actions/sv/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Frånkoppla', + + 'modal' => [ + + 'heading' => 'Frånkoppla :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Frånkoppla', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Frånkopplades', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Frånkoppla valda', + + 'modal' => [ + + 'heading' => 'Frånkoppla valda :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Frånkoppla', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Frånkopplades', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sv/edit.php b/lang/vendor/filament-actions/sv/edit.php new file mode 100644 index 0000000..e58b6f3 --- /dev/null +++ b/lang/vendor/filament-actions/sv/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Redigera', + + 'modal' => [ + + 'heading' => 'Redigera :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Spara ändringar', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Sparades', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sv/export.php b/lang/vendor/filament-actions/sv/export.php new file mode 100644 index 0000000..3a33d48 --- /dev/null +++ b/lang/vendor/filament-actions/sv/export.php @@ -0,0 +1,94 @@ + 'Exportera :label', + + 'modal' => [ + + 'heading' => 'Exportera :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Kolumner', + + 'actions' => [ + + 'select_all' => [ + 'label' => 'Markera alla', + ], + + 'deselect_all' => [ + 'label' => 'Avmarkera alla', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column aktiverad', + ], + + 'label' => [ + 'label' => ':column namn', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Exportera', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Export slutförd', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Ladda ner .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Ladda ner .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Exporten är för stor', + 'body' => 'Du kan inte exportera fler än 1 rad åt gången.|Du kan inte exportera fler än :count rader åt gången.', + ], + + 'no_columns' => [ + 'title' => 'Inga kolumner valda', + 'body' => 'Välj minst en kolumn att exportera.', + ], + + 'started' => [ + 'title' => 'Exporten startades', + 'body' => 'Din export har börjat och 1 rad kommer att bearbetas i bakgrunden. Du får en notis med en nedladdningslänk när den är slutförd.|Din export har börjat och :count rader kommer att bearbetas i bakgrunden. Du får en notis med en nedladdningslänk när den är slutförd.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/sv/force-delete.php b/lang/vendor/filament-actions/sv/force-delete.php new file mode 100644 index 0000000..31f8b6d --- /dev/null +++ b/lang/vendor/filament-actions/sv/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Tvångsradera', + + 'modal' => [ + + 'heading' => 'Tvångsradera :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Radera', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Raderades', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Tvångsradera valda', + + 'modal' => [ + + 'heading' => 'Tvångsradera valda :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Radera', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Raderades', + ], + + 'deleted_partial' => [ + 'title' => 'Raderade :count av :total', + 'missing_authorization_failure_message' => 'Du har inte behörighet att radera :count.', + 'missing_processing_failure_message' => ':count kunde inte raderas.', + ], + + 'deleted_none' => [ + 'title' => 'Misslyckades att radera', + 'missing_authorization_failure_message' => 'Du har inte behörighet att radera :count.', + 'missing_processing_failure_message' => ':count kunde inte raderas.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sv/group.php b/lang/vendor/filament-actions/sv/group.php new file mode 100644 index 0000000..fd71fa5 --- /dev/null +++ b/lang/vendor/filament-actions/sv/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Åtgärder', + ], + +]; diff --git a/lang/vendor/filament-actions/sv/import.php b/lang/vendor/filament-actions/sv/import.php new file mode 100644 index 0000000..f28203f --- /dev/null +++ b/lang/vendor/filament-actions/sv/import.php @@ -0,0 +1,85 @@ + 'Importera :label', + + 'modal' => [ + + 'heading' => 'Importera :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Fil', + + 'placeholder' => 'Ladda upp en CSV-fil', + + 'rules' => [ + 'duplicate_columns' => '{0} Filen kan inte innehålla fler än en tom kolumn i rubrikraden.|{1,*} Filen kan inte innehålla identiska kolumner i rubrikraden: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Kolumner', + 'placeholder' => 'Välj en kolumn', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Ladda ner exempelfil (CSV)', + ], + + 'import' => [ + 'label' => 'Importera', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Import slutförd', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Ladda ner information om den misslyckade raden|Ladda ner information om de misslyckade raderna', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Den uppladdade CSV-filen är för stor', + 'body' => 'Du kan inte importera fler än 1 rad åt gången.|Du kan inte importera fler än :count rader åt gången.', + ], + + 'started' => [ + 'title' => 'Importen startades', + 'body' => 'Din import har börjat och 1 rad kommer att bearbetas i bakgrunden.|Din import har börjat och :count rader kommer att bearbetas i bakgrunden.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-misslyckade-rader', + 'error_header' => 'fel', + 'system_error' => 'Systemfel, vänligen kontakta support.', + 'column_mapping_required_for_new_record' => 'Kolumnen :attribute är inte mappad till någon kolumn i filen, men den krävs för att skapa nya objekt.', + ], + +]; diff --git a/lang/vendor/filament-actions/sv/modal.php b/lang/vendor/filament-actions/sv/modal.php new file mode 100644 index 0000000..77136e1 --- /dev/null +++ b/lang/vendor/filament-actions/sv/modal.php @@ -0,0 +1,23 @@ + 'Är du säker på att du vill göra det här?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Avbryt', + ], + + 'confirm' => [ + 'label' => 'Bekräfta', + ], + + 'submit' => [ + 'label' => 'Skicka', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sv/notifications.php b/lang/vendor/filament-actions/sv/notifications.php new file mode 100644 index 0000000..cf2c826 --- /dev/null +++ b/lang/vendor/filament-actions/sv/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'För många försök', + 'body' => 'Vänligen försök igen om :seconds sekunder.', + ], + +]; diff --git a/lang/vendor/filament-actions/sv/replicate.php b/lang/vendor/filament-actions/sv/replicate.php new file mode 100644 index 0000000..bc66834 --- /dev/null +++ b/lang/vendor/filament-actions/sv/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Duplicera', + + 'modal' => [ + + 'heading' => 'Duplicera :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Duplicera', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Duplicerades', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sv/restore.php b/lang/vendor/filament-actions/sv/restore.php new file mode 100644 index 0000000..90bdf0c --- /dev/null +++ b/lang/vendor/filament-actions/sv/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Återställ', + + 'modal' => [ + + 'heading' => 'Återställ :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Återställ', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Återställdes', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Återställ valda', + + 'modal' => [ + + 'heading' => 'Återställ valda :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Återställ', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Återställdes', + ], + + 'restored_partial' => [ + 'title' => 'Återställde :count av :total', + 'missing_authorization_failure_message' => 'Du har inte behörighet att återställa :count.', + 'missing_processing_failure_message' => ':count kunde inte återställas.', + ], + + 'restored_none' => [ + 'title' => 'Misslyckades att återställa', + 'missing_authorization_failure_message' => 'Du har inte behörighet att återställa :count.', + 'missing_processing_failure_message' => ':count kunde inte återställas.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sv/view.php b/lang/vendor/filament-actions/sv/view.php new file mode 100644 index 0000000..57ea2f5 --- /dev/null +++ b/lang/vendor/filament-actions/sv/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Visa', + + 'modal' => [ + + 'heading' => 'Visa :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Stäng', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sw/associate.php b/lang/vendor/filament-actions/sw/associate.php new file mode 100644 index 0000000..35d3bbb --- /dev/null +++ b/lang/vendor/filament-actions/sw/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Unganisha', + + 'modal' => [ + + 'heading' => 'Unganisha :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Rekodi', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Unganisha', + ], + + 'associate_another' => [ + 'label' => 'Unganisha na unganisha tena', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Imeunganishwa', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sw/attach.php b/lang/vendor/filament-actions/sw/attach.php new file mode 100644 index 0000000..3d06859 --- /dev/null +++ b/lang/vendor/filament-actions/sw/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Pakia', + + 'modal' => [ + + 'heading' => 'Pakia :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Rekodi', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Pakia', + ], + + 'attach_another' => [ + 'label' => 'Pakia na pakia tena', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Imepakiwa', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sw/create.php b/lang/vendor/filament-actions/sw/create.php new file mode 100644 index 0000000..3f1d1bd --- /dev/null +++ b/lang/vendor/filament-actions/sw/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => ':label mpya', + + 'modal' => [ + + 'heading' => 'Tengeneza :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Tengeneza', + ], + + 'create_another' => [ + 'label' => 'Tengeneza na tengeneza nyingine', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Imetengenezwa', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sw/delete.php b/lang/vendor/filament-actions/sw/delete.php new file mode 100644 index 0000000..25b8dfd --- /dev/null +++ b/lang/vendor/filament-actions/sw/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Futa', + + 'modal' => [ + + 'heading' => 'Futa :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Futa', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Imefutwa', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Futa chaguo', + + 'modal' => [ + + 'heading' => 'Futa chaguo :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Futa', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Imefutwa', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sw/detach.php b/lang/vendor/filament-actions/sw/detach.php new file mode 100644 index 0000000..a88d115 --- /dev/null +++ b/lang/vendor/filament-actions/sw/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Tenganisha', + + 'modal' => [ + + 'heading' => 'Tenganisha :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Tenganisha', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Imetenganishwa', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Tenganisha chaguo', + + 'modal' => [ + + 'heading' => 'Tenganisha chaguo :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Tenganisha', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Imetenganishwa', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sw/dissociate.php b/lang/vendor/filament-actions/sw/dissociate.php new file mode 100644 index 0000000..2810bab --- /dev/null +++ b/lang/vendor/filament-actions/sw/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Tenganisha', + + 'modal' => [ + + 'heading' => 'Tenganisha :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Tenganisha', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Imetenganishwa', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Tenganisha chaguo', + + 'modal' => [ + + 'heading' => 'Tenganisha chaguo :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Tenganisha', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Imetenganishwa', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sw/edit.php b/lang/vendor/filament-actions/sw/edit.php new file mode 100644 index 0000000..7559ea7 --- /dev/null +++ b/lang/vendor/filament-actions/sw/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Hariri', + + 'modal' => [ + + 'heading' => 'Hariri :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Hifadhi mabadiliko', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Imehifadhiwa', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sw/force-delete.php b/lang/vendor/filament-actions/sw/force-delete.php new file mode 100644 index 0000000..f43a86f --- /dev/null +++ b/lang/vendor/filament-actions/sw/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Futa kwa lazima', + + 'modal' => [ + + 'heading' => 'Futa kwa lazima :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Futa', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Imefutwa', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Futa kwa lazima chaguo', + + 'modal' => [ + + 'heading' => 'Futa kwa lazima chaguo :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Futa', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Imefutwa', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sw/group.php b/lang/vendor/filament-actions/sw/group.php new file mode 100644 index 0000000..04a7778 --- /dev/null +++ b/lang/vendor/filament-actions/sw/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Vitendo', + ], + +]; diff --git a/lang/vendor/filament-actions/sw/modal.php b/lang/vendor/filament-actions/sw/modal.php new file mode 100644 index 0000000..ebe4697 --- /dev/null +++ b/lang/vendor/filament-actions/sw/modal.php @@ -0,0 +1,23 @@ + 'Unahakika unataka kufanya hili?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Ghairi', + ], + + 'confirm' => [ + 'label' => 'Thibitisha', + ], + + 'submit' => [ + 'label' => 'Wasilisha', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sw/replicate.php b/lang/vendor/filament-actions/sw/replicate.php new file mode 100644 index 0000000..f15da57 --- /dev/null +++ b/lang/vendor/filament-actions/sw/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Iga', + + 'modal' => [ + + 'heading' => 'Iga :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Iga', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Imeigwa', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sw/restore.php b/lang/vendor/filament-actions/sw/restore.php new file mode 100644 index 0000000..ed41929 --- /dev/null +++ b/lang/vendor/filament-actions/sw/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Rudisha', + + 'modal' => [ + + 'heading' => 'Rudisha :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Rudisha', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Imerudishwa', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Rudisha chaguo', + + 'modal' => [ + + 'heading' => 'Rudisha chaguo :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Rudisha', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Imerudishwa', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/sw/view.php b/lang/vendor/filament-actions/sw/view.php new file mode 100644 index 0000000..263caba --- /dev/null +++ b/lang/vendor/filament-actions/sw/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Angalia', + + 'modal' => [ + + 'heading' => 'Angalia :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Funga', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/th/associate.php b/lang/vendor/filament-actions/th/associate.php new file mode 100644 index 0000000..210ebbf --- /dev/null +++ b/lang/vendor/filament-actions/th/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'เชื่อมโยง', + + 'modal' => [ + + 'heading' => 'เชื่อมโยง :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'รายการ', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'เชื่อมโยง', + ], + + 'associate_another' => [ + 'label' => 'เชื่อมโยงและเชื่อมโยงรายการอื่น', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'บันทึกเรียบร้อย', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/th/attach.php b/lang/vendor/filament-actions/th/attach.php new file mode 100644 index 0000000..a4d083a --- /dev/null +++ b/lang/vendor/filament-actions/th/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'แนบ', + + 'modal' => [ + + 'heading' => 'แนบ :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'รายการ', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'แนบ', + ], + + 'attach_another' => [ + 'label' => 'แนบและแนบรายการอื่น', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'บันทึกเรียบร้อย', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/th/create.php b/lang/vendor/filament-actions/th/create.php new file mode 100644 index 0000000..83885a1 --- /dev/null +++ b/lang/vendor/filament-actions/th/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'เพิ่ม:label', + + 'modal' => [ + + 'heading' => 'เพิ่ม:label', + + 'actions' => [ + + 'create' => [ + 'label' => 'บันทึก', + ], + + 'create_another' => [ + 'label' => 'บันทึกและเพิ่มอีกรายการ', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'บันทึกเรียบร้อย', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/th/delete.php b/lang/vendor/filament-actions/th/delete.php new file mode 100644 index 0000000..87f2eaf --- /dev/null +++ b/lang/vendor/filament-actions/th/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'ลบ', + + 'modal' => [ + + 'heading' => 'ลบ :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'ลบ', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'ลบข้อมูลเรียบร้อย', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'ลบที่เลือก', + + 'modal' => [ + + 'heading' => 'ลบ :label ที่เลือก', + + 'actions' => [ + + 'delete' => [ + 'label' => 'ลบ', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'ลบข้อมูลเรียบร้อย', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/th/detach.php b/lang/vendor/filament-actions/th/detach.php new file mode 100644 index 0000000..3b1ce0e --- /dev/null +++ b/lang/vendor/filament-actions/th/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'แยกออก', + + 'modal' => [ + + 'heading' => 'แยก:labelออก', + + 'actions' => [ + + 'detach' => [ + 'label' => 'แยกออก', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'บันทึกเรียบร้อย', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'แยกที่เลือกออก', + + 'modal' => [ + + 'heading' => 'แยก:labelที่เลือกออก', + + 'actions' => [ + + 'detach' => [ + 'label' => 'แยกออก', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'บันทึกเรียบร้อย', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/th/dissociate.php b/lang/vendor/filament-actions/th/dissociate.php new file mode 100644 index 0000000..d7ef6f1 --- /dev/null +++ b/lang/vendor/filament-actions/th/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'ยกเลิกการเชื่อมโยง', + + 'modal' => [ + + 'heading' => 'ยกเลิกการเชื่อมโยง :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'ยกเลิกการเชื่อมโยง', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'บันทึกเรียบร้อย', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'ยกเลิกการเชื่อมโยงที่เลือก', + + 'modal' => [ + + 'heading' => 'ยกเลิกการเชื่อมโยง :label ที่เลือก', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'ยกเลิกการเชื่อมโยง', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'บันทึกเรียบร้อย', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/th/edit.php b/lang/vendor/filament-actions/th/edit.php new file mode 100644 index 0000000..ff69431 --- /dev/null +++ b/lang/vendor/filament-actions/th/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'แก้ไข', + + 'modal' => [ + + 'heading' => 'แก้ไข:label', + + 'actions' => [ + + 'save' => [ + 'label' => 'บันทึก', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'บันทึกข้อมูลเรียบร้อย', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/th/export.php b/lang/vendor/filament-actions/th/export.php new file mode 100644 index 0000000..040a853 --- /dev/null +++ b/lang/vendor/filament-actions/th/export.php @@ -0,0 +1,53 @@ + 'ส่งออก', + + 'modal' => [ + + 'heading' => 'ส่งออก :label', + + 'form' => [ + + 'columns' => [ + 'label' => 'คอลัมน์', + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'ส่งออก', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + 'title' => 'ส่งออกข้อมูลเรียบร้อยแล้ว', + 'actions' => [ + 'download_csv' => 'ดาวน์โหลด .csv', + 'download_xlsx' => 'ดาวน์โหลด .xlsx', + ], + ], + + 'max_rows' => [ + 'title' => 'ข้อมูลมีขนาดใหญ่เกินไป', + 'body' => 'คุณไม่สามารถส่งออกข้อมูลมากกว่า :count แถวในครั้งเดียว', + ], + + 'started' => [ + 'title' => 'เริ่มกระบวนการส่งออกแล้ว', + 'body' => 'ข้อมูลจะถูกส่งออกในพื้นหลัง และคุณจะได้รับการแจ้งเตือนเมื่อเสร็จสิ้น', + ], + + ], + + 'file_name' => 'export-:resource-:date', + +]; diff --git a/lang/vendor/filament-actions/th/force-delete.php b/lang/vendor/filament-actions/th/force-delete.php new file mode 100644 index 0000000..ba79f1d --- /dev/null +++ b/lang/vendor/filament-actions/th/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'บังคับลบ', + + 'modal' => [ + + 'heading' => 'บังคับลบ :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'ลบ', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'ลบข้อมูลเรียบร้อย', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'บังคับลบที่เลือก', + + 'modal' => [ + + 'heading' => 'บังคับลบ :label ที่เลือก', + + 'actions' => [ + + 'delete' => [ + 'label' => 'ลบ', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'ลบข้อมูลเรียบร้อย', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/th/group.php b/lang/vendor/filament-actions/th/group.php new file mode 100644 index 0000000..a9f7939 --- /dev/null +++ b/lang/vendor/filament-actions/th/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'การกระทำ', + ], + +]; diff --git a/lang/vendor/filament-actions/th/import.php b/lang/vendor/filament-actions/th/import.php new file mode 100644 index 0000000..af25b33 --- /dev/null +++ b/lang/vendor/filament-actions/th/import.php @@ -0,0 +1,55 @@ + 'นำเข้า', + + 'modal' => [ + + 'heading' => 'นำเข้า :label', + + 'form' => [ + + 'file' => [ + 'label' => 'ไฟล์', + 'placeholder' => 'อัปโหลดไฟล์ CSV', + ], + + 'columns' => [ + 'label' => 'จับคู่คอลัมน์', + ], + + ], + + 'actions' => [ + + 'import' => [ + 'label' => 'นำเข้า', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + 'title' => 'นำเข้าข้อมูลเรียบร้อยแล้ว', + 'body' => 'นำเข้าข้อมูลสำเร็จ :count แถว', + ], + + 'max_rows' => [ + 'title' => 'ไฟล์มีขนาดใหญ่เกินไป', + 'body' => 'คุณไม่สามารถนำเข้าข้อมูลมากกว่า :count แถวในครั้งเดียว', + ], + + 'started' => [ + 'title' => 'เริ่มกระบวนการนำเข้าแล้ว', + 'body' => 'ข้อมูลจะถูกนำเข้าในพื้นหลัง และคุณจะได้รับการแจ้งเตือนเมื่อเสร็จสิ้น', + ], + + ], + + 'example_csv_file_name' => 'import-:resource-example', + +]; diff --git a/lang/vendor/filament-actions/th/modal.php b/lang/vendor/filament-actions/th/modal.php new file mode 100644 index 0000000..21ebf62 --- /dev/null +++ b/lang/vendor/filament-actions/th/modal.php @@ -0,0 +1,23 @@ + 'แน่ใจหรือไม่ว่าต้องการดำเนินการต่อ', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'ยกเลิก', + ], + + 'confirm' => [ + 'label' => 'ยืนยัน', + ], + + 'submit' => [ + 'label' => 'บันทึก', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/th/notifications.php b/lang/vendor/filament-actions/th/notifications.php new file mode 100644 index 0000000..8ee3842 --- /dev/null +++ b/lang/vendor/filament-actions/th/notifications.php @@ -0,0 +1,8 @@ + [ + 'title' => 'จำนวนครั้งในการพยายามดำเนินการได้ถึงขีดจำกัดแล้ว', + 'body' => 'กรุณาลองใหม่อีก :seconds วินาที', + ], +]; diff --git a/lang/vendor/filament-actions/th/replicate.php b/lang/vendor/filament-actions/th/replicate.php new file mode 100644 index 0000000..65bbb69 --- /dev/null +++ b/lang/vendor/filament-actions/th/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'ทำซ้ำ', + + 'modal' => [ + + 'heading' => 'ทำซ้ำ :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'ทำซ้ำ', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'ทำซ้ำเรียบร้อยแล้ว', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/th/restore.php b/lang/vendor/filament-actions/th/restore.php new file mode 100644 index 0000000..cabad19 --- /dev/null +++ b/lang/vendor/filament-actions/th/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'คืนค่า', + + 'modal' => [ + + 'heading' => 'คืนค่า :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'คืนค่า', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'คืนค่าข้อมูลเรียบร้อย', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'คืนค่าที่เลือก', + + 'modal' => [ + + 'heading' => 'คืนค่า :label ที่เลือก', + + 'actions' => [ + + 'restore' => [ + 'label' => 'คืนค่า', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'คืนค่าข้อมูลเรียบร้อย', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/th/view.php b/lang/vendor/filament-actions/th/view.php new file mode 100644 index 0000000..4522397 --- /dev/null +++ b/lang/vendor/filament-actions/th/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'ดู', + + 'modal' => [ + + 'heading' => 'ดู :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'ปิด', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/tr/associate.php b/lang/vendor/filament-actions/tr/associate.php new file mode 100644 index 0000000..584c9b4 --- /dev/null +++ b/lang/vendor/filament-actions/tr/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'İlişkilendir', + + 'modal' => [ + + 'heading' => ':label İlişkilendir', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Kayıt', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'İlişkilendir', + ], + + 'associate_another' => [ + 'label' => 'İlişkilendir ve başka bir taneye başla', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'İlişkilendirildi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/tr/attach.php b/lang/vendor/filament-actions/tr/attach.php new file mode 100644 index 0000000..9b2eca2 --- /dev/null +++ b/lang/vendor/filament-actions/tr/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'İliştir', + + 'modal' => [ + + 'heading' => ':label iliştir', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Kayıt', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'İliştir', + ], + + 'attach_another' => [ + 'label' => 'İliştir ve başka bir taneye başla', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'İliştirildi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/tr/create.php b/lang/vendor/filament-actions/tr/create.php new file mode 100644 index 0000000..b0f243f --- /dev/null +++ b/lang/vendor/filament-actions/tr/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => ':label Oluştur', + + 'modal' => [ + + 'heading' => ':label oluştur', + + 'actions' => [ + + 'create' => [ + 'label' => 'Oluştur', + ], + + 'create_another' => [ + 'label' => 'Oluştur & yeni oluştur', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Oluşturuldu', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/tr/delete.php b/lang/vendor/filament-actions/tr/delete.php new file mode 100644 index 0000000..2540fab --- /dev/null +++ b/lang/vendor/filament-actions/tr/delete.php @@ -0,0 +1,72 @@ + [ + + 'label' => 'Sil', + + 'modal' => [ + + 'heading' => ':label Sil', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Sil', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Silindi', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Seçilenleri sil', + + 'modal' => [ + + 'heading' => 'Seçilenleri sil', // When ':label' is used here, the meaning is distorted. + + 'actions' => [ + + 'delete' => [ + 'label' => 'Sil', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Silindi', + ], + + 'deleted_partial' => [ + 'title' => ':total kayıttan :count kayıt silindi', + 'missing_authorization_failure_message' => ':count kayıt silmek için gereken izniniz yok.', + 'missing_processing_failure_message' => ':count kayıt silinemedi.', + ], + + 'deleted_none' => [ + 'title' => 'Kayıtlar silinemedi', + 'missing_authorization_failure_message' => ':count kayıt silmek için gereken izniniz yok.', + 'missing_processing_failure_message' => ':count kayıt silinemedi.', + ], + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/tr/detach.php b/lang/vendor/filament-actions/tr/detach.php new file mode 100644 index 0000000..bc4ccbe --- /dev/null +++ b/lang/vendor/filament-actions/tr/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Ayır', + + 'modal' => [ + + 'heading' => ':label ayır', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Ayır', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Ayrıldı', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Seçiliyi ayır', + + 'modal' => [ + + 'heading' => ':label seçiliyi ayır ', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Seçiliyi ayır', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Ayrıldı', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/tr/dissociate.php b/lang/vendor/filament-actions/tr/dissociate.php new file mode 100644 index 0000000..15a848c --- /dev/null +++ b/lang/vendor/filament-actions/tr/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Ayrıştır', + + 'modal' => [ + + 'heading' => ':label ayrıştır', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Ayrıştır', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Ayrıştırıldı', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Seçiliyi ayrıştır', + + 'modal' => [ + + 'heading' => ':label seçiliyi ayrıştır', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Seçiliyi ayrıştır', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Ayrıştırıldı', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/tr/edit.php b/lang/vendor/filament-actions/tr/edit.php new file mode 100644 index 0000000..bcd1a48 --- /dev/null +++ b/lang/vendor/filament-actions/tr/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Düzenle', + + 'modal' => [ + + 'heading' => ':label düzenle', + + 'actions' => [ + + 'save' => [ + 'label' => 'Kaydet', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Kaydedildi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/tr/export.php b/lang/vendor/filament-actions/tr/export.php new file mode 100644 index 0000000..9dbadbd --- /dev/null +++ b/lang/vendor/filament-actions/tr/export.php @@ -0,0 +1,77 @@ + 'Dışa Aktar :label', + + 'modal' => [ + + 'heading' => 'Dışa Aktar :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Sütunlar', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column etkin', + ], + + 'label' => [ + 'label' => ':column etiketi', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Dışa Aktar', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Dışa Aktarım Tamamlandı', + + 'actions' => [ + + 'download_csv' => [ + 'label' => '.csv Olarak İndir', + ], + + 'download_xlsx' => [ + 'label' => '.xlsx Olarak İndir', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Maksimum Satır Sayısı Aşıldı', + 'body' => 'Birden fazla satırı dışa aktaramazsınız.|:count satırı dışa aktaramazsınız.', + ], + + 'started' => [ + 'title' => 'Dışa Aktarım Başladı', + 'body' => 'Dışa aktarım başladı ve 1 satır arka planda işlenecek.|Dışa aktarım başladı ve :count satır arka planda işlenecek.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/tr/force-delete.php b/lang/vendor/filament-actions/tr/force-delete.php new file mode 100644 index 0000000..df92215 --- /dev/null +++ b/lang/vendor/filament-actions/tr/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Kalıcı olarak sil', + + 'modal' => [ + + 'heading' => ':label kalıcı olarak sil', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Kalıcı olarak sil', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Kayıt kalıcı olarak silindi', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Seçiliyi kalıcı olarak sil', + + 'modal' => [ + + 'heading' => ':label seçiliyi kalıcı olarak sil', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Kalıcı olarak sil', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Kayıtlar kalıcı olarak silindi', + ], + + 'deleted_partial' => [ + 'title' => ':total kayıttan :count kayıt kalıcı olarak silindi', + 'missing_authorization_failure_message' => ':count kayıtı kalıcı olarak silmek için gereken izniniz yok.', + 'missing_processing_failure_message' => ':count kayıt kalıcı olarak silinemedi.', + ], + + 'deleted_none' => [ + 'title' => 'Kayıtlar kalıcı olarak silinemedi', + 'missing_authorization_failure_message' => ':count kayıtı kalıcı olarak silmek için gereken izniniz yok.', + 'missing_processing_failure_message' => ':count kayıt kalıcı olarak silinemedi.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/tr/group.php b/lang/vendor/filament-actions/tr/group.php new file mode 100644 index 0000000..5b2f30f --- /dev/null +++ b/lang/vendor/filament-actions/tr/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Eylemler', + ], + +]; diff --git a/lang/vendor/filament-actions/tr/import.php b/lang/vendor/filament-actions/tr/import.php new file mode 100644 index 0000000..c0c45c5 --- /dev/null +++ b/lang/vendor/filament-actions/tr/import.php @@ -0,0 +1,81 @@ + 'İçe Aktar: :label', + + 'modal' => [ + + 'heading' => 'İçe Aktar: :label', + + 'form' => [ + + 'file' => [ + 'label' => 'Dosya', + 'placeholder' => 'Bir CSV dosyası seçin', + 'rules' => [ + 'duplicate_columns' => '{0} Dosya birden fazla boş sütun başlığı içeremez.|{1,*} Dosya tekrar eden sütun başlığı içeremez: :columns.', + ], + ], + + 'columns' => [ + 'label' => 'Sütunlar', + 'placeholder' => 'Sütunları eşleştirin', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Örnek CSV Dosyasını İndir', + ], + + 'import' => [ + 'label' => 'İçe Aktar', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'İçe Aktarım Tamamlandı', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Başarısız satır hakkında bilgileri indir|Başarısız satırlar hakkında bilgileri indir', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Yüklenen Dosya Çok Büyük', + 'body' => 'Aynı anda 1\'den fazla satır içeren dosyaları içe aktaramazsınız.|Aynı anda :count\'den fazla satır içeren dosyaları içe aktaramazsınız.', + ], + + 'started' => [ + 'title' => 'İçe Aktarım Başladı', + 'body' => 'İçe aktarım başladı ve 1 satır arka planda işlenecek.|İçe aktarım başladı ve :count satır arka planda işlenecek.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'error', + 'system_error' => 'Sistem Hatası', + 'column_mapping_required_for_new_record' => ':attribute sütunu dosyadaki bir sütun ile eşleştirilmedi, fakat bu sütun yeni kayıt oluşturmak için gerekli bir sütun.', + ], + +]; diff --git a/lang/vendor/filament-actions/tr/modal.php b/lang/vendor/filament-actions/tr/modal.php new file mode 100644 index 0000000..6a87c47 --- /dev/null +++ b/lang/vendor/filament-actions/tr/modal.php @@ -0,0 +1,23 @@ + 'Bunu yapmak istediğinizden emin misiniz?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'İptal', + ], + + 'confirm' => [ + 'label' => 'Onayla', + ], + + 'submit' => [ + 'label' => 'Gönder', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/tr/notifications.php b/lang/vendor/filament-actions/tr/notifications.php new file mode 100644 index 0000000..1c27f99 --- /dev/null +++ b/lang/vendor/filament-actions/tr/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Çok Fazla Deneme Yapıldı', + 'body' => 'Çok fazla deneme yapıldı, lütfen :seconds saniye sonra tekrar deneyin.', + ], + +]; diff --git a/lang/vendor/filament-actions/tr/replicate.php b/lang/vendor/filament-actions/tr/replicate.php new file mode 100644 index 0000000..f3f6985 --- /dev/null +++ b/lang/vendor/filament-actions/tr/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Çoğalt', + + 'modal' => [ + + 'heading' => ':label çoğalt', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Çoğalt', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Kayıt çoğaltıldı', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/tr/restore.php b/lang/vendor/filament-actions/tr/restore.php new file mode 100644 index 0000000..896a725 --- /dev/null +++ b/lang/vendor/filament-actions/tr/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Geri yükle', + + 'modal' => [ + + 'heading' => ':label geri yükle', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Geri yükle', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Kayıt geri yüklendi', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Seçileni geri yükle', + + 'modal' => [ + + 'heading' => ':label seçileni geri yükle', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Geri yükle', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Kayıtlar geri yüklendi', + ], + + 'restored_partial' => [ + 'title' => ':total kayıttan :count kayıt geri yüklendi', + 'missing_authorization_failure_message' => ':count kayıt geri yüklemek için gereken izniniz yok.', + 'missing_processing_failure_message' => ':count geri yüklenemedi.', + ], + + 'restored_none' => [ + 'title' => 'Kayıtlar geri yüklenemedi', + 'missing_authorization_failure_message' => ':count kayıt geri yüklemek için gereken izniniz yok.', + 'missing_processing_failure_message' => ':count geri yüklenemedi.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/tr/view.php b/lang/vendor/filament-actions/tr/view.php new file mode 100644 index 0000000..a5e686c --- /dev/null +++ b/lang/vendor/filament-actions/tr/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Görüntüle', + + 'modal' => [ + + 'heading' => ':label görüntüle', + + 'actions' => [ + + 'close' => [ + 'label' => 'Kapat', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uk/associate.php b/lang/vendor/filament-actions/uk/associate.php new file mode 100644 index 0000000..2089b44 --- /dev/null +++ b/lang/vendor/filament-actions/uk/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Підключити', + + 'modal' => [ + + 'heading' => 'Підключити :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Запис', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Підключити', + ], + + 'associate_another' => [ + 'label' => 'Підключити та підключити інше', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Підключено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uk/attach.php b/lang/vendor/filament-actions/uk/attach.php new file mode 100644 index 0000000..ec0281a --- /dev/null +++ b/lang/vendor/filament-actions/uk/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Прикріпити', + + 'modal' => [ + + 'heading' => 'Прикріпити :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Запис', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Прикріпити', + ], + + 'attach_another' => [ + 'label' => 'Прикріпити та прикріпити інше', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Прикріплено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uk/create.php b/lang/vendor/filament-actions/uk/create.php new file mode 100644 index 0000000..cb33896 --- /dev/null +++ b/lang/vendor/filament-actions/uk/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Створити', + + 'modal' => [ + + 'heading' => 'Створити :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Створити', + ], + + 'create_another' => [ + 'label' => 'Створити та створити наступне', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Створено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uk/delete.php b/lang/vendor/filament-actions/uk/delete.php new file mode 100644 index 0000000..d2e0923 --- /dev/null +++ b/lang/vendor/filament-actions/uk/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Видалити', + + 'modal' => [ + + 'heading' => 'Видалити :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Видалити', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Видалено', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Видалити вибране', + + 'modal' => [ + + 'heading' => 'Видалити вибране :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Видалити', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Видалено', + ], + + 'deleted_partial' => [ + 'title' => 'Видалено :count із :total', + 'missing_authorization_failure_message' => 'У вас немає дозволу на видалення :count записів.', + 'missing_processing_failure_message' => 'Не вдалося видалити :count записів.', + ], + + 'deleted_none' => [ + 'title' => 'Не вдалося видалити', + 'missing_authorization_failure_message' => 'У вас немає дозволу на видалення :count записів.', + 'missing_processing_failure_message' => 'Не вдалося видалити :count записів.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uk/detach.php b/lang/vendor/filament-actions/uk/detach.php new file mode 100644 index 0000000..30d7fa0 --- /dev/null +++ b/lang/vendor/filament-actions/uk/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Від’єднати', + + 'modal' => [ + + 'heading' => 'Від’єднати :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Від’єднати', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Від’єднано', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Від’єднати вибране', + + 'modal' => [ + + 'heading' => 'Від’єднати вибране :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Від’єднати', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Від’єднано', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uk/dissociate.php b/lang/vendor/filament-actions/uk/dissociate.php new file mode 100644 index 0000000..63dc4ec --- /dev/null +++ b/lang/vendor/filament-actions/uk/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Відокремити', + + 'modal' => [ + + 'heading' => 'Відокремлено :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Відокремити', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Відокремлено', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Відокремити вибране', + + 'modal' => [ + + 'heading' => 'Відокремити вибране :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Відокремити', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Відокремлено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uk/edit.php b/lang/vendor/filament-actions/uk/edit.php new file mode 100644 index 0000000..444847e --- /dev/null +++ b/lang/vendor/filament-actions/uk/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Змінити', + + 'modal' => [ + + 'heading' => 'Змінити :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Зберегти зміни', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Збережено', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uk/export.php b/lang/vendor/filament-actions/uk/export.php new file mode 100644 index 0000000..90ab1d6 --- /dev/null +++ b/lang/vendor/filament-actions/uk/export.php @@ -0,0 +1,77 @@ + 'Експорт :label', + + 'modal' => [ + + 'heading' => 'Експорт :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Стовпці', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column увімкнено', + ], + + 'label' => [ + 'label' => ':column мітка', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Експорт', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Експорт завершено', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Завантажити .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Завантажити .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Експорт занадто великий', + 'body' => 'Ви не можете експортувати більше :count рядка одночасно.|Ви не можете експортувати більше :count рядків одночасно.|Ви не можете експортувати більше :count рядків одночасно.', + ], + + 'started' => [ + 'title' => 'Експорт розпочався', + 'body' => 'Ваш експорт почався, і :count рядок буде оброблено у фоновому режимі.|Ваш експорт почався, і :count рядки буде оброблено у фоновому режимі.|Ваш експорт почався, і :count рядків буде оброблено у фоновому режимі.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/uk/force-delete.php b/lang/vendor/filament-actions/uk/force-delete.php new file mode 100644 index 0000000..9d0e819 --- /dev/null +++ b/lang/vendor/filament-actions/uk/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Видалити назавжди', + + 'modal' => [ + + 'heading' => 'Видалити назавжди :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Видалити', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Запис видалено', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Видалити назавжди обране', + + 'modal' => [ + + 'heading' => 'Видалити назавжди обране :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Видалити', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Записи видалено', + ], + + 'deleted_partial' => [ + 'title' => 'Видалено :count із :total', + 'missing_authorization_failure_message' => 'У вас немає прав для видалення :count записів.', + 'missing_processing_failure_message' => 'Не вдалося видалити :count записів.', + ], + + 'deleted_none' => [ + 'title' => 'Не вдалося видалити', + 'missing_authorization_failure_message' => 'У вас немає прав для видалення :count записів.', + 'missing_processing_failure_message' => 'Не вдалося видалити :count записів.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uk/group.php b/lang/vendor/filament-actions/uk/group.php new file mode 100644 index 0000000..9ab0373 --- /dev/null +++ b/lang/vendor/filament-actions/uk/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Дії', + ], + +]; diff --git a/lang/vendor/filament-actions/uk/import.php b/lang/vendor/filament-actions/uk/import.php new file mode 100644 index 0000000..2ce7a8e --- /dev/null +++ b/lang/vendor/filament-actions/uk/import.php @@ -0,0 +1,85 @@ + 'Імпорт :label', + + 'modal' => [ + + 'heading' => 'Імпорт :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Файл', + + 'placeholder' => 'Завантажити CSV-файл', + + 'rules' => [ + 'duplicate_columns' => '{0} Файл не повинен містити більше ніж один пустий заголовок стовпця.|{1,*} Файл не повинен містити повторюваних заголовків стовпців: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Стовпці', + 'placeholder' => 'Виберіть стовпець', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Завантажити приклад CSV-файлу', + ], + + 'import' => [ + 'label' => 'Імпорт', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Імпорт завершено', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Завантажити інформацію про невдалий рядок|Завантажити інформацію про невдалий рядок', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Завантажений файл CSV занадто великий.', + 'body' => 'Ви не можете імпортувати більше :count рядка одночасно.|Ви не можете імпортувати більше :count рядків одночасно.|Ви не можете імпортувати більше :count рядків одночасно.', + ], + + 'started' => [ + 'title' => 'Імпорт розпочався', + 'body' => 'Ваш імпорт розпочався, і :count рядок буде опрацьовано у фоновому режимі.|Ваш імпорт розпочався, і :count рядки буде опрацьовано у фоновому режимі.|Ваш імпорт розпочався, і :count рядків буде опрацьовано у фоновому режимі.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'Помилка', + 'system_error' => 'Системна помилка, зверніться до служби підтримки.', + 'column_mapping_required_for_new_record' => 'Стовпчик :attribute не було зіставлено зі стовпчиком у файлі, але він необхідний для створення нових записів.', + ], + +]; diff --git a/lang/vendor/filament-actions/uk/modal.php b/lang/vendor/filament-actions/uk/modal.php new file mode 100644 index 0000000..a0374a9 --- /dev/null +++ b/lang/vendor/filament-actions/uk/modal.php @@ -0,0 +1,23 @@ + 'Ви впевнені, що хочете це зробити?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Скасувати', + ], + + 'confirm' => [ + 'label' => 'Підтвердити', + ], + + 'submit' => [ + 'label' => 'Відправити', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uk/notifications.php b/lang/vendor/filament-actions/uk/notifications.php new file mode 100644 index 0000000..12143da --- /dev/null +++ b/lang/vendor/filament-actions/uk/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Занадто багато спроб', + 'body' => 'Будь ласка, спробуйте ще раз через :seconds сек.', + ], + +]; diff --git a/lang/vendor/filament-actions/uk/replicate.php b/lang/vendor/filament-actions/uk/replicate.php new file mode 100644 index 0000000..f147848 --- /dev/null +++ b/lang/vendor/filament-actions/uk/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Копіювати', + + 'modal' => [ + + 'heading' => 'Копіювати :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Копіювати', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Запис скопійовано', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uk/restore.php b/lang/vendor/filament-actions/uk/restore.php new file mode 100644 index 0000000..469175e --- /dev/null +++ b/lang/vendor/filament-actions/uk/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Відновити', + + 'modal' => [ + + 'heading' => 'Відновити :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Відновити', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Запис відновлено', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Відновити вибране', + + 'modal' => [ + + 'heading' => 'Відновити вибране :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Відновити', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Записи відновлені', + ], + + 'restored_partial' => [ + 'title' => 'Відновлено :count із :total', + 'missing_authorization_failure_message' => 'У вас немає прав для відновлення :count записів.', + 'missing_processing_failure_message' => 'Не вдалося відновити :count записів.', + ], + + 'restored_none' => [ + 'title' => 'Не вдалося відновити', + 'missing_authorization_failure_message' => 'У вас немає прав для відновлення :count записів.', + 'missing_processing_failure_message' => 'Не вдалося відновити :count записів.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uk/view.php b/lang/vendor/filament-actions/uk/view.php new file mode 100644 index 0000000..a197554 --- /dev/null +++ b/lang/vendor/filament-actions/uk/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Перегляд', + + 'modal' => [ + + 'heading' => 'Перегляд :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Закрити', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ur/associate.php b/lang/vendor/filament-actions/ur/associate.php new file mode 100644 index 0000000..7d724ee --- /dev/null +++ b/lang/vendor/filament-actions/ur/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'منسلک کریں', + + 'modal' => [ + + 'heading' => ':label منسلک کریں', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'ریکارڈ', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'منسلک کریں', + ], + + 'associate_another' => [ + 'label' => 'منسلک کریں اور ایک اور منسلک کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'منسلک ہو گیا', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ur/attach.php b/lang/vendor/filament-actions/ur/attach.php new file mode 100644 index 0000000..d82594f --- /dev/null +++ b/lang/vendor/filament-actions/ur/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'منسلک کریں', + + 'modal' => [ + + 'heading' => ':label منسلک کریں', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'ریکارڈ', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'منسلک کریں', + ], + + 'attach_another' => [ + 'label' => 'منسلک کریں اور ایک اور کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'منسلک ہو گیا', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ur/create.php b/lang/vendor/filament-actions/ur/create.php new file mode 100644 index 0000000..ed59c9b --- /dev/null +++ b/lang/vendor/filament-actions/ur/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'نیا :label', + + 'modal' => [ + + 'heading' => ':label بنائیں', + + 'actions' => [ + + 'create' => [ + 'label' => 'بنائیں', + ], + + 'create_another' => [ + 'label' => 'بنائیں اور ایک اور بنائیں', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'بن گیا', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ur/delete.php b/lang/vendor/filament-actions/ur/delete.php new file mode 100644 index 0000000..0984aba --- /dev/null +++ b/lang/vendor/filament-actions/ur/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'حذف کریں', + + 'modal' => [ + + 'heading' => ':label کو حذف کریں', + + 'actions' => [ + + 'delete' => [ + 'label' => 'حذف کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'حذف کر دیا گیا', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'منتخب شدہ حذف کریں', + + 'modal' => [ + + 'heading' => 'منتخب شدہ :label کو حذف کریں', + + 'actions' => [ + + 'delete' => [ + 'label' => 'حذف کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'حذف کر دیے گئے', + ], + + 'deleted_partial' => [ + 'title' => ':total میں سے :count حذف کیے گئے', + 'missing_authorization_failure_message' => 'آپ کو :count حذف کرنے کی اجازت نہیں ہے۔', + 'missing_processing_failure_message' => ':count کو حذف نہیں کیا جا سکا۔', + ], + + 'deleted_none' => [ + 'title' => 'حذف ناکام رہا', + 'missing_authorization_failure_message' => 'آپ کو :count حذف کرنے کی اجازت نہیں ہے۔', + 'missing_processing_failure_message' => ':count کو حذف نہیں کیا جا سکا۔', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ur/detach.php b/lang/vendor/filament-actions/ur/detach.php new file mode 100644 index 0000000..24af071 --- /dev/null +++ b/lang/vendor/filament-actions/ur/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'علیحدہ کریں', + + 'modal' => [ + + 'heading' => ':label کو علیحدہ کریں', + + 'actions' => [ + + 'detach' => [ + 'label' => 'علیحدہ کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'علیحدہ کر دیا گیا', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'منتخب شدہ علیحدہ کریں', + + 'modal' => [ + + 'heading' => 'منتخب شدہ :label کو علیحدہ کریں', + + 'actions' => [ + + 'detach' => [ + 'label' => 'علیحدہ کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'علیحدہ کر دیے گئے', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ur/edit.php b/lang/vendor/filament-actions/ur/edit.php new file mode 100644 index 0000000..01b6870 --- /dev/null +++ b/lang/vendor/filament-actions/ur/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'ترمیم کریں', + + 'modal' => [ + + 'heading' => ':label میں ترمیم کریں', + + 'actions' => [ + + 'save' => [ + 'label' => 'تبدیلیاں محفوظ کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'محفوظ ہو گیا', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ur/export.php b/lang/vendor/filament-actions/ur/export.php new file mode 100644 index 0000000..689445f --- /dev/null +++ b/lang/vendor/filament-actions/ur/export.php @@ -0,0 +1,77 @@ + ':label ایکسپورٹ کریں', + + 'modal' => [ + + 'heading' => ':label ایکسپورٹ کریں', + + 'form' => [ + + 'columns' => [ + + 'label' => 'کالمز', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column فعال ہے', + ], + + 'label' => [ + 'label' => ':column کا لیبل', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'ایکسپورٹ کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'ایکسپورٹ مکمل ہو گیا', + + 'actions' => [ + + 'download_csv' => [ + 'label' => '.csv ڈاؤن لوڈ کریں', + ], + + 'download_xlsx' => [ + 'label' => '.xlsx ڈاؤن لوڈ کریں', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'ایکسپورٹ بہت بڑی ہے', + 'body' => 'آپ ایک وقت میں 1 ریکارڈ سے زیادہ ایکسپورٹ نہیں کر سکتے۔|آپ ایک وقت میں :count ریکارڈز سے زیادہ ایکسپورٹ نہیں کر سکتے۔', + ], + + 'started' => [ + 'title' => 'ایکسپورٹ شروع ہو گئی ہے', + 'body' => 'آپ کی ایکسپورٹ شروع ہو چکی ہے اور 1 ریکارڈ پس منظر میں پروسیس ہوگا۔ مکمل ہونے پر آپ کو ڈاؤن لوڈ لنک کے ساتھ نوٹیفکیشن ملے گا۔|آپ کی ایکسپورٹ شروع ہو چکی ہے اور :count ریکارڈز پس منظر میں پروسیس ہوں گے۔ مکمل ہونے پر آپ کو ڈاؤن لوڈ لنک کے ساتھ نوٹیفکیشن ملے گا۔', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/ur/force-delete.php b/lang/vendor/filament-actions/ur/force-delete.php new file mode 100644 index 0000000..276beda --- /dev/null +++ b/lang/vendor/filament-actions/ur/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'زبردستی حذف کریں', + + 'modal' => [ + + 'heading' => ':label کو زبردستی حذف کریں', + + 'actions' => [ + + 'delete' => [ + 'label' => 'حذف کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'حذف کر دیا گیا', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'منتخب شدہ زبردستی حذف کریں', + + 'modal' => [ + + 'heading' => 'منتخب شدہ :label کو زبردستی حذف کریں', + + 'actions' => [ + + 'delete' => [ + 'label' => 'حذف کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'حذف کر دیے گئے', + ], + + 'deleted_partial' => [ + 'title' => ':total میں سے :count حذف کیے گئے', + 'missing_authorization_failure_message' => 'آپ کو :count حذف کرنے کی اجازت نہیں ہے۔', + 'missing_processing_failure_message' => ':count کو حذف نہیں کیا جا سکا۔', + ], + + 'deleted_none' => [ + 'title' => 'حذف ناکام رہا', + 'missing_authorization_failure_message' => 'آپ کو :count حذف کرنے کی اجازت نہیں ہے۔', + 'missing_processing_failure_message' => ':count کو حذف نہیں کیا جا سکا۔', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ur/group.php b/lang/vendor/filament-actions/ur/group.php new file mode 100644 index 0000000..32f3bf8 --- /dev/null +++ b/lang/vendor/filament-actions/ur/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'کاروائیاں', + ], + +]; diff --git a/lang/vendor/filament-actions/ur/import.php b/lang/vendor/filament-actions/ur/import.php new file mode 100644 index 0000000..2aa325f --- /dev/null +++ b/lang/vendor/filament-actions/ur/import.php @@ -0,0 +1,85 @@ + ':label امپورٹ کریں', + + 'modal' => [ + + 'heading' => ':label امپورٹ کریں', + + 'form' => [ + + 'file' => [ + + 'label' => 'فائل', + + 'placeholder' => 'CSV فائل اپلوڈ کریں', + + 'rules' => [ + 'duplicate_columns' => '{0} فائل میں ایک سے زیادہ خالی کالم ہیڈر نہیں ہونے چاہئیں۔|{1,*} فائل میں ایک جیسے کالم ہیڈر نہیں ہونے چاہئیں: :columns۔', + ], + + ], + + 'columns' => [ + 'label' => 'کالمز', + 'placeholder' => 'ایک کالم منتخب کریں', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'مثالی CSV فائل ڈاؤن لوڈ کریں', + ], + + 'import' => [ + 'label' => 'امپورٹ کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'امپورٹ مکمل ہوگئی', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'ناکام قطار کی معلومات ڈاؤن لوڈ کریں|ناکام قطاروں کی معلومات ڈاؤن لوڈ کریں', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'اپلوڈ کی گئی CSV فائل بہت بڑی ہے', + 'body' => 'آپ ایک وقت میں صرف 1 قطار امپورٹ کر سکتے ہیں۔|آپ ایک وقت میں زیادہ سے زیادہ :count قطاریں امپورٹ کر سکتے ہیں۔', + ], + + 'started' => [ + 'title' => 'امپورٹ شروع ہوگئی ہے', + 'body' => 'آپ کی امپورٹ شروع ہوچکی ہے، اور 1 قطار بیک گراؤنڈ میں پروسیس ہوگی۔|آپ کی امپورٹ شروع ہوچکی ہے، اور :count قطاریں بیک گراؤنڈ میں پروسیس ہوں گی۔', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'غلطی', + 'system_error' => 'سسٹم کی خرابی، براہ کرم سپورٹ سے رابطہ کریں۔', + 'column_mapping_required_for_new_record' => ':attribute کالم فائل کے کسی کالم سے میپ نہیں کیا گیا، حالانکہ یہ نیا ریکارڈ بنانے کے لیے ضروری ہے۔', + ], + +]; diff --git a/lang/vendor/filament-actions/ur/modal.php b/lang/vendor/filament-actions/ur/modal.php new file mode 100644 index 0000000..9beb050 --- /dev/null +++ b/lang/vendor/filament-actions/ur/modal.php @@ -0,0 +1,23 @@ + 'کیا آپ واقعی یہ کرنا چاہتے ہیں؟', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'منسوخ کریں', + ], + + 'confirm' => [ + 'label' => 'تصدیق کریں', + ], + + 'submit' => [ + 'label' => 'جمع کروائیں', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ur/notifications.php b/lang/vendor/filament-actions/ur/notifications.php new file mode 100644 index 0000000..d5a79d0 --- /dev/null +++ b/lang/vendor/filament-actions/ur/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'بہت زیادہ کوششیں ہو چکی ہیں', + 'body' => 'براہ کرم :seconds سیکنڈ بعد دوبارہ کوشش کریں۔', + ], + +]; diff --git a/lang/vendor/filament-actions/ur/replicate.php b/lang/vendor/filament-actions/ur/replicate.php new file mode 100644 index 0000000..5f1313f --- /dev/null +++ b/lang/vendor/filament-actions/ur/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'نقل بنائیں', + + 'modal' => [ + + 'heading' => ':label کی نقل بنائیں', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'نقل بنائیں', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'نقل تیار ہو گئی', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ur/restore.php b/lang/vendor/filament-actions/ur/restore.php new file mode 100644 index 0000000..4db77e5 --- /dev/null +++ b/lang/vendor/filament-actions/ur/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'بحال کریں', + + 'modal' => [ + + 'heading' => ':label کو بحال کریں', + + 'actions' => [ + + 'restore' => [ + 'label' => 'بحال کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'بحال کر دیا گیا', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'منتخب شدہ کو بحال کریں', + + 'modal' => [ + + 'heading' => 'منتخب شدہ :label کو بحال کریں', + + 'actions' => [ + + 'restore' => [ + 'label' => 'بحال کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'بحال کر دیے گئے', + ], + + 'restored_partial' => [ + 'title' => ':total میں سے :count بحال کیے گئے', + 'missing_authorization_failure_message' => 'آپ کو :count بحال کرنے کی اجازت نہیں ہے۔', + 'missing_processing_failure_message' => ':count کو بحال نہیں کیا جا سکا۔', + ], + + 'restored_none' => [ + 'title' => 'بحال کرنے میں ناکامی', + 'missing_authorization_failure_message' => 'آپ کو :count بحال کرنے کی اجازت نہیں ہے۔', + 'missing_processing_failure_message' => ':count کو بحال نہیں کیا جا سکا۔', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/ur/view.php b/lang/vendor/filament-actions/ur/view.php new file mode 100644 index 0000000..ff2620b --- /dev/null +++ b/lang/vendor/filament-actions/ur/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'دیکھیں', + + 'modal' => [ + + 'heading' => ':label دیکھیں', + + 'actions' => [ + + 'close' => [ + 'label' => 'بند کریں', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uz/associate.php b/lang/vendor/filament-actions/uz/associate.php new file mode 100644 index 0000000..3cde81b --- /dev/null +++ b/lang/vendor/filament-actions/uz/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Bog\'lash', + + 'modal' => [ + + 'heading' => ':labelni bog\'lash', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Yozib olish', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Bog\'lash', + ], + + 'associate_another' => [ + 'label' => 'Bog\'lash va yana boshqa bog\'lash', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Bog\'langan', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uz/attach.php b/lang/vendor/filament-actions/uz/attach.php new file mode 100644 index 0000000..3dd8ce9 --- /dev/null +++ b/lang/vendor/filament-actions/uz/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Biriktirish', + + 'modal' => [ + + 'heading' => ':labelni biriktirish', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Yozib olish', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Biriktirish', + ], + + 'attach_another' => [ + 'label' => 'Biriktirish va yana boshqa biriktirish', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Biriktirilgan', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uz/create.php b/lang/vendor/filament-actions/uz/create.php new file mode 100644 index 0000000..548f820 --- /dev/null +++ b/lang/vendor/filament-actions/uz/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Yangi :labelni yaratish', + + 'modal' => [ + + 'heading' => 'Yangi :labelni yaratish', + + 'actions' => [ + + 'create' => [ + 'label' => 'Yaratish', + ], + + 'create_another' => [ + 'label' => 'Yaratish va yana boshqa yaratish', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Yaratildi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uz/delete.php b/lang/vendor/filament-actions/uz/delete.php new file mode 100644 index 0000000..c2a6818 --- /dev/null +++ b/lang/vendor/filament-actions/uz/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'O\'chirish', + + 'modal' => [ + + 'heading' => ':labelni o\'chirish', + + 'actions' => [ + + 'delete' => [ + 'label' => 'O\'chirish', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'O\'chirildi', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Tanlanganlarni o\'chirish', + + 'modal' => [ + + 'heading' => ':labelni o\'chirish', + + 'actions' => [ + + 'delete' => [ + 'label' => 'O\'chirish', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'O\'chirish', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uz/detach.php b/lang/vendor/filament-actions/uz/detach.php new file mode 100644 index 0000000..82903ea --- /dev/null +++ b/lang/vendor/filament-actions/uz/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Ajratish', + + 'modal' => [ + + 'heading' => ':labelni ajratish', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Ajratish', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Ajratish', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Tanlanganlarni ajratish', + + 'modal' => [ + + 'heading' => ':labelni ajratish ', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Ajratish', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Ajratish', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uz/dissociate.php b/lang/vendor/filament-actions/uz/dissociate.php new file mode 100644 index 0000000..562e961 --- /dev/null +++ b/lang/vendor/filament-actions/uz/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Ajratish', + + 'modal' => [ + + 'heading' => ':labelni ajratish', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Ajratish', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Ajratilgan', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Tanlanganlarni ajratish', + + 'modal' => [ + + 'heading' => ':labelni ajratish', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Ajratish', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Ajratilgan', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uz/edit.php b/lang/vendor/filament-actions/uz/edit.php new file mode 100644 index 0000000..6d9e7bc --- /dev/null +++ b/lang/vendor/filament-actions/uz/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Tahrirlash', + + 'modal' => [ + + 'heading' => ':labelni tahrirlash', + + 'actions' => [ + + 'save' => [ + 'label' => 'O\'zgarishlarni saqlash', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Saqlandi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uz/export.php b/lang/vendor/filament-actions/uz/export.php new file mode 100644 index 0000000..8406497 --- /dev/null +++ b/lang/vendor/filament-actions/uz/export.php @@ -0,0 +1,77 @@ + ':labelni export qilish', + + 'modal' => [ + + 'heading' => ':labelni export qilish', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Ustunlar', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column yoqilgan', + ], + + 'label' => [ + 'label' => ':column belgi', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Export', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Export yakunlandi', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Yuklab olish .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Yuklab olish .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Export qilish uchun juda katta', + 'body' => 'Bir vaqtning o\'zida 1 tadan ortiq qatorni eksport qila olmaysiz.|Bir vaqtning o\'zida :count satrdan ortiq eksport qila olmaysiz.', + ], + + 'started' => [ + 'title' => 'Export boshlandi', + 'body' => 'Eksportingiz boshlandi va 1 qator fonda qayta ishlanadi. Tugallangach, yuklab olish havolasi bilan bildirishnoma olasiz.|Eksportingiz boshlandi va :count qatorlari fonda qayta ishlanadi. Yuklab olish tugallangandan so\'ng siz yuklab olish havolasi bilan bildirishnoma olasiz.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/uz/force-delete.php b/lang/vendor/filament-actions/uz/force-delete.php new file mode 100644 index 0000000..e480a8a --- /dev/null +++ b/lang/vendor/filament-actions/uz/force-delete.php @@ -0,0 +1,60 @@ + [ + + 'label' => 'Majburiy o\'chirish', + + 'modal' => [ + + 'heading' => ':labelni majburiy o\'chirish', + + 'actions' => [ + 'delete' => [ + 'label' => 'O\'chirish', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'O\'chirildi', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Tanlanganlarni majburiy o\'chirish', + + 'modal' => [ + + 'heading' => ':labelni majburiy o\'chirish', + + 'actions' => [ + + 'delete' => [ + 'label' => 'O\'chirish', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'O\'chirildi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uz/group.php b/lang/vendor/filament-actions/uz/group.php new file mode 100644 index 0000000..7aab199 --- /dev/null +++ b/lang/vendor/filament-actions/uz/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Amallar', + ], + +]; diff --git a/lang/vendor/filament-actions/uz/import.php b/lang/vendor/filament-actions/uz/import.php new file mode 100644 index 0000000..50fa814 --- /dev/null +++ b/lang/vendor/filament-actions/uz/import.php @@ -0,0 +1,85 @@ + ':labelni import qilish', + + 'modal' => [ + + 'heading' => ':labelni import qilish', + + 'form' => [ + + 'file' => [ + + 'label' => 'Fayl', + + 'placeholder' => 'CSV faylini yuklang', + + 'rules' => [ + 'duplicate_columns' => '{0} Faylda bittadan ortiq boʻsh ustun sarlavhasi boʻlmasligi kerak.|{1,*} Faylda ikki nusxadagi ustun sarlavhalari boʻlmasligi kerak: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Ustunlar', + 'placeholder' => 'Ustunni tanlang', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Na\'muna CSV faylni yuklab oling', + ], + + 'import' => [ + 'label' => 'Import', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Import yakunlandi', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Muvaffaqiyatsiz satr haqida ma\'lumotni yuklab oling|Muvaffaqiyatsiz qatorlar haqida ma\'lumotni yuklab oling', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Yuklangan CSV fayl juda katta', + 'body' => 'Bir vaqtning o\'zida 1 tadan ortiq qatorni import qila olmaysiz.|Bir vaqtning o\'zida :count dan ortiq qatorni import qila olmaysiz.', + ], + + 'started' => [ + 'title' => 'Import boshlandi', + 'body' => 'Importingiz boshlandi va 1 qator fonda qayta ishlanadi.|Importingiz boshlandi va :count qatorlari fonda qayta ishlanadi.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'xatolik', + 'system_error' => 'Tizim xatosi, yordam xizmatiga murojaat qiling.', + 'column_mapping_required_for_new_record' => ':atribut ustuni fayldagi ustunga moslashtirilmagan, lekin u yangi yozuvlar yaratish uchun talab qilinadi.', + ], + +]; diff --git a/lang/vendor/filament-actions/uz/modal.php b/lang/vendor/filament-actions/uz/modal.php new file mode 100644 index 0000000..58134a8 --- /dev/null +++ b/lang/vendor/filament-actions/uz/modal.php @@ -0,0 +1,23 @@ + 'Ushbu amalni bajarishga ishonchingiz komilmi?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Qaytarish', + ], + + 'confirm' => [ + 'label' => 'Tasdiqlash', + ], + + 'submit' => [ + 'label' => 'Yuborish', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uz/replicate.php b/lang/vendor/filament-actions/uz/replicate.php new file mode 100644 index 0000000..c731035 --- /dev/null +++ b/lang/vendor/filament-actions/uz/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Takrorlash', + + 'modal' => [ + + 'heading' => ':labelni takrorlash', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Takrorlash', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Takrorlandi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uz/restore.php b/lang/vendor/filament-actions/uz/restore.php new file mode 100644 index 0000000..15070a3 --- /dev/null +++ b/lang/vendor/filament-actions/uz/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Qayta tiklash', + + 'modal' => [ + + 'heading' => ':labelni qayta tiklash', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Qayta tiklash', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Qayta tiklandi', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Tanlangan elementlarni qayta tiklash', + + 'modal' => [ + + 'heading' => ':labelni qayta tiklash', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Qayta tiklash', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Qayta tiklandi', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/uz/view.php b/lang/vendor/filament-actions/uz/view.php new file mode 100644 index 0000000..fdc6292 --- /dev/null +++ b/lang/vendor/filament-actions/uz/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Ko\'rish', + + 'modal' => [ + + 'heading' => ':labelni ko\'rish', + + 'actions' => [ + + 'close' => [ + 'label' => 'Yopish', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/vi/associate.php b/lang/vendor/filament-actions/vi/associate.php new file mode 100644 index 0000000..8503a70 --- /dev/null +++ b/lang/vendor/filament-actions/vi/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Liên kết', + + 'modal' => [ + + 'heading' => 'Liên kết :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Bản ghi', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => 'Liên kết', + ], + + 'associate_another' => [ + 'label' => 'Liên kết & liên kết thêm', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => 'Đã liên kết', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/vi/attach.php b/lang/vendor/filament-actions/vi/attach.php new file mode 100644 index 0000000..1d9338e --- /dev/null +++ b/lang/vendor/filament-actions/vi/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => 'Đính kèm', + + 'modal' => [ + + 'heading' => 'Đính kèm :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => 'Bản ghi', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => 'Đính kèm', + ], + + 'attach_another' => [ + 'label' => 'Đính kèm & đính kèm thêm', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'Đã đính kèm', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/vi/create.php b/lang/vendor/filament-actions/vi/create.php new file mode 100644 index 0000000..bbcd774 --- /dev/null +++ b/lang/vendor/filament-actions/vi/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => 'Tạo mới :label', + + 'modal' => [ + + 'heading' => 'Tạo :label', + + 'actions' => [ + + 'create' => [ + 'label' => 'Tạo', + ], + + 'create_another' => [ + 'label' => 'Tạo & tạo thêm', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Đã tạo', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/vi/delete.php b/lang/vendor/filament-actions/vi/delete.php new file mode 100644 index 0000000..2607ece --- /dev/null +++ b/lang/vendor/filament-actions/vi/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Xóa', + + 'modal' => [ + + 'heading' => 'Xóa :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Xóa', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Đã xóa', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Xoá các mục đã chọn', + + 'modal' => [ + + 'heading' => 'Xóa các mục :label đã chọn', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Xóa', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Đã xóa', + ], + + 'deleted_partial' => [ + 'title' => 'Đã xóa :count trong tổng số :total mục', + 'missing_authorization_failure_message' => 'Bạn không có quyền xóa :count mục.', + 'missing_processing_failure_message' => 'Đã không thể xóa :count mục.', + ], + + 'deleted_none' => [ + 'title' => 'Việc xóa đã thất bại', + 'missing_authorization_failure_message' => 'Bạn không có quyền xóa :count mục.', + 'missing_processing_failure_message' => 'Đã không thể xóa :count mục.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/vi/detach.php b/lang/vendor/filament-actions/vi/detach.php new file mode 100644 index 0000000..5aa7407 --- /dev/null +++ b/lang/vendor/filament-actions/vi/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Tách', + + 'modal' => [ + + 'heading' => 'Tách :label', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Tách', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Đã tách', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Tách các mục đã chọn', + + 'modal' => [ + + 'heading' => 'Tách các mục :label đã chọn', + + 'actions' => [ + + 'detach' => [ + 'label' => 'Tách', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => 'Đã tách', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/vi/dissociate.php b/lang/vendor/filament-actions/vi/dissociate.php new file mode 100644 index 0000000..97a1c06 --- /dev/null +++ b/lang/vendor/filament-actions/vi/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => 'Hủy liên kết', + + 'modal' => [ + + 'heading' => 'Hủy liên kết :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Hủy liên kết', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Đã hủy liên kết', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Hủy liên kết các mục đã chọn', + + 'modal' => [ + + 'heading' => 'Hủy liên kết :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => 'Hủy liên kết', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => 'Đã hủy liên kết', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/vi/edit.php b/lang/vendor/filament-actions/vi/edit.php new file mode 100644 index 0000000..828058a --- /dev/null +++ b/lang/vendor/filament-actions/vi/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Chỉnh sửa', + + 'modal' => [ + + 'heading' => 'Chỉnh sửa :label', + + 'actions' => [ + + 'save' => [ + 'label' => 'Lưu thay đổi', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Đã lưu', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/vi/export.php b/lang/vendor/filament-actions/vi/export.php new file mode 100644 index 0000000..48e8302 --- /dev/null +++ b/lang/vendor/filament-actions/vi/export.php @@ -0,0 +1,77 @@ + 'Xuất :label', + + 'modal' => [ + + 'heading' => 'Xuất :label', + + 'form' => [ + + 'columns' => [ + + 'label' => 'Các cột', + + 'form' => [ + + 'is_enabled' => [ + 'label' => 'Đã bật :column', + ], + + 'label' => [ + 'label' => 'Nhãn của :column', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => 'Xuất', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Quá trình xuất hoàn tất', + + 'actions' => [ + + 'download_csv' => [ + 'label' => 'Tải xuống .csv', + ], + + 'download_xlsx' => [ + 'label' => 'Tải xuống .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Nội dung xuất quá lớn', + 'body' => 'Bạn không thể xuất nhiều hơn 1 hàng cùng lúc.|Bạn không thể xuất nhiều hơn :count hàng cùng lúc.', + ], + + 'started' => [ + 'title' => 'Quá trình xuất đã bắt đầu', + 'body' => 'Quá trình xuất của bạn đã bắt đầu và sẽ xử lý 1 hàng trong nền.|Quá trình xuất của bạn đã bắt đầu và sẽ xử lý :count hàng trong nền.', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/vi/force-delete.php b/lang/vendor/filament-actions/vi/force-delete.php new file mode 100644 index 0000000..8280488 --- /dev/null +++ b/lang/vendor/filament-actions/vi/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Xóa vĩnh viễn', + + 'modal' => [ + + 'heading' => 'Xóa vĩnh viễn :label', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Xoá', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Đã xoá', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Xóa vĩnh viễn các mục đã chọn', + + 'modal' => [ + + 'heading' => 'Xóa vĩnh viễn các mục :label đã chọn', + + 'actions' => [ + + 'delete' => [ + 'label' => 'Xoá', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => 'Đã xóa', + ], + + 'deleted_partial' => [ + 'title' => 'Đã xóa :count trong tổng số :total mục', + 'missing_authorization_failure_message' => 'Bạn không có quyền xóa :count mục.', + 'missing_processing_failure_message' => 'Đã không thể xóa :count mục.', + ], + + 'deleted_none' => [ + 'title' => 'Việc xóa đã thất bại', + 'missing_authorization_failure_message' => 'Bạn không có quyền xóa :count mục.', + 'missing_processing_failure_message' => 'Đã không thể xóa :count mục.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/vi/group.php b/lang/vendor/filament-actions/vi/group.php new file mode 100644 index 0000000..9f486dd --- /dev/null +++ b/lang/vendor/filament-actions/vi/group.php @@ -0,0 +1,9 @@ + [ + 'label' => 'Thao tác', + ], + +]; diff --git a/lang/vendor/filament-actions/vi/import.php b/lang/vendor/filament-actions/vi/import.php new file mode 100644 index 0000000..e8580a5 --- /dev/null +++ b/lang/vendor/filament-actions/vi/import.php @@ -0,0 +1,85 @@ + 'Nhập :label', + + 'modal' => [ + + 'heading' => 'Nhập :label', + + 'form' => [ + + 'file' => [ + + 'label' => 'Tệp', + + 'placeholder' => 'Tải lên tệp CSV', + + 'rules' => [ + 'duplicate_columns' => '{0} Tệp không được chứa nhiều hơn một tiêu đề cột trống.|{1,*} Tệp không được chứa các tiêu đề cột trùng lặp: :columns.', + ], + + ], + + 'columns' => [ + 'label' => 'Cột', + 'placeholder' => 'Chọn một cột', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => 'Tải xuống tệp CSV mẫu', + ], + + 'import' => [ + 'label' => 'Nhập', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => 'Quá trình nhập hoàn tất', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => 'Tải xuống thông tin về hàng bị lỗi|Tải xuống thông tin về những hàng bị lỗi', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => 'Tệp CSV đã tải lên quá lớn', + 'body' => 'Bạn không thể nhập nhiều hơn 1 hàng cùng một lúc.|Bạn không thể nhập nhiều hơn :count hàng cùng một lúc.', + ], + + 'started' => [ + 'title' => 'Quá trình nhập đã bắt đầu', + 'body' => 'Quá trình nhập của bạn đã bắt đầu và sẽ xử lý 1 hàng trong nền.|Quá trình nhập của bạn đã bắt đầu và sẽ xử lý :count hàng trong nền.', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => 'lỗi', + 'system_error' => 'Lỗi hệ thống, vui lòng liên hệ bộ phận hỗ trợ.', + 'column_mapping_required_for_new_record' => 'Cột :attribute không được ánh xạ với cột nào trong tệp, nhưng cột này là bắt buộc để tạo bản ghi mới.', + ], + +]; diff --git a/lang/vendor/filament-actions/vi/modal.php b/lang/vendor/filament-actions/vi/modal.php new file mode 100644 index 0000000..2a778cb --- /dev/null +++ b/lang/vendor/filament-actions/vi/modal.php @@ -0,0 +1,23 @@ + 'Bạn có chắc chắn khi thực hiện thao tác này?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Huỷ thao tác', + ], + + 'confirm' => [ + 'label' => 'Xác nhận', + ], + + 'submit' => [ + 'label' => 'Gửi', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/vi/notifications.php b/lang/vendor/filament-actions/vi/notifications.php new file mode 100644 index 0000000..182df03 --- /dev/null +++ b/lang/vendor/filament-actions/vi/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Quá nhiều lần thao tác', + 'body' => 'Vui lòng thử lại sau :seconds giây nữa.', + ], + +]; diff --git a/lang/vendor/filament-actions/vi/replicate.php b/lang/vendor/filament-actions/vi/replicate.php new file mode 100644 index 0000000..d0e66aa --- /dev/null +++ b/lang/vendor/filament-actions/vi/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => 'Sao chép', + + 'modal' => [ + + 'heading' => 'Sao chép :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => 'Sao chép', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => 'Đã sao chép', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/vi/restore.php b/lang/vendor/filament-actions/vi/restore.php new file mode 100644 index 0000000..badf274 --- /dev/null +++ b/lang/vendor/filament-actions/vi/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => 'Khôi phục', + + 'modal' => [ + + 'heading' => 'Khôi phục :label', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Khôi phục', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Đã khôi phục', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => 'Khôi phục các mục đã chọn', + + 'modal' => [ + + 'heading' => 'Khôi phục các mục :label đã chọn', + + 'actions' => [ + + 'restore' => [ + 'label' => 'Khôi phục', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => 'Đã khôi phục', + ], + + 'restored_partial' => [ + 'title' => 'Đã khôi phục :count trong tổng số :total mục', + 'missing_authorization_failure_message' => 'Bạn không có quyền khôi phục :count mục.', + 'missing_processing_failure_message' => 'Đã không thể khôi phục :count mục.', + ], + + 'restored_none' => [ + 'title' => 'Việc khôi phục thất bại', + 'missing_authorization_failure_message' => 'Bạn không có quyền khôi phục :count mục.', + 'missing_processing_failure_message' => 'Đã không thể khôi phục :count mục.', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/vi/view.php b/lang/vendor/filament-actions/vi/view.php new file mode 100644 index 0000000..9651b70 --- /dev/null +++ b/lang/vendor/filament-actions/vi/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => 'Xem', + + 'modal' => [ + + 'heading' => 'Xem :label', + + 'actions' => [ + + 'close' => [ + 'label' => 'Đóng', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/associate.php b/lang/vendor/filament-actions/zh_CN/associate.php new file mode 100644 index 0000000..b98615c --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => '关联', + + 'modal' => [ + + 'heading' => '关联 :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => '记录', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => '关联', + ], + + 'associate_another' => [ + 'label' => '关联并关联另一个', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => '已关联', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/attach.php b/lang/vendor/filament-actions/zh_CN/attach.php new file mode 100644 index 0000000..e0864df --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => '附加', + + 'modal' => [ + + 'heading' => '附加 :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => '记录', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => '保存', + ], + + 'attach_another' => [ + 'label' => '保存并附加另一个', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => '已附加', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/create.php b/lang/vendor/filament-actions/zh_CN/create.php new file mode 100644 index 0000000..3ede79e --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => '创建:label', + + 'modal' => [ + + 'heading' => '创建:label', + + 'actions' => [ + + 'create' => [ + 'label' => '保存', + ], + + 'create_another' => [ + 'label' => '保存并创建另一个', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => '已创建', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/delete.php b/lang/vendor/filament-actions/zh_CN/delete.php new file mode 100644 index 0000000..bf0d0cc --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => '删除', + + 'modal' => [ + + 'heading' => '删除 :label', + + 'actions' => [ + + 'delete' => [ + 'label' => '删除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '已删除', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '删除已选项目', + + 'modal' => [ + + 'heading' => '删除已选 :label', + + 'actions' => [ + + 'delete' => [ + 'label' => '删除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '已删除', + ], + + 'deleted_partial' => [ + 'title' => '已删除 :count / :total', + 'missing_authorization_failure_message' => '您没有权限删除 :count 条记录。', + 'missing_processing_failure_message' => '无法删除 :count 条记录。', + ], + + 'deleted_none' => [ + 'title' => '删除失败', + 'missing_authorization_failure_message' => '您没有权限删除 :count 条记录。', + 'missing_processing_failure_message' => '无法删除 :count 条记录。', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/detach.php b/lang/vendor/filament-actions/zh_CN/detach.php new file mode 100644 index 0000000..d5c8483 --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => '分离', + + 'modal' => [ + + 'heading' => '分离 :label', + + 'actions' => [ + + 'detach' => [ + 'label' => '分离', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => '已分离', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '分离已选项目', + + 'modal' => [ + + 'heading' => '分离已选 :label', + + 'actions' => [ + + 'detach' => [ + 'label' => '分离已选项目', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => '已分离', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/dissociate.php b/lang/vendor/filament-actions/zh_CN/dissociate.php new file mode 100644 index 0000000..6e435af --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => '解除关联', + + 'modal' => [ + + 'heading' => '解除 :label 的关联', + + 'actions' => [ + + 'dissociate' => [ + 'label' => '解除关联', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => '已解除关联', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '解除已选项目关联', + + 'modal' => [ + + 'heading' => '解除已选 :label 的关联', + + 'actions' => [ + + 'dissociate' => [ + 'label' => '解除已选项目关联', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => '已解除关联', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/edit.php b/lang/vendor/filament-actions/zh_CN/edit.php new file mode 100644 index 0000000..90520f3 --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => '编辑', + + 'modal' => [ + + 'heading' => '编辑 :label', + + 'actions' => [ + + 'save' => [ + 'label' => '保存', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '已保存', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/export.php b/lang/vendor/filament-actions/zh_CN/export.php new file mode 100644 index 0000000..b15a403 --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/export.php @@ -0,0 +1,94 @@ + '导出 :label', + + 'modal' => [ + + 'heading' => '导出 :label', + + 'form' => [ + + 'columns' => [ + + 'label' => '列', + + 'actions' => [ + + 'select_all' => [ + 'label' => '全选', + ], + + 'deselect_all' => [ + 'label' => '取消全选', + ], + + ], + + 'form' => [ + + 'is_enabled' => [ + 'label' => '启用 :column', + ], + + 'label' => [ + 'label' => ':column 标签', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => '导出', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => '导出完成', + + 'actions' => [ + + 'download_csv' => [ + 'label' => '下载 .csv', + ], + + 'download_xlsx' => [ + 'label' => '下载 .xlsx', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => '导出数据过多', + 'body' => '一次最多只能导出 1 行记录。|一次最多只能导出 :count 行记录。', + ], + + 'no_columns' => [ + 'title' => '未选择列', + 'body' => '请至少选择一列进行导出。', + ], + + 'started' => [ + 'title' => '导出已开始', + 'body' => '导出已开始,将在后台处理 1 行数据。完成后您将收到带有下载链接的通知。|导出已开始,将在后台处理 :count 行数据。完成后您将收到带有下载链接的通知。', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/zh_CN/force-delete.php b/lang/vendor/filament-actions/zh_CN/force-delete.php new file mode 100644 index 0000000..11917cd --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/force-delete.php @@ -0,0 +1,73 @@ + [ + + 'label' => '强制删除', + + 'modal' => [ + + 'heading' => '强制删除 :label', + + 'actions' => [ + + 'delete' => [ + 'label' => '删除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '记录已删除', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '强制删除已选项目', + + 'modal' => [ + + 'heading' => '强制删除已选 :label', + + 'actions' => [ + + 'delete' => [ + 'label' => '删除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '记录已删除', + ], + + 'deleted_partial' => [ + 'title' => '已删除 :count / :total', + 'missing_authorization_failure_message' => '您没有权限删除 :count 条记录。', + 'missing_processing_failure_message' => '无法删除 :count 条记录。', + ], + + 'deleted_none' => [ + 'title' => '删除失败', + 'missing_authorization_failure_message' => '您没有权限删除 :count 条记录。', + 'missing_processing_failure_message' => '无法删除 :count 条记录。', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/group.php b/lang/vendor/filament-actions/zh_CN/group.php new file mode 100644 index 0000000..22dceee --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/group.php @@ -0,0 +1,9 @@ + [ + 'label' => '动作组', + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/import.php b/lang/vendor/filament-actions/zh_CN/import.php new file mode 100644 index 0000000..2f99f30 --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/import.php @@ -0,0 +1,85 @@ + '导入 :label', + + 'modal' => [ + + 'heading' => '导入 :label', + + 'form' => [ + + 'file' => [ + + 'label' => '文件', + + 'placeholder' => '上传 CSV 文件', + + 'rules' => [ + 'duplicate_columns' => '{0} 文件不能包含多个空列标题。|{1,*} 文件不能包含重复的列标题::columns。', + ], + + ], + + 'columns' => [ + 'label' => '列', + 'placeholder' => '选择一列', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => '下载示例 CSV 模板', + ], + + 'import' => [ + 'label' => '导入', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => '导入完成', + + 'actions' => [ + + 'download_failed_rows_csv' => [ + 'label' => '下载导入失败的记录|下载导入失败的记录', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => '上传的 CSV 文件过大', + 'body' => '一次最多只能导入 1 行记录。|一次最多只能导入 :count 行记录。', + ], + + 'started' => [ + 'title' => '导入已开始', + 'body' => '导入已开始,将在后台处理 1 行数据。|导入已开始,将在后台处理 :count 行数据。', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => '错误', + 'system_error' => '系统错误,请联系技术支持。', + 'column_mapping_required_for_new_record' => ':attribute 列未映射到文件中的列,但创建新记录时需要此列。', + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/modal.php b/lang/vendor/filament-actions/zh_CN/modal.php new file mode 100644 index 0000000..0026f93 --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/modal.php @@ -0,0 +1,23 @@ + '您确定要这样操作吗?', + + 'actions' => [ + + 'cancel' => [ + 'label' => '取消', + ], + + 'confirm' => [ + 'label' => '确定', + ], + + 'submit' => [ + 'label' => '提交', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/notifications.php b/lang/vendor/filament-actions/zh_CN/notifications.php new file mode 100644 index 0000000..ccb6adb --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/notifications.php @@ -0,0 +1,10 @@ + [ + 'title' => '操作过于频繁', + 'body' => '请在 :seconds 秒后重试。', + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/replicate.php b/lang/vendor/filament-actions/zh_CN/replicate.php new file mode 100644 index 0000000..f6d2b70 --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => '复制', + + 'modal' => [ + + 'heading' => '复制 :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => '复制', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => '记录已复制', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/restore.php b/lang/vendor/filament-actions/zh_CN/restore.php new file mode 100644 index 0000000..40fda30 --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/restore.php @@ -0,0 +1,73 @@ + [ + + 'label' => '恢复', + + 'modal' => [ + + 'heading' => '恢复 :label', + + 'actions' => [ + + 'restore' => [ + 'label' => '恢复', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => '记录已恢复', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '恢复已选项目', + + 'modal' => [ + + 'heading' => '恢复已选 :label', + + 'actions' => [ + + 'restore' => [ + 'label' => '恢复', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => '记录已恢复', + ], + + 'restored_partial' => [ + 'title' => '已恢复 :count / :total', + 'missing_authorization_failure_message' => '您没有权限恢复 :count 条记录。', + 'missing_processing_failure_message' => '无法恢复 :count 条记录。', + ], + + 'restored_none' => [ + 'title' => '恢复失败', + 'missing_authorization_failure_message' => '您没有权限恢复 :count 条记录。', + 'missing_processing_failure_message' => '无法恢复 :count 条记录。', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_CN/view.php b/lang/vendor/filament-actions/zh_CN/view.php new file mode 100644 index 0000000..e667c5a --- /dev/null +++ b/lang/vendor/filament-actions/zh_CN/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => '查看', + + 'modal' => [ + + 'heading' => '查看 :label', + + 'actions' => [ + + 'close' => [ + 'label' => '关闭', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/associate.php b/lang/vendor/filament-actions/zh_HK/associate.php new file mode 100644 index 0000000..04555f7 --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => '關聯', + + 'modal' => [ + + 'heading' => '關聯 :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => '資料', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => '關聯', + ], + + 'associate_another' => [ + 'label' => '關聯後繼續關聯另一個', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => '已關聯', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/attach.php b/lang/vendor/filament-actions/zh_HK/attach.php new file mode 100644 index 0000000..26a73ba --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => '附加', + + 'modal' => [ + + 'heading' => '附加 :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => '資料', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => '附加', + ], + + 'attach_another' => [ + 'label' => '附加後繼續附加另一個', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => '已附加', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/create.php b/lang/vendor/filament-actions/zh_HK/create.php new file mode 100644 index 0000000..c098f08 --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => '新增 :label', + + 'modal' => [ + + 'heading' => '建立 :label', + + 'actions' => [ + + 'create' => [ + 'label' => '建立', + ], + + 'create_another' => [ + 'label' => '建立後繼續建立另一個', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => '已建立', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/delete.php b/lang/vendor/filament-actions/zh_HK/delete.php new file mode 100644 index 0000000..5af3ae3 --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => '刪除', + + 'modal' => [ + + 'heading' => '刪除 :label', + + 'actions' => [ + + 'delete' => [ + 'label' => '刪除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '已刪除', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '刪除所選的項目', + + 'modal' => [ + + 'heading' => '刪除所選的 :label', + + 'actions' => [ + + 'delete' => [ + 'label' => '刪除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '已刪除', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/detach.php b/lang/vendor/filament-actions/zh_HK/detach.php new file mode 100644 index 0000000..d1deab2 --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => '解除附加', + + 'modal' => [ + + 'heading' => '解除附加 :label', + + 'actions' => [ + + 'detach' => [ + 'label' => '解除附加', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => '解除附加', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '解除附加所選的項目', + + 'modal' => [ + + 'heading' => '解除附加所選的 :label', + + 'actions' => [ + + 'detach' => [ + 'label' => '解除附加所選的項目', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => '已解除附加', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/dissociate.php b/lang/vendor/filament-actions/zh_HK/dissociate.php new file mode 100644 index 0000000..0012953 --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => '取消關聯', + + 'modal' => [ + + 'heading' => '取消關聯 :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => '取消關聯', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => '已取消關聯', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '取消關聯所選的項目', + + 'modal' => [ + + 'heading' => '取消關聯所選的 :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => '取消關聯所選的項目', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => '已取消關聯', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/edit.php b/lang/vendor/filament-actions/zh_HK/edit.php new file mode 100644 index 0000000..51ab380 --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => '編輯', + + 'modal' => [ + + 'heading' => '編輯 :label', + + 'actions' => [ + + 'save' => [ + 'label' => '保存', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '已保存', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/export.php b/lang/vendor/filament-actions/zh_HK/export.php new file mode 100644 index 0000000..42977ab --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/export.php @@ -0,0 +1,77 @@ + '匯出 :label', + + 'modal' => [ + + 'heading' => '匯出 :label', + + 'form' => [ + + 'columns' => [ + + 'label' => '欄位', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column 開啟', + ], + + 'label' => [ + 'label' => ':column 標籤', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => '匯出', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => '匯出完成', + + 'actions' => [ + + 'download_csv' => [ + 'label' => '下載 .csv 檔案', + ], + + 'download_xlsx' => [ + 'label' => '下載 .xlsx 檔案', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => '匯出的檔案過大', + 'body' => '你不能一次匯出超過 1 行紀錄。|你不能一次匯出超過 :count 行紀錄。', + ], + + 'started' => [ + 'title' => '匯出開始', + 'body' => '你的匯出已經開始,將在背景處理共 1 行。|你的匯出已經開始,將在背景處理共 :count 行。', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/zh_HK/force-delete.php b/lang/vendor/filament-actions/zh_HK/force-delete.php new file mode 100644 index 0000000..a5d76ca --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => '強制刪除', + + 'modal' => [ + + 'heading' => '強制刪除 :label', + + 'actions' => [ + + 'delete' => [ + 'label' => '刪除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '已刪除資料', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '強制刪除所選的項目', + + 'modal' => [ + + 'heading' => '強制刪除所選的 :label', + + 'actions' => [ + + 'delete' => [ + 'label' => '刪除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '已刪除資料', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/group.php b/lang/vendor/filament-actions/zh_HK/group.php new file mode 100644 index 0000000..361d0a4 --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/group.php @@ -0,0 +1,9 @@ + [ + 'label' => '動作', + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/import.php b/lang/vendor/filament-actions/zh_HK/import.php new file mode 100644 index 0000000..ec72911 --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/import.php @@ -0,0 +1,76 @@ + '匯入:label', + + 'modal' => [ + + 'heading' => '匯入:label', + + 'form' => [ + + 'file' => [ + 'label' => '檔案', + 'placeholder' => '上傳一個 CSV 檔案', + ], + + 'columns' => [ + 'label' => '欄位', + 'placeholder' => '選擇一個欄位', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => '下載一個 CSV 模板', + ], + + 'import' => [ + 'label' => '匯入', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => '匯入完成', + + 'actions' => [ + 'download_failed_rows_csv' => [ + 'label' => '下載匯入失敗的紀錄|下載匯入失敗的紀錄', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => '上傳的 CSV 檔案過大', + 'body' => '你不能一次匯入超過 1 行紀錄。|你不能一次匯入超過 :count 行紀錄。', + ], + + 'started' => [ + 'title' => '匯入開始', + 'body' => '你的匯入已經開始,將在後台處理共 1 行。|你的匯入已經開始,將在後台處理共 :count 行。', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => '錯誤', + 'system_error' => '系統錯誤,請聯繫官方。', + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/modal.php b/lang/vendor/filament-actions/zh_HK/modal.php new file mode 100644 index 0000000..6c1e62c --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/modal.php @@ -0,0 +1,23 @@ + '確定要進行嗎?', + + 'actions' => [ + + 'cancel' => [ + 'label' => '取消', + ], + + 'confirm' => [ + 'label' => '確定', + ], + + 'submit' => [ + 'label' => '送出', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/replicate.php b/lang/vendor/filament-actions/zh_HK/replicate.php new file mode 100644 index 0000000..546a11e --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => '複製', + + 'modal' => [ + + 'heading' => '複製 :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => '複製', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => '已複製資料', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/restore.php b/lang/vendor/filament-actions/zh_HK/restore.php new file mode 100644 index 0000000..6c21235 --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => '還原', + + 'modal' => [ + + 'heading' => '還原 :label', + + 'actions' => [ + + 'restore' => [ + 'label' => '還原', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => '已還原資料', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '已還原所選的資料', + + 'modal' => [ + + 'heading' => '已選擇 :label', + + 'actions' => [ + + 'restore' => [ + 'label' => '還原', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => '已還原資料', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_HK/view.php b/lang/vendor/filament-actions/zh_HK/view.php new file mode 100644 index 0000000..d58512c --- /dev/null +++ b/lang/vendor/filament-actions/zh_HK/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => '檢視', + + 'modal' => [ + + 'heading' => '檢視 :label', + + 'actions' => [ + + 'close' => [ + 'label' => '關閉', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/associate.php b/lang/vendor/filament-actions/zh_TW/associate.php new file mode 100644 index 0000000..04555f7 --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/associate.php @@ -0,0 +1,45 @@ + [ + + 'label' => '關聯', + + 'modal' => [ + + 'heading' => '關聯 :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => '資料', + ], + + ], + + 'actions' => [ + + 'associate' => [ + 'label' => '關聯', + ], + + 'associate_another' => [ + 'label' => '關聯後繼續關聯另一個', + ], + + ], + + ], + + 'notifications' => [ + + 'associated' => [ + 'title' => '已關聯', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/attach.php b/lang/vendor/filament-actions/zh_TW/attach.php new file mode 100644 index 0000000..26a73ba --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/attach.php @@ -0,0 +1,45 @@ + [ + + 'label' => '附加', + + 'modal' => [ + + 'heading' => '附加 :label', + + 'fields' => [ + + 'record_id' => [ + 'label' => '資料', + ], + + ], + + 'actions' => [ + + 'attach' => [ + 'label' => '附加', + ], + + 'attach_another' => [ + 'label' => '附加後繼續附加另一個', + ], + + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => '已附加', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/create.php b/lang/vendor/filament-actions/zh_TW/create.php new file mode 100644 index 0000000..c098f08 --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/create.php @@ -0,0 +1,37 @@ + [ + + 'label' => '新增 :label', + + 'modal' => [ + + 'heading' => '建立 :label', + + 'actions' => [ + + 'create' => [ + 'label' => '建立', + ], + + 'create_another' => [ + 'label' => '建立後繼續建立另一個', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => '已建立', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/delete.php b/lang/vendor/filament-actions/zh_TW/delete.php new file mode 100644 index 0000000..5af3ae3 --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => '刪除', + + 'modal' => [ + + 'heading' => '刪除 :label', + + 'actions' => [ + + 'delete' => [ + 'label' => '刪除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '已刪除', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '刪除所選的項目', + + 'modal' => [ + + 'heading' => '刪除所選的 :label', + + 'actions' => [ + + 'delete' => [ + 'label' => '刪除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '已刪除', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/detach.php b/lang/vendor/filament-actions/zh_TW/detach.php new file mode 100644 index 0000000..d1deab2 --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/detach.php @@ -0,0 +1,61 @@ + [ + + 'label' => '解除附加', + + 'modal' => [ + + 'heading' => '解除附加 :label', + + 'actions' => [ + + 'detach' => [ + 'label' => '解除附加', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => '解除附加', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '解除附加所選的項目', + + 'modal' => [ + + 'heading' => '解除附加所選的 :label', + + 'actions' => [ + + 'detach' => [ + 'label' => '解除附加所選的項目', + ], + + ], + + ], + + 'notifications' => [ + + 'detached' => [ + 'title' => '已解除附加', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/dissociate.php b/lang/vendor/filament-actions/zh_TW/dissociate.php new file mode 100644 index 0000000..0012953 --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/dissociate.php @@ -0,0 +1,61 @@ + [ + + 'label' => '取消關聯', + + 'modal' => [ + + 'heading' => '取消關聯 :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => '取消關聯', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => '已取消關聯', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '取消關聯所選的項目', + + 'modal' => [ + + 'heading' => '取消關聯所選的 :label', + + 'actions' => [ + + 'dissociate' => [ + 'label' => '取消關聯所選的項目', + ], + + ], + + ], + + 'notifications' => [ + + 'dissociated' => [ + 'title' => '已取消關聯', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/edit.php b/lang/vendor/filament-actions/zh_TW/edit.php new file mode 100644 index 0000000..51ab380 --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/edit.php @@ -0,0 +1,33 @@ + [ + + 'label' => '編輯', + + 'modal' => [ + + 'heading' => '編輯 :label', + + 'actions' => [ + + 'save' => [ + 'label' => '保存', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '已保存', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/export.php b/lang/vendor/filament-actions/zh_TW/export.php new file mode 100644 index 0000000..42977ab --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/export.php @@ -0,0 +1,77 @@ + '匯出 :label', + + 'modal' => [ + + 'heading' => '匯出 :label', + + 'form' => [ + + 'columns' => [ + + 'label' => '欄位', + + 'form' => [ + + 'is_enabled' => [ + 'label' => ':column 開啟', + ], + + 'label' => [ + 'label' => ':column 標籤', + ], + + ], + + ], + + ], + + 'actions' => [ + + 'export' => [ + 'label' => '匯出', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => '匯出完成', + + 'actions' => [ + + 'download_csv' => [ + 'label' => '下載 .csv 檔案', + ], + + 'download_xlsx' => [ + 'label' => '下載 .xlsx 檔案', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => '匯出的檔案過大', + 'body' => '你不能一次匯出超過 1 行紀錄。|你不能一次匯出超過 :count 行紀錄。', + ], + + 'started' => [ + 'title' => '匯出開始', + 'body' => '你的匯出已經開始,將在背景處理共 1 行。|你的匯出已經開始,將在背景處理共 :count 行。', + ], + + ], + + 'file_name' => 'export-:export_id-:model', + +]; diff --git a/lang/vendor/filament-actions/zh_TW/force-delete.php b/lang/vendor/filament-actions/zh_TW/force-delete.php new file mode 100644 index 0000000..a5d76ca --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/force-delete.php @@ -0,0 +1,61 @@ + [ + + 'label' => '強制刪除', + + 'modal' => [ + + 'heading' => '強制刪除 :label', + + 'actions' => [ + + 'delete' => [ + 'label' => '刪除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '已刪除資料', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '強制刪除所選的項目', + + 'modal' => [ + + 'heading' => '強制刪除所選的 :label', + + 'actions' => [ + + 'delete' => [ + 'label' => '刪除', + ], + + ], + + ], + + 'notifications' => [ + + 'deleted' => [ + 'title' => '已刪除資料', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/group.php b/lang/vendor/filament-actions/zh_TW/group.php new file mode 100644 index 0000000..361d0a4 --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/group.php @@ -0,0 +1,9 @@ + [ + 'label' => '動作', + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/import.php b/lang/vendor/filament-actions/zh_TW/import.php new file mode 100644 index 0000000..ec72911 --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/import.php @@ -0,0 +1,76 @@ + '匯入:label', + + 'modal' => [ + + 'heading' => '匯入:label', + + 'form' => [ + + 'file' => [ + 'label' => '檔案', + 'placeholder' => '上傳一個 CSV 檔案', + ], + + 'columns' => [ + 'label' => '欄位', + 'placeholder' => '選擇一個欄位', + ], + + ], + + 'actions' => [ + + 'download_example' => [ + 'label' => '下載一個 CSV 模板', + ], + + 'import' => [ + 'label' => '匯入', + ], + + ], + + ], + + 'notifications' => [ + + 'completed' => [ + + 'title' => '匯入完成', + + 'actions' => [ + 'download_failed_rows_csv' => [ + 'label' => '下載匯入失敗的紀錄|下載匯入失敗的紀錄', + ], + + ], + + ], + + 'max_rows' => [ + 'title' => '上傳的 CSV 檔案過大', + 'body' => '你不能一次匯入超過 1 行紀錄。|你不能一次匯入超過 :count 行紀錄。', + ], + + 'started' => [ + 'title' => '匯入開始', + 'body' => '你的匯入已經開始,將在後台處理共 1 行。|你的匯入已經開始,將在後台處理共 :count 行。', + ], + + ], + + 'example_csv' => [ + 'file_name' => ':importer-example', + ], + + 'failure_csv' => [ + 'file_name' => 'import-:import_id-:csv_name-failed-rows', + 'error_header' => '錯誤', + 'system_error' => '系統錯誤,請聯繫官方。', + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/modal.php b/lang/vendor/filament-actions/zh_TW/modal.php new file mode 100644 index 0000000..6c1e62c --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/modal.php @@ -0,0 +1,23 @@ + '確定要進行嗎?', + + 'actions' => [ + + 'cancel' => [ + 'label' => '取消', + ], + + 'confirm' => [ + 'label' => '確定', + ], + + 'submit' => [ + 'label' => '送出', + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/replicate.php b/lang/vendor/filament-actions/zh_TW/replicate.php new file mode 100644 index 0000000..546a11e --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/replicate.php @@ -0,0 +1,33 @@ + [ + + 'label' => '複製', + + 'modal' => [ + + 'heading' => '複製 :label', + + 'actions' => [ + + 'replicate' => [ + 'label' => '複製', + ], + + ], + + ], + + 'notifications' => [ + + 'replicated' => [ + 'title' => '已複製資料', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/restore.php b/lang/vendor/filament-actions/zh_TW/restore.php new file mode 100644 index 0000000..6c21235 --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/restore.php @@ -0,0 +1,61 @@ + [ + + 'label' => '還原', + + 'modal' => [ + + 'heading' => '還原 :label', + + 'actions' => [ + + 'restore' => [ + 'label' => '還原', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => '已還原資料', + ], + + ], + + ], + + 'multiple' => [ + + 'label' => '已還原所選的資料', + + 'modal' => [ + + 'heading' => '已選擇 :label', + + 'actions' => [ + + 'restore' => [ + 'label' => '還原', + ], + + ], + + ], + + 'notifications' => [ + + 'restored' => [ + 'title' => '已還原資料', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-actions/zh_TW/view.php b/lang/vendor/filament-actions/zh_TW/view.php new file mode 100644 index 0000000..d58512c --- /dev/null +++ b/lang/vendor/filament-actions/zh_TW/view.php @@ -0,0 +1,25 @@ + [ + + 'label' => '檢視', + + 'modal' => [ + + 'heading' => '檢視 :label', + + 'actions' => [ + + 'close' => [ + 'label' => '關閉', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/am/auth/pages/edit-profile.php b/lang/vendor/filament-panels/am/auth/pages/edit-profile.php new file mode 100644 index 0000000..4eaae82 --- /dev/null +++ b/lang/vendor/filament-panels/am/auth/pages/edit-profile.php @@ -0,0 +1,46 @@ + 'መገለጫዎ', + 'form' => [ + + 'email' => [ + + 'label' => 'የ ኢሜል አድራሻ', + ], + 'name' => [ + + 'label' => 'ስም', + ], + 'password' => [ + + 'label' => 'አዲስ የይለፍ ቃል', + ], + 'password_confirmation' => [ + + 'label' => 'አዲሱን የይለፍ ቃል አረጋግጥ', + ], + 'actions' => [ + + 'save' => [ + + 'label' => 'ለውጦችን አስቀምጥ', + ], + ], + ], + 'notifications' => [ + + 'saved' => [ + + 'title' => 'ተቀምጧል', + ], + ], + 'actions' => [ + + 'cancel' => [ + + 'label' => 'ይቅር', + ], + ], +]; diff --git a/lang/vendor/filament-panels/am/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/am/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..e3fe09b --- /dev/null +++ b/lang/vendor/filament-panels/am/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,31 @@ + 'እባክዎ የኢሜል አድራሻዎ የእርስዎ መሆኑን ያረጋግጡ', + 'heading' => 'እባክዎ የኢሜል አድራሻዎ የእርስዎ መሆኑን ያረጋግጡ', + 'actions' => [ + + 'resend_notification' => [ + + 'label' => 'በድጋሚ ይላክ', + ], + ], + 'messages' => [ + + 'notification_not_received' => 'የላክነው ኢሜይል አልደረሰምን?', + 'notification_sent' => 'የኢሜል አድራሻዎን እንዴት ማረጋገጥ እንደሚችሉ መመሪያዎችን የያዘ ኢሜል ወደ :email ልከናል።', + ], + 'notifications' => [ + + 'notification_resent' => [ + + 'title' => 'ኢሜይሉን በድጋሚ ልከናል።', + ], + 'notification_resend_throttled' => [ + + 'title' => 'እንደገና መላክ በጣም ብዙ ሙከራዎች ሞክረዋል።', + 'body' => 'እባክዎ በ:seconds ሰከንድ ውስጥ እንደገና ይሞክሩ።', + ], + ], +]; diff --git a/lang/vendor/filament-panels/am/auth/pages/login.php b/lang/vendor/filament-panels/am/auth/pages/login.php new file mode 100644 index 0000000..93bea9b --- /dev/null +++ b/lang/vendor/filament-panels/am/auth/pages/login.php @@ -0,0 +1,53 @@ + 'ወደ ሲስተሙ ይግቡ', + 'heading' => 'ግባ', + 'actions' => [ + + 'register' => [ + + 'before' => 'ወይም', + 'label' => 'በመለያ ይመዝገቡ', + ], + 'request_password_reset' => [ + + 'label' => 'የይለፍ ቃልዎን ረሱ?', + ], + ], + 'form' => [ + + 'email' => [ + + 'label' => 'የ ኢሜል አድራሻ', + ], + 'password' => [ + + 'label' => 'የይለፍ ቃል', + ], + 'remember' => [ + + 'label' => 'አስታውሰኝ', + ], + 'actions' => [ + + 'authenticate' => [ + + 'label' => 'ግባ', + ], + ], + ], + 'messages' => [ + + 'failed' => 'እነዚህ ምስክርነቶች(ያስገቡት መረጃ) ከኛ መዝገቦች ጋር አይዛመዱም።', + ], + 'notifications' => [ + + 'throttled' => [ + + 'title' => 'በጣም ብዙ የመግባት ሙከራዎች', + 'body' => 'እባክዎ በ:seconds ሰከንዶች ውስጥ እንደገና ይሞክሩ።', + ], + ], +]; diff --git a/lang/vendor/filament-panels/am/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/am/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..088c7af --- /dev/null +++ b/lang/vendor/filament-panels/am/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,36 @@ + 'የይለፍቃል ማደሻ', + 'heading' => 'የይለፍቃልዎ ረሱን?', + 'actions' => [ + + 'login' => [ + + 'label' => 'ወደ መግቢያው ተመለስ', + ], + ], + 'form' => [ + + 'email' => [ + + 'label' => 'የኢሜይል አድራሻ', + ], + 'actions' => [ + + 'request' => [ + + 'label' => 'ኢሜይል ላክ', + ], + ], + ], + 'notifications' => [ + + 'throttled' => [ + + 'title' => ' በጣም ብዙ ሙከራዎች', + 'body' => 'እባክዎ በ:seconds ሰከንድ ውስጥ እንደገና ይሞክሩ።', + ], + ], +]; diff --git a/lang/vendor/filament-panels/am/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/am/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..4bc30cb --- /dev/null +++ b/lang/vendor/filament-panels/am/auth/pages/password-reset/reset-password.php @@ -0,0 +1,38 @@ + 'የይለፍቃልዎን ያድሱ', + 'heading' => 'የይለፍቃልዎን ያድሱ', + 'form' => [ + + 'email' => [ + + 'label' => 'የኢሜይል አድራሻ', + ], + 'password' => [ + + 'label' => 'የይለፍቃል', + 'validation_attribute' => 'password', + ], + 'password_confirmation' => [ + + 'label' => 'የይለፍቃሉን ያረጋግጡ', + ], + 'actions' => [ + + 'reset' => [ + + 'label' => 'የይለፍቃሉን ይቀይሩ', + ], + ], + ], + 'notifications' => [ + + 'throttled' => [ + + 'title' => ' በጣም ብዙ ሙከራዎች', + 'body' => 'እባክዎ በ:seconds ሰከንድ ውስጥ እንደገና ይሞክሩ።', + ], + ], +]; diff --git a/lang/vendor/filament-panels/am/auth/pages/register.php b/lang/vendor/filament-panels/am/auth/pages/register.php new file mode 100644 index 0000000..120867b --- /dev/null +++ b/lang/vendor/filament-panels/am/auth/pages/register.php @@ -0,0 +1,50 @@ + 'ምዝገባ', + 'heading' => 'ምዝገባን አከናውን', + 'actions' => [ + + 'login' => [ + + 'before' => 'ወይም', + 'label' => 'ወደ በመለያዎ ይግቡ', + ], + ], + 'form' => [ + + 'email' => [ + + 'label' => 'የ ኢሜል አድራሻ', + ], + 'name' => [ + + 'label' => 'ስም', + ], + 'password' => [ + + 'label' => 'የይለፍ ቃል', + 'validation_attribute' => 'የይለፍ ቃል', + ], + 'password_confirmation' => [ + + 'label' => 'የይለፍ ቃልዎን ያጽድቁ', + ], + 'actions' => [ + + 'register' => [ + + 'label' => 'ተመዝገብ', + ], + ], + ], + 'notifications' => [ + + 'throttled' => [ + + 'title' => 'በጣም ብዙ የምዝገባ ሙከራዎች', + 'body' => 'እባክዎ በ:seconds ሰከንዶች ውስጥ እንደገና ይሞክሩ።', + ], + ], +]; diff --git a/lang/vendor/filament-panels/am/global-search.php b/lang/vendor/filament-panels/am/global-search.php new file mode 100644 index 0000000..6caac20 --- /dev/null +++ b/lang/vendor/filament-panels/am/global-search.php @@ -0,0 +1,10 @@ + [ + 'label' => 'ሙሉ ፍለጋ', + 'placeholder' => 'ፈልግ', + ], + 'no_results_message' => 'ምንም የፍለጋ ውጤቶች አልተገኙም።', +]; diff --git a/lang/vendor/filament-panels/am/layout.php b/lang/vendor/filament-panels/am/layout.php new file mode 100644 index 0000000..85cca37 --- /dev/null +++ b/lang/vendor/filament-panels/am/layout.php @@ -0,0 +1,59 @@ + 'ltr', + 'actions' => [ + + 'billing' => [ + + 'label' => 'የደንበኝነት ምዝገባን ያስተዳድሩ', + ], + 'logout' => [ + + 'label' => 'ዘግተህ ውጣ', + ], + 'open_database_notifications' => [ + + 'label' => 'ማሳወቂያዎችን ክፈት', + ], + 'open_user_menu' => [ + + 'label' => 'የተጠቃሚ ሜኑ', + ], + 'sidebar' => [ + + 'collapse' => [ + + 'label' => 'የጎን አሞሌን ሰብስብ', + ], + 'expand' => [ + + 'label' => 'የጎን አሞሌን ዘርጋ', + ], + ], + 'theme_switcher' => [ + + 'dark' => [ + + 'label' => 'የጥቁር ገጽታን ሞድ', + ], + 'light' => [ + + 'label' => 'የብርሃን ገጽታን አብራ', + ], + 'system' => [ + + 'label' => 'የሲስተሙ ገጽታን ተጠቀም', + ], + ], + ], + 'avatar' => [ + + 'alt' => 'የ:name አቫተር', + ], + 'logo' => [ + + 'alt' => 'የ:name ሎጎ', + ], +]; diff --git a/lang/vendor/filament-panels/am/pages/dashboard.php b/lang/vendor/filament-panels/am/pages/dashboard.php new file mode 100644 index 0000000..444f54a --- /dev/null +++ b/lang/vendor/filament-panels/am/pages/dashboard.php @@ -0,0 +1,24 @@ + 'ዳሽቦርድ', + 'actions' => [ + + 'filter' => [ + + 'label' => 'አጣራ', + 'modal' => [ + + 'heading' => 'አጣራ', + 'actions' => [ + + 'apply' => [ + + 'label' => 'ተግብር', + ], + ], + ], + ], + ], +]; diff --git a/lang/vendor/filament-panels/am/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/am/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..5d01853 --- /dev/null +++ b/lang/vendor/filament-panels/am/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,22 @@ + [ + + 'actions' => [ + + 'save' => [ + + 'label' => 'ለውጦችን ያስቀምጡ', + ], + ], + ], + 'notifications' => [ + + 'saved' => [ + + 'title' => 'ተመዝግቦዋል', + ], + ], +]; diff --git a/lang/vendor/filament-panels/am/resources/pages/create-record.php b/lang/vendor/filament-panels/am/resources/pages/create-record.php new file mode 100644 index 0000000..de4bdf9 --- /dev/null +++ b/lang/vendor/filament-panels/am/resources/pages/create-record.php @@ -0,0 +1,37 @@ + ':labelን መዝገብ', + + 'breadcrumb' => 'መዝገብ', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'ይቅር', + ], + + 'create' => [ + 'label' => 'መዝግብ', + ], + + 'create_another' => [ + 'label' => 'መዝግብና ሌላ ምዝገባ ጀምር', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'ተመዝግቦዋል', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/am/resources/pages/edit-record.php b/lang/vendor/filament-panels/am/resources/pages/edit-record.php new file mode 100644 index 0000000..bb4d88a --- /dev/null +++ b/lang/vendor/filament-panels/am/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + ':labelን አድስ', + + 'breadcrumb' => 'አድስ', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'ይቅር', + ], + + 'save' => [ + 'label' => 'ለውጦችን አስቀምጥ', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'አድስ', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'እድሳቱ በተሳካ ሁኔታ ተጠናቆዋል', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/am/resources/pages/list-records.php b/lang/vendor/filament-panels/am/resources/pages/list-records.php new file mode 100644 index 0000000..0e5d2d9 --- /dev/null +++ b/lang/vendor/filament-panels/am/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'ዘርዝር', + +]; diff --git a/lang/vendor/filament-panels/am/resources/pages/view-record.php b/lang/vendor/filament-panels/am/resources/pages/view-record.php new file mode 100644 index 0000000..5d50e77 --- /dev/null +++ b/lang/vendor/filament-panels/am/resources/pages/view-record.php @@ -0,0 +1,17 @@ + ':labelን እይ', + + 'breadcrumb' => 'ተመልከት', + + 'content' => [ + + 'tab' => [ + 'label' => 'ተመልከት', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/am/unsaved-changes-alert.php b/lang/vendor/filament-panels/am/unsaved-changes-alert.php new file mode 100644 index 0000000..50e769d --- /dev/null +++ b/lang/vendor/filament-panels/am/unsaved-changes-alert.php @@ -0,0 +1,6 @@ + 'ያልተቀመጡ ለውጦች አሉዎት። እርግጠኛ ነዎት ከዚህ ገጽ መውጣት ይፈልጋሉ?', +]; diff --git a/lang/vendor/filament-panels/am/widgets/account-widget.php b/lang/vendor/filament-panels/am/widgets/account-widget.php new file mode 100644 index 0000000..89c8a82 --- /dev/null +++ b/lang/vendor/filament-panels/am/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'ዘግተህ ውጣ', + ], + + ], + + 'welcome' => 'እንኳን ደህና መጡ', + +]; diff --git a/lang/vendor/filament-panels/am/widgets/filament-info-widget.php b/lang/vendor/filament-panels/am/widgets/filament-info-widget.php new file mode 100644 index 0000000..9222888 --- /dev/null +++ b/lang/vendor/filament-panels/am/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'ሰነድ(ዶክ)', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/ar/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..3fa4b3a --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'تم منع تغيير عنوان البريد الإلكتروني', + 'body' => 'لقد نجحت في منع محاولة تغيير عنوان البريد الإلكتروني إلى :email. إذا لم تقم بالطلب الأصلي، يرجى التواصل معنا فوراً.', + ], + + 'failed' => [ + 'title' => 'فشل في منع تغيير عنوان البريد الإلكتروني', + 'body' => 'للأسف، لم تتمكن من منع تغيير عنوان البريد الإلكتروني إلى :email، حيث تم التحقق منه بالفعل قبل أن تقوم بمنعه. إذا لم تقم بالطلب الأصلي، يرجى التواصل معنا فوراً.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/ar/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..5d9679f --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'تم تغيير عنوان البريد الإلكتروني', + 'body' => 'تم تغيير عنوان بريدك الإلكتروني بنجاح إلى :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/ar/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..700d2d3 --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'إيقاف', + + 'modal' => [ + + 'heading' => 'تعطيل تطبيق المصادقة', + + 'description' => 'هل أنت متأكد من أنك تريد التوقف عن استخدام تطبيق المصادقة؟ سيؤدي تعطيل هذا الخيار إلى إزالة طبقة حماية إضافية من حسابك.', + + 'form' => [ + + 'code' => [ + + 'label' => 'أدخل الرمز المكون من 6 أرقام من تطبيق المصادقة', + + 'validation_attribute' => 'الرمز', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'استخدم رمز الاسترداد بدلاً من ذلك', + ], + + ], + + 'messages' => [ + + 'invalid' => 'الرمز المُدخل غير صحيح.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'أو أدخل رمز الاسترداد', + + 'validation_attribute' => 'رمز الاسترداد', + + 'messages' => [ + + 'invalid' => 'رمز الاسترداد المُدخل غير صحيح.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'تعطيل تطبيق المصادقة', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'تم تعطيل تطبيق المصادقة', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/ar/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..7bf1ce4 --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'إعادة إنشاء رموز الاسترداد', + + 'modal' => [ + + 'heading' => 'إعادة إنشاء رموز استرداد تطبيق المصادقة', + + 'description' => 'إذا فقدت رموز الاسترداد الخاصة بك، يمكنك إعادة إنشائها هنا. سيتم إبطال رموز الاسترداد القديمة فور إنشاء الجديدة.', + + 'form' => [ + + 'code' => [ + + 'label' => 'أدخل الرمز المكون من 6 أرقام من تطبيق المصادقة', + + 'validation_attribute' => 'الرمز', + + 'messages' => [ + + 'invalid' => 'الرمز المُدخل غير صحيح.', + + ], + + ], + + 'password' => [ + + 'label' => 'أو أدخل كلمة المرور الحالية', + + 'validation_attribute' => 'كلمة المرور', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'إعادة إنشاء رموز الاسترداد', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'تم إنشاء رموز استرداد جديدة لتطبيق المصادقة', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'رموز الاسترداد الجديدة', + + 'description' => 'يرجى حفظ رموز الاسترداد التالية في مكان آمن. سيتم عرضها مرة واحدة فقط، ولكنك ستحتاجها إذا فقدت الوصول إلى تطبيق المصادقة:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'إغلاق', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/ar/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..7ed55e9 --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'إعداد', + + 'modal' => [ + + 'heading' => 'إعداد تطبيق المصادقة', + + 'description' => <<<'BLADE' + ستحتاج إلى تطبيق مثل Google Authenticator (iOS، Android) لإكمال هذه العملية. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'امسح رمز الاستجابة السريعة هذا بتطبيق المصادقة:', + + 'alt' => 'رمز الاستجابة السريعة للمسح بتطبيق المصادقة', + + ], + + 'text_code' => [ + + 'instruction' => 'أو أدخل هذا الرمز يدوياً:', + + 'messages' => [ + 'copied' => 'تم النسخ', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'يرجى حفظ رموز الاسترداد التالية في مكان آمن. سيتم عرضها مرة واحدة فقط، ولكنك ستحتاجها إذا فقدت الوصول إلى تطبيق المصادقة:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'أدخل الرمز المكون من 6 أرقام من تطبيق المصادقة', + + 'validation_attribute' => 'الرمز', + + 'below_content' => 'ستحتاج إلى إدخال الرمز المكون من 6 أرقام من تطبيق المصادقة في كل مرة تقوم فيها بتسجيل الدخول أو تنفيذ إجراءات حساسة.', + + 'messages' => [ + + 'invalid' => 'الرمز المُدخل غير صحيح.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'تفعيل تطبيق المصادقة', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'تم تفعيل تطبيق المصادقة', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/ar/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..79bc8c0 --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'تطبيق المصادقة الثنائية', + + 'below_content' => 'استخدم تطبيقًا آمنًا لتوليد رمز مؤقت للتحقق من تسجيل الدخول.', + + 'messages' => [ + 'enabled' => 'مفعل', + 'disabled' => 'معطل', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'استخدم رمزًا من تطبيق المصادقة', + + 'code' => [ + + 'label' => 'أدخل الرمز المكون من 6 أرقام من تطبيق المصادقة', + + 'validation_attribute' => 'الرمز', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'استخدم رمز الاسترداد بدلاً من ذلك', + ], + + ], + + 'messages' => [ + + 'invalid' => 'الرمز الذي أدخلته غير صالح.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'أو، أدخل رمز الاسترداد', + + 'validation_attribute' => 'رمز الاسترداد', + + 'messages' => [ + + 'invalid' => 'رمز الاسترداد الذي أدخلته غير صالح.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/ar/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..9562b36 --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,71 @@ + 'إيقاف', + + 'modal' => [ + + 'heading' => 'تعطيل رموز التحقق عبر البريد الإلكتروني', + + 'description' => 'هل أنت متأكد أنك تريد التوقف عن استلام رموز التحقق عبر البريد الإلكتروني؟ تعطيل هذا الخيار سيؤدي إلى إزالة طبقة إضافية من الأمان لحسابك.', + + 'form' => [ + + 'code' => [ + + 'label' => 'أدخل الرمز المكون من 6 أرقام الذي أرسلناه إلى بريدك الإلكتروني', + + 'validation_attribute' => 'الرمز', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'إرسال رمز جديد عبر البريد الإلكتروني', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'تم إرسال رمز جديد إلى بريدك الإلكتروني', + ], + + 'throttled' => [ + 'title' => 'محاولات إعادة إرسال كثيرة جدا. يرجى الانتظار قبل طلب رمز آخر.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'الرمز الذي أدخلته غير صالح.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'تعطيل رموز التحقق عبر البريد الإلكتروني', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'تم تعطيل رموز التحقق عبر البريد الإلكتروني', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/ar/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..f6a47f4 --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,71 @@ + 'إعداد', + + 'modal' => [ + + 'heading' => 'إعداد رموز التحقق عبر البريد الإلكتروني', + + 'description' => 'ستحتاج إلى إدخال الرمز المكون من 6 أرقام الذي نرسله إلى بريدك الإلكتروني في كل مرة تسجل فيها الدخول أو تنفذ إجراءات حساسة. تحقق من بريدك الإلكتروني للحصول على الرمز لإكمال الإعداد.', + + 'form' => [ + + 'code' => [ + + 'label' => 'أدخل الرمز المكون من 6 أرقام الذي أرسلناه إلى بريدك الإلكتروني', + + 'validation_attribute' => 'الرمز', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'إرسال رمز جديد عبر البريد الإلكتروني', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'تم إرسال رمز جديد إلى بريدك الإلكتروني', + ], + + 'throttled' => [ + 'title' => 'محاولات إعادة إرسال كثيرة جدا. يرجى الانتظار قبل طلب رمز آخر.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'الرمز الذي أدخلته غير صالح.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'تفعيل رموز التحقق عبر البريد الإلكتروني', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'تم تفعيل رموز التحقق عبر البريد الإلكتروني', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/ar/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..9d3420a --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'رمز تسجيل الدخول الخاص بك', + + 'lines' => [ + 'رمز تسجيل الدخول الخاص بك هو: :code', + 'سينتهي صلاحية هذا الرمز خلال دقيقة واحدة.|سينتهي صلاحية هذا الرمز خلال :minutes دقائق.', + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/ar/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..bcb490f --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'رموز التحقق عبر البريد الإلكتروني', + + 'below_content' => 'استلم رمزًا مؤقتًا على بريدك الإلكتروني للتحقق من هويتك أثناء تسجيل الدخول.', + + 'messages' => [ + 'enabled' => 'مفعل', + 'disabled' => 'معطل', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'إرسال رمز إلى بريدك الإلكتروني', + + 'code' => [ + + 'label' => 'أدخل الرمز المكون من 6 أرقام الذي أرسلناه إلى بريدك الإلكتروني', + + 'validation_attribute' => 'الرمز', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'إرسال رمز جديد عبر البريد الإلكتروني', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'تم إرسال رمز جديد إلى بريدك الإلكتروني', + ], + + 'throttled' => [ + 'title' => 'محاولات إعادة إرسال كثيرة جدا. يرجى الانتظار قبل طلب رمز آخر.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'الرمز الذي أدخلته غير صالح.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/ar/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..0ded8f8 --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'إعداد المصادقة الثنائية (2FA)', + + 'heading' => 'إعداد المصادقة الثنائية', + + 'subheading' => 'تضيف المصادقة الثنائية (2FA) طبقة إضافية من الأمان إلى حسابك من خلال طلب شكل ثانٍ من التحقق عند تسجيل الدخول.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'متابعة', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/ar/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..23da705 --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'أضغط لـ', + + 'copy' => [ + 'label' => 'نسخ', + ], + + 'أو', + + 'download' => [ + 'label' => 'تنزيل', + ], + + 'جميع الرموز دفعة واحدة.', + + ], + + 'messages' => [ + 'copied' => 'تم النسخ', + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/ar/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..a548cb8 --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,14 @@ + 'جارٍ تغيير عنوان بريدك الإلكتروني', + 'lines' => [ + 'تلقينا طلباً لتغيير عنوان البريد الإلكتروني المرتبط بحسابك. تم استخدام كلمة المرور الخاصة بك لتأكيد هذا التغيير.', + 'بمجرد التحقق، سيصبح عنوان البريد الإلكتروني الجديد في حسابك: :email.', + 'يمكنك منع التغيير قبل التحقق منه بالنقر على الزر أدناه.', + 'إذا لم تقم بهذا الطلب، يرجى التواصل معنا فوراً.', + ], + 'action' => 'منع تغيير البريد الإلكتروني', + +]; diff --git a/lang/vendor/filament-panels/ar/auth/pages/edit-profile.php b/lang/vendor/filament-panels/ar/auth/pages/edit-profile.php new file mode 100644 index 0000000..929c23b --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'الملف الشخصي', + + 'form' => [ + + 'email' => [ + 'label' => 'البريد الإلكتروني', + ], + + 'name' => [ + 'label' => 'الاسم', + ], + + 'password' => [ + 'label' => 'كلمة المرور الجديدة', + 'validation_attribute' => 'كلمة المرور', + ], + + 'password_confirmation' => [ + 'label' => 'تأكيد كلمة المرور الجديدة', + 'validation_attribute' => 'تأكيد كلمة المرور', + ], + + 'current_password' => [ + 'label' => 'كلمة المرور الحالية', + 'below_content' => 'لأسباب أمنية، يرجى تأكيد كلمة المرور للمتابعة.', + 'validation_attribute' => 'كلمة المرور الحالية', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'حفظ التغييرات', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'المصادقة الثنائية (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'تم إرسال طلب لتغيير البريد الإلكتروني', + 'body' => 'تم إرسال طلب لتغيير عنوان بريدك الإلكتروني إلى :email. يرجى التحقق من بريدك الإلكتروني لتأكيد التغيير.', + ], + + 'saved' => [ + 'title' => 'تم الحفظ', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'إلغاء', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/ar/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..6dc0b30 --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'تحقق من عنوان بريدك الإلكتروني', + + 'heading' => 'تحقق من عنوان بريدك الإلكتروني', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'أعد الإرسال', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'لم تستلم البريد الذي قمنا بإرساله؟', + 'notification_sent' => 'لقد أرسلنا بريدًا إلكترونيًا إلى :email يحتوي على تعليمات حول كيفية التحقق من عنوان بريدك الإلكتروني.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'لقد قمنا بإعادة إرسال البريد الإلكتروني.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'لقد قمت بمحاولات إعادة إرسال كثيرة جداً', + 'body' => 'يرجى المحاولة مرة أخرى بعد :seconds ثواني.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/pages/login.php b/lang/vendor/filament-panels/ar/auth/pages/login.php new file mode 100644 index 0000000..3ea93c6 --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/pages/login.php @@ -0,0 +1,85 @@ + 'تسجيل الدخول', + + 'heading' => 'الدخول إلى حسابك', + + 'actions' => [ + + 'register' => [ + 'before' => 'أو', + 'label' => 'إنشاء حساب', + ], + + 'request_password_reset' => [ + 'label' => 'نسيت كلمة المرور؟', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'البريد الإلكتروني', + ], + + 'password' => [ + 'label' => 'كلمة المرور', + ], + + 'remember' => [ + 'label' => 'تذكرني', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'تسجيل الدخول', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'تحقق من هويتك', + + 'subheading' => 'لمتابعة تسجيل الدخول، تحتاج إلى التحقق من هويتك.', + + 'form' => [ + + 'provider' => [ + 'label' => 'كيف تود التحقق؟', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'تأكيد تسجيل الدخول', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'بيانات الاعتماد هذه غير متطابقة مع البيانات المسجلة لدينا.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'لقد قمت بمحاولات تسجيل دخول كثيرة جدًا', + 'body' => 'يرجى المحاولة مرة أخرى بعد :seconds ثواني.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/ar/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..952ff0b --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'استعادة كلمة المرور', + + 'heading' => 'نسيت كلمة المرور؟', + + 'actions' => [ + + 'login' => [ + 'label' => 'العودة لتسجيل الدخول', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'البريد الإلكتروني', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'أرسل البريد الإلكتروني', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'إذا لم يكن حسابك موجوداً، فلن تتلقى البريد الإلكتروني.', + ], + + 'throttled' => [ + 'title' => 'لقد قمت بمحاولات كثيرة جداً', + 'body' => 'يرجى المحاولة مرة أخرى بعد :seconds ثواني.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/ar/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..4d715b1 --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'إعادة تعيين كلمة المرور', + + 'heading' => 'إعادة تعيين كلمة المرور', + + 'form' => [ + + 'email' => [ + 'label' => 'البريد الإلكتروني', + ], + + 'password' => [ + 'label' => 'كلمة المرور', + 'validation_attribute' => 'كلمة المرور', + ], + + 'password_confirmation' => [ + 'label' => 'تأكيد كلمة المرور', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'إعادة تعيين كلمة المرور', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'لقد قمت بمحاولات كثيرة جداً لإعادة تعيين كلمة المرور', + 'body' => 'يرجى المحاولة مرة أخرى بعد :seconds ثواني.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/auth/pages/register.php b/lang/vendor/filament-panels/ar/auth/pages/register.php new file mode 100644 index 0000000..217f30f --- /dev/null +++ b/lang/vendor/filament-panels/ar/auth/pages/register.php @@ -0,0 +1,56 @@ + 'تسجيل', + + 'heading' => 'إنشاء حساب', + + 'actions' => [ + + 'login' => [ + 'before' => 'أو', + 'label' => 'سجل الدخول لحسابك', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'البريد الإلكتروني', + ], + + 'name' => [ + 'label' => 'الاسم', + ], + + 'password' => [ + 'label' => 'كلمة المرور', + 'validation_attribute' => 'كلمة المرور', + ], + + 'password_confirmation' => [ + 'label' => 'تأكيد كلمة المرور', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'إنشاء حساب', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'لقد قمت بمحاولات تسجيل كثيرة جدًا', + 'body' => 'يرجى المحاولة مرة أخرى بعد :seconds ثواني.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/error-notifications.php b/lang/vendor/filament-panels/ar/error-notifications.php new file mode 100644 index 0000000..23e25f5 --- /dev/null +++ b/lang/vendor/filament-panels/ar/error-notifications.php @@ -0,0 +1,9 @@ + 'حدث خطأ أثناء تحميل الصفحة', + + 'body' => 'حدث خطأ أثناء محاولة تحميل هذه الصفحة. يرجى المحاولة مرة أخرى لاحقًا.', + +]; diff --git a/lang/vendor/filament-panels/ar/global-search.php b/lang/vendor/filament-panels/ar/global-search.php new file mode 100644 index 0000000..a4b6e3a --- /dev/null +++ b/lang/vendor/filament-panels/ar/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'بحث عام', + 'placeholder' => 'بحث', + ], + + 'no_results_message' => 'لم يتم العثور على نتائج عن البحث.', + +]; diff --git a/lang/vendor/filament-panels/ar/layout.php b/lang/vendor/filament-panels/ar/layout.php new file mode 100644 index 0000000..d447838 --- /dev/null +++ b/lang/vendor/filament-panels/ar/layout.php @@ -0,0 +1,72 @@ + 'rtl', + + 'actions' => [ + + 'billing' => [ + 'label' => 'إدارة الاشتراكات', + ], + + 'logout' => [ + 'label' => 'تسجيل الخروج', + ], + + 'open_database_notifications' => [ + 'label' => 'عرض التنبيهات', + ], + + 'open_user_menu' => [ + 'label' => 'قائمة المستخدم', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'طيّ القائمة الجانبية', + ], + + 'expand' => [ + 'label' => 'توسيع القائمة الجانبية', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'تفعيل الوضع الليلي', + ], + + 'light' => [ + 'label' => 'تفعيل الوضع النهاري', + ], + + 'system' => [ + 'label' => 'تفعيل سمة النظام', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'صورة شخصية لـ :name', + ], + + 'logo' => [ + 'alt' => ':name شعار', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'البحث عن جهة', + 'placeholder' => 'بحث', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/pages/dashboard.php b/lang/vendor/filament-panels/ar/pages/dashboard.php new file mode 100644 index 0000000..ccfb681 --- /dev/null +++ b/lang/vendor/filament-panels/ar/pages/dashboard.php @@ -0,0 +1,33 @@ + 'لوحة التحكم', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'تصفية', + + 'modal' => [ + + 'heading' => 'تصفية', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'تطبيق', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/ar/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..4a53e9c --- /dev/null +++ b/lang/vendor/filament-panels/ar/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'حفظ التغييرات', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'تم الحفظ', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/resources/pages/create-record.php b/lang/vendor/filament-panels/ar/resources/pages/create-record.php new file mode 100644 index 0000000..a775fee --- /dev/null +++ b/lang/vendor/filament-panels/ar/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'إضافة :label', + + 'breadcrumb' => 'إضافة', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'إلغاء', + ], + + 'create' => [ + 'label' => 'إضافة', + ], + + 'create_another' => [ + 'label' => 'إضافة وبدء إضافة المزيد', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'تمت الإضافة', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/resources/pages/edit-record.php b/lang/vendor/filament-panels/ar/resources/pages/edit-record.php new file mode 100644 index 0000000..f787d5c --- /dev/null +++ b/lang/vendor/filament-panels/ar/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'تعديل :label', + + 'breadcrumb' => 'تعديل', + + 'navigation_label' => 'تعديل', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'إلغاء', + ], + + 'save' => [ + 'label' => 'حفظ التغييرات', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'تعديل', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'تم الحفظ', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/resources/pages/list-records.php b/lang/vendor/filament-panels/ar/resources/pages/list-records.php new file mode 100644 index 0000000..69ff39b --- /dev/null +++ b/lang/vendor/filament-panels/ar/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'القائمة', + +]; diff --git a/lang/vendor/filament-panels/ar/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/ar/resources/pages/manage-related-records.php new file mode 100644 index 0000000..04a05c5 --- /dev/null +++ b/lang/vendor/filament-panels/ar/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'إدارة :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/ar/resources/pages/view-record.php b/lang/vendor/filament-panels/ar/resources/pages/view-record.php new file mode 100644 index 0000000..547b6f6 --- /dev/null +++ b/lang/vendor/filament-panels/ar/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'عرض :label', + + 'breadcrumb' => 'عرض', + + 'navigation_label' => 'عرض', + + 'content' => [ + + 'tab' => [ + 'label' => 'عرض', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ar/unsaved-changes-alert.php b/lang/vendor/filament-panels/ar/unsaved-changes-alert.php new file mode 100644 index 0000000..29902cd --- /dev/null +++ b/lang/vendor/filament-panels/ar/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'توجد لديك تغييرات غير محفوظة. هل أنت متأكد من أنك تريد مغادرة هذه الصفحة؟', + +]; diff --git a/lang/vendor/filament-panels/ar/widgets/account-widget.php b/lang/vendor/filament-panels/ar/widgets/account-widget.php new file mode 100644 index 0000000..9ca4928 --- /dev/null +++ b/lang/vendor/filament-panels/ar/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'تسجيل الخروج', + ], + + ], + + 'welcome' => 'مرحباً', + +]; diff --git a/lang/vendor/filament-panels/ar/widgets/filament-info-widget.php b/lang/vendor/filament-panels/ar/widgets/filament-info-widget.php new file mode 100644 index 0000000..1f78f82 --- /dev/null +++ b/lang/vendor/filament-panels/ar/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'الوثائق', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/az/auth/pages/edit-profile.php b/lang/vendor/filament-panels/az/auth/pages/edit-profile.php new file mode 100644 index 0000000..20e30a6 --- /dev/null +++ b/lang/vendor/filament-panels/az/auth/pages/edit-profile.php @@ -0,0 +1,51 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'E-poçt ünvanı', + ], + + 'name' => [ + 'label' => 'Ad', + ], + + 'password' => [ + 'label' => 'Yeni şifrə', + ], + + 'password_confirmation' => [ + 'label' => 'Yeni şifrəni təsdiqlə', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Dəyişiklikləri Yadda Saxla', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Yadda saxlanıldı', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'İmtina', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/az/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/az/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..5da55c6 --- /dev/null +++ b/lang/vendor/filament-panels/az/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'E-poçt ünvanınızı təsdiqləyin', + + 'heading' => 'E-poçt ünvanınızı təsdiqləyin', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Yenidən Göndər', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Göndərdiyimiz e-poçt gəlmədi?', + 'notification_sent' => ':email ünvanına, daxilində e-poçt ünvanınızı necə təsdiqləyəcəyiniz barədə təlimatlar olan bir e-poçt göndərdik.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'E-poçt yenidən göndərildi.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Bir çox yenidən göndərmə cəhdi', + 'body' => 'Zəhmət olmazsa :seconds saniyə sonra təkrar yoxlayın.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/az/auth/pages/login.php b/lang/vendor/filament-panels/az/auth/pages/login.php new file mode 100644 index 0000000..9e97fb7 --- /dev/null +++ b/lang/vendor/filament-panels/az/auth/pages/login.php @@ -0,0 +1,61 @@ + 'Giriş Et', + + 'heading' => 'Daxil Ol', + + 'actions' => [ + + 'register' => [ + 'before' => 'və ya', + 'label' => 'hesab yaradın', + ], + + 'request_password_reset' => [ + 'label' => 'Şifrənizi unutmusunuz?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-poçt ünvanı', + ], + + 'password' => [ + 'label' => 'Şifrə', + ], + + 'remember' => [ + 'label' => 'Məni Xatırla', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Giriş Et', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Daxil etdiyiniz məlumatlara uyğun hesab tapılmadı.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Bir çox giriş cəhdi', + 'body' => 'Zəhmət olmazsa :seconds saniyə sonra təkrar yoxlayın.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/az/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/az/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..f664ea0 --- /dev/null +++ b/lang/vendor/filament-panels/az/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'Şifrənizi Sıfırlayın', + + 'heading' => 'Şifrənizi unutmusunuz?', + + 'actions' => [ + + 'login' => [ + 'label' => 'girişə geri dön', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-poçt ünvanı', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'E-poçt göndər', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Bir çox istəmə cəhdi', + 'body' => 'Zəhmət olmazsa :seconds saniyə sonra təkrar yoxlayın.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/az/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/az/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..fcce79c --- /dev/null +++ b/lang/vendor/filament-panels/az/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Şifrənizi Sıfırlayın', + + 'heading' => 'Şifrənizi Sıfırlayın', + + 'form' => [ + + 'email' => [ + 'label' => 'E-poçt ünvanı', + ], + + 'password' => [ + 'label' => 'Şifrə', + 'validation_attribute' => 'şifrə', + ], + + 'password_confirmation' => [ + 'label' => 'Şifrəni Təsdiqlə', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Şifrəni Sıfırla', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Bir çox sıfırlama cəhdi', + 'body' => 'Zəhmət olmazsa :seconds saniyə sonra təkrar yoxlayın.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/az/auth/pages/register.php b/lang/vendor/filament-panels/az/auth/pages/register.php new file mode 100644 index 0000000..8c15778 --- /dev/null +++ b/lang/vendor/filament-panels/az/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Qeydiyyatdan keç', + + 'heading' => 'Hesab Yarat', + + 'actions' => [ + + 'login' => [ + 'before' => 'və ya', + 'label' => 'hesabınıza giriş edin', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-poçt ünvanı', + ], + + 'name' => [ + 'label' => 'Ad', + ], + + 'password' => [ + 'label' => 'Şifrə', + 'validation_attribute' => 'şifrə', + ], + + 'password_confirmation' => [ + 'label' => 'Şifreni Təsdiqlə', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Hesab Yarat', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Bir çox hesab yaratma cəhdi', + 'body' => 'Zəhmət olmazsa :seconds saniyə sonra təkrar yoxlayın.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/az/global-search.php b/lang/vendor/filament-panels/az/global-search.php new file mode 100644 index 0000000..5cdee70 --- /dev/null +++ b/lang/vendor/filament-panels/az/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Ümumi axtarış', + 'placeholder' => 'Axtar', + ], + + 'no_results_message' => 'Nəticə tapılmadı.', + +]; diff --git a/lang/vendor/filament-panels/az/layout.php b/lang/vendor/filament-panels/az/layout.php new file mode 100644 index 0000000..96986aa --- /dev/null +++ b/lang/vendor/filament-panels/az/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Abunəliyi idarə et', + ], + + 'logout' => [ + 'label' => 'Çıxış', + ], + + 'open_database_notifications' => [ + 'label' => 'Bildirişləri aç', + ], + + 'open_user_menu' => [ + 'label' => 'İstifadəçi menyusu', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Yan menyunu daralt', + ], + + 'expand' => [ + 'label' => 'Yan menyunu genişlət', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Qara tema', + ], + + 'light' => [ + 'label' => 'Açıq tema', + ], + + 'system' => [ + 'label' => 'Sistem defolt', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'avatarı :name', + ], + + 'logo' => [ + 'alt' => ':name loqo', + ], + +]; diff --git a/lang/vendor/filament-panels/az/pages/dashboard.php b/lang/vendor/filament-panels/az/pages/dashboard.php new file mode 100644 index 0000000..ba7be4e --- /dev/null +++ b/lang/vendor/filament-panels/az/pages/dashboard.php @@ -0,0 +1,33 @@ + 'İdarəetmə Paneli', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtr', + + 'modal' => [ + + 'heading' => 'Filtr', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Tətbiq et', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/az/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/az/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..1917dbf --- /dev/null +++ b/lang/vendor/filament-panels/az/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Dəyişiklikləri Yadda Saxla', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Yadda Saxlanıldı', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/az/resources/pages/create-record.php b/lang/vendor/filament-panels/az/resources/pages/create-record.php new file mode 100644 index 0000000..a21ea58 --- /dev/null +++ b/lang/vendor/filament-panels/az/resources/pages/create-record.php @@ -0,0 +1,37 @@ + ':label yarat', + + 'breadcrumb' => 'Yarat', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'İmtina', + ], + + 'create' => [ + 'label' => 'Yarat', + ], + + 'create_another' => [ + 'label' => 'Yarat & yenisini yarat', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Yaradıldı', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/az/resources/pages/edit-record.php b/lang/vendor/filament-panels/az/resources/pages/edit-record.php new file mode 100644 index 0000000..395cdf1 --- /dev/null +++ b/lang/vendor/filament-panels/az/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + ':label redaktə et', + + 'breadcrumb' => 'Redaktə Et', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'İmtina', + ], + + 'save' => [ + 'label' => 'Dəyişiklikləri yadda saxla', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Redaktə Et', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Yadda saxlanıldı', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/az/resources/pages/list-records.php b/lang/vendor/filament-panels/az/resources/pages/list-records.php new file mode 100644 index 0000000..c7ba243 --- /dev/null +++ b/lang/vendor/filament-panels/az/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'List', + +]; diff --git a/lang/vendor/filament-panels/az/resources/pages/view-record.php b/lang/vendor/filament-panels/az/resources/pages/view-record.php new file mode 100644 index 0000000..941d574 --- /dev/null +++ b/lang/vendor/filament-panels/az/resources/pages/view-record.php @@ -0,0 +1,17 @@ + ':label göstər', + + 'breadcrumb' => 'Göstər', + + 'content' => [ + + 'tab' => [ + 'label' => 'Göstər', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/az/unsaved-changes-alert.php b/lang/vendor/filament-panels/az/unsaved-changes-alert.php new file mode 100644 index 0000000..b7c5214 --- /dev/null +++ b/lang/vendor/filament-panels/az/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Saxlanılmamış dəyişikliklər var. Bu səhifədən çıxmaq istədiyinizə əminsiniz?', + +]; diff --git a/lang/vendor/filament-panels/az/widgets/account-widget.php b/lang/vendor/filament-panels/az/widgets/account-widget.php new file mode 100644 index 0000000..4c83f5d --- /dev/null +++ b/lang/vendor/filament-panels/az/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Çıxış', + ], + + ], + + 'welcome' => 'Xoş gəldin', + +]; diff --git a/lang/vendor/filament-panels/az/widgets/filament-info-widget.php b/lang/vendor/filament-panels/az/widgets/filament-info-widget.php new file mode 100644 index 0000000..fd132ff --- /dev/null +++ b/lang/vendor/filament-panels/az/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentasiya', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bg/auth/pages/edit-profile.php b/lang/vendor/filament-panels/bg/auth/pages/edit-profile.php new file mode 100644 index 0000000..9d185bf --- /dev/null +++ b/lang/vendor/filament-panels/bg/auth/pages/edit-profile.php @@ -0,0 +1,51 @@ + 'Профил', + + 'form' => [ + + 'email' => [ + 'label' => 'Имейл', + ], + + 'name' => [ + 'label' => 'Име', + ], + + 'password' => [ + 'label' => 'Нова парола', + ], + + 'password_confirmation' => [ + 'label' => 'Потвърдете паролата', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Запази', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Запазено', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Отказ', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bg/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/bg/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..c80a64d --- /dev/null +++ b/lang/vendor/filament-panels/bg/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Потвърдете вашия имейл адрес', + + 'heading' => 'Потвърдете вашия имейл адрес', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Изпратете ми отново имейл за потвърждение', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Ако не сте получили имейла', + 'notification_sent' => 'Имейлът за потвърждение беше изпратен на вашия имейл адрес.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Имейлът за потвърждение беше изпратен', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Твърде много опити за изпращане на имейл за потвърждение', + 'body' => 'Моля, опитайте отново след :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bg/auth/pages/login.php b/lang/vendor/filament-panels/bg/auth/pages/login.php new file mode 100644 index 0000000..3cef94e --- /dev/null +++ b/lang/vendor/filament-panels/bg/auth/pages/login.php @@ -0,0 +1,61 @@ + 'Вход', + + 'heading' => 'Вход в профила си', + + 'actions' => [ + + 'register' => [ + 'before' => 'или', + 'label' => 'създайте нов акаунт', + ], + + 'request_password_reset' => [ + 'label' => 'Забравена парола?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Имейл', + ], + + 'password' => [ + 'label' => 'Парола', + ], + + 'remember' => [ + 'label' => 'Запомни ме', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Влезте в профила си', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Грешен имейл или парола.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Твърде много опити за вход', + 'body' => 'Моля, опитайте отново след :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bg/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/bg/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..2a17e3d --- /dev/null +++ b/lang/vendor/filament-panels/bg/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'Възстановяване на парола', + + 'heading' => 'Забравена парола?', + + 'actions' => [ + + 'login' => [ + 'label' => 'Влезте в своя акаунт', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Имейл', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Изпратете ми линк за възстановяване на паролата', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Твърде много опити за възстановяване на парола', + 'body' => 'Моля, опитайте отново след :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bg/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/bg/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..d8afd32 --- /dev/null +++ b/lang/vendor/filament-panels/bg/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Възстановяване на парола', + + 'heading' => 'Възстановяване на парола', + + 'form' => [ + + 'email' => [ + 'label' => 'Имейл', + ], + + 'password' => [ + 'label' => 'Парола', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Потвърдете паролата', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Възстановете паролата си', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Твърде много опити за възстановяване на парола', + 'body' => 'Моля, опитайте отново след :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bg/auth/pages/register.php b/lang/vendor/filament-panels/bg/auth/pages/register.php new file mode 100644 index 0000000..46b6025 --- /dev/null +++ b/lang/vendor/filament-panels/bg/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Регистрация', + + 'heading' => 'Създайте своя акаунт', + + 'actions' => [ + + 'login' => [ + 'before' => 'или', + 'label' => 'влезте в своя акаунт', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Имейл', + ], + + 'name' => [ + 'label' => 'Име', + ], + + 'password' => [ + 'label' => 'Парола', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Потвърдете паролата', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Регистрирайте се', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Твърде много опити за регистрация', + 'body' => 'Моля, опитайте отново след :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bg/global-search.php b/lang/vendor/filament-panels/bg/global-search.php new file mode 100644 index 0000000..5b50746 --- /dev/null +++ b/lang/vendor/filament-panels/bg/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Глобално търсене', + 'placeholder' => 'Търсене...', + ], + + 'no_results_message' => 'Няма намерени резултати.', + +]; diff --git a/lang/vendor/filament-panels/bg/layout.php b/lang/vendor/filament-panels/bg/layout.php new file mode 100644 index 0000000..74bc0d7 --- /dev/null +++ b/lang/vendor/filament-panels/bg/layout.php @@ -0,0 +1,55 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Управление на плащания', + ], + + 'logout' => [ + 'label' => 'Изход', + ], + + 'open_database_notifications' => [ + 'label' => 'Известия', + ], + + 'open_user_menu' => [ + 'label' => 'Потребителско меню', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Свий страничната лента', + ], + + 'expand' => [ + 'label' => 'Разшири страничната лента', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Включи тъмна тема', + ], + + 'light' => [ + 'label' => 'Включи светла тема', + ], + + 'system' => [ + 'label' => 'Включи системна тема', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bg/pages/dashboard.php b/lang/vendor/filament-panels/bg/pages/dashboard.php new file mode 100644 index 0000000..5047ef4 --- /dev/null +++ b/lang/vendor/filament-panels/bg/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Табло', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Филтър', + + 'modal' => [ + + 'heading' => 'Филтриране', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Приложи', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bg/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/bg/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..5f49bd9 --- /dev/null +++ b/lang/vendor/filament-panels/bg/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Запази', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Запазено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bg/resources/pages/create-record.php b/lang/vendor/filament-panels/bg/resources/pages/create-record.php new file mode 100644 index 0000000..10d3da2 --- /dev/null +++ b/lang/vendor/filament-panels/bg/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Създаване на :label', + + 'breadcrumb' => 'Създаване', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Отказ', + ], + + 'create' => [ + 'label' => 'Създай', + ], + + 'create_another' => [ + 'label' => 'Създай и добави друг', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Създадено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bg/resources/pages/edit-record.php b/lang/vendor/filament-panels/bg/resources/pages/edit-record.php new file mode 100644 index 0000000..2c30eb3 --- /dev/null +++ b/lang/vendor/filament-panels/bg/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'Редакция на :label', + + 'breadcrumb' => 'Редакция', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Отказ', + ], + + 'save' => [ + 'label' => 'Запази', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Редакция', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Запазено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bg/resources/pages/list-records.php b/lang/vendor/filament-panels/bg/resources/pages/list-records.php new file mode 100644 index 0000000..ddad175 --- /dev/null +++ b/lang/vendor/filament-panels/bg/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Списък', + +]; diff --git a/lang/vendor/filament-panels/bg/resources/pages/view-record.php b/lang/vendor/filament-panels/bg/resources/pages/view-record.php new file mode 100644 index 0000000..48dc698 --- /dev/null +++ b/lang/vendor/filament-panels/bg/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'Преглед на :label', + + 'breadcrumb' => 'Преглед', + + 'content' => [ + + 'tab' => [ + 'label' => 'Детайли', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bg/widgets/account-widget.php b/lang/vendor/filament-panels/bg/widgets/account-widget.php new file mode 100644 index 0000000..1aa7007 --- /dev/null +++ b/lang/vendor/filament-panels/bg/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Изход', + ], + + ], + + 'welcome' => 'Добре дошли', + +]; diff --git a/lang/vendor/filament-panels/bg/widgets/filament-info-widget.php b/lang/vendor/filament-panels/bg/widgets/filament-info-widget.php new file mode 100644 index 0000000..1faf2da --- /dev/null +++ b/lang/vendor/filament-panels/bg/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Документация', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/bn/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..c3e8f35 --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'email_change_blocked' => [ + 'title' => 'ইমেইল ঠিকানা পরিবর্তন ব্লক করা হয়েছে', + 'body' => 'আপনার ইমেইল ঠিকানা পরিবর্তন ব্লক করা হয়েছে।', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/bn/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..80e3760 --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'email_changed' => [ + 'title' => 'ইমেইল ঠিকানা পরিবর্তিত হয়েছে', + 'body' => 'আপনার ইমেইল ঠিকানা সফলভাবে পরিবর্তিত হয়েছে।', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/bn/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..7975f8e --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,35 @@ + 'নিষ্ক্রিয় করুন', + + 'modal' => [ + + 'heading' => 'অ্যাপ্লিকেশন প্রমাণীকরণ নিষ্ক্রিয় করুন', + + 'description' => 'আপনি কি নিশ্চিত যে আপনি অ্যাপ্লিকেশন প্রমাণীকরণ নিষ্ক্রিয় করতে চান?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'বাতিল করুন', + ], + + 'submit' => [ + 'label' => 'নিষ্ক্রিয় করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'অ্যাপ্লিকেশন প্রমাণীকরণ নিষ্ক্রিয় হয়েছে', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/bn/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..c97e264 --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,35 @@ + 'পুনরুদ্ধার কোড পুনরুত্পাদন করুন', + + 'modal' => [ + + 'heading' => 'পুনরুদ্ধার কোড পুনরুত্পাদন করুন', + + 'description' => 'আপনার বর্তমান পুনরুদ্ধার কোডগুলি অকার্যকর হয়ে যাবে।', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'বাতিল করুন', + ], + + 'submit' => [ + 'label' => 'পুনরুত্পাদন করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'পুনরুদ্ধার কোড পুনরুত্পাদন করা হয়েছে', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/bn/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..8ba6b8c --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,35 @@ + 'সেট আপ করুন', + + 'modal' => [ + + 'heading' => 'অ্যাপ্লিকেশন প্রমাণীকরণ সেট আপ করুন', + + 'description' => 'আপনার ফোনে একটি প্রমাণীকরণ অ্যাপ্লিকেশন ব্যবহার করুন', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'বাতিল করুন', + ], + + 'submit' => [ + 'label' => 'সেট আপ করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'অ্যাপ্লিকেশন প্রমাণীকরণ সক্রিয় হয়েছে', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/bn/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..da4c37c --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/multi-factor/app/provider.php @@ -0,0 +1,33 @@ + 'অ্যাপ্লিকেশন', + + 'description' => 'আপনার ফোনে একটি প্রমাণীকরণ অ্যাপ্লিকেশন ব্যবহার করুন', + + 'actions' => [ + + 'regenerate_recovery_codes' => [ + 'label' => 'পুনরুদ্ধার কোড পুনরুত্পাদন করুন', + ], + + 'show_recovery_codes' => [ + 'label' => 'পুনরুদ্ধার কোড দেখুন', + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'অ্যাপ্লিকেশন প্রমাণীকরণ সক্রিয় হয়েছে', + ], + + 'disabled' => [ + 'title' => 'অ্যাপ্লিকেশন প্রমাণীকরণ নিষ্ক্রিয় হয়েছে', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/bn/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..56b37da --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,35 @@ + 'নিষ্ক্রিয় করুন', + + 'modal' => [ + + 'heading' => 'ইমেইল প্রমাণীকরণ নিষ্ক্রিয় করুন', + + 'description' => 'আপনি কি নিশ্চিত যে আপনি ইমেইল প্রমাণীকরণ নিষ্ক্রিয় করতে চান?', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'বাতিল করুন', + ], + + 'submit' => [ + 'label' => 'নিষ্ক্রিয় করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'ইমেইল প্রমাণীকরণ নিষ্ক্রিয় হয়েছে', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/bn/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..18b730a --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,35 @@ + 'সেট আপ করুন', + + 'modal' => [ + + 'heading' => 'ইমেইল প্রমাণীকরণ সেট আপ করুন', + + 'description' => 'আপনার ইমেইল ঠিকানায় একটি প্রমাণীকরণ কোড পাঠান', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'বাতিল করুন', + ], + + 'submit' => [ + 'label' => 'সেট আপ করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'ইমেইল প্রমাণীকরণ সক্রিয় হয়েছে', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/bn/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..44ad345 --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,9 @@ + 'ইমেইল প্রমাণীকরণ কোড', + + 'body' => 'আপনার ইমেইল প্রমাণীকরণ কোড: :code', + +]; diff --git a/lang/vendor/filament-panels/bn/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/bn/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..3192094 --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/multi-factor/email/provider.php @@ -0,0 +1,33 @@ + 'ইমেইল', + + 'description' => 'আপনার ইমেইল ঠিকানায় একটি প্রমাণীকরণ কোড পাঠান', + + 'actions' => [ + + 'regenerate_recovery_codes' => [ + 'label' => 'পুনরুদ্ধার কোড পুনরুত্পাদন করুন', + ], + + 'show_recovery_codes' => [ + 'label' => 'পুনরুদ্ধার কোড দেখুন', + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'ইমেইল প্রমাণীকরণ সক্রিয় হয়েছে', + ], + + 'disabled' => [ + 'title' => 'ইমেইল প্রমাণীকরণ নিষ্ক্রিয় হয়েছে', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/bn/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..50a8ffc --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,17 @@ + 'দুই-ফ্যাক্টর প্রমাণীকরণ প্রয়োজন', + + 'heading' => 'আপনার অ্যাকাউন্ট নিরাপদ করতে দুই-ফ্যাক্টর প্রমাণীকরণ সেট আপ করুন', + + 'actions' => [ + + 'cancel' => [ + 'label' => 'বাতিল করুন', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/bn/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..9e7c040 --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,25 @@ + 'পুনরুদ্ধার কোড', + + 'description' => 'এই পুনরুদ্ধার কোডগুলি সংরক্ষণ করুন। আপনি যদি আপনার প্রমাণীকরণ ডিভাইস হারিয়ে ফেলেন তাহলে এই কোডগুলি ব্যবহার করতে পারবেন।', + + 'actions' => [ + + 'regenerate' => [ + 'label' => 'পুনরুত্পাদন করুন', + ], + + 'download' => [ + 'label' => 'ডাউনলোড করুন', + ], + + 'print' => [ + 'label' => 'প্রিন্ট করুন', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/bn/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..2005d83 --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,9 @@ + 'ইমেইল ঠিকানা পরিবর্তনের অনুরোধ', + + 'body' => 'আপনার অ্যাকাউন্টের ইমেইল ঠিকানা পরিবর্তনের অনুরোধ করা হয়েছে। যদি এটি আপনি না করে থাকেন, তাহলে এই ইমেইল উপেক্ষা করুন।', + +]; diff --git a/lang/vendor/filament-panels/bn/auth/pages/edit-profile.php b/lang/vendor/filament-panels/bn/auth/pages/edit-profile.php new file mode 100644 index 0000000..7e025c6 --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'প্রোফাইল', + + 'form' => [ + + 'email' => [ + 'label' => 'ইমেইল ঠিকানা', + ], + + 'name' => [ + 'label' => 'নাম', + ], + + 'password' => [ + 'label' => 'নতুন পাসওয়ার্ড', + 'validation_attribute' => 'পাসওয়ার্ড', + ], + + 'password_confirmation' => [ + 'label' => 'নতুন পাসওয়ার্ড নিশ্চিত করুন', + 'validation_attribute' => 'পাসওয়ার্ড নিশ্চিতকরণ', + ], + + 'current_password' => [ + 'label' => 'বর্তমান পাসওয়ার্ড', + 'below_content' => 'নিরাপত্তার জন্য, চালিয়ে যেতে আপনার পাসওয়ার্ড নিশ্চিত করুন।', + 'validation_attribute' => 'বর্তমান পাসওয়ার্ড', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'পরিবর্তন সংরক্ষণ করুন', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'দুই-ফ্যাক্টর প্রমাণীকরণ (২এফএ)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'ইমেইল ঠিকানা পরিবর্তনের অনুরোধ পাঠানো হয়েছে', + 'body' => 'আপনার ইমেইল ঠিকানা পরিবর্তনের অনুরোধ :email এ পাঠানো হয়েছে। পরিবর্তন যাচাই করতে আপনার ইমেইল চেক করুন।', + ], + + 'saved' => [ + 'title' => 'সংরক্ষিত হয়েছে', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'বাতিল করুন', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/bn/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..5435ade --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,26 @@ + 'ইমেইল যাচাই করুন', + + 'heading' => 'আপনার ইমেইল ঠিকানা যাচাই করুন', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'যাচাই ইমেইল আবার পাঠান', + ], + + ], + + 'notifications' => [ + + 'verification_link_sent' => [ + 'title' => 'যাচাই লিংক পাঠানো হয়েছে', + 'body' => 'আপনার ইমেইল ঠিকানায় একটি নতুন যাচাই লিংক পাঠানো হয়েছে।', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/pages/login.php b/lang/vendor/filament-panels/bn/auth/pages/login.php new file mode 100644 index 0000000..d4b56ae --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/pages/login.php @@ -0,0 +1,47 @@ + 'লগইন', + + 'heading' => 'আপনার অ্যাকাউন্টে সাইন ইন করুন', + + 'form' => [ + + 'email' => [ + 'label' => 'ইমেইল এড্রেস', + ], + + 'password' => [ + 'label' => 'পাসওয়ার্ড', + ], + + 'remember' => [ + 'label' => 'মনে রাখুন', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'সাইন ইন', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'আপনার তথ্য পাওয়া যায়নি।', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'অতিরিক্ত চেষ্টা, :seconds সেকেন্ড পর আবার চেষ্টা করুন।', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/bn/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..ec10b40 --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'আপনার পাসওয়ার্ড রিসেট করুন', + + 'heading' => 'পাসওয়ার্ড ভুলে গেছেন?', + + 'actions' => [ + + 'login' => [ + 'label' => 'লগইনে ফিরে যান', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ইমেইল ঠিকানা', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'ইমেইল পাঠান', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'যদি আপনার অ্যাকাউন্ট না থাকে, আপনি ইমেইল পাবেন না।', + ], + + 'throttled' => [ + 'title' => 'অতিরিক্ত অনুরোধ', + 'body' => 'দয়া করে :seconds সেকেন্ড পর আবার চেষ্টা করুন।', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/bn/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..52a4971 --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'আপনার পাসওয়ার্ড রিসেট করুন', + + 'heading' => 'আপনার পাসওয়ার্ড রিসেট করুন', + + 'form' => [ + + 'email' => [ + 'label' => 'ইমেইল ঠিকানা', + ], + + 'password' => [ + 'label' => 'পাসওয়ার্ড', + 'validation_attribute' => 'পাসওয়ার্ড', + ], + + 'password_confirmation' => [ + 'label' => 'পাসওয়ার্ড নিশ্চিত করুন', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'পাসওয়ার্ড রিসেট করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'অতিরিক্ত রিসেট চেষ্টা', + 'body' => 'দয়া করে :seconds সেকেন্ড পর আবার চেষ্টা করুন।', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/auth/pages/register.php b/lang/vendor/filament-panels/bn/auth/pages/register.php new file mode 100644 index 0000000..6be35eb --- /dev/null +++ b/lang/vendor/filament-panels/bn/auth/pages/register.php @@ -0,0 +1,56 @@ + 'নিবন্ধন', + + 'heading' => 'সাইন আপ করুন', + + 'actions' => [ + + 'login' => [ + 'before' => 'অথবা', + 'label' => 'আপনার অ্যাকাউন্টে সাইন ইন করুন', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ইমেইল ঠিকানা', + ], + + 'name' => [ + 'label' => 'নাম', + ], + + 'password' => [ + 'label' => 'পাসওয়ার্ড', + 'validation_attribute' => 'পাসওয়ার্ড', + ], + + 'password_confirmation' => [ + 'label' => 'পাসওয়ার্ড নিশ্চিত করুন', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'সাইন আপ', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'অতিরিক্ত নিবন্ধন চেষ্টা', + 'body' => 'দয়া করে :seconds সেকেন্ড পর আবার চেষ্টা করুন।', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/error-notifications.php b/lang/vendor/filament-panels/bn/error-notifications.php new file mode 100644 index 0000000..a10d6ca --- /dev/null +++ b/lang/vendor/filament-panels/bn/error-notifications.php @@ -0,0 +1,9 @@ + 'পৃষ্ঠা লোড করার সময় ত্রুটি', + + 'body' => 'এই পৃষ্ঠা লোড করার চেষ্টা করার সময় একটি ত্রুটি হয়েছে। দয়া করে পরে আবার চেষ্টা করুন।', + +]; diff --git a/lang/vendor/filament-panels/bn/global-search.php b/lang/vendor/filament-panels/bn/global-search.php new file mode 100644 index 0000000..fbb5227 --- /dev/null +++ b/lang/vendor/filament-panels/bn/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'সব জায়গায় খুঁজুন', + 'placeholder' => 'খুঁজুন', + ], + + 'no_results_message' => 'খুঁজে পাওয়া যায়নি।', + +]; diff --git a/lang/vendor/filament-panels/bn/layout.php b/lang/vendor/filament-panels/bn/layout.php new file mode 100644 index 0000000..c7e0e01 --- /dev/null +++ b/lang/vendor/filament-panels/bn/layout.php @@ -0,0 +1,35 @@ + 'ltr', + + 'actions' => [ + + 'logout' => [ + 'label' => 'সাইন আউট', + ], + + 'open_database_notifications' => [ + 'label' => 'বিজ্ঞপ্তি খুলুন', + ], + + 'open_user_menu' => [ + 'label' => 'ব্যবহার সূচী', + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'ডার্ক মোড', + ], + + 'light' => [ + 'label' => 'লাইট মোড', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/pages/dashboard.php b/lang/vendor/filament-panels/bn/pages/dashboard.php new file mode 100644 index 0000000..dd729b5 --- /dev/null +++ b/lang/vendor/filament-panels/bn/pages/dashboard.php @@ -0,0 +1,7 @@ + 'ড্যাশবোর্ড', + +]; diff --git a/lang/vendor/filament-panels/bn/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/bn/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..dede244 --- /dev/null +++ b/lang/vendor/filament-panels/bn/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,31 @@ + 'টেন্যান্ট প্রোফাইল', + + 'form' => [ + + 'name' => [ + 'label' => 'নাম', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'সংরক্ষণ করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'সংরক্ষিত হয়েছে', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/resources/pages/create-record.php b/lang/vendor/filament-panels/bn/resources/pages/create-record.php new file mode 100644 index 0000000..a90d90e --- /dev/null +++ b/lang/vendor/filament-panels/bn/resources/pages/create-record.php @@ -0,0 +1,37 @@ + ':label তৈরি করুন', + + 'breadcrumb' => 'তৈরি করুন', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'বাতিল', + ], + + 'create' => [ + 'label' => 'তৈরি করুন', + ], + + 'create_another' => [ + 'label' => 'তৈরি এবং পুনরায় তৈরি করুন', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'তৈরি হয়েছে', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/resources/pages/edit-record.php b/lang/vendor/filament-panels/bn/resources/pages/edit-record.php new file mode 100644 index 0000000..a26add7 --- /dev/null +++ b/lang/vendor/filament-panels/bn/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + ':label সম্পাদন', + + 'breadcrumb' => 'সম্পাদন করুন', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'বাতিল', + ], + + 'save' => [ + 'label' => 'সম্পাদন করুন', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'সম্পাদন', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'সম্পাদন করা হয়েছে', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/resources/pages/list-records.php b/lang/vendor/filament-panels/bn/resources/pages/list-records.php new file mode 100644 index 0000000..42b7822 --- /dev/null +++ b/lang/vendor/filament-panels/bn/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'তালিকা', + +]; diff --git a/lang/vendor/filament-panels/bn/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/bn/resources/pages/manage-related-records.php new file mode 100644 index 0000000..f89ce76 --- /dev/null +++ b/lang/vendor/filament-panels/bn/resources/pages/manage-related-records.php @@ -0,0 +1,47 @@ + 'সম্পর্কিত রেকর্ড পরিচালনা করুন', + + 'actions' => [ + + 'attach' => [ + 'label' => 'সংযুক্ত করুন', + ], + + 'detach' => [ + 'label' => 'বিচ্ছিন্ন করুন', + ], + + 'associate' => [ + 'label' => 'সংযুক্ত করুন', + ], + + 'dissociate' => [ + 'label' => 'বিচ্ছিন্ন করুন', + ], + + ], + + 'notifications' => [ + + 'attached' => [ + 'title' => 'সংযুক্ত হয়েছে', + ], + + 'detached' => [ + 'title' => 'বিচ্ছিন্ন হয়েছে', + ], + + 'associated' => [ + 'title' => 'সংযুক্ত হয়েছে', + ], + + 'dissociated' => [ + 'title' => 'বিচ্ছিন্ন হয়েছে', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/resources/pages/view-record.php b/lang/vendor/filament-panels/bn/resources/pages/view-record.php new file mode 100644 index 0000000..904ec67 --- /dev/null +++ b/lang/vendor/filament-panels/bn/resources/pages/view-record.php @@ -0,0 +1,17 @@ + ':label দেখুন', + + 'breadcrumb' => 'দেখুন', + + 'content' => [ + + 'tab' => [ + 'label' => 'দেখুন', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bn/unsaved-changes-alert.php b/lang/vendor/filament-panels/bn/unsaved-changes-alert.php new file mode 100644 index 0000000..8aeb3e4 --- /dev/null +++ b/lang/vendor/filament-panels/bn/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'আপনার কাছে সংরক্ষিত না করা পরিবর্তন রয়েছে। আপনি কি নিশ্চিত যে আপনি এই পৃষ্ঠা ছেড়ে যেতে চান?', + +]; diff --git a/lang/vendor/filament-panels/bn/widgets/account-widget.php b/lang/vendor/filament-panels/bn/widgets/account-widget.php new file mode 100644 index 0000000..d5080e0 --- /dev/null +++ b/lang/vendor/filament-panels/bn/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'সাইন আউট', + ], + + ], + + 'welcome' => 'স্বাগতম', + +]; diff --git a/lang/vendor/filament-panels/bn/widgets/filament-info-widget.php b/lang/vendor/filament-panels/bn/widgets/filament-info-widget.php new file mode 100644 index 0000000..cce76f8 --- /dev/null +++ b/lang/vendor/filament-panels/bn/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'ব্যবহার গাইড', + ], + + 'open_github' => [ + 'label' => 'গিটহাব', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bs/auth/pages/login.php b/lang/vendor/filament-panels/bs/auth/pages/login.php new file mode 100644 index 0000000..cc71496 --- /dev/null +++ b/lang/vendor/filament-panels/bs/auth/pages/login.php @@ -0,0 +1,47 @@ + 'Login', + + 'heading' => 'Prijavite se na svoj račun', + + 'form' => [ + + 'email' => [ + 'label' => 'E-mail adresa', + ], + + 'password' => [ + 'label' => 'Šifra', + ], + + 'remember' => [ + 'label' => 'Zapamti me', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Prijavite se', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Vaša kombinacija se ne poklapa sa našom evidencijom.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Previše pokušaja prijave. Pokušajte ponovo za :seconds sekundi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bs/global-search.php b/lang/vendor/filament-panels/bs/global-search.php new file mode 100644 index 0000000..40cddab --- /dev/null +++ b/lang/vendor/filament-panels/bs/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Globalna pretraga', + 'placeholder' => 'Tražite', + ], + + 'no_results_message' => 'Nisu pronađeni rezultati pretrage.', + +]; diff --git a/lang/vendor/filament-panels/bs/layout.php b/lang/vendor/filament-panels/bs/layout.php new file mode 100644 index 0000000..db57d33 --- /dev/null +++ b/lang/vendor/filament-panels/bs/layout.php @@ -0,0 +1,35 @@ + 'ltr', + + 'actions' => [ + + 'logout' => [ + 'label' => 'Odjava', + ], + + 'open_database_notifications' => [ + 'label' => 'Otvorite notifikacije', + ], + + 'open_user_menu' => [ + 'label' => 'Korisnički meni', + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Uključite tamni način rada', + ], + + 'light' => [ + 'label' => 'Uključite svjijetli način rada', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bs/pages/dashboard.php b/lang/vendor/filament-panels/bs/pages/dashboard.php new file mode 100644 index 0000000..ca32eec --- /dev/null +++ b/lang/vendor/filament-panels/bs/pages/dashboard.php @@ -0,0 +1,7 @@ + 'Nadzorna ploča', + +]; diff --git a/lang/vendor/filament-panels/bs/resources/pages/create-record.php b/lang/vendor/filament-panels/bs/resources/pages/create-record.php new file mode 100644 index 0000000..74349b1 --- /dev/null +++ b/lang/vendor/filament-panels/bs/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Napravi :label', + + 'breadcrumb' => 'Napravi', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Prekiniti', + ], + + 'create' => [ + 'label' => 'Napraviti', + ], + + 'create_another' => [ + 'label' => 'Napravi i napravi još jedan', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Uspješno kreirano', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bs/resources/pages/edit-record.php b/lang/vendor/filament-panels/bs/resources/pages/edit-record.php new file mode 100644 index 0000000..1e42300 --- /dev/null +++ b/lang/vendor/filament-panels/bs/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'Uredi :label', + + 'breadcrumb' => 'Uredi', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Prekinit', + ], + + 'save' => [ + 'label' => 'Saćuvaj', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Uredi', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Sačuvano', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bs/resources/pages/list-records.php b/lang/vendor/filament-panels/bs/resources/pages/list-records.php new file mode 100644 index 0000000..3af0660 --- /dev/null +++ b/lang/vendor/filament-panels/bs/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Lista', + +]; diff --git a/lang/vendor/filament-panels/bs/resources/pages/view-record.php b/lang/vendor/filament-panels/bs/resources/pages/view-record.php new file mode 100644 index 0000000..cea173c --- /dev/null +++ b/lang/vendor/filament-panels/bs/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'Pogled :label', + + 'breadcrumb' => 'Pogled', + + 'content' => [ + + 'tab' => [ + 'label' => 'Pogled', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/bs/widgets/account-widget.php b/lang/vendor/filament-panels/bs/widgets/account-widget.php new file mode 100644 index 0000000..786391b --- /dev/null +++ b/lang/vendor/filament-panels/bs/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Odjava', + ], + + ], + + 'welcome' => 'Zdravo', + +]; diff --git a/lang/vendor/filament-panels/bs/widgets/filament-info-widget.php b/lang/vendor/filament-panels/bs/widgets/filament-info-widget.php new file mode 100644 index 0000000..d770c7e --- /dev/null +++ b/lang/vendor/filament-panels/bs/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentacija', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/ca/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..f63e77b --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Canvi d\'email bloquejat', + 'body' => 'Ha bloquejat amb èxit un intent de canvi d\'email a :email. Si no has realitzat la sol·licitud original, posa\'t en contacte amb nosaltres immediatament.', + ], + + 'failed' => [ + 'title' => 'Error en bloquejar el canvi d\'email', + 'body' => 'Lamentablement, no s\'ha pogut evitar que l\'adreça de correu electrònica hagi canviat a :email, ja que estava verificat abans que es bloquegés. Si no has realitzat la sol·licitud original, posa\'t en contacte amb nosaltres immediatament.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/ca/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..fe23002 --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Adreça de correu electrònic canviada', + 'body' => 'La teva adreça de correu electrònic ha estat canviada amb èxit a :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/ca/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..837f8b2 --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,75 @@ + 'Desactivar', + + 'modal' => [ + + 'heading' => 'Desactivar l\'aplicació d\'autenticació', + + 'description' => 'Estàs segur que vols deixar de fer servir l\'aplicació d\'autenticació? Desactivar-la eliminarà una capa addicional de seguretat del teu compte.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Introdueix el codi de 6 dígits de l\'aplicació d\'autenticació', + + 'validation_attribute' => 'codi', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Fes servir un codi de recuperació en el seu lloc', + ], + + ], + + 'messages' => [ + + 'invalid' => 'El codi introduït no és vàlid.', + + 'rate_limited' => 'Massa intents. Si us plau, torneu-ho a intentar més tard.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'O bé, introdueix un codi de recuperació', + + 'validation_attribute' => 'codi de recuperació', + + 'messages' => [ + + 'invalid' => 'El codi de recuperació introduït no és vàlid.', + + 'rate_limited' => 'Massa intents. Si us plau, torneu-ho a intentar més tard.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Desactivar l\'aplicació d\'autenticació', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'L\'aplicació d\'autenticació ha estat desactivada', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/ca/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..9e1934a --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,79 @@ + 'Regenerar codis de recuperació', + + 'modal' => [ + + 'heading' => 'Regenerar codis de recuperació de l\'aplicació d\'autenticació', + + 'description' => 'Si perds els codis de recuperació, pots regenerar-los aquí. Els codis de recuperació antics s\'invalidaran immediatament.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Introdueix el codi de 6 dígits de l\'aplicació d\'autenticació', + + 'validation_attribute' => 'codi', + + 'messages' => [ + + 'invalid' => 'El codi introduït no és vàlid.', + + 'rate_limited' => 'Massa intents. Si us plau, prova-ho més tard.', + + ], + + ], + + 'password' => [ + + 'label' => 'O bé, introdueix la teva contrasenya actual', + + 'validation_attribute' => 'contrasenya', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Regenerar codis de recuperació', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'S\'han generat nous codis de recuperació de l\'aplicació d\'autenticació', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Nous codis de recuperació', + + 'description' => 'Guarda els codis de recuperació en un lloc segur. Només es mostraran una vegada. Els necessitaràs si perds el accés a la teva aplicació d\'autenticació:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Tancar', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/ca/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..061cc5d --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,83 @@ + 'Configurar', + + 'modal' => [ + + 'heading' => 'Configurar l\'aplicació d\'autenticació', + + 'description' => <<<'BLADE' + Necessitaràs una aplicació com Google Authenticator (iOS, Android) per completar aquest procés. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Escanegi aquest codi QR amb la seva aplicació d\'autenticació:', + + 'alt' => 'Codi QR per escanejar amb una aplicació d\'autenticació', + + ], + + 'text_code' => [ + + 'instruction' => 'O introdueix aquest codi manualment:', + + 'messages' => [ + 'copied' => 'Copiat', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Guarda els següents codis de recuperació en un lloc segur. Només es mostraran una vegada, i els necessitaràs si perds l\'accés a la teva aplicació d\'autenticació:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Introduex el codi de 6 dígits de l\'aplicació d\'autenticació', + + 'validation_attribute' => 'codi', + + 'below_content' => 'Necesitaràs introduïr el codi de 6 dígito de la teva aplicació d\'autenticació cada vegada que inciis sessió o realitzis accions sensibles.', + + 'messages' => [ + + 'invalid' => 'El codi introduït no és vàlid.', + + 'rate_limited' => 'Massa intents. Si us plau, intenta-ho més tard.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Habilitar aplicació d\'autenticació', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'L\'aplicació d\'autenticació ha sigut activada', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/ca/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..bda1f1b --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Aplicació d\'autenticació', + + 'below_content' => 'Fes servir una aplicació segura per generar un codi temporal per verificar l\'inici de sessió.', + + 'messages' => [ + 'enabled' => 'Activada', + 'disabled' => 'Desactivada', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Fes servir un codi de la teva aplicació d\'autenticació', + + 'code' => [ + + 'label' => 'Introdueix el codi de 6 dígits de la teva aplicació d\'autenticació', + + 'validation_attribute' => 'codi', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Fes servir un codi de recuperació en lloc', + ], + + ], + + 'messages' => [ + + 'invalid' => 'El codi introduït no és vàlid.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'O bé, introdueix un codi de recuperació', + + 'validation_attribute' => 'codi de recuperació', + + 'messages' => [ + + 'invalid' => 'El codi de recuperació introduït no és vàlid.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/ca/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..8b55915 --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,73 @@ + 'Apagar', + + 'modal' => [ + + 'heading' => 'Desactivar codis de verificació per correu', + + 'description' => 'Segur que vols deixar de rebre codis de verificació per correu? Desactivar aquesta opció eliminarà una capa addicional de seguretat del teu compte.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Ingressa el codi de 6 dígits que t\'enviem per correu electrònic', + + 'validation_attribute' => 'codi', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Enviar un codi nou per correu electrònic', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'T\'hem enviat un codi nou per correu electrònic.', + ], + + 'throttled' => [ + 'title' => 'Massa intents de reenviament. Espera abans de sol·licitar-ne un altre.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'El codi introduït no és vàlid.', + + 'rate_limited' => 'Massa intents. Intenta-ho més tard.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Desactivar codis de verificació per correu', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Els codis de verificació per correu han estat desactivats', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/ca/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..8ece2c9 --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,73 @@ + 'Configurar', + + 'modal' => [ + + 'heading' => 'Configurar codis de verificació per correu electrònic', + + 'description' => 'Necessitaràs introduïr el codi de 6 dígits que t\'enviem per correu electrònic cada cop que iniciïs sessió o realitzis accions sensibles. Revisa el correu per trobar el codi de 6 dígits i completar la configuració.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Introdueix el codi de 6 dígits que t\'enviem per correu electrònic', + + 'validation_attribute' => 'codi', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Enviar un codi nou per correu electrònic', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'T\'hem enviat un codi nou per correu electrònic.', + ], + + 'throttled' => [ + 'title' => 'Massa intents de reenviament. Espera abans de sol·licitar un altre codi.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'El codi introduït no és vàlid.', + + 'rate_limited' => 'Massa intents. Si us plau, intenta-ho més tard.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Habilitar codis de verificació per correu electrònic', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'S\'han activat els codis de verificació per correu electrònic', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/ca/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..3d27a6b --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Aquí hi ha el teu codi d\'inici de sessió', + + 'lines' => [ + 'El codi d\'inici de sessió és: :code', + 'Aquest codi expirarà en un minut.|Aquest codi expirarà en :minutes minutos.', + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/ca/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..3263f78 --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Codis de verificació per correu electrònic', + + 'below_content' => 'Rep un codi temporal al teu correu electrònic per verificar la teva identitat durant l\'inici de sessió.', + + 'messages' => [ + 'enabled' => 'Activats', + 'disabled' => 'Desactivats', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Enviar un codi al teu correu electrònic', + + 'code' => [ + + 'label' => 'Introdueix el codi de 6 dígits que t\'enviem per correu electrònic', + + 'validation_attribute' => 'codi', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Enviar un codi nou per correu electrònic', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'T\'hem enviat un codi nou per correu electrònic.', + ], + + 'throttled' => [ + 'title' => 'Massa intents de reenviament. Espera abans de sol·licitar un altre codi.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'El codi introduït no és vàlid.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/ca/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..e3b4a32 --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Configurar l\'autenticació de doble factor (2FA)', + + 'heading' => 'Configura l\'autenticació de doble factor', + + 'subheading' => '2FA afegeix una capa addicional de seguretat al teu compte en requerir una segona forma de verificació en iniciar sessió.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Continuar', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/ca/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..9190174 --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Fes clic per', + + 'copy' => [ + 'label' => 'copiar', + ], + + 'o', + + 'download' => [ + 'label' => 'descarregar', + ], + + 'tots els codis a la vegada.', + + ], + + 'messages' => [ + 'copied' => 'Copiats', + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/ca/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..73b4a80 --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'La seva adreça de correu electrònica està sent canviada', + + 'lines' => [ + 'Hem rebut una sol·licitud per canviar l\'adreça de correu electrònica associada al teu compte. S\'ha utilitzat la teva contrasenya per confirmar el canvi.', + 'Un cop verificada, la nova adreça de correu electrònica al teu compte serà: :email.', + 'Pots bloquejar el canvi abans que es verifiqui fent clic al botó de sota.', + 'Si no has realitzat aquesta sol·licitud, posa\'t en contacte amb nosaltres immediatament.', + ], + + 'action' => 'Bloquejar canvi de correu', + +]; diff --git a/lang/vendor/filament-panels/ca/auth/pages/edit-profile.php b/lang/vendor/filament-panels/ca/auth/pages/edit-profile.php new file mode 100644 index 0000000..6ba876f --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/pages/edit-profile.php @@ -0,0 +1,73 @@ + 'Perfil', + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'name' => [ + 'label' => 'Nom', + ], + + 'password' => [ + 'label' => 'Nova contrasenya', + 'validation_attribute' => 'contrasenya', + ], + + 'password_confirmation' => [ + 'label' => 'Confirma la nova contrasenya', + 'validation_attribute' => 'confirmació de contrasenya', + ], + + 'current_password' => [ + 'label' => 'Contrasenya actual', + 'below_content' => 'Per seguretat, si us plau, confirma la teva contrasenya per continuar.', + 'validation_attribute' => 'contrasenya actual', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Desar canvis', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Autenticació de doble factor (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Sol·licitud de canvi d\'adreça de correu electrònica enviada', + 'body' => 'S\'ha enviat una sol·licitud per canviar la seva adreça de correu electrònic a :email. Si us plau, revisa el correu per confirmar el canvi.', + ], + + 'saved' => [ + 'title' => 'Canvis desats', + ], + + 'throttled' => [ + 'title' => 'Massa intents. Si us plau, prova-ho de nou en :seconds segons.', + 'body' => 'Si us plau, prova-ho de nou en :seconds segons.', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancel·lar', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/ca/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..7e9a574 --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Verifica la teva adreça de correu electrònic', + + 'heading' => 'Verifica la teva adreça de correu electrònic', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Reenvia la notificació', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'No has rebut el correu electrònic?', + 'notification_sent' => 'Hem enviat un correu electrònic a :email amb instruccions sobre com verificar la teva adreça de correu electrònic.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Hem reenviat el correu electrònic.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Massa intents de reenviament', + 'body' => 'Si us plau, torna a intentar-ho en :seconds segons.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/pages/login.php b/lang/vendor/filament-panels/ca/auth/pages/login.php new file mode 100644 index 0000000..e89d340 --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Inici de sessió', + + 'heading' => 'Accediu al vostre compte', + + 'actions' => [ + + 'register' => [ + 'before' => 'o', + 'label' => 'obrir un compte', + ], + + 'request_password_reset' => [ + 'label' => 'Heu oblidat la vostra contrasenya?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'password' => [ + 'label' => 'Contrasenya', + ], + + 'remember' => [ + 'label' => 'Recorda\'m', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Entrar', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Verifica la teva identitat', + + 'subheading' => 'Per continuar amb l\'inici de sessió, has de verificar la teva identitat.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Com vols verificar-te?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Confirmar inici de sessió', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Aquestes credencials no coincideixen amb els nostres registres', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Massa intents de connexió', + 'body' => 'Si us plau, torneu-ho a provar en :seconds segons.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/ca/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..1481e53 --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Restableix la teva contrasenya', + + 'heading' => 'Has oblidat la teva contrasenya?', + + 'actions' => [ + + 'login' => [ + 'label' => 'Tornar a l\'inici de sessió', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Enviar email', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Si el teu compte no existeix, no rebràs l\'email.', + ], + + 'throttled' => [ + 'title' => 'Massa sol·licituds', + 'body' => 'Si us plau, torna a provar-ho en :seconds segons.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/ca/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..07fad38 --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Restableix la teva contrasenya', + + 'heading' => 'Restableix la teva contrasenya', + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'password' => [ + 'label' => 'Contrasenya', + 'validation_attribute' => 'contrasenya', + ], + + 'password_confirmation' => [ + 'label' => 'Confirma la contrasenya', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Restableix la contrasenya', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Massa intents de restabliment', + 'body' => 'Si us plau, torna-ho a provar en :seconds segons.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/auth/pages/register.php b/lang/vendor/filament-panels/ca/auth/pages/register.php new file mode 100644 index 0000000..70cad7e --- /dev/null +++ b/lang/vendor/filament-panels/ca/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Enregistrar-se', + + 'heading' => 'Obriu un nou compte', + + 'actions' => [ + + 'login' => [ + 'before' => 'o', + 'label' => 'inicia la sessió amb el vostre compte', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'name' => [ + 'label' => 'Nom', + ], + + 'password' => [ + 'label' => 'Contrasenya', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Confirma la contrasenya', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Enregistrar-se', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Massa intents de registre', + 'body' => 'Si us plau, torneu-ho a provar en :seconds segons.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/error-notifications.php b/lang/vendor/filament-panels/ca/error-notifications.php new file mode 100644 index 0000000..ed0eabd --- /dev/null +++ b/lang/vendor/filament-panels/ca/error-notifications.php @@ -0,0 +1,9 @@ + 'Error en carregar la pàgina', + + 'body' => 'S\'ha produït un error en intentar carregar aquesta pàgina. Si us plau, intenta-ho més tard.', + +]; diff --git a/lang/vendor/filament-panels/ca/global-search.php b/lang/vendor/filament-panels/ca/global-search.php new file mode 100644 index 0000000..a89008f --- /dev/null +++ b/lang/vendor/filament-panels/ca/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Cerca global', + 'placeholder' => 'Cerca', + ], + + 'no_results_message' => 'No s\'han trobat resultats.', + +]; diff --git a/lang/vendor/filament-panels/ca/layout.php b/lang/vendor/filament-panels/ca/layout.php new file mode 100644 index 0000000..4a7677c --- /dev/null +++ b/lang/vendor/filament-panels/ca/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Gestionar subscripció', + ], + + 'logout' => [ + 'label' => 'Tancar la sessió', + ], + + 'open_database_notifications' => [ + 'label' => 'Obrir notificacions', + ], + + 'open_user_menu' => [ + 'label' => 'Menú de l\'usuari', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Replegar barra lateral', + ], + + 'expand' => [ + 'label' => 'Ampliar barra lateral', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Habilitar tema fosc', + ], + + 'light' => [ + 'label' => 'Habilitar tema clar', + ], + + 'system' => [ + 'label' => 'Habilitar tema del sistema', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar de :name', + ], + + 'logo' => [ + 'alt' => 'Logotip de :name', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Cercar tenant', + 'placeholder' => 'Cercar', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/pages/dashboard.php b/lang/vendor/filament-panels/ca/pages/dashboard.php new file mode 100644 index 0000000..d10e8d2 --- /dev/null +++ b/lang/vendor/filament-panels/ca/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Escriptori', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtre', + + 'modal' => [ + + 'heading' => 'Filtre', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Aplicar', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/ca/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..0c3db1a --- /dev/null +++ b/lang/vendor/filament-panels/ca/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Desar canvis', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Canvis desats', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/resources/pages/create-record.php b/lang/vendor/filament-panels/ca/resources/pages/create-record.php new file mode 100644 index 0000000..b260e14 --- /dev/null +++ b/lang/vendor/filament-panels/ca/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Crear :label', + + 'breadcrumb' => 'Crear', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancel·lar', + ], + + 'create' => [ + 'label' => 'Crear', + ], + + 'create_another' => [ + 'label' => 'Crear i crear un altre', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Creat', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/resources/pages/edit-record.php b/lang/vendor/filament-panels/ca/resources/pages/edit-record.php new file mode 100644 index 0000000..c0d962c --- /dev/null +++ b/lang/vendor/filament-panels/ca/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Editar :label', + + 'breadcrumb' => 'Editar', + + 'navigation_label' => 'Editar', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancel·lar', + ], + + 'save' => [ + 'label' => 'Desar canvis', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Editar', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Canvis desats', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/resources/pages/list-records.php b/lang/vendor/filament-panels/ca/resources/pages/list-records.php new file mode 100644 index 0000000..0e841ef --- /dev/null +++ b/lang/vendor/filament-panels/ca/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Llistat', + +]; diff --git a/lang/vendor/filament-panels/ca/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/ca/resources/pages/manage-related-records.php new file mode 100644 index 0000000..d93cfec --- /dev/null +++ b/lang/vendor/filament-panels/ca/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Administrar :relationship :label', + +]; diff --git a/lang/vendor/filament-panels/ca/resources/pages/view-record.php b/lang/vendor/filament-panels/ca/resources/pages/view-record.php new file mode 100644 index 0000000..da8fc15 --- /dev/null +++ b/lang/vendor/filament-panels/ca/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Veure :label', + + 'breadcrumb' => 'Veure', + + 'navigation_label' => 'Veure', + + 'content' => [ + + 'tab' => [ + 'label' => 'Veure', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ca/unsaved-changes-alert.php b/lang/vendor/filament-panels/ca/unsaved-changes-alert.php new file mode 100644 index 0000000..53d331c --- /dev/null +++ b/lang/vendor/filament-panels/ca/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Tens canvis sense desar. Estàs segur que vols sortir d\'aquesta pàgina?', + +]; diff --git a/lang/vendor/filament-panels/ca/widgets/account-widget.php b/lang/vendor/filament-panels/ca/widgets/account-widget.php new file mode 100644 index 0000000..bf7cdf8 --- /dev/null +++ b/lang/vendor/filament-panels/ca/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Tancar la sessió', + ], + + ], + + 'welcome' => 'Benvingut/da', + +]; diff --git a/lang/vendor/filament-panels/ca/widgets/filament-info-widget.php b/lang/vendor/filament-panels/ca/widgets/filament-info-widget.php new file mode 100644 index 0000000..e71f629 --- /dev/null +++ b/lang/vendor/filament-panels/ca/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Documentació', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/ckb/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..cd3db9c --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'گۆڕینی ناونیشانی ئیمەیڵ بلۆک کراوە', + 'body' => 'تۆ بە سەرکەوتوویی هەوڵی گۆڕینی ناونیشانی ئیمەیڵت بۆ :email بلۆک کردووە. ئەگەر لەبنەڕەتدا داوات نەکردووە، دەستبەجێ پەیوەندیمان پێوە بکە.', + ], + + 'failed' => [ + 'title' => 'بلۆکردنی گۆڕینی ئیمەیڵ سەرکەوتوو نەبوو', + 'body' => 'بەداخەوە نەتتوانی ڕێگەبگریت لە گۆڕینی ناونیشانی ئیمەیڵ بۆ :email، چونکە پێشتر پشتڕاستکرابووەوە پێش ئەوەی بلۆکی بکەیت. ئەگەر لەبنەڕەتدا داوات نەکردووە، دەستبەجێ پەیوەندیمان پێوە بکە.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/ckb/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..fb97ead --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'ناونیشانی ئیمەیڵ گۆڕدرا', + 'body' => 'ناونیشانی ئیمەیڵەکەت بەسەرکەوتوویی بۆ :email گۆڕدرا.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/ckb/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..171689b --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'لەکارخستن', + + 'modal' => [ + + 'heading' => 'بەنارمەی ڕەسەنایەتی لەکاربخە', + + 'description' => 'ئایا دڵنیای کە دەتەوێت واز لە بەکارهێنانی بەرنامەی ڕەسەنایەتی بهێنیت؟ لەکارخستنی ئەمە چینێکی زیادەی ئاسایش لە هەژمارەکەتدا لادەبات.', + + 'form' => [ + + 'code' => [ + + 'label' => 'کۆدی 6 ژمارەیی لە بەرنامەی ڕەسەنایەتی داخڵ بکە', + + 'validation_attribute' => 'کۆد', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'لەبری ئەوە کۆدی گەڕانەوە بەکاربهێنە', + ], + + ], + + 'messages' => [ + + 'invalid' => 'کۆدی هەڵە داخڵکراوە.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'یان, کۆدی گەڕانەوە داخڵ بکە', + + 'validation_attribute' => 'کۆدی گەڕانەوە', + + 'messages' => [ + + 'invalid' => 'کۆدی گەڕانەوە هەڵەیە', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'ناچالاککردنی بەرنامەی ڕەسانایەتی', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'بەرنامەی ڕەسانایەتی ناچالاککرا', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/ckb/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..48ff2bb --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'کۆدەکانی گەڕانەوە دووبارە دروست بکەرەوە', + + 'modal' => [ + + 'heading' => 'دووبارە دروستکردنەوەی کۆدەکانی گەڕانەوەی بەرنامەی ڕەسەنایەتی', + + 'description' => 'ئەگەر کۆدەکانی گەڕانەوەت لەدەستدا، دەتوانیت لێرەدا دووبارە دروستیان بکەیتەوە. کۆدە کۆنەکانی گەڕانەوەت دەستبەجێ پووچەڵ دەکرێنەوە.', + + 'form' => [ + + 'code' => [ + + 'label' => 'کۆدی 6 ژمارەیی لە بەنامەی ڕەسەنایەتی داخڵ بکە', + + 'validation_attribute' => 'کۆد', + + 'messages' => [ + + 'invalid' => 'کۆدی هەڵە داخڵکراوە', + + ], + + ], + + 'password' => [ + + 'label' => 'یان, تێپەڕەوشەی ئێستات داخڵ بکە', + + 'validation_attribute' => 'تێپەڕەوشە', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'کۆدەکانی گەڕانەوە دووبارە دروست بکەرەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'کۆدی نوێی گەڕانەوەی ئەپی ڕەسەنایەتی دروستکراوە', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'کۆدە نوێیەکانی گەڕانەوە', + + 'description' => 'تکایە ئەم کۆدانەی خوارەوەی گەڕاندنەوە لە شوێنێکی سەلامەتدا هەڵبگرن. تەنها جارێک پیشان دەدرێن، بەڵام پێویستت پێیان دەبێت ئەگەر دەستڕاگەیشتن بە بەرنامەی ڕەسەنایەتیت لەدەست بدەیت:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'داخستن', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/ckb/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..e0b8c37 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'جێگیرکردن', + + 'modal' => [ + + 'heading' => 'جێگیرکردنی بەرنامەی ڕەسەنایەتی', + + 'description' => <<<'BLADE' + پێویستت بە بەرنامەیەکی وەکو Google Authenticator هەیە (iOS, Android) to complete this process. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'ئەم کۆدی QR بە بەرنامەی ڕەسەنایەتی بپشکنە:', + + 'alt' => 'کۆدی QR بۆ پشکنین بە بەرنامەی ڕەسەنایەتی', + + ], + + 'text_code' => [ + + 'instruction' => 'یان ئەم کۆدە بە دەستی داخڵ بکە:', + + 'messages' => [ + 'copied' => 'لەبەریگیرایەوە', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'تکایە ئەم کۆدانەی گەڕاندنەوە لە خوارەوە لە شوێنێکی پارێزراودا هەڵبگرن. تەنها جارێک پیشان دەدرێن، بەڵام پێویستت پێیان دەبێت ئەگەر دەستڕاگەیشتن بە بەرنامەی ڕەسەنایەتیت لەدەست بدەیت:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'کۆدی 6 ژمارەیی لە بەرنامەی ڕەسەنایەتی داخڵ بکە', + + 'validation_attribute' => 'کۆد', + + 'below_content' => 'پێویستە کۆدی 6 ژمارەیی لە بەرنامەی ڕەسەنایەتیەوە داخڵ بکەیت هەر جارێک کە دەچیتە ژوورەوە یان کردارە هەستیارەکان ئەنجام دەدەیت.', + + 'messages' => [ + + 'invalid' => 'کۆدی هەڵە داخڵکراوە.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'چالاککردنی بەرنامەی ڕەسەنایەتی', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'بەرنماەی ڕەسەنایەتی چالاککرا', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/ckb/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..19d6908 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'بەرنامەی ڕەسەنایەتی', + + 'below_content' => 'بەرنامەیەکی پارێزراو بەکاربهێنە بۆ دروستکردنی کۆدێکی کاتی بۆ پشتڕاستکردنەوەی چوونەژوورەوە.', + + 'messages' => [ + 'enabled' => 'چالاکە', + 'disabled' => 'ناچالاکە', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'کۆدێک لە بەرنامەی ڕەسەنایەتییەوە بەکاربهێنە', + + 'code' => [ + + 'label' => 'کۆدی 6 ژمارەیی لە بەرنامەی ڕەسەنایەتی داخڵ بکە', + + 'validation_attribute' => 'کۆد', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'لەبری ئەوە کۆدی گەڕاندنەوە بەکاربهێنە', + ], + + ], + + 'messages' => [ + + 'invalid' => 'کۆدی هەڵە داخڵکراوە', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'یان, کۆدی گەڕاندنەوە داخڵ بکە', + + 'validation_attribute' => 'کۆدی گەڕاندنەوە', + + 'messages' => [ + + 'invalid' => 'کۆدی گەڕاندنەوە هەڵەیە', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/ckb/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..e0627a4 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + 'ناچالاککردن', + + 'modal' => [ + + 'heading' => 'کۆدەکانی پشتڕاستکردنەوەی ئیمەیڵ ناچالاک بکە', + + 'description' => 'ئایا دڵنیای کە دەتەوێت وەرگرتنی کۆدی پشتڕاستکردنەوەی ئیمەیڵ بوەستێنیت؟ ناچالاککردنی ئەمە چینێکی زیادەی ئاسایش لە هەژمارەکەتدا لادەبات.', + + 'form' => [ + + 'code' => [ + + 'label' => 'ئەو کۆدە 6 ژمارەییە بنووسە کە لە ڕێگەی ئیمەیڵەوە بۆمان ناردویت', + + 'validation_attribute' => 'کۆد', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'ناردنی کۆدی نوێ لەڕێگەی ئیمەیڵەوە', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'کۆدێکی نوێمان لەڕێگەی ئیمەیڵەوە بۆ ناردیت', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'کۆدی هەڵە داخڵکراوە', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'کۆدەکانی پشتڕاستکردنەوەی ئیمەیڵ ناچالاک بکە', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'کۆدەکانی پشتڕاستکردنەوەی ئیمەیڵ ناچالاککران', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/ckb/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..e0fff02 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + 'ڕێکخستن', + + 'modal' => [ + + 'heading' => 'ڕێکخستنی کۆدی پشتڕاستکردنەوەی ئیمەیڵ', + + 'description' => 'پێویستە ئەو کۆدە 6 ژمارەییە دابنێیت کە ئێمە لە ڕێگەی ئیمەیڵەوە بۆت دەنێرین هەر جارێک کە دەچیتەژوورەوە یان کردارە هەستیارەکان ئەنجام دەدەیت. ئیمەیڵەکەت بپشکنە بۆ کۆدێکی 6 ژمارەیی بۆ تەواوکردنی ڕێکخستنەکە.', + + 'form' => [ + + 'code' => [ + + 'label' => 'ئەو کۆدە 6 ژمارەییە بنووسە کە لە ڕێگەی ئیمەیڵەوە بۆمان ناردویت', + + 'validation_attribute' => 'کۆد', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'ناردنی کۆدی نوێ لەڕێگەی ئیمەیڵەوە', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'کۆدی نوێمان لەڕێگەی ئیمەیڵەوە بۆ ناردیت', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'کۆدی هەڵە داخڵکراوە', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'کۆدەکانی پشتڕاستکردنەوەی ئیمەیڵ چالاک بکە', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'کۆدەکانی پشتڕاستکردنەوەی ئیمەیڵ چالاککراون', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/ckb/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..b944e5f --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'ئەمە کۆدی چونەژوورەوەکەتە', + + 'lines' => [ + 'کۆدی چونەژوورەوەکەت: :code', + 'ئەم کۆدە دوای خولەکێک بەسەردەچێت.|ئەم کۆدە لە :minutes خولەک بەسەردەچێت.', + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/ckb/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..4888d60 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'کۆدەکانی پشتڕاستکردنەوەی ئیمەیڵ', + + 'below_content' => 'کۆدێکی کاتی لە ناونیشانی ئیمەیڵەکەت وەربگرە بۆ پشتڕاستکردنەوەی ناسنامەکەت لە کاتی چوونەژوورەوە.', + + 'messages' => [ + 'enabled' => 'چالاککراوە', + 'disabled' => 'ناچالاکە', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'کۆدێک بنێرە بۆ ئیمەیڵەکەت', + + 'code' => [ + + 'label' => 'ئەو کۆدە 6 ژمارەییە بنووسە کە لە ڕێگەی ئیمەیڵەوە بۆمان ناردویت', + + 'validation_attribute' => 'کۆد', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'ناردنی کۆدی نوێ لەڕێگەی ئیمەیڵەوە', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'ئێمە کۆدێکی نوێمان لەڕێگەی ئیمەیڵەوە بۆ ناردوویت', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'کۆدی هەڵە داخڵکراوە', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/ckb/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..d9248dd --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Set up two-factor authentication (2FA)', + + 'heading' => 'Set up two-factor authentication', + + 'subheading' => '2FA adds an extra layer of security to your account by requiring a second form of verification when signing in.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Continue', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/ckb/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..78c770c --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Click to', + + 'copy' => [ + 'label' => 'copy', + ], + + 'or', + + 'download' => [ + 'label' => 'download', + ], + + 'all the codes at once.', + + ], + + 'messages' => [ + 'copied' => 'Copied', + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/ckb/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..a12c516 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Your email address is being changed', + + 'lines' => [ + 'We received a request to change the email address associated with your account. Your password was used to confirm this change.', + 'Once verified, the new email address on your account will be: :email.', + 'You can block the change before it is verified by clicking the button below.', + 'If you did not make this request, please contact us immediately.', + ], + + 'action' => 'Block Email Change', + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/pages/edit-profile.php b/lang/vendor/filament-panels/ckb/auth/pages/edit-profile.php new file mode 100644 index 0000000..1b036ea --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'زانیاری کەسیی', + + 'form' => [ + + 'email' => [ + 'label' => 'ئیمەیڵ', + ], + + 'name' => [ + 'label' => 'ناو', + ], + + 'password' => [ + 'label' => 'تێپەڕەوشەی نوێ', + 'validation_attribute' => 'تێپەڕەوشە', + ], + + 'password_confirmation' => [ + 'label' => 'دڵنیاکردنەوەی تێپەڕەوشەی نوێ', + 'validation_attribute' => 'دڵنیاکردنەوەی تێپەڕەوشە', + ], + + 'current_password' => [ + 'label' => 'تێپەڕەوشەی ئێستا', + 'below_content' => 'لەبەر لایەنی پاراستن، تکایە تێپەڕەوشەکەت پشتڕاست بکەرەوە بۆ بەردەوامبوون.', + 'validation_attribute' => 'تێپەڕەوشەی ئێستا', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'پاشەکەوتکردنی گۆڕانکارییەکان', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'ڕەسەنایەتی دوو هۆکار (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'داواکاری گۆڕینی ناونیشانی ئیمەیڵ نێردراوە', + 'body' => 'داواکارییەک بۆ گۆڕینی ناونیشانی ئیمەیڵەکەت بۆ :email نێردراوە. تکایە ئیمەیڵەکەت بپشکنە بۆ پشتڕاستکردنەوەی گۆڕانکارییەکە.', + ], + + 'saved' => [ + 'title' => 'پاشەکەوتکرا', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'هەوەشاندنەوە', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/ckb/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..e7fbb13 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'چالاککردنی ئیمەیڵ', + + 'heading' => 'چالاککردنی ئیمەیڵ', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'دووبارە چالاککردن بنێرە', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'ئیمەیڵەکەت پێ نەگەیشت بۆ چالاککردن؟', + 'notification_sent' => 'ئیمەیڵێکمان نارد بۆ :email کە ڕێنمایی چۆنیەتی چالاککردنی هەژمارەکەتی تێدایە.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'چالاککردنی ئیمەیڵ دووبارە نێردرا.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'زۆر هەوڵ بۆ چالاککردن درا', + 'body' => 'تکایە دوای :seconds چرکە هەوڵ بدەرەوە.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/pages/login.php b/lang/vendor/filament-panels/ckb/auth/pages/login.php new file mode 100644 index 0000000..bcde8de --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/pages/login.php @@ -0,0 +1,85 @@ + 'چوونەژوورەوە', + + 'heading' => 'چوونەژوورەوە', + + 'actions' => [ + + 'register' => [ + 'before' => 'یان', + 'label' => 'دروستکردنی هەژماری نوێ', + ], + + 'request_password_reset' => [ + 'label' => 'تێپەڕەوشەت لەبیرکردووە؟', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ئیمەیڵ', + ], + + 'password' => [ + 'label' => 'تێپەڕەوشە', + ], + + 'remember' => [ + 'label' => 'بەبیرمبهێنەوە', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'چوونەژوورەوە', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Verify your identity', + + 'subheading' => 'To continue signing in, you need to verify your identity.', + + 'form' => [ + + 'provider' => [ + 'label' => 'How would you like to verify?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Confirm sign in', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'هیچ هەژمارێک بەو زانیارییانە تۆمارنەکراوە.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'زۆر هەوڵدراوە بۆ چوونەژوورەوە', + 'body' => 'تکایە دوای :seconds چرکە هەوڵ بدەرەوە.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/ckb/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..45295bd --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'نوێکردنەوەی تێپەڕەوشە', + + 'heading' => 'تێپەڕەوشەت لەبیر کردووە؟?', + + 'actions' => [ + + 'login' => [ + 'label' => 'گەڕانەوە بۆ چوونەژوورەوە', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ئیمەیڵ', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'ناردنی ئیمەیڵ', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'ئەگەر هەژمارەکە نەبوو، ئەوا ئیمەیڵەکەت پێ ناگات.', + ], + + 'throttled' => [ + 'title' => 'داواکاری زۆر نێردرا', + 'body' => 'تکایە هەوڵ بدەرەوە دوای :seconds چرکە.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/ckb/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..f5762fc --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'نوێکردنەوەی تێپەڕەوشە', + + 'heading' => 'نوێکردنەوەی تێپەڕەوشە', + + 'form' => [ + + 'email' => [ + 'label' => 'ئیمەیڵ', + ], + + 'password' => [ + 'label' => 'تێپەڕەوشە', + 'validation_attribute' => 'تێپەڕەوشە', + ], + + 'password_confirmation' => [ + 'label' => 'دڵنیاکردنەوەی تێپەڕەوشە', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'رێکخستنەوەی تێپەڕەوشە', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'زۆر هەوڵی ڕێکخستنەوەی تێپەڕەوشە درا', + 'body' => 'تکایە دوای :seconds چرکە هەوڵ بدەرەوە.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/auth/pages/register.php b/lang/vendor/filament-panels/ckb/auth/pages/register.php new file mode 100644 index 0000000..54761e0 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/auth/pages/register.php @@ -0,0 +1,56 @@ + 'دروستکردنی هەژمار', + + 'heading' => 'دروستکردنی هەژمار', + + 'actions' => [ + + 'login' => [ + 'before' => 'یان', + 'label' => 'چوونەژوورەوە بۆ هەژمارەکەت', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ئیمەیڵ', + ], + + 'name' => [ + 'label' => 'ناو', + ], + + 'password' => [ + 'label' => 'تێپەڕەوشە', + 'validation_attribute' => 'تێپەڕەوشە', + ], + + 'password_confirmation' => [ + 'label' => 'دڵنیاکردنەوەی تێپەڕەوشە', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'دروستکردنی هەژمار', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'زۆر هەوڵدرا بۆ دروستکردنی هەژمار', + 'body' => 'تکایە دوای :seconds چرکە هەوڵ بدەرەوە.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/error-notifications.php b/lang/vendor/filament-panels/ckb/error-notifications.php new file mode 100644 index 0000000..527628f --- /dev/null +++ b/lang/vendor/filament-panels/ckb/error-notifications.php @@ -0,0 +1,9 @@ + 'هەڵە لەکاتی بارکردنی پەڕە', + + 'body' => 'لە کاتی هەوڵدان بۆ بارکردنی ئەم لاپەڕەیە هەڵەیەک ڕوویدا. تکایە دواتر هەوڵبدەرەوە.', + +]; diff --git a/lang/vendor/filament-panels/ckb/global-search.php b/lang/vendor/filament-panels/ckb/global-search.php new file mode 100644 index 0000000..b69f0f6 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'گەڕانی گشتی', + 'placeholder' => 'گەڕان', + ], + + 'no_results_message' => 'هیچ ئەنجامێک بۆ گەڕانەکەت نەدۆزرایەوە.', + +]; diff --git a/lang/vendor/filament-panels/ckb/layout.php b/lang/vendor/filament-panels/ckb/layout.php new file mode 100644 index 0000000..1ba52fa --- /dev/null +++ b/lang/vendor/filament-panels/ckb/layout.php @@ -0,0 +1,55 @@ + 'rtl', + + 'actions' => [ + + 'billing' => [ + 'label' => 'بەشدارییەکان', + ], + + 'logout' => [ + 'label' => 'چوونەدەرەوە', + ], + + 'open_database_notifications' => [ + 'label' => 'کردنەوەی ئاگانامەکان', + ], + + 'open_user_menu' => [ + 'label' => 'مێنیوی بەکارهێنەر', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'بچووکردنەوەی شریتی گەڕان', + ], + + 'expand' => [ + 'label' => 'فراوانکردنی شریتی گەڕان', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'گۆڕینی ڕوانگە بۆ تاریک', + ], + + 'light' => [ + 'label' => 'گۆڕینی ڕوانگە بۆ ڕووناک', + ], + + 'system' => [ + 'label' => 'داگرساندنی باری سیستەم', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/pages/dashboard.php b/lang/vendor/filament-panels/ckb/pages/dashboard.php new file mode 100644 index 0000000..4faf97f --- /dev/null +++ b/lang/vendor/filament-panels/ckb/pages/dashboard.php @@ -0,0 +1,33 @@ + 'داشبۆرد', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'پاڵاوتن', + + 'modal' => [ + + 'heading' => 'پاڵاوتن', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'جێبەجێکردن', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/ckb/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..61c68d7 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'پاشەکەوتکردنی گۆڕانکارییەکان', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'پاشەکەوتکرا', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/resources/pages/create-record.php b/lang/vendor/filament-panels/ckb/resources/pages/create-record.php new file mode 100644 index 0000000..b8859f9 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'زیادکردنی :label', + + 'breadcrumb' => 'زیادکردن', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'پاشگەزبوونەوە', + ], + + 'create' => [ + 'label' => 'زیادکردن', + ], + + 'create_another' => [ + 'label' => 'زیادکردن و تۆمارێکی تر', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'زیادکرا', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/resources/pages/edit-record.php b/lang/vendor/filament-panels/ckb/resources/pages/edit-record.php new file mode 100644 index 0000000..90dcb1a --- /dev/null +++ b/lang/vendor/filament-panels/ckb/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'دەستکاریکردنی :label', + + 'breadcrumb' => 'دەستکاریکردن', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'پاشگەزبوونەوە', + ], + + 'save' => [ + 'label' => 'پاشەکەوتکردن', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'دەستکاریکردن', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'پاشەکەوتکرا', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/resources/pages/list-records.php b/lang/vendor/filament-panels/ckb/resources/pages/list-records.php new file mode 100644 index 0000000..3ecd89c --- /dev/null +++ b/lang/vendor/filament-panels/ckb/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'تۆمارەکان', + +]; diff --git a/lang/vendor/filament-panels/ckb/resources/pages/view-record.php b/lang/vendor/filament-panels/ckb/resources/pages/view-record.php new file mode 100644 index 0000000..c3dd4f8 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'بینینی :label', + + 'breadcrumb' => 'بینین', + + 'content' => [ + + 'tab' => [ + 'label' => 'بینین', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ckb/unsaved-changes-alert.php b/lang/vendor/filament-panels/ckb/unsaved-changes-alert.php new file mode 100644 index 0000000..3a1ba1d --- /dev/null +++ b/lang/vendor/filament-panels/ckb/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'گۆڕانکاری پاشەکەوت نەکراوت هەیە. دڵنیای دەتەوێت ئەم پەڕە جێبهێڵیت؟', + +]; diff --git a/lang/vendor/filament-panels/ckb/widgets/account-widget.php b/lang/vendor/filament-panels/ckb/widgets/account-widget.php new file mode 100644 index 0000000..c923c56 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'چوونەدەرەوە', + ], + + ], + + 'welcome' => 'بەخێربێیت', + +]; diff --git a/lang/vendor/filament-panels/ckb/widgets/filament-info-widget.php b/lang/vendor/filament-panels/ckb/widgets/filament-info-widget.php new file mode 100644 index 0000000..7370835 --- /dev/null +++ b/lang/vendor/filament-panels/ckb/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'بەڵگەنامە', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/cs/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..d22cdea --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,15 @@ + [ + 'blocked' => [ + 'title' => 'Změna e-mailové adresy zablokována', + 'body' => 'Úspěšně jste zablokovali pokus o změnu e-mailové adresy na :email. Pokud jste o změnu nežádali, kontaktujte nás prosím ihned.', + ], + + 'failed' => [ + 'title' => 'Nepodařilo se zablokovat změnu e-mailové adresy', + 'body' => 'Bohužel se Vám nepodařilo zabránit změně e-mailové adresy na :email, protože již byla ověřena před zablokováním. Pokud jste o změnu nežádali, kontaktujte nás prosím ihned.', + ], + ], +]; diff --git a/lang/vendor/filament-panels/cs/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/cs/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..79a074a --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,10 @@ + [ + 'verified' => [ + 'title' => 'E-mailová adresa byla změněna', + 'body' => 'Vaše e-mailová adresa byla úspěšně změněna na :email.', + ], + ], +]; diff --git a/lang/vendor/filament-panels/cs/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/cs/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..a3254d9 --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,51 @@ + 'Vypnout', + + 'modal' => [ + 'heading' => 'Vypnout ověřovací aplikaci', + + 'description' => 'Opravdu chcete přestat používat ověřovací aplikaci? Vypnutím odstraníte další vrstvu zabezpečení Vašeho účtu.', + + 'form' => [ + 'code' => [ + 'label' => 'Zadejte 6-místný kód z ověřovací aplikace', + + 'validation_attribute' => 'kód', + + 'actions' => [ + 'use_recovery_code' => [ + 'label' => 'Místo toho použijte obnovovací kód', + ], + ], + + 'messages' => [ + 'invalid' => 'Zadaný kód je neplatný.', + ], + ], + + 'recovery_code' => [ + 'label' => 'Nebo zadejte obnovovací kód', + + 'validation_attribute' => 'obnovovací kód', + + 'messages' => [ + 'invalid' => 'Zadaný obnovovací kód je neplatný.', + ], + ], + ], + + 'actions' => [ + 'submit' => [ + 'label' => 'Vypnout ověřovací aplikaci', + ], + ], + ], + + 'notifications' => [ + 'disabled' => [ + 'title' => 'Ověřovací aplikace byla vypnuta', + ], + ], +]; diff --git a/lang/vendor/filament-panels/cs/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/cs/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..f525095 --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Obnovit obnovovací kódy', + + 'modal' => [ + + 'heading' => 'Obnovit obnovovací kódy pro ověřovací aplikaci', + + 'description' => 'Pokud ztratíte své obnovovací kódy, můžete je zde obnovit. Vaše staré obnovovací kódy budou okamžitě zneplatněny.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Zadejte 6-místný kód z ověřovací aplikace', + + 'validation_attribute' => 'kód', + + 'messages' => [ + + 'invalid' => 'Zadaný kód je neplatný.', + + ], + + ], + + 'password' => [ + + 'label' => 'Nebo zadejte své aktuální heslo', + + 'validation_attribute' => 'heslo', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Obnovit obnovovací kódy', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Byly vygenerovány nové obnovovací kódy pro ověřovací aplikaci', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Nové obnovovací kódy', + + 'description' => 'Uložte si prosím následující obnovovací kódy na bezpečné místo. Budou zobrazeny pouze jednou, ale budete je potřebovat, pokud ztratíte přístup ke své ověřovací aplikaci:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Zavřít', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/cs/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..de8ad25 --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Nastavit', + + 'modal' => [ + + 'heading' => 'Nastavit ověřovací aplikaci', + + 'description' => <<<'BLADE' + K dokončení tohoto procesu budete potřebovat aplikaci, jako je Google Authenticator (iOS, Android). + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Naskenujte tento QR kód pomocí ověřovací aplikace:', + + 'alt' => 'QR kód ke skenování ověřovací aplikací', + + ], + + 'text_code' => [ + + 'instruction' => 'Nebo zadejte tento kód ručně:', + + 'messages' => [ + 'copied' => 'Zkopírováno', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Uložte si prosím následující záložní kódy na bezpečné místo. Budou zobrazeny pouze jednou, ale budete je potřebovat, pokud ztratíte přístup k ověřovací aplikaci:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Zadejte 6-místný kód z ověřovací aplikace', + + 'validation_attribute' => 'code', + + 'below_content' => 'Při každém přihlášení nebo provádění citlivých akcí budete muset zadat 6-místný kód z ověřovací aplikace.', + + 'messages' => [ + + 'invalid' => 'Zadaný kód je neplatný.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Povolit ověřovací aplikaci', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Ověřovací aplikace byla povolena', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/cs/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..258343d --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Ověřovací aplikace', + + 'below_content' => 'Použijte bezpečnou aplikaci pro generování dočasného kódu k ověření přihlášení.', + + 'messages' => [ + 'enabled' => 'Povoleno', + 'disabled' => 'Zakázáno', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Použijte kód z Vaší ověřovací aplikace', + + 'code' => [ + + 'label' => 'Zadejte 6-místný kód z ověřovací aplikace', + + 'validation_attribute' => 'kód', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Místo toho použijte obnovovací kód', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Zadaný kód je neplatný.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Nebo zadejte obnovovací kód', + + 'validation_attribute' => 'obnovovací kód', + + 'messages' => [ + + 'invalid' => 'Zadaný obnovovací kód je neplatný.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/cs/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..0673076 --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,70 @@ + 'Vypnout', + + 'modal' => [ + + 'heading' => 'Vypnout e-mailové ověřovací kódy', + + 'description' => 'Opravdu chcete přestat dostávat e-mailové ověřovací kódy? Vypnutím odstraníte další vrstvu zabezpečení Vašeho účtu.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Zadejte 6-místný kód, který jsme Vám poslali e-mailem', + + 'validation_attribute' => 'kód', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Poslat nový kód e-mailem', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Nový kód byl odeslán na Váš e-mail', + ], + + 'throttled' => [ + 'title' => 'Příliš mnoho pokusů o opětovné odeslání. Počkejte prosím, než požádáte o další kód.', + ], + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Zadaný kód je neplatný.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Vypnout e-mailové ověřovací kódy', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'E-mailové ověřovací kódy byly vypnuty', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/cs/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..1a0791f --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,70 @@ + 'Nastavit', + + 'modal' => [ + + 'heading' => 'Nastavit e-mailové ověřovací kódy', + + 'description' => 'Při každém přihlášení nebo provádění citlivých akcí budete muset zadat 6-místný kód, který Vám zašleme e-mailem. Zkontrolujte svůj e-mail a zadejte 6-místný kód pro dokončení nastavení.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Zadejte 6-místný kód, který jsme Vám poslali e-mailem', + + 'validation_attribute' => 'kód', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Odeslat nový kód e-mailem', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Nový kód byl odeslán na Váš e-mail', + ], + + 'throttled' => [ + 'title' => 'Příliš mnoho pokusů o opětovné odeslání. Počkejte prosím, než požádáte o další kód.', + ], + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Zadaný kód je neplatný.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Povolit e-mailové ověřovací kódy', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'E-mailové ověřovací kódy byly povoleny', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/cs/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..8b5e0e6 --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,10 @@ + 'Zde je Váš přihlašovací kód', + + 'lines' => [ + 'Váš přihlašovací kód je: :code', + 'Tento kód vyprší za minutu.|Tento kód vyprší za :minutes minúty.|Tento kód vyprší za :minutes minut.', + ], +]; diff --git a/lang/vendor/filament-panels/cs/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/cs/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..39233ea --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/multi-factor/email/provider.php @@ -0,0 +1,37 @@ + [ + 'actions' => [ + 'label' => 'E-mailové ověřovací kódy', + 'below_content' => 'Při přihlášení obdržíte dočasný kód na svou e-mailovou adresu pro ověření Vaší identity.', + 'messages' => [ + 'enabled' => 'Povoleno', + 'disabled' => 'Zakázáno', + ], + ], + ], + 'login_form' => [ + 'label' => 'Odeslat kód na Váš e-mail', + 'code' => [ + 'label' => 'Zadejte 6-místný kód, který jsme Vám poslali e-mailem', + 'validation_attribute' => 'kód', + 'actions' => [ + 'resend' => [ + 'label' => 'Odeslat nový kód e-mailem', + 'notifications' => [ + 'resent' => [ + 'title' => 'Poslali jsme Vám nový kód e-mailem', + ], + 'throttled' => [ + 'title' => 'Příliš mnoho pokusů o opětovné odeslání. Počkejte prosím, než požádáte o další kód.', + ], + ], + ], + ], + 'messages' => [ + 'invalid' => 'Zadaný kód je neplatný.', + ], + ], + ], +]; diff --git a/lang/vendor/filament-panels/cs/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/cs/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..339bbb5 --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,15 @@ + 'Nastavte dvoufázové ověření (2FA)', + + 'heading' => 'Nastavte dvoufázové ověření', + + 'subheading' => '2FA přidává další úroveň zabezpečení Vašeho účtu tím, že při přihlášení vyžaduje druhou formu ověření.', + + 'actions' => [ + 'continue' => [ + 'label' => 'Pokračovat', + ], + ], +]; diff --git a/lang/vendor/filament-panels/cs/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/cs/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..747841e --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,23 @@ + [ + 'Klikněte pro', + + 'copy' => [ + 'label' => 'zkopírovat', + ], + + 'nebo', + + 'download' => [ + 'label' => 'stáhnout', + ], + + 'všechny kódy najednou.', + ], + + 'messages' => [ + 'copied' => 'Zkopírováno', + ], +]; diff --git a/lang/vendor/filament-panels/cs/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/cs/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..b49cb3d --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,14 @@ + 'Vaše e-mailová adresa se mění', + + 'lines' => [ + 'Obdrželi jsme žádost o změnu e-mailové adresy přiřazené k Vašemu účtu. Vaše heslo bylo použito k potvrzení této změny.', + 'Po ověření bude nová e-mailová adresa vašeho účtu: :email.', + 'Změnu můžete zablokovat před jejím ověřením kliknutím na tlačítko níže.', + 'Pokud jste tuto žádost neodeslali Vy, kontaktujte nás prosím ihned.', + ], + + 'action' => 'Zablokovat změnu e-mailu', +]; diff --git a/lang/vendor/filament-panels/cs/auth/pages/edit-profile.php b/lang/vendor/filament-panels/cs/auth/pages/edit-profile.php new file mode 100644 index 0000000..4d60756 --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'E-mailová adresa', + ], + + 'name' => [ + 'label' => 'Jméno', + ], + + 'password' => [ + 'label' => 'Nové heslo', + 'validation_attribute' => 'heslo', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrďte nové heslo', + 'validation_attribute' => 'potvrzení hesla', + ], + + 'current_password' => [ + 'label' => 'Aktuální heslo', + 'below_content' => 'Z bezpečnostních důvodů potvrďte své heslo pro pokračování.', + 'validation_attribute' => 'aktuální heslo', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Uložit', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Dvoufaktorové ověření (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Požadavek na změnu e-mailové adresy byl odeslán', + 'body' => 'Požadavek na změnu Vaší e-mailové adresy byl odeslán na :email. Zkontrolujte si e-mail a potvrďte změnu.', + ], + + 'saved' => [ + 'title' => 'Uloženo', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Zrušit', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/cs/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..0d4c9ac --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Ověřte svou e-mailovou adresu', + + 'heading' => 'Ověřte svou e-mailovou adresu', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Znovu odeslat ověřovací e-mail', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Neobdrželi jste e-mail, který jsme poslali?', + 'notification_sent' => 'Na Vaši e-mailovou adresu :email jsme zaslali zprávu s pokyny pro ověření této adresy.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Ověřovací e-mail byl odeslán', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Příliš mnoho požadavků', + 'body' => 'Zkuste to prosím znovu za :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/auth/pages/login.php b/lang/vendor/filament-panels/cs/auth/pages/login.php new file mode 100644 index 0000000..c886f1b --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Přihlášení', + + 'heading' => 'Přihlašte se k Vašemu účtu', + + 'actions' => [ + + 'register' => [ + 'before' => 'nebo', + 'label' => 'se zaregistrujte', + ], + + 'request_password_reset' => [ + 'label' => 'Zapomněli jste heslo?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Emailová adresa', + ], + + 'password' => [ + 'label' => 'Heslo', + ], + + 'remember' => [ + 'label' => 'Zapamatovat si mě', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Přihlásit se', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Ověřte svou identitu', + + 'subheading' => 'Pro pokračování přihlášení musíte ověřit svou identitu.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Jak si přejete ověřit svou identitu?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Potvrdit přihlášení', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Chybně zadané přihlašovací údaje.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Příliš mnoho pokusů o přihlášení.', + 'body' => 'Zkuste to znovu za :seconds vteřin.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/cs/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..a856c72 --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Obnovení hesla', + + 'heading' => 'Zapomněli jste heslo?', + + 'actions' => [ + + 'login' => [ + 'label' => 'zpět na přihlášení', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-mailová adresa', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Odeslat odkaz na obnovení hesla', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Pokud Váš účet neexistuje, e-mail neobdržíte.', + ], + + 'throttled' => [ + 'title' => 'Příliš mnoho požadavků', + 'body' => 'Zkuste to prosím znovu za :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/cs/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..2b6941a --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Nastavte si nové heslo', + + 'heading' => 'Nastavte si nové heslo', + + 'form' => [ + + 'email' => [ + 'label' => 'E-mailová adresa', + ], + + 'password' => [ + 'label' => 'Heslo', + 'validation_attribute' => 'heslo', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrďte heslo', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Nastavit nové heslo', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Příliš mnoho požadavků', + 'body' => 'Zkuste to prosím znovu za :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/auth/pages/register.php b/lang/vendor/filament-panels/cs/auth/pages/register.php new file mode 100644 index 0000000..51c6b3f --- /dev/null +++ b/lang/vendor/filament-panels/cs/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Registrace', + + 'heading' => 'Zaregistrovat se', + + 'actions' => [ + + 'login' => [ + 'before' => 'nebo', + 'label' => 'přihlásit se ke svému účtu', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-mailová adresa', + ], + + 'name' => [ + 'label' => 'Jméno', + ], + + 'password' => [ + 'label' => 'Heslo', + 'validation_attribute' => 'heslo', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrďte heslo', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Zaregistrovat se', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Příliš mnoho požadavků', + 'body' => 'Zkuste to prosím znovu za :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/error-notifications.php b/lang/vendor/filament-panels/cs/error-notifications.php new file mode 100644 index 0000000..5538d49 --- /dev/null +++ b/lang/vendor/filament-panels/cs/error-notifications.php @@ -0,0 +1,8 @@ + 'Chyba při načítání stránky', + + 'body' => 'Při pokusu o načtení této stránky došlo k chybě. Zkuste to prosím později znovu.', + +]; diff --git a/lang/vendor/filament-panels/cs/global-search.php b/lang/vendor/filament-panels/cs/global-search.php new file mode 100644 index 0000000..1dbf6cc --- /dev/null +++ b/lang/vendor/filament-panels/cs/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Vyhledávání', + 'placeholder' => 'Hledat', + ], + + 'no_results_message' => 'Nenalezeny žádné výsledky.', + +]; diff --git a/lang/vendor/filament-panels/cs/layout.php b/lang/vendor/filament-panels/cs/layout.php new file mode 100644 index 0000000..1219ca1 --- /dev/null +++ b/lang/vendor/filament-panels/cs/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Správa předplatného', + ], + + 'logout' => [ + 'label' => 'Odhlásit se', + ], + + 'open_database_notifications' => [ + 'label' => 'Zobrazit notifikace', + ], + + 'open_user_menu' => [ + 'label' => 'Nabídka uživatele', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Skrýt boční panel', + ], + + 'expand' => [ + 'label' => 'Otevřít boční panel', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Zapnout tmavý režim', + ], + + 'light' => [ + 'label' => 'Zapnout světlý režim', + ], + + 'system' => [ + 'label' => 'Použít nastavení systému', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Profilový obrázek pro :name', + ], + + 'logo' => [ + 'alt' => ':name logo', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Vyhledávání nájemce', + 'placeholder' => 'Hledat', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/pages/dashboard.php b/lang/vendor/filament-panels/cs/pages/dashboard.php new file mode 100644 index 0000000..62afc64 --- /dev/null +++ b/lang/vendor/filament-panels/cs/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Nástěnka', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtr', + + 'modal' => [ + + 'heading' => 'Filtr', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Použít', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/cs/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..ba69424 --- /dev/null +++ b/lang/vendor/filament-panels/cs/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Uložit', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Uloženo', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/resources/pages/create-record.php b/lang/vendor/filament-panels/cs/resources/pages/create-record.php new file mode 100644 index 0000000..72544b1 --- /dev/null +++ b/lang/vendor/filament-panels/cs/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Vytvořit :label', + + 'breadcrumb' => 'Vytvořit', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Zrušit', + ], + + 'create' => [ + 'label' => 'Vytvořit', + ], + + 'create_another' => [ + 'label' => 'Vytvořit & vytvořit další', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Vytvořeno', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/resources/pages/edit-record.php b/lang/vendor/filament-panels/cs/resources/pages/edit-record.php new file mode 100644 index 0000000..6b3fc76 --- /dev/null +++ b/lang/vendor/filament-panels/cs/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Upravit :label', + + 'breadcrumb' => 'Upravit', + + 'navigation_label' => 'Upravit', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Zrušit', + ], + + 'save' => [ + 'label' => 'Uložit', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Upravit', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Uloženo', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/resources/pages/list-records.php b/lang/vendor/filament-panels/cs/resources/pages/list-records.php new file mode 100644 index 0000000..b6f381d --- /dev/null +++ b/lang/vendor/filament-panels/cs/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Přehled', + +]; diff --git a/lang/vendor/filament-panels/cs/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/cs/resources/pages/manage-related-records.php new file mode 100644 index 0000000..cfb963c --- /dev/null +++ b/lang/vendor/filament-panels/cs/resources/pages/manage-related-records.php @@ -0,0 +1,6 @@ + 'Spravovat :label :relationship', +]; diff --git a/lang/vendor/filament-panels/cs/resources/pages/view-record.php b/lang/vendor/filament-panels/cs/resources/pages/view-record.php new file mode 100644 index 0000000..68d03d7 --- /dev/null +++ b/lang/vendor/filament-panels/cs/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Zobrazit :label', + + 'breadcrumb' => 'Zobrazit', + + 'navigation_label' => 'Zobrazit', + + 'content' => [ + + 'tab' => [ + 'label' => 'Zobrazit', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/cs/unsaved-changes-alert.php b/lang/vendor/filament-panels/cs/unsaved-changes-alert.php new file mode 100644 index 0000000..4b165d7 --- /dev/null +++ b/lang/vendor/filament-panels/cs/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Máte neuložené změny. Opravdu chcete opustit tuto stránku?', + +]; diff --git a/lang/vendor/filament-panels/cs/widgets/account-widget.php b/lang/vendor/filament-panels/cs/widgets/account-widget.php new file mode 100644 index 0000000..1116aa8 --- /dev/null +++ b/lang/vendor/filament-panels/cs/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Odhlásit se', + ], + + ], + + 'welcome' => 'Vítejte', + +]; diff --git a/lang/vendor/filament-panels/cs/widgets/filament-info-widget.php b/lang/vendor/filament-panels/cs/widgets/filament-info-widget.php new file mode 100644 index 0000000..bad7e93 --- /dev/null +++ b/lang/vendor/filament-panels/cs/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentace', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/da/auth/pages/edit-profile.php b/lang/vendor/filament-panels/da/auth/pages/edit-profile.php new file mode 100644 index 0000000..2c61fb7 --- /dev/null +++ b/lang/vendor/filament-panels/da/auth/pages/edit-profile.php @@ -0,0 +1,51 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'E-mail', + ], + + 'name' => [ + 'label' => 'Navn', + ], + + 'password' => [ + 'label' => 'Ny adgangskode', + ], + + 'password_confirmation' => [ + 'label' => 'Bekræft ny adgangskode', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Gem ændringer', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Gemt', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annuller', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/da/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/da/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..abb8b0b --- /dev/null +++ b/lang/vendor/filament-panels/da/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Bekræft din e-mail', + + 'heading' => 'Bekræft din e-mail', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Gensend', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Har ikke modtaget den e-mail, vi sendte?', + 'notification_sent' => 'Vi har sendt en e-mail til :email med instruktioner om, hvordan du verificerer din e-mail.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Vi har sendt e-mailen igen.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'For mange forsøg på at sende igen', + 'body' => 'Prøv igen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/da/auth/pages/login.php b/lang/vendor/filament-panels/da/auth/pages/login.php new file mode 100644 index 0000000..1fb4b27 --- /dev/null +++ b/lang/vendor/filament-panels/da/auth/pages/login.php @@ -0,0 +1,60 @@ + 'Log ind', + + 'heading' => 'Log ind på din konto', + + 'actions' => [ + + 'register' => [ + 'before' => 'eller', + 'label' => 'Opret en konto', + ], + + 'request_password_reset' => [ + 'label' => 'Glemt din adgangskode?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-mail', + ], + + 'password' => [ + 'label' => 'Adgangskode', + ], + + 'remember' => [ + 'label' => 'Husk mig', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Log ind', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Den adgangskode, du har indtastet, er forkert.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'For mange loginforsøg. Prøv venligst igen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/da/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/da/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..b17c9fc --- /dev/null +++ b/lang/vendor/filament-panels/da/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'Nulstil din adgangskode', + + 'heading' => 'Glemt din adgangskode?', + + 'actions' => [ + + 'login' => [ + 'label' => 'Tilbage til login', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-mail', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Send e-mail', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'For mange forsøg', + 'body' => 'Prøv igen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/da/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/da/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..1e0853c --- /dev/null +++ b/lang/vendor/filament-panels/da/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Nulstil din adgangskode', + + 'heading' => 'Nulstil din adgangskode', + + 'form' => [ + + 'email' => [ + 'label' => 'E-mail', + ], + + 'password' => [ + 'label' => 'Adgangskode', + 'validation_attribute' => 'Adgangskode', + ], + + 'password_confirmation' => [ + 'label' => 'Bekræft adgangskode', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Nulstil adgangskode', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'For mange forsøg på nulstilling', + 'body' => 'Prøv igen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/da/auth/pages/register.php b/lang/vendor/filament-panels/da/auth/pages/register.php new file mode 100644 index 0000000..d9987ef --- /dev/null +++ b/lang/vendor/filament-panels/da/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Opret dig', + + 'heading' => 'Opret konto', + + 'actions' => [ + + 'login' => [ + 'before' => 'eller', + 'label' => 'Log ind på din konto', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-mail', + ], + + 'name' => [ + 'label' => 'Navn', + ], + + 'password' => [ + 'label' => 'Adgangskode', + 'validation_attribute' => 'adgangskode', + ], + + 'password_confirmation' => [ + 'label' => 'Bekræft adgangskode', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Opret konto', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'For mange forsøg', + 'body' => 'Prøv igen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/da/global-search.php b/lang/vendor/filament-panels/da/global-search.php new file mode 100644 index 0000000..e12d0ef --- /dev/null +++ b/lang/vendor/filament-panels/da/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Global søgning', + 'placeholder' => 'Søg', + ], + + 'no_results_message' => 'Ingen søgeresultater fundet.', + +]; diff --git a/lang/vendor/filament-panels/da/layout.php b/lang/vendor/filament-panels/da/layout.php new file mode 100644 index 0000000..c8dc2fa --- /dev/null +++ b/lang/vendor/filament-panels/da/layout.php @@ -0,0 +1,55 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Administrer abonnementer', + ], + + 'logout' => [ + 'label' => 'Log ud', + ], + + 'open_database_notifications' => [ + 'label' => 'Åbn notifikationer', + ], + + 'open_user_menu' => [ + 'label' => 'Brugermenu', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Skjul sidebjælken', + ], + + 'expand' => [ + 'label' => 'Udvid sidebjælken', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Skift til mørk tilstand', + ], + + 'light' => [ + 'label' => 'Skift til lys tilstand', + ], + + 'system' => [ + 'label' => 'Skift til systemtilstand', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/da/pages/dashboard.php b/lang/vendor/filament-panels/da/pages/dashboard.php new file mode 100644 index 0000000..ea1d4fe --- /dev/null +++ b/lang/vendor/filament-panels/da/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Dashboard', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtrer', + + 'modal' => [ + + 'heading' => 'Filter', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Anvend', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/da/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/da/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..73b2d8e --- /dev/null +++ b/lang/vendor/filament-panels/da/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Gem ændringer', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Gemt', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/da/resources/pages/create-record.php b/lang/vendor/filament-panels/da/resources/pages/create-record.php new file mode 100644 index 0000000..27fd42e --- /dev/null +++ b/lang/vendor/filament-panels/da/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Opret :label', + + 'breadcrumb' => 'Opret', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annuller', + ], + + 'create' => [ + 'label' => 'Opret', + ], + + 'create_another' => [ + 'label' => 'Opret & opret en mere', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Oprettet', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/da/resources/pages/edit-record.php b/lang/vendor/filament-panels/da/resources/pages/edit-record.php new file mode 100644 index 0000000..4179968 --- /dev/null +++ b/lang/vendor/filament-panels/da/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'Rediger :label', + + 'breadcrumb' => 'Rediger', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annuller', + ], + + 'save' => [ + 'label' => 'Gem ændringer', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Rediger', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Gemt', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/da/resources/pages/list-records.php b/lang/vendor/filament-panels/da/resources/pages/list-records.php new file mode 100644 index 0000000..51ebe1a --- /dev/null +++ b/lang/vendor/filament-panels/da/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Liste', + +]; diff --git a/lang/vendor/filament-panels/da/resources/pages/view-record.php b/lang/vendor/filament-panels/da/resources/pages/view-record.php new file mode 100644 index 0000000..2b847c4 --- /dev/null +++ b/lang/vendor/filament-panels/da/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'Vis :label', + + 'breadcrumb' => 'Vis', + + 'content' => [ + + 'tab' => [ + 'label' => 'Vis', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/da/widgets/account-widget.php b/lang/vendor/filament-panels/da/widgets/account-widget.php new file mode 100644 index 0000000..b592a12 --- /dev/null +++ b/lang/vendor/filament-panels/da/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Log ud', + ], + + ], + + 'welcome' => 'Velkommen', + +]; diff --git a/lang/vendor/filament-panels/da/widgets/filament-info-widget.php b/lang/vendor/filament-panels/da/widgets/filament-info-widget.php new file mode 100644 index 0000000..c989f1a --- /dev/null +++ b/lang/vendor/filament-panels/da/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentation', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/de/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..92f9697 --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'E-Mail-Adressänderung blockiert', + 'body' => 'Sie haben erfolgreich einen Versuch zur E-Mail-Adressänderung zu :email blockiert. Falls Sie die ursprüngliche Anfrage nicht gestellt haben, kontaktieren Sie uns bitte umgehend.', + ], + + 'failed' => [ + 'title' => 'E-Mail-Adressänderung konnte nicht blockiert werden', + 'body' => 'Leider konnten Sie nicht verhindern, dass die E-Mail-Adresse zu :email geändert wurde, da sie bereits verifiziert war, bevor Sie sie blockiert haben. Falls Sie die ursprüngliche Anfrage nicht gestellt haben, kontaktieren Sie uns bitte umgehend.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/de/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..da7b0a4 --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'E-Mail-Adresse geändert', + 'body' => 'Ihre E-Mail-Adresse wurde erfolgreich zu :email geändert.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/de/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..e148f01 --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Ausschalten', + + 'modal' => [ + + 'heading' => 'Authenticator-App deaktivieren', + + 'description' => 'Sind Sie sicher, dass Sie die Authenticator-App nicht mehr verwenden möchten? Das Deaktivieren entfernt eine zusätzliche Sicherheitsebene von Ihrem Konto.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Geben Sie den 6-stelligen Code aus der Authenticator-App ein', + + 'validation_attribute' => 'Code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Stattdessen einen Wiederherstellungscode verwenden', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Der eingegebene Code ist ungültig.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Oder geben Sie einen Wiederherstellungscode ein', + + 'validation_attribute' => 'Wiederherstellungscode', + + 'messages' => [ + + 'invalid' => 'Der eingegebene Wiederherstellungscode ist ungültig.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Authenticator-App deaktivieren', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Authenticator-App wurde deaktiviert', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/de/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..a6034c3 --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Wiederherstellungscodes neu generieren', + + 'modal' => [ + + 'heading' => 'Wiederherstellungscodes der Authenticator-App neu generieren', + + 'description' => 'Wenn Sie Ihre Wiederherstellungscodes verlieren, können Sie sie hier neu generieren. Ihre alten Wiederherstellungscodes werden sofort ungültig.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Geben Sie den 6-stelligen Code aus der Authenticator-App ein', + + 'validation_attribute' => 'Code', + + 'messages' => [ + + 'invalid' => 'Der eingegebene Code ist ungültig.', + + ], + + ], + + 'password' => [ + + 'label' => 'Oder geben Sie Ihr aktuelles Passwort ein', + + 'validation_attribute' => 'Passwort', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Wiederherstellungscodes neu generieren', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Neue Wiederherstellungscodes der Authenticator-App wurden generiert', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Neue Wiederherstellungscodes', + + 'description' => 'Bitte speichern Sie die folgenden Wiederherstellungscodes an einem sicheren Ort. Sie werden nur einmal angezeigt, aber Sie benötigen sie, wenn Sie den Zugang zu Ihrer Authenticator-App verlieren:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Schließen', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/de/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..78b614e --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Einrichten', + + 'modal' => [ + + 'heading' => 'Authenticator-App einrichten', + + 'description' => <<<'BLADE' + Sie benötigen eine App wie Google Authenticator (iOS, Android), um diesen Vorgang abzuschließen. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Scannen Sie diesen QR-Code mit Ihrer Authenticator-App:', + + 'alt' => 'QR-Code zum Scannen mit einer Authenticator-App', + + ], + + 'text_code' => [ + + 'instruction' => 'Oder geben Sie diesen Code manuell ein:', + + 'messages' => [ + 'copied' => 'Kopiert', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Bitte speichern Sie die folgenden Wiederherstellungscodes an einem sicheren Ort. Sie werden nur einmal angezeigt, aber Sie benötigen sie, wenn Sie den Zugang zu Ihrer Authenticator-App verlieren:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Geben Sie den 6-stelligen Code aus der Authenticator-App ein', + + 'validation_attribute' => 'Code', + + 'below_content' => 'Sie müssen bei jeder Anmeldung oder beim Ausführen sensibler Aktionen den 6-stelligen Code aus Ihrer Authenticator-App eingeben.', + + 'messages' => [ + + 'invalid' => 'Der eingegebene Code ist ungültig.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Authenticator-App aktivieren', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Authenticator-App wurde aktiviert', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/de/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..86a50be --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Authenticator-App', + + 'below_content' => 'Verwenden Sie eine sichere App, um einen temporären Code für die Anmeldeverifizierung zu generieren.', + + 'messages' => [ + 'enabled' => 'Aktiviert', + 'disabled' => 'Deaktiviert', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Verwenden Sie einen Code aus Ihrer Authenticator-App', + + 'code' => [ + + 'label' => 'Geben Sie den 6-stelligen Code aus der Authenticator-App ein', + + 'validation_attribute' => 'Code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Stattdessen einen Wiederherstellungscode verwenden', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Der eingegebene Code ist ungültig.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Oder geben Sie einen Wiederherstellungscode ein', + + 'validation_attribute' => 'Wiederherstellungscode', + + 'messages' => [ + + 'invalid' => 'Der eingegebene Wiederherstellungscode ist ungültig.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/de/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..3c02fa4 --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + 'Ausschalten', + + 'modal' => [ + + 'heading' => 'E-Mail-Bestätigungscodes deaktivieren', + + 'description' => 'Sind Sie sicher, dass Sie keine E-Mail-Bestätigungscodes mehr erhalten möchten? Das Deaktivieren entfernt eine zusätzliche Sicherheitsebene von Ihrem Konto.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Geben Sie den 6-stelligen Code ein, den wir Ihnen per E-Mail gesendet haben', + + 'validation_attribute' => 'Code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Neuen Code per E-Mail senden', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Wir haben Ihnen einen neuen Code per E-Mail gesendet', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Der eingegebene Code ist ungültig.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'E-Mail-Bestätigungscodes deaktivieren', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'E-Mail-Bestätigungscodes wurden deaktiviert', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/de/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..ae5f80c --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + 'Einrichten', + + 'modal' => [ + + 'heading' => 'E-Mail-Bestätigungscodes einrichten', + + 'description' => 'Sie müssen bei jeder Anmeldung oder beim Ausführen sensibler Aktionen den 6-stelligen Code eingeben, den wir Ihnen per E-Mail senden. Überprüfen Sie Ihre E-Mails auf einen 6-stelligen Code, um die Einrichtung abzuschließen.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Geben Sie den 6-stelligen Code ein, den wir Ihnen per E-Mail gesendet haben', + + 'validation_attribute' => 'Code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Neuen Code per E-Mail senden', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Wir haben Ihnen einen neuen Code per E-Mail gesendet', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Der eingegebene Code ist ungültig.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'E-Mail-Bestätigungscodes aktivieren', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'E-Mail-Bestätigungscodes wurden aktiviert', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/de/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..fa25c3e --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Hier ist Ihr Anmeldecode', + + 'lines' => [ + 'Ihr Anmeldecode lautet: :code', + 'Dieser Code läuft in einer Minute ab.|Dieser Code läuft in :minutes Minuten ab.', + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/de/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..8b73dee --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'E-Mail-Verifizierungscodes', + + 'below_content' => 'Erhalten Sie einen temporären Code an Ihre E-Mail-Adresse, um Ihre Identität bei der Anmeldung zu verifizieren.', + + 'messages' => [ + 'enabled' => 'Aktiviert', + 'disabled' => 'Deaktiviert', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Code an Ihre E-Mail-Adresse senden', + + 'code' => [ + + 'label' => 'Geben Sie den 6-stelligen Code ein, den wir Ihnen per E-Mail gesendet haben', + + 'validation_attribute' => 'Code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Neuen Code per E-Mail senden', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Wir haben Ihnen einen neuen Code per E-Mail gesendet', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Der eingegebene Code ist ungültig.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/de/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..1e7491a --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Zwei-Faktor-Authentifizierung (2FA) einrichten', + + 'heading' => 'Zwei-Faktor-Authentifizierung einrichten', + + 'subheading' => '2FA fügt eine zusätzliche Sicherheitsebene zu Ihrem Konto hinzu, indem eine zweite Form der Verifizierung bei der Anmeldung erforderlich ist.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Fortfahren', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/de/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..d3bc469 --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Klicken Sie zum', + + 'copy' => [ + 'label' => 'Kopieren', + ], + + 'oder', + + 'download' => [ + 'label' => 'Herunterladen', + ], + + 'aller Codes auf einmal.', + + ], + + 'messages' => [ + 'copied' => 'Kopiert', + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/de/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..4c68503 --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Ihre E-Mail-Adresse wird geändert', + + 'lines' => [ + 'Wir haben eine Anfrage erhalten, die mit Ihrem Konto verknüpfte E-Mail-Adresse zu ändern. Ihr Passwort wurde verwendet, um diese Änderung zu bestätigen.', + 'Nach der Verifizierung wird die neue E-Mail-Adresse Ihres Kontos :email sein.', + 'Sie können die Änderung blockieren, bevor sie verifiziert wird, indem Sie unten auf die Schaltfläche klicken.', + 'Falls Sie diese Anfrage nicht gestellt haben, kontaktieren Sie uns bitte umgehend.', + ], + + 'action' => 'E-Mail-Änderung blockieren', + +]; diff --git a/lang/vendor/filament-panels/de/auth/pages/edit-profile.php b/lang/vendor/filament-panels/de/auth/pages/edit-profile.php new file mode 100644 index 0000000..878ac30 --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/pages/edit-profile.php @@ -0,0 +1,67 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'E-Mail-Adresse', + ], + + 'name' => [ + 'label' => 'Name', + ], + + 'password' => [ + 'label' => 'Neues Passwort', + 'validation_attribute' => 'Passwort', + ], + + 'password_confirmation' => [ + 'label' => 'Passwort bestätigen', + 'validation_attribute' => 'Passwortbestätigung', + ], + 'current_password' => [ + 'label' => 'Aktuelles Passwort', + 'below_content' => 'Aus Sicherheitsgründen bestätigen Sie bitte Ihr Passwort, um fortzufahren.', + 'validation_attribute' => 'aktuelles Passwort', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Änderung speichern', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Zwei-Faktor-Authentifizierung (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Anfrage zur Änderung der E-Mail-Adresse gesendet', + 'body' => 'Eine Anfrage zur Änderung Ihrer E-Mail-Adresse wurde an :email gesendet. Bitte überprüfen Sie Ihre E-Mails, um die Änderung zu bestätigen.', + ], + + 'saved' => [ + 'title' => 'Gespeichert', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Abbrechen', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/de/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..e331af5 --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'E-Mail-Adresse bestätigen', + + 'heading' => 'E-Mail-Adresse bestätigen', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Erneut senden', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Keine E-Mail erhalten?', + 'notification_sent' => 'Wir haben eine E-Mail mit Anweisungen zur Bestätigung des Kontos an :email gesendet.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'E-Mail erneut gesendet.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Zu viele Versuche.', + 'body' => 'Versuchen Sie es bitte in :seconds Sekunden nochmal.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/pages/login.php b/lang/vendor/filament-panels/de/auth/pages/login.php new file mode 100644 index 0000000..95e945f --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Anmelden', + + 'heading' => 'Melden Sie sich an.', + + 'actions' => [ + + 'register' => [ + 'before' => 'oder', + 'label' => 'erstellen Sie ein Konto', + ], + + 'request_password_reset' => [ + 'label' => 'Passwort vergessen?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-Mail-Adresse', + ], + + 'password' => [ + 'label' => 'Passwort', + ], + + 'remember' => [ + 'label' => 'Angemeldet bleiben', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Anmelden', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Verifizieren Sie Ihre Identität', + + 'subheading' => 'Um mit der Anmeldung fortzufahren, müssen Sie Ihre Identität verifizieren.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Wie möchten Sie sich verifizieren?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Anmeldung bestätigen', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Zu viele Loginversuche.', + 'body' => ' Bitte in :seconds Sekunden nochmal versuchen.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/de/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..b96d401 --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Passwort zurücksetzen', + + 'heading' => 'Passwort vergessen?', + + 'actions' => [ + + 'login' => [ + 'label' => 'zurück zum Login', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-Mail-Adresse', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'E-Mail zusenden', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Wenn Ihr Konto nicht existiert, erhalten Sie keine E-Mail.', + ], + + 'throttled' => [ + 'title' => 'Zu viele Versuche.', + 'body' => 'Versuchen Sie es bitte in :seconds Sekunden nochmal.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/de/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..340a8f4 --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Passwort zurücksetzen', + + 'heading' => 'Passwort zurücksetzen', + + 'form' => [ + + 'email' => [ + 'label' => 'E-Mail-Adresse', + ], + + 'password' => [ + 'label' => 'Passwort', + 'validation_attribute' => 'Passwort', + ], + + 'password_confirmation' => [ + 'label' => 'Passwort bestätigen', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Passwort zurücksetzen', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Zu viele Versuche.', + 'body' => 'Bitte in :seconds Sekunden nochmal versuchen.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/auth/pages/register.php b/lang/vendor/filament-panels/de/auth/pages/register.php new file mode 100644 index 0000000..4cfe807 --- /dev/null +++ b/lang/vendor/filament-panels/de/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Registrieren', + + 'heading' => 'Registrieren', + + 'actions' => [ + + 'login' => [ + 'before' => 'oder', + 'label' => 'mit Konto anmelden', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-Mail-Adresse', + ], + + 'name' => [ + 'label' => 'Name', + ], + + 'password' => [ + 'label' => 'Passwort', + 'validation_attribute' => 'Passwort', + ], + + 'password_confirmation' => [ + 'label' => 'Passwort bestätigen', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Registrieren', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Zu viele Anmeldeversuche.', + 'body' => 'Bitte in :seconds Sekunden nochmal versuchen.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/error-notifications.php b/lang/vendor/filament-panels/de/error-notifications.php new file mode 100644 index 0000000..060e719 --- /dev/null +++ b/lang/vendor/filament-panels/de/error-notifications.php @@ -0,0 +1,9 @@ + 'Fehler beim Laden der Seite', + + 'body' => 'Beim Laden dieser Seite ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut.', + +]; diff --git a/lang/vendor/filament-panels/de/global-search.php b/lang/vendor/filament-panels/de/global-search.php new file mode 100644 index 0000000..9e535b4 --- /dev/null +++ b/lang/vendor/filament-panels/de/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Globale Suche', + 'placeholder' => 'Suchen', + ], + + 'no_results_message' => 'Keine Ergebnisse gefunden.', + +]; diff --git a/lang/vendor/filament-panels/de/layout.php b/lang/vendor/filament-panels/de/layout.php new file mode 100644 index 0000000..d3790f5 --- /dev/null +++ b/lang/vendor/filament-panels/de/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Abonnement verwalten', + ], + + 'logout' => [ + 'label' => 'Abmelden', + ], + + 'open_database_notifications' => [ + 'label' => 'Benachrichtigungen öffnen', + ], + + 'open_user_menu' => [ + 'label' => 'Benutzermenü', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Seitenleiste einklappen', + ], + + 'expand' => [ + 'label' => 'Seitenleiste ausklappen', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Dark Mode einschalten', + ], + + 'light' => [ + 'label' => 'Light Mode einschalten', + ], + + 'system' => [ + 'label' => 'Systemthema benutzen', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar von :name', + ], + + 'logo' => [ + 'alt' => 'Logo von :name', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Mandant suchen', + 'placeholder' => 'Suchen', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/pages/dashboard.php b/lang/vendor/filament-panels/de/pages/dashboard.php new file mode 100644 index 0000000..22da687 --- /dev/null +++ b/lang/vendor/filament-panels/de/pages/dashboard.php @@ -0,0 +1,32 @@ + 'Dashboard', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filter', + + 'modal' => [ + + 'heading' => 'Filter', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Übernehmen', + + ], + + ], + + ], + + ], + + ], +]; diff --git a/lang/vendor/filament-panels/de/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/de/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..70e2db7 --- /dev/null +++ b/lang/vendor/filament-panels/de/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Speichern', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Gespeichert', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/resources/pages/create-record.php b/lang/vendor/filament-panels/de/resources/pages/create-record.php new file mode 100644 index 0000000..b693bcb --- /dev/null +++ b/lang/vendor/filament-panels/de/resources/pages/create-record.php @@ -0,0 +1,37 @@ + ':label erstellen', + + 'breadcrumb' => 'Erstellen', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Abbrechen', + ], + + 'create' => [ + 'label' => 'Erstellen', + ], + + 'create_another' => [ + 'label' => 'Erstellen & weiterer Eintrag', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Erstellt', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/resources/pages/edit-record.php b/lang/vendor/filament-panels/de/resources/pages/edit-record.php new file mode 100644 index 0000000..c33e228 --- /dev/null +++ b/lang/vendor/filament-panels/de/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + ':label bearbeiten', + + 'breadcrumb' => 'Bearbeiten', + + 'navigation_label' => 'Bearbeiten', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Abbrechen', + ], + + 'save' => [ + 'label' => 'Speichern', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Bearbeiten', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Gespeichert', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/resources/pages/list-records.php b/lang/vendor/filament-panels/de/resources/pages/list-records.php new file mode 100644 index 0000000..141c226 --- /dev/null +++ b/lang/vendor/filament-panels/de/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Übersicht', + +]; diff --git a/lang/vendor/filament-panels/de/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/de/resources/pages/manage-related-records.php new file mode 100644 index 0000000..9281e76 --- /dev/null +++ b/lang/vendor/filament-panels/de/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + ':label :relationship verwalten', + +]; diff --git a/lang/vendor/filament-panels/de/resources/pages/view-record.php b/lang/vendor/filament-panels/de/resources/pages/view-record.php new file mode 100644 index 0000000..89e933f --- /dev/null +++ b/lang/vendor/filament-panels/de/resources/pages/view-record.php @@ -0,0 +1,19 @@ + ':label ansehen', + + 'breadcrumb' => 'Ansehen', + + 'navigation_label' => 'Ansehen', + + 'content' => [ + + 'tab' => [ + 'label' => 'Ansehen', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/de/unsaved-changes-alert.php b/lang/vendor/filament-panels/de/unsaved-changes-alert.php new file mode 100644 index 0000000..c9f5bac --- /dev/null +++ b/lang/vendor/filament-panels/de/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Sie haben ungespeicherte Änderungen. Sind Sie sicher, dass Sie diese Seite verlassen wollen?', + +]; diff --git a/lang/vendor/filament-panels/de/widgets/account-widget.php b/lang/vendor/filament-panels/de/widgets/account-widget.php new file mode 100644 index 0000000..aede5e3 --- /dev/null +++ b/lang/vendor/filament-panels/de/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Abmelden', + ], + + ], + + 'welcome' => 'Willkommen', + +]; diff --git a/lang/vendor/filament-panels/de/widgets/filament-info-widget.php b/lang/vendor/filament-panels/de/widgets/filament-info-widget.php new file mode 100644 index 0000000..c989f1a --- /dev/null +++ b/lang/vendor/filament-panels/de/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentation', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/el/auth/pages/edit-profile.php b/lang/vendor/filament-panels/el/auth/pages/edit-profile.php new file mode 100644 index 0000000..a9499b2 --- /dev/null +++ b/lang/vendor/filament-panels/el/auth/pages/edit-profile.php @@ -0,0 +1,51 @@ + 'Προφίλ', + + 'form' => [ + + 'email' => [ + 'label' => 'Διεύθυνση Email', + ], + + 'name' => [ + 'label' => 'Όνομα', + ], + + 'password' => [ + 'label' => 'Νέος Κωδικός', + ], + + 'password_confirmation' => [ + 'label' => 'Επιβεβαίωση νέου κωδικού', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Αποθήκευση αλλαγών', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Αποθηκεύτηκε', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Άκυρο', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/el/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/el/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..65e5d95 --- /dev/null +++ b/lang/vendor/filament-panels/el/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Επαληθεύστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας', + + 'heading' => 'Επαληθεύστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Επαναποστολή email επαλήθευσης', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Not received the email we sent?', + 'notification_sent' => 'We\'ve sent an email to :email containing instructions on how to verify your email address.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'We\'ve resent the email.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Πάρα πολλά αιτήματα επαναποστολής', + 'body' => 'Παρακαλούμε δοκιμάστε πάλι σε :seconds δευτερόλεπτα.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/el/auth/pages/login.php b/lang/vendor/filament-panels/el/auth/pages/login.php new file mode 100644 index 0000000..657a4d5 --- /dev/null +++ b/lang/vendor/filament-panels/el/auth/pages/login.php @@ -0,0 +1,61 @@ + 'Σύνδεση', + + 'heading' => 'Συνδεθείτε στο λογαριασμό σας', + + 'actions' => [ + + 'register' => [ + 'before' => 'ή', + 'label' => 'αιτηθείτε για έναν νέο λογαριασμό', + ], + + 'request_password_reset' => [ + 'label' => 'Ξεχάσατε τον κωδικό σας;', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Διεύθυνση ηλεκτρονικού ταχυδρομείου', + ], + + 'password' => [ + 'label' => 'Κωδικός πρόσβασης', + ], + + 'remember' => [ + 'label' => 'Θυμήσου με', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Συνδεθείτε', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Τα στοιχεία που δώσατε δεν συνδέονται με λογαριασμό.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Πάρα πολλές προσπάθειες σύνδεσης. Δοκιμάστε ξανά μετά από :seconds δευτερόλεπτα.', + 'body' => 'Παρακαλούμε δοκιμάστε πάλι σε :seconds δευτερόλεπτα.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/el/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/el/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..56ddd3a --- /dev/null +++ b/lang/vendor/filament-panels/el/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'Επαναφορά κωδικού', + + 'heading' => 'Ξεχάσατε τον κωδικό σας?', + + 'actions' => [ + + 'login' => [ + 'label' => 'back to login', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Διεύθυνση Email', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Αποστολή email', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Πάρα πολλά αιτήματα', + 'body' => 'Παρακαλούμε δοκιμάστε πάλι σε :seconds δευτερόλεπτα.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/el/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/el/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..79e5345 --- /dev/null +++ b/lang/vendor/filament-panels/el/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Επαναφορά κωδικού', + + 'heading' => 'Επαναφορά κωδικού', + + 'form' => [ + + 'email' => [ + 'label' => 'Διεύθυνση Email', + ], + + 'password' => [ + 'label' => 'Κωδικός', + 'validation_attribute' => 'κωδικός', + ], + + 'password_confirmation' => [ + 'label' => 'Επιβεβαίωση Κωδικού', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Επαναφορά Κωδικού', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Πάρα πολλά αιτήματα επαναφοράς', + 'body' => 'Παρακαλούμε δοκιμάστε πάλι σε :seconds δευτερόλεπτα.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/el/auth/pages/register.php b/lang/vendor/filament-panels/el/auth/pages/register.php new file mode 100644 index 0000000..52e957d --- /dev/null +++ b/lang/vendor/filament-panels/el/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Εγγραφή', + + 'heading' => 'Εγγραφή', + + 'actions' => [ + + 'login' => [ + 'before' => 'ή', + 'label' => 'συνδεθείτε στο λογαριασμό σας', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Διεύθυνση Email', + ], + + 'name' => [ + 'label' => 'Όνομα', + ], + + 'password' => [ + 'label' => 'Κωδικός', + 'validation_attribute' => 'Κωδικός', + ], + + 'password_confirmation' => [ + 'label' => 'Επιβεβαίωση Κωδικού', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Εγγραφείτε', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Πάρα πολλά αιτήματα εγγραφής', + 'body' => 'Παρακαλούμε δοκιμάστε πάλι σε :seconds δευτερόλεπτα.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/el/global-search.php b/lang/vendor/filament-panels/el/global-search.php new file mode 100644 index 0000000..7bddba8 --- /dev/null +++ b/lang/vendor/filament-panels/el/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Γενική αναζήτηση', + 'placeholder' => 'Αναζήτηση', + ], + + 'no_results_message' => 'Δεν βρέθηκαν αποτελέσματα.', + +]; diff --git a/lang/vendor/filament-panels/el/layout.php b/lang/vendor/filament-panels/el/layout.php new file mode 100644 index 0000000..4c09749 --- /dev/null +++ b/lang/vendor/filament-panels/el/layout.php @@ -0,0 +1,35 @@ + 'ltr', + + 'actions' => [ + + 'logout' => [ + 'label' => 'Αποσύνδεση', + ], + + 'open_database_notifications' => [ + 'label' => 'Προβολή ειδοποιήσεων', + ], + + 'open_user_menu' => [ + 'label' => 'Μενού χρήστη', + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Σκοτεινή λειτουργία', + ], + + 'light' => [ + 'label' => 'Φωτεινή λειτουργία', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/el/pages/dashboard.php b/lang/vendor/filament-panels/el/pages/dashboard.php new file mode 100644 index 0000000..310aeca --- /dev/null +++ b/lang/vendor/filament-panels/el/pages/dashboard.php @@ -0,0 +1,7 @@ + 'Πίνακας ελέγχου', + +]; diff --git a/lang/vendor/filament-panels/el/resources/pages/create-record.php b/lang/vendor/filament-panels/el/resources/pages/create-record.php new file mode 100644 index 0000000..2452cbe --- /dev/null +++ b/lang/vendor/filament-panels/el/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Δημιουργία :label', + + 'breadcrumb' => 'Δημιούργησε', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Ακύρωση', + ], + + 'create' => [ + 'label' => 'Δημιούργησε', + ], + + 'create_another' => [ + 'label' => 'Δημιούργησε & Δημιούργησε ακόμα ένα', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Δημιουργήθηκε', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/el/resources/pages/edit-record.php b/lang/vendor/filament-panels/el/resources/pages/edit-record.php new file mode 100644 index 0000000..48bddeb --- /dev/null +++ b/lang/vendor/filament-panels/el/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'Επεξεργασία :label', + + 'breadcrumb' => 'Επεξεργασία', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Ακύρωση', + ], + + 'save' => [ + 'label' => 'Αποθήκευση αλλαγών', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Επεξεργασία', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Αποθηκεύτηκε', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/el/resources/pages/list-records.php b/lang/vendor/filament-panels/el/resources/pages/list-records.php new file mode 100644 index 0000000..85d2dc5 --- /dev/null +++ b/lang/vendor/filament-panels/el/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Λίστα', + +]; diff --git a/lang/vendor/filament-panels/el/resources/pages/view-record.php b/lang/vendor/filament-panels/el/resources/pages/view-record.php new file mode 100644 index 0000000..184528a --- /dev/null +++ b/lang/vendor/filament-panels/el/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'Προεπισκόπηση :label', + + 'breadcrumb' => 'Προεπισκόπηση', + + 'content' => [ + + 'tab' => [ + 'label' => 'Προεπισκόπηση', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/el/widgets/account-widget.php b/lang/vendor/filament-panels/el/widgets/account-widget.php new file mode 100644 index 0000000..f80ec06 --- /dev/null +++ b/lang/vendor/filament-panels/el/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Αποσύνδεση', + ], + + ], + + 'welcome' => 'Καλώς ήρθες', + +]; diff --git a/lang/vendor/filament-panels/el/widgets/filament-info-widget.php b/lang/vendor/filament-panels/el/widgets/filament-info-widget.php new file mode 100644 index 0000000..5b5d310 --- /dev/null +++ b/lang/vendor/filament-panels/el/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Οδηγός', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/en/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..c75991d --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Email address change blocked', + 'body' => 'You have successfully blocked an email address change attempt to :email. If you did not make the original request, please contact us immediately.', + ], + + 'failed' => [ + 'title' => 'Failed to block email address change', + 'body' => 'Unfortunately, you were unable to prevent the email address from being changed to :email, since it was already verified before you blocked it. If you did not make the original request, please contact us immediately.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/en/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..7d62db3 --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Email address changed', + 'body' => 'Your email address has been successfully changed to :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/en/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..6de2a3a --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,75 @@ + 'Turn off', + + 'modal' => [ + + 'heading' => 'Disable authenticator app', + + 'description' => 'Are you sure you want to stop using the authenticator app? Disabling this will remove an extra layer of security from your account.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Enter the 6-digit code from the authenticator app', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Use a recovery code instead', + ], + + ], + + 'messages' => [ + + 'invalid' => 'The code you entered is invalid.', + + 'rate_limited' => 'Too many attempts. Please try again later.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Or, enter a recovery code', + + 'validation_attribute' => 'recovery code', + + 'messages' => [ + + 'invalid' => 'The recovery code you entered is invalid.', + + 'rate_limited' => 'Too many attempts. Please try again later.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Disable authenticator app', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Authenticator app has been disabled', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/en/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..d0505a7 --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,79 @@ + 'Regenerate recovery codes', + + 'modal' => [ + + 'heading' => 'Regenerate authenticator app recovery codes', + + 'description' => 'If you lose your recovery codes, you can regenerate them here. Your old recovery codes will be invalidated immediately.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Enter the 6-digit code from the authenticator app', + + 'validation_attribute' => 'code', + + 'messages' => [ + + 'invalid' => 'The code you entered is invalid.', + + 'rate_limited' => 'Too many attempts. Please try again later.', + + ], + + ], + + 'password' => [ + + 'label' => 'Or, enter your current password', + + 'validation_attribute' => 'password', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Regenerate recovery codes', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'New authenticator app recovery codes have been generated', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'New recovery codes', + + 'description' => 'Please save the following recovery codes in a safe place. They will only be shown once, but you\'ll need them if you lose access to your authenticator app:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Close', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/en/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..b7e38ba --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,83 @@ + 'Set up', + + 'modal' => [ + + 'heading' => 'Set up authenticator app', + + 'description' => <<<'BLADE' + You'll need an app like Google Authenticator (iOS, Android) to complete this process. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Scan this QR code with your authenticator app:', + + 'alt' => 'QR code to scan with an authenticator app', + + ], + + 'text_code' => [ + + 'instruction' => 'Or enter this code manually:', + + 'messages' => [ + 'copied' => 'Copied', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Please save the following recovery codes in a safe place. They will only be shown once, but you\'ll need them if you lose access to your authenticator app:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Enter the 6-digit code from the authenticator app', + + 'validation_attribute' => 'code', + + 'below_content' => 'You will need to enter the 6-digit code from your authenticator app each time you sign in or perform sensitive actions.', + + 'messages' => [ + + 'invalid' => 'The code you entered is invalid.', + + 'rate_limited' => 'Too many attempts. Please try again later.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Enable authenticator app', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Authenticator app has been enabled', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/en/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..fc6bb37 --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Authenticator app', + + 'below_content' => 'Use a secure app to generate a temporary code for login verification.', + + 'messages' => [ + 'enabled' => 'Enabled', + 'disabled' => 'Disabled', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Use a code from your authenticator app', + + 'code' => [ + + 'label' => 'Enter the 6-digit code from the authenticator app', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Use a recovery code instead', + ], + + ], + + 'messages' => [ + + 'invalid' => 'The code you entered is invalid.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Or, enter a recovery code', + + 'validation_attribute' => 'recovery code', + + 'messages' => [ + + 'invalid' => 'The recovery code you entered is invalid.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/en/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..e92a03e --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,73 @@ + 'Turn off', + + 'modal' => [ + + 'heading' => 'Disable email verification codes', + + 'description' => 'Are you sure you want to stop receiving email verification codes? Disabling this will remove an extra layer of security from your account.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Enter the 6-digit code we sent you by email', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Send a new code by email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'We\'ve sent you a new code by email', + ], + + 'throttled' => [ + 'title' => 'Too many resend attempts. Please wait before requesting another code.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'The code you entered is invalid.', + + 'rate_limited' => 'Too many attempts. Please try again later.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Disable email verification codes', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Email verification codes have been disabled', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/en/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..cd560d5 --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,73 @@ + 'Set up', + + 'modal' => [ + + 'heading' => 'Set up email verification codes', + + 'description' => 'You\'ll need to enter the 6-digit code we send you by email each time you sign in or perform sensitive actions. Check your email for a 6-digit code to complete the setup.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Enter the 6-digit code we sent you by email', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Send a new code by email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'We\'ve sent you a new code by email', + ], + + 'throttled' => [ + 'title' => 'Too many resend attempts. Please wait before requesting another code.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'The code you entered is invalid.', + + 'rate_limited' => 'Too many attempts. Please try again later.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Enable email verification codes', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Email verification codes have been enabled', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/en/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..6c0eb0c --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Here\'s your sign-in code', + + 'lines' => [ + 'Your sign-in code is: :code', + 'This code will expire in a minute.|This code will expire in :minutes minutes.', + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/en/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..7f9578b --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Email verification codes', + + 'below_content' => 'Receive a temporary code at your email address to verify your identity during login.', + + 'messages' => [ + 'enabled' => 'Enabled', + 'disabled' => 'Disabled', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Send a code to your email', + + 'code' => [ + + 'label' => 'Enter the 6-digit code we sent you by email', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Send a new code by email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'We\'ve sent you a new code by email', + ], + + 'throttled' => [ + 'title' => 'Too many resend attempts. Please wait before requesting another code.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'The code you entered is invalid.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/en/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..d9248dd --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Set up two-factor authentication (2FA)', + + 'heading' => 'Set up two-factor authentication', + + 'subheading' => '2FA adds an extra layer of security to your account by requiring a second form of verification when signing in.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Continue', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/en/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..78c770c --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Click to', + + 'copy' => [ + 'label' => 'copy', + ], + + 'or', + + 'download' => [ + 'label' => 'download', + ], + + 'all the codes at once.', + + ], + + 'messages' => [ + 'copied' => 'Copied', + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/en/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..a12c516 --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Your email address is being changed', + + 'lines' => [ + 'We received a request to change the email address associated with your account. Your password was used to confirm this change.', + 'Once verified, the new email address on your account will be: :email.', + 'You can block the change before it is verified by clicking the button below.', + 'If you did not make this request, please contact us immediately.', + ], + + 'action' => 'Block Email Change', + +]; diff --git a/lang/vendor/filament-panels/en/auth/pages/edit-profile.php b/lang/vendor/filament-panels/en/auth/pages/edit-profile.php new file mode 100644 index 0000000..6a10906 --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/pages/edit-profile.php @@ -0,0 +1,73 @@ + 'Profile', + + 'form' => [ + + 'email' => [ + 'label' => 'Email address', + ], + + 'name' => [ + 'label' => 'Name', + ], + + 'password' => [ + 'label' => 'New password', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Confirm new password', + 'validation_attribute' => 'password confirmation', + ], + + 'current_password' => [ + 'label' => 'Current password', + 'below_content' => 'For security, please confirm your password to continue.', + 'validation_attribute' => 'current password', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Save changes', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Two-factor authentication (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Email address change request sent', + 'body' => 'A request to change your email address has been sent to :email. Please check your email to verify the change.', + ], + + 'saved' => [ + 'title' => 'Saved', + ], + + 'throttled' => [ + 'title' => 'Too many requests. Please try again in :seconds seconds.', + 'body' => 'Please try again in :seconds seconds.', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancel', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/en/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..3e3f159 --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Verify your email address', + + 'heading' => 'Verify your email address', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Resend it', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Not received the email we sent?', + 'notification_sent' => 'We\'ve sent an email to :email containing instructions on how to verify your email address.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'We\'ve resent the email.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Too many resend attempts', + 'body' => 'Please try again in :seconds seconds.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/pages/login.php b/lang/vendor/filament-panels/en/auth/pages/login.php new file mode 100644 index 0000000..338d829 --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Login', + + 'heading' => 'Sign in', + + 'actions' => [ + + 'register' => [ + 'before' => 'or', + 'label' => 'sign up for an account', + ], + + 'request_password_reset' => [ + 'label' => 'Forgot password?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email address', + ], + + 'password' => [ + 'label' => 'Password', + ], + + 'remember' => [ + 'label' => 'Remember me', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Sign in', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Verify your identity', + + 'subheading' => 'To continue signing in, you need to verify your identity.', + + 'form' => [ + + 'provider' => [ + 'label' => 'How would you like to verify?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Confirm sign in', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'These credentials do not match our records.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Too many login attempts', + 'body' => 'Please try again in :seconds seconds.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/en/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..a26eaa4 --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Reset your password', + + 'heading' => 'Forgot password?', + + 'actions' => [ + + 'login' => [ + 'label' => 'back to login', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email address', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Send email', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'If your account doesn\'t exist, you will not receive the email.', + ], + + 'throttled' => [ + 'title' => 'Too many requests', + 'body' => 'Please try again in :seconds seconds.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/en/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..fc9d18a --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Reset your password', + + 'heading' => 'Reset your password', + + 'form' => [ + + 'email' => [ + 'label' => 'Email address', + ], + + 'password' => [ + 'label' => 'Password', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Confirm password', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Reset password', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Too many reset attempts', + 'body' => 'Please try again in :seconds seconds.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/auth/pages/register.php b/lang/vendor/filament-panels/en/auth/pages/register.php new file mode 100644 index 0000000..54d1bcd --- /dev/null +++ b/lang/vendor/filament-panels/en/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Register', + + 'heading' => 'Sign up', + + 'actions' => [ + + 'login' => [ + 'before' => 'or', + 'label' => 'sign in to your account', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email address', + ], + + 'name' => [ + 'label' => 'Name', + ], + + 'password' => [ + 'label' => 'Password', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Confirm password', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Sign up', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Too many registration attempts', + 'body' => 'Please try again in :seconds seconds.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/error-notifications.php b/lang/vendor/filament-panels/en/error-notifications.php new file mode 100644 index 0000000..af42dbf --- /dev/null +++ b/lang/vendor/filament-panels/en/error-notifications.php @@ -0,0 +1,9 @@ + 'Error while loading page', + + 'body' => 'There was an error while attempting to load this page. Please try again later.', + +]; diff --git a/lang/vendor/filament-panels/en/global-search.php b/lang/vendor/filament-panels/en/global-search.php new file mode 100644 index 0000000..b105e0e --- /dev/null +++ b/lang/vendor/filament-panels/en/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Global search', + 'placeholder' => 'Search', + ], + + 'no_results_message' => 'No search results found.', + +]; diff --git a/lang/vendor/filament-panels/en/layout.php b/lang/vendor/filament-panels/en/layout.php new file mode 100644 index 0000000..8e1bf7f --- /dev/null +++ b/lang/vendor/filament-panels/en/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Manage subscription', + ], + + 'logout' => [ + 'label' => 'Sign out', + ], + + 'open_database_notifications' => [ + 'label' => 'Notifications', + ], + + 'open_user_menu' => [ + 'label' => 'User menu', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Collapse sidebar', + ], + + 'expand' => [ + 'label' => 'Expand sidebar', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Enable dark theme', + ], + + 'light' => [ + 'label' => 'Enable light theme', + ], + + 'system' => [ + 'label' => 'Enable system theme', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar of :name', + ], + + 'logo' => [ + 'alt' => ':name logo', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Tenant search', + 'placeholder' => 'Search', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/pages/dashboard.php b/lang/vendor/filament-panels/en/pages/dashboard.php new file mode 100644 index 0000000..5701edc --- /dev/null +++ b/lang/vendor/filament-panels/en/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Dashboard', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filter', + + 'modal' => [ + + 'heading' => 'Filter', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Apply', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/en/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..e0021ab --- /dev/null +++ b/lang/vendor/filament-panels/en/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Save changes', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Saved', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/resources/pages/create-record.php b/lang/vendor/filament-panels/en/resources/pages/create-record.php new file mode 100644 index 0000000..18f265d --- /dev/null +++ b/lang/vendor/filament-panels/en/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Create :label', + + 'breadcrumb' => 'Create', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancel', + ], + + 'create' => [ + 'label' => 'Create', + ], + + 'create_another' => [ + 'label' => 'Create & create another', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Created', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/resources/pages/edit-record.php b/lang/vendor/filament-panels/en/resources/pages/edit-record.php new file mode 100644 index 0000000..b7d9f16 --- /dev/null +++ b/lang/vendor/filament-panels/en/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Edit :label', + + 'breadcrumb' => 'Edit', + + 'navigation_label' => 'Edit', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancel', + ], + + 'save' => [ + 'label' => 'Save changes', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Edit', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Saved', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/resources/pages/list-records.php b/lang/vendor/filament-panels/en/resources/pages/list-records.php new file mode 100644 index 0000000..c7ba243 --- /dev/null +++ b/lang/vendor/filament-panels/en/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'List', + +]; diff --git a/lang/vendor/filament-panels/en/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/en/resources/pages/manage-related-records.php new file mode 100644 index 0000000..45f8619 --- /dev/null +++ b/lang/vendor/filament-panels/en/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Manage :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/en/resources/pages/view-record.php b/lang/vendor/filament-panels/en/resources/pages/view-record.php new file mode 100644 index 0000000..e719f4c --- /dev/null +++ b/lang/vendor/filament-panels/en/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'View :label', + + 'breadcrumb' => 'View', + + 'navigation_label' => 'View', + + 'content' => [ + + 'tab' => [ + 'label' => 'View', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/en/unsaved-changes-alert.php b/lang/vendor/filament-panels/en/unsaved-changes-alert.php new file mode 100644 index 0000000..38ed7c3 --- /dev/null +++ b/lang/vendor/filament-panels/en/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'You have unsaved changes. Are you sure you want to leave this page?', + +]; diff --git a/lang/vendor/filament-panels/en/widgets/account-widget.php b/lang/vendor/filament-panels/en/widgets/account-widget.php new file mode 100644 index 0000000..6c02637 --- /dev/null +++ b/lang/vendor/filament-panels/en/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Sign out', + ], + + ], + + 'welcome' => 'Welcome', + +]; diff --git a/lang/vendor/filament-panels/en/widgets/filament-info-widget.php b/lang/vendor/filament-panels/en/widgets/filament-info-widget.php new file mode 100644 index 0000000..e559504 --- /dev/null +++ b/lang/vendor/filament-panels/en/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Documentation', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/es/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..6e5429b --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Cambio de correo electrónico bloqueado', + 'body' => 'Ha bloqueado con éxito un intento de cambio de correo electrónico a :email. Si no hizo la solicitud original, contáctenos de inmediato.', + ], + + 'failed' => [ + 'title' => 'Error al bloquear el cambio de correo electrónico', + 'body' => 'Lamentablemente, no se pudo evitar que el correo electrónico cambiara a :email, ya que estaba verificado antes de que se bloqueara. Si no hizo la solicitud original, póngase en contacto con nosotros de inmediato.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/es/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..1c3e466 --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Dirección de correo electrónico cambiada', + 'body' => 'Su dirección de correo electrónico ha sido cambiada con éxito a :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/es/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..348c0fe --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,75 @@ + 'Apagar', + + 'modal' => [ + + 'heading' => 'Deshabilitar la aplicación de autenticación', + + 'description' => '¿Seguro que quiere dejar de usar la aplicación de autenticación? Deshabilitarla eliminará una capa adicional de seguridad de su cuenta.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Ingrese el código de 6 dígitos de la aplicación de autenticación', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Use un código de recuperación en su lugar', + ], + + ], + + 'messages' => [ + + 'invalid' => 'El código ingresado no es válido.', + + 'rate_limited' => 'Demasiados intentos. Por favor intente más tarde.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'O bien, ingrese un código de recuperación', + + 'validation_attribute' => 'código de recuperación', + + 'messages' => [ + + 'invalid' => 'El código de recuperación ingresado no es válido.', + + 'rate_limited' => 'Demasiados intentos. Por favor intente más tarde.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Deshabilitar aplicación de autenticación', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'La aplicación de autenticación ha sido deshabilitada', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/es/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..cfdbfb6 --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,79 @@ + 'Regenerar códigos de recuperación', + + 'modal' => [ + + 'heading' => 'Regenerar códigos de recuperación de la aplicación de autenticación', + + 'description' => 'Si pierde sus códigos de recuperación, puede regenerarlos aquí. Sus códigos de recuperación antiguos se invalidarán inmediatamente.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Ingrese el código de 6 dígitos de la aplicación de autenticación', + + 'validation_attribute' => 'código', + + 'messages' => [ + + 'invalid' => 'El código ingresado no es válido.', + + 'rate_limited' => 'Demasiados intentos. Por favor intente más tarde.', + + ], + + ], + + 'password' => [ + + 'label' => 'O bien, introduzca su contraseña actual', + + 'validation_attribute' => 'contraseña', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Regenerar códigos de recuperación', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Se han generado nuevos códigos de recuperación de la aplicación de autenticación', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Nuevos códigos de recuperación', + + 'description' => 'Guarde los siguientes códigos de recuperación en un lugar seguro. Solo se mostrarán una vez, y los necesitará si pierde el acceso a su aplicación de autenticación:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Cerrar', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/es/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..52a340a --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,83 @@ + 'Configurar', + + 'modal' => [ + + 'heading' => 'Configurar la aplicación de autenticación', + + 'description' => <<<'BLADE' + Usted necesitará una aplicación como Google Authenticator (iOS, Android) para completar este proceso. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Escanée este código QR con su aplicación de autenticación:', + + 'alt' => 'Código QR para escanear con una aplicación de autenticación', + + ], + + 'text_code' => [ + + 'instruction' => 'O ingrese este código manualmente:', + + 'messages' => [ + 'copied' => 'Copiado', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Guarde los siguientes códigos de recuperación en un lugar seguro. Solo se mostrarán una vez, y los necesitará si pierde el acceso a su aplicación de autenticación:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Ingrese el código de 6 dígitos de la aplicación de autenticación', + + 'validation_attribute' => 'código', + + 'below_content' => 'Necesitará ingresar el código de 6 dígitos de su aplicación de autenticación cada vez que inicie sesión o realice acciones sensibles.', + + 'messages' => [ + + 'invalid' => 'El código ingresado no es válido.', + + 'rate_limited' => 'Demasiados intentos. Por favor intente más tarde.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Habilitar aplicación de autenticación', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'La aplicación de autenticación ha sido habilitada', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/es/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..afea7b8 --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Aplicación de autenticación', + + 'below_content' => 'Utilice una aplicación segura para generar un código temporal para verificar el inicio de sesión.', + + 'messages' => [ + 'enabled' => 'Habilitada', + 'disabled' => 'Deshabilitada', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Use un código de su aplicación de autenticación', + + 'code' => [ + + 'label' => 'Ingrese el código de 6 dígitos de la aplicación de autenticación', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Use un código de recuperación en su lugar', + ], + + ], + + 'messages' => [ + + 'invalid' => 'El código ingresado no es válido.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'O bien, ingrese un código de recuperación', + + 'validation_attribute' => 'código de recuperación', + + 'messages' => [ + + 'invalid' => 'El código de recuperación ingresado no es válido.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/es/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..a689d7d --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,73 @@ + 'Apagar', + + 'modal' => [ + + 'heading' => 'Deshabilitar códigos de verificación por correo', + + 'description' => '¿Seguro que desea dejar de recibir códigos de verificación por correo? Desactivar esta opción eliminará una capa adicional de seguridad de su cuenta.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Ingrese el código de 6 dígitos que te enviamos por correo electrónico', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Enviar un código nuevo por correo electrónico', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Le hemos enviado un código nuevo por correo electrónico.', + ], + + 'throttled' => [ + 'title' => 'Demasiados intentos de reenvío. Espere antes de solicitar otro código.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'El código ingresado no es válido.', + + 'rate_limited' => 'Demasiados intentos. Por favor inténtelo más tarde.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Deshabilitar códigos de verificación por correo', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Los códigos de verificación por correo han sido deshabilitados', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/es/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..1ede6b8 --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,73 @@ + 'Configurar', + + 'modal' => [ + + 'heading' => 'Configurar códigos de verificación por correo electrónico', + + 'description' => 'Usted necesitará ingresar el código de 6 dígitos que le enviamos por correo electrónico cada vez que inicie sesión o realice acciones sensibles. Revise su correo electrónico para encontrar el código de 6 dígitos y completar la configuración.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Ingrese el código de 6 dígitos que le enviamos por correo electrónico', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Enviar un código nuevo por correo electrónico', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Le hemos enviado un código nuevo por correo electrónico.', + ], + + 'throttled' => [ + 'title' => 'Demasiados intentos de reenvío. Espere antes de solicitar otro código.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'El código ingresado no es válido.', + + 'rate_limited' => 'Demasiados intentos. Por favor intente más tarde.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Habilitar códigos de verificación por correo', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Se han habilitado los códigos de verificación por correo electrónico', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/es/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..e5b7a71 --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Aquí está su código de inicio de sesión', + + 'lines' => [ + 'Su código de inicio de sesión es: :code', + 'Este código expirará en un minuto.|Este código expirará en :minutes minutos.', + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/es/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..6c46c6a --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Códigos de verificación por correo electrónico', + + 'below_content' => 'Reciba un código temporal en su correo electrónico para verificar su identidad durante el inicio de sesión.', + + 'messages' => [ + 'enabled' => 'Habilitados', + 'disabled' => 'Deshabilitados', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Enviar un código a su correo electrónico', + + 'code' => [ + + 'label' => 'Ingrese el código de 6 dígitos que le enviamos por correo electrónico', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Enviar un código nuevo por correo electrónico', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Le hemos enviado un código nuevo por correo electrónico.', + ], + + 'throttled' => [ + 'title' => 'Demasiados intentos de reenvío. Espere antes de solicitar otro código.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'El código ingresado no es válido.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/es/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..b43570a --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Configurar la autenticación de dos factores (2FA)', + + 'heading' => 'Configura la autenticación de dos factores', + + 'subheading' => '2FA agrega una capa adicional de seguridad a su cuenta al requerir una segunda forma de verificación al iniciar sesión.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Continuar', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/es/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..f9b0255 --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Hacer clic para', + + 'copy' => [ + 'label' => 'copiar', + ], + + 'o', + + 'download' => [ + 'label' => 'descargar', + ], + + 'todos los códigos a la vez.', + + ], + + 'messages' => [ + 'copied' => 'Copiados', + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/es/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..95f3dc6 --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Su dirección de correo electrónico está siendo cambiada', + + 'lines' => [ + 'Hemos recibido una solicitud para cambiar la dirección de correo electrónico asociada a su cuenta. Se utilizó su contraseña para confirmar el cambio.', + 'Una vez verificada, la nueva dirección de correo electrónico en su cuenta será: :email.', + 'Usted puede bloquear el cambio antes de que se verifique haciendo clic en el botón de abajo.', + 'Si usted no ha realizado esta solicitud, póngase en contacto con nosotros de inmediato.', + ], + + 'action' => 'Bloquear cambio de correo', + +]; diff --git a/lang/vendor/filament-panels/es/auth/pages/edit-profile.php b/lang/vendor/filament-panels/es/auth/pages/edit-profile.php new file mode 100644 index 0000000..ee123ad --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/pages/edit-profile.php @@ -0,0 +1,73 @@ + 'Perfil', + + 'form' => [ + + 'email' => [ + 'label' => 'Dirección Email', + ], + + 'name' => [ + 'label' => 'Nombre', + ], + + 'password' => [ + 'label' => 'Nueva contraseña', + 'validation_attribute' => 'contraseña', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmar nueva contraseña', + 'validation_attribute' => 'confirmación de contraseña', + ], + + 'current_password' => [ + 'label' => 'Contraseña actual', + 'below_content' => 'Por seguridad, por favor confirme su contraseña para continuar.', + 'validation_attribute' => 'contraseña actual', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Guardar cambios', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Autenticación de dos factores (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Solicitud de cambio de correo electrónico enviada', + 'body' => 'Se ha enviado una solicitud para cambiar su dirección de correo electrónico a :email. Por favor, revise su correo para confirmar el cambio.', + ], + + 'saved' => [ + 'title' => 'Cambios guardados', + ], + + 'throttled' => [ + 'title' => 'Demasiados intentos. Por favor intente nuevamente en :seconds segundos.', + 'body' => 'Por favor intente nuevamente en :seconds segundos.', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Regresar', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/es/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..4767c9b --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Verifique su dirección de correo electrónico', + + 'heading' => 'Verifique su dirección de correo electrónico', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Reenviar', + ], + + ], + + 'messages' => [ + 'notification_not_received' => '¿No ha recibido el correo electrónico que enviamos?', + 'notification_sent' => 'Hemos enviado un correo electrónico a :email con instrucciones sobre cómo verificar su dirección de correo electrónico.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Hemos reenviado el correo electrónico.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Demasiados intentos de reenvío', + 'body' => 'Por favor, inténtelo de nuevo en :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/pages/login.php b/lang/vendor/filament-panels/es/auth/pages/login.php new file mode 100644 index 0000000..b8fc3f7 --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Acceso', + + 'heading' => 'Entre a su cuenta', + + 'actions' => [ + + 'register' => [ + 'before' => 'o', + 'label' => 'Abrir una cuenta', + ], + + 'request_password_reset' => [ + 'label' => '¿Ha olvidado su contraseña?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Correo electrónico', + ], + + 'password' => [ + 'label' => 'Contraseña', + ], + + 'remember' => [ + 'label' => 'Recordarme', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Entrar', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Verifique su identidad', + + 'subheading' => 'Para continuar con el inicio de sesión, deberá verificar su identidad.', + + 'form' => [ + + 'provider' => [ + 'label' => '¿Cómo le gustaría verificar?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Confirmar inicio de sesión', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Estas credenciales no coinciden con nuestros registros.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Demasiados intentos. Intente de nuevo en :seconds segundos.', + 'body' => 'Intente de nuevo en :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/es/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..96b23a7 --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Restablecer tu contraseña', + + 'heading' => '¿Olvidaste tu contraseña?', + + 'actions' => [ + + 'login' => [ + 'label' => 'Volver al inicio de sesión', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Correo electrónico', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Enviar email', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Si su cuenta no existe, no recibirá el correo electrónico.', + ], + + 'throttled' => [ + 'title' => 'Demasiadas solicitudes', + 'body' => 'Por favor, inténtelo de nuevo en :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/es/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..03b3496 --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Restablecer su contraseña', + + 'heading' => 'Restablecer su contraseña', + + 'form' => [ + + 'email' => [ + 'label' => 'Restablecer contraseña', + ], + + 'password' => [ + 'label' => 'Contraseña', + 'validation_attribute' => 'contraseña', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmar contraseña', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Restablecer contraseña', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Demasiados intentos de restablecimiento', + 'body' => 'Por favor, inténtelo de nuevo en :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/auth/pages/register.php b/lang/vendor/filament-panels/es/auth/pages/register.php new file mode 100644 index 0000000..c26daf2 --- /dev/null +++ b/lang/vendor/filament-panels/es/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Registrarse', + + 'heading' => 'Crear una cuenta', + + 'actions' => [ + + 'login' => [ + 'before' => 'o', + 'label' => 'iniciar sesión en su cuenta', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Correo electrónico', + ], + + 'name' => [ + 'label' => 'Nombre', + ], + + 'password' => [ + 'label' => 'Contraseña', + 'validation_attribute' => 'contraseña', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmar contraseña', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Registrarse', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Demasiados intentos de registro', + 'body' => 'Por favor, inténtelo de nuevo en :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/error-notifications.php b/lang/vendor/filament-panels/es/error-notifications.php new file mode 100644 index 0000000..f4b07e8 --- /dev/null +++ b/lang/vendor/filament-panels/es/error-notifications.php @@ -0,0 +1,9 @@ + 'Error al cargar la página', + + 'body' => 'Ocurrió un error al intentar cargar esta página. Por favor, inténtelo de nuevo más tarde.', + +]; diff --git a/lang/vendor/filament-panels/es/global-search.php b/lang/vendor/filament-panels/es/global-search.php new file mode 100644 index 0000000..0c6c9c2 --- /dev/null +++ b/lang/vendor/filament-panels/es/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Búsqueda global', + 'placeholder' => 'Buscar', + ], + + 'no_results_message' => 'No se han encontrado resultados.', + +]; diff --git a/lang/vendor/filament-panels/es/layout.php b/lang/vendor/filament-panels/es/layout.php new file mode 100644 index 0000000..db18c01 --- /dev/null +++ b/lang/vendor/filament-panels/es/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Administrar suscripción', + ], + + 'logout' => [ + 'label' => 'Salir', + ], + + 'open_database_notifications' => [ + 'label' => 'Abrir notificaciones', + ], + + 'open_user_menu' => [ + 'label' => 'Menú del usuario', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Contraer barra lateral', + ], + + 'expand' => [ + 'label' => 'Expandir barra lateral', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'A modo oscuro', + ], + + 'light' => [ + 'label' => 'A modo claro', + ], + + 'system' => [ + 'label' => 'A modo del sistema', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar of :name', + ], + + 'logo' => [ + 'alt' => ':name logo', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Buscar inquilino', + 'placeholder' => 'Buscar', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/pages/dashboard.php b/lang/vendor/filament-panels/es/pages/dashboard.php new file mode 100644 index 0000000..1a067a7 --- /dev/null +++ b/lang/vendor/filament-panels/es/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Escritorio', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtro', + + 'modal' => [ + + 'heading' => 'Filtro', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Aplicar', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/es/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..a2e5404 --- /dev/null +++ b/lang/vendor/filament-panels/es/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Guardar cambios', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Guardados', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/resources/pages/create-record.php b/lang/vendor/filament-panels/es/resources/pages/create-record.php new file mode 100644 index 0000000..cd3472d --- /dev/null +++ b/lang/vendor/filament-panels/es/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Crear :label', + + 'breadcrumb' => 'Crear', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancelar', + ], + + 'create' => [ + 'label' => 'Crear', + ], + + 'create_another' => [ + 'label' => 'Crear y crear otro', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Creado', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/resources/pages/edit-record.php b/lang/vendor/filament-panels/es/resources/pages/edit-record.php new file mode 100644 index 0000000..ceb1be4 --- /dev/null +++ b/lang/vendor/filament-panels/es/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Editar :label', + + 'breadcrumb' => 'Editar', + + 'navigation_label' => 'Editar', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancelar', + ], + + 'save' => [ + 'label' => 'Guardar cambios', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Editar', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Guardado', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/resources/pages/list-records.php b/lang/vendor/filament-panels/es/resources/pages/list-records.php new file mode 100644 index 0000000..d5ff3bd --- /dev/null +++ b/lang/vendor/filament-panels/es/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Listado', + +]; diff --git a/lang/vendor/filament-panels/es/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/es/resources/pages/manage-related-records.php new file mode 100644 index 0000000..d93cfec --- /dev/null +++ b/lang/vendor/filament-panels/es/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Administrar :relationship :label', + +]; diff --git a/lang/vendor/filament-panels/es/resources/pages/view-record.php b/lang/vendor/filament-panels/es/resources/pages/view-record.php new file mode 100644 index 0000000..b96288d --- /dev/null +++ b/lang/vendor/filament-panels/es/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Ver :label', + + 'breadcrumb' => 'Ver', + + 'navigation_label' => 'Ver', + + 'content' => [ + + 'tab' => [ + 'label' => 'Ver', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/es/unsaved-changes-alert.php b/lang/vendor/filament-panels/es/unsaved-changes-alert.php new file mode 100644 index 0000000..c525412 --- /dev/null +++ b/lang/vendor/filament-panels/es/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Tienes cambios sin guardar. ¿Estás seguro de que quieres abandonar esta página?', + +]; diff --git a/lang/vendor/filament-panels/es/widgets/account-widget.php b/lang/vendor/filament-panels/es/widgets/account-widget.php new file mode 100644 index 0000000..d8d868d --- /dev/null +++ b/lang/vendor/filament-panels/es/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Salir', + ], + + ], + + 'welcome' => 'Bienvenida/o', + +]; diff --git a/lang/vendor/filament-panels/es/widgets/filament-info-widget.php b/lang/vendor/filament-panels/es/widgets/filament-info-widget.php new file mode 100644 index 0000000..0b7ba01 --- /dev/null +++ b/lang/vendor/filament-panels/es/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Documentación', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/eu/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..acc1628 --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Helbide elektronikoaren aldaketa blokeatuta', + 'body' => 'Helbide elektronikoa :email-ra aldatzeko saiakera blokeatu duzu arrakastaz. Jatorrizko eskaera zuk egin ez baduzu, jarri gurekin harremanetan berehala.', + ], + + 'failed' => [ + 'title' => 'Ezin izan da helbide elektronikoaren aldaketa blokeatu', + 'body' => 'Zoritxarrez, ezin izan duzu helbide elektronikoa :email-ra aldatzea galarazi, dagoeneko egiaztatu zelako zuk blokeatu baino lehen. Jatorrizko eskaera zuk egin ez baduzu, jarri gurekin harremanetan berehala.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/eu/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..e917ff0 --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Helbide elektronikoa aldatuta', + 'body' => 'Zure helbide elektronikoa arrakastaz aldatu da :email-ra.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/eu/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..d7c9f33 --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,75 @@ + 'Itzali', + + 'modal' => [ + + 'heading' => 'Autentifikazio-aplikazioa desgaitu', + + 'description' => 'Ziur zaude autentifikazio-aplikazioa erabiltzeari utzi nahi diozula? Hau desgaitzeak segurtasun-geruza gehigarri bat kenduko du zure kontutik.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Sartu autentifikazio-aplikazioko 6 digituko kodea', + + 'validation_attribute' => 'kodea', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Erabili berreskuratze-kode bat horren ordez', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Sartu duzun kodea ez da baliozkoa.', + + 'rate_limited' => 'Saiakera gehiegi. Mesedez, saiatu berriro geroago.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Edo, sartu berreskuratze-kode bat', + + 'validation_attribute' => 'berreskuratze-kodea', + + 'messages' => [ + + 'invalid' => 'Sartu duzun berreskuratze-kodea ez da baliozkoa.', + + 'rate_limited' => 'Saiakera gehiegi. Mesedez, saiatu berriro geroago.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Autentifikazio-aplikazioa desgaitu', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Autentifikazio-aplikazioa desgaitu da', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/eu/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..27499d8 --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,79 @@ + 'Berreskuratze-kodeak birsortu', + + 'modal' => [ + + 'heading' => 'Autentifikazio-aplikazioaren berreskuratze-kodeak birsortu', + + 'description' => 'Berreskuratze-kodeak galtzen badituzu, hemen birsor ditzakezu. Zure berreskuratze-kode zaharrak berehala baliogabetuko dira.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Sartu autentifikazio-aplikazioko 6 digituko kodea', + + 'validation_attribute' => 'kodea', + + 'messages' => [ + + 'invalid' => 'Sartu duzun kodea ez da baliozkoa.', + + 'rate_limited' => 'Saiakera gehiegi. Mesedez, saiatu berriro geroago.', + + ], + + ], + + 'password' => [ + + 'label' => 'Edo, sartu zure uneko pasahitza', + + 'validation_attribute' => 'pasahitza', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Berreskuratze-kodeak birsortu', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Autentifikazio-aplikazioaren berreskuratze-kode berriak sortu dira', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Berreskuratze-kode berriak', + + 'description' => 'Mesedez, gorde ondorengo berreskuratze-kodeak leku seguru batean. Behin bakarrik erakutsiko dira, baina behar izango dituzu autentifikazio-aplikaziorako sarbidea galtzen baduzu:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Itxi', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/eu/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..0d261b6 --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,83 @@ + 'Konfiguratu', + + 'modal' => [ + + 'heading' => 'Autentifikazio-aplikazioa konfiguratu', + + 'description' => <<<'BLADE' + Google Authenticator bezalako aplikazio bat beharko duzu (iOS, Android) prozesu hau osatzeko. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Eskaneatu QR kode hau zure autentifikazio-aplikazioarekin:', + + 'alt' => 'Autentifikazio-aplikazio batekin eskaneatzeko QR kodea', + + ], + + 'text_code' => [ + + 'instruction' => 'Edo sartu kode hau eskuz:', + + 'messages' => [ + 'copied' => 'Kopiatuta', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Mesedez, gorde ondorengo berreskuratze-kodeak leku seguru batean. Behin bakarrik erakutsiko dira, baina behar izango dituzu autentifikazio-aplikaziorako sarbidea galtzen baduzu:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Sartu autentifikazio-aplikazioko 6 digituko kodea', + + 'validation_attribute' => 'kodea', + + 'below_content' => 'Saioa hasten duzun edo ekintza sentikorrak egiten dituzun bakoitzean, autentifikazio-aplikazioko 6 digituko kodea sartu beharko duzu.', + + 'messages' => [ + + 'invalid' => 'Sartu duzun kodea ez da baliozkoa.', + + 'rate_limited' => 'Saiakera gehiegi. Mesedez, saiatu berriro geroago.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Autentifikazio-aplikazioa gaitu', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Autentifikazio-aplikazioa gaitu da', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/eu/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..2a574a3 --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Autentifikazio-aplikazioa', + + 'below_content' => 'Erabili aplikazio seguru bat saio-hasieraren egiaztapenerako aldi baterako kodea sortzeko.', + + 'messages' => [ + 'enabled' => 'Gaituta', + 'disabled' => 'Desgaituta', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Erabili autentifikazio-aplikazioko kodea', + + 'code' => [ + + 'label' => 'Sartu autentifikazio-aplikazioko 6 digituko kodea', + + 'validation_attribute' => 'kodea', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Erabili berreskuratze-kode bat horren ordez', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Sartu duzun kodea ez da baliozkoa.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Edo, sartu berreskuratze-kode bat', + + 'validation_attribute' => 'berreskuratze-kodea', + + 'messages' => [ + + 'invalid' => 'Sartu duzun berreskuratze-kodea ez da baliozkoa.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/eu/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..bd590a9 --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,73 @@ + 'Itzali', + + 'modal' => [ + + 'heading' => 'Posta elektronikoko egiaztapen-kodeak desgaitu', + + 'description' => 'Ziur zaude posta elektronikoko egiaztapen-kodeak jasotzeari utzi nahi diozula? Hau desgaitzeak segurtasun-geruza gehigarri bat kenduko du zure kontutik.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Sartu posta elektronikoz bidalitako 6 digituko kodea', + + 'validation_attribute' => 'kodea', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Kode berria bidali posta elektronikoz', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Kode berria bidali dizugu posta elektronikoz', + ], + + 'throttled' => [ + 'title' => 'Birbidalketa-saiakera gehiegi. Mesedez, itxaron beste kode bat eskatu aurretik.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Sartu duzun kodea ez da baliozkoa.', + + 'rate_limited' => 'Saiakera gehiegi. Mesedez, saiatu berriro geroago.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Posta elektronikoko egiaztapen-kodeak desgaitu', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Posta elektronikoko egiaztapen-kodeak desgaitu dira', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/eu/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..a8d3660 --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,73 @@ + 'Konfiguratu', + + 'modal' => [ + + 'heading' => 'Posta elektronikoko egiaztapen-kodeak konfiguratu', + + 'description' => 'Saioa hasten duzun edo ekintza sentikorrak egiten dituzun bakoitzean, posta elektronikoz bidalitako 6 digituko kodea sartu beharko duzu. Begiratu zure posta elektronikoa konfigurazioa osatzeko 6 digituko kodea lortzeko.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Sartu posta elektronikoz bidalitako 6 digituko kodea', + + 'validation_attribute' => 'kodea', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Kode berria bidali posta elektronikoz', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Kode berria bidali dizugu posta elektronikoz', + ], + + 'throttled' => [ + 'title' => 'Birbidalketa-saiakera gehiegi. Mesedez, itxaron beste kode bat eskatu aurretik.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Sartu duzun kodea ez da baliozkoa.', + + 'rate_limited' => 'Saiakera gehiegi. Mesedez, saiatu berriro geroago.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Posta elektronikoko egiaztapen-kodeak gaitu', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Posta elektronikoko egiaztapen-kodeak gaitu dira', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/eu/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..73233a2 --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Hona hemen zure saio-hasierako kodea', + + 'lines' => [ + 'Zure saio-hasierako kodea hau da: :code', + 'Kode hau minutu batean iraungiko da.|Kode hau :minutes minututan iraungiko da.', + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/eu/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..66f7d2c --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Posta elektronikoko egiaztapen-kodeak', + + 'below_content' => 'Jaso aldi baterako kodea zure helbide elektronikoan zure identitatea egiaztatzeko saio-hasieran.', + + 'messages' => [ + 'enabled' => 'Gaituta', + 'disabled' => 'Desgaituta', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Bidali kodea zure posta elektronikora', + + 'code' => [ + + 'label' => 'Sartu posta elektronikoz bidalitako 6 digituko kodea', + + 'validation_attribute' => 'kodea', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Kode berria bidali posta elektronikoz', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Kode berria bidali dizugu posta elektronikoz', + ], + + 'throttled' => [ + 'title' => 'Birbidalketa-saiakera gehiegi. Mesedez, itxaron beste kode bat eskatu aurretik.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Sartu duzun kodea ez da baliozkoa.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/eu/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..bc1c7ca --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Bi faktoreko autentifikazioa (2FA) konfiguratu', + + 'heading' => 'Bi faktoreko autentifikazioa konfiguratu', + + 'subheading' => '2FA-k segurtasun-geruza gehigarri bat gehitzen dio zure kontuari, saioa hastean bigarren egiaztapen-modu bat eskatuz.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Jarraitu', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/eu/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..beaa830 --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Egin klik', + + 'copy' => [ + 'label' => 'kopiatzeko', + ], + + 'edo', + + 'download' => [ + 'label' => 'deskargatzeko', + ], + + 'kode guztiak aldi berean.', + + ], + + 'messages' => [ + 'copied' => 'Kopiatuta', + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/eu/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..ade90c8 --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Zure helbide elektronikoa aldatzen ari da', + + 'lines' => [ + 'Zure kontuarekin lotutako helbide elektronikoa aldatzeko eskaera jaso dugu. Zure pasahitza erabili da aldaketa hau berresteko.', + 'Egiaztatzen denean, zure kontuko helbide elektroniko berria :email izango da.', + 'Aldaketa blokeatu dezakezu egiaztatu aurretik beheko botoian klik eginez.', + 'Eskaera hau zuk egin ez baduzu, jarri gurekin harremanetan berehala.', + ], + + 'action' => 'Helbide elektronikoaren aldaketa blokeatu', + +]; diff --git a/lang/vendor/filament-panels/eu/auth/pages/edit-profile.php b/lang/vendor/filament-panels/eu/auth/pages/edit-profile.php new file mode 100644 index 0000000..d8d7d63 --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/pages/edit-profile.php @@ -0,0 +1,73 @@ + 'Profila', + + 'form' => [ + + 'email' => [ + 'label' => 'Helbide elektronikoa', + ], + + 'name' => [ + 'label' => 'Izena', + ], + + 'password' => [ + 'label' => 'Pasahitz berria', + 'validation_attribute' => 'pasahitza', + ], + + 'password_confirmation' => [ + 'label' => 'Berretsi pasahitz berria', + 'validation_attribute' => 'pasahitzaren berrespena', + ], + + 'current_password' => [ + 'label' => 'Uneko pasahitza', + 'below_content' => 'Segurtasunerako, berretsi zure pasahitza jarraitzeko.', + 'validation_attribute' => 'uneko pasahitza', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Gorde aldaketak', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Bi faktoreko autentifikazioa (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Helbide elektronikoaren aldaketa-eskaera bidalita', + 'body' => 'Zure helbide elektronikoa aldatzeko eskaera :email-ra bidali da. Begiratu zure posta elektronikoa aldaketa egiaztatzeko.', + ], + + 'saved' => [ + 'title' => 'Gordeta', + ], + + 'throttled' => [ + 'title' => 'Eskaera gehiegi. Mesedez, saiatu berriro :seconds segundu barru.', + 'body' => 'Mesedez, saiatu berriro :seconds segundu barru.', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Utzi', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/eu/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..c79fa2d --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Egiaztatu zure helbide elektronikoa', + + 'heading' => 'Egiaztatu zure helbide elektronikoa', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Birbidali', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Ez duzu bidali dugun mezu elektronikoa jaso?', + 'notification_sent' => ':email helbidera mezu elektroniko bat bidali dugu zure helbide elektronikoa egiaztatzeko argibideekin.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Mezu elektronikoa birbidali dugu.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Birbidalketa-saiakera gehiegi', + 'body' => 'Mesedez, saiatu berriro :seconds segundu barru.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/pages/login.php b/lang/vendor/filament-panels/eu/auth/pages/login.php new file mode 100644 index 0000000..e5fe69a --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Hasi saioa', + + 'heading' => 'Hasi saioa', + + 'actions' => [ + + 'register' => [ + 'before' => 'edo', + 'label' => 'sortu kontu bat', + ], + + 'request_password_reset' => [ + 'label' => 'Pasahitza ahaztu duzu?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Helbide elektronikoa', + ], + + 'password' => [ + 'label' => 'Pasahitza', + ], + + 'remember' => [ + 'label' => 'Gogoratu nazazu', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Hasi saioa', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Egiaztatu zure identitatea', + + 'subheading' => 'Saioa hasten jarraitzeko, zure identitatea egiaztatu behar duzu.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Nola nahi duzu egiaztatu?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Berretsi saio-hasiera', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Kredentzial hauek ez datoz bat gure erregistroekin.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Saio-hasiera saiakera gehiegi', + 'body' => 'Mesedez, saiatu berriro :seconds segundu barru.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/eu/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..7eaa03c --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Berrezarri zure pasahitza', + + 'heading' => 'Pasahitza ahaztu duzu?', + + 'actions' => [ + + 'login' => [ + 'label' => 'itzuli saio-hasierara', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Helbide elektronikoa', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Bidali mezu elektronikoa', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Zure kontua existitzen ez bada, ez duzu mezu elektronikoa jasoko.', + ], + + 'throttled' => [ + 'title' => 'Eskaera gehiegi', + 'body' => 'Mesedez, saiatu berriro :seconds segundu barru.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/eu/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..ccd2450 --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Berrezarri zure pasahitza', + + 'heading' => 'Berrezarri zure pasahitza', + + 'form' => [ + + 'email' => [ + 'label' => 'Helbide elektronikoa', + ], + + 'password' => [ + 'label' => 'Pasahitza', + 'validation_attribute' => 'pasahitza', + ], + + 'password_confirmation' => [ + 'label' => 'Berretsi pasahitza', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Berrezarri pasahitza', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Berrezartze-saiakera gehiegi', + 'body' => 'Mesedez, saiatu berriro :seconds segundu barru.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/auth/pages/register.php b/lang/vendor/filament-panels/eu/auth/pages/register.php new file mode 100644 index 0000000..d8a2c4c --- /dev/null +++ b/lang/vendor/filament-panels/eu/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Eman izena', + + 'heading' => 'Sortu kontua', + + 'actions' => [ + + 'login' => [ + 'before' => 'edo', + 'label' => 'hasi saioa zure kontuan', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Helbide elektronikoa', + ], + + 'name' => [ + 'label' => 'Izena', + ], + + 'password' => [ + 'label' => 'Pasahitza', + 'validation_attribute' => 'pasahitza', + ], + + 'password_confirmation' => [ + 'label' => 'Berretsi pasahitza', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Eman izena', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Erregistro-saiakera gehiegi', + 'body' => 'Mesedez, saiatu berriro :seconds segundu barru.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/error-notifications.php b/lang/vendor/filament-panels/eu/error-notifications.php new file mode 100644 index 0000000..7fd69ee --- /dev/null +++ b/lang/vendor/filament-panels/eu/error-notifications.php @@ -0,0 +1,9 @@ + 'Errorea orrialdea kargatzean', + + 'body' => 'Errore bat gertatu da orrialde hau kargatzean. Mesedez, saiatu berriro geroago.', + +]; diff --git a/lang/vendor/filament-panels/eu/global-search.php b/lang/vendor/filament-panels/eu/global-search.php new file mode 100644 index 0000000..c4dbf13 --- /dev/null +++ b/lang/vendor/filament-panels/eu/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Bilaketa orokorra', + 'placeholder' => 'Bilatu', + ], + + 'no_results_message' => 'Ez da bilaketa-emaitzarik aurkitu.', + +]; diff --git a/lang/vendor/filament-panels/eu/layout.php b/lang/vendor/filament-panels/eu/layout.php new file mode 100644 index 0000000..05618a4 --- /dev/null +++ b/lang/vendor/filament-panels/eu/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Harpidetza kudeatu', + ], + + 'logout' => [ + 'label' => 'Amaitu saioa', + ], + + 'open_database_notifications' => [ + 'label' => 'Jakinarazpenak', + ], + + 'open_user_menu' => [ + 'label' => 'Erabiltzaile-menua', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Alboko barra kontrairatu', + ], + + 'expand' => [ + 'label' => 'Alboko barra zabaldu', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Gai iluna gaitu', + ], + + 'light' => [ + 'label' => 'Gai argia gaitu', + ], + + 'system' => [ + 'label' => 'Sistemaren gaia gaitu', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => ':name-ren avatarra', + ], + + 'logo' => [ + 'alt' => ':name logoa', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Maizter-bilaketa', + 'placeholder' => 'Bilatu', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/pages/dashboard.php b/lang/vendor/filament-panels/eu/pages/dashboard.php new file mode 100644 index 0000000..8aa71ee --- /dev/null +++ b/lang/vendor/filament-panels/eu/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Aginte-panela', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Iragazki', + + 'modal' => [ + + 'heading' => 'Iragazki', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Aplikatu', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/eu/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..efdcf07 --- /dev/null +++ b/lang/vendor/filament-panels/eu/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Gorde aldaketak', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Gordeta', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/resources/pages/create-record.php b/lang/vendor/filament-panels/eu/resources/pages/create-record.php new file mode 100644 index 0000000..975543a --- /dev/null +++ b/lang/vendor/filament-panels/eu/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Sortu :label', + + 'breadcrumb' => 'Sortu', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Utzi', + ], + + 'create' => [ + 'label' => 'Sortu', + ], + + 'create_another' => [ + 'label' => 'Sortu eta beste bat sortu', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Sortuta', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/resources/pages/edit-record.php b/lang/vendor/filament-panels/eu/resources/pages/edit-record.php new file mode 100644 index 0000000..9e9ea79 --- /dev/null +++ b/lang/vendor/filament-panels/eu/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Editatu :label', + + 'breadcrumb' => 'Editatu', + + 'navigation_label' => 'Editatu', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Utzi', + ], + + 'save' => [ + 'label' => 'Gorde aldaketak', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Editatu', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Gordeta', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/resources/pages/list-records.php b/lang/vendor/filament-panels/eu/resources/pages/list-records.php new file mode 100644 index 0000000..d225f33 --- /dev/null +++ b/lang/vendor/filament-panels/eu/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Zerrenda', + +]; diff --git a/lang/vendor/filament-panels/eu/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/eu/resources/pages/manage-related-records.php new file mode 100644 index 0000000..86df11c --- /dev/null +++ b/lang/vendor/filament-panels/eu/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Kudeatu :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/eu/resources/pages/view-record.php b/lang/vendor/filament-panels/eu/resources/pages/view-record.php new file mode 100644 index 0000000..bcd59fc --- /dev/null +++ b/lang/vendor/filament-panels/eu/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Ikusi :label', + + 'breadcrumb' => 'Ikusi', + + 'navigation_label' => 'Ikusi', + + 'content' => [ + + 'tab' => [ + 'label' => 'Ikusi', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/eu/unsaved-changes-alert.php b/lang/vendor/filament-panels/eu/unsaved-changes-alert.php new file mode 100644 index 0000000..b1025c0 --- /dev/null +++ b/lang/vendor/filament-panels/eu/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Gorde gabeko aldaketak dituzu. Ziur zaude orrialde honetatik irten nahi duzula?', + +]; diff --git a/lang/vendor/filament-panels/eu/widgets/account-widget.php b/lang/vendor/filament-panels/eu/widgets/account-widget.php new file mode 100644 index 0000000..ab636f7 --- /dev/null +++ b/lang/vendor/filament-panels/eu/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Amaitu saioa', + ], + + ], + + 'welcome' => 'Ongi etorri', + +]; diff --git a/lang/vendor/filament-panels/eu/widgets/filament-info-widget.php b/lang/vendor/filament-panels/eu/widgets/filament-info-widget.php new file mode 100644 index 0000000..afb1cbb --- /dev/null +++ b/lang/vendor/filament-panels/eu/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentazioa', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/fa/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..4e9f597 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'تغییر آدرس ایمیل مسدود شد', + 'body' => 'شما با موفقیت تلاش برای تغییر آدرس ایمیل به :email را مسدود کردید. اگر درخواست اصلی را شما ارسال نکرده‌اید، لطفاً فوراً با ما تماس بگیرید.', + ], + + 'failed' => [ + 'title' => 'مسدود کردن تغییر آدرس ایمیل ناموفق بود', + 'body' => 'متاسفانه شما نتوانستید از تغییر آدرس ایمیل به :email جلوگیری کنید، زیرا قبل از مسدودسازی توسط شما، این آدرس قبلاً تأیید شده بود. اگر این درخواست را شما ارسال نکرده‌اید، لطفاً فوراً با ما تماس بگیرید.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/fa/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..a739c11 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'آدرس ایمیل تغییر کرد', + 'body' => 'آدرس ایمیل شما با موفقیت به :email تغییر یافت.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/fa/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..88f3f74 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'خاموش کردن', + + 'modal' => [ + + 'heading' => 'غیرفعال کردن اپلیکیشن تأییدکننده', + + 'description' => 'آیا مطمئن هستید که می‌خواهید استفاده از اپلیکیشن تأییدکننده را متوقف کنید؟ با غیرفعال‌سازی، یک لایه امنیتی اضافی از حساب شما حذف خواهد شد.', + + 'form' => [ + + 'code' => [ + + 'label' => 'کد ۶ رقمی اپلیکیشن تأییدکننده را وارد کنید', + + 'validation_attribute' => 'کد', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'به‌جای آن از کد بازیابی استفاده کنید', + ], + + ], + + 'messages' => [ + + 'invalid' => 'کدی که وارد کرده‌اید معتبر نیست.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'یا کد بازیابی را وارد کنید', + + 'validation_attribute' => 'کد بازیابی', + + 'messages' => [ + + 'invalid' => 'کد بازیابی واردشده معتبر نیست.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'غیرفعال کردن اپلیکیشن تأییدکننده', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'اپلیکیشن تأییدکننده غیرفعال شد', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/fa/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..8e4c8c2 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'تولید مجدد کدهای بازیابی', + + 'modal' => [ + + 'heading' => 'تولید مجدد کدهای بازیابی اپلیکیشن تأییدکننده', + + 'description' => 'اگر کدهای بازیابی خود را از دست داده‌اید، می‌توانید از اینجا آن‌ها را دوباره تولید کنید. کدهای قدیمی بلافاصله نامعتبر خواهند شد.', + + 'form' => [ + + 'code' => [ + + 'label' => 'کد ۶ رقمی اپلیکیشن تأییدکننده را وارد کنید', + + 'validation_attribute' => 'کد', + + 'messages' => [ + + 'invalid' => 'کدی که وارد کرده‌اید معتبر نیست.', + + ], + + ], + + 'password' => [ + + 'label' => 'یا رمز عبور فعلی خود را وارد کنید', + + 'validation_attribute' => 'رمز عبور', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'تولید مجدد کدهای بازیابی', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'کدهای جدید بازیابی اپلیکیشن تأییدکننده تولید شدند', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'کدهای بازیابی جدید', + + 'description' => 'لطفاً کدهای زیر را در جایی امن ذخیره کنید. این کدها فقط یک بار نمایش داده می‌شوند اما در صورت از دست دادن دسترسی به اپلیکیشن تأییدکننده به آن‌ها نیاز خواهید داشت:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'بستن', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/fa/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..91fe444 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'راه‌اندازی', + + 'modal' => [ + + 'heading' => 'راه‌اندازی اپلیکیشن تأییدکننده', + + 'description' => <<<'BLADE' + برای تکمیل این فرآیند نیاز به یک اپلیکیشن مانند Google Authenticator دارید (iOS، Android). + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'این کد QR را با اپلیکیشن تأییدکننده خود اسکن کنید:', + + 'alt' => 'کد QR برای اسکن توسط اپلیکیشن تأییدکننده', + + ], + + 'text_code' => [ + + 'instruction' => 'یا این کد را به‌صورت دستی وارد کنید:', + + 'messages' => [ + 'copied' => 'کپی شد', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'لطفاً کدهای زیر را در جایی امن ذخیره کنید. این کدها فقط یک بار نمایش داده می‌شوند اما در صورت از دست دادن دسترسی به اپلیکیشن تأییدکننده به آن‌ها نیاز خواهید داشت:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'کد ۶ رقمی اپلیکیشن تأییدکننده را وارد کنید', + + 'validation_attribute' => 'کد', + + 'below_content' => 'شما باید هر بار هنگام ورود یا انجام عملیات حساس، کد ۶ رقمی اپلیکیشن تأییدکننده را وارد کنید.', + + 'messages' => [ + + 'invalid' => 'کدی که وارد کرده‌اید معتبر نیست.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'فعال‌سازی اپلیکیشن تأییدکننده', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'اپلیکیشن تأییدکننده فعال شد', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/fa/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..606a03d --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'اپلیکیشن تأییدکننده', + + 'below_content' => 'از یک اپلیکیشن امن برای تولید کد موقت ورود استفاده کنید.', + + 'messages' => [ + 'enabled' => 'فعال', + 'disabled' => 'غیرفعال', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'استفاده از کد اپلیکیشن تأییدکننده', + + 'code' => [ + + 'label' => 'کد ۶ رقمی اپلیکیشن تأییدکننده را وارد کنید', + + 'validation_attribute' => 'کد', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'به‌جای آن از کد بازیابی استفاده کنید', + ], + + ], + + 'messages' => [ + + 'invalid' => 'کدی که وارد کرده‌اید معتبر نیست.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'یا کد بازیابی را وارد کنید', + + 'validation_attribute' => 'کد بازیابی', + + 'messages' => [ + + 'invalid' => 'کد بازیابی واردشده معتبر نیست.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/fa/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..0a44be6 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,71 @@ + 'خاموش کردن', + + 'modal' => [ + + 'heading' => 'غیرفعال کردن کدهای تأیید ایمیل', + + 'description' => 'آیا مطمئن هستید که می‌خواهید دریافت کدهای تأیید ایمیل را متوقف کنید؟ با غیرفعال‌سازی، یک لایه امنیتی اضافی از حساب شما حذف خواهد شد.', + + 'form' => [ + + 'code' => [ + + 'label' => 'کد ۶ رقمی ارسال‌شده به ایمیل خود را وارد کنید', + + 'validation_attribute' => 'کد', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'ارسال کد جدید به ایمیل', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'کد جدیدی به ایمیل شما ارسال شد', + ], + + 'throttled' => [ + 'title' => 'تعداد درخواست‌های "ارسال مجدد" زیاد است. لطفاً قبل از درخواست کد جدید کمی صبر کنید.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'کدی که وارد کرده‌اید معتبر نیست.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'غیرفعال کردن کدهای تأیید ایمیل', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'کدهای تأیید ایمیل غیرفعال شدند', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/fa/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..f967e2f --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,71 @@ + 'راه‌اندازی', + + 'modal' => [ + + 'heading' => 'راه‌اندازی کدهای تأیید ایمیل', + + 'description' => 'برای ورود یا انجام عملیات حساس باید هر بار کد ۶ رقمی ارسال‌شده به ایمیل خود را وارد کنید. لطفاً برای تکمیل راه‌اندازی ایمیل خود را بررسی کنید.', + + 'form' => [ + + 'code' => [ + + 'label' => 'کد ۶ رقمی ارسال‌شده به ایمیل خود را وارد کنید', + + 'validation_attribute' => 'کد', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'ارسال کد جدید به ایمیل', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'کد جدیدی به ایمیل شما ارسال شد', + ], + + 'throttled' => [ + 'title' => 'تعداد درخواست‌های "ارسال مجدد" زیاد است. لطفاً قبل از درخواست کد جدید کمی صبر کنید.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'کدی که وارد کرده‌اید معتبر نیست.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'فعال‌سازی کدهای تأیید ایمیل', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'کدهای تأیید ایمیل فعال شدند', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/fa/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..0718c25 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'کد ورود شما', + + 'lines' => [ + 'کد ورود شما: :code', + 'این کد تا یک دقیقه معتبر است.|این کد تا :minutes دقیقه معتبر است.', + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/fa/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..2cc9988 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'کدهای تأیید ایمیل', + + 'below_content' => 'یک کد موقت به آدرس ایمیل شما ارسال می‌شود تا هنگام ورود هویت شما تأیید شود.', + + 'messages' => [ + 'enabled' => 'فعال', + 'disabled' => 'غیرفعال', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'ارسال کد به ایمیل شما', + + 'code' => [ + + 'label' => 'کد ۶ رقمی ارسال‌شده به ایمیل خود را وارد کنید', + + 'validation_attribute' => 'کد', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'ارسال کد جدید به ایمیل', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'کد جدیدی به ایمیل شما ارسال شد', + ], + + 'throttled' => [ + 'title' => 'تعداد درخواست‌های "ارسال مجدد" زیاد است. لطفاً قبل از درخواست کد جدید کمی صبر کنید.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'کدی که وارد کرده‌اید معتبر نیست.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/fa/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..3472135 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'راه‌اندازی تأیید هویت دو مرحله‌ای (2FA)', + + 'heading' => 'راه‌اندازی تأیید هویت دو مرحله‌ای', + + 'subheading' => 'تأیید هویت دو مرحله‌ای یک لایه امنیتی اضافی به حساب شما اضافه می‌کند و هنگام ورود نیاز به یک روش تأیید دوم خواهد داشت.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'ادامه', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/fa/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..afad866 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'کلیک برای', + + 'copy' => [ + 'label' => 'کپی', + ], + + 'یا', + + 'download' => [ + 'label' => 'دانلود', + ], + + 'تمام کد به صورت یکجا.', + + ], + + 'messages' => [ + 'copied' => 'کپی شد', + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/fa/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..afc5201 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,14 @@ + 'در حال تغییر آدرس ایمیل شما', + 'lines' => [ + 'ما درخواستی برای تغییر آدرس ایمیل مرتبط با حساب شما دریافت کردیم. رمز عبور شما برای تأیید این تغییر استفاده شده است.', + 'پس از تأیید، آدرس ایمیل جدید حساب شما خواهد بود: :email.', + 'می‌توانید قبل از تأیید، این تغییر را با کلیک روی دکمه زیر متوقف کنید.', + 'اگر شما این درخواست را ثبت نکرده‌اید، لطفاً فوراً با ما تماس بگیرید.', + ], + 'action' => 'جلوگیری از تغییر ایمیل', + +]; diff --git a/lang/vendor/filament-panels/fa/auth/pages/edit-profile.php b/lang/vendor/filament-panels/fa/auth/pages/edit-profile.php new file mode 100644 index 0000000..090e262 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'پروفایل', + + 'form' => [ + + 'email' => [ + 'label' => 'ایمیل', + ], + + 'name' => [ + 'label' => 'نام', + ], + + 'password' => [ + 'label' => 'رمز عبور جدید', + 'validation_attribute' => 'رمزعبور', + ], + + 'password_confirmation' => [ + 'label' => 'تایید رمز عبور جدید', + 'validation_attribute' => 'تایید رمزعبور', + ], + + 'current_password' => [ + 'label' => 'رمز عبور فعلی', + 'below_content' => 'برای امنیت بیشتر، لطفاً برای ادامه، رمز عبور خود را تأیید کنید.', + 'validation_attribute' => 'رمز عبور فعلی', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'ذخیره تغییرات', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'احراز هویت دو مرحله‌ای (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'درخواست تغییر ایمیل ارسال شد', + 'body' => 'درخواست تغییر ایمیل به :email ارسال شده است. لطفاً ایمیل خود را بررسی کنید تا تغییر را تأیید کنید.', + ], + + 'saved' => [ + 'title' => 'ذخیره شد', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'لغو', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/fa/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..0751f6d --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'تایید آدرس ایمیل', + + 'heading' => 'تایید آدرس ایمیل', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'ارسال مجدد', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'ایمیلی که فرستادیم را دریافت نکردید؟', + 'notification_sent' => 'ما یک ایمیل حاوی دستورات لازم برای بازنشانی رمز عبور به :email فرستادیم.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'ما ایمیل را دوباره فرستادیم.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'شما بیش از حد مجاز درخواست ارسال مجدد ایمیل داشته‌اید.', + 'body' => 'لطفاً :seconds ثانیه دیگر تلاش کنید.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/pages/login.php b/lang/vendor/filament-panels/fa/auth/pages/login.php new file mode 100644 index 0000000..ff789f5 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/pages/login.php @@ -0,0 +1,85 @@ + 'ورود', + + 'heading' => 'ورود به حساب کاربری', + + 'actions' => [ + + 'register' => [ + 'before' => 'یا', + 'label' => 'ایجاد حساب کاربری', + ], + + 'request_password_reset' => [ + 'label' => 'رمز عبور خود را فراموش کرده‌اید؟', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'آدرس ایمیل', + ], + + 'password' => [ + 'label' => 'رمز عبور', + ], + + 'remember' => [ + 'label' => 'مرا به خاطر بسپار', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'ورود', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'احراز هویت دو مرحله‌ای', + + 'subheading' => 'برای ادامه ورود، باید هویت خود را تأیید کنید.', + + 'form' => [ + + 'provider' => [ + 'label' => 'چگونه می‌خواهید هویت خود را تأیید کنید؟', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'تأیید هویت', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'مشخصات واردشده با اطلاعات ما سازگار نیست.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'شما بیش از حد مجاز درخواست ورود داشته‌اید.', + 'body' => 'لطفاً :seconds ثانیه دیگر تلاش کنید.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/fa/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..58a3bb3 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'بازنشانی رمز عبور', + + 'heading' => 'رمز عبور خود را فراموش کرده‌اید؟', + + 'actions' => [ + + 'login' => [ + 'label' => 'بازگشت به ورود', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ایمیل', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'ارسال ایمیل', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'اگر حساب شما وجود نداشته باشد، ایمیلی دریافت نخواهید کرد.', + ], + + 'throttled' => [ + 'title' => 'شما بیش از حد مجاز درخواست داشته‌اید.', + 'body' => 'لطفاً :seconds ثانیه دیگر تلاش کنید.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/fa/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..b6e0054 --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'بازنشانی رمز عبور', + + 'heading' => 'بازنشانی رمز عبور', + + 'form' => [ + + 'email' => [ + 'label' => 'ایمیل', + ], + + 'password' => [ + 'label' => 'رمز عبور', + 'validation_attribute' => 'رمز عبور', + ], + + 'password_confirmation' => [ + 'label' => 'تایید رمز عبور', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'بازنشانی رمز عبور', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'شما بیش از حد مجاز درخواست بازنشانی رمز عبور داشته‌اید.', + 'body' => 'لطفاً :seconds ثانیه دیگر تلاش کنید.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/auth/pages/register.php b/lang/vendor/filament-panels/fa/auth/pages/register.php new file mode 100644 index 0000000..303090e --- /dev/null +++ b/lang/vendor/filament-panels/fa/auth/pages/register.php @@ -0,0 +1,56 @@ + 'ثبت‌نام', + + 'heading' => 'ثبت‌نام', + + 'actions' => [ + + 'login' => [ + 'before' => 'یا', + 'label' => 'ورود به حساب کاربری', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ایمیل', + ], + + 'name' => [ + 'label' => 'نام', + ], + + 'password' => [ + 'label' => 'رمز عبور', + 'validation_attribute' => 'رمز عبور', + ], + + 'password_confirmation' => [ + 'label' => 'تایید رمز عبور', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'ثبت‌نام', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'شما بیش از حد مجاز درخواست ثبت‌نام داشته‌اید.', + 'body' => 'لطفاً :seconds ثانیه دیگر تلاش کنید.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/error-notifications.php b/lang/vendor/filament-panels/fa/error-notifications.php new file mode 100644 index 0000000..0fb3312 --- /dev/null +++ b/lang/vendor/filament-panels/fa/error-notifications.php @@ -0,0 +1,9 @@ + 'خطا در بارگذاری صفحه', + + 'body' => 'هنگام بارگذاری این صفحه خطایی رخ داد. لطفاً بعداً دوباره تلاش کنید.', + +]; diff --git a/lang/vendor/filament-panels/fa/global-search.php b/lang/vendor/filament-panels/fa/global-search.php new file mode 100644 index 0000000..d57a487 --- /dev/null +++ b/lang/vendor/filament-panels/fa/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'جستجو در کل سایت', + 'placeholder' => 'جستجو', + ], + + 'no_results_message' => 'نتیجه‌ای برای جستجوی شما یافت نشد.', + +]; diff --git a/lang/vendor/filament-panels/fa/layout.php b/lang/vendor/filament-panels/fa/layout.php new file mode 100644 index 0000000..789c179 --- /dev/null +++ b/lang/vendor/filament-panels/fa/layout.php @@ -0,0 +1,72 @@ + 'rtl', + + 'actions' => [ + + 'billing' => [ + 'label' => 'مدیریت آبونمان', + ], + + 'logout' => [ + 'label' => 'خروج', + ], + + 'open_database_notifications' => [ + 'label' => 'نمایش اعلانات', + ], + + 'open_user_menu' => [ + 'label' => 'منوی کاربر', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'بستن نوار کناری', + ], + + 'expand' => [ + 'label' => 'باز کردن نوار کناری', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'حالت تیره', + ], + + 'light' => [ + 'label' => 'حالت روشن', + ], + + 'system' => [ + 'label' => 'حالت سیستم', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'آواتار :name', + ], + + 'logo' => [ + 'alt' => 'لوگوی :name', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'جستجوی واحد', + 'placeholder' => 'جستجو', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/pages/dashboard.php b/lang/vendor/filament-panels/fa/pages/dashboard.php new file mode 100644 index 0000000..f18cc2c --- /dev/null +++ b/lang/vendor/filament-panels/fa/pages/dashboard.php @@ -0,0 +1,33 @@ + 'داشبورد', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'فیلتر', + + 'modal' => [ + + 'heading' => 'فیلتر', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'اعمال فیلتر', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/fa/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..9bd652f --- /dev/null +++ b/lang/vendor/filament-panels/fa/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'ذخیره تغییرات', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'ذخیره شد', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/resources/pages/create-record.php b/lang/vendor/filament-panels/fa/resources/pages/create-record.php new file mode 100644 index 0000000..9ead4de --- /dev/null +++ b/lang/vendor/filament-panels/fa/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'ایجاد :label', + + 'breadcrumb' => 'ایجاد', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'لغو', + ], + + 'create' => [ + 'label' => 'ایجاد', + ], + + 'create_another' => [ + 'label' => 'ایجاد و ایجاد یکی دیگر', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'ایجاد شد', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/resources/pages/edit-record.php b/lang/vendor/filament-panels/fa/resources/pages/edit-record.php new file mode 100644 index 0000000..105abc0 --- /dev/null +++ b/lang/vendor/filament-panels/fa/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'ویرایش :label', + + 'breadcrumb' => 'ویرایش', + + 'navigation_label' => 'ویرایش', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'لغو', + ], + + 'save' => [ + 'label' => 'ذخیره', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'ویرایش', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'ذخیره شد', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/resources/pages/list-records.php b/lang/vendor/filament-panels/fa/resources/pages/list-records.php new file mode 100644 index 0000000..b8ec29c --- /dev/null +++ b/lang/vendor/filament-panels/fa/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'لیست', + +]; diff --git a/lang/vendor/filament-panels/fa/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/fa/resources/pages/manage-related-records.php new file mode 100644 index 0000000..1712e16 --- /dev/null +++ b/lang/vendor/filament-panels/fa/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'مدیریت :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/fa/resources/pages/view-record.php b/lang/vendor/filament-panels/fa/resources/pages/view-record.php new file mode 100644 index 0000000..9316af6 --- /dev/null +++ b/lang/vendor/filament-panels/fa/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'مشاهده :label', + + 'breadcrumb' => 'مشاهده', + + 'navigation_label' => 'مشاهده', + + 'content' => [ + + 'tab' => [ + 'label' => 'مشاهده', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fa/unsaved-changes-alert.php b/lang/vendor/filament-panels/fa/unsaved-changes-alert.php new file mode 100644 index 0000000..d6e26df --- /dev/null +++ b/lang/vendor/filament-panels/fa/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'تغییرات ذخیره نشده وجود دارد. آیا مطمئن هستید که می‌خواهید از این صفحه خارج شوید؟', + +]; diff --git a/lang/vendor/filament-panels/fa/widgets/account-widget.php b/lang/vendor/filament-panels/fa/widgets/account-widget.php new file mode 100644 index 0000000..15acb9e --- /dev/null +++ b/lang/vendor/filament-panels/fa/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'خروج', + ], + + ], + + 'welcome' => 'خوش آمدید', + +]; diff --git a/lang/vendor/filament-panels/fa/widgets/filament-info-widget.php b/lang/vendor/filament-panels/fa/widgets/filament-info-widget.php new file mode 100644 index 0000000..ef6a155 --- /dev/null +++ b/lang/vendor/filament-panels/fa/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'مستندات', + ], + + 'open_github' => [ + 'label' => 'گیت‌هاب', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/fi/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..a299125 --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Sähköpostin muutos estetty', + 'body' => 'Estit sähköpostin muutoksen osoitteeseen :email. Jos et tehnyt alkuperäistä pyyntöä, ota yhteyttä meihin heti.', + ], + + 'failed' => [ + 'title' => 'Sähköpostin muutoksen esto epäonnistui', + 'body' => 'Valitettavasti et pystynyt peruuttamaan sähköpostin muutosta osoitteeseen :email, sillä se oli jo vahvistettu ennen kuin yritit estää sen. Jos et tehnyt alkuperäistä pyyntöä, ota yhteyttä meihin heti.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/fi/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..11e6954 --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Sähköposti vaihdettu', + 'body' => 'Sähköpostisi on onnistuneesti vaihdettu osoitteeseen :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/fi/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..5483fc9 --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Pois päältä', + + 'modal' => [ + + 'heading' => 'Ota todennussovellus pois käytöstä', + + 'description' => 'Oletko varma että haluat lopettaa todennussovelluksen käytön? Sen ottaminen pois päältä heikentää tilisi turvallisuutta.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Syötä todennussovelluksen antama koodi', + + 'validation_attribute' => 'koodi', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Käytä palautuskoodia', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Annettu koodi on väärin.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Tai, anna palautuskoodi', + + 'validation_attribute' => 'palautuskoodi', + + 'messages' => [ + + 'invalid' => 'Annettu palautuskoodi on väärin.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Ota todennussovellus pois käytöstä', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Todennussovellus on otettu pois käytöstä', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/fi/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..4a658ef --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Luo palautuskoodit', + + 'modal' => [ + + 'heading' => 'Luo uudet todennussovelluksen palautuskoodit', + + 'description' => 'Jos kadotat palautuskoodit, voit luoda uudet täällä. Vanhat palautuskoodit eivät toimi enää tämän jälkeen.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Syötä todennussovelluksen antama koodi', + + 'validation_attribute' => 'koodi', + + 'messages' => [ + + 'invalid' => 'Annettu koodi on väärin.', + + ], + + ], + + 'password' => [ + + 'label' => 'Tai anna nykyinen salasana', + + 'validation_attribute' => 'salasana', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Luo uudet palautuskoodit', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Uudet todennussovelluksen palautuskoodit on luotu', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Uudet palautuskoodit', + + 'description' => 'Tallenna seuraavat palautuskoodit turvalliseen paikkaan. Ne näytetään vain nyt tämän kerran ja tarvitset näitä jos menetät pääsyn todennussovellukseen:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Sulje', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/fi/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..8907c0b --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Käyttöönotto', + + 'modal' => [ + + 'heading' => 'Ota todennussovellus käyttöön', + + 'description' => <<<'BLADE' + Tarvitset sovelluksen kuten Microsoft Authenticator (iOS, Android) käyttöönottoa varten. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Skannaa tämä QR-koodi todennussovelluksella:', + + 'alt' => 'QR-koodi todennussovelluksella skannausta varten', + + ], + + 'text_code' => [ + + 'instruction' => 'Tai syötä tämä koodi käsin:', + + 'messages' => [ + 'copied' => 'Kopioitu', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Tallenna seuraavat palautuskoodit turvalliseen paikkaan. Koodit näytetään vain kerran ja tarvitset niitä jos menetät pääsyn todennussovellukseen:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Syötä todennussovelluksen antama koodi', + + 'validation_attribute' => 'koodi', + + 'below_content' => 'Sinun tulee syöttää 6-merkkinen koodi todennussovelluksesta joka kerta kun kirjaudut tai teet arkaluonteisia toimintoja.', + + 'messages' => [ + + 'invalid' => 'Antamasi koodi on viallinen.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Ota todennussovellus käyttöön', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Todennussovellus on otettu käyttöön', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/fi/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..ddc05da --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Todennussovellus', + + 'below_content' => 'Käytä turvallista sovellusta tilapäisten koodien luomiseen kirjautumista varten.', + + 'messages' => [ + 'enabled' => 'Käytössä', + 'disabled' => 'Pois käytöstä', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Käytä koodia todennussovelluksesta', + + 'code' => [ + + 'label' => 'Anna 6-merkkinen koodi todennussovelluksesta', + + 'validation_attribute' => 'koodi', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Käytä palautuskoodia', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Antamasi koodi on viallinen.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Tai, anna palautuskoodi', + + 'validation_attribute' => 'palautuskoodi', + + 'messages' => [ + + 'invalid' => 'Antamasi palautuskoodi on viallinen.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/fi/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..f5254ec --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,71 @@ + 'Pois päältä', + + 'modal' => [ + + 'heading' => 'Ota sähköpostin vahvistuskoodit pois käytöstä', + + 'description' => 'Oletko varma että haluat lopettaa sähköpostin vahvistuskoodien käytön? Sen ottaminen pois päältä heikentää tilisi turvallisuutta.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Syötä 6-merkkinen koodi jonka lähetimme sähköpostiisi', + + 'validation_attribute' => 'koodi', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Lähetä uusi koodi sähköpostitse', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Olemme lähettänyt koodin sähköpostiisi', + ], + + 'throttled' => [ + 'title' => 'Liian monta lähetyksen yritystä. Odota ennen seuraavaa yritystä.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Annettu koodi on väärin.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Ota sähköpostin vahvistuskoodit pois käytöstä', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Sähköpostin vahvistuskoodit on otettu pois käytöstä', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/fi/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..1acda59 --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,71 @@ + 'Käyttöönotto', + + 'modal' => [ + + 'heading' => 'Ota sähköpostin vahvistuskoodit käyttöön', + + 'description' => 'Tarvitset 6-merkkisen koodin jonka lähetämme sähköpostitse joka kerta kun kirjaudut tai suoritat arkaluonteisia toimintoja. Tarkista sähköpostisi 6-merkkistä koodia jolla viimeistelet käyttöönoton.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Syötä 6-merkkinen koodi jonka lähetimme sähköpostiisi', + + 'validation_attribute' => 'koodi', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Lähetä uusi koodi sähköpostitse', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Olemme lähettänyt koodin sähköpostiisi', + ], + + 'throttled' => [ + 'title' => 'Liian monta lähetyksen yritystä. Odota ennen seuraavaa yritystä.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Annettu koodi on väärin.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Ota sähköpostin vahvistuskoodit käyttöön', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Sähköpostin vahvistuskoodit on otettu käyttöön', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/fi/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..d84bd6d --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Kirjautumiskoodisi', + + 'lines' => [ + 'Kirjautumiskoodisi on :code', + 'Koodi vanhenee minuutissa.|Koodi vanhenee :minutes minuutissa.', + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/fi/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..805f6d9 --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Sähköpostin vahvistuskoodit', + + 'below_content' => 'Vastaanota tilapäinen koodi sähköpostiisi jolla vahvistat henkilöllisyytesi kirjautumisen yhteydessä.', + + 'messages' => [ + 'enabled' => 'Käytössä', + 'disabled' => 'Pois käytöstä', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Lähetä koodi sähköpostiisi', + + 'code' => [ + + 'label' => 'Syötä 6-merkkinen koodi jonka lähetimme sähköpostiisi', + + 'validation_attribute' => 'koodi', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Lähetä uusi koodi sähköpostitse', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Olemme lähettänyt koodin sähköpostiisi', + ], + + 'throttled' => [ + 'title' => 'Liian monta lähetyksen yritystä. Odota ennen seuraavaa yritystä.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Annettu koodi on väärin.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/fi/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..330f2bd --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Ota kaksivaiheinen tunnistautuminen käyttöön (2FA)', + + 'heading' => 'Ota kaksivaiheinen tunnistautuminen käyttöön', + + 'subheading' => '2FA parantaa tilisi turvallisuutta vaatimalla toisen tunnistustavan kun kirjaudut sisään.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Jatka', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/fi/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..6f97ce2 --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Klikkaa', + + 'copy' => [ + 'label' => 'kopioidaksesi', + ], + + 'tai', + + 'download' => [ + 'label' => 'lataa', + ], + + 'kaikki koodit kerralla.', + + ], + + 'messages' => [ + 'copied' => 'Kopioitu', + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/fi/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..b8ad39e --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Sähköpostiasi vaihdetaan', + + 'lines' => [ + 'Saimme pyynnön vaihtaa tiliisi yhdistetyn sähköpostin. Salasanaasi käytettiin muutoksen vahvistamiseen', + 'Vahvistuksen jälkeen, uusi sähköposti tilillesi tulee olemaan :email.', + 'Voit estää muutoksen ennen kuin se on vahvistettu painamalla alla olevaa nappia.', + 'Jos et tehnyt pyyntöä, ota yhtettä meihin heti.', + ], + + 'action' => 'Estä sähköpostin vaihto', + +]; diff --git a/lang/vendor/filament-panels/fi/auth/pages/edit-profile.php b/lang/vendor/filament-panels/fi/auth/pages/edit-profile.php new file mode 100644 index 0000000..2e6534b --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Profiili', + + 'form' => [ + + 'email' => [ + 'label' => 'Sähköpostiosoite', + ], + + 'name' => [ + 'label' => 'Nimi', + ], + + 'password' => [ + 'label' => 'Uusi salasana', + 'validation_attribute' => 'salasana', + ], + + 'password_confirmation' => [ + 'label' => 'Vahvista salasana', + 'validation_attribute' => 'salasanan vahvistus', + ], + + 'current_password' => [ + 'label' => 'Nykyinen salasana', + 'below_content' => 'Turvallisuuden vuoksi, vahvista salasanasi jatkaaksesi.', + 'validation_attribute' => 'nykyinen salasana', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Tallenna muutokset', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Kaksivaiheinen tunnistautuminen (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Sähköpostin vaihdon pyyntö on lähetetty', + 'body' => 'Pyyntö sähköpostin vaihdosta on lähetetty osoitteeseen :email. Tarkista sähköpostisi vahvistaaksesi muutoksen.', + ], + + 'saved' => [ + 'title' => 'Tallennettu', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Takaisin', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/fi/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..cb9991e --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Vahvista sähköpostiosoite', + + 'heading' => 'Vahvista sähköpostiosoite', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Lähetä uudelleen', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Etkö saanut lähettämäämme sähköpostia?', + 'notification_sent' => 'Sähköpostiin :email on lähetetty viesti joka sisältää ohjeet sähköpostiosoitteen vahvistamiseen.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Sähköposti on lähetetty uudelleen.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Liian monta lähetyksen yritystä', + 'body' => 'Yritä uudelleen :seconds sekunnin kuluttua.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/pages/login.php b/lang/vendor/filament-panels/fi/auth/pages/login.php new file mode 100644 index 0000000..6d98ab1 --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Kirjaudu', + + 'heading' => 'Kirjaudu tilillesi', + + 'actions' => [ + + 'register' => [ + 'before' => 'tai', + 'label' => 'luo tili', + ], + + 'request_password_reset' => [ + 'label' => 'Salasana hukassa?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Sähköpostiosoite', + ], + + 'password' => [ + 'label' => 'Salasana', + ], + + 'remember' => [ + 'label' => 'Muista minut', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Kirjaudu', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Vahvista identiteetti', + + 'subheading' => 'Kirjautumista varten sinun tulee vahvistaa identiteettisi.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Miten haluaisit vahvistaa?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Vahvista kirjautuminen', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Kirjautuminen epäonnistui.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Liian monta kirjautumisyritystä', + 'body' => 'Yritä uudelleen :seconds sekunnin kuluttua.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/fi/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..11b7210 --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Salasana hukassa?', + + 'heading' => 'Salasana hukassa?', + + 'actions' => [ + + 'login' => [ + 'label' => 'takaisin kirjautumiseen', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Sähköpostiosoite', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Lähetä sähköposti', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Jos tiliä ei ole olemassa, et vastaanota sähköpostia.', + ], + + 'throttled' => [ + 'title' => 'Liian monta pyyntöä', + 'body' => 'Yritä uudelleen :seconds sekunnin kuluttua.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/fi/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..1d0d23c --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Palauta salasana', + + 'heading' => 'Palauta salasana', + + 'form' => [ + + 'email' => [ + 'label' => 'Sähköpostiosoite', + ], + + 'password' => [ + 'label' => 'Salasana', + 'validation_attribute' => 'salasana', + ], + + 'password_confirmation' => [ + 'label' => 'Vahvista salasana', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Palauta salasana', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Liian monta palautuksen yritystä', + 'body' => 'Yritä uudelleen :seconds sekunnin kuluttua.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/auth/pages/register.php b/lang/vendor/filament-panels/fi/auth/pages/register.php new file mode 100644 index 0000000..e333e73 --- /dev/null +++ b/lang/vendor/filament-panels/fi/auth/pages/register.php @@ -0,0 +1,55 @@ + 'Rekisteröi', + + 'heading' => 'Luo tili', + + 'actions' => [ + + 'login' => [ + 'before' => 'tai', + 'label' => 'kirjaudu tilillesi', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Sähköpostiosoite', + ], + + 'name' => [ + 'label' => 'Nimi', + ], + + 'password' => [ + 'label' => 'Salasana', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Vahvista salasana', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Luo tili', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Liian monta tilin luomisen yritystä', + 'body' => 'Yritä uudelleen :seconds sekunnin päästä.', + ], + ], + +]; diff --git a/lang/vendor/filament-panels/fi/error-notifications.php b/lang/vendor/filament-panels/fi/error-notifications.php new file mode 100644 index 0000000..f21113d --- /dev/null +++ b/lang/vendor/filament-panels/fi/error-notifications.php @@ -0,0 +1,9 @@ + 'Virhe sivun latauksessa', + + 'body' => 'Sivun lataamisessa oli virhe. Yritä uudelleen myöhemmin.', + +]; diff --git a/lang/vendor/filament-panels/fi/global-search.php b/lang/vendor/filament-panels/fi/global-search.php new file mode 100644 index 0000000..e5d93a0 --- /dev/null +++ b/lang/vendor/filament-panels/fi/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Globaali haku', + 'placeholder' => 'Hae', + ], + + 'no_results_message' => 'Hakutuloksia ei löytynyt.', + +]; diff --git a/lang/vendor/filament-panels/fi/layout.php b/lang/vendor/filament-panels/fi/layout.php new file mode 100644 index 0000000..b06bea2 --- /dev/null +++ b/lang/vendor/filament-panels/fi/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Hallitse tilausta', + ], + + 'logout' => [ + 'label' => 'Kirjaudu ulos', + ], + + 'open_database_notifications' => [ + 'label' => 'Avaa ilmoitukset', + ], + + 'open_user_menu' => [ + 'label' => 'Käyttäjävalikko', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Sulje sivupalkki', + ], + + 'expand' => [ + 'label' => 'Laajenna sivupalkki', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Tumma tila', + ], + + 'light' => [ + 'label' => 'Vaalea tila', + ], + + 'system' => [ + 'label' => 'Järjestelmän tila', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => ':name avatar', + ], + + 'logo' => [ + 'alt' => ':name logo', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Asiakkaiden haku', + 'placeholder' => 'Hae', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/pages/dashboard.php b/lang/vendor/filament-panels/fi/pages/dashboard.php new file mode 100644 index 0000000..dcc0b80 --- /dev/null +++ b/lang/vendor/filament-panels/fi/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Ohjausnäkymä', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Suodatin', + + 'modal' => [ + + 'heading' => 'Suodatin', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Käytä', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/fi/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..113560c --- /dev/null +++ b/lang/vendor/filament-panels/fi/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Tallenna muutokset', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Tallennettu', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/resources/pages/create-record.php b/lang/vendor/filament-panels/fi/resources/pages/create-record.php new file mode 100644 index 0000000..57a9362 --- /dev/null +++ b/lang/vendor/filament-panels/fi/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Uusi :label', + + 'breadcrumb' => 'Uusi', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Peruuta', + ], + + 'create' => [ + 'label' => 'Luo', + ], + + 'create_another' => [ + 'label' => 'Luo & luo toinen', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Luotu', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/resources/pages/edit-record.php b/lang/vendor/filament-panels/fi/resources/pages/edit-record.php new file mode 100644 index 0000000..d088ccf --- /dev/null +++ b/lang/vendor/filament-panels/fi/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Muokkaa :label', + + 'breadcrumb' => 'Muokkaa', + + 'navigation_label' => 'Muokkaa', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Peruuta', + ], + + 'save' => [ + 'label' => 'Tallenna', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Muokkaa', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Tallennettu', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/resources/pages/list-records.php b/lang/vendor/filament-panels/fi/resources/pages/list-records.php new file mode 100644 index 0000000..3af0660 --- /dev/null +++ b/lang/vendor/filament-panels/fi/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Lista', + +]; diff --git a/lang/vendor/filament-panels/fi/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/fi/resources/pages/manage-related-records.php new file mode 100644 index 0000000..bd80d8b --- /dev/null +++ b/lang/vendor/filament-panels/fi/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Hallitse :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/fi/resources/pages/view-record.php b/lang/vendor/filament-panels/fi/resources/pages/view-record.php new file mode 100644 index 0000000..db3720c --- /dev/null +++ b/lang/vendor/filament-panels/fi/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Näytä :label', + + 'breadcrumb' => 'Näytä', + + 'navigation_label' => 'Näytä', + + 'content' => [ + + 'tab' => [ + 'label' => 'Näytä', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fi/unsaved-changes-alert.php b/lang/vendor/filament-panels/fi/unsaved-changes-alert.php new file mode 100644 index 0000000..fa60998 --- /dev/null +++ b/lang/vendor/filament-panels/fi/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Sinulla on tallentamattomia muutoksia. Oletko varma että haluat poistua?', + +]; diff --git a/lang/vendor/filament-panels/fi/widgets/account-widget.php b/lang/vendor/filament-panels/fi/widgets/account-widget.php new file mode 100644 index 0000000..b31eba6 --- /dev/null +++ b/lang/vendor/filament-panels/fi/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Kirjaudu ulos', + ], + + ], + + 'welcome' => 'Tervetuloa', + +]; diff --git a/lang/vendor/filament-panels/fi/widgets/filament-info-widget.php b/lang/vendor/filament-panels/fi/widgets/filament-info-widget.php new file mode 100644 index 0000000..7184efe --- /dev/null +++ b/lang/vendor/filament-panels/fi/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Ohjeet', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/fr/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..c75991d --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Email address change blocked', + 'body' => 'You have successfully blocked an email address change attempt to :email. If you did not make the original request, please contact us immediately.', + ], + + 'failed' => [ + 'title' => 'Failed to block email address change', + 'body' => 'Unfortunately, you were unable to prevent the email address from being changed to :email, since it was already verified before you blocked it. If you did not make the original request, please contact us immediately.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/fr/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..7d62db3 --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Email address changed', + 'body' => 'Your email address has been successfully changed to :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/fr/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..7ae9010 --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Désactiver', + + 'modal' => [ + + 'heading' => 'Désactiver l\'application d\'authentification', + + 'description' => 'Êtes-vous sûr de vouloir arrêter d\'utiliser l\'application d\'authentification ? Désactiver cela supprimera une couche de sécurité supplémentaire de votre compte.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Entrez le code à 6 chiffres de l\'application d\'authentification', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Utiliser un code de récupération à la place', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Le code que vous avez entré est invalide.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Ou, entrez un code de récupération', + + 'validation_attribute' => 'code de récupération', + + 'messages' => [ + + 'invalid' => 'Le code de récupération que vous avez entré est invalide.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Désactiver l\'application d\'authentification', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'L\'application d\'authentification a été désactivée', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/fr/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..767ec3e --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Régénérer les codes de récupération', + + 'modal' => [ + + 'heading' => 'Régénérer les codes de récupération de l\'application d\'authentification', + + 'description' => 'Si vous perdez vos codes de récupération, vous pouvez les régénérer ici. Vos anciens codes de récupération seront invalidés immédiatement.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Entrez le code à 6 chiffres de l\'application d\'authentification', + + 'validation_attribute' => 'code', + + 'messages' => [ + + 'invalid' => 'Le code que vous avez entré est invalide.', + + ], + + ], + + 'password' => [ + + 'label' => 'Ou, entrez votre mot de passe actuel', + + 'validation_attribute' => 'mot de passe', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Régénérer les codes de récupération', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'De nouveaux codes de récupération de l\'application d\'authentification ont été générés', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Nouveaux codes de récupération', + + 'description' => 'Veuillez enregistrer les codes de récupération suivants dans un endroit sécurisé. Ils ne seront affichés qu\'une fois, mais vous en aurez besoin si vous perdez l\'accès à votre application d\'authentification :', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Fermer', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/fr/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..15c2a8d --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Configurer', + + 'modal' => [ + + 'heading' => 'Configurer l\'application d\'authentification', + + 'description' => <<<'BLADE' + Vous aurez besoin d\'une application comme Google Authenticator (iOS, Android) pour compléter cette procédure. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Scannez ce QR code avec votre application d\'authentification :', + + 'alt' => 'QR code à scanner avec une application d\'authentification', + + ], + + 'text_code' => [ + + 'instruction' => 'Ou entrez ce code manuellement :', + + 'messages' => [ + 'copied' => 'Copié', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Veuillez enregistrer les codes de récupération suivants dans un endroit sécurisé. Ils ne seront affichés qu\'une fois, mais vous en aurez besoin si vous perdez l\'accès à votre application d\'authentification :', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Entrez le code à 6 chiffres de l\'application d\'authentification', + + 'validation_attribute' => 'code', + + 'below_content' => 'Vous devrez entrer le code à 6 chiffres de votre application d\'authentification à chaque fois que vous vous connecterez ou effectuerez des actions sensibles.', + + 'messages' => [ + + 'invalid' => 'Le code que vous avez entré est invalide.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Activer l\'application d\'authentification', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'L\'application d\'authentification a été activée', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/fr/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..a4104f7 --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Application d\'authentification', + + 'below_content' => 'Utilisez une application sécurisée pour générer un code temporaire pour la vérification de la connexion.', + + 'messages' => [ + 'enabled' => 'Activé', + 'disabled' => 'Désactivé', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Utilisez un code de votre application d\'authentification', + + 'code' => [ + + 'label' => 'Entrez le code à 6 chiffres de l\'application d\'authentification', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Utiliser un code de récupération à la place', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Le code que vous avez entré est invalide.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Ou, entrez un code de récupération', + + 'validation_attribute' => 'code de récupération', + + 'messages' => [ + + 'invalid' => 'Le code de récupération que vous avez entré est invalide.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/fr/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..889522f --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + 'Désactiver', + + 'modal' => [ + + 'heading' => 'Désactiver les codes de vérification par email', + + 'description' => 'Êtes-vous sûr de vouloir arrêter de recevoir les codes de vérification par email ? Désactiver cela supprimera une couche de sécurité supplémentaire de votre compte.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Entrez le code à 6 chiffres que nous vous avons envoyé par email', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Envoyer un nouveau code par email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Nous vous avons envoyé un nouveau code par email', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Le code que vous avez entré est invalide.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Désactiver les codes de vérification par email', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Les codes de vérification par email ont été désactivés', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/fr/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..594902b --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + 'Configurer', + + 'modal' => [ + + 'heading' => 'Configurer les codes de vérification par email', + + 'description' => 'Vous devrez entrer le code à 6 chiffres que nous vous avons envoyé par email à chaque fois que vous vous connecterez ou effectuerez des actions sensibles. Vérifiez votre email pour un code à 6 chiffres pour terminer la configuration.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Entrez le code à 6 chiffres que nous vous avons envoyé par email', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Envoyer un nouveau code par email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Nous vous avons envoyé un nouveau code par email', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Le code que vous avez entré est invalide.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Activer les codes de vérification par email', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Les codes de vérification par email ont été activés', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/fr/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..2e62c74 --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Voici votre code de connexion', + + 'lines' => [ + 'Votre code de connexion est :code', + 'Ce code expirera dans une minute.|Ce code expirera dans :minutes minutes.', + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/fr/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..5d6646c --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'Codes de vérification par email', + + 'below_content' => 'Recevez un code temporaire à votre adresse email pour vérifier votre identité lors de la connexion.', + + 'messages' => [ + 'enabled' => 'Activé', + 'disabled' => 'Désactivé', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Envoyer un code à votre email', + + 'code' => [ + + 'label' => 'Entrez le code à 6 chiffres que nous vous avons envoyé par email', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Envoyer un nouveau code par email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Nous vous avons envoyé un nouveau code par email', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Le code que vous avez entré est invalide.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/fr/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..f157412 --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Configurer l\'authentification à deux facteurs (2FA)', + + 'heading' => 'Configurer l\'authentification à deux facteurs', + + 'subheading' => '2FA ajoute une couche de sécurité supplémentaire à votre compte en nécessitant une deuxième forme de vérification lors de la connexion.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Continuer', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/fr/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..ed1668a --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Cliquer pour', + + 'copy' => [ + 'label' => 'copier', + ], + + 'ou', + + 'download' => [ + 'label' => 'télécharger', + ], + + 'tous les codes en même temps.', + + ], + + 'messages' => [ + 'copied' => 'Copié', + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/fr/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..aace0a7 --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Votre adresse email est en cours de modification', + + 'lines' => [ + 'Nous avons reçu une demande de modification de l\'adresse email associée à votre compte. Votre mot de passe a été utilisé pour confirmer cette modification.', + 'Une fois vérifié, la nouvelle adresse email sur votre compte sera :email.', + 'Vous pouvez bloquer la modification avant qu\'elle ne soit vérifiée en cliquant sur le bouton ci-dessous.', + 'Si vous n\'avez pas fait cette demande, veuillez nous contacter immédiatement.', + ], + + 'action' => 'Bloquer la modification de l\'adresse email', + +]; diff --git a/lang/vendor/filament-panels/fr/auth/pages/edit-profile.php b/lang/vendor/filament-panels/fr/auth/pages/edit-profile.php new file mode 100644 index 0000000..e147e3f --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'Adresse Email', + ], + + 'name' => [ + 'label' => 'Nom', + ], + + 'password' => [ + 'label' => 'Nouveau mot de passe', + 'validation_attribute' => 'mot de passe', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmer le nouveau mot de passe', + 'validation_attribute' => 'confirmation du nouveau mot de passe', + ], + + 'current_password' => [ + 'label' => 'Mot de passe actuel', + 'below_content' => 'Pour des raisons de sécurité, veuillez confirmer votre mot de passe pour continuer.', + 'validation_attribute' => 'mot de passe actuel', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Sauvegarder les modifications', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Authentification à deux facteurs (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Demande de modification de l\'adresse email envoyée', + 'body' => 'Une demande de modification de votre adresse email a été envoyée à :email. Veuillez vérifier votre email pour vérifier la modification.', + ], + + 'saved' => [ + 'title' => 'Sauvegardé', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annuler', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/fr/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..9cc4fae --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Vérifier votre adresse email', + + 'heading' => 'Vérifier votre adresse email', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Renvoyer', + ], + + ], + + 'messages' => [ + 'notification_not_received' => "Vous n'avez pas reçu l'email envoyé ?", + 'notification_sent' => "Nous vous avons envoyé un email à l'adresse :email contenant les informations pour vérifier votre adresse email.", + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Nous avons renvoyé un email', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Trop de tentatives de renvoi', + 'body' => 'Merci de réessayer dans :seconds secondes.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/pages/login.php b/lang/vendor/filament-panels/fr/auth/pages/login.php new file mode 100644 index 0000000..e17e54c --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Connexion', + + 'heading' => 'Connectez-vous à votre compte', + + 'actions' => [ + + 'register' => [ + 'before' => 'ou', + 'label' => 'créer un compte', + ], + + 'request_password_reset' => [ + 'label' => 'Mot de passe oublié ?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresse e-mail', + ], + + 'password' => [ + 'label' => 'Mot de passe', + ], + + 'remember' => [ + 'label' => 'Se souvenir de moi', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Connexion', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Vérifier votre identité', + + 'subheading' => 'Pour continuer à vous connecter, vous devez vérifier votre identité.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Comment souhaitez-vous vérifier ?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Confirmer la connexion', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Ces identifiants ne correspondent pas à nos enregistrements.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Trop de tentatives de connexion', + 'body' => 'Merci de réessayer dans :seconds secondes.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/fr/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..4f254bf --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Réinitialiser votre mot de passe', + + 'heading' => 'Mot de passe oublié ?', + + 'actions' => [ + + 'login' => [ + 'label' => 'retour à la connexion', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresse Email', + ], + + 'actions' => [ + + 'request' => [ + 'label' => "Envoyer l'email", + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Si votre compte n\'existe pas, vous ne recevrez pas l\'email.', + ], + + 'throttled' => [ + 'title' => 'Trop de requêtes', + 'body' => 'Merci de réessayer dans :seconds secondes.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/fr/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..fff6e02 --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Réinitialiser votre mot de passe', + + 'heading' => 'Réinitialiser votre mot de passe', + + 'form' => [ + + 'email' => [ + 'label' => 'Adresse Email', + ], + + 'password' => [ + 'label' => 'Mot de passe', + 'validation_attribute' => 'mot de passe', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmer le mot de passe', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Réinitialiser le mot de passe', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Trop de tentatives de réinitialisation', + 'body' => 'Merci de réessayer dans :seconds secondes.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/auth/pages/register.php b/lang/vendor/filament-panels/fr/auth/pages/register.php new file mode 100644 index 0000000..42d199c --- /dev/null +++ b/lang/vendor/filament-panels/fr/auth/pages/register.php @@ -0,0 +1,56 @@ + "S'inscrire", + + 'heading' => "S'inscrire", + + 'actions' => [ + + 'login' => [ + 'before' => 'ou', + 'label' => 'connectez-vous à votre compte', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresse Email', + ], + + 'name' => [ + 'label' => 'Nom', + ], + + 'password' => [ + 'label' => 'Mot de passe', + 'validation_attribute' => 'mot de passe', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmer le mot de passe', + ], + + 'actions' => [ + + 'register' => [ + 'label' => "S'inscrire", + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => "Trop de tentatives d'inscription", + 'body' => 'Merci de réessayer dans :seconds secondes.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/error-notifications.php b/lang/vendor/filament-panels/fr/error-notifications.php new file mode 100644 index 0000000..dec913b --- /dev/null +++ b/lang/vendor/filament-panels/fr/error-notifications.php @@ -0,0 +1,9 @@ + 'Erreur lors du chargement de la page', + + 'body' => 'Une erreur est survenue lors du chargement de cette page. Veuillez réessayer plus tard.', + +]; diff --git a/lang/vendor/filament-panels/fr/global-search.php b/lang/vendor/filament-panels/fr/global-search.php new file mode 100644 index 0000000..d9dade3 --- /dev/null +++ b/lang/vendor/filament-panels/fr/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Recherche globale', + 'placeholder' => 'Rechercher', + ], + + 'no_results_message' => "Désolé, aucun résultat n'a été trouvé.", + +]; diff --git a/lang/vendor/filament-panels/fr/layout.php b/lang/vendor/filament-panels/fr/layout.php new file mode 100644 index 0000000..e97dd74 --- /dev/null +++ b/lang/vendor/filament-panels/fr/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => "Gérer l'abonnement", + ], + + 'logout' => [ + 'label' => 'Déconnexion', + ], + + 'open_database_notifications' => [ + 'label' => 'Ouvrir les notifications', + ], + + 'open_user_menu' => [ + 'label' => 'Menu utilisateur', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Réduire la barre latérale', + ], + + 'expand' => [ + 'label' => 'Agrandir la barre latérale', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Activer le mode sombre', + ], + + 'light' => [ + 'label' => 'Désactiver le mode sombre', + ], + + 'system' => [ + 'label' => 'Activer le thème système', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar de :name', + ], + + 'logo' => [ + 'alt' => 'Logo de :name', + ], + +]; diff --git a/lang/vendor/filament-panels/fr/pages/dashboard.php b/lang/vendor/filament-panels/fr/pages/dashboard.php new file mode 100644 index 0000000..2486538 --- /dev/null +++ b/lang/vendor/filament-panels/fr/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Tableau de bord', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtrer', + + 'modal' => [ + + 'heading' => 'Filtrer', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Appliquer', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/fr/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..a67fdb2 --- /dev/null +++ b/lang/vendor/filament-panels/fr/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Sauvegarder les modifications', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Sauvegardé', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/resources/pages/create-record.php b/lang/vendor/filament-panels/fr/resources/pages/create-record.php new file mode 100644 index 0000000..4e9cebd --- /dev/null +++ b/lang/vendor/filament-panels/fr/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Créer :label', + + 'breadcrumb' => 'Créer', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annuler', + ], + + 'create' => [ + 'label' => 'Créer', + ], + + 'create_another' => [ + 'label' => 'Créer & Ajouter un autre', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Créé(e)', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/resources/pages/edit-record.php b/lang/vendor/filament-panels/fr/resources/pages/edit-record.php new file mode 100644 index 0000000..d2b4d87 --- /dev/null +++ b/lang/vendor/filament-panels/fr/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Modifier :label', + + 'breadcrumb' => 'Modifier', + + 'navigation_label' => 'Modifier', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annuler', + ], + + 'save' => [ + 'label' => 'Sauvegarder les modifications', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Modifier', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Sauvegardé', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/resources/pages/list-records.php b/lang/vendor/filament-panels/fr/resources/pages/list-records.php new file mode 100644 index 0000000..51ebe1a --- /dev/null +++ b/lang/vendor/filament-panels/fr/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Liste', + +]; diff --git a/lang/vendor/filament-panels/fr/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/fr/resources/pages/manage-related-records.php new file mode 100644 index 0000000..97efffb --- /dev/null +++ b/lang/vendor/filament-panels/fr/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Gérer les :relationship de :label', + +]; diff --git a/lang/vendor/filament-panels/fr/resources/pages/view-record.php b/lang/vendor/filament-panels/fr/resources/pages/view-record.php new file mode 100644 index 0000000..7424a1e --- /dev/null +++ b/lang/vendor/filament-panels/fr/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Afficher :label', + + 'breadcrumb' => 'Afficher', + + 'navigation_label' => 'Afficher', + + 'content' => [ + + 'tab' => [ + 'label' => 'Afficher', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/fr/unsaved-changes-alert.php b/lang/vendor/filament-panels/fr/unsaved-changes-alert.php new file mode 100644 index 0000000..ab1ab3e --- /dev/null +++ b/lang/vendor/filament-panels/fr/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Vous avez des modifications non sauvegardées. Êtes-vous sûr de vouloir quitter cette page ?', + +]; diff --git a/lang/vendor/filament-panels/fr/widgets/account-widget.php b/lang/vendor/filament-panels/fr/widgets/account-widget.php new file mode 100644 index 0000000..5d88913 --- /dev/null +++ b/lang/vendor/filament-panels/fr/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Déconnexion', + ], + + ], + + 'welcome' => 'Bonjour', + +]; diff --git a/lang/vendor/filament-panels/fr/widgets/filament-info-widget.php b/lang/vendor/filament-panels/fr/widgets/filament-info-widget.php new file mode 100644 index 0000000..e559504 --- /dev/null +++ b/lang/vendor/filament-panels/fr/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Documentation', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/he/auth/pages/edit-profile.php b/lang/vendor/filament-panels/he/auth/pages/edit-profile.php new file mode 100644 index 0000000..39f0d1b --- /dev/null +++ b/lang/vendor/filament-panels/he/auth/pages/edit-profile.php @@ -0,0 +1,52 @@ + 'פרופיל', + + 'form' => [ + + 'email' => [ + 'label' => 'כתובת דוא"ל', + ], + + 'name' => [ + 'label' => 'שם', + ], + + 'password' => [ + 'label' => 'סיסמה חדשה', + 'validation_attribute' => 'סיסמה', + ], + + 'password_confirmation' => [ + 'label' => 'אימות סיסמה חדשה', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'שמור שינויים', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'נשמר', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'ביטול', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/he/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/he/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..b9b7709 --- /dev/null +++ b/lang/vendor/filament-panels/he/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'אמת את כתובת הדוא"ל שלך', + + 'heading' => 'אמת את כתובת הדוא"ל שלך', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'שלח שוב', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'לא קבלת את הדוא"ל ששלחנו?', + 'notification_sent' => 'שלחנו הודעת דואר אלקטרוני ל-:email עם הוראות כיצד לאמת את כתובת הדוא"ל שלך.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'שלחנו שוב את הדוא"ל.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'יותר מדי נסיונות של שליחה מחדש', + 'body' => 'אנא נסה שוב בעוד :seconds שניות.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/he/auth/pages/login.php b/lang/vendor/filament-panels/he/auth/pages/login.php new file mode 100644 index 0000000..949d3b2 --- /dev/null +++ b/lang/vendor/filament-panels/he/auth/pages/login.php @@ -0,0 +1,61 @@ + 'התחברות', + + 'heading' => 'התחבר לחשבון שלך', + + 'actions' => [ + + 'register' => [ + 'before' => 'או', + 'label' => 'הירשם לחשבון', + ], + + 'request_password_reset' => [ + 'label' => 'שכחת את הסיסמה שלך?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'כתובת דואר אלקטרוני', + ], + + 'password' => [ + 'label' => 'סיסמה', + ], + + 'remember' => [ + 'label' => 'זכור אותי', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'התחבר', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'הפרטים שהזנת שגויים או לא קיימים.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'יותר מדי ניסיונות התחברות', + 'body' => 'אנא נסה שוב בעוד :seconds שניות.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/he/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/he/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..31d8ed5 --- /dev/null +++ b/lang/vendor/filament-panels/he/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'אפס את הסיסמה שלך', + + 'heading' => 'שכחת את הסיסמה שלך?', + + 'actions' => [ + + 'login' => [ + 'label' => 'חזרה להתחברות', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'כתובת דוא"ל', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'שלח דוא"ל', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'הודעת דוא"ל תישלח רק במידה והחשבון קיים.', + ], + + 'throttled' => [ + 'title' => 'יותר מדי בקשות', + 'body' => 'אנא נסה שוב בעוד :seconds שניות.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/he/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/he/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..0f8ec37 --- /dev/null +++ b/lang/vendor/filament-panels/he/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'אפס את הסיסמה שלך', + + 'heading' => 'אפס את הסיסמה שלך', + + 'form' => [ + + 'email' => [ + 'label' => 'כתובת דוא"ל', + ], + + 'password' => [ + 'label' => 'סיסמה', + 'validation_attribute' => 'סיסמה', + ], + + 'password_confirmation' => [ + 'label' => 'אימות סיסמה', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'איפוס סיסמה', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'יותר מדי נסיונות איפוס סיסמה', + 'body' => 'אנא נסה שוב בעוד :seconds שניות.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/he/auth/pages/register.php b/lang/vendor/filament-panels/he/auth/pages/register.php new file mode 100644 index 0000000..1ac9461 --- /dev/null +++ b/lang/vendor/filament-panels/he/auth/pages/register.php @@ -0,0 +1,56 @@ + 'הרשמה', + + 'heading' => 'הירשם', + + 'actions' => [ + + 'login' => [ + 'before' => 'או', + 'label' => 'התחבר לחשבונך', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'כתובת דוא"ל', + ], + + 'name' => [ + 'label' => 'שם', + ], + + 'password' => [ + 'label' => 'סיסמה', + 'validation_attribute' => 'סיסמה', + ], + + 'password_confirmation' => [ + 'label' => 'אמת סיסמה', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'הירשם', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'יותר מדי ניסיונות להרשמה', + 'body' => 'אנא נסה שוב בעוד :seconds שניות.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/he/error-notifications.php b/lang/vendor/filament-panels/he/error-notifications.php new file mode 100644 index 0000000..f9bd445 --- /dev/null +++ b/lang/vendor/filament-panels/he/error-notifications.php @@ -0,0 +1,9 @@ + 'שגיאה בעת טעינת הדף', + + 'body' => 'אירעה שגיאה בעת ניסיון טעינת דף זה. אנא נסה שוב מאוחר יותר.', + +]; diff --git a/lang/vendor/filament-panels/he/global-search.php b/lang/vendor/filament-panels/he/global-search.php new file mode 100644 index 0000000..bea0a81 --- /dev/null +++ b/lang/vendor/filament-panels/he/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'חיפוש גלובלי', + 'placeholder' => 'חיפוש', + ], + + 'no_results_message' => 'לא נמצאו תוצאות.', + +]; diff --git a/lang/vendor/filament-panels/he/layout.php b/lang/vendor/filament-panels/he/layout.php new file mode 100644 index 0000000..2041bd2 --- /dev/null +++ b/lang/vendor/filament-panels/he/layout.php @@ -0,0 +1,55 @@ + 'rtl', + + 'actions' => [ + + 'billing' => [ + 'label' => 'נהל מנוי', + ], + + 'logout' => [ + 'label' => 'התנתק', + ], + + 'open_database_notifications' => [ + 'label' => 'פתח התראות', + ], + + 'open_user_menu' => [ + 'label' => 'תפריט משתמש', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'כווץ תפריט צד', + ], + + 'expand' => [ + 'label' => 'הרחב תפריט צד', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'הפעל מצב כהה', + ], + + 'light' => [ + 'label' => 'הפעל מצב בהיר', + ], + + 'system' => [ + 'label' => 'הפעל ערכת נושא של המערכת', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/he/pages/dashboard.php b/lang/vendor/filament-panels/he/pages/dashboard.php new file mode 100644 index 0000000..db9109d --- /dev/null +++ b/lang/vendor/filament-panels/he/pages/dashboard.php @@ -0,0 +1,7 @@ + 'בית', + +]; diff --git a/lang/vendor/filament-panels/he/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/he/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..bbf8747 --- /dev/null +++ b/lang/vendor/filament-panels/he/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'שמור שינויים', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'נשמר', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/he/resources/pages/create-record.php b/lang/vendor/filament-panels/he/resources/pages/create-record.php new file mode 100644 index 0000000..f773306 --- /dev/null +++ b/lang/vendor/filament-panels/he/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'יצירת :label', + + 'breadcrumb' => 'יצירה', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'ביטול', + ], + + 'create' => [ + 'label' => 'יצירה', + ], + + 'create_another' => [ + 'label' => 'צור וצור עוד אחד', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'נוצר', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/he/resources/pages/edit-record.php b/lang/vendor/filament-panels/he/resources/pages/edit-record.php new file mode 100644 index 0000000..e08ca09 --- /dev/null +++ b/lang/vendor/filament-panels/he/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'עריכת :label', + + 'breadcrumb' => 'עריכה', + + 'navigation_label' => 'עריכה', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'ביטול', + ], + + 'save' => [ + 'label' => 'שמור שינויים', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'עריכה', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'נשמר בהצלחה', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/he/resources/pages/list-records.php b/lang/vendor/filament-panels/he/resources/pages/list-records.php new file mode 100644 index 0000000..c239331 --- /dev/null +++ b/lang/vendor/filament-panels/he/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'רשימה', + +]; diff --git a/lang/vendor/filament-panels/he/resources/pages/view-record.php b/lang/vendor/filament-panels/he/resources/pages/view-record.php new file mode 100644 index 0000000..5f2caec --- /dev/null +++ b/lang/vendor/filament-panels/he/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'הצגת :label', + + 'breadcrumb' => 'הצגה', + + 'content' => [ + + 'tab' => [ + 'label' => 'הצגה', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/he/unsaved-changes-alert.php b/lang/vendor/filament-panels/he/unsaved-changes-alert.php new file mode 100644 index 0000000..1bc8ea2 --- /dev/null +++ b/lang/vendor/filament-panels/he/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'יש לך שינויים שלא נשמרו. האם אתה בטוח שברצונך לעזוב את הדף?', + +]; diff --git a/lang/vendor/filament-panels/he/widgets/account-widget.php b/lang/vendor/filament-panels/he/widgets/account-widget.php new file mode 100644 index 0000000..71c663d --- /dev/null +++ b/lang/vendor/filament-panels/he/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'התנתק', + ], + + ], + + 'welcome' => 'ברוך הבא', + +]; diff --git a/lang/vendor/filament-panels/he/widgets/filament-info-widget.php b/lang/vendor/filament-panels/he/widgets/filament-info-widget.php new file mode 100644 index 0000000..a0ccf07 --- /dev/null +++ b/lang/vendor/filament-panels/he/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'תיעוד', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hi/auth/pages/login.php b/lang/vendor/filament-panels/hi/auth/pages/login.php new file mode 100644 index 0000000..f34c4ba --- /dev/null +++ b/lang/vendor/filament-panels/hi/auth/pages/login.php @@ -0,0 +1,47 @@ + 'लॉग इन', + + 'heading' => 'अपने अकाउंट में साइन इन करें', + + 'form' => [ + + 'email' => [ + 'label' => 'ईमेल', + ], + + 'password' => [ + 'label' => 'पासवर्ड', + ], + + 'remember' => [ + 'label' => 'मुझे याद रखना', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'लॉग इन', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'ये प्रमाण हमारे रिकॉर्ड से मेल नहीं खा रहे हैं।', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'बहुत सारे लॉगिन प्रयास। :seconds सेकंड में फिर से कोशिश करें।', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hi/global-search.php b/lang/vendor/filament-panels/hi/global-search.php new file mode 100644 index 0000000..cc9422f --- /dev/null +++ b/lang/vendor/filament-panels/hi/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'वैश्विक खोज', + 'placeholder' => 'खोजें', + ], + + 'no_results_message' => 'कोई खोज परिणाम नहीं मिला।', + +]; diff --git a/lang/vendor/filament-panels/hi/layout.php b/lang/vendor/filament-panels/hi/layout.php new file mode 100644 index 0000000..ff41927 --- /dev/null +++ b/lang/vendor/filament-panels/hi/layout.php @@ -0,0 +1,31 @@ + 'ltr', + + 'actions' => [ + + 'logout' => [ + 'label' => 'साइन आउट', + ], + + 'open_user_menu' => [ + 'label' => 'उपयोगकर्ता विकल्प सूची', + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'डार्क मोड टॉगल करें', + ], + + 'light' => [ + 'label' => 'लाइट मोड टॉगल करें', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hi/pages/dashboard.php b/lang/vendor/filament-panels/hi/pages/dashboard.php new file mode 100644 index 0000000..5ac3298 --- /dev/null +++ b/lang/vendor/filament-panels/hi/pages/dashboard.php @@ -0,0 +1,7 @@ + 'डैशबोर्ड', + +]; diff --git a/lang/vendor/filament-panels/hi/resources/pages/create-record.php b/lang/vendor/filament-panels/hi/resources/pages/create-record.php new file mode 100644 index 0000000..618311d --- /dev/null +++ b/lang/vendor/filament-panels/hi/resources/pages/create-record.php @@ -0,0 +1,37 @@ + ':label बनाएँ', + + 'breadcrumb' => 'बनाएँ', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'रद्द करें', + ], + + 'create' => [ + 'label' => 'बनाएँ', + ], + + 'create_another' => [ + 'label' => 'बनाएँ और एक और बनाएँ', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'बन गया', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hi/resources/pages/edit-record.php b/lang/vendor/filament-panels/hi/resources/pages/edit-record.php new file mode 100644 index 0000000..3d55baa --- /dev/null +++ b/lang/vendor/filament-panels/hi/resources/pages/edit-record.php @@ -0,0 +1,33 @@ + ':label संपादित करें', + + 'breadcrumb' => 'संपादन', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'रद्द करें', + ], + + 'save' => [ + 'label' => 'सेव', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'सेव हो गया', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hi/resources/pages/list-records.php b/lang/vendor/filament-panels/hi/resources/pages/list-records.php new file mode 100644 index 0000000..6de1a4b --- /dev/null +++ b/lang/vendor/filament-panels/hi/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'सूची', + +]; diff --git a/lang/vendor/filament-panels/hi/resources/pages/view-record.php b/lang/vendor/filament-panels/hi/resources/pages/view-record.php new file mode 100644 index 0000000..d31e7c9 --- /dev/null +++ b/lang/vendor/filament-panels/hi/resources/pages/view-record.php @@ -0,0 +1,9 @@ + ':label देखें', + + 'breadcrumb' => 'देखें', + +]; diff --git a/lang/vendor/filament-panels/hi/widgets/account-widget.php b/lang/vendor/filament-panels/hi/widgets/account-widget.php new file mode 100644 index 0000000..aa8bd21 --- /dev/null +++ b/lang/vendor/filament-panels/hi/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'साइन आउट', + ], + + ], + + 'welcome' => 'स्वागत', + +]; diff --git a/lang/vendor/filament-panels/hi/widgets/filament-info-widget.php b/lang/vendor/filament-panels/hi/widgets/filament-info-widget.php new file mode 100644 index 0000000..de9bdf2 --- /dev/null +++ b/lang/vendor/filament-panels/hi/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'प्रलेखन', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hr/auth/pages/edit-profile.php b/lang/vendor/filament-panels/hr/auth/pages/edit-profile.php new file mode 100644 index 0000000..6eb232c --- /dev/null +++ b/lang/vendor/filament-panels/hr/auth/pages/edit-profile.php @@ -0,0 +1,51 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'name' => [ + 'label' => 'Ime', + ], + + 'password' => [ + 'label' => 'Nova lozinka', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrdi novu lozinku', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Spremi promjene', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Spremljeno', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Odustani', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hr/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/hr/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..ac50d9f --- /dev/null +++ b/lang/vendor/filament-panels/hr/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Potvrdite svoju email adresu', + + 'heading' => 'Potvrdite svoju email adresu', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Ponovo pošalji', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Nisi primio e-poštu koju smo poslali?', + 'notification_sent' => 'Poslali smo e-poštu na :email s uputama o tome kako potvrditi svoju adresu e-pošte.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Ponovno smo poslali e-poštu.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Previše pokušaja ponovnog slanja', + 'body' => 'Molim te, pokušaj ponovno za :seconds sekundi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hr/auth/pages/login.php b/lang/vendor/filament-panels/hr/auth/pages/login.php new file mode 100644 index 0000000..4667798 --- /dev/null +++ b/lang/vendor/filament-panels/hr/auth/pages/login.php @@ -0,0 +1,61 @@ + 'Prijava', + + 'heading' => 'Prijavi se', + + 'actions' => [ + + 'register' => [ + 'before' => 'ili', + 'label' => 'se registriraj za korisnički račun', + ], + + 'request_password_reset' => [ + 'label' => 'Zaboravljena lozinka?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'password' => [ + 'label' => 'Lozinka', + ], + + 'remember' => [ + 'label' => 'Zapamti me', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Prijavi se', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Pogrešno korisničko ime ili lozinka', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Previše pokušaja prijave', + 'body' => 'Molim te, pokušaj ponovno za :seconds sekundi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hr/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/hr/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..dcf97b8 --- /dev/null +++ b/lang/vendor/filament-panels/hr/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'Resetiraj svoju lozinku', + + 'heading' => 'Zaboravljena lozinka?', + + 'actions' => [ + + 'login' => [ + 'label' => 'natrag na prijavu', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Pošalji e-poštu', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Previše zahtjeva', + 'body' => 'Molim te, pokušaj ponovno za :seconds sekundi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hr/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/hr/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..9d1ce45 --- /dev/null +++ b/lang/vendor/filament-panels/hr/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Resetiraj svoju lozinku', + + 'heading' => 'Resetiraj svoju lozinku', + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'password' => [ + 'label' => 'Lozinka', + 'validation_attribute' => 'lozinka', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrdi lozinku', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Resetiraj lozinku', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Previše pokušaja resetiranja.', + 'body' => 'Molim te, pokušaj ponovno za :seconds sekundi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hr/auth/pages/register.php b/lang/vendor/filament-panels/hr/auth/pages/register.php new file mode 100644 index 0000000..ecf500f --- /dev/null +++ b/lang/vendor/filament-panels/hr/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Registracija', + + 'heading' => 'Registriraj se', + + 'actions' => [ + + 'login' => [ + 'before' => 'ili', + 'label' => 'se prijavi', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'name' => [ + 'label' => 'Ime', + ], + + 'password' => [ + 'label' => 'Lozinka', + 'validation_attribute' => 'lozinka', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrdi lozinku', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Registriraj se', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Previše pokušaja registracije', + 'body' => 'Molim te, pokušaj ponovno za :seconds sekundi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hr/global-search.php b/lang/vendor/filament-panels/hr/global-search.php new file mode 100644 index 0000000..9335023 --- /dev/null +++ b/lang/vendor/filament-panels/hr/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Globalno pretraživanje', + 'placeholder' => 'Pretraži', + ], + + 'no_results_message' => 'Nema pronađenih rezultata pretraživanja.', + +]; diff --git a/lang/vendor/filament-panels/hr/layout.php b/lang/vendor/filament-panels/hr/layout.php new file mode 100644 index 0000000..6553d92 --- /dev/null +++ b/lang/vendor/filament-panels/hr/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Upravljaj pretplatom', + ], + + 'logout' => [ + 'label' => 'Odjava', + ], + + 'open_database_notifications' => [ + 'label' => 'Otvori obavijesti', + ], + + 'open_user_menu' => [ + 'label' => 'Korisnički izbornik', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Skupi bočnu traku', + ], + + 'expand' => [ + 'label' => 'Proširi bočnu traku', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Omogući tamnu temu', + ], + + 'light' => [ + 'label' => 'Omogući svijetlu temu', + ], + + 'system' => [ + 'label' => 'Omogući temu sustava', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar od :name', + ], + + 'logo' => [ + 'alt' => ':name logo', + ], + +]; diff --git a/lang/vendor/filament-panels/hr/pages/dashboard.php b/lang/vendor/filament-panels/hr/pages/dashboard.php new file mode 100644 index 0000000..2246076 --- /dev/null +++ b/lang/vendor/filament-panels/hr/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Nadzorna ploča', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filter', + + 'modal' => [ + + 'heading' => 'Filter', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Primijeni', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hr/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/hr/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..3fe4f87 --- /dev/null +++ b/lang/vendor/filament-panels/hr/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Spremi promjene', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Spremljeno', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hr/resources/pages/create-record.php b/lang/vendor/filament-panels/hr/resources/pages/create-record.php new file mode 100644 index 0000000..b2af238 --- /dev/null +++ b/lang/vendor/filament-panels/hr/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Napravi :label', + + 'breadcrumb' => 'Napravi', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Odustani', + ], + + 'create' => [ + 'label' => 'Napravi', + ], + + 'create_another' => [ + 'label' => 'Napravi i dodaj još jedan', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Napravljeno', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hr/resources/pages/edit-record.php b/lang/vendor/filament-panels/hr/resources/pages/edit-record.php new file mode 100644 index 0000000..10a6a15 --- /dev/null +++ b/lang/vendor/filament-panels/hr/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'Uredi :label', + + 'breadcrumb' => 'Uredi', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Odustani', + ], + + 'save' => [ + 'label' => 'Spremi promjene', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Uredi', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Spremljeno', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hr/resources/pages/list-records.php b/lang/vendor/filament-panels/hr/resources/pages/list-records.php new file mode 100644 index 0000000..a349ac9 --- /dev/null +++ b/lang/vendor/filament-panels/hr/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Popis', + +]; diff --git a/lang/vendor/filament-panels/hr/resources/pages/view-record.php b/lang/vendor/filament-panels/hr/resources/pages/view-record.php new file mode 100644 index 0000000..d3644a7 --- /dev/null +++ b/lang/vendor/filament-panels/hr/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'Pregled :label', + + 'breadcrumb' => 'Pregledaj', + + 'content' => [ + + 'tab' => [ + 'label' => 'Pregled', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hr/unsaved-changes-alert.php b/lang/vendor/filament-panels/hr/unsaved-changes-alert.php new file mode 100644 index 0000000..14077b9 --- /dev/null +++ b/lang/vendor/filament-panels/hr/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Tvoje izmjene nisu spremljene. Želiš li zaista napustiti ovu stranicu?', + +]; diff --git a/lang/vendor/filament-panels/hr/widgets/account-widget.php b/lang/vendor/filament-panels/hr/widgets/account-widget.php new file mode 100644 index 0000000..d459dcc --- /dev/null +++ b/lang/vendor/filament-panels/hr/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Odjava', + ], + + ], + + 'welcome' => 'Dobrodošli', + +]; diff --git a/lang/vendor/filament-panels/hr/widgets/filament-info-widget.php b/lang/vendor/filament-panels/hr/widgets/filament-info-widget.php new file mode 100644 index 0000000..d770c7e --- /dev/null +++ b/lang/vendor/filament-panels/hr/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentacija', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/hu/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..f3a60d5 --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'E-mail cím módosítása letiltva', + 'body' => 'Sikeresen letiltottad az e-mail cím módosítási kísérletét a következő címre: :email. Ha nem te kezdeményezted az eredeti kérelmet, kérjük, azonnal vedd fel velünk a kapcsolatot.', + ], + + 'failed' => [ + 'title' => 'E-mail cím módosításának letiltása sikertelen', + 'body' => 'Sajnos nem tudtad megakadályozni az e-mail cím módosítását a következő címre: :email, mivel már ellenőrizve lett, mielőtt letiltottad volna. Ha nem te kezdeményezted az eredeti kérelmet, kérjük, azonnal vedd fel velünk a kapcsolatot.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/hu/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..697151f --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'E-mail cím megváltoztatva', + 'body' => 'Az e-mail címed sikeresen megváltozott erre: :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/hu/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..4b5dbd3 --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Kikapcsolás', + + 'modal' => [ + + 'heading' => 'Hitelesítő alkalmazás kikapcsolása', + + 'description' => 'Biztosan ki szeretnéd kapcsolni a hitelesítő alkalmazás használatát? Ennek kikapcsolása eltávolít egy plusz biztonsági réteget a fiókodból.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Add meg a 6 jegyű kódot a hitelesítő alkalmazásból', + + 'validation_attribute' => 'kód', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Helyreállítási kód használata', + ], + + ], + + 'messages' => [ + + 'invalid' => 'A megadott kód érvénytelen.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Vagy add meg a helyreállítási kódot', + + 'validation_attribute' => 'helyreállítási kód', + + 'messages' => [ + + 'invalid' => 'A megadott helyreállítási kód érvénytelen.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Hitelesítő alkalmazás kikapcsolása', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'A hitelesítő alkalmazás ki lett kapcsolva', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/hu/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..c391594 --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Helyreállítási kódok újragenerálása', + + 'modal' => [ + + 'heading' => 'Hitelesítő alkalmazás helyreállítási kódjainak újragenerálása', + + 'description' => 'Ha elveszted a helyreállítási kódjaidat, itt újragenerálhatod őket. A régi helyreállítási kódjaid azonnal érvénytelenítve lesznek.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Add meg a 6 jegyű kódot a hitelesítő alkalmazásból', + + 'validation_attribute' => 'kód', + + 'messages' => [ + + 'invalid' => 'A megadott kód érvénytelen.', + + ], + + ], + + 'password' => [ + + 'label' => 'Vagy add meg a jelenlegi jelszavadat', + + 'validation_attribute' => 'jelszó', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Helyreállítási kódok újragenerálása', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Új helyreállítási kódok lettek generálva', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Új helyreállítási kódok', + + 'description' => 'Kérjük, mentsd el a következő helyreállítási kódokat biztonságos helyre. Csak egyszer lesznek megjelenítve, de szükséged lesz rájuk, ha elveszted a hozzáférést a hitelesítő alkalmazásodhoz:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Bezárás', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/hu/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..6142d1e --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Bekapcsolás', + + 'modal' => [ + + 'heading' => 'Hitelesítő alkalmazás bekapcsolása', + + 'description' => <<<'BLADE' + Egy alkalmazásra lesz szükséged, mint a Google Authenticator (iOS, Android) a folyamat befejezéséhez. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Olvasd be ezt a QR kódot a hitelesítő alkalmazásoddal:', + + 'alt' => 'QR kód beolvasásához hitelesítő alkalmazással', + + ], + + 'text_code' => [ + + 'instruction' => 'Vagy add meg ezt a kódot manuálisan:', + + 'messages' => [ + 'copied' => 'Kimásolva', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Kérjük, mentsd el a következő helyreállítási kódokat biztonságos helyre. Csak egyszer lesznek megjelenítve, de szükséged lesz rájuk, ha elveszted a hozzáférést a hitelesítő alkalmazásodhoz:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Add meg a 6 jegyű kódot a hitelesítő alkalmazásból', + + 'validation_attribute' => 'kód', + + 'below_content' => 'Minden bejelentkezéskor vagy érzékeny művelet végrehajtásakor meg kell adnod a 6 jegyű kódot a hitelesítő alkalmazásodból.', + + 'messages' => [ + + 'invalid' => 'A megadott kód érvénytelen.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Hitelesítő alkalmazás bekapcsolása', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'A hitelesítő alkalmazás be lett kapcsolva', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/hu/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..d759072 --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Hitelesítő alkalmazás', + + 'below_content' => 'Használj egy hitelesítő alkalmazást ideiglenes kód generálására a bejelentkezés ellenőrzéséhez.', + + 'messages' => [ + 'enabled' => 'Bekapcsolva', + 'disabled' => 'Kikapcsolva', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Használd a kódot a hitelesítő alkalmazásodból', + + 'code' => [ + + 'label' => 'Add meg a 6 jegyű kódot a hitelesítő alkalmazásból', + + 'validation_attribute' => 'kód', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Helyreállítási kód használata', + ], + + ], + + 'messages' => [ + + 'invalid' => 'A megadott kód érvénytelen.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Vagy add meg a helyreállítási kódot', + + 'validation_attribute' => 'helyreállítási kód', + + 'messages' => [ + + 'invalid' => 'A megadott helyreállítási kód érvénytelen.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/hu/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..65f82df --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + 'Kikapcsolás', + + 'modal' => [ + + 'heading' => 'E-mail ellenőrző kódok kikapcsolása', + + 'description' => 'Biztosan ki szeretnéd kapcsolni az e-mail ellenőrző kódok küldését? Ennek letiltása eltávolít egy plusz biztonsági réteget a fiókodból.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Add meg a 6 jegyű kódot, amit e-mailben küldtünk', + + 'validation_attribute' => 'kód', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Új kód küldése e-mailben', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Küldtünk neked egy új kódot e-mailben', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'A megadott kód érvénytelen.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'E-mail ellenőrző kódok kikapcsolása', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Az e-mail ellenőrző kódok ki lettek kapcsolva', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/hu/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..556b87c --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + 'Bekapcsolás', + + 'modal' => [ + + 'heading' => 'E-mail ellenőrző kódok bekapcsolása', + + 'description' => 'Minden bejelentkezéskor vagy érzékeny művelet végrehajtásakor meg kell adnod a 6 jegyű kódot, amit e-mailben küldünk. Ellenőrizd az e-mailjeidet a 6 jegyű kódért a beállítás befejezéséhez.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Add meg a 6 jegyű kódot, amit e-mailben küldtünk', + + 'validation_attribute' => 'kód', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Új kód küldése e-mailben', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Küldtünk neked egy új kódot e-mailben', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'A megadott kód érvénytelen.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'E-mail ellenőrző kódok bekapcsolása', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Az e-mail ellenőrző kódok be lettek kapcsolva', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/hu/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..a80a15b --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Bejelentkezési kód', + + 'lines' => [ + 'A bejelentkezési kódod: :code', + 'Ez a kód egy perc múlva lejár.|Ez a kód :minutes perc múlva lejár.', + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/hu/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..b78e8ed --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'E-mail ellenőrző kódok', + + 'below_content' => 'Kapj egy ideiglenes kódot az e-mail címedre, hogy igazold a személyazonosságodat bejelentkezés során.', + + 'messages' => [ + 'enabled' => 'Bekapcsolva', + 'disabled' => 'Kikpcsolva', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Kód küldése az e-mail címedre', + + 'code' => [ + + 'label' => 'Add meg a 6 jegyű kódot, amit e-mailben küldtünk', + + 'validation_attribute' => 'kód', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Új kód küldése e-mailben', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Küldtünk neked egy új kódot e-mailben', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'A megadott kód érvénytelen.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/hu/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..f5ca60b --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Kétfaktoros hitelesítés (2FA) beállítása', + + 'heading' => 'Kétfaktoros hitelesítés beállítása', + + 'subheading' => 'A 2FA további biztonsági réteget ad a fiókodhoz azáltal, hogy bejelentkezéskor egy második ellenőrzési formát is megkövetel.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Folytatás', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/hu/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..5261c9a --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Kattints a kódok', + + 'copy' => [ + 'label' => 'másolásához', + ], + + 'vagy', + + 'download' => [ + 'label' => 'letöltéséhez', + ], + + '.', + + ], + + 'messages' => [ + 'copied' => 'Kimásolva', + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/hu/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..3e38010 --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Az email címed módosítása folyamatban van', + + 'lines' => [ + 'Kérelmet kaptunk a fiókodhoz társított email cím megváltoztatására. A jelszavadat meg lett adva változtatás megerősítéséhez.', + 'A megerősítés után a fiókod új email címe a következő lesz: :email.', + 'A változtatást letilthatod, mielőtt megerősítenék, az alábbi gombra kattintva.', + 'Ha nem te tetted ezt a kérelmet, kérjük, vedd fel velünk azonnal a kapcsolatot.', + ], + + 'action' => 'Email változtatás letiltása', + +]; diff --git a/lang/vendor/filament-panels/hu/auth/pages/edit-profile.php b/lang/vendor/filament-panels/hu/auth/pages/edit-profile.php new file mode 100644 index 0000000..eca3241 --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'Email cím', + ], + + 'name' => [ + 'label' => 'Név', + ], + + 'password' => [ + 'label' => 'Új jelszó', + 'validation_attribute' => 'jelszó', + ], + + 'password_confirmation' => [ + 'label' => 'Új jelszó megerősítése', + 'validation_attribute' => 'jelszó megerősítés', + ], + + 'current_password' => [ + 'label' => 'Jelenlegi jelszó', + 'below_content' => 'A biztonság érdekében kérjük, erősítsd meg a jelszavadat a folytatáshoz.', + 'validation_attribute' => 'jelenlegi jelszó', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Mentés', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Kétfaktoros hitelesítés (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Email cím változtatási kérelem elküldve', + 'body' => 'Az email címed megváltoztatására vonatkozó kérelem el lett küldve a(z) :email címre. Kérjük, ellenőrizd az emailjeidet a változtatás igazolásához.', + ], + + 'saved' => [ + 'title' => 'Mentve', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Mégsem', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/hu/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..2b80f85 --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Erősítsd meg az email címed', + + 'heading' => 'Erősítsd meg az email címed', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Újraküldés', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Nem kaptad meg az emailt?', + 'notification_sent' => 'Küldtünk egy emailt a(z) :email címre, amely tartalmazza az email címed ellenőrzésére vonatkozó utasításokat.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Újra elküldtük az emailt.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Túl sok újraküldési kísérlet', + 'body' => 'Kérjük, hogy próbáld meg újra :seconds másodperc múlva.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/pages/login.php b/lang/vendor/filament-panels/hu/auth/pages/login.php new file mode 100644 index 0000000..92d0fac --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Bejelentkezés', + + 'heading' => 'Jelentkezz be a fiókodba', + + 'actions' => [ + + 'register' => [ + 'before' => 'vagy', + 'label' => 'regisztrálj egy fiókot', + ], + + 'request_password_reset' => [ + 'label' => 'Elfelejtetted a jelszavad?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email cím', + ], + + 'password' => [ + 'label' => 'Jelszó', + ], + + 'remember' => [ + 'label' => 'Emlékezz rám', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Bejelentkezés', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Igazold a személyazonosságod', + + 'subheading' => 'A bejelentkezés folytatásához igazolnod kell a személyazonosságod.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Hogyan szeretnéd igazolni?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Bejelentkezés megerősítése', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Hibás email cím vagy jelszó.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Túl sok bejelentkezési kísérlet', + 'body' => 'Kérjük, próbáld meg újra :seconds másodperc múlva.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/hu/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..69647e1 --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Jelszó visszaállítása', + + 'heading' => 'Elfelejtetted a jelszavad?', + + 'actions' => [ + + 'login' => [ + 'label' => 'vissza a bejelentkezéshez', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email cím', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Email küldése', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Ha nem tartozik fiók ehhez az e-mail címhez, akkor nem fogunk üzenetet küldeni.', + ], + + 'throttled' => [ + 'title' => 'Túl sok próbálkozás', + 'body' => 'Kérjük, próbáld meg újra :seconds másodperc múlva.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/hu/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..3b8ac99 --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Jelszó visszaállítás', + + 'heading' => 'Jelszó visszaállítás', + + 'form' => [ + + 'email' => [ + 'label' => 'Email cím', + ], + + 'password' => [ + 'label' => 'Jelszó', + 'validation_attribute' => 'jelszó', + ], + + 'password_confirmation' => [ + 'label' => 'Jelszó megerősítése', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Jelszó visszaállítása', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Túl sok visszaállítási kísérlet', + 'body' => 'Kérjük, próbáld meg újra :seconds másodperc múlva.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/auth/pages/register.php b/lang/vendor/filament-panels/hu/auth/pages/register.php new file mode 100644 index 0000000..f37fbb2 --- /dev/null +++ b/lang/vendor/filament-panels/hu/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Regisztráció', + + 'heading' => 'Regisztrálj új fiókot', + + 'actions' => [ + + 'login' => [ + 'before' => 'vagy', + 'label' => 'jelentkezz be a fiókodba', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email cím', + ], + + 'name' => [ + 'label' => 'Név', + ], + + 'password' => [ + 'label' => 'Jelszó', + 'validation_attribute' => 'jelszó', + ], + + 'password_confirmation' => [ + 'label' => 'Jelszó megerősítése', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Regisztrálok', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Túl sok regisztrációs kísérlet', + 'body' => 'Kérjük, próbáld meg újra :seconds másodperc múlva.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/error-notifications.php b/lang/vendor/filament-panels/hu/error-notifications.php new file mode 100644 index 0000000..935dfb7 --- /dev/null +++ b/lang/vendor/filament-panels/hu/error-notifications.php @@ -0,0 +1,9 @@ + 'Hiba az oldal betöltése közben', + + 'body' => 'Hiba történt az oldal betöltése során. Kérjük, próbáld meg később.', + +]; diff --git a/lang/vendor/filament-panels/hu/global-search.php b/lang/vendor/filament-panels/hu/global-search.php new file mode 100644 index 0000000..8d037e8 --- /dev/null +++ b/lang/vendor/filament-panels/hu/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Globális keresés', + 'placeholder' => 'Keresés', + ], + + 'no_results_message' => 'Nincs találat.', + +]; diff --git a/lang/vendor/filament-panels/hu/layout.php b/lang/vendor/filament-panels/hu/layout.php new file mode 100644 index 0000000..a7bd0a7 --- /dev/null +++ b/lang/vendor/filament-panels/hu/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Előfizetések kezelése', + ], + + 'logout' => [ + 'label' => 'Kijelentkezés', + ], + + 'open_database_notifications' => [ + 'label' => 'Értesítések', + ], + + 'open_user_menu' => [ + 'label' => 'Felhasználói menü', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Oldalsáv elrejtése', + ], + + 'expand' => [ + 'label' => 'Oldalsáv megjelenítése', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Sötét mód bekapcsolása', + ], + + 'light' => [ + 'label' => 'Világos mód bekapcsolása', + ], + + 'system' => [ + 'label' => 'Rendszertéma követése', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => ':name avatárja', + ], + + 'logo' => [ + 'alt' => ':name logója', + ], + +]; diff --git a/lang/vendor/filament-panels/hu/pages/dashboard.php b/lang/vendor/filament-panels/hu/pages/dashboard.php new file mode 100644 index 0000000..ca27bff --- /dev/null +++ b/lang/vendor/filament-panels/hu/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Vezérlőpult', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Szűrés', + + 'modal' => [ + + 'heading' => 'Szűrés', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Alkalmazás', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/hu/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..259011e --- /dev/null +++ b/lang/vendor/filament-panels/hu/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Változtatások mentése', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Mentve', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/resources/pages/create-record.php b/lang/vendor/filament-panels/hu/resources/pages/create-record.php new file mode 100644 index 0000000..486b20e --- /dev/null +++ b/lang/vendor/filament-panels/hu/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Új :label', + + 'breadcrumb' => 'Létrehozás', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Mégsem', + ], + + 'create' => [ + 'label' => 'Létrehozás', + ], + + 'create_another' => [ + 'label' => 'Mentés és új létrehozása', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Létrehozva', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/resources/pages/edit-record.php b/lang/vendor/filament-panels/hu/resources/pages/edit-record.php new file mode 100644 index 0000000..0097444 --- /dev/null +++ b/lang/vendor/filament-panels/hu/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + ':label szerkesztése', + + 'breadcrumb' => 'Szerkesztés', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Mégsem', + ], + + 'save' => [ + 'label' => 'Mentés', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Szerkesztés', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Mentve', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/resources/pages/list-records.php b/lang/vendor/filament-panels/hu/resources/pages/list-records.php new file mode 100644 index 0000000..3af0660 --- /dev/null +++ b/lang/vendor/filament-panels/hu/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Lista', + +]; diff --git a/lang/vendor/filament-panels/hu/resources/pages/view-record.php b/lang/vendor/filament-panels/hu/resources/pages/view-record.php new file mode 100644 index 0000000..950b199 --- /dev/null +++ b/lang/vendor/filament-panels/hu/resources/pages/view-record.php @@ -0,0 +1,17 @@ + ':label megtekintése', + + 'breadcrumb' => 'Megtekintés', + + 'content' => [ + + 'tab' => [ + 'label' => 'Megtekintés', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hu/unsaved-changes-alert.php b/lang/vendor/filament-panels/hu/unsaved-changes-alert.php new file mode 100644 index 0000000..ec7377e --- /dev/null +++ b/lang/vendor/filament-panels/hu/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Még nem történt meg a módosítások rögzítése. Biztos, hogy el akarod hagyni ezt az oldalt?', + +]; diff --git a/lang/vendor/filament-panels/hu/widgets/account-widget.php b/lang/vendor/filament-panels/hu/widgets/account-widget.php new file mode 100644 index 0000000..f7a69f6 --- /dev/null +++ b/lang/vendor/filament-panels/hu/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Kijelentkezés', + ], + + ], + + 'welcome' => 'Üdvözlünk', + +]; diff --git a/lang/vendor/filament-panels/hu/widgets/filament-info-widget.php b/lang/vendor/filament-panels/hu/widgets/filament-info-widget.php new file mode 100644 index 0000000..c91e359 --- /dev/null +++ b/lang/vendor/filament-panels/hu/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentáció', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/hy/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..9aa9810 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Էլ. փոստի հասցեի փոփոխությունը արգելափակված է', + 'body' => 'Դուք հաջողությամբ արգելափակեցիք փորձը փոխելու էլ. փոստի հասցեն դեպի :email։ Եթե դուք չեք կատարել սկզբնական հարցումը, խնդրում ենք անմիջապես կապվել մեզ հետ։', + ], + + 'failed' => [ + 'title' => 'Չհաջողվեց արգելափակել էլ. փոստի հասցեի փոփոխությունը', + 'body' => 'Ցավոք, չհաջողվեց կանխել էլ. փոստի հասցեի փոփոխությունը դեպի :email, քանի որ այն արդեն հաստատվել էր նախքան ձեր արգելափակելը։ Եթե դուք չեք կատարել սկզբնական հարցումը, խնդրում ենք անմիջապես կապվել մեզ հետ։', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/hy/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..0b1b4a2 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Էլ. փոստի հասցեն փոխվել է', + 'body' => 'Ձեր էլ. փոստի հասցեն հաջողությամբ փոխվել է դեպի :email։', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/hy/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..4bc3962 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Անջատել', + + 'modal' => [ + + 'heading' => 'Անջատել հաստատող հավելվածը', + + 'description' => 'Վստա՞հ եք, որ ցանկանում եք դադարեցնել հաստատող հավելվածի օգտագործումը։ Անջատելով այն՝ ձեր հաշիվը կկորցնի լրացուցիչ անվտանգության շերտը։', + + 'form' => [ + + 'code' => [ + + 'label' => 'Մուտքագրեք 6-նիշանոց կոդը հաստատող հավելվածից', + + 'validation_attribute' => 'կոդ', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Փոխարենը օգտագործել վերականգնման կոդ', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Մուտքագրված կոդը սխալ է։', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Կամ մուտքագրեք վերականգնման կոդ', + + 'validation_attribute' => 'վերականգնման կոդ', + + 'messages' => [ + + 'invalid' => 'Մուտքագրված վերականգնման կոդը սխալ է։', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Անջատել հաստատող հավելվածը', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Հաստատող հավելվածը անջատվել է', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/hy/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..b5508ce --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Վերագեներացնել վերականգնման կոդերը', + + 'modal' => [ + + 'heading' => 'Վերագեներացնել հաստատող հավելվածի վերականգնման կոդերը', + + 'description' => 'Եթե դուք կորցրել եք ձեր վերականգնման կոդերը, կարող եք վերագեներացնել դրանք այստեղ։ Հին կոդերը անմիջապես կդադարեն գործել։', + + 'form' => [ + + 'code' => [ + + 'label' => 'Մուտքագրեք 6-նիշանոց կոդը հաստատող հավելվածից', + + 'validation_attribute' => 'կոդ', + + 'messages' => [ + + 'invalid' => 'Մուտքագրված կոդը սխալ է։', + + ], + + ], + + 'password' => [ + + 'label' => 'Կամ մուտքագրեք ձեր ընթացիկ գաղտնաբառը', + + 'validation_attribute' => 'գաղտնաբառ', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Վերագեներացնել վերականգնման կոդերը', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Ստեղծվել են նոր վերականգնման կոդեր հաստատող հավելվածի համար', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Նոր վերականգնման կոդեր', + + 'description' => 'Խնդրում ենք պահպանել հետևյալ վերականգնման կոդերը անվտանգ վայրում։ Դրանք կցուցադրվեն միայն մեկ անգամ, բայց անհրաժեշտ կլինեն, եթե կորցնեք մուտքը հաստատող հավելվածի նկատմամբ։', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Փակել', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/hy/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..f99b196 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Կարգավորել', + + 'modal' => [ + + 'heading' => 'Կարգավորել հաստատող հավելվածը', + + 'description' => <<<'BLADE' + Այս գործընթացը ավարտելու համար ձեզ անհրաժեշտ կլինի հավելված, օրինակ՝ Google Authenticator (iOS, Android)։ + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Սկանավորեք այս QR կոդը հաստատող հավելվածով․', + + 'alt' => 'QR կոդ հաստատող հավելվածով սկանավորելու համար', + + ], + + 'text_code' => [ + + 'instruction' => 'Կամ մուտքագրեք այս կոդը ձեռքով․', + + 'messages' => [ + 'copied' => 'Պատճենվել է', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Խնդրում ենք պահպանել հետևյալ վերականգնման կոդերը անվտանգ վայրում։ Դրանք կցուցադրվեն միայն մեկ անգամ, բայց անհրաժեշտ կլինեն, եթե կորցնեք մուտքը հաստատող հավելվածի նկատմամբ։', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Մուտքագրեք 6-նիշանոց կոդը հաստատող հավելվածից', + + 'validation_attribute' => 'կոդ', + + 'below_content' => 'Ամեն անգամ մուտք գործելու կամ զգայուն գործողություն կատարելու ժամանակ ձեզ անհրաժեշտ կլինի մուտքագրել հաստատող հավելվածի 6-նիշանոց կոդը։', + + 'messages' => [ + + 'invalid' => 'Մուտքագրված կոդը սխալ է։', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Միացնել հաստատող հավելվածը', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Հաստատող հավելվածը միացվել է', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/hy/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..366c11d --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Հաստատող հավելված', + + 'below_content' => 'Օգտագործեք անվտանգ հավելված՝ մուտքի ստուգման համար ժամանակավոր կոդ ստեղծելու նպատակով։', + + 'messages' => [ + 'enabled' => 'Միացված է', + 'disabled' => 'Անջատված է', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Օգտագործեք կոդ հաստատող հավելվածից', + + 'code' => [ + + 'label' => 'Մուտքագրեք 6-նիշանոց կոդը հաստատող հավելվածից', + + 'validation_attribute' => 'կոդ', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Փոխարենը օգտագործել վերականգնման կոդ', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Մուտքագրված կոդը սխալ է։', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Կամ մուտքագրեք վերականգնման կոդ', + + 'validation_attribute' => 'վերականգնման կոդ', + + 'messages' => [ + + 'invalid' => 'Մուտքագրված վերականգնման կոդը սխալ է։', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/hy/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..8b15db7 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + 'Անջատել', + + 'modal' => [ + + 'heading' => 'Անջատել էլ. փոստով հաստատման կոդերը', + + 'description' => 'Վստա՞հ եք, որ ցանկանում եք դադարեցնել էլ. փոստով հաստատման կոդեր ստանալը։ Անջատելով սա՝ ձեր հաշիվը կկորցնի լրացուցիչ անվտանգության շերտը։', + + 'form' => [ + + 'code' => [ + + 'label' => 'Մուտքագրեք 6-նիշանոց կոդը, որը մենք ուղարկել ենք ձեր էլ. փոստով', + + 'validation_attribute' => 'կոդ', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Ուղարկել նոր կոդ էլ. փոստով', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Մենք ձեզ նոր կոդ ուղարկեցինք էլ. փոստով', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Մուտքագրված կոդը սխալ է։', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Անջատել էլ. փոստով հաստատման կոդերը', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Էլ. փոստով հաստատման կոդերը անջատվել են', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/hy/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..725c393 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + 'Կարգավորել', + + 'modal' => [ + + 'heading' => 'Կարգավորել էլ. փոստով հաստատման կոդերը', + + 'description' => 'Յուրաքանչյուր մուտքի կամ զգայուն գործողության ժամանակ անհրաժեշտ կլինի մուտքագրել 6-նիշանոց կոդը, որը մենք կուղարկենք ձեր էլ. փոստին։ Ստուգեք ձեր էլ. փոստը՝ կարգավորումն ավարտելու համար անհրաժեշտ 6-նիշանոց կոդը ստանալու համար։', + + 'form' => [ + + 'code' => [ + + 'label' => 'Մուտքագրեք 6-նիշանոց կոդը, որը մենք ուղարկել ենք ձեր էլ. փոստով', + + 'validation_attribute' => 'կոդ', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Ուղարկել նոր կոդ էլ. փոստով', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Մենք ձեզ նոր կոդ ուղարկեցինք էլ. փոստով', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Մուտքագրված կոդը սխալ է։', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Միացնել էլ. փոստով հաստատման կոդերը', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Էլ. փոստով հաստատման կոդերը միացվել են', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/hy/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..a5b4817 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Ահա ձեր մուտքի կոդը', + + 'lines' => [ + 'Ձեր մուտքի կոդն է՝ :code', + 'Այս կոդը կսպառվի մեկ րոպեում։|Այս կոդը կսպառվի :minutes րոպեում։', + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/hy/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..bc8abe1 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'Էլ. փոստով հաստատման կոդեր', + + 'below_content' => 'Ստացեք ժամանակավոր կոդ ձեր էլ. փոստում՝ մուտքի ժամանակ ինքնությունը հաստատելու համար։', + + 'messages' => [ + 'enabled' => 'Միացված է', + 'disabled' => 'Անջատված է', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Ուղարկել կոդը ձեր էլ. փոստին', + + 'code' => [ + + 'label' => 'Մուտքագրեք 6-նիշանոց կոդը, որը մենք ուղարկել ենք ձեր էլ. փոստով', + + 'validation_attribute' => 'կոդ', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Ուղարկել նոր կոդ էլ. փոստով', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Մենք ձեզ նոր կոդ ուղարկեցինք էլ. փոստով', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Մուտքագրված կոդը սխալ է։', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/hy/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..bf13f51 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Կարգավորել երկգործոնային նույնականացում (2FA)', + + 'heading' => 'Կարգավորել երկգործոնային նույնականացումը', + + 'subheading' => '2FA-ն ավելացնում է լրացուցիչ անվտանգության շերտ ձեր հաշվին՝ մուտք գործելիս պահանջելով նույնականացման երկրորդ ձև։', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Շարունակել', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/hy/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..f1e8993 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Սեղմեք՝', + + 'copy' => [ + 'label' => 'պատճենել', + ], + + 'կամ', + + 'download' => [ + 'label' => 'ներբեռնել', + ], + + 'բոլոր կոդերը միանգամից։', + + ], + + 'messages' => [ + 'copied' => 'Պատճենվել է', + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/hy/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..d35d7cc --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Ձեր էլ. փոստի հասցեն փոխվում է', + + 'lines' => [ + 'Մենք ստացել ենք հարցում՝ փոխելու ձեր հաշվին կցված էլ. փոստի հասցեն։ Ձեր գաղտնաբառը օգտագործվել է այս փոփոխությունը հաստատելու համար։', + 'Հաստատումից հետո, ձեր հաշվին նոր էլ. փոստի հասցեն կլինի՝ :email։', + 'Դուք կարող եք արգելափակել փոփոխությունը մինչ այն կհաստատվի՝ սեղմելով ստորև գտնվող կոճակը։', + 'Եթե դուք այս հարցումը չեք կատարել, խնդրում ենք անմիջապես կապվել մեզ հետ։', + ], + + 'action' => 'Արգելափակել էլ. փոստի փոփոխությունը', + +]; diff --git a/lang/vendor/filament-panels/hy/auth/pages/edit-profile.php b/lang/vendor/filament-panels/hy/auth/pages/edit-profile.php new file mode 100644 index 0000000..4aeac8a --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Պրոֆիլ', + + 'form' => [ + + 'email' => [ + 'label' => 'Էլ. փոստի հասցե', + ], + + 'name' => [ + 'label' => 'Անուն', + ], + + 'password' => [ + 'label' => 'Նոր գաղտնաբառ', + 'validation_attribute' => 'գաղտնաբառ', + ], + + 'password_confirmation' => [ + 'label' => 'Հաստատել նոր գաղտնաբառը', + 'validation_attribute' => 'գաղտնաբառի հաստատում', + ], + + 'current_password' => [ + 'label' => 'Ներկայիս գաղտնաբառ', + 'below_content' => 'Անվտանգության համար խնդրում ենք հաստատել ձեր գաղտնաբառը՝ շարունակելու համար։', + 'validation_attribute' => 'ներկայիս գաղտնաբառ', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Պահպանել փոփոխությունները', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Երկգործոնային նույնականացում (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Էլ. փոստի հասցեի փոփոխման հարցումը ուղարկված է', + 'body' => 'Ձեր էլ. փոստի հասցեն փոխելու հարցում ուղարկվել է դեպի :email։ Խնդրում ենք ստուգել ձեր էլ. փոստը՝ փոփոխությունը հաստատելու համար։', + ], + + 'saved' => [ + 'title' => 'Պահպանված է', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Չեղարկել', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/hy/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..0fabc45 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Հաստատեք Ձեր էլ. փոստի հասցեն', + + 'heading' => 'Հաստատեք Ձեր էլ. փոստի հասցեն', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Նորից ուղարկել այն', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Չե՞ք ստացել մեր ուղարկած էլ. նամակը', + 'notification_sent' => 'Մենք նամակ ենք ուղարկել :email էլ. փոստի հասցեին, որը պարունակում է հրահանգներ, թե ինչպես հաստատել Ձեր էլ. փոստը', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Կրկին էլ. նամակ ենք ուղարկել', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Կրկին ուղարկելու չափազանց շատ փորձեր', + 'body' => 'Խնդրում ենք :seconds վայրկյան անց կրկին փորձել։', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/pages/login.php b/lang/vendor/filament-panels/hy/auth/pages/login.php new file mode 100644 index 0000000..54ff457 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Մուտք', + + 'heading' => 'Մուտք գործել', + + 'actions' => [ + + 'register' => [ + 'before' => 'կամ', + 'label' => 'ստեղծել նոր հաշիվ', + ], + + 'request_password_reset' => [ + 'label' => 'Մոռացե՞լ եք գաղտնաբառը', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Էլ. փոստի հասցե', + ], + + 'password' => [ + 'label' => 'Գաղտնաբառ', + ], + + 'remember' => [ + 'label' => 'Հիշել ինձ', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Մուտք գործել', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Հաստատեք ձեր անձը', + + 'subheading' => 'Շարունակելու համար անհրաժեշտ է հաստատել ձեր անձը։', + + 'form' => [ + + 'provider' => [ + 'label' => 'Ինչպե՞ս կցանկանայիք հաստատել', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Հաստատել մուտքը', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Մուտքի տվյալները չեն համապատասխանում մեր գրանցումներին։', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Չափազանց շատ մուտքի փորձեր', + 'body' => 'Խնդրում ենք փորձել կրկին :seconds վայրկյան հետո։', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/hy/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..b43e82c --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Վերականգնել ձեր գաղտնաբառը', + + 'heading' => 'Մոռացե՞լ եք գաղտնաբառը', + + 'actions' => [ + + 'login' => [ + 'label' => 'վերադառնալ մուտք', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Էլ. փոստի հասցե', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Ուղարկել էլ. նամակ', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Եթե ձեր հաշիվը գոյություն չունի, դուք նամակ չեք ստանա։', + ], + + 'throttled' => [ + 'title' => 'Չափազանց շատ հարցումներ', + 'body' => 'Խնդրում ենք կրկին փորձել :seconds վայրկյան հետո։', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/hy/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..0f2aef8 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Վերականգնել Ձեր գաղտնաբառը', + + 'heading' => 'Վերականգնել Ձեր գաղտնաբառը', + + 'form' => [ + + 'email' => [ + 'label' => 'Էլ. փոստի հասցե', + ], + + 'password' => [ + 'label' => 'Գաղտնաբառ', + 'validation_attribute' => 'Գաղտնաբառ', + ], + + 'password_confirmation' => [ + 'label' => 'Հաստատել գաղտնաբառը', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Գաղտնաբառի վերականգնում', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Վերականգնման չափազանց շատ փորձեր', + 'body' => 'Խնդրում ենք :seconds վայրկյան անց կրկին փորձել։', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/auth/pages/register.php b/lang/vendor/filament-panels/hy/auth/pages/register.php new file mode 100644 index 0000000..085f9c9 --- /dev/null +++ b/lang/vendor/filament-panels/hy/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Գրանցվել', + + 'heading' => 'Գրանցել նոր հաշիվ', + + 'actions' => [ + + 'login' => [ + 'before' => 'կամ', + 'label' => 'մուտք գործեք Ձեր հաշվով', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Էլ. փոստի հասցե', + ], + + 'name' => [ + 'label' => 'Անուն', + ], + + 'password' => [ + 'label' => 'Գաղտնաբառ', + 'validation_attribute' => 'Գաղտնաբառ', + ], + + 'password_confirmation' => [ + 'label' => 'Հաստատեք գաղտնաբառը', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Գրանցել նոր հաշիվ', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Գրանցման չափազանց շատ փորձեր', + 'body' => 'Խնդրում ենք :seconds վայրկյան անց կրկին փորձել։', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/error-notifications.php b/lang/vendor/filament-panels/hy/error-notifications.php new file mode 100644 index 0000000..90c19ea --- /dev/null +++ b/lang/vendor/filament-panels/hy/error-notifications.php @@ -0,0 +1,9 @@ + 'Էջը բեռնելու ընթացքում սխալ', + + 'body' => 'Այս էջը բեռնելու փորձի ընթացքում տեղի ունեցավ սխալ։ Խնդրում ենք փորձել կրկին ավելի ուշ։', + +]; diff --git a/lang/vendor/filament-panels/hy/global-search.php b/lang/vendor/filament-panels/hy/global-search.php new file mode 100644 index 0000000..0208714 --- /dev/null +++ b/lang/vendor/filament-panels/hy/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Գլոբալ որոնում', + 'placeholder' => 'Որոնել', + ], + + 'no_results_message' => 'Որոնման արդյունքներ չեն գտնվել։', + +]; diff --git a/lang/vendor/filament-panels/hy/layout.php b/lang/vendor/filament-panels/hy/layout.php new file mode 100644 index 0000000..e068f31 --- /dev/null +++ b/lang/vendor/filament-panels/hy/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Բաժանորդագրության կառավարում', + ], + + 'logout' => [ + 'label' => 'Դուրս գալ', + ], + + 'open_database_notifications' => [ + 'label' => 'Բացել ծանուցումները', + ], + + 'open_user_menu' => [ + 'label' => 'Օգտագործողի ընտրացանկ', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Նվազագույնի հասցնել կողային տողը', + ], + + 'expand' => [ + 'label' => 'Ընդլայնել կողային տողը', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Միացնել մութ թեման', + ], + + 'light' => [ + 'label' => 'Միացնել բաց թեման', + ], + + 'system' => [ + 'label' => 'Միացնել համակարգի թեման', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Անձնանշան :name', + ], + + 'logo' => [ + 'alt' => ':name լոգո', + ], + +]; diff --git a/lang/vendor/filament-panels/hy/pages/dashboard.php b/lang/vendor/filament-panels/hy/pages/dashboard.php new file mode 100644 index 0000000..0fd8846 --- /dev/null +++ b/lang/vendor/filament-panels/hy/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Վահանակ', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Ֆիլտր', + + 'modal' => [ + + 'heading' => 'Ֆիլտր', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Հաստատել', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/hy/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..c3003ad --- /dev/null +++ b/lang/vendor/filament-panels/hy/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Պահպանել փոփոխությունները', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Պահպանված է', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/resources/pages/create-record.php b/lang/vendor/filament-panels/hy/resources/pages/create-record.php new file mode 100644 index 0000000..eab8035 --- /dev/null +++ b/lang/vendor/filament-panels/hy/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Ստեղծել :label', + + 'breadcrumb' => 'Ստեղծել', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Չեղարկել', + ], + + 'create' => [ + 'label' => 'Ստեղծել', + ], + + 'create_another' => [ + 'label' => 'Ստեղծել և ստեղծել մեկ այլ', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Ստեղծվել է', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/resources/pages/edit-record.php b/lang/vendor/filament-panels/hy/resources/pages/edit-record.php new file mode 100644 index 0000000..b102964 --- /dev/null +++ b/lang/vendor/filament-panels/hy/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Խմբագրել :label', + + 'breadcrumb' => 'Խմբագրել', + + 'navigation_label' => 'Խմբագրել', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Չեղարկել', + ], + + 'save' => [ + 'label' => 'Պահպանել փոփոխությունները', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Խմբագրել', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Պահպանված է', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/resources/pages/list-records.php b/lang/vendor/filament-panels/hy/resources/pages/list-records.php new file mode 100644 index 0000000..21f2919 --- /dev/null +++ b/lang/vendor/filament-panels/hy/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Ցանկ', + +]; diff --git a/lang/vendor/filament-panels/hy/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/hy/resources/pages/manage-related-records.php new file mode 100644 index 0000000..4bf4281 --- /dev/null +++ b/lang/vendor/filament-panels/hy/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Խմբագրել :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/hy/resources/pages/view-record.php b/lang/vendor/filament-panels/hy/resources/pages/view-record.php new file mode 100644 index 0000000..8463048 --- /dev/null +++ b/lang/vendor/filament-panels/hy/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Դիտել :label', + + 'breadcrumb' => 'Դիտել', + + 'navigation_label' => 'Դիտել', + + 'content' => [ + + 'tab' => [ + 'label' => 'Դիտել', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/hy/unsaved-changes-alert.php b/lang/vendor/filament-panels/hy/unsaved-changes-alert.php new file mode 100644 index 0000000..0d8cc97 --- /dev/null +++ b/lang/vendor/filament-panels/hy/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Դուք ունեք չպահված փոփոխություններ։ Վստա՞հ եք, որ ցանկանում եք լքել այս էջը։', + +]; diff --git a/lang/vendor/filament-panels/hy/widgets/account-widget.php b/lang/vendor/filament-panels/hy/widgets/account-widget.php new file mode 100644 index 0000000..a4ced00 --- /dev/null +++ b/lang/vendor/filament-panels/hy/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Դուրս գալ', + ], + + ], + + 'welcome' => 'Բարի գալուստ', + +]; diff --git a/lang/vendor/filament-panels/hy/widgets/filament-info-widget.php b/lang/vendor/filament-panels/hy/widgets/filament-info-widget.php new file mode 100644 index 0000000..b5d6daa --- /dev/null +++ b/lang/vendor/filament-panels/hy/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Փաստաթղթեր', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/id/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..763d4f1 --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Perubahan Alamat Email Diblokir', + 'body' => 'Anda telah berhasil memblokir upaya perubahan alamat email ke :email. Jika Anda tidak mengajukan permintaan ini, segera hubungi kami.', + ], + + 'failed' => [ + 'title' => 'Gagal Memblokir Perubahan Alamat Email', + 'body' => 'Sayangnya, Anda tidak dapat mencegah perubahan alamat email ke :email karena alamat tersebut sudah terverifikasi sebelum Anda memblokirnya. Jika Anda tidak mengajukan permintaan ini, segera hubungi kami.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/id/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..af15a65 --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Alamat email berhasil diubah', + 'body' => 'Amail email Anda telah berhasil diubah menjadi :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/id/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..17ee16b --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Nonaktifkan', + + 'modal' => [ + + 'heading' => 'Nonaktifkan aplikasi authenticator', + + 'description' => 'Apakah Anda yakin ingin berhenti menggunakan aplikasi Autenticator? Menonaktifkan fitur ini akan mengurangi keamanan dari akun Anda.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Masukkan kode 6 digit dari aplikasi authenticator', + + 'validation_attribute' => 'kode', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Gunakan kode pemulihan sebagai gantinya', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kode yang Anda masukkan tidak valid.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Atau, gunakan kode pemulihan', + + 'validation_attribute' => 'kode pemulihan', + + 'messages' => [ + + 'invalid' => 'Kode pemulihan yang Anda masukkan tidak valid.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Nonaktifkan aplikasi authenticator', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Aplikasi authenticator telah dinonaktifkan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/id/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..82e95cf --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Buat ulang kode pemulihan', + + 'modal' => [ + + 'heading' => 'Buat ulang kode pemulihat aplikasi authenticator', + + 'description' => 'Jika Anda kehilangan kode pemulihan, Anda dapat membuat ulang di sini. Kode pemulihan lama akan langsung dinonaktifkan.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Masukkan kode 6 digit dari aplikasi authenticator', + + 'validation_attribute' => 'kode', + + 'messages' => [ + + 'invalid' => 'Kode yang Anda masukkan tidak valid.', + + ], + + ], + + 'password' => [ + + 'label' => 'Atau, gunakan kata sandi', + + 'validation_attribute' => 'kata sandi', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Buat ulang kode pemulihan', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Kode pemulihan baru untuk aplikasi authenticator berhasil dibuat', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Kode pemulihan baru', + + 'description' => 'Harap simpan kode pemulihan berikut pada tempat yang aman. Kode ini hanya akan ditampilkan sekali, tetapi akan diperlukan jika Anda kehilangan akses ke aplikasi authenticator anda:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Tutup', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/id/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..c433bfc --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Aktifkan', + + 'modal' => [ + + 'heading' => 'Aktifkan aplikasi authenticator', + + 'description' => <<<'BLADE' + Anda memerlukan aplikasi seperti Google authenticator (iOS, Android) untuk menyelesaikan proses ini. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Pindai kode QR berikut menggunakan aplikasi authenticator Anda:', + + 'alt' => 'Kode QR untuk dipindai dengan aplikasi authenticator', + + ], + + 'text_code' => [ + + 'instruction' => 'Atau masukkan kode berikut:', + + 'messages' => [ + 'copied' => 'Berhasil disalin', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Harap simpan kode pemulihan berikut pada tempat yang aman. Kode ini hanya akan ditampilkan sekali, tetapi akan diperlukan jika Anda kehilangan akses ke aplikasi authenticator anda:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Masukkan kode 6 digit dari aplikasi authenticator', + + 'validation_attribute' => 'kode', + + 'below_content' => 'Anda harus memasukkan kode 6 digit dari aplikasi authenticator setiap kali masuk atau melakukan tindakan sensitif.', + + 'messages' => [ + + 'invalid' => 'Kode yang Anda masukkan tidak valid.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Aktifkan aplikasi authenticator', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Aplikasi authenticator telah diaktifkan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/id/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..6a32b19 --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Aplikasi authenticator', + + 'below_content' => 'Gunakan aplikasi yang aman untuk membuat kode sementara untuk verifikasi saat login.', + + 'messages' => [ + 'enabled' => 'Aktif', + 'disabled' => 'Nonaktif', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Gunakan kode dari aplikasi authenticator Anda', + + 'code' => [ + + 'label' => 'Masukkan kode 6 digit dari aplikasi authenticatorp', + + 'validation_attribute' => 'kode', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Gunakan kode pemulihan sebagai gantinya', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kode yang Anda masukkan tidak valid.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Atau, gunakan kode pemulihan', + + 'validation_attribute' => 'kode pemulihan', + + 'messages' => [ + + 'invalid' => 'Kode pemulihan yang Anda masukkan tidak valid.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/id/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..b70fc04 --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + 'Nonaktifkan', + + 'modal' => [ + + 'heading' => 'Nonaktifkan kode verifikasi email', + + 'description' => 'Apakah Anda yakin ingin berhenti menerima kode verifikasi melalui email? Menonaktifkan fitur ini akan mengurangi keamanan dari akun Anda.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Masukkan kode 6 digit yang kami kirimkan melalui email', + + 'validation_attribute' => 'kode', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Kirim ulang kode melalui email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Kami telah mengirimkan kode baru ke email Anda', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kode yang Anda masukkan tidak valid.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Nonaktifkan kode verifikasi email', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Kode verifikasi email telah dinonaktifkan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/id/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..db240ad --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + 'Aktifkan', + + 'modal' => [ + + 'heading' => 'Aktifkan kode verifikasi email', + + 'description' => 'Anda harus memasukkan kode 6 digit yang kami kirimkan melalui email setiap kali Anda masuk atau melakukan tindakan sensitif. Periksa email Anda untuk mendapatkan kode tersebut untuk menyelesaikan proses ini.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Masukkan kode 6 digit yang kami kirimkan melalui email', + + 'validation_attribute' => 'kode', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Kirim ulang kode melalui email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Kami telah mengirimkan kode baru ke email Anda', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kode yang Anda masukkan tidak valid.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Aktifkan kode verifikasi email', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Kode verifikasi email telah diaktifkan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/id/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..e74fe1b --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Berikut kode login Anda', + + 'lines' => [ + 'Kode masuk Anda adalah: :code', + 'Kode ini akan kedaluwarsa dalam :minutes menit.', + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/id/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..756de10 --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'Kode verifikasi email', + + 'below_content' => 'Terima kode sementara melalui alamat email Anda untuk memverifikasi identitas Anda saat login.', + + 'messages' => [ + 'enabled' => 'Aktif', + 'disabled' => 'Nonaktif', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Kirim kode ke email Anda', + + 'code' => [ + + 'label' => 'Masukkan kode 6 digit yang kami kirimkan melalui email', + + 'validation_attribute' => 'kode', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Kirim ulang kode melalui email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Kami telah mengirimkan kode baru ke email Anda', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kode yang Anda masukkan tidak valid.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/id/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..d9248dd --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Set up two-factor authentication (2FA)', + + 'heading' => 'Set up two-factor authentication', + + 'subheading' => '2FA adds an extra layer of security to your account by requiring a second form of verification when signing in.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Continue', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/id/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..5b8be9e --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Klik untuk', + + 'copy' => [ + 'label' => 'menyalin', + ], + + 'atau', + + 'download' => [ + 'label' => 'unduh', + ], + + 'semua kode sekaligus.', + + ], + + 'messages' => [ + 'copied' => 'Berhasil disalin', + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/id/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..e728ed9 --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Alamat email Anda sedang diubah', + + 'lines' => [ + 'Kami menerima permintaan untuk mengubah alamat email yang terhubung dengan akun Anda. Perubahan ini dikonfirmasi menggunakan kata sandi Anda.', + 'Jika berhasil diverifikasi, alamat email baru untuk akun Anda akan menjadi: :email.', + 'Anda dapat memblokir perubahan ini sebelum diverifikasi dengan mengklik tombol di bawah ini.', + 'Jika Anda tidak mengajukan permintaan ini, segera hubungi kami.', + ], + + 'action' => 'Blokir Perubahan Email', + +]; diff --git a/lang/vendor/filament-panels/id/auth/pages/edit-profile.php b/lang/vendor/filament-panels/id/auth/pages/edit-profile.php new file mode 100644 index 0000000..b5d55b6 --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'Alamat email', + ], + + 'name' => [ + 'label' => 'Nama', + ], + + 'password' => [ + 'label' => 'Kata sandi baru', + 'validation_attribute' => 'kata sandi', + ], + + 'password_confirmation' => [ + 'label' => 'Konfirmasi kata sandi baru', + 'validation_attribute' => 'konfirmasi kata sandi', + ], + + 'current_password' => [ + 'label' => 'Kata sandi saat ini', + 'below_content' => 'Untuk keamanan, harap konfirmasi kata sandi Anda untuk melanjutkan.', + 'validation_attribute' => 'kata sandi saat ini', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Simpan', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Autentikasi dua faktor (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Permintaan perubahan alamat email telah dikirim', + 'body' => 'Permintaan untuk mengubah alamat email Anda telah dikirim ke :email. Silakan periksa email tersebut untuk memverifikasi perubahan.', + ], + + 'saved' => [ + 'title' => 'Disimpan', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Kembali', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/id/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..e5a05c1 --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Verifikasi alamat email Anda', + + 'heading' => 'Verifikasi alamat email Anda', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Kirim ulang', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Belum menerima email?', + 'notification_sent' => 'Kami telah mengirimkan email ke :email yang berisikan instruksi cara verifikasi alamat email Anda.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Email telah dikirim ulang.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Terlalu banyak permintaan', + 'body' => 'Silakan coba lagi dalam :seconds detik.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/pages/login.php b/lang/vendor/filament-panels/id/auth/pages/login.php new file mode 100644 index 0000000..6d378c1 --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Masuk', + + 'heading' => 'Masuk ke akun Anda', + + 'actions' => [ + + 'register' => [ + 'before' => 'atau', + 'label' => 'buat akun baru', + ], + + 'request_password_reset' => [ + 'label' => 'Lupa kata sandi?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Alamat email', + ], + + 'password' => [ + 'label' => 'Kata sandi', + ], + + 'remember' => [ + 'label' => 'Ingat saya', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Masuk', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Verifikasi identitas Anda', + + 'subheading' => 'Untuk melanjutkan login, Anda perlu memverifikasi identitas Anda.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Bagaimana Anda ingin memverifikasi?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Konfirmasi login', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Kredensial yang diberikan tidak dapat ditemukan.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Terlalu banyak permintaan', + 'body' => 'Silakan coba lagi dalam :seconds detik.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/id/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..85a3ea3 --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Atur ulang kata sandi', + + 'heading' => 'Lupa kata sandi?', + + 'actions' => [ + + 'login' => [ + 'label' => 'Kembali ke halaman masuk', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Alamat email', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Kirim email', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Jika akun Anda tidak terdaftar, Anda tidak akan menerima email.', + ], + + 'throttled' => [ + 'title' => 'Terlalu banyak permintaan', + 'body' => 'Silakan coba lagi dalam :seconds detik.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/id/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..8096d17 --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Atur ulang kata sandi', + + 'heading' => 'Atur ulang kata sandi', + + 'form' => [ + + 'email' => [ + 'label' => 'Alamat email', + ], + + 'password' => [ + 'label' => 'Kata sandi baru', + 'validation_attribute' => 'kata sandi', + ], + + 'password_confirmation' => [ + 'label' => 'Konfirmasi kata sandi baru', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Atur ulang kata sandi', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Terlalu banyak permintaan', + 'body' => 'Silakan coba lagi dalam :seconds detik.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/auth/pages/register.php b/lang/vendor/filament-panels/id/auth/pages/register.php new file mode 100644 index 0000000..fd5fc08 --- /dev/null +++ b/lang/vendor/filament-panels/id/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Daftar', + + 'heading' => 'Buat akun', + + 'actions' => [ + + 'login' => [ + 'before' => 'atau', + 'label' => 'masuk ke akun yang sudah ada', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Alamat email', + ], + + 'name' => [ + 'label' => 'Nama', + ], + + 'password' => [ + 'label' => 'Kata sandi', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Konfirmasi kata sandi', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Buat akun', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Terlalu banyak permintaan', + 'body' => 'Silakan coba lagi dalam :seconds detik.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/error-notifications.php b/lang/vendor/filament-panels/id/error-notifications.php new file mode 100644 index 0000000..e53b5e9 --- /dev/null +++ b/lang/vendor/filament-panels/id/error-notifications.php @@ -0,0 +1,9 @@ + 'Terjadi error ketika memuat halaman', + + 'body' => 'Terjadi kesalahan saat mencoba memuat halaman ini. Silakan coba lagi nanti.', + +]; diff --git a/lang/vendor/filament-panels/id/global-search.php b/lang/vendor/filament-panels/id/global-search.php new file mode 100644 index 0000000..0b1a9c1 --- /dev/null +++ b/lang/vendor/filament-panels/id/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Pencarian global', + 'placeholder' => 'Cari', + ], + + 'no_results_message' => 'Pencarian tidak ditemukan.', + +]; diff --git a/lang/vendor/filament-panels/id/layout.php b/lang/vendor/filament-panels/id/layout.php new file mode 100644 index 0000000..04fee68 --- /dev/null +++ b/lang/vendor/filament-panels/id/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Kelola langganan', + ], + + 'logout' => [ + 'label' => 'Keluar', + ], + + 'open_database_notifications' => [ + 'label' => 'Buka notifikasi', + ], + + 'open_user_menu' => [ + 'label' => 'Menu pengguna', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Persempit menu', + ], + + 'expand' => [ + 'label' => 'Perluas menu', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Mode Gelap', + ], + + 'light' => [ + 'label' => 'Mode Terang', + ], + + 'system' => [ + 'label' => 'Sesuai tema perangkat', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar :name', + ], + + 'logo' => [ + 'alt' => 'Logo :name', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Pencarian tenant', + 'placeholder' => 'Cari', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/pages/dashboard.php b/lang/vendor/filament-panels/id/pages/dashboard.php new file mode 100644 index 0000000..b441312 --- /dev/null +++ b/lang/vendor/filament-panels/id/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Dasbor', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filter', + + 'modal' => [ + + 'heading' => 'Filter', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Terapkan', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/id/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..ec31897 --- /dev/null +++ b/lang/vendor/filament-panels/id/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Simpan', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Disimpan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/resources/pages/create-record.php b/lang/vendor/filament-panels/id/resources/pages/create-record.php new file mode 100644 index 0000000..9e1d6e5 --- /dev/null +++ b/lang/vendor/filament-panels/id/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Buat :label', + + 'breadcrumb' => 'Buat', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Batal', + ], + + 'create' => [ + 'label' => 'Buat', + ], + + 'create_another' => [ + 'label' => 'Buat & buat lainnya', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Data berhasil dibuat', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/resources/pages/edit-record.php b/lang/vendor/filament-panels/id/resources/pages/edit-record.php new file mode 100644 index 0000000..f36e0fc --- /dev/null +++ b/lang/vendor/filament-panels/id/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Ubah :label', + + 'breadcrumb' => 'Ubah', + + 'navigation_label' => 'Ubah', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Batal', + ], + + 'save' => [ + 'label' => 'Simpan', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Ubah', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Data berhasil disimpan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/resources/pages/list-records.php b/lang/vendor/filament-panels/id/resources/pages/list-records.php new file mode 100644 index 0000000..85aa283 --- /dev/null +++ b/lang/vendor/filament-panels/id/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Daftar', + +]; diff --git a/lang/vendor/filament-panels/id/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/id/resources/pages/manage-related-records.php new file mode 100644 index 0000000..45f8619 --- /dev/null +++ b/lang/vendor/filament-panels/id/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Manage :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/id/resources/pages/view-record.php b/lang/vendor/filament-panels/id/resources/pages/view-record.php new file mode 100644 index 0000000..e962474 --- /dev/null +++ b/lang/vendor/filament-panels/id/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Lihat :label', + + 'breadcrumb' => 'Lihat', + + 'navigation_label' => 'Lihat', + + 'content' => [ + + 'tab' => [ + 'label' => 'Lihat', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/id/unsaved-changes-alert.php b/lang/vendor/filament-panels/id/unsaved-changes-alert.php new file mode 100644 index 0000000..9b64dd7 --- /dev/null +++ b/lang/vendor/filament-panels/id/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Anda memiliki perubahan yang belum disimpan. Apakah Anda yakin ingin meninggalkan halaman ini?', + +]; diff --git a/lang/vendor/filament-panels/id/widgets/account-widget.php b/lang/vendor/filament-panels/id/widgets/account-widget.php new file mode 100644 index 0000000..02dc2d5 --- /dev/null +++ b/lang/vendor/filament-panels/id/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Keluar', + ], + + ], + + 'welcome' => 'Selamat Datang', + +]; diff --git a/lang/vendor/filament-panels/id/widgets/filament-info-widget.php b/lang/vendor/filament-panels/id/widgets/filament-info-widget.php new file mode 100644 index 0000000..85d4131 --- /dev/null +++ b/lang/vendor/filament-panels/id/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentasi', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/it/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..51fdf52 --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Cambio dell\'email bloccato', + 'body' => 'Hai bloccato con successo un tentativo di cambio dell\'email a :email. Se non hai effettuato la richiesta originale, ti preghiamo di contattarci immediatamente.', + ], + + 'failed' => [ + 'title' => 'Impossibile bloccare il cambio dell\'email', + 'body' => 'Sfortunatamente, non sei riuscito a impedire che l\'email venisse cambiata in :email, poiché era già stata verificata prima di essere bloccata. Se non hai effettuato la richiesta originale, ti preghiamo di contattarci immediatamente.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/it/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..bd04df7 --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Cambio dell\'email avvenuto', + 'body' => 'La tua email è stata cambiata con successo in :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/it/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..30b9e27 --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Disabilita', + + 'modal' => [ + + 'heading' => 'Disabilita l\'app di autenticazione', + + 'description' => 'Sei sicuro di voler smettere di utilizzare l\'app di autenticazione? Disabilitare questa opzione rimuoverà un ulteriore livello di sicurezza dal tuo account.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Inserisci il codice di 6 cifre dall\'app di autenticazione', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Utilizza un codice di recupero', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Il codice inserito non è valido.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Oppure, inserisci un codice di recupero', + + 'validation_attribute' => 'recovery code', + + 'messages' => [ + + 'invalid' => 'Il codice di recupero inserito non è valido.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Disabilita l\'app di autenticazione', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'L\'app di autenticazione è stata disabilitata', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/it/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..fba5bc7 --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Rigenera i codici di recupero', + + 'modal' => [ + + 'heading' => 'Rigenera i codici di recupero dell\'app di autenticazione', + + 'description' => 'Se perdi i tuoi codici di recupero, puoi rigenerarli qui. I tuoi vecchi codici di recupero saranno invalidati immediatamente.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Inserisci il codice di 6 cifre dall\'app di autenticazione', + + 'validation_attribute' => 'code', + + 'messages' => [ + + 'invalid' => 'Il codice inserito non è valido.', + + ], + + ], + + 'password' => [ + + 'label' => 'Oppure, inserisci la tua password attuale', + + 'validation_attribute' => 'password', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Rigenera i codici di recupero', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Sono stati rigenerati nuovi codici di recupero', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Nuovi codici di recupero', + + 'description' => 'Si prega di salvare i seguenti codici di recupero in un luogo sicuro. Saranno mostrati solo una volta, ma ne avrai bisogno se perdi l\'accesso alla tua app di autenticazione:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Chiudi', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/it/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..a4249a9 --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Configurazione', + + 'modal' => [ + + 'heading' => 'Configura l\'app di autenticazione', + + 'description' => <<<'BLADE' + Avrai bisogno di un'app come Google Authenticator (iOS, Android) per completare questo processo. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Scansiona questo codice QR con la tua app di autenticazione:', + + 'alt' => 'Codice QR per l\'app di autenticazione', + + ], + + 'text_code' => [ + + 'instruction' => 'Oppure inserisci questo codice manualmente:', + + 'messages' => [ + 'copied' => 'Copiato', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Si prega di salvare i seguenti codici di recupero in un luogo sicuro. Saranno mostrati solo una volta, ma ne avrai bisogno se perdi l\'accesso alla tua app di autenticazione:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Inserisci il codice di 6 cifre dall\'app di autenticazione', + + 'validation_attribute' => 'code', + + 'below_content' => 'Dovrai inserire il codice di 6 cifre dalla tua app di autenticazione ogni volta che accedi o esegui azioni sensibili.', + + 'messages' => [ + + 'invalid' => 'Il codice inserito non è valido.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Abilita l\'app di autenticazione', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'L\'app di autenticazione è stata abilitata', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/it/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..65a7663 --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'App di autenticazione', + + 'below_content' => 'Utilizza un\'app sicura per generare un codice temporaneo per la verifica dell\'accesso.', + + 'messages' => [ + 'enabled' => 'Abilitato', + 'disabled' => 'Disabilitato', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Usa un codice dalla tua app di autenticazione', + + 'code' => [ + + 'label' => 'Inserisci il codice di 6 cifre dall\'app di autenticazione', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Utilizza un codice di recupero', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Il codice inserito non è valido.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Oppure, inserisci un codice di recupero', + + 'validation_attribute' => 'recovery code', + + 'messages' => [ + + 'invalid' => 'Il codice di recupero inserito non è valido.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/it/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..6f8ec72 --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,71 @@ + 'Disabilita', + + 'modal' => [ + + 'heading' => 'Disabilita i codici di verifica email', + + 'description' => 'Sei sicuro di voler smettere di ricevere codici di verifica email? Disabilitare questa opzione rimuoverà un ulteriore livello di sicurezza dal tuo account.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Inserisci il codice di 6 cifre che ti abbiamo inviato via email', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Invia un nuovo codice via email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Ti abbiamo inviato un nuovo codice via email', + ], + + 'throttled' => [ + 'title' => 'Troppi tentativi di invio. Attendi prima di richiedere un nuovo codice.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Il codice inserito non è valido.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Disabilita i codici di verifica email', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'I codici di verifica email sono stati disabilitati', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/it/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..1f48c61 --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,71 @@ + 'Configura', + + 'modal' => [ + + 'heading' => 'Configura i codici di verifica email', + + 'description' => 'Dovrai inserire il codice di 6 cifre che ti inviamo via email ogni volta che accedi o esegui azioni sensibili. Controlla la tua email per un codice di 6 cifre per completare la configurazione.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Inserisci il codice di 6 cifre che ti abbiamo inviato via email', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Invia un nuovo codice via email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Ti abbiamo inviato un nuovo codice via email', + ], + + 'throttled' => [ + 'title' => 'Troppi tentativi di invio. Attendi prima di richiedere un nuovo codice.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Il codice inserito non è valido.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Abilita i codici di verifica email', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'I codici di verifica email sono stati abilitati', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/it/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..033feba --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Il tuo codice di accesso', + + 'lines' => [ + 'Il tuo codice di accesso è: :code', + 'Questo codice scadrà tra un minuto.|Questo codice scadrà tra :minutes minuti.', + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/it/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..83ed31c --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Codici di verifica email', + + 'below_content' => 'Ricevi un codice temporaneo al tuo indirizzo email per verificare la tua identità durante il login.', + + 'messages' => [ + 'enabled' => 'Abilitato', + 'disabled' => 'Disabilitato', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Invia un codice alla tua email', + + 'code' => [ + + 'label' => 'Inserisci il codice di 6 cifre che ti abbiamo inviato via email', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Invia un nuovo codice via email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Ti abbiamo inviato un nuovo codice via email', + ], + + 'throttled' => [ + 'title' => 'Troppi tentativi di invio. Attendi prima di richiedere un nuovo codice.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Il codice inserito non è valido.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/it/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..ce722f0 --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Configura l\'autenticazione a due fattori (2FA)', + + 'heading' => 'Configura l\'autenticazione a due fattori', + + 'subheading' => 'L\'autenticazione a due fattori (2FA) aggiunge un ulteriore livello di sicurezza al tuo account richiedendo una seconda forma di verifica durante l\'accesso.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Continua', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/it/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..de666a2 --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Clicca per', + + 'copy' => [ + 'label' => 'copiare', + ], + + 'o', + + 'download' => [ + 'label' => 'scaricare', + ], + + 'tutti i codici in una volta.', + + ], + + 'messages' => [ + 'copied' => 'Copiato', + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/it/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..1121496 --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Il tuo indirizzo email sta per essere cambiato', + + 'lines' => [ + 'Abbiamo ricevuto una richiesta per modificare l\'indirizzo email associato al tuo account. La tua password è stata utilizzata per confermare questa modifica.', + 'Una volta verificato, il nuovo indirizzo email sul tuo account sarà: :email.', + 'Puoi bloccare la modifica prima che venga verificata facendo clic sul pulsante qui sotto.', + 'Se non hai effettuato questa richiesta, ti preghiamo di contattarci immediatamente.', + ], + + 'action' => 'Blocca la modifica dell\'email', + +]; diff --git a/lang/vendor/filament-panels/it/auth/pages/edit-profile.php b/lang/vendor/filament-panels/it/auth/pages/edit-profile.php new file mode 100644 index 0000000..16683fb --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Profilo', + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'name' => [ + 'label' => 'Nome', + ], + + 'password' => [ + 'label' => 'Nuova password', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Conferma nuova password', + 'validation_attribute' => 'password confirmation', + ], + + 'current_password' => [ + 'label' => 'Password attuale', + 'below_content' => 'Per motivi di sicurezza, conferma la tua password per continuare.', + 'validation_attribute' => 'current password', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Salva modifiche', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Autenticazione a due fattori (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'La richiesta di modifica dell\'email è stata inviata', + 'body' => 'È stata inviata una richiesta per modificare il tuo indirizzo email a :email. Controlla la tua email per verificare la modifica.', + ], + + 'saved' => [ + 'title' => 'Salvato', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Indietro', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/it/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..218d11b --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Verifica il tuo indirizzo email', + + 'heading' => 'Verifica il tuo indirizzo email', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Invia nuovamente', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Non hai ricevuto la mail?', + 'notification_sent' => 'Abbiamo inviato una mail a :email contenente le istruzioni su come verificare il tuo indirizzo email.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Abbiamo inviato nuovamente la mail.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Troppi tentativi di invio', + 'body' => 'Riprova tra :seconds secondi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/pages/login.php b/lang/vendor/filament-panels/it/auth/pages/login.php new file mode 100644 index 0000000..2b2498c --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Accesso', + + 'heading' => 'Accedi', + + 'actions' => [ + + 'register' => [ + 'before' => 'o', + 'label' => 'crea un account', + ], + + 'request_password_reset' => [ + 'label' => 'Hai smarrito la password?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'password' => [ + 'label' => 'Password', + ], + + 'remember' => [ + 'label' => 'Ricordami', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Accedi', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Verifica la tua identità', + + 'subheading' => 'Per accedere è necessario verificare la tua identità.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Come desideri verificare?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Conferma l\'accesso', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'I dati di accesso non sono corretti.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Troppi tentativi di accesso', + 'body' => 'Riprova tra :seconds secondi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/it/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..e6b3efb --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Reimposta la tua password', + + 'heading' => 'Hai smarrito la password?', + + 'actions' => [ + + 'login' => [ + 'label' => 'torna al login', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Invia email', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Se il tuo account non esiste, non riceverai l\'email.', + ], + + 'throttled' => [ + 'title' => 'Troppe richieste', + 'body' => 'Riprova tra :seconds secondi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/it/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..97c383f --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Reimposta la tua password', + + 'heading' => 'Reimposta la tua password', + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'password' => [ + 'label' => 'Password', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Conferma password', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Reimposta password', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Troppi tentativi di reimpostazione', + 'body' => 'Riprova tra :seconds secondi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/auth/pages/register.php b/lang/vendor/filament-panels/it/auth/pages/register.php new file mode 100644 index 0000000..c9530f3 --- /dev/null +++ b/lang/vendor/filament-panels/it/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Registrazione', + + 'heading' => 'Registrati', + + 'actions' => [ + + 'login' => [ + 'before' => 'o', + 'label' => 'accedi al tuo account', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'name' => [ + 'label' => 'Nome', + ], + + 'password' => [ + 'label' => 'Password', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Conferma password', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Registrati', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Troppi tentativi di registrazione', + 'body' => 'Riprova tra :seconds secondi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/error-notifications.php b/lang/vendor/filament-panels/it/error-notifications.php new file mode 100644 index 0000000..66446e8 --- /dev/null +++ b/lang/vendor/filament-panels/it/error-notifications.php @@ -0,0 +1,9 @@ + 'Errore durante il caricamento della pagina', + + 'body' => 'Si è verificato un errore durante il tentativo di caricamento di questa pagina. Riprova più tardi.', + +]; diff --git a/lang/vendor/filament-panels/it/global-search.php b/lang/vendor/filament-panels/it/global-search.php new file mode 100644 index 0000000..4c17fcf --- /dev/null +++ b/lang/vendor/filament-panels/it/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Ricerca globale', + 'placeholder' => 'Ricerca', + ], + + 'no_results_message' => 'Nessun risultato trovato per la ricerca.', + +]; diff --git a/lang/vendor/filament-panels/it/layout.php b/lang/vendor/filament-panels/it/layout.php new file mode 100644 index 0000000..e6dadc6 --- /dev/null +++ b/lang/vendor/filament-panels/it/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Gestisci abbonamento', + ], + + 'logout' => [ + 'label' => 'Disconnetti', + ], + + 'open_database_notifications' => [ + 'label' => 'Apri notifiche', + ], + + 'open_user_menu' => [ + 'label' => 'Menu utente', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Comprimi sidebar', + ], + + 'expand' => [ + 'label' => 'Espandi sidebar', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Attiva tema scuro', + ], + + 'light' => [ + 'label' => 'Attiva tema chiaro', + ], + + 'system' => [ + 'label' => 'Attiva tema di sistema', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar di :name', + ], + + 'logo' => [ + 'alt' => 'Logo di :name', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Cerca Tenant', + 'placeholder' => 'Cerca', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/pages/dashboard.php b/lang/vendor/filament-panels/it/pages/dashboard.php new file mode 100644 index 0000000..ffb6315 --- /dev/null +++ b/lang/vendor/filament-panels/it/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Dashboard', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtro', + + 'modal' => [ + + 'heading' => 'Filtro', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Applica', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/it/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..1b2b01b --- /dev/null +++ b/lang/vendor/filament-panels/it/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Salva modifiche', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Salvato', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/resources/pages/create-record.php b/lang/vendor/filament-panels/it/resources/pages/create-record.php new file mode 100644 index 0000000..ac0c199 --- /dev/null +++ b/lang/vendor/filament-panels/it/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Nuovo :label', + + 'breadcrumb' => 'Nuovo', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annulla', + ], + + 'create' => [ + 'label' => 'Salva', + ], + + 'create_another' => [ + 'label' => 'Salva & nuovo', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Salvato', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/resources/pages/edit-record.php b/lang/vendor/filament-panels/it/resources/pages/edit-record.php new file mode 100644 index 0000000..336d780 --- /dev/null +++ b/lang/vendor/filament-panels/it/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Modifica :label', + + 'breadcrumb' => 'Modifica', + + 'navigation_label' => 'Modifica', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annulla', + ], + + 'save' => [ + 'label' => 'Salva', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Modifica', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Salvato', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/resources/pages/list-records.php b/lang/vendor/filament-panels/it/resources/pages/list-records.php new file mode 100644 index 0000000..3af0660 --- /dev/null +++ b/lang/vendor/filament-panels/it/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Lista', + +]; diff --git a/lang/vendor/filament-panels/it/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/it/resources/pages/manage-related-records.php new file mode 100644 index 0000000..c87af31 --- /dev/null +++ b/lang/vendor/filament-panels/it/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Gestisci :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/it/resources/pages/view-record.php b/lang/vendor/filament-panels/it/resources/pages/view-record.php new file mode 100644 index 0000000..58cbe06 --- /dev/null +++ b/lang/vendor/filament-panels/it/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Visualizza :label', + + 'breadcrumb' => 'Visualizza', + + 'navigation_label' => 'Visualizza', + + 'content' => [ + + 'tab' => [ + 'label' => 'Visualizza', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/it/unsaved-changes-alert.php b/lang/vendor/filament-panels/it/unsaved-changes-alert.php new file mode 100644 index 0000000..4956086 --- /dev/null +++ b/lang/vendor/filament-panels/it/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Hai delle modifiche non salvate. Vuoi davvero uscire da questa pagina?', + +]; diff --git a/lang/vendor/filament-panels/it/widgets/account-widget.php b/lang/vendor/filament-panels/it/widgets/account-widget.php new file mode 100644 index 0000000..2ab5ae3 --- /dev/null +++ b/lang/vendor/filament-panels/it/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Disconnetti', + ], + + ], + + 'welcome' => 'Benvenuto', + +]; diff --git a/lang/vendor/filament-panels/it/widgets/filament-info-widget.php b/lang/vendor/filament-panels/it/widgets/filament-info-widget.php new file mode 100644 index 0000000..9e48cca --- /dev/null +++ b/lang/vendor/filament-panels/it/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Documentazione', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/ja/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..3d79c84 --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'メールアドレスの変更をブロックしました', + 'body' => 'メールアドレスを :email に変更しようとする試みを正常にブロックしました。もしこのリクエストに心当たりがない場合は、直ちにご連絡ください。', + ], + + 'failed' => [ + 'title' => 'メールアドレスの変更をブロックできませんでした', + 'body' => '残念ながら、メールアドレスがすでに :email に変更および確認済みだったため、ブロックできませんでした。もしこのリクエストに心当たりがない場合は、直ちにご連絡ください。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/ja/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..a6dd57b --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'メールアドレスを変更しました', + 'body' => 'メールアドレスは正常に :email に変更されました。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/ja/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..a5bd500 --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,75 @@ + '無効化', + + 'modal' => [ + + 'heading' => '認証アプリを無効化', + + 'description' => '本当に認証アプリの使用を停止しますか?この操作を行うと、アカウントのセキュリティが低下します。', + + 'form' => [ + + 'code' => [ + + 'label' => '認証アプリに表示されている6桁のコードを入力してください', + + 'validation_attribute' => 'コード', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => '代わりにリカバリーコードを使用する', + ], + + ], + + 'messages' => [ + + 'invalid' => '入力されたコードが正しくありません。', + + 'rate_limited' => '試行回数が多すぎます。しばらくしてから再度お試しください。', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'または、リカバリーコードを入力', + + 'validation_attribute' => 'リカバリーコード', + + 'messages' => [ + + 'invalid' => '入力されたリカバリーコードが正しくありません。', + + 'rate_limited' => '試行回数が多すぎます。しばらくしてから再度お試しください。', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => '認証アプリを無効化', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => '認証アプリを無効化しました', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/ja/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..26036c8 --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,79 @@ + 'リカバリーコードを再生成', + + 'modal' => [ + + 'heading' => '認証アプリのリカバリーコードを再生成', + + 'description' => 'リカバリーコードを紛失した場合は、ここで再生成できます。古いリカバリーコードはすぐに無効になります。', + + 'form' => [ + + 'code' => [ + + 'label' => '認証アプリの6桁のコードを入力', + + 'validation_attribute' => 'コード', + + 'messages' => [ + + 'invalid' => '入力されたコードが無効です。', + + 'rate_limited' => '試行回数が多すぎます。しばらくしてから再度お試しください。', + + ], + + ], + + 'password' => [ + + 'label' => 'または、現在のパスワードを入力', + + 'validation_attribute' => 'パスワード', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'リカバリーコードを再生成', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => '新しいリカバリーコードを生成しました', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => '新しいリカバリーコード', + + 'description' => '以下のリカバリーコードを安全な場所に保存してください。これらは一度しか表示されませんが、認証アプリにアクセスできなくなった場合に必要となります。', + + 'actions' => [ + + 'submit' => [ + 'label' => '閉じる', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/ja/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..36898a6 --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,84 @@ + '設定', + + 'modal' => [ + + 'heading' => '認証アプリの設定', + + 'description' => <<<'BLADE' + この設定を完了するには、Google Authenticator (iOS版, Android版) などの認証アプリが必要です。 + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => '認証アプリで次のQRコードをスキャンしてください:', + + 'alt' => '認証アプリでスキャンするためのQRコード', + + ], + + 'text_code' => [ + + 'instruction' => 'または、次のコードを手動で入力してください:', + + 'messages' => [ + 'copied' => 'コピーしました', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => '以下のリカバリーコードを安全な場所に保存してください。 + これらは今回のみ表示されますが、認証アプリにアクセスできなくなった場合に必要になります。', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => '認証アプリで生成された6桁のコードを入力', + + 'validation_attribute' => 'コード', + + 'below_content' => 'サインイン時や機密操作を行う際には、認証アプリで生成された6桁のコードを入力する必要があります。', + + 'messages' => [ + + 'invalid' => '入力されたコードが無効です。', + + 'rate_limited' => '試行回数が多すぎます。しばらくしてから再度お試しください。', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => '認証アプリを有効化', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => '認証アプリを有効化しました', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/ja/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..b58c27f --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => '認証アプリ', + + 'below_content' => '安全な認証アプリを使用して、ログイン確認用の一時コードを生成します。', + + 'messages' => [ + 'enabled' => '有効', + 'disabled' => '無効', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => '認証アプリのコードを使用', + + 'code' => [ + + 'label' => '認証アプリで生成された6桁のコードを入力', + + 'validation_attribute' => 'コード', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => '代わりにリカバリーコードを使用', + ], + + ], + + 'messages' => [ + + 'invalid' => '入力されたコードが無効です。', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'または、リカバリーコードを入力', + + 'validation_attribute' => 'リカバリーコード', + + 'messages' => [ + + 'invalid' => '入力されたリカバリーコードが無効です。', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/ja/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..9575be1 --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,73 @@ + '無効化', + + 'modal' => [ + + 'heading' => 'メール認証コードを無効化', + + 'description' => 'メール認証コードの受信を停止してもよろしいですか?この機能を無効にすると、アカウントのセキュリティが一段階低下します。', + + 'form' => [ + + 'code' => [ + + 'label' => 'メールで送信された6桁のコードを入力', + + 'validation_attribute' => 'コード', + + 'actions' => [ + + 'resend' => [ + + 'label' => '新しいコードをメールで送信', + + 'notifications' => [ + + 'resent' => [ + 'title' => '新しいコードをメールで送信しました', + ], + + 'throttled' => [ + 'title' => '再送信の試行が多すぎます。しばらくしてから再度お試しください。', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => '入力されたコードが無効です。', + + 'rate_limited' => '試行回数が多すぎます。しばらくしてから再度お試しください。', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'メール認証コードを無効化', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'メール認証コードを無効化しました', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/ja/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..9df2b74 --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,73 @@ + '設定', + + 'modal' => [ + + 'heading' => 'メール認証コードの設定', + + 'description' => 'サインイン時や機密性の高い操作を行う際に、メールで送信される6桁の認証コードを入力する必要があります。セットアップを完了するには、メールに記載された6桁のコードを確認してください。', + + 'form' => [ + + 'code' => [ + + 'label' => 'メールで送信された6桁のコードを入力', + + 'validation_attribute' => 'コード', + + 'actions' => [ + + 'resend' => [ + + 'label' => '新しいコードをメールで送信', + + 'notifications' => [ + + 'resent' => [ + 'title' => '新しいコードをメールで送信しました', + ], + + 'throttled' => [ + 'title' => '再送信の試行が多すぎます。しばらくしてから再度お試しください。', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => '入力されたコードが無効です。', + + 'rate_limited' => '試行回数が多すぎます。しばらくしてから再度お試しください。', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'メール認証コードを有効化', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'メール認証コードを有効化しました', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/ja/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..622aa14 --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'サインインコードのお知らせ', + + 'lines' => [ + 'あなたのサインインコードは次のとおりです::code', + 'このコードの有効期限は1分です。|このコードの有効期限は:minutes分です。', + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/ja/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..7f9578b --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Email verification codes', + + 'below_content' => 'Receive a temporary code at your email address to verify your identity during login.', + + 'messages' => [ + 'enabled' => 'Enabled', + 'disabled' => 'Disabled', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Send a code to your email', + + 'code' => [ + + 'label' => 'Enter the 6-digit code we sent you by email', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Send a new code by email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'We\'ve sent you a new code by email', + ], + + 'throttled' => [ + 'title' => 'Too many resend attempts. Please wait before requesting another code.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'The code you entered is invalid.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/ja/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..3e70d67 --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + '二要素認証(2FA)の設定', + + 'heading' => '二要素認証を設定', + + 'subheading' => '2FA を有効にすると、サインイン時に追加の確認手順が必要になり、アカウントのセキュリティが強化されます。', + + 'actions' => [ + + 'continue' => [ + 'label' => '続行', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/ja/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..7e8bd4e --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'クリック', + + 'copy' => [ + 'label' => 'コピー', + ], + + 'または', + + 'download' => [ + 'label' => 'ダウンロード', + ], + + 'すべてのコードをまとめて取得', + + ], + + 'messages' => [ + 'copied' => 'コピーしました', + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/ja/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..1c23002 --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'メールアドレス変更の確認', + + 'lines' => [ + 'あなたのアカウントに登録されているメールアドレスの変更リクエストを受け取りました。この変更は、あなたのパスワードによって確認されました。', + '確認が完了すると、新しいメールアドレスは次のものになります::email', + '確認が完了する前に変更をブロックする場合は、下のボタンをクリックしてください。', + 'このリクエストに心当たりがない場合は、ただちにお問い合わせください。', + ], + + 'action' => 'メールアドレスの変更をブロック', + +]; diff --git a/lang/vendor/filament-panels/ja/auth/pages/edit-profile.php b/lang/vendor/filament-panels/ja/auth/pages/edit-profile.php new file mode 100644 index 0000000..69df048 --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/pages/edit-profile.php @@ -0,0 +1,73 @@ + 'プロフィール', + + 'form' => [ + + 'email' => [ + 'label' => 'メールアドレス', + ], + + 'name' => [ + 'label' => '名前', + ], + + 'password' => [ + 'label' => '新しいパスワード', + 'validation_attribute' => 'パスワード', + ], + + 'password_confirmation' => [ + 'label' => '新しいパスワードの確認', + 'validation_attribute' => 'パスワード確認', + ], + + 'current_password' => [ + 'label' => '現在のパスワード', + 'below_content' => 'セキュリティのため、続行するにはパスワードを確認してください。', + 'validation_attribute' => '現在のパスワード', + ], + + 'actions' => [ + + 'save' => [ + 'label' => '変更を保存', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => '二要素認証 (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'メールアドレス変更リクエストを送信しました', + 'body' => 'メールアドレスの変更リクエストが :email に送信されました。変更を確認するためにメールをご確認ください。', + ], + + 'saved' => [ + 'title' => '保存しました', + ], + + 'throttled' => [ + 'title' => '試行回数が多すぎます。:seconds 秒後に再度お試しください。', + 'body' => ':seconds 秒後に再度お試しください。', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'キャンセル', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/ja/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..013db7a --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'メールアドレスの確認', + + 'heading' => 'メールアドレスの確認', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => '再送する', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'お送りしたメールが届いていませんか?', + 'notification_sent' => 'メールアドレスの確認方法を記載したメールを :email へ送信しました。', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'メールを再送しました。', + ], + + 'notification_resend_throttled' => [ + 'title' => '再送が多すぎます', + 'body' => ':seconds 秒後に再試行してください。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/pages/login.php b/lang/vendor/filament-panels/ja/auth/pages/login.php new file mode 100644 index 0000000..9a03699 --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/pages/login.php @@ -0,0 +1,85 @@ + 'ログイン', + + 'heading' => 'アカウントにログイン', + + 'actions' => [ + + 'register' => [ + 'before' => 'または', + 'label' => 'アカウントを登録', + ], + + 'request_password_reset' => [ + 'label' => 'パスワードをお忘れですか?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'メールアドレス', + ], + + 'password' => [ + 'label' => 'パスワード', + ], + + 'remember' => [ + 'label' => 'ログインしたままにする', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'ログイン', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => '本人確認', + + 'subheading' => 'ログインを続行するには、本人確認が必要です。', + + 'form' => [ + + 'provider' => [ + 'label' => 'どの方法で認証しますか?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'ログイン認証', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => '認証に失敗しました。', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'ログインの試行回数が多すぎます', + 'body' => ':seconds 秒後に再試行してください。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/ja/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..427d3fe --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'パスワードリセット', + + 'heading' => 'パスワードをお忘れですか?', + + 'actions' => [ + + 'login' => [ + 'label' => 'ログインへ戻る', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'メールアドレス', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'メールを送信', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'アカウントが存在しない場合、メールは届きません。', + ], + + 'throttled' => [ + 'title' => 'リクエストが多すぎます', + 'body' => ':seconds 秒後に再試行してください。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/ja/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..5981886 --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'パスワードリセット', + + 'heading' => 'パスワードをリセット', + + 'form' => [ + + 'email' => [ + 'label' => 'メールアドレス', + ], + + 'password' => [ + 'label' => 'パスワード', + 'validation_attribute' => 'パスワード', + ], + + 'password_confirmation' => [ + 'label' => 'パスワードの確認', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'パスワードをリセット', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'リセットの試行回数が多すぎます', + 'body' => ':seconds 秒後に再試行してください。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/auth/pages/register.php b/lang/vendor/filament-panels/ja/auth/pages/register.php new file mode 100644 index 0000000..afdf1eb --- /dev/null +++ b/lang/vendor/filament-panels/ja/auth/pages/register.php @@ -0,0 +1,56 @@ + 'アカウント登録', + + 'heading' => 'アカウントを登録', + + 'actions' => [ + + 'login' => [ + 'before' => 'または', + 'label' => 'アカウントにログイン', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'メールアドレス', + ], + + 'name' => [ + 'label' => '名前', + ], + + 'password' => [ + 'label' => 'パスワード', + 'validation_attribute' => 'パスワード', + ], + + 'password_confirmation' => [ + 'label' => 'パスワードの確認', + ], + + 'actions' => [ + + 'register' => [ + 'label' => '登録', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => '登録の試行回数が多すぎます', + 'body' => ':seconds 秒後に再試行してください。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/error-notifications.php b/lang/vendor/filament-panels/ja/error-notifications.php new file mode 100644 index 0000000..fd372b5 --- /dev/null +++ b/lang/vendor/filament-panels/ja/error-notifications.php @@ -0,0 +1,9 @@ + 'ページの読み込みエラー', + + 'body' => 'ページの読み込み中にエラーが発生しました。時間をおいて再度お試しください。', + +]; diff --git a/lang/vendor/filament-panels/ja/global-search.php b/lang/vendor/filament-panels/ja/global-search.php new file mode 100644 index 0000000..25bb905 --- /dev/null +++ b/lang/vendor/filament-panels/ja/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'グローバル検索', + 'placeholder' => '検索', + ], + + 'no_results_message' => '検索結果が見つかりませんでした。', + +]; diff --git a/lang/vendor/filament-panels/ja/layout.php b/lang/vendor/filament-panels/ja/layout.php new file mode 100644 index 0000000..afa2f80 --- /dev/null +++ b/lang/vendor/filament-panels/ja/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'サブスクリプションを管理', + ], + + 'logout' => [ + 'label' => 'ログアウト', + ], + + 'open_database_notifications' => [ + 'label' => 'お知らせを確認', + ], + + 'open_user_menu' => [ + 'label' => 'ユーザーメニュー', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'サイドバーを折り畳む', + ], + + 'expand' => [ + 'label' => 'サイドバーを展開する', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'ダークモードに切り替える', + ], + + 'light' => [ + 'label' => 'ライトモードに切り替える', + ], + + 'system' => [ + 'label' => 'システムテーマを有効にする', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => ':nameのアバター', + ], + + 'logo' => [ + 'alt' => ':nameロゴ', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'テナントを検索', + 'placeholder' => '検索', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/pages/dashboard.php b/lang/vendor/filament-panels/ja/pages/dashboard.php new file mode 100644 index 0000000..c5facf8 --- /dev/null +++ b/lang/vendor/filament-panels/ja/pages/dashboard.php @@ -0,0 +1,33 @@ + 'ダッシュボード', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'フィルタ', + + 'modal' => [ + + 'heading' => 'フィルタ', + + 'actions' => [ + + 'apply' => [ + + 'label' => '適用', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/ja/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..c5548d5 --- /dev/null +++ b/lang/vendor/filament-panels/ja/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => '変更を保存', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '保存しました', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/resources/pages/create-record.php b/lang/vendor/filament-panels/ja/resources/pages/create-record.php new file mode 100644 index 0000000..1ba1590 --- /dev/null +++ b/lang/vendor/filament-panels/ja/resources/pages/create-record.php @@ -0,0 +1,37 @@ + ':label 作成', + + 'breadcrumb' => '作成', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'キャンセル', + ], + + 'create' => [ + 'label' => '作成', + ], + + 'create_another' => [ + 'label' => '保存して、続けて作成', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => '作成しました', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/resources/pages/edit-record.php b/lang/vendor/filament-panels/ja/resources/pages/edit-record.php new file mode 100644 index 0000000..2ea7c1d --- /dev/null +++ b/lang/vendor/filament-panels/ja/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + ':label 編集', + + 'breadcrumb' => '編集', + + 'navigation_label' => '編集', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'キャンセル', + ], + + 'save' => [ + 'label' => '保存', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => '編集', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '保存しました', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/resources/pages/list-records.php b/lang/vendor/filament-panels/ja/resources/pages/list-records.php new file mode 100644 index 0000000..39a7736 --- /dev/null +++ b/lang/vendor/filament-panels/ja/resources/pages/list-records.php @@ -0,0 +1,7 @@ + '一覧', + +]; diff --git a/lang/vendor/filament-panels/ja/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/ja/resources/pages/manage-related-records.php new file mode 100644 index 0000000..26a559b --- /dev/null +++ b/lang/vendor/filament-panels/ja/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + ':label :relationship を管理', + +]; diff --git a/lang/vendor/filament-panels/ja/resources/pages/view-record.php b/lang/vendor/filament-panels/ja/resources/pages/view-record.php new file mode 100644 index 0000000..633d070 --- /dev/null +++ b/lang/vendor/filament-panels/ja/resources/pages/view-record.php @@ -0,0 +1,19 @@ + ':label 詳細', + + 'breadcrumb' => '詳細', + + 'navigation_label' => '詳細', + + 'content' => [ + + 'tab' => [ + 'label' => '詳細', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ja/unsaved-changes-alert.php b/lang/vendor/filament-panels/ja/unsaved-changes-alert.php new file mode 100644 index 0000000..07ca0f0 --- /dev/null +++ b/lang/vendor/filament-panels/ja/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + '未保存の変更があります。このページを離れてもよろしいですか?', + +]; diff --git a/lang/vendor/filament-panels/ja/widgets/account-widget.php b/lang/vendor/filament-panels/ja/widgets/account-widget.php new file mode 100644 index 0000000..c7fbe00 --- /dev/null +++ b/lang/vendor/filament-panels/ja/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'ログアウト', + ], + + ], + + 'welcome' => 'ようこそ', + +]; diff --git a/lang/vendor/filament-panels/ja/widgets/filament-info-widget.php b/lang/vendor/filament-panels/ja/widgets/filament-info-widget.php new file mode 100644 index 0000000..f45d268 --- /dev/null +++ b/lang/vendor/filament-panels/ja/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'ドキュメント', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ka/auth/pages/edit-profile.php b/lang/vendor/filament-panels/ka/auth/pages/edit-profile.php new file mode 100644 index 0000000..7d03181 --- /dev/null +++ b/lang/vendor/filament-panels/ka/auth/pages/edit-profile.php @@ -0,0 +1,51 @@ + 'პროფილი', + + 'form' => [ + + 'email' => [ + 'label' => 'ელფოსტის მისამართი', + ], + + 'name' => [ + 'label' => 'სახელი', + ], + + 'password' => [ + 'label' => 'ახალი პაროლი', + ], + + 'password_confirmation' => [ + 'label' => 'დაადასტურეთ ახალი პაროლი', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'ცვლილებების შენახვა', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'შენახულია', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'გაუქმება', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ka/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/ka/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..99f519f --- /dev/null +++ b/lang/vendor/filament-panels/ka/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'დაადასტურეთ თქვენი ელფოსტა', + + 'heading' => 'დაადასტურეთ თქვენი ელფოსტა', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'ხელახლა გაგზავნა', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'არ მიგიღიათ ჩვენ მიერ გამოგზავნილი ელფოსტა?', + 'notification_sent' => 'ჩვენ გამოვაგზავნეთ ელფოსტა მისამართზე :email, რომელშიც აღწერილია ელფოსტის ვერიფიცირების ინსტრუქცია.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'ჩვენ ხელახლა გავგზავნეთ ელფოსტა.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'ზედმეტად ბევრი ხელახლა გაგზავნის მცდელობა', + 'body' => 'გთხოვთ სცადეთ კიდევ :seconds წამში.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ka/auth/pages/login.php b/lang/vendor/filament-panels/ka/auth/pages/login.php new file mode 100644 index 0000000..c8a51f0 --- /dev/null +++ b/lang/vendor/filament-panels/ka/auth/pages/login.php @@ -0,0 +1,61 @@ + 'ავტორიზაცია', + + 'heading' => 'ავტორიზაცია', + + 'actions' => [ + + 'register' => [ + 'before' => 'ან', + 'label' => 'დარეგისტრირდით ანგარიშისთვის', + ], + + 'request_password_reset' => [ + 'label' => 'დაგავიწყდა პაროლი?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ელფოსტის მისამართი', + ], + + 'password' => [ + 'label' => 'პაროლი', + ], + + 'remember' => [ + 'label' => 'დამიმახსოვრე', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'ავტორიზაცია', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'ეს მონაცემები არ ემთხვევა ჩვენს ჩანაწერებს.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'ზედმეტად ბევრი შესვლის მცდელობა', + 'body' => 'გთხოვთ, სცადეთ ხელახლა :seconds წამში.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ka/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/ka/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..e958d60 --- /dev/null +++ b/lang/vendor/filament-panels/ka/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'პაროლის აღდგენა', + + 'heading' => 'დაგავიწყდა პაროლი?', + + 'actions' => [ + + 'login' => [ + 'label' => 'ავტორიზაციის გვერდზე გადასვლა', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ელფოსტის მისამართი', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'გაგზავნეთ ელფოსტა', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'ზედმეტად ბევრი მოთხოვნა', + 'body' => 'გთხოვთ, სცადეთ ხელახლა :seconds წამში.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ka/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/ka/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..582d5e7 --- /dev/null +++ b/lang/vendor/filament-panels/ka/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'პაროლის აღდგენა', + + 'heading' => 'პაროლის აღდგენა', + + 'form' => [ + + 'email' => [ + 'label' => 'ელფოსტა', + ], + + 'password' => [ + 'label' => 'პაროლი', + 'validation_attribute' => 'პაროლი', + ], + + 'password_confirmation' => [ + 'label' => 'დაადასტურეთ პაროლი', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'პაროლის აღდგენა', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'ზედმეტად ბევრი აღდგენის მცდელობა', + 'body' => 'გთხოვთ, სცადეთ ხელახლა :seconds წამში.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ka/auth/pages/register.php b/lang/vendor/filament-panels/ka/auth/pages/register.php new file mode 100644 index 0000000..96a8d24 --- /dev/null +++ b/lang/vendor/filament-panels/ka/auth/pages/register.php @@ -0,0 +1,56 @@ + 'რეგისტრაცია', + + 'heading' => 'რეგისტრაცია', + + 'actions' => [ + + 'login' => [ + 'before' => 'ან', + 'label' => 'ავტორიზაცია თქვენს ანგარიშზე', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ელფოსტის მისამართი', + ], + + 'name' => [ + 'label' => 'სახელი', + ], + + 'password' => [ + 'label' => 'პაროლი', + 'validation_attribute' => 'პაროლი', + ], + + 'password_confirmation' => [ + 'label' => 'დაადასტურეთ პაროლი', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'დარეგისტრირება', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'ზედმეტად ბევრი რეგისტრაციის მცდელობა', + 'body' => 'გთხოვთ, სცადეთ ხელახლა :seconds წამში.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ka/global-search.php b/lang/vendor/filament-panels/ka/global-search.php new file mode 100644 index 0000000..dfe842c --- /dev/null +++ b/lang/vendor/filament-panels/ka/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'გლობალური ძიება', + 'placeholder' => 'ძიება', + ], + + 'no_results_message' => 'შედეგები ვერ მოიძებნა.', + +]; diff --git a/lang/vendor/filament-panels/ka/layout.php b/lang/vendor/filament-panels/ka/layout.php new file mode 100644 index 0000000..3208c5b --- /dev/null +++ b/lang/vendor/filament-panels/ka/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'გამოწერის მართვა', + ], + + 'logout' => [ + 'label' => 'გასვლა', + ], + + 'open_database_notifications' => [ + 'label' => 'გახსენი შეტყობინებები', + ], + + 'open_user_menu' => [ + 'label' => 'მომხმარებლის მენიუ', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'გვერდითი პანელის შეკუმშვა', + ], + + 'expand' => [ + 'label' => 'გვერდითი პანელის გახსნა', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'მუქი თემის ჩართვა', + ], + + 'light' => [ + 'label' => 'ნათელი თემის ჩართვა', + ], + + 'system' => [ + 'label' => 'სისტემის თემის ჩართვა', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => ':name-ის ავატარი', + ], + + 'logo' => [ + 'alt' => ':name-ის ლოგო', + ], + +]; diff --git a/lang/vendor/filament-panels/ka/pages/dashboard.php b/lang/vendor/filament-panels/ka/pages/dashboard.php new file mode 100644 index 0000000..8eea089 --- /dev/null +++ b/lang/vendor/filament-panels/ka/pages/dashboard.php @@ -0,0 +1,33 @@ + 'მიმოხილვა', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'ფილტრი', + + 'modal' => [ + + 'heading' => 'ფილტრი', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'შესრულება', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ka/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/ka/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..04c18cf --- /dev/null +++ b/lang/vendor/filament-panels/ka/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'ცვლილებების შენახვა', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'შენახულია', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ka/resources/pages/create-record.php b/lang/vendor/filament-panels/ka/resources/pages/create-record.php new file mode 100644 index 0000000..b314b68 --- /dev/null +++ b/lang/vendor/filament-panels/ka/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'ქმნით :label', + + 'breadcrumb' => 'შექმნა', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'გაუქმება', + ], + + 'create' => [ + 'label' => 'შექმნა', + ], + + 'create_another' => [ + 'label' => 'შექმნა და ახლის შექმნა', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'შექმნილია', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ka/resources/pages/edit-record.php b/lang/vendor/filament-panels/ka/resources/pages/edit-record.php new file mode 100644 index 0000000..69216b7 --- /dev/null +++ b/lang/vendor/filament-panels/ka/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'არედაქტირებთ :label', + + 'breadcrumb' => 'რედაქტირება', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'გაუქმება', + ], + + 'save' => [ + 'label' => 'ცვლილებების შენახვა', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'რედაქტირება', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'შენახულია', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ka/resources/pages/list-records.php b/lang/vendor/filament-panels/ka/resources/pages/list-records.php new file mode 100644 index 0000000..c640f97 --- /dev/null +++ b/lang/vendor/filament-panels/ka/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'სია', + +]; diff --git a/lang/vendor/filament-panels/ka/resources/pages/view-record.php b/lang/vendor/filament-panels/ka/resources/pages/view-record.php new file mode 100644 index 0000000..98c55a5 --- /dev/null +++ b/lang/vendor/filament-panels/ka/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'ათვალიერებთ :label', + + 'breadcrumb' => 'დათვალიერება', + + 'content' => [ + + 'tab' => [ + 'label' => 'დათვალიერება', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ka/unsaved-changes-alert.php b/lang/vendor/filament-panels/ka/unsaved-changes-alert.php new file mode 100644 index 0000000..6c6f2fa --- /dev/null +++ b/lang/vendor/filament-panels/ka/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'ცვლილებები არ არის დამახსოვრებული. დარწმუნებული ხართ, რომ გსურთ ამ გვერდის დატოვება?', + +]; diff --git a/lang/vendor/filament-panels/ka/widgets/account-widget.php b/lang/vendor/filament-panels/ka/widgets/account-widget.php new file mode 100644 index 0000000..bcbacf1 --- /dev/null +++ b/lang/vendor/filament-panels/ka/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'გასვლა', + ], + + ], + + 'welcome' => 'მოგესალმებით', + +]; diff --git a/lang/vendor/filament-panels/ka/widgets/filament-info-widget.php b/lang/vendor/filament-panels/ka/widgets/filament-info-widget.php new file mode 100644 index 0000000..80d35f7 --- /dev/null +++ b/lang/vendor/filament-panels/ka/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'დოკუმენტაცია', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/km/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..8fabbd1 --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'ការផ្លាស់ប្តូរអាសយដ្ឋានអ៊ីមែលត្រូវបានរារាំង', + 'body' => 'អ្នកបានរារាំងការប៉ុនប៉ងផ្លាស់ប្តូរអាសយដ្ឋានអ៊ីមែលទៅជា :email ដោយជោគជ័យ។ ប្រសិនបើអ្នកមិនបានធ្វើការស្នើសុំដើមទេ សូមទាក់ទងមកយើងខ្ញុំជាបន្ទាន់។', + ], + + 'failed' => [ + 'title' => 'បរាជ័យក្នុងការរារាំងការផ្លាស់ប្តូរអាសយដ្ឋានអ៊ីមែល', + 'body' => 'ជាអកុសល អ្នកមិនអាចរារាំងអាសយដ្ឋានអ៊ីមែលពីការផ្លាស់ប្តូរទៅជា :email បានទេ ដោយសារវាត្រូវបានផ្ទៀងផ្ទាត់រួចហើយមុនពេលអ្នករារាំងវា។ ប្រសិនបើអ្នកមិនបានធ្វើការស្នើសុំដើមទេ សូមទាក់ទងមកយើងខ្ញុំជាបន្ទាន់។', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/km/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..0eeee82 --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'អាសយដ្ឋានអ៊ីមែលត្រូវបានផ្លាស់ប្តូរ', + 'body' => 'អាសយដ្ឋានអ៊ីមែលរបស់អ្នកត្រូវបានផ្លាស់ប្តូរដោយជោគជ័យទៅជា :email ។', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/km/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..9178131 --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,67 @@ + 'បិទ', + + 'modal' => [ + + 'heading' => 'បិទកម្មវិធីផ្ទៀងផ្ទាត់', + + 'description' => 'តើអ្នកប្រាកដថាចង់ឈប់ប្រើកម្មវិធីផ្ទៀងផ្ទាត់មែនទេ? ការបិទវានឹងដកស្រទាប់សុវត្ថិភាពបន្ថែមចេញពីគណនីរបស់អ្នក។', + + 'form' => [ + + 'code' => [ + + 'label' => 'បញ្ចូលកូដ 6 ខ្ទង់ពីកម្មវិធីផ្ទៀងផ្ទាត់', + + 'validation_attribute' => 'កូដ', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'ប្រើកូដសង្គ្រោះជំនួសវិញ', + ], + + ], + + 'messages' => [ + 'invalid' => 'កូដដែលអ្នកបានបញ្ចូលមិនត្រឹមត្រូវទេ។', + ], + + ], + + 'recovery_code' => [ + + 'label' => 'ឬ បញ្ចូលកូដសង្គ្រោះ', + + 'validation_attribute' => 'កូដសង្គ្រោះ', + + 'messages' => [ + 'invalid' => 'កូដសង្គ្រោះដែលអ្នកបានបញ្ចូលមិនត្រឹមត្រូវទេ។', + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'បិទកម្មវិធីផ្ទៀងផ្ទាត់', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'កម្មវិធីផ្ទៀងផ្ទាត់ត្រូវបានបិទ', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/km/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..1b238d1 --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,68 @@ + 'បង្កើតកូដសង្គ្រោះឡើងវិញ', + + 'modal' => [ + + 'heading' => 'បង្កើតកូដសង្គ្រោះកម្មវិធីផ្ទៀងផ្ទាត់ឡើងវិញ', + + 'description' => 'ប្រសិនបើអ្នកបាត់កូដសង្គ្រោះរបស់អ្នក អ្នកអាចបង្កើតវាឡើងវិញនៅទីនេះ។ កូដសង្គ្រោះចាស់របស់អ្នកនឹងត្រូវមិនត្រឹមត្រូវភ្លាមៗ។', + + 'form' => [ + + 'code' => [ + 'label' => 'បញ្ចូលកូដ 6 ខ្ទង់ពីកម្មវិធីផ្ទៀងផ្ទាត់', + 'validation_attribute' => 'កូដ', + 'messages' => [ + 'invalid' => 'កូដដែលអ្នកបានបញ្ចូលមិនត្រឹមត្រូវទេ។', + ], + ], + + 'password' => [ + 'label' => 'ឬ បញ្ចូលពាក្យសម្ងាត់បច្ចុប្បន្នរបស់អ្នក', + 'validation_attribute' => 'ពាក្យសម្ងាត់', + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'បង្កើតកូដសង្គ្រោះឡើងវិញ', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'កូដសង្គ្រោះកម្មវិធីផ្ទៀងផ្ទាត់ថ្មីត្រូវបានបង្កើតហើយ', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'កូដសង្គ្រោះថ្មី', + + 'description' => 'សូមរក្សាទុកកូដសង្គ្រោះដូចខាងក្រោមនៅកន្លែងដែលមានសុវត្ថិភាព។ ពួកវានឹងត្រូវបានបង្ហាញតែម្តងគត់ ប៉ុន្តែអ្នកនឹងត្រូវការវាប្រសិនបើអ្នកបាត់បង់ការចូលប្រើកម្មវិធីផ្ទៀងផ្ទាត់របស់អ្នក៖', + + 'actions' => [ + + 'submit' => [ + 'label' => 'បិទ', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/km/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..809098c --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,69 @@ + 'រៀបចំ', + + 'modal' => [ + + 'heading' => 'រៀបចំកម្មវិធីផ្ទៀងផ្ទាត់ (Authenticator app)', + + 'description' => 'អ្នកនឹងត្រូវការកម្មវិធីដូចជា Google Authenticator (iOS, Android) ដើម្បីបញ្ចប់ដំណើរការនេះ។', + + 'content' => [ + + 'qr_code' => [ + 'instruction' => 'ស្កែនកូដ QR នេះជាមួយកម្មវិធីផ្ទៀងផ្ទាត់របស់អ្នក៖', + 'alt' => 'កូដ QR សម្រាប់ស្កែនជាមួយកម្មវិធីផ្ទៀងផ្ទាត់', + ], + + 'text_code' => [ + 'instruction' => 'ឬ បញ្ចូលកូដនេះដោយដៃ៖', + 'messages' => [ + 'copied' => 'បានចម្លង', + ], + ], + + 'recovery_codes' => [ + 'instruction' => 'សូមរក្សាទុកកូដសង្គ្រោះដូចខាងក្រោមនៅកន្លែងដែលមានសុវត្ថិភាព។ ពួកវានឹងត្រូវបានបង្ហាញតែម្តងគត់ ប៉ុន្តែអ្នកនឹងត្រូវការវាប្រសិនបើអ្នកបាត់បង់ការចូលប្រើកម្មវិធីផ្ទៀងផ្ទាត់របស់អ្នក៖', + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'បញ្ចូលកូដ 6 ខ្ទង់ពីកម្មវិធីផ្ទៀងផ្ទាត់', + + 'validation_attribute' => 'កូដ', + + 'below_content' => 'អ្នកនឹងត្រូវបញ្ចូលកូដ 6 ខ្ទង់ពីកម្មវិធីផ្ទៀងផ្ទាត់របស់អ្នករាល់ពេលដែលអ្នកចូល ឬអនុវត្តសកម្មភាពរសើប។', + + 'messages' => [ + 'invalid' => 'កូដដែលអ្នកបានបញ្ចូលមិនត្រឹមត្រូវទេ។', + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'បើកកម្មវិធីផ្ទៀងផ្ទាត់', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'កម្មវិធីផ្ទៀងផ្ទាត់ត្រូវបានបើក', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/km/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..b15094c --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/multi-factor/app/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'កម្មវិធីផ្ទៀងផ្ទាត់ (Authenticator app)', + + 'below_content' => 'ប្រើកម្មវិធីដែលមានសុវត្ថិភាពដើម្បីបង្កើតកូដបណ្តោះអាសន្នសម្រាប់ការផ្ទៀងផ្ទាត់ការចូល។', + + 'messages' => [ + 'enabled' => 'បានបើក', + 'disabled' => 'បានបិទ', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'ប្រើកូដពីកម្មវិធីផ្ទៀងផ្ទាត់របស់អ្នក', + + 'code' => [ + + 'label' => 'បញ្ចូលកូដ 6 ខ្ទង់ពីកម្មវិធីផ្ទៀងផ្ទាត់', + + 'validation_attribute' => 'កូដ', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'ប្រើកូដសង្គ្រោះជំនួសវិញ', + ], + + ], + + 'messages' => [ + 'invalid' => 'កូដដែលអ្នកបានបញ្ចូលមិនត្រឹមត្រូវទេ។', + ], + + ], + + 'recovery_code' => [ + + 'label' => 'ឬ បញ្ចូលកូដសង្គ្រោះ', + + 'validation_attribute' => 'កូដសង្គ្រោះ', + + 'messages' => [ + 'invalid' => 'កូដសង្គ្រោះដែលអ្នកបានបញ្ចូលមិនត្រឹមត្រូវទេ។', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/km/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..3ac64e9 --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + 'បិទ', + + 'modal' => [ + + 'heading' => 'បិទកូដផ្ទៀងផ្ទាត់តាមអ៊ីមែល', + + 'description' => 'តើអ្នកប្រាកដថាចង់ឈប់ទទួលកូដផ្ទៀងផ្ទាត់តាមអ៊ីមែលមែនទេ? ការបិទវានឹងដកស្រទាប់សុវត្ថិភាពបន្ថែមចេញពីគណនីរបស់អ្នក។', + + 'form' => [ + + 'code' => [ + + 'label' => 'បញ្ចូលលេខកូដ 6 ខ្ទង់ដែលយើងបានផ្ញើជូនអ្នកតាមអ៊ីមែល', + + 'validation_attribute' => 'កូដ', + + 'actions' => [ + + 'resend' => [ + 'label' => 'ផ្ញើកូដថ្មីតាមអ៊ីមែល', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'យើងបានផ្ញើកូដថ្មីជូនអ្នកតាមអ៊ីមែលហើយ', + ], + + 'throttled' => [ + 'title' => 'ការព្យាយាមផ្ញើច្រើនដងពេក។ សូមរង់ចាំមុនពេលស្នើសុំកូដផ្សេងទៀត។', + ], + + ], + ], + + ], + + 'messages' => [ + 'invalid' => 'កូដដែលអ្នកបានបញ្ចូលមិនត្រឹមត្រូវទេ។', + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'បិទកូដផ្ទៀងផ្ទាត់តាមអ៊ីមែល', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'កូដផ្ទៀងផ្ទាត់តាមអ៊ីមែលត្រូវបានបិទ', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/km/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..ea0d1fe --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + 'រៀបចំ', + + 'modal' => [ + + 'heading' => 'រៀបចំកូដផ្ទៀងផ្ទាត់តាមអ៊ីមែល', + + 'description' => 'អ្នកនឹងត្រូវបញ្ចូលកូដ 6 ខ្ទង់ដែលយើងផ្ញើជូនអ្នកតាមអ៊ីមែលរាល់ពេលដែលអ្នកចូល ឬអនុវត្តសកម្មភាពរសើប។ ពិនិត្យអ៊ីមែលរបស់អ្នកសម្រាប់កូដ 6 ខ្ទង់ ដើម្បីបញ្ចប់ការរៀបចំ។', + + 'form' => [ + + 'code' => [ + + 'label' => 'បញ្ចូលលេខកូដ 6 ខ្ទង់ដែលយើងបានផ្ញើជូនអ្នកតាមអ៊ីមែល', + + 'validation_attribute' => 'កូដ', + + 'actions' => [ + + 'resend' => [ + 'label' => 'ផ្ញើកូដថ្មីតាមអ៊ីមែល', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'យើងបានផ្ញើកូដថ្មីជូនអ្នកតាមអ៊ីមែលហើយ', + ], + + 'throttled' => [ + 'title' => 'ការព្យាយាមផ្ញើច្រើនដងពេក។ សូមរង់ចាំមុនពេលស្នើសុំកូដផ្សេងទៀត។', + ], + + ], + ], + + ], + + 'messages' => [ + 'invalid' => 'កូដដែលអ្នកបានបញ្ចូលមិនត្រឹមត្រូវទេ។', + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'បើកកូដផ្ទៀងផ្ទាត់តាមអ៊ីមែល', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'កូដផ្ទៀងផ្ទាត់តាមអ៊ីមែលត្រូវបានបើក', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/km/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..b9cf5e2 --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'នេះគឺជាកូដសម្រាប់ចូលរបស់អ្នក', + + 'lines' => [ + 0 => 'កូដសម្រាប់ចូលរបស់អ្នកគឺ៖ :code', + 1 => 'កូដនេះនឹងហួសកំណត់ក្នុងរយៈពេលមួយនាទី។|កូដនេះនឹងហួសកំណត់ក្នុងរយៈពេល :minutes នាទី។', + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/km/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..54983e3 --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'កូដផ្ទៀងផ្ទាត់តាមអ៊ីមែល', + + 'below_content' => 'ទទួលបានកូដបណ្តោះអាសន្នតាមអាសយដ្ឋានអ៊ីមែលរបស់អ្នក ដើម្បីផ្ទៀងផ្ទាត់អត្តសញ្ញាណរបស់អ្នកអំឡុងពេលចូល។', + + 'messages' => [ + 'enabled' => 'បានបើក', + 'disabled' => 'បានបិទ', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'ផ្ញើកូដទៅអ៊ីមែលរបស់អ្នក', + + 'code' => [ + + 'label' => 'បញ្ចូលលេខកូដ 6 ខ្ទង់ដែលយើងបានផ្ញើជូនអ្នកតាមអ៊ីមែល', + + 'validation_attribute' => 'កូដ', + + 'actions' => [ + + 'resend' => [ + 'label' => 'ផ្ញើកូដថ្មីតាមអ៊ីមែល', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'យើងបានផ្ញើកូដថ្មីជូនអ្នកតាមអ៊ីមែលហើយ', + ], + + 'throttled' => [ + 'title' => 'ការព្យាយាមផ្ញើច្រើនដងពេក។ សូមរង់ចាំមុនពេលស្នើសុំកូដផ្សេងទៀត។', + ], + + ], + ], + + ], + + 'messages' => [ + 'invalid' => 'កូដដែលអ្នកបានបញ្ចូលមិនត្រឹមត្រូវទេ។', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/km/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..0a6d776 --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'រៀបចំការផ្ទៀងផ្ទាត់ពីរជំហាន (2FA)', + + 'heading' => 'រៀបចំការផ្ទៀងផ្ទាត់ពីរជំហាន', + + 'subheading' => '2FA បន្ថែមស្រទាប់សុវត្ថិភាពបន្ថែមទៅគណនីរបស់អ្នកដោយតម្រូវឱ្យមានទម្រង់ផ្ទៀងផ្ទាត់ទីពីរនៅពេលចូល។', + + 'actions' => [ + + 'continue' => [ + 'label' => 'បន្ត', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/km/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..9a54a7f --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,21 @@ + [ + 0 => 'ចុចដើម្បី', + 'copy' => [ + 'label' => 'ចម្លង', + ], + 1 => 'ឬ', + 'download' => [ + 'label' => 'ទាញយក', + ], + 2 => 'កូដទាំងអស់ក្នុងពេលតែមួយ។', + ], + + 'messages' => [ + 'copied' => 'បានចម្លង', + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/km/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..0313a44 --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'អាសយដ្ឋានអ៊ីមែលរបស់អ្នកត្រូវបានផ្លាស់ប្តូរ', + + 'lines' => [ + 0 => 'យើងបានទទួលសំណើដើម្បីផ្លាស់ប្តូរអាសយដ្ឋានអ៊ីមែលដែលភ្ជាប់ជាមួយគណនីរបស់អ្នក។ ពាក្យសម្ងាត់របស់អ្នកត្រូវបានប្រើដើម្បីបញ្ជាក់ការផ្លាស់ប្តូរនេះ។', + 1 => 'នៅពេលដែលបានផ្ទៀងផ្ទាត់ អាសយដ្ឋានអ៊ីមែលថ្មីនៅលើគណនីរបស់អ្នកនឹងមាន៖ :email ។', + 2 => 'អ្នកអាចរារាំងការផ្លាស់ប្តូរមុនពេលវាត្រូវបានផ្ទៀងផ្ទាត់ដោយចុចប៊ូតុងខាងក្រោម។', + 3 => 'ប្រសិនបើអ្នកមិនបានធ្វើការស្នើសុំនេះទេ សូមទាក់ទងមកយើងខ្ញុំជាបន្ទាន់។', + ], + + 'action' => 'រារាំងការផ្លាស់ប្តូរអ៊ីមែល', + +]; diff --git a/lang/vendor/filament-panels/km/auth/pages/edit-profile.php b/lang/vendor/filament-panels/km/auth/pages/edit-profile.php new file mode 100644 index 0000000..773f94d --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'ប្រវត្តិរូប', + + 'form' => [ + + 'email' => [ + 'label' => 'អាស័យដ្ធានអ៊ីម៉ែល', + ], + + 'name' => [ + 'label' => 'ឈ្មោះ', + ], + + 'password' => [ + 'label' => 'ពាក្យសម្ងាត់ថ្មី', + 'validation_attribute' => 'ពាក្យសម្ងាត់', + ], + + 'password_confirmation' => [ + 'label' => 'បញ្ជាក់ពាក្យសម្ងាត់ថ្មី', + 'validation_attribute' => 'ការបញ្ជាក់ពាក្យសម្ងាត់', + ], + + 'current_password' => [ + 'label' => 'ពាក្យសម្ងាត់បច្ចុប្បន្ន', + 'below_content' => 'សម្រាប់សុវត្ថិភាព សូមបញ្ជាក់ពាក្យសម្ងាត់របស់អ្នកដើម្បីបន្ត។', + 'validation_attribute' => 'ពាក្យសម្ងាត់បច្ចុប្បន្ន', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'រក្សាទុកការផ្លាស់ប្តូរ', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'បានរក្សាទុក', + ], + + 'email_change_verification_sent' => [ + 'title' => 'សំណើផ្លាស់ប្តូរអាសយដ្ឋានអ៊ីមែលត្រូវបានផ្ញើ', + 'body' => 'សំណើដើម្បីផ្លាស់ប្តូរអាសយដ្ឋានអ៊ីមែលរបស់អ្នកត្រូវបានផ្ញើទៅកាន់ :email ។ សូមពិនិត្យមើលអ៊ីមែលរបស់អ្នកដើម្បីផ្ទៀងផ្ទាត់ការផ្លាស់ប្តូរ។', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'លុបចោល', + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'ការផ្ទៀងផ្ទាត់ពីរជំហាន (2FA)', + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/km/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..efce60e --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'ផ្ទៀងផ្ទាត់អាសយដ្ឋានអ៊ីមែលរបស់អ្នក', + + 'heading' => 'ផ្ទៀងផ្ទាត់អាសយដ្ឋានអ៊ីមែលរបស់អ្នក', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'ផ្ញើឡើងវិញ', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'មិនបានទទួលអ៊ីមែលដែលយើងផ្ញើទេ?', + 'notification_sent' => 'យើងបានផ្ញើអ៊ីមែលទៅ​​ :email ដែលមានការណែនាំអំពីរបៀបផ្ទៀងផ្ទាត់អាសយដ្ឋានអ៊ីមែលរបស់អ្នក។', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'យើងបានផ្ញើអ៊ីមែលឡើងវិញ។.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'ការព្យាយាមផ្ញើឡើងវិញច្រើនពេក', + 'body' => 'សូមព្យាយាមម្តងទៀតក្នុងរយៈពេល :seconds វិនាទី។', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/pages/login.php b/lang/vendor/filament-panels/km/auth/pages/login.php new file mode 100644 index 0000000..63e1767 --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/pages/login.php @@ -0,0 +1,76 @@ + 'ចូលក្នូងប្រព័ន្ធ', + + 'heading' => 'ចូលទៅក្នុងគណនីរបស់អ្នក', + + 'actions' => [ + + 'register' => [ + 'before' => '​ឬ', + 'label' => 'ចុះឈ្មោះសម្រាប់គណនី', + ], + + 'request_password_reset' => [ + 'label' => 'ភ្លេចពាក្យសម្ងាត់របស់អ្នក?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'អាស័យ​ដ្ឋាន​អ៊ី​ម៉េ​ល', + ], + + 'password' => [ + 'label' => 'ពាក្យសម្ងាត់', + ], + + 'remember' => [ + 'label' => 'ចងចាំក្នុងប្រព័ន្ធនេះ', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'ចុះឈ្មោះចូល', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'លិខិតសម្គាល់ទាំងនេះមិនត្រូវគ្នានឹងកំណត់ត្រាក្នុងប្រព័ន្ធរបស់យើងទេ។', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'ការព្យាយាមចូលប្រើប្រាស់ច្រើនដងពេក', + 'body' => 'សូមព្យាយាមម្តងទៀតក្នុងរយៈពេល :seconds វិនាទី។.', + ], + + ], + + 'multi_factor' => [ + 'heading' => 'ផ្ទៀងផ្ទាត់អត្តសញ្ញាណរបស់អ្នក', + 'subheading' => 'ដើម្បីបន្តការចូល អ្នកត្រូវផ្ទៀងផ្ទាត់អត្តសញ្ញាណរបស់អ្នក។', + 'form' => [ + 'provider' => [ + 'label' => 'តើអ្នកចង់ផ្ទៀងផ្ទាត់ដោយរបៀបណា?', + ], + 'actions' => [ + 'authenticate' => [ + 'label' => 'បញ្ជាក់ការចូល', + ], + ], + ], + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/km/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..77e5735 --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'កំណត់ពាក្យសម្ងាត់របស់អ្នកឡើងវិញ', + + 'heading' => 'ភ្លេចពាក្យសម្ងាត់របស់អ្នក?', + + 'actions' => [ + + 'login' => [ + 'label' => 'ត្រលប់ទៅការចូលប្រើប្រាស់', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'អាស័យដ្ធានអ៊ីម៉ែល', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'ផ្ញើអ៊ីមែល', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'សំណើច្រើនពេក', + 'body' => 'សូមព្យាយាមម្តងទៀតក្នុងរយៈពេល :seconds វិនាទី។', + ], + + 'sent' => [ + 'body' => 'ប្រសិនបើគណនីរបស់អ្នកមានពិតប្រាកដ អ្នកនឹងទទួលបានអ៊ីមែល។', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/km/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..8e2fb2a --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'កំណត់ពាក្យសម្ងាត់របស់អ្នកឡើងវិញ', + + 'heading' => 'កំណត់ពាក្យសម្ងាត់របស់អ្នកឡើងវិញ', + + 'form' => [ + + 'email' => [ + 'label' => 'អាស័យដ្ធានអ៊ីម៉ែល', + ], + + 'password' => [ + 'label' => 'ពាក្យសម្ងាត់', + 'validation_attribute' => 'ពាក្យសម្ងាត់', + ], + + 'password_confirmation' => [ + 'label' => 'បញ្ជាក់ពាក្យសម្ងាត់', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'កំណត់ពាក្យសម្ងាត់ឡើងវិញ', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'ការព្យាយាមកំណត់ឡើងវិញច្រើនដងពេក', + 'body' => 'សូមព្យាយាមម្តងទៀតក្នុងរយៈពេល :seconds វិនាទី។', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/auth/pages/register.php b/lang/vendor/filament-panels/km/auth/pages/register.php new file mode 100644 index 0000000..0fc777c --- /dev/null +++ b/lang/vendor/filament-panels/km/auth/pages/register.php @@ -0,0 +1,56 @@ + 'ចុះឈ្មោះ', + + 'heading' => 'ចុះឈ្មោះ', + + 'actions' => [ + + 'login' => [ + 'before' => '​ឬ', + 'label' => 'ចូលគណនីរបស់អ្នក', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'អាស័យដ្ធានអ៊ីម៉ែល', + ], + + 'name' => [ + 'label' => 'ឈ្មោះ', + ], + + 'password' => [ + 'label' => 'ពាក្យសម្ងាត់', + 'validation_attribute' => 'ពាក្យសម្ងាត់', + ], + + 'password_confirmation' => [ + 'label' => 'បញ្ជាក់ពាក្យសម្ងាត់', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'ចុះឈ្មោះ', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'ការព្យាយាមចុះឈ្មោះច្រើនដងពេក', + 'body' => 'សូមព្យាយាមម្តងទៀតក្នុងរយៈពេល :seconds វិនាទី។.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/error-notifications.php b/lang/vendor/filament-panels/km/error-notifications.php new file mode 100644 index 0000000..6691d6a --- /dev/null +++ b/lang/vendor/filament-panels/km/error-notifications.php @@ -0,0 +1,9 @@ + 'មានបញ្ហាក្នុងការផ្ទុកទំព័រ', + + 'body' => 'មានបញ្ហាក្នុងការផ្ទុកទំព័រនេះ សូមព្យាយាមម្តងទៀត។', + +]; diff --git a/lang/vendor/filament-panels/km/global-search.php b/lang/vendor/filament-panels/km/global-search.php new file mode 100644 index 0000000..4b6d22f --- /dev/null +++ b/lang/vendor/filament-panels/km/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'ការស្វែងរកក្នុងប្រព័ន្ធទូទៅ', + 'placeholder' => 'ស្វែងរក', + ], + + 'no_results_message' => 'រកមិនឃើញលទ្ធផលនៃការស្វែងរកទេ។', + +]; diff --git a/lang/vendor/filament-panels/km/layout.php b/lang/vendor/filament-panels/km/layout.php new file mode 100644 index 0000000..dfced78 --- /dev/null +++ b/lang/vendor/filament-panels/km/layout.php @@ -0,0 +1,70 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'គ្រប់គ្រងការជាវ', + ], + + 'logout' => [ + 'label' => 'ចាកចេញពីកម្មវិធីប្រព័ន្ធ', + ], + + 'open_database_notifications' => [ + 'label' => 'បើកការជូនដំណឹង', + ], + + 'open_user_menu' => [ + 'label' => 'ម៉ឺនុយអ្នកប្រើ', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'បង្រួមរបារចំហៀង', + ], + + 'expand' => [ + 'label' => 'ពង្រីករបារចំហៀង', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'បើកដំណើរការរចនាបទងងឹត', + ], + + 'light' => [ + 'label' => 'បើករចនាបទពន្លឺ', + ], + + 'system' => [ + 'label' => 'បើករចនាបទប្រព័ន្ធ', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'រូបតំណាង នៃ :name', + ], + + 'logo' => [ + 'alt' => ':name និមិត្តសញ្ញា', + ], + + 'tenant_menu' => [ + 'search_field' => [ + 'label' => 'ស្វែងរក', + 'placeholder' => 'ស្វែងរក', + ], + ], + +]; diff --git a/lang/vendor/filament-panels/km/pages/dashboard.php b/lang/vendor/filament-panels/km/pages/dashboard.php new file mode 100644 index 0000000..f9ddabc --- /dev/null +++ b/lang/vendor/filament-panels/km/pages/dashboard.php @@ -0,0 +1,33 @@ + 'ផ្ទាំងគ្រប់គ្រងទូទៅ', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'តម្រង', + + 'modal' => [ + + 'heading' => 'តម្រង', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'អនុវត្ត', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/km/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..7cef8aa --- /dev/null +++ b/lang/vendor/filament-panels/km/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'រក្សាទុកការផ្លាស់ប្តូរ', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'បានរក្សាទុក', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/resources/pages/create-record.php b/lang/vendor/filament-panels/km/resources/pages/create-record.php new file mode 100644 index 0000000..5514ab1 --- /dev/null +++ b/lang/vendor/filament-panels/km/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'បង្កើត :label', + + 'breadcrumb' => 'បង្កើត', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'ចាកចេញ', + ], + + 'create' => [ + 'label' => 'បង្កើត', + ], + + 'create_another' => [ + 'label' => 'បង្កើត & បង្កើតឡើងវិញ', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'បានបង្កើត :label បានជោគជ័យ', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/km/resources/pages/edit-record.php b/lang/vendor/filament-panels/km/resources/pages/edit-record.php new file mode 100644 index 0000000..fcce610 --- /dev/null +++ b/lang/vendor/filament-panels/km/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'កែប្រែ :label', + + 'breadcrumb' => 'កែប្រែ', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'បោះបង់', + ], + + 'save' => [ + 'label' => 'រក្សាទុក', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'កែប្រែ', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'បានរក្សាទុក', + ], + + ], + + 'navigation_label' => 'កែប្រែ', + +]; diff --git a/lang/vendor/filament-panels/km/resources/pages/list-records.php b/lang/vendor/filament-panels/km/resources/pages/list-records.php new file mode 100644 index 0000000..b9ae8ab --- /dev/null +++ b/lang/vendor/filament-panels/km/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'បញ្ជី', + +]; diff --git a/lang/vendor/filament-panels/km/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/km/resources/pages/manage-related-records.php new file mode 100644 index 0000000..431a368 --- /dev/null +++ b/lang/vendor/filament-panels/km/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'គ្រប់គ្រង :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/km/resources/pages/view-record.php b/lang/vendor/filament-panels/km/resources/pages/view-record.php new file mode 100644 index 0000000..cb7a525 --- /dev/null +++ b/lang/vendor/filament-panels/km/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'មើល :label', + + 'breadcrumb' => 'មើល', + + 'content' => [ + + 'tab' => [ + 'label' => 'មើល', + ], + + ], + + 'navigation_label' => 'មើល', + +]; diff --git a/lang/vendor/filament-panels/km/unsaved-changes-alert.php b/lang/vendor/filament-panels/km/unsaved-changes-alert.php new file mode 100644 index 0000000..3fc7295 --- /dev/null +++ b/lang/vendor/filament-panels/km/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'អ្នកមានការផ្លាស់ប្ដូរដែលមិនបានរក្សាទុក។ តើអ្នកប្រាកដថាចង់ចាកចេញពីទំព័រនេះទេ?', + +]; diff --git a/lang/vendor/filament-panels/km/widgets/account-widget.php b/lang/vendor/filament-panels/km/widgets/account-widget.php new file mode 100644 index 0000000..70be7bd --- /dev/null +++ b/lang/vendor/filament-panels/km/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'ចាកចេញពីកម្មវិធីប្រព័ន្ធ', + ], + + ], + + 'welcome' => 'សូមស្វាគមន៍', + +]; diff --git a/lang/vendor/filament-panels/km/widgets/filament-info-widget.php b/lang/vendor/filament-panels/km/widgets/filament-info-widget.php new file mode 100644 index 0000000..2e6780a --- /dev/null +++ b/lang/vendor/filament-panels/km/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'ចូលមើលឯកសារ', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/ko/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..730ed49 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => '이메일 주소 변경 차단됨', + 'body' => ':email로의 이메일 주소 변경 시도를 성공적으로 차단했습니다. 원래 요청을 하지 않았다면 즉시 문의해 주세요.', + ], + + 'failed' => [ + 'title' => '이메일 주소 변경 차단 실패', + 'body' => '안타깝게도 이미 차단하기 전에 확인되었기 때문에 이메일 주소가 :email로 변경되는 것을 막을 수 없었습니다. 원래 요청을 하지 않았다면 즉시 문의해 주세요.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/ko/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..8319645 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => '이메일 주소 변경됨', + 'body' => '이메일 주소가 :email로 성공적으로 변경되었습니다.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/ko/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..1814b16 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + '비활성화', + + 'modal' => [ + + 'heading' => '인증 앱 비활성화', + + 'description' => '인증 앱 사용을 중단하시겠습니까? 이를 비활성화하면 계정에서 추가 보안 계층이 제거됩니다.', + + 'form' => [ + + 'code' => [ + + 'label' => '인증 앱에서 6자리 코드를 입력하세요', + + 'validation_attribute' => '코드', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => '대신 복구 코드 사용', + ], + + ], + + 'messages' => [ + + 'invalid' => '입력한 코드가 올바르지 않습니다.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => '또는 복구 코드를 입력하세요', + + 'validation_attribute' => '복구 코드', + + 'messages' => [ + + 'invalid' => '입력한 복구 코드가 올바르지 않습니다.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => '인증 앱 비활성화', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => '인증 앱이 비활성화되었습니다', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/ko/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..d9ccc58 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + '복구 코드 재생성', + + 'modal' => [ + + 'heading' => '인증 앱 복구 코드 재생성', + + 'description' => '복구 코드를 분실한 경우 여기에서 재생성할 수 있습니다. 기존 복구 코드는 즉시 무효화됩니다.', + + 'form' => [ + + 'code' => [ + + 'label' => '인증 앱에서 6자리 코드를 입력하세요', + + 'validation_attribute' => '코드', + + 'messages' => [ + + 'invalid' => '입력한 코드가 올바르지 않습니다.', + + ], + + ], + + 'password' => [ + + 'label' => '또는 현재 비밀번호를 입력하세요', + + 'validation_attribute' => '비밀번호', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => '복구 코드 재생성', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => '새로운 인증 앱 복구 코드가 생성되었습니다', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => '새 복구 코드', + + 'description' => '다음 복구 코드를 안전한 곳에 저장하세요. 한 번만 표시되며, 인증 앱에 액세스할 수 없을 때 필요합니다:', + + 'actions' => [ + + 'submit' => [ + 'label' => '닫기', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/ko/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..ea7af6b --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + '설정', + + 'modal' => [ + + 'heading' => '인증 앱 설정', + + 'description' => <<<'BLADE' + 이 과정을 완료하려면 Google Authenticator (iOS, Android)와 같은 앱이 필요합니다. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => '인증 앱으로 이 QR 코드를 스캔하세요:', + + 'alt' => '인증 앱으로 스캔할 QR 코드', + + ], + + 'text_code' => [ + + 'instruction' => '또는 이 코드를 수동으로 입력하세요:', + + 'messages' => [ + 'copied' => '복사됨', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => '다음 복구 코드를 안전한 곳에 저장하세요. 한 번만 표시되며, 인증 앱에 액세스할 수 없을 때 필요합니다:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => '인증 앱에서 6자리 코드를 입력하세요', + + 'validation_attribute' => '코드', + + 'below_content' => '로그인하거나 민감한 작업을 수행할 때마다 인증 앱에서 6자리 코드를 입력해야 합니다.', + + 'messages' => [ + + 'invalid' => '입력한 코드가 올바르지 않습니다.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => '인증 앱 활성화', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => '인증 앱이 활성화되었습니다', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/ko/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..c34e056 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => '인증 앱', + + 'below_content' => '보안 앱을 사용하여 로그인 확인을 위한 임시 코드를 생성합니다.', + + 'messages' => [ + 'enabled' => '활성화됨', + 'disabled' => '비활성화됨', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => '인증 앱의 코드를 사용하세요', + + 'code' => [ + + 'label' => '인증 앱에서 6자리 코드를 입력하세요', + + 'validation_attribute' => '코드', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => '대신 복구 코드 사용', + ], + + ], + + 'messages' => [ + + 'invalid' => '입력한 코드가 올바르지 않습니다.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => '또는 복구 코드를 입력하세요', + + 'validation_attribute' => '복구 코드', + + 'messages' => [ + + 'invalid' => '입력한 복구 코드가 올바르지 않습니다.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/ko/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..3c63751 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + '비활성화', + + 'modal' => [ + + 'heading' => '이메일 인증 코드 비활성화', + + 'description' => '이메일 인증 코드 수신을 중단하시겠습니까? 이를 비활성화하면 계정에서 추가 보안 계층이 제거됩니다.', + + 'form' => [ + + 'code' => [ + + 'label' => '이메일로 보낸 6자리 코드를 입력하세요', + + 'validation_attribute' => '코드', + + 'actions' => [ + + 'resend' => [ + + 'label' => '이메일로 새 코드 보내기', + + 'notifications' => [ + + 'resent' => [ + 'title' => '이메일로 새 코드를 보냈습니다', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => '입력한 코드가 올바르지 않습니다.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => '이메일 인증 코드 비활성화', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => '이메일 인증 코드가 비활성화되었습니다', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/ko/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..503921a --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + '설정', + + 'modal' => [ + + 'heading' => '이메일 인증 코드 설정', + + 'description' => '로그인하거나 민감한 작업을 수행할 때마다 이메일로 보낸 6자리 코드를 입력해야 합니다. 설정을 완료하려면 이메일에서 6자리 코드를 확인하세요.', + + 'form' => [ + + 'code' => [ + + 'label' => '이메일로 보낸 6자리 코드를 입력하세요', + + 'validation_attribute' => '코드', + + 'actions' => [ + + 'resend' => [ + + 'label' => '이메일로 새 코드 보내기', + + 'notifications' => [ + + 'resent' => [ + 'title' => '이메일로 새 코드를 보냈습니다', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => '입력한 코드가 올바르지 않습니다.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => '이메일 인증 코드 활성화', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => '이메일 인증 코드가 활성화되었습니다', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/ko/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..38bff03 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + '로그인 코드입니다', + + 'lines' => [ + '로그인 코드: :code', + '이 코드는 1분 후에 만료됩니다.|이 코드는 :minutes분 후에 만료됩니다.', + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/ko/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..1b97339 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => '이메일 인증 코드', + + 'below_content' => '로그인 시 신원 확인을 위해 이메일 주소로 임시 코드를 받습니다.', + + 'messages' => [ + 'enabled' => '활성화됨', + 'disabled' => '비활성화됨', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => '이메일로 코드 보내기', + + 'code' => [ + + 'label' => '이메일로 보낸 6자리 코드를 입력하세요', + + 'validation_attribute' => '코드', + + 'actions' => [ + + 'resend' => [ + + 'label' => '이메일로 새 코드 보내기', + + 'notifications' => [ + + 'resent' => [ + 'title' => '이메일로 새 코드를 보냈습니다', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => '입력한 코드가 올바르지 않습니다.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/ko/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..3a805ae --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + '이중 인증(2FA) 설정', + + 'heading' => '이중 인증 설정', + + 'subheading' => '2FA는 로그인 시 두 번째 형태의 인증을 요구하여 계정에 추가 보안 계층을 추가합니다.', + + 'actions' => [ + + 'continue' => [ + 'label' => '계속', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/ko/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..0c13bb9 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + '클릭하여', + + 'copy' => [ + 'label' => '복사', + ], + + '하거나', + + 'download' => [ + 'label' => '다운로드', + ], + + '하여 모든 코드를 한 번에 가져오세요.', + + ], + + 'messages' => [ + 'copied' => '복사됨', + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/ko/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..e036398 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + '이메일 주소가 변경되고 있습니다', + + 'lines' => [ + '계정과 연결된 이메일 주소 변경 요청을 받았습니다. 이 변경을 확인하기 위해 비밀번호가 사용되었습니다.', + '확인되면 계정의 새 이메일 주소는 :email이 됩니다.', + '확인되기 전에 아래 버튼을 클릭하여 변경을 차단할 수 있습니다.', + '이 요청을 하지 않았다면 즉시 문의해 주세요.', + ], + + 'action' => '이메일 변경 차단', + +]; diff --git a/lang/vendor/filament-panels/ko/auth/pages/edit-profile.php b/lang/vendor/filament-panels/ko/auth/pages/edit-profile.php new file mode 100644 index 0000000..fbbcf73 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + '프로필', + + 'form' => [ + + 'email' => [ + 'label' => '이메일', + ], + + 'name' => [ + 'label' => '이름', + ], + + 'password' => [ + 'label' => '새 비밀번호', + 'validation_attribute' => '비밀번호', + ], + + 'password_confirmation' => [ + 'label' => '새 비밀번호 확인', + 'validation_attribute' => '비밀번호 확인', + ], + + 'current_password' => [ + 'label' => '현재 비밀번호', + 'below_content' => '보안을 위해 계속하려면 비밀번호를 확인해 주세요.', + 'validation_attribute' => '현재 비밀번호', + ], + + 'actions' => [ + + 'save' => [ + 'label' => '변경 사항 저장', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => '이중 인증 (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => '이메일 주소 변경 요청이 전송됨', + 'body' => ':email로 이메일 주소 변경 요청이 전송되었습니다. 변경사항을 확인하려면 이메일을 확인해 주세요.', + ], + + 'saved' => [ + 'title' => '저장 완료', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => '취소', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/ko/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..7088f1d --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + '이메일 주소 확인', + + 'heading' => '이메일 주소 확인', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => '재전송', + ], + + ], + + 'messages' => [ + 'notification_not_received' => '이메일을 받지 못하셨나요?', + 'notification_sent' => '이메일 인증에 대한 안내가 포함된 이메일을 :email로 보냈습니다.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => '이메일을 다시 보냈습니다.', + ], + + 'notification_resend_throttled' => [ + 'title' => '너무 많이 시도했습니다', + 'body' => ':seconds 초 후에 다시 시도해 주세요.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/pages/login.php b/lang/vendor/filament-panels/ko/auth/pages/login.php new file mode 100644 index 0000000..4296457 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/pages/login.php @@ -0,0 +1,85 @@ + '로그인', + + 'heading' => '로그인하세요', + + 'actions' => [ + + 'register' => [ + 'before' => '또는', + 'label' => '회원 가입', + ], + + 'request_password_reset' => [ + 'label' => '비밀번호를 잊어버리셨나요?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => '이메일', + ], + + 'password' => [ + 'label' => '비밀번호', + ], + + 'remember' => [ + 'label' => '기억하기', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => '로그인', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => '신원 확인', + + 'subheading' => '로그인을 계속하려면 신원을 확인해야 합니다.', + + 'form' => [ + + 'provider' => [ + 'label' => '어떻게 확인하시겠습니까?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => '로그인 확인', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => '일치하는 계정이 없습니다.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => '너무 많이 시도했습니다', + 'body' => ':seconds 초 후에 다시 시도해 주세요.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/ko/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..28c3997 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + '비밀번호 재설정', + + 'heading' => '비밀번호를 잊어버리셨나요?', + + 'actions' => [ + + 'login' => [ + 'label' => '로그인으로 돌아가기', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => '이메일', + ], + + 'actions' => [ + + 'request' => [ + 'label' => '이메일 전송', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => '계정이 존재하지 않으면 이메일을 받지 못합니다.', + ], + + 'throttled' => [ + 'title' => '너무 많이 시도했습니다', + 'body' => ':seconds 초 후에 다시 시도해 주세요.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/ko/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..6e34a7d --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + '비밀번호 재설정', + + 'heading' => '비밀번호 재설정', + + 'form' => [ + + 'email' => [ + 'label' => '이메일', + ], + + 'password' => [ + 'label' => '비밀번호', + 'validation_attribute' => '비밀번호', + ], + + 'password_confirmation' => [ + 'label' => '비밀번호 확인', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => '비밀번호 재설정', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => '너무 많이 시도했습니다', + 'body' => ':seconds 초 후에 다시 시도해 주세요.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/auth/pages/register.php b/lang/vendor/filament-panels/ko/auth/pages/register.php new file mode 100644 index 0000000..f6bb169 --- /dev/null +++ b/lang/vendor/filament-panels/ko/auth/pages/register.php @@ -0,0 +1,56 @@ + '회원가입', + + 'heading' => '회원가입', + + 'actions' => [ + + 'login' => [ + 'before' => '또는', + 'label' => '기존 계정으로 로그인', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => '이메일', + ], + + 'name' => [ + 'label' => '이름', + ], + + 'password' => [ + 'label' => '비밀번호', + 'validation_attribute' => '비밀번호', + ], + + 'password_confirmation' => [ + 'label' => '비밀번호 확인', + ], + + 'actions' => [ + + 'register' => [ + 'label' => '회원가입', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => '너무 많이 시도했습니다', + 'body' => ':seconds 초 후에 다시 시도해 주세요.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/error-notifications.php b/lang/vendor/filament-panels/ko/error-notifications.php new file mode 100644 index 0000000..d4e33a8 --- /dev/null +++ b/lang/vendor/filament-panels/ko/error-notifications.php @@ -0,0 +1,9 @@ + '페이지 로드 중 오류', + + 'body' => '이 페이지를 로드하는 동안 오류가 발생했습니다. 나중에 다시 시도해 주세요.', + +]; diff --git a/lang/vendor/filament-panels/ko/global-search.php b/lang/vendor/filament-panels/ko/global-search.php new file mode 100644 index 0000000..abed9fb --- /dev/null +++ b/lang/vendor/filament-panels/ko/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => '전체 검색', + 'placeholder' => '검색', + ], + + 'no_results_message' => '검색 결과가 없습니다.', + +]; diff --git a/lang/vendor/filament-panels/ko/layout.php b/lang/vendor/filament-panels/ko/layout.php new file mode 100644 index 0000000..3604e3b --- /dev/null +++ b/lang/vendor/filament-panels/ko/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => '구독 관리', + ], + + 'logout' => [ + 'label' => '로그아웃', + ], + + 'open_database_notifications' => [ + 'label' => '알림 열기', + ], + + 'open_user_menu' => [ + 'label' => '사용자 메뉴', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => '사이드바 접기', + ], + + 'expand' => [ + 'label' => '사이드바 펼치기', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => '다크 모드', + ], + + 'light' => [ + 'label' => '라이트 모드', + ], + + 'system' => [ + 'label' => '시스템 테마 사용', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => ':name 아바타', + ], + + 'logo' => [ + 'alt' => ':name 로고', + ], + +]; diff --git a/lang/vendor/filament-panels/ko/pages/dashboard.php b/lang/vendor/filament-panels/ko/pages/dashboard.php new file mode 100644 index 0000000..29caec7 --- /dev/null +++ b/lang/vendor/filament-panels/ko/pages/dashboard.php @@ -0,0 +1,33 @@ + '대시보드', + + 'actions' => [ + + 'filter' => [ + + 'label' => '필터', + + 'modal' => [ + + 'heading' => '필터', + + 'actions' => [ + + 'apply' => [ + + 'label' => '적용', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/ko/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..23ab234 --- /dev/null +++ b/lang/vendor/filament-panels/ko/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => '변경 사항 저장', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '저장 완료', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/resources/pages/create-record.php b/lang/vendor/filament-panels/ko/resources/pages/create-record.php new file mode 100644 index 0000000..130cc38 --- /dev/null +++ b/lang/vendor/filament-panels/ko/resources/pages/create-record.php @@ -0,0 +1,37 @@ + ':label 만들기', + + 'breadcrumb' => '만들기', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => '취소', + ], + + 'create' => [ + 'label' => '만들기', + ], + + 'create_another' => [ + 'label' => '계속 만들기', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => '생성 완료', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/resources/pages/edit-record.php b/lang/vendor/filament-panels/ko/resources/pages/edit-record.php new file mode 100644 index 0000000..69f7157 --- /dev/null +++ b/lang/vendor/filament-panels/ko/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + ':label 수정', + + 'breadcrumb' => '수정', + + 'navigation_label' => '수정', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => '취소', + ], + + 'save' => [ + 'label' => '저장', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => '수정', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '저장 완료', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/resources/pages/list-records.php b/lang/vendor/filament-panels/ko/resources/pages/list-records.php new file mode 100644 index 0000000..bedf2e1 --- /dev/null +++ b/lang/vendor/filament-panels/ko/resources/pages/list-records.php @@ -0,0 +1,7 @@ + '목록', + +]; diff --git a/lang/vendor/filament-panels/ko/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/ko/resources/pages/manage-related-records.php new file mode 100644 index 0000000..3ed3f43 --- /dev/null +++ b/lang/vendor/filament-panels/ko/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + ':label :relationship 관리', + +]; diff --git a/lang/vendor/filament-panels/ko/resources/pages/view-record.php b/lang/vendor/filament-panels/ko/resources/pages/view-record.php new file mode 100644 index 0000000..045780c --- /dev/null +++ b/lang/vendor/filament-panels/ko/resources/pages/view-record.php @@ -0,0 +1,19 @@ + ':label 보기', + + 'breadcrumb' => '보기', + + 'navigation_label' => '보기', + + 'content' => [ + + 'tab' => [ + 'label' => '보기', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ko/unsaved-changes-alert.php b/lang/vendor/filament-panels/ko/unsaved-changes-alert.php new file mode 100644 index 0000000..f3d85ee --- /dev/null +++ b/lang/vendor/filament-panels/ko/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + '작업 내용이 저장되지 않았습니다. 정말로 이 페이지를 나가시겠습니까?', + +]; diff --git a/lang/vendor/filament-panels/ko/widgets/account-widget.php b/lang/vendor/filament-panels/ko/widgets/account-widget.php new file mode 100644 index 0000000..27fef14 --- /dev/null +++ b/lang/vendor/filament-panels/ko/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => '로그아웃', + ], + + ], + + 'welcome' => '어서오세요', + +]; diff --git a/lang/vendor/filament-panels/ko/widgets/filament-info-widget.php b/lang/vendor/filament-panels/ko/widgets/filament-info-widget.php new file mode 100644 index 0000000..3d522dd --- /dev/null +++ b/lang/vendor/filament-panels/ko/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => '도큐먼트', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ku/auth/pages/edit-profile.php b/lang/vendor/filament-panels/ku/auth/pages/edit-profile.php new file mode 100644 index 0000000..ce4fa39 --- /dev/null +++ b/lang/vendor/filament-panels/ku/auth/pages/edit-profile.php @@ -0,0 +1,51 @@ + 'پڕۆفایل', + + 'form' => [ + + 'email' => [ + 'label' => 'ئیمەیڵ', + ], + + 'name' => [ + 'label' => 'ناو', + ], + + 'password' => [ + 'label' => 'وشەی نهێنی نوێ', + ], + + 'password_confirmation' => [ + 'label' => 'دڵنیابوونەوەی وشەی نهێنی نوێ', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'نوێکردنەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'نوێکرایەوە', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'گەڕانەوە', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ku/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/ku/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..feba913 --- /dev/null +++ b/lang/vendor/filament-panels/ku/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'چالاککردنی ئیمەیڵ', + + 'heading' => 'چالاککردنی ئیمەیڵ', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'دووبارە چالاککردن بنێرە', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'ئیمەیڵەکەت پێ نەگەیشت بۆ چالاککردن؟', + 'notification_sent' => 'ئیمەیڵێکمان نارد بۆ :email کە ڕێنماییەکەنی تێدایە بۆ چالاککردنی هەژمارەکەت..', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'چالاککردنی ئیمەیڵ دووبارە نێردرا.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'هەوڵی دووبارە ناردنی چالاککردن زۆر نێردرا', + 'body' => 'تکایە هەوڵ بدەرەوە دوای :seconds چرکە.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ku/auth/pages/login.php b/lang/vendor/filament-panels/ku/auth/pages/login.php new file mode 100644 index 0000000..4997ba1 --- /dev/null +++ b/lang/vendor/filament-panels/ku/auth/pages/login.php @@ -0,0 +1,61 @@ + 'چوونەژوورەوە', + + 'heading' => 'چوونەژوورەوە', + + 'actions' => [ + + 'register' => [ + 'before' => 'یان', + 'label' => 'دروستکردنی هەژماری نوێ', + ], + + 'request_password_reset' => [ + 'label' => 'وشەی نهێنیت لەبیرکردووە؟', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ئیمەیڵ', + ], + + 'password' => [ + 'label' => 'وشەی نهێنی', + ], + + 'remember' => [ + 'label' => 'لەبیرم مەکە', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'چوونەژوورەوە', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'هیچ هەژمارێک بەو تۆمارە بوونی نییە.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'هەوڵی داواکاری چونەژورەوە زۆر نێردرا', + 'body' => 'تکایە هەوڵ بدەرەوە دوای :seconds چرکە.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ku/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/ku/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..1994e7e --- /dev/null +++ b/lang/vendor/filament-panels/ku/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'نوێکردنەوەی وشەی نهێنی', + + 'heading' => 'وشەی نهێنیت لەبیر کردووە؟?', + + 'actions' => [ + + 'login' => [ + 'label' => 'گەڕانەوە بۆ چوونەژوورەوە', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ئیمەیڵ', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'ناردنی ئیمەیڵ', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'داواکاری زۆر نێردرا', + 'body' => 'تکایە هەوڵ بدەرەوە دوای :seconds چرکە.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ku/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/ku/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..3cc2b3b --- /dev/null +++ b/lang/vendor/filament-panels/ku/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'نوێکردنەوەی وشەی نهێنی', + + 'heading' => 'نوێکردنەوەی وشەی نهێنی', + + 'form' => [ + + 'email' => [ + 'label' => 'ئیمەیڵ', + ], + + 'password' => [ + 'label' => 'وشەی نهێنی', + 'validation_attribute' => 'وشەی نهێنی', + ], + + 'password_confirmation' => [ + 'label' => 'دڵنیابوونەوەی وشەی نهێنی', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'نوێکردنەوەی وشەی نهێنی', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'هەوڵی نوێکردنەوەی وشەی نهێنی زۆر نێردرا', + 'body' => 'تکایە هەوڵ بدەرەوە دوای :seconds چرکە.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ku/auth/pages/register.php b/lang/vendor/filament-panels/ku/auth/pages/register.php new file mode 100644 index 0000000..87f6374 --- /dev/null +++ b/lang/vendor/filament-panels/ku/auth/pages/register.php @@ -0,0 +1,56 @@ + 'دروستکردنی هەژمار', + + 'heading' => 'دروستکردنی هەژمار', + + 'actions' => [ + + 'login' => [ + 'before' => 'یان', + 'label' => 'چوونەژوورەوە', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ئیمەیڵ', + ], + + 'name' => [ + 'label' => 'ناو', + ], + + 'password' => [ + 'label' => 'وشەی نهێنی', + 'validation_attribute' => 'وشەی نهێنی', + ], + + 'password_confirmation' => [ + 'label' => 'دڵنیابوونەوەی وشەی نهێنی', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'دروستکردنی هەژمار', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'هەوڵی دروستکردنی هەژمار زۆر نێردرا', + 'body' => 'تکایە هەوڵ بدەرەوە دوای :seconds چرکە.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ku/global-search.php b/lang/vendor/filament-panels/ku/global-search.php new file mode 100644 index 0000000..b69f0f6 --- /dev/null +++ b/lang/vendor/filament-panels/ku/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'گەڕانی گشتی', + 'placeholder' => 'گەڕان', + ], + + 'no_results_message' => 'هیچ ئەنجامێک بۆ گەڕانەکەت نەدۆزرایەوە.', + +]; diff --git a/lang/vendor/filament-panels/ku/layout.php b/lang/vendor/filament-panels/ku/layout.php new file mode 100644 index 0000000..1ba52fa --- /dev/null +++ b/lang/vendor/filament-panels/ku/layout.php @@ -0,0 +1,55 @@ + 'rtl', + + 'actions' => [ + + 'billing' => [ + 'label' => 'بەشدارییەکان', + ], + + 'logout' => [ + 'label' => 'چوونەدەرەوە', + ], + + 'open_database_notifications' => [ + 'label' => 'کردنەوەی ئاگانامەکان', + ], + + 'open_user_menu' => [ + 'label' => 'مێنیوی بەکارهێنەر', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'بچووکردنەوەی شریتی گەڕان', + ], + + 'expand' => [ + 'label' => 'فراوانکردنی شریتی گەڕان', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'گۆڕینی ڕوانگە بۆ تاریک', + ], + + 'light' => [ + 'label' => 'گۆڕینی ڕوانگە بۆ ڕووناک', + ], + + 'system' => [ + 'label' => 'داگرساندنی باری سیستەم', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ku/pages/dashboard.php b/lang/vendor/filament-panels/ku/pages/dashboard.php new file mode 100644 index 0000000..89dea64 --- /dev/null +++ b/lang/vendor/filament-panels/ku/pages/dashboard.php @@ -0,0 +1,7 @@ + 'داشبۆرد', + +]; diff --git a/lang/vendor/filament-panels/ku/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/ku/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..7348084 --- /dev/null +++ b/lang/vendor/filament-panels/ku/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'نوێکردنەوە', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'نوێکرایەوە', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ku/resources/pages/create-record.php b/lang/vendor/filament-panels/ku/resources/pages/create-record.php new file mode 100644 index 0000000..43ed6f3 --- /dev/null +++ b/lang/vendor/filament-panels/ku/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'دروستکردنی :label', + + 'breadcrumb' => 'دروستکردن', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'پاشگەزبوونەوە', + ], + + 'create' => [ + 'label' => 'دروستکردن', + ], + + 'create_another' => [ + 'label' => 'دروستکردن و تۆمارێکی تر', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'دروستکرا', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ku/resources/pages/edit-record.php b/lang/vendor/filament-panels/ku/resources/pages/edit-record.php new file mode 100644 index 0000000..eaf46e5 --- /dev/null +++ b/lang/vendor/filament-panels/ku/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'دەستکاریکردنی :label', + + 'breadcrumb' => 'دەستکاریکردن', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'پاشگەزبوونەوە', + ], + + 'save' => [ + 'label' => 'نوێکردنەوە', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'دەستکاریکردن', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'نوێکرایەوە', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ku/resources/pages/list-records.php b/lang/vendor/filament-panels/ku/resources/pages/list-records.php new file mode 100644 index 0000000..3ecd89c --- /dev/null +++ b/lang/vendor/filament-panels/ku/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'تۆمارەکان', + +]; diff --git a/lang/vendor/filament-panels/ku/resources/pages/view-record.php b/lang/vendor/filament-panels/ku/resources/pages/view-record.php new file mode 100644 index 0000000..c3dd4f8 --- /dev/null +++ b/lang/vendor/filament-panels/ku/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'بینینی :label', + + 'breadcrumb' => 'بینین', + + 'content' => [ + + 'tab' => [ + 'label' => 'بینین', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ku/widgets/account-widget.php b/lang/vendor/filament-panels/ku/widgets/account-widget.php new file mode 100644 index 0000000..c923c56 --- /dev/null +++ b/lang/vendor/filament-panels/ku/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'چوونەدەرەوە', + ], + + ], + + 'welcome' => 'بەخێربێیت', + +]; diff --git a/lang/vendor/filament-panels/ku/widgets/filament-info-widget.php b/lang/vendor/filament-panels/ku/widgets/filament-info-widget.php new file mode 100644 index 0000000..e559504 --- /dev/null +++ b/lang/vendor/filament-panels/ku/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Documentation', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/lt/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..bf2049b --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'El. pašto adreso keitimas užblokuotas', + 'body' => 'Jūs sėkmingai užblokavote el. pašto adreso keitimo bandymą į :email. Jei jūs nepateikėte pradinio prašymo, nedelsdami susisiekite su mumis.', + ], + + 'failed' => [ + 'title' => 'Nepavyko užblokuoti el. pašto adreso keitimo', + 'body' => 'Deja, jums nepavyko užkirsti kelio el. pašto adreso keitimui į :email, nes jis jau buvo patvirtintas prieš tai, kai jį užblokavote. Jei jūs nepateikėte pradinio prašymo, nedelsdami susisiekite su mumis.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/lt/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..a55520d --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'El. pašto adresas pakeistas', + 'body' => 'Jūsų el. pašto adresas sėkmingai pakeistas į :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/lt/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..d04034b --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,75 @@ + 'Išjungti', + + 'modal' => [ + + 'heading' => 'Išjungti autentifikavimo programą', + + 'description' => 'Ar tikrai norite sustabdyti autentifikavimo programos naudojimą? Išjungus šią funkciją, jūsų paskyrai bus pašalintas papildomas saugos lygis.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Įveskite 6 skaitmenų kodą iš autentifikavimo programos', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Naudoti atsarginį kodą', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Įvestas kodas yra neteisingas.', + + 'rate_limited' => 'Per daug bandymų. Pabandykite vėliau.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Arba įveskite atsarginį kodą', + + 'validation_attribute' => 'recovery code', + + 'messages' => [ + + 'invalid' => 'Įvestas atsarginis kodas yra neteisingas.', + + 'rate_limited' => 'Per daug bandymų. Pabandykite vėliau.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Išjungti autentifikavimo programą', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Autentifikavimo programa išjungta', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/lt/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..d280cf9 --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,79 @@ + 'Regeneruoti atsarginius kodus', + + 'modal' => [ + + 'heading' => 'Regeneruoti autentifikavimo programos atsarginius kodus', + + 'description' => 'Jei praradote atsarginius kodus, galite juos regeneruoti čia. Jūsų seni atsarginiai kodai bus nedelsiant panaikinti.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Įveskite 6 skaitmenų kodą iš autentifikavimo programos', + + 'validation_attribute' => 'code', + + 'messages' => [ + + 'invalid' => 'Įvestas kodas yra neteisingas.', + + 'rate_limited' => 'Per daug bandymų. Pabandykite vėliau.', + + ], + + ], + + 'password' => [ + + 'label' => 'Arba įveskite dabartinį slaptažodį', + + 'validation_attribute' => 'password', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Regeneruoti atsarginius kodus', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Nauji autentifikavimo programos atsarginiai kodai buvo sugeneruoti', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Nauji atsarginiai kodai', + + 'description' => 'Prašome išsaugoti šiuos naujus atsarginius kodus saugioje vietoje. Jie bus rodomi tik vieną kartą, bet jums reikės jų, jei prarasite prieigą prie autentifikavimo programos:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Uždaryti', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/lt/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..def4996 --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,83 @@ + 'Įgalinti', + + 'modal' => [ + + 'heading' => 'Įgalinti autentifikavimo programą', + + 'description' => <<<'BLADE' + Jums reikės programos tokios kaip Google Authenticator (iOS, Android) norint užbaigti šį procesą. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Nuskaitykite šį QR kodą naudodami autentifikavimo programą:', + + 'alt' => 'QR kodas, kurį reikia nuskaityti naudojant autentifikavimo programą', + + ], + + 'text_code' => [ + + 'instruction' => 'Arba įveskite šį kodą rankiniu būdu:', + + 'messages' => [ + 'copied' => 'Nukopijuota', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Prašome išsaugoti šiuos atsarginius kodus saugioje vietoje. Jie bus rodomi tik vieną kartą, bet jums reikės jų, jei prarasite prieigą prie autentifikavimo programos:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Įveskite 6 skaitmenų kodą iš autentifikavimo programos', + + 'validation_attribute' => 'code', + + 'below_content' => 'Jums reikės įvesti 6 skaitmenų kodą iš savo autentifikavimo programos kaskart, kai prisijungsite arba atliksite jautrius veiksmus.', + + 'messages' => [ + + 'invalid' => 'Įvestas kodas yra neteisingas.', + + 'rate_limited' => 'Per daug bandymų. Pabandykite vėliau.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Įgalinti autentifikavimo programą', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Autentifikavimo programa įjungta', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/lt/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..207f87c --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Autentifikavimo programa', + + 'below_content' => 'Naudokite saugią programą, kad sugeneruotumėte laikiną kodą prisijungimui.', + + 'messages' => [ + 'enabled' => 'Įjungta', + 'disabled' => 'Išjungta', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Naudokite kodą iš savo autentifikavimo programos', + + 'code' => [ + + 'label' => 'Įveskite 6 skaitmenų kodą iš autentifikavimo programos', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Arba naudokite atsarginį kodą', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Įvestas kodas yra neteisingas.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Arba įveskite atsarginį kodą', + + 'validation_attribute' => 'recovery code', + + 'messages' => [ + + 'invalid' => 'Įvestas atsarginis kodas yra neteisingas.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/lt/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..0ffd7e8 --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,73 @@ + 'Turn off', + + 'modal' => [ + + 'heading' => 'Disable email verification codes', + + 'description' => 'Are you sure you want to stop receiving email verification codes? Disabling this will remove an extra layer of security from your account.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Enter the 6-digit code we sent you by email', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Send a new code by email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'We\'ve sent you a new code by email', + ], + + 'throttled' => [ + 'title' => 'Too many resend attempts. Please wait before requesting another code.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'The code you entered is invalid.', + + 'rate_limited' => 'Per daug bandymų. Pabandykite vėliau.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Disable email verification codes', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Email verification codes have been disabled', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/lt/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..285d385 --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,73 @@ + 'Nustatyti', + + 'modal' => [ + + 'heading' => 'Nustatyti el. pašto patvirtinimo kodus', + + 'description' => 'Kiekvieną kartą prisijungdami arba atlikdami jautrius veiksmus turėsite įvesti 6 skaitmenų kodą, kurį jums atsiųsime el. paštu. Patikrinkite savo el. paštą, kad gautumėte 6 skaitmenų kodą ir užbaigtumėte nustatymą.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Įveskite 6 skaitmenų kodą, kurį jums atsiuntėme el. paštu', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Siųsti naują kodą el. paštu', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Naujas kodas buvo išsiųstas el. paštu', + ], + + 'throttled' => [ + 'title' => 'Per daug bandymų siųsti kodą. Palaukite prieš bandydami dar kartą.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Įvestas kodas yra neteisingas.', + + 'rate_limited' => 'Per daug bandymų. Pabandykite vėliau.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Įgalinti el. pašto patvirtinimo kodus', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'El. pašto patvirtinimo kodai įgalinti', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/lt/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..35f037d --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Čia yra jūsų prisijungimo kodas', + + 'lines' => [ + 'Jūsų prisijungimo kodas yra: :code', + 'Šis kodas galios minutę.|Šis kodas galios :minutes minutes.', + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/lt/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..7f9578b --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Email verification codes', + + 'below_content' => 'Receive a temporary code at your email address to verify your identity during login.', + + 'messages' => [ + 'enabled' => 'Enabled', + 'disabled' => 'Disabled', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Send a code to your email', + + 'code' => [ + + 'label' => 'Enter the 6-digit code we sent you by email', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Send a new code by email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'We\'ve sent you a new code by email', + ], + + 'throttled' => [ + 'title' => 'Too many resend attempts. Please wait before requesting another code.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'The code you entered is invalid.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/lt/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..a0231f5 --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Nustatyti dviejų veiksnių autentifikavimą (2FA)', + + 'heading' => 'Nustatykite dviejų veiksnių autentifikavimą', + + 'subheading' => '2FA prideda papildomą saugumo sluoksnį jūsų paskyrai, reikalaujant antros formos patvirtinimo prisijungiant.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Tęsti', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/lt/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..420c3fe --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + '0' => 'Spustelėkite, kad', + + 'copy' => [ + 'label' => 'kopijuoti', + ], + + '1' => 'arba', + + 'download' => [ + 'label' => 'atsisiųsti', + ], + + '2' => 'visus kodus iš karto.', + + ], + + 'messages' => [ + 'copied' => 'Nukopijuota', + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/lt/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..1a32335 --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Jūsų el. pašto adresas pakeistas', + + 'lines' => [ + 'Gavome prašymą pakeisti su jūsų paskyra susietą el. pašto adresą. Šiam pakeitimui patvirtinti buvo naudotas jūsų slaptažodis.', + 'Patvirtinus, naujas el. pašto adresas jūsų paskyroje bus: :email.', + 'Galite užblokuoti pakeitimą prieš jį patvirtinant, spustelėdami žemiau esantį mygtuką.', + 'Jei nepateikėte šio prašymo, nedelsdami susisiekite su mumis.', + ], + + 'action' => 'Blokuoti el. pašto keitimą', + +]; diff --git a/lang/vendor/filament-panels/lt/auth/pages/edit-profile.php b/lang/vendor/filament-panels/lt/auth/pages/edit-profile.php new file mode 100644 index 0000000..422d668 --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/pages/edit-profile.php @@ -0,0 +1,73 @@ + 'Profilis', + + 'form' => [ + + 'email' => [ + 'label' => 'El. paštas', + ], + + 'name' => [ + 'label' => 'Vardas', + ], + + 'password' => [ + 'label' => 'Naujas slaptažodis', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Patvirtinkite naują slaptažodį', + 'validation_attribute' => 'password confirmation', + ], + + 'current_password' => [ + 'label' => 'Dabartinis slaptažodis', + 'below_content' => 'Saugumo sumetimais, prašome patvirtinti savo slaptažodį, kad galėtumėte tęsti.', + 'validation_attribute' => 'current password', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Išsaugoti', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Dviejų veiksnių autentifikacija (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'El. pašto adreso keitimo užklausa išsiųsta', + 'body' => 'Užklausa pakeisti jūsų el. pašto adresą buvo išsiųsta į :email. Prašome patikrinti savo el. paštą, kad patvirtintumėte pakeitimą.', + ], + + 'saved' => [ + 'title' => 'Išsaugota', + ], + + 'throttled' => [ + 'title' => 'Per daug užklausų. Pabandykite dar kartą po :seconds sekundžių. ', + 'body' => 'Pabandykite dar kartą po :seconds sekundžių.', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Atgal', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/lt/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..bf70761 --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Patvirtinkite el. pašto adresą', + + 'heading' => 'Patvirtinkite el. pašto adresą', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Išsiųsti dar kartą', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Negavote el. laiško?', + 'notification_sent' => 'Nusiuntėme instrukcijas į el. paštą :email kaip patvirtinti el. pašto adresą.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Persiuntėme el. laišką dar karta.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Per daug bandymų išsiųsti dar karta', + 'body' => 'Bandykite dar kartą už :seconds sekundžių.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/pages/login.php b/lang/vendor/filament-panels/lt/auth/pages/login.php new file mode 100644 index 0000000..2d80f06 --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Prisijungti', + + 'heading' => 'Prisijunkite prie savo paskyros', + + 'actions' => [ + + 'register' => [ + 'before' => 'arba', + 'label' => 'užsiregistruokite', + ], + + 'request_password_reset' => [ + 'label' => 'Pamiršote slaptažodį?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'El. paštas', + ], + + 'password' => [ + 'label' => 'Slaptažodis', + ], + + 'remember' => [ + 'label' => 'Prisiminti mane', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Prisijungti', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Patvirtinkite savo tapatybę', + + 'subheading' => 'Norėdami tęsti prisijungimą, turite patvirtinti savo tapatybę.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Kaip norėtumėte patvirtinti?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Patvirtinti prisijungimą', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Neteisingi prisijungimo duomenys.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Per daug bandymų prisijungti. Bandykite po :seconds sekundžių.', + 'body' => 'Pabandykite dar katą už :seconds sekundžių.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/lt/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..655f421 --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Atkurti slaptažodį', + + 'heading' => 'Pamiršote slaptažodį?', + + 'actions' => [ + + 'login' => [ + 'label' => 'grįžti į prisijungimą', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'El. paštas', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Siųsti', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Jei jūsų paskyra neegzistuoja, el. laiško negausite.', + ], + + 'throttled' => [ + 'title' => 'Per daug bandymų', + 'body' => 'Bandykite dar kartą už :seconds sekundžių.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/lt/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..ea0444f --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Atstatyti slaptažodį', + + 'heading' => 'Atstatyti slaptažodį', + + 'form' => [ + + 'email' => [ + 'label' => 'El. paštas', + ], + + 'password' => [ + 'label' => 'Slaptažodis', + 'validation_attribute' => 'slaptažodžio', + ], + + 'password_confirmation' => [ + 'label' => 'Patvirtinkite slaptažodį', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Atstatyti slaptažodį', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Per daug bandymų', + 'body' => 'Bandykite dar kartą už :seconds sekundžių.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/auth/pages/register.php b/lang/vendor/filament-panels/lt/auth/pages/register.php new file mode 100644 index 0000000..cdc00a5 --- /dev/null +++ b/lang/vendor/filament-panels/lt/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Registracija', + + 'heading' => 'Registracija', + + 'actions' => [ + + 'login' => [ + 'before' => 'arba', + 'label' => 'prisijunkite', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'El. paštas', + ], + + 'name' => [ + 'label' => 'Vardas', + ], + + 'password' => [ + 'label' => 'Slaptažodis', + 'validation_attribute' => 'slaptažodžio', + ], + + 'password_confirmation' => [ + 'label' => 'Patvirtinkite slaptažodį', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Registruotis', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Per daug registracijos bandymų', + 'body' => 'Pabandykite dar kartą už :seconds sekundžių.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/error-notifications.php b/lang/vendor/filament-panels/lt/error-notifications.php new file mode 100644 index 0000000..b5e0c9e --- /dev/null +++ b/lang/vendor/filament-panels/lt/error-notifications.php @@ -0,0 +1,9 @@ + 'Klaida įkeliant puslapį', + + 'body' => 'Įvyko klaida bandant įkelti šį puslapį. Bandykite dar kartą vėliau.', + +]; diff --git a/lang/vendor/filament-panels/lt/global-search.php b/lang/vendor/filament-panels/lt/global-search.php new file mode 100644 index 0000000..6caeee9 --- /dev/null +++ b/lang/vendor/filament-panels/lt/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Globali paieška', + 'placeholder' => 'Paieška', + ], + + 'no_results_message' => 'Paieškos rezultatų nėra.', + +]; diff --git a/lang/vendor/filament-panels/lt/layout.php b/lang/vendor/filament-panels/lt/layout.php new file mode 100644 index 0000000..9227a70 --- /dev/null +++ b/lang/vendor/filament-panels/lt/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Tvarkyti prenumeratą', + ], + + 'logout' => [ + 'label' => 'Atsijungti', + ], + + 'open_database_notifications' => [ + 'label' => 'Atidaryti pranešimus', + ], + + 'open_user_menu' => [ + 'label' => 'Vartotojo meniu', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Sutraukti šoninę juostą', + ], + + 'expand' => [ + 'label' => 'Išskleisti šoninę juostą', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Perjungti tamsos režimą', + ], + + 'light' => [ + 'label' => 'Perjungti šviesos režimą', + ], + + 'system' => [ + 'label' => 'Perjungti sistemos režimą', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => ':name avataras', + ], + + 'logo' => [ + 'alt' => ':name logotipas', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Nuomininko paieška', + 'placeholder' => 'Paieška', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/pages/dashboard.php b/lang/vendor/filament-panels/lt/pages/dashboard.php new file mode 100644 index 0000000..9588ea1 --- /dev/null +++ b/lang/vendor/filament-panels/lt/pages/dashboard.php @@ -0,0 +1,32 @@ + 'Pagrindinis puslapis', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtras', + + 'modal' => [ + + 'heading' => 'Filtras', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Taikyti', + + ], + + ], + + ], + + ], + + ], +]; diff --git a/lang/vendor/filament-panels/lt/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/lt/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..6d25527 --- /dev/null +++ b/lang/vendor/filament-panels/lt/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Išsaugoti', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Išsaugota', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/resources/pages/create-record.php b/lang/vendor/filament-panels/lt/resources/pages/create-record.php new file mode 100644 index 0000000..b210052 --- /dev/null +++ b/lang/vendor/filament-panels/lt/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Sukurti :label', + + 'breadcrumb' => 'Sukurti', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Atšaukti', + ], + + 'create' => [ + 'label' => 'Sukurti', + ], + + 'create_another' => [ + 'label' => 'Sukurti ir sukurti kitą', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Sukurta', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/resources/pages/edit-record.php b/lang/vendor/filament-panels/lt/resources/pages/edit-record.php new file mode 100644 index 0000000..cd2fce7 --- /dev/null +++ b/lang/vendor/filament-panels/lt/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Redaguoti :label', + + 'breadcrumb' => 'Redaguoti', + + 'navigation_label' => 'Redaguoti', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Atšaukti', + ], + + 'save' => [ + 'label' => 'Išsaugoti pakeitimus', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Redaguoti', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Išsaugota', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/resources/pages/list-records.php b/lang/vendor/filament-panels/lt/resources/pages/list-records.php new file mode 100644 index 0000000..038bbd1 --- /dev/null +++ b/lang/vendor/filament-panels/lt/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Sąrašas', + +]; diff --git a/lang/vendor/filament-panels/lt/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/lt/resources/pages/manage-related-records.php new file mode 100644 index 0000000..804075a --- /dev/null +++ b/lang/vendor/filament-panels/lt/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Valdyti :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/lt/resources/pages/view-record.php b/lang/vendor/filament-panels/lt/resources/pages/view-record.php new file mode 100644 index 0000000..4586f1d --- /dev/null +++ b/lang/vendor/filament-panels/lt/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Peržiūrėti :label', + + 'breadcrumb' => 'Peržiūrėti', + + 'navigation_label' => 'Peržiūrėti', + + 'content' => [ + + 'tab' => [ + 'label' => 'Peržiūrėti', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lt/unsaved-changes-alert.php b/lang/vendor/filament-panels/lt/unsaved-changes-alert.php new file mode 100644 index 0000000..cb4cd06 --- /dev/null +++ b/lang/vendor/filament-panels/lt/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Jūs turite neišsaugotų pakeitimų. Ar tikrai norite išeiti iš šio puslapio?', + +]; diff --git a/lang/vendor/filament-panels/lt/widgets/account-widget.php b/lang/vendor/filament-panels/lt/widgets/account-widget.php new file mode 100644 index 0000000..510f1cb --- /dev/null +++ b/lang/vendor/filament-panels/lt/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Atsijungti', + ], + + ], + + 'welcome' => 'Sveiki atvykę', + +]; diff --git a/lang/vendor/filament-panels/lt/widgets/filament-info-widget.php b/lang/vendor/filament-panels/lt/widgets/filament-info-widget.php new file mode 100644 index 0000000..d770c7e --- /dev/null +++ b/lang/vendor/filament-panels/lt/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentacija', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/lus/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..eaae5de --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Email address thlak tur blocked ani', + 'body' => 'Hemi email adress :email thlak tum na chu I blocked fel e. Nangma request anih loh chuan, khawngaihin min rawn be vat dawn nia.', + ], + + 'failed' => [ + 'title' => 'Email address thlak tur a block theilo', + 'body' => 'Hemi email address :email a email inthlak hi I blocked hmaa a in verified tawh avangin tihdanglam theih ani tawhlo. Nangma request anih loh chuan, khawngaihin min rawn be vat dawn nia.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/lus/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..bc8087e --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Email address a inthlak', + 'body' => 'I email address chu hemi :email ah hian a inthlak e.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/lus/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..c72797e --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,75 @@ + 'Turn off', + + 'modal' => [ + + 'heading' => 'Disable authenticator app', + + 'description' => 'Authenticator app hman hi tihtawp i duh tak tak em? Hemi tihtawp hian security dang I account a a pek belh ho a paih dawn ani.', + + 'form' => [ + + 'code' => [ + + 'label' => '6-digit code authenticator app ami enter rawh', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Recovery code hmang zawk rawh', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Hemi code hi a diklo.', + + 'rate_limited' => 'Tumna a tam lutuk. Khawngaihin nakinah tinawn leh rawh.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Or, recovery code enter rawh', + + 'validation_attribute' => 'recovery code', + + 'messages' => [ + + 'invalid' => 'Hemi recovery code hi a diklo.', + + 'rate_limited' => 'Tumna a tam lutuk. Khawngaihin nakinah tinawn leh rawh.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Disable authenticator app', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Authenticator app disabled ani', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/lus/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..df10fe9 --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,79 @@ + 'Regenerate recovery codes', + + 'modal' => [ + + 'heading' => 'Authenticator app a recovery codes siamthar na', + + 'description' => 'I recovery codes iti bo anih chuan, heta tang hian a thar I siam thei ang. A code hlui ho kha chu an hman theih tawhloh nghal ang.', + + 'form' => [ + + 'code' => [ + + 'label' => '6-digit code authenticator app ami enter rawh', + + 'validation_attribute' => 'code', + + 'messages' => [ + + 'invalid' => 'Hemi code hi a diklo.', + + 'rate_limited' => 'Tumna a tam lutuk. Khawngaihin nakinah tinawn leh rawh.', + + ], + + ], + + 'password' => [ + + 'label' => 'Or, tun a I password enter rawh', + + 'validation_attribute' => 'password', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Recovery codes thar', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Authenticator app a recovery codes thar tur siam a ni', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Recovery codes thar', + + 'description' => 'Khawngaihin heng recovery codes ho hi him takin dahtha ang che. Vawikhat chiah an rawn lang dawn a, mahse I authenticator app a access I hloh hunah I mamawh ang:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Close', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/lus/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..53d660e --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,83 @@ + 'Set up', + + 'modal' => [ + + 'heading' => 'Authenticator app siamna', + + 'description' => <<<'BLADE' + Google Authenticator app (iOS, Android) ang chi hi hemi complete nan hian I mamawh ang. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'I authenticator app hmangin hemi QR code hi scan rawh:', + + 'alt' => 'QR code to scan with an authenticator app', + + ], + + 'text_code' => [ + + 'instruction' => 'emaw nangmahin hemi code hi enter chawp rawh:', + + 'messages' => [ + 'copied' => 'Lâk chhâwn ani e', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Khawngaihin heng recovery codes ho hi him takin dahtha ang che. Vawikhat chiah an rawn lang dawn a, mahse I authenticator app a access I hloh hunah I mamawh ang::', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => '6-digit code authenticator app ami enter rawh', + + 'validation_attribute' => 'code', + + 'below_content' => 'I sign in dawn ah emaw sensitive thil iti dawn anih chuan 6-digit code authenticator app ami i enter zel a ngai.', + + 'messages' => [ + + 'invalid' => 'Hemi code hi a diklo.', + + 'rate_limited' => 'Tumna a tam lutuk. Khawngaihin nakinah tinawn leh rawh.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Enable authenticator app', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Authenticator app enabled ani', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/lus/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..e05179e --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Authenticator app', + + 'below_content' => 'Login verification atan secure app in temporary code a siam hmang rawh.', + + 'messages' => [ + 'enabled' => 'Enabled', + 'disabled' => 'Disabled', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'I authenticator app ami code hmang rawh', + + 'code' => [ + + 'label' => '6-digit code authenticator app ami enter rawh', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Recovery code hmang zawk rawh', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Hemi code hi a diklo.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Or, recovery code enter rawh', + + 'validation_attribute' => 'recovery code', + + 'messages' => [ + + 'invalid' => 'Hemi recovery code hi a diklo.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/lus/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..6c657c2 --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,73 @@ + 'Turn off', + + 'modal' => [ + + 'heading' => 'Email verification codes tihtawp na', + + 'description' => 'Email verification codes dawn hi tihtawp i duh tak tak em? Hemi tihtawp hian security dang I account a a pek belh ho a paih dawn ani.', + + 'form' => [ + + 'code' => [ + + 'label' => '6-digit code email hmanga kan rawn thawn kha enter rawh', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Email ah code thar thawn rawh', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Email hmangin code thar kan rawn thawn e', + ], + + 'throttled' => [ + 'title' => 'Thawnnawn tumna a tam lutuk, Khawngaihin code dang dîl leh hmain nghak phawt rawh.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Hemi code hi a diklo.', + + 'rate_limited' => 'Tumna a tam lutuk. Khawngaihin nakinah tinawn leh rawh.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Email verification codes tihtawp na', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Email verification codes chu disabled ani', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/lus/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..3bcf458 --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,73 @@ + 'Set up', + + 'modal' => [ + + 'heading' => 'Email verification codes siamna', + + 'description' => 'Email hmanga 6-digit code kan rawn thawn kha I sign in dawnah emaw thil sensitive deuh hlek tih dawnah i chhutluh zel a ngai ang. Setup puitling turin 6-digit code i email ah en rawh.', + + 'form' => [ + + 'code' => [ + + 'label' => '6-digit code email hmanga kan rawn thawn kha enter rawh', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Email ah code thar thawn rawh', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Email hmangin code thar kan rawn thawn e', + ], + + 'throttled' => [ + 'title' => 'Thawnnawn tumna a tam lutuk, Khawngaihin code dang dîl leh hmain nghak phawt rawh.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Hemi code hi a diklo.', + + 'rate_limited' => 'Tumna a tam lutuk. Khawngaihin nakinah tinawn leh rawh.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Email verification codes enable rawh', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Email verification codes chu enabled a ni e', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/lus/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..0be50b4 --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'I luhna code chu hei le', + + 'lines' => [ + 'I luhna code chu: :code ani', + 'Minute 1 hnuah a expire ang.|Minutes :minutes hnuah a expire ang.', + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/lus/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..8f1cf13 --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Email verification codes', + + 'below_content' => 'Login lai in nangmah ngei ini tih chian nan I email address ah temporary code I dawng ang', + + 'messages' => [ + 'enabled' => 'Enabled', + 'disabled' => 'Disabled', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Email ah code thawn rawh', + + 'code' => [ + + 'label' => '6-digit code email hmanga kan rawn thawn kha enter rawh', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Email hmangin code thar thawnna', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Email ah code thar kan rawn thawn e', + ], + + 'throttled' => [ + 'title' => 'Thawnnawn tumna a tam lutuk, Khawngaihin code dang dîl leh hmain nghak phawt rawh.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Hemi code hi a diklo.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/lus/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..d9248dd --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Set up two-factor authentication (2FA)', + + 'heading' => 'Set up two-factor authentication', + + 'subheading' => '2FA adds an extra layer of security to your account by requiring a second form of verification when signing in.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Continue', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/lus/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..78c770c --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Click to', + + 'copy' => [ + 'label' => 'copy', + ], + + 'or', + + 'download' => [ + 'label' => 'download', + ], + + 'all the codes at once.', + + ], + + 'messages' => [ + 'copied' => 'Copied', + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/lus/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..f031e70 --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'I email address a inthlak dawn e', + + 'lines' => [ + 'I account a I email address hmanlai thlak tumna kan dawng a. I password hmang a nemngheh a ni.', + 'I verified anih chuan, hemi account a I email address thar chu :email a ni ang.', + 'A hnuai a button click in hemi address inthlak tur hi a in verified hmain I dang thei ang', + 'He thil hi nangma tih anih loh chuan, khawngaihin min rawn contact vat dawn nia', + ], + + 'action' => 'Email inthlak block na', + +]; diff --git a/lang/vendor/filament-panels/lus/auth/pages/edit-profile.php b/lang/vendor/filament-panels/lus/auth/pages/edit-profile.php new file mode 100644 index 0000000..f7c2445 --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/pages/edit-profile.php @@ -0,0 +1,73 @@ + 'Profile', + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'name' => [ + 'label' => 'Hming', + ], + + 'password' => [ + 'label' => 'Password thar', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Password thar nemnghehna', + 'validation_attribute' => 'password confirmation', + ], + + 'current_password' => [ + 'label' => 'Password hman mek', + 'below_content' => 'Security thil avangin hemi ti chhunzawm tur hian I password chhu rawh.', + 'validation_attribute' => 'current password', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Thlâkthlengna', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Two-factor authentication (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Email address thlak na thawn ani', + 'body' => 'Email thlak dilna na chu :email ah hian thawn ani. Khawngaihin hemi email atang hian a inthlak-ho verify rawh.', + ], + + 'saved' => [ + 'title' => 'A in thlâkthleng e.', + ], + + 'throttled' => [ + 'title' => 'Tumna a tam lutuk. Khawngaihin seconds :seconds hnuah ti nawn leh rawh.', + 'body' => 'Khawngaihin seconds :seconds hnuah ti nawn leh rawh.', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Sûtna', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/lus/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..3ef668f --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Verify your email address', + + 'heading' => 'Verify your email address', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Thawn nawn leh rawh', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Email kan thawn i dawnglo em?', + 'notification_sent' => 'Hemi email :email ah hian I email address verify dan tur nen kan thawn.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Email kan thawn nawn e.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Thawnnawn tumna a tam lutuk', + 'body' => 'Khawngaihin seconds :seconds hnuah ti nawn leh rawh.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/pages/login.php b/lang/vendor/filament-panels/lus/auth/pages/login.php new file mode 100644 index 0000000..dd35332 --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Login', + + 'heading' => 'Luhna', + + 'actions' => [ + + 'register' => [ + 'before' => 'emaw', + 'label' => 'account nei turin in ziak lut rawh', + ], + + 'request_password_reset' => [ + 'label' => 'Password i theihnghilh em?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'password' => [ + 'label' => 'Password', + ], + + 'remember' => [ + 'label' => 'Inhriatrengna', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Luhna', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'I nihna finfiah rawh', + + 'subheading' => 'Lût chhunzawm turin, i nihna finfiah phawt a ngai.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Engtiang a finfiah nge i duh?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Luhna nemnghehna', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Hemi credentials hi kan records neihah a awmlo.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Luh tumna a tam lutuk', + 'body' => 'Khawngaihin seconds :seconds hnuah ti nawn leh rawh.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/lus/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..f82d990 --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'I password reset na', + + 'heading' => 'Password I theihnghilh em?', + + 'actions' => [ + + 'login' => [ + 'label' => 'Luhna a letna', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email address', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Email thawnna', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'I account a awmlo anih chuan email i dawng lo ang.', + ], + + 'throttled' => [ + 'title' => 'Thawn a tam lutuk', + 'body' => 'Khawngaihin seconds :seconds hnuah ti nawn leh rawh.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/lus/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..a6f2c6e --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Reset your password', + + 'heading' => 'Password tihṭhatna', + + 'form' => [ + + 'email' => [ + 'label' => 'Email address', + ], + + 'password' => [ + 'label' => 'Password', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Confirm password', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Tihṭhatna', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Tihṭhat tumna a tam lutuk', + 'body' => 'Khawngaihin seconds :seconds hnuah ti nawn leh rawh.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/auth/pages/register.php b/lang/vendor/filament-panels/lus/auth/pages/register.php new file mode 100644 index 0000000..a13705b --- /dev/null +++ b/lang/vendor/filament-panels/lus/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Register', + + 'heading' => 'In ziah luhna', + + 'actions' => [ + + 'login' => [ + 'before' => 'emaw', + 'label' => 'I account ah lut rawh', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'name' => [ + 'label' => 'Hming', + ], + + 'password' => [ + 'label' => 'Password', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Password nemnghehna', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Ziah luhna', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'In ziah luh tumna a tam lutuk', + 'body' => 'Khawngaihin seconds :seconds hnuah ti nawn leh rawh.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/error-notifications.php b/lang/vendor/filament-panels/lus/error-notifications.php new file mode 100644 index 0000000..4b546bc --- /dev/null +++ b/lang/vendor/filament-panels/lus/error-notifications.php @@ -0,0 +1,9 @@ + 'Page load laiin error a awm', + + 'body' => 'Page load tum laiin error a awm. Khawngaihin nakinah tinawn leh rawh.', + +]; diff --git a/lang/vendor/filament-panels/lus/global-search.php b/lang/vendor/filament-panels/lus/global-search.php new file mode 100644 index 0000000..e897072 --- /dev/null +++ b/lang/vendor/filament-panels/lus/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Global search', + 'placeholder' => 'Zawnna', + ], + + 'no_results_message' => 'I thil zawn a awmlo.', + +]; diff --git a/lang/vendor/filament-panels/lus/layout.php b/lang/vendor/filament-panels/lus/layout.php new file mode 100644 index 0000000..0ca0e6b --- /dev/null +++ b/lang/vendor/filament-panels/lus/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Manage subscription', + ], + + 'logout' => [ + 'label' => 'Sign out', + ], + + 'open_database_notifications' => [ + 'label' => 'Hriattîrna', + ], + + 'open_user_menu' => [ + 'label' => 'User menu', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Sidebar kharna', + ], + + 'expand' => [ + 'label' => 'Sidebar hawnna', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Theme dum hmanna', + ], + + 'light' => [ + 'label' => 'Theme êng hmanna', + ], + + 'system' => [ + 'label' => 'System theme hmanna', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar of :name', + ], + + 'logo' => [ + 'alt' => ':name logo', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Tenant zawnna', + 'placeholder' => 'Zawnna', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/pages/dashboard.php b/lang/vendor/filament-panels/lus/pages/dashboard.php new file mode 100644 index 0000000..dd26068 --- /dev/null +++ b/lang/vendor/filament-panels/lus/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Dashboard', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Thlit fîmna', + + 'modal' => [ + + 'heading' => 'Thlit fîmna', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Apply', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/lus/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..50ee63e --- /dev/null +++ b/lang/vendor/filament-panels/lus/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Thlâkthlengna', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'A in thlâkthleng e.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/resources/pages/create-record.php b/lang/vendor/filament-panels/lus/resources/pages/create-record.php new file mode 100644 index 0000000..10eeace --- /dev/null +++ b/lang/vendor/filament-panels/lus/resources/pages/create-record.php @@ -0,0 +1,37 @@ + ':Label siamna', + + 'breadcrumb' => 'Siamna', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Sûtna', + ], + + 'create' => [ + 'label' => 'Siamna', + ], + + 'create_another' => [ + 'label' => 'Pakhat siama adang siam lehna', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'A thar siam ani.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/resources/pages/edit-record.php b/lang/vendor/filament-panels/lus/resources/pages/edit-record.php new file mode 100644 index 0000000..9c3bc57 --- /dev/null +++ b/lang/vendor/filament-panels/lus/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + ':Label tihdikna', + + 'breadcrumb' => 'Tihdikna', + + 'navigation_label' => 'Tihdikna', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Sûtna', + ], + + 'save' => [ + 'label' => 'Thlâkthlengna', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Tihdikna', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Saved', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/resources/pages/list-records.php b/lang/vendor/filament-panels/lus/resources/pages/list-records.php new file mode 100644 index 0000000..c7ba243 --- /dev/null +++ b/lang/vendor/filament-panels/lus/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'List', + +]; diff --git a/lang/vendor/filament-panels/lus/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/lus/resources/pages/manage-related-records.php new file mode 100644 index 0000000..45f8619 --- /dev/null +++ b/lang/vendor/filament-panels/lus/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Manage :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/lus/resources/pages/view-record.php b/lang/vendor/filament-panels/lus/resources/pages/view-record.php new file mode 100644 index 0000000..57e3658 --- /dev/null +++ b/lang/vendor/filament-panels/lus/resources/pages/view-record.php @@ -0,0 +1,19 @@ + ':Label enna', + + 'breadcrumb' => 'Enna', + + 'navigation_label' => 'Enna', + + 'content' => [ + + 'tab' => [ + 'label' => 'Enna', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lus/unsaved-changes-alert.php b/lang/vendor/filament-panels/lus/unsaved-changes-alert.php new file mode 100644 index 0000000..b84b778 --- /dev/null +++ b/lang/vendor/filament-panels/lus/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Thil save loh i nei. Hemi page hi kalsan i duh tak tak em?', + +]; diff --git a/lang/vendor/filament-panels/lus/widgets/account-widget.php b/lang/vendor/filament-panels/lus/widgets/account-widget.php new file mode 100644 index 0000000..396eef7 --- /dev/null +++ b/lang/vendor/filament-panels/lus/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Chhuahna', + ], + + ], + + 'welcome' => 'Kan lo lawm a che', + +]; diff --git a/lang/vendor/filament-panels/lus/widgets/filament-info-widget.php b/lang/vendor/filament-panels/lus/widgets/filament-info-widget.php new file mode 100644 index 0000000..e559504 --- /dev/null +++ b/lang/vendor/filament-panels/lus/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Documentation', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lv/auth/pages/edit-profile.php b/lang/vendor/filament-panels/lv/auth/pages/edit-profile.php new file mode 100644 index 0000000..0501cae --- /dev/null +++ b/lang/vendor/filament-panels/lv/auth/pages/edit-profile.php @@ -0,0 +1,51 @@ + 'Profils', + + 'form' => [ + + 'email' => [ + 'label' => 'E-pasta adrese', + ], + + 'name' => [ + 'label' => 'Vārds', + ], + + 'password' => [ + 'label' => 'Jaunā parole', + ], + + 'password_confirmation' => [ + 'label' => 'Jaunās paroles apstiprinājums', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Saglabāt izmaiņas', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Izmaiņas saglabātas', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Atcelt', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lv/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/lv/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..2fdf14d --- /dev/null +++ b/lang/vendor/filament-panels/lv/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Apstipriniet savu e-pasta adresi', + + 'heading' => 'Apstipriniet savu e-pasta adresi', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Nosūtīt vēlreiz', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Nesaņēmāt mūsu nosūtīto e-pastu?', + 'notification_sent' => 'Uz adresi :email tika nosūtīts e-pasts ar norādēm, kā apstiprināt savu e-pasta adresi.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'E-pasts tika nosūtīts atkārtoti.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Pārāk daudz mēģinājumu', + 'body' => 'Lūdzu, mēģiniet vēlreiz pēc :seconds sekundēm.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lv/auth/pages/login.php b/lang/vendor/filament-panels/lv/auth/pages/login.php new file mode 100644 index 0000000..f833260 --- /dev/null +++ b/lang/vendor/filament-panels/lv/auth/pages/login.php @@ -0,0 +1,61 @@ + 'Pieteikšanās', + + 'heading' => 'Pierakstīties savā kontā', + + 'actions' => [ + + 'register' => [ + 'before' => 'vai', + 'label' => 'reģistrēties', + ], + + 'request_password_reset' => [ + 'label' => 'Aizmirsāt paroli?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-pasta adrese', + ], + + 'password' => [ + 'label' => 'Parole', + ], + + 'remember' => [ + 'label' => 'Atcerēties mani', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Pierakstīties', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Šie akreditācijas dati neatbilst mūsu ierakstiem.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Pārāk daudz pieteikšanās mēģinājumu.', + 'body' => 'Lūdzu, mēģiniet vēlreiz pēc :seconds sekundēm.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lv/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/lv/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..3f68fd6 --- /dev/null +++ b/lang/vendor/filament-panels/lv/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Paroles maiņa', + + 'heading' => 'Aizmirsāt paroli?', + + 'actions' => [ + + 'login' => [ + 'label' => 'atpakaļ uz pieteikšanās lapu', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-pasta adrese', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Sūtīt e-pastu', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Jūs saņemsiet e-pastu, ja Jūsu konts eksistē.', + ], + + 'throttled' => [ + 'title' => 'Pārāk daudz mēģinājumu', + 'body' => 'Lūdzu, mēģiniet vēlreiz pēc :seconds sekundēm.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lv/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/lv/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..8fb32ae --- /dev/null +++ b/lang/vendor/filament-panels/lv/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Paroles maiņa', + + 'heading' => 'Mainīt paroli', + + 'form' => [ + + 'email' => [ + 'label' => 'E-pasta adrese', + ], + + 'password' => [ + 'label' => 'Parole', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Paroles apstiprinājums', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Mainīt paroli', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Pārāk daudz mēģinājumu', + 'body' => 'Lūdzu, mēģiniet vēlreiz pēc :seconds sekundēm.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lv/auth/pages/register.php b/lang/vendor/filament-panels/lv/auth/pages/register.php new file mode 100644 index 0000000..e01657f --- /dev/null +++ b/lang/vendor/filament-panels/lv/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Reģistrācija', + + 'heading' => 'Reģistrēties', + + 'actions' => [ + + 'login' => [ + 'before' => 'vai', + 'label' => 'pierakstīties savā kontā', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-pasta adrese', + ], + + 'name' => [ + 'label' => 'Vārds', + ], + + 'password' => [ + 'label' => 'Parole', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Paroles apstiprinājums', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Reģistrēties', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Pārāk daudz reģistrēšanās mēģinājumu', + 'body' => 'Lūdzu, mēģiniet vēlreiz pēc :seconds sekundēm.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lv/global-search.php b/lang/vendor/filament-panels/lv/global-search.php new file mode 100644 index 0000000..4f5fc54 --- /dev/null +++ b/lang/vendor/filament-panels/lv/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Vispārēja meklēšana', + 'placeholder' => 'Meklēt', + ], + + 'no_results_message' => 'Meklēšanas rezultāti nav atrasti.', + +]; diff --git a/lang/vendor/filament-panels/lv/layout.php b/lang/vendor/filament-panels/lv/layout.php new file mode 100644 index 0000000..251ef0d --- /dev/null +++ b/lang/vendor/filament-panels/lv/layout.php @@ -0,0 +1,55 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Pārvaldīt abonementu', + ], + + 'logout' => [ + 'label' => 'Iziet', + ], + + 'open_database_notifications' => [ + 'label' => 'Atvērt paziņojumus', + ], + + 'open_user_menu' => [ + 'label' => 'Lietotāja izvēlne', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Sakļaut sānjoslu', + ], + + 'expand' => [ + 'label' => 'Izvērst sānjoslu', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Pārslēgt uz tumšo režīmu', + ], + + 'light' => [ + 'label' => 'Pārslēgt uz gaišo režīmu', + ], + + 'system' => [ + 'label' => 'Pārslēgt uz sistēmas režīmu', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lv/pages/dashboard.php b/lang/vendor/filament-panels/lv/pages/dashboard.php new file mode 100644 index 0000000..cd4be61 --- /dev/null +++ b/lang/vendor/filament-panels/lv/pages/dashboard.php @@ -0,0 +1,7 @@ + 'Panelis', + +]; diff --git a/lang/vendor/filament-panels/lv/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/lv/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..0759003 --- /dev/null +++ b/lang/vendor/filament-panels/lv/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Saglabāt izmaiņas', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Izmaiņas saglabātas', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lv/resources/pages/create-record.php b/lang/vendor/filament-panels/lv/resources/pages/create-record.php new file mode 100644 index 0000000..ce12b20 --- /dev/null +++ b/lang/vendor/filament-panels/lv/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Jauns :label', + + 'breadcrumb' => 'Jauns', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Atcelt', + ], + + 'create' => [ + 'label' => 'Izveidot', + ], + + 'create_another' => [ + 'label' => 'Izveidot & izveidot citu', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Izveidots', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lv/resources/pages/edit-record.php b/lang/vendor/filament-panels/lv/resources/pages/edit-record.php new file mode 100644 index 0000000..da552e9 --- /dev/null +++ b/lang/vendor/filament-panels/lv/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'Rediģēt :label', + + 'breadcrumb' => 'Rediģēt', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Atcelt', + ], + + 'save' => [ + 'label' => 'Saglabāt izmaiņas', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Rediģēt', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Saglabāts', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lv/resources/pages/list-records.php b/lang/vendor/filament-panels/lv/resources/pages/list-records.php new file mode 100644 index 0000000..c9f4d4a --- /dev/null +++ b/lang/vendor/filament-panels/lv/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Saraksts', + +]; diff --git a/lang/vendor/filament-panels/lv/resources/pages/view-record.php b/lang/vendor/filament-panels/lv/resources/pages/view-record.php new file mode 100644 index 0000000..914a868 --- /dev/null +++ b/lang/vendor/filament-panels/lv/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'Skatīt :label', + + 'breadcrumb' => 'Skatīt', + + 'content' => [ + + 'tab' => [ + 'label' => 'Skatīt', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/lv/widgets/account-widget.php b/lang/vendor/filament-panels/lv/widgets/account-widget.php new file mode 100644 index 0000000..d4b2c7a --- /dev/null +++ b/lang/vendor/filament-panels/lv/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Iziet', + ], + + ], + + 'welcome' => 'Laipni lūdzam', + +]; diff --git a/lang/vendor/filament-panels/lv/widgets/filament-info-widget.php b/lang/vendor/filament-panels/lv/widgets/filament-info-widget.php new file mode 100644 index 0000000..e1e4b5e --- /dev/null +++ b/lang/vendor/filament-panels/lv/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentācija', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/mk/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..282216d --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Промената на е-пошта адресата е блокирана', + 'body' => 'Успешно ја блокиравте обидот за промена на е-пошта адресата на :email. Ако не го направивте оригиналното барање, ве молиме контактирајте не веднаш.', + ], + + 'failed' => [ + 'title' => 'Неуспешно блокирање на промената на е-пошта адресата', + 'body' => 'За жал, не можевте да ја спречите промената на е-пошта адресата на :email, бидејќи веќе беше потврдена пред да ја блокирате. Ако не го направивте оригиналното барање, ве молиме контактирајте не веднаш.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/mk/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..0ef79cd --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Е-пошта адресата е променета', + 'body' => 'Вашата е-пошта адреса е успешно променета на :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/mk/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..b64da81 --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Исклучи', + + 'modal' => [ + + 'heading' => 'Оневозможи апликација за автентификација', + + 'description' => 'Дали сте сигурни дека сакате да престанете да ја користите апликацијата за автентификација? Оневозможувањето на ова ќе го отстрани дополнителниот слој на безбедност од вашата сметка.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Внесете го 6-цифрениот код од апликацијата за автентификација', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Користете код за обновување наместо тоа', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Кодот што го внесовте не е валиден.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Или, внесете код за обновување', + + 'validation_attribute' => 'код за обновување', + + 'messages' => [ + + 'invalid' => 'Кодот за обновување што го внесовте не е валиден.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Оневозможи апликација за автентификација', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Апликацијата за автентификација е оневозможена', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/mk/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..7540ed0 --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Рекреирај кодови за обновување', + + 'modal' => [ + + 'heading' => 'Рекреирај кодови за обновување на апликацијата за автентификација', + + 'description' => 'Ако ги изгубите вашите кодови за обновување, можете да ги рекреирате овде. Вашите стари кодови за обновување веднаш ќе станат невалидни.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Внесете го 6-цифрениот код од апликацијата за автентификација', + + 'validation_attribute' => 'код', + + 'messages' => [ + + 'invalid' => 'Кодот што го внесовте не е валиден.', + + ], + + ], + + 'password' => [ + + 'label' => 'Или, внесете ја вашата тековна лозинка', + + 'validation_attribute' => 'лозинка', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Рекреирај кодови за обновување', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Нови кодови за обновување на апликацијата за автентификација се креирани', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Нови кодови за обновување', + + 'description' => 'Ве молиме зачувајте ги следните кодови за обновување на безбедно место. Тие ќе бидат прикажани само еднаш, но ќе ви требаат ако изгубите пристап до вашата апликација за автентификација:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Затвори', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/mk/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..62bf89b --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Постави', + + 'modal' => [ + + 'heading' => 'Постави апликација за автентификација', + + 'description' => <<<'BLADE' + Ќе ви треба апликација како Google Authenticator (iOS, Android) за да го завршите овој процес. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Скенирај го овој QR код со вашата апликација за автентификација:', + + 'alt' => 'QR код за скенирање со апликација за автентификација', + + ], + + 'text_code' => [ + + 'instruction' => 'Или внесете го овој код рачно:', + + 'messages' => [ + 'copied' => 'Копирано', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Ве молиме зачувајте ги следните кодови за обновување на безбедно место. Тие ќе бидат прикажани само еднаш, но ќе ви требаат ако изгубите пристап до вашата апликација за автентификација:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Внесете го 6-цифрениот код од апликацијата за автентификација', + + 'validation_attribute' => 'код', + + 'below_content' => 'Ќе треба да го внесете 6-цифрениот код од вашата апликација за автентификација секој пат кога ќе се најавите или извршите чувствителни акции.', + + 'messages' => [ + + 'invalid' => 'Кодот што го внесовте не е валиден.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Овозможи апликација за автентификација', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Апликацијата за автентификација е овозможена', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/mk/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..95f61e0 --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Апликација за автентификација', + + 'below_content' => 'Користете безбедна апликација за да генерирате привремен код за верификација при најавување.', + + 'messages' => [ + 'enabled' => 'Овозможено', + 'disabled' => 'Оневозможено', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Користете код од вашата апликација за автентификација', + + 'code' => [ + + 'label' => 'Внесете го 6-цифрениот код од апликацијата за автентификација', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Користете код за обновување наместо тоа', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Кодот што го внесовте не е валиден.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Или, внесете код за обновување', + + 'validation_attribute' => 'код за обновување', + + 'messages' => [ + + 'invalid' => 'Кодот за обновување што го внесовте не е валиден.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/mk/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..110e635 --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,71 @@ + 'Исклучи', + + 'modal' => [ + + 'heading' => 'Оневозможи кодови за верификација по е-пошта', + + 'description' => 'Дали сте сигурни дека сакате да престанете да примате кодови за верификација по е-пошта? Оневозможувањето на ова ќе го отстрани дополнителниот слој на безбедност од вашата сметка.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Внесете го 6-цифрениот код што ви го испративме по е-пошта', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Испрати нов код по е-пошта', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Ви испративме нов код по е-пошта', + ], + + 'throttled' => [ + 'title' => 'Премногу обиди за повторно испраќање. Ве молиме почекајте пред да побарате друг код.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Кодот што го внесовте не е валиден.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Оневозможи кодови за верификација по е-пошта', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Кодовите за верификација по е-пошта се оневозможени', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/mk/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..923743c --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,71 @@ + 'Постави', + + 'modal' => [ + + 'heading' => 'Постави кодови за верификација по е-пошта', + + 'description' => 'Ќе треба да го внесете 6-цифрениот код што ви го испраќаме по е-пошта секој пат кога ќе се најавите или извршите чувствителни акции. Проверете ја вашата е-пошта за 6-цифрен код за да го завршите поставувањето.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Внесете го 6-цифрениот код што ви го испративме по е-пошта', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Испрати нов код по е-пошта', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Ви испративме нов код по е-пошта', + ], + + 'throttled' => [ + 'title' => 'Премногу обиди за повторно испраќање. Ве молиме почекајте пред да побарате друг код.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Кодот што го внесовте не е валиден.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Овозможи кодови за верификација по е-пошта', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Кодовите за верификација по е-пошта се овозможени', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/mk/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..552093d --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Еве го твојот код за најава', + + 'lines' => [ + 'Твојот код за најава е: :code', + 'Овој код ќе истече за една минута.|Овој код ќе истече за :minutes минути.', + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/mk/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..600e4b7 --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Кодови за верификација по е-пошта', + + 'below_content' => 'Примајте привремен код на вашата е-пошта адреса за да го потврдите вашиот идентитет за време на најавувањето.', + + 'messages' => [ + 'enabled' => 'Овозможено', + 'disabled' => 'Оневозможено', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Испрати код на вашата е-пошта', + + 'code' => [ + + 'label' => 'Внесете го 6-цифрениот код што ви го испративме по е-пошта', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Испрати нов код по е-пошта', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Ви испративме нов код по е-пошта', + ], + + 'throttled' => [ + 'title' => 'Премногу обиди за повторно испраќање. Ве молиме почекајте пред да побарате друг код.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Кодот што го внесовте не е валиден.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/mk/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..f684391 --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Постави двофакторна автентификација (2FA)', + + 'heading' => 'Постави двофакторна автентификација', + + 'subheading' => '2FA додава дополнителен слој на безбедност на вашата сметка со барање на втора форма на верификација при најавување.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Продолжи', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/mk/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..f2b3ec5 --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Click to', + + 'copy' => [ + 'label' => 'копирај', + ], + + 'or', + + 'download' => [ + 'label' => 'преземи', + ], + + 'all the codes at once.', + + ], + + 'messages' => [ + 'copied' => 'Копирано', + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/mk/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..1179d3b --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Вашата е-пошта адреса се менува', + + 'lines' => [ + 'Примивме барање за промена на е-пошта адресата поврзана со вашата сметка. Вашата лозинка беше користена за да се потврди оваа промена.', + 'Откако ќе биде потврдена, новата е-пошта адреса на вашата сметка ќе биде: :email.', + 'Можете да ја блокирате промената пред да биде потврдена со кликнување на копчето подолу.', + 'Ако не го направивте ова барање, ве молиме контактирајте не веднаш.', + ], + + 'action' => 'Блокирај промена на е-пошта', + +]; diff --git a/lang/vendor/filament-panels/mk/auth/pages/edit-profile.php b/lang/vendor/filament-panels/mk/auth/pages/edit-profile.php new file mode 100644 index 0000000..e7de7ad --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Профил', + + 'form' => [ + + 'email' => [ + 'label' => 'Е-пошта адреса', + ], + + 'name' => [ + 'label' => 'Име', + ], + + 'password' => [ + 'label' => 'Нова лозинка', + 'validation_attribute' => 'лозинка', + ], + + 'password_confirmation' => [ + 'label' => 'Потврди нова лозинка', + 'validation_attribute' => 'потврда на лозинка', + ], + + 'current_password' => [ + 'label' => 'Тековна лозинка', + 'below_content' => 'За безбедност, ве молиме потврдете ја вашата лозинка за да продолжите.', + 'validation_attribute' => 'тековна лозинка', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Зачувај промени', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Двофакторна автентификација (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Барање за промена на е-пошта адресата е испратено', + 'body' => 'Барање за промена на вашата е-пошта адреса е испратено на :email. Ве молиме проверете ја вашата е-пошта за да ја потврдите промената.', + ], + + 'saved' => [ + 'title' => 'Зачувано', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Откажи', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/mk/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..623a354 --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Потврди ја твојата е-пошта адреса', + + 'heading' => 'Потврди ја твојата е-пошта адреса', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Испрати повторно', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Не ја примивте е-поштата што ја испративме?', + 'notification_sent' => 'Испративме е-пошта на :email со инструкции како да ја потврдите вашата е-пошта адреса.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Повторно ја испративме е-поштата.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Премногу обиди за повторно испраќање', + 'body' => 'Ве молиме обидете се повторно за :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/pages/login.php b/lang/vendor/filament-panels/mk/auth/pages/login.php new file mode 100644 index 0000000..b8a9a20 --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Најава', + + 'heading' => 'Најави се', + + 'actions' => [ + + 'register' => [ + 'before' => 'или', + 'label' => 'регистрирај сметка', + ], + + 'request_password_reset' => [ + 'label' => 'Заборавена лозинка?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Е-пошта адреса', + ], + + 'password' => [ + 'label' => 'Лозинка', + ], + + 'remember' => [ + 'label' => 'Запомни ме', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Најави се', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Потврди го твојот идентитет', + + 'subheading' => 'За да продолжиш со најавувањето, треба да го потврдиш твојот идентитет.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Како би сакал да потврдиш?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Потврди најава', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Овие податоци не се совпаѓаат со нашите записи.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Премногу обиди за најава', + 'body' => 'Ве молиме обидете се повторно за :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/mk/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..5c0c9db --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Ресетирај ја твојата лозинка', + + 'heading' => 'Заборавена лозинка?', + + 'actions' => [ + + 'login' => [ + 'label' => 'назад на најава', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Е-пошта адреса', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Испрати е-пошта', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Ако вашата сметка не постои, нема да ја примите е-поштата.', + ], + + 'throttled' => [ + 'title' => 'Премногу барања', + 'body' => 'Ве молиме обидете се повторно за :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/mk/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..4b6f0c2 --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Ресетирај ја твојата лозинка', + + 'heading' => 'Ресетирај ја твојата лозинка', + + 'form' => [ + + 'email' => [ + 'label' => 'Е-пошта адреса', + ], + + 'password' => [ + 'label' => 'Лозинка', + 'validation_attribute' => 'лозинка', + ], + + 'password_confirmation' => [ + 'label' => 'Потврди лозинка', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Ресетирај лозинка', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Премногу обиди за ресетирање', + 'body' => 'Ве молиме обидете се повторно за :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/auth/pages/register.php b/lang/vendor/filament-panels/mk/auth/pages/register.php new file mode 100644 index 0000000..26e5c22 --- /dev/null +++ b/lang/vendor/filament-panels/mk/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Регистрирај се', + + 'heading' => 'Регистрирај се', + + 'actions' => [ + + 'login' => [ + 'before' => 'или', + 'label' => 'најави се на твојата сметка', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Е-пошта адреса', + ], + + 'name' => [ + 'label' => 'Име', + ], + + 'password' => [ + 'label' => 'Лозинка', + 'validation_attribute' => 'лозинка', + ], + + 'password_confirmation' => [ + 'label' => 'Потврди лозинка', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Регистрирај се', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Премногу обиди за регистрација', + 'body' => 'Ве молиме обидете се повторно за :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/error-notifications.php b/lang/vendor/filament-panels/mk/error-notifications.php new file mode 100644 index 0000000..b946a9b --- /dev/null +++ b/lang/vendor/filament-panels/mk/error-notifications.php @@ -0,0 +1,9 @@ + 'Грешка при вчитување на страница', + + 'body' => 'Имаше грешка при обид да се вчита страницата. Ве молиме обидете се повторно подоцна.', + +]; diff --git a/lang/vendor/filament-panels/mk/global-search.php b/lang/vendor/filament-panels/mk/global-search.php new file mode 100644 index 0000000..adc3d40 --- /dev/null +++ b/lang/vendor/filament-panels/mk/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Глобално пребарување', + 'placeholder' => 'Пребарај', + ], + + 'no_results_message' => 'Нема пронајдени резултати од пребарувањето.', + +]; diff --git a/lang/vendor/filament-panels/mk/layout.php b/lang/vendor/filament-panels/mk/layout.php new file mode 100644 index 0000000..6e36301 --- /dev/null +++ b/lang/vendor/filament-panels/mk/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Управувај со претплата', + ], + + 'logout' => [ + 'label' => 'Одјави се', + ], + + 'open_database_notifications' => [ + 'label' => 'Известувања', + ], + + 'open_user_menu' => [ + 'label' => 'Корисничко мени', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Собери странична лента', + ], + + 'expand' => [ + 'label' => 'Прошири странична лента', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Овозможи темна тема', + ], + + 'light' => [ + 'label' => 'Овозможи светла тема', + ], + + 'system' => [ + 'label' => 'Овозможи системска тема', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Аватар на :name', + ], + + 'logo' => [ + 'alt' => ':name лого', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Пребарување на закупник', + 'placeholder' => 'Пребарај', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/pages/dashboard.php b/lang/vendor/filament-panels/mk/pages/dashboard.php new file mode 100644 index 0000000..2d4e484 --- /dev/null +++ b/lang/vendor/filament-panels/mk/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Табла', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Филтер', + + 'modal' => [ + + 'heading' => 'Филтер', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Примени', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/mk/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..acdef8b --- /dev/null +++ b/lang/vendor/filament-panels/mk/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Зачувај промени', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Зачувано', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/resources/pages/create-record.php b/lang/vendor/filament-panels/mk/resources/pages/create-record.php new file mode 100644 index 0000000..65e215e --- /dev/null +++ b/lang/vendor/filament-panels/mk/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Креирај :label', + + 'breadcrumb' => 'Креирај', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Откажи', + ], + + 'create' => [ + 'label' => 'Креирај', + ], + + 'create_another' => [ + 'label' => 'Креирај и креирај друг', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Креирано', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/resources/pages/edit-record.php b/lang/vendor/filament-panels/mk/resources/pages/edit-record.php new file mode 100644 index 0000000..86346d6 --- /dev/null +++ b/lang/vendor/filament-panels/mk/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Уреди :label', + + 'breadcrumb' => 'Уреди', + + 'navigation_label' => 'Уреди', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Откажи', + ], + + 'save' => [ + 'label' => 'Зачувај промени', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Уреди', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Зачувано', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/resources/pages/list-records.php b/lang/vendor/filament-panels/mk/resources/pages/list-records.php new file mode 100644 index 0000000..7f56a69 --- /dev/null +++ b/lang/vendor/filament-panels/mk/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Список', + +]; diff --git a/lang/vendor/filament-panels/mk/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/mk/resources/pages/manage-related-records.php new file mode 100644 index 0000000..66f634e --- /dev/null +++ b/lang/vendor/filament-panels/mk/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Управувај со :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/mk/resources/pages/view-record.php b/lang/vendor/filament-panels/mk/resources/pages/view-record.php new file mode 100644 index 0000000..3758728 --- /dev/null +++ b/lang/vendor/filament-panels/mk/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Погледни :label', + + 'breadcrumb' => 'Погледни', + + 'navigation_label' => 'Погледни', + + 'content' => [ + + 'tab' => [ + 'label' => 'Погледни', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mk/unsaved-changes-alert.php b/lang/vendor/filament-panels/mk/unsaved-changes-alert.php new file mode 100644 index 0000000..86bc961 --- /dev/null +++ b/lang/vendor/filament-panels/mk/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Имате незачувани промени. Дали сте сигурни дека сакате да ја напуштите страницата?', + +]; diff --git a/lang/vendor/filament-panels/mk/widgets/account-widget.php b/lang/vendor/filament-panels/mk/widgets/account-widget.php new file mode 100644 index 0000000..96dcb63 --- /dev/null +++ b/lang/vendor/filament-panels/mk/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Одјави се', + ], + + ], + + 'welcome' => 'Добредојде', + +]; diff --git a/lang/vendor/filament-panels/mk/widgets/filament-info-widget.php b/lang/vendor/filament-panels/mk/widgets/filament-info-widget.php new file mode 100644 index 0000000..a378c26 --- /dev/null +++ b/lang/vendor/filament-panels/mk/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Документација', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mn/auth/pages/edit-profile.php b/lang/vendor/filament-panels/mn/auth/pages/edit-profile.php new file mode 100644 index 0000000..12071f6 --- /dev/null +++ b/lang/vendor/filament-panels/mn/auth/pages/edit-profile.php @@ -0,0 +1,51 @@ + 'Хувийн мэдээлэл', + + 'form' => [ + + 'email' => [ + 'label' => 'Имэйл хаяг', + ], + + 'name' => [ + 'label' => 'Нэр', + ], + + 'password' => [ + 'label' => 'Шинэ нууц үг', + ], + + 'password_confirmation' => [ + 'label' => 'Шинэ нууц үгийг давтан оруулна уу', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Өөрчлөлтийг хадгал', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Хадгалагдсан', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Цуцлах', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mn/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/mn/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..ea174bd --- /dev/null +++ b/lang/vendor/filament-panels/mn/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Имэйл баталгаажуулах', + + 'heading' => 'Имэйл хаягаа баталгаажуулах', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Дахин илгээх', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Бидний илгээсэн имэйлийг хүлээж аваагүй юу?', + 'notification_sent' => 'Бид :email хаяг руу имэйл хаягаа баталгаажуулах мэдээллийг илгээсэн.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Имэйл илгээгдсэн.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Олон тооны илгээх оролдлого', + 'body' => ':seconds секундын дараа дахин оролдоно уу!', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mn/auth/pages/login.php b/lang/vendor/filament-panels/mn/auth/pages/login.php new file mode 100644 index 0000000..467323a --- /dev/null +++ b/lang/vendor/filament-panels/mn/auth/pages/login.php @@ -0,0 +1,61 @@ + 'Нэвтрэх', + + 'heading' => 'Нэвтрэх', + + 'actions' => [ + + 'register' => [ + 'before' => 'эсвэл', + 'label' => 'бүртгүүлэх', + ], + + 'request_password_reset' => [ + 'label' => 'Нууц үгээ мартсан уу?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Имэйл хаяг', + ], + + 'password' => [ + 'label' => 'Нууц үг', + ], + + 'remember' => [ + 'label' => 'Намайг сануул', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Нэвтрэх', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Нэвтрэх мэдээлэл буруу байна!', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Олон тооны нэвтрэх оролдлого', + 'body' => ':seconds секундын дараа дахин оролдоно уу!', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mn/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/mn/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..881480b --- /dev/null +++ b/lang/vendor/filament-panels/mn/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'Нууц үг сэргээх', + + 'heading' => 'Нууц үгээ мартсан уу?', + + 'actions' => [ + + 'login' => [ + 'label' => 'нэвтрэх хэсэг рүү буцах', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Имэйл хаяг', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Имэйл илгээх', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Олон тооны хүсэлт', + 'body' => ':seconds секундын дараа дахин оролдоно уу!', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mn/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/mn/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..8274c70 --- /dev/null +++ b/lang/vendor/filament-panels/mn/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Нууц үг шинэчлэх', + + 'heading' => 'Нууц үг шинэчлэх', + + 'form' => [ + + 'email' => [ + 'label' => 'Имэйл хаяг', + ], + + 'password' => [ + 'label' => 'Нууц үг', + 'validation_attribute' => 'нууц үг', + ], + + 'password_confirmation' => [ + 'label' => 'Нууц үгийг давтах', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Нууц үгийг шинэчлэх', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Олон тооны шинэчлэх оролдлого', + 'body' => ':seconds секундын дараа дахин оролдоно уу!', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mn/auth/pages/register.php b/lang/vendor/filament-panels/mn/auth/pages/register.php new file mode 100644 index 0000000..b71deb3 --- /dev/null +++ b/lang/vendor/filament-panels/mn/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Бүртгүүлэх', + + 'heading' => 'Бүртгүүлэх', + + 'actions' => [ + + 'login' => [ + 'before' => 'эсвэл', + 'label' => 'өөрийн бүртгэлээр нэвтрэх', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Имэйл хаяг', + ], + + 'name' => [ + 'label' => 'Нэр', + ], + + 'password' => [ + 'label' => 'Нууц үг', + 'validation_attribute' => 'нууц үг', + ], + + 'password_confirmation' => [ + 'label' => 'Нууц үгийг давтан оруулах', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Бүртгүүлэх', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Олон тооны бүртгүүлэх оролдого', + 'body' => ':seconds секундын дараа дахин оролдоно уу.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mn/global-search.php b/lang/vendor/filament-panels/mn/global-search.php new file mode 100644 index 0000000..a62edf8 --- /dev/null +++ b/lang/vendor/filament-panels/mn/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Бүгдээс хайх', + 'placeholder' => 'Хайлт', + ], + + 'no_results_message' => 'Хайлтын үр дүн олдсонгүй.', + +]; diff --git a/lang/vendor/filament-panels/mn/layout.php b/lang/vendor/filament-panels/mn/layout.php new file mode 100644 index 0000000..d228320 --- /dev/null +++ b/lang/vendor/filament-panels/mn/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Бүртгэлийг удирдах', + ], + + 'logout' => [ + 'label' => 'Гарах', + ], + + 'open_database_notifications' => [ + 'label' => 'Мэдэгдлүүдийг үзэх', + ], + + 'open_user_menu' => [ + 'label' => 'Хэрэглэгчийн цэс', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Баганыг хураах', + ], + + 'expand' => [ + 'label' => 'Баганыг дэлгэх', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Бараан горимыг нээх', + ], + + 'light' => [ + 'label' => 'Гэгээтэй горимыг нээх', + ], + + 'system' => [ + 'label' => 'Үйлдлийн системийн тохиргоогоор', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => ':name аватар', + ], + + 'logo' => [ + 'alt' => ':name лого', + ], + +]; diff --git a/lang/vendor/filament-panels/mn/pages/dashboard.php b/lang/vendor/filament-panels/mn/pages/dashboard.php new file mode 100644 index 0000000..559a999 --- /dev/null +++ b/lang/vendor/filament-panels/mn/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Хяналтын самбар', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Шүүлтүүр', + + 'modal' => [ + + 'heading' => 'Шүүлтүүр', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Батлах', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mn/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/mn/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..d0fcb6d --- /dev/null +++ b/lang/vendor/filament-panels/mn/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Өөрчлөлтийг хадгалах', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Хадгалагдсан', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mn/resources/pages/create-record.php b/lang/vendor/filament-panels/mn/resources/pages/create-record.php new file mode 100644 index 0000000..2548ee3 --- /dev/null +++ b/lang/vendor/filament-panels/mn/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Үүсгэх :label', + + 'breadcrumb' => 'Үүсгэх', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Цуцлах', + ], + + 'create' => [ + 'label' => 'Үүсгэх', + ], + + 'create_another' => [ + 'label' => 'Үүсгээд & өөр шинийг үүсгэх', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Created', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mn/resources/pages/edit-record.php b/lang/vendor/filament-panels/mn/resources/pages/edit-record.php new file mode 100644 index 0000000..c73ec0e --- /dev/null +++ b/lang/vendor/filament-panels/mn/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'Засах :label', + + 'breadcrumb' => 'Засах', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Цуцлах', + ], + + 'save' => [ + 'label' => 'Өөрчлөлтийг хадгалах', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Засах', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Хадгалагдсан', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mn/resources/pages/list-records.php b/lang/vendor/filament-panels/mn/resources/pages/list-records.php new file mode 100644 index 0000000..9448eeb --- /dev/null +++ b/lang/vendor/filament-panels/mn/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Жагсаалт', + +]; diff --git a/lang/vendor/filament-panels/mn/resources/pages/view-record.php b/lang/vendor/filament-panels/mn/resources/pages/view-record.php new file mode 100644 index 0000000..19d52e6 --- /dev/null +++ b/lang/vendor/filament-panels/mn/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'Үзэх :label', + + 'breadcrumb' => 'Үзэх', + + 'content' => [ + + 'tab' => [ + 'label' => 'Үзэх', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/mn/unsaved-changes-alert.php b/lang/vendor/filament-panels/mn/unsaved-changes-alert.php new file mode 100644 index 0000000..82d5c43 --- /dev/null +++ b/lang/vendor/filament-panels/mn/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Танд хадгалаагүй мэдээллүүд байна. Та энэ хуудаснаас шилжих үү?', + +]; diff --git a/lang/vendor/filament-panels/mn/widgets/account-widget.php b/lang/vendor/filament-panels/mn/widgets/account-widget.php new file mode 100644 index 0000000..39561d9 --- /dev/null +++ b/lang/vendor/filament-panels/mn/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Гарах', + ], + + ], + + 'welcome' => 'Сайн байна уу?', + +]; diff --git a/lang/vendor/filament-panels/mn/widgets/filament-info-widget.php b/lang/vendor/filament-panels/mn/widgets/filament-info-widget.php new file mode 100644 index 0000000..2a67c14 --- /dev/null +++ b/lang/vendor/filament-panels/mn/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Гарын авлага', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/ms/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..7a2fb22 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Perubahan alamat emel disekat', + 'body' => 'Anda telah berjaya menyekat percubaan perubahan alamat emel kepada :email. Jika anda tidak membuat permintaan asal, sila hubungi kami dengan segera.', + ], + + 'failed' => [ + 'title' => 'Gagal menyekat perubahan alamat emel', + 'body' => 'Malangnya, anda tidak dapat menghalang alamat emel daripada ditukar kepada :email, kerana ia telah disahkan sebelum anda menyekatnya. Jika anda tidak membuat permintaan asal, sila hubungi kami dengan segera.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/ms/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..1ca32a5 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Alamat emel telah ditukar', + 'body' => 'Alamat emel anda telah berjaya ditukar kepada :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/ms/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..786886d --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Matikan', + + 'modal' => [ + + 'heading' => 'Nyahaktifkan aplikasi authenticator', + + 'description' => 'Adakah anda pasti ingin berhenti menggunakan aplikasi authenticator? Menyahaktifkan ini akan mengeluarkan lapisan keselamatan tambahan dari akaun anda.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Masukkan kod 6-digit dari aplikasi authenticator', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Gunakan kod pemulihan sebagai ganti', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kod yang anda masukkan tidak sah.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Atau, masukkan kod pemulihan', + + 'validation_attribute' => 'kod pemulihan', + + 'messages' => [ + + 'invalid' => 'Kod pemulihan yang anda masukkan tidak sah.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Nyahaktifkan aplikasi authenticator', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Aplikasi authenticator telah dinyahaktifkan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/ms/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..aa5ba13 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Jana semula kod pemulihan', + + 'modal' => [ + + 'heading' => 'Jana semula kod pemulihan aplikasi authenticator', + + 'description' => 'Jika anda kehilangan kod pemulihan anda, anda boleh menjana semula di sini. Kod pemulihan lama anda akan dibatalkan serta-merta.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Masukkan kod 6-digit dari aplikasi authenticator', + + 'validation_attribute' => 'kod', + + 'messages' => [ + + 'invalid' => 'Kod yang anda masukkan tidak sah.', + + ], + + ], + + 'password' => [ + + 'label' => 'Atau, masukkan kata laluan semasa anda', + + 'validation_attribute' => 'kata laluan', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Jana semula kod pemulihan', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Kod pemulihan aplikasi authenticator yang baru telah dijana', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Kod pemulihan yang baru', + + 'description' => 'Sila simpan kod pemulihan berikut di tempat yang selamat. Ia hanya akan ditunjukkan sekali, tetapi anda memerlukannya jika anda kehilangan akses kepada aplikasi authenticator:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Tutup', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/ms/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..4d32300 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Tetapkan', + + 'modal' => [ + + 'heading' => 'Tetapkan aplikasi authenticator', + + 'description' => <<<'BLADE' + Anda memerlukan aplikasi seperti Google Authenticator (iOS, Android) untuk menyelesaikan proses ini. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Imbas kod QR ini dengan aplikasi authenticator anda:', + + 'alt' => 'Kod QR untuk diimbas dengan aplikasi authenticator', + + ], + + 'text_code' => [ + + 'instruction' => 'Atau masukkan kod ini secara manual:', + + 'messages' => [ + 'copied' => 'Disalin', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Sila simpan kod pemulihan berikut di tempat yang selamat. Ia hanya akan ditunjukkan sekali, tetapi anda memerlukannya jika anda kehilangan akses kepada aplikasi authenticator anda:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Masukkan kod 6-digit dari aplikasi authenticator', + + 'validation_attribute' => 'kod', + + 'below_content' => 'Anda perlu memasukkan kod 6-digit dari aplikasi authenticator anda setiap kali anda log masuk atau melakukan tindakan sensitif.', + + 'messages' => [ + + 'invalid' => 'Kod yang anda masukkan tidak sah.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Aktifkan aplikasi authenticator', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Aplikasi authenticator telah diaktifkan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/ms/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..875c38e --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Authenticator app', + + 'below_content' => 'Gunakan aplikasi yang selamat untuk menghasilkan kod sementara bagi pengesahan log masuk.', + + 'messages' => [ + 'enabled' => 'Diaktifkan', + 'disabled' => 'Dinyahaktifkan', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Gunakan kod dari aplikasi authenticator', + + 'code' => [ + + 'label' => 'Masukkan kod 6-digit dari aplikasi authenticator', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Gunakan kod pemulihan sebagai ganti', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kod yang anda masukkan tidak sah.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Atau, masukkan kod pemulihan', + + 'validation_attribute' => 'kod pemulihan', + + 'messages' => [ + + 'invalid' => 'Kod pemulihan yang anda masukkan tidak sah.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/ms/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..acdb370 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + 'Nyahaktifkan', + + 'modal' => [ + + 'heading' => 'Nyahaktifkan kod pengesahan emel', + + 'description' => 'Adakah anda pasti ingin berhenti menerima kod pengesahan emel? Menyahaktifkan ini akan mengeluarkan lapisan keselamatan tambahan dari akaun anda.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Masukkan kod 6-digit yang kami hantar kepada anda melalui emel', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Hantar kod baru melalui emel', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Kami telah menghantar kod baru kepada anda melalui emel', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kod yang anda masukkan tidak sah.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Nyahaktifkan kod pengesahan emel', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Kod pengesahan emel telah dinyahaktifkan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/ms/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..81f6ec5 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + 'Tetapkan', + + 'modal' => [ + + 'heading' => 'Tetapkan kod pengesahan emel', + + 'description' => 'Anda perlu memasukkan kod 6-digit yang kami hantar kepada anda melalui emel setiap kali anda log masuk atau melakukan tindakan sensitif. Semak emel anda untuk kod 6-digit bagi menyelesaikan tetapan ini.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Masukkan kod 6-digit yang kami hantar kepada anda melalui emel', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Hantar kod baru melalui emel', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Kami telah menghantar kod baru kepada anda melalui emel', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kod yang anda masukkan tidak sah.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Aktifkan kod pengesahan emel', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Kod pengesahan emel telah diaktifkan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/ms/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..96ca689 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Ini kod log masuk anda', + + 'lines' => [ + 'Kod log masuk anda adalah: :code', + 'Kod ini akan tamat dalam satu minit.|Kod ini akan tamat dalam :minutes minit.', + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/ms/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..377c792 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'Email verification codes', + + 'below_content' => 'Receive a temporary code at your email address to verify your identity during login.', + + 'messages' => [ + 'enabled' => 'Enabled', + 'disabled' => 'Disabled', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Send a code to your email', + + 'code' => [ + + 'label' => 'Enter the 6-digit code we sent you by email', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Send a new code by email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'We\'ve sent you a new code by email', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'The code you entered is invalid.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/ms/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..d9248dd --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Set up two-factor authentication (2FA)', + + 'heading' => 'Set up two-factor authentication', + + 'subheading' => '2FA adds an extra layer of security to your account by requiring a second form of verification when signing in.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Continue', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/ms/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..1cb7a1c --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Click to', + + 'copy' => [ + 'label' => 'salin', + ], + + 'or', + + 'download' => [ + 'label' => 'muat turun', + ], + + 'all the codes at once.', + + ], + + 'messages' => [ + 'copied' => 'Disalin', + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/ms/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..95d1bf3 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Alamat emel anda sedang diubah', + + 'lines' => [ + 'Kami telah menerima permintaan untuk menukar alamat emel yang dikaitkan dengan akaun anda. Kata laluan anda telah digunakan untuk mengesahkan perubahan ini.', + 'Setelah disahkan, alamat emel baru pada akaun anda akan menjadi: :email.', + 'Anda boleh menyekat perubahan ini sebelum ia disahkan dengan mengklik butang di bawah.', + 'Jika anda tidak membuat permintaan ini, sila hubungi kami dengan segera.', + ], + + 'action' => 'Sekat Perubahan Emel', + +]; diff --git a/lang/vendor/filament-panels/ms/auth/pages/edit-profile.php b/lang/vendor/filament-panels/ms/auth/pages/edit-profile.php new file mode 100644 index 0000000..987a981 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'Alamat emel', + ], + + 'name' => [ + 'label' => 'Nama', + ], + + 'password' => [ + 'label' => 'Kata laluan baru', + 'validation_attribute' => 'kata laluan', + ], + + 'password_confirmation' => [ + 'label' => 'Sahkan kata laluan baharu', + 'validation_attribute' => 'pengesahan kata laluan', + ], + + 'current_password' => [ + 'label' => 'Kata laluan semasa', + 'below_content' => 'Untuk keselamatan, sila sahkan kata laluan anda untuk meneruskan.', + 'validation_attribute' => 'kata laluan semasa', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Simpan perubahan', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Pengesahan dua faktor (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Permintaan perubahan alamat emel telah dihantar', + 'body' => 'Permintaan untuk mengubah alamat emel anda telah dihantar ke :email. Sila semak emel anda untuk mengesahkan perubahan tersebut.', + ], + + 'saved' => [ + 'title' => 'Disimpan', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Batal', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/ms/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..a909b73 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Mengesahkan alamat e-mel anda', + + 'heading' => 'Mengesahkan alamat e-mel anda', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Hantar semula', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Tidak menerima e-mel yang kami hantar?', + 'notification_sent' => 'Kami telah menghantar e-mel kepada :email yang mengandungi arahan tentang cara untuk mengesahkan alamat e-mel anda.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Kami telah menghantar e-mel.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Terlalu banyak percubaan menghantar semula', + 'body' => 'Sila cuba lagi dalam :second saat.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/pages/login.php b/lang/vendor/filament-panels/ms/auth/pages/login.php new file mode 100644 index 0000000..c693fa4 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Log masuk', + + 'heading' => 'Log masuk ke akaun anda', + + 'actions' => [ + + 'register' => [ + 'before' => 'atau', + 'label' => 'mendaftar akaun', + ], + + 'request_password_reset' => [ + 'label' => 'Lupa kata laluan?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Emel', + ], + + 'password' => [ + 'label' => 'Kata laluan', + ], + + 'remember' => [ + 'label' => 'Ingat saya', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Log masuk', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Sahkan identiti anda', + + 'subheading' => 'Untuk meneruskan log masuk, anda perlu mengesahkan identiti anda.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Bagaimana anda ingin mengesahkan?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Sahkan identiti', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Bukti kelayakan ini tidak sepadan dengan rekod kami.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Terlalu banyak percubaan log masuk', + 'body' => 'Sila cuba lagi dalam masa :seconds saat.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/ms/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..1b503e5 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Menetapkan semula kata laluan anda', + + 'heading' => 'Lupa kata laluan?', + + 'actions' => [ + + 'login' => [ + 'label' => 'kembali untuk log masuk', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Alamat emel', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Hantar emel', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Jika akaun anda tidak wujud, anda tidak akan menerima emel.', + ], + + 'throttled' => [ + 'title' => 'Terlalu banyak permintaan', + 'body' => 'Sila cuba lagi dalam :second saat.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/ms/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..fc9d18a --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Reset your password', + + 'heading' => 'Reset your password', + + 'form' => [ + + 'email' => [ + 'label' => 'Email address', + ], + + 'password' => [ + 'label' => 'Password', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Confirm password', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Reset password', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Too many reset attempts', + 'body' => 'Please try again in :seconds seconds.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/auth/pages/register.php b/lang/vendor/filament-panels/ms/auth/pages/register.php new file mode 100644 index 0000000..7444314 --- /dev/null +++ b/lang/vendor/filament-panels/ms/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Daftar', + + 'heading' => 'Daftar', + + 'actions' => [ + + 'login' => [ + 'before' => 'atau', + 'label' => 'log masuk ke akaun anda', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Alamat emel', + ], + + 'name' => [ + 'label' => 'Nama', + ], + + 'password' => [ + 'label' => 'Kata laluan', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Sahkan kata laluan', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Daftar', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Terlalu banyak percubaan pendaftaran', + 'body' => 'Sila cuba lagi dalam :second saat.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/error-notifications.php b/lang/vendor/filament-panels/ms/error-notifications.php new file mode 100644 index 0000000..43532e3 --- /dev/null +++ b/lang/vendor/filament-panels/ms/error-notifications.php @@ -0,0 +1,9 @@ + 'Ralat semasa memuatkan halaman', + + 'body' => 'Terdapat ralat semasa cuba memuatkan halaman ini. Sila cuba lagi nanti.', + +]; diff --git a/lang/vendor/filament-panels/ms/global-search.php b/lang/vendor/filament-panels/ms/global-search.php new file mode 100644 index 0000000..8eec292 --- /dev/null +++ b/lang/vendor/filament-panels/ms/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Carian global', + 'placeholder' => 'Carian', + ], + + 'no_results_message' => 'Tiada hasil carian ditemui.', + +]; diff --git a/lang/vendor/filament-panels/ms/layout.php b/lang/vendor/filament-panels/ms/layout.php new file mode 100644 index 0000000..a7c3420 --- /dev/null +++ b/lang/vendor/filament-panels/ms/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Urus langganan', + ], + + 'logout' => [ + 'label' => 'Log keluar', + ], + + 'open_database_notifications' => [ + 'label' => 'Buka pemberitahuan', + ], + + 'open_user_menu' => [ + 'label' => 'Menu Pengguna', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Runtuhkan bar sisi', + ], + + 'expand' => [ + 'label' => 'Kembangkan bar sisi', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Tukar mod gelap', + ], + + 'light' => [ + 'label' => 'Tukar mod terang', + ], + + 'system' => [ + 'label' => 'Dayakan tema sistem', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar untuk :name', + ], + + 'logo' => [ + 'alt' => ':name logo', + ], + +]; diff --git a/lang/vendor/filament-panels/ms/pages/dashboard.php b/lang/vendor/filament-panels/ms/pages/dashboard.php new file mode 100644 index 0000000..247eadb --- /dev/null +++ b/lang/vendor/filament-panels/ms/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Papan pemuka', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Penapis', + + 'modal' => [ + + 'heading' => 'Penapis', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Mohon', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/ms/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..5848515 --- /dev/null +++ b/lang/vendor/filament-panels/ms/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Simpan perubahan', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Disimpan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/resources/pages/create-record.php b/lang/vendor/filament-panels/ms/resources/pages/create-record.php new file mode 100644 index 0000000..a9038d3 --- /dev/null +++ b/lang/vendor/filament-panels/ms/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Cipta :label', + + 'breadcrumb' => 'Cipta', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Batal', + ], + + 'create' => [ + 'label' => 'Cipta', + ], + + 'create_another' => [ + 'label' => 'Cipta & cipta yang lain', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Diciptakan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/resources/pages/edit-record.php b/lang/vendor/filament-panels/ms/resources/pages/edit-record.php new file mode 100644 index 0000000..c281ae6 --- /dev/null +++ b/lang/vendor/filament-panels/ms/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'Sunting :label', + + 'breadcrumb' => 'Sunting', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Batal', + ], + + 'save' => [ + 'label' => 'Simpan', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Sunting', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Disimpan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/resources/pages/list-records.php b/lang/vendor/filament-panels/ms/resources/pages/list-records.php new file mode 100644 index 0000000..fd84b57 --- /dev/null +++ b/lang/vendor/filament-panels/ms/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Senarai', + +]; diff --git a/lang/vendor/filament-panels/ms/resources/pages/view-record.php b/lang/vendor/filament-panels/ms/resources/pages/view-record.php new file mode 100644 index 0000000..372b7d4 --- /dev/null +++ b/lang/vendor/filament-panels/ms/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'Lihat :label', + + 'breadcrumb' => 'Lihat', + + 'content' => [ + + 'tab' => [ + 'label' => 'Lihat', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ms/unsaved-changes-alert.php b/lang/vendor/filament-panels/ms/unsaved-changes-alert.php new file mode 100644 index 0000000..25176c6 --- /dev/null +++ b/lang/vendor/filament-panels/ms/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Anda mempunyai perubahan yang belum disimpan. Adakah anda pasti mahu meninggalkan halaman ini?', + +]; diff --git a/lang/vendor/filament-panels/ms/widgets/account-widget.php b/lang/vendor/filament-panels/ms/widgets/account-widget.php new file mode 100644 index 0000000..94b1603 --- /dev/null +++ b/lang/vendor/filament-panels/ms/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Log keluar', + ], + + ], + + 'welcome' => 'Selamat datang', + +]; diff --git a/lang/vendor/filament-panels/ms/widgets/filament-info-widget.php b/lang/vendor/filament-panels/ms/widgets/filament-info-widget.php new file mode 100644 index 0000000..85d4131 --- /dev/null +++ b/lang/vendor/filament-panels/ms/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentasi', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/my/auth/pages/login.php b/lang/vendor/filament-panels/my/auth/pages/login.php new file mode 100644 index 0000000..30c928d --- /dev/null +++ b/lang/vendor/filament-panels/my/auth/pages/login.php @@ -0,0 +1,61 @@ + 'အကောင့်ဝင်ရန်', + + 'heading' => 'အကောင့်ဝင်ပါ', + + 'actions' => [ + + 'register' => [ + 'before' => 'သို့မဟုတ်', + 'label' => 'အကောင့်အသစ်ဖွင့်ရန်', + ], + + 'request_password_reset' => [ + 'label' => 'စကားဝှက်မေ့နေပါသလား?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'အီးမေးလ်လိပ်စာ', + ], + + 'password' => [ + 'label' => 'စကားဝှက်', + ], + + 'remember' => [ + 'label' => 'မှတ်ထားပါ', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'ဝင်ရောက်မည်', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'ဖြည့်သွင်းထားသော အချက်အလက်များ မှားယွင်းနေပါသည်။', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'အကောင့်ဝင်ရန် ကြိုးပမ်းမှု များလွန်းနေပါသည်', + 'body' => 'ကျေးဇူးပြု၍ စက္ကန့် :seconds မှ ပြန်လည်ကြိုးစားပါ။', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/my/global-search.php b/lang/vendor/filament-panels/my/global-search.php new file mode 100644 index 0000000..58f1784 --- /dev/null +++ b/lang/vendor/filament-panels/my/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'ကမ္ဘာလုံးဆိုင်ရာ ရှာဖွေမှု', + 'placeholder' => 'ရှာမယ်', + ], + + 'no_results_message' => 'ရှာဖွေမှုရလဒ်များ မတွေ့ပါ', + +]; diff --git a/lang/vendor/filament-panels/my/layout.php b/lang/vendor/filament-panels/my/layout.php new file mode 100644 index 0000000..5037822 --- /dev/null +++ b/lang/vendor/filament-panels/my/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'စာရင်းရှင်းရန်', + ], + + 'logout' => [ + 'label' => 'ထွက်ရန်', + ], + + 'open_database_notifications' => [ + 'label' => 'အကြောင်းကြားချက်များ ဖွင့်ရန်', + ], + + 'open_user_menu' => [ + 'label' => 'အသုံးပြုသူမီနူး', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'ဘေးတန်းကို ချုံ့ရန်', + ], + + 'expand' => [ + 'label' => 'ဘေးတန်းကို ချဲ့ရန်', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'အနက်ရောင်သွင်ပြင် သုံးရန်', + ], + + 'light' => [ + 'label' => 'အဖြူရောင်သွင်ပြင် သုံးရန်', + ], + + 'system' => [ + 'label' => 'စနစ်သွင်ပြင် သုံးရန်', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => ':name ၏ ပရိုဖိုင်ပုံ', + ], + + 'logo' => [ + 'alt' => ':name လိုဂို', + ], + +]; diff --git a/lang/vendor/filament-panels/my/pages/dashboard.php b/lang/vendor/filament-panels/my/pages/dashboard.php new file mode 100644 index 0000000..2da1251 --- /dev/null +++ b/lang/vendor/filament-panels/my/pages/dashboard.php @@ -0,0 +1,33 @@ + 'ဒက်ရှ်ဘုတ်', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'စီစစ်ရန်', + + 'modal' => [ + + 'heading' => 'စီစစ်ရန်', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'အတည်ပြုမည်', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/my/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/my/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..30a343a --- /dev/null +++ b/lang/vendor/filament-panels/my/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'ပြောင်းလဲမှုများကို သိမ်းဆည်းမည်', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'သိမ်းဆည်းပြီးပါပြီ', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/my/resources/pages/create-record.php b/lang/vendor/filament-panels/my/resources/pages/create-record.php new file mode 100644 index 0000000..fd605f9 --- /dev/null +++ b/lang/vendor/filament-panels/my/resources/pages/create-record.php @@ -0,0 +1,37 @@ + ':label ဖန်တီးပါ', + + 'breadcrumb' => 'ဖန်တီးပါ', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'မလုပ်တော့ပါ', + ], + + 'create' => [ + 'label' => 'ဖန်တီးပါ', + ], + + 'create_another' => [ + 'label' => 'သိမ်းဆည်းပြီး နောက်တစ်ခုကို ဖန်တီးပါ', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'သိမ်းဆည်းပြီး', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/my/resources/pages/edit-record.php b/lang/vendor/filament-panels/my/resources/pages/edit-record.php new file mode 100644 index 0000000..af9bba8 --- /dev/null +++ b/lang/vendor/filament-panels/my/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + ':label ပြင်ဆင်ရန်', + + 'breadcrumb' => 'ပြင်ဆင်ရန်', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'ပယ်ဖျက်ရန်', + ], + + 'save' => [ + 'label' => 'သိမ်းဆည်းရန်', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'ပြင်ဆင်ရန်', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'သိမ်းဆည်းပြီးပါပြီ', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/my/resources/pages/list-records.php b/lang/vendor/filament-panels/my/resources/pages/list-records.php new file mode 100644 index 0000000..87dfba0 --- /dev/null +++ b/lang/vendor/filament-panels/my/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'စာရင်း', + +]; diff --git a/lang/vendor/filament-panels/my/resources/pages/view-record.php b/lang/vendor/filament-panels/my/resources/pages/view-record.php new file mode 100644 index 0000000..b698b77 --- /dev/null +++ b/lang/vendor/filament-panels/my/resources/pages/view-record.php @@ -0,0 +1,17 @@ + ':label ကိုကြည့်ရန်', + + 'breadcrumb' => 'ကြည့်ရန်', + + 'content' => [ + + 'tab' => [ + 'label' => 'ကြည့်ရန်', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/my/unsaved-changes-alert.php b/lang/vendor/filament-panels/my/unsaved-changes-alert.php new file mode 100644 index 0000000..66d131a --- /dev/null +++ b/lang/vendor/filament-panels/my/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'မသိမ်းဆည်းရသေးသော ပြောင်းလဲမှုများ ရှိနေပါသည်။ ဤစာမျက်နှာမှ ထွက်ခွာမှာ သေချာပါသလား?', + +]; diff --git a/lang/vendor/filament-panels/my/widgets/account-widget.php b/lang/vendor/filament-panels/my/widgets/account-widget.php new file mode 100644 index 0000000..9960f6e --- /dev/null +++ b/lang/vendor/filament-panels/my/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'ထွက်မည်', + ], + + ], + + 'welcome' => 'ကြိုဆိုပါတယ်', + +]; diff --git a/lang/vendor/filament-panels/my/widgets/filament-info-widget.php b/lang/vendor/filament-panels/my/widgets/filament-info-widget.php new file mode 100644 index 0000000..7be9f93 --- /dev/null +++ b/lang/vendor/filament-panels/my/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'အညွန်း', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/nb/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..ac8b72f --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Endring av e-postadresse blokkert', + 'body' => 'Du har blokkert et forsøk på å endre e-postadressen til :email. Hvis du ikke gjorde den opprinnelige forespørselen, kontakt oss umiddelbart.', + ], + + 'failed' => [ + 'title' => 'Kunne ikke blokkere endring av e-postadresse', + 'body' => 'Du klarte ikke å forhindre at e-postadressen ble endret til :email, siden den allerede var verifisert før du blokkerte den. Hvis du ikke gjorde den opprinnelige forespørselen, kontakt oss umiddelbart.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/nb/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..82212d5 --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'E-postadresse endret', + 'body' => 'E-postadressen din er endret til :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/nb/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..f97c644 --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Slå av', + + 'modal' => [ + + 'heading' => 'Deaktiver autentiseringsapp', + + 'description' => 'Er du sikker på at du vil slutte å bruke autentiseringsappen? Å deaktivere dette vil fjerne et ekstra sikkerhetslag fra kontoen din.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Skriv inn 6-sifret kode fra autentiseringsappen', + + 'validation_attribute' => 'kode', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Bruk en gjenopprettingskode i stedet', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Koden du skrev inn er ugyldig.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Eller, skriv inn en gjenopprettingskode', + + 'validation_attribute' => 'gjenopprettingskode', + + 'messages' => [ + + 'invalid' => 'Gjenopprettingskoden du skrev inn er ugyldig.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Deaktiver autentiseringsapp', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Autentiseringsapp er deaktivert', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/nb/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..48f9821 --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Regenerer gjenopprettingskoder', + + 'modal' => [ + + 'heading' => 'Regenerer gjenopprettingskoder for autentiseringsapp', + + 'description' => 'Hvis du mister gjenopprettingskodene dine, kan du regenerere dem her. Dine gamle gjenopprettingskoder blir ugyldige umiddelbart.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Skriv inn 6-sifret kode fra autentiseringsappen', + + 'validation_attribute' => 'kode', + + 'messages' => [ + + 'invalid' => 'Koden du skrev inn er ugyldig.', + + ], + + ], + + 'password' => [ + + 'label' => 'Eller, skriv inn ditt nåværende passord', + + 'validation_attribute' => 'passord', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Regenerer gjenopprettingskoder', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Nye gjenopprettingskoder for autentiseringsapp er generert', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Nye gjenopprettingskoder', + + 'description' => 'Vennligst lagre følgende gjenopprettingskoder på et trygt sted. De vil bare vises én gang, men du trenger dem hvis du mister tilgang til autentiseringsappen:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Lukk', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/nb/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..ac54092 --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Aktiver', + + 'modal' => [ + + 'heading' => 'Aktiver autentiseringsapp for 2FA', + + 'description' => <<<'BLADE' + Du trenger en app som Google Authenticator (iOS, Android) for å fullføre denne prosessen. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Skann denne QR‑koden med autentiseringsappen din:', + + 'alt' => 'QR‑kode som kan skannes med en autentiseringsapp', + + ], + + 'text_code' => [ + + 'instruction' => 'Eller skriv inn denne koden manuelt:', + + 'messages' => [ + 'copied' => 'Kopiert', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Lagre disse gjenopprettingskodene på et trygt sted. De vises bare én gang, men trengs hvis du mister tilgang til autentiseringsappen.', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Skriv inn 6‑sifret kode fra autentiseringsappen', + + 'validation_attribute' => 'kode', + + 'below_content' => 'Du må skrive inn en 6‑sifret kode fra autentiseringsappen hver gang du logger inn eller utfører sensitive handlinger.', + + 'messages' => [ + + 'invalid' => 'Koden du skrev inn er ugyldig.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Aktiver autentiseringsappen', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Autentiseringsappen er aktivert', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/nb/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..cb74ffd --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Autentiseringsapp', + + 'below_content' => 'Bruk en sikker app for å generere en midlertidig kode for innloggingsbekreftelse.', + + 'messages' => [ + 'enabled' => 'Aktivert', + 'disabled' => 'Deaktivert', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Bruk en kode fra autentiseringsappen din', + + 'code' => [ + + 'label' => 'Skriv inn 6-sifret kode fra autentiseringsappen', + + 'validation_attribute' => 'kode', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Bruk en gjenopprettingskode i stedet', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Koden du skrev inn er ugyldig.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Eller, skriv inn en gjenopprettingskode', + + 'validation_attribute' => 'gjenopprettingskode', + + 'messages' => [ + + 'invalid' => 'Gjenopprettingskoden du skrev inn er ugyldig.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/nb/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..8f7449a --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,71 @@ + 'Slå av', + + 'modal' => [ + + 'heading' => 'Deaktiver e-postbekreftelseskoder', + + 'description' => 'Er du sikker på at du vil slutte å motta e-postbekreftelseskoder? Å deaktivere dette vil fjerne et ekstra sikkerhetslag fra kontoen din.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Skriv inn 6-sifret kode vi sendte deg på e-post', + + 'validation_attribute' => 'kode', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Send en ny kode på e-post', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Vi har sendt deg en ny kode på e-post', + ], + + 'throttled' => [ + 'title' => 'For mange forsøk. Vent litt før du ber om ny kode.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Koden du skrev inn er ugyldig.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Deaktiver e-postbekreftelseskoder', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'E-postbekreftelseskoder er deaktivert', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/nb/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..51d6052 --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,71 @@ + 'Aktiver', + + 'modal' => [ + + 'heading' => 'Aktiver e‑postbekreftelseskoder for 2FA', + + 'description' => 'Du må skrive inn den 6‑sifrede koden vi sender på e‑post hver gang du logger inn eller utfører sensitive handlinger. Sjekk e‑posten din for en 6‑sifret kode for å fullføre aktiveringen av 2FA.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Skriv inn den 6‑sifrede koden vi sendte på e‑post', + + 'validation_attribute' => 'kode', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Send en ny kode på e‑post', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Vi har sendt en ny kode på e‑post', + ], + + 'throttled' => [ + 'title' => 'For mange forsøk. Vent litt før du ber om ny kode.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Koden du skrev inn er ugyldig.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Aktiver e‑postbekreftelseskoder', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'E‑postbekreftelseskoder er aktivert', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/nb/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..96624ce --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Her er påloggingskoden din', + + 'lines' => [ + 'Påloggingskoden din er: :code', + 'Denne koden utløper om ett minutt.|Denne koden utløper om :minutes minutter.', + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/nb/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..b5b40d5 --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'E-postbekreftelseskoder', + + 'below_content' => 'Motta en midlertidig kode på e-postadressen din for å bekrefte identiteten din ved innlogging.', + + 'messages' => [ + 'enabled' => 'Aktivert', + 'disabled' => 'Deaktivert', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Send en kode til e-posten din', + + 'code' => [ + + 'label' => 'Skriv inn 6-sifret kode vi sendte deg på e-post', + + 'validation_attribute' => 'kode', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Send en ny kode på e-post', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Vi har sendt deg en ny kode på e-post', + ], + + 'throttled' => [ + 'title' => 'For mange forsøk. Vent litt før du ber om ny kode.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Koden du skrev inn er ugyldig.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/nb/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..7b23738 --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Aktiver tofaktorautentisering (2FA)', + + 'heading' => 'Aktiver tofaktorautentisering', + + 'subheading' => '2FA gir et ekstra lag med sikkerhet for kontoen din ved å kreve en ekstra bekreftelse når du logger inn.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Fortsett', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/nb/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..092fead --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Klikk for', + + 'copy' => [ + 'label' => 'kopier', + ], + + 'eller', + + 'download' => [ + 'label' => 'last ned', + ], + + 'alle kodene på en gang.', + + ], + + 'messages' => [ + 'copied' => 'Kopiert', + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/nb/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..92e0e8c --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'E-postadressen din blir endret', + + 'lines' => [ + 'Vi mottok en forespørsel om å endre e-postadressen som er knyttet til kontoen din. Passordet ditt ble brukt for å bekrefte denne endringen.', + 'Når den er bekreftet, vil den nye e-postadressen på kontoen din være: :email.', + 'Du kan blokkere endringen før den er bekreftet ved å klikke på knappen nedenfor.', + 'Hvis du ikke gjorde denne forespørselen, kontakt oss umiddelbart.', + ], + + 'action' => 'Blokker endring av e-post', + +]; diff --git a/lang/vendor/filament-panels/nb/auth/pages/edit-profile.php b/lang/vendor/filament-panels/nb/auth/pages/edit-profile.php new file mode 100644 index 0000000..fc8926f --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'E-postadresse', + ], + + 'name' => [ + 'label' => 'Navn', + ], + + 'password' => [ + 'label' => 'Nytt passord', + 'validation_attribute' => 'passord', + ], + + 'password_confirmation' => [ + 'label' => 'Bekreft nytt passord', + 'validation_attribute' => 'bekreftelse av passord', + ], + + 'current_password' => [ + 'label' => 'Nåværende passord', + 'below_content' => 'Av sikkerhetsgrunner, bekreft passordet ditt for å fortsette.', + 'validation_attribute' => 'nåværende passord', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Lagre endringer', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Tofaktorautentisering (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Forespørsel om endring av e-postadresse sendt', + 'body' => 'En forespørsel om å endre e-postadressen din er sendt til :email. Sjekk e-posten din for å bekrefte endringen.', + ], + + 'saved' => [ + 'title' => 'Lagret', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Tilbake', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/nb/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..7c03f5f --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Bekreft din e-postadresse', + + 'heading' => 'Bekreft din e-postadresse', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Send på nytt', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Ikke mottatt e-posten vi sendte?', + 'notification_sent' => 'Vi har sendt e-post til :email med informasjon om hvordan du bekrefter din e-postadresse.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Vi har sendt e-post på nytt.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'For mange forsøk på nye sendinger', + 'body' => 'Vennligst prøv igjen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/pages/login.php b/lang/vendor/filament-panels/nb/auth/pages/login.php new file mode 100644 index 0000000..8b5072b --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Logg inn', + + 'heading' => 'Logg inn på konto', + + 'actions' => [ + + 'register' => [ + 'before' => 'eller', + 'label' => 'opprett ny konto', + ], + + 'request_password_reset' => [ + 'label' => 'Glemt passordet?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-postadresse', + ], + + 'password' => [ + 'label' => 'Passord', + ], + + 'remember' => [ + 'label' => 'Husk meg', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Logg inn', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Bekreft identiteten din', + + 'subheading' => 'For å fortsette innloggingen må du bekrefte identiteten din.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Hvordan vil du bekrefte?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Bekreft innlogging', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Påloggingsinformasjonen stemmer ikke med våre data', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'For mange forsøk på innlogging.', + 'body' => 'Vennligst prøv igjen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/nb/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..8a23843 --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Tilbakestill ditt passord', + + 'heading' => 'Glemt passord?', + + 'actions' => [ + + 'login' => [ + 'label' => 'tilbake til logg inn', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-postadresse', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Send e-post', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Hvis kontoen din ikke finnes, vil du ikke motta e-posten.', + ], + + 'throttled' => [ + 'title' => 'For mange forsøk', + 'body' => 'Vennligst forsøk igjen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/nb/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..11141ec --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Tilbakestill passord', + + 'heading' => 'Tilbakestill passord', + + 'form' => [ + + 'email' => [ + 'label' => 'E-postadresse', + ], + + 'password' => [ + 'label' => 'Passord', + 'validation_attribute' => 'passord', + ], + + 'password_confirmation' => [ + 'label' => 'Bekreft passord', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Tilbakestill passord', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'For mange forsøkt på tilbakestilling av passord', + 'body' => 'Vennligst forsøk igjen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/auth/pages/register.php b/lang/vendor/filament-panels/nb/auth/pages/register.php new file mode 100644 index 0000000..63aaf99 --- /dev/null +++ b/lang/vendor/filament-panels/nb/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Registrering', + + 'heading' => 'Registrer', + + 'actions' => [ + + 'login' => [ + 'before' => 'eller', + 'label' => 'logg inn på konto', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-postadresse', + ], + + 'name' => [ + 'label' => 'Navn', + ], + + 'password' => [ + 'label' => 'Passord', + 'validation_attribute' => 'passord', + ], + + 'password_confirmation' => [ + 'label' => 'Bekreft passord', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Registrer', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'For mange forsøk på registrering', + 'body' => 'Vennligst prøv igjen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/error-notifications.php b/lang/vendor/filament-panels/nb/error-notifications.php new file mode 100644 index 0000000..90b8f99 --- /dev/null +++ b/lang/vendor/filament-panels/nb/error-notifications.php @@ -0,0 +1,9 @@ + 'Feil ved lasting av siden', + + 'body' => 'Det oppstod en feil under forsøk på å laste denne siden. Prøv igjen senere.', + +]; diff --git a/lang/vendor/filament-panels/nb/global-search.php b/lang/vendor/filament-panels/nb/global-search.php new file mode 100644 index 0000000..eef3535 --- /dev/null +++ b/lang/vendor/filament-panels/nb/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Globalt søk', + 'placeholder' => 'Søk', + ], + + 'no_results_message' => 'Ingen resultater.', + +]; diff --git a/lang/vendor/filament-panels/nb/layout.php b/lang/vendor/filament-panels/nb/layout.php new file mode 100644 index 0000000..81f6450 --- /dev/null +++ b/lang/vendor/filament-panels/nb/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Håndter abonnementer', + ], + + 'logout' => [ + 'label' => 'Logg ut', + ], + + 'open_database_notifications' => [ + 'label' => 'Åpne varsler', + ], + + 'open_user_menu' => [ + 'label' => 'Brukermeny', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Skjul sidefeltet', + ], + + 'expand' => [ + 'label' => 'Vis sidefeltet', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Aktiver mørkt tema', + ], + + 'light' => [ + 'label' => 'Aktiver lyst tema', + ], + + 'system' => [ + 'label' => 'Aktiver system tema', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar av :name', + ], + + 'logo' => [ + 'alt' => ':name logo', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Organisasjonssøk', + 'placeholder' => 'Søk', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/pages/dashboard.php b/lang/vendor/filament-panels/nb/pages/dashboard.php new file mode 100644 index 0000000..e188fba --- /dev/null +++ b/lang/vendor/filament-panels/nb/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Dashbord', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtrer', + + 'modal' => [ + + 'heading' => 'Filter', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Bruk', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/nb/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..d606ca6 --- /dev/null +++ b/lang/vendor/filament-panels/nb/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Lagre endringer', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Lagret', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/resources/pages/create-record.php b/lang/vendor/filament-panels/nb/resources/pages/create-record.php new file mode 100644 index 0000000..5ccc739 --- /dev/null +++ b/lang/vendor/filament-panels/nb/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Opprett :label', + + 'breadcrumb' => 'Opprett', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Avbryt', + ], + + 'create' => [ + 'label' => 'Opprett', + ], + + 'create_another' => [ + 'label' => 'Opprett & opprett en til', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Opprettet', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/resources/pages/edit-record.php b/lang/vendor/filament-panels/nb/resources/pages/edit-record.php new file mode 100644 index 0000000..cb9eeda --- /dev/null +++ b/lang/vendor/filament-panels/nb/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Endre :label', + + 'breadcrumb' => 'Endre', + + 'navigation_label' => 'Endre', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Avbryt', + ], + + 'save' => [ + 'label' => 'Lagre endringer', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Endre', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Lagret', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/resources/pages/list-records.php b/lang/vendor/filament-panels/nb/resources/pages/list-records.php new file mode 100644 index 0000000..51ebe1a --- /dev/null +++ b/lang/vendor/filament-panels/nb/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Liste', + +]; diff --git a/lang/vendor/filament-panels/nb/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/nb/resources/pages/manage-related-records.php new file mode 100644 index 0000000..295b14a --- /dev/null +++ b/lang/vendor/filament-panels/nb/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Administrer :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/nb/resources/pages/view-record.php b/lang/vendor/filament-panels/nb/resources/pages/view-record.php new file mode 100644 index 0000000..d49da85 --- /dev/null +++ b/lang/vendor/filament-panels/nb/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Vis :label', + + 'breadcrumb' => 'Vis', + + 'navigation_label' => 'Vis', + + 'content' => [ + + 'tab' => [ + 'label' => 'Vis', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nb/unsaved-changes-alert.php b/lang/vendor/filament-panels/nb/unsaved-changes-alert.php new file mode 100644 index 0000000..531192c --- /dev/null +++ b/lang/vendor/filament-panels/nb/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Du har endringer som ikke er lagret. Er du sikker på at du vil forlate siden?', + +]; diff --git a/lang/vendor/filament-panels/nb/widgets/account-widget.php b/lang/vendor/filament-panels/nb/widgets/account-widget.php new file mode 100644 index 0000000..4b53854 --- /dev/null +++ b/lang/vendor/filament-panels/nb/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Logg ut', + ], + + ], + + 'welcome' => 'Velkommen', + +]; diff --git a/lang/vendor/filament-panels/nb/widgets/filament-info-widget.php b/lang/vendor/filament-panels/nb/widgets/filament-info-widget.php new file mode 100644 index 0000000..ffae591 --- /dev/null +++ b/lang/vendor/filament-panels/nb/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentasjon', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ne/auth/pages/edit-profile.php b/lang/vendor/filament-panels/ne/auth/pages/edit-profile.php new file mode 100644 index 0000000..ac50b73 --- /dev/null +++ b/lang/vendor/filament-panels/ne/auth/pages/edit-profile.php @@ -0,0 +1,51 @@ + 'प्रोफाइल', + + 'form' => [ + + 'email' => [ + 'label' => 'इमेल ठेगाना', + ], + + 'name' => [ + 'label' => 'नाम', + ], + + 'password' => [ + 'label' => 'नया पासवर्ड', + ], + + 'password_confirmation' => [ + 'label' => 'नयाँ पासवर्ड पुष्टि गर्नुहोस्', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'परिवर्तनहरू सुरक्षित गर्नुहोस', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'सुरक्षित गरियो', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'पछाडी', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ne/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/ne/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..af3e3d7 --- /dev/null +++ b/lang/vendor/filament-panels/ne/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'आफ्नो इमेल ठेगाना प्रमाणित गर्नुहोस्', + + 'heading' => 'आफ्नो इमेल ठेगाना प्रमाणित गर्नुहोस्', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'यसलाई फेरी पठाउनुहोस्', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'हामीले पठाएको इमेल प्राप्त भएन?', + 'notification_sent' => 'हामीले तपाईको इमेल ठेगाना कसरी प्रमाणित गर्ने भन्ने बारे निर्देशनहरू सहित :email मा इमेल पठाएका छौं।', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'हामीले इमेल पुन पठाएका छौं।', + ], + + 'notification_resend_throttled' => [ + 'title' => 'धेरै धेरै पुन पठाउने प्रयासहरू', + 'body' => 'कृपया :seconds सेकेन्डमा पुन प्रयास गर्नुहोस्।', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ne/auth/pages/login.php b/lang/vendor/filament-panels/ne/auth/pages/login.php new file mode 100644 index 0000000..1550a28 --- /dev/null +++ b/lang/vendor/filament-panels/ne/auth/pages/login.php @@ -0,0 +1,61 @@ + 'लग-इन', + + 'heading' => 'साइन इन गर्नुहोस्', + + 'actions' => [ + + 'register' => [ + 'before' => 'वा', + 'label' => 'खाताको लागि साइन अप गर्नुहोस्', + ], + + 'request_password_reset' => [ + 'label' => 'तपाईँको पासवर्ड बिर्सनुभयो?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'इमेल ठेगाना', + ], + + 'password' => [ + 'label' => 'पासवर्ड', + ], + + 'remember' => [ + 'label' => 'मलाई सम्झनुहोस्', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'साइन इन गर्नुहोस्', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'यी प्रमाणहरू हाम्रा रेकर्डहरूसँग मेल खाँदैनन्।', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'धेरै लगइन प्रयासहरू', + 'body' => 'कृपया :seconds सेकेन्डमा पुन प्रयास गर्नुहोस्।', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ne/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/ne/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..ee0ef0d --- /dev/null +++ b/lang/vendor/filament-panels/ne/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'आफ्नो पासवर्ड रिसेट गर्नुहोस्', + + 'heading' => 'तपाईँको पासवर्ड बिर्सनुभयो?', + + 'actions' => [ + + 'login' => [ + 'label' => 'लगइन पृष्ठमा फर्कनुहोस्', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'इमेल ठेगाना', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'इमेल पठाउनुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'धेरै अनुरोधहरू', + 'body' => 'कृपया :seconds सेकेन्डमा पुन प्रयास गर्नुहोस्।', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ne/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/ne/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..b1fafe1 --- /dev/null +++ b/lang/vendor/filament-panels/ne/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'आफ्नो पासवर्ड रिसेट गर्नुहोस्', + + 'heading' => 'आफ्नो पासवर्ड रिसेट गर्नुहोस्', + + 'form' => [ + + 'email' => [ + 'label' => 'इमेल ठेगाना', + ], + + 'password' => [ + 'label' => 'पासवर्ड', + 'validation_attribute' => 'पासवर्ड', + ], + + 'password_confirmation' => [ + 'label' => 'पासवर्ड सुनिश्चित गर्नुहोस', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'पासवर्ड रिसेट', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'धेरै धेरै रिसेट प्रयासहरू', + 'body' => 'कृपया :seconds सेकेन्डमा पुन प्रयास गर्नुहोस्।', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ne/auth/pages/register.php b/lang/vendor/filament-panels/ne/auth/pages/register.php new file mode 100644 index 0000000..c7a544e --- /dev/null +++ b/lang/vendor/filament-panels/ne/auth/pages/register.php @@ -0,0 +1,56 @@ + 'दर्ता गर्नुहोस्', + + 'heading' => 'साइन अप', + + 'actions' => [ + + 'login' => [ + 'before' => 'वा', + 'label' => 'आफ्नो खातामा साइन इन गर्नुहोस्', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'इमेल ठेगाना', + ], + + 'name' => [ + 'label' => 'नाम', + ], + + 'password' => [ + 'label' => 'पासवर्ड', + 'validation_attribute' => 'पासवर्ड', + ], + + 'password_confirmation' => [ + 'label' => 'पासवर्ड सुनिश्चित गर्नुहोस', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'साइन अप', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'धेरै धेरै दर्ता प्रयासहरू', + 'body' => 'कृपया :seconds सेकेन्डमा पुन प्रयास गर्नुहोस्।', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ne/global-search.php b/lang/vendor/filament-panels/ne/global-search.php new file mode 100644 index 0000000..c411d1b --- /dev/null +++ b/lang/vendor/filament-panels/ne/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'सम्पूर्ण खोज', + 'placeholder' => 'खोज', + ], + + 'no_results_message' => 'कुनै खोज परिणाम फेला परेन।', + +]; diff --git a/lang/vendor/filament-panels/ne/layout.php b/lang/vendor/filament-panels/ne/layout.php new file mode 100644 index 0000000..58409f9 --- /dev/null +++ b/lang/vendor/filament-panels/ne/layout.php @@ -0,0 +1,55 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'सदस्यता प्रबन्ध गर्नुहोस्', + ], + + 'logout' => [ + 'label' => 'साइन आउट गर्नुहोस्', + ], + + 'open_database_notifications' => [ + 'label' => 'सूचनाहरू खोल्नुहोस्', + ], + + 'open_user_menu' => [ + 'label' => 'प्रयोगकर्ता मेनु', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'साइडबार संक्षिप्त गर्नुहोस्', + ], + + 'expand' => [ + 'label' => 'साइडबार विस्तार गर्नुहोस्', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'डार्क थेम प्रयोग गर्नुहोस्', + ], + + 'light' => [ + 'label' => 'उज्यालो थेम प्रयोग गर्नुहोस्', + ], + + 'system' => [ + 'label' => 'सिस्टम थेम प्रयोग गर्नुहोस्', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ne/pages/dashboard.php b/lang/vendor/filament-panels/ne/pages/dashboard.php new file mode 100644 index 0000000..a52d070 --- /dev/null +++ b/lang/vendor/filament-panels/ne/pages/dashboard.php @@ -0,0 +1,7 @@ + 'ड्यासबोर्ड', + +]; diff --git a/lang/vendor/filament-panels/ne/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/ne/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..54205cd --- /dev/null +++ b/lang/vendor/filament-panels/ne/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'परिवर्तनहरू सुरक्षित गर्नुहोस', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'सुरक्षित गरियो', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ne/resources/pages/create-record.php b/lang/vendor/filament-panels/ne/resources/pages/create-record.php new file mode 100644 index 0000000..036c086 --- /dev/null +++ b/lang/vendor/filament-panels/ne/resources/pages/create-record.php @@ -0,0 +1,37 @@ + ':label सिर्जना गर्नुहोस्', + + 'breadcrumb' => 'सिर्जना गर्नुहोस्', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'रद्द गर्नुहोस्', + ], + + 'create' => [ + 'label' => 'सिर्जना गर्नुहोस्', + ], + + 'create_another' => [ + 'label' => 'बनाउनुहोस् र अर्को सिर्जना गर्नुहोस्', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'सिर्जना गरियो', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ne/resources/pages/edit-record.php b/lang/vendor/filament-panels/ne/resources/pages/edit-record.php new file mode 100644 index 0000000..8bfb9a1 --- /dev/null +++ b/lang/vendor/filament-panels/ne/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + ':label सम्पादन गर्नुहोस्', + + 'breadcrumb' => 'सम्पादन गर्नुहोस्', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'रद्द गर्नुहोस्', + ], + + 'save' => [ + 'label' => 'परिवर्तनहरू सुरक्षित गर्नुहोस', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'सम्पादन गर्नुहोस्', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'सुरक्षित गरियो', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ne/resources/pages/list-records.php b/lang/vendor/filament-panels/ne/resources/pages/list-records.php new file mode 100644 index 0000000..6de1a4b --- /dev/null +++ b/lang/vendor/filament-panels/ne/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'सूची', + +]; diff --git a/lang/vendor/filament-panels/ne/resources/pages/view-record.php b/lang/vendor/filament-panels/ne/resources/pages/view-record.php new file mode 100644 index 0000000..92ee0a7 --- /dev/null +++ b/lang/vendor/filament-panels/ne/resources/pages/view-record.php @@ -0,0 +1,17 @@ + ':label हेर्नुहोस्', + + 'breadcrumb' => 'हेर्नुहोस्', + + 'content' => [ + + 'tab' => [ + 'label' => 'हेर्नुहोस्', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ne/widgets/account-widget.php b/lang/vendor/filament-panels/ne/widgets/account-widget.php new file mode 100644 index 0000000..1fccb72 --- /dev/null +++ b/lang/vendor/filament-panels/ne/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'साइन आउट गर्नुहोस्', + ], + + ], + + 'welcome' => 'स्वागतम्', + +]; diff --git a/lang/vendor/filament-panels/ne/widgets/filament-info-widget.php b/lang/vendor/filament-panels/ne/widgets/filament-info-widget.php new file mode 100644 index 0000000..358cdd3 --- /dev/null +++ b/lang/vendor/filament-panels/ne/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'कागजात', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/nl/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..67b00b4 --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Wijziging van e-mailadres geblokkeerd', + 'body' => 'U heeft met succes een poging om het e-mailadres te wijzigen naar :email geblokkeerd. Als u niet het oorspronkelijke verzoek heeft gedaan, neem dan onmiddellijk contact met ons op.', + ], + + 'failed' => [ + 'title' => 'Niet gelukt om wijziging van e-mailadres te blokkeren', + 'body' => 'Helaas kon u niet voorkomen dat het e-mailadres werd gewijzigd naar :email, omdat het al was geverifieerd voordat u het blokkeerde. Als u niet het oorspronkelijke verzoek heeft gedaan, neem dan onmiddellijk contact met ons op.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/nl/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..e44aee5 --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'E-mailadres gewijzigd', + 'body' => 'Uw e-mailadres is succesvol gewijzigd naar :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/nl/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..35a3f9f --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,75 @@ + 'Uitschakelen', + + 'modal' => [ + + 'heading' => 'Authenticator-app uitschakelen', + + 'description' => 'Weet je zeker dat je wilt stoppen met het gebruik van de authenticator-app? Door dit uit te schakelen, verwijder je een extra beveiligingslaag van je account.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Voer de 6-cijferige code uit de authenticator-app in', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Gebruik in plaats daarvan een herstelcode', + ], + + ], + + 'messages' => [ + + 'invalid' => 'De ingevoerde code is ongeldig.', + + 'rate_limited' => 'Te veel pogingen. Probeer het later opnieuw.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Of voer een herstelcode in', + + 'validation_attribute' => 'herstelcode', + + 'messages' => [ + + 'invalid' => 'De ingevoerde herstelcode is ongeldig.', + + 'rate_limited' => 'Te veel pogingen. Probeer het later opnieuw.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Authenticator-app uitschakelen', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Authenticator-app is uitgeschakeld', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/nl/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..e75059a --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,79 @@ + 'Herstelcodes opnieuw genereren', + + 'modal' => [ + + 'heading' => 'Herstelcodes voor authenticator-app opnieuw genereren', + + 'description' => 'Als je je herstelcodes kwijtraakt, kun je ze hier opnieuw genereren. Je oude herstelcodes worden onmiddellijk ongeldig.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Voer de 6-cijferige code uit de authenticator-app in', + + 'validation_attribute' => 'code', + + 'messages' => [ + + 'invalid' => 'De ingevoerde code is ongeldig.', + + 'rate_limited' => 'Te veel pogingen. Probeer het later opnieuw.', + + ], + + ], + + 'password' => [ + + 'label' => 'Of voer je huidige wachtwoord in', + + 'validation_attribute' => 'wachtwoord', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Herstelcodes opnieuw genereren', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Nieuwe herstelcodes voor de authenticator-app zijn gegenereerd', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Nieuwe herstelcodes', + + 'description' => 'Bewaar de volgende herstelcodes op een veilige plek. Ze worden maar één keer getoond, maar je hebt ze nodig als je de toegang tot je authenticator-app verliest:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Sluiten', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/nl/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..223d67e --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,83 @@ + 'Instellen', + + 'modal' => [ + + 'heading' => 'Authenticator-app instellen', + + 'description' => <<<'BLADE' + Je hebt een app zoals Google Authenticator (iOS, Android) nodig om dit proces te voltooien. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Scan deze QR-code met je authenticator-app:', + + 'alt' => 'QR-code om te scannen met een authenticator-app', + + ], + + 'text_code' => [ + + 'instruction' => 'Of voer deze code handmatig in:', + + 'messages' => [ + 'copied' => 'Gekopieerd', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Bewaar de volgende herstelcodes op een veilige plek. Ze worden maar één keer getoond, maar je hebt ze nodig als je de toegang tot je authenticator-app verliest:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Voer de 6-cijferige code uit de authenticator-app in', + + 'validation_attribute' => 'code', + + 'below_content' => 'Je moet de 6-cijferige code van je authenticator-app invoeren telkens als je inlogt of gevoelige acties uitvoert.', + + 'messages' => [ + + 'invalid' => 'De ingevoerde code is ongeldig.', + + 'rate_limited' => 'Te veel pogingen. Probeer het later opnieuw.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Authenticator-app inschakelen', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Authenticator-app is ingeschakeld', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/nl/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..36be9c8 --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Authenticator-app', + + 'below_content' => 'Gebruik een beveiligde app om een tijdelijke code te genereren voor loginverificatie.', + + 'messages' => [ + 'enabled' => 'Ingeschakeld', + 'disabled' => 'Uitgeschakeld', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Gebruik een code uit je authenticator-app', + + 'code' => [ + + 'label' => 'Voer de 6-cijferige code uit de authenticator-app in', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Gebruik in plaats daarvan een herstelcode', + ], + + ], + + 'messages' => [ + + 'invalid' => 'De ingevoerde code is ongeldig.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Of voer een herstelcode in', + + 'validation_attribute' => 'herstelcode', + + 'messages' => [ + + 'invalid' => 'De ingevoerde herstelcode is ongeldig.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/nl/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..1965e32 --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,73 @@ + 'Uitschakelen', + + 'modal' => [ + + 'heading' => 'Verificatiecodes per e-mail uitschakelen', + + 'description' => 'Weet je zeker dat je wilt stoppen met het ontvangen van verificatiecodes per e-mail? Door dit uit te schakelen, verwijder je een extra beveiligingslaag van je account.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Voer de 6-cijferige code in die we je per e-mail hebben gestuurd', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Stuur een nieuwe code per e-mail', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'We hebben je een nieuwe code per e-mail gestuurd', + ], + + 'throttled' => [ + 'title' => 'Je hebt te vaak om een nieuwe code gevraagd. Wacht even en probeer het daarna opnieuw.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'De ingevoerde code is ongeldig.', + + 'rate_limited' => 'Te veel pogingen. Probeer het later opnieuw.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Verificatiecodes per e-mail uitschakelen', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Verificatiecodes per e-mail zijn uitgeschakeld', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/nl/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..8d360aa --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,73 @@ + 'Instellen', + + 'modal' => [ + + 'heading' => 'Verificatiecodes per e-mail instellen', + + 'description' => 'Je moet de 6-cijferige code die we je per e-mail sturen invoeren telkens als je inlogt of gevoelige acties uitvoert. Controleer je e-mail voor een 6-cijferige code om de installatie te voltooien.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Voer de 6-cijferige code in die we je per e-mail hebben gestuurd', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Stuur een nieuwe code per e-mail', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'We hebben je een nieuwe code per e-mail gestuurd', + ], + + 'throttled' => [ + 'title' => 'Je hebt te vaak om een nieuwe code gevraagd. Wacht even en probeer het daarna opnieuw.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'De ingevoerde code is ongeldig.', + + 'rate_limited' => 'Te veel pogingen. Probeer het later opnieuw.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Verificatiecodes per e-mail inschakelen', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Verificatiecodes per e-mail zijn ingeschakeld', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/nl/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..e1b4f0d --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Hier is je inlogcode', + + 'lines' => [ + 'Je inlogcode is: :code', + 'Deze code vervalt over een minuut.|Deze code vervalt over :minutes minuten.', + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/nl/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..b79c967 --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Verificatiecodes per e-mail', + + 'below_content' => 'Ontvang een tijdelijke code op je e-mailadres om je identiteit te verifiëren tijdens het inloggen.', + + 'messages' => [ + 'enabled' => 'Ingeschakeld', + 'disabled' => 'Uitgeschakeld', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Stuur een code naar je e-mail', + + 'code' => [ + + 'label' => 'Voer de 6-cijferige code in die we je per e-mail hebben gestuurd', + + 'validation_attribute' => 'code', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Stuur een nieuwe code per e-mail', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'We hebben je een nieuwe code per e-mail gestuurd', + ], + + 'throttled' => [ + 'title' => 'Je hebt te vaak om een nieuwe code gevraagd. Wacht even en probeer het daarna opnieuw.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'De ingevoerde code is ongeldig.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/nl/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..ec53c24 --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Twee-factor-authenticatie (2FA) instellen', + + 'heading' => 'Twee-factor-authenticatie instellen', + + 'subheading' => '2FA voegt een extra beveiligingslaag toe aan je account door een tweede vorm van verificatie te vereisen bij het inloggen.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Doorgaan', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/nl/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..936fcd1 --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Klik om te', + + 'copy' => [ + 'label' => 'kopiëren', + ], + + 'of', + + 'download' => [ + 'label' => 'downloaden', + ], + + 'alle codes in één keer.', + + ], + + 'messages' => [ + 'copied' => 'Gekopieerd', + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/nl/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..a894ddc --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Uw e-mailadres wordt gewijzigd', + + 'lines' => [ + 'We hebben een verzoek ontvangen om het e-mailadres dat aan uw account is gekoppeld te wijzigen. Uw wachtwoord is gebruikt om deze wijziging te bevestigen.', + 'Na verificatie wordt het nieuwe e-mailadres van uw account: :email.', + 'U kunt de wijziging blokkeren voordat deze is geverifieerd door op de onderstaande knop te klikken.', + 'Als u dit verzoek niet heeft gedaan, neem dan onmiddellijk contact met ons op.', + ], + + 'action' => 'Blokkeer e-mailwijziging', + +]; diff --git a/lang/vendor/filament-panels/nl/auth/pages/edit-profile.php b/lang/vendor/filament-panels/nl/auth/pages/edit-profile.php new file mode 100644 index 0000000..afbd8c4 --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/pages/edit-profile.php @@ -0,0 +1,73 @@ + 'Profiel', + + 'form' => [ + + 'email' => [ + 'label' => 'E-mailadres', + ], + + 'name' => [ + 'label' => 'Naam', + ], + + 'password' => [ + 'label' => 'Nieuw wachtwoord', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Bevestig nieuw wachtwoord', + 'validation_attribute' => 'password confirmation', + ], + + 'current_password' => [ + 'label' => 'Huidig wachtwoord', + 'below_content' => 'Voor de veiligheid, bevestig uw wachtwoord om door te gaan.', + 'validation_attribute' => 'current password', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Opslaan', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Twee-factor-authenticatie (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'E-mailadres wijzigingsverzoek verzonden', + 'body' => 'Er is een verzoek om uw e-mailadres te wijzigen verzonden naar :email. Controleer uw e-mail om de wijziging te verifiëren.', + ], + + 'saved' => [ + 'title' => 'Opgeslagen', + ], + + 'throttled' => [ + 'title' => 'Te veel aanvragen. Probeer het over :seconds seconden opnieuw.', + 'body' => 'Probeer het over :seconds seconden opnieuw.', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Terug', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/nl/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..37aab9c --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,36 @@ + 'E-mailadres verifiëren', + + 'heading' => 'E-mailadres verifiëren', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Opnieuw verzenden', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Geen e-mail ontvangen?', + 'notification_sent' => 'We hebben een e-mail gestuurd naar :email met instructies om je e-mailadres te verifiëren.', + + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'E-mail opnieuw verzonden.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Te veel verzendpogingen', + 'body' => 'Probeer het opnieuw over :seconds seconden.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/pages/login.php b/lang/vendor/filament-panels/nl/auth/pages/login.php new file mode 100644 index 0000000..bb22cbe --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Inloggen', + + 'heading' => 'Inloggen op je account', + + 'actions' => [ + + 'register' => [ + 'before' => 'of', + 'label' => 'maak een account aan', + ], + + 'request_password_reset' => [ + 'label' => 'Wachtwoord vergeten?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-mailadres', + ], + + 'password' => [ + 'label' => 'Wachtwoord', + ], + + 'remember' => [ + 'label' => 'Onthoud mij', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Inloggen', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Verifieer je identiteit', + + 'subheading' => 'Om inloggen te voltooien, moet je je identiteit verifiëren.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Hoe wil je verifiëren?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Verifiëren', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Onjuiste inloggegevens.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Te veel inlogpogingen', + 'body' => 'Probeer het opnieuw over :seconds seconden.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/nl/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..e9818d1 --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Wachtwoord opnieuw instellen', + + 'heading' => 'Wachtwoord vergeten?', + + 'actions' => [ + + 'login' => [ + 'label' => 'terug naar inloggen', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-mailadres', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'E-mail verzenden', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Als uw account niet bestaat, ontvangt u de e-mail niet.', + ], + + 'throttled' => [ + 'title' => 'Te veel pogingen', + 'body' => 'Probeer het opnieuw over :seconds seconden.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/nl/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..baa5ea6 --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Wachtwoord opnieuw instellen', + + 'heading' => 'Wachtwoord opnieuw instellen', + + 'form' => [ + + 'email' => [ + 'label' => 'E-mailadres', + ], + + 'password' => [ + 'label' => 'Wachtwoord', + 'validation_attribute' => 'wachtwoord', + ], + + 'password_confirmation' => [ + 'label' => 'Wachtwoord bevestigen', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Wachtwoord opnieuw instellen', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Te veel resetpogingen', + 'body' => 'Probeer het opnieuw over :seconds seconden.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/auth/pages/register.php b/lang/vendor/filament-panels/nl/auth/pages/register.php new file mode 100644 index 0000000..127e415 --- /dev/null +++ b/lang/vendor/filament-panels/nl/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Registreren', + + 'heading' => 'Registreren', + + 'actions' => [ + + 'login' => [ + 'before' => 'of', + 'label' => 'inloggen op je account', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-mailadres', + ], + + 'name' => [ + 'label' => 'Naam', + ], + + 'password' => [ + 'label' => 'Wachtwoord', + 'validation_attribute' => 'wachtwoord', + ], + + 'password_confirmation' => [ + 'label' => 'Wachtwoord bevestigen', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Registreren', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Te veel registratiepogingen', + 'body' => 'Probeer het opnieuw over :seconds seconden.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/error-notifications.php b/lang/vendor/filament-panels/nl/error-notifications.php new file mode 100644 index 0000000..1973d51 --- /dev/null +++ b/lang/vendor/filament-panels/nl/error-notifications.php @@ -0,0 +1,9 @@ + 'Er is een fout opgetreden', + + 'body' => 'Er is een onverwachte fout opgetreden. Probeer het later opnieuw. Als het probleem zich blijft voordoen, neem dan contact op met de systeembeheerder.', + +]; diff --git a/lang/vendor/filament-panels/nl/global-search.php b/lang/vendor/filament-panels/nl/global-search.php new file mode 100644 index 0000000..07f5c23 --- /dev/null +++ b/lang/vendor/filament-panels/nl/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Globaal zoeken', + 'placeholder' => 'Zoeken', + ], + + 'no_results_message' => 'Geen resultaten gevonden.', + +]; diff --git a/lang/vendor/filament-panels/nl/layout.php b/lang/vendor/filament-panels/nl/layout.php new file mode 100644 index 0000000..72f5d7e --- /dev/null +++ b/lang/vendor/filament-panels/nl/layout.php @@ -0,0 +1,71 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Abonnement beheren', + ], + + 'logout' => [ + 'label' => 'Uitloggen', + ], + + 'open_database_notifications' => [ + 'label' => 'Meldingen openen', + ], + + 'open_user_menu' => [ + 'label' => 'Gebruikersmenu', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Zijbalk inklappen', + ], + + 'expand' => [ + 'label' => 'Zijbalk uitklappen', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Donker thema inschakelen', + ], + + 'light' => [ + 'label' => 'Licht thema inschakelen', + ], + + 'system' => [ + 'label' => 'Systeemthema inschakelen', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar van :name', + ], + 'logo' => [ + 'alt' => ':name logo', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Tenant zoeken', + 'placeholder' => 'Zoeken', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/pages/dashboard.php b/lang/vendor/filament-panels/nl/pages/dashboard.php new file mode 100644 index 0000000..5e97b70 --- /dev/null +++ b/lang/vendor/filament-panels/nl/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Dashboard', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filteren', + + 'modal' => [ + + 'heading' => 'Filteren', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Toepassen', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/nl/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..6c6a5f5 --- /dev/null +++ b/lang/vendor/filament-panels/nl/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Wijzigingen opslaan', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Opgeslagen', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/resources/pages/create-record.php b/lang/vendor/filament-panels/nl/resources/pages/create-record.php new file mode 100644 index 0000000..6e45d6e --- /dev/null +++ b/lang/vendor/filament-panels/nl/resources/pages/create-record.php @@ -0,0 +1,37 @@ + ':Label aanmaken', + + 'breadcrumb' => 'Aanmaken', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annuleren', + ], + + 'create' => [ + 'label' => 'Aanmaken', + ], + + 'create_another' => [ + 'label' => 'Aanmaken & nieuwe aanmaken', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Aangemaakt', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/resources/pages/edit-record.php b/lang/vendor/filament-panels/nl/resources/pages/edit-record.php new file mode 100644 index 0000000..1fa9a4c --- /dev/null +++ b/lang/vendor/filament-panels/nl/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + ':Label bewerken', + + 'breadcrumb' => 'Bewerken', + + 'navigation_label' => 'Bewerken', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Annuleren', + ], + + 'save' => [ + 'label' => 'Wijzigingen opslaan', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Bewerken', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Opgeslagen', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/resources/pages/list-records.php b/lang/vendor/filament-panels/nl/resources/pages/list-records.php new file mode 100644 index 0000000..6bbcf74 --- /dev/null +++ b/lang/vendor/filament-panels/nl/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Lijst', + +]; diff --git a/lang/vendor/filament-panels/nl/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/nl/resources/pages/manage-related-records.php new file mode 100644 index 0000000..57d7111 --- /dev/null +++ b/lang/vendor/filament-panels/nl/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Beheer :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/nl/resources/pages/view-record.php b/lang/vendor/filament-panels/nl/resources/pages/view-record.php new file mode 100644 index 0000000..4608564 --- /dev/null +++ b/lang/vendor/filament-panels/nl/resources/pages/view-record.php @@ -0,0 +1,19 @@ + ':Label bekijken', + + 'breadcrumb' => 'Bekijken', + + 'navigation_label' => 'Bekijken', + + 'content' => [ + + 'tab' => [ + 'label' => 'Bekijken', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/nl/unsaved-changes-alert.php b/lang/vendor/filament-panels/nl/unsaved-changes-alert.php new file mode 100644 index 0000000..e15ea07 --- /dev/null +++ b/lang/vendor/filament-panels/nl/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Je hebt niet-opgeslagen wijzigingen. Weet je zeker dat je deze pagina wilt verlaten?', + +]; diff --git a/lang/vendor/filament-panels/nl/widgets/account-widget.php b/lang/vendor/filament-panels/nl/widgets/account-widget.php new file mode 100644 index 0000000..4b90750 --- /dev/null +++ b/lang/vendor/filament-panels/nl/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Uitloggen', + ], + + ], + + 'welcome' => 'Welkom', + +]; diff --git a/lang/vendor/filament-panels/nl/widgets/filament-info-widget.php b/lang/vendor/filament-panels/nl/widgets/filament-info-widget.php new file mode 100644 index 0000000..69e56a5 --- /dev/null +++ b/lang/vendor/filament-panels/nl/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Documentatie', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/pl/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..b4a7fdb --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Zablokowano zmianę adresu e-mail', + 'body' => 'Pomyślnie zablokowano próbę zmiany adresu e-mail na :email. Skontaktuj się z nami niezwłocznie, jeśli zmiana adresu e-mail nie była przez Ciebie inicjowana.', + ], + + 'failed' => [ + 'title' => 'Nie udało się zablokować zmiany adresu e-mail', + 'body' => 'Niestety, nie udało się zapobiec zmianie adresu e-mail na :email, ponieważ adres został zweryfikowany przed zablokowaniem. Skontaktuj się z nami niezwłocznie, jeśli zmiana adresu e-mail nie była przez Ciebie inicjowana.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/pl/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..190581a --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Adres e-mail został zmieniony', + 'body' => 'Twój adres e-mail został pomyślnie zmieniony na :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/pl/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..9e25063 --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,75 @@ + 'Wyłącz', + + 'modal' => [ + + 'heading' => 'Wyłącz aplikację uwierzytelniającą', + + 'description' => 'Czy na pewno chcesz przestać używać aplikacji uwierzytelniającej? Wyłączenie jej usunie dodatkowe zabezpieczenie z Twojego konta.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Wprowadź 6-cyfrowy kod z aplikacji uwierzytelniającej', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Użyj kodu odzyskiwania', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Wprowadzony kod jest nieprawidłowy.', + + 'rate_limited' => 'Zbyt wiele prób. Spróbuj ponownie później.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Lub wprowadź kod odzyskiwania', + + 'validation_attribute' => 'kod odzyskiwania', + + 'messages' => [ + + 'invalid' => 'Wprowadzony kod odzyskiwania jest nieprawidłowy.', + + 'rate_limited' => 'Zbyt wiele prób. Spróbuj ponownie później.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Wyłącz aplikację uwierzytelniającą', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Aplikacja uwierzytelniająca została wyłączona', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/pl/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..5ac441f --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,79 @@ + 'Odśwież kody odzyskiwania', + + 'modal' => [ + + 'heading' => 'Odśwież kody odzyskiwania', + + 'description' => 'Jeśli zgubisz swoje kody odzyskiwania, możesz je tutaj odświeżyć. Twoje stare kody odzyskiwania zostaną natychmiast unieważnione.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Wprowadź 6-cyfrowy kod z aplikacji uwierzytelniającej', + + 'validation_attribute' => 'kod', + + 'messages' => [ + + 'invalid' => 'Wprowadzony kod jest nieprawidłowy.', + + 'rate_limited' => 'Zbyt wiele prób. Spróbuj ponownie później.', + + ], + + ], + + 'password' => [ + + 'label' => 'Lub wprowadź swoje aktualne hasło', + + 'validation_attribute' => 'hasło', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Odśwież kody odzyskiwania', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Nowe kody odzyskiwania zostały wygenerowane', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Nowe kody odzyskiwania', + + 'description' => 'Zapisz poniższe kody odzyskiwania w bezpiecznym miejscu. Zostaną one wyświetlone tylko raz, ale będą potrzebne, jeśli stracisz dostęp do aplikacji uwierzytelniającej:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Zamknij', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/pl/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..b32390e --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,83 @@ + 'Skonfiguruj', + + 'modal' => [ + + 'heading' => 'Skonfiguruj aplikację uwierzytelniającą', + + 'description' => <<<'BLADE' + Zainstaluj aplikację Google Authenticator (iOS, Android), aby zakończyć ten proces. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Zeskanuj kod QR za pomocą aplikacji uwierzytelniającej:', + + 'alt' => 'Kod QR do zeskanowania za pomocą aplikacji uwierzytelniającej', + + ], + + 'text_code' => [ + + 'instruction' => 'Lub wpisz kod ręcznie:', + + 'messages' => [ + 'copied' => 'Skopiowano', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Zapisz poniższe kody odzyskiwania w bezpiecznym miejscu. Zostaną one wyświetlone tylko raz, ale będą potrzebne, jeśli stracisz dostęp do aplikacji uwierzytelniającej:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Wprowadź 6-cyfrowy kod z aplikacji uwierzytelniającej', + + 'validation_attribute' => 'kod', + + 'below_content' => 'Kod z aplikacji uwierzytelniającej będzie wymagany podczas logowania lub wykonywania wrażliwych czynności.', + + 'messages' => [ + + 'invalid' => 'Wprowadzony kod jest nieprawidłowy.', + + 'rate_limited' => 'Zbyt wiele prób. Spróbuj ponownie później.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Włącz aplikację uwierzytelniającą', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Aplikacja uwierzytelniająca została włączona', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/pl/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..cd3d557 --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Aplikacja uwierzytelniająca', + + 'below_content' => 'Użyj bezpiecznej aplikacji, aby wygenerować tymczasowy kod do weryfikacji logowania.', + + 'messages' => [ + 'enabled' => 'Włączone', + 'disabled' => 'Wyłączone', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Użyj kodu z aplikacji uwierzytelniającej', + + 'code' => [ + + 'label' => 'Wprowadź 6-cyfrowy kod z aplikacji uwierzytelniającej', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Użyj kodu odzyskiwania', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Wprowadzony kod jest nieprawidłowy.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Lub wprowadź kod odzyskiwania', + + 'validation_attribute' => 'kod odzyskiwania', + + 'messages' => [ + + 'invalid' => 'Wprowadzony kod odzyskiwania jest nieprawidłowy.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/pl/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..4612315 --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,73 @@ + 'Wyłącz', + + 'modal' => [ + + 'heading' => 'Wyłącz kody weryfikacji poprzez e-mail', + + 'description' => 'Czy na pewno chcesz przestać otrzymywać kody weryfikacji poprzez e-mail? Wyłączenie tej funkcji usunie dodatkową warstwę zabezpieczeń z Twojego konta.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Wprowadź 6-cyfrowy kod, który został wysłany na Twój adres e-mail', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Wyślij nowy kod w wiadomości e-mail', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Nowy kod został wysłany', + ], + + 'throttled' => [ + 'title' => 'Zbyt wiele prób ponownego wysłania. Proszę poczekać przed żądaniem kolejnego kodu.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Wprowadzony kod jest nieprawidłowy.', + + 'rate_limited' => 'Zbyt wiele prób. Spróbuj ponownie później.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Wyłącz kody weryfikacji poprzez e-mail', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Kody weryfikacji poprzez e-mail zostały wyłączone', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/pl/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..32ed3e1 --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,73 @@ + 'Skonfiguruj', + + 'modal' => [ + + 'heading' => 'Skonfiguruj kody weryfikacji poprzez e-mail', + + 'description' => 'Zostaniesz poproszony o 6-cyfrowy kod, który zostanie wysłany na Twój adres e-mail podczas logowania lub wykonywania wrażliwych czynności. Sprawdź swoją skrzynkę pocztową, aby znaleźć 6-cyfrowy kod potrzebny do zakończenia konfiguracji.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Wprowadź 6-cyfrowy kod, który został wysłany na Twój adres e-mail', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Wyślij nowy kod w wiadomości e-mail', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Nowy kod został wysłany na Twój adres e-mail', + ], + + 'throttled' => [ + 'title' => 'Zbyt wiele prób ponownego wysłania. Proszę poczekać przed żądaniem kolejnego kodu.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Wprowadzony kod jest nieprawidłowy.', + + 'rate_limited' => 'Zbyt wiele prób. Spróbuj ponownie później.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Włącz kody weryfikacji poprzez e-mail', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Kody weryfikacji poprzez e-mail zostały włączone', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/pl/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..f766b8e --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Oto Twój kod logowania', + + 'lines' => [ + 'Twój kod logowania to: :code', + 'Ten kod wygaśnie za minutę.|Ten kod wygaśnie za :minutes minut.', + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/pl/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..eb2e7fe --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Kody weryfikacji poprzez e-mail', + + 'below_content' => 'Otrzymaj tymczasowy kod na swój adres e-mail, aby zweryfikować swoją tożsamość podczas logowania.', + + 'messages' => [ + 'enabled' => 'Włączone', + 'disabled' => 'Wyłączone', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Wyślij kod na swój adres e-mail', + + 'code' => [ + + 'label' => 'Wprowadź 6-cyfrowy kod, który został wysłany na Twój adres e-mail', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Wyślij nowy kod w wiadomości e-mail', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Nowy kod został wysłany na Twój adres e-mail', + ], + + 'throttled' => [ + 'title' => 'Zbyt wiele prób ponownego wysłania. Proszę poczekać przed żądaniem kolejnego kodu.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Wprowadzony kod jest nieprawidłowy.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/pl/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..4699cdd --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Skonfiguruj uwierzytelnianie dwuskładnikowe (2FA)', + + 'heading' => 'Skonfiguruj uwierzytelnianie dwuskładnikowe', + + 'subheading' => '2FA zapewnia dodatkową warstwę zabezpieczeń dla Twojego konta, wymagając drugiego stopnia weryfikacji podczas logowania.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Kontynuuj', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/pl/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..dc9faa3 --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Kliknij aby', + + 'copy' => [ + 'label' => 'skopiować', + ], + + 'lub', + + 'download' => [ + 'label' => 'pobrać', + ], + + 'wszystkie kody jednocześnie.', + + ], + + 'messages' => [ + 'copied' => 'Skopiowano', + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/pl/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..fecd8cf --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Twój adres e-mail zostanie zmieniony', + + 'lines' => [ + 'Otrzymaliśmy prośbę o zmianę adresu e-mail powiązanego z Twoim kontem. Twoje hasło zostało użyte do potwierdzenia tej zmiany.', + 'Po weryfikacji, nowym adresem e-mail przypisanym do konta będzie :email.', + 'Możesz zablokować tę zmianę przed jej weryfikacją, klikając przycisk poniżej.', + 'Skontaktuj się z nami niezwłocznie, jeśli zmiana adresu e-mail nie była przez Ciebie inicjowana.', + ], + + 'action' => 'Zablokuj zmianę adresu e-mail', + +]; diff --git a/lang/vendor/filament-panels/pl/auth/pages/edit-profile.php b/lang/vendor/filament-panels/pl/auth/pages/edit-profile.php new file mode 100644 index 0000000..4fa6e61 --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/pages/edit-profile.php @@ -0,0 +1,73 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'Adres e-mail', + ], + + 'name' => [ + 'label' => 'Nazwa', + ], + + 'password' => [ + 'label' => 'Nowe hasło', + 'validation_attribute' => 'hasło', + ], + + 'password_confirmation' => [ + 'label' => 'Potwierdź nowe hasło', + 'validation_attribute' => 'potwierdzenie hasła', + ], + + 'current_password' => [ + 'label' => 'Aktualne hasło', + 'below_content' => 'Podaj swoje aktualne hasło, aby kontynuować.', + 'validation_attribute' => 'aktualne hasło', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Zapisz zmiany', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Uwierzytelnianie dwuskładnikowe (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Wysłano prośbę o zmianę adresu e-mail', + 'body' => 'Prośba o zmianę adresu e-mail została wysłana na adres :email. Sprawdź swoją skrzynkę, aby zweryfikować zmianę.', + ], + + 'saved' => [ + 'title' => 'Zapisano', + ], + + 'throttled' => [ + 'title' => 'Zbyt wiele prób. Spróbuj ponownie za :seconds sekund.', + 'body' => 'Proszę spróbować ponownie za :seconds sekund.', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Anuluj', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/pl/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..c6ae518 --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Zweryfikuj swój adres e-mail', + + 'heading' => 'Weryfikacja adresu e-mail', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Wyślij ponownie', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Nie otrzymałeś wysłanej przez nas wiadomości?', + 'notification_sent' => 'Na adres :email wysłaliśmy instrukcję weryfikacji twojego adresu e-mail.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Wysłaliśmy ponownie wiadomość e-mail.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Zbyt wiele prób ponownej wysyłki wiadomości', + 'body' => 'Spróbuj ponownie za :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/pages/login.php b/lang/vendor/filament-panels/pl/auth/pages/login.php new file mode 100644 index 0000000..f5b2bf1 --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Logowanie', + + 'heading' => 'Zaloguj się', + + 'actions' => [ + + 'register' => [ + 'before' => 'lub', + 'label' => 'zarejestruj się', + ], + + 'request_password_reset' => [ + 'label' => 'Nie pamiętam hasła', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adres e-mail', + ], + + 'password' => [ + 'label' => 'Hasło', + ], + + 'remember' => [ + 'label' => 'Zapamiętaj mnie', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Zaloguj się', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Zweryfikuj swoją tożsamość', + + 'subheading' => 'Aby kontynuować logowanie, musisz zweryfikować swoją tożsamość.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Wybierz metodę weryfikacji', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Potwierdź logowanie', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Błędny login lub hasło.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Za dużo nieudanych prób logowania', + 'body' => 'Spróbuj ponownie za :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/pl/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..0b384ae --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Zresetuj hasło', + + 'heading' => 'Zapomniałeś hasła?', + + 'actions' => [ + + 'login' => [ + 'label' => 'wróć do logowania', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adres e-mail', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Wyślij e-mail', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Nie otrzymasz e-maila, jeśli konto nie istnieje.', + ], + + 'throttled' => [ + 'title' => 'Zbyt wiele żądań', + 'body' => 'Spróbuj ponownie za :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/pl/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..51acede --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Zresetuj hasło', + + 'heading' => 'Resetowanie hasła', + + 'form' => [ + + 'email' => [ + 'label' => 'Adres e-mail', + ], + + 'password' => [ + 'label' => 'Hasło', + 'validation_attribute' => 'hasło', + ], + + 'password_confirmation' => [ + 'label' => 'Potwierdź hasło', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Zresetuj hasło', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Zbyt wiele prób resetowania', + 'body' => 'Spróbuj ponownie za :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/auth/pages/register.php b/lang/vendor/filament-panels/pl/auth/pages/register.php new file mode 100644 index 0000000..45ae1d1 --- /dev/null +++ b/lang/vendor/filament-panels/pl/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Zarejestruj się', + + 'heading' => 'Rejestracja', + + 'actions' => [ + + 'login' => [ + 'before' => 'lub', + 'label' => 'zaloguj się na swoje konto', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adres e-mail', + ], + + 'name' => [ + 'label' => 'Nazwa', + ], + + 'password' => [ + 'label' => 'Hasło', + 'validation_attribute' => 'hasło', + ], + + 'password_confirmation' => [ + 'label' => 'Potwierdź hasło', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Zarejestruj się', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Zbyt dużo prób rejestracji', + 'body' => 'Spróbuj ponownie za :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/error-notifications.php b/lang/vendor/filament-panels/pl/error-notifications.php new file mode 100644 index 0000000..15164be --- /dev/null +++ b/lang/vendor/filament-panels/pl/error-notifications.php @@ -0,0 +1,9 @@ + 'Błąd podczas ładowania strony', + + 'body' => 'Wystąpił błąd podczas ładowania strony. Spróbuj ponownie później.', + +]; diff --git a/lang/vendor/filament-panels/pl/global-search.php b/lang/vendor/filament-panels/pl/global-search.php new file mode 100644 index 0000000..e8bbb82 --- /dev/null +++ b/lang/vendor/filament-panels/pl/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Wyszukiwanie globalne', + 'placeholder' => 'Szukaj', + ], + + 'no_results_message' => 'Nie znaleziono wyników.', + +]; diff --git a/lang/vendor/filament-panels/pl/layout.php b/lang/vendor/filament-panels/pl/layout.php new file mode 100644 index 0000000..ed1a650 --- /dev/null +++ b/lang/vendor/filament-panels/pl/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Zarządzaj subskrypcją', + ], + + 'logout' => [ + 'label' => 'Wyloguj się', + ], + + 'open_database_notifications' => [ + 'label' => 'Otwórz powiadomienia', + ], + + 'open_user_menu' => [ + 'label' => 'Menu użytkownika', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Zwiń pasek boczny', + ], + + 'expand' => [ + 'label' => 'Rozwiń pasek boczny', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Tryb ciemny', + ], + + 'light' => [ + 'label' => 'Tryb jasny', + ], + + 'system' => [ + 'label' => 'Tryb systemowy', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Awatar :name', + ], + + 'logo' => [ + 'alt' => 'Logo :name', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Wyszukiwanie najemcy', + 'placeholder' => 'Szukaj', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/pages/dashboard.php b/lang/vendor/filament-panels/pl/pages/dashboard.php new file mode 100644 index 0000000..01c1e0a --- /dev/null +++ b/lang/vendor/filament-panels/pl/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Panel', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtruj', + + 'modal' => [ + + 'heading' => 'Filtruj', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Zastosuj', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/pl/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..9b1f635 --- /dev/null +++ b/lang/vendor/filament-panels/pl/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Zapisz zmiany', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Zapisano', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/resources/pages/create-record.php b/lang/vendor/filament-panels/pl/resources/pages/create-record.php new file mode 100644 index 0000000..aff9a5a --- /dev/null +++ b/lang/vendor/filament-panels/pl/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Utwórz :label', + + 'breadcrumb' => 'Utwórz', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Anuluj', + ], + + 'create' => [ + 'label' => 'Utwórz', + ], + + 'create_another' => [ + 'label' => 'Utwórz i utwórz kolejny', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Utworzono', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/resources/pages/edit-record.php b/lang/vendor/filament-panels/pl/resources/pages/edit-record.php new file mode 100644 index 0000000..5a9e1a2 --- /dev/null +++ b/lang/vendor/filament-panels/pl/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Edytuj :label', + + 'breadcrumb' => 'Edytuj', + + 'navigation_label' => 'Edycja', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Anuluj', + ], + + 'save' => [ + 'label' => 'Zapisz', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Edytuj', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Zapisano zmiany', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/resources/pages/list-records.php b/lang/vendor/filament-panels/pl/resources/pages/list-records.php new file mode 100644 index 0000000..3af0660 --- /dev/null +++ b/lang/vendor/filament-panels/pl/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Lista', + +]; diff --git a/lang/vendor/filament-panels/pl/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/pl/resources/pages/manage-related-records.php new file mode 100644 index 0000000..cea1dea --- /dev/null +++ b/lang/vendor/filament-panels/pl/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Zarządzaj :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/pl/resources/pages/view-record.php b/lang/vendor/filament-panels/pl/resources/pages/view-record.php new file mode 100644 index 0000000..853b1de --- /dev/null +++ b/lang/vendor/filament-panels/pl/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Podgląd :label', + + 'breadcrumb' => 'Podgląd', + + 'navigation_label' => 'Podgląd', + + 'content' => [ + + 'tab' => [ + 'label' => 'Podgląd', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pl/unsaved-changes-alert.php b/lang/vendor/filament-panels/pl/unsaved-changes-alert.php new file mode 100644 index 0000000..1082a1f --- /dev/null +++ b/lang/vendor/filament-panels/pl/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Masz niezapisane zmiany. Czy na pewno chcesz opuścić tę stronę?', + +]; diff --git a/lang/vendor/filament-panels/pl/widgets/account-widget.php b/lang/vendor/filament-panels/pl/widgets/account-widget.php new file mode 100644 index 0000000..b33d786 --- /dev/null +++ b/lang/vendor/filament-panels/pl/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Wyloguj się', + ], + + ], + + 'welcome' => 'Witaj', + +]; diff --git a/lang/vendor/filament-panels/pl/widgets/filament-info-widget.php b/lang/vendor/filament-panels/pl/widgets/filament-info-widget.php new file mode 100644 index 0000000..cfb9bbd --- /dev/null +++ b/lang/vendor/filament-panels/pl/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentacja', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/pt/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..0011051 --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Alteração de endereço de email bloqueada', + 'body' => 'Bloqueou com sucesso uma tentativa de alteração de endereço de email para :email. Se não fez o pedido original, contacte-nos imediatamente.', + ], + + 'failed' => [ + 'title' => 'Falha ao bloquear alteração de endereço de email', + 'body' => 'Infelizmente, não foi possível impedir que o endereço de email fosse alterado para :email, pois já tinha sido verificado antes de o bloquear. Se não fez o pedido original, contacte-nos imediatamente.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/pt/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..04443ea --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Endereço de email alterado', + 'body' => 'O seu endereço de email foi alterado com sucesso para :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/pt/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..dea8b2d --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Desativar', + + 'modal' => [ + + 'heading' => 'Desativar aplicação de autenticação', + + 'description' => 'Tem a certeza de que deseja parar de usar a aplicação de autenticação? Desativar esta opção removerá uma camada extra de segurança da sua conta.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Introduza o código de 6 dígitos da aplicação de autenticação', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Usar um código de recuperação', + ], + + ], + + 'messages' => [ + + 'invalid' => 'O código que introduziu é inválido.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Ou, introduza um código de recuperação', + + 'validation_attribute' => 'código de recuperação', + + 'messages' => [ + + 'invalid' => 'O código de recuperação que introduziu é inválido.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Desativar aplicação de autenticação', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Aplicação de autenticação foi desativada', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/pt/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..76cc1f5 --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Regenerar códigos de recuperação', + + 'modal' => [ + + 'heading' => 'Regenerar códigos de recuperação da aplicação de autenticação', + + 'description' => 'Se perder os seus códigos de recuperação, pode regenerá-los aqui. Os seus códigos de recuperação antigos serão invalidados imediatamente.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Introduza o código de 6 dígitos da aplicação de autenticação', + + 'validation_attribute' => 'código', + + 'messages' => [ + + 'invalid' => 'O código que introduziu é inválido.', + + ], + + ], + + 'password' => [ + + 'label' => 'Ou, introduza a sua palavra-passe atual', + + 'validation_attribute' => 'palavra-passe', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Regenerar códigos de recuperação', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Novos códigos de recuperação da aplicação de autenticação foram gerados', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Novos códigos de recuperação', + + 'description' => 'Por favor, guarde os seguintes códigos de recuperação num local seguro. Serão mostrados apenas uma vez, mas precisará deles se perder o acesso à sua aplicação de autenticação:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Fechar', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/pt/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..dd6cfd6 --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Configurar', + + 'modal' => [ + + 'heading' => 'Configurar aplicação de autenticação', + + 'description' => <<<'BLADE' + Precisará de uma aplicação como o Google Authenticator (iOS, Android) para completar este processo. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Digitalize este código QR com a sua aplicação de autenticação:', + + 'alt' => 'Código QR para digitalizar com uma aplicação de autenticação', + + ], + + 'text_code' => [ + + 'instruction' => 'Ou introduza este código manualmente:', + + 'messages' => [ + 'copied' => 'Copiado', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Por favor, guarde os seguintes códigos de recuperação num local seguro. Serão mostrados apenas uma vez, mas precisará deles se perder o acesso à sua aplicação de autenticação:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Introduza o código de 6 dígitos da aplicação de autenticação', + + 'validation_attribute' => 'código', + + 'below_content' => 'Precisará de introduzir o código de 6 dígitos da sua aplicação de autenticação sempre que iniciar sessão ou realizar ações sensíveis.', + + 'messages' => [ + + 'invalid' => 'O código que introduziu é inválido.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Ativar aplicação de autenticação', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Aplicação de autenticação foi ativada', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/pt/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..65572e7 --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Aplicação de autenticação', + + 'below_content' => 'Use uma aplicação segura para gerar um código temporário para verificação de início de sessão.', + + 'messages' => [ + 'enabled' => 'Ativada', + 'disabled' => 'Desativada', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Use um código da sua aplicação de autenticação', + + 'code' => [ + + 'label' => 'Introduza o código de 6 dígitos da aplicação de autenticação', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Usar um código de recuperação', + ], + + ], + + 'messages' => [ + + 'invalid' => 'O código que introduziu é inválido.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Ou, introduza um código de recuperação', + + 'validation_attribute' => 'código de recuperação', + + 'messages' => [ + + 'invalid' => 'O código de recuperação que introduziu é inválido.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/pt/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..5e7eac3 --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + 'Desativar', + + 'modal' => [ + + 'heading' => 'Desativar códigos de verificação por email', + + 'description' => 'Tem a certeza de que deseja parar de receber códigos de verificação por email? Desativar esta opção removerá uma camada extra de segurança da sua conta.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Introduza o código de 6 dígitos que lhe enviámos por email', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Enviar um novo código por email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Enviámos-lhe um novo código por email', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'O código que introduziu é inválido.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Desativar códigos de verificação por email', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Códigos de verificação por email foram desativados', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/pt/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..601dbbe --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + 'Configurar', + + 'modal' => [ + + 'heading' => 'Configurar códigos de verificação por email', + + 'description' => 'Precisará de introduzir o código de 6 dígitos que lhe enviamos por email sempre que iniciar sessão ou realizar ações sensíveis. Verifique o seu email para obter um código de 6 dígitos para completar a configuração.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Introduza o código de 6 dígitos que lhe enviámos por email', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Enviar um novo código por email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Enviámos-lhe um novo código por email', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'O código que introduziu é inválido.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Ativar códigos de verificação por email', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Códigos de verificação por email foram ativados', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/pt/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..48963f2 --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Aqui está o seu código de início de sessão', + + 'lines' => [ + 'O seu código de início de sessão é: :code', + 'Este código expirará em um minuto.|Este código expirará em :minutes minutos.', + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/pt/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..0d70011 --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'Códigos de verificação por email', + + 'below_content' => 'Receba um código temporário no seu endereço de email para verificar a sua identidade durante o início de sessão.', + + 'messages' => [ + 'enabled' => 'Ativados', + 'disabled' => 'Desativados', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Enviar um código para o seu email', + + 'code' => [ + + 'label' => 'Introduza o código de 6 dígitos que lhe enviámos por email', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Enviar um novo código por email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Enviámos-lhe um novo código por email', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'O código que introduziu é inválido.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/pt/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..821151d --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Configurar autenticação de dois fatores (2FA)', + + 'heading' => 'Configurar autenticação de dois fatores', + + 'subheading' => 'A 2FA adiciona uma camada extra de segurança à sua conta, exigindo uma segunda forma de verificação ao iniciar sessão.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Continuar', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/pt/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..3328eb7 --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Clique para', + + 'copy' => [ + 'label' => 'copiar', + ], + + 'ou', + + 'download' => [ + 'label' => 'descarregar', + ], + + 'todos os códigos de uma só vez.', + + ], + + 'messages' => [ + 'copied' => 'Copiado', + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/pt/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..d8c1675 --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'O seu endereço de email está a ser alterado', + + 'lines' => [ + 'Recebemos um pedido para alterar o endereço de email associado à sua conta. A sua palavra-passe foi usada para confirmar esta alteração.', + 'Após verificação, o novo endereço de email na sua conta será: :email.', + 'Pode bloquear a alteração antes de ser verificada clicando no botão abaixo.', + 'Se não fez este pedido, contacte-nos imediatamente.', + ], + + 'action' => 'Bloquear Alteração de Email', + +]; diff --git a/lang/vendor/filament-panels/pt/auth/pages/edit-profile.php b/lang/vendor/filament-panels/pt/auth/pages/edit-profile.php new file mode 100644 index 0000000..5fba190 --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Perfil', + + 'form' => [ + + 'email' => [ + 'label' => 'Endereço de e-mail', + ], + + 'name' => [ + 'label' => 'Nome', + ], + + 'password' => [ + 'label' => 'Nova palavra-passe', + 'validation_attribute' => 'palavra-passe', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmar nova palavra-passe', + 'validation_attribute' => 'confirmação da palavra-passe', + ], + + 'current_password' => [ + 'label' => 'Palavra-passe actual', + 'below_content' => 'Por segurança, confirme a sua palavra-passe para continuar.', + 'validation_attribute' => 'palavra-passe actual', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Guardar alterações', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Autenticação de dois factores (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Pedido de alteração de endereço de e-mail enviado', + 'body' => 'Foi enviado um pedido para alterar o seu endereço de e-mail para :email. Verifique o seu e-mail para confirmar a alteração.', + ], + + 'saved' => [ + 'title' => 'Guardado', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancelar', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/pt/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..0fbeca3 --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Verifique o seu endereço de e-mail', + + 'heading' => 'Verifique o seu endereço de e-mail', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Reenviar', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Não recebeu o e-mail que enviámos?', + 'notification_sent' => 'Enviámos um e-mail para :email com as instruções sobre como verificar o seu endereço de e-mail.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'E-mail reenviado.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Muitas tentativas de reenvio', + 'body' => 'Por favor, tente novamente em :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/pages/login.php b/lang/vendor/filament-panels/pt/auth/pages/login.php new file mode 100644 index 0000000..d5b5274 --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Iniciar sessão', + + 'heading' => 'Iniciar sessão', + + 'actions' => [ + + 'register' => [ + 'before' => 'ou', + 'label' => 'criar uma conta', + ], + + 'request_password_reset' => [ + 'label' => 'Esqueceu-se da palavra-passe?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Endereço de e-mail', + ], + + 'password' => [ + 'label' => 'Palavra-passe', + ], + + 'remember' => [ + 'label' => 'Manter sessão', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Iniciar sessão', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Verificar a sua identidade', + + 'subheading' => 'Para continuar a iniciar sessão, tem de verificar a sua identidade.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Como pretende verificar?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Confirmar início de sessão', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'As credênciais não correspondem aos nossos registos.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Muitas tentativas de início de sessão.', + 'body' => 'Por favor, tente novamente em :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/pt/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..4d42269 --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Redefinir a sua palavra-passe', + + 'heading' => 'Esqueceu-se da palavra-passe?', + + 'actions' => [ + + 'login' => [ + 'label' => 'voltar ao início', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Endereço de e-mail', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Enviar e-mail', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Se a sua conta não existir, não receberá o e-mail.', + ], + + 'throttled' => [ + 'title' => 'Muitas solicitações', + 'body' => 'Por favor, tente novamente em :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/pt/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..1803fad --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Redefinir a sua palavra-passe', + + 'heading' => 'Redefinir a sua palavra-passe', + + 'form' => [ + + 'email' => [ + 'label' => 'Endereço de e-mail', + ], + + 'password' => [ + 'label' => 'Palavra-passe', + 'validation_attribute' => 'palavra-passe', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmar palavra-passe', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Redefinir palavra-passe', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Muitas tentativas de redefinição', + 'body' => 'Por favor, tente novamente em :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/auth/pages/register.php b/lang/vendor/filament-panels/pt/auth/pages/register.php new file mode 100644 index 0000000..de1aeba --- /dev/null +++ b/lang/vendor/filament-panels/pt/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Registar', + + 'heading' => 'Registe-se', + + 'actions' => [ + + 'login' => [ + 'before' => 'ou', + 'label' => 'iniciar sessão na sua conta', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Endereço de e-mail', + ], + + 'name' => [ + 'label' => 'Nome', + ], + + 'password' => [ + 'label' => 'Palavra-passe', + 'validation_attribute' => 'palavra-passe', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmar palavra-passe', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Registar conta', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Muitas tentativas de registo', + 'body' => 'Por favor, tente novamente em :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/error-notifications.php b/lang/vendor/filament-panels/pt/error-notifications.php new file mode 100644 index 0000000..af06778 --- /dev/null +++ b/lang/vendor/filament-panels/pt/error-notifications.php @@ -0,0 +1,9 @@ + 'Erro ao carregar a página', + + 'body' => 'Ocorreu um erro ao tentar carregar esta página. Por favor, tente novamente mais tarde.', + +]; diff --git a/lang/vendor/filament-panels/pt/global-search.php b/lang/vendor/filament-panels/pt/global-search.php new file mode 100644 index 0000000..d2d9da6 --- /dev/null +++ b/lang/vendor/filament-panels/pt/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Pesquisa global', + 'placeholder' => 'Pesquisar', + ], + + 'no_results_message' => 'Nenhum resultado encontrado.', + +]; diff --git a/lang/vendor/filament-panels/pt/layout.php b/lang/vendor/filament-panels/pt/layout.php new file mode 100644 index 0000000..2c2e879 --- /dev/null +++ b/lang/vendor/filament-panels/pt/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Gerir assinatura', + ], + + 'logout' => [ + 'label' => 'Terminar Sessão', + ], + + 'open_database_notifications' => [ + 'label' => 'Abrir notificações', + ], + + 'open_user_menu' => [ + 'label' => 'Menu de utilizador', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Recolher barra lateral', + ], + + 'expand' => [ + 'label' => 'Expandir barra lateral', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Activar o modo escuro', + ], + + 'light' => [ + 'label' => 'Activar o modo claro', + ], + + 'system' => [ + 'label' => 'Activar o modo de sistema', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar de :name', + ], + + 'logo' => [ + 'alt' => 'Logótipo de :name', + ], + +]; diff --git a/lang/vendor/filament-panels/pt/pages/dashboard.php b/lang/vendor/filament-panels/pt/pages/dashboard.php new file mode 100644 index 0000000..168ce6d --- /dev/null +++ b/lang/vendor/filament-panels/pt/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Painel de Controlo', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtro', + + 'modal' => [ + + 'heading' => 'Filtro', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Aplicar', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/pt/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..36829ac --- /dev/null +++ b/lang/vendor/filament-panels/pt/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Guardar alterações', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Guardado', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/resources/pages/create-record.php b/lang/vendor/filament-panels/pt/resources/pages/create-record.php new file mode 100644 index 0000000..495f426 --- /dev/null +++ b/lang/vendor/filament-panels/pt/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Criar :label', + + 'breadcrumb' => 'Criar', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancelar', + ], + + 'create' => [ + 'label' => 'Criar', + ], + + 'create_another' => [ + 'label' => 'Criar e criar novo', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Criado', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/resources/pages/edit-record.php b/lang/vendor/filament-panels/pt/resources/pages/edit-record.php new file mode 100644 index 0000000..21582de --- /dev/null +++ b/lang/vendor/filament-panels/pt/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Editar :label', + + 'breadcrumb' => 'Editar', + + 'navigation_label' => 'Editar', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancelar', + ], + + 'save' => [ + 'label' => 'Guardar alterações', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Editar', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Guardado', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/resources/pages/list-records.php b/lang/vendor/filament-panels/pt/resources/pages/list-records.php new file mode 100644 index 0000000..1bfaf66 --- /dev/null +++ b/lang/vendor/filament-panels/pt/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Listagem', + +]; diff --git a/lang/vendor/filament-panels/pt/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/pt/resources/pages/manage-related-records.php new file mode 100644 index 0000000..4a42999 --- /dev/null +++ b/lang/vendor/filament-panels/pt/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Gerir :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/pt/resources/pages/view-record.php b/lang/vendor/filament-panels/pt/resources/pages/view-record.php new file mode 100644 index 0000000..49670e4 --- /dev/null +++ b/lang/vendor/filament-panels/pt/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Visualizar :label', + + 'breadcrumb' => 'Visualizar', + + 'navigation_label' => 'Visualizar', + + 'content' => [ + + 'tab' => [ + 'label' => 'Visualizar', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt/unsaved-changes-alert.php b/lang/vendor/filament-panels/pt/unsaved-changes-alert.php new file mode 100644 index 0000000..4a1d4a7 --- /dev/null +++ b/lang/vendor/filament-panels/pt/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Existem alterações não guardadas. Tem a certeza que pretende sair desta página?', + +]; diff --git a/lang/vendor/filament-panels/pt/widgets/account-widget.php b/lang/vendor/filament-panels/pt/widgets/account-widget.php new file mode 100644 index 0000000..083ec0b --- /dev/null +++ b/lang/vendor/filament-panels/pt/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Terminar Sessão', + ], + + ], + + 'welcome' => 'Bem-vindo', + +]; diff --git a/lang/vendor/filament-panels/pt/widgets/filament-info-widget.php b/lang/vendor/filament-panels/pt/widgets/filament-info-widget.php new file mode 100644 index 0000000..ea6f414 --- /dev/null +++ b/lang/vendor/filament-panels/pt/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Documentação', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/pt_BR/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..68839c8 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Alteração de e-mail bloqueada', + 'body' => 'Você bloqueou com sucesso uma tentativa de alterar o endereço de e-mail para :email. Se você não fez a solicitação original, entre em contato conosco imediatamente.', + ], + + 'failed' => [ + 'title' => 'Falha ao bloquear a alteração de e-mail', + 'body' => 'Infelizmente, não foi possível impedir que o e-mail fosse alterado para :email, pois ele já havia sido verificado antes do bloqueio. Se você não fez a solicitação original, entre em contato conosco imediatamente.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/pt_BR/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..b88edd1 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Endereço de e-mail alterado', + 'body' => 'Seu endereço de e-mail foi alterado com sucesso para :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..7eeb6f7 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Desativar', + + 'modal' => [ + + 'heading' => 'Desativar app autenticador', + + 'description' => 'Tem certeza de que deseja parar de usar o app autenticador? Desativar isso removerá uma camada extra de segurança da sua conta.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Digite o código de 6 dígitos do app autenticador', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Usar um código de recuperação', + ], + + ], + + 'messages' => [ + + 'invalid' => 'O código informado é inválido.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Ou, digite um código de recuperação', + + 'validation_attribute' => 'código de recuperação', + + 'messages' => [ + + 'invalid' => 'O código de recuperação informado é inválido.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Desativar app autenticador', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'App autenticador desativado', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..fa998b6 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Gerar novos códigos de recuperação', + + 'modal' => [ + + 'heading' => 'Gerar novos códigos de recuperação do app autenticador', + + 'description' => 'Se você perder seus códigos de recuperação, pode gerá-los novamente aqui. Seus códigos antigos serão invalidados imediatamente.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Digite o código de 6 dígitos do app autenticador', + + 'validation_attribute' => 'código', + + 'messages' => [ + + 'invalid' => 'O código informado é inválido.', + + ], + + ], + + 'password' => [ + + 'label' => 'Ou, digite sua senha atual', + + 'validation_attribute' => 'senha', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Gerar novos códigos de recuperação', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Novos códigos de recuperação do app autenticador foram gerados', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Novos códigos de recuperação', + + 'description' => 'Salve os seguintes códigos de recuperação em um local seguro. Eles serão exibidos apenas uma vez, mas você precisará deles se perder o acesso ao app autenticador:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Fechar', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..2956c43 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Configurar', + + 'modal' => [ + + 'heading' => 'Configurar app autenticador', + + 'description' => <<<'BLADE' + Você precisará de um aplicativo como o Google Authenticator (iOS, Android) para concluir este processo. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Escaneie este QR Code com seu app autenticador:', + + 'alt' => 'QR Code para escanear com um app autenticador', + + ], + + 'text_code' => [ + + 'instruction' => 'Ou insira este código manualmente:', + + 'messages' => [ + 'copied' => 'Copiado', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Salve os seguintes códigos de recuperação em um local seguro. Eles serão exibidos apenas uma vez, mas você precisará deles se perder o acesso ao seu app autenticador:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Digite o código de 6 dígitos do app autenticador', + + 'validation_attribute' => 'código', + + 'below_content' => 'Você precisará inserir o código de 6 dígitos do seu app autenticador sempre que fizer login ou realizar ações sensíveis.', + + 'messages' => [ + + 'invalid' => 'O código informado é inválido.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Ativar app autenticador', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'App autenticador ativado', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..759fe8f --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'App autenticador', + + 'below_content' => 'Use um app seguro para gerar um código temporário para verificação de login.', + + 'messages' => [ + 'enabled' => 'Ativado', + 'disabled' => 'Desativado', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Usar um código do seu app autenticador', + + 'code' => [ + + 'label' => 'Digite o código de 6 dígitos do app autenticador', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Usar um código de recuperação', + ], + + ], + + 'messages' => [ + + 'invalid' => 'O código informado é inválido.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Ou, digite um código de recuperação', + + 'validation_attribute' => 'código de recuperação', + + 'messages' => [ + + 'invalid' => 'O código de recuperação informado é inválido.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..bcb0a99 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + 'Desativar', + + 'modal' => [ + + 'heading' => 'Desativar códigos de verificação por e-mail', + + 'description' => 'Tem certeza de que deseja parar de receber códigos de verificação por e-mail? Desativar isso removerá uma camada extra de segurança da sua conta.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Digite o código de 6 dígitos que enviamos por e-mail', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Enviar um novo código por e-mail', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Enviamos um novo código por e-mail', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'O código informado é inválido.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Desativar códigos de verificação por e-mail', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Os códigos de verificação por e-mail foram desativados', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..4a2e21b --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + 'Configurar', + + 'modal' => [ + + 'heading' => 'Configurar códigos de verificação por e-mail', + + 'description' => 'Você precisará inserir o código de 6 dígitos que enviamos por e-mail sempre que fizer login ou realizar ações sensíveis. Verifique seu e-mail para obter um código de 6 dígitos e concluir a configuração.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Digite o código de 6 dígitos que enviamos por e-mail', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Enviar um novo código por e-mail', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Enviamos um novo código por e-mail', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'O código informado é inválido.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Ativar códigos de verificação por e-mail', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Os códigos de verificação por e-mail foram ativados', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..d6a629c --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Aqui está seu código de acesso', + + 'lines' => [ + 'Seu código de acesso é: :code', + 'Este código expira em um minuto.|Este código expira em :minutes minutos.', + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..8939540 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'Códigos de verificação por e-mail', + + 'below_content' => 'Receba um código temporário no seu e-mail para verificar sua identidade durante o login.', + + 'messages' => [ + 'enabled' => 'Ativado', + 'disabled' => 'Desativado', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Enviar um código para seu e-mail', + + 'code' => [ + + 'label' => 'Digite o código de 6 dígitos que enviamos por e-mail', + + 'validation_attribute' => 'código', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Enviar um novo código por e-mail', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Enviamos um novo código por e-mail', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'O código informado é inválido.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..84501eb --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Configurar autenticação de dois fatores (2FA)', + + 'heading' => 'Configurar autenticação de dois fatores', + + 'subheading' => 'A 2FA adiciona uma camada extra de segurança à sua conta ao exigir uma segunda forma de verificação ao entrar.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Continuar', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..70e4039 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Clique para', + + 'copy' => [ + 'label' => 'copiar', + ], + + 'ou', + + 'download' => [ + 'label' => 'baixar', + ], + + 'todos os códigos de uma só vez.', + + ], + + 'messages' => [ + 'copied' => 'Copiado', + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/pt_BR/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..156966a --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Seu endereço de e-mail está sendo alterado', + + 'lines' => [ + 'Recebemos uma solicitação para alterar o endereço de e-mail associado à sua conta. Sua senha foi usada para confirmar essa alteração.', + 'Após a verificação, o novo endereço de e-mail da sua conta será: :email.', + 'Você pode bloquear a alteração antes que ela seja verificada clicando no botão abaixo.', + 'Se você não fez essa solicitação, entre em contato conosco imediatamente.', + ], + + 'action' => 'Bloquear alteração de e-mail', + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/pages/edit-profile.php b/lang/vendor/filament-panels/pt_BR/auth/pages/edit-profile.php new file mode 100644 index 0000000..7c6abd1 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Perfil', + + 'form' => [ + + 'email' => [ + 'label' => 'E-mail', + ], + + 'name' => [ + 'label' => 'Nome', + ], + + 'password' => [ + 'label' => 'Nova senha', + 'validation_attribute' => 'senha', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmar nova senha', + 'validation_attribute' => 'confirmação de senha', + ], + + 'current_password' => [ + 'label' => 'Senha atual', + 'below_content' => 'Por segurança, confirme sua senha para continuar.', + 'validation_attribute' => 'senha atual', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Salvar alterações', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Autenticação de dois fatores (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Solicitação de alteração de e-mail enviada', + 'body' => 'Uma solicitação para alterar seu endereço de e-mail foi enviada para :email. Verifique seu e-mail para confirmar a alteração.', + ], + + 'saved' => [ + 'title' => 'Salvo', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancelar', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/pt_BR/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..f91061f --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Verifique seu e-mail', + + 'heading' => 'Verifique seu e-mail', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Reenviar', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Não recebeu o e-mail que enviamos?', + 'notification_sent' => 'Enviamos um e-mail para :email contendo instruções sobre como verificar seu e-mail.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Reenviamos o e-mail.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Muitas tentativas de reenvio', + 'body' => 'Por favor tente novamente em :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/pages/login.php b/lang/vendor/filament-panels/pt_BR/auth/pages/login.php new file mode 100644 index 0000000..2130bc2 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Login', + + 'heading' => 'Faça login', + + 'actions' => [ + + 'register' => [ + 'before' => 'ou', + 'label' => 'crie uma conta', + ], + + 'request_password_reset' => [ + 'label' => 'Esqueceu sua senha?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-mail', + ], + + 'password' => [ + 'label' => 'Senha', + ], + + 'remember' => [ + 'label' => 'Lembre de mim', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Login', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Verifique sua identidade', + + 'subheading' => 'Para continuar o login, você precisa verificar sua identidade.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Como você gostaria de verificar?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Confirmar login', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Essas credenciais não correspondem aos nossos registros.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Muitas tentativas de login', + 'body' => 'Por favor tente novamente em :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/pt_BR/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..dff5cfc --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Redefina sua senha', + + 'heading' => 'Esqueceu sua senha?', + + 'actions' => [ + + 'login' => [ + 'label' => 'voltar ao login', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-mail', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Enviar email', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Se sua conta não existir, você não receberá o e-mail.', + ], + + 'throttled' => [ + 'title' => 'Muitas solicitações', + 'body' => 'Por favor tente novamente em :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/pt_BR/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..8e3f710 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Redefina sua senha', + + 'heading' => 'Redefina sua senha', + + 'form' => [ + + 'email' => [ + 'label' => 'E-mail', + ], + + 'password' => [ + 'label' => 'Senha', + 'validation_attribute' => 'senha', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmar senha', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Redefinir senha', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Muitas tentativas de redefinição', + 'body' => 'Por favor tente novamente em :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/auth/pages/register.php b/lang/vendor/filament-panels/pt_BR/auth/pages/register.php new file mode 100644 index 0000000..1131303 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Cadastrar', + + 'heading' => 'Inscrever-se', + + 'actions' => [ + + 'login' => [ + 'before' => 'ou', + 'label' => 'faça login em sua conta', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-mail', + ], + + 'name' => [ + 'label' => 'Nome', + ], + + 'password' => [ + 'label' => 'Senha', + 'validation_attribute' => 'senha', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmar senha', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Criar conta', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Muitas tentativas de cadastro', + 'body' => 'Por favor, tente novamente em :seconds segundos.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/error-notifications.php b/lang/vendor/filament-panels/pt_BR/error-notifications.php new file mode 100644 index 0000000..af06778 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/error-notifications.php @@ -0,0 +1,9 @@ + 'Erro ao carregar a página', + + 'body' => 'Ocorreu um erro ao tentar carregar esta página. Por favor, tente novamente mais tarde.', + +]; diff --git a/lang/vendor/filament-panels/pt_BR/global-search.php b/lang/vendor/filament-panels/pt_BR/global-search.php new file mode 100644 index 0000000..d2d9da6 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Pesquisa global', + 'placeholder' => 'Pesquisar', + ], + + 'no_results_message' => 'Nenhum resultado encontrado.', + +]; diff --git a/lang/vendor/filament-panels/pt_BR/layout.php b/lang/vendor/filament-panels/pt_BR/layout.php new file mode 100644 index 0000000..500b5d4 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Gerenciar assinatura', + ], + + 'logout' => [ + 'label' => 'Sair', + ], + + 'open_database_notifications' => [ + 'label' => 'Abrir notificações', + ], + + 'open_user_menu' => [ + 'label' => 'Menu do usuário', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Recolher barra lateral', + ], + + 'expand' => [ + 'label' => 'Expandir barra lateral', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Mudar para tema escuro', + ], + + 'light' => [ + 'label' => 'Mudar para tema claro', + ], + + 'system' => [ + 'label' => 'Mudar para tema do sistema', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar de :name', + ], + + 'logo' => [ + 'alt' => 'Logotipo de :name', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Buscar locatário', + 'placeholder' => 'Buscar', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/pages/dashboard.php b/lang/vendor/filament-panels/pt_BR/pages/dashboard.php new file mode 100644 index 0000000..0c372d1 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Painel de Controle', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtros', + + 'modal' => [ + + 'heading' => 'Filtros', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Aplicar', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/pt_BR/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..1feb69e --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Salvar alterações', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Salvo', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/resources/pages/create-record.php b/lang/vendor/filament-panels/pt_BR/resources/pages/create-record.php new file mode 100644 index 0000000..647cffa --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Criar :label', + + 'breadcrumb' => 'Criar', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancelar', + ], + + 'create' => [ + 'label' => 'Criar', + ], + + 'create_another' => [ + 'label' => 'Salvar e criar outro', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Criado', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/resources/pages/edit-record.php b/lang/vendor/filament-panels/pt_BR/resources/pages/edit-record.php new file mode 100644 index 0000000..221c94d --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Editar :label', + + 'breadcrumb' => 'Editar', + + 'navigation_label' => 'Editar', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Cancelar', + ], + + 'save' => [ + 'label' => 'Salvar alterações', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Editar', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Salvo', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/resources/pages/list-records.php b/lang/vendor/filament-panels/pt_BR/resources/pages/list-records.php new file mode 100644 index 0000000..e95007d --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Listar', + +]; diff --git a/lang/vendor/filament-panels/pt_BR/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/pt_BR/resources/pages/manage-related-records.php new file mode 100644 index 0000000..4d78dc2 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Gerenciar :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/pt_BR/resources/pages/view-record.php b/lang/vendor/filament-panels/pt_BR/resources/pages/view-record.php new file mode 100644 index 0000000..49670e4 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Visualizar :label', + + 'breadcrumb' => 'Visualizar', + + 'navigation_label' => 'Visualizar', + + 'content' => [ + + 'tab' => [ + 'label' => 'Visualizar', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/pt_BR/unsaved-changes-alert.php b/lang/vendor/filament-panels/pt_BR/unsaved-changes-alert.php new file mode 100644 index 0000000..e935b05 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Você tem alterações não salvas. Tem certeza de que deseja sair desta página?', + +]; diff --git a/lang/vendor/filament-panels/pt_BR/widgets/account-widget.php b/lang/vendor/filament-panels/pt_BR/widgets/account-widget.php new file mode 100644 index 0000000..9c1b0b4 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Sair', + ], + + ], + + 'welcome' => 'Bem-vindo(a)', + +]; diff --git a/lang/vendor/filament-panels/pt_BR/widgets/filament-info-widget.php b/lang/vendor/filament-panels/pt_BR/widgets/filament-info-widget.php new file mode 100644 index 0000000..ea6f414 --- /dev/null +++ b/lang/vendor/filament-panels/pt_BR/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Documentação', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/ro/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..9826c21 --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Schimbarea adresei de email a fost blocată', + 'body' => 'Ați blocat cu succes o tentativă de schimbare a adresei de email la :email. Dacă nu ați făcut cererea inițială, vă rugăm să ne contactați imediat.', + ], + + 'failed' => [ + 'title' => 'Blocarea schimbării adresei de email a eșuat', + 'body' => 'Din păcate, nu ați putut preveni schimbarea adresei de email la :email, deoarece aceasta a fost deja verificată înainte să o blocați. Dacă nu ați făcut cererea inițială, vă rugăm să ne contactați imediat.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/ro/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..de56c07 --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Adresa de email a fost schimbată', + 'body' => 'Adresa dumneavoastră de email a fost schimbată cu succes la :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/ro/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..835f303 --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Dezactivează', + + 'modal' => [ + + 'heading' => 'Dezactivare aplicație de autentificare', + + 'description' => 'Sigur doriți să nu mai folosiți aplicația de autentificare? Dezactivarea acesteia va elimina un nivel suplimentar de securitate din contul dumneavoastră.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Introduceți codul din 6 cifre din aplicația de autentificare', + + 'validation_attribute' => 'cod', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Folosește în schimb un cod de recuperare', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Codul introdus este invalid.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Sau, introduceți un cod de recuperare', + + 'validation_attribute' => 'cod de recuperare', + + 'messages' => [ + + 'invalid' => 'Codul de recuperare introdus este invalid.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Dezactivează aplicația de autentificare', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Aplicația de autentificare a fost dezactivată', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/ro/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..8bb0c64 --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Regenerează codurile de recuperare', + + 'modal' => [ + + 'heading' => 'Regenerare coduri de recuperare pentru aplicația de autentificare', + + 'description' => 'Dacă ați pierdut codurile de recuperare, le puteți regenera aici. Codurile de recuperare vechi vor fi invalidate imediat.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Introduceți codul din 6 cifre din aplicația de autentificare', + + 'validation_attribute' => 'cod', + + 'messages' => [ + + 'invalid' => 'Codul introdus este invalid.', + + ], + + ], + + 'password' => [ + + 'label' => 'Sau, introduceți parola curentă', + + 'validation_attribute' => 'parolă', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Regenerează codurile de recuperare', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Noi coduri de recuperare au fost generate', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Coduri de recuperare noi', + + 'description' => 'Vă rugăm să salvați următoarele coduri de recuperare într-un loc sigur. Acestea vor fi afișate doar o singură dată, dar veți avea nevoie de ele dacă pierdeți accesul la aplicația de autentificare:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Închide', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/ro/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..990bdd7 --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Configurează', + + 'modal' => [ + + 'heading' => 'Configurare aplicație de autentificare', + + 'description' => <<<'BLADE' + Veți avea nevoie de o aplicație precum Google Authenticator (iOS, Android) pentru a finaliza acest proces. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Scanați acest cod QR cu aplicația de autentificare:', + + 'alt' => 'Cod QR de scanat cu o aplicație de autentificare', + + ], + + 'text_code' => [ + + 'instruction' => 'Sau introduceți acest cod manual:', + + 'messages' => [ + 'copied' => 'Copiat', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Vă rugăm să salvați următoarele coduri de recuperare într-un loc sigur. Acestea vor fi afișate doar o singură dată, dar veți avea nevoie de ele dacă pierdeți accesul la aplicația de autentificare:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Introduceți codul din 6 cifre din aplicația de autentificare', + + 'validation_attribute' => 'cod', + + 'below_content' => 'Va trebui să introduceți codul din 6 cifre din aplicația de autentificare de fiecare dată când vă autentificați sau efectuați acțiuni sensibile.', + + 'messages' => [ + + 'invalid' => 'Codul introdus este invalid.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Activează aplicația de autentificare', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Aplicația de autentificare a fost activată', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/ro/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..5c0097b --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Aplicație de autentificare', + + 'below_content' => 'Folosiți o aplicație securizată pentru a genera un cod temporar pentru verificarea autentificării.', + + 'messages' => [ + 'enabled' => 'Activat', + 'disabled' => 'Dezactivat', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Folosește un cod din aplicația de autentificare', + + 'code' => [ + + 'label' => 'Introduceți codul din 6 cifre din aplicația de autentificare', + + 'validation_attribute' => 'cod', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Folosește în schimb un cod de recuperare', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Codul introdus este invalid.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Sau, introduceți un cod de recuperare', + + 'validation_attribute' => 'cod de recuperare', + + 'messages' => [ + + 'invalid' => 'Codul de recuperare introdus este invalid.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/ro/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..ccbaef5 --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,71 @@ + 'Dezactivează', + + 'modal' => [ + + 'heading' => 'Dezactivare coduri de verificare prin email', + + 'description' => 'Sigur doriți să nu mai primiți coduri de verificare prin email? Dezactivarea acestora va elimina un nivel suplimentar de securitate din contul dumneavoastră.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Introduceți codul din 6 cifre pe care vi l-am trimis prin email', + + 'validation_attribute' => 'cod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Trimite un cod nou prin email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'V-am trimis un cod nou prin email', + ], + + 'throttled' => [ + 'title' => 'Prea multe încercări de retrimitere. Vă rugăm să așteptați înainte de a solicita alt cod.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Codul introdus este invalid.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Dezactivează codurile de verificare prin email', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Codurile de verificare prin email au fost dezactivate', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/ro/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..ce4ec00 --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,71 @@ + 'Configurează', + + 'modal' => [ + + 'heading' => 'Configurare coduri de verificare prin email', + + 'description' => 'Va trebui să introduceți codul din 6 cifre pe care vi-l trimitem prin email de fiecare dată când vă autentificați sau efectuați acțiuni sensibile. Verificați emailul pentru un cod din 6 cifre pentru a finaliza configurarea.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Introduceți codul din 6 cifre pe care vi l-am trimis prin email', + + 'validation_attribute' => 'cod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Trimite un cod nou prin email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'V-am trimis un cod nou prin email', + ], + + 'throttled' => [ + 'title' => 'Prea multe încercări de retrimitere. Vă rugăm să așteptați înainte de a solicita alt cod.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Codul introdus este invalid.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Activează codurile de verificare prin email', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Codurile de verificare prin email au fost activate', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/ro/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..f104c5d --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Iată codul dumneavoastră de autentificare', + + 'lines' => [ + 'Codul dumneavoastră de autentificare este: :code', + 'Acest cod va expira într-un minut.|Acest cod va expira în :minutes minute.', + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/ro/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..196232a --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Coduri de verificare prin email', + + 'below_content' => 'Primiți un cod temporar la adresa dumneavoastră de email pentru a vă verifica identitatea la autentificare.', + + 'messages' => [ + 'enabled' => 'Activat', + 'disabled' => 'Dezactivat', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Trimite un cod pe email', + + 'code' => [ + + 'label' => 'Introduceți codul din 6 cifre pe care vi l-am trimis prin email', + + 'validation_attribute' => 'cod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Trimite un cod nou prin email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'V-am trimis un cod nou prin email', + ], + + 'throttled' => [ + 'title' => 'Prea multe încercări de retrimitere. Vă rugăm să așteptați înainte de a solicita alt cod.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Codul introdus este invalid.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/ro/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..ebab225 --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Configurare autentificare cu doi factori (2FA)', + + 'heading' => 'Configurare autentificare cu doi factori', + + 'subheading' => '2FA adaugă un nivel suplimentar de securitate contului dumneavoastră, solicitând o a doua formă de verificare la autentificare.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Continuă', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/ro/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..c945bc1 --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Click to', + + 'copy' => [ + 'label' => 'copiază', + ], + + 'or', + + 'download' => [ + 'label' => 'descarcă', + ], + + 'all the codes at once.', + + ], + + 'messages' => [ + 'copied' => 'Copiat', + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/ro/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..0168cef --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Adresa dumneavoastră de email este în curs de schimbare', + + 'lines' => [ + 'Am primit o cerere de schimbare a adresei de email asociate contului dumneavoastră. Parola dumneavoastră a fost folosită pentru a confirma această schimbare.', + 'Odată verificată, noua adresă de email a contului dumneavoastră va fi: :email.', + 'Puteți bloca schimbarea înainte de a fi verificată făcând clic pe butonul de mai jos.', + 'Dacă nu ați făcut această cerere, vă rugăm să ne contactați imediat.', + ], + + 'action' => 'Blochează schimbarea emailului', + +]; diff --git a/lang/vendor/filament-panels/ro/auth/pages/edit-profile.php b/lang/vendor/filament-panels/ro/auth/pages/edit-profile.php new file mode 100644 index 0000000..356c65f --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'Adresă de email', + ], + + 'name' => [ + 'label' => 'Nume', + ], + + 'password' => [ + 'label' => 'Parolă nouă', + 'validation_attribute' => 'parolă', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmă parola nouă', + 'validation_attribute' => 'confirmare parolă', + ], + + 'current_password' => [ + 'label' => 'Parola curentă', + 'below_content' => 'Pentru securitate, vă rugăm să confirmați parola pentru a continua.', + 'validation_attribute' => 'parola curentă', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Salvează modificările', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Autentificare cu doi factori (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Cerere de schimbare a adresei de email trimisă', + 'body' => 'O cerere de schimbare a adresei de email a fost trimisă la :email. Vă rugăm să verificați emailul pentru a confirma schimbarea.', + ], + + 'saved' => [ + 'title' => 'Salvat cu succes', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Anulare', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/ro/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..aa5c2b3 --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Confirmă adresa de email', + + 'heading' => 'Confirmă adresa de email', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Retrimite', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Nu ai primit emailul de verificare?', + 'notification_sent' => 'S-a trimis un email la :email cu instrucțiuni pentru a confirma adresa de email.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Am retrimis emailul.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Prea multe încercări consecutive de retrimitere', + 'body' => 'Încearcă te rog din nou peste :seconds secunde.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/pages/login.php b/lang/vendor/filament-panels/ro/auth/pages/login.php new file mode 100644 index 0000000..6ffadfd --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Autentificare', + + 'heading' => 'Loghează-te în contul tau', + + 'actions' => [ + + 'register' => [ + 'before' => 'sau', + 'label' => 'creează cont', + ], + + 'request_password_reset' => [ + 'label' => 'Ai uitat parola?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'password' => [ + 'label' => 'Parola', + ], + + 'remember' => [ + 'label' => 'Ține-mă minte', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Autentificare', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Verificați-vă identitatea', + + 'subheading' => 'Pentru a continua autentificarea, trebuie să vă verificați identitatea.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Cum doriți să verificați?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Confirmă autentificarea', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Emailul sau parola nu sunt corecte.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Prea multe încercări de autentificare', + 'body' => 'Vă rugăm să încercați din nou în :seconds secunde.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/ro/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..8196d7b --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Resetează parola', + + 'heading' => 'Ai uitat parola?', + + 'actions' => [ + + 'login' => [ + 'label' => 'înapoi la autentificare', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Trimite email', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Dacă contul dumneavoastră nu există, nu veți primi emailul.', + ], + + 'throttled' => [ + 'title' => 'Prea multe încercări consecutive', + 'body' => 'Vă rugăm să încercați din nou în :seconds secunde.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/ro/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..a547566 --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Resetează parola', + + 'heading' => 'Resetează parola', + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'password' => [ + 'label' => 'Parola', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Confirmă parola', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Resetează parola', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Prea multe încercări consecutive', + 'body' => 'Încearcă te rog din nou peste :seconds secunde.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/auth/pages/register.php b/lang/vendor/filament-panels/ro/auth/pages/register.php new file mode 100644 index 0000000..9353e33 --- /dev/null +++ b/lang/vendor/filament-panels/ro/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Înregistrare', + + 'heading' => 'Creează cont', + + 'actions' => [ + + 'login' => [ + 'before' => 'sau', + 'label' => 'loghează-te în contul tau', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'name' => [ + 'label' => 'Nume', + ], + + 'password' => [ + 'label' => 'Parola', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Confirma parola', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Creează cont', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Prea multe încercări consecutive', + 'body' => 'Încearcă te rog din nou peste :seconds secunde.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/error-notifications.php b/lang/vendor/filament-panels/ro/error-notifications.php new file mode 100644 index 0000000..8239aa9 --- /dev/null +++ b/lang/vendor/filament-panels/ro/error-notifications.php @@ -0,0 +1,9 @@ + 'Eroare la încărcarea paginii', + + 'body' => 'A apărut o eroare în timpul încercării de a încărca această pagină. Vă rugăm să încercați din nou mai târziu.', + +]; diff --git a/lang/vendor/filament-panels/ro/global-search.php b/lang/vendor/filament-panels/ro/global-search.php new file mode 100644 index 0000000..dffe86b --- /dev/null +++ b/lang/vendor/filament-panels/ro/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Căutare globală', + 'placeholder' => 'Căutare', + ], + + 'no_results_message' => 'Nu s-au găsit rezultate', + +]; diff --git a/lang/vendor/filament-panels/ro/layout.php b/lang/vendor/filament-panels/ro/layout.php new file mode 100644 index 0000000..7347c58 --- /dev/null +++ b/lang/vendor/filament-panels/ro/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Gestionați abonările', + ], + + 'logout' => [ + 'label' => 'Deconectare', + ], + + 'open_database_notifications' => [ + 'label' => 'Deschideți notificările', + ], + + 'open_user_menu' => [ + 'label' => 'Meniul utilizatorului', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Restrânge bara laterală', + ], + + 'expand' => [ + 'label' => 'Extinde bara laterală', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Comutați modul întunecat', + ], + + 'light' => [ + 'label' => 'Comutați modul deschis', + ], + + 'system' => [ + 'label' => 'Activează modul de sistem', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatarul lui :name', + ], + + 'logo' => [ + 'alt' => 'Logo :name', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Căutare organizație', + 'placeholder' => 'Căutare', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/pages/dashboard.php b/lang/vendor/filament-panels/ro/pages/dashboard.php new file mode 100644 index 0000000..ab71304 --- /dev/null +++ b/lang/vendor/filament-panels/ro/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Panoul de control', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtru', + + 'modal' => [ + + 'heading' => 'Filtru', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Aplică', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/ro/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..e253d16 --- /dev/null +++ b/lang/vendor/filament-panels/ro/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Salvează modificările', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Salvat cu succes', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/resources/pages/create-record.php b/lang/vendor/filament-panels/ro/resources/pages/create-record.php new file mode 100644 index 0000000..502302e --- /dev/null +++ b/lang/vendor/filament-panels/ro/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Creare :label', + + 'breadcrumb' => 'Creare', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Anulare', + ], + + 'create' => [ + 'label' => 'Creare', + ], + + 'create_another' => [ + 'label' => 'Creați și creați altul', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Creat cu succes', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/resources/pages/edit-record.php b/lang/vendor/filament-panels/ro/resources/pages/edit-record.php new file mode 100644 index 0000000..9683516 --- /dev/null +++ b/lang/vendor/filament-panels/ro/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Editare :label', + + 'breadcrumb' => 'Editare', + + 'navigation_label' => 'Editare', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Anulare', + ], + + 'save' => [ + 'label' => 'Salvare', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Editare', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Salvat cu succes', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/resources/pages/list-records.php b/lang/vendor/filament-panels/ro/resources/pages/list-records.php new file mode 100644 index 0000000..8e9f61a --- /dev/null +++ b/lang/vendor/filament-panels/ro/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Listare', + +]; diff --git a/lang/vendor/filament-panels/ro/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/ro/resources/pages/manage-related-records.php new file mode 100644 index 0000000..b7fb443 --- /dev/null +++ b/lang/vendor/filament-panels/ro/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Gestionare :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/ro/resources/pages/view-record.php b/lang/vendor/filament-panels/ro/resources/pages/view-record.php new file mode 100644 index 0000000..68819fc --- /dev/null +++ b/lang/vendor/filament-panels/ro/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Vizualizare :label', + + 'breadcrumb' => 'Vizualizare', + + 'navigation_label' => 'Vizualizare', + + 'content' => [ + + 'tab' => [ + 'label' => 'Vizualizare', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ro/unsaved-changes-alert.php b/lang/vendor/filament-panels/ro/unsaved-changes-alert.php new file mode 100644 index 0000000..945996b --- /dev/null +++ b/lang/vendor/filament-panels/ro/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Aveți modificări nesalvate. Sigur doriți să părăsiți această pagină?', + +]; diff --git a/lang/vendor/filament-panels/ro/widgets/account-widget.php b/lang/vendor/filament-panels/ro/widgets/account-widget.php new file mode 100644 index 0000000..97caa50 --- /dev/null +++ b/lang/vendor/filament-panels/ro/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Deconectare', + ], + + ], + + 'welcome' => 'Bun venit', + +]; diff --git a/lang/vendor/filament-panels/ro/widgets/filament-info-widget.php b/lang/vendor/filament-panels/ro/widgets/filament-info-widget.php new file mode 100644 index 0000000..b2a3e44 --- /dev/null +++ b/lang/vendor/filament-panels/ro/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Documentație', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/ru/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..3d2900a --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Изменение email-адреса заблокировано', + 'body' => 'Вы успешно заблокировали попытку изменения email-адреса на :email. Если вы не делали первоначальный запрос, немедленно свяжитесь с нами.', + ], + + 'failed' => [ + 'title' => 'Не удалось заблокировать изменение email-адреса', + 'body' => 'К сожалению, вам не удалось предотвратить изменение email-адреса на :email, поскольку он уже был подтвержден до того, как вы заблокировали его. Если вы не делали первоначальный запрос, немедленно свяжитесь с нами.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/ru/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..263ff5c --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Email-адрес изменен', + 'body' => 'Ваш email-адрес успешно изменен на :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/ru/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..ae6cf9b --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Отключить', + + 'modal' => [ + + 'heading' => 'Отключить 2FA-приложение', + + 'description' => 'Вы уверены, что хотите прекратить использовать 2FA-приложение? Отключение удалит дополнительный уровень безопасности из вашей учетной записи.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Введите 6-значный код из 2FA-приложения', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Использовать код восстановления', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Введенный код неверен.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Или введите код восстановления', + + 'validation_attribute' => 'код восстановления', + + 'messages' => [ + + 'invalid' => 'Введенный код восстановления неверен.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Отключить 2FA-приложение', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => '2FA-приложение отключено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/ru/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..16b16f1 --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Создать новые коды восстановления', + + 'modal' => [ + + 'heading' => 'Создание новых кодов восстановления для 2FA-приложение', + + 'description' => 'Если вы потеряли коды восстановления, вы можете создать новые здесь. Ваши старые коды восстановления будут немедленно аннулированы.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Введите 6-значный код из 2FA-приложения', + + 'validation_attribute' => 'код', + + 'messages' => [ + + 'invalid' => 'Введенный код неверен.', + + ], + + ], + + 'password' => [ + + 'label' => 'Или введите ваш текущий пароль', + + 'validation_attribute' => 'пароль', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Создать новые коды восстановления', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Созданы новые коды восстановления для 2FA-приложения', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Новые коды восстановления', + + 'description' => 'Пожалуйста, сохраните следующие коды восстановления в безопасном месте. Они будут показаны только один раз, но понадобятся вам, если вы потеряете доступ к 2FA-приложению:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Закрыть', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/ru/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..6b87b25 --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Включить', + + 'modal' => [ + + 'heading' => 'Настройка 2FA-приложения', + + 'description' => <<<'BLADE' + Для завершения процесса вам понадобится приложение наподобие Google Authenticator (iOS, Android). + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Отсканируйте этот QR-код с помощью 2FA-приложения:', + + 'alt' => 'QR-код для сканирования 2FA-приложением', + + ], + + 'text_code' => [ + + 'instruction' => 'Или введите этот код вручную:', + + 'messages' => [ + 'copied' => 'Скопировано', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Пожалуйста, сохраните следующие коды восстановления в безопасном месте. Они будут показаны только один раз, но понадобятся вам, если вы потеряете доступ к 2FA-приложению:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Введите 6-значный код из 2FA-приложения', + + 'validation_attribute' => 'код', + + 'below_content' => 'Вам потребуется вводить 6-значный код из 2FA-приложения каждый раз при входе в систему или выполнении конфиденциальных действий.', + + 'messages' => [ + + 'invalid' => 'Введенный код неверен.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Включить 2FA-приложение', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => '2FA-приложение включено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/ru/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..fa867a3 --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => '2FA-приложение', + + 'below_content' => 'Используйте 2FA-приложение для генерации временного кода для подтверждения входа.', + + 'messages' => [ + 'enabled' => 'Включено', + 'disabled' => 'Отключено', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Используйте код из вашего 2FA-приложения', + + 'code' => [ + + 'label' => 'Введите 6-значный код из 2FA-приложения', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Использовать код восстановления', + ], + + ], + + 'messages' => [ + + 'invalid' => 'веденный код неверен.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Или введите код восстановления', + + 'validation_attribute' => 'код восстановления', + + 'messages' => [ + + 'invalid' => 'Введенный код восстановления неверен.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/ru/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..0a1eb7c --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + 'Отключить', + + 'modal' => [ + + 'heading' => 'Отключить подтверждение по email', + + 'description' => 'Вы уверены, что хотите прекратить получать коды подтверждения по email? Отключение удалит дополнительный уровень безопасности вашей учетной записи.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Введите 6-значный код, который мы отправили вам по email', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Отправить новый код по email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Мы отправили вам новый код по email', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Введенный код неверен.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Отключить подтверждение по email', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Подтверждение по email отключено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/ru/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..c357610 --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + 'Включить', + + 'modal' => [ + + 'heading' => 'Настройка подтверждения через email', + + 'description' => 'Вам потребуется вводить 6-значный код, который мы отправляем по email, каждый раз при входе в систему или выполнении конфиденциальных действий. Проверьте вашу почту на наличие 6-значного кода для завершения настройки.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Введите 6-значный код, который мы отправили вам по email', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Отправить новый код по email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Мы отправили вам новый код по email', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Введенный код неверен.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Включить подтверждение через email', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Подтверждение через email включено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/ru/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..246e2a6 --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Ваш код для входа', + + 'lines' => [ + 'Ваш код для входа: :code', + 'Этот код истечет через минуту.|Этот код истечет через :minutes мин.', + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/ru/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..915f41d --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'Подтверждение через email', + + 'below_content' => 'Получите временный код на ваш email-адрес для подтверждения при входе.', + + 'messages' => [ + 'enabled' => 'Включено', + 'disabled' => 'Отключено', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Отправить код на ваш email', + + 'code' => [ + + 'label' => 'Введите 6-значный код, который мы отправили вам по email', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Отправить новый код по email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Мы отправили вам новый код по email', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Введенный код неверен.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/ru/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..57e3e4e --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Настройка двухфакторной аутентификации (2FA)', + + 'heading' => 'Настройка двухфакторной аутентификации', + + 'subheading' => '2FA добавляет дополнительный уровень безопасности к вашей учетной записи, требуя подтверждение при входе.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Продолжить', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/ru/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..523a6a2 --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Нажмите, чтобы', + + 'copy' => [ + 'label' => 'скопировать', + ], + + 'или', + + 'download' => [ + 'label' => 'скачать', + ], + + 'все коды сразу.', + + ], + + 'messages' => [ + 'copied' => 'Скопировано', + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/ru/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..7be3734 --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Ваш email-адрес изменяется', + + 'lines' => [ + 'Мы получили запрос на изменение email-адреса, связанного с вашей учетной записью. Ваш пароль был использован для подтверждения этого изменения.', + 'После подтверждения новый email-адрес в вашей учетной записи будет: :email.', + 'Вы можете заблокировать изменение до его подтверждения, нажав кнопку ниже.', + 'Если вы не делали этот запрос, немедленно свяжитесь с нами.', + ], + + 'action' => 'Заблокировать изменение email', + +]; diff --git a/lang/vendor/filament-panels/ru/auth/pages/edit-profile.php b/lang/vendor/filament-panels/ru/auth/pages/edit-profile.php new file mode 100644 index 0000000..ff30ecf --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Профиль', + + 'form' => [ + + 'email' => [ + 'label' => 'Адрес электронной почты', + ], + + 'name' => [ + 'label' => 'Имя', + ], + + 'password' => [ + 'label' => 'Новый пароль', + 'validation_attribute' => 'пароль', + ], + + 'password_confirmation' => [ + 'label' => 'Подтвердите новый пароль', + 'validation_attribute' => 'подтверждение пароля', + ], + + 'current_password' => [ + 'label' => 'Текущий пароль', + 'below_content' => 'В целях безопасности подтвердите ваш пароль, чтобы продолжить.', + 'validation_attribute' => 'текущий пароль', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Сохранить изменения', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Двухфакторная аутентификация (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Отправлен запрос на изменение email-адреса', + 'body' => 'Запрос на изменение вашего email-адреса отправлен на :email. Проверьте вашу почту для подтверждения изменения.', + ], + + 'saved' => [ + 'title' => 'Сохранено', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'назад', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/ru/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..9b006d2 --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Подтвердите свой адрес электронной почты', + + 'heading' => 'Подтвердите свой адрес электронной почты', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Отправить еще раз', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Не получили письмо, которое мы отправили?', + 'notification_sent' => 'Мы отправили электронное письмо на адрес :email, содержащее инструкции о том, как подтвердить свой адрес электронной почты.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Мы повторно отправили электронное письмо.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Слишком много попыток повторной отправки', + 'body' => 'Пожалуйста, попробуйте еще раз через :seconds секунд.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/pages/login.php b/lang/vendor/filament-panels/ru/auth/pages/login.php new file mode 100644 index 0000000..67dabad --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Авторизоваться', + + 'heading' => 'Войдите в свой аккаунт', + + 'actions' => [ + + 'register' => [ + 'before' => 'или', + 'label' => 'зарегистрируйте учетную запись', + ], + + 'request_password_reset' => [ + 'label' => 'Забыли свой пароль?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Адрес электронной почты', + ], + + 'password' => [ + 'label' => 'Пароль', + ], + + 'remember' => [ + 'label' => 'Запомнить меня', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Войти', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Подтвердите свою личность', + + 'subheading' => 'Чтобы продолжить вход в систему, вам необходимо подтвердить свою личность.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Как бы вы хотели это подтвердить?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Вход', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Неверное имя пользователя или пароль.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Слишком много попыток входа', + 'body' => 'Пожалуйста, попробуйте еще раз через :seconds секунд.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/ru/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..14eb4e2 --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Сбросить пароль', + + 'heading' => 'Забыли свой пароль?', + + 'actions' => [ + + 'login' => [ + 'label' => 'назад на страницу входа', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Адрес электронной почты', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Отправить письмо', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Если вашего аккаунта не существует, вы не получите письмо.', + ], + + 'throttled' => [ + 'title' => 'Слишком много попыток', + 'body' => 'Пожалуйста, попробуйте еще раз через :seconds секунд.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/ru/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..1dd041b --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Сбросить пароль', + + 'heading' => 'Сбросить пароль', + + 'form' => [ + + 'email' => [ + 'label' => 'Адрес электронной почты', + ], + + 'password' => [ + 'label' => 'Пароль', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Подтвердите пароль', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Сбросить пароль', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Слишком много попыток сброса', + 'body' => 'Пожалуйста, попробуйте еще раз через :seconds секунд.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/auth/pages/register.php b/lang/vendor/filament-panels/ru/auth/pages/register.php new file mode 100644 index 0000000..5bd6e02 --- /dev/null +++ b/lang/vendor/filament-panels/ru/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Регистрация', + + 'heading' => 'Регистрация учетной записи', + + 'actions' => [ + + 'login' => [ + 'before' => 'или', + 'label' => 'войти в свой аккаунт', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Адрес электронной почты', + ], + + 'name' => [ + 'label' => 'Имя', + ], + + 'password' => [ + 'label' => 'Пароль', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Подтвердите пароль', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Зарегистрироваться', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Слишком много попыток регистрации', + 'body' => 'Пожалуйста, попробуйте еще раз через :seconds секунд.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/error-notifications.php b/lang/vendor/filament-panels/ru/error-notifications.php new file mode 100644 index 0000000..ac44800 --- /dev/null +++ b/lang/vendor/filament-panels/ru/error-notifications.php @@ -0,0 +1,9 @@ + 'Ошибка при загрузке страницы', + + 'body' => 'При попытке загрузить эту страницу произошла ошибка. Пожалуйста, повторите попытку позже.', + +]; diff --git a/lang/vendor/filament-panels/ru/global-search.php b/lang/vendor/filament-panels/ru/global-search.php new file mode 100644 index 0000000..6c9fe0f --- /dev/null +++ b/lang/vendor/filament-panels/ru/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Глобальный поиск', + 'placeholder' => 'Поиск', + ], + + 'no_results_message' => 'Ничего не найдено.', + +]; diff --git a/lang/vendor/filament-panels/ru/layout.php b/lang/vendor/filament-panels/ru/layout.php new file mode 100644 index 0000000..d6f0078 --- /dev/null +++ b/lang/vendor/filament-panels/ru/layout.php @@ -0,0 +1,62 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Управление подпиской', + ], + + 'logout' => [ + 'label' => 'Выйти', + ], + + 'open_database_notifications' => [ + 'label' => 'Открыть уведомления', + ], + + 'open_user_menu' => [ + 'label' => 'Меню пользователя', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Свернуть боковую панель', + ], + + 'expand' => [ + 'label' => 'Раскрыть боковую панель', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Включить темный режим', + ], + + 'light' => [ + 'label' => 'Включить светлый режим', + ], + + 'system' => [ + 'label' => 'Включить системный режим', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Аватар :name', + ], + + 'logo' => [ + 'alt' => 'Логотип :name', + ], +]; diff --git a/lang/vendor/filament-panels/ru/pages/dashboard.php b/lang/vendor/filament-panels/ru/pages/dashboard.php new file mode 100644 index 0000000..2b7d079 --- /dev/null +++ b/lang/vendor/filament-panels/ru/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Инфопанель', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Фильтр', + + 'modal' => [ + + 'heading' => 'Фильтр', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Применить', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/ru/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..1b31520 --- /dev/null +++ b/lang/vendor/filament-panels/ru/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Сохранить изменения', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Сохранено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/resources/pages/create-record.php b/lang/vendor/filament-panels/ru/resources/pages/create-record.php new file mode 100644 index 0000000..4ca2b3d --- /dev/null +++ b/lang/vendor/filament-panels/ru/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Создать :label', + + 'breadcrumb' => 'Создать', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Отмена', + ], + + 'create' => [ + 'label' => 'Создать', + ], + + 'create_another' => [ + 'label' => 'Создать и Создать еще', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Создано', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/resources/pages/edit-record.php b/lang/vendor/filament-panels/ru/resources/pages/edit-record.php new file mode 100644 index 0000000..55f07dd --- /dev/null +++ b/lang/vendor/filament-panels/ru/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'Редактирование :label', + + 'breadcrumb' => 'Редактирование', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Отмена', + ], + + 'save' => [ + 'label' => 'Сохранить', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Изменить', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Сохранено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/resources/pages/list-records.php b/lang/vendor/filament-panels/ru/resources/pages/list-records.php new file mode 100644 index 0000000..7f56a69 --- /dev/null +++ b/lang/vendor/filament-panels/ru/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Список', + +]; diff --git a/lang/vendor/filament-panels/ru/resources/pages/view-record.php b/lang/vendor/filament-panels/ru/resources/pages/view-record.php new file mode 100644 index 0000000..ffbe023 --- /dev/null +++ b/lang/vendor/filament-panels/ru/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'Просмотр :label', + + 'breadcrumb' => 'Просмотр', + + 'content' => [ + + 'tab' => [ + 'label' => 'Просмотр', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ru/unsaved-changes-alert.php b/lang/vendor/filament-panels/ru/unsaved-changes-alert.php new file mode 100644 index 0000000..8bd08a2 --- /dev/null +++ b/lang/vendor/filament-panels/ru/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'У вас есть несохраненные изменения. Вы уверены, что хотите покинуть эту страницу?', + +]; diff --git a/lang/vendor/filament-panels/ru/widgets/account-widget.php b/lang/vendor/filament-panels/ru/widgets/account-widget.php new file mode 100644 index 0000000..5619161 --- /dev/null +++ b/lang/vendor/filament-panels/ru/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Выход', + ], + + ], + + 'welcome' => 'Добро пожаловать', + +]; diff --git a/lang/vendor/filament-panels/ru/widgets/filament-info-widget.php b/lang/vendor/filament-panels/ru/widgets/filament-info-widget.php new file mode 100644 index 0000000..1faf2da --- /dev/null +++ b/lang/vendor/filament-panels/ru/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Документация', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/sk/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..f820369 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Zmena e-mailovej adresy bola zablokovaná', + 'body' => 'Úspešne ste zablokovali pokus o zmenu e-mailovej adresy na :email. Ak ste o zmenu nepožiadali, kontaktujte nás prosím okamžite.', + ], + + 'failed' => [ + 'title' => 'Nepodarilo sa zablokovať zmenu e-mailovej adresy', + 'body' => 'Žiaľ, nepodarilo sa Vám zabrániť zmene e-mailovej adresy na :email, pretože už bola overená pred zablokovaním. Ak ste o zmenu nepožiadali, kontaktujte nás prosím okamžite.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/sk/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..64ed538 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,10 @@ + [ + 'verified' => [ + 'title' => 'E-mailová adresa bola zmenená', + 'body' => 'Vaša e-mailová adresa bola úspešne zmenená na :email.', + ], + ], +]; diff --git a/lang/vendor/filament-panels/sk/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/sk/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..80214f5 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Vypnúť', + + 'modal' => [ + + 'heading' => 'Vypnúť overovaciu aplikáciu', + + 'description' => 'Naozaj chcete prestať používať overovaciu aplikáciu? Vypnutím odstránite ďalšiu vrstvu zabezpečenia Vášho účtu.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Zadajte 6-miestny kód z overovacej aplikácie', + + 'validation_attribute' => 'kód', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Namiesto toho použite obnovovací kód', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Zadaný kód je neplatný.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Alebo zadajte obnovovací kód', + + 'validation_attribute' => 'obnovovací kód', + + 'messages' => [ + + 'invalid' => 'Zadaný obnovovací kód je neplatný.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Vypnúť overovaciu aplikáciu', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Overovacia aplikácia bola vypnutá', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/sk/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..9345d74 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Obnoviť obnovovacie kódy', + + 'modal' => [ + + 'heading' => 'Obnoviť obnovovacie kódy pre overovaciu aplikáciu', + + 'description' => 'Ak stratíte svoje obnovovacie kódy, môžete ich tu obnoviť. Vaše staré obnovovacie kódy budú okamžite zneplatnené.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Zadajte 6-miestny kód z overovacej aplikácie', + + 'validation_attribute' => 'kód', + + 'messages' => [ + + 'invalid' => 'Zadaný kód je neplatný.', + + ], + + ], + + 'password' => [ + + 'label' => 'Alebo zadajte svoje aktuálne heslo', + + 'validation_attribute' => 'heslo', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Obnoviť obnovovacie kódy', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Boli vygenerované nové obnovovacie kódy pre overovaciu aplikáciu', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Nové obnovovacie kódy', + + 'description' => 'Uložte si nasledujúce obnovovacie kódy na bezpečné miesto. Budú zobrazené iba raz, ale budete ich potrebovať, ak stratíte prístup k svojej overovacej aplikácii:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Zavrieť', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/sk/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..05bd414 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Nastaviť', + + 'modal' => [ + + 'heading' => 'Nastaviť overovaciu aplikáciu', + + 'description' => <<<'BLADE' + Na dokončenie tohto procesu budete potrebovať aplikáciu ako Google Authenticator (iOS, Android). + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Naskenujte tento QR kód pomocou overovacej aplikácie:', + + 'alt' => 'QR kód na naskenovanie overovacou aplikáciou', + + ], + + 'text_code' => [ + + 'instruction' => 'Alebo zadajte tento kód ručne:', + + 'messages' => [ + 'copied' => 'Skopírované', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Uložte si nasledujúce záložné kódy na bezpečné miesto. Budú zobrazené iba raz, ale budete ich potrebovať, ak stratíte prístup k overovacej aplikácii:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Zadajte 6-miestny kód z overovacej aplikácie', + + 'validation_attribute' => 'kód', + + 'below_content' => 'Pri každom prihlásení alebo vykonávaní citlivých akcií budete musieť zadať 6-miestny kód z overovacej aplikácie.', + + 'messages' => [ + + 'invalid' => 'Zadaný kód je neplatný.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Povoliť overovaciu aplikáciu', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Overovacia aplikácia bola povolená', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/sk/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..7114a33 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/multi-factor/app/provider.php @@ -0,0 +1,44 @@ + [ + 'actions' => [ + 'label' => 'Overovacia aplikácia', + 'below_content' => 'Použite bezpečnú aplikáciu na generovanie dočasného kódu na overenie prihlásenia.', + 'messages' => [ + 'enabled' => 'Povolené', + 'disabled' => 'Zakázané', + ], + ], + ], + + 'login_form' => [ + 'label' => 'Použite kód zo svojej overovacej aplikácie', + + 'code' => [ + 'label' => 'Zadajte 6-miestny kód z overovacej aplikácie', + + 'validation_attribute' => 'kód', + + 'actions' => [ + 'use_recovery_code' => [ + 'label' => 'Namiesto toho použite obnovovací kód', + ], + ], + + 'messages' => [ + 'invalid' => 'Zadaný kód je neplatný.', + ], + ], + + 'recovery_code' => [ + 'label' => 'Alebo zadajte obnovovací kód', + + 'validation_attribute' => 'obnovovací kód', + + 'messages' => [ + 'invalid' => 'Zadaný obnovovací kód je neplatný.', + ], + ], + ], +]; diff --git a/lang/vendor/filament-panels/sk/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/sk/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..cfc73b9 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,70 @@ + 'Vypnúť', + + 'modal' => [ + + 'heading' => 'Vypnúť e-mailové overovacie kódy', + + 'description' => 'Naozaj chcete prestať dostávať e-mailové overovacie kódy? Vypnutím odstránite ďalšiu vrstvu zabezpečenia Vášho účtu.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Zadajte 6-miestny kód, ktorý sme Vám poslali e-mailom', + + 'validation_attribute' => 'kód', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Poslať nový kód e-mailom', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Poslali sme Vám nový kód e-mailom', + ], + + 'throttled' => [ + 'title' => 'Príliš veľa pokusov o opätovné odoslanie. Počkajte, prosím, pred ďalšou žiadosťou o kód.', + ], + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Zadaný kód je neplatný.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Vypnúť e-mailové overovacie kódy', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'E-mailové overovacie kódy boli vypnuté', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/sk/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..cece99c --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,70 @@ + 'Nastaviť', + + 'modal' => [ + + 'heading' => 'Nastaviť e-mailové overovacie kódy', + + 'description' => 'Pri každom prihlásení alebo vykonávaní citlivých akcií budete musieť zadať 6-miestny kód, ktorý Vám pošleme e-mailom. Skontrolujte svoj e-mail a zadajte 6-miestny kód na dokončenie nastavenia.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Zadajte 6-miestny kód, ktorý sme Vám poslali e-mailom', + + 'validation_attribute' => 'kód', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Poslať nový kód e-mailom', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Poslali sme Vám nový kód e-mailom', + ], + + 'throttled' => [ + 'title' => 'Príliš veľa pokusov o opätovné odoslanie. Počkajte, prosím, pred ďalšou žiadosťou o kód.', + ], + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Zadaný kód je neplatný.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Povoliť e-mailové overovacie kódy', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'E-mailové overovacie kódy boli povolené', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/sk/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..2abff48 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,10 @@ + 'Tu je Váš prihlasovací kód', + + 'lines' => [ + 'Váš prihlasovací kód je: :code', + 'Tento kód vyprší o minútu.|Tento kód vyprší o :minutes minúty.|Tento kód vyprší o :minutes minút.', + ], +]; diff --git a/lang/vendor/filament-panels/sk/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/sk/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..e6e078b --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/multi-factor/email/provider.php @@ -0,0 +1,37 @@ + [ + 'actions' => [ + 'label' => 'E-mailové overovacie kódy', + 'below_content' => 'Počas prihlásenia dostanete dočasný kód na svoju e-mailovú adresu na overenie Vašej identity.', + 'messages' => [ + 'enabled' => 'Povolené', + 'disabled' => 'Zakázané', + ], + ], + ], + 'login_form' => [ + 'label' => 'Odoslať kód na Váš e-mail', + 'code' => [ + 'label' => 'Zadajte 6-miestny kód, ktorý sme Vám poslali e-mailom', + 'validation_attribute' => 'kód', + 'actions' => [ + 'resend' => [ + 'label' => 'Odoslať nový kód e-mailom', + 'notifications' => [ + 'resent' => [ + 'title' => 'Poslali sme Vám nový kód e-mailom', + ], + 'throttled' => [ + 'title' => 'Príliš veľa pokusov o opätovné odoslanie. Počkajte, prosím, pred ďalšou žiadosťou o kód.', + ], + ], + ], + ], + 'messages' => [ + 'invalid' => 'Zadaný kód je neplatný.', + ], + ], + ], +]; diff --git a/lang/vendor/filament-panels/sk/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/sk/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..3a33518 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,15 @@ + 'Nastavte dvojfaktorové overenie (2FA)', + + 'heading' => 'Nastavte dvojfaktorové overenie', + + 'subheading' => '2FA pridáva ďalšiu úroveň zabezpečenia Vášho účtu tým, že pri prihlásení vyžaduje druhú formu overenia.', + + 'actions' => [ + 'continue' => [ + 'label' => 'Pokračovať', + ], + ], +]; diff --git a/lang/vendor/filament-panels/sk/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/sk/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..4c4fcf9 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,18 @@ + [ + 'Kliknite pre', + 'copy' => [ + 'label' => 'kopírovať', + ], + 'alebo', + 'download' => [ + 'label' => 'stiahnuť', + ], + 'všetky kódy naraz.', + ], + 'messages' => [ + 'copied' => 'Skopírované', + ], +]; diff --git a/lang/vendor/filament-panels/sk/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/sk/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..550f3f6 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,14 @@ + 'Vaša e-mailová adresa sa mení', + + 'lines' => [ + 'Obdržali sme žiadosť o zmenu e-mailovej adresy priradenej k Vášmu účtu. Na potvrdenie tejto zmeny bolo použité Vaše heslo.', + 'Po overení bude nová e-mailová adresa Vášho účtu: :email.', + 'Zmenu môžete zablokovať pred jej overením kliknutím na tlačidlo nižšie.', + 'Ak ste túto žiadosť neodoslali Vy, kontaktujte nás prosím okamžite.', + ], + + 'action' => 'Zablokovať zmenu e-mailu', +]; diff --git a/lang/vendor/filament-panels/sk/auth/pages/edit-profile.php b/lang/vendor/filament-panels/sk/auth/pages/edit-profile.php new file mode 100644 index 0000000..1de58d2 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'Emailová adresa', + ], + + 'name' => [ + 'label' => 'Meno', + ], + + 'password' => [ + 'label' => 'Nové heslo', + 'validation_attribute' => 'heslo', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrdiť nové heslo', + 'validation_attribute' => 'potvrdenie hesla', + ], + + 'current_password' => [ + 'label' => 'Aktuálne heslo', + 'below_content' => 'Z dôvodu bezpečnosti potvrďte svoje heslo pre pokračovanie.', + 'validation_attribute' => 'aktuálne heslo', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Uložiť zmeny', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Dvojfaktorové overenie (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Požiadavka na zmenu e-mailovej adresy bola odoslaná', + 'body' => 'Požiadavka na zmenu Vašej e-mailovej adresy bola odoslaná na :email. Skontrolujte si e-mail a overte zmenu.', + ], + + 'saved' => [ + 'title' => 'Uložené', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Zrušiť', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/sk/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..6fe5642 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Potvrďte svoju emailovú adresu', + + 'heading' => 'Potvrďte svoju emailovú adresu', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Odoslať znovu', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Nedostali ste email?', + 'notification_sent' => 'Poslali sme email na adresu :email s inštrukciami na overenie emailovej adresy.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Znovu sme odoslali email.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Príliš veľa pokusov', + 'body' => 'Vyskúšajte to znovu o :seconds sekúnd.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/auth/pages/login.php b/lang/vendor/filament-panels/sk/auth/pages/login.php new file mode 100644 index 0000000..0a8b6b2 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Prihlásenie', + + 'heading' => 'Prihláste sa', + + 'actions' => [ + + 'register' => [ + 'before' => 'alebo', + 'label' => 'si založte účet', + ], + + 'request_password_reset' => [ + 'label' => 'Zabudnuté heslo?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Emailová adresa', + ], + + 'password' => [ + 'label' => 'Heslo', + ], + + 'remember' => [ + 'label' => 'Zapamätať si prihlásenie', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Prihlásiť sa', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Overte svoju identitu', + + 'subheading' => 'Na pokračovanie prihlásenia musíte overiť svoju identitu.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Ako si želáte overiť svoju identitu?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Potvrdiť prihlásenie', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Zadané údaje sú nesprávne.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Príliš veľa pokusov o prihlásenie', + 'body' => 'Prosím počkajte :seconds sekúnd.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/sk/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..19a78b0 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Obnovte svoje heslo', + + 'heading' => 'Zabudli ste svoje heslo?', + + 'actions' => [ + + 'login' => [ + 'label' => 'späť na prihlásenie', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Emailová adresa', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Odoslať email', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Ak Váš účet neexistuje, e-mail nedostanete.', + ], + + 'throttled' => [ + 'title' => 'Príliš veľa pokusov', + 'body' => 'Prosím skúste to znovu o :seconds sekúnd.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/sk/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..a1cbcb2 --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Obnovte svoje heslo', + + 'heading' => 'Obnovte svoje heslo', + + 'form' => [ + + 'email' => [ + 'label' => 'Emailová adresa', + ], + + 'password' => [ + 'label' => 'Heslo', + 'validation_attribute' => 'heslo', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrdenie hesla', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Obnoviť heslo', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Príliš veľa pokusov', + 'body' => 'Prosím skúste to znovu o :seconds sekúnd.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/auth/pages/register.php b/lang/vendor/filament-panels/sk/auth/pages/register.php new file mode 100644 index 0000000..a876c2d --- /dev/null +++ b/lang/vendor/filament-panels/sk/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Registrácia', + + 'heading' => 'Registrujte sa', + + 'actions' => [ + + 'login' => [ + 'before' => 'alebo', + 'label' => 'sa prihláste do svojho účtu', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Emailová adresa', + ], + + 'name' => [ + 'label' => 'Meno', + ], + + 'password' => [ + 'label' => 'Heslo', + 'validation_attribute' => 'heslo', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrdenie hesla', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Prihlásiť sa', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Príliš veľa pokusov o registráciu', + 'body' => 'Prosím vyskúšajte to o :seconds sekúnd.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/error-notifications.php b/lang/vendor/filament-panels/sk/error-notifications.php new file mode 100644 index 0000000..39abf0f --- /dev/null +++ b/lang/vendor/filament-panels/sk/error-notifications.php @@ -0,0 +1,8 @@ + 'Chyba pri načítaní stránky', + + 'body' => 'Pri pokuse o načítanie tejto stránky došlo k chybe. Skúste to prosím neskôr.', + +]; diff --git a/lang/vendor/filament-panels/sk/global-search.php b/lang/vendor/filament-panels/sk/global-search.php new file mode 100644 index 0000000..9762a0c --- /dev/null +++ b/lang/vendor/filament-panels/sk/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Vyhľadávanie', + 'placeholder' => 'Hľadať', + ], + + 'no_results_message' => 'Nenašli sa žiadne výsledky.', + +]; diff --git a/lang/vendor/filament-panels/sk/layout.php b/lang/vendor/filament-panels/sk/layout.php new file mode 100644 index 0000000..c3812e8 --- /dev/null +++ b/lang/vendor/filament-panels/sk/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Spravovať predplatné', + ], + + 'logout' => [ + 'label' => 'Odhlásiť sa', + ], + + 'open_database_notifications' => [ + 'label' => 'Zobraziť notifikácie', + ], + + 'open_user_menu' => [ + 'label' => 'Používateľské menu', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Schovať bočný panel', + ], + + 'expand' => [ + 'label' => 'Otvoriť bočný panel', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Zapnúť tmavý režim', + ], + + 'light' => [ + 'label' => 'Zapnúť svetlý režim', + ], + + 'system' => [ + 'label' => 'Zapnúť systémový režim', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Profilový obrázok pre :name', + ], + + 'logo' => [ + 'alt' => ':name logo', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Vyhľadávanie nájomcu', + 'placeholder' => 'Hľadať', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/pages/dashboard.php b/lang/vendor/filament-panels/sk/pages/dashboard.php new file mode 100644 index 0000000..15fdea4 --- /dev/null +++ b/lang/vendor/filament-panels/sk/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Nástenka', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtre', + + 'modal' => [ + + 'heading' => 'Filtre', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Použiť', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/sk/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..de61824 --- /dev/null +++ b/lang/vendor/filament-panels/sk/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Uložiť zmeny', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Uložené', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/resources/pages/create-record.php b/lang/vendor/filament-panels/sk/resources/pages/create-record.php new file mode 100644 index 0000000..d13d1eb --- /dev/null +++ b/lang/vendor/filament-panels/sk/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Vytvoriť :label', + + 'breadcrumb' => 'Vytvoriť', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Zrušiť', + ], + + 'create' => [ + 'label' => 'Vytvoriť', + ], + + 'create_another' => [ + 'label' => 'Vytvoriť & vytvoriť ďalší', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Vytvorené', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/resources/pages/edit-record.php b/lang/vendor/filament-panels/sk/resources/pages/edit-record.php new file mode 100644 index 0000000..5148166 --- /dev/null +++ b/lang/vendor/filament-panels/sk/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Upraviť :label', + + 'breadcrumb' => 'Upraviť', + + 'navigation_label' => 'Upraviť', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Zrušiť', + ], + + 'save' => [ + 'label' => 'Uložiť', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Upraviť', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Uložené', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/resources/pages/list-records.php b/lang/vendor/filament-panels/sk/resources/pages/list-records.php new file mode 100644 index 0000000..9f779db --- /dev/null +++ b/lang/vendor/filament-panels/sk/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Prehľad', + +]; diff --git a/lang/vendor/filament-panels/sk/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/sk/resources/pages/manage-related-records.php new file mode 100644 index 0000000..39b6e4e --- /dev/null +++ b/lang/vendor/filament-panels/sk/resources/pages/manage-related-records.php @@ -0,0 +1,6 @@ + 'Spravovať :label :relationship', +]; diff --git a/lang/vendor/filament-panels/sk/resources/pages/view-record.php b/lang/vendor/filament-panels/sk/resources/pages/view-record.php new file mode 100644 index 0000000..bffb192 --- /dev/null +++ b/lang/vendor/filament-panels/sk/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Zobraziť :label', + + 'breadcrumb' => 'Detail', + + 'navigation_label' => 'Detail', + + 'content' => [ + + 'tab' => [ + 'label' => 'Zobraziť', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sk/unsaved-changes-alert.php b/lang/vendor/filament-panels/sk/unsaved-changes-alert.php new file mode 100644 index 0000000..3372c1d --- /dev/null +++ b/lang/vendor/filament-panels/sk/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Máte neuložené zmeny. Naozaj chcete opustiť túto stránku?', + +]; diff --git a/lang/vendor/filament-panels/sk/widgets/account-widget.php b/lang/vendor/filament-panels/sk/widgets/account-widget.php new file mode 100644 index 0000000..b8eb34a --- /dev/null +++ b/lang/vendor/filament-panels/sk/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Odhlásiť sa', + ], + + ], + + 'welcome' => 'Vitajte', + +]; diff --git a/lang/vendor/filament-panels/sk/widgets/filament-info-widget.php b/lang/vendor/filament-panels/sk/widgets/filament-info-widget.php new file mode 100644 index 0000000..baea698 --- /dev/null +++ b/lang/vendor/filament-panels/sk/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentácia', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sl/auth/pages/edit-profile.php b/lang/vendor/filament-panels/sl/auth/pages/edit-profile.php new file mode 100644 index 0000000..1613f2f --- /dev/null +++ b/lang/vendor/filament-panels/sl/auth/pages/edit-profile.php @@ -0,0 +1,51 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'E-poštni naslov', + ], + + 'name' => [ + 'label' => 'Ime', + ], + + 'password' => [ + 'label' => 'Novo geslo', + ], + + 'password_confirmation' => [ + 'label' => 'Potrdite novo geslo', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Shrani spremembe', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Shranjeno', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Prekliči', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sl/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/sl/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..560e061 --- /dev/null +++ b/lang/vendor/filament-panels/sl/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Potrdite svoj e-poštni naslov', + + 'heading' => 'Potrdite svoj e-poštni naslov', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Ponovno pošlji', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Niste prejeli e-pošte, ki smo vam jo poslali?', + 'notification_sent' => 'Poslali smo e-poštno sporočilo na :email z navodili, kako potrditi svoj e-poštni naslov.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Ponovno smo poslali e-poštno sporočilo.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Preveč poskusov ponovnega pošiljanja', + 'body' => 'Poskusite znova čez :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sl/auth/pages/login.php b/lang/vendor/filament-panels/sl/auth/pages/login.php new file mode 100644 index 0000000..71521b1 --- /dev/null +++ b/lang/vendor/filament-panels/sl/auth/pages/login.php @@ -0,0 +1,61 @@ + 'Prijava', + + 'heading' => 'Prijava', + + 'actions' => [ + + 'register' => [ + 'before' => 'ali', + 'label' => 'ustvarite račun', + ], + + 'request_password_reset' => [ + 'label' => 'Ste pozabili geslo?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-poštni naslov', + ], + + 'password' => [ + 'label' => 'Geslo', + ], + + 'remember' => [ + 'label' => 'Zapomni si me', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Prijava', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Ti podatki se ne ujemajo z našimi.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Preveč poskusov prijave', + 'body' => 'Poskusite znova čez :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sl/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/sl/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..3b5ca62 --- /dev/null +++ b/lang/vendor/filament-panels/sl/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'Ponastavite svoje geslo', + + 'heading' => 'Ste pozabili geslo?', + + 'actions' => [ + + 'login' => [ + 'label' => 'nazaj na prijavo', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-poštni naslov', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Pošlji e-pošto', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Preveč zahtevkov', + 'body' => 'Prosimo, poskusite znova čez :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sl/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/sl/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..367d571 --- /dev/null +++ b/lang/vendor/filament-panels/sl/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Ponastavite svoje geslo', + + 'heading' => 'Ponastavite svoje geslo', + + 'form' => [ + + 'email' => [ + 'label' => 'E-poštni naslov', + ], + + 'password' => [ + 'label' => 'Geslo', + 'validation_attribute' => 'geslo', + ], + + 'password_confirmation' => [ + 'label' => 'Potrdite geslo', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Ponastavi geslo', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Preveč poskusov ponastavitve', + 'body' => 'Poskusite znova čez :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sl/auth/pages/register.php b/lang/vendor/filament-panels/sl/auth/pages/register.php new file mode 100644 index 0000000..f69916a --- /dev/null +++ b/lang/vendor/filament-panels/sl/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Registracija', + + 'heading' => 'Registracija', + + 'actions' => [ + + 'login' => [ + 'before' => 'ali', + 'label' => 'prijavite se v svoj račun', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-poštni naslov', + ], + + 'name' => [ + 'label' => 'Ime', + ], + + 'password' => [ + 'label' => 'Geslo', + 'validation_attribute' => 'geslo', + ], + + 'password_confirmation' => [ + 'label' => 'Potrdite geslo', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Registracija', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Preveč poskusov registracije', + 'body' => 'Poskusite znova čez :seconds sekund.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sl/global-search.php b/lang/vendor/filament-panels/sl/global-search.php new file mode 100644 index 0000000..03ab0dc --- /dev/null +++ b/lang/vendor/filament-panels/sl/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Globalno iskanje', + 'placeholder' => 'Iskanje', + ], + + 'no_results_message' => 'Ni rezultatov iskanja..', + +]; diff --git a/lang/vendor/filament-panels/sl/layout.php b/lang/vendor/filament-panels/sl/layout.php new file mode 100644 index 0000000..2672e70 --- /dev/null +++ b/lang/vendor/filament-panels/sl/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Upravljanje naročnine', + ], + + 'logout' => [ + 'label' => 'Odjava', + ], + + 'open_database_notifications' => [ + 'label' => 'Odpri obvestila', + ], + + 'open_user_menu' => [ + 'label' => 'Uporabniški meni', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Strni stranski meni', + ], + + 'expand' => [ + 'label' => 'Razširi stranski meni', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Omogoči temno temo', + ], + + 'light' => [ + 'label' => 'Omogoči svetlo temo', + ], + + 'system' => [ + 'label' => 'Omogoči sistemsko temo', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar uporabnika :name', + ], + + 'logo' => [ + 'alt' => 'Logotip :name', + ], + +]; diff --git a/lang/vendor/filament-panels/sl/pages/dashboard.php b/lang/vendor/filament-panels/sl/pages/dashboard.php new file mode 100644 index 0000000..fe2a159 --- /dev/null +++ b/lang/vendor/filament-panels/sl/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Nadzorna plošča', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filter', + + 'modal' => [ + + 'heading' => 'Filter', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Uporabi', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sl/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/sl/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..119de28 --- /dev/null +++ b/lang/vendor/filament-panels/sl/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Shrani spremembe', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Shranjeno', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sl/resources/pages/create-record.php b/lang/vendor/filament-panels/sl/resources/pages/create-record.php new file mode 100644 index 0000000..e00e455 --- /dev/null +++ b/lang/vendor/filament-panels/sl/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Ustvari :label', + + 'breadcrumb' => 'Ustvari', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Prekliči', + ], + + 'create' => [ + 'label' => 'Ustvari', + ], + + 'create_another' => [ + 'label' => 'Ustvari in ustvari novega', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Ustvarjeno', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sl/resources/pages/edit-record.php b/lang/vendor/filament-panels/sl/resources/pages/edit-record.php new file mode 100644 index 0000000..5e36498 --- /dev/null +++ b/lang/vendor/filament-panels/sl/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'Uredi :label', + + 'breadcrumb' => 'Uredi', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Prekliči', + ], + + 'save' => [ + 'label' => 'Shrani spremembe', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Uredi', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Shranjeno', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sl/resources/pages/list-records.php b/lang/vendor/filament-panels/sl/resources/pages/list-records.php new file mode 100644 index 0000000..bb0285a --- /dev/null +++ b/lang/vendor/filament-panels/sl/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Seznam', + +]; diff --git a/lang/vendor/filament-panels/sl/resources/pages/view-record.php b/lang/vendor/filament-panels/sl/resources/pages/view-record.php new file mode 100644 index 0000000..09772af --- /dev/null +++ b/lang/vendor/filament-panels/sl/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'Prikaži :label', + + 'breadcrumb' => 'Prikaži', + + 'content' => [ + + 'tab' => [ + 'label' => 'Prikaži', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sl/unsaved-changes-alert.php b/lang/vendor/filament-panels/sl/unsaved-changes-alert.php new file mode 100644 index 0000000..10d7973 --- /dev/null +++ b/lang/vendor/filament-panels/sl/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Imate neshranjene spremembe. Ali ste prepričani, da želite zapustiti to stran?', + +]; diff --git a/lang/vendor/filament-panels/sl/widgets/account-widget.php b/lang/vendor/filament-panels/sl/widgets/account-widget.php new file mode 100644 index 0000000..d459dcc --- /dev/null +++ b/lang/vendor/filament-panels/sl/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Odjava', + ], + + ], + + 'welcome' => 'Dobrodošli', + +]; diff --git a/lang/vendor/filament-panels/sl/widgets/filament-info-widget.php b/lang/vendor/filament-panels/sl/widgets/filament-info-widget.php new file mode 100644 index 0000000..d770c7e --- /dev/null +++ b/lang/vendor/filament-panels/sl/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentacija', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sq/auth/pages/edit-profile.php b/lang/vendor/filament-panels/sq/auth/pages/edit-profile.php new file mode 100644 index 0000000..e218412 --- /dev/null +++ b/lang/vendor/filament-panels/sq/auth/pages/edit-profile.php @@ -0,0 +1,51 @@ + 'Profili', + + 'form' => [ + + 'email' => [ + 'label' => 'Emaili', + ], + + 'name' => [ + 'label' => 'Emri', + ], + + 'password' => [ + 'label' => 'Fjalëkalim i ri', + ], + + 'password_confirmation' => [ + 'label' => 'Konfirmo fjalëkalimin e ri', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Ruaj ndryshimet', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'U ruajt', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Mbrapa', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sq/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/sq/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..0733eaf --- /dev/null +++ b/lang/vendor/filament-panels/sq/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Verifikoni adresën tuaj të emailit', + + 'heading' => 'Verifikoni adresën tuaj të emailit', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Ridërgojeni', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Nuk e morët emailin që dërguam?', + 'notification_sent' => 'Ne kemi dërguar një email në :email që përmban udhëzime se si të verifikoni adresën tuaj të emailit.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Ne e kemi ridërguar emailin.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Shumë përpjekje për ridërgim', + 'body' => 'Ju lutemi provoni përsëri në :seconds sekonda.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sq/auth/pages/login.php b/lang/vendor/filament-panels/sq/auth/pages/login.php new file mode 100644 index 0000000..395e769 --- /dev/null +++ b/lang/vendor/filament-panels/sq/auth/pages/login.php @@ -0,0 +1,61 @@ + 'Hyr', + + 'heading' => 'Hyr', + + 'actions' => [ + + 'register' => [ + 'before' => 'ose', + 'label' => 'rregjistro një llogari të re', + ], + + 'request_password_reset' => [ + 'label' => 'Keni harruar fjalëkalimin?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Email', + ], + + 'password' => [ + 'label' => 'Fjalëkalimin', + ], + + 'remember' => [ + 'label' => 'Mbaj mend fjalëkalimin', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Hyr', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Këto kredenciale nuk përputhen me të dhënat tona.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Shumë përpjekje për hyrje', + 'body' => 'Ju lutemi provoni përsëri në :seconds sekonda.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sq/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/sq/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..ece3ba2 --- /dev/null +++ b/lang/vendor/filament-panels/sq/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'Rivendosni fjalëkalimin tuaj', + + 'heading' => 'Keni harruar fjalekalimin tuaj?', + + 'actions' => [ + + 'login' => [ + 'label' => 'kthehu te identifikohesh', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e emailit', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Dërgoni një email', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Shumë kërkesa', + 'body' => 'Ju lutemi provoni përsëri në :seconds sekonda.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sq/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/sq/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..f9e0c1d --- /dev/null +++ b/lang/vendor/filament-panels/sq/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Rivendosni fjalëkalimin tuaj', + + 'heading' => 'Rivendosni fjalëkalimin tuaj', + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e emailit', + ], + + 'password' => [ + 'label' => 'Fjalëkalimi', + 'validation_attribute' => 'fjalëkalimi', + ], + + 'password_confirmation' => [ + 'label' => 'Konfirmo fjalëkalimin', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Rivendosni fjalëkalimin', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Shumë përpjekje për rivendosje', + 'body' => 'Ju lutemi provoni përsëri në :seconds sekonda.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sq/auth/pages/register.php b/lang/vendor/filament-panels/sq/auth/pages/register.php new file mode 100644 index 0000000..7c63378 --- /dev/null +++ b/lang/vendor/filament-panels/sq/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Regjistrohu', + + 'heading' => 'Regjistrohu', + + 'actions' => [ + + 'login' => [ + 'before' => 'ose', + 'label' => 'hyni në llogarinë tuaj', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e emailit', + ], + + 'name' => [ + 'label' => 'Emri', + ], + + 'password' => [ + 'label' => 'Fjalëkalimi', + 'validation_attribute' => 'fjalëkalimi', + ], + + 'password_confirmation' => [ + 'label' => 'Konfirmo fjalëkalimin', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Regjistrohu', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Too many registration attempts', + 'body' => 'Please try again in :seconds seconds.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sq/global-search.php b/lang/vendor/filament-panels/sq/global-search.php new file mode 100644 index 0000000..01c5db1 --- /dev/null +++ b/lang/vendor/filament-panels/sq/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Kërkim global', + 'placeholder' => 'Kërko', + ], + + 'no_results_message' => 'Nuk u gjet asnjë result.', + +]; diff --git a/lang/vendor/filament-panels/sq/layout.php b/lang/vendor/filament-panels/sq/layout.php new file mode 100644 index 0000000..3878f30 --- /dev/null +++ b/lang/vendor/filament-panels/sq/layout.php @@ -0,0 +1,55 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Menaxho abonimin', + ], + + 'logout' => [ + 'label' => 'Dil', + ], + + 'open_database_notifications' => [ + 'label' => 'Hap njoftimet', + ], + + 'open_user_menu' => [ + 'label' => 'Menuja e përdoruesit', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Mbyll menunë', + ], + + 'expand' => [ + 'label' => 'Hap menunë', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Aktivizo template-in e errët', + ], + + 'light' => [ + 'label' => 'Aktivizo template-in e shndritshëm', + ], + + 'system' => [ + 'label' => 'Aktivizo template-in e sistemit', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sq/pages/dashboard.php b/lang/vendor/filament-panels/sq/pages/dashboard.php new file mode 100644 index 0000000..ef79838 --- /dev/null +++ b/lang/vendor/filament-panels/sq/pages/dashboard.php @@ -0,0 +1,7 @@ + 'Faqja Kryesore', + +]; diff --git a/lang/vendor/filament-panels/sq/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/sq/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..0350bcc --- /dev/null +++ b/lang/vendor/filament-panels/sq/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Ruaj ndryshimet', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Ruaj', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sq/resources/pages/create-record.php b/lang/vendor/filament-panels/sq/resources/pages/create-record.php new file mode 100644 index 0000000..095e612 --- /dev/null +++ b/lang/vendor/filament-panels/sq/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Krijo :label', + + 'breadcrumb' => 'Krijo', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Anulo', + ], + + 'create' => [ + 'label' => 'Krijo', + ], + + 'create_another' => [ + 'label' => 'Krijo & krijo një tjetër', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'U krijua', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sq/resources/pages/edit-record.php b/lang/vendor/filament-panels/sq/resources/pages/edit-record.php new file mode 100644 index 0000000..3fd46c2 --- /dev/null +++ b/lang/vendor/filament-panels/sq/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'Modifiko :label', + + 'breadcrumb' => 'Modifiko', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Anulo', + ], + + 'save' => [ + 'label' => 'Ruaj ndryshimet', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Modifiko', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'U ruajt', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sq/resources/pages/list-records.php b/lang/vendor/filament-panels/sq/resources/pages/list-records.php new file mode 100644 index 0000000..aafc311 --- /dev/null +++ b/lang/vendor/filament-panels/sq/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Listo', + +]; diff --git a/lang/vendor/filament-panels/sq/resources/pages/view-record.php b/lang/vendor/filament-panels/sq/resources/pages/view-record.php new file mode 100644 index 0000000..ed2b8e4 --- /dev/null +++ b/lang/vendor/filament-panels/sq/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'Pamje :label', + + 'breadcrumb' => 'Pamje', + + 'content' => [ + + 'tab' => [ + 'label' => 'Pamje', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sq/widgets/account-widget.php b/lang/vendor/filament-panels/sq/widgets/account-widget.php new file mode 100644 index 0000000..c7ec310 --- /dev/null +++ b/lang/vendor/filament-panels/sq/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Dil', + ], + + ], + + 'welcome' => 'Mirë se vini', + +]; diff --git a/lang/vendor/filament-panels/sq/widgets/filament-info-widget.php b/lang/vendor/filament-panels/sq/widgets/filament-info-widget.php new file mode 100644 index 0000000..e559504 --- /dev/null +++ b/lang/vendor/filament-panels/sq/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Documentation', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/sr_Cyrl/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..188a47f --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Блокирана је измена адресе е-поште', + 'body' => 'Успешно сте блокирали измену адресе е-поште на :email. Одмах нас контактирајте уколико нисте упутили овај захтев.', + ], + + 'failed' => [ + 'title' => 'Неуспешно блокирање измене адресе е-поште', + 'body' => 'Нажалост, нисте успели да спречите измену адресе е-поште на :email, зато што је већ потврђена пре блокирања. Одмах нас контактирајте уколико нисте упутили овај захтев.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/sr_Cyrl/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..9ec858a --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Адреса е-поште је измењена', + 'body' => 'Ваша адреса е-поште је успешно измењена на :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..ce58f05 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Искључи', + + 'modal' => [ + + 'heading' => 'Искључивање апликације за аутентификацију', + + 'description' => 'Да ли сте сигурни да желите да искључите апликацију за аутентификацију? Искључивање ће уклонити додатни ниво заштите вашег налога.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Унесите код од 6 цифара из апликације за аутентификацију', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Користите код за опоравак', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Код који сте унели није исправан.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Или унесите код за опоравак', + + 'validation_attribute' => 'код за опоравак', + + 'messages' => [ + + 'invalid' => 'Код за опоравак који сте унели није исправан.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Искључи апликацију за аутентификацију', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Апликација за аутентификацију је искључена', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..d39f71a --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Поново генеришите кодове за опоравак', + + 'modal' => [ + + 'heading' => 'Поново генеришите кодове за опоравак апликације за аутентификацију', + + 'description' => 'Ако изгубите кодове за опоравак, може да их поново генеришите овде. Након ове акције ваши стари кодови за опоравак биће неважећи.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Унесите код од 6 цифара из апликације за аутентификацију', + + 'validation_attribute' => 'код', + + 'messages' => [ + + 'invalid' => 'Код који сте унели није исправан.', + + ], + + ], + + 'password' => [ + + 'label' => 'Или унесите тренутну лозинку', + + 'validation_attribute' => 'лозинка', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Поново генеришите кодове за опоравак', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Нови кодови за опоравак апликације за аутентификацију су генерисани', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Нови кодови за опоравак', + + 'description' => 'Чувајте ове кодове за опоравак на безбедном месту. Они ће бити приказани само једном, али ће бити неопходни ако изгубите приступ апликацији за аутентификацију.', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Затвори', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..d8abc82 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Поставка', + + 'modal' => [ + + 'heading' => 'Поставка апликације за аутентификацију', + + 'description' => <<<'BLADE' + Неопходна је апликација за аутентификацију попут Google Authenticator (iOS, Android) да бисте наставили. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Скенирајте QR код помоћу апликације за аутентификацију:', + + 'alt' => 'QR за аутентификацију', + + ], + + 'text_code' => [ + + 'instruction' => 'Или ручно унесите овај код:', + + 'messages' => [ + 'copied' => 'Копирано', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Чувајте ове кодове за опоравак на безбедном месту. Они ће бити приказани само једном, али ће бити неопходни ако изгубите приступ апликацији за аутентификацију:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Унесите код од 6 цифара из апликације за аутентификацију', + + 'validation_attribute' => 'код', + + 'below_content' => 'Потребно је унети код од 6 цифара из апликације за аутентификацију сваки пут кад се пријављујете или извршавате осетљиве акције.', + + 'messages' => [ + + 'invalid' => 'Код који сте унели није исправан.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Омогући апликацију за аутентификацију', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Апликације за аутентификацију је омогућена', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..349d2b4 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Апликација за аутентификацију', + + 'below_content' => 'Користите сигурносну апликацију за генерисање привременог кода за верификацију пријаве.', + + 'messages' => [ + 'enabled' => 'Укључено', + 'disabled' => 'Искључено', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Унесите код из апликације за аутентификацију', + + 'code' => [ + + 'label' => 'Унесите код од 6 цифара из апликације за аутентификацију', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Користите код за опоравак', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Код који сте унели није исправан.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Или унесите код за опоравак', + + 'validation_attribute' => 'код за опоравак', + + 'messages' => [ + + 'invalid' => 'Код за опоравак који сте унели није исправан.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..c927709 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,70 @@ + 'Искључи', + + 'modal' => [ + + 'heading' => 'Искључивање кодове за верификацију е-поштом', + + 'description' => 'Да ли сте сигурни да желите да престанете да добијате верификационе кодове е-поштом? Искључивање ће уклонити додатни ниво заштите вашег налога.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Унесите код од 6 цифара послат на вашу е-пошту', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Пошаљите нови код е-поштом', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Послали смо вам нови код е-поштом', + ], + + 'throttled' => [ + 'title' => 'Превише покушаја. Молим сачекајте пре него поново затражите код.', + ], + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Код који сте унели није исправан.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Искључивање кодове верификације е-поштом', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Слање кодова верификације е-поштом је искључено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..69297fc --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,70 @@ + 'Поставка', + + 'modal' => [ + + 'heading' => 'Поставка верификационих кодова е-поште', + + 'description' => 'Мораћете да уносите код од 6 цифара послат на вашу е-пошту сваки пут кад се пријављујете или извршавате осетљиве акције. Проверите вашу е-пошту за код од 6 цифара да бисте завршили поставку.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Унесите код од 6 цифара послат на вашу е-пошту', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Пошаљите нови код е-поштом', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Послаћемо вам нови код е-поштом', + ], + + 'throttled' => [ + 'title' => 'Превише покушаја. Молим сачекајте пре него поново затражите код.', + ], + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Код који сте унели није исправан.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Омогућите кодове верификације е-поштом', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Кодови верификације е-поштом су омогућени', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..dcbcc99 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Ово је ваш код за пријаву', + + 'lines' => [ + 'Ваш код за пријаву је: :code', + 'Овај код истиче за минут.|Овај код истиче за :minutes минута.', + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..d6eaa65 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Кодови за верификацију е-поштом', + + 'below_content' => 'Прими привремени код на вашу адресу е-поште да бисте верификовали идентитет при пријави.', + + 'messages' => [ + 'enabled' => 'Укључено', + 'disabled' => 'Искључено', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Пошаљите код на вашу адресу е-поште', + + 'code' => [ + + 'label' => 'Унесите код од 6 цифара послат на вашу адресу е-поште', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Пошаљите нови код е-поштом', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Послали смо вам нови код е-поштом', + ], + + 'throttled' => [ + 'title' => 'Превише покушаја. Молим сачекајте пре него поново затражите код.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Код који сте унели није исправан.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..87545e5 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Постави двоструку аутентификацију (2FA)', + + 'heading' => 'Поставка двоструке аутентификације', + + 'subheading' => '2FA додаје додатни ниво заштите вашег налога тако што захтева додатни начин верификације вашег налога приликом пријаве.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Наставак', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..1ec6db0 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Кликни на', + + 'copy' => [ + 'label' => 'копирај', + ], + + 'или', + + 'download' => [ + 'label' => 'преузми', + ], + + 'све кодове од једном', + + ], + + 'messages' => [ + 'copied' => 'Копирано', + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/sr_Cyrl/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..00310e2 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Ваша адреса е-поште је промењена', + + 'lines' => [ + 'Добили смо захтев за промену адресе е-поште. Ваша лозинка је употребљена за потврду промене.', + 'Кад буде потврђена, нова адреса е-поште на вашем налогу ће бити: :email.', + 'Можете блокирати промену пре потврђења кликом да дугме испод.', + 'Одмах нас обавестите ако ви нисте поднели ово захтев.', + ], + + 'action' => 'Блокирај измену адресе е-поште', + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/pages/edit-profile.php b/lang/vendor/filament-panels/sr_Cyrl/auth/pages/edit-profile.php new file mode 100644 index 0000000..1dfcfee --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Профил', + + 'form' => [ + + 'email' => [ + 'label' => 'Адреса е-поште', + ], + + 'name' => [ + 'label' => 'Име', + ], + + 'password' => [ + 'label' => 'Нова лозинка', + 'validation_attribute' => 'лозинка', + ], + + 'password_confirmation' => [ + 'label' => 'Потврдите нову лозинку', + 'validation_attribute' => 'потврда лозинке', + ], + + 'current_password' => [ + 'label' => 'Тренутна лозинка', + 'below_content' => 'Због безбедности морате да потврдите лозинку за наставак.', + 'validation_attribute' => 'тренутна лозинка', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Сачувај измене', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Двострука аутентификација (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Захтев за измену адресе е-поште је послат', + 'body' => 'Захтев за измену адресе е-поште је послат на :email. Проверите своју е-пошту како би верификовали промену.', + ], + + 'saved' => [ + 'title' => 'Сачувано', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Одустани', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/sr_Cyrl/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..f61965a --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Верификација адресе ваше е-поште', + + 'heading' => 'Верификација адресе ваше е-поште', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Поново пошаљи', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Још увек нисте примили е-пошту?', + 'notification_sent' => 'Послали смо поруку на :email са инструкцијама за верификацију адресе ваше е-поште.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Поново смо послали поруку.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Превише поновних слања', + 'body' => 'Покушајте поново за :seconds s.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/pages/login.php b/lang/vendor/filament-panels/sr_Cyrl/auth/pages/login.php new file mode 100644 index 0000000..3de578c --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Пријава', + + 'heading' => 'Пријава', + + 'actions' => [ + + 'register' => [ + 'before' => 'или', + 'label' => 'се региструј', + ], + + 'request_password_reset' => [ + 'label' => 'Заборавили сте лозинку?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Адреса е-поште', + ], + + 'password' => [ + 'label' => 'Лозинка', + ], + + 'remember' => [ + 'label' => 'Запамти ме', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Пријави се', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Потврди свој идентитет', + + 'subheading' => 'Како би наставили са пријавом потребно је да потврдите свој идентитет.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Како желите да потврдите свој идентитет?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Потврди пријаву', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Дати акредитиви не одговарају нашим записима.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Превише покушаја пријаве', + 'body' => 'Покушајте поново за :seconds s.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/sr_Cyrl/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..39d58cc --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Ресетујте лозинку', + + 'heading' => 'Заборавили сте лозинку?', + + 'actions' => [ + + 'login' => [ + 'label' => 'назад на пријаву', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Адреса е-поште', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Пошаљи поруку', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Ако ваш налог не постоји нећете добити поруку е-поштом.', + ], + + 'throttled' => [ + 'title' => 'Превише слања', + 'body' => 'Покушајте поново за :seconds s.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/sr_Cyrl/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..10e9e7f --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Ресетујте лозинку', + + 'heading' => 'Ресетујте лозинку', + + 'form' => [ + + 'email' => [ + 'label' => 'Адреса е-поште', + ], + + 'password' => [ + 'label' => 'Лозинка', + 'validation_attribute' => 'лозинка', + ], + + 'password_confirmation' => [ + 'label' => 'Потврдите лозинку', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Ресетујте лозинку', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Превише покушаја ресетовања', + 'body' => 'Покушајте поново за :seconds s.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/auth/pages/register.php b/lang/vendor/filament-panels/sr_Cyrl/auth/pages/register.php new file mode 100644 index 0000000..eb66d15 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Регистрација', + + 'heading' => 'Регистрација', + + 'actions' => [ + + 'login' => [ + 'before' => 'или', + 'label' => 'се пријавите на постојећи налог', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Адреса е-поште', + ], + + 'name' => [ + 'label' => 'Име', + ], + + 'password' => [ + 'label' => 'Лозинка', + 'validation_attribute' => 'лозинка', + ], + + 'password_confirmation' => [ + 'label' => 'Потврдите лозинку', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Региструј се', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Превише покушаја регистрације', + 'body' => 'Покушајте поново за :seconds s.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/error-notifications.php b/lang/vendor/filament-panels/sr_Cyrl/error-notifications.php new file mode 100644 index 0000000..e7c7b9a --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/error-notifications.php @@ -0,0 +1,9 @@ + 'Грешка при учитавању странице', + + 'body' => 'Појавила се грешка при учитавању ове странице. Молим покушајте поново касније.', + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/global-search.php b/lang/vendor/filament-panels/sr_Cyrl/global-search.php new file mode 100644 index 0000000..b19204e --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Глобално претраживање', + 'placeholder' => 'Претражи', + ], + + 'no_results_message' => 'Нема пронађених резултата претраге.', + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/layout.php b/lang/vendor/filament-panels/sr_Cyrl/layout.php new file mode 100644 index 0000000..a7f23f4 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/layout.php @@ -0,0 +1,71 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Управљај претплатом', + ], + + 'logout' => [ + 'label' => 'Одјави се', + ], + + 'open_database_notifications' => [ + 'label' => 'Отвори обавештења', + ], + + 'open_user_menu' => [ + 'label' => 'Кориснички мени', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Скупи бочну траку', + ], + + 'expand' => [ + 'label' => 'Прошири бочну траку', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Омогући тамну тему', + ], + + 'light' => [ + 'label' => 'Омогући светлу тему', + ], + + 'system' => [ + 'label' => 'Омогући тему система', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Аватар за :name', + ], + + 'logo' => [ + 'alt' => ':name логотип', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Претрага закупаца', + 'placeholder' => 'Search', + ], + + ], +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/pages/auth/edit-profile.php b/lang/vendor/filament-panels/sr_Cyrl/pages/auth/edit-profile.php new file mode 100644 index 0000000..114a610 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/pages/auth/edit-profile.php @@ -0,0 +1,51 @@ + 'Профил', + + 'form' => [ + + 'email' => [ + 'label' => 'Адреса е-поште', + ], + + 'name' => [ + 'label' => 'Име', + ], + + 'password' => [ + 'label' => 'Нова лозинка', + ], + + 'password_confirmation' => [ + 'label' => 'Потврдите нову лозинку', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Сачувај промене', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Сачувано', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Откажи', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/pages/auth/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/sr_Cyrl/pages/auth/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..a053492 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/pages/auth/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Потврдите своју адресу е-поште', + + 'heading' => 'Потврдите своју адресу е-поште', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Поново пошаљи', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Нисте примили е-пошту коју смо послали?', + 'notification_sent' => 'Послали смо е-пошту на :email са упутством о томе како потврдити своју адресу е-поште.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Поново смо послали е-пошту.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Превише покушаја поновног слања', + 'body' => 'Молим вас, покушајте поновно за :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/pages/auth/login.php b/lang/vendor/filament-panels/sr_Cyrl/pages/auth/login.php new file mode 100644 index 0000000..5a547b5 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/pages/auth/login.php @@ -0,0 +1,61 @@ + 'Пријава', + + 'heading' => 'Пријавите се', + + 'actions' => [ + + 'register' => [ + 'before' => 'или', + 'label' => 'се регистрирајте за кориснички налог', + ], + + 'request_password_reset' => [ + 'label' => 'Заборављена лозинка?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Адреса е-поште', + ], + + 'password' => [ + 'label' => 'Лозинка', + ], + + 'remember' => [ + 'label' => 'Запамти ме', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Пријавите се', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Погрешно корисничко име или лозинка', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Превише покушаја пријаве', + 'body' => 'Молим вас, покушајте поново за :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/pages/auth/password-reset/request-password-reset.php b/lang/vendor/filament-panels/sr_Cyrl/pages/auth/password-reset/request-password-reset.php new file mode 100644 index 0000000..bdea247 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/pages/auth/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Ресетуј своју лозинку', + + 'heading' => 'Заборављена лозинка?', + + 'actions' => [ + + 'login' => [ + 'label' => 'назад на пријаву', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Адреса е-поште', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Пошаљи е-пошту', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Ако ваш налог не постоји, нећете добити е-пошту.', + ], + + 'throttled' => [ + 'title' => 'Превише захтева', + 'body' => 'Молим вас, покушајте поново за :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/pages/auth/password-reset/reset-password.php b/lang/vendor/filament-panels/sr_Cyrl/pages/auth/password-reset/reset-password.php new file mode 100644 index 0000000..aac2637 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/pages/auth/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Ресетуј своју лозинку', + + 'heading' => 'Ресетуј своју лозинку', + + 'form' => [ + + 'email' => [ + 'label' => 'Адреса е-поште', + ], + + 'password' => [ + 'label' => 'Лозинка', + 'validation_attribute' => 'лозинка', + ], + + 'password_confirmation' => [ + 'label' => 'Потврдите лозинку', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Ресетуј лозинку', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Предао се превише покушаја ресетовања.', + 'body' => 'Молим вас, покушајте поново за :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/pages/auth/register.php b/lang/vendor/filament-panels/sr_Cyrl/pages/auth/register.php new file mode 100644 index 0000000..81b05bb --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/pages/auth/register.php @@ -0,0 +1,56 @@ + 'Регистрација', + + 'heading' => 'Региструјте се', + + 'actions' => [ + + 'login' => [ + 'before' => 'или', + 'label' => 'Пријавите се', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Адреса е-поште', + ], + + 'name' => [ + 'label' => 'Име', + ], + + 'password' => [ + 'label' => 'Лозинка', + 'validation_attribute' => 'лозинка', + ], + + 'password_confirmation' => [ + 'label' => 'Потврдите лозинку', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Региструјте се', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Превише покушаја регистрације', + 'body' => 'Молим вас, покушајте поново за :seconds секунди.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/pages/dashboard.php b/lang/vendor/filament-panels/sr_Cyrl/pages/dashboard.php new file mode 100644 index 0000000..3bdb989 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Надзорна табла', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Филтер', + + 'modal' => [ + + 'heading' => 'Филтер', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Примени', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/sr_Cyrl/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..af02364 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Сачувај измене', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Сачувано', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/resources/pages/create-record.php b/lang/vendor/filament-panels/sr_Cyrl/resources/pages/create-record.php new file mode 100644 index 0000000..63e0507 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Направи :label', + + 'breadcrumb' => 'Направи', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Одустани', + ], + + 'create' => [ + 'label' => 'Направи', + ], + + 'create_another' => [ + 'label' => 'Направи и додај још један', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Направљено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/resources/pages/edit-record.php b/lang/vendor/filament-panels/sr_Cyrl/resources/pages/edit-record.php new file mode 100644 index 0000000..99ac01a --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Уреди :label', + + 'breadcrumb' => 'Уреди', + + 'navigation_label' => 'Уреди', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Одустани', + ], + + 'save' => [ + 'label' => 'Сачувај промене', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Уреди', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Сачувано', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/resources/pages/list-records.php b/lang/vendor/filament-panels/sr_Cyrl/resources/pages/list-records.php new file mode 100644 index 0000000..be50e21 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Листа', + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/sr_Cyrl/resources/pages/manage-related-records.php new file mode 100644 index 0000000..034c359 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Управљање :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/resources/pages/view-record.php b/lang/vendor/filament-panels/sr_Cyrl/resources/pages/view-record.php new file mode 100644 index 0000000..9d84fff --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Преглед :label', + + 'breadcrumb' => 'Прегледај', + + 'navigation_label' => 'Преглед', + + 'content' => [ + + 'tab' => [ + 'label' => 'Преглед', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/unsaved-changes-alert.php b/lang/vendor/filament-panels/sr_Cyrl/unsaved-changes-alert.php new file mode 100644 index 0000000..eba7695 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Твоје измене нису сачуване. Да ли заиста желите да напустите ову страницу?', + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/widgets/account-widget.php b/lang/vendor/filament-panels/sr_Cyrl/widgets/account-widget.php new file mode 100644 index 0000000..3fb1c26 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Одјави се', + ], + + ], + + 'welcome' => 'Добро дошли', + +]; diff --git a/lang/vendor/filament-panels/sr_Cyrl/widgets/filament-info-widget.php b/lang/vendor/filament-panels/sr_Cyrl/widgets/filament-info-widget.php new file mode 100644 index 0000000..a378c26 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Cyrl/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Документација', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/sr_Latn/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..eb5c11d --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Blokirana je izmena adrese e-pošte', + 'body' => 'Uspešno ste blokirali izmenu adrese e-pošte na :email. Odmah nas kontaktirajte ukoliko niste uputili ovaj zahtev.', + ], + + 'failed' => [ + 'title' => 'Neuspešno blokiranje izmene adrese e-pošte', + 'body' => 'Nažalost, niste uspeli da sprečite izmenu adrese e-pošte na :email, zato što je već potvrđena pre blokiranja. Odmah nas kontaktirajte ukoliko niste uputili ovaj zahtev.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/sr_Latn/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..50efd04 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Adresa e-pošte je izmenjena', + 'body' => 'Vaša adresa e-pošte je uspešno izmenjena na :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..9aea172 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Isključi', + + 'modal' => [ + + 'heading' => 'Isključivanje aplikacije za autentifikaciju', + + 'description' => 'Da li ste sigurni da želite da isključite aplikaciju za autentifikaciju? Isključivanje će ukloniti dodatni nivo zaštite vašeg naloga.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Unesite kod od 6 cifara iz aplikacije za autentifikaciju', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Koristite kod za oporavak', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kod koji ste uneli nije ispravan.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Ili unesite kod za oporavak', + + 'validation_attribute' => 'kod za oporavak', + + 'messages' => [ + + 'invalid' => 'Kod za oporavak koji ste uneli nije ispravan.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Isključi aplikaciju za autentifikaciju', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Aplikacija za autentifikaciju je isključena', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..72adf22 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Ponovo generišite kodove za oporavak', + + 'modal' => [ + + 'heading' => 'Ponovo generišite kodove za oporavak aplikacije za autentifikaciju', + + 'description' => 'Ako izgubite kodove za oporavak, može da ih ponovo generišite ovde. Nakon ove akcije vaši stari kodovi za oporavak biće nevažeći.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Unesite kod od 6 cifara iz aplikacije za autentifikaciju', + + 'validation_attribute' => 'kod', + + 'messages' => [ + + 'invalid' => 'Kod koji ste uneli nije ispravan.', + + ], + + ], + + 'password' => [ + + 'label' => 'Ili unesite trenutnu lozinku', + + 'validation_attribute' => 'lozinka', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Ponovo generišite kodove za oporavak', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Novi kodovi za oporavak aplikacije za autentifikaciju su generisani', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Novi kodovi za oporavak', + + 'description' => 'Čuvajte ove kodove za oporavak na bezbednom mestu. Oni će biti prikazani samo jednom, ali će biti neophodni ako izgubite pristup aplikaciji za autentifikaciju.', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Zatvori', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..ff630ab --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Postavka', + + 'modal' => [ + + 'heading' => 'Postavka aplikacije za autentifikaciju', + + 'description' => <<<'BLADE' + Neophodna je aplikacija za autentifikaciju poput Google Authenticator (iOS, Android) da biste nastavili. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Skenirajte QR kod pomoću aplikacije za autentifikaciju:', + + 'alt' => 'QR za autentifikaciju', + + ], + + 'text_code' => [ + + 'instruction' => 'Ili ručno unesite ovaj kod:', + + 'messages' => [ + 'copied' => 'Kopirano', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Čuvajte ove kodove za oporavak na bezbednom mestu. Oni će biti prikazani samo jednom, ali će biti neophodni ako izgubite pristup aplikaciji za autentifikaciju:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Unesite kod od 6 cifara iz aplikacije za autentifikaciju', + + 'validation_attribute' => 'kod', + + 'below_content' => 'Potrebno je uneti kod od 6 cifara iz aplikacije za autentifikaciju svaki put kad se prijavljujete ili izvršavate osetljive akcije.', + + 'messages' => [ + + 'invalid' => 'Kod koji ste uneli nije ispravan.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Omogući aplikaciju za autentifikaciju', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Aplikacije za autentifikaciju je omogućena', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..07f8da4 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Aplikacija za autentifikaciju', + + 'below_content' => 'Koristite sigurnosnu aplikaciju za generisanje privremenog koda za verifikaciju prijave.', + + 'messages' => [ + 'enabled' => 'Uključeno', + 'disabled' => 'Isključeno', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Unesite kod iz aplikacije za autentifikaciju', + + 'code' => [ + + 'label' => 'Unesite kod od 6 cifara iz aplikacije za autentifikaciju', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Koristite kod za oporavak', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kod koji ste uneli nije ispravan.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Ili unesite kod za oporavak', + + 'validation_attribute' => 'kod za oporavak', + + 'messages' => [ + + 'invalid' => 'Kod za oporavak koji ste uneli nije ispravan.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..ab08d3e --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,70 @@ + 'Isključi', + + 'modal' => [ + + 'heading' => 'Isključivanje kodove za verifikaciju e-poštom', + + 'description' => 'Da li ste sigurni da želite da prestanete da dobijate verifikacione kodove e-poštom? Isključivanje će ukloniti dodatni nivo zaštite vašeg naloga.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Unesite kod od 6 cifara poslat na vašu e-poštu', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Pošaljite novi kod e-poštom', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Poslali smo vam novi kod e-poštom', + ], + + 'throttled' => [ + 'title' => 'Previše pokušaja. Molim sačekajte pre nego ponovo zatražite kod.', + ], + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kod koji ste uneli nije ispravan.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Isključivanje kodove verifikacije e-poštom', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Slanje kodova verifikacije e-poštom je isključeno', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..4aa1848 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,70 @@ + 'Postavka', + + 'modal' => [ + + 'heading' => 'Postavka verifikacionih kodova e-pošte', + + 'description' => 'Moraćete da unosite kod od 6 cifara poslat na vašu e-poštu svaki put kad se prijavljujete ili izvršavate osetljive akcije. Proverite vašu e-poštu za kod od 6 cifara da biste završili postavku.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Unesite kod od 6 cifara poslat na vašu e-poštu', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Pošaljite novi kod e-poštom', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Poslaćemo vam novi kod e-poštom', + ], + + 'throttled' => [ + 'title' => 'Previše pokušaja. Molim sačekajte pre nego ponovo zatražite kod.', + ], + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kod koji ste uneli nije ispravan.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Omogućite kodove verifikacije e-poštom', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Kodovi verifikacije e-poštom su omogućeni', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..2190d33 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Ovo je vaš kod za prijavu', + + 'lines' => [ + 'Vaš kod za prijavu je: :code', + 'Ovaj kod ističe za minut.|Ovaj kod ističe za :minutes minuta.', + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..808c629 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Kodovi za verifikaciju e-poštom', + + 'below_content' => 'Primi privremeni kod na vašu adresu e-pošte da biste verifikovali identitet pri prijavi.', + + 'messages' => [ + 'enabled' => 'Uključeno', + 'disabled' => 'Isključeno', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Pošaljite kod na vašu adresu e-pošte', + + 'code' => [ + + 'label' => 'Unesite kod od 6 cifara poslat na vašu adresu e-pošte', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Pošaljite novi kod e-poštom', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Poslali smo vam novi kod e-poštom', + ], + + 'throttled' => [ + 'title' => 'Previše pokušaja. Molim sačekajte pre nego ponovo zatražite kod.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Kod koji ste uneli nije ispravan.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..4abef82 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Postavi dvostruku autentifikaciju (2FA)', + + 'heading' => 'Postavka dvostruke autentifikacije', + + 'subheading' => '2FA dodaje dodatni nivo zaštite vašeg naloga tako što zahteva dodatni način verifikacije vašeg naloga prilikom prijave.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Nastavak', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..3a7c3c7 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Klikni na', + + 'copy' => [ + 'label' => 'kopiraj', + ], + + 'ili', + + 'download' => [ + 'label' => 'preuzmi', + ], + + 'sve kodove od jednom', + + ], + + 'messages' => [ + 'copied' => 'Kopirano', + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/sr_Latn/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..272a4fe --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Vaša adresa e-pošte je promenjena', + + 'lines' => [ + 'Dobili smo zahtev za promenu adrese e-pošte. Vaša lozinka je upotrebljena za potvrdu promene.', + 'Kad bude potvrđena, nova adresa e-pošte na vašem nalogu će biti: :email.', + 'Možete blokirati promenu pre potvrđenja klikom da dugme ispod.', + 'Odmah nas obavestite ako vi niste podneli ovo zahtev.', + ], + + 'action' => 'Blokiraj izmenu adrese e-pošte', + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/pages/edit-profile.php b/lang/vendor/filament-panels/sr_Latn/auth/pages/edit-profile.php new file mode 100644 index 0000000..f459694 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'name' => [ + 'label' => 'Ime', + ], + + 'password' => [ + 'label' => 'Nova lozinka', + 'validation_attribute' => 'lozinka', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrdite novu lozinku', + 'validation_attribute' => 'potvrda lozinke', + ], + + 'current_password' => [ + 'label' => 'Trenutna lozinka', + 'below_content' => 'Zbog bezbednosti morate da potvrdite lozinku za nastavak.', + 'validation_attribute' => 'trenutna lozinka', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Sačuvaj izmene', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Dvostruka autentifikacija (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Zahtev za izmenu adrese e-pošte je poslat', + 'body' => 'Zahtev za izmenu adrese e-pošte je poslat na :email. Proverite svoju e-poštu kako bi verifikovali promenu.', + ], + + 'saved' => [ + 'title' => 'Sačuvano', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Odustani', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/sr_Latn/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..91bea5c --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Verifikacija adrese vaše e-pošte', + + 'heading' => 'Verifikacija adrese vaše e-pošte', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Ponovo pošalji', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Još uvek niste primili e-poštu?', + 'notification_sent' => 'Poslali smo poruku na :email sa instrukcijama za verifikaciju adrese vaše e-pošte.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Ponovo smo poslali poruku.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Previše ponovnih slanja', + 'body' => 'Pokušajte ponovo za :seconds s.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/pages/login.php b/lang/vendor/filament-panels/sr_Latn/auth/pages/login.php new file mode 100644 index 0000000..46e2078 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Prijava', + + 'heading' => 'Prijava', + + 'actions' => [ + + 'register' => [ + 'before' => 'ili', + 'label' => 'se registruj', + ], + + 'request_password_reset' => [ + 'label' => 'Zaboravili ste lozinku?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'password' => [ + 'label' => 'Lozinka', + ], + + 'remember' => [ + 'label' => 'Zapamti me', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Prijavi se', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Potvrdi svoj identitet', + + 'subheading' => 'Kako bi nastavili sa prijavom potrebno je da potvrdite svoj identitet.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Kako želite da potvrdite svoj identitet?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Potvrdi prijavu', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Dati akreditivi ne odgovaraju našim zapisima.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Previše pokušaja prijave', + 'body' => 'Pokušajte ponovo za :seconds s.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/sr_Latn/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..1f40f07 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Resetujte lozinku', + + 'heading' => 'Zaboravili ste lozinku?', + + 'actions' => [ + + 'login' => [ + 'label' => 'nazad na prijavu', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Pošalji poruku', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Ako vaš nalog ne postoji nećete dobiti poruku e-poštom.', + ], + + 'throttled' => [ + 'title' => 'Previše slanja', + 'body' => 'Pokušajte ponovo za :seconds s.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/sr_Latn/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..629f1ed --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Resetujte lozinku', + + 'heading' => 'Resetujte lozinku', + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'password' => [ + 'label' => 'Lozinka', + 'validation_attribute' => 'lozinka', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrdite lozinku', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Resetujte lozinku', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Previše pokušaja resetovanja', + 'body' => 'Pokušajte ponovo za :seconds s.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/auth/pages/register.php b/lang/vendor/filament-panels/sr_Latn/auth/pages/register.php new file mode 100644 index 0000000..6e93158 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Registracija', + + 'heading' => 'Registracija', + + 'actions' => [ + + 'login' => [ + 'before' => 'ili', + 'label' => 'se prijavite na postojeći nalog', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'name' => [ + 'label' => 'Ime', + ], + + 'password' => [ + 'label' => 'Lozinka', + 'validation_attribute' => 'lozinka', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrdite lozinku', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Registruj se', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Previše pokušaja registracije', + 'body' => 'Pokušajte ponovo za :seconds s.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/error-notifications.php b/lang/vendor/filament-panels/sr_Latn/error-notifications.php new file mode 100644 index 0000000..6f29b07 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/error-notifications.php @@ -0,0 +1,9 @@ + 'Greška pri učitavanju stranice', + + 'body' => 'Pojavila se greška pri učitavanju ove stranice. Molim pokušajte ponovo kasnije.', + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/global-search.php b/lang/vendor/filament-panels/sr_Latn/global-search.php new file mode 100644 index 0000000..dccbeff --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Globalno pretraživanje', + 'placeholder' => 'Pretraži', + ], + + 'no_results_message' => 'Nema pronađenih rezultata pretrage.', + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/layout.php b/lang/vendor/filament-panels/sr_Latn/layout.php new file mode 100644 index 0000000..e926bf2 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/layout.php @@ -0,0 +1,71 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Upravljaj pretplatom', + ], + + 'logout' => [ + 'label' => 'Odjavi se', + ], + + 'open_database_notifications' => [ + 'label' => 'Otvori obaveštenja', + ], + + 'open_user_menu' => [ + 'label' => 'Korisnički meni', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Skupi bočnu traku', + ], + + 'expand' => [ + 'label' => 'Proširi bočnu traku', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Omogući tamnu temu', + ], + + 'light' => [ + 'label' => 'Omogući svetlu temu', + ], + + 'system' => [ + 'label' => 'Omogući temu sistema', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar za :name', + ], + + 'logo' => [ + 'alt' => ':name logotip', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Pretraga zakupaca', + 'placeholder' => 'Search', + ], + + ], +]; diff --git a/lang/vendor/filament-panels/sr_Latn/pages/auth/edit-profile.php b/lang/vendor/filament-panels/sr_Latn/pages/auth/edit-profile.php new file mode 100644 index 0000000..289c4d0 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/pages/auth/edit-profile.php @@ -0,0 +1,51 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'name' => [ + 'label' => 'Ime', + ], + + 'password' => [ + 'label' => 'Nova lozinka', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrdite novu lozinku', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Sačuvaj promene', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Sačuvano', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Otkaži', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/pages/auth/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/sr_Latn/pages/auth/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..462b69a --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/pages/auth/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Potvrdite svoju adresu e-pošte', + + 'heading' => 'Potvrdite svoju adresu e-pošte', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Ponovo pošalji', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Niste primili e-poštu koju smo poslali?', + 'notification_sent' => 'Poslali smo e-poštu na :email sa uputstvom o tome kako potvrditi svoju adresu e-pošte.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Ponovo smo poslali e-poštu.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Previše pokušaja ponovnog slanja', + 'body' => 'Molim vas, pokušajte ponovno za :seconds sekundi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/pages/auth/login.php b/lang/vendor/filament-panels/sr_Latn/pages/auth/login.php new file mode 100644 index 0000000..dfe381a --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/pages/auth/login.php @@ -0,0 +1,61 @@ + 'Prijava', + + 'heading' => 'Prijavite se', + + 'actions' => [ + + 'register' => [ + 'before' => 'ili', + 'label' => 'se registrirajte za korisnički nalog', + ], + + 'request_password_reset' => [ + 'label' => 'Zaboravljena lozinka?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'password' => [ + 'label' => 'Lozinka', + ], + + 'remember' => [ + 'label' => 'Zapamti me', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Prijavite se', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Pogrešno korisničko ime ili lozinka', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Previše pokušaja prijave', + 'body' => 'Molim vas, pokušajte ponovo za :seconds sekundi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/pages/auth/password-reset/request-password-reset.php b/lang/vendor/filament-panels/sr_Latn/pages/auth/password-reset/request-password-reset.php new file mode 100644 index 0000000..06aa731 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/pages/auth/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Resetuj svoju lozinku', + + 'heading' => 'Zaboravljena lozinka?', + + 'actions' => [ + + 'login' => [ + 'label' => 'nazad na prijavu', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Pošalji e-poštu', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Ako vaš nalog ne postoji, nećete dobiti e-poštu.', + ], + + 'throttled' => [ + 'title' => 'Previše zahteva', + 'body' => 'Molim vas, pokušajte ponovo za :seconds sekundi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/pages/auth/password-reset/reset-password.php b/lang/vendor/filament-panels/sr_Latn/pages/auth/password-reset/reset-password.php new file mode 100644 index 0000000..f2ec962 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/pages/auth/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Resetuj svoju lozinku', + + 'heading' => 'Resetuj svoju lozinku', + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'password' => [ + 'label' => 'Lozinka', + 'validation_attribute' => 'lozinka', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrdite lozinku', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Resetuj lozinku', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Predao se previše pokušaja resetovanja.', + 'body' => 'Molim vas, pokušajte ponovo za :seconds sekundi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/pages/auth/register.php b/lang/vendor/filament-panels/sr_Latn/pages/auth/register.php new file mode 100644 index 0000000..be7837c --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/pages/auth/register.php @@ -0,0 +1,56 @@ + 'Registracija', + + 'heading' => 'Registrujte se', + + 'actions' => [ + + 'login' => [ + 'before' => 'ili', + 'label' => 'Prijavite se', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Adresa e-pošte', + ], + + 'name' => [ + 'label' => 'Ime', + ], + + 'password' => [ + 'label' => 'Lozinka', + 'validation_attribute' => 'lozinka', + ], + + 'password_confirmation' => [ + 'label' => 'Potvrdite lozinku', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Registrujte se', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Previše pokušaja registracije', + 'body' => 'Molim vas, pokušajte ponovo za :seconds sekundi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/pages/dashboard.php b/lang/vendor/filament-panels/sr_Latn/pages/dashboard.php new file mode 100644 index 0000000..d07243b --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Nadzorna tabla', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filter', + + 'modal' => [ + + 'heading' => 'Filter', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Primeni', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/sr_Latn/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..53c2cde --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Sačuvaj izmene', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Sačuvano', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/resources/pages/create-record.php b/lang/vendor/filament-panels/sr_Latn/resources/pages/create-record.php new file mode 100644 index 0000000..b2af238 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Napravi :label', + + 'breadcrumb' => 'Napravi', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Odustani', + ], + + 'create' => [ + 'label' => 'Napravi', + ], + + 'create_another' => [ + 'label' => 'Napravi i dodaj još jedan', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Napravljeno', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/resources/pages/edit-record.php b/lang/vendor/filament-panels/sr_Latn/resources/pages/edit-record.php new file mode 100644 index 0000000..4737e2a --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Uredi :label', + + 'breadcrumb' => 'Uredi', + + 'navigation_label' => 'Uredi', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Odustani', + ], + + 'save' => [ + 'label' => 'Sačuvaj promene', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Uredi', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Sačuvano', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/resources/pages/list-records.php b/lang/vendor/filament-panels/sr_Latn/resources/pages/list-records.php new file mode 100644 index 0000000..3af0660 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Lista', + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/sr_Latn/resources/pages/manage-related-records.php new file mode 100644 index 0000000..512c657 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Upravljanje :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/resources/pages/view-record.php b/lang/vendor/filament-panels/sr_Latn/resources/pages/view-record.php new file mode 100644 index 0000000..9e9ceac --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Pregled :label', + + 'breadcrumb' => 'Pregledaj', + + 'navigation_label' => 'Pregled', + + 'content' => [ + + 'tab' => [ + 'label' => 'Pregled', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/unsaved-changes-alert.php b/lang/vendor/filament-panels/sr_Latn/unsaved-changes-alert.php new file mode 100644 index 0000000..219cdb7 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Tvoje izmene nisu sačuvane. Da li zaista želite da napustite ovu stranicu?', + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/widgets/account-widget.php b/lang/vendor/filament-panels/sr_Latn/widgets/account-widget.php new file mode 100644 index 0000000..6a5fe00 --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Odjavi se', + ], + + ], + + 'welcome' => 'Dobro došli', + +]; diff --git a/lang/vendor/filament-panels/sr_Latn/widgets/filament-info-widget.php b/lang/vendor/filament-panels/sr_Latn/widgets/filament-info-widget.php new file mode 100644 index 0000000..d770c7e --- /dev/null +++ b/lang/vendor/filament-panels/sr_Latn/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentacija', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/sv/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..4bf9153 --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Ändring av mejladress blockerad', + 'body' => 'Du har framgångsrikt blockerat ett försök att ändra mejladress till :email. Om du inte gjorde den ursprungliga begäran, vänligen kontakta oss omedelbart.', + ], + + 'failed' => [ + 'title' => 'Misslyckades att blockera ändring av mejladress', + 'body' => 'Tyvärr kunde du inte förhindra att mejladressen ändrades till :email, eftersom den redan verifierades innan du blockerade den. Om du inte gjorde den ursprungliga begäran, vänligen kontakta oss omedelbart.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/sv/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..ae9d6e3 --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Mejladress har ändrats', + 'body' => 'Din mejladress har ändrats till :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/sv/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..a3ba162 --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,75 @@ + 'Stäng av', + + 'modal' => [ + + 'heading' => 'Inaktivera autentiseringsapp', + + 'description' => 'Är du säker på att du vill sluta använda autentiseringsappen? Att inaktivera detta tar bort ett extra säkerhetsskikt från ditt konto.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Ange den 6-siffriga koden från autentiseringsappen', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Använd en återställningskod istället', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Koden du angav är ogiltig.', + + 'rate_limited' => 'För många försök inom begränsad tidsintervall. Vänligen försök igen senare.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Eller, ange en återställningskod', + + 'validation_attribute' => 'återställningskod', + + 'messages' => [ + + 'invalid' => 'Återställningskoden du angav är ogiltig.', + + 'rate_limited' => 'För många försök inom begränsad tidsintervall. Vänligen försök igen senare.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Inaktivera autentiseringsapp', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Autentiseringsapp har inaktiverats', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/sv/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..b15fe59 --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,79 @@ + 'Återskapa återställningskoder', + + 'modal' => [ + + 'heading' => 'Återskapa återställningskoder för autentiseringsapp', + + 'description' => 'Om du förlorar dina återställningskoder kan du återskapa dem här. Dina gamla återställningskoder kommer att ogiltigförklaras omedelbart.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Ange den 6-siffriga koden från autentiseringsappen', + + 'validation_attribute' => 'kod', + + 'messages' => [ + + 'invalid' => 'Koden du angav är ogiltig.', + + 'rate_limited' => 'För många försök inom begränsad tidsintervall. Vänligen försök igen senare.', + + ], + + ], + + 'password' => [ + + 'label' => 'Eller, ange ditt nuvarande lösenord', + + 'validation_attribute' => 'lösenord', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Återskapa återställningskoder', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Nya återställningskoder för autentiseringsapp har genererats', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Nya återställningskoder', + + 'description' => 'Spara följande återställningskoder på en säker plats. De visas endast en gång, men du behöver dem om du förlorar tillgången till din autentiseringsapp:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Stäng', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/sv/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..77eabd7 --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,83 @@ + 'Konfigurera', + + 'modal' => [ + + 'heading' => 'Konfigurera autentiseringsapp', + + 'description' => <<<'BLADE' + Du behöver en app som Google Authenticator (iOS, Android) för att slutföra den här processen. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Skanna denna QR-kod med din autentiseringsapp:', + + 'alt' => 'QR-kod att skanna med en autentiseringsapp', + + ], + + 'text_code' => [ + + 'instruction' => 'Eller ange denna kod manuellt:', + + 'messages' => [ + 'copied' => 'Kopierat', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Spara följande återställningskoder på en säker plats. De visas endast en gång, men du behöver dem om du förlorar tillgången till din autentiseringsapp:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Ange den 6-siffriga koden från autentiseringsappen', + + 'validation_attribute' => 'kod', + + 'below_content' => 'Du behöver ange den 6-siffriga koden från din autentiseringsapp varje gång du loggar in eller utför känsliga åtgärder.', + + 'messages' => [ + + 'invalid' => 'Koden du angav är ogiltig.', + + 'rate_limited' => 'För många försök inom begränsad tidsintervall. Vänligen försök igen senare.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Aktivera autentiseringsapp', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Autentiseringsapp har aktiverats', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/sv/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..000246f --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Autentiseringsapp', + + 'below_content' => 'Använd en säker app för att generera en tillfällig kod för inloggningsverifiering.', + + 'messages' => [ + 'enabled' => 'Aktiverad', + 'disabled' => 'Inaktiverad', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Använd en kod från din autentiseringsapp', + + 'code' => [ + + 'label' => 'Ange den 6-siffriga koden från autentiseringsappen', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Använd en återställningskod istället', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Koden du angav är ogiltig.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Eller, ange en återställningskod', + + 'validation_attribute' => 'återställningskod', + + 'messages' => [ + + 'invalid' => 'Återställningskoden du angav är ogiltig.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/sv/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..90f0408 --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,73 @@ + 'Stäng av', + + 'modal' => [ + + 'heading' => 'Inaktivera mejlbaserad autentisering', + + 'description' => 'Är du säker på att du vill stänga av mejlbaserad autentisering? Att inaktivera detta tar bort ett extra säkerhetsskikt från ditt konto.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Ange den 6-siffriga kod vi skickade till dig via mejl', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Skicka en ny kod via mejl', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Vi har skickat dig en ny kod via mejl', + ], + + 'throttled' => [ + 'title' => 'För många försök inom begränsad tidsintervall. Vänta innan du begär en ny kod.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Koden du angav är ogiltig.', + + 'rate_limited' => 'För många försök inom begränsad tidsintervall. Vänligen försök igen senare.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Inaktivera mejlbaserad autentisering', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Mejlbaserad autentisering har inaktiverats', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/sv/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..553d08d --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,73 @@ + 'Konfigurera', + + 'modal' => [ + + 'heading' => 'Konfigurera mejlbaserad autentisering', + + 'description' => 'Du behöver ange den 6-siffriga kod vi skickar dig via mejl varje gång du loggar in eller utför känsliga åtgärder. Kontrollera din mejl efter en 6-siffrig kod för att slutföra konfigurationen.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Ange den 6-siffriga kod vi skickade till dig via mejl', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Skicka en ny kod via mejl', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Vi har skickat dig en ny kod via mejl', + ], + + 'throttled' => [ + 'title' => 'För många försök inom begränsad tidsintervall. Vänta innan du begär en ny kod.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Koden du angav är ogiltig.', + + 'rate_limited' => 'För många försök inom begränsad tidsintervall. Vänligen försök igen senare.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Aktivera mejlbaserad autentisering', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Mejlbaserad autentisering har aktiverats', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/sv/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..39d29fc --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Här är din inloggningskod', + + 'lines' => [ + 'Din inloggningskod är: :code', + 'Denna kod går ut om en minut.|Denna kod går ut om :minutes minuter.', + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/sv/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..9c1233f --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Mejlbaserad autentisering', + + 'below_content' => 'Ta emot en tillfällig kod på din mejladress för att verifiera din identitet vid inloggning.', + + 'messages' => [ + 'enabled' => 'Aktiverad', + 'disabled' => 'Inaktiverad', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Skicka en kod till din mejl', + + 'code' => [ + + 'label' => 'Ange den 6-siffriga kod vi skickade till dig via mejl', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Skicka en ny kod via mejl', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Vi har skickat dig en ny kod via mejl', + ], + + 'throttled' => [ + 'title' => 'För många försök inom begränsad tidsintervall. Vänta innan du begär en ny kod.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Koden du angav är ogiltig.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/sv/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..cc00b50 --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Konfigurera tvåfaktorsautentisering (2FA)', + + 'heading' => 'Konfigurera tvåfaktorsautentisering', + + 'subheading' => '2FA lägger till ett extra säkerhetsskikt till ditt konto genom att kräva en andra form av verifiering vid inloggning.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Fortsätt', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/sv/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..8ab72e0 --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Click to', + + 'copy' => [ + 'label' => 'kopiera', + ], + + 'or', + + 'download' => [ + 'label' => 'ladda ner', + ], + + 'all the codes at once.', + + ], + + 'messages' => [ + 'copied' => 'Kopierat', + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/sv/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..113380e --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Din mejladress håller på att ändras', + + 'lines' => [ + 'Vi fick en begäran om att ändra mejladressen som är kopplad till ditt konto. Ditt lösenord användes för att bekräfta denna ändring.', + 'När den är verifierad kommer den nya mejladressen på ditt konto att vara: :email.', + 'Du kan blockera ändringen innan den verifieras genom att klicka på knappen nedan.', + 'Om du inte gjorde denna begäran, vänligen kontakta oss omedelbart.', + ], + + 'action' => 'Blockera ändring av mejladress', + +]; diff --git a/lang/vendor/filament-panels/sv/auth/pages/edit-profile.php b/lang/vendor/filament-panels/sv/auth/pages/edit-profile.php new file mode 100644 index 0000000..8573616 --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/pages/edit-profile.php @@ -0,0 +1,73 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'Mejladress', + ], + + 'name' => [ + 'label' => 'Namn', + ], + + 'password' => [ + 'label' => 'Nytt lösenord', + 'validation_attribute' => 'lösenord', + ], + + 'password_confirmation' => [ + 'label' => 'Bekräfta nytt lösenord', + 'validation_attribute' => 'lösenordsbekräftelse', + ], + + 'current_password' => [ + 'label' => 'Nuvarande lösenord', + 'below_content' => 'För säkerhet, vänligen bekräfta ditt lösenord för att fortsätta.', + 'validation_attribute' => 'nuvarande lösenord', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Spara ändringar', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Tvåfaktorsautentisering (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Begäran om ändring av mejladress har skickats', + 'body' => 'En begäran om att ändra din mejladress har skickats till :email. Kontrollera din mejl för att verifiera ändringen.', + ], + + 'saved' => [ + 'title' => 'Sparades', + ], + + 'throttled' => [ + 'title' => 'För många försök inom begränsad tidsintervall. Vänligen försök igen om :seconds sekunder.', + 'body' => 'Vänligen försök igen om :seconds sekunder.', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Avbryt', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/sv/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..02aa3bb --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Verifiera din mejladress', + + 'heading' => 'Verifiera din mejladress', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Skicka igen', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Inte fått meddelandet vi skickade?', + 'notification_sent' => 'Vi skickade ett meddelande till :email med instruktioner på hur du verifierar din mejladress.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Vi skickade meddelandet igen.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'För många försök att skicka igen', + 'body' => 'Vänligen försök igen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/pages/login.php b/lang/vendor/filament-panels/sv/auth/pages/login.php new file mode 100644 index 0000000..8f7d4f7 --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Logga in', + + 'heading' => 'Logga in', + + 'actions' => [ + + 'register' => [ + 'before' => 'eller', + 'label' => 'skapa ett konto', + ], + + 'request_password_reset' => [ + 'label' => 'Glömt ditt lösenord?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Mejladress', + ], + + 'password' => [ + 'label' => 'Lösenord', + ], + + 'remember' => [ + 'label' => 'Kom ihåg mig', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Logga in', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Tvåfaktorsautentisering', + + 'subheading' => 'Bekräfta åtkomst till ditt konto genom att ange autentiseringskoden som tillhandahålls av din autentiseringsapp.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Välj autentiseringsmetod', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Autentisera', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Inloggningsuppgifterna matchar inte våra register.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'För många inloggningsförsök', + 'body' => 'Vänligen försök igen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/sv/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..9599853 --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Återställ ditt lösenord', + + 'heading' => 'Glömt ditt lösenord?', + + 'actions' => [ + + 'login' => [ + 'label' => 'tillbaka till inloggningen', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Mejladress', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Skicka meddelande', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Om ditt konto inte finns, kommer du inte att få något meddelande.', + ], + + 'throttled' => [ + 'title' => 'För många förfrågningar', + 'body' => 'Vänligen försök igen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/sv/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..07e8ae5 --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Återställ ditt lösenord', + + 'heading' => 'Återställ ditt lösenord', + + 'form' => [ + + 'email' => [ + 'label' => 'Mejladress', + ], + + 'password' => [ + 'label' => 'Lösenord', + 'validation_attribute' => 'lösenord', + ], + + 'password_confirmation' => [ + 'label' => 'Bekräfta lösenord', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Återställ lösenord', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'För många förfrågningar om återställning', + 'body' => 'Vänligen försök igen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/auth/pages/register.php b/lang/vendor/filament-panels/sv/auth/pages/register.php new file mode 100644 index 0000000..0821563 --- /dev/null +++ b/lang/vendor/filament-panels/sv/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Registrera', + + 'heading' => 'Skapa konto', + + 'actions' => [ + + 'login' => [ + 'before' => 'eller', + 'label' => 'logga in på ditt konto', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Mejladress', + ], + + 'name' => [ + 'label' => 'Namn', + ], + + 'password' => [ + 'label' => 'Lösenord', + 'validation_attribute' => 'lösenord', + ], + + 'password_confirmation' => [ + 'label' => 'Bekräfta lösenord', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Skapa konto', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'För många registreringsförsök', + 'body' => 'Vänligen försök igen om :seconds sekunder.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/error-notifications.php b/lang/vendor/filament-panels/sv/error-notifications.php new file mode 100644 index 0000000..20453c6 --- /dev/null +++ b/lang/vendor/filament-panels/sv/error-notifications.php @@ -0,0 +1,9 @@ + 'Fel vid laddning av sida', + + 'body' => 'Ett fel inträffade vid försöket att ladda denna sida. Vänligen försök igen senare.', + +]; diff --git a/lang/vendor/filament-panels/sv/global-search.php b/lang/vendor/filament-panels/sv/global-search.php new file mode 100644 index 0000000..c6aabbe --- /dev/null +++ b/lang/vendor/filament-panels/sv/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Global sökning', + 'placeholder' => 'Sök', + ], + + 'no_results_message' => 'Inga sökresultat.', + +]; diff --git a/lang/vendor/filament-panels/sv/layout.php b/lang/vendor/filament-panels/sv/layout.php new file mode 100644 index 0000000..b6d42ee --- /dev/null +++ b/lang/vendor/filament-panels/sv/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Hantera prenumeration', + ], + + 'logout' => [ + 'label' => 'Logga ut', + ], + + 'open_database_notifications' => [ + 'label' => 'Öppna notiser', + ], + + 'open_user_menu' => [ + 'label' => 'Användarmeny', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Dölj sidopanel', + ], + + 'expand' => [ + 'label' => 'Visa sidopanel', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Använd mörkt tema', + ], + + 'light' => [ + 'label' => 'Använd ljust tema', + ], + + 'system' => [ + 'label' => 'Följ systemets tema', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Avatar för :name', + ], + + 'logo' => [ + 'alt' => ':name logotyp', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Sök bland klienter', + 'placeholder' => 'Sök', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/pages/dashboard.php b/lang/vendor/filament-panels/sv/pages/dashboard.php new file mode 100644 index 0000000..679ee51 --- /dev/null +++ b/lang/vendor/filament-panels/sv/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Dashboard', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filter', + + 'modal' => [ + + 'heading' => 'Filter', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Använd', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/sv/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..888acc5 --- /dev/null +++ b/lang/vendor/filament-panels/sv/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Spara ändringar', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Sparades', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/resources/pages/create-record.php b/lang/vendor/filament-panels/sv/resources/pages/create-record.php new file mode 100644 index 0000000..af85a56 --- /dev/null +++ b/lang/vendor/filament-panels/sv/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Skapa :label', + + 'breadcrumb' => 'Skapa', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Avbryt', + ], + + 'create' => [ + 'label' => 'Skapa', + ], + + 'create_another' => [ + 'label' => 'Skapa & skapa en till', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Skapades', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sv/resources/pages/edit-record.php b/lang/vendor/filament-panels/sv/resources/pages/edit-record.php new file mode 100644 index 0000000..c624cb8 --- /dev/null +++ b/lang/vendor/filament-panels/sv/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Redigera :label', + + 'breadcrumb' => 'Redigera', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Avbryt', + ], + + 'save' => [ + 'label' => 'Spara ändringar', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Redigera', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Sparades', + ], + + ], + + 'navigation_label' => 'Redigera', + +]; diff --git a/lang/vendor/filament-panels/sv/resources/pages/list-records.php b/lang/vendor/filament-panels/sv/resources/pages/list-records.php new file mode 100644 index 0000000..3af0660 --- /dev/null +++ b/lang/vendor/filament-panels/sv/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Lista', + +]; diff --git a/lang/vendor/filament-panels/sv/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/sv/resources/pages/manage-related-records.php new file mode 100644 index 0000000..deb24aa --- /dev/null +++ b/lang/vendor/filament-panels/sv/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Hantera :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/sv/resources/pages/view-record.php b/lang/vendor/filament-panels/sv/resources/pages/view-record.php new file mode 100644 index 0000000..0aae546 --- /dev/null +++ b/lang/vendor/filament-panels/sv/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Visa :label', + + 'breadcrumb' => 'Visa', + + 'content' => [ + + 'tab' => [ + 'label' => 'Visa', + ], + + ], + + 'navigation_label' => 'Visa', + +]; diff --git a/lang/vendor/filament-panels/sv/unsaved-changes-alert.php b/lang/vendor/filament-panels/sv/unsaved-changes-alert.php new file mode 100644 index 0000000..ec47ea6 --- /dev/null +++ b/lang/vendor/filament-panels/sv/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Du har osparade ändringar. Är du säker på att du vill lämna sidan?', + +]; diff --git a/lang/vendor/filament-panels/sv/widgets/account-widget.php b/lang/vendor/filament-panels/sv/widgets/account-widget.php new file mode 100644 index 0000000..df81ae9 --- /dev/null +++ b/lang/vendor/filament-panels/sv/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Logga ut', + ], + + ], + + 'welcome' => 'Välkommen', + +]; diff --git a/lang/vendor/filament-panels/sv/widgets/filament-info-widget.php b/lang/vendor/filament-panels/sv/widgets/filament-info-widget.php new file mode 100644 index 0000000..c989f1a --- /dev/null +++ b/lang/vendor/filament-panels/sv/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokumentation', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sw/auth/pages/login.php b/lang/vendor/filament-panels/sw/auth/pages/login.php new file mode 100644 index 0000000..d218651 --- /dev/null +++ b/lang/vendor/filament-panels/sw/auth/pages/login.php @@ -0,0 +1,47 @@ + 'Ingia', + + 'heading' => 'Ingia kwenye akaunti yako', + + 'form' => [ + + 'email' => [ + 'label' => 'Barua pepe', + ], + + 'password' => [ + 'label' => 'Nenosiri', + ], + + 'remember' => [ + 'label' => 'Nikumbuke', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Ingia', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Hati hizi hazilingani na rekodi zetu.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Majaribio mengi sana ya kuingia. Tafadhali jaribu tena ndani ya sekunde :seconds.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sw/global-search.php b/lang/vendor/filament-panels/sw/global-search.php new file mode 100644 index 0000000..b8caef7 --- /dev/null +++ b/lang/vendor/filament-panels/sw/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Tafuta kote', + 'placeholder' => 'Tafuta', + ], + + 'no_results_message' => 'Hakuna matokeo ya utafutaji yaliyopatikana.', + +]; diff --git a/lang/vendor/filament-panels/sw/layout.php b/lang/vendor/filament-panels/sw/layout.php new file mode 100644 index 0000000..1769826 --- /dev/null +++ b/lang/vendor/filament-panels/sw/layout.php @@ -0,0 +1,35 @@ + 'ltr', + + 'actions' => [ + + 'logout' => [ + 'label' => 'Toka', + ], + + 'open_database_notifications' => [ + 'label' => 'Fungua arifa', + ], + + 'open_user_menu' => [ + 'label' => 'Menyu ya Mtumiaji', + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Geuza hali ya giza', + ], + + 'light' => [ + 'label' => 'Geuza hali ya mwanga', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sw/pages/dashboard.php b/lang/vendor/filament-panels/sw/pages/dashboard.php new file mode 100644 index 0000000..8ab9266 --- /dev/null +++ b/lang/vendor/filament-panels/sw/pages/dashboard.php @@ -0,0 +1,7 @@ + 'Dashibodi', + +]; diff --git a/lang/vendor/filament-panels/sw/resources/pages/create-record.php b/lang/vendor/filament-panels/sw/resources/pages/create-record.php new file mode 100644 index 0000000..ae8923a --- /dev/null +++ b/lang/vendor/filament-panels/sw/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Tengeneza :label', + + 'breadcrumb' => 'Tengeneza', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Ghairi', + ], + + 'create' => [ + 'label' => 'Tengeneza', + ], + + 'create_another' => [ + 'label' => 'Tengeneza na tengeneza tena', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Imeundwa', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sw/resources/pages/edit-record.php b/lang/vendor/filament-panels/sw/resources/pages/edit-record.php new file mode 100644 index 0000000..95ab7ff --- /dev/null +++ b/lang/vendor/filament-panels/sw/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'Hariri :label', + + 'breadcrumb' => 'Hariri', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Ghairi', + ], + + 'save' => [ + 'label' => 'Hifadhi mabadiliko', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Hariri', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Imehifadhiwa', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sw/resources/pages/list-records.php b/lang/vendor/filament-panels/sw/resources/pages/list-records.php new file mode 100644 index 0000000..02c4fae --- /dev/null +++ b/lang/vendor/filament-panels/sw/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Listi', + +]; diff --git a/lang/vendor/filament-panels/sw/resources/pages/view-record.php b/lang/vendor/filament-panels/sw/resources/pages/view-record.php new file mode 100644 index 0000000..2eb49ac --- /dev/null +++ b/lang/vendor/filament-panels/sw/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'Angalia :label', + + 'breadcrumb' => 'Angalia', + + 'content' => [ + + 'tab' => [ + 'label' => 'Angalia', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/sw/widgets/account-widget.php b/lang/vendor/filament-panels/sw/widgets/account-widget.php new file mode 100644 index 0000000..d54606d --- /dev/null +++ b/lang/vendor/filament-panels/sw/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Toka', + ], + + ], + + 'welcome' => 'Karibu', + +]; diff --git a/lang/vendor/filament-panels/sw/widgets/filament-info-widget.php b/lang/vendor/filament-panels/sw/widgets/filament-info-widget.php new file mode 100644 index 0000000..9123018 --- /dev/null +++ b/lang/vendor/filament-panels/sw/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Nyaraka', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/th/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..f36933c --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,16 @@ + 'การขอยกเลิกการเปลี่ยนอีเมล', + 'heading' => 'คุณต้องการยกเลิกการขอเปลี่ยนอีเมลหรือไม่?', + 'actions' => [ + 'block' => [ + 'label' => 'ยกเลิกคำขอ', + ], + ], + 'notifications' => [ + 'blocked' => [ + 'title' => 'ยกเลิกคำขอเปลี่ยนอีเมลแล้ว', + ], + ], +]; diff --git a/lang/vendor/filament-panels/th/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/th/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..93ccbae --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,16 @@ + 'การยืนยันการเปลี่ยนอีเมล', + 'heading' => 'กรุณายืนยันการเปลี่ยนอีเมลของคุณ', + 'actions' => [ + 'verify' => [ + 'label' => 'ยืนยันอีเมล', + ], + ], + 'notifications' => [ + 'verified' => [ + 'title' => 'ยืนยันอีเมลเรียบร้อยแล้ว', + ], + ], +]; diff --git a/lang/vendor/filament-panels/th/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/th/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..830a96e --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,19 @@ + 'ปิดการใช้งานการยืนยันตัวตนหลายขั้นตอน', + 'modal' => [ + 'heading' => 'ปิดการใช้งานการยืนยันตัวตนหลายขั้นตอน', + 'description' => 'คุณแน่ใจหรือไม่ว่าต้องการปิดการใช้งานการยืนยันตัวตนหลายขั้นตอนสำหรับบัญชีนี้?', + 'actions' => [ + 'disable' => [ + 'label' => 'ปิดการใช้งาน', + ], + ], + ], + 'notifications' => [ + 'disabled' => [ + 'title' => 'ปิดการใช้งานการยืนยันตัวตนหลายขั้นตอนแล้ว', + ], + ], +]; diff --git a/lang/vendor/filament-panels/th/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/th/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..c3c4c1a --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,19 @@ + 'สร้างรหัสกู้คืนใหม่', + 'modal' => [ + 'heading' => 'สร้างรหัสกู้คืนใหม่', + 'description' => 'เมื่อคุณสร้างรหัสกู้คืนใหม่ รหัสกู้คืนเดิมจะใช้งานไม่ได้อีกต่อไป', + 'actions' => [ + 'regenerate' => [ + 'label' => 'สร้างใหม่', + ], + ], + ], + 'notifications' => [ + 'regenerated' => [ + 'title' => 'สร้างรหัสกู้คืนใหม่เรียบร้อยแล้ว', + ], + ], +]; diff --git a/lang/vendor/filament-panels/th/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/th/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..b4e5bc1 --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,24 @@ + 'ตั้งค่าแอปยืนยันตัวตน', + 'modal' => [ + 'heading' => 'ตั้งค่าแอปยืนยันตัวตน', + 'description' => 'สแกนคิวอาร์โค้ดด้านล่างด้วยแอปยืนยันตัวตนของคุณ (เช่น Google Authenticator) เพื่อเริ่มใช้งาน', + 'form' => [ + 'code' => [ + 'label' => 'รหัสยืนยัน', + ], + ], + 'actions' => [ + 'set_up' => [ + 'label' => 'ยืนยัน', + ], + ], + ], + 'notifications' => [ + 'set_up' => [ + 'title' => 'ตั้งค่าแอปยืนยันตัวตนเรียบร้อยแล้ว', + ], + ], +]; diff --git a/lang/vendor/filament-panels/th/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/th/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..26ba124 --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/multi-factor/app/provider.php @@ -0,0 +1,6 @@ + 'แอปยืนยันตัวตน', + 'description' => 'ใช้แอปยืนยันตัวตนเพื่อรับรหัสยืนยัน', +]; diff --git a/lang/vendor/filament-panels/th/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/th/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..c78ae53 --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,19 @@ + 'ปิดการใช้งานการยืนยันตัวตนผ่านอีเมล', + 'modal' => [ + 'heading' => 'ปิดการใช้งานการยืนยันตัวตนผ่านอีเมล', + 'description' => 'คุณแน่ใจหรือไม่ว่าต้องการปิดการใช้งานการยืนยันตัวตนผ่านอีเมลสำหรับบัญชีนี้?', + 'actions' => [ + 'disable' => [ + 'label' => 'ปิดการใช้งาน', + ], + ], + ], + 'notifications' => [ + 'disabled' => [ + 'title' => 'ปิดการใช้งานการยืนยันตัวตนผ่านอีเมลแล้ว', + ], + ], +]; diff --git a/lang/vendor/filament-panels/th/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/th/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..e7446c4 --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,24 @@ + 'ตั้งค่าการยืนยันตัวตนผ่านอีเมล', + 'modal' => [ + 'heading' => 'ตั้งค่าการยืนยันตัวตนผ่านอีเมล', + 'description' => 'กรุณากรอกรหัสที่เราส่งไปยังอีเมลของคุณเพื่อเริ่มใช้งาน', + 'form' => [ + 'code' => [ + 'label' => 'รหัสยืนยัน', + ], + ], + 'actions' => [ + 'set_up' => [ + 'label' => 'ยืนยัน', + ], + ], + ], + 'notifications' => [ + 'set_up' => [ + 'title' => 'ตั้งค่าการยืนยันตัวตนผ่านอีเมลเรียบร้อยแล้ว', + ], + ], +]; diff --git a/lang/vendor/filament-panels/th/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/th/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..cc37ff7 --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,9 @@ + 'รหัสยืนยันตัวตนของคุณ', + 'greeting' => 'สวัสดี!', + 'line_1' => 'รหัสสำหรับการยืนยันตัวตนคือ: :code', + 'line_2' => 'รหัสนี้จะหมดอายุในอีก :minutes นาที', + 'line_3' => 'หากคุณไม่ได้เป็นผู้ร้องขอรหัสนี้ ไม่ต้องดำเนินการใดๆ', +]; diff --git a/lang/vendor/filament-panels/th/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/th/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..ab09280 --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/multi-factor/email/provider.php @@ -0,0 +1,6 @@ + 'อีเมล', + 'description' => 'รับรหัสยืนยันตัวตนผ่านทางอีเมลของคุณ', +]; diff --git a/lang/vendor/filament-panels/th/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/th/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..98b1e52 --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,11 @@ + 'จำเป็นต้องตั้งค่าการยืนยันตัวตนหลายขั้นตอน', + 'heading' => 'กรุณาเลือกวิธีการยืนยันตัวตนหลายขั้นตอนเพื่อความปลอดภัยของบัญชีคุณ', + 'actions' => [ + 'logout' => [ + 'label' => 'ออกจากระบบ', + ], + ], +]; diff --git a/lang/vendor/filament-panels/th/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/th/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..a14c4bf --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,17 @@ + 'รหัสกู้คืนของคุณ', + 'description' => 'โปรดเก็บรักษารหัสกู้คืนเหล่านี้ไว้ในที่ปลอดภัย คุณสามารถใช้รหัสเหล่านี้ในการเข้าสู่ระบบหากคุณไม่สามารถใช้แอปยืนยันตัวตนได้', + 'actions' => [ + 'copy' => [ + 'label' => 'คัดลอกรหัส', + ], + 'download' => [ + 'label' => 'ดาวน์โหลดรหัส', + ], + 'print' => [ + 'label' => 'พิมพ์รหัส', + ], + ], +]; diff --git a/lang/vendor/filament-panels/th/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/th/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..52d7ec3 --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,13 @@ + 'แจ้งเตือนการขอเปลี่ยนอีเมล', + 'greeting' => 'สวัสดี!', + 'line_1' => 'เราได้รับคำขอเปลี่ยนอีเมลสำหรับบัญชีของคุณเป็น :new_email', + 'line_2' => 'หากคุณไม่ได้เป็นผู้ขอเปลี่ยนอีเมลนี้ กรุณาคลิกที่ปุ่มด้านล่างเพื่อยกเลิกคำขอและป้องกันบัญชีของคุณ', + 'actions' => [ + 'block' => [ + 'label' => 'ยกเลิกคำขอเปลี่ยนอีเมล', + ], + ], +]; diff --git a/lang/vendor/filament-panels/th/auth/pages/edit-profile.php b/lang/vendor/filament-panels/th/auth/pages/edit-profile.php new file mode 100644 index 0000000..7f26d2b --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/pages/edit-profile.php @@ -0,0 +1,55 @@ + 'โปรไฟล์', + + 'form' => [ + + 'email' => [ + 'label' => 'ที่อยู่อีเมล', + ], + + 'name' => [ + 'label' => 'ชื่อ', + ], + + 'password' => [ + 'label' => 'รหัสผ่านใหม่', + ], + + 'password_confirmation' => [ + 'label' => 'ยืนยันรหัสผ่านใหม่', + ], + + 'multi_factor_authentication' => [ + 'label' => 'การยืนยันตัวตนหลายขั้นตอน', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'บันทึก', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'บันทึกข้อมูลเรียบร้อย', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'ยกเลิก', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/th/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..9140a0a --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'ยืนยันที่อยู่อีเมล', + + 'heading' => 'ยืนยันที่อยู่อีเมล', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'ส่งใหม่', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'ยังไม่ได้รับอีเมลที่เราส่งไหม?', + 'notification_sent' => 'เราได้ส่งอีเมลไปยัง :email พร้อมคำแนะนำในการยืนยันที่อยู่อีเมลของคุณไปแล้ว', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'เราได้ส่งอีเมลอีกครั้งให้แล้ว', + ], + + 'notification_resend_throttled' => [ + 'title' => 'จำนวนครั้งในการส่งอีเมลได้ถึงขีดจำกัดแล้ว', + 'body' => 'กรุณาลองส่งใหม่อีก :seconds วินาที', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/auth/pages/login.php b/lang/vendor/filament-panels/th/auth/pages/login.php new file mode 100644 index 0000000..014f7fa --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/pages/login.php @@ -0,0 +1,89 @@ + 'เข้าสู่ระบบ', + + 'heading' => 'เข้าสู่ระบบ', + + 'actions' => [ + + 'register' => [ + 'before' => 'หรือ', + 'label' => 'สมัครบัญชี', + ], + + 'request_password_reset' => [ + 'label' => 'ลืมรหัสผ่านไหม', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ที่อยู่อีเมล', + ], + + 'password' => [ + 'label' => 'รหัสผ่าน', + ], + + 'remember' => [ + 'label' => 'จดจำฉัน', + ], + + 'code' => [ + 'label' => 'รหัสยืนยัน', + ], + + 'recovery_code' => [ + 'label' => 'รหัสกู้คืน', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'เข้าสู่ระบบ', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'ข้อมูลนี้ไม่ตรงกับบันทึกในระบบ', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'จำนวนครั้งในการพยายามเข้าสู่ระบบได้ถึงขีดจำกัดแล้ว', + 'body' => 'กรุณาลองใหม่อีก :seconds วินาที', + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'การยืนยันตัวตนหลายขั้นตอน', + + 'description' => 'กรุณายืนยันการเข้าสู่ระบบของคุณโดยใช้วิธีใดวิธีหนึ่งด้านล่าง', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'ใช้รหัสกู้คืน', + ], + + 'use_authentication_code' => [ + 'label' => 'ใช้รหัสยืนยันตัวตน', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/th/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..523f905 --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'รีเซ็ตรหัสผ่าน', + + 'heading' => 'ลืมรหัสผ่านไหม', + + 'actions' => [ + + 'login' => [ + 'label' => 'กลับไปยังหน้าเข้าสู่ระบบ', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ที่อยู่อีเมล', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'ส่งอีเมล', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'จำนวนการขอได้ถึงขีดจำกัดแล้ว', + 'body' => 'กรุณาลองใหม่อีก :seconds วินาที', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/th/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..f841d3f --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'รีเซ็ตรหัสผ่าน', + + 'heading' => 'รีเซ็ตรหัสผ่าน', + + 'form' => [ + + 'email' => [ + 'label' => 'ที่อยู่อีเมล', + ], + + 'password' => [ + 'label' => 'รหัสผ่าน', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'ยืนยันรหัสผ่าน', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'รีเซ็ตรหัสผ่าน', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'จำนวนครั้งในการพยายามรีเซ็ตรหัสผ่านได้ถึงขีดจำกัดแล้ว', + 'body' => 'กรุณาลองใหม่อีก :seconds วินาที', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/auth/pages/register.php b/lang/vendor/filament-panels/th/auth/pages/register.php new file mode 100644 index 0000000..0613b1b --- /dev/null +++ b/lang/vendor/filament-panels/th/auth/pages/register.php @@ -0,0 +1,56 @@ + 'ลงทะเบียน', + + 'heading' => 'ลงทะเบียน', + + 'actions' => [ + + 'login' => [ + 'before' => 'หรือ', + 'label' => 'เข้าสู่ระบบบัญชีของคุณ', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ที่อยู่อีเมล', + ], + + 'name' => [ + 'label' => 'ชื่อ', + ], + + 'password' => [ + 'label' => 'รหัสผ่าน', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'ยืนยันรหัสผ่าน', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'ลงทะเบียน', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'จำนวนครั้งในการพยายามลงทะเบียนได้ถึงขีดจำกัดแล้ว', + 'body' => 'กรุณาลองใหม่อีก :seconds วินาที', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/error-notifications.php b/lang/vendor/filament-panels/th/error-notifications.php new file mode 100644 index 0000000..eafec55 --- /dev/null +++ b/lang/vendor/filament-panels/th/error-notifications.php @@ -0,0 +1,6 @@ + 'เกิดข้อผิดพลาด', + 'body' => 'กรุณาตรวจสอบข้อมูลในฟอร์มและลองใหม่อีกครั้ง', +]; diff --git a/lang/vendor/filament-panels/th/global-search.php b/lang/vendor/filament-panels/th/global-search.php new file mode 100644 index 0000000..4af0ead --- /dev/null +++ b/lang/vendor/filament-panels/th/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'ค้นหา', + 'placeholder' => 'ค้นหา...', + ], + + 'no_results_message' => 'ไม่มีผลลัพธ์', + +]; diff --git a/lang/vendor/filament-panels/th/layout.php b/lang/vendor/filament-panels/th/layout.php new file mode 100644 index 0000000..847287c --- /dev/null +++ b/lang/vendor/filament-panels/th/layout.php @@ -0,0 +1,67 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'จัดการการสมัครสมาชิก', + ], + + 'logout' => [ + 'label' => 'ออกจากระบบ', + ], + + 'multi_factor_authentication' => [ + 'label' => 'การยืนยันตัวตนหลายขั้นตอน', + ], + + 'open_database_notifications' => [ + 'label' => 'เปิดการแจ้งเตือน', + ], + + 'open_user_menu' => [ + 'label' => 'เมนูผู้ใช้', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'ยุบแถบด้านข้าง', + ], + + 'expand' => [ + 'label' => 'ขยายแถบด้านข้าง', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'เปลี่ยนเป็นธีมกลางคืน', + ], + + 'light' => [ + 'label' => 'เปลี่ยนเป็นธีมกลางวัน', + ], + + 'system' => [ + 'label' => 'เปลี่ยนเป็นธีมตามระบบ', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'รูปผู้ใช้ :name', + ], + + 'logo' => [ + 'alt' => 'โลโก้ :name', + ], + +]; diff --git a/lang/vendor/filament-panels/th/pages/auth/edit-profile.php b/lang/vendor/filament-panels/th/pages/auth/edit-profile.php new file mode 100644 index 0000000..3c89def --- /dev/null +++ b/lang/vendor/filament-panels/th/pages/auth/edit-profile.php @@ -0,0 +1,51 @@ + 'โปรไฟล์', + + 'form' => [ + + 'email' => [ + 'label' => 'ที่อยู่อีเมล', + ], + + 'name' => [ + 'label' => 'ชื่อ', + ], + + 'password' => [ + 'label' => 'รหัสผ่านใหม่', + ], + + 'password_confirmation' => [ + 'label' => 'ยืนยันรหัสผ่านใหม่', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'บันทึก', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'บันทึกข้อมูลเรียบร้อย', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'ยกเลิก', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/pages/auth/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/th/pages/auth/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..9140a0a --- /dev/null +++ b/lang/vendor/filament-panels/th/pages/auth/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'ยืนยันที่อยู่อีเมล', + + 'heading' => 'ยืนยันที่อยู่อีเมล', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'ส่งใหม่', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'ยังไม่ได้รับอีเมลที่เราส่งไหม?', + 'notification_sent' => 'เราได้ส่งอีเมลไปยัง :email พร้อมคำแนะนำในการยืนยันที่อยู่อีเมลของคุณไปแล้ว', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'เราได้ส่งอีเมลอีกครั้งให้แล้ว', + ], + + 'notification_resend_throttled' => [ + 'title' => 'จำนวนครั้งในการส่งอีเมลได้ถึงขีดจำกัดแล้ว', + 'body' => 'กรุณาลองส่งใหม่อีก :seconds วินาที', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/pages/auth/login.php b/lang/vendor/filament-panels/th/pages/auth/login.php new file mode 100644 index 0000000..7aa948d --- /dev/null +++ b/lang/vendor/filament-panels/th/pages/auth/login.php @@ -0,0 +1,61 @@ + 'เข้าสู่ระบบ', + + 'heading' => 'เข้าสู่ระบบ', + + 'actions' => [ + + 'register' => [ + 'before' => 'หรือ', + 'label' => 'สมัครบัญชี', + ], + + 'request_password_reset' => [ + 'label' => 'ลืมรหัสผ่านไหม', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ที่อยู่อีเมล', + ], + + 'password' => [ + 'label' => 'รหัสผ่าน', + ], + + 'remember' => [ + 'label' => 'จดจำฉัน', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'เข้าสู่ระบบ', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'ข้อมูลนี้ไม่ตรงกับบันทึกในระบบ', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'จำนวนครั้งในการพยายามเข้าสู่ระบบได้ถึงขีดจำกัดแล้ว', + 'body' => 'กรุณาลองใหม่อีก :seconds วินาที', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/pages/auth/password-reset/request-password-reset.php b/lang/vendor/filament-panels/th/pages/auth/password-reset/request-password-reset.php new file mode 100644 index 0000000..523f905 --- /dev/null +++ b/lang/vendor/filament-panels/th/pages/auth/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'รีเซ็ตรหัสผ่าน', + + 'heading' => 'ลืมรหัสผ่านไหม', + + 'actions' => [ + + 'login' => [ + 'label' => 'กลับไปยังหน้าเข้าสู่ระบบ', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ที่อยู่อีเมล', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'ส่งอีเมล', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'จำนวนการขอได้ถึงขีดจำกัดแล้ว', + 'body' => 'กรุณาลองใหม่อีก :seconds วินาที', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/pages/auth/password-reset/reset-password.php b/lang/vendor/filament-panels/th/pages/auth/password-reset/reset-password.php new file mode 100644 index 0000000..f841d3f --- /dev/null +++ b/lang/vendor/filament-panels/th/pages/auth/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'รีเซ็ตรหัสผ่าน', + + 'heading' => 'รีเซ็ตรหัสผ่าน', + + 'form' => [ + + 'email' => [ + 'label' => 'ที่อยู่อีเมล', + ], + + 'password' => [ + 'label' => 'รหัสผ่าน', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'ยืนยันรหัสผ่าน', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'รีเซ็ตรหัสผ่าน', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'จำนวนครั้งในการพยายามรีเซ็ตรหัสผ่านได้ถึงขีดจำกัดแล้ว', + 'body' => 'กรุณาลองใหม่อีก :seconds วินาที', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/pages/auth/register.php b/lang/vendor/filament-panels/th/pages/auth/register.php new file mode 100644 index 0000000..0613b1b --- /dev/null +++ b/lang/vendor/filament-panels/th/pages/auth/register.php @@ -0,0 +1,56 @@ + 'ลงทะเบียน', + + 'heading' => 'ลงทะเบียน', + + 'actions' => [ + + 'login' => [ + 'before' => 'หรือ', + 'label' => 'เข้าสู่ระบบบัญชีของคุณ', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ที่อยู่อีเมล', + ], + + 'name' => [ + 'label' => 'ชื่อ', + ], + + 'password' => [ + 'label' => 'รหัสผ่าน', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'ยืนยันรหัสผ่าน', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'ลงทะเบียน', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'จำนวนครั้งในการพยายามลงทะเบียนได้ถึงขีดจำกัดแล้ว', + 'body' => 'กรุณาลองใหม่อีก :seconds วินาที', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/pages/dashboard.php b/lang/vendor/filament-panels/th/pages/dashboard.php new file mode 100644 index 0000000..e3f7302 --- /dev/null +++ b/lang/vendor/filament-panels/th/pages/dashboard.php @@ -0,0 +1,33 @@ + 'แดชบอร์ด', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'ตัวกรอง', + + 'modal' => [ + + 'heading' => 'ตัวกรอง', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'ใช้ตัวกรอง', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/th/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..aeca934 --- /dev/null +++ b/lang/vendor/filament-panels/th/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'บันทึก', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'บันทึกข้อมูลเรียบร้อย', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/query-builder.php b/lang/vendor/filament-panels/th/query-builder.php new file mode 100644 index 0000000..7716807 --- /dev/null +++ b/lang/vendor/filament-panels/th/query-builder.php @@ -0,0 +1,139 @@ + 'ตัวสร้างคำสั่งคิวรี', + + 'form' => [ + 'operator' => [ + 'label' => 'ตัวดำเนินการ', + ], + 'rule' => [ + 'label' => 'กฎ', + ], + 'value' => [ + 'label' => 'ค่า', + ], + ], + + 'operators' => [ + + 'is_filled' => [ + 'label' => 'มีค่า', + ], + + 'is_blank' => [ + 'label' => 'เป็นค่าว่าง', + ], + + 'boolean' => [ + + 'is_true' => [ + 'label' => 'เป็นจริง', + ], + + 'is_false' => [ + 'label' => 'เป็นเท็จ', + ], + + ], + + 'date' => [ + + 'is_after' => [ + 'label' => 'หลังจาก', + ], + + 'is_before' => [ + 'label' => 'ก่อนหน้า', + ], + + 'is_year' => [ + 'label' => 'เป็นปี', + ], + + ], + + 'number' => [ + + 'is_equals' => [ + 'label' => 'เท่ากับ', + ], + + 'is_not_equals' => [ + 'label' => 'ไม่เท่ากับ', + ], + + 'is_greater_than' => [ + 'label' => 'มากกว่า', + ], + + 'is_less_than' => [ + 'label' => 'น้อยกว่า', + ], + + 'is_greater_than_or_equal_to' => [ + 'label' => 'มากกว่าหรือเท่ากับ', + ], + + 'is_less_than_or_equal_to' => [ + 'label' => 'น้อยกว่าหรือเท่ากับ', + ], + + ], + + 'select' => [ + + 'is_equals' => [ + 'label' => 'เท่ากับ', + ], + + 'is_not_equals' => [ + 'label' => 'ไม่เท่ากับ', + ], + + ], + + 'text' => [ + + 'contains' => [ + 'label' => 'ประกอบด้วย', + ], + + 'does_not_contain' => [ + 'label' => 'ไม่ประกอบด้วย', + ], + + 'equals' => [ + 'label' => 'เท่ากับ', + ], + + 'does_not_equal' => [ + 'label' => 'ไม่เท่ากับ', + ], + + 'starts_with' => [ + 'label' => 'เริ่มต้นด้วย', + ], + + 'ends_with' => [ + 'label' => 'สิ้นสุดด้วย', + ], + + ], + + ], + + 'actions' => [ + + 'add_rule' => [ + 'label' => 'เพิ่มกฎ', + ], + + 'add_rule_group' => [ + 'label' => 'เพิ่มกลุ่มกฎ', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/resources/pages/create-record.php b/lang/vendor/filament-panels/th/resources/pages/create-record.php new file mode 100644 index 0000000..e531b6a --- /dev/null +++ b/lang/vendor/filament-panels/th/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'เพิ่ม:label', + + 'breadcrumb' => 'เพิ่ม', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'ยกเลิก', + ], + + 'create' => [ + 'label' => 'บันทึก', + ], + + 'create_another' => [ + 'label' => 'บันทึกและเพิ่มอีกรายการ', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'บันทึกเรียบร้อย', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/resources/pages/edit-record.php b/lang/vendor/filament-panels/th/resources/pages/edit-record.php new file mode 100644 index 0000000..bc14dea --- /dev/null +++ b/lang/vendor/filament-panels/th/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'แก้ไข :label', + + 'breadcrumb' => 'แก้ไข', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'ยกเลิก', + ], + + 'save' => [ + 'label' => 'บันทึก', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'แก้ไข', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'บันทึกข้อมูลเรียบร้อย', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/resources/pages/list-records.php b/lang/vendor/filament-panels/th/resources/pages/list-records.php new file mode 100644 index 0000000..c5b1c01 --- /dev/null +++ b/lang/vendor/filament-panels/th/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'รายการ', + +]; diff --git a/lang/vendor/filament-panels/th/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/th/resources/pages/manage-related-records.php new file mode 100644 index 0000000..9a19a84 --- /dev/null +++ b/lang/vendor/filament-panels/th/resources/pages/manage-related-records.php @@ -0,0 +1,5 @@ + 'จัดการ :label', +]; diff --git a/lang/vendor/filament-panels/th/resources/pages/view-record.php b/lang/vendor/filament-panels/th/resources/pages/view-record.php new file mode 100644 index 0000000..4a86b33 --- /dev/null +++ b/lang/vendor/filament-panels/th/resources/pages/view-record.php @@ -0,0 +1,17 @@ + ':label', + + 'breadcrumb' => 'รายละเอียด', + + 'content' => [ + + 'tab' => [ + 'label' => 'รายละเอียด', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/th/unsaved-changes-alert.php b/lang/vendor/filament-panels/th/unsaved-changes-alert.php new file mode 100644 index 0000000..5f2284b --- /dev/null +++ b/lang/vendor/filament-panels/th/unsaved-changes-alert.php @@ -0,0 +1,14 @@ + 'การเปลี่ยนแปลงที่ไม่ได้บันทึก', + 'body' => 'คุณมีการเปลี่ยนแปลงที่ไม่ได้บันทึก คุณแน่ใจหรือไม่ว่าต้องการออกจากหน้านี้?', + 'actions' => [ + 'stay' => [ + 'label' => 'อยู่ต่อ', + ], + 'leave' => [ + 'label' => 'ออกจากหน้า', + ], + ], +]; diff --git a/lang/vendor/filament-panels/th/widgets/account-widget.php b/lang/vendor/filament-panels/th/widgets/account-widget.php new file mode 100644 index 0000000..9b0c457 --- /dev/null +++ b/lang/vendor/filament-panels/th/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'ออกจากระบบ', + ], + + ], + + 'welcome' => 'ยินดีต้อนรับ', + +]; diff --git a/lang/vendor/filament-panels/th/widgets/filament-info-widget.php b/lang/vendor/filament-panels/th/widgets/filament-info-widget.php new file mode 100644 index 0000000..9079cc3 --- /dev/null +++ b/lang/vendor/filament-panels/th/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'เอกสารคู่มือ', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/tr/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..0f66681 --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'E-posta adresi güncelleme isteği engellendi', + 'body' => 'Başarılı bir şekilde E-posta adresinizin :email olarak güncellenme isteğini engellediniz. Eğer bu isteği siz yapmadıysanız lütfen bizimle iletişime geçin.', + ], + + 'failed' => [ + 'title' => 'E-posta adresi güncelleme isteği engellenirken bir hata oluştu', + 'body' => 'Ne yazık ki, E-posta adresinizin :email olarak güncellenme isteğini engelleme işleminiz başarısız oldu, siz engelleyemeden E-posta adresi onaylandı. Eğer bu isteği siz yapmadıysanız lütfen bizimle iletişime geçin.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/tr/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..8252e84 --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'E-posta adresi güncellendi', + 'body' => 'E-posta adresiniz başarıyla :email olarak güncellendi.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/tr/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..995bdcc --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Kapat', + + 'modal' => [ + + 'heading' => 'Doğrulama uygulamasını devre dışı bırak', + + 'description' => 'Doğrulama uygulamasını devre dışı bırakmak istediğinize emin misiniz? Bunu devre dışı bırakmak hesabınızda bulunan ekstra koruma katmanını kaldıracaktır.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Doğrulama uygulamanızdaki 6 haneli kodu girin', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Bunun yerine kurtarma kodu girin', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Girmiş olduğunuz kod geçersiz.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Veya, bir kurtarma kodu girin', + + 'validation_attribute' => 'kurtarma kodu', + + 'messages' => [ + + 'invalid' => 'Girmiş olduğunuz kurtarma kodu geçersiz.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Uygulamayı devre dışı bırak', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Doğrulama uygulaması devre dışı bırakıldı', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/tr/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..88b5896 --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Kurtarma kodlarını yeniden oluştur', + + 'modal' => [ + + 'heading' => 'Kurtarma kodlarını yeniden oluştur', + + 'description' => 'Eğer kurtarma kodlarınızı kaybederseniz buradan yeniden oluşturabilirsiniz. Eski kodlarınız devre dışı kalacaktır.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Doğrulama uygulamanızdaki 6 haneli kodu girin', + + 'validation_attribute' => 'kod', + + 'messages' => [ + + 'invalid' => 'Girmiş olduğunuz kod geçersiz.', + + ], + + ], + + 'password' => [ + + 'label' => 'Veya, geçerli şifrenizi girin', + + 'validation_attribute' => 'şifre', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Kodları yeniden oluştur', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Yeni kurtarma kodları oluşturuldu', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Yeni kodlar', + + 'description' => 'Lütfen bu kodları güvenli bir şekilde saklayın. Bu kodlar size sadece bir kere gösterilecek ve eğer doğrulama uygulamanıza erişiminizi kaybederseniz bu kodları kullanmanız gerekecek:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Kapat', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/tr/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..eb07823 --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Kur', + + 'modal' => [ + + 'heading' => 'Doğrulama uygulaması kur', + + 'description' => <<<'BLADE' + Devam etmek için Google Authenticator gibi (iOS, Android) uygulamalardan birine ihtiyacınız olacak. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Doğrulama uygulamanızla aşağıdaki QR kodunu taratın:', + + 'alt' => 'QR kodunu taratın', + + ], + + 'text_code' => [ + + 'instruction' => 'Veya aşağıdaki kodu elle girin:', + + 'messages' => [ + 'copied' => 'Kopyalandı', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Lütfen bu kodları güvenli bir şekilde saklayın. Bu kodlar size sadece bir kere gösterilecek ve eğer doğrulama uygulamanıza erişiminizi kaybederseniz bu kodları kullanmanız gerekecek:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Doğrulama uygulamanızdaki 6 haneli kodu girin', + + 'validation_attribute' => 'kod', + + 'below_content' => 'Giriş yaparken veya hassas bir işlem gerçekleştirirken doğrulama uygulamanız tarafından oluşturulan 6 haneli kodu girmeniz gerekecek.', + + 'messages' => [ + + 'invalid' => 'Girmiş olduğunuz kod geçersiz.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Doğrulama uygulamasını etkinleştir', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Doğrulama uygulaması etkinleştirildi', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/tr/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..7bd5b95 --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Doğrulama uygulaması', + + 'below_content' => 'Girişinizi doğrulamak için doğrulama uygulamanız tarafından oluşturulan kodları kullanın', + + 'messages' => [ + 'enabled' => 'Etkin', + 'disabled' => 'Devre Dışı', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Use a code from your authenticator app', + + 'code' => [ + + 'label' => 'Girişinizi doğrulamak için doğrulama uygulamanız tarafından oluşturulan bir kod girin', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Kurtarma kodu kullan', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Girmiş olduğunuz kod geçersiz.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Veya kurtarma kodu girin', + + 'validation_attribute' => 'kurtarma kodu', + + 'messages' => [ + + 'invalid' => 'Girmiş olduğunuz kurtarma kodu geçersiz.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/tr/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..c09672c --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + 'Kapat', + + 'modal' => [ + + 'heading' => 'E-posta doğrulama kodlarını devre dışı bırak', + + 'description' => 'E-posta doğrulama kodları almayı durdurmak istediğinizden emin misiniz? Bu özelliği devre dışı bırakmak hesabınızdan ek bir güvenlik katmanını kaldıracaktır.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Size e-posta ile gönderdiğimiz 6 haneli kodu girin', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'E-posta ile yeni kod gönder', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Size e-posta ile yeni bir kod gönderdik', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Girdiğiniz kod geçersiz.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'E-posta doğrulama kodlarını devre dışı bırak', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'E-posta doğrulama kodları devre dışı bırakıldı', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/tr/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..2a5fcdc --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + 'Kur', + + 'modal' => [ + + 'heading' => 'E-posta doğrulama kodlarını kur', + + 'description' => 'Her giriş yaptığınızda veya hassas işlemler gerçekleştirdiğinizde size e-posta ile gönderdiğimiz 6 haneli kodu girmeniz gerekecek. Kurulumu tamamlamak için e-postanızı kontrol edin ve 6 haneli kodu girin.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Size e-posta ile gönderdiğimiz 6 haneli kodu girin', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'E-posta ile yeni kod gönder', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Size e-posta ile yeni bir kod gönderdik', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Girdiğiniz kod geçersiz.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'E-posta doğrulama kodlarını etkinleştir', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'E-posta doğrulama kodları etkinleştirildi', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/tr/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..d635e6f --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Giriş kodunuz', + + 'lines' => [ + 'Giriş kodunuz: :code', + 'Bu kod 1 dakika içinde geçersiz olacak.|Bu kod :minutes dakika içinde geçersiz olacak.', + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/tr/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..34503ba --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'E-posta doğrulama kodları', + + 'below_content' => 'Giriş sırasında kimliğinizi doğrulamak için e-posta adresinize geçici bir kod alın.', + + 'messages' => [ + 'enabled' => 'Etkin', + 'disabled' => 'Devre dışı', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'E-postanıza kod gönder', + + 'code' => [ + + 'label' => 'Size e-posta ile gönderdiğimiz 6 haneli kodu girin', + + 'validation_attribute' => 'kod', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'E-posta ile yeni kod gönder', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Size e-posta ile yeni bir kod gönderdik', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Girdiğiniz kod geçersiz.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/tr/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..1f0d0ce --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'İki faktörlü kimlik doğrulamayı (2FA) kur', + + 'heading' => 'İki faktörlü kimlik doğrulamayı kur', + + 'subheading' => '2FA, giriş yaparken ikinci bir doğrulama formu gerektirerek hesabınıza ek bir güvenlik katmanı ekler.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Devam et', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/tr/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..9ef9399 --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Tüm kodları', + + 'copy' => [ + 'label' => 'kopyalamak', + ], + + 'or', + + 'download' => [ + 'label' => 'indirmek', + ], + + 'için tıklayın.', + + ], + + 'messages' => [ + 'copied' => 'Kopyalandı', + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/tr/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..404ec4d --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'E-posta adresiniz güncelleniyor', + + 'lines' => [ + 'E-posta adresinizin güncellenmesi isteğini aldık. Bu güncelleme işlemi şifreniz kullanılarak doğrulanmıştır.', + 'Doğrulanınca hesabınızın E-posta adresi belirtilen adres olarak güncellenecektir: :email.', + 'Aşağıdaki butonu kullanarak E-posta adresi doğrulanmadan bu güncelleme isteğini iptal edebilirsiniz.', + 'Eğer bu isteği siz yapmadıysanız lütfen bizimle iletişime geçin.', + ], + + 'action' => 'Güncelleme İsteğini İptal Et', + +]; diff --git a/lang/vendor/filament-panels/tr/auth/pages/edit-profile.php b/lang/vendor/filament-panels/tr/auth/pages/edit-profile.php new file mode 100644 index 0000000..5a75ad3 --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Profil', + + 'form' => [ + + 'email' => [ + 'label' => 'E-posta adresi', + ], + + 'name' => [ + 'label' => 'Ad', + ], + + 'password' => [ + 'label' => 'Yeni şifre', + 'validation_attribute' => 'şifre', + ], + + 'password_confirmation' => [ + 'label' => 'Yeni şifreyi onayla', + 'validation_attribute' => 'şifre onayı', + ], + + 'current_password' => [ + 'label' => 'Güncel şifre', + 'below_content' => 'Güvenliğiniz için lütfen güncel şifrenizi girin.', + 'validation_attribute' => 'güncel şifre', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Değişiklikleri Kaydet', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'İki Faktörlü Doğrulama (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'E-posta adresi güncelleme isteği gönderildi', + 'body' => 'E-posta adresi güncelleme isteği :email adresine gönderildi. Lütfen güncellemeyi tamamlamak için E-posta adresinizi doğrulayın.', + ], + + 'saved' => [ + 'title' => 'Kaydedildi', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'İptal', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/tr/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..6f37c06 --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'E-posta adresinizi doğrulayın', + + 'heading' => 'E-posta adresinizi doğrulayın', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Yeniden Gönder', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Gönderdiğimiz e-postayı almadınız mı?', + 'notification_sent' => ':email adresine, e-posta adresinizi nasıl doğrulayacağınıza ilişkin talimatları içeren bir e-posta gönderdik.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'E-posta yeniden gönderildi.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Çok fazla yeniden gönderme denemesi', + 'body' => 'Lütfen :seconds saniye sonra tekrar deneyin.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/pages/login.php b/lang/vendor/filament-panels/tr/auth/pages/login.php new file mode 100644 index 0000000..66a33d5 --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Giriş Yap', + + 'heading' => 'Oturum Aç', + + 'actions' => [ + + 'register' => [ + 'before' => 'veya', + 'label' => 'bir hesap oluşturun', + ], + + 'request_password_reset' => [ + 'label' => 'Şifrenizi mi unuttunuz?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-posta adresi', + ], + + 'password' => [ + 'label' => 'Şifre', + ], + + 'remember' => [ + 'label' => 'Beni hatırla', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Giriş yap', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Kimliğinizi doğrulayın', + + 'subheading' => 'Giriş yapmaya devam etmek için kimliğinizi doğrulamanız gerekmektedir.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Nasıl doğrulamak istersiniz?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Girişi doğrula', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Bu kimlik bilgileri kayıtlarımızla eşleşmiyor.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Çok fazla giriş denemesi', + 'body' => 'Lütfen :seconds saniye sonra tekrar deneyin.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/tr/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..b14565c --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Şifrenizi sıfırlayın', + + 'heading' => 'Şifrenizi mi unuttunuz?', + + 'actions' => [ + + 'login' => [ + 'label' => 'girişe geri dön', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-posta adresi', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'E-posta gönder', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Eğer hesabınız yoksa bir e-posta almayacaksınız.', + ], + + 'throttled' => [ + 'title' => 'Çok fazla istek', + 'body' => 'Lütfen :seconds saniye sonra tekrar deneyin.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/tr/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..e5fadcd --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Şifrenizi sıfırlayın', + + 'heading' => 'Şifrenizi sıfırlayın', + + 'form' => [ + + 'email' => [ + 'label' => 'E-posta adresi', + ], + + 'password' => [ + 'label' => 'Şifre', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Şifreyi onayla', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Şifreyi sıfırla', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Çok fazla sıfırlama denemesi', + 'body' => 'Lütfen :seconds saniye sonra tekrar deneyin.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/auth/pages/register.php b/lang/vendor/filament-panels/tr/auth/pages/register.php new file mode 100644 index 0000000..f2fddea --- /dev/null +++ b/lang/vendor/filament-panels/tr/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Kayıt Ol', + + 'heading' => 'Üye Ol', + + 'actions' => [ + + 'login' => [ + 'before' => 'veya', + 'label' => 'hesabınıza giriş yapın', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'E-posta adresi', + ], + + 'name' => [ + 'label' => 'Ad', + ], + + 'password' => [ + 'label' => 'Şifre', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Şifreyi onayla', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Üye ol', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Çok fazla kayıt denemesi', + 'body' => 'Lütfen :seconds saniye sonra tekrar deneyin.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/error-notifications.php b/lang/vendor/filament-panels/tr/error-notifications.php new file mode 100644 index 0000000..0972779 --- /dev/null +++ b/lang/vendor/filament-panels/tr/error-notifications.php @@ -0,0 +1,9 @@ + 'Sayfa yüklenirken hata oluştu', + + 'body' => 'Sayfa yüklenirken bir hata oluştu. Lütfen daha sonra tekrar deneyin.', + +]; diff --git a/lang/vendor/filament-panels/tr/global-search.php b/lang/vendor/filament-panels/tr/global-search.php new file mode 100644 index 0000000..7f98a4c --- /dev/null +++ b/lang/vendor/filament-panels/tr/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Genel arama', + 'placeholder' => 'Ara', + ], + + 'no_results_message' => 'Sonuç bulunamadı.', + +]; diff --git a/lang/vendor/filament-panels/tr/layout.php b/lang/vendor/filament-panels/tr/layout.php new file mode 100644 index 0000000..368c07d --- /dev/null +++ b/lang/vendor/filament-panels/tr/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Aboneliği yönet', + ], + + 'logout' => [ + 'label' => 'Oturumu kapat', + ], + + 'open_database_notifications' => [ + 'label' => 'Bildirimleri aç', + ], + + 'open_user_menu' => [ + 'label' => 'Kullanıcı menüsü', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Kenar çubuğunu daralt', + ], + + 'expand' => [ + 'label' => 'Kenar çubuğunu genişlet', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Koyu tema', + ], + + 'light' => [ + 'label' => 'Açık tema', + ], + + 'system' => [ + 'label' => 'Sistem varsayılanı', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => ':name avatarı', + ], + + 'logo' => [ + 'alt' => ':name logo', + ], + +]; diff --git a/lang/vendor/filament-panels/tr/pages/dashboard.php b/lang/vendor/filament-panels/tr/pages/dashboard.php new file mode 100644 index 0000000..dfcb8d3 --- /dev/null +++ b/lang/vendor/filament-panels/tr/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Panel', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtre', + + 'modal' => [ + + 'heading' => 'Filtre', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Uygula', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/tr/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..2fddce5 --- /dev/null +++ b/lang/vendor/filament-panels/tr/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Değişiklikleri kaydet', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Kaydedildi', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/resources/pages/create-record.php b/lang/vendor/filament-panels/tr/resources/pages/create-record.php new file mode 100644 index 0000000..c8759f0 --- /dev/null +++ b/lang/vendor/filament-panels/tr/resources/pages/create-record.php @@ -0,0 +1,37 @@ + ':label oluştur', + + 'breadcrumb' => 'Oluştur', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'İptal', + ], + + 'create' => [ + 'label' => 'Oluştur', + ], + + 'create_another' => [ + 'label' => 'Oluştur & yeni oluştur', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Oluşturuldu', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/resources/pages/edit-record.php b/lang/vendor/filament-panels/tr/resources/pages/edit-record.php new file mode 100644 index 0000000..b0c6453 --- /dev/null +++ b/lang/vendor/filament-panels/tr/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + ':label düzenle', + + 'breadcrumb' => 'Düzenle', + + 'navigation_label' => 'Düzenle', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'İptal', + ], + + 'save' => [ + 'label' => 'Değişiklikleri kaydet', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Düzenle', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Kaydedildi', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/resources/pages/list-records.php b/lang/vendor/filament-panels/tr/resources/pages/list-records.php new file mode 100644 index 0000000..51ebe1a --- /dev/null +++ b/lang/vendor/filament-panels/tr/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Liste', + +]; diff --git a/lang/vendor/filament-panels/tr/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/tr/resources/pages/manage-related-records.php new file mode 100644 index 0000000..0da819a --- /dev/null +++ b/lang/vendor/filament-panels/tr/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + ':label :relationship yönet', + +]; diff --git a/lang/vendor/filament-panels/tr/resources/pages/view-record.php b/lang/vendor/filament-panels/tr/resources/pages/view-record.php new file mode 100644 index 0000000..6d6396d --- /dev/null +++ b/lang/vendor/filament-panels/tr/resources/pages/view-record.php @@ -0,0 +1,19 @@ + ':label görüntüle', + + 'breadcrumb' => 'Görüntüle', + + 'navigation_label' => 'Görüntüle', + + 'content' => [ + + 'tab' => [ + 'label' => 'Görüntüle', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/tr/unsaved-changes-alert.php b/lang/vendor/filament-panels/tr/unsaved-changes-alert.php new file mode 100644 index 0000000..2536899 --- /dev/null +++ b/lang/vendor/filament-panels/tr/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Kayıt edilmemiş değişiklikleriniz mevcut. Bu sayfayı terk etmek istediğinize emin misiniz?', + +]; diff --git a/lang/vendor/filament-panels/tr/widgets/account-widget.php b/lang/vendor/filament-panels/tr/widgets/account-widget.php new file mode 100644 index 0000000..005087f --- /dev/null +++ b/lang/vendor/filament-panels/tr/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Oturumu kapat', + ], + + ], + + 'welcome' => 'Hoş geldin', + +]; diff --git a/lang/vendor/filament-panels/tr/widgets/filament-info-widget.php b/lang/vendor/filament-panels/tr/widgets/filament-info-widget.php new file mode 100644 index 0000000..a1d8519 --- /dev/null +++ b/lang/vendor/filament-panels/tr/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Dokümantasyon', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/uk/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..643f6ef --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Зміну електронної адреси заблоковано', + 'body' => 'Ви успішно заблокували спробу змінити електронну адресу на :email. Якщо це були не ви, негайно зв’яжіться з нами.', + ], + + 'failed' => [ + 'title' => 'Не вдалося заблокувати зміну електронної адреси', + 'body' => 'На жаль, не вдалося запобігти зміні електронної адреси на :email, оскільки її вже було підтверджено до моменту блокування. Якщо це були не ви, негайно зв’яжіться з нами.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/uk/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..216194f --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Електронну адресу змінено', + 'body' => 'Вашу електронну адресу успішно змінено на :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/uk/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..617b5ff --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Вимкнути', + + 'modal' => [ + + 'heading' => 'Вимкнення аутентифікатора', + + 'description' => 'Ви впевнені, що хочете припинити використання аутентифікатора? Це призведе до зменшення рівня безпеки вашого облікового запису.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Введіть 6-значний код з аутентифікатора', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Натомість використати резервний код', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Введений вами код недійсний.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Або введіть резервний код', + + 'validation_attribute' => 'резервний код', + + 'messages' => [ + + 'invalid' => 'Введений вами резервний код недійсний.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Вимкнути аутентифікатор', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Аутентифікатор вимкнено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/uk/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..f87cd7a --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Перегенерувати резервні коди', + + 'modal' => [ + + 'heading' => 'Перегенерувати резервні коди аутентифікатора', + + 'description' => 'Якщо ви втратите резервні коди, тут ви можете їх відновити. Ваші старі резервні коди стануть негайно недійсними.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Введіть 6-значний код з аутентифікатора', + + 'validation_attribute' => 'код', + + 'messages' => [ + + 'invalid' => 'Введений вами код недійсний.', + + ], + + ], + + 'password' => [ + + 'label' => 'Або введіть поточний пароль', + + 'validation_attribute' => 'пароль', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Перегенерувати', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Нові резервні коди аутентифікатора створено', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Нові резервні коди', + + 'description' => 'Збережіть наступні резервні коди у безпечному місці. Їх буде показано лише один раз, але вони знадобляться, якщо ви втратите доступ до аутентифікатора:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Закрити', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/uk/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..bbbf179 --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Налаштувати', + + 'modal' => [ + + 'heading' => 'Налаштування аутентифікатора', + + 'description' => <<<'BLADE' + Для завершення цього процесу вам знадобиться додаток, наприклад Google Authenticator (iOS, Android). + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Відскануйте цей QR-код за допомогою аутентифікатора:', + + 'alt' => 'QR-код для сканування в аутентифікаторі', + + ], + + 'text_code' => [ + + 'instruction' => 'Або введіть цей код вручну:', + + 'messages' => [ + 'copied' => 'Скопійовано', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Збережіть наведені нижче резервні коди в надійному місці. Їх буде показано лише один раз, але вони знадобляться, якщо ви втратите доступ до аутентифікатора:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Введіть 6-значний код з аутентифікатора', + + 'validation_attribute' => 'код', + + 'below_content' => 'Вам потрібно буде вводити 6-значний код з аутентифікатора щоразу при вході або виконанні чутливих дій.', + + 'messages' => [ + + 'invalid' => 'Введений вами код недійсний.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Увімкнути аутентифікатор', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Аутентифікатор увімкнено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/uk/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..d95f6b6 --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Аутентифікатор', + + 'below_content' => 'Використовуйте захищений додаток для створення тимчасового коду підтвердження входу.', + + 'messages' => [ + 'enabled' => 'Увімкнено', + 'disabled' => 'Вимкнено', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Використайте код з вашого аутентифікатора', + + 'code' => [ + + 'label' => 'Введіть 6-значний код з аутентифікатора', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Використати резервний код', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Введений вами код недійсний.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Або введіть резервний код', + + 'validation_attribute' => 'резервний код', + + 'messages' => [ + + 'invalid' => 'Введений вами резервний код недійсний.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/uk/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..902f8aa --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,71 @@ + 'Вимкнути', + + 'modal' => [ + + 'heading' => 'Вимкнення кодів підтвердження по електронній пошті', + + 'description' => 'Ви впевнені, що хочете припинити отримувати коди підтвердження по електронній пошті? Це знизить рівень безпеки вашого облікового запису.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Введіть 6-значний код, надісланий на вашу електронну пошту', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Надіслати новий код', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Новий код надіслано', + ], + + 'throttled' => [ + 'title' => 'Забагато спроб отримати новий код. Будь ласка, зачекайте, перш ніж знову спробувати.', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Введений вами код недійсний.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Вимкнути коди підтвердження по електронній пошті', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Коди підтвердження по електронній пошті вимкнено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/uk/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..eb6c1b0 --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,70 @@ + 'Налаштувати', + + 'modal' => [ + + 'heading' => 'Налаштування кодів підтвердження по електронній пошті', + + 'description' => 'Вам потрібно буде вводити 6-значний код, який ми надсилаємо вам електронною поштою, щоразу під час входу або виконання конфіденційних дій. Перевірте вашу електронну пошту, щоб знайти код для завершення налаштування.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Введіть 6-значний код, надісланий на вашу електронну пошту', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Надіслати новий код', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Новий код надіслано', + ], + + 'throttled' => [ + 'title' => 'Забагато спроб отримати новий код. Будь ласка, зачекайте, перш ніж знову спробувати.', + ], + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Введений вами код недійсний.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Увімкнути коди підтвердження по електронній пошті', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Коди підтвердження по електронній пошті увімкнено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/uk/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..5b41dd9 --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Ваш код для входу', + + 'lines' => [ + 'Ваш код для входу: :code', + 'Цей код дійсний протягом 1 хвилини.|Цей код стане недійсним через :minutes хвилин.', + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/uk/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..7e92393 --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/multi-factor/email/provider.php @@ -0,0 +1,63 @@ + [ + + 'actions' => [ + + 'label' => 'Коди підтвердження по електронній пошті', + + 'below_content' => 'Отримуйте тимчасовий код на вашу електронну пошту для підтвердження особи під час входу.', + + 'messages' => [ + 'enabled' => 'Увімкнено', + 'disabled' => 'Вимкнено', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Надіслати код на вашу електронну пошту', + + 'code' => [ + + 'label' => 'Введіть 6-значний код, надісланий на вашу електронну пошту', + + 'validation_attribute' => 'код', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Надіслати новий код', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Новий код надіслано', + ], + + 'throttled' => [ + 'title' => 'Забагато спроб отримати новий код. Будь ласка, зачекайте, перш ніж знову спробувати.', + ], + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Введений вами код недійсний.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/uk/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..9ef00bc --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Налаштування двофакторної автентифікації (2FA)', + + 'heading' => 'Налаштування двофакторної автентифікації', + + 'subheading' => 'Двофакторна автентифікація додає додатковий рівень безпеки до вашого облікового запису, вимагаючи другу форму верифікації під час входу.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Продовжити', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/uk/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..7276f66 --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Натисніть, щоб', + + 'copy' => [ + 'label' => 'скопіювати', + ], + + 'або', + + 'download' => [ + 'label' => 'завантажити', + ], + + 'всі коди одразу.', + + ], + + 'messages' => [ + 'copied' => 'Скопійовано', + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/uk/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..28557ef --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Вашу електронну адресу змінюють', + + 'lines' => [ + 'Ми отримали запит на зміну електронної адреси, пов’язаної з вашим обліковим записом. Для підтвердження цієї зміни було використано ваш пароль.', + 'Після підтвердження новою електронною адресою у вашому обліковому записі буде: :email.', + 'Ви можете заблокувати зміну до її підтвердження, натиснувши кнопку нижче.', + 'Якщо ви не надсилали цей запит, негайно зв’яжіться з нами.', + ], + + 'action' => 'Заблокувати зміну електронної адреси', + +]; diff --git a/lang/vendor/filament-panels/uk/auth/pages/edit-profile.php b/lang/vendor/filament-panels/uk/auth/pages/edit-profile.php new file mode 100644 index 0000000..043991d --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Профіль', + + 'form' => [ + + 'email' => [ + 'label' => 'Електронна пошта', + ], + + 'name' => [ + 'label' => 'Ім\'я', + ], + + 'password' => [ + 'label' => 'Новий пароль', + 'validation_attribute' => 'пароль', + ], + + 'password_confirmation' => [ + 'label' => 'Введіть новий пароль ще раз', + 'validation_attribute' => 'підтвердження пароля', + ], + + 'current_password' => [ + 'label' => 'Поточний пароль', + 'below_content' => 'З міркувань безпеки підтвердьте свій пароль, щоб продовжити.', + 'validation_attribute' => 'поточний пароль', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Зберегти зміни', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Двофакторна автентифікація (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Запит на зміну електронної адреси надіслано', + 'body' => 'Запит на зміну вашої електронної адреси надіслано на :email. Перевірте свою пошту для підтвердження зміни.', + ], + + 'saved' => [ + 'title' => 'Збережено', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Відмінити', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/uk/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..2a4be95 --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Підтвердіть електронну пошту', + + 'heading' => 'Підтвердіть електронну пошту', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Надіслати ще раз', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Не отримали нашого листа?', + 'notification_sent' => 'Ми надіслали на пошту :email лист з поясненням, як підтвердити свою електронну пошту.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Ми надіслали вам лист ще раз.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Забагато спроб повторно надіслати лист', + 'body' => 'Будь ласка, спробуйте ще раз через :seconds секунд.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/pages/login.php b/lang/vendor/filament-panels/uk/auth/pages/login.php new file mode 100644 index 0000000..2d163b6 --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Логін', + + 'heading' => 'Увійдіть у свій акаунт', + + 'actions' => [ + + 'register' => [ + 'before' => 'або', + 'label' => 'зареєструйтеся', + ], + + 'request_password_reset' => [ + 'label' => 'Забули пароль?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Електронна пошта', + ], + + 'password' => [ + 'label' => 'Пароль', + ], + + 'remember' => [ + 'label' => 'Запам’ятати мене', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Увійти', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Підтвердіть свою особу', + + 'subheading' => 'Щоб продовжити вхід, потрібно підтвердити свою особу.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Як ви бажаєте підтвердити вхід?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Підтвердити вхід', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Ці дані не відповідають нашим записам.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Забагато спроб входу в систему', + 'body' => 'Будь ласка, спробуйте ще раз через :seconds секунд.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/uk/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..8aeb723 --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Скинути пароль', + + 'heading' => 'Забули свій пароль?', + + 'actions' => [ + + 'login' => [ + 'label' => 'повернутись до сторінки входу', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Електронна пошта', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Надіслати лист', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Якщо вашого облікового запису не існує, ви не отримаєте листа.', + ], + + 'throttled' => [ + 'title' => 'Забагато запитів', + 'body' => 'Будь ласка, спробуйте ще раз через :seconds секунд.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/uk/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..8ca0806 --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Скинути пароль', + + 'heading' => 'Скинути пароль', + + 'form' => [ + + 'email' => [ + 'label' => 'Електронна пошта', + ], + + 'password' => [ + 'label' => 'Пароль', + 'validation_attribute' => 'пароль', + ], + + 'password_confirmation' => [ + 'label' => 'Введіть пароль ще раз', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Скинути пароль', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Забагато спроб скинути пароль', + 'body' => 'Будь ласка, спробуйте ще раз через :seconds секунд.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/auth/pages/register.php b/lang/vendor/filament-panels/uk/auth/pages/register.php new file mode 100644 index 0000000..176954e --- /dev/null +++ b/lang/vendor/filament-panels/uk/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Зареєструйтеся', + + 'heading' => 'Зареєструйтеся', + + 'actions' => [ + + 'login' => [ + 'before' => 'або', + 'label' => 'ввійдіть у свій акаунт', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Електронна пошта', + ], + + 'name' => [ + 'label' => 'Ім\'я', + ], + + 'password' => [ + 'label' => 'Пароль', + 'validation_attribute' => 'пароль', + ], + + 'password_confirmation' => [ + 'label' => 'Введіть пароль ще раз', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Зареєструватися', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Забагато спроб зареєструватися', + 'body' => 'Будь ласка, спробуйте ще раз через :seconds секунд.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/error-notifications.php b/lang/vendor/filament-panels/uk/error-notifications.php new file mode 100644 index 0000000..12af37f --- /dev/null +++ b/lang/vendor/filament-panels/uk/error-notifications.php @@ -0,0 +1,9 @@ + 'Помилка під час завантаження сторінки', + + 'body' => 'Виникла помилка під час спроби завантажити цю сторінку. Будь ласка, спробуйте пізніше.', + +]; diff --git a/lang/vendor/filament-panels/uk/global-search.php b/lang/vendor/filament-panels/uk/global-search.php new file mode 100644 index 0000000..7dd6af4 --- /dev/null +++ b/lang/vendor/filament-panels/uk/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Глобальний пошук', + 'placeholder' => 'Пошук', + ], + + 'no_results_message' => 'Не знайдено жодних результатів пошуку.', + +]; diff --git a/lang/vendor/filament-panels/uk/layout.php b/lang/vendor/filament-panels/uk/layout.php new file mode 100644 index 0000000..fa0124b --- /dev/null +++ b/lang/vendor/filament-panels/uk/layout.php @@ -0,0 +1,71 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Керувати підпискою', + ], + + 'logout' => [ + 'label' => 'Вийти', + ], + + 'open_database_notifications' => [ + 'label' => 'Відкрити сповіщення', + ], + + 'open_user_menu' => [ + 'label' => 'Меню користувача', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Згорнути бокову панель', + ], + + 'expand' => [ + 'label' => 'Розгорнути бокову панель', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Увімкнути темний режим', + ], + + 'light' => [ + 'label' => 'Увімкнути світлий режим', + ], + + 'system' => [ + 'label' => 'Увімнути системний режим', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Аватар :name', + ], + + 'logo' => [ + 'alt' => ':name лого', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => 'Пошук орендарів', + 'placeholder' => 'Пошук', + ], + + ], +]; diff --git a/lang/vendor/filament-panels/uk/pages/dashboard.php b/lang/vendor/filament-panels/uk/pages/dashboard.php new file mode 100644 index 0000000..f1d9f72 --- /dev/null +++ b/lang/vendor/filament-panels/uk/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Інфопанель', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Фільтр', + + 'modal' => [ + + 'heading' => 'Фільтр', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Застосувати', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/uk/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..9f1f033 --- /dev/null +++ b/lang/vendor/filament-panels/uk/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Зберегти зміни', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Збережено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/resources/pages/create-record.php b/lang/vendor/filament-panels/uk/resources/pages/create-record.php new file mode 100644 index 0000000..17f461d --- /dev/null +++ b/lang/vendor/filament-panels/uk/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Створити :label', + + 'breadcrumb' => 'Створити', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Скасувати', + ], + + 'create' => [ + 'label' => 'Створити', + ], + + 'create_another' => [ + 'label' => 'Створити та створити наступне', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Створено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/resources/pages/edit-record.php b/lang/vendor/filament-panels/uk/resources/pages/edit-record.php new file mode 100644 index 0000000..af281d1 --- /dev/null +++ b/lang/vendor/filament-panels/uk/resources/pages/edit-record.php @@ -0,0 +1,43 @@ + 'Змінити :label', + + 'breadcrumb' => 'Змінити', + + 'navigation_label' => 'Змінити', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Скасувати', + ], + + 'save' => [ + 'label' => 'Зберегти', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Змінити', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Збережено', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/resources/pages/list-records.php b/lang/vendor/filament-panels/uk/resources/pages/list-records.php new file mode 100644 index 0000000..e581549 --- /dev/null +++ b/lang/vendor/filament-panels/uk/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Перегляд', + +]; diff --git a/lang/vendor/filament-panels/uk/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/uk/resources/pages/manage-related-records.php new file mode 100644 index 0000000..427fa66 --- /dev/null +++ b/lang/vendor/filament-panels/uk/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + 'Керувати :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/uk/resources/pages/view-record.php b/lang/vendor/filament-panels/uk/resources/pages/view-record.php new file mode 100644 index 0000000..ecd174f --- /dev/null +++ b/lang/vendor/filament-panels/uk/resources/pages/view-record.php @@ -0,0 +1,19 @@ + 'Перегляд :label', + + 'breadcrumb' => 'Перегляд', + + 'navigation_label' => 'Перегляд', + + 'content' => [ + + 'tab' => [ + 'label' => 'Перегляд', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uk/unsaved-changes-alert.php b/lang/vendor/filament-panels/uk/unsaved-changes-alert.php new file mode 100644 index 0000000..f54041d --- /dev/null +++ b/lang/vendor/filament-panels/uk/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'У вас є незбережені дані. Ви впевнені, що хочете залишити цю сторінку?', + +]; diff --git a/lang/vendor/filament-panels/uk/widgets/account-widget.php b/lang/vendor/filament-panels/uk/widgets/account-widget.php new file mode 100644 index 0000000..3816de5 --- /dev/null +++ b/lang/vendor/filament-panels/uk/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Вийти', + ], + + ], + + 'welcome' => 'Вітаємо', + +]; diff --git a/lang/vendor/filament-panels/uk/widgets/filament-info-widget.php b/lang/vendor/filament-panels/uk/widgets/filament-info-widget.php new file mode 100644 index 0000000..83d11e7 --- /dev/null +++ b/lang/vendor/filament-panels/uk/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Документація', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ur/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/ur/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..7b6381d --- /dev/null +++ b/lang/vendor/filament-panels/ur/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'آپ کا ای میل ایڈریس تبدیل کیا جا رہا ہے', + + 'lines' => [ + 'ہمیں آپ کے اکاؤنٹ کا ای میل ایڈریس تبدیل کرنے کی درخواست موصول ہوئی ہے۔ یہ تبدیلی آپ کا پاسورڈ استعمال کر کے کی گئی۔', + 'تصدیق کے بعد، آپ کے اکاؤنٹ پر نیا ای میل ایڈریس یہ ہوگا: :email۔', + 'آپ نیچے دیے گئے بٹن پر کلک کر کے تصدیق سے پہلے اس تبدیلی کو روک سکتے ہیں۔', + 'اگر آپ نے یہ درخواست نہیں کی، تو فوری طور پر ہم سے رابطہ کریں۔', + ], + + 'action' => 'ای میل تبدیلی روکیں', + +]; diff --git a/lang/vendor/filament-panels/ur/auth/pages/edit-profile.php b/lang/vendor/filament-panels/ur/auth/pages/edit-profile.php new file mode 100644 index 0000000..1115a49 --- /dev/null +++ b/lang/vendor/filament-panels/ur/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'پروفائل', + + 'form' => [ + + 'email' => [ + 'label' => 'ای میل ایڈریس', + ], + + 'name' => [ + 'label' => 'نام', + ], + + 'password' => [ + 'label' => 'نیا پاسورڈ', + 'validation_attribute' => 'پاسورڈ', + ], + + 'password_confirmation' => [ + 'label' => 'نیا پاسورڈ دوبارہ لکھیں', + 'validation_attribute' => 'پاسورڈ کی تصدیق', + ], + + 'current_password' => [ + 'label' => 'موجودہ پاسورڈ', + 'below_content' => 'سیکیورٹی کے لیے، جاری رکھنے سے پہلے پاسورڈ درج کریں۔', + 'validation_attribute' => 'موجودہ پاسورڈ', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'تبدیلیاں محفوظ کریں', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'ٹو فیکٹر تصدیق (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'ای میل تبدیلی کی درخواست بھیج دی گئی', + 'body' => 'آپ کے :email پر ای میل تبدیلی کی تصدیق کے لیے ایک پیغام بھیجا گیا ہے۔', + ], + + 'saved' => [ + 'title' => 'محفوظ ہو گیا', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'منسوخ کریں', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ur/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/ur/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..1939a0b --- /dev/null +++ b/lang/vendor/filament-panels/ur/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'اپنا ای میل ایڈریس تصدیق کریں', + + 'heading' => 'اپنا ای میل ایڈریس تصدیق کریں', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'دوبارہ بھیجیں', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'ہماری بھیجی گئی ای میل نہیں ملی؟', + 'notification_sent' => 'ہم نے :email پر ایک ای میل بھیجی ہے جس میں تصدیق کے لیے ہدایات شامل ہیں۔', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'ہم نے ای میل دوبارہ بھیج دی ہے۔', + ], + + 'notification_resend_throttled' => [ + 'title' => 'کافی بار کوشش ہو چکی ہے', + 'body' => 'براہ کرم :seconds سیکنڈ بعد دوبارہ کوشش کریں۔', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ur/auth/pages/login.php b/lang/vendor/filament-panels/ur/auth/pages/login.php new file mode 100644 index 0000000..c10cdd1 --- /dev/null +++ b/lang/vendor/filament-panels/ur/auth/pages/login.php @@ -0,0 +1,85 @@ + 'لاگ ان', + + 'heading' => 'اکاؤنٹ میں سائن ان کریں', + + 'actions' => [ + + 'register' => [ + 'before' => 'یا', + 'label' => 'نیا اکاؤنٹ بنائیں', + ], + + 'request_password_reset' => [ + 'label' => 'پاسورڈ بھول گئے ہیں؟', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ای میل ایڈریس', + ], + + 'password' => [ + 'label' => 'پاسورڈ', + ], + + 'remember' => [ + 'label' => 'مجھے یاد رکھیں', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'سائن ان کریں', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'اپنی شناخت کی تصدیق کریں', + + 'subheading' => 'جاری رکھنے کے لیے، آپ کو اپنی شناخت کی تصدیق کرنا ہوگی۔', + + 'form' => [ + + 'provider' => [ + 'label' => 'تصدیق کرنے کا طریقہ منتخب کریں', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'سائن ان کی تصدیق کریں', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'یہ معلومات ہمارے ریکارڈ سے مطابقت نہیں رکھتیں۔', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'زیادہ لاگ ان کوششیں', + 'body' => 'براہ کرم :seconds سیکنڈ بعد دوبارہ کوشش کریں۔', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ur/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/ur/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..666c468 --- /dev/null +++ b/lang/vendor/filament-panels/ur/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'اپنا پاسورڈ ری سیٹ کریں', + + 'heading' => 'پاسورڈ بھول گئے؟', + + 'actions' => [ + + 'login' => [ + 'label' => 'لاگ ان پر واپس جائیں', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ای میل ایڈریس', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'ای میل بھیجیں', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'اگر آپ کا اکاؤنٹ موجود نہیں ہے تو آپ کو ای میل موصول نہیں ہوگی۔', + ], + + 'throttled' => [ + 'title' => 'زیادہ درخواستیں کی گئیں', + 'body' => 'براہ کرم :seconds سیکنڈ بعد دوبارہ کوشش کریں۔', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ur/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/ur/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..f031420 --- /dev/null +++ b/lang/vendor/filament-panels/ur/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'اپنا پاسورڈ ری سیٹ کریں', + + 'heading' => 'پاسورڈ تبدیل کریں', + + 'form' => [ + + 'email' => [ + 'label' => 'ای میل ایڈریس', + ], + + 'password' => [ + 'label' => 'نیا پاسورڈ', + 'validation_attribute' => 'پاسورڈ', + ], + + 'password_confirmation' => [ + 'label' => 'پاسورڈ دوبارہ لکھیں', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'پاسورڈ ری سیٹ کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'کافی بار کوشش ہو چکی ہے', + 'body' => 'براہ کرم :seconds سیکنڈ بعد دوبارہ کوشش کریں۔', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ur/auth/pages/register.php b/lang/vendor/filament-panels/ur/auth/pages/register.php new file mode 100644 index 0000000..1f9b15f --- /dev/null +++ b/lang/vendor/filament-panels/ur/auth/pages/register.php @@ -0,0 +1,56 @@ + 'اکاؤنٹ بنائیں', + + 'heading' => 'سائن اپ کریں', + + 'actions' => [ + + 'login' => [ + 'before' => 'یا', + 'label' => 'اپنے اکاؤنٹ میں سائن ان کریں', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'ای میل ایڈریس', + ], + + 'name' => [ + 'label' => 'نام', + ], + + 'password' => [ + 'label' => 'پاسورڈ', + 'validation_attribute' => 'پاسورڈ', + ], + + 'password_confirmation' => [ + 'label' => 'پاسورڈ دوبارہ لکھیں', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'اکاؤنٹ بنائیں', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'زیادہ بار رجسٹر کرنے کی کوشش کی گئی', + 'body' => 'براہ کرم :seconds سیکنڈ بعد دوبارہ کوشش کریں۔', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ur/error-notifications.php b/lang/vendor/filament-panels/ur/error-notifications.php new file mode 100644 index 0000000..339a7e8 --- /dev/null +++ b/lang/vendor/filament-panels/ur/error-notifications.php @@ -0,0 +1,9 @@ + 'صفحہ لوڈ کرنے میں مسئلہ', + + 'body' => 'یہ صفحہ لوڈ کرتے وقت کوئی خرابی پیش آئی۔ براہ کرم کچھ دیر بعد دوبارہ کوشش کریں۔', + +]; diff --git a/lang/vendor/filament-panels/ur/global-search.php b/lang/vendor/filament-panels/ur/global-search.php new file mode 100644 index 0000000..307d0cb --- /dev/null +++ b/lang/vendor/filament-panels/ur/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'گلوبل تلاش', + 'placeholder' => 'تلاش کریں', + ], + + 'no_results_message' => 'کوئی نتیجہ نہیں ملا۔', + +]; diff --git a/lang/vendor/filament-panels/ur/layout.php b/lang/vendor/filament-panels/ur/layout.php new file mode 100644 index 0000000..05dc392 --- /dev/null +++ b/lang/vendor/filament-panels/ur/layout.php @@ -0,0 +1,63 @@ + 'rtl', + + 'actions' => [ + + 'billing' => [ + 'label' => 'سبسکرپشن مینج کریں', + ], + + 'logout' => [ + 'label' => 'سائن آؤٹ کریں', + ], + + 'open_database_notifications' => [ + 'label' => 'نوٹیفکیشنز کھولیں', + ], + + 'open_user_menu' => [ + 'label' => 'یوزر مینو', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'سائڈبار چھپائیں', + ], + + 'expand' => [ + 'label' => 'سائڈبار دکھائیں', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'ڈارک تھیم آن کریں', + ], + + 'light' => [ + 'label' => 'لائٹ تھیم آن کریں', + ], + + 'system' => [ + 'label' => 'سسٹم تھیم آن کریں', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => ':name کا اوتار', + ], + + 'logo' => [ + 'alt' => ':name کا لوگو', + ], + +]; diff --git a/lang/vendor/filament-panels/ur/pages/dashboard.php b/lang/vendor/filament-panels/ur/pages/dashboard.php new file mode 100644 index 0000000..852bd3c --- /dev/null +++ b/lang/vendor/filament-panels/ur/pages/dashboard.php @@ -0,0 +1,5 @@ + 'ڈیش بورڈ', +]; diff --git a/lang/vendor/filament-panels/ur/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/ur/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..a3ac6bb --- /dev/null +++ b/lang/vendor/filament-panels/ur/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'تبدیلیاں محفوظ کریں', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'محفوظ ہو گیا', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ur/resources/create-record.php b/lang/vendor/filament-panels/ur/resources/create-record.php new file mode 100644 index 0000000..c139b3c --- /dev/null +++ b/lang/vendor/filament-panels/ur/resources/create-record.php @@ -0,0 +1,37 @@ + ':label بنائیں', + + 'breadcrumb' => 'نیا بنائیں', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'منسوخ کریں', + ], + + 'create' => [ + 'label' => 'بنائیں', + ], + + 'create_another' => [ + 'label' => 'بنائیں اور ایک اور بنائیں', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'بن گیا', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ur/resources/edit-record.php b/lang/vendor/filament-panels/ur/resources/edit-record.php new file mode 100644 index 0000000..bad3dec --- /dev/null +++ b/lang/vendor/filament-panels/ur/resources/edit-record.php @@ -0,0 +1,41 @@ + ':label میں ترمیم کریں', + + 'breadcrumb' => 'ترمیم کریں', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'منسوخ کریں', + ], + + 'save' => [ + 'label' => 'تبدیلیاں محفوظ کریں', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'ترمیم', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'محفوظ ہو گیا', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ur/resources/list-records.php b/lang/vendor/filament-panels/ur/resources/list-records.php new file mode 100644 index 0000000..cde0827 --- /dev/null +++ b/lang/vendor/filament-panels/ur/resources/list-records.php @@ -0,0 +1,7 @@ + 'فہرست', + +]; diff --git a/lang/vendor/filament-panels/ur/resources/view-record.php b/lang/vendor/filament-panels/ur/resources/view-record.php new file mode 100644 index 0000000..87e91f2 --- /dev/null +++ b/lang/vendor/filament-panels/ur/resources/view-record.php @@ -0,0 +1,17 @@ + ':label دیکھیں', + + 'breadcrumb' => 'دیکھیں', + + 'content' => [ + + 'tab' => [ + 'label' => 'دیکھیں', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/ur/unsaved-changes-alert.php b/lang/vendor/filament-panels/ur/unsaved-changes-alert.php new file mode 100644 index 0000000..305d186 --- /dev/null +++ b/lang/vendor/filament-panels/ur/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'آپ نے کچھ تبدیلیاں محفوظ نہیں کیں۔ کیا آپ واقعی اس صفحے سے جانا چاہتے ہیں؟', + +]; diff --git a/lang/vendor/filament-panels/ur/widgets/account-widget.php b/lang/vendor/filament-panels/ur/widgets/account-widget.php new file mode 100644 index 0000000..299b1c4 --- /dev/null +++ b/lang/vendor/filament-panels/ur/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'سائن آؤٹ کریں', + ], + + ], + + 'welcome' => 'خوش آمدید', + +]; diff --git a/lang/vendor/filament-panels/ur/widgets/filament-info-widget.php b/lang/vendor/filament-panels/ur/widgets/filament-info-widget.php new file mode 100644 index 0000000..bd2826a --- /dev/null +++ b/lang/vendor/filament-panels/ur/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'دستاویزات', + ], + + 'open_github' => [ + 'label' => 'گیٹ ہب', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uz/auth/pages/edit-profile.php b/lang/vendor/filament-panels/uz/auth/pages/edit-profile.php new file mode 100644 index 0000000..1e96a26 --- /dev/null +++ b/lang/vendor/filament-panels/uz/auth/pages/edit-profile.php @@ -0,0 +1,51 @@ + 'Hisob qaydnomasi', + + 'form' => [ + + 'email' => [ + 'label' => 'Elektron pochta manzili', + ], + + 'name' => [ + 'label' => 'Ism', + ], + + 'password' => [ + 'label' => 'Yangi parol', + ], + + 'password_confirmation' => [ + 'label' => 'Yangi parolni tasdiqlang', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'O\'zgarishlarni saqlash', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Saqlandi', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Qaytish', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uz/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/uz/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..0b36bab --- /dev/null +++ b/lang/vendor/filament-panels/uz/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Elektron pochta manzilingizni tasdiqlang', + + 'heading' => 'Hurmatli foydalanuvchi elektron pochta manzilingizni tasdiqlang', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Yana bir bor yuborish', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Biz yuborgan xatni olmadingizmi?', + 'notification_sent' => 'Biz :email manziliga elektron pochta manzilingizni tekshirish bo\'yicha ko\'rsatmalar bilan xat yubordik. Elektron pochtangizni tekshiring', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Biz elektron pochta xabarini qayta yubordik.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Qayta yuborishlar soni juda koʻp', + 'body' => 'Iltimos, :seconds soniyadan keyin qayta urinib ko\'ring.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uz/auth/pages/login.php b/lang/vendor/filament-panels/uz/auth/pages/login.php new file mode 100644 index 0000000..b008bf4 --- /dev/null +++ b/lang/vendor/filament-panels/uz/auth/pages/login.php @@ -0,0 +1,61 @@ + 'Tizimga kirish', + + 'heading' => 'Hisobingizga kiring', + + 'actions' => [ + + 'register' => [ + 'before' => 'yoki', + 'label' => 'hisob qaydnomasini ro\'yxatdan o\'tkazing', + ], + + 'request_password_reset' => [ + 'label' => 'Parolni unutdingizmi?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Elektron pochta manzili', + ], + + 'password' => [ + 'label' => 'Parol', + ], + + 'remember' => [ + 'label' => 'Meni eslab qol', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Hisob qaydnomasiga kirish', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Siz kiritgan foydalanuvchi nomi yoki parol noto\'g\'ri.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Kirish uchun urinishlar soni juda koʻp', + 'body' => 'Iltimos, :seconds soniyadan keyin qayta urinib ko\'ring.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uz/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/uz/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..eb5210f --- /dev/null +++ b/lang/vendor/filament-panels/uz/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + 'Parolni qayta o\'rnatish', + + 'heading' => 'Parolni unutdingizmi?', + + 'actions' => [ + + 'login' => [ + 'label' => 'Kirish sahifasiga qaytish', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Elektron pochta manzili', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Xabar yuborish', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Urinishlar soni juda ko\'p', + 'body' => 'Iltimos, :seconds soniyadan keyin qayta urinib ko\'ring.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uz/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/uz/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..579092a --- /dev/null +++ b/lang/vendor/filament-panels/uz/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Parolni qayta o\'rnatish', + + 'heading' => 'Parolni qayta o\'rnatish', + + 'form' => [ + + 'email' => [ + 'label' => 'Elektron pochta manzili', + ], + + 'password' => [ + 'label' => 'Parol', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Parolni tasdiqlash', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Parolni qayta o\'rnatish', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Urinishlar juda ko\'p', + 'body' => 'Iltimos, :seconds soniyadan so\'ng qayta urinib ko\'ring.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uz/auth/pages/register.php b/lang/vendor/filament-panels/uz/auth/pages/register.php new file mode 100644 index 0000000..a14c7d3 --- /dev/null +++ b/lang/vendor/filament-panels/uz/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Ro\'yxatdan o\'tish', + + 'heading' => 'Hisob qaydnomasini ro\'yxatdan o\'tkazing', + + 'actions' => [ + + 'login' => [ + 'before' => 'yoki', + 'label' => 'o\'z hisob qaydnomangiz orqali kiring', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Elektron pochta manzili', + ], + + 'name' => [ + 'label' => 'Ism', + ], + + 'password' => [ + 'label' => 'Parol', + 'validation_attribute' => 'password', + ], + + 'password_confirmation' => [ + 'label' => 'Parolni tasdiqlash', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Roʻyxatdan oʻtish', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Roʻyxatdan oʻtishga urinishlar juda koʻp', + 'body' => 'Iltimos, :seconds soniyadan keyin qayta urinib ko\'ring.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uz/global-search.php b/lang/vendor/filament-panels/uz/global-search.php new file mode 100644 index 0000000..49941ab --- /dev/null +++ b/lang/vendor/filament-panels/uz/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Global qidiruv', + 'placeholder' => 'Qidirish', + ], + + 'no_results_message' => 'Hech narsa topilmadi.', + +]; diff --git a/lang/vendor/filament-panels/uz/layout.php b/lang/vendor/filament-panels/uz/layout.php new file mode 100644 index 0000000..aa6661c --- /dev/null +++ b/lang/vendor/filament-panels/uz/layout.php @@ -0,0 +1,55 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Obuna boshqaruvi', + ], + + 'logout' => [ + 'label' => 'Chiqish', + ], + + 'open_database_notifications' => [ + 'label' => 'Bildirishnomalarni ochish', + ], + + 'open_user_menu' => [ + 'label' => 'Foydalanuvchi menyusi', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Yon panelni yig\'ish', + ], + + 'expand' => [ + 'label' => 'Yon panelni yoyish', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'To\'q rejimni ishlatish', + ], + + 'light' => [ + 'label' => 'Yorqin rejimni ishlatish', + ], + + 'system' => [ + 'label' => 'Tizim rejimidan foydalanish', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uz/pages/dashboard.php b/lang/vendor/filament-panels/uz/pages/dashboard.php new file mode 100644 index 0000000..c4a4760 --- /dev/null +++ b/lang/vendor/filament-panels/uz/pages/dashboard.php @@ -0,0 +1,33 @@ + 'Asosiy panel', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filtr', + + 'modal' => [ + + 'heading' => 'Filtr', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Murojaat qilish', + + ], + + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uz/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/uz/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..bfc2ab3 --- /dev/null +++ b/lang/vendor/filament-panels/uz/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'O\'zgarishlarni saqlash', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Saqlandi', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uz/resources/pages/create-record.php b/lang/vendor/filament-panels/uz/resources/pages/create-record.php new file mode 100644 index 0000000..3120591 --- /dev/null +++ b/lang/vendor/filament-panels/uz/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Yangi :label yaratish', + + 'breadcrumb' => 'Yaratish', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Bekor qilish', + ], + + 'create' => [ + 'label' => 'Yaratish', + ], + + 'create_another' => [ + 'label' => 'Yaratish va yana boshqa yaratish', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Yaratildi', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uz/resources/pages/edit-record.php b/lang/vendor/filament-panels/uz/resources/pages/edit-record.php new file mode 100644 index 0000000..3cfbc0e --- /dev/null +++ b/lang/vendor/filament-panels/uz/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + ':labelni tahrirlash', + + 'breadcrumb' => 'Tahrirlash', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Bekor qilish', + ], + + 'save' => [ + 'label' => 'Saqlash', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Tahrirlash', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Saqlandi', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uz/resources/pages/list-records.php b/lang/vendor/filament-panels/uz/resources/pages/list-records.php new file mode 100644 index 0000000..af234f3 --- /dev/null +++ b/lang/vendor/filament-panels/uz/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Ro\'yxat', + +]; diff --git a/lang/vendor/filament-panels/uz/resources/pages/view-record.php b/lang/vendor/filament-panels/uz/resources/pages/view-record.php new file mode 100644 index 0000000..ce84361 --- /dev/null +++ b/lang/vendor/filament-panels/uz/resources/pages/view-record.php @@ -0,0 +1,17 @@ + ':labelni ko\'rish', + + 'breadcrumb' => 'Ko\'rish', + + 'content' => [ + + 'tab' => [ + 'label' => 'Ko\'rish', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/uz/widgets/account-widget.php b/lang/vendor/filament-panels/uz/widgets/account-widget.php new file mode 100644 index 0000000..c35d38b --- /dev/null +++ b/lang/vendor/filament-panels/uz/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Chiqish', + ], + + ], + + 'welcome' => 'Hush kelibsiz', + +]; diff --git a/lang/vendor/filament-panels/uz/widgets/filament-info-widget.php b/lang/vendor/filament-panels/uz/widgets/filament-info-widget.php new file mode 100644 index 0000000..bcedd2d --- /dev/null +++ b/lang/vendor/filament-panels/uz/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Hujjat', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/vi/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..ffdf202 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => 'Đã chặn thay đổi địa chỉ email', + 'body' => 'Bạn đã chặn thành công một yêu cầu thay đổi địa chỉ email sang :email. Nếu bạn không thực hiện yêu cầu này, vui lòng liên hệ với chúng tôi ngay.', + ], + + 'failed' => [ + 'title' => 'Không thể chặn thay đổi địa chỉ email', + 'body' => 'Rất tiếc, bạn không thể ngăn việc thay đổi địa chỉ email sang :email vì địa chỉ này đã được xác minh trước khi bạn chặn. Nếu bạn không thực hiện yêu cầu này, vui lòng liên hệ với chúng tôi ngay.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/vi/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..3fdbac9 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => 'Đã đổi địa chỉ email', + 'body' => 'Địa chỉ email của bạn đã được thay đổi thành công sang :email.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/vi/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..b924c56 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,71 @@ + 'Tắt', + + 'modal' => [ + + 'heading' => 'Tắt ứng dụng xác thực', + + 'description' => 'Bạn có chắc chắn muốn ngừng sử dụng ứng dụng xác thực không? Làm vậy sẽ bỏ bớt một lớp bảo mật ra khỏi tài khoản.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Nhập mã 6 số từ ứng dụng xác thực', + + 'validation_attribute' => 'mã', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Sử dụng mã khôi phục để thay thế', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Mã bạn vừa nhập không hợp lệ.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Hoặc, nhập mã khôi phục', + + 'validation_attribute' => 'mã khôi phục', + + 'messages' => [ + + 'invalid' => 'Mã khôi phục bạn vừa nhập không hợp lệ.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Tắt ứng dụng xác thực', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Ứng dụng xác thực đã được tắt', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/vi/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..3fa9c0c --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + 'Tạo lại mã khôi phục', + + 'modal' => [ + + 'heading' => 'Tạo lại mã khôi phục cho ứng dụng xác thực', + + 'description' => 'Nếu đã làm mất mã khôi phục, bạn có thể tạo lại ở đây. Tất cả mã khôi phục cũ sẽ bị vô hiệu hóa ngay lập tức.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Nhập mã 6 số từ ứng dụng xác thực', + + 'validation_attribute' => 'mã', + + 'messages' => [ + + 'invalid' => 'Mã bạn vừa nhập không hợp lệ.', + + ], + + ], + + 'password' => [ + + 'label' => 'Hoặc, nhập mật khẩu hiện tại của bạn', + + 'validation_attribute' => 'mật khẩu', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Tạo lại mã khôi phục', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => 'Đã tạo mới các mã khôi phục cho ứng dụng xác thực', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => 'Mã khôi phục mới', + + 'description' => 'Vui lòng lưu các mã khôi phục này ở nơi an toàn. Bạn chỉ xem được một lần duy nhất là lúc này, và sẽ cần tới chúng nếu không mở được ứng dụng xác thực:', + + 'actions' => [ + + 'submit' => [ + 'label' => 'Đóng', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/vi/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..fb6ed5d --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + 'Cài đặt', + + 'modal' => [ + + 'heading' => 'Cài đặt ứng dụng xác thực', + + 'description' => <<<'BLADE' + Bạn sẽ cần một ứng dụng như Google Authenticator (iOS, Android) để hoàn tất quá trình này. + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => 'Quét mã QR này bằng ứng dụng xác thực của bạn:', + + 'alt' => 'Mã QR để quét bằng ứng dụng xác thực', + + ], + + 'text_code' => [ + + 'instruction' => 'Hoặc nhập mã này thủ công:', + + 'messages' => [ + 'copied' => 'Đã sao chép', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => 'Vui lòng lưu các mã khôi phục sau ở nơi an toàn. Bạn chỉ xem được một lần duy nhất là lúc này, và sẽ cần dùng chúng nếu không mở được ứng dụng xác thực:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => 'Nhập mã 6 số từ ứng dụng xác thực', + + 'validation_attribute' => 'mã', + + 'below_content' => 'Bạn sẽ cần nhập mã 6 số từ ứng dụng xác thực mỗi khi đăng nhập hoặc thực hiện các thao tác nhạy cảm.', + + 'messages' => [ + + 'invalid' => 'Mã bạn vừa nhập không hợp lệ.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Bật ứng dụng xác thực', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Đã bật ứng dụng xác thực', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/vi/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..37e9180 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => 'Ứng dụng xác thực', + + 'below_content' => 'Sử dụng một ứng dụng bảo mật để tạo một mã tạm thời nhằm xác thực khi đăng nhập.', + + 'messages' => [ + 'enabled' => 'Đã bật', + 'disabled' => 'Đã tắt', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Sử dụng một mã từ ứng dụng xác thực của bạn', + + 'code' => [ + + 'label' => 'Nhập mã có 6 chữ số từ ứng dụng xác thực', + + 'validation_attribute' => 'mã', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => 'Sử dụng mã khôi phục để thay thế', + ], + + ], + + 'messages' => [ + + 'invalid' => 'Mã bạn đã nhập không hợp lệ.', + + ], + + ], + + 'recovery_code' => [ + + 'label' => 'Hoặc, nhập vào một mã khôi phục', + + 'validation_attribute' => 'mã khôi phục', + + 'messages' => [ + + 'invalid' => 'Mã khôi phục bạn đã nhập không hợp lệ', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/vi/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..0069553 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,67 @@ + 'Tắt', + + 'modal' => [ + + 'heading' => 'Tắt mã xác thực email', + + 'description' => 'Bạn có chắc chắn muốn ngừng nhận mã xác thực qua email không? Việc tắt chức năng này sẽ loại bỏ một lớp bảo mật khỏi tài khoản của bạn.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Nhập mã 6 số đã được gửi tới email của bạn', + + 'validation_attribute' => 'mã', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Gửi mã mới qua email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Chúng tôi đã gửi mã mới tới email của bạn', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Mã bạn vừa nhập không hợp lệ.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Tắt mã xác thực email', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => 'Mã xác thực email đã được tắt', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/vi/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..20a4dab --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,67 @@ + 'Thiết lập', + + 'modal' => [ + + 'heading' => 'Thiết lập mã xác thực email', + + 'description' => 'Bạn sẽ cần nhập mã 6 số được gửi tới email của bạn mỗi khi đăng nhập hoặc thực hiện các thao tác nhạy cảm. Vui lòng kiểm tra email để lấy mã và hoàn tất quá trình thiết lập.', + + 'form' => [ + + 'code' => [ + + 'label' => 'Nhập mã 6 số đã được gửi tới email của bạn', + + 'validation_attribute' => 'mã', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Gửi mã mới qua email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Chúng tôi đã gửi mã mới tới email của bạn', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Mã bạn vừa nhập không hợp lệ.', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => 'Bật mã xác thực email', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => 'Đã bật mã xác thực email', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/vi/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..655234a --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + 'Đây là mã đăng nhập của bạn', + + 'lines' => [ + 'Mã đăng nhập của bạn là: :code', + 'Mã này sẽ hết hạn sau một phút.|Mã này sẽ hết hạn sau :minutes phút.', + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/vi/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..579256e --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/multi-factor/email/provider.php @@ -0,0 +1,60 @@ + [ + + 'actions' => [ + + 'label' => 'Mã xác thực email', + + 'below_content' => 'Nhận một mã tạm thời qua email để xác minh danh tính của bạn khi đăng nhập.', + + 'messages' => [ + 'enabled' => 'Đã bật', + 'disabled' => 'Đã tắt', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => 'Gửi mã tới email của bạn', + + 'code' => [ + + 'label' => 'Nhập mã 6 số chúng tôi đã gửi tới email của bạn', + + 'validation_attribute' => 'mã', + + 'actions' => [ + + 'resend' => [ + + 'label' => 'Gửi mã mới qua email', + + 'notifications' => [ + + 'resent' => [ + 'title' => 'Chúng tôi đã gửi mã mới tới email của bạn', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => 'Mã bạn vừa nhập không hợp lệ.', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/vi/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..8b71fb5 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + 'Cài đặt Bảo mật 2 bước (2FA)', + + 'heading' => 'Cài đặt Bảo mật 2 bước', + + 'subheading' => '2FA bổ sung một lớp bảo mật cho tài khoản của bạn bằng cách yêu cầu xác minh thêm bằng hình thức khác khi đăng nhập.', + + 'actions' => [ + + 'continue' => [ + 'label' => 'Tiếp tục', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/vi/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..e531fd4 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Nhấn để', + + 'copy' => [ + 'label' => 'sao chép', + ], + + 'or', + + 'download' => [ + 'label' => 'tải xuống', + ], + + 'tất cả các mã cùng lúc.', + + ], + + 'messages' => [ + 'copied' => 'Đã sao chép', + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/vi/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..0c31021 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + 'Địa chỉ email của bạn đang được thay đổi', + + 'lines' => [ + 'Chúng tôi đã nhận được một yêu cầu thay đổi địa chỉ email liên kết với tài khoản của bạn. Mật khẩu của bạn đã được sử dụng để xác nhận yêu cầu này.', + 'Sau khi xác minh, địa chỉ email mới của tài khoản bạn sẽ là: :email.', + 'Bạn có thể ngăn chặn thay đổi này trước khi yêu cầu được xác minh, bằng cách nhấn vào nút bên dưới.', + 'Nếu bạn không thực hiện yêu cầu này, vui lòng liên hệ với chúng tôi ngay.', + ], + + 'action' => 'Chặn Đổi Email', + +]; diff --git a/lang/vendor/filament-panels/vi/auth/pages/edit-profile.php b/lang/vendor/filament-panels/vi/auth/pages/edit-profile.php new file mode 100644 index 0000000..bef7d03 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + 'Hồ sơ', + + 'form' => [ + + 'email' => [ + 'label' => 'Địa chỉ email', + ], + + 'name' => [ + 'label' => 'Họ tên', + ], + + 'password' => [ + 'label' => 'Mật khẩu mới', + 'validation_attribute' => 'mật khẩu', + ], + + 'password_confirmation' => [ + 'label' => 'Xác nhận mật khẩu mới', + 'validation_attribute' => 'xác nhận mật khẩu', + ], + + 'current_password' => [ + 'label' => 'Mật khẩu hiện tại', + 'below_content' => 'Vì lý do an toàn, vui lòng xác nhận mật khẩu của bạn để tiếp tục.', + 'validation_attribute' => 'mật khẩu hiện tại', + ], + + 'actions' => [ + + 'save' => [ + 'label' => 'Lưu thay đổi', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => 'Bảo mật 2 bước (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => 'Đã gửi yêu cầu đổi địa chỉ email', + 'body' => 'Yêu cầu đổi địa chỉ email của bạn đã được gửi tới :email. Vui lòng kiểm tra email để xác nhận thay đổi.', + ], + + 'saved' => [ + 'title' => 'Đã lưu', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Hủy thao tác', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/vi/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..f76c0d5 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + 'Xác minh địa chỉ email', + + 'heading' => 'Xác minh địa chỉ email', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => 'Gửi lại', + ], + + ], + + 'messages' => [ + 'notification_not_received' => 'Chưa nhận được email?', + 'notification_sent' => 'Chúng tôi đã gửi một email đến :email chứa hướng dẫn về cách xác minh địa chỉ email của bạn.', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => 'Chúng tôi đã gửi lại email.', + ], + + 'notification_resend_throttled' => [ + 'title' => 'Quá nhiều lần gửi lại', + 'body' => 'Vui lòng thử lại sau :seconds giây.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/pages/login.php b/lang/vendor/filament-panels/vi/auth/pages/login.php new file mode 100644 index 0000000..4ce6d77 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/pages/login.php @@ -0,0 +1,85 @@ + 'Đăng nhập', + + 'heading' => 'Đăng nhập', + + 'actions' => [ + + 'register' => [ + 'before' => 'hoặc', + 'label' => 'đăng ký tài khoản', + ], + + 'request_password_reset' => [ + 'label' => 'Quên mật khẩu?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Địa chỉ email', + ], + + 'password' => [ + 'label' => 'Mật khẩu', + ], + + 'remember' => [ + 'label' => 'Ghi nhớ đăng nhập', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Đăng nhập', + ], + + ], + + ], + + 'multi_factor' => [ + + 'heading' => 'Xác minh danh tính', + + 'subheading' => 'Để tiếp tục đăng nhập, bạn cần xác minh danh tính.', + + 'form' => [ + + 'provider' => [ + 'label' => 'Bạn muốn xác minh như thế nào?', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => 'Xác nhận đăng nhập', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'failed' => 'Thông tin đăng nhập không chính xác.', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Quá nhiều lần đăng nhập thất bại', + 'body' => 'Vui lòng thử lại sau :seconds giây.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/vi/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..5343751 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + 'Đặt lại mật khẩu', + + 'heading' => 'Quên mật khẩu?', + + 'actions' => [ + + 'login' => [ + 'label' => 'quay lại đăng nhập', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Địa chỉ email', + ], + + 'actions' => [ + + 'request' => [ + 'label' => 'Gửi email', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => 'Nếu tài khoản của bạn không tồn tại, bạn sẽ không nhận được email.', + ], + + 'throttled' => [ + 'title' => 'Quá nhiều yêu cầu', + 'body' => 'Vui lòng thử lại sau :seconds giây.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/vi/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..43846b0 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + 'Đặt lại mật khẩu', + + 'heading' => 'Đặt lại mật khẩu', + + 'form' => [ + + 'email' => [ + 'label' => 'Địa chỉ email', + ], + + 'password' => [ + 'label' => 'Mật khẩu', + 'validation_attribute' => 'mật khẩu', + ], + + 'password_confirmation' => [ + 'label' => 'Xác nhận mật khẩu', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => 'Đặt lại mật khẩu', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Quá nhiều yêu cầu đặt lại mật khẩu', + 'body' => 'Vui lòng thử lại sau :seconds giây.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/auth/pages/register.php b/lang/vendor/filament-panels/vi/auth/pages/register.php new file mode 100644 index 0000000..aa83df1 --- /dev/null +++ b/lang/vendor/filament-panels/vi/auth/pages/register.php @@ -0,0 +1,56 @@ + 'Đăng ký', + + 'heading' => 'Đăng ký tài khoản', + + 'actions' => [ + + 'login' => [ + 'before' => 'hoặc', + 'label' => 'đăng nhập tài khoản của bạn', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => 'Địa chỉ email', + ], + + 'name' => [ + 'label' => 'Họ tên', + ], + + 'password' => [ + 'label' => 'Mật khẩu', + 'validation_attribute' => 'mật khẩu', + ], + + 'password_confirmation' => [ + 'label' => 'Xác nhận mật khẩu', + ], + + 'actions' => [ + + 'register' => [ + 'label' => 'Đăng ký', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => 'Quá nhiều lần đăng ký.', + 'body' => 'Vui lòng thử lại sau :seconds giây.', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/error-notifications.php b/lang/vendor/filament-panels/vi/error-notifications.php new file mode 100644 index 0000000..d229885 --- /dev/null +++ b/lang/vendor/filament-panels/vi/error-notifications.php @@ -0,0 +1,9 @@ + 'Có lỗi khi tải trang', + + 'body' => 'Đã có lỗi khi tải trang này. Vui lòng thử lại sau.', + +]; diff --git a/lang/vendor/filament-panels/vi/global-search.php b/lang/vendor/filament-panels/vi/global-search.php new file mode 100644 index 0000000..7a5c2e2 --- /dev/null +++ b/lang/vendor/filament-panels/vi/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => 'Tìm kiếm toàn hệ thống', + 'placeholder' => 'Tìm kiếm', + ], + + 'no_results_message' => 'Không tìm thấy kết quả nào.', + +]; diff --git a/lang/vendor/filament-panels/vi/layout.php b/lang/vendor/filament-panels/vi/layout.php new file mode 100644 index 0000000..e28cc79 --- /dev/null +++ b/lang/vendor/filament-panels/vi/layout.php @@ -0,0 +1,63 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => 'Quản lý gói đăng ký', + ], + + 'logout' => [ + 'label' => 'Đăng xuất', + ], + + 'open_database_notifications' => [ + 'label' => 'Mở thông báo', + ], + + 'open_user_menu' => [ + 'label' => 'Menu người dùng', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => 'Thu gọn thanh bên', + ], + + 'expand' => [ + 'label' => 'Mở rộng thanh bên', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => 'Bật giao diện tối', + ], + + 'light' => [ + 'label' => 'Bật giao diện sáng', + ], + + 'system' => [ + 'label' => 'Bật giao diện theo hệ thống', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => 'Ảnh đại diện của :name', + ], + + 'logo' => [ + 'alt' => 'Logo :name', + ], + +]; diff --git a/lang/vendor/filament-panels/vi/pages/dashboard.php b/lang/vendor/filament-panels/vi/pages/dashboard.php new file mode 100644 index 0000000..424fd28 --- /dev/null +++ b/lang/vendor/filament-panels/vi/pages/dashboard.php @@ -0,0 +1,32 @@ + 'Bảng điều khiển', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Bộ lọc', + + 'modal' => [ + + 'heading' => 'Bộ lọc', + + 'actions' => [ + + 'apply' => [ + + 'label' => 'Áp dụng', + + ], + + ], + + ], + + ], + + ], +]; diff --git a/lang/vendor/filament-panels/vi/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/vi/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..2f13b10 --- /dev/null +++ b/lang/vendor/filament-panels/vi/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => 'Lưu thay đổi', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Đã lưu', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/resources/pages/create-record.php b/lang/vendor/filament-panels/vi/resources/pages/create-record.php new file mode 100644 index 0000000..3995a19 --- /dev/null +++ b/lang/vendor/filament-panels/vi/resources/pages/create-record.php @@ -0,0 +1,37 @@ + 'Tạo :label', + + 'breadcrumb' => 'Tạo', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Hủy thao tác', + ], + + 'create' => [ + 'label' => 'Tạo', + ], + + 'create_another' => [ + 'label' => 'Tạo & tạo thêm', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => 'Đã tạo', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/resources/pages/edit-record.php b/lang/vendor/filament-panels/vi/resources/pages/edit-record.php new file mode 100644 index 0000000..5593062 --- /dev/null +++ b/lang/vendor/filament-panels/vi/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + 'Chỉnh sửa :label', + + 'breadcrumb' => 'Chỉnh sửa', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => 'Hủy thao tác', + ], + + 'save' => [ + 'label' => 'Lưu thay đổi', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => 'Chỉnh sửa', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => 'Đã lưu', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/resources/pages/list-records.php b/lang/vendor/filament-panels/vi/resources/pages/list-records.php new file mode 100644 index 0000000..3a2c349 --- /dev/null +++ b/lang/vendor/filament-panels/vi/resources/pages/list-records.php @@ -0,0 +1,7 @@ + 'Danh sách', + +]; diff --git a/lang/vendor/filament-panels/vi/resources/pages/view-record.php b/lang/vendor/filament-panels/vi/resources/pages/view-record.php new file mode 100644 index 0000000..ab616ed --- /dev/null +++ b/lang/vendor/filament-panels/vi/resources/pages/view-record.php @@ -0,0 +1,17 @@ + 'Xem :label', + + 'breadcrumb' => 'Xem', + + 'content' => [ + + 'tab' => [ + 'label' => 'Xem', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/vi/unsaved-changes-alert.php b/lang/vendor/filament-panels/vi/unsaved-changes-alert.php new file mode 100644 index 0000000..43786dc --- /dev/null +++ b/lang/vendor/filament-panels/vi/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + 'Bạn có thay đổi chưa lưu. Bạn có chắc chắn muốn rời khỏi trang này không?', + +]; diff --git a/lang/vendor/filament-panels/vi/widgets/account-widget.php b/lang/vendor/filament-panels/vi/widgets/account-widget.php new file mode 100644 index 0000000..7a2774c --- /dev/null +++ b/lang/vendor/filament-panels/vi/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => 'Đăng xuất', + ], + + ], + + 'welcome' => 'Xin chào', + +]; diff --git a/lang/vendor/filament-panels/vi/widgets/filament-info-widget.php b/lang/vendor/filament-panels/vi/widgets/filament-info-widget.php new file mode 100644 index 0000000..ac6adcb --- /dev/null +++ b/lang/vendor/filament-panels/vi/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => 'Tài liệu', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_CN/auth/pages/edit-profile.php b/lang/vendor/filament-panels/zh_CN/auth/pages/edit-profile.php new file mode 100644 index 0000000..f0d089c --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/auth/pages/edit-profile.php @@ -0,0 +1,57 @@ + '个人资料', + + 'form' => [ + + 'email' => [ + 'label' => '邮箱地址', + ], + + 'name' => [ + 'label' => '姓名', + ], + + 'password' => [ + 'label' => '新密码', + ], + + 'password_confirmation' => [ + 'label' => '确认新密码', + ], + + 'current_password' => [ + 'label' => '当前密码', + 'below_content' => '出于安全原因,请确认您的密码以继续。', + 'validation_attribute' => '当前密码', + ], + + 'actions' => [ + + 'save' => [ + 'label' => '保存', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '已保存', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => '取消', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_CN/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/zh_CN/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..3474a54 --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + '验证邮箱地址', + + 'heading' => '验证邮箱地址', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => '已重新发送', + ], + + ], + + 'messages' => [ + 'notification_not_received' => '没有收到我们的邮件?', + 'notification_sent' => '我们已经向 :email 发送了一封验证邮件。', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => '我们已经重新发送了邮件。', + ], + + 'notification_resend_throttled' => [ + 'title' => '发送邮件次数过多', + 'body' => '请在 :seconds 秒后重试。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_CN/auth/pages/login.php b/lang/vendor/filament-panels/zh_CN/auth/pages/login.php new file mode 100644 index 0000000..a64d607 --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/auth/pages/login.php @@ -0,0 +1,61 @@ + '登录', + + 'heading' => '登录', + + 'actions' => [ + + 'register' => [ + 'before' => '或者', + 'label' => '注册账号', + ], + + 'request_password_reset' => [ + 'label' => '忘记了密码?', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => '邮箱地址', + ], + + 'password' => [ + 'label' => '密码', + ], + + 'remember' => [ + 'label' => '保持登录状态', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => '登录', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => '登录信息有误。', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => '尝试登录次数过多', + 'body' => '请在 :seconds 秒后重试。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_CN/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/zh_CN/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..c3e848c --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,42 @@ + '重置密码', + + 'heading' => '忘记密码?', + + 'actions' => [ + + 'login' => [ + 'label' => '返回登录页面', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => '邮箱地址', + ], + + 'actions' => [ + + 'request' => [ + 'label' => '发送邮件', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => '尝试次数过多', + 'body' => '请在 :seconds 秒后重试。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_CN/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/zh_CN/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..3ee4cc1 --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + '重置密码', + + 'heading' => '重置密码', + + 'form' => [ + + 'email' => [ + 'label' => '邮箱地址', + ], + + 'password' => [ + 'label' => '密码', + 'validation_attribute' => '密码', + ], + + 'password_confirmation' => [ + 'label' => '确认密码', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => '重置密码', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => '尝试次数过多', + 'body' => '请在 :seconds 秒后重试。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_CN/auth/pages/register.php b/lang/vendor/filament-panels/zh_CN/auth/pages/register.php new file mode 100644 index 0000000..aefa138 --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/auth/pages/register.php @@ -0,0 +1,56 @@ + '注册', + + 'heading' => '注册', + + 'actions' => [ + + 'login' => [ + 'before' => '或者', + 'label' => '登录你的账号', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => '邮箱地址', + ], + + 'name' => [ + 'label' => '姓名', + ], + + 'password' => [ + 'label' => '密码', + 'validation_attribute' => '密码', + ], + + 'password_confirmation' => [ + 'label' => '确认密码', + ], + + 'actions' => [ + + 'register' => [ + 'label' => '提交注册', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => '尝试注册次数过多', + 'body' => '请在 :seconds 秒后重试。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_CN/error-notifications.php b/lang/vendor/filament-panels/zh_CN/error-notifications.php new file mode 100644 index 0000000..7d26ef4 --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/error-notifications.php @@ -0,0 +1,9 @@ + '页面加载出错', + + 'body' => '加载此页面时发生错误,请稍后重试。', + +]; diff --git a/lang/vendor/filament-panels/zh_CN/global-search.php b/lang/vendor/filament-panels/zh_CN/global-search.php new file mode 100644 index 0000000..18668b1 --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => '全局搜索', + 'placeholder' => '搜索', + ], + + 'no_results_message' => '未找到搜索结果。', + +]; diff --git a/lang/vendor/filament-panels/zh_CN/layout.php b/lang/vendor/filament-panels/zh_CN/layout.php new file mode 100644 index 0000000..8fe6e86 --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => '管理订阅', + ], + + 'logout' => [ + 'label' => '退出登录', + ], + + 'open_database_notifications' => [ + 'label' => '打开通知', + ], + + 'open_user_menu' => [ + 'label' => '用户菜单', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => '折叠侧边栏', + ], + + 'expand' => [ + 'label' => '展开侧边栏', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => '切换至深色主题', + ], + + 'light' => [ + 'label' => '切换至浅色主题', + ], + + 'system' => [ + 'label' => '按照系统主题切换', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => ':name 的头像', + ], + + 'logo' => [ + 'alt' => ':name 标志', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => '租户搜索', + 'placeholder' => '搜索', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_CN/pages/dashboard.php b/lang/vendor/filament-panels/zh_CN/pages/dashboard.php new file mode 100644 index 0000000..0d07e74 --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/pages/dashboard.php @@ -0,0 +1,7 @@ + '仪表板', + +]; diff --git a/lang/vendor/filament-panels/zh_CN/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/zh_CN/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..427fa06 --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => '保存', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '已保存', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_CN/resources/pages/create-record.php b/lang/vendor/filament-panels/zh_CN/resources/pages/create-record.php new file mode 100644 index 0000000..318915b --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/resources/pages/create-record.php @@ -0,0 +1,37 @@ + '创建 :label', + + 'breadcrumb' => '创建', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => '取消', + ], + + 'create' => [ + 'label' => '保存', + ], + + 'create_another' => [ + 'label' => '保存并创建另一个', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => '已创建', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_CN/resources/pages/edit-record.php b/lang/vendor/filament-panels/zh_CN/resources/pages/edit-record.php new file mode 100644 index 0000000..b9acf24 --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/resources/pages/edit-record.php @@ -0,0 +1,41 @@ + '编辑 :label', + + 'breadcrumb' => '编辑', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => '取消', + ], + + 'save' => [ + 'label' => '保存', + ], + + ], + + ], + + 'content' => [ + + 'tab' => [ + 'label' => '编辑', + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '已保存', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_CN/resources/pages/list-records.php b/lang/vendor/filament-panels/zh_CN/resources/pages/list-records.php new file mode 100644 index 0000000..dc7342b --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/resources/pages/list-records.php @@ -0,0 +1,7 @@ + '列表', + +]; diff --git a/lang/vendor/filament-panels/zh_CN/resources/pages/view-record.php b/lang/vendor/filament-panels/zh_CN/resources/pages/view-record.php new file mode 100644 index 0000000..2587cfe --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/resources/pages/view-record.php @@ -0,0 +1,17 @@ + ':label 详情', + + 'breadcrumb' => '详情', + + 'content' => [ + + 'tab' => [ + 'label' => '详情', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_CN/unsaved-changes-alert.php b/lang/vendor/filament-panels/zh_CN/unsaved-changes-alert.php new file mode 100644 index 0000000..abc2e09 --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + '您有未保存的更改,确定要离开此页面吗?', + +]; diff --git a/lang/vendor/filament-panels/zh_CN/widgets/account-widget.php b/lang/vendor/filament-panels/zh_CN/widgets/account-widget.php new file mode 100644 index 0000000..0e9d04c --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => '退出登录', + ], + + ], + + 'welcome' => '欢迎', + +]; diff --git a/lang/vendor/filament-panels/zh_CN/widgets/filament-info-widget.php b/lang/vendor/filament-panels/zh_CN/widgets/filament-info-widget.php new file mode 100644 index 0000000..90aa3a0 --- /dev/null +++ b/lang/vendor/filament-panels/zh_CN/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => '文档', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_HK/auth/pages/login.php b/lang/vendor/filament-panels/zh_HK/auth/pages/login.php new file mode 100644 index 0000000..708ab86 --- /dev/null +++ b/lang/vendor/filament-panels/zh_HK/auth/pages/login.php @@ -0,0 +1,47 @@ + '登入', + + 'heading' => '登入帳號', + + 'form' => [ + + 'email' => [ + 'label' => 'E-Mail 位址', + ], + + 'password' => [ + 'label' => '密碼', + ], + + 'remember' => [ + 'label' => '記住我', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => '登入', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => '所提供的帳號密碼與資料庫中的記錄不相符。', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => '嘗試登入次數過多。請在 :seconds 秒後重試。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_HK/global-search.php b/lang/vendor/filament-panels/zh_HK/global-search.php new file mode 100644 index 0000000..3bee89d --- /dev/null +++ b/lang/vendor/filament-panels/zh_HK/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => '全域搜尋', + 'placeholder' => '搜尋', + ], + + 'no_results_message' => '無搜尋結果。', + +]; diff --git a/lang/vendor/filament-panels/zh_HK/layout.php b/lang/vendor/filament-panels/zh_HK/layout.php new file mode 100644 index 0000000..20d167b --- /dev/null +++ b/lang/vendor/filament-panels/zh_HK/layout.php @@ -0,0 +1,31 @@ + 'ltr', + + 'actions' => [ + + 'logout' => [ + 'label' => '登出', + ], + + 'open_user_menu' => [ + 'label' => '用戶菜單', + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => '切換至暗色模式', + ], + + 'light' => [ + 'label' => '切換至亮色模式', + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_HK/pages/dashboard.php b/lang/vendor/filament-panels/zh_HK/pages/dashboard.php new file mode 100644 index 0000000..b5e1977 --- /dev/null +++ b/lang/vendor/filament-panels/zh_HK/pages/dashboard.php @@ -0,0 +1,7 @@ + '主控台', + +]; diff --git a/lang/vendor/filament-panels/zh_HK/resources/pages/create-record.php b/lang/vendor/filament-panels/zh_HK/resources/pages/create-record.php new file mode 100644 index 0000000..39f034c --- /dev/null +++ b/lang/vendor/filament-panels/zh_HK/resources/pages/create-record.php @@ -0,0 +1,37 @@ + '建立 :label', + + 'breadcrumb' => '建立', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => '取消', + ], + + 'create' => [ + 'label' => '建立', + ], + + 'create_another' => [ + 'label' => '建立後再建立另一個', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => '已建立', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_HK/resources/pages/edit-record.php b/lang/vendor/filament-panels/zh_HK/resources/pages/edit-record.php new file mode 100644 index 0000000..51f0487 --- /dev/null +++ b/lang/vendor/filament-panels/zh_HK/resources/pages/edit-record.php @@ -0,0 +1,33 @@ + '編輯 :label', + + 'breadcrumb' => '編輯', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => '取消', + ], + + 'save' => [ + 'label' => '保存', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '已保存', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_HK/resources/pages/list-records.php b/lang/vendor/filament-panels/zh_HK/resources/pages/list-records.php new file mode 100644 index 0000000..22664cc --- /dev/null +++ b/lang/vendor/filament-panels/zh_HK/resources/pages/list-records.php @@ -0,0 +1,7 @@ + '清單', + +]; diff --git a/lang/vendor/filament-panels/zh_HK/resources/pages/view-record.php b/lang/vendor/filament-panels/zh_HK/resources/pages/view-record.php new file mode 100644 index 0000000..e47f3a9 --- /dev/null +++ b/lang/vendor/filament-panels/zh_HK/resources/pages/view-record.php @@ -0,0 +1,9 @@ + '檢視 :label', + + 'breadcrumb' => '檢視', + +]; diff --git a/lang/vendor/filament-panels/zh_HK/widgets/account-widget.php b/lang/vendor/filament-panels/zh_HK/widgets/account-widget.php new file mode 100644 index 0000000..4fc55fe --- /dev/null +++ b/lang/vendor/filament-panels/zh_HK/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => '登出', + ], + + ], + + 'welcome' => '歡迎', + +]; diff --git a/lang/vendor/filament-panels/zh_HK/widgets/filament-info-widget.php b/lang/vendor/filament-panels/zh_HK/widgets/filament-info-widget.php new file mode 100644 index 0000000..ba74da9 --- /dev/null +++ b/lang/vendor/filament-panels/zh_HK/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => '說明文件', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/http/controllers/block-email-change-verification-controller.php b/lang/vendor/filament-panels/zh_TW/auth/http/controllers/block-email-change-verification-controller.php new file mode 100644 index 0000000..5e78068 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/http/controllers/block-email-change-verification-controller.php @@ -0,0 +1,19 @@ + [ + + 'blocked' => [ + 'title' => '電子郵件地址變更已阻止', + 'body' => '您已成功阻止將電子郵件地址變更為 :email 的嘗試。如果您沒有提出原始請求,請立即聯繫我們。', + ], + + 'failed' => [ + 'title' => '無法阻止電子郵件地址變更', + 'body' => '很遺憾,您無法阻止電子郵件地址變更為 :email,因為它在您阻止之前已經過驗證。如果您沒有提出原始請求,請立即聯繫我們。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/http/controllers/email-change-verification-controller.php b/lang/vendor/filament-panels/zh_TW/auth/http/controllers/email-change-verification-controller.php new file mode 100644 index 0000000..4840c61 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/http/controllers/email-change-verification-controller.php @@ -0,0 +1,14 @@ + [ + + 'verified' => [ + 'title' => '電子郵件地址已變更', + 'body' => '您的電子郵件地址已成功變更為 :email。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/multi-factor/app/actions/disable.php b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/app/actions/disable.php new file mode 100644 index 0000000..57de0eb --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/app/actions/disable.php @@ -0,0 +1,88 @@ + '關閉', + + 'modal' => [ + + 'heading' => '停用信箱驗證', + + 'description' => '您確定要停止使用信箱驗證嗎?停用此功能將會降低安全性。', + + 'form' => [ + + 'code' => [ + + 'label' => '輸入來自信箱的 6 位數驗證碼', + + 'validation_attribute' => '驗證碼', + + 'actions' => [ + + 'resend' => [ + + 'label' => '發送新的驗證碼至信箱', + + 'notifications' => [ + + 'resent' => [ + 'title' => '我們已經發送了一封新的驗證碼到您的信箱', + ], + + 'throttled' => [ + 'title' => '重新發送嘗試次數過多。請稍後再試。', + ], + + ], + + ], + 'use_recovery_code' => [ + 'label' => '改用復原碼', + ], + + ], + + 'messages' => [ + + 'invalid' => '您輸入的驗證碼無效。', + + ], + + ], + + 'recovery_code' => [ + + 'label' => '或,輸入復原碼', + + 'validation_attribute' => '復原碼', + + 'messages' => [ + + 'invalid' => '您輸入的復原碼無效。', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => '停用信箱驗證', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => '信箱驗證已停用', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/multi-factor/app/actions/regenerate-recovery-codes.php b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/app/actions/regenerate-recovery-codes.php new file mode 100644 index 0000000..01b1559 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/app/actions/regenerate-recovery-codes.php @@ -0,0 +1,77 @@ + '重新生成復原碼', + + 'modal' => [ + + 'heading' => '重新生成驗證器應用程式復原碼', + + 'description' => '如果您遺失了復原碼,可以在這裡重新生成它們。您的舊復原碼將立即失效。', + + 'form' => [ + + 'code' => [ + + 'label' => '輸入來自驗證器應用程式的 6 位數驗證碼', + + 'validation_attribute' => '驗證碼', + + 'messages' => [ + + 'invalid' => '您輸入的驗證碼無效。', + + ], + + ], + + 'password' => [ + + 'label' => '或輸入您目前的密碼', + + 'validation_attribute' => '密碼', + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => '重新生成復原碼', + ], + + ], + + ], + + 'notifications' => [ + + 'regenerated' => [ + 'title' => '已生成新的驗證器應用程式復原碼', + ], + + ], + + 'show_new_recovery_codes' => [ + + 'modal' => [ + + 'heading' => '新復原碼', + + 'description' => '請將以下復原碼保存在安全的地方。它們只會顯示一次,但如果您無法存取驗證器應用程式,您將需要它們:', + + 'actions' => [ + + 'submit' => [ + 'label' => '關閉', + ], + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/multi-factor/app/actions/set-up.php b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/app/actions/set-up.php new file mode 100644 index 0000000..9af7907 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/app/actions/set-up.php @@ -0,0 +1,81 @@ + '設定', + + 'modal' => [ + + 'heading' => '設定驗證器應用程式', + + 'description' => <<<'BLADE' + 您需要像 Google Authenticator (iOS, Android) 這樣的應用程式來完成此過程。 + BLADE, + + 'content' => [ + + 'qr_code' => [ + + 'instruction' => '使用您的驗證器應用程式掃描此 QR 碼:', + + 'alt' => '使用驗證器應用程式掃描的 QR 碼', + + ], + + 'text_code' => [ + + 'instruction' => '或手動輸入此代碼:', + + 'messages' => [ + 'copied' => '已複製', + ], + + ], + + 'recovery_codes' => [ + + 'instruction' => '請將以下復原碼保存在安全的地方。它們只會顯示一次,但如果您無法存取驗證器應用程式,您將需要它們:', + + ], + + ], + + 'form' => [ + + 'code' => [ + + 'label' => '輸入來自驗證器應用程式的 6 位數驗證碼', + + 'validation_attribute' => '驗證碼', + + 'below_content' => '您每次登入或執行敏感操作時,都需要輸入來自驗證器應用程式的 6 位數驗證碼。', + + 'messages' => [ + + 'invalid' => '您輸入的驗證碼無效。', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => '啟用驗證器應用程式', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => '驗證器應用程式已啟用', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/multi-factor/app/provider.php b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/app/provider.php new file mode 100644 index 0000000..2aa915a --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/app/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => '驗證器應用程式', + + 'below_content' => '使用安全應用程式生成臨時驗證碼以進行登入驗證。', + + 'messages' => [ + 'enabled' => '已啟用', + 'disabled' => '已停用', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => '使用驗證器應用程式中的驗證碼', + + 'code' => [ + + 'label' => '輸入來自驗證器應用程式的 6 位數驗證碼', + + 'validation_attribute' => '驗證碼', + + 'actions' => [ + + 'use_recovery_code' => [ + 'label' => '改用復原碼', + ], + + ], + + 'messages' => [ + + 'invalid' => '您輸入的驗證碼無效。', + + ], + + ], + + 'recovery_code' => [ + + 'label' => '或,輸入復原碼', + + 'validation_attribute' => '復原碼', + + 'messages' => [ + + 'invalid' => '您輸入的復原碼無效。', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/multi-factor/email/actions/disable.php b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/email/actions/disable.php new file mode 100644 index 0000000..4c5f23f --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/email/actions/disable.php @@ -0,0 +1,71 @@ + '關閉', + + 'modal' => [ + + 'heading' => '停用電子郵件驗證碼', + + 'description' => '您確定要停止接收電子郵件驗證碼嗎?停用此功能將從您的帳戶中移除額外的安全層。', + + 'form' => [ + + 'code' => [ + + 'label' => '輸入我們透過電子郵件發送給您的 6 位數驗證碼', + + 'validation_attribute' => '驗證碼', + + 'actions' => [ + + 'resend' => [ + + 'label' => '透過電子郵件發送新驗證碼', + + 'notifications' => [ + + 'resent' => [ + 'title' => '我們已透過電子郵件發送新驗證碼給您', + ], + + 'throttled' => [ + 'title' => '重新發送嘗試次數過多。請在請求另一個驗證碼前稍候。', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => '您輸入的驗證碼無效。', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => '停用電子郵件驗證碼', + ], + + ], + + ], + + 'notifications' => [ + + 'disabled' => [ + 'title' => '電子郵件驗證碼已停用', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/multi-factor/email/actions/set-up.php b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/email/actions/set-up.php new file mode 100644 index 0000000..5928b07 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/email/actions/set-up.php @@ -0,0 +1,71 @@ + '設定', + + 'modal' => [ + + 'heading' => '設定電子郵件驗證碼', + + 'description' => '您每次登入或執行敏感操作時,都需要輸入我們透過電子郵件發送給您的 6 位數驗證碼。請檢查您的電子郵件以獲取 6 位數驗證碼來完成設定。', + + 'form' => [ + + 'code' => [ + + 'label' => '輸入我們透過電子郵件發送給您的 6 位數驗證碼', + + 'validation_attribute' => '驗證碼', + + 'actions' => [ + + 'resend' => [ + + 'label' => '透過電子郵件發送新驗證碼', + + 'notifications' => [ + + 'resent' => [ + 'title' => '我們已透過電子郵件發送新驗證碼給您', + ], + + 'throttled' => [ + 'title' => '重新發送嘗試次數過多。請在請求另一個驗證碼前稍候。', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => '您輸入的驗證碼無效。', + + ], + + ], + + ], + + 'actions' => [ + + 'submit' => [ + 'label' => '啟用電子郵件驗證碼', + ], + + ], + + ], + + 'notifications' => [ + + 'enabled' => [ + 'title' => '電子郵件驗證碼已啟用', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/multi-factor/email/notifications/verify-email-authentication.php b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/email/notifications/verify-email-authentication.php new file mode 100644 index 0000000..904d6ce --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/email/notifications/verify-email-authentication.php @@ -0,0 +1,12 @@ + '這是您的登入驗證碼', + + 'lines' => [ + '您的登入驗證碼是::code', + '此驗證碼將在一分鐘後過期。|此驗證碼將在 :minutes 分鐘後過期。', + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/multi-factor/email/provider.php b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/email/provider.php new file mode 100644 index 0000000..f727420 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/email/provider.php @@ -0,0 +1,64 @@ + [ + + 'actions' => [ + + 'label' => '電子郵件驗證碼', + + 'below_content' => '在您的電子郵件地址接收臨時驗證碼,以在登入時驗證您的身份。', + + 'messages' => [ + 'enabled' => '已啟用', + 'disabled' => '已停用', + ], + + ], + + ], + + 'login_form' => [ + + 'label' => '發送驗證碼至您的電子郵件', + + 'code' => [ + + 'label' => '輸入我們透過電子郵件發送給您的 6 位數驗證碼', + + 'validation_attribute' => '驗證碼', + + 'actions' => [ + + 'resend' => [ + + 'label' => '透過電子郵件發送新驗證碼', + + 'notifications' => [ + + 'resent' => [ + 'title' => '我們已透過電子郵件發送新驗證碼給您', + ], + + 'throttled' => [ + 'title' => '重新發送嘗試次數過多。請在請求另一個驗證碼前稍候。', + ], + + ], + + ], + + ], + + 'messages' => [ + + 'invalid' => '您輸入的驗證碼無效。', + + ], + + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php new file mode 100644 index 0000000..a2b9722 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/pages/set-up-required-multi-factor-authentication.php @@ -0,0 +1,19 @@ + '設定雙因素驗證 (2FA)', + + 'heading' => '設定雙因素驗證', + + 'subheading' => '2FA 透過在登入時要求第二種驗證形式,為您的帳戶增加額外的安全層。', + + 'actions' => [ + + 'continue' => [ + 'label' => '繼續', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/multi-factor/recovery-codes-modal-content.php b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/recovery-codes-modal-content.php new file mode 100644 index 0000000..37903a3 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/multi-factor/recovery-codes-modal-content.php @@ -0,0 +1,27 @@ + [ + + 'Click to', + + 'copy' => [ + 'label' => '複製', + ], + + 'or', + + 'download' => [ + 'label' => '下載', + ], + + 'all the codes at once.', + + ], + + 'messages' => [ + 'copied' => '已複製', + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/notifications/notice-of-email-change-request.php b/lang/vendor/filament-panels/zh_TW/auth/notifications/notice-of-email-change-request.php new file mode 100644 index 0000000..23af761 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/notifications/notice-of-email-change-request.php @@ -0,0 +1,16 @@ + '您的電子郵件地址正在變更', + + 'lines' => [ + '我們收到變更與您帳戶關聯的電子郵件地址的請求。您的密碼已用於確認此變更。', + '驗證後,您帳戶上的新電子郵件地址將為::email。', + '您可以透過點擊下方的按鈕在驗證前阻止變更。', + '如果您沒有提出此請求,請立即聯繫我們。', + ], + + 'action' => '阻止電子郵件變更', + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/pages/edit-profile.php b/lang/vendor/filament-panels/zh_TW/auth/pages/edit-profile.php new file mode 100644 index 0000000..2791678 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/pages/edit-profile.php @@ -0,0 +1,68 @@ + '個人資料', + + 'form' => [ + + 'email' => [ + 'label' => '電子郵件地址', + ], + + 'name' => [ + 'label' => '姓名', + ], + + 'password' => [ + 'label' => '新密碼', + 'validation_attribute' => '密碼', + ], + + 'password_confirmation' => [ + 'label' => '確認新密碼', + 'validation_attribute' => '密碼確認', + ], + + 'current_password' => [ + 'label' => '目前密碼', + 'below_content' => '為了安全起見,請確認您的密碼以繼續。', + 'validation_attribute' => '目前密碼', + ], + + 'actions' => [ + + 'save' => [ + 'label' => '儲存變更', + ], + + ], + + ], + + 'multi_factor_authentication' => [ + 'label' => '雙因素驗證 (2FA)', + ], + + 'notifications' => [ + + 'email_change_verification_sent' => [ + 'title' => '電子郵件地址變更請求已發送', + 'body' => '變更電子郵件地址的請求已發送至 :email。請檢查您的電子郵件以驗證變更。', + ], + + 'saved' => [ + 'title' => '已儲存', + ], + + ], + + 'actions' => [ + + 'cancel' => [ + 'label' => '取消', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/pages/email-verification/email-verification-prompt.php b/lang/vendor/filament-panels/zh_TW/auth/pages/email-verification/email-verification-prompt.php new file mode 100644 index 0000000..324bf1b --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/pages/email-verification/email-verification-prompt.php @@ -0,0 +1,35 @@ + '驗證您的電子郵件地址', + + 'heading' => '驗證您的電子郵件地址', + + 'actions' => [ + + 'resend_notification' => [ + 'label' => '重新發送', + ], + + ], + + 'messages' => [ + 'notification_not_received' => '沒有收到我們發送的電子郵件?', + 'notification_sent' => '我們已發送一封電子郵件至 :email,其中包含如何驗證您的電子郵件地址的說明。', + ], + + 'notifications' => [ + + 'notification_resent' => [ + 'title' => '我們已重新發送電子郵件。', + ], + + 'notification_resend_throttled' => [ + 'title' => '重新發送嘗試次數過多', + 'body' => '請在 :seconds 秒後再試。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/pages/login.php b/lang/vendor/filament-panels/zh_TW/auth/pages/login.php new file mode 100644 index 0000000..708ab86 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/pages/login.php @@ -0,0 +1,47 @@ + '登入', + + 'heading' => '登入帳號', + + 'form' => [ + + 'email' => [ + 'label' => 'E-Mail 位址', + ], + + 'password' => [ + 'label' => '密碼', + ], + + 'remember' => [ + 'label' => '記住我', + ], + + 'actions' => [ + + 'authenticate' => [ + 'label' => '登入', + ], + + ], + + ], + + 'messages' => [ + + 'failed' => '所提供的帳號密碼與資料庫中的記錄不相符。', + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => '嘗試登入次數過多。請在 :seconds 秒後重試。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/pages/password-reset/request-password-reset.php b/lang/vendor/filament-panels/zh_TW/auth/pages/password-reset/request-password-reset.php new file mode 100644 index 0000000..ecebf81 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/pages/password-reset/request-password-reset.php @@ -0,0 +1,46 @@ + '重設您的密碼', + + 'heading' => '忘記密碼?', + + 'actions' => [ + + 'login' => [ + 'label' => '返回登入', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => '電子郵件地址', + ], + + 'actions' => [ + + 'request' => [ + 'label' => '發送電子郵件', + ], + + ], + + ], + + 'notifications' => [ + + 'sent' => [ + 'body' => '如果您的帳戶不存在,您將不會收到電子郵件。', + ], + + 'throttled' => [ + 'title' => '請求次數過多', + 'body' => '請在 :seconds 秒後再試。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/pages/password-reset/reset-password.php b/lang/vendor/filament-panels/zh_TW/auth/pages/password-reset/reset-password.php new file mode 100644 index 0000000..b6255e0 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/pages/password-reset/reset-password.php @@ -0,0 +1,43 @@ + '重設您的密碼', + + 'heading' => '重設您的密碼', + + 'form' => [ + + 'email' => [ + 'label' => '電子郵件地址', + ], + + 'password' => [ + 'label' => '密碼', + 'validation_attribute' => '密碼', + ], + + 'password_confirmation' => [ + 'label' => '確認密碼', + ], + + 'actions' => [ + + 'reset' => [ + 'label' => '重設密碼', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => '重設嘗試次數過多', + 'body' => '請在 :seconds 秒後再試。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/auth/pages/register.php b/lang/vendor/filament-panels/zh_TW/auth/pages/register.php new file mode 100644 index 0000000..c64c559 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/auth/pages/register.php @@ -0,0 +1,56 @@ + '註冊', + + 'heading' => '註冊', + + 'actions' => [ + + 'login' => [ + 'before' => '或', + 'label' => '登入您的帳戶', + ], + + ], + + 'form' => [ + + 'email' => [ + 'label' => '電子郵件地址', + ], + + 'name' => [ + 'label' => '姓名', + ], + + 'password' => [ + 'label' => '密碼', + 'validation_attribute' => '密碼', + ], + + 'password_confirmation' => [ + 'label' => '確認密碼', + ], + + 'actions' => [ + + 'register' => [ + 'label' => '註冊', + ], + + ], + + ], + + 'notifications' => [ + + 'throttled' => [ + 'title' => '註冊嘗試次數過多', + 'body' => '請在 :seconds 秒後再試。', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/error-notifications.php b/lang/vendor/filament-panels/zh_TW/error-notifications.php new file mode 100644 index 0000000..03dc503 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/error-notifications.php @@ -0,0 +1,9 @@ + '載入頁面時發生錯誤', + + 'body' => '嘗試載入此頁面時發生錯誤。請稍後再試。', + +]; diff --git a/lang/vendor/filament-panels/zh_TW/global-search.php b/lang/vendor/filament-panels/zh_TW/global-search.php new file mode 100644 index 0000000..3bee89d --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/global-search.php @@ -0,0 +1,12 @@ + [ + 'label' => '全域搜尋', + 'placeholder' => '搜尋', + ], + + 'no_results_message' => '無搜尋結果。', + +]; diff --git a/lang/vendor/filament-panels/zh_TW/layout.php b/lang/vendor/filament-panels/zh_TW/layout.php new file mode 100644 index 0000000..75bc5e6 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/layout.php @@ -0,0 +1,72 @@ + 'ltr', + + 'actions' => [ + + 'billing' => [ + 'label' => '管理訂閱', + ], + + 'logout' => [ + 'label' => '登出', + ], + + 'open_database_notifications' => [ + 'label' => '通知', + ], + + 'open_user_menu' => [ + 'label' => '用戶菜單', + ], + + 'sidebar' => [ + + 'collapse' => [ + 'label' => '收起側邊欄', + ], + + 'expand' => [ + 'label' => '展開側邊欄', + ], + + ], + + 'theme_switcher' => [ + + 'dark' => [ + 'label' => '切換至暗色模式', + ], + + 'light' => [ + 'label' => '切換至亮色模式', + ], + + 'system' => [ + 'label' => '切換至系統模式', + ], + + ], + + ], + + 'avatar' => [ + 'alt' => ':name 的頭像', + ], + + 'logo' => [ + 'alt' => ':name 標誌', + ], + + 'tenant_menu' => [ + + 'search_field' => [ + 'label' => '租戶搜尋', + 'placeholder' => '搜尋', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/pages/dashboard.php b/lang/vendor/filament-panels/zh_TW/pages/dashboard.php new file mode 100644 index 0000000..01389b5 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/pages/dashboard.php @@ -0,0 +1,32 @@ + '主控台', + + 'actions' => [ + + 'filter' => [ + + 'label' => 'Filter', + + 'modal' => [ + + 'heading' => 'Filter', + + 'actions' => [ + + 'apply' => [ + + 'label' => '套用', + + ], + + ], + + ], + + ], + + ], +]; diff --git a/lang/vendor/filament-panels/zh_TW/pages/tenancy/edit-tenant-profile.php b/lang/vendor/filament-panels/zh_TW/pages/tenancy/edit-tenant-profile.php new file mode 100644 index 0000000..b17fd28 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/pages/tenancy/edit-tenant-profile.php @@ -0,0 +1,25 @@ + [ + + 'actions' => [ + + 'save' => [ + 'label' => '儲存變更', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '已儲存', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/resources/pages/create-record.php b/lang/vendor/filament-panels/zh_TW/resources/pages/create-record.php new file mode 100644 index 0000000..39f034c --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/resources/pages/create-record.php @@ -0,0 +1,37 @@ + '建立 :label', + + 'breadcrumb' => '建立', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => '取消', + ], + + 'create' => [ + 'label' => '建立', + ], + + 'create_another' => [ + 'label' => '建立後再建立另一個', + ], + + ], + + ], + + 'notifications' => [ + + 'created' => [ + 'title' => '已建立', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/resources/pages/edit-record.php b/lang/vendor/filament-panels/zh_TW/resources/pages/edit-record.php new file mode 100644 index 0000000..51f0487 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/resources/pages/edit-record.php @@ -0,0 +1,33 @@ + '編輯 :label', + + 'breadcrumb' => '編輯', + + 'form' => [ + + 'actions' => [ + + 'cancel' => [ + 'label' => '取消', + ], + + 'save' => [ + 'label' => '保存', + ], + + ], + + ], + + 'notifications' => [ + + 'saved' => [ + 'title' => '已保存', + ], + + ], + +]; diff --git a/lang/vendor/filament-panels/zh_TW/resources/pages/list-records.php b/lang/vendor/filament-panels/zh_TW/resources/pages/list-records.php new file mode 100644 index 0000000..22664cc --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/resources/pages/list-records.php @@ -0,0 +1,7 @@ + '清單', + +]; diff --git a/lang/vendor/filament-panels/zh_TW/resources/pages/manage-related-records.php b/lang/vendor/filament-panels/zh_TW/resources/pages/manage-related-records.php new file mode 100644 index 0000000..dae5eba --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/resources/pages/manage-related-records.php @@ -0,0 +1,7 @@ + '管理 :label :relationship', + +]; diff --git a/lang/vendor/filament-panels/zh_TW/resources/pages/view-record.php b/lang/vendor/filament-panels/zh_TW/resources/pages/view-record.php new file mode 100644 index 0000000..e47f3a9 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/resources/pages/view-record.php @@ -0,0 +1,9 @@ + '檢視 :label', + + 'breadcrumb' => '檢視', + +]; diff --git a/lang/vendor/filament-panels/zh_TW/unsaved-changes-alert.php b/lang/vendor/filament-panels/zh_TW/unsaved-changes-alert.php new file mode 100644 index 0000000..a5bb7c1 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/unsaved-changes-alert.php @@ -0,0 +1,7 @@ + '您有未儲存的變更。確定要離開此頁面嗎?', + +]; diff --git a/lang/vendor/filament-panels/zh_TW/widgets/account-widget.php b/lang/vendor/filament-panels/zh_TW/widgets/account-widget.php new file mode 100644 index 0000000..4fc55fe --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/widgets/account-widget.php @@ -0,0 +1,15 @@ + [ + + 'logout' => [ + 'label' => '登出', + ], + + ], + + 'welcome' => '歡迎', + +]; diff --git a/lang/vendor/filament-panels/zh_TW/widgets/filament-info-widget.php b/lang/vendor/filament-panels/zh_TW/widgets/filament-info-widget.php new file mode 100644 index 0000000..ba74da9 --- /dev/null +++ b/lang/vendor/filament-panels/zh_TW/widgets/filament-info-widget.php @@ -0,0 +1,17 @@ + [ + + 'open_documentation' => [ + 'label' => '說明文件', + ], + + 'open_github' => [ + 'label' => 'GitHub', + ], + + ], + +]; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..4b2b5d1 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1914 @@ +{ + "name": "photogeodata", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "devDependencies": { + "@tailwindcss/vite": "^4.0.0", + "axios": ">=1.11.0 <=1.14.0", + "concurrently": "^9.0.1", + "laravel-vite-plugin": "^3.0.0", + "tailwindcss": "^4.0.0", + "vite": "^8.0.0" + } + }, + "node_modules/@emnapi/core": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.9.2.tgz", + "integrity": "sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.2.1", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.2.tgz", + "integrity": "sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz", + "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "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, + "license": "MIT", + "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, + "license": "MIT", + "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, + "license": "MIT", + "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, + "license": "MIT" + }, + "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, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz", + "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@tybys/wasm-util": "^0.10.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Brooooooklyn" + }, + "peerDependencies": { + "@emnapi/core": "^1.7.1", + "@emnapi/runtime": "^1.7.1" + } + }, + "node_modules/@oxc-project/types": { + "version": "0.124.0", + "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.124.0.tgz", + "integrity": "sha512-VBFWMTBvHxS11Z5Lvlr3IWgrwhMTXV+Md+EQF0Xf60+wAdsGFTBx7X7K/hP4pi8N7dcm1RvcHwDxZ16Qx8keUg==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/Boshen" + } + }, + "node_modules/@rolldown/binding-android-arm64": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.15.tgz", + "integrity": "sha512-YYe6aWruPZDtHNpwu7+qAHEMbQ/yRl6atqb/AhznLTnD3UY99Q1jE7ihLSahNWkF4EqRPVC4SiR4O0UkLK02tA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-darwin-arm64": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.15.tgz", + "integrity": "sha512-oArR/ig8wNTPYsXL+Mzhs0oxhxfuHRfG7Ikw7jXsw8mYOtk71W0OkF2VEVh699pdmzjPQsTjlD1JIOoHkLP1Fg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-darwin-x64": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.15.tgz", + "integrity": "sha512-YzeVqOqjPYvUbJSWJ4EDL8ahbmsIXQpgL3JVipmN+MX0XnXMeWomLN3Fb+nwCmP/jfyqte5I3XRSm7OfQrbyxw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-freebsd-x64": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.15.tgz", + "integrity": "sha512-9Erhx956jeQ0nNTyif1+QWAXDRD38ZNjr//bSHrt6wDwB+QkAfl2q6Mn1k6OBPerznjRmbM10lgRb1Pli4xZPw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-arm-gnueabihf": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.15.tgz", + "integrity": "sha512-cVwk0w8QbZJGTnP/AHQBs5yNwmpgGYStL88t4UIaqcvYJWBfS0s3oqVLZPwsPU6M0zlW4GqjP0Zq5MnAGwFeGA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-arm64-gnu": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.15.tgz", + "integrity": "sha512-eBZ/u8iAK9SoHGanqe/jrPnY0JvBN6iXbVOsbO38mbz+ZJsaobExAm1Iu+rxa4S1l2FjG0qEZn4Rc6X8n+9M+w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-arm64-musl": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.15.tgz", + "integrity": "sha512-ZvRYMGrAklV9PEkgt4LQM6MjQX2P58HPAuecwYObY2DhS2t35R0I810bKi0wmaYORt6m/2Sm+Z+nFgb0WhXNcQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-ppc64-gnu": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.15.tgz", + "integrity": "sha512-VDpgGBzgfg5hLg+uBpCLoFG5kVvEyafmfxGUV0UHLcL5irxAK7PKNeC2MwClgk6ZAiNhmo9FLhRYgvMmedLtnQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-s390x-gnu": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.15.tgz", + "integrity": "sha512-y1uXY3qQWCzcPgRJATPSOUP4tCemh4uBdY7e3EZbVwCJTY3gLJWnQABgeUetvED+bt1FQ01OeZwvhLS2bpNrAQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-x64-gnu": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.15.tgz", + "integrity": "sha512-023bTPBod7J3Y/4fzAN6QtpkSABR0rigtrwaP+qSEabUh5zf6ELr9Nc7GujaROuPY3uwdSIXWrvhn1KxOvurWA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-x64-musl": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.15.tgz", + "integrity": "sha512-witB2O0/hU4CgfOOKUoeFgQ4GktPi1eEbAhaLAIpgD6+ZnhcPkUtPsoKKHRzmOoWPZue46IThdSgdo4XneOLYw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-openharmony-arm64": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.15.tgz", + "integrity": "sha512-UCL68NJ0Ud5zRipXZE9dF5PmirzJE4E4BCIOOssEnM7wLDsxjc6Qb0sGDxTNRTP53I6MZpygyCpY8Aa8sPfKPg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-wasm32-wasi": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.15.tgz", + "integrity": "sha512-ApLruZq/ig+nhaE7OJm4lDjayUnOHVUa77zGeqnqZ9pn0ovdVbbNPerVibLXDmWeUZXjIYIT8V3xkT58Rm9u5Q==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "1.9.2", + "@emnapi/runtime": "1.9.2", + "@napi-rs/wasm-runtime": "^1.1.3" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@rolldown/binding-win32-arm64-msvc": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.15.tgz", + "integrity": "sha512-KmoUoU7HnN+Si5YWJigfTws1jz1bKBYDQKdbLspz0UaqjjFkddHsqorgiW1mxcAj88lYUE6NC/zJNwT+SloqtA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-win32-x64-msvc": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.15.tgz", + "integrity": "sha512-3P2A8L+x75qavWLe/Dll3EYBJLQmtkJN8rfh+U/eR3MqMgL/h98PhYI+JFfXuDPgPeCB7iZAKiqii5vqOvnA0g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.15.tgz", + "integrity": "sha512-UromN0peaE53IaBRe9W7CjrZgXl90fqGpK+mIZbA3qSTeYqg3pqpROBdIPvOG3F5ereDHNwoHBI2e50n1BDr1g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tailwindcss/node": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.2.tgz", + "integrity": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "enhanced-resolve": "^5.19.0", + "jiti": "^2.6.1", + "lightningcss": "1.32.0", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.2.2" + } + }, + "node_modules/@tailwindcss/oxide": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.2.tgz", + "integrity": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 20" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.2.2", + "@tailwindcss/oxide-darwin-arm64": "4.2.2", + "@tailwindcss/oxide-darwin-x64": "4.2.2", + "@tailwindcss/oxide-freebsd-x64": "4.2.2", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.2", + "@tailwindcss/oxide-linux-arm64-gnu": "4.2.2", + "@tailwindcss/oxide-linux-arm64-musl": "4.2.2", + "@tailwindcss/oxide-linux-x64-gnu": "4.2.2", + "@tailwindcss/oxide-linux-x64-musl": "4.2.2", + "@tailwindcss/oxide-wasm32-wasi": "4.2.2", + "@tailwindcss/oxide-win32-arm64-msvc": "4.2.2", + "@tailwindcss/oxide-win32-x64-msvc": "4.2.2" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.2.tgz", + "integrity": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.2.tgz", + "integrity": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.2.tgz", + "integrity": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.2.tgz", + "integrity": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.2.tgz", + "integrity": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.2.tgz", + "integrity": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.2.tgz", + "integrity": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.2.tgz", + "integrity": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.2.tgz", + "integrity": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.2.tgz", + "integrity": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.8.1", + "@emnapi/runtime": "^1.8.1", + "@emnapi/wasi-threads": "^1.1.0", + "@napi-rs/wasm-runtime": "^1.1.1", + "@tybys/wasm-util": "^0.10.1", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.2.tgz", + "integrity": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz", + "integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/vite": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.2.tgz", + "integrity": "sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@tailwindcss/node": "4.2.2", + "@tailwindcss/oxide": "4.2.2", + "tailwindcss": "4.2.2" + }, + "peerDependencies": { + "vite": "^5.2.0 || ^6 || ^7 || ^8" + } + }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "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, + "license": "MIT", + "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, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "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, + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.14.0.tgz", + "integrity": "sha512-3Y8yrqLSwjuzpXuZ0oIYZ/XGgLwUIBU3uLvbcpb0pidD9ctpShJd43KSlEEkVQg6DS0G9NKyzOvBfUtDKEyHvQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.11", + "form-data": "^4.0.5", + "proxy-from-env": "^2.1.0" + } + }, + "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, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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, + "license": "MIT", + "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, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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, + "license": "ISC", + "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, + "license": "MIT", + "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, + "license": "MIT" + }, + "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, + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "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, + "license": "MIT", + "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/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "license": "MIT", + "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, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "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, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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, + "license": "MIT" + }, + "node_modules/enhanced-resolve": { + "version": "5.20.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz", + "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.3.0" + }, + "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, + "license": "MIT", + "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, + "license": "MIT", + "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, + "license": "MIT", + "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, + "license": "MIT", + "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/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "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" + } + ], + "license": "MIT", + "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, + "license": "MIT", + "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/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, + "license": "MIT", + "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, + "license": "MIT", + "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, + "license": "ISC", + "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, + "license": "MIT", + "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, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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, + "license": "MIT", + "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, + "license": "ISC" + }, + "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, + "license": "MIT", + "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, + "license": "MIT", + "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, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jiti": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/laravel-vite-plugin": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-3.0.1.tgz", + "integrity": "sha512-Bx8sVcLIaZT1d0eisABcmjQ1GZdJpaXcV66A8RhXGp9JgR3iL8jDnvakVDXuH87Tn5S9KNx3VOhmJZW1CSexOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "picocolors": "^1.0.0", + "tinyglobby": "^0.2.12", + "vite-plugin-full-reload": "^1.1.0" + }, + "bin": { + "clean-orphaned-assets": "bin/clean.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "peerDependencies": { + "vite": "^8.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, + "license": "MPL-2.0", + "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, + "license": "MPL-2.0", + "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, + "license": "MPL-2.0", + "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, + "license": "MPL-2.0", + "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, + "license": "MPL-2.0", + "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, + "license": "MPL-2.0", + "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, + "license": "MPL-2.0", + "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, + "license": "MPL-2.0", + "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, + "license": "MPL-2.0", + "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, + "license": "MPL-2.0", + "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, + "license": "MPL-2.0", + "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, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "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, + "license": "MIT", + "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, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "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, + "license": "MIT", + "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, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "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, + "license": "ISC" + }, + "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, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.10", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.10.tgz", + "integrity": "sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==", + "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" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rolldown": { + "version": "1.0.0-rc.15", + "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.15.tgz", + "integrity": "sha512-Ff31guA5zT6WjnGp0SXw76X6hzGRk/OQq2hE+1lcDe+lJdHSgnSX6nK3erbONHyCbpSj9a9E+uX/OvytZoWp2g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@oxc-project/types": "=0.124.0", + "@rolldown/pluginutils": "1.0.0-rc.15" + }, + "bin": { + "rolldown": "bin/cli.mjs" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "optionalDependencies": { + "@rolldown/binding-android-arm64": "1.0.0-rc.15", + "@rolldown/binding-darwin-arm64": "1.0.0-rc.15", + "@rolldown/binding-darwin-x64": "1.0.0-rc.15", + "@rolldown/binding-freebsd-x64": "1.0.0-rc.15", + "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.15", + "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.15", + "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.15", + "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.15", + "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.15", + "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.15", + "@rolldown/binding-linux-x64-musl": "1.0.0-rc.15", + "@rolldown/binding-openharmony-arm64": "1.0.0-rc.15", + "@rolldown/binding-wasm32-wasi": "1.0.0-rc.15", + "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.15", + "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.15" + } + }, + "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, + "license": "Apache-2.0", + "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, + "license": "MIT", + "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, + "license": "BSD-3-Clause", + "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, + "license": "MIT", + "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, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "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, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/tailwindcss": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.2.tgz", + "integrity": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.2.tgz", + "integrity": "sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "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, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "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, + "license": "MIT", + "bin": { + "tree-kill": "cli.js" + } + }, + "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, + "license": "0BSD" + }, + "node_modules/vite": { + "version": "8.0.8", + "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.8.tgz", + "integrity": "sha512-dbU7/iLVa8KZALJyLOBOQ88nOXtNG8vxKuOT4I2mD+Ya70KPceF4IAmDsmU0h1Qsn5bPrvsY9HJstCRh3hG6Uw==", + "dev": true, + "license": "MIT", + "dependencies": { + "lightningcss": "^1.32.0", + "picomatch": "^4.0.4", + "postcss": "^8.5.8", + "rolldown": "1.0.0-rc.15", + "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", + "@vitejs/devtools": "^0.1.0", + "esbuild": "^0.27.0 || ^0.28.0", + "jiti": ">=1.21.0", + "less": "^4.0.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 + }, + "@vitejs/devtools": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "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, + "license": "MIT", + "dependencies": { + "picocolors": "^1.0.0", + "picomatch": "^2.3.1" + } + }, + "node_modules/vite-plugin-full-reload/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, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "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, + "license": "MIT", + "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, + "license": "ISC", + "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, + "license": "MIT", + "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, + "license": "ISC", + "engines": { + "node": ">=12" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..d2456d5 --- /dev/null +++ b/package.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://www.schemastore.org/package.json", + "private": true, + "type": "module", + "scripts": { + "build": "vite build", + "dev": "vite" + }, + "devDependencies": { + "@tailwindcss/vite": "^4.0.0", + "axios": ">=1.11.0 <=1.14.0", + "concurrently": "^9.0.1", + "laravel-vite-plugin": "^3.0.0", + "tailwindcss": "^4.0.0", + "vite": "^8.0.0" + } +} diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..a85936a --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,35 @@ + + + + + tests/Unit + + + tests/Feature + + + + + app + + + + + + + + + + + + + + + + + + diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..b574a59 --- /dev/null +++ b/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/public/css/eduardoribeirodev/filament-leaflet/leaflet.css b/public/css/eduardoribeirodev/filament-leaflet/leaflet.css new file mode 100644 index 0000000..712afe9 --- /dev/null +++ b/public/css/eduardoribeirodev/filament-leaflet/leaflet.css @@ -0,0 +1 @@ +.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:#ffffff80}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px #000000a6;border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px #0006;background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:#fffc;margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;-moz-box-sizing:border-box;box-sizing:border-box;background:#fffc;text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.marker-icon{background-color:#fff;border:1px solid #3388ff;border-radius:50%;margin:-8px 0 0 -8px!important;width:14px!important;height:14px!important;outline:0;transition:opacity ease .3s}.marker-icon-middle{opacity:.7;margin:-6px 0 0 -6px!important;width:10px!important;height:10px!important}.leaflet-pm-draggable{cursor:move!important}.cursor-marker{cursor:crosshair;pointer-events:none;opacity:0}.cursor-marker.visible{opacity:1!important}.geoman-draw-cursor,.geoman-draw-cursor .leaflet-interactive{cursor:crosshair}.rect-style-marker,.rect-start-marker{opacity:0}.rect-style-marker.visible,.rect-start-marker.visible{opacity:1!important}.vertexmarker-disabled{opacity:.7}.pm-text-marker{width:0;height:0}.pm-textarea{box-sizing:content-box;background-color:#fff;color:#000;resize:none;border:none;outline:0;cursor:pointer;border-radius:3px;padding-left:7px;padding-bottom:0;padding-top:4px}.leaflet-pm-draggable .pm-textarea{cursor:move}.pm-textarea:focus,.pm-textarea:focus-within,.pm-textarea:focus-visible,.pm-textarea:active{border:2px solid #000;outline:0}.pm-textarea.pm-disabled{border:none;-webkit-user-select:none;user-select:none}.pm-textarea.pm-hasfocus{cursor:auto}.leaflet-pm-touch-hint{position:absolute;top:var(--pm-touch-hint-top, 10px);left:50%;transform:translate(-50%);background:#fffffff2;color:#333;padding:8px 16px;border-radius:4px;box-shadow:0 2px 6px #0003;z-index:1000;font-size:14px;pointer-events:none}.leaflet-pm-toolbar .leaflet-buttons-control-button{padding:5px;box-sizing:border-box;position:relative;z-index:3}.leaflet-pm-toolbar .leaflet-pm-actions-container a.leaflet-pm-action:first-child:not(.pos-right),.leaflet-pm-toolbar .leaflet-pm-actions-container a.leaflet-pm-action:last-child.pos-right{border-radius:0}.leaflet-pm-toolbar .button-container a.leaflet-buttons-control-button{border-radius:0}.leaflet-pm-toolbar .button-container:last-child a.leaflet-buttons-control-button{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-pm-toolbar .button-container:first-child a.leaflet-buttons-control-button{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-pm-toolbar .button-container:last-child a.leaflet-buttons-control-button{border-bottom:none}.leaflet-pm-toolbar .control-fa-icon{font-size:19px;line-height:24px}.leaflet-pm-toolbar .control-icon{width:100%;height:100%;box-sizing:border-box;background-size:contain;background-repeat:no-repeat;background-position:center center}.leaflet-pm-toolbar .leaflet-pm-icon-marker{background-image:url('data:image/svg+xml,%0A%0A %0A Atoms/Icons/Tools/Marker%0A Created with Sketch.%0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A')}.leaflet-pm-toolbar .leaflet-pm-icon-polygon{background-image:url('data:image/svg+xml,%0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A%0A')}.leaflet-pm-toolbar .leaflet-pm-icon-polyline{background-image:url('data:image/svg+xml,%0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A%0A')}.leaflet-pm-toolbar .leaflet-pm-icon-circle{background-image:url('data:image/svg+xml,%0A%0A %0A Atoms/Icons/Tools/Circle%0A Created with Sketch.%0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A')}.leaflet-pm-toolbar .leaflet-pm-icon-circle-marker{background-image:url('data:image/svg+xml,%0A%0A%0A%0A %0A')}.leaflet-pm-toolbar .leaflet-pm-icon-rectangle{background-image:url('data:image/svg+xml,%0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A%0A')}.leaflet-pm-toolbar .leaflet-pm-icon-delete{background-image:url('data:image/svg+xml,%0A%0A %0A Atoms/Icons/Tools/Eraser%0A Created with Sketch.%0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A')}.leaflet-pm-toolbar .leaflet-pm-icon-edit{background-image:url('data:image/svg+xml,%0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A%0A')}.leaflet-pm-toolbar .leaflet-pm-icon-drag{background-image:url('data:image/svg+xml,%0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A%0A')}.leaflet-pm-toolbar .leaflet-pm-icon-cut{background-image:url('data:image/svg+xml,%0A%0A %0A Atoms/Icons/Tools/Scissors%0A Created with Sketch.%0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A')}.leaflet-pm-toolbar .leaflet-pm-icon-snapping{background-image:url('data:image/svg+xml,%0A%0A %0A Atoms/Icons/Tools/Magnet%0A Created with Sketch.%0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A')}.leaflet-pm-toolbar .leaflet-pm-icon-rotate{background-image:url('data:image/svg+xml,%0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A %0A%0A')}.leaflet-pm-toolbar .leaflet-pm-icon-text{background-image:url('data:image/svg+xml,%0A Text%0A %0A %0A %0A')}.leaflet-buttons-control-button:hover,.leaflet-buttons-control-button:focus{cursor:pointer;background-color:#f4f4f4}.active>.leaflet-buttons-control-button{box-shadow:inset 0 -1px 5px 2px #514d4d4f}.leaflet-buttons-control-text-hide{display:none}.button-container{position:relative}.button-container .leaflet-pm-actions-container{z-index:2;position:absolute;top:0;left:100%;display:none;white-space:nowrap;direction:ltr}.leaflet-right .leaflet-pm-toolbar .button-container .leaflet-pm-actions-container{right:100%;left:auto}.button-container.active .leaflet-pm-actions-container{display:block}.button-container .leaflet-pm-actions-container:not(.pos-right) a.leaflet-pm-action:last-child{border-radius:0 3px 3px 0;border-right:0}.button-container .leaflet-pm-actions-container.pos-right a.leaflet-pm-action:first-child{border-radius:3px 0 0 3px}.button-container .leaflet-pm-actions-container.pos-right a.leaflet-pm-action:last-child{border-right:0}.button-container .leaflet-pm-actions-container .leaflet-pm-action{padding:0 10px;background-color:#666;color:#fff;display:inline-block;width:auto;border-right:1px solid #eee;-webkit-user-select:none;user-select:none;border-bottom:none;height:29px;line-height:29px;vertical-align:middle}.leaflet-pm-toolbar .button-container:first-child.pos-right.active a.leaflet-buttons-control-button{border-top-left-radius:0}.leaflet-pm-toolbar .button-container:first-child.active:not(.pos-right) a.leaflet-buttons-control-button{border-top-right-radius:0}.button-container .leaflet-pm-actions-container .leaflet-pm-action:hover,.button-container .leaflet-pm-actions-container .leaflet-pm-action:focus{cursor:pointer;background-color:#777}.button-container .leaflet-pm-actions-container .leaflet-pm-action.active-action{background-color:#8e8e8e}.leaflet-pm-toolbar.activeChild{z-index:801}.leaflet-buttons-control-button.pm-disabled{background-color:#f4f4f4}.leaflet-buttons-control-button.pm-disabled>.control-icon{filter:opacity(.6)}.button-container .leaflet-pm-actions-container .pm-action-button-mode.control-icon{filter:brightness(0) invert(1);width:18px}.leaflet-cluster-anim .leaflet-marker-icon,.leaflet-cluster-anim .leaflet-marker-shadow{-webkit-transition:-webkit-transform .3s ease-out,opacity .3s ease-in;-moz-transition:-moz-transform .3s ease-out,opacity .3s ease-in;-o-transition:-o-transform .3s ease-out,opacity .3s ease-in;transition:transform .3s ease-out,opacity .3s ease-in}.leaflet-cluster-spider-leg{-webkit-transition:-webkit-stroke-dashoffset .3s ease-out,-webkit-stroke-opacity .3s ease-in;-moz-transition:-moz-stroke-dashoffset .3s ease-out,-moz-stroke-opacity .3s ease-in;-o-transition:-o-stroke-dashoffset .3s ease-out,-o-stroke-opacity .3s ease-in;transition:stroke-dashoffset .3s ease-out,stroke-opacity .3s ease-in}.marker-cluster-small{background-color:#b5e28c99}.marker-cluster-small div{background-color:#6ecc3999}.marker-cluster-medium{background-color:#f1d35799}.marker-cluster-medium div{background-color:#f0c20c99}.marker-cluster-large{background-color:#fd9c7399}.marker-cluster-large div{background-color:#f1801799}.leaflet-oldie .marker-cluster-small{background-color:#b5e28c}.leaflet-oldie .marker-cluster-small div{background-color:#6ecc39}.leaflet-oldie .marker-cluster-medium{background-color:#f1d357}.leaflet-oldie .marker-cluster-medium div{background-color:#f0c20c}.leaflet-oldie .marker-cluster-large{background-color:#fd9c73}.leaflet-oldie .marker-cluster-large div{background-color:#f18017}.marker-cluster{background-clip:padding-box;border-radius:20px}.marker-cluster div{width:30px;height:30px;margin-left:5px;margin-top:5px;text-align:center;border-radius:15px;font:12px Helvetica Neue,Arial,Helvetica,sans-serif}.marker-cluster span{line-height:30px}:root{--fullscreen-icon-enter: url('data:image/svg+xml,');--fullscreen-icon-exit: url('data:image/svg+xml,')}.leaflet-fullscreen-icon{background-image:var(--fullscreen-icon-enter);background-size:26px 26px}.leaflet-fullscreen-icon.leaflet-fullscreen-on{background-image:var(--fullscreen-icon-exit)}.leaflet-container:-webkit-full-screen,.leaflet-container:fullscreen{width:100%!important;height:100%!important;z-index:99999}.leaflet-pseudo-fullscreen{position:fixed!important;width:100%!important;height:100%!important;top:0!important;left:0!important;z-index:99999}.leaflet-control-geosearch *,.leaflet-control-geosearch *:before,.leaflet-control-geosearch *:after{box-sizing:border-box}.leaflet-control-geosearch .leaflet-bar-part{border-radius:4px;border-bottom:none}.leaflet-control-geosearch a.leaflet-bar-part:before,.leaflet-control-geosearch a.leaflet-bar-part:after{position:absolute;display:block;content:""}.leaflet-control-geosearch a.leaflet-bar-part:before{top:17px;left:15px;width:6px;border-top:2px solid #555;transform:rotate(45deg)}.leaflet-control-geosearch a.leaflet-bar-part:after{top:10px;left:10px;height:8px;width:8px;border-radius:50%;border:2px solid #555}.leaflet-control-geosearch.error a.leaflet-bar-part:before,.leaflet-control-geosearch.pending a.leaflet-bar-part:before{display:none}.leaflet-control-geosearch.pending a.leaflet-bar-part:after,.leaflet-control-geosearch.error a.leaflet-bar-part:after{left:50%;top:50%;width:18px;height:18px;margin:-9px 0 0 -9px;border-radius:50%}.leaflet-control-geosearch.pending a.leaflet-bar-part:after{content:"";border:2px solid #555;border-top:2px solid #f3f3f3;animation:spin 1s linear infinite}.leaflet-control-geosearch.error a.leaflet-bar-part:after{content:"!";line-height:initial;font-weight:600;font-size:18px;border:none}.leaflet-control-geosearch form{display:none;position:absolute;top:0;left:30px;border-radius:0 4px 4px 0;background-color:#fff;background-clip:padding-box;z-index:-1;height:auto;margin:0;padding:0 8px;box-shadow:0 1px 5px #000000a6}.leaflet-geosearch-button form.open{border-radius:0 4px 4px}.leaflet-control-geosearch.active form{display:block}.leaflet-geosearch-button.active .leaflet-bar-part{border-radius:4px 0 0 4px;width:30px}.leaflet-geosearch-button form{max-width:350px}.leaflet-control-geosearch form input{min-width:200px;width:100%;outline:none;margin:0;padding:0;font-size:12px;height:30px;border:none;border-radius:0 4px 4px 0;text-indent:8px}.leaflet-touch .leaflet-geosearch-bar form{border:2px solid rgba(0,0,0,.2);box-shadow:none}.leaflet-touch .leaflet-geosearch-bar form input{height:30px}.leaflet-control-geosearch .results{background:#fff}.leaflet-control-geosearch .results>*{line-height:24px;padding:0 8px;border:1px solid transparent;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.leaflet-control-geosearch .results.active{padding:8px 0;border-top:1px solid #c6c6c6}.leaflet-control-geosearch .results>.active,.leaflet-control-geosearch .results>:hover{background-color:#f8f8f8;border-color:#c6c6c6;cursor:pointer}.leaflet-control-geosearch .results.active:after{content:"";display:block;width:0;position:absolute;left:-2px;bottom:-2px;top:30px}.leaflet-touch .leaflet-control-geosearch .results.active:after{border-left:2px solid rgba(0,0,0,.2)}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.leaflet-top .leaflet-geosearch-bar,.leaflet-bottom .leaflet-geosearch-bar{display:none}.leaflet-geosearch-bar{position:relative;display:block;height:auto;width:400px;max-width:calc(100% - 120px);margin:10px auto 0;cursor:auto;z-index:1000}.leaflet-geosearch-bar form{position:relative;top:0;left:0;display:block;border-radius:4px}.leaflet-geosearch-bar form input{min-width:100%;width:100%}.leaflet-geosearch-bar .results.active:after{opacity:.2}.leaflet-right .leaflet-control-geosearch form{right:28px;left:initial;border-radius:4px 0 0 4px;border-left:inherit;border-right:none}.leaflet-bar-notfound{font-style:italic}.leaflet-control-geosearch button.reset{color:#000;font-weight:700;position:absolute;line-height:26px;padding:0 8px;right:0;top:0;cursor:pointer;border:none;text-decoration:none;background-color:#fff;border-radius:0 4px 4px 0}.leaflet-touch .leaflet-control-geosearch button.reset{line-height:30px}.leaflet-control-geosearch button.reset:hover{background:#f5f5f5}.leaflet-container{width:100%;height:100%;z-index:0;border-radius:5px;overflow:hidden;color:#000}.leaflet-container .info{padding:8px 10px;font:14px/16px Arial,Helvetica,sans-serif;background:#ffffffe6;box-shadow:0 0 15px #0003;border-radius:5px;color:#333;border:1px solid #ccc}.leaflet-container .custom-popup{font-family:Arial,Helvetica,sans-serif;font-size:14px;max-width:300px}.leaflet-container .custom-popup h4{margin:0 0 8px;color:#333;font-size:16px;font-weight:700;text-align:center}.leaflet-container .custom-popup p{margin:4px 0;color:#666;line-height:1.4}.leaflet-container .custom-popup .field-label{font-weight:700;color:#444}.leaflet-container .custom-popup a{color:#06c;text-decoration:none}.leaflet-container .custom-popup a:hover{text-decoration:underline} diff --git a/public/css/filament/filament/app.css b/public/css/filament/filament/app.css new file mode 100644 index 0000000..db635f5 --- /dev/null +++ b/public/css/filament/filament/app.css @@ -0,0 +1,2 @@ +/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */ +@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-tracking:initial;--tw-duration:initial;--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-divide-y-reverse:0;--tw-border-style:solid;--tw-leading:initial;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-ease:initial;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-divide-x-reverse:0;--tw-content:"";--tw-outline-style:solid;--tw-space-x-reverse:0}}}@layer theme{:root,:host{--font-mono:var(--mono-font-family),ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-sky-400:oklch(74.6% .16 232.661);--color-gray-100:var(--gray-100);--color-gray-200:var(--gray-200);--color-gray-300:var(--gray-300);--color-gray-400:var(--gray-400);--color-gray-500:var(--gray-500);--color-gray-600:var(--gray-600);--color-gray-700:var(--gray-700);--color-gray-900:var(--gray-900);--color-gray-950:var(--gray-950);--color-black:#000;--color-white:#fff;--spacing:.25rem;--breakpoint-sm:40rem;--breakpoint-md:48rem;--breakpoint-lg:64rem;--breakpoint-xl:80rem;--breakpoint-2xl:96rem;--container-3xs:16rem;--container-xs:20rem;--container-sm:24rem;--container-md:28rem;--container-lg:32rem;--container-xl:36rem;--container-2xl:42rem;--container-3xl:48rem;--container-4xl:56rem;--container-5xl:64rem;--container-6xl:72rem;--container-7xl:80rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height:calc(1.5/1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25/1.875);--font-weight-thin:100;--font-weight-extralight:200;--font-weight-light:300;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--font-weight-black:900;--tracking-tighter:-.05em;--tracking-tight:-.025em;--leading-loose:2;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--ease-in:cubic-bezier(.4,0,1,1);--ease-out:cubic-bezier(0,0,.2,1);--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-spin:spin 1s linear infinite;--animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-family),ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--default-mono-font-family:var(--mono-font-family),ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-primary-400:var(--primary-400)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}button:not(:disabled),[role=button]:not(:disabled){cursor:pointer}:root.dark{color-scheme:dark}[data-field-wrapper]{scroll-margin-top:8rem}}@layer components{.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{color:#fff;white-space:normal;background-color:#333;border-radius:4px;outline:0;font-size:14px;line-height:1.4;transition-property:transform,visibility,opacity;position:relative}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{border-width:8px 8px 0;border-top-color:initial;transform-origin:top;bottom:-7px;left:0}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{border-width:0 8px 8px;border-bottom-color:initial;transform-origin:bottom;top:-7px;left:0}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;transform-origin:0;right:-7px}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:100%;left:-7px}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{color:#333;width:16px;height:16px}.tippy-arrow:before{content:"";border-style:solid;border-color:#0000;position:absolute}.tippy-content{z-index:1;padding:5px 9px;position:relative}.tippy-box[data-theme~=light]{color:#26323d;background-color:#fff;box-shadow:0 0 20px 4px #9aa1b126,0 4px 80px -8px #24282f40,0 4px 4px -2px #5b5e6926}.tippy-box[data-theme~=light][data-placement^=top]>.tippy-arrow:before{border-top-color:#fff}.tippy-box[data-theme~=light][data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:#fff}.tippy-box[data-theme~=light][data-placement^=left]>.tippy-arrow:before{border-left-color:#fff}.tippy-box[data-theme~=light][data-placement^=right]>.tippy-arrow:before{border-right-color:#fff}.tippy-box[data-theme~=light]>.tippy-backdrop{background-color:#fff}.tippy-box[data-theme~=light]>.tippy-svg-arrow{fill:#fff}.fi-avatar{width:calc(var(--spacing)*8);height:calc(var(--spacing)*8);border-radius:var(--radius-md);object-fit:cover;object-position:center}.fi-avatar.fi-circular{border-radius:3.40282e38px}.fi-avatar.fi-size-sm{width:calc(var(--spacing)*6);height:calc(var(--spacing)*6)}.fi-avatar.fi-size-lg{width:calc(var(--spacing)*10);height:calc(var(--spacing)*10)}.fi-badge{justify-content:center;align-items:center;column-gap:calc(var(--spacing)*1);border-radius:var(--radius-md);background-color:var(--gray-50);min-width:1.5rem;padding-inline:calc(var(--spacing)*2);padding-block:calc(var(--spacing)*1);font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-600);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--gray-600);display:inline-flex}@supports (color:color-mix(in lab, red, red)){.fi-badge{--tw-ring-color:color-mix(in oklab,var(--gray-600)10%,transparent)}}.fi-badge{--tw-ring-inset:inset}.fi-badge:where(.dark,.dark *){background-color:var(--gray-400)}@supports (color:color-mix(in lab, red, red)){.fi-badge:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-400)10%,transparent)}}.fi-badge:where(.dark,.dark *){color:var(--gray-200);--tw-ring-color:var(--gray-400)}@supports (color:color-mix(in lab, red, red)){.fi-badge:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--gray-400)20%,transparent)}}.fi-badge:not(.fi-wrapped){text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.fi-badge.fi-disabled:not(.fi-force-enabled),.fi-badge[disabled]:not(.fi-force-enabled){cursor:default;opacity:.7}:is(.fi-badge.fi-disabled:not(.fi-force-enabled),.fi-badge[disabled]:not(.fi-force-enabled)):not([x-tooltip]){pointer-events:none}.fi-badge .fi-badge-label-ctn{display:grid}.fi-badge .fi-badge-label.fi-wrapped{text-wrap:wrap;word-break:break-word}.fi-badge .fi-badge-label:not(.fi-wrapped){text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.fi-badge .fi-icon{flex-shrink:0}.fi-badge.fi-size-xs{min-width:1rem;padding-inline:calc(var(--spacing)*.5);padding-block:calc(var(--spacing)*0);--tw-tracking:var(--tracking-tighter);letter-spacing:var(--tracking-tighter)}.fi-badge.fi-size-sm{min-width:1.25rem;padding-inline:calc(var(--spacing)*1.5);padding-block:calc(var(--spacing)*.5);--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.fi-badge.fi-color{background-color:var(--color-50);color:var(--text);--tw-ring-color:var(--color-600)}@supports (color:color-mix(in lab, red, red)){.fi-badge.fi-color{--tw-ring-color:color-mix(in oklab,var(--color-600)10%,transparent)}}.fi-badge.fi-color:where(.dark,.dark *){background-color:var(--color-400)}@supports (color:color-mix(in lab, red, red)){.fi-badge.fi-color:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-400)10%,transparent)}}.fi-badge.fi-color:where(.dark,.dark *){color:var(--dark-text);--tw-ring-color:var(--color-400)}@supports (color:color-mix(in lab, red, red)){.fi-badge.fi-color:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-400)30%,transparent)}}.fi-badge.fi-color .fi-badge-delete-btn>.fi-icon{color:var(--color-700)}@supports (color:color-mix(in lab, red, red)){.fi-badge.fi-color .fi-badge-delete-btn>.fi-icon{color:color-mix(in oklab,var(--color-700)50%,transparent)}}.fi-badge.fi-color .fi-badge-delete-btn>.fi-icon:where(.dark,.dark *){color:var(--color-300)}@supports (color:color-mix(in lab, red, red)){.fi-badge.fi-color .fi-badge-delete-btn>.fi-icon:where(.dark,.dark *){color:color-mix(in oklab,var(--color-300)50%,transparent)}}.fi-badge:not(.fi-color) .fi-icon{color:var(--gray-400)}.fi-badge:not(.fi-color) .fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-badge .fi-icon.fi-color{color:var(--color-500)}.fi-badge .fi-badge-delete-btn{margin-block:calc(var(--spacing)*-1);padding:calc(var(--spacing)*1);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;--tw-outline-style:none;outline-style:none;justify-content:center;align-items:center;margin-inline-start:calc(var(--spacing)*-1);margin-inline-end:calc(var(--spacing)*-2);transition-duration:75ms;display:flex}.fi-badge .fi-badge-delete-btn>.fi-icon{color:var(--gray-700)}@supports (color:color-mix(in lab, red, red)){.fi-badge .fi-badge-delete-btn>.fi-icon{color:color-mix(in oklab,var(--gray-700)50%,transparent)}}.fi-badge .fi-badge-delete-btn>.fi-icon:where(.dark,.dark *){color:var(--gray-300)}@supports (color:color-mix(in lab, red, red)){.fi-badge .fi-badge-delete-btn>.fi-icon:where(.dark,.dark *){color:color-mix(in oklab,var(--gray-300)50%,transparent)}}:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])) .fi-badge-delete-btn>.fi-icon:focus-visible{color:var(--gray-700)}@supports (color:color-mix(in lab, red, red)){:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])) .fi-badge-delete-btn>.fi-icon:focus-visible{color:color-mix(in oklab,var(--gray-700)75%,transparent)}}@media (hover:hover){:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])) .fi-badge-delete-btn>.fi-icon:where(.dark,.dark *):hover{color:var(--gray-300)}@supports (color:color-mix(in lab, red, red)){:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])) .fi-badge-delete-btn>.fi-icon:where(.dark,.dark *):hover{color:color-mix(in oklab,var(--gray-300)75%,transparent)}}}:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])) .fi-badge-delete-btn>.fi-icon:where(.dark,.dark *):focus-visible{color:var(--gray-300)}@supports (color:color-mix(in lab, red, red)){:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])) .fi-badge-delete-btn>.fi-icon:where(.dark,.dark *):focus-visible{color:color-mix(in oklab,var(--gray-300)75%,transparent)}}@media (hover:hover){:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])).fi-color .fi-badge-delete-btn>.fi-icon:hover{color:var(--color-700)}@supports (color:color-mix(in lab, red, red)){:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])).fi-color .fi-badge-delete-btn>.fi-icon:hover{color:color-mix(in oklab,var(--color-700)75%,transparent)}}}:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])).fi-color .fi-badge-delete-btn>.fi-icon:focus-visible{color:var(--color-700)}@supports (color:color-mix(in lab, red, red)){:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])).fi-color .fi-badge-delete-btn>.fi-icon:focus-visible{color:color-mix(in oklab,var(--color-700)75%,transparent)}}@media (hover:hover){:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])).fi-color .fi-badge-delete-btn>.fi-icon:where(.dark,.dark *):hover{color:var(--color-300)}@supports (color:color-mix(in lab, red, red)){:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])).fi-color .fi-badge-delete-btn>.fi-icon:where(.dark,.dark *):hover{color:color-mix(in oklab,var(--color-300)75%,transparent)}}}:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])).fi-color .fi-badge-delete-btn>.fi-icon:where(.dark,.dark *):focus-visible{color:var(--color-300)}@supports (color:color-mix(in lab, red, red)){:is(.fi-badge.fi-force-enabled,.fi-badge:not(.fi-disabled):not([disabled])).fi-color .fi-badge-delete-btn>.fi-icon:where(.dark,.dark *):focus-visible{color:color-mix(in oklab,var(--color-300)75%,transparent)}}.fi-breadcrumbs ol{align-items:center;column-gap:calc(var(--spacing)*2);flex-wrap:wrap;display:flex}.fi-breadcrumbs ol li{align-items:center;column-gap:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-500);display:flex}.fi-breadcrumbs ol li:where(.dark,.dark *){color:var(--gray-400)}.fi-breadcrumbs ol li a{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}@media (hover:hover){.fi-breadcrumbs ol li a:hover{color:var(--gray-700)}.fi-breadcrumbs ol li a:where(.dark,.dark *):hover{color:var(--gray-200)}}.fi-breadcrumbs ol li .fi-icon{color:var(--gray-400);display:flex}.fi-breadcrumbs ol li .fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-breadcrumbs ol li .fi-icon.fi-ltr:where(:dir(rtl),[dir=rtl],[dir=rtl] *),.fi-breadcrumbs ol li .fi-icon.fi-rtl:where(:dir(ltr),[dir=ltr],[dir=ltr] *){display:none}.fi-btn{justify-content:center;align-items:center;gap:calc(var(--spacing)*1.5);border-radius:var(--radius-lg);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;--tw-outline-style:none;outline-style:none;grid-auto-flow:column;transition-duration:75ms;display:inline-grid;position:relative}:is(.fi-btn.fi-force-enabled,.fi-btn:not(.fi-disabled):not([disabled])):focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-btn.fi-disabled:not(.fi-force-enabled),.fi-btn[disabled]:not(.fi-force-enabled){cursor:default;opacity:.7}:is(.fi-btn.fi-disabled:not(.fi-force-enabled),.fi-btn[disabled]:not(.fi-force-enabled)):not([x-tooltip]){pointer-events:none}.fi-btn>.fi-icon{color:var(--gray-400);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}.fi-btn>.fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-btn.fi-size-xs{gap:calc(var(--spacing)*1);padding-inline:calc(var(--spacing)*2);padding-block:calc(var(--spacing)*1.5);font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.fi-btn.fi-size-sm{gap:calc(var(--spacing)*1);padding-inline:calc(var(--spacing)*2.5);padding-block:calc(var(--spacing)*1.5);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.fi-btn.fi-size-lg{gap:calc(var(--spacing)*1.5);padding-inline:calc(var(--spacing)*3.5);padding-block:calc(var(--spacing)*2.5);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.fi-btn.fi-size-xl{gap:calc(var(--spacing)*1.5);padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*3);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.fi-btn.fi-outlined{color:var(--gray-950);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--gray-300)}.fi-btn.fi-outlined:where(.dark,.dark *){color:var(--color-white);--tw-ring-color:var(--gray-700)}@media (hover:hover){:is(.fi-btn.fi-outlined.fi-force-enabled,.fi-btn.fi-outlined:not(.fi-disabled):not([disabled])):hover{background-color:var(--gray-400)}@supports (color:color-mix(in lab, red, red)){:is(.fi-btn.fi-outlined.fi-force-enabled,.fi-btn.fi-outlined:not(.fi-disabled):not([disabled])):hover{background-color:color-mix(in oklab,var(--gray-400)10%,transparent)}}}:is(.fi-btn.fi-outlined.fi-force-enabled,.fi-btn.fi-outlined:not(.fi-disabled):not([disabled])):focus-visible{--tw-ring-color:var(--gray-400)}@supports (color:color-mix(in lab, red, red)){:is(.fi-btn.fi-outlined.fi-force-enabled,.fi-btn.fi-outlined:not(.fi-disabled):not([disabled])):focus-visible{--tw-ring-color:color-mix(in oklab,var(--gray-400)40%,transparent)}}.fi-btn.fi-outlined.fi-color{color:var(--text);--tw-ring-color:var(--color-600)}.fi-btn.fi-outlined.fi-color:where(.dark,.dark *){color:var(--dark-text);--tw-ring-color:var(--color-500)}@media (hover:hover){:is(.fi-btn.fi-outlined.fi-color.fi-force-enabled,.fi-btn.fi-outlined.fi-color:not(.fi-disabled):not([disabled])):hover{background-color:var(--color-500)}@supports (color:color-mix(in lab, red, red)){:is(.fi-btn.fi-outlined.fi-color.fi-force-enabled,.fi-btn.fi-outlined.fi-color:not(.fi-disabled):not([disabled])):hover{background-color:color-mix(in oklab,var(--color-500)10%,transparent)}}}:is(.fi-btn.fi-outlined.fi-color.fi-force-enabled,.fi-btn.fi-outlined.fi-color:not(.fi-disabled):not([disabled])):focus-visible{--tw-ring-color:var(--color-500)}@supports (color:color-mix(in lab, red, red)){:is(.fi-btn.fi-outlined.fi-color.fi-force-enabled,.fi-btn.fi-outlined.fi-color:not(.fi-disabled):not([disabled])):focus-visible{--tw-ring-color:color-mix(in oklab,var(--color-500)40%,transparent)}}@media (hover:hover){:is(.fi-btn.fi-outlined.fi-color.fi-force-enabled,.fi-btn.fi-outlined.fi-color:not(.fi-disabled):not([disabled])):where(.dark,.dark *):hover{background-color:var(--color-600)}@supports (color:color-mix(in lab, red, red)){:is(.fi-btn.fi-outlined.fi-color.fi-force-enabled,.fi-btn.fi-outlined.fi-color:not(.fi-disabled):not([disabled])):where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-600)10%,transparent)}}}:is(.fi-btn.fi-outlined.fi-color.fi-force-enabled,.fi-btn.fi-outlined.fi-color:not(.fi-disabled):not([disabled])):where(.dark,.dark *):focus-visible{--tw-ring-color:var(--color-400)}@supports (color:color-mix(in lab, red, red)){:is(.fi-btn.fi-outlined.fi-color.fi-force-enabled,.fi-btn.fi-outlined.fi-color:not(.fi-disabled):not([disabled])):where(.dark,.dark *):focus-visible{--tw-ring-color:color-mix(in oklab,var(--color-400)40%,transparent)}}.fi-btn.fi-outlined.fi-color>.fi-icon{color:var(--color-600)}.fi-btn.fi-outlined.fi-color>.fi-icon:where(.dark,.dark *){color:var(--color-400)}.fi-btn:not(.fi-outlined){background-color:var(--color-white);color:var(--gray-950)}.fi-btn:not(.fi-outlined):where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-btn:not(.fi-outlined):where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-btn:not(.fi-outlined):where(.dark,.dark *){color:var(--color-white)}@media (hover:hover){:is(.fi-btn:not(.fi-outlined).fi-force-enabled,.fi-btn:not(.fi-outlined):not(.fi-disabled):not([disabled])):hover{background-color:var(--gray-50)}:is(.fi-btn:not(.fi-outlined).fi-force-enabled,.fi-btn:not(.fi-outlined):not(.fi-disabled):not([disabled])):where(.dark,.dark *):hover{background-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:is(.fi-btn:not(.fi-outlined).fi-force-enabled,.fi-btn:not(.fi-outlined):not(.fi-disabled):not([disabled])):where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}}input:checked+label.fi-btn:not(.fi-outlined){background-color:var(--gray-400);color:var(--color-white);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}input:checked+label.fi-btn:not(.fi-outlined):where(.dark,.dark *){background-color:var(--gray-600)}@media (hover:hover){:is(input:checked+label.fi-btn:not(.fi-outlined).fi-force-enabled,input:checked+label.fi-btn:not(.fi-outlined):not(.fi-disabled):not([disabled])):hover{background-color:var(--gray-300)}:is(input:checked+label.fi-btn:not(.fi-outlined).fi-force-enabled,input:checked+label.fi-btn:not(.fi-outlined):not(.fi-disabled):not([disabled])):where(.dark,.dark *):hover{background-color:var(--gray-500)}}.fi-btn:not(.fi-outlined).fi-color:not(label){background-color:var(--bg);color:var(--text)}.fi-btn:not(.fi-outlined).fi-color:not(label):where(.dark,.dark *){background-color:var(--dark-bg);color:var(--dark-text)}@media (hover:hover){:is(.fi-btn:not(.fi-outlined).fi-color:not(label).fi-force-enabled,.fi-btn:not(.fi-outlined).fi-color:not(label):not(.fi-disabled):not([disabled])):hover{background-color:var(--hover-bg);color:var(--hover-text)}}:is(.fi-btn:not(.fi-outlined).fi-color:not(label).fi-force-enabled,.fi-btn:not(.fi-outlined).fi-color:not(label):not(.fi-disabled):not([disabled])):focus-visible{--tw-ring-color:var(--color-500)}@supports (color:color-mix(in lab, red, red)){:is(.fi-btn:not(.fi-outlined).fi-color:not(label).fi-force-enabled,.fi-btn:not(.fi-outlined).fi-color:not(label):not(.fi-disabled):not([disabled])):focus-visible{--tw-ring-color:color-mix(in oklab,var(--color-500)50%,transparent)}}@media (hover:hover){:is(.fi-btn:not(.fi-outlined).fi-color:not(label).fi-force-enabled,.fi-btn:not(.fi-outlined).fi-color:not(label):not(.fi-disabled):not([disabled])):where(.dark,.dark *):hover{background-color:var(--dark-hover-bg);color:var(--dark-hover-text)}}:is(.fi-btn:not(.fi-outlined).fi-color:not(label).fi-force-enabled,.fi-btn:not(.fi-outlined).fi-color:not(label):not(.fi-disabled):not([disabled])):where(.dark,.dark *):focus-visible{--tw-ring-color:var(--color-400)}@supports (color:color-mix(in lab, red, red)){:is(.fi-btn:not(.fi-outlined).fi-color:not(label).fi-force-enabled,.fi-btn:not(.fi-outlined).fi-color:not(label):not(.fi-disabled):not([disabled])):where(.dark,.dark *):focus-visible{--tw-ring-color:color-mix(in oklab,var(--color-400)50%,transparent)}}.fi-btn:not(.fi-outlined).fi-color:not(label)>.fi-icon{color:var(--text)}.fi-btn:not(.fi-outlined).fi-color:not(label)>.fi-icon:where(.dark,.dark *){color:var(--dark-text)}input:checked+:is(label.fi-btn:not(.fi-outlined).fi-color){background-color:var(--bg);color:var(--text);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}input:checked+:is(label.fi-btn:not(.fi-outlined).fi-color):where(.dark,.dark *){background-color:var(--dark-bg);color:var(--dark-text)}@media (hover:hover){input:checked+:is(label.fi-btn:not(.fi-outlined).fi-color.fi-force-enabled,label.fi-btn:not(.fi-outlined).fi-color:not(.fi-disabled):not([disabled])):hover{background-color:var(--hover-bg);color:var(--hover-text)}input:checked+:is(label.fi-btn:not(.fi-outlined).fi-color.fi-force-enabled,label.fi-btn:not(.fi-outlined).fi-color:not(.fi-disabled):not([disabled])):where(.dark,.dark *):hover{background-color:var(--dark-hover-bg);color:var(--dark-hover-text)}}input:focus-visible+:is(label.fi-btn:not(.fi-outlined).fi-color.fi-force-enabled,label.fi-btn:not(.fi-outlined).fi-color:not(.fi-disabled):not([disabled])){z-index:10;--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--gray-950)}@supports (color:color-mix(in lab, red, red)){input:focus-visible+:is(label.fi-btn:not(.fi-outlined).fi-color.fi-force-enabled,label.fi-btn:not(.fi-outlined).fi-color:not(.fi-disabled):not([disabled])){--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent)}}input:focus-visible+:is(label.fi-btn:not(.fi-outlined).fi-color.fi-force-enabled,label.fi-btn:not(.fi-outlined).fi-color:not(.fi-disabled):not([disabled])):where(.dark,.dark *){--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){input:focus-visible+:is(label.fi-btn:not(.fi-outlined).fi-color.fi-force-enabled,label.fi-btn:not(.fi-outlined).fi-color:not(.fi-disabled):not([disabled])):where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}input:checked:focus-visible+:is(label.fi-btn:not(.fi-outlined).fi-color.fi-force-enabled,label.fi-btn:not(.fi-outlined).fi-color:not(.fi-disabled):not([disabled])){--tw-ring-color:var(--color-500)}@supports (color:color-mix(in lab, red, red)){input:checked:focus-visible+:is(label.fi-btn:not(.fi-outlined).fi-color.fi-force-enabled,label.fi-btn:not(.fi-outlined).fi-color:not(.fi-disabled):not([disabled])){--tw-ring-color:color-mix(in oklab,var(--color-500)50%,transparent)}}input:checked:focus-visible+:is(label.fi-btn:not(.fi-outlined).fi-color.fi-force-enabled,label.fi-btn:not(.fi-outlined).fi-color:not(.fi-disabled):not([disabled])):where(.dark,.dark *){--tw-ring-color:var(--color-400)}@supports (color:color-mix(in lab, red, red)){input:checked:focus-visible+:is(label.fi-btn:not(.fi-outlined).fi-color.fi-force-enabled,label.fi-btn:not(.fi-outlined).fi-color:not(.fi-disabled):not([disabled])):where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-400)50%,transparent)}}label.fi-btn{cursor:pointer}label.fi-btn>.fi-icon:is(:checked+label>.fi-icon){color:var(--text)}label.fi-btn>.fi-icon:is(:checked+label>.fi-icon):where(.dark,.dark *){color:var(--dark-text)}.fi-btn:not(.fi-color),label.fi-btn{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--gray-950)}@supports (color:color-mix(in lab, red, red)){.fi-btn:not(.fi-color),label.fi-btn{--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent)}}:is(.fi-btn:not(.fi-color),label.fi-btn):where(.dark,.dark *){--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){:is(.fi-btn:not(.fi-color),label.fi-btn):where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-btn.fi-labeled-from-sm,.fi-btn.fi-labeled-from-md,.fi-btn.fi-labeled-from-lg,.fi-btn.fi-labeled-from-xl,.fi-btn.fi-labeled-from-2xl{display:none}@media (min-width:40rem){.fi-btn.fi-labeled-from-sm{display:inline-grid}}@media (min-width:48rem){.fi-btn.fi-labeled-from-md{display:inline-grid}}@media (min-width:64rem){.fi-btn.fi-labeled-from-lg{display:inline-grid}}@media (min-width:80rem){.fi-btn.fi-labeled-from-xl{display:inline-grid}}@media (min-width:96rem){.fi-btn.fi-labeled-from-2xl{display:inline-grid}}.fi-btn .fi-btn-badge-ctn{inset-inline-start:100%;top:calc(var(--spacing)*0);z-index:1;--tw-translate-x:calc(calc(1/2*100%)*-1);--tw-translate-y:calc(calc(1/2*100%)*-1);width:max-content;translate:var(--tw-translate-x)var(--tw-translate-y);border-radius:var(--radius-md);background-color:var(--color-white);display:flex;position:absolute}.fi-btn .fi-btn-badge-ctn:where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-translate-x:calc(1/2*100%);translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-btn .fi-btn-badge-ctn:where(.dark,.dark *){background-color:var(--gray-900)}.fi-btn-group{border-radius:var(--radius-lg);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent);grid-auto-flow:column;display:grid}.fi-btn-group:where(.dark,.dark *){--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-btn-group:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-btn-group>.fi-btn{border-radius:0;flex:1}.fi-btn-group>.fi-btn:nth-child(1 of .fi-btn){border-start-start-radius:var(--radius-lg);border-end-start-radius:var(--radius-lg)}.fi-btn-group>.fi-btn:nth-last-child(1 of .fi-btn){border-start-end-radius:var(--radius-lg);border-end-end-radius:var(--radius-lg)}.fi-btn-group>.fi-btn:not(:nth-child(1 of .fi-btn)){--tw-shadow:-1px 0 0 0 var(--tw-shadow-color,var(--color-gray-200));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-btn-group>.fi-btn:not(:nth-child(1 of .fi-btn)):where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-shadow:1px 0 0 0 var(--tw-shadow-color,var(--color-gray-200));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-btn-group>.fi-btn:not(:nth-child(1 of .fi-btn)):where(.dark,.dark *){--tw-shadow:-1px 0 0 0 var(--tw-shadow-color,#fff3);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-btn-group>.fi-btn:not(:nth-child(1 of .fi-btn)):where(:dir(rtl),[dir=rtl],[dir=rtl] *):where(.dark,.dark *){--tw-shadow:1px 0 0 0 var(--tw-shadow-color,#fff3);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-btn-group>.fi-btn:not(:nth-last-child(1 of .fi-btn)){margin-inline-end:1px}.fi-btn-group>.fi-btn.fi-processing:enabled{cursor:wait;opacity:.7}.fi-btn-group>.fi-btn:not(.fi-outlined){--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-btn-group>.fi-btn:not(.fi-color),label:is(.fi-btn-group>.fi-btn){--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-callout{gap:calc(var(--spacing)*3);border-radius:var(--radius-xl);background-color:var(--color-white);width:100%;padding:calc(var(--spacing)*4);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--gray-950);display:flex}@supports (color:color-mix(in lab, red, red)){.fi-callout{--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}}.fi-callout:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-callout:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-callout .fi-callout-icon{color:var(--gray-400)}.fi-callout .fi-callout-icon.fi-color{color:var(--color-400)}.fi-callout .fi-callout-main{margin-top:calc(var(--spacing)*.5);gap:calc(var(--spacing)*3);flex:1;display:grid}.fi-callout .fi-callout-text{gap:calc(var(--spacing)*1);display:grid}.fi-callout .fi-callout-heading{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-callout .fi-callout-heading:where(.dark,.dark *){color:var(--color-white)}.fi-callout .fi-callout-description{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));text-wrap:pretty;overflow-wrap:break-word;color:var(--gray-500);overflow:hidden}.fi-callout .fi-callout-description:where(.dark,.dark *){color:var(--gray-400)}.fi-callout .fi-callout-description>p:not(:first-of-type){margin-top:calc(var(--spacing)*1)}.fi-callout .fi-callout-footer{gap:calc(var(--spacing)*3);flex-wrap:wrap;display:flex}.fi-callout .fi-callout-controls{align-self:flex-start}.fi-callout.fi-color{--tw-ring-color:var(--color-600)}@supports (color:color-mix(in lab, red, red)){.fi-callout.fi-color{--tw-ring-color:color-mix(in oklab,var(--color-600)20%,transparent)}}.fi-callout.fi-color:where(.dark,.dark *){--tw-ring-color:var(--color-400)}@supports (color:color-mix(in lab, red, red)){.fi-callout.fi-color:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-400)30%,transparent)}}.fi-callout.fi-color{background-color:#fff}@supports (color:color-mix(in lab, red, red)){.fi-callout.fi-color{background-color:color-mix(in oklab,white 90%,var(--color-400))}}.fi-callout.fi-color:where(.dark,.dark *){background-color:var(--gray-900)}@supports (color:color-mix(in lab, red, red)){.fi-callout.fi-color:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-900)90%,var(--color-400))}}.fi-callout.fi-color .fi-callout-description{color:var(--gray-700)}@supports (color:color-mix(in lab, red, red)){.fi-callout.fi-color .fi-callout-description{color:color-mix(in oklab,var(--gray-700)75%,transparent)}}.fi-callout.fi-color .fi-callout-description:where(.dark,.dark *){color:var(--gray-300)}@supports (color:color-mix(in lab, red, red)){.fi-callout.fi-color .fi-callout-description:where(.dark,.dark *){color:color-mix(in oklab,var(--gray-300)75%,transparent)}}.fi-dropdown-header{gap:calc(var(--spacing)*2);width:100%;padding:calc(var(--spacing)*3);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);display:flex}.fi-dropdown-header .fi-icon{color:var(--gray-400)}.fi-dropdown-header .fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-dropdown-header span{text-overflow:ellipsis;white-space:nowrap;text-align:start;color:var(--gray-700);flex:1;overflow:hidden}.fi-dropdown-header span:where(.dark,.dark *){color:var(--gray-200)}.fi-dropdown-header.fi-color .fi-icon{color:var(--color-500)}.fi-dropdown-header.fi-color .fi-icon:where(.dark,.dark *){color:var(--color-400)}.fi-dropdown-header.fi-color span{color:var(--text)}.fi-dropdown-header.fi-color span:where(.dark,.dark *){color:var(--dark-text)}:scope .fi-dropdown-trigger{cursor:pointer;display:flex}:scope .fi-dropdown-panel{z-index:20;border-radius:var(--radius-lg);background-color:var(--color-white);--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);width:100vw;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));position:absolute;max-width:14rem!important}:scope .fi-dropdown-panel:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:scope .fi-dropdown-panel:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}:where(:scope .fi-dropdown-panel:not(.fi-dropdown-list)>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-100)}:where(:scope .fi-dropdown-panel:not(.fi-dropdown-list):where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(:scope .fi-dropdown-panel:not(.fi-dropdown-list):where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}:scope .fi-dropdown-panel.fi-opacity-0{opacity:0}:scope .fi-dropdown-panel.fi-width-xs{max-width:var(--container-xs)!important}:scope .fi-dropdown-panel.fi-width-sm{max-width:var(--container-sm)!important}:scope .fi-dropdown-panel.fi-width-md{max-width:var(--container-md)!important}:scope .fi-dropdown-panel.fi-width-lg{max-width:var(--container-lg)!important}:scope .fi-dropdown-panel.fi-width-xl{max-width:var(--container-xl)!important}:scope .fi-dropdown-panel.fi-width-2xl{max-width:var(--container-2xl)!important}:scope .fi-dropdown-panel.fi-width-3xl{max-width:var(--container-3xl)!important}:scope .fi-dropdown-panel.fi-width-4xl{max-width:var(--container-4xl)!important}:scope .fi-dropdown-panel.fi-width-5xl{max-width:var(--container-5xl)!important}:scope .fi-dropdown-panel.fi-width-6xl{max-width:var(--container-6xl)!important}:scope .fi-dropdown-panel.fi-width-7xl{max-width:var(--container-7xl)!important}:scope .fi-dropdown-panel.fi-scrollable{overflow-y:auto}.fi-dropdown-list{padding:calc(var(--spacing)*1);gap:1px;display:grid}.fi-dropdown-list>.fi-grid{overflow-x:hidden}.fi-dropdown-list-item{align-items:center;gap:calc(var(--spacing)*2);border-radius:var(--radius-md);width:100%;padding:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));white-space:nowrap;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;--tw-outline-style:none;-webkit-user-select:none;user-select:none;outline-style:none;transition-duration:75ms;display:flex;overflow:hidden}@media (hover:hover){.fi-dropdown-list-item:not(.fi-disabled):not([disabled]):hover{background-color:var(--gray-50)}}.fi-dropdown-list-item:not(.fi-disabled):not([disabled]):focus-visible{background-color:var(--gray-50)}@media (hover:hover){.fi-dropdown-list-item:not(.fi-disabled):not([disabled]):where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-dropdown-list-item:not(.fi-disabled):not([disabled]):where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-dropdown-list-item:not(.fi-disabled):not([disabled]):where(.dark,.dark *):focus-visible{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-dropdown-list-item:not(.fi-disabled):not([disabled]):where(.dark,.dark *):focus-visible{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-dropdown-list-item:not(.fi-disabled):not([disabled]).fi-selected{background-color:var(--gray-50)}.fi-dropdown-list-item:not(.fi-disabled):not([disabled]).fi-selected:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-dropdown-list-item:not(.fi-disabled):not([disabled]).fi-selected:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-dropdown-list-item.fi-disabled,.fi-dropdown-list-item[disabled]{cursor:default;opacity:.7}:is(.fi-dropdown-list-item.fi-disabled,.fi-dropdown-list-item[disabled]):not([x-tooltip]){pointer-events:none}.fi-dropdown-list-item .fi-icon{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}.fi-dropdown-list-item .fi-dropdown-list-item-image{width:calc(var(--spacing)*5);height:calc(var(--spacing)*5);background-position:50%;background-size:cover;border-radius:3.40282e38px}.fi-dropdown-list-item>.fi-icon{color:var(--gray-400)}.fi-dropdown-list-item>.fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-dropdown-list-item>.fi-icon.fi-color{color:var(--color-500)}.fi-dropdown-list-item>.fi-icon.fi-color:where(.dark,.dark *){color:var(--color-400)}@media (hover:hover){.fi-dropdown-list-item.fi-color:not(.fi-disabled):not([disabled]):hover{background-color:var(--color-50)}}.fi-dropdown-list-item.fi-color:not(.fi-disabled):not([disabled]):focus-visible{background-color:var(--color-50)}@media (hover:hover){.fi-dropdown-list-item.fi-color:not(.fi-disabled):not([disabled]):where(.dark,.dark *):hover{background-color:var(--color-400)}@supports (color:color-mix(in lab, red, red)){.fi-dropdown-list-item.fi-color:not(.fi-disabled):not([disabled]):where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-400)10%,transparent)}}}.fi-dropdown-list-item.fi-color:not(.fi-disabled):not([disabled]):where(.dark,.dark *):focus-visible{background-color:var(--color-400)}@supports (color:color-mix(in lab, red, red)){.fi-dropdown-list-item.fi-color:not(.fi-disabled):not([disabled]):where(.dark,.dark *):focus-visible{background-color:color-mix(in oklab,var(--color-400)10%,transparent)}}.fi-dropdown-list-item.fi-color:not(.fi-disabled):not([disabled]).fi-selected{background-color:var(--color-50)}.fi-dropdown-list-item.fi-color:not(.fi-disabled):not([disabled]).fi-selected:where(.dark,.dark *){background-color:var(--color-400)}@supports (color:color-mix(in lab, red, red)){.fi-dropdown-list-item.fi-color:not(.fi-disabled):not([disabled]).fi-selected:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-400)10%,transparent)}}.fi-dropdown-list-item.fi-color .fi-dropdown-list-item-label{color:var(--text)}@media (hover:hover){.fi-dropdown-list-item.fi-color .fi-dropdown-list-item-label:hover{color:var(--hover-text)}}.fi-dropdown-list-item.fi-color .fi-dropdown-list-item-label:where(.dark,.dark *){color:var(--dark-text)}@media (hover:hover){.fi-dropdown-list-item.fi-color .fi-dropdown-list-item-label:where(.dark,.dark *):hover{color:var(--dark-hover-text)}}.fi-dropdown-list-item.fi-color .fi-dropdown-list-item-label.fi-selected{color:var(--hover-text)}.fi-dropdown-list-item.fi-color .fi-dropdown-list-item-label.fi-selected:where(.dark,.dark *){color:var(--dark-hover-text)}.fi-dropdown-list-item .fi-badge{min-width:1.25rem;padding-inline:calc(var(--spacing)*1.5);padding-block:calc(var(--spacing)*.5);--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.fi-dropdown-list-item-label{text-overflow:ellipsis;white-space:nowrap;text-align:start;color:var(--gray-700);flex:1;overflow:hidden}.fi-dropdown-list-item-label:where(.dark,.dark *){color:var(--gray-200)}.fi-dropdown-list-item-badge-placeholder{color:var(--gray-400);align-items:center;display:flex}.fi-dropdown-list-item-badge-placeholder:where(.dark,.dark *){color:var(--gray-500)}.fi-empty-state{padding-inline:calc(var(--spacing)*6);padding-block:calc(var(--spacing)*12)}.fi-empty-state:not(.fi-empty-state-not-contained){border-radius:var(--radius-xl);background-color:var(--color-white);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}.fi-empty-state:not(.fi-empty-state-not-contained):where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-empty-state:not(.fi-empty-state-not-contained):where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-empty-state .fi-empty-state-content{max-width:var(--container-lg);text-align:center;justify-items:center;margin-inline:auto;display:grid}.fi-empty-state .fi-empty-state-text-ctn{text-align:center;justify-items:center;display:grid}.fi-empty-state .fi-empty-state-icon-bg{margin-bottom:calc(var(--spacing)*4);background-color:var(--gray-100);padding:calc(var(--spacing)*3);border-radius:3.40282e38px}.fi-empty-state .fi-empty-state-icon-bg:where(.dark,.dark *){background-color:var(--gray-500)}@supports (color:color-mix(in lab, red, red)){.fi-empty-state .fi-empty-state-icon-bg:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-500)20%,transparent)}}.fi-empty-state .fi-empty-state-icon-bg.fi-color{background-color:var(--color-100)}.fi-empty-state .fi-empty-state-icon-bg.fi-color:where(.dark,.dark *){background-color:var(--color-500)}@supports (color:color-mix(in lab, red, red)){.fi-empty-state .fi-empty-state-icon-bg.fi-color:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-500)20%,transparent)}}.fi-empty-state .fi-empty-state-icon-bg .fi-icon{color:var(--gray-500)}.fi-empty-state .fi-empty-state-icon-bg .fi-icon:where(.dark,.dark *){color:var(--gray-400)}.fi-empty-state .fi-empty-state-icon-bg .fi-icon.fi-color{color:var(--color-500)}.fi-empty-state .fi-empty-state-icon-bg .fi-icon.fi-color:where(.dark,.dark *){color:var(--color-400)}.fi-empty-state .fi-empty-state-heading{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950)}.fi-empty-state .fi-empty-state-heading:where(.dark,.dark *){color:var(--color-white)}.fi-empty-state .fi-empty-state-description{margin-top:calc(var(--spacing)*1);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-empty-state .fi-empty-state-description:where(.dark,.dark *){color:var(--gray-400)}.fi-empty-state .fi-empty-state-footer{margin-top:calc(var(--spacing)*6)}.fi-empty-state.fi-compact{padding-block:calc(var(--spacing)*6)}.fi-empty-state.fi-compact .fi-empty-state-content{margin-inline:calc(var(--spacing)*0);align-items:flex-start;gap:calc(var(--spacing)*4);text-align:start;max-width:none;display:flex}.fi-empty-state.fi-compact .fi-empty-state-icon-bg{margin-bottom:calc(var(--spacing)*0);flex-shrink:0}.fi-empty-state.fi-compact .fi-empty-state-text-ctn{text-align:start;flex:1;justify-items:start}.fi-empty-state.fi-compact .fi-empty-state-description{margin-top:calc(var(--spacing)*1)}.fi-empty-state.fi-compact .fi-empty-state-footer{margin-top:calc(var(--spacing)*4)}.fi-fieldset>legend{padding-inline:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950);margin-inline-start:calc(var(--spacing)*-2)}.fi-fieldset>legend:where(.dark,.dark *){color:var(--color-white)}.fi-fieldset>legend .fi-fieldset-label-required-mark{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--danger-600)}.fi-fieldset>legend .fi-fieldset-label-required-mark:where(.dark,.dark *){color:var(--danger-400)}.fi-fieldset.fi-fieldset-label-hidden>legend{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.fi-fieldset:not(.fi-fieldset-not-contained){border-radius:var(--radius-xl);border-style:var(--tw-border-style);border-width:1px;border-color:var(--gray-200);padding:calc(var(--spacing)*6)}.fi-fieldset:not(.fi-fieldset-not-contained):where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fieldset:not(.fi-fieldset-not-contained):where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fieldset.fi-fieldset-not-contained{padding-top:calc(var(--spacing)*6)}.fi-grid:not(.fi-grid-direction-col){grid-template-columns:var(--cols-default);display:grid}@media (min-width:40rem){.fi-grid:not(.fi-grid-direction-col).sm\:fi-grid-cols{grid-template-columns:var(--cols-sm)}}@media (min-width:48rem){.fi-grid:not(.fi-grid-direction-col).md\:fi-grid-cols{grid-template-columns:var(--cols-md)}}@media (min-width:64rem){.fi-grid:not(.fi-grid-direction-col).lg\:fi-grid-cols{grid-template-columns:var(--cols-lg)}}@media (min-width:80rem){.fi-grid:not(.fi-grid-direction-col).xl\:fi-grid-cols{grid-template-columns:var(--cols-xl)}}@media (min-width:96rem){.fi-grid:not(.fi-grid-direction-col).\32 xl\:fi-grid-cols{grid-template-columns:var(--cols-2xl)}}@supports (container-type:inline-size){@container (min-width:16rem){.fi-grid:not(.fi-grid-direction-col).\@3xs\:fi-grid-cols{grid-template-columns:var(--cols-c3xs)}}@container (min-width:18rem){.fi-grid:not(.fi-grid-direction-col).\@2xs\:fi-grid-cols{grid-template-columns:var(--cols-c2xs)}}@container (min-width:20rem){.fi-grid:not(.fi-grid-direction-col).\@xs\:fi-grid-cols{grid-template-columns:var(--cols-cxs)}}@container (min-width:24rem){.fi-grid:not(.fi-grid-direction-col).\@sm\:fi-grid-cols{grid-template-columns:var(--cols-csm)}}@container (min-width:28rem){.fi-grid:not(.fi-grid-direction-col).\@md\:fi-grid-cols{grid-template-columns:var(--cols-cmd)}}@container (min-width:32rem){.fi-grid:not(.fi-grid-direction-col).\@lg\:fi-grid-cols{grid-template-columns:var(--cols-clg)}}@container (min-width:36rem){.fi-grid:not(.fi-grid-direction-col).\@xl\:fi-grid-cols{grid-template-columns:var(--cols-cxl)}}@container (min-width:42rem){.fi-grid:not(.fi-grid-direction-col).\@2xl\:fi-grid-cols{grid-template-columns:var(--cols-c2xl)}}@container (min-width:48rem){.fi-grid:not(.fi-grid-direction-col).\@3xl\:fi-grid-cols{grid-template-columns:var(--cols-c3xl)}}@container (min-width:56rem){.fi-grid:not(.fi-grid-direction-col).\@4xl\:fi-grid-cols{grid-template-columns:var(--cols-c4xl)}}@container (min-width:64rem){.fi-grid:not(.fi-grid-direction-col).\@5xl\:fi-grid-cols{grid-template-columns:var(--cols-c5xl)}}@container (min-width:72rem){.fi-grid:not(.fi-grid-direction-col).\@6xl\:fi-grid-cols{grid-template-columns:var(--cols-c6xl)}}@container (min-width:80rem){.fi-grid:not(.fi-grid-direction-col).\@7xl\:fi-grid-cols{grid-template-columns:var(--cols-c7xl)}}}@supports not (container-type:inline-size){@media (min-width:40rem){.fi-grid:not(.fi-grid-direction-col).\!\@sm\:fi-grid-cols{grid-template-columns:var(--cols-ncsm)}}@media (min-width:48rem){.fi-grid:not(.fi-grid-direction-col).\!\@md\:fi-grid-cols{grid-template-columns:var(--cols-ncmd)}}@media (min-width:64rem){.fi-grid:not(.fi-grid-direction-col).\!\@lg\:fi-grid-cols{grid-template-columns:var(--cols-nclg)}}@media (min-width:80rem){.fi-grid:not(.fi-grid-direction-col).\!\@xl\:fi-grid-cols{grid-template-columns:var(--cols-ncxl)}}@media (min-width:96rem){.fi-grid:not(.fi-grid-direction-col).\!\@2xl\:fi-grid-cols{grid-template-columns:var(--cols-nc2xl)}}}.fi-grid.fi-grid-direction-col{columns:var(--cols-default)}@media (min-width:40rem){.fi-grid.fi-grid-direction-col.sm\:fi-grid-cols{columns:var(--cols-sm)}}@media (min-width:48rem){.fi-grid.fi-grid-direction-col.md\:fi-grid-cols{columns:var(--cols-md)}}@media (min-width:64rem){.fi-grid.fi-grid-direction-col.lg\:fi-grid-cols{columns:var(--cols-lg)}}@media (min-width:80rem){.fi-grid.fi-grid-direction-col.xl\:fi-grid-cols{columns:var(--cols-xl)}}@media (min-width:96rem){.fi-grid.fi-grid-direction-col.\32 xl\:fi-grid-cols{columns:var(--cols-2xl)}}@supports (container-type:inline-size){@container (min-width:16rem){.fi-grid.fi-grid-direction-col.\@3xs\:fi-grid-cols{columns:var(--cols-c3xs)}}@container (min-width:18rem){.fi-grid.fi-grid-direction-col.\@2xs\:fi-grid-cols{columns:var(--cols-c2xs)}}@container (min-width:20rem){.fi-grid.fi-grid-direction-col.\@xs\:fi-grid-cols{columns:var(--cols-cxs)}}@container (min-width:24rem){.fi-grid.fi-grid-direction-col.\@sm\:fi-grid-cols{columns:var(--cols-csm)}}@container (min-width:28rem){.fi-grid.fi-grid-direction-col.\@md\:fi-grid-cols{columns:var(--cols-cmd)}}@container (min-width:32rem){.fi-grid.fi-grid-direction-col.\@lg\:fi-grid-cols{columns:var(--cols-clg)}}@container (min-width:36rem){.fi-grid.fi-grid-direction-col.\@xl\:fi-grid-cols{columns:var(--cols-cxl)}}@container (min-width:42rem){.fi-grid.fi-grid-direction-col.\@2xl\:fi-grid-cols{columns:var(--cols-c2xl)}}@container (min-width:48rem){.fi-grid.fi-grid-direction-col.\@3xl\:fi-grid-cols{columns:var(--cols-c3xl)}}@container (min-width:56rem){.fi-grid.fi-grid-direction-col.\@4xl\:fi-grid-cols{columns:var(--cols-c4xl)}}@container (min-width:64rem){.fi-grid.fi-grid-direction-col.\@5xl\:fi-grid-cols{columns:var(--cols-c5xl)}}@container (min-width:72rem){.fi-grid.fi-grid-direction-col.\@6xl\:fi-grid-cols{columns:var(--cols-c6xl)}}@container (min-width:80rem){.fi-grid.fi-grid-direction-col.\@7xl\:fi-grid-cols{columns:var(--cols-c7xl)}}}@supports not (container-type:inline-size){@media (min-width:40rem){.fi-grid.fi-grid-direction-col.\!\@sm\:fi-grid-cols{columns:var(--cols-ncsm)}}@media (min-width:48rem){.fi-grid.fi-grid-direction-col.\!\@md\:fi-grid-cols{columns:var(--cols-ncmd)}}@media (min-width:64rem){.fi-grid.fi-grid-direction-col.\!\@lg\:fi-grid-cols{columns:var(--cols-nclg)}}@media (min-width:80rem){.fi-grid.fi-grid-direction-col.\!\@xl\:fi-grid-cols{columns:var(--cols-ncxl)}}@media (min-width:96rem){.fi-grid.fi-grid-direction-col.\!\@2xl\:fi-grid-cols{columns:var(--cols-nc2xl)}}}@supports (container-type:inline-size){.fi-grid-ctn{container-type:inline-size}}.fi-grid-col{grid-column:var(--col-span-default)}@media (min-width:40rem){.fi-grid-col.sm\:fi-grid-col-span{grid-column:var(--col-span-sm)}}@media (min-width:48rem){.fi-grid-col.md\:fi-grid-col-span{grid-column:var(--col-span-md)}}@media (min-width:64rem){.fi-grid-col.lg\:fi-grid-col-span{grid-column:var(--col-span-lg)}}@media (min-width:80rem){.fi-grid-col.xl\:fi-grid-col-span{grid-column:var(--col-span-xl)}}@media (min-width:96rem){.fi-grid-col.\32 xl\:fi-grid-col-span{grid-column:var(--col-span-2xl)}}@supports (container-type:inline-size){@container (min-width:16rem){.fi-grid-col.\@3xs\:fi-grid-col-span{grid-column:var(--col-span-c3xs)}}@container (min-width:18rem){.fi-grid-col.\@2xs\:fi-grid-col-span{grid-column:var(--col-span-c2xs)}}@container (min-width:20rem){.fi-grid-col.\@xs\:fi-grid-col-span{grid-column:var(--col-span-cxs)}}@container (min-width:24rem){.fi-grid-col.\@sm\:fi-grid-col-span{grid-column:var(--col-span-csm)}}@container (min-width:28rem){.fi-grid-col.\@md\:fi-grid-col-span{grid-column:var(--col-span-cmd)}}@container (min-width:32rem){.fi-grid-col.\@lg\:fi-grid-col-span{grid-column:var(--col-span-clg)}}@container (min-width:36rem){.fi-grid-col.\@xl\:fi-grid-col-span{grid-column:var(--col-span-cxl)}}@container (min-width:42rem){.fi-grid-col.\@2xl\:fi-grid-col-span{grid-column:var(--col-span-c2xl)}}@container (min-width:48rem){.fi-grid-col.\@3xl\:fi-grid-col-span{grid-column:var(--col-span-c3xl)}}@container (min-width:56rem){.fi-grid-col.\@4xl\:fi-grid-col-span{grid-column:var(--col-span-c4xl)}}@container (min-width:64rem){.fi-grid-col.\@5xl\:fi-grid-col-span{grid-column:var(--col-span-c5xl)}}@container (min-width:72rem){.fi-grid-col.\@6xl\:fi-grid-col-span{grid-column:var(--col-span-c6xl)}}@container (min-width:80rem){.fi-grid-col.\@7xl\:fi-grid-col-span{grid-column:var(--col-span-c7xl)}}}@supports not (container-type:inline-size){@media (min-width:40rem){.fi-grid-col.\!\@sm\:fi-grid-col-span{grid-column:var(--col-span-ncsm)}}@media (min-width:48rem){.fi-grid-col.\!\@md\:fi-grid-col-span{grid-column:var(--col-span-ncmd)}}@media (min-width:64rem){.fi-grid-col.\!\@lg\:fi-grid-col-span{grid-column:var(--col-span-nclg)}}@media (min-width:80rem){.fi-grid-col.\!\@xl\:fi-grid-col-span{grid-column:var(--col-span-ncxl)}}@media (min-width:96rem){.fi-grid-col.\!\@2xl\:fi-grid-col-span{grid-column:var(--col-span-nc2xl)}}}.fi-grid-col.fi-grid-col-start{grid-column-start:var(--col-start-default)}@media (min-width:40rem){.fi-grid-col.sm\:fi-grid-col-start{grid-column-start:var(--col-start-sm)}}@media (min-width:48rem){.fi-grid-col.md\:fi-grid-col-start{grid-column-start:var(--col-start-md)}}@media (min-width:64rem){.fi-grid-col.lg\:fi-grid-col-start{grid-column-start:var(--col-start-lg)}}@media (min-width:80rem){.fi-grid-col.xl\:fi-grid-col-start{grid-column-start:var(--col-start-xl)}}@media (min-width:96rem){.fi-grid-col.\32 xl\:fi-grid-col-start{grid-column-start:var(--col-start-2xl)}}@supports (container-type:inline-size){@container (min-width:16rem){.fi-grid-col.\@3xs\:fi-grid-col-start{grid-column-start:var(--col-start-c3xs)}}@container (min-width:18rem){.fi-grid-col.\@2xs\:fi-grid-col-start{grid-column-start:var(--col-start-c2xs)}}@container (min-width:20rem){.fi-grid-col.\@xs\:fi-grid-col-start{grid-column-start:var(--col-start-cxs)}}@container (min-width:24rem){.fi-grid-col.\@sm\:fi-grid-col-start{grid-column-start:var(--col-start-csm)}}@container (min-width:28rem){.fi-grid-col.\@md\:fi-grid-col-start{grid-column-start:var(--col-start-cmd)}}@container (min-width:32rem){.fi-grid-col.\@lg\:fi-grid-col-start{grid-column-start:var(--col-start-clg)}}@container (min-width:36rem){.fi-grid-col.\@xl\:fi-grid-col-start{grid-column-start:var(--col-start-cxl)}}@container (min-width:42rem){.fi-grid-col.\@2xl\:fi-grid-col-start{grid-column-start:var(--col-start-c2xl)}}@container (min-width:48rem){.fi-grid-col.\@3xl\:fi-grid-col-start{grid-column-start:var(--col-start-c3xl)}}@container (min-width:56rem){.fi-grid-col.\@4xl\:fi-grid-col-start{grid-column-start:var(--col-start-c4xl)}}@container (min-width:64rem){.fi-grid-col.\@5xl\:fi-grid-col-start{grid-column-start:var(--col-start-c5xl)}}@container (min-width:72rem){.fi-grid-col.\@6xl\:fi-grid-col-start{grid-column-start:var(--col-start-c6xl)}}@container (min-width:80rem){.fi-grid-col.\@7xl\:fi-grid-col-start{grid-column-start:var(--col-start-c7xl)}}}@supports not (container-type:inline-size){@media (min-width:40rem){.fi-grid-col.\!\@sm\:fi-grid-col-start{grid-column-start:var(--col-start-ncsm)}}@media (min-width:48rem){.fi-grid-col.\!\@md\:fi-grid-col-start{grid-column-start:var(--col-start-ncmd)}}@media (min-width:64rem){.fi-grid-col.\!\@lg\:fi-grid-col-start{grid-column-start:var(--col-start-nclg)}}@media (min-width:80rem){.fi-grid-col.\!\@xl\:fi-grid-col-start{grid-column-start:var(--col-start-ncxl)}}@media (min-width:96rem){.fi-grid-col.\!\@2xl\:fi-grid-col-start{grid-column-start:var(--col-start-nc2xl)}}}.fi-grid-col.fi-grid-col-order{order:var(--col-order-default)}@media (min-width:40rem){.fi-grid-col.sm\:fi-grid-col-order{order:var(--col-order-sm)}}@media (min-width:48rem){.fi-grid-col.md\:fi-grid-col-order{order:var(--col-order-md)}}@media (min-width:64rem){.fi-grid-col.lg\:fi-grid-col-order{order:var(--col-order-lg)}}@media (min-width:80rem){.fi-grid-col.xl\:fi-grid-col-order{order:var(--col-order-xl)}}@media (min-width:96rem){.fi-grid-col.\32 xl\:fi-grid-col-order{order:var(--col-order-2xl)}}@supports (container-type:inline-size){@container (min-width:16rem){.fi-grid-col.\@3xs\:fi-grid-col-order{order:var(--col-order-c3xs)}}@container (min-width:18rem){.fi-grid-col.\@2xs\:fi-grid-col-order{order:var(--col-order-c2xs)}}@container (min-width:20rem){.fi-grid-col.\@xs\:fi-grid-col-order{order:var(--col-order-cxs)}}@container (min-width:24rem){.fi-grid-col.\@sm\:fi-grid-col-order{order:var(--col-order-csm)}}@container (min-width:28rem){.fi-grid-col.\@md\:fi-grid-col-order{order:var(--col-order-cmd)}}@container (min-width:32rem){.fi-grid-col.\@lg\:fi-grid-col-order{order:var(--col-order-clg)}}@container (min-width:36rem){.fi-grid-col.\@xl\:fi-grid-col-order{order:var(--col-order-cxl)}}@container (min-width:42rem){.fi-grid-col.\@2xl\:fi-grid-col-order{order:var(--col-order-c2xl)}}@container (min-width:48rem){.fi-grid-col.\@3xl\:fi-grid-col-order{order:var(--col-order-c3xl)}}@container (min-width:56rem){.fi-grid-col.\@4xl\:fi-grid-col-order{order:var(--col-order-c4xl)}}@container (min-width:64rem){.fi-grid-col.\@5xl\:fi-grid-col-order{order:var(--col-order-c5xl)}}@container (min-width:72rem){.fi-grid-col.\@6xl\:fi-grid-col-order{order:var(--col-order-c6xl)}}@container (min-width:80rem){.fi-grid-col.\@7xl\:fi-grid-col-order{order:var(--col-order-c7xl)}}}@supports not (container-type:inline-size){@media (min-width:40rem){.fi-grid-col.\!\@sm\:fi-grid-col-order{order:var(--col-order-ncsm)}}@media (min-width:48rem){.fi-grid-col.\!\@md\:fi-grid-col-order{order:var(--col-order-ncmd)}}@media (min-width:64rem){.fi-grid-col.\!\@lg\:fi-grid-col-order{order:var(--col-order-nclg)}}@media (min-width:80rem){.fi-grid-col.\!\@xl\:fi-grid-col-order{order:var(--col-order-ncxl)}}@media (min-width:96rem){.fi-grid-col.\!\@2xl\:fi-grid-col-order{order:var(--col-order-nc2xl)}}}.fi-grid-col.fi-hidden{display:none}.fi-icon{width:calc(var(--spacing)*5);height:calc(var(--spacing)*5)}.fi-icon.fi-size-xs{width:calc(var(--spacing)*3);height:calc(var(--spacing)*3)}.fi-icon.fi-size-sm{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.fi-icon.fi-size-md{width:calc(var(--spacing)*5);height:calc(var(--spacing)*5)}.fi-icon.fi-size-lg{width:calc(var(--spacing)*6);height:calc(var(--spacing)*6)}.fi-icon.fi-size-xl{width:calc(var(--spacing)*7);height:calc(var(--spacing)*7)}.fi-icon.fi-size-2xl{width:calc(var(--spacing)*8);height:calc(var(--spacing)*8)}.fi-icon>svg{height:inherit;width:inherit}.fi-icon-btn{margin:calc(var(--spacing)*-2);width:calc(var(--spacing)*9);height:calc(var(--spacing)*9);border-radius:var(--radius-lg);color:var(--gray-500);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;--tw-outline-style:none;outline-style:none;justify-content:center;align-items:center;transition-duration:75ms;display:flex;position:relative}.fi-icon-btn:where(.dark,.dark *){color:var(--gray-500)}@media (hover:hover){:is(.fi-icon-btn.fi-force-enabled,.fi-icon-btn:not(.fi-disabled):not([disabled])):hover{color:var(--gray-600)}}:is(.fi-icon-btn.fi-force-enabled,.fi-icon-btn:not(.fi-disabled):not([disabled])):focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--primary-600)}@media (hover:hover){:is(.fi-icon-btn.fi-force-enabled,.fi-icon-btn:not(.fi-disabled):not([disabled])):where(.dark,.dark *):hover{color:var(--gray-400)}}:is(.fi-icon-btn.fi-force-enabled,.fi-icon-btn:not(.fi-disabled):not([disabled])):where(.dark,.dark *):focus-visible{--tw-ring-color:var(--primary-500)}.fi-icon-btn.fi-disabled:not(.fi-force-enabled),.fi-icon-btn[disabled]:not(.fi-force-enabled){cursor:default;opacity:.7}:is(.fi-icon-btn.fi-disabled:not(.fi-force-enabled),.fi-icon-btn[disabled]:not(.fi-force-enabled)):not([x-tooltip]){pointer-events:none}.fi-icon-btn.fi-size-xs{width:calc(var(--spacing)*7);height:calc(var(--spacing)*7)}.fi-icon-btn.fi-size-xs:has(.fi-icon.fi-size-sm){margin:calc(var(--spacing)*-1.5)}.fi-icon-btn.fi-size-xs:has(.fi-icon.fi-size-md){margin:calc(var(--spacing)*-1)}.fi-icon-btn.fi-size-xs:has(.fi-icon.fi-size-lg){margin:calc(var(--spacing)*-.5)}.fi-icon-btn.fi-size-sm{width:calc(var(--spacing)*8);height:calc(var(--spacing)*8)}.fi-icon-btn.fi-size-sm:has(.fi-icon.fi-size-sm){margin:calc(var(--spacing)*-2)}.fi-icon-btn.fi-size-sm:has(.fi-icon.fi-size-md){margin:calc(var(--spacing)*-1.5)}.fi-icon-btn.fi-size-sm:has(.fi-icon.fi-size-lg){margin:calc(var(--spacing)*-1)}.fi-icon-btn.fi-size-md:has(.fi-icon.fi-size-sm){margin:calc(var(--spacing)*-2.5)}.fi-icon-btn.fi-size-md:has(.fi-icon.fi-size-lg){margin:calc(var(--spacing)*-1.5)}.fi-icon-btn.fi-size-lg{width:calc(var(--spacing)*10);height:calc(var(--spacing)*10)}.fi-icon-btn.fi-size-lg:has(.fi-icon.fi-size-sm){margin:calc(var(--spacing)*-3)}.fi-icon-btn.fi-size-lg:has(.fi-icon.fi-size-md){margin:calc(var(--spacing)*-2.5)}.fi-icon-btn.fi-size-lg:has(.fi-icon.fi-size-lg){margin:calc(var(--spacing)*-2)}.fi-icon-btn.fi-size-xl{width:calc(var(--spacing)*11);height:calc(var(--spacing)*11)}.fi-icon-btn.fi-size-xl:has(.fi-icon.fi-size-sm){margin:calc(var(--spacing)*-3.5)}.fi-icon-btn.fi-size-xl:has(.fi-icon.fi-size-md){margin:calc(var(--spacing)*-3)}.fi-icon-btn.fi-size-xl:has(.fi-icon.fi-size-lg){margin:calc(var(--spacing)*-2.5)}.fi-icon-btn.fi-color{color:var(--text)}.fi-icon-btn.fi-color:where(.dark,.dark *){color:var(--dark-text)}@media (hover:hover){:is(.fi-icon-btn.fi-color.fi-force-enabled,.fi-icon-btn.fi-color:not(.fi-disabled):not([disabled])):hover{color:var(--hover-text)}}:is(.fi-icon-btn.fi-color.fi-force-enabled,.fi-icon-btn.fi-color:not(.fi-disabled):not([disabled])):focus-visible{--tw-ring-color:var(--color-600)}@media (hover:hover){:is(.fi-icon-btn.fi-color.fi-force-enabled,.fi-icon-btn.fi-color:not(.fi-disabled):not([disabled])):where(.dark,.dark *):hover{color:var(--dark-hover-text)}}:is(.fi-icon-btn.fi-color.fi-force-enabled,.fi-icon-btn.fi-color:not(.fi-disabled):not([disabled])):where(.dark,.dark *):focus-visible{--tw-ring-color:var(--color-500)}.fi-icon-btn>.fi-icon-btn-badge-ctn{inset-inline-start:100%;top:calc(var(--spacing)*1);z-index:1;--tw-translate-x:calc(calc(1/2*100%)*-1);--tw-translate-y:calc(calc(1/2*100%)*-1);width:max-content;translate:var(--tw-translate-x)var(--tw-translate-y);border-radius:var(--radius-md);background-color:var(--color-white);display:flex;position:absolute}.fi-icon-btn>.fi-icon-btn-badge-ctn:where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-translate-x:calc(1/2*100%);translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-icon-btn>.fi-icon-btn-badge-ctn:where(.dark,.dark *){background-color:var(--gray-900)}@media (min-width:40rem){.fi-icon-btn:has(+.fi-btn.fi-labeled-from-sm){display:none}}@media (min-width:48rem){.fi-icon-btn:has(+.fi-btn.fi-labeled-from-md){display:none}}@media (min-width:64rem){.fi-icon-btn:has(+.fi-btn.fi-labeled-from-lg){display:none}}@media (min-width:80rem){.fi-icon-btn:has(+.fi-btn.fi-labeled-from-xl){display:none}}@media (min-width:96rem){.fi-icon-btn:has(+.fi-btn.fi-labeled-from-2xl){display:none}}input[type=checkbox].fi-checkbox-input{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4);appearance:none;--tw-border-style:none;background-color:var(--color-white);vertical-align:middle;color:var(--primary-600);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent);border-style:none;border-radius:.25rem}input[type=checkbox].fi-checkbox-input:checked{background-color:var(--primary-600);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}input[type=checkbox].fi-checkbox-input:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--primary-600);--tw-ring-offset-width:0px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color);--tw-outline-style:none;outline-style:none}input[type=checkbox].fi-checkbox-input:checked:focus{--tw-ring-color:var(--primary-500)}@supports (color:color-mix(in lab, red, red)){input[type=checkbox].fi-checkbox-input:checked:focus{--tw-ring-color:color-mix(in oklab,var(--primary-500)50%,transparent)}}input[type=checkbox].fi-checkbox-input:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-50)}input[type=checkbox].fi-checkbox-input:disabled:checked{background-color:var(--gray-400);color:var(--gray-400)}input[type=checkbox].fi-checkbox-input:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){input[type=checkbox].fi-checkbox-input:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}input[type=checkbox].fi-checkbox-input:where(.dark,.dark *){color:var(--primary-500);--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){input[type=checkbox].fi-checkbox-input:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}input[type=checkbox].fi-checkbox-input:where(.dark,.dark *):checked{background-color:var(--primary-500)}input[type=checkbox].fi-checkbox-input:where(.dark,.dark *):focus{--tw-ring-color:var(--primary-500)}input[type=checkbox].fi-checkbox-input:where(.dark,.dark *):checked:focus{--tw-ring-color:var(--primary-400)}@supports (color:color-mix(in lab, red, red)){input[type=checkbox].fi-checkbox-input:where(.dark,.dark *):checked:focus{--tw-ring-color:color-mix(in oklab,var(--primary-400)50%,transparent)}}input[type=checkbox].fi-checkbox-input:where(.dark,.dark *):disabled{--tw-ring-color:#ffffff1a;background-color:#0000}@supports (color:color-mix(in lab, red, red)){input[type=checkbox].fi-checkbox-input:where(.dark,.dark *):disabled{--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}input[type=checkbox].fi-checkbox-input:where(.dark,.dark *):disabled:checked{background-color:var(--gray-600)}input[type=checkbox].fi-checkbox-input:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")}input[type=checkbox].fi-checkbox-input:indeterminate{background-color:var(--primary-600);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}input[type=checkbox].fi-checkbox-input:indeterminate:where(.dark,.dark *){background-color:var(--primary-500)}input[type=checkbox].fi-checkbox-input:indeterminate{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 6.75a1.25 1.25 0 0 0 0 2.5h7a1.25 1.25 0 0 0 0-2.5h-7z'/%3E%3C/svg%3E")}input[type=checkbox].fi-checkbox-input:indeterminate:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--primary-500)}@supports (color:color-mix(in lab, red, red)){input[type=checkbox].fi-checkbox-input:indeterminate:focus{--tw-ring-color:color-mix(in oklab,var(--primary-500)50%,transparent)}}input[type=checkbox].fi-checkbox-input:indeterminate:focus:where(.dark,.dark *){--tw-ring-color:var(--primary-400)}@supports (color:color-mix(in lab, red, red)){input[type=checkbox].fi-checkbox-input:indeterminate:focus:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--primary-400)50%,transparent)}}input[type=checkbox].fi-checkbox-input:indeterminate:disabled{background-color:var(--gray-400)}input[type=checkbox].fi-checkbox-input:indeterminate:disabled:where(.dark,.dark *){background-color:var(--gray-600)}input[type=checkbox].fi-checkbox-input.fi-invalid{color:var(--danger-600);--tw-ring-color:var(--danger-600)}input[type=checkbox].fi-checkbox-input.fi-invalid:checked{background-color:var(--danger-600)}input[type=checkbox].fi-checkbox-input.fi-invalid:focus{--tw-ring-color:var(--danger-600)}input[type=checkbox].fi-checkbox-input.fi-invalid:checked:focus{--tw-ring-color:var(--danger-500)}@supports (color:color-mix(in lab, red, red)){input[type=checkbox].fi-checkbox-input.fi-invalid:checked:focus{--tw-ring-color:color-mix(in oklab,var(--danger-500)50%,transparent)}}input[type=checkbox].fi-checkbox-input.fi-invalid:where(.dark,.dark *){color:var(--danger-500);--tw-ring-color:var(--danger-500)}input[type=checkbox].fi-checkbox-input.fi-invalid:where(.dark,.dark *):checked{background-color:var(--danger-500)}input[type=checkbox].fi-checkbox-input.fi-invalid:where(.dark,.dark *):focus{--tw-ring-color:var(--danger-500)}input[type=checkbox].fi-checkbox-input.fi-invalid:where(.dark,.dark *):checked:focus{--tw-ring-color:var(--danger-400)}@supports (color:color-mix(in lab, red, red)){input[type=checkbox].fi-checkbox-input.fi-invalid:where(.dark,.dark *):checked:focus{--tw-ring-color:color-mix(in oklab,var(--danger-400)50%,transparent)}}input[type=checkbox].fi-checkbox-input.fi-invalid:indeterminate{background-color:var(--danger-600)}input[type=checkbox].fi-checkbox-input.fi-invalid:indeterminate:where(.dark,.dark *){background-color:var(--danger-500)}input[type=checkbox].fi-checkbox-input.fi-invalid:indeterminate:focus{--tw-ring-color:var(--danger-500)}@supports (color:color-mix(in lab, red, red)){input[type=checkbox].fi-checkbox-input.fi-invalid:indeterminate:focus{--tw-ring-color:color-mix(in oklab,var(--danger-500)50%,transparent)}}input[type=checkbox].fi-checkbox-input.fi-invalid:indeterminate:focus:where(.dark,.dark *){--tw-ring-color:var(--danger-400)}@supports (color:color-mix(in lab, red, red)){input[type=checkbox].fi-checkbox-input.fi-invalid:indeterminate:focus:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--danger-400)50%,transparent)}}input.fi-input{appearance:none;--tw-border-style:none;width:100%;padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*1.5);text-align:start;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);color:var(--gray-950);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;background-color:#0000;border-style:none;transition-duration:75ms;display:block}input.fi-input::placeholder{color:var(--gray-400)}input.fi-input:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-outline-style:none;outline-style:none}input.fi-input:disabled{color:var(--gray-500);-webkit-text-fill-color:var(--color-gray-500)}input.fi-input:disabled::placeholder{-webkit-text-fill-color:var(--color-gray-400)}input.fi-input:where(.dark,.dark *){color:var(--color-white)}input.fi-input:where(.dark,.dark *)::placeholder{color:var(--gray-500)}input.fi-input:where(.dark,.dark *):disabled{color:var(--gray-400);-webkit-text-fill-color:var(--color-gray-400)}input.fi-input:where(.dark,.dark *):disabled::placeholder{-webkit-text-fill-color:var(--color-gray-500)}@supports (-webkit-touch-callout:none){input.fi-input{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}}input.fi-input.fi-input-has-inline-prefix{padding-inline-start:calc(var(--spacing)*0)}input.fi-input.fi-input-has-inline-suffix{padding-inline-end:calc(var(--spacing)*0)}input.fi-input.fi-align-center{text-align:center}input.fi-input.fi-align-end{text-align:end}input.fi-input.fi-align-left{text-align:left}input.fi-input.fi-align-right{text-align:end}input.fi-input.fi-align-justify,input.fi-input.fi-align-between{text-align:justify}input[type=date].fi-input,input[type=datetime-local].fi-input,input[type=time].fi-input{background-color:#ffffff03}@supports (color:color-mix(in lab, red, red)){input[type=date].fi-input,input[type=datetime-local].fi-input,input[type=time].fi-input{background-color:color-mix(in oklab,var(--color-white)1%,transparent)}}input[type=range].fi-input{appearance:auto;width:calc(100% - 1.5rem);margin-inline:auto}input[type=text].fi-one-time-code-input{inset-block:calc(var(--spacing)*0);right:calc(var(--spacing)*-8);left:calc(var(--spacing)*0);--tw-border-style:none;padding-inline:calc(var(--spacing)*3);font-family:var(--mono-font-family),ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--tw-tracking:1.72rem;letter-spacing:1.72rem;color:var(--gray-950);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;background-color:#0000;border-style:none;transition-duration:75ms;display:block;position:absolute}input[type=text].fi-one-time-code-input::placeholder{color:var(--gray-400)}input[type=text].fi-one-time-code-input:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-outline-style:none;outline-style:none}input[type=text].fi-one-time-code-input:disabled{color:var(--gray-500);-webkit-text-fill-color:var(--color-gray-500)}input[type=text].fi-one-time-code-input:disabled::placeholder{-webkit-text-fill-color:var(--color-gray-400)}input[type=text].fi-one-time-code-input:where(.dark,.dark *){color:var(--color-white)}input[type=text].fi-one-time-code-input:where(.dark,.dark *)::placeholder{color:var(--gray-500)}input[type=text].fi-one-time-code-input:where(.dark,.dark *):disabled{color:var(--gray-400);-webkit-text-fill-color:var(--color-gray-400)}input[type=text].fi-one-time-code-input:where(.dark,.dark *):disabled::placeholder{-webkit-text-fill-color:var(--color-gray-500)}input[type=text].fi-one-time-code-input.fi-valid{caret-color:#0000}.fi-one-time-code-input-ctn{height:calc(var(--spacing)*12);position:relative}.fi-one-time-code-input-ctn>.fi-one-time-code-input-digit-field{height:100%;width:calc(var(--spacing)*8);border-radius:var(--radius-lg);border-style:var(--tw-border-style);border-width:1px;border-color:var(--gray-950);display:inline-block}@supports (color:color-mix(in lab, red, red)){.fi-one-time-code-input-ctn>.fi-one-time-code-input-digit-field{border-color:color-mix(in oklab,var(--gray-950)10%,transparent)}}.fi-one-time-code-input-ctn>.fi-one-time-code-input-digit-field{background-color:var(--color-white)}.fi-one-time-code-input-ctn>.fi-one-time-code-input-digit-field:where(.dark,.dark *){border-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-one-time-code-input-ctn>.fi-one-time-code-input-digit-field:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-one-time-code-input-ctn>.fi-one-time-code-input-digit-field:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-one-time-code-input-ctn>.fi-one-time-code-input-digit-field:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-one-time-code-input-ctn>.fi-one-time-code-input-digit-field.fi-active{border-style:var(--tw-border-style);border-width:2px;border-color:var(--primary-600)}.fi-one-time-code-input-ctn>.fi-one-time-code-input-digit-field.fi-active:where(.dark,.dark *){border-color:var(--primary-500)}input[type=radio].fi-radio-input{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4);appearance:none;--tw-border-style:none;background-color:var(--color-white);color:var(--primary-600);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent);border-style:none;border-radius:3.40282e38px}input[type=radio].fi-radio-input:checked{background-color:var(--primary-600);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}input[type=radio].fi-radio-input:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--primary-600);--tw-ring-offset-width:0px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color);--tw-outline-style:none;outline-style:none}input[type=radio].fi-radio-input:checked:focus{--tw-ring-color:var(--primary-500)}@supports (color:color-mix(in lab, red, red)){input[type=radio].fi-radio-input:checked:focus{--tw-ring-color:color-mix(in oklab,var(--primary-500)50%,transparent)}}input[type=radio].fi-radio-input:disabled{background-color:var(--gray-50);color:var(--gray-50)}input[type=radio].fi-radio-input:disabled:checked{background-color:var(--gray-400);color:var(--gray-400)}input[type=radio].fi-radio-input:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){input[type=radio].fi-radio-input:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}input[type=radio].fi-radio-input:where(.dark,.dark *){color:var(--primary-500);--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){input[type=radio].fi-radio-input:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}input[type=radio].fi-radio-input:where(.dark,.dark *):checked{background-color:var(--primary-500)}input[type=radio].fi-radio-input:where(.dark,.dark *):focus{--tw-ring-color:var(--primary-500)}input[type=radio].fi-radio-input:where(.dark,.dark *):checked:focus{--tw-ring-color:var(--primary-400)}@supports (color:color-mix(in lab, red, red)){input[type=radio].fi-radio-input:where(.dark,.dark *):checked:focus{--tw-ring-color:color-mix(in oklab,var(--primary-400)50%,transparent)}}input[type=radio].fi-radio-input:where(.dark,.dark *):disabled{--tw-ring-color:#ffffff1a;background-color:#0000}@supports (color:color-mix(in lab, red, red)){input[type=radio].fi-radio-input:where(.dark,.dark *):disabled{--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}input[type=radio].fi-radio-input:where(.dark,.dark *):disabled:checked{background-color:var(--gray-600)}input[type=radio].fi-radio-input:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}input[type=radio].fi-radio-input.fi-invalid{color:var(--danger-600);--tw-ring-color:var(--danger-600)}input[type=radio].fi-radio-input.fi-invalid:checked{background-color:var(--danger-600)}input[type=radio].fi-radio-input.fi-invalid:focus{--tw-ring-color:var(--danger-600)}input[type=radio].fi-radio-input.fi-invalid:checked:focus{--tw-ring-color:var(--danger-500)}@supports (color:color-mix(in lab, red, red)){input[type=radio].fi-radio-input.fi-invalid:checked:focus{--tw-ring-color:color-mix(in oklab,var(--danger-500)50%,transparent)}}input[type=radio].fi-radio-input.fi-invalid:where(.dark,.dark *){color:var(--danger-500);--tw-ring-color:var(--danger-500)}input[type=radio].fi-radio-input.fi-invalid:where(.dark,.dark *):checked{background-color:var(--danger-500)}input[type=radio].fi-radio-input.fi-invalid:where(.dark,.dark *):focus{--tw-ring-color:var(--danger-500)}input[type=radio].fi-radio-input.fi-invalid:where(.dark,.dark *):checked:focus{--tw-ring-color:var(--danger-400)}@supports (color:color-mix(in lab, red, red)){input[type=radio].fi-radio-input.fi-invalid:where(.dark,.dark *):checked:focus{--tw-ring-color:color-mix(in oklab,var(--danger-400)50%,transparent)}}select.fi-select-input{appearance:none;--tw-border-style:none;width:100%;padding-block:calc(var(--spacing)*1.5);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);color:var(--gray-950);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;background-color:#0000;border-style:none;padding-inline-start:calc(var(--spacing)*3);padding-inline-end:calc(var(--spacing)*8);transition-duration:75ms;display:block}select.fi-select-input:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-outline-style:none;outline-style:none}select.fi-select-input:disabled{color:var(--gray-500);-webkit-text-fill-color:var(--color-gray-500)}select.fi-select-input:where(.dark,.dark *){color:var(--color-white)}select.fi-select-input:where(.dark,.dark *):disabled{color:var(--gray-400);-webkit-text-fill-color:var(--color-gray-400)}select.fi-select-input optgroup{background-color:var(--color-white)}select.fi-select-input optgroup:where(.dark,.dark *){background-color:var(--gray-900)}select.fi-select-input option{background-color:var(--color-white)}select.fi-select-input option:where(.dark,.dark *){background-color:var(--gray-900)}@supports (-webkit-touch-callout:none){select.fi-select-input{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}}select.fi-select-input{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em}select.fi-select-input:where(:dir(rtl),[dir=rtl],[dir=rtl] *){background-position:.5rem}select.fi-select-input.fi-select-input-has-inline-prefix{padding-inline-start:calc(var(--spacing)*0)}.fi-select-input .fi-select-input-ctn{position:relative}.fi-select-input div[x-ref=select]{min-height:calc(var(--spacing)*9)}.fi-select-input .fi-select-input-btn{min-height:calc(var(--spacing)*9);border-radius:var(--radius-lg);width:100%;padding-block:calc(var(--spacing)*1.5);text-align:start;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);color:var(--gray-950);padding-inline-start:calc(var(--spacing)*3);padding-inline-end:calc(var(--spacing)*8);display:flex}.fi-select-input .fi-select-input-btn:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-outline-style:none;outline-style:none}.fi-select-input .fi-select-input-btn:where(.dark,.dark *){color:var(--color-white)}.fi-select-input .fi-select-input-btn{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em}.fi-select-input .fi-select-input-btn:where(:dir(rtl),[dir=rtl],[dir=rtl] *){background-position:.5rem}.fi-select-input .fi-select-input-value-ctn{text-wrap:wrap;word-break:break-word;align-items:center;width:100%;display:flex}.fi-select-input .fi-select-input-value-badges-ctn{gap:calc(var(--spacing)*1.5);flex-wrap:wrap;display:flex}.fi-select-input .fi-select-input-value-label{flex:1}.fi-select-input .fi-select-input-value-remove-btn{--tw-translate-y:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y);color:var(--gray-500);inset-inline-end:calc(var(--spacing)*8);position:absolute;top:50%}@media (hover:hover){.fi-select-input .fi-select-input-value-remove-btn:hover{color:var(--gray-600)}}.fi-select-input .fi-select-input-value-remove-btn:focus-visible{color:var(--gray-600);--tw-outline-style:none;outline-style:none}@media (hover:hover){.fi-select-input .fi-select-input-value-remove-btn:where(.dark,.dark *):hover{color:var(--gray-300)}}.fi-select-input .fi-select-input-value-remove-btn:where(.dark,.dark *):focus-visible{color:var(--gray-300)}.fi-select-input .fi-select-input-ctn-clearable .fi-select-input-btn{padding-inline-end:calc(var(--spacing)*14)}.fi-select-input .fi-dropdown-panel{max-height:calc(var(--spacing)*60);max-width:100%!important}:where(.fi-select-input .fi-select-input-options-ctn>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-100)}:where(.fi-select-input .fi-select-input-options-ctn:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(.fi-select-input .fi-select-input-options-ctn:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}:where(.fi-select-input .fi-select-input-option-group>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-100)}:where(.fi-select-input .fi-select-input-option-group:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(.fi-select-input .fi-select-input-option-group:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-select-input .fi-select-input-option-group .fi-dropdown-header{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-500)}.fi-select-input .fi-select-input-option-group .fi-dropdown-header:where(.dark,.dark *){color:var(--gray-400)}.fi-select-input .fi-select-input-search-ctn{top:calc(var(--spacing)*0);z-index:10;background-color:var(--color-white);position:sticky}.fi-select-input .fi-select-input-search-ctn:where(.dark,.dark *){background-color:var(--gray-900)}.fi-select-input .fi-select-input-option{text-wrap:wrap;word-break:break-word;min-width:1px}.fi-select-input .fi-select-input-placeholder{color:var(--gray-400)}.fi-select-input .fi-select-input-placeholder:where(.dark,.dark *){color:var(--gray-500)}.fi-select-input .fi-disabled{cursor:not-allowed;opacity:.7}.fi-select-input .fi-disabled .fi-select-input-placeholder{color:var(--gray-400)}.fi-select-input .fi-disabled .fi-select-input-placeholder:where(.dark,.dark *){color:var(--gray-500)}.fi-select-input .fi-select-input-message{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-select-input .fi-select-input-message:where(.dark,.dark *){color:var(--gray-400)}.fi-select-input .fi-select-input-ctn.fi-select-input-ctn-option-labels-not-wrapped .fi-select-input-value-ctn>span{text-overflow:ellipsis;white-space:nowrap;text-wrap:nowrap;overflow-wrap:normal;word-break:normal;overflow:hidden}.fi-select-input .fi-select-input-ctn.fi-select-input-ctn-option-labels-not-wrapped .fi-select-input-option>span{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.fi-input-wrp{border-radius:var(--radius-lg);background-color:var(--color-white);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms;display:flex}.fi-input-wrp:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-input-wrp:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-input-wrp:where(.dark,.dark *){--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-input-wrp:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-input-wrp:not(.fi-disabled):not(:has(.fi-ac-action:focus)):focus-within{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--primary-600)}.fi-input-wrp:not(.fi-disabled):not(:has(.fi-ac-action:focus)):where(.dark,.dark *):focus-within{--tw-ring-color:var(--primary-500)}.fi-input-wrp:not(.fi-disabled):not(:has(.fi-ac-action:focus)).fi-invalid:focus-within{--tw-ring-color:var(--danger-600)}.fi-input-wrp:not(.fi-disabled):not(:has(.fi-ac-action:focus)).fi-invalid:where(.dark,.dark *):focus-within{--tw-ring-color:var(--danger-500)}.fi-input-wrp.fi-disabled{background-color:var(--gray-50)}.fi-input-wrp.fi-disabled:where(.dark,.dark *){background-color:#0000}.fi-input-wrp.fi-disabled:not(.fi-invalid):where(.dark,.dark *){--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-input-wrp.fi-disabled:not(.fi-invalid):where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-input-wrp.fi-invalid{--tw-ring-color:var(--danger-600)}.fi-input-wrp.fi-invalid:where(.dark,.dark *){--tw-ring-color:var(--danger-500)}.fi-input-wrp .fi-input-wrp-prefix{align-items:center;column-gap:calc(var(--spacing)*3);padding-inline-start:calc(var(--spacing)*3);display:none}.fi-input-wrp .fi-input-wrp-prefix.fi-input-wrp-prefix-has-content{display:flex}.fi-input-wrp .fi-input-wrp-prefix.fi-inline{padding-inline-end:calc(var(--spacing)*2)}.fi-input-wrp .fi-input-wrp-prefix.fi-inline.fi-input-wrp-prefix-has-label{padding-inline-end:calc(var(--spacing)*1)}.fi-input-wrp .fi-input-wrp-prefix:not(.fi-inline){border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px;border-color:var(--gray-200);padding-inline-start:calc(var(--spacing)*3);padding-inline-end:calc(var(--spacing)*3)}.fi-input-wrp .fi-input-wrp-prefix:not(.fi-inline):where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-input-wrp .fi-input-wrp-prefix:not(.fi-inline):where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-input-wrp .fi-input-wrp-content-ctn,.fi-input-wrp:not(:has(.fi-input-wrp-content-ctn))>*{min-width:calc(var(--spacing)*0);flex:1}:is(.fi-input-wrp .fi-input-wrp-content-ctn,.fi-input-wrp:not(:has(.fi-input-wrp-content-ctn))>*).fi-input-wrp-content-ctn-ps{padding-inline-start:calc(var(--spacing)*3)}.fi-input-wrp .fi-input-wrp-suffix{align-items:center;column-gap:calc(var(--spacing)*3);padding-inline-end:calc(var(--spacing)*3);display:flex}.fi-input-wrp .fi-input-wrp-suffix.fi-inline{padding-inline-start:calc(var(--spacing)*2)}.fi-input-wrp .fi-input-wrp-suffix.fi-inline.fi-input-wrp-suffix-has-label{padding-inline-start:calc(var(--spacing)*1)}.fi-input-wrp .fi-input-wrp-suffix:not(.fi-inline){border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px;border-color:var(--gray-200);padding-inline-start:calc(var(--spacing)*3)}.fi-input-wrp .fi-input-wrp-suffix:not(.fi-inline):where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-input-wrp .fi-input-wrp-suffix:not(.fi-inline):where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-input-wrp .fi-input-wrp-actions{align-items:center;gap:calc(var(--spacing)*3);display:flex}.fi-input-wrp .fi-input-wrp-label{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));white-space:nowrap;color:var(--gray-500)}.fi-input-wrp .fi-input-wrp-label:where(.dark,.dark *),:is(.fi-input-wrp .fi-input-wrp-prefix,.fi-input-wrp .fi-input-wrp-suffix)>.fi-icon{color:var(--gray-400)}:is(.fi-input-wrp .fi-input-wrp-prefix,.fi-input-wrp .fi-input-wrp-suffix)>.fi-icon:where(.dark,.dark *){color:var(--gray-500)}:is(.fi-input-wrp .fi-input-wrp-prefix,.fi-input-wrp .fi-input-wrp-suffix)>.fi-icon.fi-color{color:var(--color-500)}.fi-link{justify-content:center;align-items:center;gap:calc(var(--spacing)*1.5);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-700);--tw-outline-style:none;outline-style:none;display:inline-flex;position:relative}.fi-link:where(.dark,.dark *){color:var(--gray-200)}@media (hover:hover){:is(.fi-link.fi-force-enabled,.fi-link:not(.fi-disabled):not([disabled])):hover{text-decoration-line:underline}}:is(.fi-link.fi-force-enabled,.fi-link:not(.fi-disabled):not([disabled])):focus-visible{text-decoration-line:underline}.fi-link.fi-disabled:not(.fi-force-enabled),.fi-link[disabled]:not(.fi-force-enabled){cursor:default;opacity:.7}:is(.fi-link.fi-disabled:not(.fi-force-enabled),.fi-link[disabled]:not(.fi-force-enabled)):not([x-tooltip]){pointer-events:none}.fi-link.fi-size-xs{gap:calc(var(--spacing)*1);font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.fi-link.fi-size-sm{gap:calc(var(--spacing)*1);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.fi-link.fi-size-md,.fi-link.fi-size-lg,.fi-link.fi-size-xl{gap:calc(var(--spacing)*1.5);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.fi-link.fi-font-thin{--tw-font-weight:var(--font-weight-thin);font-weight:var(--font-weight-thin)}.fi-link.fi-font-extralight{--tw-font-weight:var(--font-weight-extralight);font-weight:var(--font-weight-extralight)}.fi-link.fi-font-light{--tw-font-weight:var(--font-weight-light);font-weight:var(--font-weight-light)}.fi-link.fi-font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.fi-link.fi-font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.fi-link.fi-font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.fi-link.fi-font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.fi-link.fi-font-black{--tw-font-weight:var(--font-weight-black);font-weight:var(--font-weight-black)}.fi-link.fi-color{color:var(--text)}.fi-link.fi-color:where(.dark,.dark *){color:var(--dark-text)}.fi-link:not(.fi-color)>.fi-icon{color:var(--gray-400)}.fi-link:not(.fi-color)>.fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-link .fi-link-badge-ctn{inset-inline-start:100%;top:calc(var(--spacing)*0);z-index:1;--tw-translate-x:calc(calc(1/4*100%)*-1);--tw-translate-y:calc(calc(3/4*100%)*-1);width:max-content;translate:var(--tw-translate-x)var(--tw-translate-y);border-radius:var(--radius-md);background-color:var(--color-white);--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal);display:flex;position:absolute}@media (hover:hover){.fi-link .fi-link-badge-ctn:hover{text-decoration-line:none}}.fi-link .fi-link-badge-ctn:focus-visible{text-decoration-line:none}.fi-link .fi-link-badge-ctn:where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-translate-x:calc(1/4*100%);translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-link .fi-link-badge-ctn:where(.dark,.dark *){background-color:var(--gray-900)}p>.fi-link,span>.fi-link{vertical-align:middle;text-align:inherit;padding-bottom:2px}.fi-loading-indicator{animation:var(--animate-spin)}.fi-loading-section{animation:var(--animate-pulse)}:is(.fi-modal.fi-modal-slide-over,.fi-modal.fi-width-screen)>.fi-modal-window-ctn>.fi-modal-window{height:100dvh}:is(.fi-modal.fi-modal-slide-over,.fi-modal.fi-width-screen)>.fi-modal-window-ctn>.fi-modal-window .fi-modal-content{flex:1}.fi-modal.fi-modal-slide-over>.fi-modal-window-ctn>.fi-modal-window{margin-inline-start:auto;overflow-y:auto}.fi-modal.fi-modal-slide-over>.fi-modal-window-ctn>.fi-modal-window.fi-transition-enter-start,.fi-modal.fi-modal-slide-over>.fi-modal-window-ctn>.fi-modal-window.fi-transition-leave-end{--tw-translate-x:100%;translate:var(--tw-translate-x)var(--tw-translate-y)}:is(.fi-modal.fi-modal-slide-over>.fi-modal-window-ctn>.fi-modal-window.fi-transition-enter-start,.fi-modal.fi-modal-slide-over>.fi-modal-window-ctn>.fi-modal-window.fi-transition-leave-end):where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-translate-x:-100%;translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-modal.fi-modal-slide-over>.fi-modal-window-ctn>.fi-modal-window.fi-transition-enter-end,.fi-modal.fi-modal-slide-over>.fi-modal-window-ctn>.fi-modal-window.fi-transition-leave-start{--tw-translate-x:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-modal.fi-modal-slide-over>.fi-modal-window-ctn>.fi-modal-window .fi-modal-header{column-gap:calc(var(--spacing)*3)}.fi-modal.fi-modal-slide-over>.fi-modal-window-ctn>.fi-modal-window .fi-modal-icon-bg{margin-block:calc(var(--spacing)*-2);padding:calc(var(--spacing)*2);margin-inline-start:calc(var(--spacing)*-2)}.fi-modal.fi-modal-slide-over>.fi-modal-window-ctn>.fi-modal-window .fi-modal-close-btn{inset-inline-end:calc(var(--spacing)*6);top:calc(var(--spacing)*6)}.fi-modal:not(.fi-modal-slide-over):not(.fi-width-screen):not(.fi-modal-has-sticky-header):not(.fi-modal-has-sticky-footer)>.fi-modal-window-ctn{overflow-y:auto}:is(.fi-modal:not(.fi-modal-slide-over):not(.fi-width-screen).fi-modal-has-sticky-header,.fi-modal:not(.fi-modal-slide-over):not(.fi-width-screen).fi-modal-has-sticky-footer)>.fi-modal-window-ctn>.fi-modal-window{max-height:calc(100dvh - 2rem);overflow-y:auto}.fi-modal:not(.fi-modal-slide-over)>.fi-modal-window-ctn>.fi-modal-window.fi-transition-enter-start,.fi-modal:not(.fi-modal-slide-over)>.fi-modal-window-ctn>.fi-modal-window.fi-transition-leave-end{--tw-scale-x:95%;--tw-scale-y:95%;--tw-scale-z:95%;scale:var(--tw-scale-x)var(--tw-scale-y);opacity:0}.fi-modal:not(.fi-modal-slide-over)>.fi-modal-window-ctn>.fi-modal-window.fi-transition-enter-end,.fi-modal:not(.fi-modal-slide-over)>.fi-modal-window-ctn>.fi-modal-window.fi-transition-leave-start{--tw-scale-x:100%;--tw-scale-y:100%;--tw-scale-z:100%;scale:var(--tw-scale-x)var(--tw-scale-y);opacity:1}.fi-modal:not(.fi-modal-slide-over)>.fi-modal-window-ctn>.fi-modal-window .fi-modal-close-btn{inset-inline-end:calc(var(--spacing)*4);top:calc(var(--spacing)*4)}.fi-modal.fi-align-start:not(.fi-modal-has-sticky-header)>.fi-modal-window-ctn>.fi-modal-window-has-icon .fi-modal-content,.fi-modal.fi-align-start:not(.fi-modal-has-sticky-header)>.fi-modal-window-ctn>.fi-modal-window-has-icon .fi-modal-footer:not(.fi-align-center){padding-inline-start:5.25rem;padding-inline-end:calc(var(--spacing)*6)}.fi-modal:not(.fi-align-start)>.fi-modal-window-ctn>.fi-modal-window .fi-modal-content,.fi-modal:not(.fi-align-start)>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer{padding-inline:calc(var(--spacing)*6)}.fi-modal>.fi-modal-close-overlay{inset:calc(var(--spacing)*0);z-index:40;background-color:var(--gray-950);position:fixed}@supports (color:color-mix(in lab, red, red)){.fi-modal>.fi-modal-close-overlay{background-color:color-mix(in oklab,var(--gray-950)50%,transparent)}}.fi-modal>.fi-modal-close-overlay{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:.3s;transition-duration:.3s}.fi-modal>.fi-modal-close-overlay:where(.dark,.dark *){background-color:var(--gray-950)}@supports (color:color-mix(in lab, red, red)){.fi-modal>.fi-modal-close-overlay:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-950)75%,transparent)}}.fi-modal.fi-modal-open:has(~.fi-modal.fi-modal-open)>.fi-modal-close-overlay{opacity:0}.fi-modal.fi-modal-open~.fi-modal.fi-modal-open>.fi-modal-close-overlay,.fi-modal.fi-modal-open~.fi-modal.fi-modal-open>.fi-modal-window-ctn{z-index:50}.fi-modal>.fi-modal-window-ctn{inset:calc(var(--spacing)*0);z-index:40;grid-template-rows:1fr auto 1fr;justify-items:center;min-height:100%;display:grid;position:fixed}@media (min-width:40rem){.fi-modal>.fi-modal-window-ctn{grid-template-rows:1fr auto 3fr}}.fi-modal>.fi-modal-window-ctn.fi-clickable{cursor:pointer}.fi-modal:not(.fi-modal-slide-over):not(.fi-width-screen)>.fi-modal-window-ctn{padding:calc(var(--spacing)*4)}.fi-modal:not(.fi-modal-slide-over):not(.fi-width-screen)>.fi-modal-window-ctn .fi-modal-window{border-radius:var(--radius-xl);margin-inline:auto}.fi-modal:not(.fi-modal-slide-over):not(.fi-width-screen).fi-modal-has-sticky-header>.fi-modal-window-ctn>.fi-modal-window>.fi-modal-header{border-top-left-radius:var(--radius-xl);border-top-right-radius:var(--radius-xl)}.fi-modal:not(.fi-modal-slide-over):not(.fi-width-screen).fi-modal-has-sticky-footer>.fi-modal-window-ctn>.fi-modal-window>.fi-modal-footer{border-bottom-right-radius:var(--radius-xl);border-bottom-left-radius:var(--radius-xl)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window{pointer-events:auto;cursor:default;background-color:var(--color-white);--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);width:100%;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent);flex-direction:column;grid-row-start:2;display:flex;position:relative}.fi-modal>.fi-modal-window-ctn>.fi-modal-window:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-modal>.fi-modal-window-ctn>.fi-modal-window:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-header{padding-inline:calc(var(--spacing)*6);padding-top:calc(var(--spacing)*6);display:flex}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-header.fi-vertical-align-center{align-items:center}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-heading{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-heading:where(.dark,.dark *){color:var(--color-white)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-description{margin-top:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-description:where(.dark,.dark *){color:var(--gray-400)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-content{row-gap:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*6);flex-direction:column;display:flex}:is(.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-align-start,.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-align-left) .fi-modal-header{column-gap:calc(var(--spacing)*5)}:is(.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-align-start,.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-align-left) .fi-modal-icon-bg{padding:calc(var(--spacing)*2)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-align-center .fi-modal-header{text-align:center;flex-direction:column}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-align-center .fi-modal-icon-ctn{margin-bottom:calc(var(--spacing)*5);justify-content:center;align-items:center;display:flex}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-align-center .fi-modal-icon-bg{padding:calc(var(--spacing)*3)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-hidden{display:none}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-xs{max-width:var(--container-xs)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-sm{max-width:var(--container-sm)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-md{max-width:var(--container-md)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-lg{max-width:var(--container-lg)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-xl{max-width:var(--container-xl)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-2xl{max-width:var(--container-2xl)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-3xl{max-width:var(--container-3xl)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-4xl{max-width:var(--container-4xl)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-5xl{max-width:var(--container-5xl)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-6xl{max-width:var(--container-6xl)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-7xl{max-width:var(--container-7xl)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-full{max-width:100%}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-min{max-width:min-content}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-max{max-width:max-content}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-fit{max-width:fit-content}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-prose{max-width:65ch}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-screen-sm{max-width:var(--breakpoint-sm)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-screen-md{max-width:var(--breakpoint-md)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-screen-lg{max-width:var(--breakpoint-lg)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-screen-xl{max-width:var(--breakpoint-xl)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-screen-2xl{max-width:var(--breakpoint-2xl)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-width-screen{inset:calc(var(--spacing)*0);position:fixed}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-transition-enter,.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-transition-leave{--tw-duration:.3s;transition-duration:.3s}.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-modal-window-has-close-btn.fi-align-center:not(.fi-modal-window-has-icon) .fi-modal-heading{margin-inline-start:calc(var(--spacing)*6)}:is(.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-modal-window-has-close-btn:not(.fi-modal-window-has-icon),.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-modal-window-has-close-btn.fi-align-start,.fi-modal>.fi-modal-window-ctn>.fi-modal-window.fi-modal-window-has-close-btn.fi-align-left) .fi-modal-heading{margin-inline-end:calc(var(--spacing)*6)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-close-btn{position:absolute}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer{width:100%}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer .fi-modal-footer-actions{gap:calc(var(--spacing)*3)}:is(.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer.fi-align-start,.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer.fi-align-left) .fi-modal-footer-actions{flex-wrap:wrap;align-items:center;display:flex}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer.fi-align-center{padding-inline:calc(var(--spacing)*6)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer.fi-align-center .fi-modal-footer-actions{flex-direction:column-reverse;display:flex}:is(.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer.fi-align-end,.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer.fi-align-right) .fi-modal-footer-actions{flex-flow:row-reverse wrap;align-items:center;display:flex}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-icon-bg{background-color:var(--gray-100);border-radius:3.40282e38px}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-icon-bg:where(.dark,.dark *){background-color:var(--gray-500)}@supports (color:color-mix(in lab, red, red)){.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-icon-bg:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-500)20%,transparent)}}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-icon-bg>.fi-icon{color:var(--gray-500)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-icon-bg>.fi-icon:where(.dark,.dark *){color:var(--gray-400)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-icon-bg.fi-color{background-color:var(--color-100)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-icon-bg.fi-color:where(.dark,.dark *){background-color:var(--color-500)}@supports (color:color-mix(in lab, red, red)){.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-icon-bg.fi-color:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-500)20%,transparent)}}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-icon-bg.fi-color>.fi-icon{color:var(--color-600)}.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-icon-bg.fi-color>.fi-icon:where(.dark,.dark *){color:var(--color-400)}.fi-modal.fi-modal-has-sticky-header>.fi-modal-window-ctn>.fi-modal-window>.fi-modal-header{top:calc(var(--spacing)*0);z-index:10;border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200);background-color:var(--color-white);padding-bottom:calc(var(--spacing)*6);position:sticky}.fi-modal.fi-modal-has-sticky-header>.fi-modal-window-ctn>.fi-modal-window>.fi-modal-header:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-modal.fi-modal-has-sticky-header>.fi-modal-window-ctn>.fi-modal-window>.fi-modal-header:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-modal.fi-modal-has-sticky-header>.fi-modal-window-ctn>.fi-modal-window>.fi-modal-header:where(.dark,.dark *){background-color:var(--gray-900)}.fi-modal.fi-modal-has-sticky-header>.fi-modal-window-ctn>.fi-modal-window .fi-modal-content,.fi-modal.fi-modal-has-sticky-header>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer{padding-inline:calc(var(--spacing)*6)}.fi-modal.fi-modal-has-sticky-footer>.fi-modal-window-ctn>.fi-modal-window>.fi-modal-footer{bottom:calc(var(--spacing)*0);border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--gray-200);background-color:var(--color-white);padding-block:calc(var(--spacing)*5);position:sticky}.fi-modal.fi-modal-has-sticky-footer>.fi-modal-window-ctn>.fi-modal-window>.fi-modal-footer:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-modal.fi-modal-has-sticky-footer>.fi-modal-window-ctn>.fi-modal-window>.fi-modal-footer:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-modal.fi-modal-has-sticky-footer>.fi-modal-window-ctn>.fi-modal-window>.fi-modal-footer:where(.dark,.dark *){background-color:var(--gray-900)}.fi-modal:not(.fi-modal-has-sticky-footer)>.fi-modal-window-ctn>.fi-modal-window:not(.fi-modal-window-has-content) .fi-modal-footer{margin-top:calc(var(--spacing)*6)}.fi-modal:not(.fi-modal-has-sticky-footer)>.fi-modal-window-ctn>.fi-modal-window:not(.fi-modal-window-has-content):not(.fi-modal-window-has-footer) .fi-modal-header,.fi-modal:not(.fi-modal-has-sticky-footer)>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer{padding-bottom:calc(var(--spacing)*6)}.fi-modal:not(.fi-modal-has-sticky-header)>.fi-modal-window-ctn>.fi-modal-window:not(.fi-modal-window-has-icon) .fi-modal-content,.fi-modal:not(.fi-modal-has-sticky-header)>.fi-modal-window-ctn>.fi-modal-window:not(.fi-modal-window-has-icon) .fi-modal-footer{padding-inline:calc(var(--spacing)*6)}.fi-modal.fi-modal-slide-over>.fi-modal-window-ctn>.fi-modal-window>.fi-modal-footer{margin-top:auto}@supports (container-type:inline-size){.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer.fi-align-center{container-type:inline-size}@container (min-width:24rem){.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer.fi-align-center .fi-modal-footer-actions{grid-template-columns:repeat(auto-fit,minmax(0,1fr));display:grid}}}@supports not (container-type:inline-size){@media (min-width:40rem){.fi-modal>.fi-modal-window-ctn>.fi-modal-window .fi-modal-footer.fi-align-center .fi-modal-footer-actions{grid-template-columns:repeat(auto-fit,minmax(0,1fr));display:grid}}}:scope .fi-modal-trigger{display:flex}.fi-pagination{align-items:center;column-gap:calc(var(--spacing)*3);grid-template-columns:1fr auto 1fr;display:grid}.fi-pagination:empty{display:none}.fi-pagination .fi-pagination-previous-btn{justify-self:flex-start}.fi-pagination .fi-pagination-overview{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-700);display:none}.fi-pagination .fi-pagination-overview:where(.dark,.dark *){color:var(--gray-200)}.fi-pagination .fi-pagination-records-per-page-select-ctn{grid-column-start:2;justify-self:center}.fi-pagination .fi-pagination-records-per-page-select:not(.fi-compact){display:none}.fi-pagination .fi-pagination-next-btn{grid-column-start:3;justify-self:flex-end}.fi-pagination .fi-pagination-items{border-radius:var(--radius-lg);background-color:var(--color-white);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent);justify-self:flex-end;display:none}.fi-pagination .fi-pagination-items:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-pagination .fi-pagination-items:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-pagination .fi-pagination-items:where(.dark,.dark *){--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-pagination .fi-pagination-items:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-pagination .fi-pagination-item{border-inline-style:var(--tw-border-style);border-inline-width:.5px;border-color:var(--gray-200)}.fi-pagination .fi-pagination-item:first-child{border-inline-start-style:var(--tw-border-style);border-inline-start-width:0}.fi-pagination .fi-pagination-item:last-child{border-inline-end-style:var(--tw-border-style);border-inline-end-width:0}.fi-pagination .fi-pagination-item:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-pagination .fi-pagination-item:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-pagination .fi-pagination-item.fi-active .fi-pagination-item-btn{background-color:var(--gray-50)}.fi-pagination .fi-pagination-item.fi-active .fi-pagination-item-btn:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-pagination .fi-pagination-item.fi-active .fi-pagination-item-btn:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-pagination .fi-pagination-item.fi-active .fi-pagination-item-label{color:var(--primary-700)}.fi-pagination .fi-pagination-item.fi-active .fi-pagination-item-label:where(.dark,.dark *){color:var(--primary-400)}.fi-pagination .fi-pagination-item:first-of-type .fi-pagination-item-btn{border-start-start-radius:var(--radius-lg);border-end-start-radius:var(--radius-lg)}.fi-pagination .fi-pagination-item:last-of-type .fi-pagination-item-btn{border-start-end-radius:var(--radius-lg);border-end-end-radius:var(--radius-lg)}.fi-pagination .fi-pagination-item.fi-disabled .fi-pagination-item-label{color:var(--gray-500)}.fi-pagination .fi-pagination-item.fi-disabled .fi-pagination-item-label:where(.dark,.dark *){color:var(--gray-400)}.fi-pagination .fi-pagination-item-btn{padding:calc(var(--spacing)*2);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;--tw-outline-style:none;outline-style:none;transition-duration:75ms;display:flex;position:relative;overflow:hidden}@media (hover:hover){.fi-pagination .fi-pagination-item-btn:enabled:hover{background-color:var(--gray-50)}}.fi-pagination .fi-pagination-item-btn:enabled:focus-visible{z-index:10;--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--primary-600)}@media (hover:hover){.fi-pagination .fi-pagination-item-btn:enabled:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-pagination .fi-pagination-item-btn:enabled:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-pagination .fi-pagination-item-btn:enabled:where(.dark,.dark *):focus-visible{--tw-ring-color:var(--primary-500)}.fi-pagination .fi-pagination-item-btn:hover .fi-icon{color:var(--gray-500)}.fi-pagination .fi-pagination-item-btn:hover .fi-icon:where(.dark,.dark *){color:var(--gray-400)}.fi-pagination .fi-pagination-item-btn .fi-icon{color:var(--gray-400);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}.fi-pagination .fi-pagination-item-btn .fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-pagination .fi-pagination-item-btn .fi-pagination-item-label{padding-inline:calc(var(--spacing)*1.5);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-700)}.fi-pagination .fi-pagination-item-btn .fi-pagination-item-label:where(.dark,.dark *){color:var(--gray-200)}@supports (container-type:inline-size){.fi-pagination{container-type:inline-size}@container (min-width:28rem){.fi-pagination .fi-pagination-records-per-page-select:not(.fi-compact){display:inline}.fi-pagination .fi-pagination-records-per-page-select.fi-compact{display:none}}@container (min-width:56rem){.fi-pagination:not(.fi-simple) .fi-pagination-previous-btn,.fi-pagination:not(.fi-simple) .fi-pagination-next-btn{display:none}.fi-pagination .fi-pagination-overview{display:inline}.fi-pagination .fi-pagination-items{display:flex}}}@supports not (container-type:inline-size){@media (min-width:40rem){.fi-pagination .fi-pagination-records-per-page-select:not(.fi-compact){display:inline}.fi-pagination .fi-pagination-records-per-page-select.fi-compact{display:none}}@media (min-width:48rem){.fi-pagination:not(.fi-simple) .fi-pagination-previous-btn,.fi-pagination:not(.fi-simple) .fi-pagination-next-btn{display:none}.fi-pagination .fi-pagination-overview{display:inline}.fi-pagination .fi-pagination-items{display:flex}}}.fi-section:not(.fi-section-not-contained):not(.fi-divided)>.fi-section-content-ctn>.fi-section-content,.fi-section:not(.fi-section-not-contained).fi-divided>.fi-section-content-ctn>.fi-section-content>*{padding:calc(var(--spacing)*6)}.fi-section:not(.fi-section-not-contained)>.fi-section-content-ctn>.fi-section-footer{border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--gray-200);padding-inline:calc(var(--spacing)*6);padding-block:calc(var(--spacing)*4)}.fi-section:not(.fi-section-not-contained)>.fi-section-content-ctn>.fi-section-footer:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-section:not(.fi-section-not-contained)>.fi-section-content-ctn>.fi-section-footer:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-section:not(.fi-section-not-contained):not(.fi-aside){border-radius:var(--radius-xl);background-color:var(--color-white);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}.fi-section:not(.fi-section-not-contained):not(.fi-aside):where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-section:not(.fi-section-not-contained):not(.fi-aside):where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-section:not(.fi-section-not-contained):not(.fi-aside).fi-compact{border-radius:var(--radius-lg)}.fi-section:not(.fi-section-not-contained):not(.fi-aside).fi-secondary{background-color:var(--gray-50)}.fi-section:not(.fi-section-not-contained):not(.fi-aside).fi-secondary:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-section:not(.fi-section-not-contained):not(.fi-aside).fi-secondary:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-section:not(.fi-section-not-contained):not(.fi-aside)>.fi-section-header{padding-inline:calc(var(--spacing)*6);padding-block:calc(var(--spacing)*4)}.fi-section:not(.fi-section-not-contained):not(.fi-aside).fi-section-has-header:not(.fi-collapsed)>.fi-section-content-ctn{border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--gray-200)}.fi-section:not(.fi-section-not-contained):not(.fi-aside).fi-section-has-header:not(.fi-collapsed)>.fi-section-content-ctn:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-section:not(.fi-section-not-contained):not(.fi-aside).fi-section-has-header:not(.fi-collapsed)>.fi-section-content-ctn:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-section:not(.fi-section-not-contained).fi-aside>.fi-section-content-ctn{border-radius:var(--radius-xl);background-color:var(--color-white);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}@media (min-width:48rem){.fi-section:not(.fi-section-not-contained).fi-aside>.fi-section-content-ctn{grid-column:span 2/span 2}}.fi-section:not(.fi-section-not-contained).fi-aside>.fi-section-content-ctn:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-section:not(.fi-section-not-contained).fi-aside>.fi-section-content-ctn:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-section:not(.fi-section-not-contained).fi-aside.fi-compact>.fi-section-content-ctn{border-radius:var(--radius-lg)}.fi-section:not(.fi-section-not-contained).fi-aside.fi-secondary>.fi-section-content-ctn{background-color:var(--gray-50)}.fi-section:not(.fi-section-not-contained).fi-aside.fi-secondary>.fi-section-content-ctn:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-section:not(.fi-section-not-contained).fi-aside.fi-secondary>.fi-section-content-ctn:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-section:not(.fi-section-not-contained).fi-compact:not(.fi-aside)>.fi-section-header{padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*2.5)}.fi-section:not(.fi-section-not-contained).fi-compact:not(.fi-divided)>.fi-section-content-ctn>.fi-section-content,.fi-section:not(.fi-section-not-contained).fi-compact.fi-divided>.fi-section-content-ctn>.fi-section-content>*{padding:calc(var(--spacing)*4)}.fi-section:not(.fi-section-not-contained).fi-compact>.fi-section-footer{padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*2.5)}@media (min-width:48rem){.fi-section.fi-section-not-contained.fi-aside>.fi-section-content-ctn{grid-column:span 2/span 2}}.fi-section.fi-section-not-contained:not(.fi-aside),.fi-section.fi-section-not-contained:not(.fi-aside)>.fi-section-content-ctn{row-gap:calc(var(--spacing)*4);display:grid}.fi-section.fi-section-not-contained:not(.fi-aside).fi-divided>.fi-section-content-ctn>.fi-section-content>*{padding-block:calc(var(--spacing)*6)}.fi-section.fi-section-not-contained:not(.fi-aside).fi-compact,.fi-section.fi-section-not-contained:not(.fi-aside).fi-compact>.fi-section-content-ctn{row-gap:calc(var(--spacing)*2.5)}.fi-section.fi-section-not-contained:not(.fi-aside).fi-compact.fi-divided>.fi-section-content-ctn>.fi-section-content>*{padding-block:calc(var(--spacing)*4)}.fi-section.fi-divided>.fi-section-content-ctn>.fi-section-content{gap:calc(var(--spacing)*0)}:where(.fi-section.fi-divided>.fi-section-content-ctn>.fi-section-content>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}:where(.fi-section.fi-divided>.fi-section-content-ctn>.fi-section-content:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:where(.fi-section.fi-divided>.fi-section-content-ctn>.fi-section-content:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-section.fi-aside{align-items:flex-start;column-gap:calc(var(--spacing)*6);row-gap:calc(var(--spacing)*4);grid-template-columns:repeat(1,minmax(0,1fr));display:grid}@media (min-width:48rem){.fi-section.fi-aside{grid-template-columns:repeat(3,minmax(0,1fr))}}.fi-section.fi-collapsible>.fi-section-header{cursor:pointer}.fi-section.fi-collapsed>.fi-section-header>.fi-section-collapse-btn{rotate:180deg}.fi-section.fi-collapsed>.fi-section-content-ctn{visibility:hidden;height:calc(var(--spacing)*0);--tw-border-style:none;border-style:none;position:absolute;overflow:hidden}@media (min-width:48rem){.fi-section.fi-section-has-content-before>.fi-section-content-ctn{order:-9999}}.fi-section>.fi-section-header{align-items:flex-start;gap:calc(var(--spacing)*3);display:flex}.fi-section>.fi-section-header>.fi-icon{color:var(--gray-400);flex-shrink:0}.fi-section>.fi-section-header>.fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-section>.fi-section-header>.fi-icon.fi-color{color:var(--color-500)}.fi-section>.fi-section-header>.fi-icon.fi-color:where(.dark,.dark *){color:var(--color-400)}.fi-section>.fi-section-header>.fi-icon.fi-size-sm{margin-top:calc(var(--spacing)*1)}.fi-section>.fi-section-header>.fi-icon.fi-size-md{margin-top:calc(var(--spacing)*.5)}.fi-section>.fi-section-header>.fi-section-header-after-ctn{align-self:center}.fi-section>.fi-section-header>.fi-section-header-after-ctn .fi-sc-text:not(.fi-section-header-after-ctn .fi-dropdown-panel *),.fi-section>.fi-section-header>.fi-section-header-after-ctn .fi-link:not(.fi-section-header-after-ctn .fi-dropdown-panel *){--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6)}.fi-section>.fi-section-header>.fi-section-header-after-ctn .fi-btn:not(.fi-section-header-after-ctn .fi-dropdown-panel *).fi-size-xs{margin-block:calc(var(--spacing)*-.5)}.fi-section>.fi-section-header>.fi-section-header-after-ctn .fi-btn:not(.fi-section-header-after-ctn .fi-dropdown-panel *).fi-size-sm{margin-block:calc(var(--spacing)*-1)}.fi-section>.fi-section-header>.fi-section-header-after-ctn .fi-btn:not(.fi-section-header-after-ctn .fi-dropdown-panel *).fi-size-md{margin-block:calc(var(--spacing)*-1.5)}.fi-section>.fi-section-header>.fi-section-header-after-ctn .fi-btn:not(.fi-section-header-after-ctn .fi-dropdown-panel *).fi-size-lg{margin-block:calc(var(--spacing)*-2)}.fi-section>.fi-section-header>.fi-section-header-after-ctn .fi-btn:not(.fi-section-header-after-ctn .fi-dropdown-panel *).fi-size-xl{margin-block:calc(var(--spacing)*-2.5)}.fi-section>.fi-section-header>.fi-section-collapse-btn{margin-block:calc(var(--spacing)*-1.5);flex-shrink:0}.fi-section .fi-section-header-text-ctn{row-gap:calc(var(--spacing)*1);flex:1;display:grid}.fi-section .fi-section-header-heading{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950)}.fi-section .fi-section-header-heading:where(.dark,.dark *){color:var(--color-white)}.fi-section .fi-section-header-description{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));overflow-wrap:break-word;color:var(--gray-500);overflow:hidden}.fi-section .fi-section-header-description:where(.dark,.dark *){color:var(--gray-400)}.fi-tabs{column-gap:calc(var(--spacing)*1);max-width:100%;display:flex;overflow-x:auto}.fi-tabs.fi-contained{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2.5)}.fi-tabs.fi-contained:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-tabs.fi-contained:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-tabs:not(.fi-contained){border-radius:var(--radius-xl);background-color:var(--color-white);padding:calc(var(--spacing)*2);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent);margin-inline:auto}.fi-tabs:not(.fi-contained):where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-tabs:not(.fi-contained):where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-tabs.fi-vertical{column-gap:calc(var(--spacing)*0);row-gap:calc(var(--spacing)*1);flex-direction:column;overflow:hidden auto}.fi-tabs.fi-vertical.fi-contained{border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px;border-bottom-style:var(--tw-border-style);border-bottom-width:0}.fi-tabs.fi-vertical:not(.fi-contained){margin-inline:calc(var(--spacing)*0)}.fi-tabs.fi-vertical .fi-tabs-item{justify-content:flex-start}.fi-tabs-item{justify-content:center;align-items:center;column-gap:calc(var(--spacing)*2);border-radius:var(--radius-lg);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);white-space:nowrap;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;--tw-outline-style:none;outline-style:none;transition-duration:75ms;display:flex}@media (hover:hover){.fi-tabs-item:hover{background-color:var(--gray-50)}}.fi-tabs-item:focus-visible{background-color:var(--gray-50)}@media (hover:hover){.fi-tabs-item:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-tabs-item:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-tabs-item:where(.dark,.dark *):focus-visible{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-tabs-item:where(.dark,.dark *):focus-visible{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-tabs-item.fi-active{background-color:var(--gray-50)}.fi-tabs-item.fi-active:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-tabs-item.fi-active:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-tabs-item.fi-active .fi-tabs-item-label,.fi-tabs-item.fi-active>.fi-icon{color:var(--primary-700)}:is(.fi-tabs-item.fi-active .fi-tabs-item-label,.fi-tabs-item.fi-active>.fi-icon):where(.dark,.dark *){color:var(--primary-400)}.fi-tabs-item :not(.fi-active):hover .fi-tabs-item-label,.fi-tabs-item :not(.fi-active):hover .fi-tabs-item-label:is(:where(.group):focus-visible *){color:var(--gray-700)}.fi-tabs-item :not(.fi-active):hover .fi-tabs-item-label:where(.dark,.dark *),.fi-tabs-item :not(.fi-active):hover .fi-tabs-item-label:where(.dark,.dark *):is(:where(.group):focus-visible *){color:var(--gray-200)}.fi-tabs-item :not(.fi-active):focus-visible .fi-tabs-item-label{color:var(--gray-700)}.fi-tabs-item :not(.fi-active):focus-visible .fi-tabs-item-label:where(.dark,.dark *){color:var(--gray-200)}.fi-tabs-item .fi-tabs-item-label{color:var(--gray-500);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}.fi-tabs-item .fi-tabs-item-label:where(.dark,.dark *){color:var(--gray-400)}.fi-tabs-item>.fi-icon{color:var(--gray-400);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;flex-shrink:0;transition-duration:75ms}.fi-tabs-item>.fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-tabs-item .fi-badge{width:max-content}.fi-tabs-item .fi-tabs-item-badge-placeholder{color:var(--gray-400);align-items:center;display:flex}.fi-tabs-item .fi-tabs-item-badge-placeholder:where(.dark,.dark *){color:var(--gray-500)}.fi-toggle{height:calc(var(--spacing)*6);width:calc(var(--spacing)*11);cursor:pointer;border-style:var(--tw-border-style);background-color:var(--gray-200);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:.2s;--tw-ease:var(--ease-in-out);transition-duration:.2s;transition-timing-function:var(--ease-in-out);--tw-outline-style:none;border-width:2px;border-color:#0000;border-radius:3.40282e38px;outline-style:none;flex-shrink:0;display:inline-flex;position:relative}.fi-toggle:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--primary-600);--tw-ring-offset-width:1px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.fi-toggle:disabled{pointer-events:none;opacity:.7}.fi-toggle:where(.dark,.dark *){background-color:var(--gray-700)}.fi-toggle:where(.dark,.dark *):focus-visible{--tw-ring-color:var(--primary-500);--tw-ring-offset-color:var(--gray-900)}.fi-toggle:disabled,.fi-toggle[disabled]{pointer-events:none;opacity:.7}.fi-toggle.fi-color{background-color:var(--bg)}.fi-toggle.fi-color:where(.dark,.dark *){background-color:var(--dark-bg)}.fi-toggle.fi-color .fi-icon{color:var(--text)}.fi-toggle.fi-hidden{display:none}.fi-toggle>:first-child{pointer-events:none;width:calc(var(--spacing)*5);height:calc(var(--spacing)*5);transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,);background-color:var(--color-white);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:.2s;--tw-ease:var(--ease-in-out);transition-duration:.2s;transition-timing-function:var(--ease-in-out);border-radius:3.40282e38px;display:inline-block;position:relative}.fi-toggle>:first-child>*{inset:calc(var(--spacing)*0);width:100%;height:100%;transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));justify-content:center;align-items:center;display:flex;position:absolute}.fi-toggle .fi-icon{color:var(--gray-400)}.fi-toggle .fi-icon:where(.dark,.dark *){color:var(--gray-700)}.fi-toggle.fi-toggle-on>:first-child{--tw-translate-x:calc(var(--spacing)*5);translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-toggle.fi-toggle-on>:first-child:where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-translate-x:calc(var(--spacing)*-5);translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-toggle.fi-toggle-on>:first-child>:first-child{opacity:0;--tw-duration:.1s;--tw-ease:var(--ease-out);transition-duration:.1s;transition-timing-function:var(--ease-out)}.fi-toggle.fi-toggle-on>:first-child>:last-child{opacity:1;--tw-duration:.2s;--tw-ease:var(--ease-in);transition-duration:.2s;transition-timing-function:var(--ease-in)}.fi-toggle.fi-toggle-off>:first-child{--tw-translate-x:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-toggle.fi-toggle-off>:first-child>:first-child{opacity:1;--tw-duration:.2s;--tw-ease:var(--ease-in);transition-duration:.2s;transition-timing-function:var(--ease-in)}.fi-toggle.fi-toggle-off>:first-child>:last-child{opacity:0;--tw-duration:.1s;--tw-ease:var(--ease-out);transition-duration:.1s;transition-timing-function:var(--ease-out)}.fi-sortable-ghost{opacity:.3}.fi-ac{gap:calc(var(--spacing)*3)}.fi-ac:not(.fi-width-full){flex-wrap:wrap;align-items:center;display:flex}.fi-ac:not(.fi-width-full).fi-align-start,.fi-ac:not(.fi-width-full).fi-align-left{justify-content:flex-start}.fi-ac:not(.fi-width-full).fi-align-center{justify-content:center}.fi-ac:not(.fi-width-full).fi-align-end,.fi-ac:not(.fi-width-full).fi-align-right{flex-direction:row-reverse}.fi-ac:not(.fi-width-full).fi-align-between,.fi-ac:not(.fi-width-full).fi-align-justify{justify-content:space-between}.fi-ac.fi-width-full{grid-template-columns:repeat(auto-fit,minmax(0,1fr));display:grid}.CodeMirror{color:#000;direction:ltr;height:300px;font-family:monospace}.CodeMirror-lines{padding:4px 0}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{white-space:nowrap;background-color:#f7f7f7;border-right:1px solid #ddd}.CodeMirror-linenumber{text-align:right;color:#999;white-space:nowrap;min-width:20px;padding:0 3px 0 5px}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{background:#7e7;width:auto;border:0!important}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor .CodeMirror-line::selection{background:0 0}.cm-fat-cursor .CodeMirror-line>span::selection{background:0 0}.cm-fat-cursor .CodeMirror-line>span>span::selection{background:0 0}.cm-fat-cursor .CodeMirror-line::-moz-selection{background:0 0}.cm-fat-cursor .CodeMirror-line>span::-moz-selection{background:0 0}.cm-fat-cursor .CodeMirror-line>span>span::-moz-selection{background:0 0}.cm-fat-cursor{caret-color:#0000}@keyframes blink{50%{background-color:#0000}}.cm-tab{-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;display:inline-block}.CodeMirror-rulers{position:absolute;inset:-50px 0 0;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;position:absolute;top:0;bottom:0}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-type,.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-s-default .cm-error,.cm-invalidchar{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.CodeMirror-matchingtag{background:#ff96004d}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{background:#fff;position:relative;overflow:hidden}.CodeMirror-scroll{z-index:0;outline:0;height:100%;margin-bottom:-50px;margin-right:-50px;padding-bottom:50px;position:relative;overflow:scroll!important}.CodeMirror-sizer{border-right:50px solid #0000;position:relative}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{z-index:6;outline:0;display:none;position:absolute}.CodeMirror-vscrollbar{top:0;right:0;overflow:hidden scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow:scroll hidden}.CodeMirror-scrollbar-filler{bottom:0;right:0}.CodeMirror-gutter-filler{bottom:0;left:0}.CodeMirror-gutters{z-index:3;min-height:100%;position:absolute;top:0;left:0}.CodeMirror-gutter{white-space:normal;vertical-align:top;height:100%;margin-bottom:-50px;display:inline-block}.CodeMirror-gutter-wrapper{z-index:4;position:absolute;background:0 0!important;border:none!important}.CodeMirror-gutter-background{z-index:4;position:absolute;top:0;bottom:0}.CodeMirror-gutter-elt{cursor:default;z-index:4;position:absolute}.CodeMirror-gutter-wrapper ::selection{background-color:#0000}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{font-family:inherit;font-size:inherit;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:contextual;font-variant-ligatures:contextual;background:0 0;border-width:0;border-radius:0;margin:0;position:relative;overflow:visible}.CodeMirror-wrap pre.CodeMirror-line,.CodeMirror-wrap pre.CodeMirror-line-like{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{z-index:0;position:absolute;inset:0}.CodeMirror-linewidget{z-index:2;padding:.1px;position:relative}.CodeMirror-code{outline:0}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{box-sizing:content-box}.CodeMirror-measure{visibility:hidden;width:100%;height:0;position:absolute;overflow:hidden}.CodeMirror-cursor{pointer-events:none;position:absolute}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;z-index:3;position:relative}div.CodeMirror-dragcursors,.CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection{background:#d7d4f0}.CodeMirror-line>span::selection{background:#d7d4f0}.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection{background:#d7d4f0}.CodeMirror-line>span::-moz-selection{background:#d7d4f0}.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ff06}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:""}span.CodeMirror-selectedtext{background:0 0}.EasyMDEContainer{display:block}.CodeMirror-rtl pre{direction:rtl}.EasyMDEContainer.sided--no-fullscreen{flex-flow:wrap;display:flex}.EasyMDEContainer .CodeMirror{box-sizing:border-box;height:auto;font:inherit;z-index:0;word-wrap:break-word;border:1px solid #ced4da;border-bottom-right-radius:4px;border-bottom-left-radius:4px;padding:10px}.EasyMDEContainer .CodeMirror-scroll{cursor:text}.EasyMDEContainer .CodeMirror-fullscreen{z-index:8;background:#fff;height:auto;inset:50px 0 0;border-right:none!important;border-bottom-right-radius:0!important;position:fixed!important}.EasyMDEContainer .CodeMirror-sided{width:50%!important}.EasyMDEContainer.sided--no-fullscreen .CodeMirror-sided{border-bottom-right-radius:0;flex:auto;position:relative;border-right:none!important}.EasyMDEContainer .CodeMirror-placeholder{opacity:.5}.EasyMDEContainer .CodeMirror-focused .CodeMirror-selected{background:#d9d9d9}.editor-toolbar{-webkit-user-select:none;user-select:none;-o-user-select:none;border-top:1px solid #ced4da;border-left:1px solid #ced4da;border-right:1px solid #ced4da;border-top-left-radius:4px;border-top-right-radius:4px;padding:9px 10px;position:relative}.editor-toolbar.fullscreen{box-sizing:border-box;opacity:1;z-index:9;background:#fff;border:0;width:100%;height:50px;padding-top:10px;padding-bottom:10px;position:fixed;top:0;left:0}.editor-toolbar.fullscreen:before{background:-o-linear-gradient(270deg,#fff 0,#fff0 100%);background:-ms-linear-gradient(left,#fff 0,#fff0 100%);background:linear-gradient(90deg,#fff 0,#fff0);width:20px;height:50px;margin:0;padding:0;position:fixed;top:0;left:0}.editor-toolbar.fullscreen:after{background:-o-linear-gradient(270deg,#fff0 0,#fff 100%);background:-ms-linear-gradient(left,#fff0 0,#fff 100%);background:linear-gradient(90deg,#fff0 0,#fff);width:20px;height:50px;margin:0;padding:0;position:fixed;top:0;right:0}.EasyMDEContainer.sided--no-fullscreen .editor-toolbar{width:100%}.editor-toolbar .easymde-dropdown,.editor-toolbar button{text-align:center;cursor:pointer;background:0 0;border:1px solid #0000;border-radius:3px;height:30px;margin:0;padding:0;display:inline-block;text-decoration:none!important}.editor-toolbar button{white-space:nowrap;min-width:30px;padding:0 6px;font-weight:700}.editor-toolbar button.active,.editor-toolbar button:hover{background:#fcfcfc;border-color:#95a5a6}.editor-toolbar i.separator{color:#0000;text-indent:-10px;border-left:1px solid #d9d9d9;border-right:1px solid #fff;width:0;margin:0 6px;display:inline-block}.editor-toolbar button:after{vertical-align:text-bottom;font-family:Arial,Helvetica Neue,Helvetica,sans-serif;font-size:65%;position:relative;top:2px}.editor-toolbar button.heading-1:after{content:"1"}.editor-toolbar button.heading-2:after{content:"2"}.editor-toolbar button.heading-3:after{content:"3"}.editor-toolbar button.heading-bigger:after{content:"▲"}.editor-toolbar button.heading-smaller:after{content:"▼"}.editor-toolbar.disabled-for-preview button:not(.no-disable){opacity:.6;pointer-events:none}@media only screen and (max-width:700px){.editor-toolbar i.no-mobile{display:none}}.editor-statusbar{color:#959694;text-align:right;padding:8px 10px;font-size:12px}.EasyMDEContainer.sided--no-fullscreen .editor-statusbar{width:100%}.editor-statusbar span{min-width:4em;margin-left:1em;display:inline-block}.editor-statusbar .lines:before{content:"lines: "}.editor-statusbar .words:before{content:"words: "}.editor-statusbar .characters:before{content:"characters: "}.editor-preview-full{z-index:7;box-sizing:border-box;width:100%;height:100%;display:none;position:absolute;top:0;left:0;overflow:auto}.editor-preview-side{z-index:9;box-sizing:border-box;word-wrap:break-word;border:1px solid #ddd;width:50%;display:none;position:fixed;top:50px;bottom:0;right:0;overflow:auto}.editor-preview-active-side{display:block}.EasyMDEContainer.sided--no-fullscreen .editor-preview-active-side{flex:auto;height:auto;position:static}.editor-preview-active{display:block}.editor-preview{background:#fafafa;padding:10px}.editor-preview>p{margin-top:0}.editor-preview pre{background:#eee;margin-bottom:10px}.editor-preview table td,.editor-preview table th{border:1px solid #ddd;padding:5px}.cm-s-easymde .cm-tag{color:#63a35c}.cm-s-easymde .cm-attribute{color:#795da3}.cm-s-easymde .cm-string{color:#183691}.cm-s-easymde .cm-header-1{font-size:calc(1.375rem + 1.5vw)}.cm-s-easymde .cm-header-2{font-size:calc(1.325rem + .9vw)}.cm-s-easymde .cm-header-3{font-size:calc(1.3rem + .6vw)}.cm-s-easymde .cm-header-4{font-size:calc(1.275rem + .3vw)}.cm-s-easymde .cm-header-5{font-size:1.25rem}.cm-s-easymde .cm-header-6{font-size:1rem}.cm-s-easymde .cm-header-1,.cm-s-easymde .cm-header-2,.cm-s-easymde .cm-header-3,.cm-s-easymde .cm-header-4,.cm-s-easymde .cm-header-5,.cm-s-easymde .cm-header-6{margin-bottom:.5rem;line-height:1.2}.cm-s-easymde .cm-comment{background:#0000000d;border-radius:2px}.cm-s-easymde .cm-link{color:#7f8c8d}.cm-s-easymde .cm-url{color:#aab2b3}.cm-s-easymde .cm-quote{color:#7f8c8d;font-style:italic}.editor-toolbar .easymde-dropdown{background:linear-gradient(to bottom right,#fff 0 84%,#333 50% 100%);border:1px solid #fff;border-radius:0;position:relative}.editor-toolbar .easymde-dropdown:hover{background:linear-gradient(to bottom right,#fff 0 84%,#333 50% 100%)}.easymde-dropdown-content{visibility:hidden;z-index:2;background-color:#f9f9f9;padding:8px;display:block;position:absolute;top:30px;box-shadow:0 8px 16px #0003}.easymde-dropdown:active .easymde-dropdown-content,.easymde-dropdown:focus .easymde-dropdown-content,.easymde-dropdown:focus-within .easymde-dropdown-content{visibility:visible}.easymde-dropdown-content button{display:block}span[data-img-src]:after{content:"";background-image:var(--bg-image);max-width:100%;height:0;max-height:100%;padding-top:var(--height);width:var(--width);background-repeat:no-repeat;background-size:contain;display:block}.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word){background:#ff000026}.cropper-container{-webkit-touch-callout:none;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;user-select:none;direction:ltr;font-size:0;line-height:0;position:relative}.cropper-container img{backface-visibility:hidden;image-orientation:0deg;width:100%;height:100%;display:block;min-width:0!important;max-width:none!important;min-height:0!important;max-height:none!important}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{position:absolute;inset:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{opacity:0;background-color:#fff}.cropper-modal{opacity:.5;background-color:#000}.cropper-view-box{outline:1px solid #3399ffbf;width:100%;height:100%;display:block;overflow:hidden}.cropper-dashed{opacity:.5;border:0 dashed #eee;display:block;position:absolute}.cropper-dashed.dashed-h{border-top-width:1px;border-bottom-width:1px;width:100%;height:33.3333%;top:33.3333%;left:0}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;width:33.3333%;height:100%;top:0;left:33.3333%}.cropper-center{opacity:.75;width:0;height:0;display:block;position:absolute;top:50%;left:50%}.cropper-center:after,.cropper-center:before{content:" ";background-color:#eee;display:block;position:absolute}.cropper-center:before{width:7px;height:1px;top:0;left:-3px}.cropper-center:after{width:1px;height:7px;top:-3px;left:0}.cropper-face,.cropper-line,.cropper-point{opacity:.1;width:100%;height:100%;display:block;position:absolute}.cropper-face{background-color:#fff;top:0;left:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;width:5px;top:0;right:-3px}.cropper-line.line-n{cursor:ns-resize;height:5px;top:-3px;left:0}.cropper-line.line-w{cursor:ew-resize;width:5px;top:0;left:-3px}.cropper-line.line-s{cursor:ns-resize;height:5px;bottom:-3px;left:0}.cropper-point{opacity:.75;background-color:#39f;width:5px;height:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;top:50%;right:-3px}.cropper-point.point-n{cursor:ns-resize;margin-left:-3px;top:-3px;left:50%}.cropper-point.point-w{cursor:ew-resize;margin-top:-3px;top:50%;left:-3px}.cropper-point.point-s{cursor:s-resize;margin-left:-3px;bottom:-3px;left:50%}.cropper-point.point-ne{cursor:nesw-resize;top:-3px;right:-3px}.cropper-point.point-nw{cursor:nwse-resize;top:-3px;left:-3px}.cropper-point.point-sw{cursor:nesw-resize;bottom:-3px;left:-3px}.cropper-point.point-se{cursor:nwse-resize;opacity:1;width:20px;height:20px;bottom:-3px;right:-3px}@media (min-width:768px){.cropper-point.point-se{width:15px;height:15px}}@media (min-width:992px){.cropper-point.point-se{width:10px;height:10px}}@media (min-width:1200px){.cropper-point.point-se{opacity:.75;width:5px;height:5px}}.cropper-point.point-se:before{content:" ";opacity:0;background-color:#39f;width:200%;height:200%;display:block;position:absolute;bottom:-50%;right:-50%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC)}.cropper-hide{width:0;height:0;display:block;position:absolute}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}.filepond--assistant{clip:rect(1px,1px,1px,1px);clip-path:inset(50%);white-space:nowrap;border:0;width:1px;height:1px;padding:0;position:absolute;overflow:hidden}.filepond--browser.filepond--browser{opacity:0;width:calc(100% - 2em);margin:0;padding:0;font-size:0;position:absolute;top:1.75em;left:1em}.filepond--data{visibility:hidden;pointer-events:none;contain:strict;border:none;width:0;height:0;margin:0;padding:0;position:absolute}.filepond--drip{opacity:.1;pointer-events:none;background:#00000003;border-radius:.5em;position:absolute;inset:0;overflow:hidden}.filepond--drip-blob{transform-origin:50%;background:#292625;border-radius:50%;width:8em;height:8em;margin-top:-4em;margin-left:-4em}.filepond--drip-blob,.filepond--drop-label{will-change:transform,opacity;position:absolute;top:0;left:0}.filepond--drop-label{color:#4f4f4f;-webkit-user-select:none;user-select:none;justify-content:center;align-items:center;height:0;margin:0;display:flex;right:0}.filepond--drop-label.filepond--drop-label label{margin:0;padding:.5em;display:block}.filepond--drop-label label{cursor:default;text-align:center;font-size:.875em;font-weight:400;line-height:1.5}.filepond--label-action{-webkit-text-decoration-skip:ink;-webkit-text-decoration-skip-ink:auto;text-decoration-skip-ink:auto;cursor:pointer;-webkit-text-decoration:underline #a7a4a4;text-decoration:underline #a7a4a4}.filepond--root[data-disabled] .filepond--drop-label label{opacity:.5}.filepond--file-action-button.filepond--file-action-button{width:1.625em;height:1.625em;font-family:inherit;font-size:1em;line-height:inherit;will-change:transform,opacity;border:none;outline:none;margin:0;padding:0}.filepond--file-action-button.filepond--file-action-button span{clip:rect(1px,1px,1px,1px);clip-path:inset(50%);white-space:nowrap;border:0;width:1px;height:1px;padding:0;position:absolute;overflow:hidden}.filepond--file-action-button.filepond--file-action-button svg{width:100%;height:100%}.filepond--file-action-button.filepond--file-action-button:after{content:"";position:absolute;inset:-.75em}.filepond--file-action-button{cursor:auto;color:#fff;background-color:#00000080;background-image:none;border-radius:50%;transition:box-shadow .25s ease-in;box-shadow:0 0 #fff0}.filepond--file-action-button:focus,.filepond--file-action-button:hover{box-shadow:0 0 0 .125em #ffffffe6}.filepond--file-action-button[disabled]{color:#ffffff80;background-color:#00000040}.filepond--file-action-button[hidden]{display:none}.filepond--file-info{will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;user-select:none;flex-direction:column;flex:1;align-items:flex-start;min-width:0;margin:0 .5em 0 0;display:flex;position:static}.filepond--file-info *{margin:0}.filepond--file-info .filepond--file-info-main{text-overflow:ellipsis;white-space:nowrap;width:100%;font-size:.75em;line-height:1.2;overflow:hidden}.filepond--file-info .filepond--file-info-sub{opacity:.5;white-space:nowrap;font-size:.625em;transition:opacity .25s ease-in-out}.filepond--file-info .filepond--file-info-sub:empty{display:none}.filepond--file-status{text-align:right;will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;user-select:none;flex-direction:column;flex-grow:0;flex-shrink:0;align-items:flex-end;min-width:2.25em;margin:0;display:flex;position:static}.filepond--file-status *{white-space:nowrap;margin:0}.filepond--file-status .filepond--file-status-main{font-size:.75em;line-height:1.2}.filepond--file-status .filepond--file-status-sub{opacity:.5;font-size:.625em;transition:opacity .25s ease-in-out}.filepond--file-wrapper.filepond--file-wrapper{border:none;min-width:0;height:100%;margin:0;padding:0}.filepond--file-wrapper.filepond--file-wrapper>legend{clip:rect(1px,1px,1px,1px);clip-path:inset(50%);white-space:nowrap;border:0;width:1px;height:1px;padding:0;position:absolute;overflow:hidden}.filepond--file{color:#fff;border-radius:.5em;align-items:flex-start;height:100%;padding:.5625em;display:flex;position:static}.filepond--file .filepond--file-status{margin-left:auto;margin-right:2.25em}.filepond--file .filepond--processing-complete-indicator{pointer-events:none;-webkit-user-select:none;user-select:none;z-index:3}.filepond--file .filepond--file-action-button,.filepond--file .filepond--processing-complete-indicator,.filepond--file .filepond--progress-indicator{position:absolute}.filepond--file [data-align*=left]{left:.5625em}.filepond--file [data-align*=right]{right:.5625em}.filepond--file [data-align*=center]{left:calc(50% - .8125em)}.filepond--file [data-align*=bottom]{bottom:1.125em}.filepond--file [data-align=center]{top:calc(50% - .8125em)}.filepond--file .filepond--progress-indicator{margin-top:.1875em}.filepond--file .filepond--progress-indicator[data-align*=right]{margin-right:.1875em}.filepond--file .filepond--progress-indicator[data-align*=left]{margin-left:.1875em}[data-filepond-item-state*=error] .filepond--file-info,[data-filepond-item-state*=invalid] .filepond--file-info,[data-filepond-item-state=cancelled] .filepond--file-info{margin-right:2.25em}[data-filepond-item-state~=processing] .filepond--file-status-sub{opacity:0}[data-filepond-item-state~=processing] .filepond--action-abort-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-error] .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-error] .filepond--action-retry-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing svg{animation:.5s linear .125s both fall}[data-filepond-item-state=processing-complete] .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--file-info-sub,[data-filepond-item-state=processing-complete] .filepond--processing-complete-indicator:not([style*=hidden])~.filepond--file-status .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing~.filepond--file-info .filepond--file-info-sub{opacity:.5}[data-filepond-item-state*=error] .filepond--file-wrapper,[data-filepond-item-state*=error] .filepond--panel,[data-filepond-item-state*=invalid] .filepond--file-wrapper,[data-filepond-item-state*=invalid] .filepond--panel{animation:.65s linear both shake}[data-filepond-item-state*=busy] .filepond--progress-indicator svg{animation:1s linear infinite spin}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@keyframes shake{10%,90%{transform:translate(-.0625em)}20%,80%{transform:translate(.125em)}30%,50%,70%{transform:translate(-.25em)}40%,60%{transform:translate(.25em)}}@keyframes fall{0%{opacity:0;animation-timing-function:ease-out;transform:scale(.5)}70%{opacity:1;animation-timing-function:ease-in-out;transform:scale(1.1)}to{animation-timing-function:ease-out;transform:scale(1)}}.filepond--hopper[data-hopper-state=drag-over]>*{pointer-events:none}.filepond--hopper[data-hopper-state=drag-over]:after{content:"";z-index:100;position:absolute;inset:0}.filepond--progress-indicator{z-index:103}.filepond--file-action-button{z-index:102}.filepond--file-status{z-index:101}.filepond--file-info{z-index:100}.filepond--item{z-index:1;will-change:transform,opacity;touch-action:auto;margin:.25em;padding:0;position:absolute;top:0;left:0;right:0}.filepond--item>.filepond--panel{z-index:-1}.filepond--item>.filepond--panel .filepond--panel-bottom{box-shadow:0 .0625em .125em -.0625em #00000040}.filepond--item>.filepond--file-wrapper,.filepond--item>.filepond--panel{transition:opacity .15s ease-out}.filepond--item[data-drag-state]{cursor:-webkit-grab;cursor:grab}.filepond--item[data-drag-state]>.filepond--panel{transition:box-shadow .125s ease-in-out;box-shadow:0 0 #0000}.filepond--item[data-drag-state=drag]{cursor:-webkit-grabbing;cursor:grabbing}.filepond--item[data-drag-state=drag]>.filepond--panel{box-shadow:0 .125em .3125em #00000053}.filepond--item[data-drag-state]:not([data-drag-state=idle]){z-index:2}.filepond--item-panel{background-color:#64605e}[data-filepond-item-state=processing-complete] .filepond--item-panel{background-color:#369763}[data-filepond-item-state*=error] .filepond--item-panel,[data-filepond-item-state*=invalid] .filepond--item-panel{background-color:#c44e47}.filepond--item-panel{border-radius:.5em;transition:background-color .25s}.filepond--list-scroller{will-change:transform;margin:0;position:absolute;top:0;left:0;right:0}.filepond--list-scroller[data-state=overflow] .filepond--list{bottom:0;right:0}.filepond--list-scroller[data-state=overflow]{-webkit-overflow-scrolling:touch;overflow:hidden scroll;-webkit-mask:linear-gradient(#000 calc(100% - .5em),#0000);mask:linear-gradient(#000 calc(100% - .5em),#0000)}.filepond--list-scroller::-webkit-scrollbar{background:0 0}.filepond--list-scroller::-webkit-scrollbar:vertical{width:1em}.filepond--list-scroller::-webkit-scrollbar:horizontal{height:0}.filepond--list-scroller::-webkit-scrollbar-thumb{background-color:#0000004d;background-clip:content-box;border:.3125em solid #0000;border-radius:99999px}.filepond--list.filepond--list{will-change:transform;margin:0;padding:0;list-style-type:none;position:absolute;top:0}.filepond--list{left:.75em;right:.75em}.filepond--root[data-style-panel-layout~=integrated]{width:100%;max-width:none;height:100%;margin:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root{border-radius:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root>*,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{z-index:7;justify-content:center;align-items:center;height:auto;display:flex;bottom:0}.filepond--root[data-style-panel-layout~=circle] .filepond--item-panel,.filepond--root[data-style-panel-layout~=integrated] .filepond--item-panel{display:none}.filepond--root[data-style-panel-layout~=compact] .filepond--list-scroller,.filepond--root[data-style-panel-layout~=integrated] .filepond--list-scroller{height:100%;margin-top:0;margin-bottom:0;overflow:hidden}.filepond--root[data-style-panel-layout~=compact] .filepond--list,.filepond--root[data-style-panel-layout~=integrated] .filepond--list{height:100%;left:0;right:0}.filepond--root[data-style-panel-layout~=compact] .filepond--item,.filepond--root[data-style-panel-layout~=integrated] .filepond--item{margin:0}.filepond--root[data-style-panel-layout~=compact] .filepond--file-wrapper,.filepond--root[data-style-panel-layout~=integrated] .filepond--file-wrapper{height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{z-index:7}.filepond--root[data-style-panel-layout~=circle]{border-radius:99999rem;overflow:hidden}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel{border-radius:inherit}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel>*,.filepond--root[data-style-panel-layout~=circle] .filepond--file-info,.filepond--root[data-style-panel-layout~=circle] .filepond--file-status{display:none}@media not all and (min-resolution:.001dpcm){@supports ((-webkit-appearance:none)) and (stroke-color:transparent){.filepond--root[data-style-panel-layout~=circle]{will-change:transform}}}.filepond--panel-root{background-color:#f1f0ef;border-radius:.5em}.filepond--panel{pointer-events:none;margin:0;position:absolute;top:0;left:0;right:0;height:100%!important}.filepond-panel:not([data-scalable=false]){height:auto!important}.filepond--panel[data-scalable=false]>div{display:none}.filepond--panel[data-scalable=true]{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;background-color:#0000!important;border:none!important}.filepond--panel-bottom,.filepond--panel-center,.filepond--panel-top{margin:0;padding:0;position:absolute;top:0;left:0;right:0}.filepond--panel-bottom,.filepond--panel-top{height:.5em}.filepond--panel-top{border-bottom:none!important;border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.filepond--panel-top:after{content:"";background-color:inherit;height:2px;position:absolute;bottom:-1px;left:0;right:0}.filepond--panel-bottom,.filepond--panel-center{will-change:transform;backface-visibility:hidden;transform-origin:0 0;transform:translateY(.5em)}.filepond--panel-bottom{border-top:none!important;border-top-left-radius:0!important;border-top-right-radius:0!important}.filepond--panel-bottom:before{content:"";background-color:inherit;height:2px;position:absolute;top:-1px;left:0;right:0}.filepond--panel-center{border-top:none!important;border-bottom:none!important;border-radius:0!important;height:100px!important}.filepond--panel-center:not([style]){visibility:hidden}.filepond--progress-indicator{color:#fff;pointer-events:none;will-change:transform,opacity;width:1.25em;height:1.25em;margin:0;position:static}.filepond--progress-indicator svg{vertical-align:top;transform-box:fill-box;width:100%;height:100%}.filepond--progress-indicator path{fill:none;stroke:currentColor}.filepond--list-scroller{z-index:6}.filepond--drop-label{z-index:5}.filepond--drip{z-index:3}.filepond--root>.filepond--panel{z-index:2}.filepond--browser{z-index:1}.filepond--root{box-sizing:border-box;text-align:left;text-rendering:optimizeLegibility;contain:layout style size;direction:ltr;margin-bottom:1em;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1rem;font-weight:450;line-height:normal;position:relative}.filepond--root *{box-sizing:inherit;line-height:inherit}.filepond--root :not(text){font-size:inherit}.filepond--root[data-disabled]{pointer-events:none}.filepond--root[data-disabled] .filepond--list-scroller{pointer-events:all}.filepond--root[data-disabled] .filepond--list{pointer-events:none}.filepond--root .filepond--drop-label{min-height:4.75em}.filepond--root .filepond--list-scroller{margin-top:1em;margin-bottom:1em}.filepond--root .filepond--credits{opacity:.4;color:inherit;z-index:3;font-size:11px;line-height:.85;text-decoration:none;position:absolute;bottom:-14px;right:0}.filepond--root .filepond--credits[style]{margin-top:14px;top:0;bottom:auto}.filepond--action-edit-item.filepond--action-edit-item{width:2em;height:2em;padding:.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=center]{margin-left:-.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=bottom]{margin-bottom:-.1875em}.filepond--action-edit-item-alt{line-height:inherit;color:inherit;pointer-events:all;background:0 0;border:none;outline:none;margin:0 0 0 .25em;padding:0;font-family:inherit;position:absolute}.filepond--action-edit-item-alt svg{width:1.3125em;height:1.3125em}.filepond--action-edit-item-alt span{opacity:0;font-size:0}.filepond--root[data-style-panel-layout~=circle] .filepond--action-edit-item{opacity:1!important;visibility:visible!important}.filepond--image-preview-markup{position:absolute;top:0;left:0}.filepond--image-preview-wrapper{z-index:2}.filepond--image-preview-overlay{opacity:0;z-index:2;pointer-events:none;-webkit-user-select:none;user-select:none;width:100%;min-height:5rem;max-height:7rem;margin:0;display:block;position:absolute;top:0;left:0}.filepond--image-preview-overlay svg{width:100%;height:auto;color:inherit;max-height:inherit}.filepond--image-preview-overlay-idle{mix-blend-mode:multiply;color:#282828d9}.filepond--image-preview-overlay-success{mix-blend-mode:normal;color:#369763}.filepond--image-preview-overlay-failure{mix-blend-mode:normal;color:#c44e47}@supports (-webkit-marquee-repetition:infinite) and ((-o-object-fit:fill) or (object-fit:fill)){.filepond--image-preview-overlay-idle{mix-blend-mode:normal}}.filepond--image-preview-wrapper{-webkit-user-select:none;user-select:none;background:#00000003;border-radius:.45em;height:100%;margin:0;position:absolute;top:0;left:0;right:0;overflow:hidden}.filepond--image-preview{z-index:1;pointer-events:none;will-change:transform,opacity;background:#222;align-items:center;width:100%;height:100%;display:flex;position:absolute;top:0;left:0}.filepond--image-clip{margin:0 auto;position:relative;overflow:hidden}.filepond--image-clip[data-transparency-indicator=grid] img,.filepond--image-clip[data-transparency-indicator=grid] canvas{background-color:#fff;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' fill='%23eee'%3E%3Cpath d='M0 0 H50 V50 H0'/%3E%3Cpath d='M50 50 H100 V100 H50'/%3E%3C/svg%3E");background-size:1.25em 1.25em}.filepond--image-bitmap,.filepond--image-vector{will-change:transform;position:absolute;top:0;left:0}.filepond--root[data-style-panel-layout~=integrated] .filepond--image-preview-wrapper{border-radius:0}.filepond--root[data-style-panel-layout~=integrated] .filepond--image-preview{justify-content:center;align-items:center;height:100%;display:flex}.filepond--root[data-style-panel-layout~=circle] .filepond--image-preview-wrapper{border-radius:99999rem}.filepond--root[data-style-panel-layout~=circle] .filepond--image-preview-overlay{top:auto;bottom:0;transform:scaleY(-1)}.filepond--root[data-style-panel-layout~=circle] .filepond--file .filepond--file-action-button[data-align*=bottom]:not([data-align*=center]){margin-bottom:.325em}.filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=left]{left:calc(50% - 3em)}.filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=right]{right:calc(50% - 3em)}.filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=left],.filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=right]{margin-bottom:.5125em}.filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=center]{margin-top:0;margin-bottom:.1875em;margin-left:.1875em}.filepond--media-preview audio{display:none}.filepond--media-preview .audioplayer{width:calc(100% - 1.4em);margin:2.3em auto auto}.filepond--media-preview .playpausebtn{float:left;cursor:pointer;background-position:50%;background-repeat:no-repeat;border:none;border-radius:25px;outline:none;width:25px;height:25px;margin-top:.3em;margin-right:.3em}.filepond--media-preview .playpausebtn:hover{background-color:#00000080}.filepond--media-preview .play{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAyElEQVQ4T9XUsWoCQRRG4XPaFL5SfIy8gKYKBCysrax8Ahs7qzQ2qVIFOwsrsbEWLEK6EBFGBrIQhN2d3dnGgalm+Jh7789Ix8uOPe4YDCH0gZ66atKW0pJDCE/AEngDXtRjCpwCRucbGANzNVTBqWBhfAJDdV+GNgWj8wtM41bPt3AbsDB2f69d/0dzwC0wUDe54A8wAWbqJbfkD+BZPeQO5QsYqYu6LKb0MIb7VT3VYfG8CnwEHtT3FKi4c8e/TZMyk3LYFrwCgMdHFbRDKS8AAAAASUVORK5CYII=)}.filepond--media-preview .pause{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAh0lEQVQ4T+2UsQkCURBE30PLMbAMMResQrAPsQ0TK9AqDKxGZeTLD74aGNwlhzfZssvADDMrPcOe+RggYZIJcG2s2KinMidZAvu6u6uzT8u+JCeZArfmcKUeK+EaONTdQy23bxgJX8aPHvIHsSnVuzTx36rn2pQFsGuqN//ZlK7vbIDvq6vkJ9yteBXzecYbAAAAAElFTkSuQmCC)}.filepond--media-preview .timeline{float:left;background:#ffffff4d;border-radius:15px;width:calc(100% - 2.5em);height:3px;margin-top:1em}.filepond--media-preview .playhead{background:#fff;border-radius:50%;width:13px;height:13px;margin-top:-5px}.filepond--media-preview-wrapper{pointer-events:auto;background:#00000003;border-radius:.45em;height:100%;margin:0;position:absolute;top:0;left:0;right:0;overflow:hidden}.filepond--media-preview-wrapper:before{content:" ";width:100%;height:2em;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#00000000",GradientType=0);z-index:3;background:linear-gradient(#000,#0000);position:absolute}.filepond--media-preview{z-index:1;transform-origin:50%;will-change:transform,opacity;width:100%;height:100%;display:block;position:relative}.filepond--media-preview video,.filepond--media-preview audio{will-change:transform;width:100%}.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:#0000;-webkit-user-select:none;user-select:none;-ms-touch-action:none;touch-action:none;box-sizing:border-box}.noUi-target{position:relative}.noUi-base,.noUi-connects{z-index:1;width:100%;height:100%;position:relative}.noUi-connects{z-index:0;overflow:hidden}.noUi-connect,.noUi-origin{will-change:transform;z-index:1;transform-origin:0 0;width:100%;height:100%;-webkit-transform-style:preserve-3d;transform-style:flat;position:absolute;top:0;right:0}.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin{left:0;right:auto}.noUi-vertical .noUi-origin{width:0;top:-100%}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{backface-visibility:hidden;position:absolute}.noUi-touch-area{width:100%;height:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;top:-6px;right:-17px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;bottom:-17px;right:-6px}.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle{left:-17px;right:auto}.noUi-target{background:#fafafa;border:1px solid #d3d3d3;border-radius:4px;box-shadow:inset 0 1px 1px #f0f0f0,0 3px 6px -5px #bbb}.noUi-connects{border-radius:3px}.noUi-connect{background:#3fb8af}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{cursor:default;background:#fff;border:1px solid #d9d9d9;border-radius:3px;box-shadow:inset 0 0 1px #fff,inset 0 1px 7px #ebebeb,0 3px 6px -3px #bbb}.noUi-active{box-shadow:inset 0 0 1px #fff,inset 0 1px 7px #ddd,0 3px 6px -3px #bbb}.noUi-handle:before,.noUi-handle:after{content:"";background:#e8e7e6;width:1px;height:14px;display:block;position:absolute;top:6px;left:14px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:before,.noUi-vertical .noUi-handle:after{width:14px;height:1px;top:14px;left:6px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#b8b8b8}[disabled].noUi-target,[disabled].noUi-handle,[disabled] .noUi-handle{cursor:not-allowed}.noUi-pips,.noUi-pips *{box-sizing:border-box}.noUi-pips{color:#999;position:absolute}.noUi-value{white-space:nowrap;text-align:center;position:absolute}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{background:#ccc;position:absolute}.noUi-marker-sub,.noUi-marker-large{background:#aaa}.noUi-pips-horizontal{width:100%;height:80px;padding:10px 0;top:100%;left:0}.noUi-value-horizontal{transform:translate(-50%,50%)}.noUi-rtl .noUi-value-horizontal{transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{width:2px;height:5px;margin-left:-1px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{height:100%;padding:0 10px;top:0;left:100%}.noUi-value-vertical{padding-left:25px;transform:translateY(-50%)}.noUi-rtl .noUi-value-vertical{transform:translateY(50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{color:#000;text-align:center;white-space:nowrap;background:#fff;border:1px solid #d9d9d9;border-radius:3px;padding:5px;display:block;position:absolute}.noUi-horizontal .noUi-tooltip{bottom:120%;left:50%;transform:translate(-50%)}.noUi-vertical .noUi-tooltip{top:50%;right:120%;transform:translateY(-50%)}.noUi-horizontal .noUi-origin>.noUi-tooltip{bottom:10px;left:auto;transform:translate(50%)}.noUi-vertical .noUi-origin>.noUi-tooltip{top:auto;right:28px;transform:translateY(-18px)}.fi-fo-builder{row-gap:calc(var(--spacing)*4);grid-template-columns:repeat(1,minmax(0,1fr));display:grid}.fi-fo-builder .fi-fo-builder-actions{column-gap:calc(var(--spacing)*3);display:flex}.fi-fo-builder .fi-fo-builder-actions.fi-hidden{display:none}.fi-fo-builder .fi-fo-builder-items{grid-template-columns:repeat(1,minmax(0,1fr));display:grid}.fi-fo-builder .fi-fo-builder-items>*+*{margin-top:calc(var(--spacing)*4)}.fi-fo-builder .fi-fo-builder-item{border-radius:var(--radius-xl);background-color:var(--color-white);--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}.fi-fo-builder .fi-fo-builder-item:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-builder .fi-fo-builder-item:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-builder .fi-fo-builder-item:where(.dark,.dark *){--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-builder .fi-fo-builder-item:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-builder .fi-fo-builder-item.fi-collapsed .fi-fo-builder-item-header-collapsible-actions{rotate:-180deg}.fi-fo-builder .fi-fo-builder-item.fi-collapsed .fi-fo-builder-item-header-collapse-action,.fi-fo-builder .fi-fo-builder-item:not(.fi-collapsed) .fi-fo-builder-item-header-expand-action{pointer-events:none;opacity:0}.fi-fo-builder.fi-fo-builder-not-contained>.fi-fo-builder-items>.fi-fo-builder-item{--tw-shadow:0 0 #0000;--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);background-color:#0000;border-radius:0}.fi-fo-builder.fi-fo-builder-not-contained>.fi-fo-builder-items>.fi-fo-builder-item>.fi-fo-builder-item-content{padding:calc(var(--spacing)*0)}.fi-fo-builder.fi-fo-builder-not-contained>.fi-fo-builder-items>.fi-fo-builder-label-between-items-ctn>.fi-fo-builder-label-between-items-divider-before{width:calc(var(--spacing)*0)}.fi-fo-builder.fi-fo-builder-not-contained>.fi-fo-builder-items>.fi-fo-builder-label-between-items-ctn>.fi-fo-builder-label-between-items{padding-inline-start:calc(var(--spacing)*0)}.fi-fo-builder .fi-fo-builder-item-header{align-items:center;column-gap:calc(var(--spacing)*3);padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*3);display:flex;overflow:hidden}.fi-fo-builder.fi-collapsible .fi-fo-builder-item-header{cursor:pointer;-webkit-user-select:none;user-select:none}.fi-fo-builder .fi-fo-builder-item-header-start-actions{align-items:center;column-gap:calc(var(--spacing)*3);display:flex}.fi-fo-builder .fi-fo-builder-item-header-icon{color:var(--gray-400);flex-shrink:0}.fi-fo-builder .fi-fo-builder-item-header-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-fo-builder .fi-fo-builder-item-header-label{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-fo-builder .fi-fo-builder-item-header-label:where(.dark,.dark *){color:var(--color-white)}.fi-fo-builder .fi-fo-builder-item-header-label.fi-truncated{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.fi-fo-builder .fi-fo-builder-item-header-end-actions{align-items:center;column-gap:calc(var(--spacing)*3);margin-inline-start:auto;display:flex}.fi-fo-builder .fi-fo-builder-item-header-collapsible-actions{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));position:relative}.fi-fo-builder .fi-fo-builder-item-header-collapse-action{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.fi-fo-builder .fi-fo-builder-item-header-expand-action{inset:calc(var(--spacing)*0);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));position:absolute;rotate:180deg}.fi-fo-builder .fi-fo-builder-item-content:not(.fi-fo-builder-item-content-has-preview){padding:calc(var(--spacing)*4)}.fi-fo-builder .fi-fo-builder-item-content.fi-fo-builder-item-content-has-preview{position:relative}.fi-fo-builder .fi-fo-builder-item-has-header>.fi-fo-builder-item-content{border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--gray-100)}.fi-fo-builder .fi-fo-builder-item-has-header>.fi-fo-builder-item-content:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-builder .fi-fo-builder-item-has-header>.fi-fo-builder-item-content:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-builder .fi-fo-builder-item-preview:not(.fi-interactive){pointer-events:none}.fi-fo-builder .fi-fo-builder-item-preview-edit-overlay{inset:calc(var(--spacing)*0);z-index:1;cursor:pointer;position:absolute}.fi-fo-builder .fi-fo-builder-block-picker-ctn{border-radius:var(--radius-lg);background-color:var(--color-white)}.fi-fo-builder .fi-fo-builder-block-picker-ctn:where(.dark,.dark *){background-color:var(--gray-900)}.fi-fo-builder .fi-fo-builder-add-between-items-ctn{pointer-events:none;visibility:hidden;margin-top:calc(var(--spacing)*0);height:calc(var(--spacing)*0);opacity:0;width:100%;transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));justify-content:center;display:flex;position:relative;overflow:visible}.fi-fo-builder .fi-fo-builder-item:hover+.fi-fo-builder-add-between-items-ctn,.fi-fo-builder .fi-fo-builder-add-between-items-ctn:has(+.fi-fo-builder-item:hover),.fi-fo-builder .fi-fo-builder-add-between-items-ctn:hover,.fi-fo-builder .fi-fo-builder-add-between-items-ctn:focus-within{pointer-events:auto;visibility:visible;opacity:1}.fi-fo-builder .fi-fo-builder-add-between-items{z-index:10;--tw-translate-y:calc(-50% + .5rem);translate:var(--tw-translate-x)var(--tw-translate-y);border-radius:var(--radius-lg);background-color:var(--color-white);position:absolute;top:50%}.fi-fo-builder .fi-fo-builder-add-between-items:where(.dark,.dark *){background-color:var(--gray-900)}.fi-fo-builder .fi-fo-builder-label-between-items-ctn{margin-top:calc(var(--spacing)*1);margin-bottom:calc(var(--spacing)*-3);align-items:center;display:flex;position:relative}.fi-fo-builder .fi-fo-builder-label-between-items-divider-before{width:calc(var(--spacing)*3);border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--gray-200);flex-shrink:0}.fi-fo-builder .fi-fo-builder-label-between-items-divider-before:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-builder .fi-fo-builder-label-between-items-divider-before:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-builder .fi-fo-builder-label-between-items{padding-inline:calc(var(--spacing)*1);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-500);flex-shrink:0}.fi-fo-builder .fi-fo-builder-label-between-items:where(.dark,.dark *){color:var(--gray-400)}.fi-fo-builder .fi-fo-builder-label-between-items-divider-after{border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--gray-200);flex:1}.fi-fo-builder .fi-fo-builder-label-between-items-divider-after:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-builder .fi-fo-builder-label-between-items-divider-after:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-builder .fi-fo-builder-block-picker{justify-content:center;display:flex}.fi-fo-builder .fi-fo-builder-block-picker.fi-align-start,.fi-fo-builder .fi-fo-builder-block-picker.fi-align-left{justify-content:flex-start}.fi-fo-builder .fi-fo-builder-block-picker.fi-align-end,.fi-fo-builder .fi-fo-builder-block-picker.fi-align-right{justify-content:flex-end}.fi-fo-checkbox-list .fi-fo-checkbox-list-search-input-wrp{margin-bottom:calc(var(--spacing)*4)}.fi-fo-checkbox-list .fi-fo-checkbox-list-actions{margin-bottom:calc(var(--spacing)*2)}.fi-fo-checkbox-list .fi-fo-checkbox-list-options{gap:calc(var(--spacing)*4)}.fi-fo-checkbox-list .fi-fo-checkbox-list-options.fi-grid-direction-col{margin-top:calc(var(--spacing)*-4)}.fi-fo-checkbox-list .fi-fo-checkbox-list-options.fi-grid-direction-col .fi-fo-checkbox-list-option-ctn{break-inside:avoid;padding-top:calc(var(--spacing)*4)}.fi-fo-checkbox-list .fi-fo-checkbox-list-option{column-gap:calc(var(--spacing)*3);display:flex}.fi-fo-checkbox-list .fi-fo-checkbox-list-option .fi-checkbox-input{margin-top:calc(var(--spacing)*1);flex-shrink:0}.fi-fo-checkbox-list .fi-fo-checkbox-list-option .fi-fo-checkbox-list-option-text{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);display:grid}.fi-fo-checkbox-list .fi-fo-checkbox-list-option .fi-fo-checkbox-list-option-label{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);overflow-wrap:break-word;color:var(--gray-950);overflow:hidden}.fi-fo-checkbox-list .fi-fo-checkbox-list-option .fi-fo-checkbox-list-option-label:where(.dark,.dark *){color:var(--color-white)}.fi-fo-checkbox-list .fi-fo-checkbox-list-option .fi-fo-checkbox-list-option-description{color:var(--gray-500)}.fi-fo-checkbox-list .fi-fo-checkbox-list-option .fi-fo-checkbox-list-option-description:where(.dark,.dark *),.fi-fo-checkbox-list .fi-fo-checkbox-list-option:has(.fi-checkbox-input:disabled) .fi-fo-checkbox-list-option-label{color:var(--gray-400)}.fi-fo-checkbox-list .fi-fo-checkbox-list-option:has(.fi-checkbox-input:disabled) .fi-fo-checkbox-list-option-label:where(.dark,.dark *){color:var(--gray-500)}.fi-fo-checkbox-list .fi-fo-checkbox-list-option:has(.fi-checkbox-input:disabled) .fi-fo-checkbox-list-option-description{color:var(--gray-300)}.fi-fo-checkbox-list .fi-fo-checkbox-list-option:has(.fi-checkbox-input:disabled) .fi-fo-checkbox-list-option-description:where(.dark,.dark *){color:var(--gray-600)}.fi-fo-checkbox-list .fi-fo-checkbox-list-no-search-results-message{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-fo-checkbox-list .fi-fo-checkbox-list-no-search-results-message:where(.dark,.dark *){color:var(--gray-400)}.fi-fo-code-editor{overflow:hidden}.fi-fo-code-editor .cm-editor.cm-focused{--tw-outline-style:none!important;outline-style:none!important}.fi-fo-code-editor .cm-editor .cm-gutters{min-height:calc(var(--spacing)*48)!important;border-inline-end-color:var(--gray-300)!important;background-color:var(--gray-100)!important}.fi-fo-code-editor .cm-editor .cm-gutters:where(.dark,.dark *){border-inline-end-color:var(--gray-800)!important;background-color:var(--gray-950)!important}.fi-fo-code-editor .cm-editor .cm-gutters .cm-gutter.cm-lineNumbers .cm-gutterElement{border-start-start-radius:var(--radius-md);border-end-start-radius:var(--radius-md);margin-inline-start:calc(var(--spacing)*1)}.fi-fo-code-editor .cm-editor .cm-gutters .cm-gutter.cm-lineNumbers .cm-gutterElement.cm-activeLineGutter{background-color:var(--gray-200)!important}.fi-fo-code-editor .cm-editor .cm-gutters .cm-gutter.cm-lineNumbers .cm-gutterElement.cm-activeLineGutter:where(.dark,.dark *){background-color:var(--gray-800)!important}.fi-fo-code-editor .cm-editor .cm-gutters .cm-gutter.cm-foldGutter .cm-gutterElement.cm-activeLineGutter{background-color:var(--gray-200)!important}.fi-fo-code-editor .cm-editor .cm-gutters .cm-gutter.cm-foldGutter .cm-gutterElement.cm-activeLineGutter:where(.dark,.dark *){background-color:var(--gray-800)!important}.fi-fo-code-editor .cm-editor .cm-scroller{min-height:calc(var(--spacing)*48)!important}.fi-fo-code-editor .cm-editor .cm-line{border-start-end-radius:var(--radius-md);border-end-end-radius:var(--radius-md);margin-inline-end:calc(var(--spacing)*1)}.fi-fo-code-editor.fi-disabled .cm-editor .cm-gutters .cm-gutter.cm-lineNumbers .cm-gutterElement.cm-activeLineGutter,.fi-fo-code-editor.fi-disabled .cm-editor .cm-gutters .cm-gutter.cm-foldGutter .cm-gutterElement.cm-activeLineGutter,.fi-fo-code-editor.fi-disabled .cm-editor .cm-line.cm-activeLine{background-color:#0000!important}.fi-fo-color-picker .fi-input-wrp-content{display:flex}.fi-fo-color-picker .fi-fo-color-picker-preview{width:calc(var(--spacing)*5);height:calc(var(--spacing)*5);-webkit-user-select:none;user-select:none;border-radius:3.40282e38px;flex-shrink:0;margin-block:auto;margin-inline-end:calc(var(--spacing)*3)}.fi-fo-color-picker .fi-fo-color-picker-preview.fi-empty{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--gray-200);--tw-ring-inset:inset}.fi-fo-color-picker .fi-fo-color-picker-preview.fi-empty:where(.dark,.dark *){--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-color-picker .fi-fo-color-picker-preview.fi-empty:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-color-picker .fi-fo-color-picker-panel{z-index:10;border-radius:var(--radius-lg);--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);display:none;position:absolute}.fi-fo-date-time-picker input::-webkit-datetime-edit{padding:0;display:block}.fi-fo-date-time-picker .fi-fo-date-time-picker-trigger{width:100%}.fi-fo-date-time-picker .fi-fo-date-time-picker-display-text-input{--tw-border-style:none;width:100%;padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*1.5);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);color:var(--gray-950);--tw-outline-style:none;background-color:#0000;border-style:none;outline-style:none}@media (forced-colors:active){.fi-fo-date-time-picker .fi-fo-date-time-picker-display-text-input{outline-offset:2px;outline:2px solid #0000}}.fi-fo-date-time-picker .fi-fo-date-time-picker-display-text-input{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}.fi-fo-date-time-picker .fi-fo-date-time-picker-display-text-input::placeholder{color:var(--gray-400)}.fi-fo-date-time-picker .fi-fo-date-time-picker-display-text-input:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-fo-date-time-picker .fi-fo-date-time-picker-display-text-input:disabled{color:var(--gray-500);-webkit-text-fill-color:var(--color-gray-500)}.fi-fo-date-time-picker .fi-fo-date-time-picker-display-text-input:where(.dark,.dark *){color:var(--color-white)}.fi-fo-date-time-picker .fi-fo-date-time-picker-display-text-input:where(.dark,.dark *)::placeholder{color:var(--gray-500)}.fi-fo-date-time-picker .fi-fo-date-time-picker-display-text-input:where(.dark,.dark *):disabled{color:var(--gray-400);-webkit-text-fill-color:var(--color-gray-400)}.fi-fo-date-time-picker .fi-fo-date-time-picker-panel{z-index:10;position:absolute}:where(.fi-fo-date-time-picker .fi-fo-date-time-picker-panel>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}.fi-fo-date-time-picker .fi-fo-date-time-picker-panel{border-radius:var(--radius-lg);background-color:var(--color-white);padding:calc(var(--spacing)*4);--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}.fi-fo-date-time-picker .fi-fo-date-time-picker-panel:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-date-time-picker .fi-fo-date-time-picker-panel:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-date-time-picker .fi-fo-date-time-picker-panel .fi-fo-date-time-picker-panel-header{justify-content:space-between;align-items:center;display:flex}.fi-fo-date-time-picker .fi-fo-date-time-picker-month-select{cursor:pointer;--tw-border-style:none;padding:calc(var(--spacing)*0);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950);background-color:#0000;border-style:none;flex-grow:1}.fi-fo-date-time-picker .fi-fo-date-time-picker-month-select:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-fo-date-time-picker .fi-fo-date-time-picker-month-select:where(.dark,.dark *){background-color:var(--gray-900);color:var(--color-white)}.fi-fo-date-time-picker .fi-fo-date-time-picker-year-input{width:calc(var(--spacing)*16);--tw-border-style:none;padding:calc(var(--spacing)*0);text-align:right;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-950);background-color:#0000;border-style:none}.fi-fo-date-time-picker .fi-fo-date-time-picker-year-input:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-fo-date-time-picker .fi-fo-date-time-picker-year-input:where(.dark,.dark *){color:var(--color-white)}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar-header{gap:calc(var(--spacing)*1);grid-template-columns:repeat(7,minmax(0,1fr));display:grid}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar-header .fi-fo-date-time-picker-calendar-header-day{text-align:center;font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-500)}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar-header .fi-fo-date-time-picker-calendar-header-day:where(.dark,.dark *){color:var(--gray-400)}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar{grid-template-columns:repeat(7,minmax(calc(var(--spacing)*7),1fr));gap:calc(var(--spacing)*1);display:grid}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day{text-align:center;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:var(--leading-loose);line-height:var(--leading-loose);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;border-radius:3.40282e38px;transition-duration:75ms}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day.fi-disabled{pointer-events:none;opacity:.5}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day:not(.fi-disabled){cursor:pointer}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day.fi-selected{background-color:var(--gray-50);color:var(--primary-600)}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day.fi-selected:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day.fi-selected:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day.fi-selected:where(.dark,.dark *){color:var(--primary-400)}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day.fi-focused:not(.fi-selected):not(.fi-disabled){background-color:var(--gray-100)}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day.fi-focused:not(.fi-selected):not(.fi-disabled):where(.dark,.dark *){background-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day.fi-focused:not(.fi-selected):not(.fi-disabled):where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day.fi-fo-date-time-picker-calendar-day-today:not(.fi-focused):not(.fi-selected):not(.fi-disabled){color:var(--primary-600)}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day.fi-fo-date-time-picker-calendar-day-today:not(.fi-focused):not(.fi-selected):not(.fi-disabled):where(.dark,.dark *){color:var(--primary-400)}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day:not(.fi-fo-date-time-picker-calendar-day-today):not(.fi-selected){color:var(--gray-950)}.fi-fo-date-time-picker .fi-fo-date-time-picker-calendar .fi-fo-date-time-picker-calendar-day:not(.fi-fo-date-time-picker-calendar-day-today):not(.fi-selected):where(.dark,.dark *){color:var(--color-white)}.fi-fo-date-time-picker .fi-fo-date-time-picker-time-inputs{justify-content:center;align-items:center;display:flex}.fi-fo-date-time-picker .fi-fo-date-time-picker-time-inputs:where(:dir(rtl),[dir=rtl],[dir=rtl] *){flex-direction:row-reverse}.fi-fo-date-time-picker .fi-fo-date-time-picker-time-inputs input{width:calc(var(--spacing)*10);--tw-border-style:none;padding:calc(var(--spacing)*0);text-align:center;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-950);background-color:#0000;border-style:none;margin-inline-end:calc(var(--spacing)*1)}.fi-fo-date-time-picker .fi-fo-date-time-picker-time-inputs input:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-fo-date-time-picker .fi-fo-date-time-picker-time-inputs input:where(.dark,.dark *){color:var(--color-white)}.fi-fo-date-time-picker .fi-fo-date-time-picker-time-inputs .fi-fo-date-time-picker-time-input-separator{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-500)}.fi-fo-date-time-picker .fi-fo-date-time-picker-time-inputs .fi-fo-date-time-picker-time-input-separator:where(.dark,.dark *){color:var(--gray-400)}.fi-fo-field{row-gap:calc(var(--spacing)*2);display:grid}@media (min-width:40rem){.fi-fo-field.fi-fo-field-has-inline-label{align-items:flex-start;column-gap:calc(var(--spacing)*4);grid-template-columns:repeat(3,minmax(0,1fr))}.fi-fo-field.fi-fo-field-has-inline-label .fi-fo-field-content-col{grid-column:span 2/span 2}}.fi-fo-field .fi-fo-field-label-ctn,.fi-fo-field .fi-fo-field-label{align-items:flex-start;column-gap:calc(var(--spacing)*3);display:flex}:is(.fi-fo-field .fi-fo-field-label-ctn,.fi-fo-field .fi-fo-field-label)>.fi-checkbox-input{margin-top:calc(var(--spacing)*.5);flex-shrink:0}:is(.fi-fo-field .fi-fo-field-label-ctn,.fi-fo-field .fi-fo-field-label)>.fi-toggle{margin-block:calc(var(--spacing)*-.5)}:is(.fi-fo-field .fi-fo-field-label-ctn,.fi-fo-field .fi-fo-field-label)>.fi-sc:first-child{flex-grow:0}:is(.fi-fo-field .fi-fo-field-label-ctn,.fi-fo-field .fi-fo-field-label).fi-hidden{display:none}.fi-fo-field .fi-fo-field-label-content{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-fo-field .fi-fo-field-label-content:where(.dark,.dark *){color:var(--color-white)}.fi-fo-field .fi-fo-field-label-content .fi-fo-field-label-required-mark{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--danger-600)}.fi-fo-field .fi-fo-field-label-content .fi-fo-field-label-required-mark:where(.dark,.dark *){color:var(--danger-400)}.fi-fo-field .fi-fo-field-label-col{row-gap:calc(var(--spacing)*2);grid-auto-columns:minmax(0,1fr);height:100%;display:grid}@media (min-width:40rem){.fi-fo-field .fi-fo-field-label-col.fi-vertical-align-start{align-items:flex-start}.fi-fo-field .fi-fo-field-label-col.fi-vertical-align-center{align-items:center}.fi-fo-field .fi-fo-field-label-col.fi-vertical-align-end{align-items:flex-end}}.fi-fo-field .fi-fo-field-content-col{row-gap:calc(var(--spacing)*2);grid-auto-columns:minmax(0,1fr);display:grid}.fi-fo-field .fi-fo-field-content-ctn{align-items:center;column-gap:calc(var(--spacing)*3);width:100%;display:flex}.fi-fo-field .fi-fo-field-content{width:100%}.fi-fo-field .fi-fo-field-wrp-error-message{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--danger-600)}.fi-fo-field .fi-fo-field-wrp-error-message:where(.dark,.dark *){color:var(--danger-400)}.fi-fo-field .fi-fo-field-wrp-error-list{list-style-type:disc;list-style-position:inside}:where(.fi-fo-field .fi-fo-field-wrp-error-list>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*.5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*.5)*calc(1 - var(--tw-space-y-reverse)))}.fi-fo-file-upload{row-gap:calc(var(--spacing)*2);flex-direction:column;display:flex}.fi-fo-file-upload.fi-align-start,.fi-fo-file-upload.fi-align-left{align-items:flex-start}.fi-fo-file-upload.fi-align-center{align-items:center}.fi-fo-file-upload.fi-align-end,.fi-fo-file-upload.fi-align-right{align-items:flex-end}.fi-fo-file-upload .fi-fo-file-upload-input-ctn{width:100%;height:100%}.fi-fo-file-upload.fi-fo-file-upload-avatar .fi-fo-file-upload-input-ctn{height:100%;width:calc(var(--spacing)*32)}.fi-fo-file-upload .fi-fo-file-upload-error-message{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--danger-600)}.fi-fo-file-upload .fi-fo-file-upload-error-message:where(.dark,.dark *){color:var(--danger-400)}.fi-fo-file-upload .filepond--root{margin-bottom:calc(var(--spacing)*0);border-radius:var(--radius-lg);background-color:var(--color-white);font-family:var(--font-family),ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent);overflow:hidden}.fi-fo-file-upload .filepond--root:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-file-upload .filepond--root:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-file-upload .filepond--root:where(.dark,.dark *){--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-fo-file-upload .filepond--root:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-fo-file-upload .filepond--root[data-disabled=disabled]{background-color:var(--gray-50)}.fi-fo-file-upload .filepond--root[data-disabled=disabled]:where(.dark,.dark *){--tw-ring-color:#ffffff1a;background-color:#0000}@supports (color:color-mix(in lab, red, red)){.fi-fo-file-upload .filepond--root[data-disabled=disabled]:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-file-upload .filepond--root[data-style-panel-layout=compact\ circle]{border-radius:3.40282e38px}.fi-fo-file-upload .filepond--panel-root{background-color:#0000}.fi-fo-file-upload .filepond--drop-label label{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-600);padding:calc(var(--spacing)*3)!important}.fi-fo-file-upload .filepond--drop-label label:where(.dark,.dark *){color:var(--gray-400)}.fi-fo-file-upload .filepond--label-action{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--primary-600);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;text-decoration-line:none;transition-duration:75ms}@media (hover:hover){.fi-fo-file-upload .filepond--label-action:hover{color:var(--primary-500)}}.fi-fo-file-upload .filepond--label-action:where(.dark,.dark *){color:var(--color-white)}@media (hover:hover){.fi-fo-file-upload .filepond--label-action:where(.dark,.dark *):hover{color:var(--primary-500)}}.fi-fo-file-upload .filepond--drip-blob{background-color:var(--gray-400)}.fi-fo-file-upload .filepond--drip-blob:where(.dark,.dark *){background-color:var(--gray-500)}.fi-fo-file-upload .filepond--root[data-style-panel-layout=grid] .filepond--item{width:calc(50% - .5rem);display:inline}@media (min-width:64rem){.fi-fo-file-upload .filepond--root[data-style-panel-layout=grid] .filepond--item{width:calc(33.33% - .5rem)}}.fi-fo-file-upload .filepond--download-icon{pointer-events:auto;width:calc(var(--spacing)*4);height:calc(var(--spacing)*4);background-color:var(--color-white);vertical-align:bottom;margin-inline-end:calc(var(--spacing)*1);display:inline-block}@media (hover:hover){.fi-fo-file-upload .filepond--download-icon:hover{background-color:#ffffffb3}@supports (color:color-mix(in lab, red, red)){.fi-fo-file-upload .filepond--download-icon:hover{background-color:color-mix(in oklab,var(--color-white)70%,transparent)}}}.fi-fo-file-upload .filepond--download-icon{-webkit-mask-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItZG93bmxvYWQiPjxwYXRoIGQ9Ik0yMSAxNXY0YTIgMiAwIDAgMS0yIDJINWEyIDIgMCAwIDEtMi0ydi00Ij48L3BhdGg+PHBvbHlsaW5lIHBvaW50cz0iNyAxMCAxMiAxNSAxNyAxMCI+PC9wb2x5bGluZT48bGluZSB4MT0iMTIiIHkxPSIxNSIgeDI9IjEyIiB5Mj0iMyI+PC9saW5lPjwvc3ZnPg==);mask-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItZG93bmxvYWQiPjxwYXRoIGQ9Ik0yMSAxNXY0YTIgMiAwIDAgMS0yIDJINWEyIDIgMCAwIDEtMi0ydi00Ij48L3BhdGg+PHBvbHlsaW5lIHBvaW50cz0iNyAxMCAxMiAxNSAxNyAxMCI+PC9wb2x5bGluZT48bGluZSB4MT0iMTIiIHkxPSIxNSIgeDI9IjEyIiB5Mj0iMyI+PC9saW5lPjwvc3ZnPg==);-webkit-mask-size:100%;mask-size:100%;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.fi-fo-file-upload .filepond--open-icon{pointer-events:auto;width:calc(var(--spacing)*4);height:calc(var(--spacing)*4);background-color:var(--color-white);vertical-align:bottom;margin-inline-end:calc(var(--spacing)*1);display:inline-block}@media (hover:hover){.fi-fo-file-upload .filepond--open-icon:hover{background-color:#ffffffb3}@supports (color:color-mix(in lab, red, red)){.fi-fo-file-upload .filepond--open-icon:hover{background-color:color-mix(in oklab,var(--color-white)70%,transparent)}}}.fi-fo-file-upload .filepond--open-icon{-webkit-mask-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJoLTYgdy02IiBmaWxsPSJub25lIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2Utd2lkdGg9IjIiPgogIDxwYXRoIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZD0iTTEwIDZINmEyIDIgMCAwMC0yIDJ2MTBhMiAyIDAgMDAyIDJoMTBhMiAyIDAgMDAyLTJ2LTRNMTQgNGg2bTAgMHY2bTAtNkwxMCAxNCIgLz4KPC9zdmc+Cg==);mask-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJoLTYgdy02IiBmaWxsPSJub25lIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2Utd2lkdGg9IjIiPgogIDxwYXRoIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZD0iTTEwIDZINmEyIDIgMCAwMC0yIDJ2MTBhMiAyIDAgMDAyIDJoMTBhMiAyIDAgMDAyLTJ2LTRNMTQgNGg2bTAgMHY2bTAtNkwxMCAxNCIgLz4KPC9zdmc+Cg==);-webkit-mask-size:100%;mask-size:100%;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.fi-fo-file-upload .filepond--file-action-button.filepond--action-edit-item{background-color:#00000080}@supports (color:color-mix(in lab, red, red)){.fi-fo-file-upload .filepond--file-action-button.filepond--action-edit-item{background-color:color-mix(in oklab,var(--color-black)50%,transparent)}}.fi-fo-file-upload .fi-fo-file-upload-editor{inset:calc(var(--spacing)*0);isolation:isolate;z-index:50;width:100vw;height:100dvh;padding:calc(var(--spacing)*2);position:fixed}@media (min-width:40rem){.fi-fo-file-upload .fi-fo-file-upload-editor{padding:calc(var(--spacing)*10)}}@media (min-width:48rem){.fi-fo-file-upload .fi-fo-file-upload-editor{padding:calc(var(--spacing)*20)}}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-overlay{inset:calc(var(--spacing)*0);cursor:pointer;background-color:var(--gray-950);width:100%;height:100%;position:fixed}@supports (color:color-mix(in lab, red, red)){.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-overlay{background-color:color-mix(in oklab,var(--gray-950)50%,transparent)}}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-overlay:where(.dark,.dark *){background-color:var(--gray-950)}@supports (color:color-mix(in lab, red, red)){.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-overlay:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-950)75%,transparent)}}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-overlay{will-change:transform}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-window{isolation:isolate;border-radius:var(--radius-xl);background-color:var(--color-white);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);width:100%;height:100%;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--gray-900);flex-direction:column;margin-inline:auto;display:flex;overflow:hidden}@supports (color:color-mix(in lab, red, red)){.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-window{--tw-ring-color:color-mix(in oklab,var(--gray-900)10%,transparent)}}@media (min-width:64rem){.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-window{flex-direction:row}}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-window:where(.dark,.dark *){background-color:var(--gray-800);--tw-ring-color:var(--gray-50)}@supports (color:color-mix(in lab, red, red)){.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-window:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--gray-50)10%,transparent)}}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-image-ctn{margin:calc(var(--spacing)*4);flex:1;max-width:100%;max-height:100%}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-image{width:auto;height:100%}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel{background-color:var(--gray-50);flex-direction:column;flex:1;width:100%;height:100%;display:flex;overflow-y:auto}@media (min-width:64rem){.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel{max-width:var(--container-xs)}}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel:where(.dark,.dark *){background-color:var(--gray-900)}@supports (color:color-mix(in lab, red, red)){.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-900)30%,transparent)}}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel .fi-fo-file-upload-editor-control-panel-main{flex:1}:where(.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel .fi-fo-file-upload-editor-control-panel-main>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel .fi-fo-file-upload-editor-control-panel-main{padding:calc(var(--spacing)*4);overflow:auto}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel .fi-fo-file-upload-editor-control-panel-group{gap:calc(var(--spacing)*3);display:grid}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel .fi-fo-file-upload-editor-control-panel-group .fi-btn-group{width:100%}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel .fi-fo-file-upload-editor-control-panel-group .fi-btn.fi-active{background-color:var(--gray-50)}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel .fi-fo-file-upload-editor-control-panel-group .fi-btn.fi-active:where(.dark,.dark *){background-color:var(--gray-700)}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel .fi-fo-file-upload-editor-control-panel-group .fi-fo-file-upload-editor-control-panel-group-title{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height));color:var(--gray-950)}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel .fi-fo-file-upload-editor-control-panel-group .fi-fo-file-upload-editor-control-panel-group-title:where(.dark,.dark *){color:var(--color-white)}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel .fi-fo-file-upload-editor-control-panel-footer{align-items:center;gap:calc(var(--spacing)*3);padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*3);display:flex}.fi-fo-file-upload .fi-fo-file-upload-editor .fi-fo-file-upload-editor-control-panel .fi-fo-file-upload-editor-control-panel-reset-action{margin-left:auto}.fi-fo-file-upload .fi-fo-file-upload-editor .cropper-drag-box.cropper-crop.cropper-modal{background-color:var(--gray-100)}@supports (color:color-mix(in lab, red, red)){.fi-fo-file-upload .fi-fo-file-upload-editor .cropper-drag-box.cropper-crop.cropper-modal{background-color:color-mix(in oklab,var(--gray-100)50%,transparent)}}.fi-fo-file-upload .fi-fo-file-upload-editor .cropper-drag-box.cropper-crop.cropper-modal{opacity:1}.fi-fo-file-upload .fi-fo-file-upload-editor .cropper-drag-box.cropper-crop.cropper-modal:where(.dark,.dark *){background-color:var(--gray-900)}@supports (color:color-mix(in lab, red, red)){.fi-fo-file-upload .fi-fo-file-upload-editor .cropper-drag-box.cropper-crop.cropper-modal:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-900)80%,transparent)}}.fi-fo-file-upload .fi-fo-file-upload-editor.fi-fo-file-upload-editor-circle-cropper .cropper-view-box,.fi-fo-file-upload .fi-fo-file-upload-editor.fi-fo-file-upload-editor-circle-cropper .cropper-face{border-radius:50%}.fi-fo-file-upload .fi-fo-file-upload-editor.fi-fo-file-upload-editor-crop-only .fi-fo-file-upload-editor-window{max-width:var(--container-3xl);flex-direction:column}.fi-fo-file-upload .fi-fo-file-upload-editor.fi-fo-file-upload-editor-crop-only .fi-fo-file-upload-editor-image-ctn{min-height:calc(var(--spacing)*0);flex:1;overflow:hidden}.fi-fo-file-upload .fi-fo-file-upload-editor.fi-fo-file-upload-editor-crop-only .fi-fo-file-upload-editor-control-panel{flex:none;height:auto}@media (min-width:64rem){.fi-fo-file-upload .fi-fo-file-upload-editor.fi-fo-file-upload-editor-crop-only .fi-fo-file-upload-editor-control-panel{max-width:none}}.fi-fo-file-upload .fi-fo-file-upload-editor.fi-fo-file-upload-editor-crop-only .fi-fo-file-upload-editor-control-panel-footer{justify-content:flex-start}:where(.fi-fo-key-value .fi-fo-key-value-table-ctn>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}:where(.fi-fo-key-value .fi-fo-key-value-table-ctn:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:where(.fi-fo-key-value .fi-fo-key-value-table-ctn:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-key-value .fi-fo-key-value-table{table-layout:auto;width:100%}:where(.fi-fo-key-value .fi-fo-key-value-table>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}:where(.fi-fo-key-value .fi-fo-key-value-table:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(.fi-fo-key-value .fi-fo-key-value-table:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-key-value .fi-fo-key-value-table>thead>tr>th{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);text-align:start;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-700)}.fi-fo-key-value .fi-fo-key-value-table>thead>tr>th:where(.dark,.dark *){color:var(--gray-200)}.fi-fo-key-value .fi-fo-key-value-table>thead>tr>th.fi-has-action{width:calc(var(--spacing)*9);padding:calc(var(--spacing)*0)}:where(.fi-fo-key-value .fi-fo-key-value-table>tbody>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}:where(.fi-fo-key-value .fi-fo-key-value-table>tbody:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(.fi-fo-key-value .fi-fo-key-value-table>tbody:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}:where(.fi-fo-key-value .fi-fo-key-value-table>tbody>tr>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));border-color:var(--gray-200)}:where(.fi-fo-key-value .fi-fo-key-value-table>tbody>tr:where(:dir(rtl),[dir=rtl],[dir=rtl] *)>:not(:last-child)){--tw-divide-x-reverse:1}:where(.fi-fo-key-value .fi-fo-key-value-table>tbody>tr:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(.fi-fo-key-value .fi-fo-key-value-table>tbody>tr:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-key-value .fi-fo-key-value-table>tbody>tr>td{width:50%;padding:calc(var(--spacing)*0)}.fi-fo-key-value .fi-fo-key-value-table>tbody>tr>td.fi-has-action{width:auto;padding:calc(var(--spacing)*.5)}.fi-fo-key-value .fi-fo-key-value-table>tbody>tr>td.fi-has-action .fi-fo-key-value-table-row-sortable-handle{display:flex}.fi-fo-key-value .fi-fo-key-value-table>tbody>tr>td .fi-input{font-family:var(--mono-font-family),ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.fi-fo-key-value .fi-fo-key-value-add-action-ctn{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);justify-content:center;display:flex}@media (min-width:40rem){.fi-fo-key-value-wrp.fi-fo-field-has-inline-label .fi-fo-field-label-col{padding-top:calc(var(--spacing)*1.5)}}.fi-fo-markdown-editor{--color-cm-red:#991b1b;--color-cm-orange:#9a3412;--color-cm-amber:#92400e;--color-cm-yellow:#854d0e;--color-cm-lime:#3f6212;--color-cm-green:#166534;--color-cm-emerald:#065f46;--color-cm-teal:#115e59;--color-cm-cyan:#155e75;--color-cm-sky:#075985;--color-cm-blue:#1e40af;--color-cm-indigo:#3730a3;--color-cm-violet:#5b21b6;--color-cm-purple:#6b21a8;--color-cm-fuchsia:#86198f;--color-cm-pink:#9d174d;--color-cm-rose:#9f1239;--color-cm-gray:#18181b;--color-cm-gray-muted:#71717a;--color-cm-gray-background:#e4e4e7}.fi-fo-markdown-editor:not(.fi-disabled){max-width:100%;font-family:var(--mono-font-family),ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-950);overflow:hidden}.fi-fo-markdown-editor:not(.fi-disabled):where(.dark,.dark *){color:var(--color-white)}.fi-fo-markdown-editor.fi-disabled{border-radius:var(--radius-lg);background-color:var(--gray-50);width:100%;padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*3);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500);--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent);display:block}.fi-fo-markdown-editor.fi-disabled:where(.dark,.dark *){color:var(--gray-400);--tw-ring-color:#ffffff1a;background-color:#0000}@supports (color:color-mix(in lab, red, red)){.fi-fo-markdown-editor.fi-disabled:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-markdown-editor .EasyMDEContainer .CodeMirror{padding-inline:calc(var(--spacing)*4)!important;padding-block:calc(var(--spacing)*3)!important}.fi-fo-markdown-editor .cm-s-easymde .cm-comment{color:var(--color-cm-gray-muted);background-color:#0000}.fi-fo-markdown-editor .EasyMDEContainer .CodeMirror-cursor{border-color:currentColor}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-keyword{color:var(--color-cm-violet)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-atom{color:var(--color-cm-blue)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-number{color:var(--color-cm-green)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-def{color:var(--color-cm-blue)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-variable{color:var(--color-cm-yellow)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-variable-2{color:var(--color-cm-blue)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-variable-3{color:var(--color-cm-emerald)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-property,.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-operator{color:var(--color-cm-gray)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-string,.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-string-2{color:var(--color-cm-rose)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-meta{color:var(--color-cm-gray-muted)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-error{color:var(--color-cm-red)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-qualifier{color:var(--color-cm-gray-muted)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-builtin{color:var(--color-cm-violet)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-bracket,.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-hr{color:var(--color-cm-gray-muted)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-formatting-quote{color:var(--color-cm-sky)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-formatting-quote~.cm-quote{color:var(--color-cm-gray-muted)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-formatting-list,.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-formatting-list~.cm-variable-2,.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-formatting-list~.cm-variable-3,.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-formatting-list~.cm-keyword,.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-tab~.cm-variable-2,.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-tab~.cm-variable-3,.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-tab~.cm-keyword{color:var(--color-cm-gray)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-link{color:var(--color-cm-blue)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-tag{color:var(--color-cm-red)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-attribute{color:var(--color-cm-amber)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-attribute+.cm-string{color:var(--color-cm-green)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-formatting-code+.cm-comment:not(.cm-formatting-code){background-color:var(--color-cm-gray-background);color:var(--color-cm-gray)}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-header-1{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-header-2{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-header-3{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-header-4{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-header-5{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-header-6{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-comment{background-image:none}.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-formatting-code-block,.fi-fo-markdown-editor .EasyMDEContainer .cm-s-easymde .cm-tab~.cm-comment{color:inherit;background-color:#0000}.fi-fo-markdown-editor .EasyMDEContainer .CodeMirror{--tw-border-style:none;padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*1.5);color:inherit;background-color:#0000;border-style:none}.fi-fo-markdown-editor .EasyMDEContainer .CodeMirror-scroll{height:auto}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar{gap:calc(var(--spacing)*1);border-style:var(--tw-border-style);border-width:0;border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200);padding-inline:calc(var(--spacing)*2.5);padding-block:calc(var(--spacing)*2);border-radius:0;flex-wrap:wrap;display:flex}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar button{width:calc(var(--spacing)*8);height:calc(var(--spacing)*8);border-radius:var(--radius-lg);--tw-border-style:none;padding:calc(var(--spacing)*0);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;border-style:none;place-content:center;transition-duration:75ms;display:grid}@media (hover:hover){.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar button:hover{background-color:var(--gray-50)}}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar button:focus-visible{background-color:var(--gray-50)}@media (hover:hover){.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar button:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar button:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar button:where(.dark,.dark *):focus-visible{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar button:where(.dark,.dark *):focus-visible{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar button.active{background-color:var(--gray-50)}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar button.active:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar button.active:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar button:before{width:calc(var(--spacing)*5);height:calc(var(--spacing)*5);background-color:var(--gray-700);content:"";display:block;-webkit-mask-position:50%;mask-position:50%;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar button.active:before{background-color:var(--primary-600)}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .separator{width:calc(var(--spacing)*1);--tw-border-style:none;border-style:none;margin:calc(var(--spacing)*0)!important}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .bold:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M4 3a1 1 0 0 1 1-1h6a4.5 4.5 0 0 1 3.274 7.587A4.75 4.75 0 0 1 11.25 18H5a1 1 0 0 1-1-1V3Zm2.5 5.5v-4H11a2 2 0 1 1 0 4H6.5Zm0 2.5v4.5h4.75a2.25 2.25 0 0 0 0-4.5H6.5Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M4 3a1 1 0 0 1 1-1h6a4.5 4.5 0 0 1 3.274 7.587A4.75 4.75 0 0 1 11.25 18H5a1 1 0 0 1-1-1V3Zm2.5 5.5v-4H11a2 2 0 1 1 0 4H6.5Zm0 2.5v4.5h4.75a2.25 2.25 0 0 0 0-4.5H6.5Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A")}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .italic:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M8 2.75A.75.75 0 0 1 8.75 2h7.5a.75.75 0 0 1 0 1.5h-3.215l-4.483 13h2.698a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5h3.215l4.483-13H8.75A.75.75 0 0 1 8 2.75Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M8 2.75A.75.75 0 0 1 8.75 2h7.5a.75.75 0 0 1 0 1.5h-3.215l-4.483 13h2.698a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5h3.215l4.483-13H8.75A.75.75 0 0 1 8 2.75Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A")}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .strikethrough:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M11.617 3.963c-1.186-.318-2.418-.323-3.416.015-.992.336-1.49.91-1.642 1.476-.152.566-.007 1.313.684 2.1.528.6 1.273 1.1 2.128 1.446h7.879a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5h3.813a5.976 5.976 0 0 1-.447-.456C5.18 7.479 4.798 6.231 5.11 5.066c.312-1.164 1.268-2.055 2.61-2.509 1.336-.451 2.877-.42 4.286-.043.856.23 1.684.592 2.409 1.074a.75.75 0 1 1-.83 1.25 6.723 6.723 0 0 0-1.968-.875Zm1.909 8.123a.75.75 0 0 1 1.015.309c.53.99.607 2.062.18 3.01-.421.94-1.289 1.648-2.441 2.038-1.336.452-2.877.42-4.286.043-1.409-.377-2.759-1.121-3.69-2.18a.75.75 0 1 1 1.127-.99c.696.791 1.765 1.403 2.952 1.721 1.186.318 2.418.323 3.416-.015.853-.288 1.34-.756 1.555-1.232.21-.467.205-1.049-.136-1.69a.75.75 0 0 1 .308-1.014Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M11.617 3.963c-1.186-.318-2.418-.323-3.416.015-.992.336-1.49.91-1.642 1.476-.152.566-.007 1.313.684 2.1.528.6 1.273 1.1 2.128 1.446h7.879a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5h3.813a5.976 5.976 0 0 1-.447-.456C5.18 7.479 4.798 6.231 5.11 5.066c.312-1.164 1.268-2.055 2.61-2.509 1.336-.451 2.877-.42 4.286-.043.856.23 1.684.592 2.409 1.074a.75.75 0 1 1-.83 1.25 6.723 6.723 0 0 0-1.968-.875Zm1.909 8.123a.75.75 0 0 1 1.015.309c.53.99.607 2.062.18 3.01-.421.94-1.289 1.648-2.441 2.038-1.336.452-2.877.42-4.286.043-1.409-.377-2.759-1.121-3.69-2.18a.75.75 0 1 1 1.127-.99c.696.791 1.765 1.403 2.952 1.721 1.186.318 2.418.323 3.416-.015.853-.288 1.34-.756 1.555-1.232.21-.467.205-1.049-.136-1.69a.75.75 0 0 1 .308-1.014Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A")}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .link:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath d='M12.232 4.232a2.5 2.5 0 0 1 3.536 3.536l-1.225 1.224a.75.75 0 0 0 1.061 1.06l1.224-1.224a4 4 0 0 0-5.656-5.656l-3 3a4 4 0 0 0 .225 5.865.75.75 0 0 0 .977-1.138 2.5 2.5 0 0 1-.142-3.667l3-3Z' /%3E%3Cpath d='M11.603 7.963a.75.75 0 0 0-.977 1.138 2.5 2.5 0 0 1 .142 3.667l-3 3a2.5 2.5 0 0 1-3.536-3.536l1.225-1.224a.75.75 0 0 0-1.061-1.06l-1.224 1.224a4 4 0 1 0 5.656 5.656l3-3a4 4 0 0 0-.225-5.865Z' /%3E%3C/svg%3E%0A");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath d='M12.232 4.232a2.5 2.5 0 0 1 3.536 3.536l-1.225 1.224a.75.75 0 0 0 1.061 1.06l1.224-1.224a4 4 0 0 0-5.656-5.656l-3 3a4 4 0 0 0 .225 5.865.75.75 0 0 0 .977-1.138 2.5 2.5 0 0 1-.142-3.667l3-3Z' /%3E%3Cpath d='M11.603 7.963a.75.75 0 0 0-.977 1.138 2.5 2.5 0 0 1 .142 3.667l-3 3a2.5 2.5 0 0 1-3.536-3.536l1.225-1.224a.75.75 0 0 0-1.061-1.06l-1.224 1.224a4 4 0 1 0 5.656 5.656l3-3a4 4 0 0 0-.225-5.865Z' /%3E%3C/svg%3E%0A")}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .heading:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 12h10' /%3E%3Cpath d='M7 5v14' /%3E%3Cpath d='M17 5v14' /%3E%3Cpath d='M15 19h4' /%3E%3Cpath d='M15 5h4' /%3E%3Cpath d='M5 19h4' /%3E%3Cpath d='M5 5h4' /%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 12h10' /%3E%3Cpath d='M7 5v14' /%3E%3Cpath d='M17 5v14' /%3E%3Cpath d='M15 19h4' /%3E%3Cpath d='M15 5h4' /%3E%3Cpath d='M5 19h4' /%3E%3Cpath d='M5 5h4' /%3E%3C/svg%3E")}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .quote:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M10 2c-2.236 0-4.43.18-6.57.524C1.993 2.755 1 4.014 1 5.426v5.148c0 1.413.993 2.67 2.43 2.902 1.168.188 2.352.327 3.55.414.28.02.521.18.642.413l1.713 3.293a.75.75 0 0 0 1.33 0l1.713-3.293a.783.783 0 0 1 .642-.413 41.102 41.102 0 0 0 3.55-.414c1.437-.231 2.43-1.49 2.43-2.902V5.426c0-1.413-.993-2.67-2.43-2.902A41.289 41.289 0 0 0 10 2ZM6.75 6a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Zm0 2.5a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M10 2c-2.236 0-4.43.18-6.57.524C1.993 2.755 1 4.014 1 5.426v5.148c0 1.413.993 2.67 2.43 2.902 1.168.188 2.352.327 3.55.414.28.02.521.18.642.413l1.713 3.293a.75.75 0 0 0 1.33 0l1.713-3.293a.783.783 0 0 1 .642-.413 41.102 41.102 0 0 0 3.55-.414c1.437-.231 2.43-1.49 2.43-2.902V5.426c0-1.413-.993-2.67-2.43-2.902A41.289 41.289 0 0 0 10 2ZM6.75 6a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Zm0 2.5a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A")}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .code:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M6.28 5.22a.75.75 0 0 1 0 1.06L2.56 10l3.72 3.72a.75.75 0 0 1-1.06 1.06L.97 10.53a.75.75 0 0 1 0-1.06l4.25-4.25a.75.75 0 0 1 1.06 0Zm7.44 0a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.06-1.06L17.44 10l-3.72-3.72a.75.75 0 0 1 0-1.06ZM11.377 2.011a.75.75 0 0 1 .612.867l-2.5 14.5a.75.75 0 0 1-1.478-.255l2.5-14.5a.75.75 0 0 1 .866-.612Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M6.28 5.22a.75.75 0 0 1 0 1.06L2.56 10l3.72 3.72a.75.75 0 0 1-1.06 1.06L.97 10.53a.75.75 0 0 1 0-1.06l4.25-4.25a.75.75 0 0 1 1.06 0Zm7.44 0a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.06-1.06L17.44 10l-3.72-3.72a.75.75 0 0 1 0-1.06ZM11.377 2.011a.75.75 0 0 1 .612.867l-2.5 14.5a.75.75 0 0 1-1.478-.255l2.5-14.5a.75.75 0 0 1 .866-.612Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A")}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .unordered-list:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M6 4.75A.75.75 0 0 1 6.75 4h10.5a.75.75 0 0 1 0 1.5H6.75A.75.75 0 0 1 6 4.75ZM6 10a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H6.75A.75.75 0 0 1 6 10Zm0 5.25a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H6.75a.75.75 0 0 1-.75-.75ZM1.99 4.75a1 1 0 0 1 1-1H3a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1v-.01ZM1.99 15.25a1 1 0 0 1 1-1H3a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1v-.01ZM1.99 10a1 1 0 0 1 1-1H3a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1V10Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M6 4.75A.75.75 0 0 1 6.75 4h10.5a.75.75 0 0 1 0 1.5H6.75A.75.75 0 0 1 6 4.75ZM6 10a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H6.75A.75.75 0 0 1 6 10Zm0 5.25a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H6.75a.75.75 0 0 1-.75-.75ZM1.99 4.75a1 1 0 0 1 1-1H3a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1v-.01ZM1.99 15.25a1 1 0 0 1 1-1H3a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1v-.01ZM1.99 10a1 1 0 0 1 1-1H3a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1V10Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A")}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .ordered-list:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath d='M3 1.25a.75.75 0 0 0 0 1.5h.25v2.5a.75.75 0 0 0 1.5 0V2A.75.75 0 0 0 4 1.25H3ZM2.97 8.654a3.5 3.5 0 0 1 1.524-.12.034.034 0 0 1-.012.012L2.415 9.579A.75.75 0 0 0 2 10.25v1c0 .414.336.75.75.75h2.5a.75.75 0 0 0 0-1.5H3.927l1.225-.613c.52-.26.848-.79.848-1.371 0-.647-.429-1.327-1.193-1.451a5.03 5.03 0 0 0-2.277.155.75.75 0 0 0 .44 1.434ZM7.75 3a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5h-9.5ZM7.75 9.25a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5h-9.5ZM7.75 15.5a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5h-9.5ZM2.625 13.875a.75.75 0 0 0 0 1.5h1.5a.125.125 0 0 1 0 .25H3.5a.75.75 0 0 0 0 1.5h.625a.125.125 0 0 1 0 .25h-1.5a.75.75 0 0 0 0 1.5h1.5a1.625 1.625 0 0 0 1.37-2.5 1.625 1.625 0 0 0-1.37-2.5h-1.5Z' /%3E%3C/svg%3E%0A");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath d='M3 1.25a.75.75 0 0 0 0 1.5h.25v2.5a.75.75 0 0 0 1.5 0V2A.75.75 0 0 0 4 1.25H3ZM2.97 8.654a3.5 3.5 0 0 1 1.524-.12.034.034 0 0 1-.012.012L2.415 9.579A.75.75 0 0 0 2 10.25v1c0 .414.336.75.75.75h2.5a.75.75 0 0 0 0-1.5H3.927l1.225-.613c.52-.26.848-.79.848-1.371 0-.647-.429-1.327-1.193-1.451a5.03 5.03 0 0 0-2.277.155.75.75 0 0 0 .44 1.434ZM7.75 3a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5h-9.5ZM7.75 9.25a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5h-9.5ZM7.75 15.5a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5h-9.5ZM2.625 13.875a.75.75 0 0 0 0 1.5h1.5a.125.125 0 0 1 0 .25H3.5a.75.75 0 0 0 0 1.5h.625a.125.125 0 0 1 0 .25h-1.5a.75.75 0 0 0 0 1.5h1.5a1.625 1.625 0 0 0 1.37-2.5 1.625 1.625 0 0 0-1.37-2.5h-1.5Z' /%3E%3C/svg%3E%0A")}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .table:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M.99 5.24A2.25 2.25 0 0 1 3.25 3h13.5A2.25 2.25 0 0 1 19 5.25l.01 9.5A2.25 2.25 0 0 1 16.76 17H3.26A2.267 2.267 0 0 1 1 14.74l-.01-9.5Zm8.26 9.52v-.625a.75.75 0 0 0-.75-.75H3.25a.75.75 0 0 0-.75.75v.615c0 .414.336.75.75.75h5.373a.75.75 0 0 0 .627-.74Zm1.5 0a.75.75 0 0 0 .627.74h5.373a.75.75 0 0 0 .75-.75v-.615a.75.75 0 0 0-.75-.75H11.5a.75.75 0 0 0-.75.75v.625Zm6.75-3.63v-.625a.75.75 0 0 0-.75-.75H11.5a.75.75 0 0 0-.75.75v.625c0 .414.336.75.75.75h5.25a.75.75 0 0 0 .75-.75Zm-8.25 0v-.625a.75.75 0 0 0-.75-.75H3.25a.75.75 0 0 0-.75.75v.625c0 .414.336.75.75.75H8.5a.75.75 0 0 0 .75-.75ZM17.5 7.5v-.625a.75.75 0 0 0-.75-.75H11.5a.75.75 0 0 0-.75.75V7.5c0 .414.336.75.75.75h5.25a.75.75 0 0 0 .75-.75Zm-8.25 0v-.625a.75.75 0 0 0-.75-.75H3.25a.75.75 0 0 0-.75.75V7.5c0 .414.336.75.75.75H8.5a.75.75 0 0 0 .75-.75Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M.99 5.24A2.25 2.25 0 0 1 3.25 3h13.5A2.25 2.25 0 0 1 19 5.25l.01 9.5A2.25 2.25 0 0 1 16.76 17H3.26A2.267 2.267 0 0 1 1 14.74l-.01-9.5Zm8.26 9.52v-.625a.75.75 0 0 0-.75-.75H3.25a.75.75 0 0 0-.75.75v.615c0 .414.336.75.75.75h5.373a.75.75 0 0 0 .627-.74Zm1.5 0a.75.75 0 0 0 .627.74h5.373a.75.75 0 0 0 .75-.75v-.615a.75.75 0 0 0-.75-.75H11.5a.75.75 0 0 0-.75.75v.625Zm6.75-3.63v-.625a.75.75 0 0 0-.75-.75H11.5a.75.75 0 0 0-.75.75v.625c0 .414.336.75.75.75h5.25a.75.75 0 0 0 .75-.75Zm-8.25 0v-.625a.75.75 0 0 0-.75-.75H3.25a.75.75 0 0 0-.75.75v.625c0 .414.336.75.75.75H8.5a.75.75 0 0 0 .75-.75ZM17.5 7.5v-.625a.75.75 0 0 0-.75-.75H11.5a.75.75 0 0 0-.75.75V7.5c0 .414.336.75.75.75h5.25a.75.75 0 0 0 .75-.75Zm-8.25 0v-.625a.75.75 0 0 0-.75-.75H3.25a.75.75 0 0 0-.75.75V7.5c0 .414.336.75.75.75H8.5a.75.75 0 0 0 .75-.75Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A")}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .upload-image:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M1 5.25A2.25 2.25 0 0 1 3.25 3h13.5A2.25 2.25 0 0 1 19 5.25v9.5A2.25 2.25 0 0 1 16.75 17H3.25A2.25 2.25 0 0 1 1 14.75v-9.5Zm1.5 5.81v3.69c0 .414.336.75.75.75h13.5a.75.75 0 0 0 .75-.75v-2.69l-2.22-2.219a.75.75 0 0 0-1.06 0l-1.91 1.909.47.47a.75.75 0 1 1-1.06 1.06L6.53 8.091a.75.75 0 0 0-1.06 0l-2.97 2.97ZM12 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M1 5.25A2.25 2.25 0 0 1 3.25 3h13.5A2.25 2.25 0 0 1 19 5.25v9.5A2.25 2.25 0 0 1 16.75 17H3.25A2.25 2.25 0 0 1 1 14.75v-9.5Zm1.5 5.81v3.69c0 .414.336.75.75.75h13.5a.75.75 0 0 0 .75-.75v-2.69l-2.22-2.219a.75.75 0 0 0-1.06 0l-1.91 1.909.47.47a.75.75 0 1 1-1.06 1.06L6.53 8.091a.75.75 0 0 0-1.06 0l-2.97 2.97ZM12 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A")}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .undo:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M7.793 2.232a.75.75 0 0 1-.025 1.06L3.622 7.25h10.003a5.375 5.375 0 0 1 0 10.75H10.75a.75.75 0 0 1 0-1.5h2.875a3.875 3.875 0 0 0 0-7.75H3.622l4.146 3.957a.75.75 0 0 1-1.036 1.085l-5.5-5.25a.75.75 0 0 1 0-1.085l5.5-5.25a.75.75 0 0 1 1.06.025Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M7.793 2.232a.75.75 0 0 1-.025 1.06L3.622 7.25h10.003a5.375 5.375 0 0 1 0 10.75H10.75a.75.75 0 0 1 0-1.5h2.875a3.875 3.875 0 0 0 0-7.75H3.622l4.146 3.957a.75.75 0 0 1-1.036 1.085l-5.5-5.25a.75.75 0 0 1 0-1.085l5.5-5.25a.75.75 0 0 1 1.06.025Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A")}.fi-fo-markdown-editor .EasyMDEContainer .editor-toolbar .redo:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M12.207 2.232a.75.75 0 0 0 .025 1.06l4.146 3.958H6.375a5.375 5.375 0 0 0 0 10.75H9.25a.75.75 0 0 0 0-1.5H6.375a3.875 3.875 0 0 1 0-7.75h10.003l-4.146 3.957a.75.75 0 0 0 1.036 1.085l5.5-5.25a.75.75 0 0 0 0-1.085l-5.5-5.25a.75.75 0 0 0-1.06.025Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' class='size-5'%3E%3Cpath fill-rule='evenodd' d='M12.207 2.232a.75.75 0 0 0 .025 1.06l4.146 3.958H6.375a5.375 5.375 0 0 0 0 10.75H9.25a.75.75 0 0 0 0-1.5H6.375a3.875 3.875 0 0 1 0-7.75h10.003l-4.146 3.957a.75.75 0 0 0 1.036 1.085l5.5-5.25a.75.75 0 0 0 0-1.085l-5.5-5.25a.75.75 0 0 0-1.06.025Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A")}.fi-fo-markdown-editor .EasyMDEContainer .editor-statusbar{display:none}.fi-fo-markdown-editor:where(.dark,.dark *){--color-cm-red:#f87171;--color-cm-orange:#fb923c;--color-cm-amber:#fbbf24;--color-cm-yellow:#facc15;--color-cm-lime:#a3e635;--color-cm-green:#4ade80;--color-cm-emerald:#4ade80;--color-cm-teal:#2dd4bf;--color-cm-cyan:#22d3ee;--color-cm-sky:#38bdf8;--color-cm-blue:#60a5fa;--color-cm-indigo:#818cf8;--color-cm-violet:#a78bfa;--color-cm-purple:#c084fc;--color-cm-fuchsia:#e879f9;--color-cm-pink:#f472b6;--color-cm-rose:#fb7185;--color-cm-gray:#fafafa;--color-cm-gray-muted:#a1a1aa;--color-cm-gray-background:#52525b}.fi-fo-markdown-editor:where(.dark,.dark *) .EasyMDEContainer .cm-s-easymde span.CodeMirror-selectedtext{filter:invert()}.fi-fo-markdown-editor:where(.dark,.dark *) .EasyMDEContainer .editor-toolbar button:before{background-color:var(--gray-300)}.fi-fo-markdown-editor:where(.dark,.dark *) .EasyMDEContainer .editor-toolbar button.active:before{background-color:var(--primary-400)}[x-sortable]:has(.fi-sortable-ghost) .fi-fo-markdown-editor{pointer-events:none}.fi-fo-modal-table-select:not(.fi-fo-modal-table-select-multiple){align-items:flex-start;column-gap:calc(var(--spacing)*3);--tw-leading:calc(var(--spacing)*5);line-height:calc(var(--spacing)*5);display:flex}.fi-fo-modal-table-select.fi-fo-modal-table-select-multiple{gap:calc(var(--spacing)*2);display:grid}.fi-fo-modal-table-select.fi-fo-modal-table-select-multiple .fi-fo-modal-table-select-badges-ctn{gap:calc(var(--spacing)*1.5);flex-wrap:wrap;display:flex}.fi-fo-modal-table-select .fi-fo-modal-table-select-placeholder{color:var(--gray-400)}.fi-fo-modal-table-select .fi-fo-modal-table-select-placeholder:where(.dark,.dark *){color:var(--gray-500)}.fi-fo-radio{gap:calc(var(--spacing)*4)}.fi-fo-radio.fi-inline{flex-wrap:wrap;display:flex}.fi-fo-radio:not(.fi-inline).fi-grid-direction-col{margin-top:calc(var(--spacing)*-4)}.fi-fo-radio:not(.fi-inline).fi-grid-direction-col>.fi-fo-radio-label{break-inside:avoid;padding-top:calc(var(--spacing)*4)}.fi-fo-radio>.fi-fo-radio-label{column-gap:calc(var(--spacing)*3);align-self:flex-start;display:flex}.fi-fo-radio>.fi-fo-radio-label>.fi-radio-input{margin-top:calc(var(--spacing)*1);flex-shrink:0}.fi-fo-radio>.fi-fo-radio-label>.fi-fo-radio-label-text{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950);display:grid}.fi-fo-radio>.fi-fo-radio-label>.fi-fo-radio-label-text:where(.dark,.dark *){color:var(--color-white)}.fi-fo-radio>.fi-fo-radio-label .fi-fo-radio-label-description{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal);color:var(--gray-500)}.fi-fo-radio>.fi-fo-radio-label .fi-fo-radio-label-description:where(.dark,.dark *),.fi-fo-radio>.fi-fo-radio-label:has(.fi-radio-input:disabled)>.fi-fo-radio-label-text{color:var(--gray-400)}.fi-fo-radio>.fi-fo-radio-label:has(.fi-radio-input:disabled)>.fi-fo-radio-label-text:where(.dark,.dark *){color:var(--gray-500)}.fi-fo-radio>.fi-fo-radio-label:has(.fi-radio-input:disabled) .fi-fo-radio-label-description{color:var(--gray-300)}.fi-fo-radio>.fi-fo-radio-label:has(.fi-radio-input:disabled) .fi-fo-radio-label-description:where(.dark,.dark *){color:var(--gray-600)}.fi-fo-repeater{row-gap:calc(var(--spacing)*4);display:grid}.fi-fo-repeater .fi-fo-repeater-actions{column-gap:calc(var(--spacing)*3);display:flex}.fi-fo-repeater .fi-fo-repeater-actions.fi-hidden{display:none}.fi-fo-repeater .fi-fo-repeater-items{align-items:flex-start;gap:calc(var(--spacing)*4)}.fi-fo-repeater .fi-fo-repeater-item{border-radius:var(--radius-xl);background-color:var(--color-white);--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}.fi-fo-repeater .fi-fo-repeater-item:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-repeater .fi-fo-repeater-item:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-repeater .fi-fo-repeater-item:where(.dark,.dark *){--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-repeater .fi-fo-repeater-item:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-repeater .fi-fo-repeater-item.fi-collapsed .fi-fo-repeater-item-header-collapsible-actions{rotate:-180deg}.fi-fo-repeater .fi-fo-repeater-item.fi-collapsed .fi-fo-repeater-item-header-collapse-action,.fi-fo-repeater .fi-fo-repeater-item:not(.fi-collapsed) .fi-fo-repeater-item-header-expand-action{pointer-events:none;opacity:0}.fi-fo-repeater .fi-fo-repeater-item-header{align-items:center;column-gap:calc(var(--spacing)*3);padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*3);display:flex;overflow:hidden}.fi-fo-repeater.fi-collapsible .fi-fo-repeater-item-header{cursor:pointer;-webkit-user-select:none;user-select:none}.fi-fo-repeater .fi-fo-repeater-item-header-start-actions{align-items:center;column-gap:calc(var(--spacing)*3);display:flex}.fi-fo-repeater .fi-fo-repeater-item-header-label{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-fo-repeater .fi-fo-repeater-item-header-label:where(.dark,.dark *){color:var(--color-white)}.fi-fo-repeater .fi-fo-repeater-item-header-label.fi-truncated{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.fi-fo-repeater .fi-fo-repeater-item-header-end-actions{align-items:center;column-gap:calc(var(--spacing)*3);margin-inline-start:auto;display:flex}.fi-fo-repeater .fi-fo-repeater-item-header-collapsible-actions{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));position:relative}.fi-fo-repeater .fi-fo-repeater-item-header-collapse-action{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.fi-fo-repeater .fi-fo-repeater-item-header-expand-action{inset:calc(var(--spacing)*0);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));position:absolute;rotate:180deg}.fi-fo-repeater .fi-fo-repeater-item-has-header>.fi-fo-repeater-item-content{border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--gray-100)}.fi-fo-repeater .fi-fo-repeater-item-has-header>.fi-fo-repeater-item-content:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-repeater .fi-fo-repeater-item-has-header>.fi-fo-repeater-item-content:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-repeater .fi-fo-repeater-item-content{padding:calc(var(--spacing)*4)}.fi-fo-repeater .fi-fo-repeater-add-between-items-ctn{justify-content:center;width:100%;display:flex}.fi-fo-repeater .fi-fo-repeater-add-between-items{border-radius:var(--radius-lg);background-color:var(--color-white)}.fi-fo-repeater .fi-fo-repeater-add-between-items:where(.dark,.dark *){background-color:var(--gray-900)}.fi-fo-repeater .fi-fo-repeater-label-between-items-ctn{margin-block:calc(var(--spacing)*-2);align-items:center;display:flex;position:relative}.fi-fo-repeater .fi-fo-repeater-label-between-items-divider-before{width:calc(var(--spacing)*3);border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--gray-200);flex-shrink:0}.fi-fo-repeater .fi-fo-repeater-label-between-items-divider-before:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-repeater .fi-fo-repeater-label-between-items-divider-before:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-repeater .fi-fo-repeater-label-between-items{padding-inline:calc(var(--spacing)*1);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-500);flex-shrink:0}.fi-fo-repeater .fi-fo-repeater-label-between-items:where(.dark,.dark *){color:var(--gray-400)}.fi-fo-repeater .fi-fo-repeater-label-between-items-divider-after{border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--gray-200);flex:1}.fi-fo-repeater .fi-fo-repeater-label-between-items-divider-after:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-repeater .fi-fo-repeater-label-between-items-divider-after:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-repeater .fi-fo-repeater-add{justify-content:center;width:100%;display:flex}.fi-fo-repeater .fi-fo-repeater-add.fi-align-start,.fi-fo-repeater .fi-fo-repeater-add.fi-align-left{justify-content:flex-start}.fi-fo-repeater .fi-fo-repeater-add.fi-align-end,.fi-fo-repeater .fi-fo-repeater-add.fi-align-right{justify-content:flex-end}.fi-fo-simple-repeater{row-gap:calc(var(--spacing)*4);display:grid}.fi-fo-simple-repeater .fi-fo-simple-repeater-items{gap:calc(var(--spacing)*4)}.fi-fo-simple-repeater .fi-fo-simple-repeater-item{justify-content:flex-start;column-gap:calc(var(--spacing)*3);display:flex}.fi-fo-simple-repeater .fi-fo-simple-repeater-item-content{flex:1}.fi-fo-simple-repeater .fi-fo-simple-repeater-item-actions{align-items:center;column-gap:calc(var(--spacing)*1);display:flex}.fi-fo-simple-repeater .fi-fo-simple-repeater-add{justify-content:center;width:100%;display:flex}.fi-fo-simple-repeater .fi-fo-simple-repeater-add.fi-align-start,.fi-fo-simple-repeater .fi-fo-simple-repeater-add.fi-align-left{justify-content:flex-start}.fi-fo-simple-repeater .fi-fo-simple-repeater-add.fi-align-end,.fi-fo-simple-repeater .fi-fo-simple-repeater-add.fi-align-right{justify-content:flex-end}.fi-fo-table-repeater{gap:calc(var(--spacing)*3);display:grid}.fi-fo-table-repeater>table{width:100%;display:block}:where(.fi-fo-table-repeater>table>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}.fi-fo-table-repeater>table{border-radius:var(--radius-xl);background-color:var(--color-white);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}:where(.fi-fo-table-repeater>table:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:where(.fi-fo-table-repeater>table:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-table-repeater>table:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-table-repeater>table:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-table-repeater>table>thead{white-space:nowrap;display:none}.fi-fo-table-repeater>table>thead>tr>th{border-color:var(--gray-200);background-color:var(--gray-50);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950)}.fi-fo-table-repeater>table>thead>tr>th:first-of-type{border-start-start-radius:var(--radius-xl)}.fi-fo-table-repeater>table>thead>tr>th:last-of-type{border-start-end-radius:var(--radius-xl)}.fi-fo-table-repeater>table>thead>tr>th:where(.dark,.dark *){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-table-repeater>table>thead>tr>th:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-table-repeater>table>thead>tr>th:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-table-repeater>table>thead>tr>th:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-table-repeater>table>thead>tr>th:where(.dark,.dark *){color:var(--color-white)}.fi-fo-table-repeater>table>thead>tr>th:not(:first-of-type){border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px}.fi-fo-table-repeater>table>thead>tr>th:not(:last-of-type){border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}.fi-fo-table-repeater>table>thead>tr>th.fi-align-start,.fi-fo-table-repeater>table>thead>tr>th.fi-align-left{text-align:start}.fi-fo-table-repeater>table>thead>tr>th.fi-align-end,.fi-fo-table-repeater>table>thead>tr>th.fi-align-right{text-align:end}.fi-fo-table-repeater>table>thead>tr>th.fi-wrapped{white-space:normal}.fi-fo-table-repeater>table>thead>tr>th:not(.fi-wrapped){white-space:nowrap}.fi-fo-table-repeater>table>thead>tr>th.fi-fo-table-repeater-empty-header-cell{width:calc(var(--spacing)*1)}.fi-fo-table-repeater>table>tbody{display:block}:where(.fi-fo-table-repeater>table>tbody>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}:where(.fi-fo-table-repeater>table>tbody:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(.fi-fo-table-repeater>table>tbody:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-table-repeater>table>tbody>tr{gap:calc(var(--spacing)*6);padding:calc(var(--spacing)*6);display:grid}.fi-fo-table-repeater>table>tbody>tr>td{display:block}.fi-fo-table-repeater>table>tbody>tr>td.fi-hidden{display:none}.fi-fo-table-repeater>table>tbody>tr>td.fi-vertical-align-start{vertical-align:top}.fi-fo-table-repeater>table>tbody>tr>td.fi-vertical-align-center{vertical-align:middle}.fi-fo-table-repeater>table>tbody>tr>td.fi-vertical-align-end{vertical-align:bottom}.fi-fo-table-repeater>table .fi-fo-table-repeater-header-required-mark{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--danger-600)}.fi-fo-table-repeater>table .fi-fo-table-repeater-header-required-mark:where(.dark,.dark *){color:var(--danger-400)}.fi-fo-table-repeater>table .fi-fo-table-repeater-actions{align-items:center;column-gap:calc(var(--spacing)*3);height:100%;display:flex}@supports (container-type:inline-size){.fi-fo-table-repeater{container-type:inline-size}@container (min-width:36rem){.fi-fo-table-repeater>table{display:table}.fi-fo-table-repeater>table>thead{display:table-header-group}.fi-fo-table-repeater>table>tbody{display:table-row-group}.fi-fo-table-repeater>table>tbody>tr{padding:calc(var(--spacing)*0);display:table-row}.fi-fo-table-repeater>table>tbody>tr>td{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);display:table-cell}.fi-fo-table-repeater>table>tbody>tr>td.fi-hidden{display:table-cell}.fi-fo-table-repeater>table>tbody>tr>td .fi-fo-field,.fi-fo-table-repeater>table>tbody>tr>td .fi-in-entry{row-gap:calc(var(--spacing)*0)}.fi-fo-table-repeater>table>tbody>tr>td .fi-fo-field-label-content,.fi-fo-table-repeater>table>tbody>tr>td .fi-in-entry-label{display:none}.fi-fo-table-repeater>table>tbody>tr>td .fi-fo-toggle-buttons-wrp .fi-fo-field-content-col{grid-auto-columns:1fr}.fi-fo-table-repeater>table .fi-fo-table-repeater-actions{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2)}.fi-fo-table-repeater.fi-compact>table>tbody>tr>td{border-color:var(--gray-200);padding-inline:calc(var(--spacing)*0);padding-block:calc(var(--spacing)*1)}.fi-fo-table-repeater.fi-compact>table>tbody>tr>td:where(.dark,.dark *){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-table-repeater.fi-compact>table>tbody>tr>td:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-table-repeater.fi-compact>table>tbody>tr>td:not(:first-of-type){border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px}.fi-fo-table-repeater.fi-compact>table>tbody>tr>td:not(:last-of-type){border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}.fi-fo-table-repeater.fi-compact .fi-input-wrp{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor)!important;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)!important;background-color:#0000!important}.fi-fo-table-repeater.fi-compact .fi-fo-field-wrp-error-message{padding-inline:calc(var(--spacing)*3);padding-bottom:calc(var(--spacing)*2)}.fi-fo-table-repeater.fi-compact .fi-in-entry-content,.fi-fo-table-repeater.fi-compact .fi-fo-radio{padding-inline:calc(var(--spacing)*3)}}}@supports not (container-type:inline-size){@media (min-width:64rem){.fi-fo-table-repeater>table{display:table}.fi-fo-table-repeater>table>thead{display:table-header-group}.fi-fo-table-repeater>table>tbody{display:table-row-group}.fi-fo-table-repeater>table>tbody>tr{padding:calc(var(--spacing)*0);display:table-row}.fi-fo-table-repeater>table>tbody>tr>td{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);display:table-cell}.fi-fo-table-repeater>table>tbody>tr>td.fi-hidden{display:table-cell}.fi-fo-table-repeater>table>tbody>tr>td .fi-fo-field,.fi-fo-table-repeater>table>tbody>tr>td .fi-in-entry{row-gap:calc(var(--spacing)*0)}.fi-fo-table-repeater>table>tbody>tr>td .fi-fo-field-label-content,.fi-fo-table-repeater>table>tbody>tr>td .fi-in-entry-label{display:none}.fi-fo-table-repeater>table>tbody>tr>td .fi-fo-toggle-buttons-wrp .fi-fo-field-content-col{grid-auto-columns:1fr}.fi-fo-table-repeater>table .fi-fo-table-repeater-actions{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2)}.fi-fo-table-repeater.fi-compact>table>tbody>tr>td{border-color:var(--gray-200);padding-inline:calc(var(--spacing)*0);padding-block:calc(var(--spacing)*1)}.fi-fo-table-repeater.fi-compact>table>tbody>tr>td:where(.dark,.dark *){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-table-repeater.fi-compact>table>tbody>tr>td:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-table-repeater.fi-compact>table>tbody>tr>td:not(:first-of-type){border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px}.fi-fo-table-repeater.fi-compact>table>tbody>tr>td:not(:last-of-type){border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}.fi-fo-table-repeater.fi-compact .fi-input-wrp{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor)!important;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)!important;background-color:#0000!important}.fi-fo-table-repeater.fi-compact .fi-fo-field-wrp-error-message{padding-inline:calc(var(--spacing)*3);padding-bottom:calc(var(--spacing)*2)}.fi-fo-table-repeater.fi-compact .fi-in-entry-content,.fi-fo-table-repeater.fi-compact .fi-fo-radio{padding-inline:calc(var(--spacing)*3)}}}.fi-fo-table-repeater .fi-fo-table-repeater-add{justify-content:center;width:100%;display:flex}.fi-fo-table-repeater .fi-fo-table-repeater-add.fi-align-start,.fi-fo-table-repeater .fi-fo-table-repeater-add.fi-align-left{justify-content:flex-start}.fi-fo-table-repeater .fi-fo-table-repeater-add.fi-align-end,.fi-fo-table-repeater .fi-fo-table-repeater-add.fi-align-right{justify-content:flex-end}.fi-fo-rich-editor .fi-fo-rich-editor-uploading-file{pointer-events:none;cursor:wait;opacity:.5}.fi-fo-rich-editor .fi-fo-rich-editor-toolbar{column-gap:calc(var(--spacing)*3);row-gap:calc(var(--spacing)*1);border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200);padding-inline:calc(var(--spacing)*2.5);padding-block:calc(var(--spacing)*2);flex-wrap:wrap;display:flex;position:relative}.fi-fo-rich-editor .fi-fo-rich-editor-toolbar:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-toolbar:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-floating-toolbar{visibility:hidden;z-index:20;margin-top:calc(var(--spacing)*-1);column-gap:calc(var(--spacing)*3);row-gap:calc(var(--spacing)*1);border-radius:var(--radius-lg);border-style:var(--tw-border-style);border-width:1px;border-color:var(--gray-300);background-color:var(--color-white);max-width:100%;padding:calc(var(--spacing)*1);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);flex-wrap:wrap;display:flex;position:absolute}.fi-fo-rich-editor .fi-fo-rich-editor-floating-toolbar:where(.dark,.dark *){border-color:var(--gray-600);background-color:var(--gray-800)}.fi-fo-rich-editor .fi-fo-rich-editor-toolbar-group{column-gap:calc(var(--spacing)*1);display:flex}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool{display:inline-flex;position:relative}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-trigger{height:calc(var(--spacing)*8);cursor:pointer;justify-content:center;align-items:center;gap:calc(var(--spacing)*.5);border-radius:var(--radius-lg);--tw-border-style:none;padding-inline:calc(var(--spacing)*1);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-700);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;--tw-outline-style:none;background-color:#0000;border-style:none;outline-style:none;transition-duration:75ms;display:flex}@media (hover:hover){.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-trigger:hover{background-color:var(--gray-50)}}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-trigger:focus-visible{background-color:var(--gray-50)}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-trigger:where(.dark,.dark *){color:var(--gray-200)}@media (hover:hover){.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-trigger:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-trigger:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-trigger:where(.dark,.dark *):focus-visible{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-trigger:where(.dark,.dark *):focus-visible{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-trigger.fi-active{background-color:var(--gray-50);color:var(--primary-600)}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-trigger.fi-active:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-trigger.fi-active:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-trigger.fi-active:where(.dark,.dark *){color:var(--primary-400)}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-chevron{height:calc(var(--spacing)*3);width:calc(var(--spacing)*3);color:var(--gray-400)}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-chevron:where(.dark,.dark *){color:var(--gray-500)}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-menu{z-index:30;gap:calc(var(--spacing)*1);border-radius:var(--radius-lg);border-style:var(--tw-border-style);border-width:1px;border-color:var(--gray-300);background-color:var(--color-white);padding:calc(var(--spacing)*1);--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);inset-inline-start:calc(var(--spacing)*0);display:flex;position:absolute;top:calc(100% + .25rem)}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-menu:where(.dark,.dark *){border-color:var(--gray-600);background-color:var(--gray-800)}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-option{height:calc(var(--spacing)*8);min-width:calc(var(--spacing)*8);cursor:pointer;border-radius:var(--radius-lg);--tw-border-style:none;padding:calc(var(--spacing)*0);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-700);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;--tw-outline-style:none;background-color:#0000;border-style:none;outline-style:none;justify-content:center;align-items:center;transition-duration:75ms;display:flex}@media (hover:hover){.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-option:hover{background-color:var(--gray-50)}}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-option:focus-visible{background-color:var(--gray-50)}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-option:where(.dark,.dark *){color:var(--gray-200)}@media (hover:hover){.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-option:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-option:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-option:where(.dark,.dark *):focus-visible{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-option:where(.dark,.dark *):focus-visible{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-option.fi-active{background-color:var(--gray-50);color:var(--primary-600)}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-option.fi-active:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-option.fi-active:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-option.fi-active:where(.dark,.dark *){color:var(--primary-400)}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-textual .fi-fo-rich-editor-dropdown-tool-menu{min-width:calc(var(--spacing)*32);flex-direction:column}.fi-fo-rich-editor .fi-fo-rich-editor-dropdown-tool-textual .fi-fo-rich-editor-dropdown-tool-option{min-width:calc(var(--spacing)*0);justify-content:flex-start;gap:calc(var(--spacing)*2);padding-inline:calc(var(--spacing)*2);padding-block:calc(var(--spacing)*1);--tw-font-weight:var(--font-weight-normal);font-size:.8125rem;font-weight:var(--font-weight-normal);white-space:nowrap}.fi-fo-rich-editor .fi-fo-rich-editor-tool{height:calc(var(--spacing)*8);min-width:calc(var(--spacing)*8);border-radius:var(--radius-lg);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-700);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;justify-content:center;align-items:center;transition-duration:75ms;display:flex}@media (hover:hover){.fi-fo-rich-editor .fi-fo-rich-editor-tool:hover{background-color:var(--gray-50)}}.fi-fo-rich-editor .fi-fo-rich-editor-tool:focus-visible{background-color:var(--gray-50)}.fi-fo-rich-editor .fi-fo-rich-editor-tool:where(.dark,.dark *){color:var(--gray-200)}@media (hover:hover){.fi-fo-rich-editor .fi-fo-rich-editor-tool:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-tool:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-fo-rich-editor .fi-fo-rich-editor-tool:where(.dark,.dark *):focus-visible{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-tool:where(.dark,.dark *):focus-visible{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-tool[disabled]{pointer-events:none;cursor:default;opacity:.7}.fi-fo-rich-editor .fi-fo-rich-editor-tool.fi-active{background-color:var(--gray-50);color:var(--primary-600)}.fi-fo-rich-editor .fi-fo-rich-editor-tool.fi-active:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-tool.fi-active:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-tool.fi-active:where(.dark,.dark *){color:var(--primary-400)}.fi-fo-rich-editor .fi-fo-rich-editor-tool.fi-fo-rich-editor-tool-with-label{align-items:center;column-gap:calc(var(--spacing)*1);padding-inline:calc(var(--spacing)*1.5)}.fi-fo-rich-editor .fi-fo-rich-editor-uploading-file-message{align-items:center;column-gap:calc(var(--spacing)*3);border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200);background-color:var(--gray-50);padding-inline:calc(var(--spacing)*5);padding-block:calc(var(--spacing)*1.5);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-700);display:flex}.fi-fo-rich-editor .fi-fo-rich-editor-uploading-file-message:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-uploading-file-message:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-uploading-file-message:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-uploading-file-message:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-uploading-file-message:where(.dark,.dark *){color:var(--gray-200)}.fi-fo-rich-editor .fi-fo-rich-editor-uploading-file-message .fi-loading-indicator{color:var(--gray-400)}.fi-fo-rich-editor .fi-fo-rich-editor-uploading-file-message .fi-loading-indicator:where(.dark,.dark *){color:var(--gray-500)}.fi-fo-rich-editor .fi-fo-rich-editor-file-validation-message{align-items:center;column-gap:calc(var(--spacing)*3);border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--danger-200);background-color:var(--danger-50);padding-inline:calc(var(--spacing)*5);padding-block:calc(var(--spacing)*1.5);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--danger-700);display:flex}.fi-fo-rich-editor .fi-fo-rich-editor-file-validation-message:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-file-validation-message:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-file-validation-message:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-file-validation-message:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-file-validation-message:where(.dark,.dark *){color:var(--danger-200)}.fi-fo-rich-editor .fi-fo-rich-editor-main{flex-direction:column-reverse;display:flex}.fi-fo-rich-editor .fi-fo-rich-editor-content{min-height:calc(var(--spacing)*12);width:100%;padding-inline:calc(var(--spacing)*5);padding-block:calc(var(--spacing)*3);flex:1;position:relative}.fi-fo-rich-editor span[data-type=mergeTag]{margin-block:calc(var(--spacing)*0);white-space:nowrap;display:inline-block}.fi-fo-rich-editor span[data-type=mergeTag]:before{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal);opacity:.6;content:"{{";margin-inline-end:calc(var(--spacing)*1)}.fi-fo-rich-editor span[data-type=mergeTag]:after{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal);opacity:.6;content:"}}";margin-inline-start:calc(var(--spacing)*1)}.fi-fo-rich-editor span[data-type=mention]{margin-block:calc(var(--spacing)*0);background-color:var(--primary-50);padding-inline:calc(var(--spacing)*1);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);white-space:nowrap;color:var(--primary-600);border-radius:.25rem;display:inline-block}.fi-fo-rich-editor span[data-type=mention]:where(.dark,.dark *){background-color:var(--primary-400)}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor span[data-type=mention]:where(.dark,.dark *){background-color:color-mix(in oklab,var(--primary-400)10%,transparent)}}.fi-fo-rich-editor span[data-type=mention]:where(.dark,.dark *){color:var(--primary-400)}.fi-fo-rich-editor .fi-fo-rich-editor-panels{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200);background-color:var(--gray-50);width:100%}.fi-fo-rich-editor .fi-fo-rich-editor-panels:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-panels:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-panels:where(.dark,.dark *){background-color:var(--gray-900)}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-panels:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-900)30%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-panel-header{align-items:flex-start;gap:calc(var(--spacing)*3);padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*3);display:flex}.fi-fo-rich-editor .fi-fo-rich-editor-panel-heading{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950);flex:1}.fi-fo-rich-editor .fi-fo-rich-editor-panel-heading:where(.dark,.dark *){color:var(--color-white)}.fi-fo-rich-editor .fi-fo-rich-editor-panel-close-btn-ctn{flex-shrink:0}.fi-fo-rich-editor .fi-fo-rich-editor-panel{display:grid}:where(.fi-fo-rich-editor .fi-fo-rich-editor-panel>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}:where(.fi-fo-rich-editor .fi-fo-rich-editor-panel:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:where(.fi-fo-rich-editor .fi-fo-rich-editor-panel:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-merge-tags-list{gap:calc(var(--spacing)*2);padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*3);flex-wrap:wrap;display:flex}.fi-fo-rich-editor .fi-fo-rich-editor-merge-tag-btn{cursor:move;border-radius:var(--radius-lg);background-color:var(--color-white);padding:calc(var(--spacing)*1);text-align:start;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-600);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--gray-600)}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-merge-tag-btn{--tw-ring-color:color-mix(in oklab,var(--gray-600)10%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-merge-tag-btn:where(.dark,.dark *){background-color:var(--gray-400)}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-merge-tag-btn:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-400)10%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-merge-tag-btn:where(.dark,.dark *){color:var(--gray-200);--tw-ring-color:var(--gray-400)}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-merge-tag-btn:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--gray-400)20%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-custom-blocks-list{gap:calc(var(--spacing)*2);padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*3);flex-wrap:wrap;display:flex}.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-btn{cursor:move;gap:calc(var(--spacing)*1.5);border-radius:var(--radius-lg);background-color:var(--color-white);padding-inline:calc(var(--spacing)*2);padding-block:calc(var(--spacing)*1);text-align:start;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-600);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--gray-600);display:flex}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-btn{--tw-ring-color:color-mix(in oklab,var(--gray-600)10%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-btn:where(.dark,.dark *){background-color:var(--gray-400)}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-btn:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-400)10%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-btn:where(.dark,.dark *){color:var(--gray-200);--tw-ring-color:var(--gray-400)}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-btn:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--gray-400)20%,transparent)}}.fi-fo-rich-editor .tiptap{height:100%}.fi-fo-rich-editor .tiptap:focus{--tw-outline-style:none;outline-style:none}div:is(.fi-fo-rich-editor .tiptap:focus .ProseMirror-selectednode)[data-type=customBlock],img:is(.fi-fo-rich-editor .tiptap:focus .ProseMirror-selectednode){--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--primary-600)}:is(div:is(.fi-fo-rich-editor .tiptap:focus .ProseMirror-selectednode)[data-type=customBlock],img:is(.fi-fo-rich-editor .tiptap:focus .ProseMirror-selectednode)):where(.dark,.dark *){--tw-ring-color:var(--primary-500)}.fi-fo-rich-editor .tiptap p.is-editor-empty:first-child:before{pointer-events:none;float:inline-start;height:calc(var(--spacing)*0);color:var(--gray-400);content:attr(data-placeholder)}.fi-fo-rich-editor .tiptap p.is-editor-empty:first-child:where(.dark,.dark *):before{color:var(--gray-500)}.fi-fo-rich-editor .tiptap [data-type=details]{margin-block:calc(var(--spacing)*6);gap:calc(var(--spacing)*1);border-radius:var(--radius-md);border-style:var(--tw-border-style);border-width:1px;border-color:var(--gray-950);display:flex}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .tiptap [data-type=details]{border-color:color-mix(in oklab,var(--gray-950)20%,transparent)}}.fi-fo-rich-editor .tiptap [data-type=details]{padding:calc(var(--spacing)*4)}.fi-fo-rich-editor .tiptap [data-type=details]:where(.dark,.dark *){border-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .tiptap [data-type=details]:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-fo-rich-editor .tiptap [data-type=details]>div:first-of-type{margin-top:calc(var(--spacing)*0)!important}.fi-fo-rich-editor .tiptap [data-type=details] summary{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);list-style-type:none}.fi-fo-rich-editor .tiptap [data-type=details]>button{margin-top:1px;margin-right:calc(var(--spacing)*2);width:calc(var(--spacing)*5);height:calc(var(--spacing)*5);border-radius:var(--radius-md);padding:calc(var(--spacing)*1);font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height));--tw-leading:1;background-color:#0000;justify-content:center;align-items:center;line-height:1;display:flex}@media (hover:hover){.fi-fo-rich-editor .tiptap [data-type=details]>button:hover{background-color:var(--gray-950)}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .tiptap [data-type=details]>button:hover{background-color:color-mix(in oklab,var(--gray-950)5%,transparent)}}.fi-fo-rich-editor .tiptap [data-type=details]>button:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .tiptap [data-type=details]>button:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-fo-rich-editor .tiptap [data-type=details]>button:before{content:"▶"}.fi-fo-rich-editor .tiptap [data-type=details].is-open>button:before{transform:rotate(90deg)}.fi-fo-rich-editor .tiptap [data-type=details]>div{gap:calc(var(--spacing)*4);flex-direction:column;width:100%;display:flex}.fi-fo-rich-editor .tiptap [data-type=details]>div>[data-type=detailsContent]{margin-top:calc(var(--spacing)*0)!important}.fi-fo-rich-editor .tiptap [data-type=details]>div>[data-type=detailsContent]>:last-child{margin-bottom:calc(var(--spacing)*4)}.fi-fo-rich-editor .tiptap table{margin:calc(var(--spacing)*0);table-layout:fixed;border-collapse:collapse;width:100%;overflow:hidden}.fi-fo-rich-editor .tiptap table:first-child{margin-top:calc(var(--spacing)*0)}.fi-fo-rich-editor .tiptap table td,.fi-fo-rich-editor .tiptap table th{border-style:var(--tw-border-style);border-width:1px;border-color:var(--gray-300);vertical-align:top;min-width:1em;position:relative;padding:calc(var(--spacing)*2)!important}:is(.fi-fo-rich-editor .tiptap table td,.fi-fo-rich-editor .tiptap table th):where(.dark,.dark *){border-color:var(--gray-600)}:is(.fi-fo-rich-editor .tiptap table td,.fi-fo-rich-editor .tiptap table th)>*{margin-bottom:calc(var(--spacing)*0)}.fi-fo-rich-editor .tiptap table th{background-color:var(--gray-100);text-align:start;--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.fi-fo-rich-editor .tiptap table th:where(.dark,.dark *){background-color:var(--gray-800);color:var(--color-white)}.fi-fo-rich-editor .tiptap table .selectedCell:after{pointer-events:none;inset-inline-start:calc(var(--spacing)*0);inset-inline-end:calc(var(--spacing)*0);top:calc(var(--spacing)*0);bottom:calc(var(--spacing)*0);z-index:2;background-color:var(--gray-200);position:absolute}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .tiptap table .selectedCell:after{background-color:color-mix(in oklab,var(--gray-200)80%,transparent)}}.fi-fo-rich-editor .tiptap table .selectedCell:after{--tw-content:"";content:var(--tw-content)}.fi-fo-rich-editor .tiptap table .selectedCell:where(.dark,.dark *):after{background-color:var(--gray-800)}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .tiptap table .selectedCell:where(.dark,.dark *):after{background-color:color-mix(in oklab,var(--gray-800)80%,transparent)}}.fi-fo-rich-editor .tiptap table .column-resize-handle{pointer-events:none;inset-inline-end:calc(var(--spacing)*0);top:calc(var(--spacing)*0);bottom:calc(var(--spacing)*0);width:calc(var(--spacing)*1);background-color:var(--primary-600);position:absolute;margin:calc(var(--spacing)*0)!important}.fi-fo-rich-editor .tiptap .tableWrapper{overflow-x:auto}.fi-fo-rich-editor .tiptap.resize-cursor{cursor:col-resize;cursor:ew-resize}.fi-fo-rich-editor .tiptap .grid-layout>.grid-layout-col{border-radius:var(--radius-md);border-style:var(--tw-border-style);border-width:1px;border-color:var(--gray-950)}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .tiptap .grid-layout>.grid-layout-col{border-color:color-mix(in oklab,var(--gray-950)20%,transparent)}}.fi-fo-rich-editor .tiptap .grid-layout>.grid-layout-col{padding:calc(var(--spacing)*4)}.fi-fo-rich-editor .tiptap .grid-layout>.grid-layout-col:where(.dark,.dark *){border-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .tiptap .grid-layout>.grid-layout-col:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-fo-rich-editor .tiptap [data-resize-handle]{z-index:10;background:#00000080;border:1px solid #fffc;border-radius:2px;position:absolute}.fi-fo-rich-editor .tiptap [data-resize-handle]:hover{background:#000c}.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle]{margin:0!important}.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=top-left],.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=top-right],.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=bottom-left],.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=bottom-right]{width:8px;height:8px}.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=top-left]{cursor:nwse-resize;top:-4px;left:-4px}.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=top-right]{cursor:nesw-resize;top:-4px;right:-4px}.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=bottom-left]{cursor:nesw-resize;bottom:-4px;left:-4px}.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=bottom-right]{cursor:nwse-resize;bottom:-4px;right:-4px}.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=top],.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=bottom]{height:6px;left:8px;right:8px}.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=top]{cursor:ns-resize;top:-3px}.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=bottom]{cursor:ns-resize;bottom:-3px}.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=left],.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=right]{width:6px;top:8px;bottom:8px}.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=left]{cursor:ew-resize;left:-3px}.fi-fo-rich-editor .tiptap [data-resize-handle][data-resize-handle=right]{cursor:ew-resize;right:-3px}.fi-fo-rich-editor .tiptap [data-resize-state=true] [data-resize-wrapper]{border-radius:.125rem;outline:1px solid #00000040;position:relative}.fi-fo-rich-editor .tiptap [data-resize-container]{display:inline-block!important}@supports (-webkit-touch-callout:none){.fi-fo-rich-editor .tiptap.ProseMirror{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}}.fi-fo-rich-editor img{display:inline-block}.fi-fo-rich-editor div[data-type=customBlock]{display:grid}:where(.fi-fo-rich-editor div[data-type=customBlock]>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}.fi-fo-rich-editor div[data-type=customBlock]{border-radius:var(--radius-lg);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent);overflow:hidden}:where(.fi-fo-rich-editor div[data-type=customBlock]:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:where(.fi-fo-rich-editor div[data-type=customBlock]:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-rich-editor div[data-type=customBlock]:where(.dark,.dark *){--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor div[data-type=customBlock]:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-header{align-items:flex-start;gap:calc(var(--spacing)*3);background-color:var(--gray-50);padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*3);display:flex}.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-header:where(.dark,.dark *){background-color:var(--gray-900)}@supports (color:color-mix(in lab, red, red)){.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-header:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-900)30%,transparent)}}.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-heading{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950);flex:1}.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-heading:where(.dark,.dark *){color:var(--color-white)}.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-edit-btn-ctn,.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-delete-btn-ctn{flex-shrink:0}.fi-fo-rich-editor .fi-fo-rich-editor-custom-block-preview{padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*3)}@supports (container-type:inline-size){.fi-fo-rich-editor{container-type:inline-size}@container (min-width:42rem){.fi-fo-rich-editor .fi-fo-rich-editor-main{flex-direction:row}.fi-fo-rich-editor .fi-fo-rich-editor-panels{max-width:var(--container-3xs);border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px;border-bottom-style:var(--tw-border-style);border-bottom-width:0;border-end-end-radius:var(--radius-lg)}}}@supports not (container-type:inline-size){@media (min-width:48rem){.fi-fo-rich-editor .fi-fo-rich-editor-main{flex-direction:row}.fi-fo-rich-editor .fi-fo-rich-editor-panels{max-width:var(--container-3xs);border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px;border-bottom-style:var(--tw-border-style);border-bottom-width:0;border-end-end-radius:var(--radius-lg)}}}:scope .fi-fo-rich-editor-text-color-select-option{align-items:center;gap:calc(var(--spacing)*2);display:flex}:scope .fi-fo-rich-editor-text-color-select-option .fi-fo-rich-editor-text-color-select-option-preview{height:calc(var(--spacing)*5);width:calc(var(--spacing)*5);background-color:var(--color);border-radius:3.40282e38px;flex-shrink:0}:scope .fi-fo-rich-editor-text-color-select-option .fi-fo-rich-editor-text-color-select-option-preview:where(.dark,.dark *){background-color:var(--dark-color)}[x-sortable]:has(.fi-sortable-ghost) .fi-fo-rich-editor{pointer-events:none}.fi-fo-select .fi-hidden{display:none}@media (min-width:40rem){.fi-fo-select-wrp.fi-fo-field-has-inline-label .fi-fo-field-label-col{padding-top:calc(var(--spacing)*1.5)}}.fi-fo-slider{gap:calc(var(--spacing)*4);border-radius:var(--radius-lg);border-style:var(--tw-border-style);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent);background-color:#0000;border-width:0}.fi-fo-slider:where(.dark,.dark *){--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-fo-slider:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-fo-slider .noUi-connect{background-color:var(--primary-500)}.fi-fo-slider .noUi-connect:where(.dark,.dark *){background-color:var(--primary-600)}.fi-fo-slider .noUi-connects{border-radius:var(--radius-lg);background-color:var(--gray-950)}@supports (color:color-mix(in lab, red, red)){.fi-fo-slider .noUi-connects{background-color:color-mix(in oklab,var(--gray-950)5%,transparent)}}.fi-fo-slider .noUi-connects:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-fo-slider .noUi-connects:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-fo-slider .noUi-handle{border-radius:var(--radius-lg);border-style:var(--tw-border-style);border-width:1px;border-color:var(--gray-950);position:absolute}@supports (color:color-mix(in lab, red, red)){.fi-fo-slider .noUi-handle{border-color:color-mix(in oklab,var(--gray-950)10%,transparent)}}.fi-fo-slider .noUi-handle{background-color:var(--color-white);--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);backface-visibility:hidden}.fi-fo-slider .noUi-handle:focus{outline-style:var(--tw-outline-style);outline-width:2px;outline-color:var(--primary-600)}.fi-fo-slider .noUi-handle:where(.dark,.dark *){border-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-fo-slider .noUi-handle:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-fo-slider .noUi-handle:where(.dark,.dark *){background-color:var(--gray-700)}.fi-fo-slider .noUi-handle:where(.dark,.dark *):focus{outline-color:var(--primary-500)}.fi-fo-slider .noUi-handle:before,.fi-fo-slider .noUi-handle:after{border-style:var(--tw-border-style);background-color:var(--gray-400);border-width:0}.fi-fo-slider .noUi-tooltip{border-radius:var(--radius-md);border-style:var(--tw-border-style);background-color:var(--color-white);color:var(--gray-950);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent);border-width:0}.fi-fo-slider .noUi-tooltip:where(.dark,.dark *){background-color:var(--gray-800);color:var(--color-white);--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-fo-slider .noUi-tooltip:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-fo-slider .noUi-pips .noUi-value{color:var(--gray-950)}.fi-fo-slider .noUi-pips .noUi-value:where(.dark,.dark *){color:var(--color-white)}.fi-fo-slider.fi-fo-slider-vertical{margin-top:calc(var(--spacing)*4);height:calc(var(--spacing)*40)}.fi-fo-slider.fi-fo-slider-vertical.fi-fo-slider-has-tooltips{margin-inline-start:calc(var(--spacing)*10)}.fi-fo-slider:not(.fi-fo-slider-vertical).fi-fo-slider-has-pips{margin-bottom:calc(var(--spacing)*8)}.fi-fo-slider:not(.fi-fo-slider-vertical).fi-fo-slider-has-tooltips{margin-top:calc(var(--spacing)*10)}.fi-fo-slider:not(.fi-fo-slider-vertical) .noUi-pips .noUi-value{margin-top:calc(var(--spacing)*1)}.fi-fo-tags-input.fi-disabled .fi-badge-delete-btn{display:none}.fi-fo-tags-input .fi-fo-tags-input-tags-ctn{gap:calc(var(--spacing)*1.5);border-top-style:var(--tw-border-style);border-top-width:1px;border-top-color:var(--gray-200);width:100%;padding:calc(var(--spacing)*2);flex-wrap:wrap;display:flex}.fi-fo-tags-input .fi-fo-tags-input-tags-ctn:where(.dark,.dark *){border-top-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-fo-tags-input .fi-fo-tags-input-tags-ctn:where(.dark,.dark *){border-top-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-fo-tags-input .fi-fo-tags-input-tags-ctn>template{display:none}.fi-fo-tags-input .fi-fo-tags-input-tags-ctn>.fi-badge.fi-reorderable{cursor:move}.fi-fo-tags-input .fi-fo-tags-input-tags-ctn>.fi-badge .fi-badge-label-ctn{text-align:start;-webkit-user-select:none;user-select:none}@media (min-width:40rem){.fi-fo-tags-input-wrp.fi-fo-field-has-inline-label .fi-fo-field-label-col{padding-top:calc(var(--spacing)*1.5)}}.fi-fo-text-input{overflow:hidden}.fi-fo-text-input input.fi-revealable::-ms-reveal{display:none}.fi-fo-textarea{overflow:hidden}.fi-fo-textarea textarea{--tw-border-style:none;width:100%;height:100%;padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*1.5);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);color:var(--gray-950);background-color:#0000;border-style:none;display:block}.fi-fo-textarea textarea::placeholder{color:var(--gray-400)}.fi-fo-textarea textarea:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-outline-style:none;outline-style:none}.fi-fo-textarea textarea:disabled{color:var(--gray-500);-webkit-text-fill-color:var(--color-gray-500)}.fi-fo-textarea textarea:disabled::placeholder{-webkit-text-fill-color:var(--color-gray-400)}.fi-fo-textarea textarea:where(.dark,.dark *){color:var(--color-white)}.fi-fo-textarea textarea:where(.dark,.dark *)::placeholder{color:var(--gray-500)}.fi-fo-textarea textarea:where(.dark,.dark *):disabled{color:var(--gray-400);-webkit-text-fill-color:var(--color-gray-400)}.fi-fo-textarea textarea:where(.dark,.dark *):disabled::placeholder{-webkit-text-fill-color:var(--color-gray-500)}@supports (-webkit-touch-callout:none){.fi-fo-textarea textarea{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}}.fi-fo-textarea.fi-autosizable textarea{resize:none}@media (min-width:40rem){.fi-fo-textarea-wrp.fi-fo-field-has-inline-label .fi-fo-field-label-col{padding-top:calc(var(--spacing)*1.5)}}.fi-fo-toggle-buttons.fi-btn-group{width:max-content}.fi-fo-toggle-buttons:not(.fi-btn-group){gap:calc(var(--spacing)*3)}.fi-fo-toggle-buttons:not(.fi-btn-group).fi-inline{flex-wrap:wrap;display:flex}.fi-fo-toggle-buttons:not(.fi-btn-group):not(.fi-inline).fi-grid-direction-col{margin-top:calc(var(--spacing)*-3)}.fi-fo-toggle-buttons:not(.fi-btn-group):not(.fi-inline).fi-grid-direction-col .fi-fo-toggle-buttons-btn-ctn{break-inside:avoid;padding-top:calc(var(--spacing)*3)}.fi-fo-toggle-buttons .fi-fo-toggle-buttons-input{pointer-events:none;opacity:0;position:absolute}@media (min-width:40rem){.fi-fo-toggle-buttons-wrp.fi-fo-field-has-inline-label .fi-fo-field-label-col{padding-top:calc(var(--spacing)*1.5)}}.fi-in-code .phiki{border-radius:var(--radius-lg);padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*3);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent);overflow-x:auto}.fi-in-code .phiki:where(.dark,.dark *){--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-in-code .phiki:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-in-code:where(.dark,.dark *) .phiki,.fi-in-code:where(.dark,.dark *) .phiki span{color:var(--phiki-dark-color)!important;background-color:var(--phiki-dark-background-color)!important;font-style:var(--phiki-dark-font-style)!important;font-weight:var(--phiki-dark-font-weight)!important;-webkit-text-decoration:var(--phiki-dark-text-decoration)!important;-webkit-text-decoration:var(--phiki-dark-text-decoration)!important;text-decoration:var(--phiki-dark-text-decoration)!important}.fi-in-code.fi-copyable{cursor:pointer}.fi-in-color{gap:calc(var(--spacing)*1.5);width:100%;display:flex}.fi-in-color.fi-wrapped{flex-wrap:wrap}.fi-in-color.fi-align-start,.fi-in-color.fi-align-left{justify-content:flex-start}.fi-in-color.fi-align-center{justify-content:center}.fi-in-color.fi-align-end,.fi-in-color.fi-align-right{justify-content:flex-end}.fi-in-color.fi-align-justify,.fi-in-color.fi-align-between{justify-content:space-between}.fi-in-color>.fi-in-color-item{width:calc(var(--spacing)*6);height:calc(var(--spacing)*6);border-radius:var(--radius-md)}.fi-in-color>.fi-in-color-item.fi-copyable{cursor:pointer}.fi-in-entry{row-gap:calc(var(--spacing)*2);display:grid}@media (min-width:40rem){.fi-in-entry.fi-in-entry-has-inline-label{align-items:flex-start;column-gap:calc(var(--spacing)*4);grid-template-columns:repeat(3,minmax(0,1fr))}.fi-in-entry.fi-in-entry-has-inline-label .fi-in-entry-content-col{grid-column:span 2/span 2}}.fi-in-entry .fi-in-entry-label-ctn{align-items:flex-start;column-gap:calc(var(--spacing)*3);display:flex}.fi-in-entry .fi-in-entry-label-ctn>.fi-sc:first-child{flex-grow:0}.fi-in-entry .fi-in-entry-label{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-in-entry .fi-in-entry-label:where(.dark,.dark *){color:var(--color-white)}.fi-in-entry .fi-in-entry-label.fi-hidden{display:none}.fi-in-entry .fi-in-entry-label-col,.fi-in-entry .fi-in-entry-content-col{row-gap:calc(var(--spacing)*2);grid-auto-columns:minmax(0,1fr);display:grid}.fi-in-entry .fi-in-entry-content-ctn{align-items:center;column-gap:calc(var(--spacing)*3);width:100%;display:flex}.fi-in-entry .fi-in-entry-content{text-align:start;width:100%;display:block}.fi-in-entry .fi-in-entry-content.fi-align-center{text-align:center}.fi-in-entry .fi-in-entry-content.fi-align-end{text-align:end}.fi-in-entry .fi-in-entry-content.fi-align-left{text-align:left}.fi-in-entry .fi-in-entry-content.fi-align-right{text-align:right}.fi-in-entry .fi-in-entry-content.fi-align-justify,.fi-in-entry .fi-in-entry-content.fi-align-between{text-align:justify}.fi-in-entry .fi-in-placeholder{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-400)}.fi-in-entry .fi-in-placeholder:where(.dark,.dark *){color:var(--gray-500)}.fi-in-key-value{table-layout:auto;width:100%}:where(.fi-in-key-value>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}.fi-in-key-value{border-radius:var(--radius-lg);background-color:var(--color-white);--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}:where(.fi-in-key-value:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(.fi-in-key-value:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-in-key-value:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-in-key-value:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-in-key-value:where(.dark,.dark *){--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-in-key-value:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-in-key-value th{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);text-align:start;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-700)}.fi-in-key-value th:where(.dark,.dark *){color:var(--gray-200)}:where(.fi-in-key-value tbody>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}.fi-in-key-value tbody{font-family:var(--mono-font-family),ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}@media (min-width:40rem){.fi-in-key-value tbody{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6)}}:where(.fi-in-key-value tbody:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(.fi-in-key-value tbody:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}:where(.fi-in-key-value tr>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));border-color:var(--gray-200)}:where(.fi-in-key-value tr:where(:dir(rtl),[dir=rtl],[dir=rtl] *)>:not(:last-child)){--tw-divide-x-reverse:1}:where(.fi-in-key-value tr:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(.fi-in-key-value tr:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-in-key-value td{width:50%;padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*1.5);overflow-wrap:anywhere}.fi-in-key-value td.fi-in-placeholder{width:100%;padding-block:calc(var(--spacing)*2);text-align:center;font-family:var(--font-family),ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.fi-in-icon{gap:calc(var(--spacing)*1.5);width:100%;display:flex}.fi-in-icon.fi-wrapped{flex-wrap:wrap}.fi-in-icon.fi-in-icon-has-line-breaks{flex-direction:column}.fi-in-icon.fi-align-start,.fi-in-icon.fi-align-left{justify-content:flex-start}.fi-in-icon.fi-align-center{justify-content:center}.fi-in-icon.fi-align-end,.fi-in-icon.fi-align-right{justify-content:flex-end}.fi-in-icon.fi-align-justify,.fi-in-icon.fi-align-between{justify-content:space-between}.fi-in-icon>.fi-icon,.fi-in-icon>a>.fi-icon{color:var(--gray-400)}:is(.fi-in-icon>.fi-icon,.fi-in-icon>a>.fi-icon):where(.dark,.dark *){color:var(--gray-500)}:is(.fi-in-icon>.fi-icon,.fi-in-icon>a>.fi-icon).fi-color{color:var(--text)}:is(.fi-in-icon>.fi-icon,.fi-in-icon>a>.fi-icon).fi-color:where(.dark,.dark *){color:var(--dark-text)}.fi-in-image{align-items:center;gap:calc(var(--spacing)*1.5);width:100%;display:flex}.fi-in-image img{object-fit:cover;object-position:center;max-width:none}.fi-in-image.fi-circular img{border-radius:3.40282e38px}.fi-in-image.fi-in-image-ring img,.fi-in-image.fi-in-image-ring .fi-in-image-limited-remaining-text{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--color-white)}:is(.fi-in-image.fi-in-image-ring img,.fi-in-image.fi-in-image-ring .fi-in-image-limited-remaining-text):where(.dark,.dark *){--tw-ring-color:var(--gray-900)}.fi-in-image.fi-in-image-ring.fi-in-image-ring-1 img,.fi-in-image.fi-in-image-ring.fi-in-image-ring-1 .fi-in-image-limited-remaining-text{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-in-image.fi-in-image-ring.fi-in-image-ring-2 img,.fi-in-image.fi-in-image-ring.fi-in-image-ring-2 .fi-in-image-limited-remaining-text{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-in-image.fi-in-image-ring.fi-in-image-ring-4 img,.fi-in-image.fi-in-image-ring.fi-in-image-ring-4 .fi-in-image-limited-remaining-text{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(4px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-in-image.fi-in-image-overlap-1{column-gap:calc(var(--spacing)*0)}:where(.fi-in-image.fi-in-image-overlap-1>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-1)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-1)*calc(1 - var(--tw-space-x-reverse)))}.fi-in-image.fi-in-image-overlap-2{column-gap:calc(var(--spacing)*0)}:where(.fi-in-image.fi-in-image-overlap-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-2)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-2)*calc(1 - var(--tw-space-x-reverse)))}.fi-in-image.fi-in-image-overlap-3{column-gap:calc(var(--spacing)*0)}:where(.fi-in-image.fi-in-image-overlap-3>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-3)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-3)*calc(1 - var(--tw-space-x-reverse)))}.fi-in-image.fi-in-image-overlap-4{column-gap:calc(var(--spacing)*0)}:where(.fi-in-image.fi-in-image-overlap-4>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-4)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-4)*calc(1 - var(--tw-space-x-reverse)))}.fi-in-image.fi-in-image-overlap-5{column-gap:calc(var(--spacing)*0)}:where(.fi-in-image.fi-in-image-overlap-5>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-5)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-5)*calc(1 - var(--tw-space-x-reverse)))}.fi-in-image.fi-in-image-overlap-6{column-gap:calc(var(--spacing)*0)}:where(.fi-in-image.fi-in-image-overlap-6>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-6)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-6)*calc(1 - var(--tw-space-x-reverse)))}.fi-in-image.fi-in-image-overlap-7{column-gap:calc(var(--spacing)*0)}:where(.fi-in-image.fi-in-image-overlap-7>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-7)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-7)*calc(1 - var(--tw-space-x-reverse)))}.fi-in-image.fi-in-image-overlap-8{column-gap:calc(var(--spacing)*0)}:where(.fi-in-image.fi-in-image-overlap-8>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-8)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-8)*calc(1 - var(--tw-space-x-reverse)))}.fi-in-image.fi-wrapped{flex-wrap:wrap}.fi-in-image.fi-align-start,.fi-in-image.fi-align-left{justify-content:flex-start}.fi-in-image.fi-align-center{justify-content:center}.fi-in-image.fi-align-end,.fi-in-image.fi-align-right{justify-content:flex-end}.fi-in-image.fi-align-justify,.fi-in-image.fi-align-between{justify-content:space-between}.fi-in-image.fi-stacked .fi-in-image-limited-remaining-text{background-color:var(--gray-100);border-radius:3.40282e38px}.fi-in-image.fi-stacked .fi-in-image-limited-remaining-text:where(.dark,.dark *){background-color:var(--gray-800)}.fi-in-image .fi-in-image-limited-remaining-text{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-500);justify-content:center;align-items:center;display:flex}.fi-in-image .fi-in-image-limited-remaining-text:where(.dark,.dark *){color:var(--gray-400)}.fi-in-image .fi-in-image-limited-remaining-text.fi-size-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.fi-in-image .fi-in-image-limited-remaining-text.fi-size-base,.fi-in-image .fi-in-image-limited-remaining-text.fi-size-md{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.fi-in-image .fi-in-image-limited-remaining-text.fi-size-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}ul.fi-in-repeatable{gap:calc(var(--spacing)*4)}.fi-in-repeatable>.fi-in-repeatable-item{display:block}.fi-in-repeatable.fi-contained>.fi-in-repeatable-item{border-radius:var(--radius-xl);background-color:var(--color-white);padding:calc(var(--spacing)*4);--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}.fi-in-repeatable.fi-contained>.fi-in-repeatable-item:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-in-repeatable.fi-contained>.fi-in-repeatable-item:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-in-repeatable.fi-contained>.fi-in-repeatable-item:where(.dark,.dark *){--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-in-repeatable.fi-contained>.fi-in-repeatable-item:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-in-table-repeatable{gap:calc(var(--spacing)*3);display:grid}.fi-in-table-repeatable>table{width:100%;display:block}:where(.fi-in-table-repeatable>table>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}.fi-in-table-repeatable>table{border-radius:var(--radius-xl);background-color:var(--color-white);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}:where(.fi-in-table-repeatable>table:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:where(.fi-in-table-repeatable>table:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-in-table-repeatable>table:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-in-table-repeatable>table:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-in-table-repeatable>table>thead{white-space:nowrap;display:none}.fi-in-table-repeatable>table>thead>tr>th{border-color:var(--gray-200);background-color:var(--gray-50);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);text-align:start;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950)}.fi-in-table-repeatable>table>thead>tr>th:first-of-type{border-start-start-radius:var(--radius-xl)}.fi-in-table-repeatable>table>thead>tr>th:last-of-type{border-start-end-radius:var(--radius-xl)}.fi-in-table-repeatable>table>thead>tr>th:where(.dark,.dark *){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-in-table-repeatable>table>thead>tr>th:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-in-table-repeatable>table>thead>tr>th:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-in-table-repeatable>table>thead>tr>th:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-in-table-repeatable>table>thead>tr>th:where(.dark,.dark *){color:var(--color-white)}.fi-in-table-repeatable>table>thead>tr>th:not(:first-of-type){border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px}.fi-in-table-repeatable>table>thead>tr>th:not(:last-of-type){border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}.fi-in-table-repeatable>table>thead>tr>th.fi-align-center{text-align:center}.fi-in-table-repeatable>table>thead>tr>th.fi-align-end,.fi-in-table-repeatable>table>thead>tr>th.fi-align-right{text-align:end}.fi-in-table-repeatable>table>thead>tr>th.fi-wrapped{white-space:normal}.fi-in-table-repeatable>table>thead>tr>th:not(.fi-wrapped){white-space:nowrap}.fi-in-table-repeatable>table>thead>tr>th.fi-in-table-repeatable-empty-header-cell{width:calc(var(--spacing)*1)}.fi-in-table-repeatable>table>tbody{display:block}:where(.fi-in-table-repeatable>table>tbody>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}:where(.fi-in-table-repeatable>table>tbody:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(.fi-in-table-repeatable>table>tbody:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-in-table-repeatable>table>tbody>tr{gap:calc(var(--spacing)*6);padding:calc(var(--spacing)*6);display:grid}.fi-in-table-repeatable>table>tbody>tr>td{display:block}.fi-in-table-repeatable>table>tbody>tr>td.fi-hidden{display:none}@supports (container-type:inline-size){.fi-in-table-repeatable{container-type:inline-size}@container (min-width:36rem){.fi-in-table-repeatable>table{display:table}.fi-in-table-repeatable>table>thead{display:table-header-group}.fi-in-table-repeatable>table>tbody{display:table-row-group}.fi-in-table-repeatable>table>tbody>tr{padding:calc(var(--spacing)*0);display:table-row}.fi-in-table-repeatable>table>tbody>tr>td{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);display:table-cell}.fi-in-table-repeatable>table>tbody>tr>td.fi-hidden{display:table-cell}.fi-in-table-repeatable>table>tbody>tr>td .fi-in-entry{row-gap:calc(var(--spacing)*0)}.fi-in-table-repeatable>table>tbody>tr>td .fi-in-entry-label{display:none}.fi-in-table-repeatable>table .fi-in-table-repeatable-actions{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2)}}}@supports not (container-type:inline-size){@media (min-width:64rem){.fi-in-table-repeatable>table{display:table}.fi-in-table-repeatable>table>thead{display:table-header-group}.fi-in-table-repeatable>table>tbody{display:table-row-group}.fi-in-table-repeatable>table>tbody>tr{padding:calc(var(--spacing)*0);display:table-row}.fi-in-table-repeatable>table>tbody>tr>td{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);display:table-cell}.fi-in-table-repeatable>table>tbody>tr>td.fi-hidden{display:table-cell}.fi-in-table-repeatable>table>tbody>tr>td .fi-in-entry{row-gap:calc(var(--spacing)*0)}.fi-in-table-repeatable>table>tbody>tr>td .fi-in-entry-label{display:none}}}.fi-in-text{width:100%}.fi-in-text.fi-in-text-affixed{gap:calc(var(--spacing)*3);display:flex}.fi-in-text .fi-in-text-affixed-content{min-width:calc(var(--spacing)*0);flex:1}.fi-in-text .fi-in-text-affix{align-items:center;gap:calc(var(--spacing)*3);align-self:stretch;display:flex}.fi-in-text.fi-in-text-list-limited{flex-direction:column;display:flex}.fi-in-text.fi-in-text-list-limited.fi-in-text-has-badges{row-gap:calc(var(--spacing)*2)}.fi-in-text.fi-in-text-list-limited:not(.fi-in-text-has-badges){row-gap:calc(var(--spacing)*1)}ul.fi-in-text.fi-bulleted,.fi-in-text.fi-bulleted ul{list-style-type:disc;list-style-position:inside}ul.fi-in-text:not(.fi-in-text-has-line-breaks).fi-in-text-has-badges,.fi-in-text:not(.fi-in-text-has-line-breaks).fi-in-text-has-badges ul{column-gap:calc(var(--spacing)*1.5);display:flex}:is(ul.fi-in-text:not(.fi-in-text-has-line-breaks).fi-in-text-has-badges,.fi-in-text:not(.fi-in-text-has-line-breaks).fi-in-text-has-badges ul).fi-wrapped,:is(ul.fi-in-text:not(.fi-in-text-has-line-breaks).fi-in-text-has-badges,.fi-in-text:not(.fi-in-text-has-line-breaks).fi-in-text-has-badges ul):is(.fi-wrapped ul){row-gap:calc(var(--spacing)*1);flex-wrap:wrap}:is(ul.fi-in-text.fi-in-text-has-badges,.fi-in-text.fi-in-text-has-badges ul).fi-in-text-has-line-breaks,:is(ul.fi-in-text.fi-in-text-has-badges,.fi-in-text.fi-in-text-has-badges ul):is(.fi-in-text-has-line-breaks ul){row-gap:calc(var(--spacing)*1);flex-direction:column;display:flex}:is(ul.fi-in-text.fi-in-text-has-badges,.fi-in-text.fi-in-text-has-badges ul):not(ul.fi-in-text-has-line-breaks),:is(ul.fi-in-text.fi-in-text-has-badges,.fi-in-text.fi-in-text-has-badges ul):not(.fi-in-text-has-line-breaks ul){column-gap:calc(var(--spacing)*1.5);display:flex}:is(:is(ul.fi-in-text.fi-in-text-has-badges,.fi-in-text.fi-in-text-has-badges ul):not(ul.fi-in-text-has-line-breaks),:is(ul.fi-in-text.fi-in-text-has-badges,.fi-in-text.fi-in-text-has-badges ul):not(.fi-in-text-has-line-breaks ul)).fi-wrapped,:is(:is(ul.fi-in-text.fi-in-text-has-badges,.fi-in-text.fi-in-text-has-badges ul):not(ul.fi-in-text-has-line-breaks),:is(ul.fi-in-text.fi-in-text-has-badges,.fi-in-text.fi-in-text-has-badges ul):not(.fi-in-text-has-line-breaks ul)):is(.fi-wrapped ul){row-gap:calc(var(--spacing)*1);flex-wrap:wrap}.fi-in-text.fi-wrapped:not(.fi-in-text-has-badges.fi-in-text-has-line-breaks){white-space:normal;overflow-wrap:break-word}.fi-in-text.fi-wrapped:not(.fi-in-text-has-badges.fi-in-text-has-line-breaks) .fi-badge,.fi-in-text.fi-wrapped:not(.fi-in-text-has-badges.fi-in-text-has-line-breaks) .fi-in-text-list-limited-message{white-space:nowrap}.fi-in-text>.fi-in-text-list-limited-message{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-in-text>.fi-in-text-list-limited-message:where(.dark,.dark *){color:var(--gray-400)}.fi-in-text.fi-align-center{text-align:center}ul.fi-in-text.fi-align-center,.fi-in-text.fi-align-center ul{justify-content:center}.fi-in-text.fi-align-end,.fi-in-text.fi-align-right{text-align:end}ul:is(.fi-in-text.fi-align-end,.fi-in-text.fi-align-right),:is(.fi-in-text.fi-align-end,.fi-in-text.fi-align-right) ul{justify-content:flex-end}.fi-in-text.fi-align-justify,.fi-in-text.fi-align-between{text-align:justify}ul:is(.fi-in-text.fi-align-justify,.fi-in-text.fi-align-between),:is(.fi-in-text.fi-align-justify,.fi-in-text.fi-align-between) ul{justify-content:space-between}.fi-in-text-item{color:var(--gray-950)}.fi-in-text-item:where(.dark,.dark *){color:var(--color-white)}@media (hover:hover){.fi-in-text-item a:hover{text-decoration-line:underline}}.fi-in-text-item a:focus-visible{text-decoration-line:underline}.fi-in-text-item:not(.fi-bulleted li.fi-in-text-item){-webkit-line-clamp:var(--line-clamp,none);-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.fi-in-text-item>.fi-copyable{cursor:pointer}.fi-in-text-item.fi-size-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.fi-in-text-item.fi-size-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.fi-in-text-item.fi-size-md{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.fi-in-text-item.fi-size-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.fi-in-text-item.fi-font-thin{--tw-font-weight:var(--font-weight-thin);font-weight:var(--font-weight-thin)}.fi-in-text-item.fi-font-extralight{--tw-font-weight:var(--font-weight-extralight);font-weight:var(--font-weight-extralight)}.fi-in-text-item.fi-font-light{--tw-font-weight:var(--font-weight-light);font-weight:var(--font-weight-light)}.fi-in-text-item.fi-font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.fi-in-text-item.fi-font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.fi-in-text-item.fi-font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.fi-in-text-item.fi-font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.fi-in-text-item.fi-font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.fi-in-text-item.fi-font-black{--tw-font-weight:var(--font-weight-black);font-weight:var(--font-weight-black)}.fi-in-text-item.fi-font-sans{font-family:var(--font-family),ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.fi-in-text-item.fi-font-serif{font-family:var(--serif-font-family),ui-serif,Georgia,Cambria,"Times New Roman",Times,serif}.fi-in-text-item.fi-font-mono{font-family:var(--mono-font-family),ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.fi-in-text-item.fi-color{color:var(--text)}.fi-in-text-item.fi-color:where(.dark,.dark *){color:var(--dark-text)}li.fi-in-text-item.fi-color::marker{color:var(--gray-950)}li.fi-in-text-item.fi-color:where(.dark,.dark *)::marker{color:var(--color-white)}.fi-in-text-item.fi-color-gray{color:var(--gray-500)}.fi-in-text-item.fi-color-gray:where(.dark,.dark *){color:var(--gray-400)}li.fi-in-text-item.fi-color-gray::marker{color:var(--gray-950)}.fi-in-text-item>.fi-icon,.fi-in-text-item>span:not(.fi-badge)>.fi-icon{color:var(--gray-400);flex-shrink:0;display:inline-block}:is(.fi-in-text-item>.fi-icon,.fi-in-text-item>span:not(.fi-badge)>.fi-icon):where(.dark,.dark *){color:var(--gray-500)}:is(.fi-in-text-item>.fi-icon,.fi-in-text-item>span:not(.fi-badge)>.fi-icon).fi-color{color:var(--color-500)}.fi-no-database{display:flex}.fi-no-database .fi-modal-window-ctn>.fi-modal-window .fi-modal-heading{display:inline-block;position:relative}.fi-no-database .fi-modal-window-ctn>.fi-modal-window .fi-modal-heading .fi-badge{inset-inline-start:100%;top:calc(var(--spacing)*-1);width:max-content;margin-inline-start:calc(var(--spacing)*1);position:absolute}.fi-no-database .fi-modal-window-ctn>.fi-modal-window .fi-modal-header .fi-ac{margin-top:calc(var(--spacing)*2)}.fi-no-database .fi-modal-window-ctn>.fi-modal-window .fi-modal-content{margin-inline:calc(var(--spacing)*-6);margin-top:calc(var(--spacing)*-6);row-gap:calc(var(--spacing)*0)}:where(.fi-no-database .fi-modal-window-ctn>.fi-modal-window .fi-modal-content>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}:where(.fi-no-database .fi-modal-window-ctn>.fi-modal-window .fi-modal-content:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:where(.fi-no-database .fi-modal-window-ctn>.fi-modal-window .fi-modal-content:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-no-database .fi-modal-window-ctn>.fi-modal-window:not(.fi-modal-window-has-footer) .fi-modal-content{margin-bottom:calc(var(--spacing)*-6)}.fi-no-database .fi-modal-window-ctn>.fi-modal-window.fi-modal-window-has-footer .fi-modal-content{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200)}.fi-no-database .fi-modal-window-ctn>.fi-modal-window.fi-modal-window-has-footer .fi-modal-content:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-no-database .fi-modal-window-ctn>.fi-modal-window.fi-modal-window-has-footer .fi-modal-content:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-no-database .fi-no-notification-unread-ctn{position:relative}.fi-no-database .fi-no-notification-unread-ctn:before{content:var(--tw-content);content:var(--tw-content);content:var(--tw-content);content:var(--tw-content);height:100%;width:calc(var(--spacing)*.5);content:var(--tw-content);background-color:var(--primary-600);position:absolute;inset-inline-start:calc(var(--spacing)*0)}.fi-no-database .fi-no-notification-unread-ctn:where(.dark,.dark *):before{content:var(--tw-content);background-color:var(--primary-500)}.fi-no-notification{pointer-events:auto;visibility:hidden;gap:calc(var(--spacing)*3);width:100%;padding:calc(var(--spacing)*4);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:.3s;flex-shrink:0;transition-duration:.3s;display:flex;overflow:hidden}.fi-no-notification .fi-no-notification-icon{color:var(--gray-400)}.fi-no-notification .fi-no-notification-icon.fi-color{color:var(--color-400)}.fi-no-notification .fi-no-notification-main{margin-top:calc(var(--spacing)*.5);gap:calc(var(--spacing)*3);flex:1;display:grid}.fi-no-notification .fi-no-notification-text{gap:calc(var(--spacing)*1);display:grid}.fi-no-notification .fi-no-notification-title{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-no-notification .fi-no-notification-title:where(.dark,.dark *){color:var(--color-white)}.fi-no-notification .fi-no-notification-date{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-no-notification .fi-no-notification-date:where(.dark,.dark *){color:var(--gray-400)}.fi-no-notification .fi-no-notification-body{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));text-wrap:pretty;overflow-wrap:break-word;color:var(--gray-500);overflow:hidden}.fi-no-notification .fi-no-notification-body:where(.dark,.dark *){color:var(--gray-400)}.fi-no-notification .fi-no-notification-body>p:not(:first-of-type){margin-top:calc(var(--spacing)*1)}.fi-no-notification:not(.fi-inline){max-width:var(--container-sm);gap:calc(var(--spacing)*3);border-radius:var(--radius-xl);background-color:var(--color-white);padding:calc(var(--spacing)*4);--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent);display:flex}.fi-no-notification:not(.fi-inline):where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-no-notification:not(.fi-inline):where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-no-notification:not(.fi-inline).fi-color{--tw-ring-color:var(--color-600)}@supports (color:color-mix(in lab, red, red)){.fi-no-notification:not(.fi-inline).fi-color{--tw-ring-color:color-mix(in oklab,var(--color-600)20%,transparent)}}.fi-no-notification:not(.fi-inline).fi-color:where(.dark,.dark *){--tw-ring-color:var(--color-400)}@supports (color:color-mix(in lab, red, red)){.fi-no-notification:not(.fi-inline).fi-color:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-400)30%,transparent)}}.fi-no-notification:not(.fi-inline).fi-transition-leave-end{--tw-scale-x:95%;--tw-scale-y:95%;--tw-scale-z:95%;scale:var(--tw-scale-x)var(--tw-scale-y)}.fi-no-notification.fi-color{background-color:#fff}@supports (color:color-mix(in lab, red, red)){.fi-no-notification.fi-color{background-color:color-mix(in oklab,white 90%,var(--color-400))}}.fi-no-notification.fi-color:where(.dark,.dark *){background-color:var(--gray-900)}@supports (color:color-mix(in lab, red, red)){.fi-no-notification.fi-color:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-900)90%,var(--color-400))}}.fi-no-notification.fi-color .fi-no-notification-body{color:var(--gray-700)}@supports (color:color-mix(in lab, red, red)){.fi-no-notification.fi-color .fi-no-notification-body{color:color-mix(in oklab,var(--gray-700)75%,transparent)}}.fi-no-notification.fi-color .fi-no-notification-body:where(.dark,.dark *){color:var(--gray-300)}@supports (color:color-mix(in lab, red, red)){.fi-no-notification.fi-color .fi-no-notification-body:where(.dark,.dark *){color:color-mix(in oklab,var(--gray-300)75%,transparent)}}.fi-no-notification.fi-transition-enter-start,.fi-no-notification.fi-transition-leave-end{opacity:0}:is(.fi-no.fi-align-start,.fi-no.fi-align-left) .fi-no-notification.fi-transition-enter-start{--tw-translate-x:calc(var(--spacing)*-12);translate:var(--tw-translate-x)var(--tw-translate-y)}:is(.fi-no.fi-align-end,.fi-no.fi-align-right) .fi-no-notification.fi-transition-enter-start{--tw-translate-x:calc(var(--spacing)*12);translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-no.fi-align-center.fi-vertical-align-start .fi-no-notification.fi-transition-enter-start{--tw-translate-y:calc(var(--spacing)*-12);translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-no.fi-align-center.fi-vertical-align-end .fi-no-notification.fi-transition-enter-start{--tw-translate-y:calc(var(--spacing)*12);translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-no{pointer-events:none;inset:calc(var(--spacing)*4);z-index:50;gap:calc(var(--spacing)*3);margin-inline:auto;display:flex;position:fixed}.fi-no.fi-align-start,.fi-no.fi-align-left{align-items:flex-start}.fi-no.fi-align-center{align-items:center}.fi-no.fi-align-end,.fi-no.fi-align-right{align-items:flex-end}.fi-no.fi-vertical-align-start{flex-direction:column-reverse;justify-content:flex-end}.fi-no.fi-vertical-align-center{flex-direction:column;justify-content:center}.fi-no.fi-vertical-align-end{flex-direction:column;justify-content:flex-end}.fi-sc-actions{gap:calc(var(--spacing)*2);flex-direction:column;height:100%;display:flex}.fi-sc-actions .fi-sc-actions-label-ctn{align-items:center;column-gap:calc(var(--spacing)*3);display:flex}.fi-sc-actions .fi-sc-actions-label-ctn .fi-sc-actions-label{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-sc-actions .fi-sc-actions-label-ctn .fi-sc-actions-label:where(.dark,.dark *){color:var(--color-white)}.fi-sc-actions.fi-sticky .fi-ac{bottom:calc(var(--spacing)*0);margin-inline:calc(var(--spacing)*-4);width:100%;transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,);background-color:var(--color-white);padding:calc(var(--spacing)*4);--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));position:fixed}@media (min-width:48rem){.fi-sc-actions.fi-sticky .fi-ac{bottom:calc(var(--spacing)*4);border-radius:var(--radius-xl)}}.fi-sc-actions.fi-sticky .fi-ac:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-sc-actions.fi-sticky .fi-ac:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-sc-actions.fi-vertical-align-start{justify-content:flex-start}.fi-sc-actions.fi-vertical-align-center{justify-content:center}.fi-sc-actions.fi-vertical-align-end{justify-content:flex-end}.fi-sc-flex{gap:calc(var(--spacing)*6);display:flex}.fi-sc-flex.fi-align-start,.fi-sc-flex.fi-align-left{justify-content:flex-start}.fi-sc-flex.fi-align-center{justify-content:center}.fi-sc-flex.fi-align-end,.fi-sc-flex.fi-align-right{justify-content:flex-end}.fi-sc-flex.fi-align-between,.fi-sc-flex.fi-align-justify{justify-content:space-between}.fi-sc-flex.fi-dense{gap:calc(var(--spacing)*3)}.fi-sc-flex>.fi-hidden{display:none}.fi-sc-flex>.fi-growable{flex:1;width:100%}.fi-sc-flex.fi-from-default{align-items:flex-start}.fi-sc-flex.fi-from-default.fi-vertical-align-center{align-items:center}.fi-sc-flex.fi-from-default.fi-vertical-align-end{align-items:flex-end}.fi-sc-flex.fi-from-sm{flex-direction:column}@media (min-width:40rem){.fi-sc-flex.fi-from-sm{flex-direction:row;align-items:flex-start}.fi-sc-flex.fi-from-sm.fi-vertical-align-center{align-items:center}.fi-sc-flex.fi-from-sm.fi-vertical-align-end{align-items:flex-end}}.fi-sc-flex.fi-from-md{flex-direction:column}@media (min-width:48rem){.fi-sc-flex.fi-from-md{flex-direction:row;align-items:flex-start}.fi-sc-flex.fi-from-md.fi-vertical-align-center{align-items:center}.fi-sc-flex.fi-from-md.fi-vertical-align-end{align-items:flex-end}}.fi-sc-flex.fi-from-lg{flex-direction:column}@media (min-width:64rem){.fi-sc-flex.fi-from-lg{flex-direction:row;align-items:flex-start}.fi-sc-flex.fi-from-lg.fi-vertical-align-center{align-items:center}.fi-sc-flex.fi-from-lg.fi-vertical-align-end{align-items:flex-end}}.fi-sc-flex.fi-from-xl{flex-direction:column}@media (min-width:80rem){.fi-sc-flex.fi-from-xl{flex-direction:row;align-items:flex-start}.fi-sc-flex.fi-from-xl.fi-vertical-align-center{align-items:center}.fi-sc-flex.fi-from-xl.fi-vertical-align-end{align-items:flex-end}}.fi-sc-flex.fi-from-2xl{flex-direction:column}@media (min-width:96rem){.fi-sc-flex.fi-from-2xl{flex-direction:row;align-items:flex-start}.fi-sc-flex.fi-from-2xl.fi-vertical-align-center{align-items:center}.fi-sc-flex.fi-from-2xl.fi-vertical-align-end{align-items:flex-end}}.fi-sc-form{gap:calc(var(--spacing)*6);flex-direction:column;display:flex}.fi-sc-form.fi-dense{gap:calc(var(--spacing)*3)}.fi-sc-fused-group>.fi-sc{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)10%,transparent)}.fi-sc-fused-group>.fi-sc:focus-within{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--primary-600)}.fi-sc-fused-group>.fi-sc:where(.dark,.dark *){--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-sc-fused-group>.fi-sc:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-sc-fused-group>.fi-sc:where(.dark,.dark *):focus-within{--tw-ring-color:var(--primary-500)}:where(.fi-sc-fused-group .fi-sc>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-950)}@supports (color:color-mix(in lab, red, red)){:where(.fi-sc-fused-group .fi-sc>:not(:last-child)){border-color:color-mix(in oklab,var(--gray-950)10%,transparent)}}.fi-sc-fused-group .fi-sc{border-radius:var(--radius-lg)}:where(.fi-sc-fused-group .fi-sc:where(.dark,.dark *)>:not(:last-child)){border-color:#fff3}@supports (color:color-mix(in lab, red, red)){:where(.fi-sc-fused-group .fi-sc:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-sc-fused-group .fi-sc .fi-sc-component,.fi-sc-fused-group .fi-sc .fi-sc-component .fi-fo-field,.fi-sc-fused-group .fi-sc .fi-sc-component .fi-input{min-height:100%}.fi-sc-fused-group .fi-sc .fi-sc-component .fi-sc-actions{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2)}.fi-sc-fused-group .fi-sc>:first-child .fi-input-wrp{border-top-left-radius:var(--radius-lg);border-top-right-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc>:last-child .fi-input-wrp{border-bottom-right-radius:var(--radius-lg);border-bottom-left-radius:var(--radius-lg)}:where(.fi-sc-fused-group .fi-sc.fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}@media (min-width:40rem){:where(.fi-sc-fused-group .fi-sc.sm\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.sm\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.sm\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@media (min-width:48rem){:where(.fi-sc-fused-group .fi-sc.md\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.md\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.md\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@media (min-width:64rem){:where(.fi-sc-fused-group .fi-sc.lg\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.lg\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.lg\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@media (min-width:80rem){:where(.fi-sc-fused-group .fi-sc.xl\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.xl\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.xl\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@media (min-width:96rem){:where(.fi-sc-fused-group .fi-sc.\32 xl\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\32 xl\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\32 xl\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@supports (container-type:inline-size){@container (min-width:16rem){:where(.fi-sc-fused-group .fi-sc.\@3xs\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\@3xs\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\@3xs\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@container (min-width:18rem){:where(.fi-sc-fused-group .fi-sc.\@2xs\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\@2xs\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\@2xs\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@container (min-width:20rem){:where(.fi-sc-fused-group .fi-sc.\@xs\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\@xs\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\@xs\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@container (min-width:24rem){:where(.fi-sc-fused-group .fi-sc.\@sm\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\@sm\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\@sm\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@container (min-width:28rem){:where(.fi-sc-fused-group .fi-sc.\@md\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\@md\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\@md\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@container (min-width:32rem){:where(.fi-sc-fused-group .fi-sc.\@lg\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\@lg\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\@lg\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@container (min-width:36rem){:where(.fi-sc-fused-group .fi-sc.\@xl\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\@xl\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\@xl\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@container (min-width:42rem){:where(.fi-sc-fused-group .fi-sc.\@2xl\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\@2xl\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\@2xl\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@container (min-width:48rem){:where(.fi-sc-fused-group .fi-sc.\@3xl\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\@3xl\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\@3xl\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@container (min-width:56rem){:where(.fi-sc-fused-group .fi-sc.\@4xl\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\@4xl\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\@4xl\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@container (min-width:64rem){:where(.fi-sc-fused-group .fi-sc.\@5xl\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\@5xl\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\@5xl\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@container (min-width:72rem){:where(.fi-sc-fused-group .fi-sc.\@6xl\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\@6xl\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\@6xl\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@container (min-width:80rem){:where(.fi-sc-fused-group .fi-sc.\@7xl\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\@7xl\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\@7xl\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}}@supports not (container-type:inline-size){@media (min-width:40rem){:where(.fi-sc-fused-group .fi-sc.\!\@sm\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\!\@sm\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\!\@sm\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@media (min-width:48rem){:where(.fi-sc-fused-group .fi-sc.\!\@md\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\!\@md\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\!\@md\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@media (min-width:64rem){:where(.fi-sc-fused-group .fi-sc.\!\@lg\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\!\@lg\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\!\@lg\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@media (min-width:80rem){:where(.fi-sc-fused-group .fi-sc.\!\@xl\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\!\@xl\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\!\@xl\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}@media (min-width:96rem){:where(.fi-sc-fused-group .fi-sc.\!\@2xl\:fi-grid-cols>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(0px*var(--tw-divide-y-reverse));border-bottom-width:calc(0px*calc(1 - var(--tw-divide-y-reverse)))}.fi-sc-fused-group .fi-sc.\!\@2xl\:fi-grid-cols>:first-child .fi-input-wrp{border-start-end-radius:0;border-end-start-radius:var(--radius-lg)}.fi-sc-fused-group .fi-sc.\!\@2xl\:fi-grid-cols>:last-child .fi-input-wrp{border-start-end-radius:var(--radius-lg);border-end-start-radius:0}}}.fi-sc-fused-group .fi-input-wrp{--tw-shadow:0 0 #0000;--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-radius:0}.fi-sc-fused-group .fi-input-wrp:not(.fi-disabled):not(:has(.fi-ac-action:focus)):focus-within,.fi-sc-fused-group .fi-input-wrp:not(.fi-disabled):not(:has(.fi-ac-action:focus)).fi-invalid:focus-within{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-sc-icon{color:var(--gray-400)}.fi-sc-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-sc-icon.fi-color{color:var(--color-500)}.fi-sc-icon.fi-color:where(.dark,.dark *){color:var(--color-400)}.fi-sc-image{border-radius:var(--radius-lg);border-style:var(--tw-border-style);border-width:1px;border-color:var(--gray-300)}.fi-sc-image:where(.dark,.dark *){border-color:#0000}.fi-sc-image.fi-align-center{margin-inline:auto}.fi-sc-image.fi-align-end,.fi-sc-image.fi-align-right{margin-inline-start:auto}.fi-sc-section{gap:calc(var(--spacing)*2);flex-direction:column;display:flex}.fi-sc-section .fi-sc-section-label-ctn{align-items:center;column-gap:calc(var(--spacing)*3);display:flex}.fi-sc-section .fi-sc-section-label-ctn .fi-sc-section-label{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-sc-section .fi-sc-section-label-ctn .fi-sc-section-label:where(.dark,.dark *){color:var(--color-white)}.fi-sc-tabs{flex-direction:column;display:flex}.fi-sc-tabs .fi-tabs.fi-invisible{visibility:hidden}.fi-sc-tabs .fi-sc-tabs-tab{--tw-outline-style:none;outline-style:none}@media (forced-colors:active){.fi-sc-tabs .fi-sc-tabs-tab{outline-offset:2px;outline:2px solid #0000}}.fi-sc-tabs .fi-sc-tabs-tab.fi-active{margin-top:calc(var(--spacing)*6)}.fi-sc-tabs .fi-sc-tabs-tab:not(.fi-active){visibility:hidden;height:calc(var(--spacing)*0);padding:calc(var(--spacing)*0);position:absolute;overflow:hidden}.fi-sc-tabs.fi-contained{border-radius:var(--radius-xl);background-color:var(--color-white);--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}.fi-sc-tabs.fi-contained:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-sc-tabs.fi-contained:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-sc-tabs.fi-contained .fi-sc-tabs-tab.fi-active{margin-top:calc(var(--spacing)*0);padding:calc(var(--spacing)*6)}.fi-sc-tabs.fi-vertical{flex-direction:row}.fi-sc-tabs.fi-vertical .fi-sc-tabs-tab.fi-active{margin-inline-start:calc(var(--spacing)*6);margin-top:calc(var(--spacing)*0);flex:1}.fi-sc-text.fi-copyable{cursor:pointer}.fi-sc-text.fi-font-sans{font-family:var(--font-family),ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.fi-sc-text.fi-font-serif{font-family:var(--serif-font-family),ui-serif,Georgia,Cambria,"Times New Roman",Times,serif}.fi-sc-text.fi-font-mono{font-family:var(--mono-font-family),ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.fi-sc-text:not(.fi-badge){font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));overflow-wrap:break-word;color:var(--gray-600);display:inline-block}.fi-sc-text:not(.fi-badge):where(.dark,.dark *){color:var(--gray-400)}.fi-sc-text:not(.fi-badge).fi-font-thin{--tw-font-weight:var(--font-weight-thin);font-weight:var(--font-weight-thin)}.fi-sc-text:not(.fi-badge).fi-font-extralight{--tw-font-weight:var(--font-weight-extralight);font-weight:var(--font-weight-extralight)}.fi-sc-text:not(.fi-badge).fi-font-light{--tw-font-weight:var(--font-weight-light);font-weight:var(--font-weight-light)}.fi-sc-text:not(.fi-badge).fi-font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.fi-sc-text:not(.fi-badge).fi-font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.fi-sc-text:not(.fi-badge).fi-font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.fi-sc-text:not(.fi-badge).fi-font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.fi-sc-text:not(.fi-badge).fi-font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.fi-sc-text:not(.fi-badge).fi-font-black{--tw-font-weight:var(--font-weight-black);font-weight:var(--font-weight-black)}.fi-sc-text:not(.fi-badge).fi-size-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.fi-sc-text:not(.fi-badge).fi-color-neutral{color:var(--gray-950)}.fi-sc-text:not(.fi-badge).fi-color-neutral:where(.dark,.dark *){color:var(--color-white)}.fi-sc-text:not(.fi-badge).fi-color:not(.fi-color-neutral){color:var(--text)}.fi-sc-text:not(.fi-badge).fi-color:not(.fi-color-neutral):where(.dark,.dark *){color:var(--dark-text)}.fi-sc-text:not(.fi-badge).fi-size-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.fi-sc-text:not(.fi-badge).fi-size-md{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.fi-sc-unordered-list{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));margin-inline-start:calc(var(--spacing)*3);list-style-type:disc}.fi-sc-unordered-list.fi-size-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.fi-sc-unordered-list.fi-size-md{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.fi-sc-unordered-list.fi-size-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.fi-sc-wizard{flex-direction:column;display:flex}.fi-sc-wizard .fi-sc-wizard-header{display:grid}@media (min-width:48rem){.fi-sc-wizard .fi-sc-wizard-header{grid-auto-flow:column;overflow-x:auto}}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step{display:flex;position:relative}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step:not(.fi-active){display:none}@media (min-width:48rem){.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step:not(.fi-active){display:flex}}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step .fi-sc-wizard-header-step-btn{align-items:center;column-gap:calc(var(--spacing)*4);height:100%;padding-inline:calc(var(--spacing)*6);padding-block:calc(var(--spacing)*4);text-align:start;display:flex}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn{width:calc(var(--spacing)*10);height:calc(var(--spacing)*10);border-radius:3.40282e38px;flex-shrink:0;justify-content:center;align-items:center;display:flex}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn .fi-sc-wizard-header-step-number{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-text{justify-items:start;display:grid}@media (min-width:48rem){.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-text{width:max-content;max-width:calc(var(--spacing)*60)}}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-text .fi-sc-wizard-header-step-label{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-text .fi-sc-wizard-header-step-description{text-align:start;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-text .fi-sc-wizard-header-step-description:where(.dark,.dark *){color:var(--gray-400)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step .fi-sc-wizard-header-step-separator{height:100%;width:calc(var(--spacing)*5);color:var(--gray-200);display:none;position:absolute;inset-inline-end:calc(var(--spacing)*0)}@media (min-width:48rem){.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step .fi-sc-wizard-header-step-separator{display:block}}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step .fi-sc-wizard-header-step-separator:where(:dir(rtl),[dir=rtl],[dir=rtl] *){rotate:180deg}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step .fi-sc-wizard-header-step-separator:where(.dark,.dark *){color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step .fi-sc-wizard-header-step-separator:where(.dark,.dark *){color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step.fi-completed .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn{background-color:var(--primary-600)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step.fi-completed .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn:where(.dark,.dark *){background-color:var(--primary-500)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step.fi-completed .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn .fi-icon{color:var(--color-white)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step.fi-completed .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-text .fi-sc-wizard-header-step-label{color:var(--gray-950)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step.fi-completed .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-text .fi-sc-wizard-header-step-label:where(.dark,.dark *){color:var(--color-white)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step:not(.fi-completed) .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn{border-style:var(--tw-border-style);border-width:2px}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step:not(.fi-completed).fi-active .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn .fi-icon{color:var(--primary-600)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step:not(.fi-completed).fi-active .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn .fi-icon:where(.dark,.dark *){color:var(--primary-500)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step:not(.fi-completed):not(.fi-active) .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn .fi-icon{color:var(--gray-500)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step:not(.fi-completed):not(.fi-active) .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn .fi-icon:where(.dark,.dark *){color:var(--gray-400)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step.fi-active .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn{border-color:var(--primary-600)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step.fi-active .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn:where(.dark,.dark *){border-color:var(--primary-500)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step.fi-active .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn .fi-sc-wizard-header-step-number{color:var(--primary-600)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step.fi-active .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn .fi-sc-wizard-header-step-number:where(.dark,.dark *){color:var(--primary-500)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step.fi-active .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-text .fi-sc-wizard-header-step-label{color:var(--primary-700)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step.fi-active .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-text .fi-sc-wizard-header-step-label:where(.dark,.dark *){color:var(--primary-400)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step:not(.fi-active) .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn{border-color:var(--gray-300)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step:not(.fi-active) .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn:where(.dark,.dark *){border-color:var(--gray-600)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step:not(.fi-active) .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn .fi-sc-wizard-header-step-number{color:var(--gray-500)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step:not(.fi-active) .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn .fi-sc-wizard-header-step-number:where(.dark,.dark *){color:var(--gray-400)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step:not(.fi-active) .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn .fi-sc-wizard-header-step-text .fi-sc-wizard-header-step-label{color:var(--gray-500)}.fi-sc-wizard .fi-sc-wizard-header .fi-sc-wizard-header-step:not(.fi-active) .fi-sc-wizard-header-step-btn .fi-sc-wizard-header-step-icon-ctn .fi-sc-wizard-header-step-text .fi-sc-wizard-header-step-label:where(.dark,.dark *){color:var(--gray-400)}.fi-sc-wizard .fi-sc-wizard-step{--tw-outline-style:none;outline-style:none}@media (forced-colors:active){.fi-sc-wizard .fi-sc-wizard-step{outline-offset:2px;outline:2px solid #0000}}.fi-sc-wizard .fi-sc-wizard-step:not(.fi-active){visibility:hidden;height:calc(var(--spacing)*0);padding:calc(var(--spacing)*0);position:absolute;overflow:hidden}.fi-sc-wizard:not(.fi-sc-wizard-header-hidden) .fi-sc-wizard-step.fi-active{margin-top:calc(var(--spacing)*6)}.fi-sc-wizard .fi-sc-wizard-footer{justify-content:space-between;align-items:center;column-gap:calc(var(--spacing)*3);display:flex}.fi-sc-wizard .fi-sc-wizard-footer>.fi-hidden{display:none}.fi-sc-wizard .fi-sc-wizard-footer>.fi-disabled{pointer-events:none;opacity:.7}.fi-sc-wizard.fi-contained{border-radius:var(--radius-xl);background-color:var(--color-white);--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}.fi-sc-wizard.fi-contained:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-sc-wizard.fi-contained:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-sc-wizard.fi-contained .fi-sc-wizard-header{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200)}.fi-sc-wizard.fi-contained .fi-sc-wizard-header:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-sc-wizard.fi-contained .fi-sc-wizard-header:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-sc-wizard.fi-contained .fi-sc-wizard-step.fi-active{margin-top:calc(var(--spacing)*0);padding:calc(var(--spacing)*6)}.fi-sc-wizard.fi-contained .fi-sc-wizard-footer{padding-inline:calc(var(--spacing)*6);padding-bottom:calc(var(--spacing)*6)}.fi-sc-wizard:not(.fi-contained) .fi-sc-wizard-header{border-radius:var(--radius-xl);background-color:var(--color-white);--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}.fi-sc-wizard:not(.fi-contained) .fi-sc-wizard-header:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-sc-wizard:not(.fi-contained) .fi-sc-wizard-header:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-sc-wizard:not(.fi-contained) .fi-sc-wizard-footer{margin-top:calc(var(--spacing)*6)}.fi-sc{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.fi-sc.fi-inline{flex-wrap:wrap;flex-grow:1;align-items:center;display:flex}.fi-sc.fi-inline>.fi-sc-action:not(.fi-hidden){display:contents}.fi-sc.fi-sc-has-gap{gap:calc(var(--spacing)*6)}.fi-sc.fi-sc-has-gap.fi-sc-dense{gap:calc(var(--spacing)*3)}.fi-sc.fi-align-start,.fi-sc.fi-align-left{justify-content:flex-start}.fi-sc.fi-align-center{justify-content:center}.fi-sc.fi-align-end,.fi-sc.fi-align-right{justify-content:flex-end}.fi-sc.fi-align-between,.fi-sc.fi-align-justify{justify-content:space-between}.fi-sc>.fi-hidden{display:none}.fi-sc>.fi-grid-col.fi-width-xs{max-width:var(--container-xs)}.fi-sc>.fi-grid-col.fi-width-sm{max-width:var(--container-sm)}.fi-sc>.fi-grid-col.fi-width-md{max-width:var(--container-md)}.fi-sc>.fi-grid-col.fi-width-lg{max-width:var(--container-lg)}.fi-sc>.fi-grid-col.fi-width-xl{max-width:var(--container-xl)}.fi-sc>.fi-grid-col.fi-width-2xl{max-width:var(--container-2xl)}.fi-sc>.fi-grid-col.fi-width-3xl{max-width:var(--container-3xl)}.fi-sc>.fi-grid-col.fi-width-4xl{max-width:var(--container-4xl)}.fi-sc>.fi-grid-col.fi-width-5xl{max-width:var(--container-5xl)}.fi-sc>.fi-grid-col.fi-width-6xl{max-width:var(--container-6xl)}.fi-sc>.fi-grid-col.fi-width-7xl{max-width:var(--container-7xl)}.fi-sc>.fi-grid-col>.fi-sc-component{height:100%}.fi-ta-actions{justify-content:flex-end;align-items:center;gap:calc(var(--spacing)*3);flex-shrink:0;max-width:100%;display:flex}.fi-ta-actions>*{flex-shrink:0}.fi-ta-actions.fi-wrapped{flex-wrap:wrap}@media (min-width:40rem){.fi-ta-actions.sm\:fi-not-wrapped{flex-wrap:nowrap}}.fi-ta-actions.fi-align-center{justify-content:center}.fi-ta-actions.fi-align-start{justify-content:flex-start}.fi-ta-actions.fi-align-between{justify-content:space-between}@media (min-width:48rem){.fi-ta-actions.md\:fi-align-end{justify-content:flex-end}}.fi-ta-cell{padding:calc(var(--spacing)*0)}.fi-ta-cell:first-of-type{padding-inline-start:calc(var(--spacing)*1)}.fi-ta-cell:last-of-type{padding-inline-end:calc(var(--spacing)*1)}@media (min-width:40rem){.fi-ta-cell:first-of-type{padding-inline-start:calc(var(--spacing)*3)}.fi-ta-cell:last-of-type{padding-inline-end:calc(var(--spacing)*3)}}.fi-ta-cell.fi-vertical-align-start{vertical-align:top}.fi-ta-cell.fi-vertical-align-end{vertical-align:bottom}@media (min-width:40rem){.fi-ta-cell.sm\:fi-hidden{display:none}}@media (min-width:48rem){.fi-ta-cell.md\:fi-hidden{display:none}}@media (min-width:64rem){.fi-ta-cell.lg\:fi-hidden{display:none}}@media (min-width:80rem){.fi-ta-cell.xl\:fi-hidden{display:none}}@media (min-width:96rem){.fi-ta-cell.\32 xl\:fi-hidden{display:none}}.fi-ta-cell.sm\:fi-visible{display:none}@media (min-width:40rem){.fi-ta-cell.sm\:fi-visible{display:table-cell}}.fi-ta-cell.md\:fi-visible{display:none}@media (min-width:48rem){.fi-ta-cell.md\:fi-visible{display:table-cell}}.fi-ta-cell.lg\:fi-visible{display:none}@media (min-width:64rem){.fi-ta-cell.lg\:fi-visible{display:table-cell}}.fi-ta-cell.xl\:fi-visible{display:none}@media (min-width:80rem){.fi-ta-cell.xl\:fi-visible{display:table-cell}}.fi-ta-cell.\32 xl\:fi-visible{display:none}@media (min-width:96rem){.fi-ta-cell.\32 xl\:fi-visible{display:table-cell}}.fi-ta-cell .fi-ta-col{text-align:start;justify-content:flex-start;width:100%;display:flex}.fi-ta-cell .fi-ta-col:disabled{pointer-events:none}.fi-ta-cell:has(.fi-ta-reorder-handle){width:calc(var(--spacing)*1);padding-inline:calc(var(--spacing)*3)}.fi-ta-cell:has(.fi-ta-reorder-handle):first-of-type{padding-inline-start:calc(var(--spacing)*4)}.fi-ta-cell:has(.fi-ta-reorder-handle):last-of-type{padding-inline-end:calc(var(--spacing)*4)}@media (min-width:40rem){.fi-ta-cell:has(.fi-ta-reorder-handle):first-of-type{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-cell:has(.fi-ta-reorder-handle):last-of-type{padding-inline-end:calc(var(--spacing)*6)}}.fi-ta-cell:has(.fi-ta-actions){padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4);white-space:nowrap}.fi-ta-cell:has(.fi-ta-actions):first-of-type{padding-inline-start:calc(var(--spacing)*4)}.fi-ta-cell:has(.fi-ta-actions):last-of-type{padding-inline-end:calc(var(--spacing)*4)}@media (min-width:40rem){.fi-ta-cell:has(.fi-ta-actions):first-of-type{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-cell:has(.fi-ta-actions):last-of-type{padding-inline-end:calc(var(--spacing)*6)}}.fi-ta-cell:has(.fi-ta-record-checkbox){width:calc(var(--spacing)*1);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}.fi-ta-cell:has(.fi-ta-record-checkbox):first-of-type{padding-inline-start:calc(var(--spacing)*4)}.fi-ta-cell:has(.fi-ta-record-checkbox):last-of-type{padding-inline-end:calc(var(--spacing)*4)}@media (min-width:40rem){.fi-ta-cell:has(.fi-ta-record-checkbox):first-of-type{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-cell:has(.fi-ta-record-checkbox):last-of-type{padding-inline-end:calc(var(--spacing)*6)}}.fi-ta-cell .fi-ta-placeholder{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);color:var(--gray-400)}.fi-ta-cell .fi-ta-placeholder:where(.dark,.dark *){color:var(--gray-500)}.fi-ta-cell.fi-ta-summary-row-heading-cell{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}@media (min-width:40rem){.fi-ta-cell.fi-ta-summary-row-heading-cell:first-of-type{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-cell.fi-ta-summary-row-heading-cell:last-of-type{padding-inline-end:calc(var(--spacing)*6)}}.fi-ta-cell.fi-ta-summary-row-heading-cell:where(.dark,.dark *){color:var(--color-white)}.fi-ta-cell.fi-align-start{text-align:start}.fi-ta-cell.fi-align-center{text-align:center}.fi-ta-cell.fi-align-end{text-align:end}.fi-ta-cell.fi-align-left{text-align:left}.fi-ta-cell.fi-align-right{text-align:right}.fi-ta-cell.fi-align-justify,.fi-ta-cell.fi-align-between{text-align:justify}.fi-ta-cell.fi-ta-summary-header-cell{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}@media (min-width:40rem){.fi-ta-cell.fi-ta-summary-header-cell:first-of-type{padding-inline-start:calc(var(--spacing)*6)}}.fi-ta-cell.fi-ta-summary-header-cell:where(.dark,.dark *){color:var(--color-white)}.fi-ta-cell.fi-ta-summary-header-cell.fi-wrapped,.fi-ta-cell.fi-ta-summary-header-cell:not(.fi-wrapped){white-space:nowrap}.fi-ta-cell.fi-ta-individual-search-cell{min-width:calc(var(--spacing)*48);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2)}.fi-ta-cell .fi-ta-reorder-handle{cursor:move}.fi-ta-cell.fi-ta-selection-cell{width:calc(var(--spacing)*1);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}.fi-ta-cell.fi-ta-selection-cell:first-of-type{padding-inline-start:calc(var(--spacing)*4)}.fi-ta-cell.fi-ta-selection-cell:last-of-type{padding-inline-end:calc(var(--spacing)*4)}@media (min-width:40rem){.fi-ta-cell.fi-ta-selection-cell:first-of-type{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-cell.fi-ta-selection-cell:last-of-type{padding-inline-end:calc(var(--spacing)*6)}}.fi-ta-cell.fi-ta-group-selection-cell{width:calc(var(--spacing)*1);padding-inline:calc(var(--spacing)*3)}.fi-ta-cell.fi-ta-group-selection-cell:first-of-type{padding-inline-start:calc(var(--spacing)*4)}.fi-ta-cell.fi-ta-group-selection-cell:last-of-type{padding-inline-end:calc(var(--spacing)*4)}@media (min-width:40rem){.fi-ta-cell.fi-ta-group-selection-cell:first-of-type{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-cell.fi-ta-group-selection-cell:last-of-type{padding-inline-end:calc(var(--spacing)*6)}}.fi-ta-checkbox{width:100%}.fi-ta-checkbox:not(.fi-inline){padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}.fi-ta-table-stacked-on-mobile .fi-ta-checkbox{padding:calc(var(--spacing)*0)}@media (min-width:40rem){.fi-ta-table-stacked-on-mobile .fi-ta-checkbox{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}}.fi-ta-checkbox.fi-align-center{text-align:center}.fi-ta-checkbox.fi-align-end,.fi-ta-checkbox.fi-align-right{text-align:end}.fi-ta-color{gap:calc(var(--spacing)*1.5);width:100%;display:flex}.fi-ta-color.fi-wrapped{flex-wrap:wrap}.fi-ta-color:not(.fi-inline){padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}.fi-ta-table-stacked-on-mobile .fi-ta-color{padding:calc(var(--spacing)*0)}@media (min-width:40rem){.fi-ta-table-stacked-on-mobile .fi-ta-color{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}}.fi-ta-color.fi-align-start,.fi-ta-color.fi-align-left{justify-content:flex-start}.fi-ta-color.fi-align-center{justify-content:center}.fi-ta-color.fi-align-end,.fi-ta-color.fi-align-right{justify-content:flex-end}.fi-ta-color.fi-align-justify,.fi-ta-color.fi-align-between{justify-content:space-between}.fi-ta-color>.fi-ta-color-item{width:calc(var(--spacing)*6);height:calc(var(--spacing)*6);border-radius:var(--radius-md)}.fi-ta-color>.fi-ta-color-item.fi-copyable{cursor:pointer}.fi-ta-icon{gap:calc(var(--spacing)*1.5);width:100%;display:flex}.fi-ta-icon.fi-wrapped{flex-wrap:wrap}.fi-ta-icon.fi-ta-icon-has-line-breaks{flex-direction:column}.fi-ta-icon:not(.fi-inline){padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}.fi-ta-table-stacked-on-mobile .fi-ta-icon{padding:calc(var(--spacing)*0)}@media (min-width:40rem){.fi-ta-table-stacked-on-mobile .fi-ta-icon{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}}.fi-ta-icon.fi-align-start,.fi-ta-icon.fi-align-left{justify-content:flex-start}.fi-ta-icon.fi-align-center{justify-content:center}.fi-ta-icon.fi-align-end,.fi-ta-icon.fi-align-right{justify-content:flex-end}.fi-ta-icon.fi-align-justify,.fi-ta-icon.fi-align-between{justify-content:space-between}.fi-ta-icon>.fi-icon,.fi-ta-icon>a>.fi-icon{color:var(--gray-400)}:is(.fi-ta-icon>.fi-icon,.fi-ta-icon>a>.fi-icon):where(.dark,.dark *){color:var(--gray-500)}:is(.fi-ta-icon>.fi-icon,.fi-ta-icon>a>.fi-icon).fi-color{color:var(--text)}:is(.fi-ta-icon>.fi-icon,.fi-ta-icon>a>.fi-icon).fi-color:where(.dark,.dark *){color:var(--dark-text)}.fi-ta-image{align-items:center;gap:calc(var(--spacing)*1.5);width:100%;display:flex}.fi-ta-image img{object-fit:cover;object-position:center;max-width:none}.fi-ta-image.fi-circular img{border-radius:3.40282e38px}.fi-ta-image.fi-ta-image-ring img,.fi-ta-image.fi-ta-image-ring .fi-ta-image-limited-remaining-text{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--color-white)}:is(.fi-ta-image.fi-ta-image-ring img,.fi-ta-image.fi-ta-image-ring .fi-ta-image-limited-remaining-text):where(.dark,.dark *){--tw-ring-color:var(--gray-900)}.fi-ta-image.fi-ta-image-ring.fi-ta-image-ring-1 img,.fi-ta-image.fi-ta-image-ring.fi-ta-image-ring-1 .fi-ta-image-limited-remaining-text{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-ta-image.fi-ta-image-ring.fi-ta-image-ring-2 img,.fi-ta-image.fi-ta-image-ring.fi-ta-image-ring-2 .fi-ta-image-limited-remaining-text{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-ta-image.fi-ta-image-ring.fi-ta-image-ring-4 img,.fi-ta-image.fi-ta-image-ring.fi-ta-image-ring-4 .fi-ta-image-limited-remaining-text{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(4px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.fi-ta-image.fi-ta-image-overlap-1{column-gap:calc(var(--spacing)*0)}:where(.fi-ta-image.fi-ta-image-overlap-1>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-1)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-1)*calc(1 - var(--tw-space-x-reverse)))}.fi-ta-image.fi-ta-image-overlap-2{column-gap:calc(var(--spacing)*0)}:where(.fi-ta-image.fi-ta-image-overlap-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-2)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-2)*calc(1 - var(--tw-space-x-reverse)))}.fi-ta-image.fi-ta-image-overlap-3{column-gap:calc(var(--spacing)*0)}:where(.fi-ta-image.fi-ta-image-overlap-3>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-3)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-3)*calc(1 - var(--tw-space-x-reverse)))}.fi-ta-image.fi-ta-image-overlap-4{column-gap:calc(var(--spacing)*0)}:where(.fi-ta-image.fi-ta-image-overlap-4>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-4)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-4)*calc(1 - var(--tw-space-x-reverse)))}.fi-ta-image.fi-ta-image-overlap-5{column-gap:calc(var(--spacing)*0)}:where(.fi-ta-image.fi-ta-image-overlap-5>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-5)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-5)*calc(1 - var(--tw-space-x-reverse)))}.fi-ta-image.fi-ta-image-overlap-6{column-gap:calc(var(--spacing)*0)}:where(.fi-ta-image.fi-ta-image-overlap-6>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-6)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-6)*calc(1 - var(--tw-space-x-reverse)))}.fi-ta-image.fi-ta-image-overlap-7{column-gap:calc(var(--spacing)*0)}:where(.fi-ta-image.fi-ta-image-overlap-7>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-7)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-7)*calc(1 - var(--tw-space-x-reverse)))}.fi-ta-image.fi-ta-image-overlap-8{column-gap:calc(var(--spacing)*0)}:where(.fi-ta-image.fi-ta-image-overlap-8>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-8)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-8)*calc(1 - var(--tw-space-x-reverse)))}.fi-ta-image.fi-wrapped{flex-wrap:wrap}.fi-ta-image:not(.fi-inline){padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}.fi-ta-table-stacked-on-mobile .fi-ta-image{padding:calc(var(--spacing)*0)}@media (min-width:40rem){.fi-ta-table-stacked-on-mobile .fi-ta-image{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}}.fi-ta-image.fi-align-start,.fi-ta-image.fi-align-left{justify-content:flex-start}.fi-ta-image.fi-align-center{justify-content:center}.fi-ta-image.fi-align-end,.fi-ta-image.fi-align-right{justify-content:flex-end}.fi-ta-image.fi-align-justify,.fi-ta-image.fi-align-between{justify-content:space-between}.fi-ta-image.fi-stacked .fi-ta-image-limited-remaining-text{background-color:var(--gray-100);border-radius:3.40282e38px}.fi-ta-image.fi-stacked .fi-ta-image-limited-remaining-text:where(.dark,.dark *){background-color:var(--gray-800)}.fi-ta-image .fi-ta-image-limited-remaining-text{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-500);justify-content:center;align-items:center;display:flex}.fi-ta-image .fi-ta-image-limited-remaining-text:where(.dark,.dark *){color:var(--gray-400)}.fi-ta-image .fi-ta-image-limited-remaining-text.fi-size-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.fi-ta-image .fi-ta-image-limited-remaining-text.fi-size-base,.fi-ta-image .fi-ta-image-limited-remaining-text.fi-size-md{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.fi-ta-image .fi-ta-image-limited-remaining-text.fi-size-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.fi-ta-select{width:100%;min-width:calc(var(--spacing)*48)}.fi-ta-select:not(.fi-inline){padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}.fi-ta-table-stacked-on-mobile .fi-ta-select{padding:calc(var(--spacing)*0)}@media (min-width:40rem){.fi-ta-table-stacked-on-mobile .fi-ta-select{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}}.fi-ta-text{width:100%}.fi-ta-text.fi-ta-text-has-descriptions,.fi-ta-text.fi-ta-text-list-limited{flex-direction:column;display:flex}:is(.fi-ta-text.fi-ta-text-has-descriptions,.fi-ta-text.fi-ta-text-list-limited).fi-ta-text-has-badges{row-gap:calc(var(--spacing)*2)}:is(.fi-ta-text.fi-ta-text-has-descriptions,.fi-ta-text.fi-ta-text-list-limited):not(.fi-ta-text-has-badges){row-gap:calc(var(--spacing)*1)}.fi-ta-text:not(.fi-inline){padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}.fi-ta-table-stacked-on-mobile .fi-ta-text{padding:calc(var(--spacing)*0)}@media (min-width:40rem){.fi-ta-table-stacked-on-mobile .fi-ta-text{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}}ul.fi-ta-text.fi-bulleted,.fi-ta-text.fi-bulleted ul{list-style-type:disc;list-style-position:inside}ul.fi-ta-text:not(.fi-ta-text-has-line-breaks).fi-ta-text-has-badges,.fi-ta-text:not(.fi-ta-text-has-line-breaks).fi-ta-text-has-badges ul{column-gap:calc(var(--spacing)*1.5);display:flex}:is(ul.fi-ta-text:not(.fi-ta-text-has-line-breaks).fi-ta-text-has-badges,.fi-ta-text:not(.fi-ta-text-has-line-breaks).fi-ta-text-has-badges ul).fi-wrapped,:is(ul.fi-ta-text:not(.fi-ta-text-has-line-breaks).fi-ta-text-has-badges,.fi-ta-text:not(.fi-ta-text-has-line-breaks).fi-ta-text-has-badges ul):is(.fi-wrapped ul){row-gap:calc(var(--spacing)*1);flex-wrap:wrap}:is(ul.fi-ta-text.fi-ta-text-has-badges,.fi-ta-text.fi-ta-text-has-badges ul).fi-ta-text-has-line-breaks,:is(ul.fi-ta-text.fi-ta-text-has-badges,.fi-ta-text.fi-ta-text-has-badges ul):is(.fi-ta-text-has-line-breaks ul){row-gap:calc(var(--spacing)*1);flex-direction:column;display:flex}:is(ul.fi-ta-text.fi-ta-text-has-badges,.fi-ta-text.fi-ta-text-has-badges ul):not(ul.fi-ta-text-has-line-breaks),:is(ul.fi-ta-text.fi-ta-text-has-badges,.fi-ta-text.fi-ta-text-has-badges ul):not(.fi-ta-text-has-line-breaks ul){column-gap:calc(var(--spacing)*1.5);display:flex}:is(:is(ul.fi-ta-text.fi-ta-text-has-badges,.fi-ta-text.fi-ta-text-has-badges ul):not(ul.fi-ta-text-has-line-breaks),:is(ul.fi-ta-text.fi-ta-text-has-badges,.fi-ta-text.fi-ta-text-has-badges ul):not(.fi-ta-text-has-line-breaks ul)).fi-wrapped,:is(:is(ul.fi-ta-text.fi-ta-text-has-badges,.fi-ta-text.fi-ta-text-has-badges ul):not(ul.fi-ta-text-has-line-breaks),:is(ul.fi-ta-text.fi-ta-text-has-badges,.fi-ta-text.fi-ta-text-has-badges ul):not(.fi-ta-text-has-line-breaks ul)):is(.fi-wrapped ul){row-gap:calc(var(--spacing)*1);flex-wrap:wrap}.fi-ta-text.fi-wrapped:not(.fi-ta-text-has-badges.fi-ta-text-has-line-breaks){white-space:normal}.fi-ta-text.fi-wrapped:not(.fi-ta-text-has-badges.fi-ta-text-has-line-breaks) .fi-badge,.fi-ta-text.fi-wrapped:not(.fi-ta-text-has-badges.fi-ta-text-has-line-breaks) .fi-ta-text-list-limited-message{white-space:nowrap}.fi-ta-text>.fi-ta-text-description,.fi-ta-text>.fi-ta-text-list-limited-message{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}:is(.fi-ta-text>.fi-ta-text-description,.fi-ta-text>.fi-ta-text-list-limited-message):where(.dark,.dark *){color:var(--gray-400)}.fi-ta-text.fi-align-center{text-align:center}ul.fi-ta-text.fi-align-center,.fi-ta-text.fi-align-center ul{justify-content:center}.fi-ta-text.fi-align-end,.fi-ta-text.fi-align-right{text-align:end}ul:is(.fi-ta-text.fi-align-end,.fi-ta-text.fi-align-right),:is(.fi-ta-text.fi-align-end,.fi-ta-text.fi-align-right) ul{justify-content:flex-end}.fi-ta-text.fi-align-justify,.fi-ta-text.fi-align-between{text-align:justify}ul:is(.fi-ta-text.fi-align-justify,.fi-ta-text.fi-align-between),:is(.fi-ta-text.fi-align-justify,.fi-ta-text.fi-align-between) ul{justify-content:space-between}.fi-ta-text-item{color:var(--gray-950)}.fi-ta-text-item:where(.dark,.dark *){color:var(--color-white)}@media (hover:hover){.fi-ta-text-item a:hover{text-decoration-line:underline}}.fi-ta-text-item a:focus-visible{text-decoration-line:underline}.fi-ta-text-item:not(.fi-bulleted li.fi-ta-text-item){-webkit-line-clamp:var(--line-clamp,none);-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.fi-ta-text-item>.fi-copyable{cursor:pointer}.fi-ta-text-item.fi-size-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.fi-ta-text-item.fi-size-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6)}.fi-ta-text-item.fi-size-md{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.fi-ta-text-item.fi-size-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.fi-ta-text-item.fi-font-thin{--tw-font-weight:var(--font-weight-thin);font-weight:var(--font-weight-thin)}.fi-ta-text-item.fi-font-extralight{--tw-font-weight:var(--font-weight-extralight);font-weight:var(--font-weight-extralight)}.fi-ta-text-item.fi-font-light{--tw-font-weight:var(--font-weight-light);font-weight:var(--font-weight-light)}.fi-ta-text-item.fi-font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.fi-ta-text-item.fi-font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.fi-ta-text-item.fi-font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.fi-ta-text-item.fi-font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.fi-ta-text-item.fi-font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.fi-ta-text-item.fi-font-black{--tw-font-weight:var(--font-weight-black);font-weight:var(--font-weight-black)}.fi-ta-text-item.fi-font-sans{font-family:var(--font-family),ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.fi-ta-text-item.fi-font-serif{font-family:var(--serif-font-family),ui-serif,Georgia,Cambria,"Times New Roman",Times,serif}.fi-ta-text-item.fi-font-mono{font-family:var(--mono-font-family),ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.fi-ta-text-item.fi-color{color:var(--text)}.fi-ta-text-item.fi-color:where(.dark,.dark *){color:var(--dark-text)}li.fi-ta-text-item.fi-color::marker{color:var(--gray-950)}li.fi-ta-text-item.fi-color:where(.dark,.dark *)::marker{color:var(--color-white)}.fi-ta-text-item.fi-color-gray{color:var(--gray-500)}.fi-ta-text-item.fi-color-gray:where(.dark,.dark *){color:var(--gray-400)}li.fi-ta-text-item.fi-color-gray::marker{color:var(--gray-950)}li.fi-ta-text-item.fi-color-gray:where(.dark,.dark *)::marker{color:var(--color-white)}.fi-ta-text-item>.fi-icon,.fi-ta-text-item>span:not(.fi-badge)>.fi-icon{color:var(--gray-400);flex-shrink:0;display:inline-block}:is(.fi-ta-text-item>.fi-icon,.fi-ta-text-item>span:not(.fi-badge)>.fi-icon):where(.dark,.dark *){color:var(--gray-500)}:is(.fi-ta-text-item>.fi-icon,.fi-ta-text-item>span:not(.fi-badge)>.fi-icon).fi-color{color:var(--color-500)}.fi-ta-text-item.fi-ta-text-has-badges>.fi-badge{vertical-align:middle}@media (hover:hover){.fi-ta-col-has-column-url .fi-ta-text-item:hover{text-decoration-line:underline}}.fi-ta-col-has-column-url .fi-ta-text-item:focus-visible{text-decoration-line:underline}@media (hover:hover){.fi-ta-col-has-column-url .fi-ta-text-item .fi-icon:hover{text-decoration-line:none}}.fi-ta-col-has-column-url .fi-ta-text-item .fi-icon:focus-visible{text-decoration-line:none}@media (hover:hover){.fi-ta-col-has-column-url .fi-ta-text-item>.fi-badge:hover{text-decoration-line:none}}.fi-ta-col-has-column-url .fi-ta-text-item>.fi-badge:focus-visible{text-decoration-line:none}.fi-ta-text-input{width:100%;min-width:calc(var(--spacing)*48)}.fi-ta-text-input:not(.fi-inline){padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}.fi-ta-table-stacked-on-mobile .fi-ta-text-input{padding:calc(var(--spacing)*0)}@media (min-width:40rem){.fi-ta-table-stacked-on-mobile .fi-ta-text-input{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}}.fi-ta-toggle{width:100%}.fi-ta-toggle:not(.fi-inline){padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}.fi-ta-table-stacked-on-mobile .fi-ta-toggle{padding:calc(var(--spacing)*0)}@media (min-width:40rem){.fi-ta-table-stacked-on-mobile .fi-ta-toggle{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}}.fi-ta-toggle.fi-align-center{text-align:center}.fi-ta-toggle.fi-align-end,.fi-ta-toggle.fi-align-right{text-align:end}.fi-ta-grid.fi-gap-sm{gap:calc(var(--spacing)*1)}@media (min-width:40rem){.fi-ta-grid.sm\:fi-gap-sm{gap:calc(var(--spacing)*1)}}@media (min-width:48rem){.fi-ta-grid.md\:fi-gap-sm{gap:calc(var(--spacing)*1)}}@media (min-width:64rem){.fi-ta-grid.lg\:fi-gap-sm{gap:calc(var(--spacing)*1)}}@media (min-width:80rem){.fi-ta-grid.xl\:fi-gap-sm{gap:calc(var(--spacing)*1)}}@media (min-width:96rem){.fi-ta-grid.\32 xl\:fi-gap-sm{gap:calc(var(--spacing)*1)}}.fi-ta-grid.fi-gap-lg{gap:calc(var(--spacing)*3)}@media (min-width:40rem){.fi-ta-grid.sm\:fi-gap-lg{gap:calc(var(--spacing)*3)}}@media (min-width:48rem){.fi-ta-grid.md\:fi-gap-lg{gap:calc(var(--spacing)*3)}}@media (min-width:64rem){.fi-ta-grid.lg\:fi-gap-lg{gap:calc(var(--spacing)*3)}}@media (min-width:80rem){.fi-ta-grid.xl\:fi-gap-lg{gap:calc(var(--spacing)*3)}}@media (min-width:96rem){.fi-ta-grid.\32 xl\:fi-gap-lg{gap:calc(var(--spacing)*3)}}.fi-ta-panel{border-radius:var(--radius-lg);background-color:var(--gray-50);padding:calc(var(--spacing)*4);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--gray-950)}@supports (color:color-mix(in lab, red, red)){.fi-ta-panel{--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}}.fi-ta-panel{--tw-ring-inset:inset}.fi-ta-panel:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-panel:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-panel:where(.dark,.dark *){--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-panel:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-split{display:flex}.fi-ta-split.default\:fi-ta-split{align-items:center;gap:calc(var(--spacing)*3)}.fi-ta-split.sm\:fi-ta-split,.fi-ta-split.md\:fi-ta-split,.fi-ta-split.lg\:fi-ta-split,.fi-ta-split.xl\:fi-ta-split,.fi-ta-split.\32 xl\:fi-ta-split{gap:calc(var(--spacing)*2);flex-direction:column}@media (min-width:40rem){.fi-ta-split.sm\:fi-ta-split{align-items:center;gap:calc(var(--spacing)*3);flex-direction:row}}@media (min-width:48rem){.fi-ta-split.md\:fi-ta-split{align-items:center;gap:calc(var(--spacing)*3);flex-direction:row}}@media (min-width:64rem){.fi-ta-split.lg\:fi-ta-split{align-items:center;gap:calc(var(--spacing)*3);flex-direction:row}}@media (min-width:80rem){.fi-ta-split.xl\:fi-ta-split{align-items:center;gap:calc(var(--spacing)*3);flex-direction:row}}@media (min-width:96rem){.fi-ta-split.\32 xl\:fi-ta-split{align-items:center;gap:calc(var(--spacing)*3);flex-direction:row}}.fi-ta-stack{flex-direction:column;display:flex}.fi-ta-stack.fi-align-start,.fi-ta-stack.fi-align-left{align-items:flex-start}.fi-ta-stack.fi-align-center{align-items:center}.fi-ta-stack.fi-align-end,.fi-ta-stack.fi-align-right{align-items:flex-end}:where(.fi-ta-stack.fi-gap-sm>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.fi-ta-stack.fi-gap-md>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.fi-ta-stack.fi-gap-lg>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}.fi-ta-icon-count-summary{row-gap:calc(var(--spacing)*1.5);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500);display:grid}.fi-ta-icon-count-summary:where(.dark,.dark *){color:var(--gray-400)}.fi-ta-table-stacked-on-mobile .fi-ta-icon-count-summary{padding-inline:calc(var(--spacing)*0);padding-block:calc(var(--spacing)*2)}@media (min-width:40rem){.fi-ta-table-stacked-on-mobile .fi-ta-icon-count-summary{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}}.fi-ta-icon-count-summary>.fi-ta-icon-count-summary-label{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-ta-icon-count-summary>.fi-ta-icon-count-summary-label:where(.dark,.dark *){color:var(--color-white)}.fi-ta-icon-count-summary>ul{row-gap:calc(var(--spacing)*1.5);display:grid}.fi-ta-icon-count-summary>ul>li{align-items:center;column-gap:calc(var(--spacing)*1.5);display:flex}.fi-ta-icon-count-summary>ul>li>.fi-icon{color:var(--gray-400)}.fi-ta-icon-count-summary>ul>li>.fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-ta-icon-count-summary>ul>li>.fi-icon.fi-color{color:var(--text)}.fi-ta-icon-count-summary>ul>li>.fi-icon.fi-color:where(.dark,.dark *){color:var(--dark-text)}.fi-ta-range-summary{row-gap:calc(var(--spacing)*1);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500);display:grid}.fi-ta-range-summary:where(.dark,.dark *){color:var(--gray-400)}.fi-ta-table-stacked-on-mobile .fi-ta-range-summary{padding-inline:calc(var(--spacing)*0);padding-block:calc(var(--spacing)*2)}@media (min-width:40rem){.fi-ta-table-stacked-on-mobile .fi-ta-range-summary{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}}.fi-ta-range-summary>.fi-ta-range-summary-label{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-ta-range-summary>.fi-ta-range-summary-label:where(.dark,.dark *){color:var(--color-white)}.fi-ta-text-summary{row-gap:calc(var(--spacing)*1);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500);display:grid}.fi-ta-text-summary:where(.dark,.dark *){color:var(--gray-400)}.fi-ta-table-stacked-on-mobile .fi-ta-text-summary{padding-inline:calc(var(--spacing)*0);padding-block:calc(var(--spacing)*2)}@media (min-width:40rem){.fi-ta-table-stacked-on-mobile .fi-ta-text-summary{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}}.fi-ta-text-summary>.fi-ta-text-summary-label{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-ta-text-summary>.fi-ta-text-summary-label:where(.dark,.dark *){color:var(--color-white)}.fi-ta-values-summary{row-gap:calc(var(--spacing)*1);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500);display:grid}.fi-ta-values-summary:where(.dark,.dark *){color:var(--gray-400)}.fi-ta-table-stacked-on-mobile .fi-ta-values-summary{padding-inline:calc(var(--spacing)*0);padding-block:calc(var(--spacing)*2)}@media (min-width:40rem){.fi-ta-table-stacked-on-mobile .fi-ta-values-summary{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}}.fi-ta-values-summary>.fi-ta-values-summary-label{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-ta-values-summary>.fi-ta-values-summary-label:where(.dark,.dark *){color:var(--color-white)}.fi-ta-values-summary>ul.fi-bulleted{list-style-type:disc;list-style-position:inside}.fi-ta-ctn{border-radius:var(--radius-xl);background-color:var(--color-white);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent);display:flex;position:relative}.fi-ta-ctn:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-ctn:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-ctn:not(.fi-ta-ctn-with-header){overflow:hidden}.fi-ta-ctn.fi-loading{animation:var(--animate-pulse)}.fi-ta-ctn .fi-ta-header-ctn{margin-top:-1px}.fi-ta-ctn .fi-ta-header{gap:calc(var(--spacing)*3);border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200);padding:calc(var(--spacing)*4);flex-direction:column;display:flex}@media (min-width:40rem){.fi-ta-ctn .fi-ta-header{padding-inline:calc(var(--spacing)*6)}}.fi-ta-ctn .fi-ta-header:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-ctn .fi-ta-header:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}@media (min-width:40rem){.fi-ta-ctn .fi-ta-header.fi-ta-header-adaptive-actions-position{flex-direction:row;align-items:center}.fi-ta-ctn .fi-ta-header.fi-ta-header-adaptive-actions-position .fi-ta-actions{margin-inline-start:auto}}.fi-ta-ctn .fi-ta-header.fi-ta-header-adaptive-actions-position:not(:has(.fi-ta-header-heading)):not(:has(.fi-ta-header-description)) .fi-ta-actions{margin-inline-start:auto}.fi-ta-ctn .fi-ta-header .fi-ta-header-heading{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950)}.fi-ta-ctn .fi-ta-header .fi-ta-header-heading:where(.dark,.dark *){color:var(--color-white)}.fi-ta-ctn .fi-ta-header .fi-ta-header-description{margin-top:calc(var(--spacing)*1);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-600)}.fi-ta-ctn .fi-ta-header .fi-ta-header-description:where(.dark,.dark *){color:var(--gray-400)}.fi-ta-ctn .fi-ta-header-toolbar{justify-content:space-between;align-items:center;gap:calc(var(--spacing)*4);border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200);padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*3);flex-wrap:wrap;display:flex}@media (min-width:40rem){.fi-ta-ctn .fi-ta-header-toolbar{padding-inline:calc(var(--spacing)*6)}}.fi-ta-ctn .fi-ta-header-toolbar:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-ctn .fi-ta-header-toolbar:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-ctn .fi-ta-header-toolbar>*{align-items:center;column-gap:calc(var(--spacing)*4);display:flex}.fi-ta-ctn .fi-ta-header-toolbar>:first-child{flex-shrink:0}.fi-ta-ctn .fi-ta-header-toolbar>:nth-child(2){margin-inline-start:auto}@media (min-width:40rem){.fi-ta-ctn .fi-ta-header-toolbar .fi-ta-grouping-settings .fi-dropdown.sm\:fi-hidden{display:none}}.fi-ta-ctn .fi-ta-header-toolbar .fi-ta-grouping-settings .fi-dropdown .fi-ta-grouping-settings-fields{row-gap:calc(var(--spacing)*6);padding:calc(var(--spacing)*6);display:grid}.fi-ta-ctn .fi-ta-header-toolbar .fi-ta-grouping-settings .fi-dropdown .fi-ta-grouping-settings-fields label{row-gap:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950);display:grid}.fi-ta-ctn .fi-ta-header-toolbar .fi-ta-grouping-settings .fi-dropdown .fi-ta-grouping-settings-fields label:where(.dark,.dark *){color:var(--color-white)}.fi-ta-ctn .fi-ta-header-toolbar .fi-ta-grouping-settings>.fi-ta-grouping-settings-fields{align-items:center;column-gap:calc(var(--spacing)*3);display:none}@media (min-width:40rem){.fi-ta-ctn .fi-ta-header-toolbar .fi-ta-grouping-settings>.fi-ta-grouping-settings-fields{display:flex}}.fi-ta-ctn .fi-ta-header-toolbar .fi-ta-filters-dropdown .fi-ta-filters,.fi-ta-ctn .fi-ta-header-toolbar .fi-ta-col-manager-dropdown .fi-ta-col-manager{padding:calc(var(--spacing)*6)}.fi-ta-ctn .fi-ta-filters{row-gap:calc(var(--spacing)*4);display:grid}.fi-ta-ctn .fi-ta-filters.fi-ta-filters-below-content{border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--gray-200);padding:calc(var(--spacing)*4)}@media (min-width:40rem){.fi-ta-ctn .fi-ta-filters.fi-ta-filters-below-content{padding-inline:calc(var(--spacing)*6)}}.fi-ta-ctn .fi-ta-filters.fi-ta-filters-below-content:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-ctn .fi-ta-filters.fi-ta-filters-below-content:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-ctn .fi-ta-filters .fi-ta-filters-header{justify-content:space-between;align-items:center;display:flex}.fi-ta-ctn .fi-ta-filters .fi-ta-filters-header .fi-ta-filters-heading{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950)}.fi-ta-ctn .fi-ta-filters .fi-ta-filters-header .fi-ta-filters-heading:where(.dark,.dark *){color:var(--color-white)}.fi-ta-ctn .fi-ta-filters .fi-ta-filters-header .fi-loading-indicator{color:var(--gray-400)}.fi-ta-ctn .fi-ta-filters .fi-ta-filters-header .fi-loading-indicator:where(.dark,.dark *){color:var(--gray-500)}.fi-ta-ctn .fi-ta-filters .fi-ta-filters-actions-ctn{gap:calc(var(--spacing)*3);display:flex}.fi-ta-ctn .fi-ta-filters-above-content-ctn{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200);padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*4);display:grid}@media (min-width:40rem){.fi-ta-ctn .fi-ta-filters-above-content-ctn{padding-inline:calc(var(--spacing)*6)}}.fi-ta-ctn .fi-ta-filters-above-content-ctn:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-ctn .fi-ta-filters-above-content-ctn:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-ctn .fi-ta-filters-above-content-ctn .fi-ta-filters-trigger-action-ctn{margin-inline-start:auto}.fi-ta-ctn .fi-ta-filters-above-content-ctn.fi-open .fi-ta-filters-trigger-action-ctn{margin-top:calc(var(--spacing)*3)}.fi-ta-ctn .fi-ta-filters-above-content-ctn.fi-open:has(.fi-ta-filters-actions-ctn) .fi-ta-filters-trigger-action-ctn{margin-top:calc(var(--spacing)*-7)}.fi-ta-ctn .fi-ta-reorder-indicator{align-items:center;column-gap:calc(var(--spacing)*3);border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200);background-color:var(--gray-50);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*1.5);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-700);display:flex}@media (min-width:40rem){.fi-ta-ctn .fi-ta-reorder-indicator{padding-inline:calc(var(--spacing)*6)}}.fi-ta-ctn .fi-ta-reorder-indicator:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-ctn .fi-ta-reorder-indicator:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-ctn .fi-ta-reorder-indicator:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-ctn .fi-ta-reorder-indicator:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-ctn .fi-ta-reorder-indicator:where(.dark,.dark *){color:var(--gray-200)}.fi-ta-ctn .fi-ta-reorder-indicator .fi-loading-indicator{color:var(--gray-400)}.fi-ta-ctn .fi-ta-reorder-indicator .fi-loading-indicator:where(.dark,.dark *){color:var(--gray-500)}.fi-ta-ctn .fi-ta-selection-indicator{justify-content:space-between;row-gap:calc(var(--spacing)*1);border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200);background-color:var(--gray-50);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);flex-direction:column;display:flex}@media (min-width:40rem){.fi-ta-ctn .fi-ta-selection-indicator{padding-inline:calc(var(--spacing)*6);padding-block:calc(var(--spacing)*1.5);flex-direction:row;align-items:center}}.fi-ta-ctn .fi-ta-selection-indicator:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-ctn .fi-ta-selection-indicator:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-ctn .fi-ta-selection-indicator:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-ctn .fi-ta-selection-indicator:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-ctn .fi-ta-selection-indicator .fi-loading-indicator{color:var(--gray-400)}.fi-ta-ctn .fi-ta-selection-indicator .fi-loading-indicator:where(.dark,.dark *){color:var(--gray-500)}.fi-ta-ctn .fi-ta-selection-indicator .fi-ta-selection-indicator-actions-ctn,.fi-ta-ctn .fi-ta-selection-indicator>*{column-gap:calc(var(--spacing)*3);display:flex}.fi-ta-ctn .fi-ta-selection-indicator>:first-child{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-700)}.fi-ta-ctn .fi-ta-selection-indicator>:first-child:where(.dark,.dark *){color:var(--gray-200)}.fi-ta-ctn .fi-ta-selection-indicator>:nth-child(2){margin-inline-start:auto}.fi-ta-ctn .fi-ta-filter-indicators{justify-content:space-between;align-items:flex-start;column-gap:calc(var(--spacing)*3);border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200);background-color:var(--gray-50);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*1.5);display:flex}@media (min-width:40rem){.fi-ta-ctn .fi-ta-filter-indicators{padding-inline:calc(var(--spacing)*6)}}.fi-ta-ctn .fi-ta-filter-indicators:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-ctn .fi-ta-filter-indicators:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-ctn .fi-ta-filter-indicators:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-ctn .fi-ta-filter-indicators:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-ctn .fi-ta-filter-indicators>:first-child{column-gap:calc(var(--spacing)*3);row-gap:calc(var(--spacing)*1);flex-direction:column;display:flex}@media (min-width:40rem){.fi-ta-ctn .fi-ta-filter-indicators>:first-child{flex-direction:row}}.fi-ta-ctn .fi-ta-filter-indicators>:first-child .fi-ta-filter-indicators-label{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);white-space:nowrap;color:var(--gray-700)}.fi-ta-ctn .fi-ta-filter-indicators>:first-child .fi-ta-filter-indicators-label:where(.dark,.dark *){color:var(--gray-200)}.fi-ta-ctn .fi-ta-filter-indicators>:first-child .fi-ta-filter-indicators-badges-ctn{gap:calc(var(--spacing)*1.5);flex-wrap:wrap;display:flex}.fi-ta-ctn .fi-ta-filter-indicators>:nth-child(2).fi-icon-btn{margin-top:calc(var(--spacing)*-1)}.fi-ta-ctn .fi-pagination{border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--gray-200);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*3)}@media (min-width:40rem){.fi-ta-ctn .fi-pagination{padding-inline:calc(var(--spacing)*6)}}.fi-ta-ctn .fi-pagination:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-ctn .fi-pagination:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-ctn .fi-ta-table-loading-ctn{height:calc(var(--spacing)*32);justify-content:center;align-items:center;display:flex}.fi-ta-ctn .fi-ta-main{min-width:calc(var(--spacing)*0);flex:1}@media (min-width:64rem){.fi-ta-ctn .fi-ta-filters-trigger-action-ctn.lg\:fi-hidden{display:none}}.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn{z-index:20;border-radius:var(--radius-lg);border-color:var(--gray-200);background-color:var(--color-white);--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);width:100vw;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));flex-shrink:0;display:none;position:absolute;max-width:14rem!important}@media (min-width:64rem){.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn{z-index:auto;--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);position:static}}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn):where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn):where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn):where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn):where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn) .fi-ta-filters{padding:calc(var(--spacing)*6)}@media (min-width:64rem){:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn) .fi-ta-filters{padding-block:calc(var(--spacing)*4)}}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).fi-open{display:block}@media (min-width:64rem){:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).lg\:fi-open{display:block}}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).fi-opacity-0{opacity:0}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).fi-width-xs{max-width:var(--container-xs)!important}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).fi-width-sm{max-width:var(--container-sm)!important}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).fi-width-md{max-width:var(--container-md)!important}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).fi-width-lg{max-width:var(--container-lg)!important}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).fi-width-xl{max-width:var(--container-xl)!important}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).fi-width-2xl{max-width:var(--container-2xl)!important}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).fi-width-3xl{max-width:var(--container-3xl)!important}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).fi-width-4xl{max-width:var(--container-4xl)!important}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).fi-width-5xl{max-width:var(--container-5xl)!important}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).fi-width-6xl{max-width:var(--container-6xl)!important}:is(.fi-ta-ctn .fi-ta-filters-before-content-ctn,.fi-ta-ctn .fi-ta-filters-after-content-ctn).fi-width-7xl{max-width:var(--container-7xl)!important}.fi-ta-ctn .fi-ta-filters-before-content-ctn{inset-inline-start:calc(var(--spacing)*0)}@media (min-width:64rem){.fi-ta-ctn .fi-ta-filters-before-content-ctn{border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px;border-start-start-radius:var(--radius-xl);border-start-end-radius:0;border-end-end-radius:0;border-end-start-radius:var(--radius-xl)}}.fi-ta-ctn .fi-ta-filters-after-content-ctn{inset-inline-end:calc(var(--spacing)*0)}@media (min-width:64rem){.fi-ta-ctn .fi-ta-filters-after-content-ctn{border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px;border-start-start-radius:0;border-start-end-radius:var(--radius-xl);border-end-end-radius:var(--radius-xl);border-end-start-radius:0}}.fi-ta-content-ctn{position:relative}:where(.fi-ta-content-ctn>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}.fi-ta-content-ctn{overflow-x:auto}:where(.fi-ta-content-ctn:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:where(.fi-ta-content-ctn:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-content-ctn:where(.dark,.dark *){border-top-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn:where(.dark,.dark *){border-top-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-content-ctn .fi-ta-content-header{align-items:center;gap:calc(var(--spacing)*4);column-gap:calc(var(--spacing)*6);background-color:var(--gray-50);padding-inline:calc(var(--spacing)*4);display:flex}@media (min-width:40rem){.fi-ta-content-ctn .fi-ta-content-header{padding-inline:calc(var(--spacing)*6)}}.fi-ta-content-ctn .fi-ta-content-header:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content-header:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-content-ctn .fi-ta-content-header .fi-ta-page-checkbox{margin-block:calc(var(--spacing)*4);flex-shrink:0}.fi-ta-content-ctn .fi-ta-content-header .fi-ta-sorting-settings{column-gap:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*3);display:flex}.fi-ta-content-ctn:not(.fi-ta-ctn-with-footer .fi-ta-content-ctn){border-bottom-right-radius:var(--radius-xl);border-bottom-left-radius:var(--radius-xl)}.fi-ta-content-ctn:not(.fi-ta-ctn-with-header .fi-ta-content-ctn){border-top-style:var(--tw-border-style);border-top-width:0}.fi-ta-content-ctn .fi-ta-content{display:grid}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid{gap:calc(var(--spacing)*4);padding:calc(var(--spacing)*4)}@media (min-width:40rem){.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid{padding-inline:calc(var(--spacing)*6)}}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid.fi-ta-content-grouped{padding-top:calc(var(--spacing)*0)}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-group-header{margin-inline:calc(var(--spacing)*-4);border-block-style:var(--tw-border-style);border-block-width:1px;border-color:var(--gray-200)}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-group-header:first-child{border-top-style:var(--tw-border-style);border-top-width:0}@media (min-width:40rem){.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-group-header{margin-inline:calc(var(--spacing)*-6)}}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-group-header:where(.dark,.dark *){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-group-header:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-group-header{width:calc(100% + 2rem)}@media (min-width:40rem){.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-group-header{width:calc(100% + 3rem)}}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record{border-radius:var(--radius-xl);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record:where(.dark,.dark *){--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}@media (hover:hover){.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record.fi-clickable:where(.dark,.dark *):hover{background-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record.fi-clickable:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record.fi-clickable:where(.dark,.dark *):hover{--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record.fi-clickable:where(.dark,.dark *):hover{--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record.fi-selected:where(.dark,.dark *){background-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record.fi-selected:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record.fi-selected:where(.dark,.dark *){--tw-ring-color:#fff3}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record.fi-selected:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record:not(.fi-selected){background-color:var(--color-white)}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record:not(.fi-selected):where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record:not(.fi-selected):where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record:not(.fi-selected):where(.dark,.dark *){--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record:not(.fi-selected):where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record.fi-ta-record-with-content-prefix .fi-ta-record-content,.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record.fi-ta-record-with-content-prefix .fi-ta-actions{padding-inline-start:calc(var(--spacing)*2)}.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record.fi-ta-record-with-content-suffix .fi-ta-record-content,.fi-ta-content-ctn .fi-ta-content.fi-ta-content-grid .fi-ta-record.fi-ta-record-with-content-suffix .fi-ta-actions{padding-inline-end:calc(var(--spacing)*2)}.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid){background-color:var(--gray-200);row-gap:1px}.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid):where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid):where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}@media (hover:hover){.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record.fi-clickable:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record.fi-clickable:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record.fi-selected:before{content:var(--tw-content);content:var(--tw-content);inset-block:calc(var(--spacing)*0);content:var(--tw-content);content:var(--tw-content);width:calc(var(--spacing)*.5);content:var(--tw-content);background-color:var(--primary-600);position:absolute;inset-inline-start:calc(var(--spacing)*0)}.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record.fi-selected:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record.fi-selected:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record.fi-selected:where(.dark,.dark *):before{content:var(--tw-content);background-color:var(--primary-500)}@media (min-width:48rem){.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record .fi-ta-record-content-ctn{flex-direction:row;align-items:center}}@media (min-width:40rem){.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record:not(.fi-ta-record-with-content-prefix) .fi-ta-record-content,.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record:not(.fi-ta-record-with-content-prefix) .fi-ta-actions{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record:not(.fi-ta-record-with-content-suffix) .fi-ta-record-content,.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record:not(.fi-ta-record-with-content-suffix) .fi-ta-actions{padding-inline-end:calc(var(--spacing)*6)}.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record.fi-ta-record-with-content-prefix{padding-inline-start:calc(var(--spacing)*3)}}.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record.fi-ta-record-with-content-prefix .fi-ta-record-content,.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record.fi-ta-record-with-content-prefix .fi-ta-actions{padding-inline-start:calc(var(--spacing)*3)}@media (min-width:40rem){.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record.fi-ta-record-with-content-suffix{padding-inline-end:calc(var(--spacing)*3)}}.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record.fi-ta-record-with-content-suffix .fi-ta-record-content,.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record.fi-ta-record-with-content-suffix .fi-ta-actions{padding-inline-end:calc(var(--spacing)*3)}@media (min-width:48rem){.fi-ta-content-ctn .fi-ta-content:not(.fi-ta-content-grid) .fi-ta-record .fi-ta-actions{padding-inline-start:calc(var(--spacing)*3)}}.fi-ta-content-ctn .fi-ta-content .fi-ta-group-header{align-items:center;column-gap:calc(var(--spacing)*3);background-color:var(--gray-50);width:100%;padding-inline:calc(var(--spacing)*1);padding-block:calc(var(--spacing)*2);grid-column:1/-1;display:flex}@media (min-width:40rem){.fi-ta-content-ctn .fi-ta-content .fi-ta-group-header{padding-inline:calc(var(--spacing)*3)}}.fi-ta-content-ctn .fi-ta-content .fi-ta-group-header:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-content-ctn .fi-ta-content .fi-ta-group-header:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-content-ctn .fi-ta-content .fi-ta-group-header.fi-collapsible{cursor:pointer}.fi-ta-content-ctn .fi-ta-content .fi-ta-group-header.fi-collapsible.fi-collapsed .fi-icon-btn{rotate:-180deg}.fi-ta-content-ctn .fi-ta-content .fi-ta-group-header .fi-ta-group-heading{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-ta-content-ctn .fi-ta-content .fi-ta-group-header .fi-ta-group-heading:where(.dark,.dark *){color:var(--color-white)}.fi-ta-content-ctn .fi-ta-content .fi-ta-group-header .fi-ta-group-description{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-ta-content-ctn .fi-ta-content .fi-ta-group-header .fi-ta-group-description:where(.dark,.dark *){color:var(--gray-400)}.fi-ta-content-ctn .fi-ta-content .fi-ta-group-header .fi-ta-group-checkbox{margin-inline:calc(var(--spacing)*3)}.fi-ta-content-ctn .fi-ta-content .fi-ta-table{grid-column:1/-1}.fi-ta-content-ctn .fi-ta-content .fi-ta-record{background-color:var(--color-white);height:100%;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;align-items:center;transition-duration:75ms;display:flex;position:relative}.fi-ta-content-ctn .fi-ta-content .fi-ta-record:where(.dark,.dark *){background-color:var(--gray-900)}.fi-ta-content-ctn .fi-ta-content .fi-ta-record.fi-ta-record-with-content-prefix{padding-inline-start:calc(var(--spacing)*1)}.fi-ta-content-ctn .fi-ta-content .fi-ta-record.fi-ta-record-with-content-suffix{padding-inline-end:calc(var(--spacing)*1)}@media (hover:hover){.fi-ta-content-ctn .fi-ta-content .fi-ta-record.fi-clickable:hover{background-color:var(--gray-50)}}.fi-ta-content-ctn .fi-ta-content .fi-ta-record.fi-collapsed{display:none}.fi-ta-content-ctn .fi-ta-content .fi-ta-record.fi-selected{background-color:var(--gray-50)}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-reorder-handle{margin-inline:calc(var(--spacing)*1);margin-block:calc(var(--spacing)*2)}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-checkbox{margin-inline:calc(var(--spacing)*3);margin-block:calc(var(--spacing)*4);flex-shrink:0}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn{row-gap:calc(var(--spacing)*3);width:100%;height:100%;padding-block:calc(var(--spacing)*4);flex-direction:column;display:flex}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn>:first-child{flex:1}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content{width:100%;display:block}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .fi-ta-col{text-align:start;justify-content:flex-start;display:flex}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .fi-ta-col:disabled{pointer-events:none}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .fi-ta-col.fi-growable{width:100%}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .fi-ta-col.fi-align-center{text-align:center;justify-content:center}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .fi-ta-col.fi-align-end{text-align:end;justify-content:flex-end}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .fi-ta-col.fi-align-left{text-align:left;justify-content:flex-start}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .fi-ta-col.fi-align-right{text-align:right;justify-content:flex-end}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .fi-ta-col.fi-align-justify,.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .fi-ta-col.fi-align-between{text-align:justify;justify-content:space-between}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content.fi-collapsible{margin-top:calc(var(--spacing)*3)}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .fi-growable{flex:1;width:100%}@media (min-width:40rem){.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .sm\:fi-hidden{display:none}}@media (min-width:48rem){.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .md\:fi-hidden{display:none}}@media (min-width:64rem){.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .lg\:fi-hidden{display:none}}@media (min-width:80rem){.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .xl\:fi-hidden{display:none}}@media (min-width:96rem){.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .\32 xl\:fi-hidden{display:none}}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .sm\:fi-visible{display:none}@media (min-width:40rem){.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .sm\:fi-visible{display:block}}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .md\:fi-visible{display:none}@media (min-width:48rem){.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .md\:fi-visible{display:block}}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .lg\:fi-visible{display:none}@media (min-width:64rem){.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .lg\:fi-visible{display:block}}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .xl\:fi-visible{display:none}@media (min-width:80rem){.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .xl\:fi-visible{display:block}}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .\32 xl\:fi-visible{display:none}@media (min-width:96rem){.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn .fi-ta-record-content .\32 xl\:fi-visible{display:block}}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-collapse-btn{margin-inline:calc(var(--spacing)*1);margin-block:calc(var(--spacing)*2);flex-shrink:0}.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-actions.fi-ta-actions-before-columns-position{order:-9999}.fi-ta-content-ctn .fi-ta-content .fi-ta-record:not(.fi-ta-record-with-content-prefix) .fi-ta-record-content,.fi-ta-content-ctn .fi-ta-content .fi-ta-record:not(.fi-ta-record-with-content-prefix) .fi-ta-actions{padding-inline-start:calc(var(--spacing)*4)}.fi-ta-content-ctn .fi-ta-content .fi-ta-record:not(.fi-ta-record-with-content-suffix) .fi-ta-record-content,.fi-ta-content-ctn .fi-ta-content .fi-ta-record:not(.fi-ta-record-with-content-suffix) .fi-ta-actions{padding-inline-end:calc(var(--spacing)*4)}.fi-ta-content-ctn .fi-ta-content .fi-ta-record.fi-ta-record-collapsed .fi-ta-record-collapse-btn{rotate:180deg}.fi-ta-empty-state{padding-inline:calc(var(--spacing)*6);padding-block:calc(var(--spacing)*12)}.fi-ta-empty-state:not(.fi-ta-ctn-with-content-layout .fi-ta-empty-state){border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--gray-200)}.fi-ta-empty-state:not(.fi-ta-ctn-with-content-layout .fi-ta-empty-state):where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-ta-empty-state:not(.fi-ta-ctn-with-content-layout .fi-ta-empty-state):where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-ta-empty-state .fi-ta-empty-state-content{max-width:var(--container-lg);text-align:center;justify-items:center;margin-inline:auto;display:grid}.fi-ta-empty-state .fi-ta-empty-state-icon-bg{margin-bottom:calc(var(--spacing)*4);background-color:var(--gray-100);padding:calc(var(--spacing)*3);border-radius:3.40282e38px}.fi-ta-empty-state .fi-ta-empty-state-icon-bg:where(.dark,.dark *){background-color:var(--gray-500)}@supports (color:color-mix(in lab, red, red)){.fi-ta-empty-state .fi-ta-empty-state-icon-bg:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-500)20%,transparent)}}.fi-ta-empty-state .fi-ta-empty-state-icon-bg .fi-icon{color:var(--gray-500)}.fi-ta-empty-state .fi-ta-empty-state-icon-bg .fi-icon:where(.dark,.dark *){color:var(--gray-400)}.fi-ta-empty-state .fi-ta-empty-state-heading{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950)}.fi-ta-empty-state .fi-ta-empty-state-heading:where(.dark,.dark *){color:var(--color-white)}.fi-ta-empty-state .fi-ta-empty-state-description{margin-top:calc(var(--spacing)*1);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-ta-empty-state .fi-ta-empty-state-description:where(.dark,.dark *){color:var(--gray-400)}.fi-ta-empty-state .fi-ta-actions{margin-top:calc(var(--spacing)*6)}.fi-ta-header-cell{padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*3.5);text-align:start;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950)}@media (min-width:40rem){.fi-ta-header-cell:first-of-type{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-header-cell:last-of-type{padding-inline-end:calc(var(--spacing)*6)}}.fi-ta-header-cell:where(.dark,.dark *){color:var(--color-white)}.fi-ta-header-cell.fi-growable{width:100%}.fi-ta-header-cell.fi-grouped{border-color:var(--gray-200)}.fi-ta-header-cell.fi-grouped:where(.dark,.dark *){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-header-cell.fi-grouped:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-header-cell.fi-grouped:not(:first-of-type){border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px}.fi-ta-header-cell.fi-grouped:not(:last-of-type){border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}.fi-ta-header-cell.fi-align-center{text-align:center}.fi-ta-header-cell.fi-align-center .fi-ta-header-cell-sort-btn{justify-content:center}.fi-ta-header-cell.fi-align-end{text-align:end}.fi-ta-header-cell.fi-align-end .fi-ta-header-cell-sort-btn{justify-content:flex-end}.fi-ta-header-cell.fi-align-left{text-align:left}.fi-ta-header-cell.fi-align-left .fi-ta-header-cell-sort-btn{justify-content:flex-start}.fi-ta-header-cell.fi-align-left .fi-ta-header-cell-sort-btn:where(:dir(rtl),[dir=rtl],[dir=rtl] *){flex-direction:row-reverse}.fi-ta-header-cell.fi-align-right{text-align:right}.fi-ta-header-cell.fi-align-right .fi-ta-header-cell-sort-btn{justify-content:flex-end}.fi-ta-header-cell.fi-align-right .fi-ta-header-cell-sort-btn:where(:dir(rtl),[dir=rtl],[dir=rtl] *){flex-direction:row-reverse}.fi-ta-header-cell.fi-align-justify,.fi-ta-header-cell.fi-align-between{text-align:justify}:is(.fi-ta-header-cell.fi-align-justify,.fi-ta-header-cell.fi-align-between) .fi-ta-header-cell-sort-btn{justify-content:space-between}.fi-ta-header-cell.fi-ta-header-cell-sorted .fi-icon{color:var(--gray-950)}.fi-ta-header-cell.fi-ta-header-cell-sorted .fi-icon:where(.dark,.dark *){color:var(--color-white)}.fi-ta-header-cell:not(.fi-ta-header-cell-sorted) .fi-icon{color:var(--gray-400)}.fi-ta-header-cell:not(.fi-ta-header-cell-sorted) .fi-icon:where(.dark,.dark *),.fi-ta-header-cell:not(.fi-ta-header-cell-sorted) .fi-ta-header-cell-sort-btn:hover .fi-icon{color:var(--gray-500)}.fi-ta-header-cell:not(.fi-ta-header-cell-sorted) .fi-ta-header-cell-sort-btn:hover .fi-icon:where(.dark,.dark *){color:var(--gray-400)}.fi-ta-header-cell:not(.fi-ta-header-cell-sorted) .fi-ta-header-cell-sort-btn:focus-visible .fi-icon{color:var(--gray-500)}.fi-ta-header-cell:not(.fi-ta-header-cell-sorted) .fi-ta-header-cell-sort-btn:focus-visible .fi-icon:where(.dark,.dark *){color:var(--gray-400)}@media (min-width:40rem){.fi-ta-header-cell.sm\:fi-hidden{display:none}}@media (min-width:48rem){.fi-ta-header-cell.md\:fi-hidden{display:none}}@media (min-width:64rem){.fi-ta-header-cell.lg\:fi-hidden{display:none}}@media (min-width:80rem){.fi-ta-header-cell.xl\:fi-hidden{display:none}}@media (min-width:96rem){.fi-ta-header-cell.\32 xl\:fi-hidden{display:none}}.fi-ta-header-cell.sm\:fi-visible{display:none}@media (min-width:40rem){.fi-ta-header-cell.sm\:fi-visible{display:table-cell}}.fi-ta-header-cell.md\:fi-visible{display:none}@media (min-width:48rem){.fi-ta-header-cell.md\:fi-visible{display:table-cell}}.fi-ta-header-cell.lg\:fi-visible{display:none}@media (min-width:64rem){.fi-ta-header-cell.lg\:fi-visible{display:table-cell}}.fi-ta-header-cell.xl\:fi-visible{display:none}@media (min-width:80rem){.fi-ta-header-cell.xl\:fi-visible{display:table-cell}}.fi-ta-header-cell.\32 xl\:fi-visible{display:none}@media (min-width:96rem){.fi-ta-header-cell.\32 xl\:fi-visible{display:table-cell}}.fi-ta-header-cell.fi-wrapped{white-space:normal}.fi-ta-header-cell:not(.fi-wrapped){white-space:nowrap}.fi-ta-header-cell .fi-ta-header-cell-sort-btn{cursor:pointer;justify-content:flex-start;align-items:center;column-gap:calc(var(--spacing)*1);width:100%;display:flex}.fi-ta-header-cell .fi-icon{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;flex-shrink:0;transition-duration:75ms}.fi-ta-header-cell .fi-loading-indicator{color:var(--gray-400)}.fi-ta-header-cell .fi-loading-indicator:where(.dark,.dark *){color:var(--gray-500)}.fi-ta-header-group-cell{border-color:var(--gray-200);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950)}@media (min-width:40rem){.fi-ta-header-group-cell:first-of-type{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-header-group-cell:last-of-type{padding-inline-end:calc(var(--spacing)*6)}}.fi-ta-header-group-cell:where(.dark,.dark *){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-header-group-cell:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-header-group-cell:where(.dark,.dark *){color:var(--color-white)}.fi-ta-header-group-cell:not(:first-of-type){border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px}.fi-ta-header-group-cell:not(:last-of-type){border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}.fi-ta-header-group-cell.fi-align-start{text-align:start}.fi-ta-header-group-cell.fi-align-center{text-align:center}.fi-ta-header-group-cell.fi-align-end{text-align:end}.fi-ta-header-group-cell.fi-align-left{text-align:left}.fi-ta-header-group-cell.fi-align-right{text-align:right}.fi-ta-header-group-cell.fi-align-justify,.fi-ta-header-group-cell.fi-align-between{text-align:justify}@media (min-width:40rem){.fi-ta-header-group-cell.sm\:fi-hidden{display:none}}@media (min-width:48rem){.fi-ta-header-group-cell.md\:fi-hidden{display:none}}@media (min-width:64rem){.fi-ta-header-group-cell.lg\:fi-hidden{display:none}}@media (min-width:80rem){.fi-ta-header-group-cell.xl\:fi-hidden{display:none}}@media (min-width:96rem){.fi-ta-header-group-cell.\32 xl\:fi-hidden{display:none}}.fi-ta-header-group-cell.sm\:fi-visible{display:none}@media (min-width:40rem){.fi-ta-header-group-cell.sm\:fi-visible{display:table-cell}}.fi-ta-header-group-cell.md\:fi-visible{display:none}@media (min-width:48rem){.fi-ta-header-group-cell.md\:fi-visible{display:table-cell}}.fi-ta-header-group-cell.lg\:fi-visible{display:none}@media (min-width:64rem){.fi-ta-header-group-cell.lg\:fi-visible{display:table-cell}}.fi-ta-header-group-cell.xl\:fi-visible{display:none}@media (min-width:80rem){.fi-ta-header-group-cell.xl\:fi-visible{display:table-cell}}.fi-ta-header-group-cell.\32 xl\:fi-visible{display:none}@media (min-width:96rem){.fi-ta-header-group-cell.\32 xl\:fi-visible{display:table-cell}}.fi-ta-header-group-cell.fi-wrapped{white-space:normal}.fi-ta-header-group-cell:not(.fi-wrapped){white-space:nowrap}.fi-ta-empty-header-cell{width:calc(var(--spacing)*1)}@media (hover:hover){.fi-ta-row{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}.fi-ta-row.fi-clickable:hover{background-color:var(--gray-50)}.fi-ta-row.fi-clickable:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-row.fi-clickable:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-ta-row.fi-striped{background-color:var(--gray-50)}.fi-ta-row.fi-striped:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-row.fi-striped:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-row.fi-collapsed{display:none}.fi-ta-row.fi-ta-group-header-row>td{background-color:var(--gray-50)}.fi-ta-row.fi-ta-group-header-row>td:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-row.fi-ta-group-header-row>td:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-row .fi-ta-group-header-cell{padding-inline:calc(var(--spacing)*3)}@media (min-width:40rem){.fi-ta-row .fi-ta-group-header-cell:first-of-type{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-row .fi-ta-group-header-cell:last-of-type{padding-inline-end:calc(var(--spacing)*6)}}.fi-ta-row .fi-ta-group-header{align-items:center;column-gap:calc(var(--spacing)*3);width:100%;padding-block:calc(var(--spacing)*2);display:flex}.fi-ta-row .fi-ta-group-header.fi-collapsible{cursor:pointer}.fi-ta-row .fi-ta-group-header.fi-collapsible.fi-collapsed .fi-icon-btn{rotate:-180deg}.fi-ta-row .fi-ta-group-header .fi-ta-group-heading{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-ta-row .fi-ta-group-header .fi-ta-group-heading:where(.dark,.dark *){color:var(--color-white)}.fi-ta-row .fi-ta-group-header .fi-ta-group-description{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-ta-row .fi-ta-group-header .fi-ta-group-description:where(.dark,.dark *){color:var(--gray-400)}.fi-ta-row.fi-selected:not(.fi-striped){background-color:var(--gray-50)}.fi-ta-row.fi-selected:not(.fi-striped):where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-row.fi-selected:not(.fi-striped):where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-row.fi-selected>:first-child{position:relative}.fi-ta-row.fi-selected>:first-child:before{inset-block:calc(var(--spacing)*0);width:calc(var(--spacing)*.5);background-color:var(--primary-600);content:"";position:absolute;inset-inline-start:calc(var(--spacing)*0)}.fi-ta-row.fi-selected>:first-child:where(.dark,.dark *):before{background-color:var(--primary-500)}.fi-ta-reordering .fi-ta-row:not(.fi-ta-row-not-reorderable){cursor:move}.fi-ta-table{table-layout:auto;width:100%}:where(.fi-ta-table>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}.fi-ta-table{text-align:start}:where(.fi-ta-table:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(.fi-ta-table:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-table.fi-ta-table-stacked-on-mobile{display:block}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile{table-layout:auto;display:table}}.fi-ta-table.fi-ta-table-stacked-on-mobile>thead{display:block}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>thead{display:table-header-group}}.fi-ta-table.fi-ta-table-stacked-on-mobile>thead:not(:has(.fi-ta-table-stacked-header-row)){display:none}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>thead:not(:has(.fi-ta-table-stacked-header-row)){display:table-header-group}}.fi-ta-table.fi-ta-table-stacked-on-mobile>thead>tr:not(.fi-ta-table-stacked-header-row){display:none}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>thead>tr:not(.fi-ta-table-stacked-header-row){display:table-row}}.fi-ta-table.fi-ta-table-stacked-on-mobile>thead>tr>.fi-ta-header-cell{display:none}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>thead>tr>.fi-ta-header-cell{display:table-cell}}.fi-ta-table.fi-ta-table-stacked-on-mobile>thead>tr>.fi-ta-selection-cell{display:none}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>thead>tr>.fi-ta-selection-cell{display:table-cell}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody{white-space:normal;display:block}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody{white-space:nowrap;display:table-row-group}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr{padding-block:calc(var(--spacing)*2);display:block;position:relative}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr{padding-block:calc(var(--spacing)*0);display:table-row;position:static}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr.fi-collapsed{display:none}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr.fi-selected:before{inset-block:calc(var(--spacing)*0);width:calc(var(--spacing)*.5);background-color:var(--primary-600);position:absolute;inset-inline-start:calc(var(--spacing)*0)}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr.fi-selected:before{display:none}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr.fi-selected:before{content:""}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr.fi-selected:where(.dark,.dark *):before{background-color:var(--primary-500)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr.fi-selected>:first-child:before{display:none}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr.fi-selected>:first-child:before{display:block}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr.fi-ta-group-header-row{padding-block:calc(var(--spacing)*0)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr.fi-ta-group-header-row>td{width:100%;display:block}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr.fi-ta-group-header-row>td{width:auto;display:table-cell}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr.fi-ta-summary-row{padding-block:calc(var(--spacing)*0)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-selection-cell{inset-inline-end:calc(var(--spacing)*5);top:calc(var(--spacing)*0);position:absolute}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-selection-cell{width:calc(var(--spacing)*1);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4);display:table-cell;position:static}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-selection-cell:first-of-type{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-selection-cell:last-of-type{padding-inline-end:calc(var(--spacing)*6)}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell){padding-inline:calc(var(--spacing)*4);display:block}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell){padding-inline:calc(var(--spacing)*0);display:table-cell}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell):first-of-type{padding-inline-start:calc(var(--spacing)*3)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell):last-of-type{padding-inline-end:calc(var(--spacing)*3)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).fi-ta-summary-row-heading-cell{padding-inline:calc(var(--spacing)*3)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).fi-ta-summary-row-heading-cell:first-of-type{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).fi-ta-summary-row-heading-cell:last-of-type{padding-inline-end:calc(var(--spacing)*6)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).fi-ta-summary-header-cell{padding-inline:calc(var(--spacing)*3)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).fi-ta-summary-header-cell:first-of-type{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).sm\:fi-hidden{display:none}}@media (min-width:48rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).md\:fi-hidden{display:none}}@media (min-width:64rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).lg\:fi-hidden{display:none}}@media (min-width:80rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).xl\:fi-hidden{display:none}}@media (min-width:96rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).\32 xl\:fi-hidden{display:none}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).sm\:fi-visible{display:none}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).sm\:fi-visible{display:table-cell}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).md\:fi-visible{display:none}@media (min-width:48rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).md\:fi-visible{display:table-cell}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).lg\:fi-visible{display:none}@media (min-width:64rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).lg\:fi-visible{display:table-cell}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).xl\:fi-visible{display:none}@media (min-width:80rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).xl\:fi-visible{display:table-cell}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).\32 xl\:fi-visible{display:none}@media (min-width:96rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell).\32 xl\:fi-visible{display:table-cell}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell)>.fi-ta-cell-label{padding-top:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-500)}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell)>.fi-ta-cell-label{display:none}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell)>.fi-ta-cell-label:where(.dark,.dark *){color:var(--gray-400)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell)>.fi-ta-cell-content{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));overflow-wrap:break-word;color:var(--gray-800)}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell)>.fi-ta-cell-content{display:block}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell)>.fi-ta-cell-content:where(.dark,.dark *){color:var(--gray-200)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell):has(.fi-ta-actions){padding-block:calc(var(--spacing)*2)}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell):has(.fi-ta-actions){padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*4)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell):has(.fi-ta-actions):first-of-type{padding-inline-start:calc(var(--spacing)*6)}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell):has(.fi-ta-actions):last-of-type{padding-inline-end:calc(var(--spacing)*6)}}.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell):has(.fi-ta-actions)>.fi-ta-actions{justify-content:flex-start;column-gap:calc(var(--spacing)*3);row-gap:calc(var(--spacing)*2);flex-wrap:wrap;width:100%}@media (min-width:40rem){.fi-ta-table.fi-ta-table-stacked-on-mobile>tbody>tr>.fi-ta-cell:not(.fi-ta-selection-cell):has(.fi-ta-actions)>.fi-ta-actions{justify-content:flex-end;gap:calc(var(--spacing)*3);flex-wrap:nowrap;width:auto}}:where(.fi-ta-table>thead>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}:where(.fi-ta-table>thead:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(.fi-ta-table>thead:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-table>thead>tr{background-color:var(--gray-50)}.fi-ta-table>thead>tr:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-table>thead>tr:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-table>thead>tr.fi-ta-table-head-groups-row{background-color:var(--gray-100)}.fi-ta-table>thead>tr.fi-ta-table-head-groups-row:where(.dark,.dark *){background-color:#0000}:where(.fi-ta-table>tbody>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}.fi-ta-table>tbody{white-space:nowrap}:where(.fi-ta-table>tbody:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){:where(.fi-ta-table>tbody:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-table>tfoot{background-color:var(--gray-50)}.fi-ta-table>tfoot:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-table>tfoot:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-table-stacked-header-row{border-block-style:var(--tw-border-style);border-block-width:0;width:100%;display:block}@media (min-width:40rem){.fi-ta-table-stacked-header-row{display:none}}.fi-ta-table-stacked-header-row .fi-ta-table-stacked-header-cell{align-items:center;gap:calc(var(--spacing)*4);background-color:var(--gray-50);width:100%;padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*3);--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal);display:flex}.fi-ta-table-stacked-header-row .fi-ta-table-stacked-header-cell:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-ta-table-stacked-header-row .fi-ta-table-stacked-header-cell:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-ta-table-stacked-header-row .fi-ta-table-stacked-header-cell .fi-ta-page-checkbox{flex-shrink:0;margin-inline-start:auto}.fi-ta-table-stacked-header-row .fi-ta-table-stacked-header-cell .fi-ta-table-stacked-sorting{column-gap:calc(var(--spacing)*3);flex:1;display:flex}.fi-ta-col-manager{gap:calc(var(--spacing)*4);display:grid}.fi-ta-col-manager .fi-ta-col-manager-header{justify-content:space-between;align-items:center;display:flex}.fi-ta-col-manager .fi-ta-col-manager-heading{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950)}.fi-ta-col-manager .fi-ta-col-manager-heading:where(.dark,.dark *){color:var(--color-white)}.fi-ta-col-manager .fi-ta-col-manager-items{margin-top:calc(var(--spacing)*-6);column-gap:calc(var(--spacing)*6)}.fi-ta-col-manager .fi-ta-col-manager-item{break-inside:avoid;align-items:center;gap:calc(var(--spacing)*3);padding-top:calc(var(--spacing)*6);display:flex}.fi-ta-col-manager .fi-ta-col-manager-item .fi-ta-col-manager-label{align-items:center;column-gap:calc(var(--spacing)*3);width:100%;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950);flex:1;display:flex}.fi-ta-col-manager .fi-ta-col-manager-item .fi-ta-col-manager-label:where(.dark,.dark *){color:var(--color-white)}.fi-ta-col-manager .fi-ta-col-manager-item .fi-ta-col-manager-label .fi-checkbox-input{flex-shrink:0}.fi-ta-col-manager .fi-ta-col-manager-item .fi-ta-col-manager-reorder-handle{cursor:move}.fi-ta-col-manager .fi-ta-col-manager-group{break-inside:avoid}.fi-ta-col-manager .fi-ta-col-manager-group .fi-ta-col-manager-group-items{padding-inline-start:calc(var(--spacing)*8)}.fi-ta-col-manager .fi-ta-col-manager-actions-ctn{gap:calc(var(--spacing)*3);display:flex}.fi-wi-chart .fi-wi-chart-canvas-ctn{margin-inline:auto}.fi-wi-chart .fi-wi-chart-canvas-ctn:not(.fi-wi-chart-canvas-ctn-no-aspect-ratio){aspect-ratio:1}@supports (container-type:inline-size){.fi-wi-chart .fi-section-content{container-type:inline-size}@container (min-width:24rem){.fi-wi-chart .fi-wi-chart-canvas-ctn:not(.fi-wi-chart-canvas-ctn-no-aspect-ratio){aspect-ratio:1.5}}}@supports not (container-type:inline-size){@media (min-width:40rem){.fi-wi-chart .fi-wi-chart-canvas-ctn:not(.fi-wi-chart-canvas-ctn-no-aspect-ratio){aspect-ratio:1.5}}}.fi-wi-chart .fi-wi-chart-filter.fi-input-wrp{width:max-content}@media (min-width:40rem){.fi-wi-chart .fi-wi-chart-filter.fi-input-wrp{margin-block:calc(var(--spacing)*-2)}}.fi-wi-chart .fi-wi-chart-filter.fi-dropdown .fi-wi-chart-filter-content{row-gap:calc(var(--spacing)*4);padding:calc(var(--spacing)*6);display:grid}.fi-wi-chart .fi-wi-chart-filter.fi-dropdown .fi-wi-chart-filter-content-actions-ctn{gap:calc(var(--spacing)*3);display:flex}.fi-wi-chart .fi-color .fi-wi-chart-bg-color{color:var(--color-50)}.fi-wi-chart .fi-color .fi-wi-chart-bg-color:where(.dark,.dark *){color:var(--color-400)}@supports (color:color-mix(in lab, red, red)){.fi-wi-chart .fi-color .fi-wi-chart-bg-color:where(.dark,.dark *){color:color-mix(in oklab,var(--color-400)10%,transparent)}}.fi-wi-chart .fi-color .fi-wi-chart-border-color{color:var(--color-500)}.fi-wi-chart .fi-color .fi-wi-chart-border-color:where(.dark,.dark *){color:var(--color-400)}.fi-wi-chart .fi-wi-chart-bg-color{color:var(--gray-100)}.fi-wi-chart .fi-wi-chart-bg-color:where(.dark,.dark *){color:var(--gray-800)}.fi-wi-chart .fi-wi-chart-border-color{color:var(--gray-400)}.fi-wi-chart .fi-wi-chart-grid-color{color:var(--gray-200)}.fi-wi-chart .fi-wi-chart-grid-color:where(.dark,.dark *){color:var(--gray-800)}.fi-wi-chart .fi-wi-chart-text-color{color:var(--gray-500)}.fi-wi-chart .fi-wi-chart-text-color:where(.dark,.dark *){color:var(--gray-400)}.fi-wi-stats-overview-stat{border-radius:var(--radius-xl);background-color:var(--color-white);height:100%;padding:calc(var(--spacing)*6);--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent);display:block;position:relative}.fi-wi-stats-overview-stat:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-wi-stats-overview-stat:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-wi-stats-overview-stat .fi-icon{color:var(--gray-400);flex-shrink:0}.fi-wi-stats-overview-stat .fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-content{row-gap:calc(var(--spacing)*2);display:grid}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-label-ctn{align-items:center;column-gap:calc(var(--spacing)*2);display:flex}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-label{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-500)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-label:where(.dark,.dark *){color:var(--gray-400)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-value{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height));--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight);color:var(--gray-950)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-value:where(.dark,.dark *){color:var(--color-white)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-description{align-items:center;column-gap:calc(var(--spacing)*1);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500);display:flex}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-description:where(.dark,.dark *){color:var(--gray-400)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-description.fi-color{color:var(--text)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-description.fi-color:where(.dark,.dark *){color:var(--dark-text)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-description.fi-color .fi-icon{color:var(--color-500)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-chart{inset-inline:calc(var(--spacing)*0);bottom:calc(var(--spacing)*0);border-bottom-right-radius:var(--radius-xl);border-bottom-left-radius:var(--radius-xl);position:absolute;overflow:hidden}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-chart>canvas{height:calc(var(--spacing)*6)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-chart .fi-wi-stats-overview-stat-chart-bg-color{color:var(--gray-100)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-chart .fi-wi-stats-overview-stat-chart-bg-color:where(.dark,.dark *){color:var(--gray-800)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-chart .fi-wi-stats-overview-stat-chart-border-color{color:var(--gray-400)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-chart.fi-color .fi-wi-stats-overview-stat-chart-bg-color{color:var(--color-50)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-chart.fi-color .fi-wi-stats-overview-stat-chart-bg-color:where(.dark,.dark *){color:var(--color-400)}@supports (color:color-mix(in lab, red, red)){.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-chart.fi-color .fi-wi-stats-overview-stat-chart-bg-color:where(.dark,.dark *){color:color-mix(in oklab,var(--color-400)10%,transparent)}}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-chart.fi-color .fi-wi-stats-overview-stat-chart-border-color{color:var(--color-500)}.fi-wi-stats-overview-stat .fi-wi-stats-overview-stat-chart.fi-color .fi-wi-stats-overview-stat-chart-border-color:where(.dark,.dark *){color:var(--color-400)}.fi-wi{gap:calc(var(--spacing)*6)}.fi-global-search-ctn{align-items:center;display:flex}.fi-global-search{flex:1}@media (min-width:40rem){.fi-global-search{position:relative}}.fi-global-search-results-ctn{inset-inline:calc(var(--spacing)*4);z-index:10;margin-top:calc(var(--spacing)*2);max-height:calc(var(--spacing)*96);border-radius:var(--radius-lg);background-color:var(--color-white);--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));position:absolute;overflow:auto}@media (min-width:40rem){.fi-global-search-results-ctn{inset-inline:auto}}.fi-global-search-results-ctn:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-global-search-results-ctn:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-global-search-results-ctn{transform:translateZ(0)}.fi-global-search-results-ctn.fi-transition-enter-start,.fi-global-search-results-ctn.fi-transition-leave-end{opacity:0}@media (min-width:40rem){.fi-topbar .fi-global-search-results-ctn{width:100vw;max-width:var(--container-sm);inset-inline-end:calc(var(--spacing)*0)}}.fi-sidebar .fi-global-search-ctn{margin-inline:calc(var(--spacing)*3);margin-top:calc(var(--spacing)*3)}@media (min-width:40rem){.fi-sidebar .fi-global-search-results-ctn{inset-inline-start:calc(var(--spacing)*0)}}.fi-global-search-no-results-message{padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*4);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-global-search-no-results-message:where(.dark,.dark *){color:var(--gray-400)}:where(.fi-global-search-results>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}:where(.fi-global-search-results:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:where(.fi-global-search-results:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-global-search-result-group-header{top:calc(var(--spacing)*0);z-index:10;border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--gray-200);background-color:var(--gray-50);padding-inline:calc(var(--spacing)*4);padding-block:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950);text-transform:capitalize;position:sticky}.fi-global-search-result-group-header:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-global-search-result-group-header:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-global-search-result-group-header:where(.dark,.dark *){background-color:var(--gray-800);color:var(--color-white)}:where(.fi-global-search-result-group-results>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)));border-color:var(--gray-200)}:where(.fi-global-search-result-group-results:where(.dark,.dark *)>:not(:last-child)){border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){:where(.fi-global-search-result-group-results:where(.dark,.dark *)>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-global-search-result{scroll-margin-top:calc(var(--spacing)*9);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}.fi-global-search-result:focus-within{background-color:var(--gray-50)}@media (hover:hover){.fi-global-search-result:hover{background-color:var(--gray-50)}}.fi-global-search-result:where(.dark,.dark *):focus-within{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-global-search-result:where(.dark,.dark *):focus-within{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}@media (hover:hover){.fi-global-search-result:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-global-search-result:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-global-search-result.fi-global-search-result-has-actions .fi-global-search-result-link{padding-bottom:calc(var(--spacing)*0)}.fi-global-search-result-link{padding:calc(var(--spacing)*4);--tw-outline-style:none;outline-style:none;display:block}@media (forced-colors:active){.fi-global-search-result-link{outline-offset:2px;outline:2px solid #0000}}.fi-global-search-result-heading{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-950)}.fi-global-search-result-heading:where(.dark,.dark *){color:var(--color-white)}.fi-global-search-result-details{margin-top:calc(var(--spacing)*1)}.fi-global-search-result-detail{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-global-search-result-detail:where(.dark,.dark *){color:var(--gray-400)}.fi-global-search-result-detail-label{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);display:inline}.fi-global-search-result-detail-value{display:inline}.fi-global-search-result-actions{margin-top:calc(var(--spacing)*3);column-gap:calc(var(--spacing)*3);padding-inline:calc(var(--spacing)*4);padding-bottom:calc(var(--spacing)*4);display:flex}.fi-header{gap:calc(var(--spacing)*4);flex-direction:column;display:flex}@media (min-width:40rem){.fi-header{flex-direction:row;justify-content:space-between;align-items:center}}.fi-header .fi-breadcrumbs{margin-bottom:calc(var(--spacing)*2);display:none}@media (min-width:40rem){.fi-header .fi-breadcrumbs{display:block}.fi-header.fi-header-has-breadcrumbs .fi-header-actions-ctn{margin-top:calc(var(--spacing)*7)}}.fi-header-heading{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height));--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold);--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight);color:var(--gray-950)}@media (min-width:40rem){.fi-header-heading{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}}.fi-header-heading:where(.dark,.dark *){color:var(--color-white)}.fi-header-subheading{margin-top:calc(var(--spacing)*2);max-width:var(--container-2xl);font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height));color:var(--gray-600)}.fi-header-subheading:where(.dark,.dark *){color:var(--gray-400)}.fi-header-actions-ctn{align-items:center;gap:calc(var(--spacing)*3);flex-shrink:0;display:flex}.fi-header-actions-ctn>.fi-ac{flex:1}.fi-header-actions-ctn>.fi-ac:not(.fi-width-full).fi-align-end,.fi-header-actions-ctn>.fi-ac:not(.fi-width-full).fi-align-right{flex-direction:row;justify-content:flex-end}.fi-simple-header{flex-direction:column;align-items:center;display:flex}.fi-simple-header .fi-logo{margin-bottom:calc(var(--spacing)*4)}.fi-simple-header-heading{text-align:center;font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height));--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold);--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight);color:var(--gray-950)}.fi-simple-header-heading:where(.dark,.dark *){color:var(--color-white)}.fi-simple-header-subheading{margin-top:calc(var(--spacing)*2);text-align:center;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-simple-header-subheading:where(.dark,.dark *){color:var(--gray-400)}html.fi{min-height:100dvh}.fi-body{background-color:var(--gray-50);--tw-font-weight:var(--font-weight-normal);min-height:100dvh;font-weight:var(--font-weight-normal);color:var(--gray-950);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fi-body:where(.dark,.dark *){background-color:var(--gray-950);color:var(--color-white)}:is(.fi-body.fi-body-has-sidebar-collapsible-on-desktop,.fi-body.fi-body-has-sidebar-fully-collapsible-on-desktop) .fi-main-ctn{opacity:0;min-height:calc(100dvh - 4rem);transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.fi-body>.fi-layout-sidebar-toggle-btn-ctn{padding-inline-start:calc(var(--spacing)*5);padding-top:calc(var(--spacing)*5)}@media (min-width:64rem){.fi-body>.fi-layout-sidebar-toggle-btn-ctn.lg\:fi-hidden{display:none}}.fi-body.fi-body-has-navigation:not(.fi-body-has-sidebar-collapsible-on-desktop):not(.fi-body-has-sidebar-fully-collapsible-on-desktop):not(.fi-body-has-top-navigation) .fi-main-ctn{opacity:0}:is(.fi-body.fi-body-has-top-navigation,.fi-body:not(.fi-body-has-navigation)) .fi-main-ctn{min-height:calc(100dvh - 4rem);display:flex}.fi-body:not(.fi-body-has-topbar) .fi-main-ctn{min-height:100dvh;display:flex}.fi-layout{width:100%;height:100%;display:flex;overflow-x:clip}.fi-main-ctn{flex-direction:column;flex:1;width:100vw}.fi-main{width:100%;height:100%;padding-inline:calc(var(--spacing)*4);margin-inline:auto}@media (min-width:48rem){.fi-main{padding-inline:calc(var(--spacing)*6)}}@media (min-width:64rem){.fi-main{padding-inline:calc(var(--spacing)*8)}}:is(.fi-main,.fi-simple-main).fi-width-xs{max-width:var(--container-xs)}:is(.fi-main,.fi-simple-main).fi-width-sm{max-width:var(--container-sm)}:is(.fi-main,.fi-simple-main).fi-width-md{max-width:var(--container-md)}:is(.fi-main,.fi-simple-main).fi-width-lg{max-width:var(--container-lg)}:is(.fi-main,.fi-simple-main).fi-width-xl{max-width:var(--container-xl)}:is(.fi-main,.fi-simple-main).fi-width-2xl{max-width:var(--container-2xl)}:is(.fi-main,.fi-simple-main).fi-width-3xl{max-width:var(--container-3xl)}:is(.fi-main,.fi-simple-main).fi-width-4xl{max-width:var(--container-4xl)}:is(.fi-main,.fi-simple-main).fi-width-5xl{max-width:var(--container-5xl)}:is(.fi-main,.fi-simple-main).fi-width-6xl{max-width:var(--container-6xl)}:is(.fi-main,.fi-simple-main).fi-width-7xl{max-width:var(--container-7xl)}:is(.fi-main,.fi-simple-main).fi-width-full{max-width:100%}:is(.fi-main,.fi-simple-main).fi-width-min{max-width:min-content}:is(.fi-main,.fi-simple-main).fi-width-max{max-width:max-content}:is(.fi-main,.fi-simple-main).fi-width-fit{max-width:fit-content}:is(.fi-main,.fi-simple-main).fi-width-prose{max-width:65ch}:is(.fi-main,.fi-simple-main).fi-width-screen-sm{max-width:var(--breakpoint-sm)}:is(.fi-main,.fi-simple-main).fi-width-screen-md{max-width:var(--breakpoint-md)}:is(.fi-main,.fi-simple-main).fi-width-screen-lg{max-width:var(--breakpoint-lg)}:is(.fi-main,.fi-simple-main).fi-width-screen-xl{max-width:var(--breakpoint-xl)}:is(.fi-main,.fi-simple-main).fi-width-screen-2xl{max-width:var(--breakpoint-2xl)}:is(.fi-main,.fi-simple-main).fi-width-screen{inset:calc(var(--spacing)*0);position:fixed}.fi-simple-layout{flex-direction:column;align-items:center;min-height:100dvh;display:flex}.fi-simple-layout-header{inset-inline-end:calc(var(--spacing)*0);top:calc(var(--spacing)*0);height:calc(var(--spacing)*16);align-items:center;column-gap:calc(var(--spacing)*4);padding-inline-end:calc(var(--spacing)*4);display:flex;position:absolute}@media (min-width:48rem){.fi-simple-layout-header{padding-inline-end:calc(var(--spacing)*6)}}@media (min-width:64rem){.fi-simple-layout-header{padding-inline-end:calc(var(--spacing)*8)}}.fi-simple-main-ctn{flex-grow:1;justify-content:center;align-items:center;width:100%;display:flex}.fi-simple-main{margin-block:calc(var(--spacing)*16);background-color:var(--color-white);width:100%;padding-inline:calc(var(--spacing)*6);padding-block:calc(var(--spacing)*12);--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}@media (min-width:40rem){.fi-simple-main{border-radius:var(--radius-xl);padding-inline:calc(var(--spacing)*12)}}.fi-simple-main:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-simple-main:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-logo{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height));--tw-leading:calc(var(--spacing)*5);line-height:calc(var(--spacing)*5);--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold);--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight);color:var(--gray-950);display:flex}.fi-logo:where(.dark,.dark *){color:var(--color-white)}.fi-logo.fi-logo-light:where(.dark,.dark *),.fi-logo.fi-logo-dark{display:none}.fi-logo.fi-logo-dark:where(.dark,.dark *){display:flex}@media (min-width:48rem){.fi-page-sub-navigation-dropdown{display:none}}.fi-page-sub-navigation-dropdown>.fi-dropdown-trigger>.fi-btn{justify-content:space-between;width:100%}.fi-page-sub-navigation-sidebar-ctn{width:calc(var(--spacing)*72);flex-direction:column;display:none}@media (min-width:48rem){.fi-page-sub-navigation-sidebar-ctn{display:flex}}.fi-page-sub-navigation-sidebar{row-gap:calc(var(--spacing)*7);flex-direction:column;display:flex}.fi-page-sub-navigation-tabs{display:none}@media (min-width:48rem){.fi-page-sub-navigation-tabs{display:flex}}.fi-page.fi-height-full,.fi-page.fi-height-full .fi-page-main,.fi-page.fi-height-full .fi-page-header-main-ctn,.fi-page.fi-height-full .fi-page-content{height:100%}.fi-page.fi-page-has-sub-navigation .fi-page-main{gap:calc(var(--spacing)*8);flex-direction:column;display:flex}@media (min-width:48rem){:is(.fi-page.fi-page-has-sub-navigation.fi-page-has-sub-navigation-start,.fi-page.fi-page-has-sub-navigation.fi-page-has-sub-navigation-end) .fi-page-main{flex-direction:row;align-items:flex-start}}.fi-page-header-main-ctn{row-gap:calc(var(--spacing)*8);padding-block:calc(var(--spacing)*8);flex-direction:column;display:flex}.fi-page-main-sub-navigation-mobile-menu-render-hook-ctn{display:contents}@media (min-width:48rem){.fi-page-main-sub-navigation-mobile-menu-render-hook-ctn{display:none}}.fi-page-content{row-gap:calc(var(--spacing)*8);flex:1;grid-auto-columns:minmax(0,1fr);display:grid}.fi-simple-page-content{row-gap:calc(var(--spacing)*6);grid-auto-columns:minmax(0,1fr);display:grid}.fi-sidebar-group{row-gap:calc(var(--spacing)*1);flex-direction:column;display:flex}.fi-sidebar-group.fi-collapsed .fi-sidebar-group-collapse-btn{rotate:-180deg}.fi-sidebar-group.fi-collapsible>.fi-sidebar-group-btn{cursor:pointer}.fi-sidebar-group.fi-active .fi-sidebar-group-dropdown-trigger-btn .fi-icon{color:var(--primary-600)}.fi-sidebar-group.fi-active .fi-sidebar-group-dropdown-trigger-btn .fi-icon:where(.dark,.dark *){color:var(--primary-400)}.fi-sidebar-group-btn{align-items:center;column-gap:calc(var(--spacing)*3);padding:calc(var(--spacing)*2);display:flex}.fi-sidebar-group-btn .fi-icon{color:var(--gray-400)}.fi-sidebar-group-btn .fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-sidebar-group-label{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-500);flex:1}.fi-sidebar-group-label:where(.dark,.dark *){color:var(--gray-400)}.fi-sidebar-group-dropdown-trigger-btn{justify-content:center;align-items:center;column-gap:calc(var(--spacing)*3);border-radius:var(--radius-lg);padding:calc(var(--spacing)*2);--tw-outline-style:none;outline-style:none;flex:1;display:flex;position:relative}@media (forced-colors:active){.fi-sidebar-group-dropdown-trigger-btn{outline-offset:2px;outline:2px solid #0000}}.fi-sidebar-group-dropdown-trigger-btn{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}@media (hover:hover){.fi-sidebar-group-dropdown-trigger-btn:hover{background-color:var(--gray-100)}}.fi-sidebar-group-dropdown-trigger-btn:focus-visible{background-color:var(--gray-100)}@media (hover:hover){.fi-sidebar-group-dropdown-trigger-btn:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-sidebar-group-dropdown-trigger-btn:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-sidebar-group-dropdown-trigger-btn:where(.dark,.dark *):focus-visible{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-sidebar-group-dropdown-trigger-btn:where(.dark,.dark *):focus-visible{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-sidebar-group-dropdown-trigger-btn .fi-icon{color:var(--gray-400)}.fi-sidebar-group-dropdown-trigger-btn .fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-sidebar-group-items{row-gap:calc(var(--spacing)*1);flex-direction:column;display:flex}:is(.fi-sidebar-group-btn,.fi-sidebar-group-items).fi-transition-enter{transition-delay:.1s}@media (min-width:64rem){:is(.fi-sidebar-group-btn,.fi-sidebar-group-items).fi-transition-enter{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}}:is(.fi-sidebar-group-btn,.fi-sidebar-group-items).fi-transition-enter-start{opacity:0}:is(.fi-sidebar-group-btn,.fi-sidebar-group-items).fi-transition-enter-end{opacity:1}.fi-sidebar{inset-block:calc(var(--spacing)*0);z-index:30;background-color:var(--color-white);height:100dvh;transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));flex-direction:column;align-content:flex-start;display:flex;position:fixed;inset-inline-start:calc(var(--spacing)*0)}@media (min-width:64rem){.fi-sidebar{z-index:20;background-color:#0000;transition-property:none}}.fi-sidebar:where(.dark,.dark *){background-color:var(--gray-900)}@media (min-width:64rem){.fi-sidebar:where(.dark,.dark *){background-color:#0000}}.fi-sidebar.fi-sidebar-open{width:var(--sidebar-width);--tw-translate-x:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y);--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}@media (min-width:64rem){.fi-sidebar.fi-sidebar-open{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.fi-sidebar.fi-sidebar-open:where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-translate-x:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-sidebar.fi-sidebar-open:where(.dark,.dark *){--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-sidebar.fi-sidebar-open:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-sidebar:not(.fi-sidebar-open){--tw-translate-x:-100%;translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-sidebar:not(.fi-sidebar-open):where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-translate-x:100%;translate:var(--tw-translate-x)var(--tw-translate-y)}@media (min-width:64rem){.fi-body-has-topbar .fi-sidebar{height:calc(100dvh - 4rem);top:4rem}}.fi-sidebar-close-overlay{inset:calc(var(--spacing)*0);z-index:30;background-color:var(--gray-950);position:fixed}@supports (color:color-mix(in lab, red, red)){.fi-sidebar-close-overlay{background-color:color-mix(in oklab,var(--gray-950)50%,transparent)}}.fi-sidebar-close-overlay{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:.5s;transition-duration:.5s}@media (min-width:64rem){.fi-sidebar-close-overlay{display:none}}.fi-sidebar-close-overlay:where(.dark,.dark *){background-color:var(--gray-950)}@supports (color:color-mix(in lab, red, red)){.fi-sidebar-close-overlay:where(.dark,.dark *){background-color:color-mix(in oklab,var(--gray-950)75%,transparent)}}@media (min-width:64rem){.fi-body.fi-body-has-top-navigation .fi-sidebar{--tw-translate-x:-100%;translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-body.fi-body-has-top-navigation .fi-sidebar:where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-translate-x:100%;translate:var(--tw-translate-x)var(--tw-translate-y)}.fi-body:not(.fi-body-has-top-navigation) .fi-sidebar.fi-sidebar-open,.fi-body:not(.fi-body-has-top-navigation).fi-body-has-sidebar-collapsible-on-desktop .fi-sidebar:not(.fi-sidebar-open){position:sticky}.fi-body:not(.fi-body-has-top-navigation).fi-body-has-sidebar-collapsible-on-desktop .fi-sidebar:not(.fi-sidebar-open),.fi-body:not(.fi-body-has-top-navigation).fi-body-has-sidebar-collapsible-on-desktop .fi-sidebar:not(.fi-sidebar-open):where(:dir(rtl),[dir=rtl],[dir=rtl] *),.fi-body:not(.fi-body-has-top-navigation):not(.fi-body-has-sidebar-collapsible-on-desktop):not(.fi-body-has-sidebar-fully-collapsible-on-desktop) .fi-sidebar,.fi-body:not(.fi-body-has-top-navigation):not(.fi-body-has-sidebar-collapsible-on-desktop):not(.fi-body-has-sidebar-fully-collapsible-on-desktop) .fi-sidebar:where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-translate-x:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}}.fi-body:not(.fi-body-has-top-navigation):not(.fi-body-has-sidebar-collapsible-on-desktop):not(.fi-body-has-sidebar-fully-collapsible-on-desktop) .fi-sidebar:not(.fi-sidebar-open){width:var(--sidebar-width)}@media (min-width:64rem){.fi-body:not(.fi-body-has-top-navigation):not(.fi-body-has-sidebar-collapsible-on-desktop):not(.fi-body-has-sidebar-fully-collapsible-on-desktop) .fi-sidebar:not(.fi-sidebar-open){position:sticky}}.fi-sidebar-header-ctn{overflow-x:clip}.fi-sidebar-header{height:calc(var(--spacing)*16);justify-content:center;align-items:center;display:flex}.fi-sidebar-header-logo-ctn{flex:1}.fi-body-has-topbar .fi-sidebar-header{background-color:var(--color-white);padding-inline:calc(var(--spacing)*6);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--gray-950)}@supports (color:color-mix(in lab, red, red)){.fi-body-has-topbar .fi-sidebar-header{--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent)}}@media (min-width:64rem){.fi-body-has-topbar .fi-sidebar-header{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);display:none}}.fi-body-has-topbar .fi-sidebar-header:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-body-has-topbar .fi-sidebar-header:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}:not(.fi-body-has-topbar) .fi-sidebar-header{padding-inline:calc(var(--spacing)*4);--tw-shadow:0 0 #0000;--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);background-color:#0000}:not(.fi-body-has-topbar) .fi-sidebar-header .fi-logo{margin-inline-start:calc(var(--spacing)*3)}.fi-sidebar-nav{row-gap:calc(var(--spacing)*7);padding-inline:calc(var(--spacing)*6);padding-block:calc(var(--spacing)*8);scrollbar-gutter:stable;flex-direction:column;flex-grow:1;display:flex;overflow:hidden auto}.fi-sidebar-nav-groups{margin-inline:calc(var(--spacing)*-2);row-gap:calc(var(--spacing)*7);flex-direction:column;display:flex}.fi-sidebar-item.fi-active,.fi-sidebar-item.fi-sidebar-item-has-active-child-items{row-gap:calc(var(--spacing)*1);flex-direction:column;display:flex}.fi-sidebar-item.fi-active>.fi-sidebar-item-btn{background-color:var(--gray-100)}.fi-sidebar-item.fi-active>.fi-sidebar-item-btn:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-sidebar-item.fi-active>.fi-sidebar-item-btn:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-sidebar-item.fi-active>.fi-sidebar-item-btn>.fi-icon{color:var(--primary-700)}.fi-sidebar-item.fi-active>.fi-sidebar-item-btn>.fi-icon:where(.dark,.dark *){color:var(--primary-400)}.fi-sidebar-item.fi-active>.fi-sidebar-item-btn>.fi-sidebar-item-grouped-border>.fi-sidebar-item-grouped-border-part{background-color:var(--primary-700)}.fi-sidebar-item.fi-active>.fi-sidebar-item-btn>.fi-sidebar-item-grouped-border>.fi-sidebar-item-grouped-border-part:where(.dark,.dark *){background-color:var(--primary-400)}.fi-sidebar-item.fi-active>.fi-sidebar-item-btn>.fi-sidebar-item-label{color:var(--primary-700)}.fi-sidebar-item.fi-active>.fi-sidebar-item-btn>.fi-sidebar-item-label:where(.dark,.dark *){color:var(--primary-400)}.fi-sidebar-item.fi-active>.fi-sidebar-item-btn .fi-sidebar-item-grouped-border-part{height:calc(var(--spacing)*1.5);width:calc(var(--spacing)*1.5);border-radius:3.40282e38px;position:relative}@media (hover:hover){.fi-sidebar-item.fi-sidebar-item-has-url>.fi-sidebar-item-btn:hover{background-color:var(--gray-100)}}.fi-sidebar-item.fi-sidebar-item-has-url>.fi-sidebar-item-btn:focus-visible{background-color:var(--gray-100)}@media (hover:hover){.fi-sidebar-item.fi-sidebar-item-has-url>.fi-sidebar-item-btn:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-sidebar-item.fi-sidebar-item-has-url>.fi-sidebar-item-btn:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-sidebar-item.fi-sidebar-item-has-url>.fi-sidebar-item-btn:where(.dark,.dark *):focus-visible{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-sidebar-item.fi-sidebar-item-has-url>.fi-sidebar-item-btn:where(.dark,.dark *):focus-visible{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-sidebar-item-btn{justify-content:center;align-items:center;column-gap:calc(var(--spacing)*3);border-radius:var(--radius-lg);padding:calc(var(--spacing)*2);--tw-outline-style:none;outline-style:none;display:flex;position:relative}@media (forced-colors:active){.fi-sidebar-item-btn{outline-offset:2px;outline:2px solid #0000}}.fi-sidebar-item-btn{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}.fi-sidebar-item-btn>.fi-icon{color:var(--gray-400)}.fi-sidebar-item-btn>.fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-sidebar-item-grouped-border{width:calc(var(--spacing)*6);height:calc(var(--spacing)*6);justify-content:center;align-items:center;display:flex;position:relative}.fi-sidebar-item-grouped-border-part-not-first{background-color:var(--gray-300);width:1px;position:absolute;top:-50%;bottom:50%}.fi-sidebar-item-grouped-border-part-not-first:where(.dark,.dark *){background-color:var(--gray-600)}.fi-sidebar-item-grouped-border-part-not-last{background-color:var(--gray-300);width:1px;position:absolute;top:50%;bottom:-50%}.fi-sidebar-item-grouped-border-part-not-last:where(.dark,.dark *){background-color:var(--gray-600)}.fi-sidebar-item-grouped-border-part{height:calc(var(--spacing)*1.5);width:calc(var(--spacing)*1.5);background-color:var(--gray-400);border-radius:3.40282e38px;position:relative}.fi-sidebar-item-grouped-border-part:where(.dark,.dark *){background-color:var(--gray-500)}.fi-sidebar-item-label{text-overflow:ellipsis;white-space:nowrap;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-700);flex:1;overflow:hidden}.fi-sidebar-item-label:where(.dark,.dark *){color:var(--gray-200)}@media (min-width:64rem){:is(.fi-sidebar-item-label,.fi-sidebar-item-badge-ctn).fi-transition-enter{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));transition-delay:.1s}}:is(.fi-sidebar-item-label,.fi-sidebar-item-badge-ctn).fi-transition-enter-start{opacity:0}:is(.fi-sidebar-item-label,.fi-sidebar-item-badge-ctn).fi-transition-enter-end{opacity:1}.fi-sidebar-footer{margin-inline:calc(var(--spacing)*4);margin-block:calc(var(--spacing)*3);row-gap:calc(var(--spacing)*3);display:grid}.fi-sidebar-footer>.fi-no-database{display:block}.fi-sidebar-sub-group-items{row-gap:calc(var(--spacing)*1);flex-direction:column;display:flex}.fi-sidebar-database-notifications-btn{justify-content:center;align-items:center;column-gap:calc(var(--spacing)*3);border-radius:var(--radius-lg);width:100%;padding:calc(var(--spacing)*2);text-align:start;--tw-outline-style:none;outline-style:none;display:flex;position:relative}@media (forced-colors:active){.fi-sidebar-database-notifications-btn{outline-offset:2px;outline:2px solid #0000}}.fi-sidebar-database-notifications-btn{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}@media (hover:hover){.fi-sidebar-database-notifications-btn:hover{background-color:var(--gray-100)}}.fi-sidebar-database-notifications-btn:focus-visible{background-color:var(--gray-100)}@media (hover:hover){.fi-sidebar-database-notifications-btn:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-sidebar-database-notifications-btn:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-sidebar-database-notifications-btn:where(.dark,.dark *):focus-visible{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-sidebar-database-notifications-btn:where(.dark,.dark *):focus-visible{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-sidebar-database-notifications-btn>.fi-icon{color:var(--gray-400)}.fi-sidebar-database-notifications-btn>.fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-sidebar-database-notifications-btn>.fi-sidebar-database-notifications-btn-label{text-overflow:ellipsis;white-space:nowrap;font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-700);flex:1;overflow:hidden}.fi-sidebar-database-notifications-btn>.fi-sidebar-database-notifications-btn-label:where(.dark,.dark *){color:var(--gray-200)}@media (min-width:64rem){:is(.fi-sidebar-database-notifications-btn>.fi-sidebar-database-notifications-btn-label,.fi-sidebar-database-notifications-btn>.fi-sidebar-database-notifications-btn-badge-ctn).fi-transition-enter{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));transition-delay:.1s}}:is(.fi-sidebar-database-notifications-btn>.fi-sidebar-database-notifications-btn-label,.fi-sidebar-database-notifications-btn>.fi-sidebar-database-notifications-btn-badge-ctn).fi-transition-enter-start{opacity:0}:is(.fi-sidebar-database-notifications-btn>.fi-sidebar-database-notifications-btn-label,.fi-sidebar-database-notifications-btn>.fi-sidebar-database-notifications-btn-badge-ctn).fi-transition-enter-end{opacity:1}.fi-sidebar-open-sidebar-btn,.fi-sidebar-open-collapse-sidebar-btn{margin-inline:calc(var(--spacing)*0)!important}.fi-sidebar-close-collapse-sidebar-btn{display:none;margin-inline:calc(var(--spacing)*0)!important}@media (min-width:64rem){.fi-sidebar-close-collapse-sidebar-btn{display:flex}:is(.fi-body.fi-body-has-sidebar-collapsible-on-desktop,.fi-body:not(.fi-body-has-sidebar-fully-collapsible-on-desktop)) .fi-sidebar-open-sidebar-btn{display:none}}.fi-sidebar-close-sidebar-btn{margin-inline:calc(var(--spacing)*0)!important}@media (min-width:64rem){.fi-sidebar-close-sidebar-btn{display:none}}.fi-tenant-menu-trigger{justify-content:center;align-items:center;column-gap:calc(var(--spacing)*3);border-radius:var(--radius-lg);width:100%;padding:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);--tw-outline-style:none;outline-style:none;display:flex}@media (forced-colors:active){.fi-tenant-menu-trigger{outline-offset:2px;outline:2px solid #0000}}.fi-tenant-menu-trigger{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}@media (hover:hover){.fi-tenant-menu-trigger:hover{background-color:var(--gray-100)}}.fi-tenant-menu-trigger:focus-visible{background-color:var(--gray-100)}@media (hover:hover){.fi-tenant-menu-trigger:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-tenant-menu-trigger:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-tenant-menu-trigger:where(.dark,.dark *):focus-visible{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-tenant-menu-trigger:where(.dark,.dark *):focus-visible{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-tenant-menu-trigger .fi-tenant-avatar{flex-shrink:0}.fi-tenant-menu-trigger .fi-icon{width:calc(var(--spacing)*5);height:calc(var(--spacing)*5);color:var(--gray-400);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;flex-shrink:0;margin-inline-start:auto;transition-duration:75ms}@media (hover:hover){.fi-tenant-menu-trigger .fi-icon:is(:where(.group):hover *){color:var(--gray-500)}}.fi-tenant-menu-trigger .fi-icon:is(:where(.group):focus-visible *),.fi-tenant-menu-trigger .fi-icon:where(.dark,.dark *){color:var(--gray-500)}@media (hover:hover){.fi-tenant-menu-trigger .fi-icon:where(.dark,.dark *):is(:where(.group):hover *){color:var(--gray-400)}}.fi-tenant-menu-trigger .fi-icon:where(.dark,.dark *):is(:where(.group):focus-visible *){color:var(--gray-400)}.fi-tenant-menu-trigger:hover .fi-icon{color:var(--gray-500)}.fi-tenant-menu-trigger:hover .fi-icon:where(.dark,.dark *){color:var(--gray-400)}.fi-tenant-menu-trigger:focus-visible .fi-icon{color:var(--gray-500)}.fi-tenant-menu-trigger:focus-visible .fi-icon:where(.dark,.dark *){color:var(--gray-400)}.fi-tenant-menu-trigger-text{text-align:start;justify-items:start;display:grid}.fi-tenant-menu-trigger-current-tenant-label{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height));color:var(--gray-500)}.fi-tenant-menu-trigger-current-tenant-label:where(.dark,.dark *){color:var(--gray-400)}.fi-tenant-menu-trigger-tenant-name{color:var(--gray-950)}.fi-tenant-menu-trigger-tenant-name:where(.dark,.dark *){color:var(--color-white)}.fi-sidebar .fi-tenant-menu{margin-inline:calc(var(--spacing)*4);margin-top:calc(var(--spacing)*3)}.fi-theme-switcher{column-gap:calc(var(--spacing)*1);grid-auto-flow:column;display:grid}.fi-theme-switcher-btn{border-radius:var(--radius-md);padding:calc(var(--spacing)*2);--tw-outline-style:none;outline-style:none;justify-content:center;display:flex}@media (forced-colors:active){.fi-theme-switcher-btn{outline-offset:2px;outline:2px solid #0000}}.fi-theme-switcher-btn{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}@media (hover:hover){.fi-theme-switcher-btn:hover{background-color:var(--gray-50)}}.fi-theme-switcher-btn:focus-visible{background-color:var(--gray-50)}@media (hover:hover){.fi-theme-switcher-btn:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-theme-switcher-btn:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-theme-switcher-btn:where(.dark,.dark *):focus-visible{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-theme-switcher-btn:where(.dark,.dark *):focus-visible{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-theme-switcher-btn.fi-active{background-color:var(--gray-50);color:var(--primary-500)}.fi-theme-switcher-btn.fi-active:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-theme-switcher-btn.fi-active:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-theme-switcher-btn.fi-active:where(.dark,.dark *){color:var(--primary-400)}.fi-theme-switcher-btn:not(.fi-active){color:var(--gray-400)}@media (hover:hover){.fi-theme-switcher-btn:not(.fi-active):hover{color:var(--gray-500)}}.fi-theme-switcher-btn:not(.fi-active):focus-visible,.fi-theme-switcher-btn:not(.fi-active):where(.dark,.dark *){color:var(--gray-500)}@media (hover:hover){.fi-theme-switcher-btn:not(.fi-active):where(.dark,.dark *):hover{color:var(--gray-400)}}.fi-theme-switcher-btn:not(.fi-active):where(.dark,.dark *):focus-visible{color:var(--gray-400)}.fi-topbar-ctn{top:calc(var(--spacing)*0);z-index:30;position:sticky;overflow-x:clip}.fi-topbar{min-height:calc(var(--spacing)*16);background-color:var(--color-white);padding-inline:calc(var(--spacing)*4);--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:color-mix(in oklab,var(--gray-950)5%,transparent);align-items:center;display:flex}.fi-topbar:where(.dark,.dark *){background-color:var(--gray-900);--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.fi-topbar:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-topbar .fi-tenant-menu{display:none}@media (min-width:64rem){.fi-topbar .fi-tenant-menu{display:block}}.fi-topbar-open-sidebar-btn,.fi-topbar-close-sidebar-btn{margin-inline:calc(var(--spacing)*0)!important}@media (min-width:64rem){.fi-topbar-close-sidebar-btn{display:none}}.fi-topbar-open-collapse-sidebar-btn{margin-inline:calc(var(--spacing)*0)!important}.fi-topbar-close-collapse-sidebar-btn{display:none;margin-inline:calc(var(--spacing)*0)!important}@media (min-width:64rem){.fi-topbar-close-collapse-sidebar-btn{display:flex}}.fi-topbar-start{align-items:center;margin-inline-end:calc(var(--spacing)*6);display:none}@media (min-width:64rem){.fi-topbar-start{display:flex}}.fi-topbar-start .fi-logo{margin-inline-start:calc(var(--spacing)*3)}.fi-topbar-collapse-sidebar-btn-ctn{width:calc(var(--spacing)*9);flex-shrink:0}@media (min-width:64rem){:is(.fi-body.fi-body-has-sidebar-collapsible-on-desktop,.fi-body:not(.fi-body-has-sidebar-fully-collapsible-on-desktop)) .fi-topbar-open-sidebar-btn{display:none}}.fi-topbar-nav-groups{align-items:center;column-gap:calc(var(--spacing)*4);margin-inline-start:calc(var(--spacing)*4);margin-inline-end:calc(var(--spacing)*4);display:none}@media (min-width:64rem){.fi-topbar-nav-groups{margin-block:calc(var(--spacing)*2);row-gap:calc(var(--spacing)*1);flex-wrap:wrap;display:flex}}.fi-topbar-end{align-items:center;column-gap:calc(var(--spacing)*4);margin-inline-start:auto;display:flex}.fi-topbar-item-btn{justify-content:center;align-items:center;column-gap:calc(var(--spacing)*2);border-radius:var(--radius-lg);padding-inline:calc(var(--spacing)*3);padding-block:calc(var(--spacing)*2);--tw-outline-style:none;outline-style:none;display:flex}@media (forced-colors:active){.fi-topbar-item-btn{outline-offset:2px;outline:2px solid #0000}}.fi-topbar-item-btn{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}@media (hover:hover){.fi-topbar-item-btn:hover{background-color:var(--gray-50)}}.fi-topbar-item-btn:focus-visible{background-color:var(--gray-50)}@media (hover:hover){.fi-topbar-item-btn:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-topbar-item-btn:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}}.fi-topbar-item-btn:where(.dark,.dark *):focus-visible{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-topbar-item-btn:where(.dark,.dark *):focus-visible{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-topbar-item-btn>.fi-icon{color:var(--gray-400)}.fi-topbar-item-btn>.fi-icon:where(.dark,.dark *){color:var(--gray-500)}.fi-topbar-item-label{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--gray-700)}.fi-topbar-item-label:where(.dark,.dark *){color:var(--gray-200)}.fi-topbar-item.fi-active .fi-topbar-item-btn{background-color:var(--gray-50)}.fi-topbar-item.fi-active .fi-topbar-item-btn:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.fi-topbar-item.fi-active .fi-topbar-item-btn:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.fi-topbar-item.fi-active .fi-topbar-item-btn>.fi-icon{color:var(--primary-600)}.fi-topbar-item.fi-active .fi-topbar-item-btn>.fi-icon:where(.dark,.dark *){color:var(--primary-400)}.fi-topbar-item.fi-active .fi-topbar-item-label{color:var(--primary-600)}.fi-topbar-item.fi-active .fi-topbar-item-label:where(.dark,.dark *){color:var(--primary-400)}.fi-simple-user-menu-ctn{align-items:center;column-gap:calc(var(--spacing)*4);display:flex}.fi-topbar .fi-user-menu-trigger{flex-shrink:0}.fi-sidebar .fi-user-menu-trigger{justify-content:center;align-items:center;column-gap:calc(var(--spacing)*3);border-radius:var(--radius-lg);width:100%;padding:calc(var(--spacing)*2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);--tw-outline-style:none;outline-style:none;display:flex}@media (forced-colors:active){.fi-sidebar .fi-user-menu-trigger{outline-offset:2px;outline:2px solid #0000}}.fi-sidebar .fi-user-menu-trigger{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;transition-duration:75ms}.fi-sidebar .fi-user-menu-trigger .fi-user-avatar{flex-shrink:0}.fi-sidebar .fi-user-menu-trigger .fi-icon{width:calc(var(--spacing)*5);height:calc(var(--spacing)*5);color:var(--gray-400);transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:75ms;flex-shrink:0;margin-inline-start:auto;transition-duration:75ms}@media (hover:hover){.fi-sidebar .fi-user-menu-trigger .fi-icon:is(:where(.group):hover *){color:var(--gray-500)}}.fi-sidebar .fi-user-menu-trigger .fi-icon:is(:where(.group):focus-visible *),.fi-sidebar .fi-user-menu-trigger .fi-icon:where(.dark,.dark *){color:var(--gray-500)}@media (hover:hover){.fi-sidebar .fi-user-menu-trigger .fi-icon:where(.dark,.dark *):is(:where(.group):hover *){color:var(--gray-400)}}.fi-sidebar .fi-user-menu-trigger .fi-icon:where(.dark,.dark *):is(:where(.group):focus-visible *){color:var(--gray-400)}.fi-sidebar .fi-user-menu-trigger:hover .fi-icon{color:var(--gray-500)}.fi-sidebar .fi-user-menu-trigger:hover .fi-icon:where(.dark,.dark *){color:var(--gray-400)}.fi-sidebar .fi-user-menu-trigger:focus-visible .fi-icon{color:var(--gray-500)}.fi-sidebar .fi-user-menu-trigger:focus-visible .fi-icon:where(.dark,.dark *){color:var(--gray-400)}.fi-sidebar .fi-user-menu-trigger .fi-tenant-menu-trigger-text{text-align:start;color:var(--gray-950);justify-items:start;display:grid}.fi-sidebar .fi-user-menu-trigger .fi-tenant-menu-trigger-text:where(.dark,.dark *){color:var(--color-white)}.fi-sidebar .fi-user-menu .fi-dropdown-panel{max-width:max(14rem,100% - 1.5rem)!important}.fi-account-widget .fi-section-content{align-items:center;column-gap:calc(var(--spacing)*3);display:flex}.fi-account-widget-logout-form{margin-block:auto}.fi-account-widget-main{flex:1}.fi-account-widget-heading{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height));--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--gray-950);flex:1;display:grid}.fi-account-widget-heading:where(.dark,.dark *){color:var(--color-white)}.fi-account-widget-user-name{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--gray-500)}.fi-account-widget-user-name:where(.dark,.dark *){color:var(--gray-400)}.fi-filament-info-widget .fi-section-content{align-items:center;column-gap:calc(var(--spacing)*3);display:flex}.fi-filament-info-widget-main{flex:1}.fi-filament-info-widget-logo{height:calc(var(--spacing)*5);color:var(--gray-950)}.fi-filament-info-widget-logo:where(.dark,.dark *){color:var(--color-white)}.fi-filament-info-widget-version{margin-top:calc(var(--spacing)*2);font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height));color:var(--gray-500)}.fi-filament-info-widget-version:where(.dark,.dark *){color:var(--gray-400)}.fi-filament-info-widget-links{align-items:flex-end;row-gap:calc(var(--spacing)*1);flex-direction:column;display:flex}}@layer utilities{.fi-color-danger{--color-50:var(--danger-50);--color-100:var(--danger-100);--color-200:var(--danger-200);--color-300:var(--danger-300);--color-400:var(--danger-400);--color-500:var(--danger-500);--color-600:var(--danger-600);--color-700:var(--danger-700);--color-800:var(--danger-800);--color-900:var(--danger-900);--color-950:var(--danger-950)}.fi-color-gray{--color-50:var(--gray-50);--color-100:var(--gray-100);--color-200:var(--gray-200);--color-300:var(--gray-300);--color-400:var(--gray-400);--color-500:var(--gray-500);--color-600:var(--gray-600);--color-700:var(--gray-700);--color-800:var(--gray-800);--color-900:var(--gray-900);--color-950:var(--gray-950)}.fi-color-info{--color-50:var(--info-50);--color-100:var(--info-100);--color-200:var(--info-200);--color-300:var(--info-300);--color-400:var(--info-400);--color-500:var(--info-500);--color-600:var(--info-600);--color-700:var(--info-700);--color-800:var(--info-800);--color-900:var(--info-900);--color-950:var(--info-950)}.fi-color-primary{--color-50:var(--primary-50);--color-100:var(--primary-100);--color-200:var(--primary-200);--color-300:var(--primary-300);--color-400:var(--primary-400);--color-500:var(--primary-500);--color-600:var(--primary-600);--color-700:var(--primary-700);--color-800:var(--primary-800);--color-900:var(--primary-900);--color-950:var(--primary-950)}.fi-color-success{--color-50:var(--success-50);--color-100:var(--success-100);--color-200:var(--success-200);--color-300:var(--success-300);--color-400:var(--success-400);--color-500:var(--success-500);--color-600:var(--success-600);--color-700:var(--success-700);--color-800:var(--success-800);--color-900:var(--success-900);--color-950:var(--success-950)}.fi-color-warning{--color-50:var(--warning-50);--color-100:var(--warning-100);--color-200:var(--warning-200);--color-300:var(--warning-300);--color-400:var(--warning-400);--color-500:var(--warning-500);--color-600:var(--warning-600);--color-700:var(--warning-700);--color-800:var(--warning-800);--color-900:var(--warning-900);--color-950:var(--warning-950)}.fi-bg-color-50{--bg:var(--color-50)}.fi-bg-color-100{--bg:var(--color-100)}.fi-bg-color-200{--bg:var(--color-200)}.fi-bg-color-300{--bg:var(--color-300)}.fi-bg-color-400{--bg:var(--color-400)}.fi-bg-color-500{--bg:var(--color-500)}.fi-bg-color-600{--bg:var(--color-600)}.fi-bg-color-700{--bg:var(--color-700)}.fi-bg-color-800{--bg:var(--color-800)}.fi-bg-color-900{--bg:var(--color-900)}.fi-bg-color-950{--bg:var(--color-950)}.hover\:fi-bg-color-50{--hover-bg:var(--color-50)}.hover\:fi-bg-color-100{--hover-bg:var(--color-100)}.hover\:fi-bg-color-200{--hover-bg:var(--color-200)}.hover\:fi-bg-color-300{--hover-bg:var(--color-300)}.hover\:fi-bg-color-400{--hover-bg:var(--color-400)}.hover\:fi-bg-color-500{--hover-bg:var(--color-500)}.hover\:fi-bg-color-600{--hover-bg:var(--color-600)}.hover\:fi-bg-color-700{--hover-bg:var(--color-700)}.hover\:fi-bg-color-800{--hover-bg:var(--color-800)}.hover\:fi-bg-color-900{--hover-bg:var(--color-900)}.hover\:fi-bg-color-950{--hover-bg:var(--color-950)}.dark\:fi-bg-color-50{--dark-bg:var(--color-50)}.dark\:fi-bg-color-100{--dark-bg:var(--color-100)}.dark\:fi-bg-color-200{--dark-bg:var(--color-200)}.dark\:fi-bg-color-300{--dark-bg:var(--color-300)}.dark\:fi-bg-color-400{--dark-bg:var(--color-400)}.dark\:fi-bg-color-500{--dark-bg:var(--color-500)}.dark\:fi-bg-color-600{--dark-bg:var(--color-600)}.dark\:fi-bg-color-700{--dark-bg:var(--color-700)}.dark\:fi-bg-color-800{--dark-bg:var(--color-800)}.dark\:fi-bg-color-900{--dark-bg:var(--color-900)}.dark\:fi-bg-color-950{--dark-bg:var(--color-950)}.dark\:hover\:fi-bg-color-50{--dark-hover-bg:var(--color-50)}.dark\:hover\:fi-bg-color-100{--dark-hover-bg:var(--color-100)}.dark\:hover\:fi-bg-color-200{--dark-hover-bg:var(--color-200)}.dark\:hover\:fi-bg-color-300{--dark-hover-bg:var(--color-300)}.dark\:hover\:fi-bg-color-400{--dark-hover-bg:var(--color-400)}.dark\:hover\:fi-bg-color-500{--dark-hover-bg:var(--color-500)}.dark\:hover\:fi-bg-color-600{--dark-hover-bg:var(--color-600)}.dark\:hover\:fi-bg-color-700{--dark-hover-bg:var(--color-700)}.dark\:hover\:fi-bg-color-800{--dark-hover-bg:var(--color-800)}.dark\:hover\:fi-bg-color-900{--dark-hover-bg:var(--color-900)}.dark\:hover\:fi-bg-color-950{--dark-hover-bg:var(--color-950)}.fi-text-color-0{--text:oklch(100% 0 0)}.fi-text-color-50{--text:var(--color-50)}.fi-text-color-100{--text:var(--color-100)}.fi-text-color-200{--text:var(--color-200)}.fi-text-color-300{--text:var(--color-300)}.fi-text-color-400{--text:var(--color-400)}.fi-text-color-500{--text:var(--color-500)}.fi-text-color-600{--text:var(--color-600)}.fi-text-color-700{--text:var(--color-700)}.fi-text-color-800{--text:var(--color-800)}.fi-text-color-900{--text:var(--color-900)}.fi-text-color-950{--text:var(--color-950)}.hover\:fi-text-color-0{--hover-text:oklch(100% 0 0)}.hover\:fi-text-color-50{--hover-text:var(--color-50)}.hover\:fi-text-color-100{--hover-text:var(--color-100)}.hover\:fi-text-color-200{--hover-text:var(--color-200)}.hover\:fi-text-color-300{--hover-text:var(--color-300)}.hover\:fi-text-color-400{--hover-text:var(--color-400)}.hover\:fi-text-color-500{--hover-text:var(--color-500)}.hover\:fi-text-color-600{--hover-text:var(--color-600)}.hover\:fi-text-color-700{--hover-text:var(--color-700)}.hover\:fi-text-color-800{--hover-text:var(--color-800)}.hover\:fi-text-color-900{--hover-text:var(--color-900)}.hover\:fi-text-color-950{--hover-text:var(--color-950)}.dark\:fi-text-color-0{--dark-text:oklch(100% 0 0)}.dark\:fi-text-color-50{--dark-text:var(--color-50)}.dark\:fi-text-color-100{--dark-text:var(--color-100)}.dark\:fi-text-color-200{--dark-text:var(--color-200)}.dark\:fi-text-color-300{--dark-text:var(--color-300)}.dark\:fi-text-color-400{--dark-text:var(--color-400)}.dark\:fi-text-color-500{--dark-text:var(--color-500)}.dark\:fi-text-color-600{--dark-text:var(--color-600)}.dark\:fi-text-color-700{--dark-text:var(--color-700)}.dark\:fi-text-color-800{--dark-text:var(--color-800)}.dark\:fi-text-color-900{--dark-text:var(--color-900)}.dark\:fi-text-color-950{--dark-text:var(--color-950)}.dark\:hover\:fi-text-color-0{--dark-hover-text:oklch(100% 0 0)}.dark\:hover\:fi-text-color-50{--dark-hover-text:var(--color-50)}.dark\:hover\:fi-text-color-100{--dark-hover-text:var(--color-100)}.dark\:hover\:fi-text-color-200{--dark-hover-text:var(--color-200)}.dark\:hover\:fi-text-color-300{--dark-hover-text:var(--color-300)}.dark\:hover\:fi-text-color-400{--dark-hover-text:var(--color-400)}.dark\:hover\:fi-text-color-500{--dark-hover-text:var(--color-500)}.dark\:hover\:fi-text-color-600{--dark-hover-text:var(--color-600)}.dark\:hover\:fi-text-color-700{--dark-hover-text:var(--color-700)}.dark\:hover\:fi-text-color-800{--dark-hover-text:var(--color-800)}.dark\:hover\:fi-text-color-900{--dark-hover-text:var(--color-900)}.dark\:hover\:fi-text-color-950{--dark-hover-text:var(--color-950)}.fi-sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.fi-prose{--prose-color:var(--color-gray-700);--prose-heading-color:var(--color-gray-950);--prose-strong-color:var(--color-gray-950);--prose-link-color:var(--color-gray-950);--prose-code-color:var(--color-gray-950);--prose-marker-color:var(--color-gray-700)}@supports (color:color-mix(in lab, red, red)){.fi-prose{--prose-marker-color:color-mix(in oklab,var(--color-gray-700)25%,transparent)}}.fi-prose{--prose-link-underline-color:var(--color-primary-400);--prose-th-borders:var(--color-gray-300);--prose-td-borders:var(--color-gray-200);--prose-hr-color:var(--color-gray-950)}@supports (color:color-mix(in lab, red, red)){.fi-prose{--prose-hr-color:color-mix(in oklab,var(--color-gray-950)5%,transparent)}}.fi-prose{--prose-blockquote-border-color:var(--color-gray-300);--prose-pre-bg:var(--color-gray-100)}.fi-prose:where(.dark,.dark *){--prose-color:var(--color-gray-300);--prose-heading-color:var(--color-white);--prose-strong-color:var(--color-white);--prose-link-color:var(--color-white);--prose-code-color:var(--color-white);--prose-marker-color:var(--color-gray-300)}@supports (color:color-mix(in lab, red, red)){.fi-prose:where(.dark,.dark *){--prose-marker-color:color-mix(in oklab,var(--color-gray-300)35%,transparent)}}.fi-prose:where(.dark,.dark *){--prose-link-underline-color:var(--color-sky-400);--prose-th-borders:var(--color-gray-600);--prose-td-borders:var(--color-gray-700);--prose-hr-color:oklab(100% 0 5.96046e-8/.1)}@supports (color:color-mix(in lab, red, red)){.fi-prose:where(.dark,.dark *){--prose-hr-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.fi-prose:where(.dark,.dark *){--prose-blockquote-border-color:var(--color-gray-600);--prose-pre-bg:var(--color-gray-900)}@supports (color:color-mix(in lab, red, red)){.fi-prose:where(.dark,.dark *){--prose-pre-bg:color-mix(in oklab,var(--color-gray-900)40%,transparent)}}.fi-prose{color:var(--prose-color);font-size:var(--text-sm);line-height:1.5}.fi-prose img+img{margin-top:0}.fi-prose :where(:not(.fi-not-prose,.fi-not-prose *,br))+:where(:not(.fi-not-prose,.fi-not-prose *,br)){margin-top:calc(var(--spacing)*4)}.fi-prose p br{margin:0}.fi-prose h1:where(:not(.fi-not-prose,.fi-not-prose *)){font-size:var(--text-xl);letter-spacing:-.025em;color:var(--prose-code-color);line-height:1.55556;font-weight:var(--font-weight-extrabold)}.fi-prose h2:where(:not(.fi-not-prose,.fi-not-prose *)){font-size:var(--text-lg);letter-spacing:-.025em;color:var(--prose-code-color);line-height:1.55556;font-weight:var(--font-weight-bold)}.fi-prose h3:where(:not(.fi-not-prose,.fi-not-prose *)){font-size:var(--text-base);color:var(--prose-heading-color);line-height:1.55556;font-weight:var(--font-weight-bold)}.fi-prose h4:where(:not(.fi-not-prose,.fi-not-prose *)){font-size:var(--text-sm);color:var(--prose-heading-color);line-height:2;font-weight:var(--font-weight-bold)}.fi-prose h5:where(:not(.fi-not-prose,.fi-not-prose *)){font-size:var(--text-sm);color:var(--prose-heading-color);line-height:2;font-weight:var(--font-weight-semibold)}.fi-prose h6:where(:not(.fi-not-prose,.fi-not-prose *)){font-size:var(--text-sm);color:var(--prose-heading-color);line-height:2;font-weight:var(--font-weight-medium)}.fi-prose :is(h2,h3,h4,h5,h6):where(:not(.fi-not-prose,.fi-not-prose *)){scroll-margin-top:calc(var(--spacing)*32)}@media (min-width:64rem){.fi-prose :is(h2,h3,h4,h5,h6):where(:not(.fi-not-prose,.fi-not-prose *)){scroll-margin-top:calc(var(--spacing)*18)}}.fi-prose ol:where(:not(.fi-not-prose,.fi-not-prose *)){padding-inline-start:calc(var(--spacing)*6);list-style-type:decimal}.fi-prose ul:where(:not(.fi-not-prose,.fi-not-prose *)){padding-inline-start:calc(var(--spacing)*6);list-style-type:disc}.fi-prose ol li:where(:not(.fi-not-prose,.fi-not-prose *)),.fi-prose ul li:where(:not(.fi-not-prose,.fi-not-prose *)){padding-inline-start:calc(var(--spacing)*3)}.fi-prose ol li+li:where(:not(.fi-not-prose,.fi-not-prose *)),.fi-prose ul li+li:where(:not(.fi-not-prose,.fi-not-prose *)){margin-top:calc(var(--spacing)*4)}.fi-prose ol li:where(:not(.fi-not-prose,.fi-not-prose *))::marker{color:var(--prose-marker-color)}.fi-prose ul li:where(:not(.fi-not-prose,.fi-not-prose *))::marker{color:var(--prose-marker-color)}.fi-prose a:not(:where(:is(h2,h3,h4,h5,h6) *)):where(:not(.fi-not-prose,.fi-not-prose *)){color:var(--prose-link-color);font-weight:var(--font-weight-semibold);text-underline-offset:3px;text-decoration:underline;-webkit-text-decoration-color:var(--prose-link-underline-color);-webkit-text-decoration-color:var(--prose-link-underline-color);text-decoration-color:var(--prose-link-underline-color);text-decoration-thickness:1px}.fi-prose a:not(:where(:is(h2,h3,h4,h5,h6) *)):where(:not(.fi-not-prose,.fi-not-prose *)) code{font-weight:var(--font-weight-semibold)}.fi-prose a:hover:where(:not(.fi-not-prose,.fi-not-prose *)){text-decoration-thickness:2px}.fi-prose strong:where(:not(.fi-not-prose,.fi-not-prose *)){color:var(--prose-strong-color);font-weight:var(--font-weight-semibold)}.fi-prose code:where(:not(.fi-not-prose,.fi-not-prose *)){font-variant-ligatures:none;font-family:var(--font-mono);font-weight:var(--font-weight-medium);color:var(--prose-code-color)}.fi-prose :where(h2,h3,h4,h5,h6) code:where(:not(.fi-not-prose,.fi-not-prose *)){font-weight:var(--font-weight-semibold)}.fi-prose code:where(:not(.fi-not-prose,.fi-not-prose *)):before,.fi-prose code:where(:not(.fi-not-prose,.fi-not-prose *)):after{content:"`";display:inline}.fi-prose pre:where(:not(.fi-not-prose,.fi-not-prose *)){margin-top:calc(var(--spacing)*4);margin-bottom:calc(var(--spacing)*10);border-radius:var(--radius-lg);padding-top:calc(var(--spacing)*3);padding-inline-end:calc(var(--spacing)*4);padding-bottom:calc(var(--spacing)*3);background-color:var(--prose-pre-bg);padding-inline-start:calc(var(--spacing)*4)}.fi-prose pre code *+:where(:not(.fi-not-prose,.fi-not-prose *)){margin-top:0}.fi-prose pre code:where(:not(.fi-not-prose,.fi-not-prose *)):before,.fi-prose pre code:where(:not(.fi-not-prose,.fi-not-prose *)):after{content:none}.fi-prose pre code:where(:not(.fi-not-prose,.fi-not-prose *)){font-variant-ligatures:none;font-family:var(--font-mono);font-size:var(--text-sm);line-height:2}.fi-prose table:where(:not(.fi-not-prose,.fi-not-prose *)){table-layout:auto;width:100%;font-size:var(--text-sm);margin-top:2em;margin-bottom:2em;line-height:1.4}.fi-prose thead:where(:not(.fi-not-prose,.fi-not-prose *)){border-bottom-width:1px;border-bottom-color:var(--prose-th-borders)}.fi-prose thead th:where(:not(.fi-not-prose,.fi-not-prose *)){color:var(--prose-heading-color);vertical-align:bottom;padding-inline-end:.6em;padding-bottom:.8em;padding-inline-start:.6em;font-weight:600}.fi-prose thead th:first-child:where(:not(.fi-not-prose,.fi-not-prose *)){padding-inline-start:0}.fi-prose thead th:last-child:where(:not(.fi-not-prose,.fi-not-prose *)){padding-inline-end:0}.fi-prose tbody tr:where(:not(.fi-not-prose,.fi-not-prose *)){border-bottom-width:1px;border-bottom-color:var(--prose-td-borders)}.fi-prose tbody tr:last-child:where(:not(.fi-not-prose,.fi-not-prose *)){border-bottom-width:0}.fi-prose tbody td:where(:not(.fi-not-prose,.fi-not-prose *)){vertical-align:baseline}.fi-prose tfoot:where(:not(.fi-not-prose,.fi-not-prose *)){border-top-width:1px;border-top-color:var(--prose-th-borders)}.fi-prose tfoot td:where(:not(.fi-not-prose,.fi-not-prose *)){vertical-align:top}.fi-prose tbody td:where(:not(.fi-not-prose,.fi-not-prose *)),.fi-prose tfoot td:where(:not(.fi-not-prose,.fi-not-prose *)){padding-top:.8em;padding-inline-end:.6em;padding-bottom:.8em;padding-inline-start:.6em}.fi-prose tbody td:first-child:where(:not(.fi-not-prose,.fi-not-prose *)),.fi-prose tfoot td:first-child:where(:not(.fi-not-prose,.fi-not-prose *)){padding-inline-start:0}.fi-prose tbody td:last-child:where(:not(.fi-not-prose,.fi-not-prose *)),.fi-prose tfoot td:last-child:where(:not(.fi-not-prose,.fi-not-prose *)){padding-inline-end:0}.fi-prose th:where(:not(.fi-not-prose,.fi-not-prose *)),.fi-prose td:where(:not(.fi-not-prose,.fi-not-prose *)){text-align:start}.fi-prose td code:where(:not(.fi-not-prose,.fi-not-prose *)){font-size:.8125rem}.fi-prose hr:where(:not(.fi-not-prose,.fi-not-prose *)){border-color:var(--prose-hr-color);margin-block:calc(var(--spacing)*8)}.fi-prose hr:where(:not(.fi-not-prose,.fi-not-prose *))+h2{margin-top:calc(var(--spacing)*8)}.fi-prose blockquote{border-inline-start-width:.25rem;border-inline-start-color:var(--prose-blockquote-border-color);padding-inline-start:calc(var(--spacing)*4);font-style:italic}.fi-prose blockquote p:first-of-type:before{content:open-quote}.fi-prose blockquote p:last-of-type:after{content:close-quote}.fi-prose figure:where(:not(.fi-not-prose,.fi-not-prose *)) figcaption:where(:not(.fi-not-prose,.fi-not-prose *)){margin-top:calc(var(--spacing)*3);text-align:center;font-size:var(--text-sm);line-height:var(--text-sm--line-height);color:var(--prose-color);font-style:italic}@supports (color:color-mix(in lab, red, red)){.fi-prose figure:where(:not(.fi-not-prose,.fi-not-prose *)) figcaption:where(:not(.fi-not-prose,.fi-not-prose *)){color:color-mix(in oklab,var(--prose-color)75%,transparent)}}.fi-prose :first-child:where(:not(.fi-not-prose,.fi-not-prose *)){margin-top:0}.fi-prose :last-child:where(:not(.fi-not-prose,.fi-not-prose *)){margin-bottom:0}.fi-prose .color:where(:not(.fi-not-prose,.fi-not-prose *)){color:var(--color)}.fi-prose .color:where(:not(.fi-not-prose,.fi-not-prose *)):where(.dark,.dark *){color:var(--dark-color)}.fi-prose .lead:where(:not(.fi-not-prose,.fi-not-prose *)){font-size:var(--text-base)}.fi-prose span[data-type=mention]:where(:not(.fi-not-prose,.fi-not-prose *)),.fi-prose a[data-type=mention]:where(:not(.fi-not-prose,.fi-not-prose *)){font-weight:var(--font-weight-semibold);white-space:nowrap;margin-block:0;display:inline-block}.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *)){gap:calc(var(--spacing)*4);grid-template-columns:repeat(1,minmax(0,1fr));display:grid}.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *))[data-from-breakpoint=default]{grid-template-columns:var(--cols)}.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *))[data-from-breakpoint=default]>.grid-layout-col{grid-column:var(--col-span)}@media (min-width:40rem){.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *))[data-from-breakpoint=sm]{grid-template-columns:var(--cols)}.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *))[data-from-breakpoint=sm]>.grid-layout-col{grid-column:var(--col-span)}}@media (min-width:48rem){.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *))[data-from-breakpoint=md]{grid-template-columns:var(--cols)}.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *))[data-from-breakpoint=md]>.grid-layout-col{grid-column:var(--col-span)}}@media (min-width:64rem){.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *))[data-from-breakpoint=lg]{grid-template-columns:var(--cols)}.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *))[data-from-breakpoint=lg]>.grid-layout-col{grid-column:var(--col-span)}}@media (min-width:80rem){.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *))[data-from-breakpoint=xl]{grid-template-columns:var(--cols)}.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *))[data-from-breakpoint=xl]>.grid-layout-col{grid-column:var(--col-span)}}@media (min-width:96rem){.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *))[data-from-breakpoint="2xl"]{grid-template-columns:var(--cols)}.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *))[data-from-breakpoint="2xl"]>.grid-layout-col{grid-column:var(--col-span)}}.fi-prose .grid-layout:where(:not(.fi-not-prose,.fi-not-prose *))>.grid-layout-col{min-width:0;margin-top:0}}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-divide-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-ease{syntax:"*";inherits:false}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-divide-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-content{syntax:"*";inherits:false;initial-value:""}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@keyframes spin{to{transform:rotate(360deg)}}@keyframes pulse{50%{opacity:.5}} \ No newline at end of file diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/public/fonts/filament/filament/inter/index.css b/public/fonts/filament/filament/inter/index.css new file mode 100644 index 0000000..425213e --- /dev/null +++ b/public/fonts/filament/filament/inter/index.css @@ -0,0 +1 @@ +@font-face{font-family:Inter Variable;font-style:normal;font-display:swap;font-weight:100 900;src:url("./inter-cyrillic-ext-wght-normal-IYF56FF6.woff2") format("woff2-variations");unicode-range:U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Inter Variable;font-style:normal;font-display:swap;font-weight:100 900;src:url("./inter-cyrillic-wght-normal-JEOLYBOO.woff2") format("woff2-variations");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Inter Variable;font-style:normal;font-display:swap;font-weight:100 900;src:url("./inter-greek-ext-wght-normal-EOVOK2B5.woff2") format("woff2-variations");unicode-range:U+1F00-1FFF}@font-face{font-family:Inter Variable;font-style:normal;font-display:swap;font-weight:100 900;src:url("./inter-greek-wght-normal-IRE366VL.woff2") format("woff2-variations");unicode-range:U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF}@font-face{font-family:Inter Variable;font-style:normal;font-display:swap;font-weight:100 900;src:url("./inter-vietnamese-wght-normal-CE5GGD3W.woff2") format("woff2-variations");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Inter Variable;font-style:normal;font-display:swap;font-weight:100 900;src:url("./inter-latin-ext-wght-normal-HA22NDSG.woff2") format("woff2-variations");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Inter Variable;font-style:normal;font-display:swap;font-weight:100 900;src:url("./inter-latin-wght-normal-NRMW37G5.woff2") format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD} diff --git a/public/fonts/filament/filament/inter/inter-cyrillic-ext-wght-normal-IYF56FF6.woff2 b/public/fonts/filament/filament/inter/inter-cyrillic-ext-wght-normal-IYF56FF6.woff2 new file mode 100644 index 0000000..de83a9c Binary files /dev/null and b/public/fonts/filament/filament/inter/inter-cyrillic-ext-wght-normal-IYF56FF6.woff2 differ diff --git a/public/fonts/filament/filament/inter/inter-cyrillic-wght-normal-JEOLYBOO.woff2 b/public/fonts/filament/filament/inter/inter-cyrillic-wght-normal-JEOLYBOO.woff2 new file mode 100644 index 0000000..d750914 Binary files /dev/null and b/public/fonts/filament/filament/inter/inter-cyrillic-wght-normal-JEOLYBOO.woff2 differ diff --git a/public/fonts/filament/filament/inter/inter-greek-ext-wght-normal-EOVOK2B5.woff2 b/public/fonts/filament/filament/inter/inter-greek-ext-wght-normal-EOVOK2B5.woff2 new file mode 100644 index 0000000..6e7141f Binary files /dev/null and b/public/fonts/filament/filament/inter/inter-greek-ext-wght-normal-EOVOK2B5.woff2 differ diff --git a/public/fonts/filament/filament/inter/inter-greek-wght-normal-IRE366VL.woff2 b/public/fonts/filament/filament/inter/inter-greek-wght-normal-IRE366VL.woff2 new file mode 100644 index 0000000..024f077 Binary files /dev/null and b/public/fonts/filament/filament/inter/inter-greek-wght-normal-IRE366VL.woff2 differ diff --git a/public/fonts/filament/filament/inter/inter-latin-ext-wght-normal-HA22NDSG.woff2 b/public/fonts/filament/filament/inter/inter-latin-ext-wght-normal-HA22NDSG.woff2 new file mode 100644 index 0000000..479d010 Binary files /dev/null and b/public/fonts/filament/filament/inter/inter-latin-ext-wght-normal-HA22NDSG.woff2 differ diff --git a/public/fonts/filament/filament/inter/inter-latin-wght-normal-NRMW37G5.woff2 b/public/fonts/filament/filament/inter/inter-latin-wght-normal-NRMW37G5.woff2 new file mode 100644 index 0000000..d15208d Binary files /dev/null and b/public/fonts/filament/filament/inter/inter-latin-wght-normal-NRMW37G5.woff2 differ diff --git a/public/fonts/filament/filament/inter/inter-vietnamese-wght-normal-CE5GGD3W.woff2 b/public/fonts/filament/filament/inter/inter-vietnamese-wght-normal-CE5GGD3W.woff2 new file mode 100644 index 0000000..a40c469 Binary files /dev/null and b/public/fonts/filament/filament/inter/inter-vietnamese-wght-normal-CE5GGD3W.woff2 differ diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..ee8f07e --- /dev/null +++ b/public/index.php @@ -0,0 +1,20 @@ +handleRequest(Request::capture()); diff --git a/public/js/eduardoribeirodev/filament-leaflet/leaflet-map.js b/public/js/eduardoribeirodev/filament-leaflet/leaflet-map.js new file mode 100644 index 0000000..5f2a8c7 --- /dev/null +++ b/public/js/eduardoribeirodev/filament-leaflet/leaflet-map.js @@ -0,0 +1,72 @@ +(function(j){typeof define=="function"&&define.amd?define(j):j()})((function(){"use strict";var commonjsGlobal=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function getDefaultExportFromCjs(j){return j&&j.__esModule&&Object.prototype.hasOwnProperty.call(j,"default")?j.default:j}var leafletSrc$1={exports:{}};var leafletSrc=leafletSrc$1.exports,hasRequiredLeafletSrc;function requireLeafletSrc(){return hasRequiredLeafletSrc||(hasRequiredLeafletSrc=1,(function(j,H){(function(G,X){X(H)})(leafletSrc,(function(G){var X="1.9.4";function tt(_){var M,S,D,z;for(S=1,D=arguments.length;S"u"||!L||!L.Mixin)){_=ie(_)?_:[_];for(var M=0;M<_.length;M++)_[M]===L.Mixin.Events&&console.warn("Deprecated include of L.Mixin.Events: this property will be removed in future releases, please inherit from L.Evented instead.",new Error().stack)}}var Te={on:function(_,M,S){if(typeof _=="object")for(var D in _)this._on(D,_[D],M);else{_=Dt(_);for(var z=0,V=_.length;z0?Math.floor(_):Math.ceil(_)};Gt.prototype={clone:function(){return new Gt(this.x,this.y)},add:function(_){return this.clone()._add(zt(_))},_add:function(_){return this.x+=_.x,this.y+=_.y,this},subtract:function(_){return this.clone()._subtract(zt(_))},_subtract:function(_){return this.x-=_.x,this.y-=_.y,this},divideBy:function(_){return this.clone()._divideBy(_)},_divideBy:function(_){return this.x/=_,this.y/=_,this},multiplyBy:function(_){return this.clone()._multiplyBy(_)},_multiplyBy:function(_){return this.x*=_,this.y*=_,this},scaleBy:function(_){return new Gt(this.x*_.x,this.y*_.y)},unscaleBy:function(_){return new Gt(this.x/_.x,this.y/_.y)},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},floor:function(){return this.clone()._floor()},_floor:function(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this},ceil:function(){return this.clone()._ceil()},_ceil:function(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this},trunc:function(){return this.clone()._trunc()},_trunc:function(){return this.x=In(this.x),this.y=In(this.y),this},distanceTo:function(_){_=zt(_);var M=_.x-this.x,S=_.y-this.y;return Math.sqrt(M*M+S*S)},equals:function(_){return _=zt(_),_.x===this.x&&_.y===this.y},contains:function(_){return _=zt(_),Math.abs(_.x)<=Math.abs(this.x)&&Math.abs(_.y)<=Math.abs(this.y)},toString:function(){return"Point("+Ct(this.x)+", "+Ct(this.y)+")"}};function zt(_,M,S){return _ instanceof Gt?_:ie(_)?new Gt(_[0],_[1]):_==null?_:typeof _=="object"&&"x"in _&&"y"in _?new Gt(_.x,_.y):new Gt(_,M,S)}function ne(_,M){if(_)for(var S=M?[_,M]:_,D=0,z=S.length;D=this.min.x&&S.x<=this.max.x&&M.y>=this.min.y&&S.y<=this.max.y},intersects:function(_){_=we(_);var M=this.min,S=this.max,D=_.min,z=_.max,V=z.x>=M.x&&D.x<=S.x,nt=z.y>=M.y&&D.y<=S.y;return V&&nt},overlaps:function(_){_=we(_);var M=this.min,S=this.max,D=_.min,z=_.max,V=z.x>M.x&&D.xM.y&&D.y=M.lat&&z.lat<=S.lat&&D.lng>=M.lng&&z.lng<=S.lng},intersects:function(_){_=le(_);var M=this._southWest,S=this._northEast,D=_.getSouthWest(),z=_.getNorthEast(),V=z.lat>=M.lat&&D.lat<=S.lat,nt=z.lng>=M.lng&&D.lng<=S.lng;return V&&nt},overlaps:function(_){_=le(_);var M=this._southWest,S=this._northEast,D=_.getSouthWest(),z=_.getNorthEast(),V=z.lat>M.lat&&D.latM.lng&&D.lng1,ta=(function(){var _=!1;try{var M=Object.defineProperty({},"passive",{get:function(){_=!0}});window.addEventListener("testPassiveEventSupport",pt,M),window.removeEventListener("testPassiveEventSupport",pt,M)}catch{}return _})(),ea=(function(){return!!document.createElement("canvas").getContext})(),Vn=!!(document.createElementNS&&Ar("svg").createSVGRect),Kr=!!Vn&&(function(){var _=document.createElement("div");return _.innerHTML="",(_.firstChild&&_.firstChild.namespaceURI)==="http://www.w3.org/2000/svg"})(),ia=!Vn&&(function(){try{var _=document.createElement("div");_.innerHTML='';var M=_.firstChild;return M.style.behavior="url(#default#VML)",M&&typeof M.adj=="object"}catch{return!1}})(),na=navigator.platform.indexOf("Mac")===0,ra=navigator.platform.indexOf("Linux")===0;function je(_){return navigator.userAgent.toLowerCase().indexOf(_)>=0}var Rt={ie:Ai,ielt9:Dr,edge:Or,webkit:Zn,android:Fr,android23:Rr,androidStock:Ys,opera:jn,chrome:Ir,gecko:zr,safari:Nr,phantom:Un,opera12:Gr,win:Ti,ie3d:Zr,webkit3d:_n,gecko3d:Di,any3d:jr,mobile:Li,mobileWebkit:$s,mobileWebkit3d:Xs,msPointer:Hn,pointer:Ur,touch:Js,touchNative:Hr,mobileOpera:Qs,mobileGecko:Vr,retina:qr,passiveEvents:ta,canvas:ea,svg:Vn,vml:ia,inlineSvg:Kr,mac:na,linux:ra},Wr=Rt.msPointer?"MSPointerDown":"pointerdown",Yr=Rt.msPointer?"MSPointerMove":"pointermove",qn=Rt.msPointer?"MSPointerUp":"pointerup",$r=Rt.msPointer?"MSPointerCancel":"pointercancel",Kn={touchstart:Wr,touchmove:Yr,touchend:qn,touchcancel:$r},Xr={touchstart:la,touchmove:gn,touchend:gn,touchcancel:gn},Oi={},Jr=!1;function sa(_,M,S){return M==="touchstart"&&Wn(),Xr[M]?(S=Xr[M].bind(this,S),_.addEventListener(Kn[M],S,!1),S):(console.warn("wrong event specified:",M),pt)}function aa(_,M,S){if(!Kn[M]){console.warn("wrong event specified:",M);return}_.removeEventListener(Kn[M],S,!1)}function oa(_){Oi[_.pointerId]=_}function ua(_){Oi[_.pointerId]&&(Oi[_.pointerId]=_)}function mn(_){delete Oi[_.pointerId]}function Wn(){Jr||(document.addEventListener(Wr,oa,!0),document.addEventListener(Yr,ua,!0),document.addEventListener(qn,mn,!0),document.addEventListener($r,mn,!0),Jr=!0)}function gn(_,M){if(M.pointerType!==(M.MSPOINTER_TYPE_MOUSE||"mouse")){M.touches=[];for(var S in Oi)M.touches.push(Oi[S]);M.changedTouches=[M],_(M)}}function la(_,M){M.MSPOINTER_TYPE_TOUCH&&M.pointerType===M.MSPOINTER_TYPE_TOUCH&&me(M),gn(_,M)}function ha(_){var M={},S,D;for(D in _)S=_[D],M[D]=S&&S.bind?S.bind(_):S;return _=M,M.type="dblclick",M.detail=2,M.isTrusted=!1,M._simulated=!0,M}var ca=200;function da(_,M){_.addEventListener("dblclick",M);var S=0,D;function z(V){if(V.detail!==1){D=V.detail;return}if(!(V.pointerType==="mouse"||V.sourceCapabilities&&!V.sourceCapabilities.firesTouchEvents)){var nt=ns(V);if(!(nt.some(function(gt){return gt instanceof HTMLLabelElement&>.attributes.for})&&!nt.some(function(gt){return gt instanceof HTMLInputElement||gt instanceof HTMLSelectElement}))){var dt=Date.now();dt-S<=ca?(D++,D===2&&M(ha(V))):D=1,S=dt}}}return _.addEventListener("click",z),{dblclick:M,simDblclick:z}}function pa(_,M){_.removeEventListener("dblclick",M.dblclick),_.removeEventListener("click",M.simDblclick)}var Yn=vn(["transform","webkitTransform","OTransform","MozTransform","msTransform"]),Ji=vn(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),Qr=Ji==="webkitTransition"||Ji==="OTransition"?Ji+"End":"transitionend";function ts(_){return typeof _=="string"?document.getElementById(_):_}function hi(_,M){var S=_.style[M]||_.currentStyle&&_.currentStyle[M];if((!S||S==="auto")&&document.defaultView){var D=document.defaultView.getComputedStyle(_,null);S=D?D[M]:null}return S==="auto"?null:S}function Yt(_,M,S){var D=document.createElement(_);return D.className=M||"",S&&S.appendChild(D),D}function re(_){var M=_.parentNode;M&&M.removeChild(_)}function Qi(_){for(;_.firstChild;)_.removeChild(_.firstChild)}function Fi(_){var M=_.parentNode;M&&M.lastChild!==_&&M.appendChild(_)}function Ri(_){var M=_.parentNode;M&&M.firstChild!==_&&M.insertBefore(_,M.firstChild)}function $n(_,M){if(_.classList!==void 0)return _.classList.contains(M);var S=yn(_);return S.length>0&&new RegExp("(^|\\s)"+M+"(\\s|$)").test(S)}function Ht(_,M){if(_.classList!==void 0)for(var S=Dt(M),D=0,z=S.length;D0?2*window.devicePixelRatio:1;function rs(_){return Rt.edge?_.wheelDeltaY/2:_.deltaY&&_.deltaMode===0?-_.deltaY/ma:_.deltaY&&_.deltaMode===1?-_.deltaY*20:_.deltaY&&_.deltaMode===2?-_.deltaY*60:_.deltaX||_.deltaZ?0:_.wheelDelta?(_.wheelDeltaY||_.wheelDelta)/2:_.detail&&Math.abs(_.detail)<32765?-_.detail*20:_.detail?_.detail/-32765*60:0}function Cn(_,M){var S=M.relatedTarget;if(!S)return!0;try{for(;S&&S!==_;)S=S.parentNode}catch{return!1}return S!==_}var Wt={__proto__:null,on:jt,off:$t,stopPropagation:Ci,disableScrollPropagation:or,disableClickPropagation:rn,preventDefault:me,stop:xi,getPropagationPath:ns,getMousePosition:sn,getWheelDelta:rs,isExternalTarget:Cn,addListener:jt,removeListener:$t},ss=Yi.extend({run:function(_,M,S,D){this.stop(),this._el=_,this._inProgress=!0,this._duration=S||.25,this._easeOutPower=1/Math.max(D||.5,.2),this._startPos=ci(_),this._offset=M.subtract(this._startPos),this._startTime=+new Date,this.fire("start"),this._animate()},stop:function(){this._inProgress&&(this._step(!0),this._complete())},_animate:function(){this._animId=ue(this._animate,this),this._step()},_step:function(_){var M=+new Date-this._startTime,S=this._duration*1e3;Mthis.options.maxZoom)?this.setZoom(_):this},panInsideBounds:function(_,M){this._enforcingBounds=!0;var S=this.getCenter(),D=this._limitCenter(S,this._zoom,le(_));return S.equals(D)||this.panTo(D,M),this._enforcingBounds=!1,this},panInside:function(_,M){M=M||{};var S=zt(M.paddingTopLeft||M.padding||[0,0]),D=zt(M.paddingBottomRight||M.padding||[0,0]),z=this.project(this.getCenter()),V=this.project(_),nt=this.getPixelBounds(),dt=we([nt.min.add(S),nt.max.subtract(D)]),gt=dt.getSize();if(!dt.contains(V)){this._enforcingBounds=!0;var Mt=V.subtract(dt.getCenter()),Tt=dt.extend(V).getSize().subtract(gt);z.x+=Mt.x<0?-Tt.x:Tt.x,z.y+=Mt.y<0?-Tt.y:Tt.y,this.panTo(this.unproject(z),M),this._enforcingBounds=!1}return this},invalidateSize:function(_){if(!this._loaded)return this;_=tt({animate:!1,pan:!0},_===!0?{animate:!0}:_);var M=this.getSize();this._sizeChanged=!0,this._lastCenter=null;var S=this.getSize(),D=M.divideBy(2).round(),z=S.divideBy(2).round(),V=D.subtract(z);return!V.x&&!V.y?this:(_.animate&&_.pan?this.panBy(V):(_.pan&&this._rawPanBy(V),this.fire("move"),_.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(N(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:M,newSize:S}))},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(_){if(_=this._locateOptions=tt({timeout:1e4,watch:!1},_),!("geolocation"in navigator))return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var M=N(this._handleGeolocationResponse,this),S=N(this._handleGeolocationError,this);return _.watch?this._locationWatchId=navigator.geolocation.watchPosition(M,S,_):navigator.geolocation.getCurrentPosition(M,S,_),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(_){if(this._container._leaflet_id){var M=_.code,S=_.message||(M===1?"permission denied":M===2?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:M,message:"Geolocation error: "+S+"."})}},_handleGeolocationResponse:function(_){if(this._container._leaflet_id){var M=_.coords.latitude,S=_.coords.longitude,D=new Qt(M,S),z=D.toBounds(_.coords.accuracy*2),V=this._locateOptions;if(V.setView){var nt=this.getBoundsZoom(z);this.setView(D,V.maxZoom?Math.min(nt,V.maxZoom):nt)}var dt={latlng:D,bounds:z,timestamp:_.timestamp};for(var gt in _.coords)typeof _.coords[gt]=="number"&&(dt[gt]=_.coords[gt]);this.fire("locationfound",dt)}},addHandler:function(_,M){if(!M)return this;var S=this[_]=new M(this);return this._handlers.push(S),this.options[_]&&S.enable(),this},remove:function(){if(this._initEvents(!0),this.options.maxBounds&&this.off("moveend",this._panInsideMaxBounds),this._containerId!==this._container._leaflet_id)throw new Error("Map container is being reused by another instance");try{delete this._container._leaflet_id,delete this._containerId}catch{this._container._leaflet_id=void 0,this._containerId=void 0}this._locationWatchId!==void 0&&this.stopLocate(),this._stop(),re(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._resizeRequest&&(Me(this._resizeRequest),this._resizeRequest=null),this._clearHandlers(),this._loaded&&this.fire("unload");var _;for(_ in this._layers)this._layers[_].remove();for(_ in this._panes)re(this._panes[_]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(_,M){var S="leaflet-pane"+(_?" leaflet-"+_.replace("Pane","")+"-pane":""),D=Yt("div",S,M||this._mapPane);return _&&(this._panes[_]=D),D},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter.clone():this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var _=this.getPixelBounds(),M=this.unproject(_.getBottomLeft()),S=this.unproject(_.getTopRight());return new Ee(M,S)},getMinZoom:function(){return this.options.minZoom===void 0?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return this.options.maxZoom===void 0?this._layersMaxZoom===void 0?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(_,M,S){_=le(_),S=zt(S||[0,0]);var D=this.getZoom()||0,z=this.getMinZoom(),V=this.getMaxZoom(),nt=_.getNorthWest(),dt=_.getSouthEast(),gt=this.getSize().subtract(S),Mt=we(this.project(dt,D),this.project(nt,D)).getSize(),Tt=Rt.any3d?this.options.zoomSnap:1,It=gt.x/Mt.x,Vt=gt.y/Mt.y,Ce=M?Math.max(It,Vt):Math.min(It,Vt);return D=this.getScaleZoom(Ce,D),Tt&&(D=Math.round(D/(Tt/100))*(Tt/100),D=M?Math.ceil(D/Tt)*Tt:Math.floor(D/Tt)*Tt),Math.max(z,Math.min(V,D))},getSize:function(){return(!this._size||this._sizeChanged)&&(this._size=new Gt(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(_,M){var S=this._getTopLeftPoint(_,M);return new ne(S,S.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(_){return this.options.crs.getProjectedBounds(_===void 0?this.getZoom():_)},getPane:function(_){return typeof _=="string"?this._panes[_]:_},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(_,M){var S=this.options.crs;return M=M===void 0?this._zoom:M,S.scale(_)/S.scale(M)},getScaleZoom:function(_,M){var S=this.options.crs;M=M===void 0?this._zoom:M;var D=S.zoom(_*S.scale(M));return isNaN(D)?1/0:D},project:function(_,M){return M=M===void 0?this._zoom:M,this.options.crs.latLngToPoint(Kt(_),M)},unproject:function(_,M){return M=M===void 0?this._zoom:M,this.options.crs.pointToLatLng(zt(_),M)},layerPointToLatLng:function(_){var M=zt(_).add(this.getPixelOrigin());return this.unproject(M)},latLngToLayerPoint:function(_){var M=this.project(Kt(_))._round();return M._subtract(this.getPixelOrigin())},wrapLatLng:function(_){return this.options.crs.wrapLatLng(Kt(_))},wrapLatLngBounds:function(_){return this.options.crs.wrapLatLngBounds(le(_))},distance:function(_,M){return this.options.crs.distance(Kt(_),Kt(M))},containerPointToLayerPoint:function(_){return zt(_).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(_){return zt(_).add(this._getMapPanePos())},containerPointToLatLng:function(_){var M=this.containerPointToLayerPoint(zt(_));return this.layerPointToLatLng(M)},latLngToContainerPoint:function(_){return this.layerPointToContainerPoint(this.latLngToLayerPoint(Kt(_)))},mouseEventToContainerPoint:function(_){return sn(_,this._container)},mouseEventToLayerPoint:function(_){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(_))},mouseEventToLatLng:function(_){return this.layerPointToLatLng(this.mouseEventToLayerPoint(_))},_initContainer:function(_){var M=this._container=ts(_);if(M){if(M._leaflet_id)throw new Error("Map container is already initialized.")}else throw new Error("Map container not found.");jt(M,"scroll",this._onScroll,this),this._containerId=et(M)},_initLayout:function(){var _=this._container;this._fadeAnimated=this.options.fadeAnimation&&Rt.any3d,Ht(_,"leaflet-container"+(Rt.touch?" leaflet-touch":"")+(Rt.retina?" leaflet-retina":"")+(Rt.ielt9?" leaflet-oldie":"")+(Rt.safari?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":""));var M=hi(_,"position");M!=="absolute"&&M!=="relative"&&M!=="fixed"&&M!=="sticky"&&(_.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var _=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),he(this._mapPane,new Gt(0,0)),this.createPane("tilePane"),this.createPane("overlayPane"),this.createPane("shadowPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(Ht(_.markerPane,"leaflet-zoom-hide"),Ht(_.shadowPane,"leaflet-zoom-hide"))},_resetView:function(_,M,S){he(this._mapPane,new Gt(0,0));var D=!this._loaded;this._loaded=!0,M=this._limitZoom(M),this.fire("viewprereset");var z=this._zoom!==M;this._moveStart(z,S)._move(_,M)._moveEnd(z),this.fire("viewreset"),D&&this.fire("load")},_moveStart:function(_,M){return _&&this.fire("zoomstart"),M||this.fire("movestart"),this},_move:function(_,M,S,D){M===void 0&&(M=this._zoom);var z=this._zoom!==M;return this._zoom=M,this._lastCenter=_,this._pixelOrigin=this._getNewPixelOrigin(_),D?S&&S.pinch&&this.fire("zoom",S):((z||S&&S.pinch)&&this.fire("zoom",S),this.fire("move",S)),this},_moveEnd:function(_){return _&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return Me(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(_){he(this._mapPane,this._getMapPanePos().subtract(_))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(_){this._targets={},this._targets[et(this._container)]=this;var M=_?$t:jt;M(this._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress keydown keyup",this._handleDOMEvent,this),this.options.trackResize&&M(window,"resize",this._onResize,this),Rt.any3d&&this.options.transform3DLimit&&(_?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){Me(this._resizeRequest),this._resizeRequest=ue(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var _=this._getMapPanePos();Math.max(Math.abs(_.x),Math.abs(_.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(_,M){for(var S=[],D,z=M==="mouseout"||M==="mouseover",V=_.target||_.srcElement,nt=!1;V;){if(D=this._targets[et(V)],D&&(M==="click"||M==="preclick")&&this._draggableMoved(D)){nt=!0;break}if(D&&D.listens(M,!0)&&(z&&!Cn(V,_)||(S.push(D),z))||V===this._container)break;V=V.parentNode}return!S.length&&!nt&&!z&&this.listens(M,!0)&&(S=[this]),S},_isClickDisabled:function(_){for(;_&&_!==this._container;){if(_._leaflet_disable_click)return!0;_=_.parentNode}},_handleDOMEvent:function(_){var M=_.target||_.srcElement;if(!(!this._loaded||M._leaflet_disable_events||_.type==="click"&&this._isClickDisabled(M))){var S=_.type;S==="mousedown"&&ir(M),this._fireDOMEvent(_,S)}},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(_,M,S){if(_.type==="click"){var D=tt({},_);D.type="preclick",this._fireDOMEvent(D,D.type,S)}var z=this._findEventTargets(_,M);if(S){for(var V=[],nt=0;nt0?Math.round(_-M)/2:Math.max(0,Math.ceil(_))-Math.max(0,Math.floor(M))},_limitZoom:function(_){var M=this.getMinZoom(),S=this.getMaxZoom(),D=Rt.any3d?this.options.zoomSnap:1;return D&&(_=Math.round(_/D)*D),Math.max(M,Math.min(S,_))},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){ae(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(_,M){var S=this._getCenterOffset(_)._trunc();return(M&&M.animate)!==!0&&!this.getSize().contains(S)?!1:(this.panBy(S,M),!0)},_createAnimProxy:function(){var _=this._proxy=Yt("div","leaflet-proxy leaflet-zoom-animated");this._panes.mapPane.appendChild(_),this.on("zoomanim",function(M){var S=Yn,D=this._proxy.style[S];bi(this._proxy,this.project(M.center,M.zoom),this.getZoomScale(M.zoom,1)),D===this._proxy.style[S]&&this._animatingZoom&&this._onZoomTransitionEnd()},this),this.on("load moveend",this._animMoveEnd,this),this._on("unload",this._destroyAnimProxy,this)},_destroyAnimProxy:function(){re(this._proxy),this.off("load moveend",this._animMoveEnd,this),delete this._proxy},_animMoveEnd:function(){var _=this.getCenter(),M=this.getZoom();bi(this._proxy,this.project(_,M),this.getZoomScale(M,1))},_catchTransitionEnd:function(_){this._animatingZoom&&_.propertyName.indexOf("transform")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(_,M,S){if(this._animatingZoom)return!0;if(S=S||{},!this._zoomAnimated||S.animate===!1||this._nothingToAnimate()||Math.abs(M-this._zoom)>this.options.zoomAnimationThreshold)return!1;var D=this.getZoomScale(M),z=this._getCenterOffset(_)._divideBy(1-1/D);return S.animate!==!0&&!this.getSize().contains(z)?!1:(ue(function(){this._moveStart(!0,S.noMoveStart||!1)._animateZoom(_,M,!0)},this),!0)},_animateZoom:function(_,M,S,D){this._mapPane&&(S&&(this._animatingZoom=!0,this._animateToCenter=_,this._animateToZoom=M,Ht(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:_,zoom:M,noUpdate:D}),this._tempFireZoomEvent||(this._tempFireZoomEvent=this._zoom!==this._animateToZoom),this._move(this._animateToCenter,this._animateToZoom,void 0,!0),setTimeout(N(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&ae(this._mapPane,"leaflet-zoom-anim"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom,void 0,!0),this._tempFireZoomEvent&&this.fire("zoom"),delete this._tempFireZoomEvent,this.fire("move"),this._moveEnd(!0))}});function xn(_,M){return new qt(_,M)}var Ue=ii.extend({options:{position:"topright"},initialize:function(_){St(this,_)},getPosition:function(){return this.options.position},setPosition:function(_){var M=this._map;return M&&M.removeControl(this),this.options.position=_,M&&M.addControl(this),this},getContainer:function(){return this._container},addTo:function(_){this.remove(),this._map=_;var M=this._container=this.onAdd(_),S=this.getPosition(),D=_._controlCorners[S];return Ht(M,"leaflet-control"),S.indexOf("bottom")!==-1?D.insertBefore(M,D.firstChild):D.appendChild(M),this._map.on("unload",this.remove,this),this},remove:function(){return this._map?(re(this._container),this.onRemove&&this.onRemove(this._map),this._map.off("unload",this.remove,this),this._map=null,this):this},_refocusOnMap:function(_){this._map&&_&&_.screenX>0&&_.screenY>0&&this._map.getContainer().focus()}}),Ii=function(_){return new Ue(_)};qt.include({addControl:function(_){return _.addTo(this),this},removeControl:function(_){return _.remove(),this},_initControlPos:function(){var _=this._controlCorners={},M="leaflet-",S=this._controlContainer=Yt("div",M+"control-container",this._container);function D(z,V){var nt=M+z+" "+M+V;_[z+V]=Yt("div",nt,S)}D("top","left"),D("top","right"),D("bottom","left"),D("bottom","right")},_clearControlPos:function(){for(var _ in this._controlCorners)re(this._controlCorners[_]);re(this._controlContainer),delete this._controlCorners,delete this._controlContainer}});var as=Ue.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0,hideSingleBase:!1,sortLayers:!1,sortFunction:function(_,M,S,D){return S1,this._baseLayersList.style.display=_?"":"none"),this._separator.style.display=M&&_?"":"none",this},_onLayerChange:function(_){this._handlingClick||this._update();var M=this._getLayer(et(_.target)),S=M.overlay?_.type==="add"?"overlayadd":"overlayremove":_.type==="add"?"baselayerchange":null;S&&this._map.fire(S,M)},_createRadioElement:function(_,M){var S='",D=document.createElement("div");return D.innerHTML=S,D.firstChild},_addItem:function(_){var M=document.createElement("label"),S=this._map.hasLayer(_.layer),D;_.overlay?(D=document.createElement("input"),D.type="checkbox",D.className="leaflet-control-layers-selector",D.defaultChecked=S):D=this._createRadioElement("leaflet-base-layers_"+et(this),S),this._layerControlInputs.push(D),D.layerId=et(_.layer),jt(D,"click",this._onInputClick,this);var z=document.createElement("span");z.innerHTML=" "+_.name;var V=document.createElement("span");M.appendChild(V),V.appendChild(D),V.appendChild(z);var nt=_.overlay?this._overlaysList:this._baseLayersList;return nt.appendChild(M),this._checkDisabledLayers(),M},_onInputClick:function(){if(!this._preventClick){var _=this._layerControlInputs,M,S,D=[],z=[];this._handlingClick=!0;for(var V=_.length-1;V>=0;V--)M=_[V],S=this._getLayer(M.layerId).layer,M.checked?D.push(S):M.checked||z.push(S);for(V=0;V=0;z--)M=_[z],S=this._getLayer(M.layerId).layer,M.disabled=S.options.minZoom!==void 0&&DS.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this},_expandSafely:function(){var _=this._section;this._preventClick=!0,jt(_,"click",me),this.expand();var M=this;setTimeout(function(){$t(_,"click",me),M._preventClick=!1})}}),ur=function(_,M,S){return new as(_,M,S)},zi=Ue.extend({options:{position:"topleft",zoomInText:'',zoomInTitle:"Zoom in",zoomOutText:'',zoomOutTitle:"Zoom out"},onAdd:function(_){var M="leaflet-control-zoom",S=Yt("div",M+" leaflet-bar"),D=this.options;return this._zoomInButton=this._createButton(D.zoomInText,D.zoomInTitle,M+"-in",S,this._zoomIn),this._zoomOutButton=this._createButton(D.zoomOutText,D.zoomOutTitle,M+"-out",S,this._zoomOut),this._updateDisabled(),_.on("zoomend zoomlevelschange",this._updateDisabled,this),S},onRemove:function(_){_.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(_){!this._disabled&&this._map._zoomthis._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(_.shiftKey?3:1))},_createButton:function(_,M,S,D,z){var V=Yt("a",S,D);return V.innerHTML=_,V.href="#",V.title=M,V.setAttribute("role","button"),V.setAttribute("aria-label",M),rn(V),jt(V,"click",xi),jt(V,"click",z,this),jt(V,"click",this._refocusOnMap,this),V},_updateDisabled:function(){var _=this._map,M="leaflet-disabled";ae(this._zoomInButton,M),ae(this._zoomOutButton,M),this._zoomInButton.setAttribute("aria-disabled","false"),this._zoomOutButton.setAttribute("aria-disabled","false"),(this._disabled||_._zoom===_.getMinZoom())&&(Ht(this._zoomOutButton,M),this._zoomOutButton.setAttribute("aria-disabled","true")),(this._disabled||_._zoom===_.getMaxZoom())&&(Ht(this._zoomInButton,M),this._zoomInButton.setAttribute("aria-disabled","true"))}});qt.mergeOptions({zoomControl:!0}),qt.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new zi,this.addControl(this.zoomControl))});var ga=function(_){return new zi(_)},ri=Ue.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(_){var M="leaflet-control-scale",S=Yt("div",M),D=this.options;return this._addScales(D,M+"-line",S),_.on(D.updateWhenIdle?"moveend":"move",this._update,this),_.whenReady(this._update,this),S},onRemove:function(_){_.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(_,M,S){_.metric&&(this._mScale=Yt("div",M,S)),_.imperial&&(this._iScale=Yt("div",M,S))},_update:function(){var _=this._map,M=_.getSize().y/2,S=_.distance(_.containerPointToLatLng([0,M]),_.containerPointToLatLng([this.options.maxWidth,M]));this._updateScales(S)},_updateScales:function(_){this.options.metric&&_&&this._updateMetric(_),this.options.imperial&&_&&this._updateImperial(_)},_updateMetric:function(_){var M=this._getRoundNum(_),S=M<1e3?M+" m":M/1e3+" km";this._updateScale(this._mScale,S,M/_)},_updateImperial:function(_){var M=_*3.2808399,S,D,z;M>5280?(S=M/5280,D=this._getRoundNum(S),this._updateScale(this._iScale,D+" mi",D/S)):(z=this._getRoundNum(M),this._updateScale(this._iScale,z+" ft",z/M))},_updateScale:function(_,M,S){_.style.width=Math.round(this.options.maxWidth*S)+"px",_.innerHTML=M},_getRoundNum:function(_){var M=Math.pow(10,(Math.floor(_)+"").length-1),S=_/M;return S=S>=10?10:S>=5?5:S>=3?3:S>=2?2:1,M*S}}),os=function(_){return new ri(_)},Ni='',lr=Ue.extend({options:{position:"bottomright",prefix:''+(Rt.inlineSvg?Ni+" ":"")+"Leaflet"},initialize:function(_){St(this,_),this._attributions={}},onAdd:function(_){_.attributionControl=this,this._container=Yt("div","leaflet-control-attribution"),rn(this._container);for(var M in _._layers)_._layers[M].getAttribution&&this.addAttribution(_._layers[M].getAttribution());return this._update(),_.on("layeradd",this._addAttribution,this),this._container},onRemove:function(_){_.off("layeradd",this._addAttribution,this)},_addAttribution:function(_){_.layer.getAttribution&&(this.addAttribution(_.layer.getAttribution()),_.layer.once("remove",function(){this.removeAttribution(_.layer.getAttribution())},this))},setPrefix:function(_){return this.options.prefix=_,this._update(),this},addAttribution:function(_){return _?(this._attributions[_]||(this._attributions[_]=0),this._attributions[_]++,this._update(),this):this},removeAttribution:function(_){return _?(this._attributions[_]&&(this._attributions[_]--,this._update()),this):this},_update:function(){if(this._map){var _=[];for(var M in this._attributions)this._attributions[M]&&_.push(M);var S=[];this.options.prefix&&S.push(this.options.prefix),_.length&&S.push(_.join(", ")),this._container.innerHTML=S.join(' ')}}});qt.mergeOptions({attributionControl:!0}),qt.addInitHook(function(){this.options.attributionControl&&new lr().addTo(this)});var ya=function(_){return new lr(_)};Ue.Layers=as,Ue.Zoom=zi,Ue.Scale=ri,Ue.Attribution=lr,Ii.layers=ur,Ii.zoom=ga,Ii.scale=os,Ii.attribution=ya;var Ke=ii.extend({initialize:function(_){this._map=_},enable:function(){return this._enabled?this:(this._enabled=!0,this.addHooks(),this)},disable:function(){return this._enabled?(this._enabled=!1,this.removeHooks(),this):this},enabled:function(){return!!this._enabled}});Ke.addTo=function(_,M){return _.addHandler(M,this),this};var va={Events:Te},us=Rt.touch?"touchstart mousedown":"mousedown",di=Yi.extend({options:{clickTolerance:3},initialize:function(_,M,S,D){St(this,D),this._element=_,this._dragStartTarget=M||_,this._preventOutline=S},enable:function(){this._enabled||(jt(this._dragStartTarget,us,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(di._dragging===this&&this.finishDrag(!0),$t(this._dragStartTarget,us,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(_){if(this._enabled&&(this._moved=!1,!$n(this._element,"leaflet-zoom-anim"))){if(_.touches&&_.touches.length!==1){di._dragging===this&&this.finishDrag();return}if(!(di._dragging||_.shiftKey||_.which!==1&&_.button!==1&&!_.touches)&&(di._dragging=this,this._preventOutline&&ir(this._element),Qn(),tn(),!this._moving)){this.fire("down");var M=_.touches?_.touches[0]:_,S=es(this._element);this._startPoint=new Gt(M.clientX,M.clientY),this._startPos=ci(this._element),this._parentScale=nr(S);var D=_.type==="mousedown";jt(document,D?"mousemove":"touchmove",this._onMove,this),jt(document,D?"mouseup":"touchend touchcancel",this._onUp,this)}}},_onMove:function(_){if(this._enabled){if(_.touches&&_.touches.length>1){this._moved=!0;return}var M=_.touches&&_.touches.length===1?_.touches[0]:_,S=new Gt(M.clientX,M.clientY)._subtract(this._startPoint);!S.x&&!S.y||Math.abs(S.x)+Math.abs(S.y)V&&(nt=dt,V=gt);V>S&&(M[nt]=1,We(_,M,S,D,nt),We(_,M,S,nt,z))}function Gi(_,M){for(var S=[_[0]],D=1,z=0,V=_.length;DM&&(S.push(_[D]),z=D);return zM.max.x&&(S|=2),_.yM.max.y&&(S|=8),S}function Zi(_,M){var S=M.x-_.x,D=M.y-_.y;return S*S+D*D}function ji(_,M,S,D){var z=M.x,V=M.y,nt=S.x-z,dt=S.y-V,gt=nt*nt+dt*dt,Mt;return gt>0&&(Mt=((_.x-z)*nt+(_.y-V)*dt)/gt,Mt>1?(z=S.x,V=S.y):Mt>0&&(z+=nt*Mt,V+=dt*Mt)),nt=_.x-z,dt=_.y-V,D?nt*nt+dt*dt:new Gt(z,V)}function ze(_){return!ie(_[0])||typeof _[0][0]!="object"&&typeof _[0][0]<"u"}function ps(_){return console.warn("Deprecated use of _flat, please use L.LineUtil.isFlat instead."),ze(_)}function fs(_,M){var S,D,z,V,nt,dt,gt,Mt;if(!_||_.length===0)throw new Error("latlngs not passed");ze(_)||(console.warn("latlngs are not flat! Only the first ring will be used"),_=_[0]);var Tt=Kt([0,0]),It=le(_),Vt=It.getNorthWest().distanceTo(It.getSouthWest())*It.getNorthEast().distanceTo(It.getNorthWest());Vt<1700&&(Tt=hr(_));var Ce=_.length,_e=[];for(S=0;SD){gt=(V-D)/z,Mt=[dt.x-gt*(dt.x-nt.x),dt.y-gt*(dt.y-nt.y)];break}var Pe=M.unproject(zt(Mt));return Kt([Pe.lat+Tt.lat,Pe.lng+Tt.lng])}var Mn={__proto__:null,simplify:ds,pointToSegmentDistance:fe,closestPointOnSegment:De,clipSegment:Ie,_getEdgeIntersection:kn,_getBitCode:pi,_sqClosestPointOnSegment:ji,isFlat:ze,_flat:ps,polylineCenter:fs},wn={project:function(_){return new Gt(_.lng,_.lat)},unproject:function(_){return new Qt(_.y,_.x)},bounds:new ne([-180,-90],[180,90])},cr={R:6378137,R_MINOR:6356752314245179e-9,bounds:new ne([-2003750834279e-5,-1549657073972e-5],[2003750834279e-5,1876465623138e-5]),project:function(_){var M=Math.PI/180,S=this.R,D=_.lat*M,z=this.R_MINOR/S,V=Math.sqrt(1-z*z),nt=V*Math.sin(D),dt=Math.tan(Math.PI/4-D/2)/Math.pow((1-nt)/(1+nt),V/2);return D=-S*Math.log(Math.max(dt,1e-10)),new Gt(_.lng*M*S,D)},unproject:function(_){for(var M=180/Math.PI,S=this.R,D=this.R_MINOR/S,z=Math.sqrt(1-D*D),V=Math.exp(-_.y/S),nt=Math.PI/2-2*Math.atan(V),dt=0,gt=.1,Mt;dt<15&&Math.abs(gt)>1e-7;dt++)Mt=z*Math.sin(nt),Mt=Math.pow((1-Mt)/(1+Mt),z/2),gt=Math.PI/2-2*Math.atan(V*Mt)-nt,nt+=gt;return new Qt(nt*M,_.x*M/S)}},_s={__proto__:null,LonLat:wn,Mercator:cr,SphericalMercator:zn},ba=tt({},li,{code:"EPSG:3395",projection:cr,transformation:(function(){var _=.5/(Math.PI*cr.R);return Xi(_,.5,-_,.5)})()}),dr=tt({},li,{code:"EPSG:4326",projection:wn,transformation:Xi(1/180,1,-1/180,.5)}),Ca=tt({},ni,{projection:wn,transformation:Xi(1,0,-1,0),scale:function(_){return Math.pow(2,_)},zoom:function(_){return Math.log(_)/Math.LN2},distance:function(_,M){var S=M.lng-_.lng,D=M.lat-_.lat;return Math.sqrt(S*S+D*D)},infinite:!0});ni.Earth=li,ni.EPSG3395=ba,ni.EPSG3857=Gn,ni.EPSG900913=Sr,ni.EPSG4326=dr,ni.Simple=Ca;var Be=Yi.extend({options:{pane:"overlayPane",attribution:null,bubblingMouseEvents:!0},addTo:function(_){return _.addLayer(this),this},remove:function(){return this.removeFrom(this._map||this._mapToAdd)},removeFrom:function(_){return _&&_.removeLayer(this),this},getPane:function(_){return this._map.getPane(_?this.options[_]||_:this.options.pane)},addInteractiveTarget:function(_){return this._map._targets[et(_)]=this,this},removeInteractiveTarget:function(_){return delete this._map._targets[et(_)],this},getAttribution:function(){return this.options.attribution},_layerAdd:function(_){var M=_.target;if(M.hasLayer(this)){if(this._map=M,this._zoomAnimated=M._zoomAnimated,this.getEvents){var S=this.getEvents();M.on(S,this),this.once("remove",function(){M.off(S,this)},this)}this.onAdd(M),this.fire("add"),M.fire("layeradd",{layer:this})}}});qt.include({addLayer:function(_){if(!_._layerAdd)throw new Error("The provided object is not a Layer.");var M=et(_);return this._layers[M]?this:(this._layers[M]=_,_._mapToAdd=this,_.beforeAdd&&_.beforeAdd(this),this.whenReady(_._layerAdd,_),this)},removeLayer:function(_){var M=et(_);return this._layers[M]?(this._loaded&&_.onRemove(this),delete this._layers[M],this._loaded&&(this.fire("layerremove",{layer:_}),_.fire("remove")),_._map=_._mapToAdd=null,this):this},hasLayer:function(_){return et(_)in this._layers},eachLayer:function(_,M){for(var S in this._layers)_.call(M,this._layers[S]);return this},_addLayers:function(_){_=_?ie(_)?_:[_]:[];for(var M=0,S=_.length;Mthis._layersMaxZoom&&this.setZoom(this._layersMaxZoom),this.options.minZoom===void 0&&this._layersMinZoom&&this.getZoom()=2&&M[0]instanceof Qt&&M[0].equals(M[S-1])&&M.pop(),M},_setLatLngs:function(_){ai.prototype._setLatLngs.call(this,_),ze(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return ze(this._latlngs[0])?this._latlngs[0]:this._latlngs[0][0]},_clipPoints:function(){var _=this._renderer._bounds,M=this.options.weight,S=new Gt(M,M);if(_=new ne(_.min.subtract(S),_.max.add(S)),this._parts=[],!(!this._pxBounds||!this._pxBounds.intersects(_))){if(this.options.noClip){this._parts=this._rings;return}for(var D=0,z=this._rings.length,V;D_.y!=z.y>_.y&&_.x<(z.x-D.x)*(_.y-D.y)/(z.y-D.y)+D.x&&(M=!M);return M||ai.prototype._containsPoint.call(this,_,!0)}});function _r(_,M){return new Le(_,M)}var oi=Ye.extend({initialize:function(_,M){St(this,M),this._layers={},_&&this.addData(_)},addData:function(_){var M=ie(_)?_:_.features,S,D,z;if(M){for(S=0,D=M.length;S0&&z.push(z[0].slice()),z}function Mi(_,M){return _.feature?tt({},_.feature,{geometry:M}):Sn(M)}function Sn(_){return _.type==="Feature"||_.type==="FeatureCollection"?_:{type:"Feature",properties:{},geometry:_}}var gr={toGeoJSON:function(_){return Mi(this,{type:"Point",coordinates:ui(this.getLatLng(),_)})}};Bn.include(gr),Hi.include(gr),Pn.include(gr),ai.include({toGeoJSON:function(_){var M=!ze(this._latlngs),S=ki(this._latlngs,M?1:0,!1,_);return Mi(this,{type:(M?"Multi":"")+"LineString",coordinates:S})}}),Le.include({toGeoJSON:function(_){var M=!ze(this._latlngs),S=M&&!ze(this._latlngs[0]),D=ki(this._latlngs,S?2:M?1:0,!0,_);return M||(D=[D]),Mi(this,{type:(S?"Multi":"")+"Polygon",coordinates:D})}}),si.include({toMultiPoint:function(_){var M=[];return this.eachLayer(function(S){M.push(S.toGeoJSON(_).geometry.coordinates)}),Mi(this,{type:"MultiPoint",coordinates:M})},toGeoJSON:function(_){var M=this.feature&&this.feature.geometry&&this.feature.geometry.type;if(M==="MultiPoint")return this.toMultiPoint(_);var S=M==="GeometryCollection",D=[];return this.eachLayer(function(z){if(z.toGeoJSON){var V=z.toGeoJSON(_);if(S)D.push(V.geometry);else{var nt=Sn(V);nt.type==="FeatureCollection"?D.push.apply(D,nt.features):D.push(nt)}}}),S?Mi(this,{geometries:D,type:"GeometryCollection"}):{type:"FeatureCollection",features:D}}});function vs(_,M){return new oi(_,M)}var wa=vs,Vi=Be.extend({options:{opacity:1,alt:"",interactive:!1,crossOrigin:!1,errorOverlayUrl:"",zIndex:1,className:""},initialize:function(_,M,S){this._url=_,this._bounds=le(M),St(this,S)},onAdd:function(){this._image||(this._initImage(),this.options.opacity<1&&this._updateOpacity()),this.options.interactive&&(Ht(this._image,"leaflet-interactive"),this.addInteractiveTarget(this._image)),this.getPane().appendChild(this._image),this._reset()},onRemove:function(){re(this._image),this.options.interactive&&this.removeInteractiveTarget(this._image)},setOpacity:function(_){return this.options.opacity=_,this._image&&this._updateOpacity(),this},setStyle:function(_){return _.opacity&&this.setOpacity(_.opacity),this},bringToFront:function(){return this._map&&Fi(this._image),this},bringToBack:function(){return this._map&&Ri(this._image),this},setUrl:function(_){return this._url=_,this._image&&(this._image.src=_),this},setBounds:function(_){return this._bounds=le(_),this._map&&this._reset(),this},getEvents:function(){var _={zoom:this._reset,viewreset:this._reset};return this._zoomAnimated&&(_.zoomanim=this._animateZoom),_},setZIndex:function(_){return this.options.zIndex=_,this._updateZIndex(),this},getBounds:function(){return this._bounds},getElement:function(){return this._image},_initImage:function(){var _=this._url.tagName==="IMG",M=this._image=_?this._url:Yt("img");if(Ht(M,"leaflet-image-layer"),this._zoomAnimated&&Ht(M,"leaflet-zoom-animated"),this.options.className&&Ht(M,this.options.className),M.onselectstart=pt,M.onmousemove=pt,M.onload=N(this.fire,this,"load"),M.onerror=N(this._overlayOnError,this,"error"),(this.options.crossOrigin||this.options.crossOrigin==="")&&(M.crossOrigin=this.options.crossOrigin===!0?"":this.options.crossOrigin),this.options.zIndex&&this._updateZIndex(),_){this._url=M.src;return}M.src=this._url,M.alt=this.options.alt},_animateZoom:function(_){var M=this._map.getZoomScale(_.zoom),S=this._map._latLngBoundsToNewLayerBounds(this._bounds,_.zoom,_.center).min;bi(this._image,S,M)},_reset:function(){var _=this._image,M=new ne(this._map.latLngToLayerPoint(this._bounds.getNorthWest()),this._map.latLngToLayerPoint(this._bounds.getSouthEast())),S=M.getSize();he(_,M.min),_.style.width=S.x+"px",_.style.height=S.y+"px"},_updateOpacity:function(){Re(this._image,this.options.opacity)},_updateZIndex:function(){this._image&&this.options.zIndex!==void 0&&this.options.zIndex!==null&&(this._image.style.zIndex=this.options.zIndex)},_overlayOnError:function(){this.fire("error");var _=this.options.errorOverlayUrl;_&&this._url!==_&&(this._url=_,this._image.src=_)},getCenter:function(){return this._bounds.getCenter()}}),Ea=function(_,M,S){return new Vi(_,M,S)},Ls=Vi.extend({options:{autoplay:!0,loop:!0,keepAspectRatio:!0,muted:!1,playsInline:!0},_initImage:function(){var _=this._url.tagName==="VIDEO",M=this._image=_?this._url:Yt("video");if(Ht(M,"leaflet-image-layer"),this._zoomAnimated&&Ht(M,"leaflet-zoom-animated"),this.options.className&&Ht(M,this.options.className),M.onselectstart=pt,M.onmousemove=pt,M.onloadeddata=N(this.fire,this,"load"),_){for(var S=M.getElementsByTagName("source"),D=[],z=0;z0?D:[M.src];return}ie(this._url)||(this._url=[this._url]),!this.options.keepAspectRatio&&Object.prototype.hasOwnProperty.call(M.style,"objectFit")&&(M.style.objectFit="fill"),M.autoplay=!!this.options.autoplay,M.loop=!!this.options.loop,M.muted=!!this.options.muted,M.playsInline=!!this.options.playsInline;for(var V=0;Vz?(M.height=z+"px",Ht(_,V)):ae(_,V),this._containerWidth=this._container.offsetWidth},_animateZoom:function(_){var M=this._map._latLngToNewLayerPoint(this._latlng,_.zoom,_.center),S=this._getAnchor();he(this._container,M.add(S))},_adjustPan:function(){if(this.options.autoPan){if(this._map._panAnim&&this._map._panAnim.stop(),this._autopanning){this._autopanning=!1;return}var _=this._map,M=parseInt(hi(this._container,"marginBottom"),10)||0,S=this._container.offsetHeight+M,D=this._containerWidth,z=new Gt(this._containerLeft,-S-this._containerBottom);z._add(ci(this._container));var V=_.layerPointToContainerPoint(z),nt=zt(this.options.autoPanPadding),dt=zt(this.options.autoPanPaddingTopLeft||nt),gt=zt(this.options.autoPanPaddingBottomRight||nt),Mt=_.getSize(),Tt=0,It=0;V.x+D+gt.x>Mt.x&&(Tt=V.x+D-Mt.x+gt.x),V.x-Tt-dt.x<0&&(Tt=V.x-dt.x),V.y+S+gt.y>Mt.y&&(It=V.y+S-Mt.y+gt.y),V.y-It-dt.y<0&&(It=V.y-dt.y),(Tt||It)&&(this.options.keepInView&&(this._autopanning=!0),_.fire("autopanstart").panBy([Tt,It]))}},_getAnchor:function(){return zt(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}}),Sa=function(_,M){return new ln(_,M)};qt.mergeOptions({closePopupOnClick:!0}),qt.include({openPopup:function(_,M,S){return this._initOverlay(ln,_,M,S).openOn(this),this},closePopup:function(_){return _=arguments.length?_:this._popup,_&&_.close(),this}}),Be.include({bindPopup:function(_,M){return this._popup=this._initOverlay(ln,this._popup,_,M),this._popupHandlersAdded||(this.on({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(_){return this._popup&&(this instanceof Ye||(this._popup._source=this),this._popup._prepareOpen(_||this._latlng)&&this._popup.openOn(this._map)),this},closePopup:function(){return this._popup&&this._popup.close(),this},togglePopup:function(){return this._popup&&this._popup.toggle(this),this},isPopupOpen:function(){return this._popup?this._popup.isOpen():!1},setPopupContent:function(_){return this._popup&&this._popup.setContent(_),this},getPopup:function(){return this._popup},_openPopup:function(_){if(!(!this._popup||!this._map)){xi(_);var M=_.layer||_.target;if(this._popup._source===M&&!(M instanceof Ne)){this._map.hasLayer(this._popup)?this.closePopup():this.openPopup(_.latlng);return}this._popup._source=M,this.openPopup(_.latlng)}},_movePopup:function(_){this._popup.setLatLng(_.latlng)},_onKeyPress:function(_){_.originalEvent.keyCode===13&&this._openPopup(_)}});var An=$e.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,opacity:.9},onAdd:function(_){$e.prototype.onAdd.call(this,_),this.setOpacity(this.options.opacity),_.fire("tooltipopen",{tooltip:this}),this._source&&(this.addEventParent(this._source),this._source.fire("tooltipopen",{tooltip:this},!0))},onRemove:function(_){$e.prototype.onRemove.call(this,_),_.fire("tooltipclose",{tooltip:this}),this._source&&(this.removeEventParent(this._source),this._source.fire("tooltipclose",{tooltip:this},!0))},getEvents:function(){var _=$e.prototype.getEvents.call(this);return this.options.permanent||(_.preclick=this.close),_},_initLayout:function(){var _="leaflet-tooltip",M=_+" "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=Yt("div",M),this._container.setAttribute("role","tooltip"),this._container.setAttribute("id","leaflet-tooltip-"+et(this))},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(_){var M,S,D=this._map,z=this._container,V=D.latLngToContainerPoint(D.getCenter()),nt=D.layerPointToContainerPoint(_),dt=this.options.direction,gt=z.offsetWidth,Mt=z.offsetHeight,Tt=zt(this.options.offset),It=this._getAnchor();dt==="top"?(M=gt/2,S=Mt):dt==="bottom"?(M=gt/2,S=0):dt==="center"?(M=gt/2,S=Mt/2):dt==="right"?(M=0,S=Mt/2):dt==="left"?(M=gt,S=Mt/2):nt.xthis.options.maxZoom||SD?this._retainParent(z,V,nt,D):!1)},_retainChildren:function(_,M,S,D){for(var z=2*_;z<2*_+2;z++)for(var V=2*M;V<2*M+2;V++){var nt=new Gt(z,V);nt.z=S+1;var dt=this._tileCoordsToKey(nt),gt=this._tiles[dt];if(gt&>.active){gt.retain=!0;continue}else gt&>.loaded&&(gt.retain=!0);S+1this.options.maxZoom||this.options.minZoom!==void 0&&z1){this._setView(_,S);return}for(var It=z.min.y;It<=z.max.y;It++)for(var Vt=z.min.x;Vt<=z.max.x;Vt++){var Ce=new Gt(Vt,It);if(Ce.z=this._tileZoom,!!this._isValidTile(Ce)){var _e=this._tiles[this._tileCoordsToKey(Ce)];_e?_e.current=!0:nt.push(Ce)}}if(nt.sort(function(Pe,mi){return Pe.distanceTo(V)-mi.distanceTo(V)}),nt.length!==0){this._loading||(this._loading=!0,this.fire("loading"));var Ze=document.createDocumentFragment();for(Vt=0;VtS.max.x)||!M.wrapLat&&(_.yS.max.y))return!1}if(!this.options.bounds)return!0;var D=this._tileCoordsToBounds(_);return le(this.options.bounds).overlaps(D)},_keyToBounds:function(_){return this._tileCoordsToBounds(this._keyToTileCoords(_))},_tileCoordsToNwSe:function(_){var M=this._map,S=this.getTileSize(),D=_.scaleBy(S),z=D.add(S),V=M.unproject(D,_.z),nt=M.unproject(z,_.z);return[V,nt]},_tileCoordsToBounds:function(_){var M=this._tileCoordsToNwSe(_),S=new Ee(M[0],M[1]);return this.options.noWrap||(S=this._map.wrapLatLngBounds(S)),S},_tileCoordsToKey:function(_){return _.x+":"+_.y+":"+_.z},_keyToTileCoords:function(_){var M=_.split(":"),S=new Gt(+M[0],+M[1]);return S.z=+M[2],S},_removeTile:function(_){var M=this._tiles[_];M&&(re(M.el),delete this._tiles[_],this.fire("tileunload",{tile:M.el,coords:this._keyToTileCoords(_)}))},_initTile:function(_){Ht(_,"leaflet-tile");var M=this.getTileSize();_.style.width=M.x+"px",_.style.height=M.y+"px",_.onselectstart=pt,_.onmousemove=pt,Rt.ielt9&&this.options.opacity<1&&Re(_,this.options.opacity)},_addTile:function(_,M){var S=this._getTilePos(_),D=this._tileCoordsToKey(_),z=this.createTile(this._wrapCoords(_),N(this._tileReady,this,_));this._initTile(z),this.createTile.length<2&&ue(N(this._tileReady,this,_,null,z)),he(z,S),this._tiles[D]={el:z,coords:_,current:!0},M.appendChild(z),this.fire("tileloadstart",{tile:z,coords:_})},_tileReady:function(_,M,S){M&&this.fire("tileerror",{error:M,tile:S,coords:_});var D=this._tileCoordsToKey(_);S=this._tiles[D],S&&(S.loaded=+new Date,this._map._fadeAnimated?(Re(S.el,0),Me(this._fadeFrame),this._fadeFrame=ue(this._updateOpacity,this)):(S.active=!0,this._pruneTiles()),M||(Ht(S.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:S.el,coords:_})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),Rt.ielt9||!this._map._fadeAnimated?ue(this._pruneTiles,this):setTimeout(N(this._pruneTiles,this),250)))},_getTilePos:function(_){return _.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(_){var M=new Gt(this._wrapX?Lt(_.x,this._wrapX):_.x,this._wrapY?Lt(_.y,this._wrapY):_.y);return M.z=_.z,M},_pxBoundsToTileRange:function(_){var M=this.getTileSize();return new ne(_.min.unscaleBy(M).floor(),_.max.unscaleBy(M).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var _ in this._tiles)if(!this._tiles[_].loaded)return!1;return!0}});function bs(_){return new cn(_)}var _i=cn.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1,referrerPolicy:!1},initialize:function(_,M){this._url=_,M=St(this,M),M.detectRetina&&Rt.retina&&M.maxZoom>0?(M.tileSize=Math.floor(M.tileSize/2),M.zoomReverse?(M.zoomOffset--,M.minZoom=Math.min(M.maxZoom,M.minZoom+1)):(M.zoomOffset++,M.maxZoom=Math.max(M.minZoom,M.maxZoom-1)),M.minZoom=Math.max(0,M.minZoom)):M.zoomReverse?M.minZoom=Math.min(M.maxZoom,M.minZoom):M.maxZoom=Math.max(M.minZoom,M.maxZoom),typeof M.subdomains=="string"&&(M.subdomains=M.subdomains.split("")),this.on("tileunload",this._onTileRemove)},setUrl:function(_,M){return this._url===_&&M===void 0&&(M=!0),this._url=_,M||this.redraw(),this},createTile:function(_,M){var S=document.createElement("img");return jt(S,"load",N(this._tileOnLoad,this,M,S)),jt(S,"error",N(this._tileOnError,this,M,S)),(this.options.crossOrigin||this.options.crossOrigin==="")&&(S.crossOrigin=this.options.crossOrigin===!0?"":this.options.crossOrigin),typeof this.options.referrerPolicy=="string"&&(S.referrerPolicy=this.options.referrerPolicy),S.alt="",S.src=this.getTileUrl(_),S},getTileUrl:function(_){var M={r:Rt.retina?"@2x":"",s:this._getSubdomain(_),x:_.x,y:_.y,z:this._getZoomForUrl()};if(this._map&&!this._map.options.crs.infinite){var S=this._globalTileRange.max.y-_.y;this.options.tms&&(M.y=S),M["-y"]=S}return ee(this._url,tt(M,this.options))},_tileOnLoad:function(_,M){Rt.ielt9?setTimeout(N(_,this,null,M),0):_(null,M)},_tileOnError:function(_,M,S){var D=this.options.errorTileUrl;D&&M.getAttribute("src")!==D&&(M.src=D),_(S,M)},_onTileRemove:function(_){_.tile.onload=null},_getZoomForUrl:function(){var _=this._tileZoom,M=this.options.maxZoom,S=this.options.zoomReverse,D=this.options.zoomOffset;return S&&(_=M-_),_+D},_getSubdomain:function(_){var M=Math.abs(_.x+_.y)%this.options.subdomains.length;return this.options.subdomains[M]},_abortLoading:function(){var _,M;for(_ in this._tiles)if(this._tiles[_].coords.z!==this._tileZoom&&(M=this._tiles[_].el,M.onload=pt,M.onerror=pt,!M.complete)){M.src=ke;var S=this._tiles[_].coords;re(M),delete this._tiles[_],this.fire("tileabort",{tile:M,coords:S})}},_removeTile:function(_){var M=this._tiles[_];if(M)return M.el.setAttribute("src",ke),cn.prototype._removeTile.call(this,_)},_tileReady:function(_,M,S){if(!(!this._map||S&&S.getAttribute("src")===ke))return cn.prototype._tileReady.call(this,_,M,S)}});function Cs(_,M){return new _i(_,M)}var xs=_i.extend({defaultWmsParams:{service:"WMS",request:"GetMap",layers:"",styles:"",format:"image/jpeg",transparent:!1,version:"1.1.1"},options:{crs:null,uppercase:!1},initialize:function(_,M){this._url=_;var S=tt({},this.defaultWmsParams);for(var D in M)D in this.options||(S[D]=M[D]);M=St(this,M);var z=M.detectRetina&&Rt.retina?2:1,V=this.getTileSize();S.width=V.x*z,S.height=V.y*z,this.wmsParams=S},onAdd:function(_){this._crs=this.options.crs||_.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var M=this._wmsVersion>=1.3?"crs":"srs";this.wmsParams[M]=this._crs.code,_i.prototype.onAdd.call(this,_)},getTileUrl:function(_){var M=this._tileCoordsToNwSe(_),S=this._crs,D=we(S.project(M[0]),S.project(M[1])),z=D.min,V=D.max,nt=(this._wmsVersion>=1.3&&this._crs===dr?[z.y,z.x,V.y,V.x]:[z.x,z.y,V.x,V.y]).join(","),dt=_i.prototype.getTileUrl.call(this,_);return dt+Jt(this.wmsParams,dt,this.options.uppercase)+(this.options.uppercase?"&BBOX=":"&bbox=")+nt},setParams:function(_,M){return tt(this.wmsParams,_),M||this.redraw(),this}});function ks(_,M){return new xs(_,M)}_i.WMS=xs,Cs.wms=ks;var Xe=Be.extend({options:{padding:.1},initialize:function(_){St(this,_),et(this),this._layers=this._layers||{}},onAdd:function(){this._container||(this._initContainer(),Ht(this._container,"leaflet-zoom-animated")),this.getPane().appendChild(this._container),this._update(),this.on("update",this._updatePaths,this)},onRemove:function(){this.off("update",this._updatePaths,this),this._destroyContainer()},getEvents:function(){var _={viewreset:this._reset,zoom:this._onZoom,moveend:this._update,zoomend:this._onZoomEnd};return this._zoomAnimated&&(_.zoomanim=this._onAnimZoom),_},_onAnimZoom:function(_){this._updateTransform(_.center,_.zoom)},_onZoom:function(){this._updateTransform(this._map.getCenter(),this._map.getZoom())},_updateTransform:function(_,M){var S=this._map.getZoomScale(M,this._zoom),D=this._map.getSize().multiplyBy(.5+this.options.padding),z=this._map.project(this._center,M),V=D.multiplyBy(-S).add(z).subtract(this._map._getNewPixelOrigin(_,M));Rt.any3d?bi(this._container,V,S):he(this._container,V)},_reset:function(){this._update(),this._updateTransform(this._center,this._zoom);for(var _ in this._layers)this._layers[_]._reset()},_onZoomEnd:function(){for(var _ in this._layers)this._layers[_]._project()},_updatePaths:function(){for(var _ in this._layers)this._layers[_]._update()},_update:function(){var _=this.options.padding,M=this._map.getSize(),S=this._map.containerPointToLayerPoint(M.multiplyBy(-_)).round();this._bounds=new ne(S,S.add(M.multiplyBy(1+_*2)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),Tn=Xe.extend({options:{tolerance:0},getEvents:function(){var _=Xe.prototype.getEvents.call(this);return _.viewprereset=this._onViewPreReset,_},_onViewPreReset:function(){this._postponeUpdatePaths=!0},onAdd:function(){Xe.prototype.onAdd.call(this),this._draw()},_initContainer:function(){var _=this._container=document.createElement("canvas");jt(_,"mousemove",this._onMouseMove,this),jt(_,"click dblclick mousedown mouseup contextmenu",this._onClick,this),jt(_,"mouseout",this._handleMouseOut,this),_._leaflet_disable_events=!0,this._ctx=_.getContext("2d")},_destroyContainer:function(){Me(this._redrawRequest),delete this._ctx,re(this._container),$t(this._container),delete this._container},_updatePaths:function(){if(!this._postponeUpdatePaths){var _;this._redrawBounds=null;for(var M in this._layers)_=this._layers[M],_._update();this._redraw()}},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){Xe.prototype._update.call(this);var _=this._bounds,M=this._container,S=_.getSize(),D=Rt.retina?2:1;he(M,_.min),M.width=D*S.x,M.height=D*S.y,M.style.width=S.x+"px",M.style.height=S.y+"px",Rt.retina&&this._ctx.scale(2,2),this._ctx.translate(-_.min.x,-_.min.y),this.fire("update")}},_reset:function(){Xe.prototype._reset.call(this),this._postponeUpdatePaths&&(this._postponeUpdatePaths=!1,this._updatePaths())},_initPath:function(_){this._updateDashArray(_),this._layers[et(_)]=_;var M=_._order={layer:_,prev:this._drawLast,next:null};this._drawLast&&(this._drawLast.next=M),this._drawLast=M,this._drawFirst=this._drawFirst||this._drawLast},_addPath:function(_){this._requestRedraw(_)},_removePath:function(_){var M=_._order,S=M.next,D=M.prev;S?S.prev=D:this._drawLast=D,D?D.next=S:this._drawFirst=S,delete _._order,delete this._layers[et(_)],this._requestRedraw(_)},_updatePath:function(_){this._extendRedrawBounds(_),_._project(),_._update(),this._requestRedraw(_)},_updateStyle:function(_){this._updateDashArray(_),this._requestRedraw(_)},_updateDashArray:function(_){if(typeof _.options.dashArray=="string"){var M=_.options.dashArray.split(/[, ]+/),S=[],D,z;for(z=0;z')}}catch{}return function(_){return document.createElement("<"+_+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}})(),Ta={_initContainer:function(){this._container=Yt("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(Xe.prototype._update.call(this),this.fire("update"))},_initPath:function(_){var M=_._container=wi("shape");Ht(M,"leaflet-vml-shape "+(this.options.className||"")),M.coordsize="1 1",_._path=wi("path"),M.appendChild(_._path),this._updateStyle(_),this._layers[et(_)]=_},_addPath:function(_){var M=_._container;this._container.appendChild(M),_.options.interactive&&_.addInteractiveTarget(M)},_removePath:function(_){var M=_._container;re(M),_.removeInteractiveTarget(M),delete this._layers[et(_)]},_updateStyle:function(_){var M=_._stroke,S=_._fill,D=_.options,z=_._container;z.stroked=!!D.stroke,z.filled=!!D.fill,D.stroke?(M||(M=_._stroke=wi("stroke")),z.appendChild(M),M.weight=D.weight+"px",M.color=D.color,M.opacity=D.opacity,D.dashArray?M.dashStyle=ie(D.dashArray)?D.dashArray.join(" "):D.dashArray.replace(/( *, *)/g," "):M.dashStyle="",M.endcap=D.lineCap.replace("butt","flat"),M.joinstyle=D.lineJoin):M&&(z.removeChild(M),_._stroke=null),D.fill?(S||(S=_._fill=wi("fill")),z.appendChild(S),S.color=D.fillColor||D.color,S.opacity=D.fillOpacity):S&&(z.removeChild(S),_._fill=null)},_updateCircle:function(_){var M=_._point.round(),S=Math.round(_._radius),D=Math.round(_._radiusY||S);this._setPath(_,_._empty()?"M0 0":"AL "+M.x+","+M.y+" "+S+","+D+" 0,"+65535*360)},_setPath:function(_,M){_._path.v=M},_bringToFront:function(_){Fi(_._container)},_bringToBack:function(_){Ri(_._container)}},Ge=Rt.vml?wi:Ar,ce=Xe.extend({_initContainer:function(){this._container=Ge("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=Ge("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){re(this._container),$t(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){Xe.prototype._update.call(this);var _=this._bounds,M=_.getSize(),S=this._container;(!this._svgSize||!this._svgSize.equals(M))&&(this._svgSize=M,S.setAttribute("width",M.x),S.setAttribute("height",M.y)),he(S,_.min),S.setAttribute("viewBox",[_.min.x,_.min.y,M.x,M.y].join(" ")),this.fire("update")}},_initPath:function(_){var M=_._path=Ge("path");_.options.className&&Ht(M,_.options.className),_.options.interactive&&Ht(M,"leaflet-interactive"),this._updateStyle(_),this._layers[et(_)]=_},_addPath:function(_){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(_._path),_.addInteractiveTarget(_._path)},_removePath:function(_){re(_._path),_.removeInteractiveTarget(_._path),delete this._layers[et(_)]},_updatePath:function(_){_._project(),_._update()},_updateStyle:function(_){var M=_._path,S=_.options;M&&(S.stroke?(M.setAttribute("stroke",S.color),M.setAttribute("stroke-opacity",S.opacity),M.setAttribute("stroke-width",S.weight),M.setAttribute("stroke-linecap",S.lineCap),M.setAttribute("stroke-linejoin",S.lineJoin),S.dashArray?M.setAttribute("stroke-dasharray",S.dashArray):M.removeAttribute("stroke-dasharray"),S.dashOffset?M.setAttribute("stroke-dashoffset",S.dashOffset):M.removeAttribute("stroke-dashoffset")):M.setAttribute("stroke","none"),S.fill?(M.setAttribute("fill",S.fillColor||S.color),M.setAttribute("fill-opacity",S.fillOpacity),M.setAttribute("fill-rule",S.fillRule||"evenodd")):M.setAttribute("fill","none"))},_updatePoly:function(_,M){this._setPath(_,Tr(_._parts,M))},_updateCircle:function(_){var M=_._point,S=Math.max(Math.round(_._radius),1),D=Math.max(Math.round(_._radiusY),1)||S,z="a"+S+","+D+" 0 1,0 ",V=_._empty()?"M0 0":"M"+(M.x-S)+","+M.y+z+S*2+",0 "+z+-S*2+",0 ";this._setPath(_,V)},_setPath:function(_,M){_._path.setAttribute("d",M)},_bringToFront:function(_){Fi(_._path)},_bringToBack:function(_){Ri(_._path)}});Rt.vml&&ce.include(Ta);function Ms(_){return Rt.svg||Rt.vml?new ce(_):null}qt.include({getRenderer:function(_){var M=_.options.renderer||this._getPaneRenderer(_.options.pane)||this.options.renderer||this._renderer;return M||(M=this._renderer=this._createRenderer()),this.hasLayer(M)||this.addLayer(M),M},_getPaneRenderer:function(_){if(_==="overlayPane"||_===void 0)return!1;var M=this._paneRenderers[_];return M===void 0&&(M=this._createRenderer({pane:_}),this._paneRenderers[_]=M),M},_createRenderer:function(_){return this.options.preferCanvas&&vr(_)||Ms(_)}});var Dn=Le.extend({initialize:function(_,M){Le.prototype.initialize.call(this,this._boundsToLatLngs(_),M)},setBounds:function(_){return this.setLatLngs(this._boundsToLatLngs(_))},_boundsToLatLngs:function(_){return _=le(_),[_.getSouthWest(),_.getNorthWest(),_.getNorthEast(),_.getSouthEast()]}});function Da(_,M){return new Dn(_,M)}ce.create=Ge,ce.pointsToPath=Tr,oi.geometryToLayer=un,oi.coordsToLatLng=mr,oi.coordsToLatLngs=Oe,oi.latLngToCoords=ui,oi.latLngsToCoords=ki,oi.getFeature=Mi,oi.asFeature=Sn,qt.mergeOptions({boxZoom:!0});var qi=Ke.extend({initialize:function(_){this._map=_,this._container=_._container,this._pane=_._panes.overlayPane,this._resetStateTimeout=0,_.on("unload",this._destroy,this)},addHooks:function(){jt(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){$t(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){re(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){this._resetStateTimeout!==0&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(_){if(!_.shiftKey||_.which!==1&&_.button!==1)return!1;this._clearDeferredResetState(),this._resetState(),tn(),Qn(),this._startPoint=this._map.mouseEventToContainerPoint(_),jt(document,{contextmenu:xi,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(_){this._moved||(this._moved=!0,this._box=Yt("div","leaflet-zoom-box",this._container),Ht(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(_);var M=new ne(this._point,this._startPoint),S=M.getSize();he(this._box,M.min),this._box.style.width=S.x+"px",this._box.style.height=S.y+"px"},_finish:function(){this._moved&&(re(this._box),ae(this._container,"leaflet-crosshair")),en(),tr(),$t(document,{contextmenu:xi,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(_){if(!(_.which!==1&&_.button!==1)&&(this._finish(),!!this._moved)){this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(N(this._resetState,this),0);var M=new Ee(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(M).fire("boxzoomend",{boxZoomBounds:M})}},_onKeyDown:function(_){_.keyCode===27&&(this._finish(),this._clearDeferredResetState(),this._resetState())}});qt.addInitHook("addHandler","boxZoom",qi),qt.mergeOptions({doubleClickZoom:!0});var ws=Ke.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(_){var M=this._map,S=M.getZoom(),D=M.options.zoomDelta,z=_.originalEvent.shiftKey?S-D:S+D;M.options.doubleClickZoom==="center"?M.setZoom(z):M.setZoomAround(_.containerPoint,z)}});qt.addInitHook("addHandler","doubleClickZoom",ws),qt.mergeOptions({dragging:!0,inertia:!0,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0});var Es=Ke.extend({addHooks:function(){if(!this._draggable){var _=this._map;this._draggable=new di(_._mapPane,_._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),_.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),_.on("zoomend",this._onZoomEnd,this),_.whenReady(this._onZoomEnd,this))}Ht(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){ae(this._map._container,"leaflet-grab"),ae(this._map._container,"leaflet-touch-drag"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDragStart:function(){var _=this._map;if(_._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity){var M=le(this._map.options.maxBounds);this._offsetLimit=we(this._map.latLngToContainerPoint(M.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(M.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))}else this._offsetLimit=null;_.fire("movestart").fire("dragstart"),_.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(_){if(this._map.options.inertia){var M=this._lastTime=+new Date,S=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(S),this._times.push(M),this._prunePositions(M)}this._map.fire("move",_).fire("drag",_)},_prunePositions:function(_){for(;this._positions.length>1&&_-this._times[0]>50;)this._positions.shift(),this._times.shift()},_onZoomEnd:function(){var _=this._map.getSize().divideBy(2),M=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=M.subtract(_).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(_,M){return _-(_-M)*this._viscosity},_onPreDragLimit:function(){if(!(!this._viscosity||!this._offsetLimit)){var _=this._draggable._newPos.subtract(this._draggable._startPos),M=this._offsetLimit;_.xM.max.x&&(_.x=this._viscousLimit(_.x,M.max.x)),_.y>M.max.y&&(_.y=this._viscousLimit(_.y,M.max.y)),this._draggable._newPos=this._draggable._startPos.add(_)}},_onPreDragWrap:function(){var _=this._worldWidth,M=Math.round(_/2),S=this._initialWorldOffset,D=this._draggable._newPos.x,z=(D-M+S)%_+M-S,V=(D+M+S)%_-M-S,nt=Math.abs(z+S)0?V:-V))-M;this._delta=0,this._startTime=null,nt&&(_.options.scrollWheelZoom==="center"?_.setZoom(M+nt):_.setZoomAround(this._lastMousePos,M+nt))}});qt.addInitHook("addHandler","scrollWheelZoom",Ei);var Ps=600;qt.mergeOptions({tapHold:Rt.touchNative&&Rt.safari&&Rt.mobile,tapTolerance:15});var Lr=Ke.extend({addHooks:function(){jt(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){$t(this._map._container,"touchstart",this._onDown,this)},_onDown:function(_){if(clearTimeout(this._holdTimeout),_.touches.length===1){var M=_.touches[0];this._startPos=this._newPos=new Gt(M.clientX,M.clientY),this._holdTimeout=setTimeout(N(function(){this._cancel(),this._isTapValid()&&(jt(document,"touchend",me),jt(document,"touchend touchcancel",this._cancelClickPrevent),this._simulateEvent("contextmenu",M))},this),Ps),jt(document,"touchend touchcancel contextmenu",this._cancel,this),jt(document,"touchmove",this._onMove,this)}},_cancelClickPrevent:function _(){$t(document,"touchend",me),$t(document,"touchend touchcancel",_)},_cancel:function(){clearTimeout(this._holdTimeout),$t(document,"touchend touchcancel contextmenu",this._cancel,this),$t(document,"touchmove",this._onMove,this)},_onMove:function(_){var M=_.touches[0];this._newPos=new Gt(M.clientX,M.clientY)},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_simulateEvent:function(_,M){var S=new MouseEvent(_,{bubbles:!0,cancelable:!0,view:window,screenX:M.screenX,screenY:M.screenY,clientX:M.clientX,clientY:M.clientY});S._simulated=!0,M.target.dispatchEvent(S)}});qt.addInitHook("addHandler","tapHold",Lr),qt.mergeOptions({touchZoom:Rt.touch,bounceAtZoomLimits:!0});var br=Ke.extend({addHooks:function(){Ht(this._map._container,"leaflet-touch-zoom"),jt(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){ae(this._map._container,"leaflet-touch-zoom"),$t(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(_){var M=this._map;if(!(!_.touches||_.touches.length!==2||M._animatingZoom||this._zooming)){var S=M.mouseEventToContainerPoint(_.touches[0]),D=M.mouseEventToContainerPoint(_.touches[1]);this._centerPoint=M.getSize()._divideBy(2),this._startLatLng=M.containerPointToLatLng(this._centerPoint),M.options.touchZoom!=="center"&&(this._pinchStartLatLng=M.containerPointToLatLng(S.add(D)._divideBy(2))),this._startDist=S.distanceTo(D),this._startZoom=M.getZoom(),this._moved=!1,this._zooming=!0,M._stop(),jt(document,"touchmove",this._onTouchMove,this),jt(document,"touchend touchcancel",this._onTouchEnd,this),me(_)}},_onTouchMove:function(_){if(!(!_.touches||_.touches.length!==2||!this._zooming)){var M=this._map,S=M.mouseEventToContainerPoint(_.touches[0]),D=M.mouseEventToContainerPoint(_.touches[1]),z=S.distanceTo(D)/this._startDist;if(this._zoom=M.getScaleZoom(z,this._startZoom),!M.options.bounceAtZoomLimits&&(this._zoomM.getMaxZoom()&&z>1)&&(this._zoom=M._limitZoom(this._zoom)),M.options.touchZoom==="center"){if(this._center=this._startLatLng,z===1)return}else{var V=S._add(D)._divideBy(2)._subtract(this._centerPoint);if(z===1&&V.x===0&&V.y===0)return;this._center=M.unproject(M.project(this._pinchStartLatLng,this._zoom).subtract(V),this._zoom)}this._moved||(M._moveStart(!0,!1),this._moved=!0),Me(this._animRequest);var nt=N(M._move,M,this._center,this._zoom,{pinch:!0,round:!1},void 0);this._animRequest=ue(nt,this,!0),me(_)}},_onTouchEnd:function(){if(!this._moved||!this._zooming){this._zooming=!1;return}this._zooming=!1,Me(this._animRequest),$t(document,"touchmove",this._onTouchMove,this),$t(document,"touchend touchcancel",this._onTouchEnd,this),this._map.options.zoomAnimation?this._map._animateZoom(this._center,this._map._limitZoom(this._zoom),!0,this._map.options.zoomSnap):this._map._resetView(this._center,this._map._limitZoom(this._zoom))}});qt.addInitHook("addHandler","touchZoom",br),qt.BoxZoom=qi,qt.DoubleClickZoom=ws,qt.Drag=Es,qt.Keyboard=Bs,qt.ScrollWheelZoom=Ei,qt.TapHold=Lr,qt.TouchZoom=br,G.Bounds=ne,G.Browser=Rt,G.CRS=ni,G.Canvas=Tn,G.Circle=Hi,G.CircleMarker=Pn,G.Class=ii,G.Control=Ue,G.DivIcon=fi,G.DivOverlay=$e,G.DomEvent=Wt,G.DomUtil=_a,G.Draggable=di,G.Evented=Yi,G.FeatureGroup=Ye,G.GeoJSON=oi,G.GridLayer=cn,G.Handler=Ke,G.Icon=Ui,G.ImageOverlay=Vi,G.LatLng=Qt,G.LatLngBounds=Ee,G.Layer=Be,G.LayerGroup=si,G.LineUtil=Mn,G.Map=qt,G.Marker=Bn,G.Mixin=va,G.Path=Ne,G.Point=Gt,G.PolyUtil=cs,G.Polygon=Le,G.Polyline=ai,G.Popup=ln,G.PosAnimation=ss,G.Projection=_s,G.Rectangle=Dn,G.Renderer=Xe,G.SVG=ce,G.SVGOverlay=yr,G.TileLayer=_i,G.Tooltip=An,G.Transformation=Nn,G.Util=qs,G.VideoOverlay=Ls,G.bind=N,G.bounds=we,G.canvas=vr,G.circle=Ma,G.circleMarker=pr,G.control=Ii,G.divIcon=hn,G.extend=tt,G.featureGroup=xa,G.geoJSON=vs,G.geoJson=wa,G.gridLayer=bs,G.icon=ka,G.imageOverlay=Ea,G.latLng=Kt,G.latLngBounds=le,G.layerGroup=En,G.map=xn,G.marker=gs,G.point=zt,G.polygon=_r,G.polyline=fr,G.popup=Sa,G.rectangle=Da,G.setOptions=St,G.stamp=et,G.svg=Ms,G.svgOverlay=Pa,G.tileLayer=Cs,G.tooltip=Aa,G.transformation=Xi,G.version=X,G.videoOverlay=Ba;var be=window.L;G.noConflict=function(){return window.L=be,this},window.L=G}))})(leafletSrc$1,leafletSrc$1.exports)),leafletSrc$1.exports}var leafletSrcExports=requireLeafletSrc();const L$2=getDefaultExportFromCjs(leafletSrcExports),t=Object.freeze(Object.defineProperty({__proto__:null,default:L$2},Symbol.toStringTag,{value:"Module"}));function bound01(j,H){isOnePointZero(j)&&(j="100%");const G=isPercentage(j);return j=H===360?j:Math.min(H,Math.max(0,parseFloat(j))),G&&(j=parseInt(String(j*H),10)/100),Math.abs(j-H)<1e-6?1:(H===360?j=(j<0?j%H+H:j%H)/parseFloat(String(H)):j=j%H/parseFloat(String(H)),j)}function clamp01(j){return Math.min(1,Math.max(0,j))}function isOnePointZero(j){return typeof j=="string"&&j.indexOf(".")!==-1&&parseFloat(j)===1}function isPercentage(j){return typeof j=="string"&&j.indexOf("%")!==-1}function boundAlpha(j){return j=parseFloat(j),(isNaN(j)||j<0||j>1)&&(j=1),j}function convertToPercentage(j){return Number(j)<=1?`${Number(j)*100}%`:j}function pad2(j){return j.length===1?"0"+j:String(j)}function rgbToRgb(j,H,G){return{r:bound01(j,255)*255,g:bound01(H,255)*255,b:bound01(G,255)*255}}function rgbToHsl(j,H,G){j=bound01(j,255),H=bound01(H,255),G=bound01(G,255);const X=Math.max(j,H,G),tt=Math.min(j,H,G);let F=0,N=0;const W=(X+tt)/2;if(X===tt)N=0,F=0;else{const et=X-tt;switch(N=W>.5?et/(2-X-tt):et/(X+tt),X){case j:F=(H-G)/et+(H1&&(G-=1),G<1/6?j+(H-j)*(6*G):G<1/2?H:G<2/3?j+(H-j)*(2/3-G)*6:j}function hslToRgb(j,H,G){let X,tt,F;if(j=bound01(j,360),H=bound01(H,100),G=bound01(G,100),H===0)tt=G,F=G,X=G;else{const N=G<.5?G*(1+H):G+H-G*H,W=2*G-N;X=hue2rgb(W,N,j+1/3),tt=hue2rgb(W,N,j),F=hue2rgb(W,N,j-1/3)}return{r:X*255,g:tt*255,b:F*255}}function rgbToHsv(j,H,G){j=bound01(j,255),H=bound01(H,255),G=bound01(G,255);const X=Math.max(j,H,G),tt=Math.min(j,H,G);let F=0;const N=X,W=X-tt,et=X===0?0:W/X;if(X===tt)F=0;else{switch(X){case j:F=(H-G)/W+(H>16,g:(j&65280)>>8,b:j&255}}const names={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};function inputToRGB(j){let H={r:0,g:0,b:0},G=1,X=null,tt=null,F=null,N=!1,W=!1;return typeof j=="string"&&(j=stringInputToObject(j)),typeof j=="object"&&(isValidCSSUnit(j.r)&&isValidCSSUnit(j.g)&&isValidCSSUnit(j.b)?(H=rgbToRgb(j.r,j.g,j.b),N=!0,W=String(j.r).substr(-1)==="%"?"prgb":"rgb"):isValidCSSUnit(j.h)&&isValidCSSUnit(j.s)&&isValidCSSUnit(j.v)?(X=convertToPercentage(j.s),tt=convertToPercentage(j.v),H=hsvToRgb(j.h,X,tt),N=!0,W="hsv"):isValidCSSUnit(j.h)&&isValidCSSUnit(j.s)&&isValidCSSUnit(j.l)?(X=convertToPercentage(j.s),F=convertToPercentage(j.l),H=hslToRgb(j.h,X,F),N=!0,W="hsl"):isValidCSSUnit(j.c)&&isValidCSSUnit(j.m)&&isValidCSSUnit(j.y)&&isValidCSSUnit(j.k)&&(H=cmykToRgb(j.c,j.m,j.y,j.k),N=!0,W="cmyk"),Object.prototype.hasOwnProperty.call(j,"a")&&(G=j.a)),G=boundAlpha(G),{ok:N,format:j.format||W,r:Math.min(255,Math.max(H.r,0)),g:Math.min(255,Math.max(H.g,0)),b:Math.min(255,Math.max(H.b,0)),a:G}}const CSS_INTEGER="[-\\+]?\\d+%?",CSS_NUMBER="[-\\+]?\\d*\\.\\d+%?",CSS_UNIT="(?:"+CSS_NUMBER+")|(?:"+CSS_INTEGER+")",PERMISSIVE_MATCH3="[\\s|\\(]+("+CSS_UNIT+")[,|\\s]+("+CSS_UNIT+")[,|\\s]+("+CSS_UNIT+")\\s*\\)?",PERMISSIVE_MATCH4="[\\s|\\(]+("+CSS_UNIT+")[,|\\s]+("+CSS_UNIT+")[,|\\s]+("+CSS_UNIT+")[,|\\s]+("+CSS_UNIT+")\\s*\\)?",matchers={CSS_UNIT:new RegExp(CSS_UNIT),rgb:new RegExp("rgb"+PERMISSIVE_MATCH3),rgba:new RegExp("rgba"+PERMISSIVE_MATCH4),hsl:new RegExp("hsl"+PERMISSIVE_MATCH3),hsla:new RegExp("hsla"+PERMISSIVE_MATCH4),hsv:new RegExp("hsv"+PERMISSIVE_MATCH3),hsva:new RegExp("hsva"+PERMISSIVE_MATCH4),cmyk:new RegExp("cmyk"+PERMISSIVE_MATCH4),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function stringInputToObject(j){if(j=j.trim().toLowerCase(),j.length===0)return!1;let H=!1;if(names[j])j=names[j],H=!0;else if(j==="transparent")return{r:0,g:0,b:0,a:0,format:"name"};let G=matchers.rgb.exec(j);return G?{r:G[1],g:G[2],b:G[3]}:(G=matchers.rgba.exec(j),G?{r:G[1],g:G[2],b:G[3],a:G[4]}:(G=matchers.hsl.exec(j),G?{h:G[1],s:G[2],l:G[3]}:(G=matchers.hsla.exec(j),G?{h:G[1],s:G[2],l:G[3],a:G[4]}:(G=matchers.hsv.exec(j),G?{h:G[1],s:G[2],v:G[3]}:(G=matchers.hsva.exec(j),G?{h:G[1],s:G[2],v:G[3],a:G[4]}:(G=matchers.cmyk.exec(j),G?{c:G[1],m:G[2],y:G[3],k:G[4]}:(G=matchers.hex8.exec(j),G?{r:parseIntFromHex(G[1]),g:parseIntFromHex(G[2]),b:parseIntFromHex(G[3]),a:convertHexToDecimal(G[4]),format:H?"name":"hex8"}:(G=matchers.hex6.exec(j),G?{r:parseIntFromHex(G[1]),g:parseIntFromHex(G[2]),b:parseIntFromHex(G[3]),format:H?"name":"hex"}:(G=matchers.hex4.exec(j),G?{r:parseIntFromHex(G[1]+G[1]),g:parseIntFromHex(G[2]+G[2]),b:parseIntFromHex(G[3]+G[3]),a:convertHexToDecimal(G[4]+G[4]),format:H?"name":"hex8"}:(G=matchers.hex3.exec(j),G?{r:parseIntFromHex(G[1]+G[1]),g:parseIntFromHex(G[2]+G[2]),b:parseIntFromHex(G[3]+G[3]),format:H?"name":"hex"}:!1))))))))))}function isValidCSSUnit(j){return typeof j=="number"?!Number.isNaN(j):matchers.CSS_UNIT.test(j)}class TinyColor{constructor(H="",G={}){if(H instanceof TinyColor)return H;typeof H=="number"&&(H=numberInputToObject(H)),this.originalInput=H;const X=inputToRGB(H);this.originalInput=H,this.r=X.r,this.g=X.g,this.b=X.b,this.a=X.a,this.roundA=Math.round(100*this.a)/100,this.format=G.format??X.format,this.gradientType=G.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=X.ok}isDark(){return this.getBrightness()<128}isLight(){return!this.isDark()}getBrightness(){const H=this.toRgb();return(H.r*299+H.g*587+H.b*114)/1e3}getLuminance(){const H=this.toRgb();let G,X,tt;const F=H.r/255,N=H.g/255,W=H.b/255;return F<=.03928?G=F/12.92:G=Math.pow((F+.055)/1.055,2.4),N<=.03928?X=N/12.92:X=Math.pow((N+.055)/1.055,2.4),W<=.03928?tt=W/12.92:tt=Math.pow((W+.055)/1.055,2.4),.2126*G+.7152*X+.0722*tt}getAlpha(){return this.a}setAlpha(H){return this.a=boundAlpha(H),this.roundA=Math.round(100*this.a)/100,this}isMonochrome(){const{s:H}=this.toHsl();return H===0}toHsv(){const H=rgbToHsv(this.r,this.g,this.b);return{h:H.h*360,s:H.s,v:H.v,a:this.a}}toHsvString(){const H=rgbToHsv(this.r,this.g,this.b),G=Math.round(H.h*360),X=Math.round(H.s*100),tt=Math.round(H.v*100);return this.a===1?`hsv(${G}, ${X}%, ${tt}%)`:`hsva(${G}, ${X}%, ${tt}%, ${this.roundA})`}toHsl(){const H=rgbToHsl(this.r,this.g,this.b);return{h:H.h*360,s:H.s,l:H.l,a:this.a}}toHslString(){const H=rgbToHsl(this.r,this.g,this.b),G=Math.round(H.h*360),X=Math.round(H.s*100),tt=Math.round(H.l*100);return this.a===1?`hsl(${G}, ${X}%, ${tt}%)`:`hsla(${G}, ${X}%, ${tt}%, ${this.roundA})`}toHex(H=!1){return rgbToHex(this.r,this.g,this.b,H)}toHexString(H=!1){return"#"+this.toHex(H)}toHex8(H=!1){return rgbaToHex(this.r,this.g,this.b,this.a,H)}toHex8String(H=!1){return"#"+this.toHex8(H)}toHexShortString(H=!1){return this.a===1?this.toHexString(H):this.toHex8String(H)}toRgb(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}}toRgbString(){const H=Math.round(this.r),G=Math.round(this.g),X=Math.round(this.b);return this.a===1?`rgb(${H}, ${G}, ${X})`:`rgba(${H}, ${G}, ${X}, ${this.roundA})`}toPercentageRgb(){const H=G=>`${Math.round(bound01(G,255)*100)}%`;return{r:H(this.r),g:H(this.g),b:H(this.b),a:this.a}}toPercentageRgbString(){const H=G=>Math.round(bound01(G,255)*100);return this.a===1?`rgb(${H(this.r)}%, ${H(this.g)}%, ${H(this.b)}%)`:`rgba(${H(this.r)}%, ${H(this.g)}%, ${H(this.b)}%, ${this.roundA})`}toCmyk(){return{...rgbToCmyk(this.r,this.g,this.b)}}toCmykString(){const{c:H,m:G,y:X,k:tt}=rgbToCmyk(this.r,this.g,this.b);return`cmyk(${H}, ${G}, ${X}, ${tt})`}toName(){if(this.a===0)return"transparent";if(this.a<1)return!1;const H="#"+rgbToHex(this.r,this.g,this.b,!1);for(const[G,X]of Object.entries(names))if(H===X)return G;return!1}toString(H){const G=!!H;H=H??this.format;let X=!1;const tt=this.a<1&&this.a>=0;return!G&&tt&&(H.startsWith("hex")||H==="name")?H==="name"&&this.a===0?this.toName():this.toRgbString():(H==="rgb"&&(X=this.toRgbString()),H==="prgb"&&(X=this.toPercentageRgbString()),(H==="hex"||H==="hex6")&&(X=this.toHexString()),H==="hex3"&&(X=this.toHexString(!0)),H==="hex4"&&(X=this.toHex8String(!0)),H==="hex8"&&(X=this.toHex8String()),H==="name"&&(X=this.toName()),H==="hsl"&&(X=this.toHslString()),H==="hsv"&&(X=this.toHsvString()),H==="cmyk"&&(X=this.toCmykString()),X||this.toHexString())}toNumber(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)}clone(){return new TinyColor(this.toString())}lighten(H=10){const G=this.toHsl();return G.l+=H/100,G.l=clamp01(G.l),new TinyColor(G)}brighten(H=10){const G=this.toRgb();return G.r=Math.max(0,Math.min(255,G.r-Math.round(255*-(H/100)))),G.g=Math.max(0,Math.min(255,G.g-Math.round(255*-(H/100)))),G.b=Math.max(0,Math.min(255,G.b-Math.round(255*-(H/100)))),new TinyColor(G)}darken(H=10){const G=this.toHsl();return G.l-=H/100,G.l=clamp01(G.l),new TinyColor(G)}tint(H=10){return this.mix("white",H)}shade(H=10){return this.mix("black",H)}desaturate(H=10){const G=this.toHsl();return G.s-=H/100,G.s=clamp01(G.s),new TinyColor(G)}saturate(H=10){const G=this.toHsl();return G.s+=H/100,G.s=clamp01(G.s),new TinyColor(G)}greyscale(){return this.desaturate(100)}spin(H){const G=this.toHsl(),X=(G.h+H)%360;return G.h=X<0?360+X:X,new TinyColor(G)}mix(H,G=50){const X=this.toRgb(),tt=new TinyColor(H).toRgb(),F=G/100,N={r:(tt.r-X.r)*F+X.r,g:(tt.g-X.g)*F+X.g,b:(tt.b-X.b)*F+X.b,a:(tt.a-X.a)*F+X.a};return new TinyColor(N)}analogous(H=6,G=30){const X=this.toHsl(),tt=360/G,F=[this];for(X.h=(X.h-(tt*H>>1)+720)%360;--H;)X.h=(X.h+tt)%360,F.push(new TinyColor(X));return F}complement(){const H=this.toHsl();return H.h=(H.h+180)%360,new TinyColor(H)}monochromatic(H=6){const G=this.toHsv(),{h:X}=G,{s:tt}=G;let{v:F}=G;const N=[],W=1/H;for(;H--;)N.push(new TinyColor({h:X,s:tt,v:F})),F=(F+W)%1;return N}splitcomplement(){const H=this.toHsl(),{h:G}=H;return[this,new TinyColor({h:(G+72)%360,s:H.s,l:H.l}),new TinyColor({h:(G+216)%360,s:H.s,l:H.l})]}onBackground(H){const G=this.toRgb(),X=new TinyColor(H).toRgb(),tt=G.a+X.a*(1-G.a);return new TinyColor({r:(G.r*G.a+X.r*X.a*(1-G.a))/tt,g:(G.g*G.a+X.g*X.a*(1-G.a))/tt,b:(G.b*G.a+X.b*X.a*(1-G.a))/tt,a:tt})}triad(){return this.polyad(3)}tetrad(){return this.polyad(4)}polyad(H){const G=this.toHsl(),{h:X}=G,tt=[this],F=360/H;for(let N=1;N{var j=Object.create,H=Object.defineProperty,G=Object.getOwnPropertyDescriptor,X=Object.getOwnPropertyNames,tt=Object.getPrototypeOf,F=Object.prototype.hasOwnProperty,N=(C,k)=>()=>(k||C((k={exports:{}}).exports,k),k.exports),W=(C,k,B,P)=>{if(k&&typeof k=="object"||typeof k=="function")for(let A of X(k))!F.call(C,A)&&A!==B&&H(C,A,{get:()=>k[A],enumerable:!(P=G(k,A))||P.enumerable});return C},et=(C,k,B)=>(B=C!=null?j(tt(C)):{},W(k||!C||!C.__esModule?H(B,"default",{value:C,enumerable:!0}):B,C)),ft=N((C,k)=>{function B(){this.__data__=[],this.size=0}k.exports=B}),Lt=N((C,k)=>{function B(P,A){return P===A||P!==P&&A!==A}k.exports=B}),pt=N((C,k)=>{var B=Lt();function P(A,T){for(var O=A.length;O--;)if(B(A[O][0],T))return O;return-1}k.exports=P}),Ct=N((C,k)=>{var B=pt(),P=Array.prototype,A=P.splice;function T(O){var R=this.__data__,Z=B(R,O);if(Z<0)return!1;var U=R.length-1;return Z==U?R.pop():A.call(R,Z,1),--this.size,!0}k.exports=T}),bt=N((C,k)=>{var B=pt();function P(A){var T=this.__data__,O=B(T,A);return O<0?void 0:T[O][1]}k.exports=P}),Dt=N((C,k)=>{var B=pt();function P(A){return B(this.__data__,A)>-1}k.exports=P}),St=N((C,k)=>{var B=pt();function P(A,T){var O=this.__data__,R=B(O,A);return R<0?(++this.size,O.push([A,T])):O[R][1]=T,this}k.exports=P}),Jt=N((C,k)=>{var B=ft(),P=Ct(),A=bt(),T=Dt(),O=St();function R(Z){var U=-1,Q=Z==null?0:Z.length;for(this.clear();++U{var B=Jt();function P(){this.__data__=new B,this.size=0}k.exports=P}),ee=N((C,k)=>{function B(P){var A=this.__data__,T=A.delete(P);return this.size=A.size,T}k.exports=B}),ie=N((C,k)=>{function B(P){return this.__data__.get(P)}k.exports=B}),ei=N((C,k)=>{function B(P){return this.__data__.has(P)}k.exports=B}),ke=N((C,k)=>{var B=typeof commonjsGlobal=="object"&&commonjsGlobal&&commonjsGlobal.Object===Object&&commonjsGlobal;k.exports=B}),Ve=N((C,k)=>{var B=ke(),P=typeof self=="object"&&self&&self.Object===Object&&self,A=B||P||Function("return this")();k.exports=A}),pn=N((C,k)=>{var B=Ve(),P=B.Symbol;k.exports=P}),Pr=N((C,k)=>{var B=pn(),P=Object.prototype,A=P.hasOwnProperty,T=P.toString,O=B?B.toStringTag:void 0;function R(Z){var U=A.call(Z,O),Q=Z[O];try{Z[O]=void 0;var Y=!0}catch{}var ot=T.call(Z);return Y&&(U?Z[O]=Q:delete Z[O]),ot}k.exports=R}),Rn=N((C,k)=>{var B=Object.prototype,P=B.toString;function A(T){return P.call(T)}k.exports=A}),Si=N((C,k)=>{var B=pn(),P=Pr(),A=Rn(),T="[object Null]",O="[object Undefined]",R=B?B.toStringTag:void 0;function Z(U){return U==null?U===void 0?O:T:R&&R in Object(U)?P(U):A(U)}k.exports=Z}),ue=N((C,k)=>{function B(P){var A=typeof P;return P!=null&&(A=="object"||A=="function")}k.exports=B}),Me=N((C,k)=>{var B=Si(),P=ue(),A="[object AsyncFunction]",T="[object Function]",O="[object GeneratorFunction]",R="[object Proxy]";function Z(U){if(!P(U))return!1;var Q=B(U);return Q==T||Q==O||Q==A||Q==R}k.exports=Z}),qs=N((C,k)=>{var B=Ve(),P=B["__core-js_shared__"];k.exports=P}),ii=N((C,k)=>{var B=qs(),P=(function(){var T=/[^.]+$/.exec(B&&B.keys&&B.keys.IE_PROTO||"");return T?"Symbol(src)_1."+T:""})();function A(T){return!!P&&P in T}k.exports=A}),Ks=N((C,k)=>{var B=Function.prototype,P=B.toString;function A(T){if(T!=null){try{return P.call(T)}catch{}try{return T+""}catch{}}return""}k.exports=A}),Te=N((C,k)=>{var B=Me(),P=ii(),A=ue(),T=Ks(),O=/[\\^$.*+?()[\]{}|]/g,R=/^\[object .+?Constructor\]$/,Z=Function.prototype,U=Object.prototype,Q=Z.toString,Y=U.hasOwnProperty,ot=RegExp("^"+Q.call(Y).replace(O,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function ut(vt){if(!A(vt)||P(vt))return!1;var xt=B(vt)?ot:R;return xt.test(T(vt))}k.exports=ut}),Yi=N((C,k)=>{function B(P,A){return P?.[A]}k.exports=B}),Gt=N((C,k)=>{var B=Te(),P=Yi();function A(T,O){var R=P(T,O);return B(R)?R:void 0}k.exports=A}),In=N((C,k)=>{var B=Gt(),P=Ve(),A=B(P,"Map");k.exports=A}),zt=N((C,k)=>{var B=Gt(),P=B(Object,"create");k.exports=P}),ne=N((C,k)=>{var B=zt();function P(){this.__data__=B?B(null):{},this.size=0}k.exports=P}),we=N((C,k)=>{function B(P){var A=this.has(P)&&delete this.__data__[P];return this.size-=A?1:0,A}k.exports=B}),Ee=N((C,k)=>{var B=zt(),P="__lodash_hash_undefined__",A=Object.prototype,T=A.hasOwnProperty;function O(R){var Z=this.__data__;if(B){var U=Z[R];return U===P?void 0:U}return T.call(Z,R)?Z[R]:void 0}k.exports=O}),le=N((C,k)=>{var B=zt(),P=Object.prototype,A=P.hasOwnProperty;function T(O){var R=this.__data__;return B?R[O]!==void 0:A.call(R,O)}k.exports=T}),Qt=N((C,k)=>{var B=zt(),P="__lodash_hash_undefined__";function A(T,O){var R=this.__data__;return this.size+=this.has(T)?0:1,R[T]=B&&O===void 0?P:O,this}k.exports=A}),Kt=N((C,k)=>{var B=ne(),P=we(),A=Ee(),T=le(),O=Qt();function R(Z){var U=-1,Q=Z==null?0:Z.length;for(this.clear();++U{var B=Kt(),P=Jt(),A=In();function T(){this.size=0,this.__data__={hash:new B,map:new(A||P),string:new B}}k.exports=T}),li=N((C,k)=>{function B(P){var A=typeof P;return A=="string"||A=="number"||A=="symbol"||A=="boolean"?P!=="__proto__":P===null}k.exports=B}),$i=N((C,k)=>{var B=li();function P(A,T){var O=A.__data__;return B(T)?O[typeof T=="string"?"string":"hash"]:O.map}k.exports=P}),zn=N((C,k)=>{var B=$i();function P(A){var T=B(this,A).delete(A);return this.size-=T?1:0,T}k.exports=P}),Nn=N((C,k)=>{var B=$i();function P(A){return B(this,A).get(A)}k.exports=P}),Xi=N((C,k)=>{var B=$i();function P(A){return B(this,A).has(A)}k.exports=P}),Gn=N((C,k)=>{var B=$i();function P(A,T){var O=B(this,A),R=O.size;return O.set(A,T),this.size+=O.size==R?0:1,this}k.exports=P}),Sr=N((C,k)=>{var B=ni(),P=zn(),A=Nn(),T=Xi(),O=Gn();function R(Z){var U=-1,Q=Z==null?0:Z.length;for(this.clear();++U{var B=Jt(),P=In(),A=Sr(),T=200;function O(R,Z){var U=this.__data__;if(U instanceof B){var Q=U.__data__;if(!P||Q.length{var B=Jt(),P=Zt(),A=ee(),T=ie(),O=ei(),R=Ar();function Z(U){var Q=this.__data__=new B(U);this.size=Q.size}Z.prototype.clear=P,Z.prototype.delete=A,Z.prototype.get=T,Z.prototype.has=O,Z.prototype.set=R,k.exports=Z}),fn=N((C,k)=>{var B=Gt(),P=(function(){try{var A=B(Object,"defineProperty");return A({},"",{}),A}catch{}})();k.exports=P}),Ai=N((C,k)=>{var B=fn();function P(A,T,O){T=="__proto__"&&B?B(A,T,{configurable:!0,enumerable:!0,value:O,writable:!0}):A[T]=O}k.exports=P}),Dr=N((C,k)=>{var B=Ai(),P=Lt();function A(T,O,R){(R!==void 0&&!P(T[O],R)||R===void 0&&!(O in T))&&B(T,O,R)}k.exports=A}),Or=N((C,k)=>{function B(P){return function(A,T,O){for(var R=-1,Z=Object(A),U=O(A),Q=U.length;Q--;){var Y=U[P?Q:++R];if(T(Z[Y],Y,Z)===!1)break}return A}}k.exports=B}),Zn=N((C,k)=>{var B=Or(),P=B();k.exports=P}),Fr=N((C,k)=>{var B=Ve(),P=typeof C=="object"&&C&&!C.nodeType&&C,A=P&&typeof k=="object"&&k&&!k.nodeType&&k,T=A&&A.exports===P,O=T?B.Buffer:void 0,R=O?O.allocUnsafe:void 0;function Z(U,Q){if(Q)return U.slice();var Y=U.length,ot=R?R(Y):new U.constructor(Y);return U.copy(ot),ot}k.exports=Z}),Rr=N((C,k)=>{var B=Ve(),P=B.Uint8Array;k.exports=P}),Ws=N((C,k)=>{var B=Rr();function P(A){var T=new A.constructor(A.byteLength);return new B(T).set(new B(A)),T}k.exports=P}),Ys=N((C,k)=>{var B=Ws();function P(A,T){var O=T?B(A.buffer):A.buffer;return new A.constructor(O,A.byteOffset,A.length)}k.exports=P}),jn=N((C,k)=>{function B(P,A){var T=-1,O=P.length;for(A||(A=Array(O));++T{var B=ue(),P=Object.create,A=(function(){function T(){}return function(O){if(!B(O))return{};if(P)return P(O);T.prototype=O;var R=new T;return T.prototype=void 0,R}})();k.exports=A}),zr=N((C,k)=>{function B(P,A){return function(T){return P(A(T))}}k.exports=B}),Nr=N((C,k)=>{var B=zr(),P=B(Object.getPrototypeOf,Object);k.exports=P}),Un=N((C,k)=>{var B=Object.prototype;function P(A){var T=A&&A.constructor,O=typeof T=="function"&&T.prototype||B;return A===O}k.exports=P}),Gr=N((C,k)=>{var B=Ir(),P=Nr(),A=Un();function T(O){return typeof O.constructor=="function"&&!A(O)?B(P(O)):{}}k.exports=T}),Ti=N((C,k)=>{function B(P){return P!=null&&typeof P=="object"}k.exports=B}),Zr=N((C,k)=>{var B=Si(),P=Ti(),A="[object Arguments]";function T(O){return P(O)&&B(O)==A}k.exports=T}),_n=N((C,k)=>{var B=Zr(),P=Ti(),A=Object.prototype,T=A.hasOwnProperty,O=A.propertyIsEnumerable,R=B((function(){return arguments})())?B:function(Z){return P(Z)&&T.call(Z,"callee")&&!O.call(Z,"callee")};k.exports=R}),Di=N((C,k)=>{var B=Array.isArray;k.exports=B}),jr=N((C,k)=>{var B=9007199254740991;function P(A){return typeof A=="number"&&A>-1&&A%1==0&&A<=B}k.exports=P}),Li=N((C,k)=>{var B=Me(),P=jr();function A(T){return T!=null&&P(T.length)&&!B(T)}k.exports=A}),$s=N((C,k)=>{var B=Li(),P=Ti();function A(T){return P(T)&&B(T)}k.exports=A}),Xs=N((C,k)=>{function B(){return!1}k.exports=B}),Hn=N((C,k)=>{var B=Ve(),P=Xs(),A=typeof C=="object"&&C&&!C.nodeType&&C,T=A&&typeof k=="object"&&k&&!k.nodeType&&k,O=T&&T.exports===A,R=O?B.Buffer:void 0,Z=R?R.isBuffer:void 0,U=Z||P;k.exports=U}),Ur=N((C,k)=>{var B=Si(),P=Nr(),A=Ti(),T="[object Object]",O=Function.prototype,R=Object.prototype,Z=O.toString,U=R.hasOwnProperty,Q=Z.call(Object);function Y(ot){if(!A(ot)||B(ot)!=T)return!1;var ut=P(ot);if(ut===null)return!0;var vt=U.call(ut,"constructor")&&ut.constructor;return typeof vt=="function"&&vt instanceof vt&&Z.call(vt)==Q}k.exports=Y}),Hr=N((C,k)=>{var B=Si(),P=jr(),A=Ti(),T="[object Arguments]",O="[object Array]",R="[object Boolean]",Z="[object Date]",U="[object Error]",Q="[object Function]",Y="[object Map]",ot="[object Number]",ut="[object Object]",vt="[object RegExp]",xt="[object Set]",Pt="[object String]",At="[object WeakMap]",J="[object ArrayBuffer]",ht="[object DataView]",yt="[object Float32Array]",Bt="[object Float64Array]",wt="[object Int8Array]",Et="[object Int16Array]",q="[object Int32Array]",K="[object Uint8Array]",$="[object Uint8ClampedArray]",st="[object Uint16Array]",rt="[object Uint32Array]",it={};it[yt]=it[Bt]=it[wt]=it[Et]=it[q]=it[K]=it[$]=it[st]=it[rt]=!0,it[T]=it[O]=it[J]=it[R]=it[ht]=it[Z]=it[U]=it[Q]=it[Y]=it[ot]=it[ut]=it[vt]=it[xt]=it[Pt]=it[At]=!1;function ct(at){return A(at)&&P(at.length)&&!!it[B(at)]}k.exports=ct}),Js=N((C,k)=>{function B(P){return function(A){return P(A)}}k.exports=B}),Qs=N((C,k)=>{var B=ke(),P=typeof C=="object"&&C&&!C.nodeType&&C,A=P&&typeof k=="object"&&k&&!k.nodeType&&k,T=A&&A.exports===P,O=T&&B.process,R=(function(){try{var Z=A&&A.require&&A.require("util").types;return Z||O&&O.binding&&O.binding("util")}catch{}})();k.exports=R}),Vr=N((C,k)=>{var B=Hr(),P=Js(),A=Qs(),T=A&&A.isTypedArray,O=T?P(T):B;k.exports=O}),qr=N((C,k)=>{function B(P,A){if(!(A==="constructor"&&typeof P[A]=="function")&&A!="__proto__")return P[A]}k.exports=B}),ta=N((C,k)=>{var B=Ai(),P=Lt(),A=Object.prototype,T=A.hasOwnProperty;function O(R,Z,U){var Q=R[Z];(!(T.call(R,Z)&&P(Q,U))||U===void 0&&!(Z in R))&&B(R,Z,U)}k.exports=O}),ea=N((C,k)=>{var B=ta(),P=Ai();function A(T,O,R,Z){var U=!R;R||(R={});for(var Q=-1,Y=O.length;++Q{function B(P,A){for(var T=-1,O=Array(P);++T{var B=9007199254740991,P=/^(?:0|[1-9]\d*)$/;function A(T,O){var R=typeof T;return O=O??B,!!O&&(R=="number"||R!="symbol"&&P.test(T))&&T>-1&&T%1==0&&T{var B=Vn(),P=_n(),A=Di(),T=Hn(),O=Kr(),R=Vr(),Z=Object.prototype,U=Z.hasOwnProperty;function Q(Y,ot){var ut=A(Y),vt=!ut&&P(Y),xt=!ut&&!vt&&T(Y),Pt=!ut&&!vt&&!xt&&R(Y),At=ut||vt||xt||Pt,J=At?B(Y.length,String):[],ht=J.length;for(var yt in Y)(ot||U.call(Y,yt))&&!(At&&(yt=="length"||xt&&(yt=="offset"||yt=="parent")||Pt&&(yt=="buffer"||yt=="byteLength"||yt=="byteOffset")||O(yt,ht)))&&J.push(yt);return J}k.exports=Q}),na=N((C,k)=>{function B(P){var A=[];if(P!=null)for(var T in Object(P))A.push(T);return A}k.exports=B}),ra=N((C,k)=>{var B=ue(),P=Un(),A=na(),T=Object.prototype,O=T.hasOwnProperty;function R(Z){if(!B(Z))return A(Z);var U=P(Z),Q=[];for(var Y in Z)Y=="constructor"&&(U||!O.call(Z,Y))||Q.push(Y);return Q}k.exports=R}),je=N((C,k)=>{var B=ia(),P=ra(),A=Li();function T(O){return A(O)?B(O,!0):P(O)}k.exports=T}),Rt=N((C,k)=>{var B=ea(),P=je();function A(T){return B(T,P(T))}k.exports=A}),Wr=N((C,k)=>{var B=Dr(),P=Fr(),A=Ys(),T=jn(),O=Gr(),R=_n(),Z=Di(),U=$s(),Q=Hn(),Y=Me(),ot=ue(),ut=Ur(),vt=Vr(),xt=qr(),Pt=Rt();function At(J,ht,yt,Bt,wt,Et,q){var K=xt(J,yt),$=xt(ht,yt),st=q.get($);if(st){B(J,yt,st);return}var rt=Et?Et(K,$,yt+"",J,ht,q):void 0,it=rt===void 0;if(it){var ct=Z($),at=!ct&&Q($),lt=!ct&&!at&&vt($);rt=$,ct||at||lt?Z(K)?rt=K:U(K)?rt=T(K):at?(it=!1,rt=P($,!0)):lt?(it=!1,rt=A($,!0)):rt=[]:ut($)||R($)?(rt=K,R(K)?rt=Pt(K):(!ot(K)||Y(K))&&(rt=O($))):it=!1}it&&(q.set($,rt),wt(rt,$,Bt,Et,q),q.delete($)),B(J,yt,rt)}k.exports=At}),Yr=N((C,k)=>{var B=Tr(),P=Dr(),A=Zn(),T=Wr(),O=ue(),R=je(),Z=qr();function U(Q,Y,ot,ut,vt){Q!==Y&&A(Y,function(xt,Pt){if(vt||(vt=new B),O(xt))T(Q,Y,Pt,ot,U,ut,vt);else{var At=ut?ut(Z(Q,Pt),xt,Pt+"",Q,Y,vt):void 0;At===void 0&&(At=xt),P(Q,Pt,At)}},R)}k.exports=U}),qn=N((C,k)=>{function B(P){return P}k.exports=B}),$r=N((C,k)=>{function B(P,A,T){switch(T.length){case 0:return P.call(A);case 1:return P.call(A,T[0]);case 2:return P.call(A,T[0],T[1]);case 3:return P.call(A,T[0],T[1],T[2])}return P.apply(A,T)}k.exports=B}),Kn=N((C,k)=>{var B=$r(),P=Math.max;function A(T,O,R){return O=P(O===void 0?T.length-1:O,0),function(){for(var Z=arguments,U=-1,Q=P(Z.length-O,0),Y=Array(Q);++U{function B(P){return function(){return P}}k.exports=B}),Oi=N((C,k)=>{var B=Xr(),P=fn(),A=qn(),T=P?function(O,R){return P(O,"toString",{configurable:!0,enumerable:!1,value:B(R),writable:!0})}:A;k.exports=T}),Jr=N((C,k)=>{var B=800,P=16,A=Date.now;function T(O){var R=0,Z=0;return function(){var U=A(),Q=P-(U-Z);if(Z=U,Q>0){if(++R>=B)return arguments[0]}else R=0;return O.apply(void 0,arguments)}}k.exports=T}),sa=N((C,k)=>{var B=Oi(),P=Jr(),A=P(B);k.exports=A}),aa=N((C,k)=>{var B=qn(),P=Kn(),A=sa();function T(O,R){return A(P(O,R,B),O+"")}k.exports=T}),oa=N((C,k)=>{var B=Lt(),P=Li(),A=Kr(),T=ue();function O(R,Z,U){if(!T(U))return!1;var Q=typeof Z;return(Q=="number"?P(U)&&A(Z,U.length):Q=="string"&&Z in U)?B(U[Z],R):!1}k.exports=O}),ua=N((C,k)=>{var B=aa(),P=oa();function A(T){return B(function(O,R){var Z=-1,U=R.length,Q=U>1?R[U-1]:void 0,Y=U>2?R[2]:void 0;for(Q=T.length>3&&typeof Q=="function"?(U--,Q):void 0,Y&&P(R[0],R[1],Y)&&(Q=U<3?void 0:Q,U=1),O=Object(O);++Z{var B=Yr(),P=ua(),A=P(function(T,O,R){B(T,O,R)});k.exports=A}),Wn=N((C,k)=>{var B=Si(),P=Ti(),A="[object Symbol]";function T(O){return typeof O=="symbol"||P(O)&&B(O)==A}k.exports=T}),gn=N((C,k)=>{var B=Di(),P=Wn(),A=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,T=/^\w*$/;function O(R,Z){if(B(R))return!1;var U=typeof R;return U=="number"||U=="symbol"||U=="boolean"||R==null||P(R)?!0:T.test(R)||!A.test(R)||Z!=null&&R in Object(Z)}k.exports=O}),la=N((C,k)=>{var B=Sr(),P="Expected a function";function A(T,O){if(typeof T!="function"||O!=null&&typeof O!="function")throw new TypeError(P);var R=function(){var Z=arguments,U=O?O.apply(this,Z):Z[0],Q=R.cache;if(Q.has(U))return Q.get(U);var Y=T.apply(this,Z);return R.cache=Q.set(U,Y)||Q,Y};return R.cache=new(A.Cache||B),R}A.Cache=B,k.exports=A}),ha=N((C,k)=>{var B=la(),P=500;function A(T){var O=B(T,function(Z){return R.size===P&&R.clear(),Z}),R=O.cache;return O}k.exports=A}),ca=N((C,k)=>{var B=ha(),P=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,A=/\\(\\)?/g,T=B(function(O){var R=[];return O.charCodeAt(0)===46&&R.push(""),O.replace(P,function(Z,U,Q,Y){R.push(Q?Y.replace(A,"$1"):U||Z)}),R});k.exports=T}),da=N((C,k)=>{function B(P,A){for(var T=-1,O=P==null?0:P.length,R=Array(O);++T{var B=pn(),P=da(),A=Di(),T=Wn(),O=B?B.prototype:void 0,R=O?O.toString:void 0;function Z(U){if(typeof U=="string")return U;if(A(U))return P(U,Z)+"";if(T(U))return R?R.call(U):"";var Q=U+"";return Q=="0"&&1/U==-1/0?"-0":Q}k.exports=Z}),Yn=N((C,k)=>{var B=pa();function P(A){return A==null?"":B(A)}k.exports=P}),Ji=N((C,k)=>{var B=Di(),P=gn(),A=ca(),T=Yn();function O(R,Z){return B(R)?R:P(R,Z)?[R]:A(T(R))}k.exports=O}),Qr=N((C,k)=>{var B=Wn();function P(A){if(typeof A=="string"||B(A))return A;var T=A+"";return T=="0"&&1/A==-1/0?"-0":T}k.exports=P}),ts=N((C,k)=>{var B=Ji(),P=Qr();function A(T,O){O=B(O,T);for(var R=0,Z=O.length;T!=null&&R{var B=ts();function P(A,T,O){var R=A==null?void 0:B(A,T);return R===void 0?O:R}k.exports=P}),Yt=N((C,k)=>{(function(B,P){typeof C=="object"&&typeof k<"u"?k.exports=P():(B=B||self).RBush=P()})(C,function(){function B(J,ht,yt,Bt,wt){(function Et(q,K,$,st,rt){for(;st>$;){if(st-$>600){var it=st-$+1,ct=K-$+1,at=Math.log(it),lt=.5*Math.exp(2*at/3),mt=.5*Math.sqrt(at*lt*(it-lt)/it)*(ct-it/2<0?-1:1),_t=Math.max($,Math.floor(K-ct*lt/it+mt)),kt=Math.min(st,Math.floor(K+(it-ct)*lt/it+mt));Et(q,K,_t,kt,rt)}var Ot=q[K],Ft=$,Ut=st;for(P(q,$,K),rt(q[st],Ot)>0&&P(q,$,st);Ft0;)Ut--}rt(q[$],Ot)===0?P(q,$,Ut):P(q,++Ut,st),Ut<=K&&($=Ut+1),K<=Ut&&(st=Ut-1)}})(J,ht,yt||0,Bt||J.length-1,wt||A)}function P(J,ht,yt){var Bt=J[ht];J[ht]=J[yt],J[yt]=Bt}function A(J,ht){return Jht?1:0}var T=function(J){J===void 0&&(J=9),this._maxEntries=Math.max(4,J),this._minEntries=Math.max(2,Math.ceil(.4*this._maxEntries)),this.clear()};function O(J,ht,yt){if(!yt)return ht.indexOf(J);for(var Bt=0;Bt=J.minX&&ht.maxY>=J.minY}function Pt(J){return{children:J,height:1,leaf:!0,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0}}function At(J,ht,yt,Bt,wt){for(var Et=[ht,yt];Et.length;)if(!((yt=Et.pop())-(ht=Et.pop())<=Bt)){var q=ht+Math.ceil((yt-ht)/Bt/2)*Bt;B(J,q,ht,yt,wt),Et.push(ht,q,q,yt)}}return T.prototype.all=function(){return this._all(this.data,[])},T.prototype.search=function(J){var ht=this.data,yt=[];if(!xt(J,ht))return yt;for(var Bt=this.toBBox,wt=[];ht;){for(var Et=0;Et=0&&wt[ht].children.length>this._maxEntries;)this._split(wt,ht),ht--;this._adjustParentBBoxes(Bt,wt,ht)},T.prototype._split=function(J,ht){var yt=J[ht],Bt=yt.children.length,wt=this._minEntries;this._chooseSplitAxis(yt,wt,Bt);var Et=this._chooseSplitIndex(yt,wt,Bt),q=Pt(yt.children.splice(Et,yt.children.length-Et));q.height=yt.height,q.leaf=yt.leaf,R(yt,this.toBBox),R(q,this.toBBox),ht?J[ht-1].children.push(q):this._splitRoot(yt,q)},T.prototype._splitRoot=function(J,ht){this.data=Pt([J,ht]),this.data.height=J.height+1,this.data.leaf=!1,R(this.data,this.toBBox)},T.prototype._chooseSplitIndex=function(J,ht,yt){for(var Bt,wt,Et,q,K,$,st,rt=1/0,it=1/0,ct=ht;ct<=yt-ht;ct++){var at=Z(J,0,ct,this.toBBox),lt=Z(J,ct,yt,this.toBBox),mt=(wt=at,Et=lt,q=void 0,K=void 0,$=void 0,st=void 0,q=Math.max(wt.minX,Et.minX),K=Math.max(wt.minY,Et.minY),$=Math.min(wt.maxX,Et.maxX),st=Math.min(wt.maxY,Et.maxY),Math.max(0,$-q)*Math.max(0,st-K)),_t=ot(at)+ot(lt);mt=ht;rt--){var it=J.children[rt];U(q,J.leaf?wt(it):it),K+=ut(q)}return K},T.prototype._adjustParentBBoxes=function(J,ht,yt){for(var Bt=yt;Bt>=0;Bt--)U(ht[Bt],J)},T.prototype._condense=function(J){for(var ht=J.length-1,yt=void 0;ht>=0;ht--)J[ht].children.length===0?ht>0?(yt=J[ht-1].children).splice(yt.indexOf(J[ht]),1):this.clear():R(J[ht],this.toBBox)},T})});Array.prototype.findIndex=Array.prototype.findIndex||function(C){if(this===null)throw new TypeError("Array.prototype.findIndex called on null or undefined");if(typeof C!="function")throw new TypeError("callback must be a function");for(var k=Object(this),B=k.length>>>0,P=arguments[1],A=0;A>>0,P=arguments[1],A=0;A>>0;if(P===0)return!1;var A=k|0,T=Math.max(A>=0?A:P-Math.abs(A),0);function O(R,Z){return R===Z||typeof R=="number"&&typeof Z=="number"&&isNaN(R)&&isNaN(Z)}for(;T{this._isRelevantForEdit(B)&&B.pm.enable(k)}),this.throttledReInitEdit||(this.throttledReInitEdit=L.Util.throttle(this.handleLayerAdditionInGlobalEditMode,100,this)),this._addedLayersEdit={},this.map.on("layeradd",this._layerAddedEdit,this),this.map.on("layeradd",this.throttledReInitEdit,this),this._fireGlobalEditModeToggled(!0)},disableGlobalEditMode(){this._globalEditModeEnabled=!1,L.PM.Utils.findLayers(this.map).forEach(C=>{C.pm.disable()}),this.map.off("layeradd",this._layerAddedEdit,this),this.map.off("layeradd",this.throttledReInitEdit,this),this.Toolbar.toggleButton("editMode",this.globalEditModeEnabled()),this._fireGlobalEditModeToggled(!1)},globalEditEnabled(){return this.globalEditModeEnabled()},globalEditModeEnabled(){return this._globalEditModeEnabled},toggleGlobalEditMode(C=this.globalOptions){this.globalEditModeEnabled()?this.disableGlobalEditMode():this.enableGlobalEditMode(C)},handleLayerAdditionInGlobalEditMode(){let C=this._addedLayersEdit;if(this._addedLayersEdit={},this.globalEditModeEnabled())for(let k in C){let B=C[k];this._isRelevantForEdit(B)&&B.pm.enable({...this.globalOptions})}},_layerAddedEdit({layer:C}){this._addedLayersEdit[L.stamp(C)]=C},_isRelevantForEdit(C){return C.pm&&!(C instanceof L.LayerGroup)&&(!L.PM.optIn&&!C.options.pmIgnore||L.PM.optIn&&C.options.pmIgnore===!1)&&!C._pmTempLayer&&C.pm.options.allowEditing}},rr=is,sr={_globalDragModeEnabled:!1,enableGlobalDragMode(){let C=L.PM.Utils.findLayers(this.map);this._globalDragModeEnabled=!0,this._addedLayersDrag={},C.forEach(k=>{this._isRelevantForDrag(k)&&k.pm.enableLayerDrag()}),this.throttledReInitDrag||(this.throttledReInitDrag=L.Util.throttle(this.reinitGlobalDragMode,100,this)),this.map.on("layeradd",this._layerAddedDrag,this),this.map.on("layeradd",this.throttledReInitDrag,this),this.Toolbar.toggleButton("dragMode",this.globalDragModeEnabled()),this._fireGlobalDragModeToggled(!0)},disableGlobalDragMode(){let C=L.PM.Utils.findLayers(this.map);this._globalDragModeEnabled=!1,C.forEach(k=>{k.pm.disableLayerDrag()}),this.map.off("layeradd",this._layerAddedDrag,this),this.map.off("layeradd",this.throttledReInitDrag,this),this.Toolbar.toggleButton("dragMode",this.globalDragModeEnabled()),this._fireGlobalDragModeToggled(!1)},globalDragModeEnabled(){return!!this._globalDragModeEnabled},toggleGlobalDragMode(){this.globalDragModeEnabled()?this.disableGlobalDragMode():this.enableGlobalDragMode()},reinitGlobalDragMode(){let C=this._addedLayersDrag;if(this._addedLayersDrag={},this.globalDragModeEnabled())for(let k in C){let B=C[k];this._isRelevantForDrag(B)&&B.pm.enableLayerDrag()}},_layerAddedDrag({layer:C}){this._addedLayersDrag[L.stamp(C)]=C},_isRelevantForDrag(C){return C.pm&&!(C instanceof L.LayerGroup)&&(!L.PM.optIn&&!C.options.pmIgnore||L.PM.optIn&&C.options.pmIgnore===!1)&&!C._pmTempLayer&&C.pm.options.draggable}},ar=sr,Ci={_globalRemovalModeEnabled:!1,enableGlobalRemovalMode(){this._globalRemovalModeEnabled=!0,this.map.eachLayer(C=>{this._isRelevantForRemoval(C)&&(C.pm.enabled()&&C.pm.disable(),C.on("click",this.removeLayer,this))}),this.throttledReInitRemoval||(this.throttledReInitRemoval=L.Util.throttle(this.handleLayerAdditionInGlobalRemovalMode,100,this)),this._addedLayersRemoval={},this.map.on("layeradd",this._layerAddedRemoval,this),this.map.on("layeradd",this.throttledReInitRemoval,this),this.Toolbar.toggleButton("removalMode",this.globalRemovalModeEnabled()),this._fireGlobalRemovalModeToggled(!0)},disableGlobalRemovalMode(){this._globalRemovalModeEnabled=!1,this.map.eachLayer(C=>{C.off("click",this.removeLayer,this)}),this.map.off("layeradd",this._layerAddedRemoval,this),this.map.off("layeradd",this.throttledReInitRemoval,this),this.Toolbar.toggleButton("removalMode",this.globalRemovalModeEnabled()),this._fireGlobalRemovalModeToggled(!1)},globalRemovalEnabled(){return this.globalRemovalModeEnabled()},globalRemovalModeEnabled(){return!!this._globalRemovalModeEnabled},toggleGlobalRemovalMode(){this.globalRemovalModeEnabled()?this.disableGlobalRemovalMode():this.enableGlobalRemovalMode()},removeLayer(C){let k=C.target;this._isRelevantForRemoval(k)&&!k.pm.dragging()&&(k.removeFrom(this.map.pm._getContainingLayer()),k.remove(),k instanceof L.LayerGroup?(this._fireRemoveLayerGroup(k),this._fireRemoveLayerGroup(this.map,k)):(k.pm._fireRemove(k),k.pm._fireRemove(this.map,k)))},_isRelevantForRemoval(C){return C.pm&&!(C instanceof L.LayerGroup)&&(!L.PM.optIn&&!C.options.pmIgnore||L.PM.optIn&&C.options.pmIgnore===!1)&&!C._pmTempLayer&&C.pm.options.allowRemoval},handleLayerAdditionInGlobalRemovalMode(){let C=this._addedLayersRemoval;if(this._addedLayersRemoval={},this.globalRemovalModeEnabled())for(let k in C){let B=C[k];this._isRelevantForRemoval(B)&&(B.pm.enabled()&&B.pm.disable(),B.on("click",this.removeLayer,this))}},_layerAddedRemoval({layer:C}){this._addedLayersRemoval[L.stamp(C)]=C}},or=Ci,rn={_globalRotateModeEnabled:!1,enableGlobalRotateMode(){this._globalRotateModeEnabled=!0,L.PM.Utils.findLayers(this.map).filter(C=>C instanceof L.Polyline).forEach(C=>{this._isRelevantForRotate(C)&&C.pm.enableRotate()}),this.throttledReInitRotate||(this.throttledReInitRotate=L.Util.throttle(this.handleLayerAdditionInGlobalRotateMode,100,this)),this._addedLayersRotate={},this.map.on("layeradd",this._layerAddedRotate,this),this.map.on("layeradd",this.throttledReInitRotate,this),this.Toolbar.toggleButton("rotateMode",this.globalRotateModeEnabled()),this._fireGlobalRotateModeToggled()},disableGlobalRotateMode(){this._globalRotateModeEnabled=!1,L.PM.Utils.findLayers(this.map).filter(C=>C instanceof L.Polyline).forEach(C=>{C.pm.disableRotate()}),this.map.off("layeradd",this._layerAddedRotate,this),this.map.off("layeradd",this.throttledReInitRotate,this),this.Toolbar.toggleButton("rotateMode",this.globalRotateModeEnabled()),this._fireGlobalRotateModeToggled()},globalRotateModeEnabled(){return!!this._globalRotateModeEnabled},toggleGlobalRotateMode(){this.globalRotateModeEnabled()?this.disableGlobalRotateMode():this.enableGlobalRotateMode()},_isRelevantForRotate(C){return C.pm&&C instanceof L.Polyline&&!(C instanceof L.LayerGroup)&&(!L.PM.optIn&&!C.options.pmIgnore||L.PM.optIn&&C.options.pmIgnore===!1)&&!C._pmTempLayer&&C.pm.options.allowRotation},handleLayerAdditionInGlobalRotateMode(){let C=this._addedLayersRotate;if(this._addedLayersRotate={},this.globalRotateModeEnabled())for(let k in C){let B=C[k];this._isRelevantForRemoval(B)&&B.pm.enableRotate()}},_layerAddedRotate({layer:C}){this._addedLayersRotate[L.stamp(C)]=C}},me=rn,xi=et(mn()),ns={_fireDrawStart(C="Draw",k={}){this.__fire(this._map,"pm:drawstart",{shape:this._shape,workingLayer:this._layer},C,k)},_fireDrawEnd(C="Draw",k={}){this.__fire(this._map,"pm:drawend",{shape:this._shape},C,k)},_fireCreate(C,k="Draw",B={}){this.__fire(this._map,"pm:create",{shape:this._shape,marker:C,layer:C},k,B)},_fireCenterPlaced(C="Draw",k={}){let B=C==="Draw"?this._layer:void 0,P=C!=="Draw"?this._layer:void 0;this.__fire(this._layer,"pm:centerplaced",{shape:this._shape,workingLayer:B,layer:P,latlng:this._layer.getLatLng()},C,k)},_fireCut(C,k,B,P="Draw",A={}){this.__fire(C,"pm:cut",{shape:this._shape,layer:k,originalLayer:B},P,A)},_fireEdit(C=this._layer,k="Edit",B={}){this.__fire(C,"pm:edit",{layer:this._layer,shape:this.getShape()},k,B)},_fireEnable(C="Edit",k={}){this.__fire(this._layer,"pm:enable",{layer:this._layer,shape:this.getShape()},C,k)},_fireDisable(C="Edit",k={}){this.__fire(this._layer,"pm:disable",{layer:this._layer,shape:this.getShape()},C,k)},_fireUpdate(C="Edit",k={}){this.__fire(this._layer,"pm:update",{layer:this._layer,shape:this.getShape()},C,k)},_fireMarkerDragStart(C,k=void 0,B="Edit",P={}){this.__fire(this._layer,"pm:markerdragstart",{layer:this._layer,markerEvent:C,shape:this.getShape(),indexPath:k},B,P)},_fireMarkerDrag(C,k=void 0,B="Edit",P={}){this.__fire(this._layer,"pm:markerdrag",{layer:this._layer,markerEvent:C,shape:this.getShape(),indexPath:k},B,P)},_fireMarkerDragEnd(C,k=void 0,B=void 0,P="Edit",A={}){this.__fire(this._layer,"pm:markerdragend",{layer:this._layer,markerEvent:C,shape:this.getShape(),indexPath:k,intersectionReset:B},P,A)},_fireDragStart(C="Edit",k={}){this.__fire(this._layer,"pm:dragstart",{layer:this._layer,shape:this.getShape()},C,k)},_fireDrag(C,k="Edit",B={}){this.__fire(this._layer,"pm:drag",{...C,shape:this.getShape()},k,B)},_fireDragEnd(C="Edit",k={}){this.__fire(this._layer,"pm:dragend",{layer:this._layer,shape:this.getShape()},C,k)},_fireDragEnable(C="Edit",k={}){this.__fire(this._layer,"pm:dragenable",{layer:this._layer,shape:this.getShape()},C,k)},_fireDragDisable(C="Edit",k={}){this.__fire(this._layer,"pm:dragdisable",{layer:this._layer,shape:this.getShape()},C,k)},_fireRemove(C,k=C,B="Edit",P={}){this.__fire(C,"pm:remove",{layer:k,shape:this.getShape()},B,P)},_fireVertexAdded(C,k,B,P="Edit",A={}){this.__fire(this._layer,"pm:vertexadded",{layer:this._layer,workingLayer:this._layer,marker:C,indexPath:k,latlng:B,shape:this.getShape()},P,A)},_fireVertexRemoved(C,k,B="Edit",P={}){this.__fire(this._layer,"pm:vertexremoved",{layer:this._layer,marker:C,indexPath:k,shape:this.getShape()},B,P)},_fireVertexClick(C,k,B="Edit",P={}){this.__fire(this._layer,"pm:vertexclick",{layer:this._layer,markerEvent:C,indexPath:k,shape:this.getShape()},B,P)},_fireIntersect(C,k=this._layer,B="Edit",P={}){this.__fire(k,"pm:intersect",{layer:this._layer,intersection:C,shape:this.getShape()},B,P)},_fireLayerReset(C,k,B="Edit",P={}){this.__fire(this._layer,"pm:layerreset",{layer:this._layer,markerEvent:C,indexPath:k,shape:this.getShape()},B,P)},_fireChange(C,k="Edit",B={}){this.__fire(this._layer,"pm:change",{layer:this._layer,latlngs:C,shape:this.getShape()},k,B)},_fireTextChange(C,k="Edit",B={}){this.__fire(this._layer,"pm:textchange",{layer:this._layer,text:C,shape:this.getShape()},k,B)},_fireTextFocus(C="Edit",k={}){this.__fire(this._layer,"pm:textfocus",{layer:this._layer,shape:this.getShape()},C,k)},_fireTextBlur(C="Edit",k={}){this.__fire(this._layer,"pm:textblur",{layer:this._layer,shape:this.getShape()},C,k)},_fireSnapDrag(C,k,B="Snapping",P={}){this.__fire(C,"pm:snapdrag",k,B,P)},_fireSnap(C,k,B="Snapping",P={}){this.__fire(C,"pm:snap",k,B,P)},_fireUnsnap(C,k,B="Snapping",P={}){this.__fire(C,"pm:unsnap",k,B,P)},_fireRotationEnable(C,k,B="Rotation",P={}){this.__fire(C,"pm:rotateenable",{layer:this._layer,helpLayer:this._rotatePoly,shape:this.getShape()},B,P)},_fireRotationDisable(C,k="Rotation",B={}){this.__fire(C,"pm:rotatedisable",{layer:this._layer,shape:this.getShape()},k,B)},_fireRotationStart(C,k,B="Rotation",P={}){this.__fire(C,"pm:rotatestart",{layer:this._rotationLayer,helpLayer:this._layer,startAngle:this._startAngle,originLatLngs:k},B,P)},_fireRotation(C,k,B,P=this._rotationLayer,A="Rotation",T={}){this.__fire(C,"pm:rotate",{layer:P,helpLayer:this._layer,startAngle:this._startAngle,angle:P.pm.getAngle(),angleDiff:k,oldLatLngs:B,newLatLngs:P.getLatLngs()},A,T)},_fireRotationEnd(C,k,B,P="Rotation",A={}){this.__fire(C,"pm:rotateend",{layer:this._rotationLayer,helpLayer:this._layer,startAngle:k,angle:this._rotationLayer.pm.getAngle(),originLatLngs:B,newLatLngs:this._rotationLayer.getLatLngs()},P,A)},_fireActionClick(C,k,B,P="Toolbar",A={}){this.__fire(this._map,"pm:actionclick",{text:C.text,action:C,btnName:k,button:B},P,A)},_fireButtonClick(C,k,B="Toolbar",P={}){this.__fire(this._map,"pm:buttonclick",{btnName:C,button:k},B,P)},_fireLangChange(C,k,B,P,A="Global",T={}){this.__fire(this.map,"pm:langchange",{oldLang:C,activeLang:k,fallback:B,translations:P},A,T)},_fireGlobalDragModeToggled(C,k="Global",B={}){this.__fire(this.map,"pm:globaldragmodetoggled",{enabled:C,map:this.map},k,B)},_fireGlobalEditModeToggled(C,k="Global",B={}){this.__fire(this.map,"pm:globaleditmodetoggled",{enabled:C,map:this.map},k,B)},_fireGlobalRemovalModeToggled(C,k="Global",B={}){this.__fire(this.map,"pm:globalremovalmodetoggled",{enabled:C,map:this.map},k,B)},_fireGlobalCutModeToggled(C="Global",k={}){this.__fire(this._map,"pm:globalcutmodetoggled",{enabled:!!this._enabled,map:this._map},C,k)},_fireGlobalDrawModeToggled(C="Global",k={}){this.__fire(this._map,"pm:globaldrawmodetoggled",{enabled:this._enabled,shape:this._shape,map:this._map},C,k)},_fireGlobalRotateModeToggled(C="Global",k={}){this.__fire(this.map,"pm:globalrotatemodetoggled",{enabled:this.globalRotateModeEnabled(),map:this.map},C,k)},_fireRemoveLayerGroup(C,k=C,B="Edit",P={}){this.__fire(C,"pm:remove",{layer:k,shape:void 0},B,P)},_fireKeyeventEvent(C,k,B,P="Global",A={}){this.__fire(this.map,"pm:keyevent",{event:C,eventType:k,focusOn:B},P,A)},__fire(C,k,B,P,A={}){B=(0,xi.default)(B,A,{source:P}),L.PM.Utils._fireEvent(C,k,B)}},sn=ns,ma=()=>({_lastEvents:{keydown:void 0,keyup:void 0,current:void 0},_initKeyListener(C){this.map=C,L.DomEvent.on(document,"keydown keyup",this._onKeyListener,this),L.DomEvent.on(window,"blur",this._onBlur,this),C.once("unload",this._unbindKeyListenerEvents,this)},_handleEscapeKey(C){let k=this.map.pm;return!k.getGlobalOptions().exitModeOnEscape||!(k.globalDrawModeEnabled()||k.globalEditModeEnabled()||k.globalDragModeEnabled()||k.globalRemovalModeEnabled()||k.globalRotateModeEnabled()||k.globalCutModeEnabled())?!1:(C.preventDefault(),k.globalDrawModeEnabled()&&k.disableDraw(),k.globalEditModeEnabled()&&k.disableGlobalEditMode(),k.globalDragModeEnabled()&&k.disableGlobalDragMode(),k.globalRemovalModeEnabled()&&k.disableGlobalRemovalMode(),k.globalRotateModeEnabled()&&k.disableGlobalRotateMode(),k.globalCutModeEnabled()&&k.disableGlobalCutMode(),!0)},_handleEnterKey(C){let k=this.map.pm;if(!k.getGlobalOptions().finishOnEnter)return!1;let B=k.Draw.getActiveShape();if(!B)return!1;let P=k.Draw[B];return!P||!P._finishShape||!this._canFinishShape(P,B)?!1:(C.preventDefault(),P._finishShape(),!0)},_canFinishShape(C,k){if(["Marker","CircleMarker","Text"].includes(k))return!1;if(k==="Rectangle")return C._startMarker!==void 0;if(k==="Circle")return C._centerMarker&&C._layerGroup?.hasLayer(C._centerMarker);if(C._layer&&C._layer.getLatLngs){let B=C._layer.getLatLngs();if(k==="Line")return(B.flat?B.flat():B).length>=2;if(k==="Polygon"||k==="Cut")return B.length>=3}return!1},_unbindKeyListenerEvents(){L.DomEvent.off(document,"keydown keyup",this._onKeyListener,this),L.DomEvent.off(window,"blur",this._onBlur,this)},_onKeyListener(C){let k="document";this.map.getContainer().contains(C.target)&&(k="map");let B={event:C,eventType:C.type,focusOn:k};this._lastEvents[C.type]=B,this._lastEvents.current=B,this.map.pm._fireKeyeventEvent(C,C.type,k),C.type==="keydown"&&(C.key==="Escape"&&this._handleEscapeKey(C),C.key==="Enter"&&this._handleEnterKey(C))},_onBlur(C){C.altKey=!1;let k={event:C,eventType:C.type,focusOn:"document"};this._lastEvents[C.type]=k,this._lastEvents.current=k},getLastKeyEvent(C="current"){return this._lastEvents[C]},isShiftKeyPressed(){return this._lastEvents.current?.event.shiftKey},isAltKeyPressed(){return this._lastEvents.current?.event.altKey},isCtrlKeyPressed(){return this._lastEvents.current?.event.ctrlKey},isMetaKeyPressed(){return this._lastEvents.current?.event.metaKey},getPressedKey(){return this._lastEvents.current?.event.key}}),rs=ma,Cn=et(hi());function Wt(C){let k=L.PM.activeLang;return(0,Cn.default)($t[k],C)||(0,Cn.default)($t.en,C)||C}function ss(){return window.matchMedia?!window.matchMedia("(pointer: coarse)").matches:!0}function qt(C){for(let k=0;k{if(B.length!==0){let P=Array.isArray(B)?xn(B):B;Array.isArray(P)?P.length!==0&&k.push(P):k.push(P)}return k},[])}function Ue(C,k,B){let P={a:L.CRS.Earth.R,b:63567523142e-4,f:.0033528106647474805},{a:A,b:T,f:O}=P,R=C.lng,Z=C.lat,U=B,Q=Math.PI,Y=k*Q/180,ot=Math.sin(Y),ut=Math.cos(Y),vt=(1-O)*Math.tan(Z*Q/180),xt=1/Math.sqrt(1+vt*vt),Pt=vt*xt,At=Math.atan2(vt,ut),J=xt*ot,ht=1-J*J,yt=ht*(A*A-T*T)/(T*T),Bt=1+yt/16384*(4096+yt*(-768+yt*(320-175*yt))),wt=yt/1024*(256+yt*(-128+yt*(74-47*yt))),Et=U/(T*Bt),q=2*Math.PI,K,$,st;for(;Math.abs(Et-q)>1e-12;){K=Math.cos(2*At+Et),$=Math.sin(Et),st=Math.cos(Et);let kt=wt*$*(K+wt/4*(st*(-1+2*K*K)-wt/6*K*(-3+4*$*$)*(-3+4*K*K)));q=Et,Et=U/(T*Bt)+kt}let rt=Pt*$-xt*st*ut,it=Math.atan2(Pt*st+xt*$*ut,(1-O)*Math.sqrt(J*J+rt*rt)),ct=Math.atan2($*ot,xt*st-Pt*$*ut),at=O/16*ht*(4+O*(4-3*ht)),lt=ct-(1-at)*O*J*(Et+at*$*(K+at*st*(-1+2*K*K))),mt=R+lt*180/Q,_t=it*180/Q;return L.latLng(mt,_t)}function Ii(C,k,B,P,A=!0){let T,O,R,Z=[];for(let U=0;U180?xt:Pt,L.latLng([ut*A,vt])}function ur(C,k,B){let P=C.latLngToContainerPoint(k),A=C.latLngToContainerPoint(B),T=Math.atan2(A.y-P.y,A.x-P.x)*180/Math.PI+90;return T+=T<0?360:0,T}function zi(C,k,B,P){let A=ur(C,k,B);return as(k,A,P)}function ga(C,k,B="asc"){if(!k||Object.keys(k).length===0)return(Z,U)=>Z-U;let P=Object.keys(k),A,T=P.length-1,O={};for(;T>=0;)A=P[T],O[A.toLowerCase()]=k[A],T-=1;function R(Z){if(Z instanceof L.Marker)return"Marker";if(Z instanceof L.Circle)return"Circle";if(Z instanceof L.CircleMarker)return"CircleMarker";if(Z instanceof L.Rectangle)return"Rectangle";if(Z instanceof L.Polygon)return"Polygon";if(Z instanceof L.Polyline)return"Line"}return(Z,U)=>{let Q,Y;if(Q=R(Z.layer).toLowerCase(),Y=R(U.layer).toLowerCase(),!Q||!Y)return 0;let ot=Q in O?O[Q]:Number.MAX_SAFE_INTEGER,ut=Y in O?O[Y]:Number.MAX_SAFE_INTEGER,vt=0;return otut&&(vt=1),B==="desc"?vt*-1:vt}}function ri(C,k=C.getLatLngs()){return C instanceof L.Polygon?L.polygon(k).getLatLngs():L.polyline(k).getLatLngs()}function os(C,k){if(k.options.crs?.projection?.MAX_LATITUDE){let B=k.options.crs?.projection?.MAX_LATITUDE;C.lat=Math.max(Math.min(B,C.lat),-B)}return C}function Ni(C){return C.options.renderer||C._map&&(C._map._getPaneRenderer(C.options.pane)||C._map.options.renderer||C._map._renderer)||C._renderer}function lr(C,k){if(C=C.trim().toLowerCase(),k[C])return C;let B=C.replace(/[-_\s]/g,"_").match(/^([a-z]{2,3})(?:_([a-z]{2,3}))?$/);if(B){let P=[];B[2]&&P.push(`${B[1]}_${B[2]}`),P.push(B[1]);for(let A of P)if(k[A])return A}return C}var ya=L.Class.extend({includes:[rr,ar,or,me,sn],initialize(C){this.map=C,this.Draw=new L.PM.Draw(C),this.Toolbar=new L.PM.Toolbar(C),this.Keyboard=rs(),this.globalOptions={snappable:!0,layerGroup:void 0,snappingOrder:["Marker","CircleMarker","Circle","Line","Polygon","Rectangle"],panes:{vertexPane:"markerPane",layerPane:"overlayPane",markerPane:"markerPane"},draggable:!0,exitModeOnEscape:!1,finishOnEnter:!1},this.Keyboard._initKeyListener(C)},setLang(C="en",k,B="en"){C=lr(C,$t);let P=L.PM.activeLang;k&&($t[C]=(0,Qi.default)($t[B],k)),L.PM.activeLang=C,this.map.pm.Toolbar.reinit(),this._fireLangChange(P,C,B,$t[C])},addControls(C){this.Toolbar.addControls(C)},removeControls(){this.Toolbar.removeControls()},toggleControls(){this.Toolbar.toggleControls()},controlsVisible(){return this.Toolbar.isVisible},enableDraw(C="Polygon",k){C==="Poly"&&(C="Polygon"),this.Draw.enable(C,k)},disableDraw(C="Polygon"){C==="Poly"&&(C="Polygon"),this.Draw.disable(C)},setPathOptions(C,k={}){let B=k.ignoreShapes||[],P=k.merge||!1;this.map.pm.Draw.shapes.forEach(A=>{B.indexOf(A)===-1&&this.map.pm.Draw[A].setPathOptions(C,P)})},getGlobalOptions(){return this.globalOptions},setGlobalOptions(C){let k=(0,Qi.default)(this.globalOptions,C);k.editable&&(k.resizeableCircleMarker=k.editable,delete k.editable);let B=!1;this.map.pm.Draw.CircleMarker.enabled()&&!!this.map.pm.Draw.CircleMarker.options.resizeableCircleMarker!=!!k.resizeableCircleMarker&&(this.map.pm.Draw.CircleMarker.disable(),B=!0);let P=!1;this.map.pm.Draw.Circle.enabled()&&!!this.map.pm.Draw.Circle.options.resizeableCircle!=!!k.resizeableCircle&&(this.map.pm.Draw.Circle.disable(),P=!0),this.map.pm.Draw.shapes.forEach(A=>{this.map.pm.Draw[A].setOptions(k)}),B&&this.map.pm.Draw.CircleMarker.enable(),P&&this.map.pm.Draw.Circle.enable(),L.PM.Utils.findLayers(this.map).forEach(A=>{A.pm.setOptions(k)}),this.map.fire("pm:globaloptionschanged"),this.globalOptions=k,this.applyGlobalOptions()},applyGlobalOptions(){L.PM.Utils.findLayers(this.map).forEach(C=>{C.pm.enabled()&&C.pm.applyOptions()})},globalDrawModeEnabled(){return!!this.Draw.getActiveShape()},globalCutModeEnabled(){return!!this.Draw.Cut.enabled()},enableGlobalCutMode(C){return this.Draw.Cut.enable(C)},toggleGlobalCutMode(C){return this.Draw.Cut.toggle(C)},disableGlobalCutMode(){return this.Draw.Cut.disable()},getGeomanLayers(C=!1){let k=L.PM.Utils.findLayers(this.map);if(!C)return k;let B=L.featureGroup();return B._pmTempLayer=!0,k.forEach(P=>{B.addLayer(P)}),B},getGeomanDrawLayers(C=!1){let k=L.PM.Utils.findLayers(this.map).filter(P=>P._drawnByGeoman===!0);if(!C)return k;let B=L.featureGroup();return B._pmTempLayer=!0,k.forEach(P=>{B.addLayer(P)}),B},_getContainingLayer(){return this.globalOptions.layerGroup&&this.globalOptions.layerGroup instanceof L.LayerGroup?this.globalOptions.layerGroup:this.map},_isCRSSimple(){return this.map.options.crs===L.CRS.Simple},_touchEventCounter:0,_addTouchEvents(C){this._touchEventCounter===0&&(L.DomEvent.on(C,"touchmove",this._canvasTouchMove,this),L.DomEvent.on(C,"touchstart touchend touchcancel",this._canvasTouchClick,this)),this._touchEventCounter+=1},_removeTouchEvents(C){this._touchEventCounter===1&&(L.DomEvent.off(C,"touchmove",this._canvasTouchMove,this),L.DomEvent.off(C,"touchstart touchend touchcancel",this._canvasTouchClick,this)),this._touchEventCounter=this._touchEventCounter<=1?0:this._touchEventCounter-1},_canvasTouchMove(C){Ni(this.map)._onMouseMove(this._createMouseEvent("mousemove",C))},_canvasTouchClick(C){let k="";C.type==="touchstart"||C.type==="pointerdown"?k="mousedown":(C.type==="touchend"||C.type==="pointerup"||C.type==="touchcancel"||C.type==="pointercancel")&&(k="mouseup"),k&&Ni(this.map)._onClick(this._createMouseEvent(k,C))},_createMouseEvent(C,k){let B,P=k.touches[0]||k.changedTouches[0];try{B=new MouseEvent(C,{bubbles:k.bubbles,cancelable:k.cancelable,view:k.view,detail:P.detail,screenX:P.screenX,screenY:P.screenY,clientX:P.clientX,clientY:P.clientY,ctrlKey:k.ctrlKey,altKey:k.altKey,shiftKey:k.shiftKey,metaKey:k.metaKey,button:k.button,relatedTarget:k.relatedTarget})}catch{B=document.createEvent("MouseEvents"),B.initMouseEvent(C,k.bubbles,k.cancelable,k.view,P.detail,P.screenX,P.screenY,P.clientX,P.clientY,k.ctrlKey,k.altKey,k.shiftKey,k.metaKey,k.button,k.relatedTarget)}return B}}),Ke=ya,va=L.Control.extend({includes:[sn],options:{position:"topleft",disableByOtherButtons:!0},initialize(C){this._button=L.Util.extend({},this.options,C)},onAdd(C){return this._map=C,this._map.pm.Toolbar.options.oneBlock?this._container=this._map.pm.Toolbar._createContainer(this.options.position):this._button.tool==="edit"?this._container=this._map.pm.Toolbar.editContainer:this._button.tool==="options"?this._container=this._map.pm.Toolbar.optionsContainer:this._button.tool==="custom"?this._container=this._map.pm.Toolbar.customContainer:this._container=this._map.pm.Toolbar.drawContainer,this._renderButton(),this._container},_renderButton(){let C=this.buttonsDomNode;this.buttonsDomNode=this._makeButton(this._button),C?C.replaceWith(this.buttonsDomNode):this._container.appendChild(this.buttonsDomNode)},onRemove(){return this.buttonsDomNode.remove(),this._container},getText(){return this._button.text},getIconUrl(){return this._button.iconUrl},destroy(){this._button={},this._update()},toggle(C){return typeof C=="boolean"?this._button.toggleStatus=C:this._button.toggleStatus=!this._button.toggleStatus,this._applyStyleClasses(),this._updateActiveAction(this._button),this._button.toggleStatus},toggled(){return this._button.toggleStatus},onCreate(){this.toggle(!1)},disable(){this.toggle(!1),this._button.disabled=!0,this._updateDisabled()},enable(){this._button.disabled=!1,this._updateDisabled(),this._updateActiveAction(this._button)},_triggerClick(C){C&&C.preventDefault(),!this._button.disabled&&(this._button.onClick(C,{button:this,event:C}),this._clicked(C),this._button.afterClick(C,{button:this,event:C}))},_makeButton(C){let k=this.options.position.indexOf("right")>-1?"pos-right":"",B=L.DomUtil.create("div",`button-container ${k}`,this._container);C.title&&B.setAttribute("title",C.title);let P=L.DomUtil.create("a","leaflet-buttons-control-button",B);P.setAttribute("role","button"),P.setAttribute("tabindex","0"),P.href="#";let A=L.DomUtil.create("div",`leaflet-pm-actions-container ${k}`,B),T=C.actions,O={cancel:{text:Wt("actions.cancel"),title:Wt("actions.cancel"),onClick(){this._triggerClick()}},finishMode:{text:Wt("actions.finish"),title:Wt("actions.finish"),onClick(){this._triggerClick()}},removeLastVertex:{text:Wt("actions.removeLastVertex"),title:Wt("actions.removeLastVertex"),onClick(){this._map.pm.Draw[C.jsClass]._removeLastVertex()}},finish:{text:Wt("actions.finish"),title:Wt("actions.finish"),onClick(Z){this._map.pm.Draw[C.jsClass]._finishShape(Z)}}};C._preparedActions=T.map(Z=>{let U=typeof Z=="string"?Z:Z.name,Q;if(O[U])Q=O[U];else if(Z.text)Q=Z;else return Q;let Y=L.DomUtil.create("a",`leaflet-pm-action ${k} action-${U}`,A);if(Y.setAttribute("role","button"),Y.setAttribute("tabindex","0"),Y.href="#",Q.title&&(Y.title=Q.title),Y.innerHTML=Q.text,L.DomEvent.disableClickPropagation(Y),L.DomEvent.on(Y,"click",L.DomEvent.stop),Q._node=Y,!C.disabled&&Q.onClick){let ot=ut=>{ut.preventDefault();let vt="",{buttons:xt}=this._map.pm.Toolbar;for(let Pt in xt)if(xt[Pt]._button===C){vt=Pt;break}this._fireActionClick(Q,vt,C)};L.DomEvent.addListener(Y,"click",ot,this),L.DomEvent.addListener(Y,"click",Q.onClick,this),L.DomEvent.addListener(Y,"click",()=>this._updateActiveAction(C))}return Q}),this._updateActiveAction(C),C.toggleStatus&&L.DomUtil.addClass(B,"active");let R=L.DomUtil.create("div","control-icon",P);return C.iconUrl&&R.setAttribute("src",C.iconUrl),C.className&&L.DomUtil.addClass(R,C.className),L.DomEvent.disableClickPropagation(P),L.DomEvent.on(P,"click",L.DomEvent.stop),C.disabled||(L.DomEvent.addListener(P,"click",this._onBtnClick,this),L.DomEvent.addListener(P,"click",this._triggerClick,this)),C.disabled&&(L.DomUtil.addClass(P,"pm-disabled"),P.setAttribute("aria-disabled","true")),B},_applyStyleClasses(){this._container&&(!this._button.toggleStatus||this._button.cssToggle===!1?(L.DomUtil.removeClass(this.buttonsDomNode,"active"),L.DomUtil.removeClass(this._container,"activeChild")):(L.DomUtil.addClass(this.buttonsDomNode,"active"),L.DomUtil.addClass(this._container,"activeChild")))},_onBtnClick(){if(this._button.disabled)return;this._button.disableOtherButtons&&this._map.pm.Toolbar.triggerClickOnToggledButtons(this);let C="",{buttons:k}=this._map.pm.Toolbar;for(let B in k)if(k[B]._button===this._button){C=B;break}this._fireButtonClick(C,this._button)},_clicked(){this._button.doToggle&&this.toggle()},_updateDisabled(){if(!this._container)return;let C="pm-disabled",k=this.buttonsDomNode.children[0];this._button.disabled?(L.DomUtil.addClass(k,C),k.setAttribute("aria-disabled","true")):(L.DomUtil.removeClass(k,C),k.setAttribute("aria-disabled","false"))},_updateActiveAction(C){C._preparedActions?.forEach(k=>{k?._node&&(k.isActive&&k.isActive.call(this)?L.DomUtil.addClass(k._node,"active-action"):L.DomUtil.removeClass(k._node,"active-action"))})}}),us=va;L.Control.PMButton=us;var di=L.Class.extend({options:{drawMarker:!0,drawRectangle:!0,drawPolyline:!0,drawPolygon:!0,drawCircle:!0,drawCircleMarker:!0,drawText:!0,editMode:!0,dragMode:!0,cutPolygon:!0,removalMode:!0,rotateMode:!0,snappingOption:!0,drawControls:!0,editControls:!0,optionsControls:!0,customControls:!0,oneBlock:!1,position:"topleft",positions:{draw:"",edit:"",options:"",custom:""}},customButtons:[],initialize(C){this.customButtons=[],this.options.positions={draw:"",edit:"",options:"",custom:""},this.init(C)},reinit(){let C=this.isVisible;this.removeControls(),this._defineButtons(),C&&this.addControls()},init(C){this.map=C,this.buttons={},this.isVisible=!1,this.drawContainer=L.DomUtil.create("div","leaflet-pm-toolbar leaflet-pm-draw leaflet-bar leaflet-control"),this.editContainer=L.DomUtil.create("div","leaflet-pm-toolbar leaflet-pm-edit leaflet-bar leaflet-control"),this.optionsContainer=L.DomUtil.create("div","leaflet-pm-toolbar leaflet-pm-options leaflet-bar leaflet-control"),this.customContainer=L.DomUtil.create("div","leaflet-pm-toolbar leaflet-pm-custom leaflet-bar leaflet-control"),this._defineButtons()},_createContainer(C){let k=`${C}Container`;return this[k]||(this[k]=L.DomUtil.create("div",`leaflet-pm-toolbar leaflet-pm-${C} leaflet-bar leaflet-control`)),this[k]},getButtons(){return this.buttons},addControls(C=this.options){typeof C.editPolygon<"u"&&(C.editMode=C.editPolygon),typeof C.deleteLayer<"u"&&(C.removalMode=C.deleteLayer),L.Util.setOptions(this,C),this.applyIconStyle(),this.isVisible=!0,this._showHideButtons()},applyIconStyle(){let C=this.getButtons(),k={geomanIcons:{drawMarker:"control-icon leaflet-pm-icon-marker",drawPolyline:"control-icon leaflet-pm-icon-polyline",drawRectangle:"control-icon leaflet-pm-icon-rectangle",drawPolygon:"control-icon leaflet-pm-icon-polygon",drawCircle:"control-icon leaflet-pm-icon-circle",drawCircleMarker:"control-icon leaflet-pm-icon-circle-marker",editMode:"control-icon leaflet-pm-icon-edit",dragMode:"control-icon leaflet-pm-icon-drag",cutPolygon:"control-icon leaflet-pm-icon-cut",removalMode:"control-icon leaflet-pm-icon-delete",drawText:"control-icon leaflet-pm-icon-text"}};for(let B in C){let P=C[B];L.Util.setOptions(P,{className:k.geomanIcons[B]})}},removeControls(){let C=this.getButtons();for(let k in C)C[k].remove();this.isVisible=!1},deleteControl(C){let k=this._btnNameMapping(C);this.buttons[k]&&(this.buttons[k].remove(),delete this.buttons[k])},toggleControls(C=this.options){this.isVisible?this.removeControls():this.addControls(C)},_addButton(C,k){return this.buttons[C]=k,this.options[C]=!!this.options[C]||!1,this.buttons[C]},triggerClickOnToggledButtons(C){for(let k in this.buttons){let B=this.buttons[k];B._button.disableByOtherButtons&&B!==C&&B.toggled()&&B._triggerClick()}},toggleButton(C,k,B=!0){C==="editPolygon"&&(C="editMode"),C==="deleteLayer"&&(C="removalMode");let P=C;return B&&this.triggerClickOnToggledButtons(this.buttons[P]),this.buttons[P]?this.buttons[P].toggle(k):!1},_defineButtons(){let C={className:"control-icon leaflet-pm-icon-marker",title:Wt("buttonTitles.drawMarkerButton"),jsClass:"Marker",onClick:()=>{},afterClick:(ot,ut)=>{this.map.pm.Draw[ut.button._button.jsClass].toggle()},doToggle:!0,toggleStatus:!1,disableOtherButtons:!0,position:this.options.position,actions:["cancel"]},k={title:Wt("buttonTitles.drawPolyButton"),className:"control-icon leaflet-pm-icon-polygon",jsClass:"Polygon",onClick:()=>{},afterClick:(ot,ut)=>{this.map.pm.Draw[ut.button._button.jsClass].toggle()},doToggle:!0,toggleStatus:!1,disableOtherButtons:!0,position:this.options.position,actions:["finish","removeLastVertex","cancel"]},B={className:"control-icon leaflet-pm-icon-polyline",title:Wt("buttonTitles.drawLineButton"),jsClass:"Line",onClick:()=>{},afterClick:(ot,ut)=>{this.map.pm.Draw[ut.button._button.jsClass].toggle()},doToggle:!0,toggleStatus:!1,disableOtherButtons:!0,position:this.options.position,actions:["finish","removeLastVertex","cancel"]},P={title:Wt("buttonTitles.drawCircleButton"),className:"control-icon leaflet-pm-icon-circle",jsClass:"Circle",onClick:()=>{},afterClick:(ot,ut)=>{this.map.pm.Draw[ut.button._button.jsClass].toggle()},doToggle:!0,toggleStatus:!1,disableOtherButtons:!0,position:this.options.position,actions:["cancel"]},A={title:Wt("buttonTitles.drawCircleMarkerButton"),className:"control-icon leaflet-pm-icon-circle-marker",jsClass:"CircleMarker",onClick:()=>{},afterClick:(ot,ut)=>{this.map.pm.Draw[ut.button._button.jsClass].toggle()},doToggle:!0,toggleStatus:!1,disableOtherButtons:!0,position:this.options.position,actions:["cancel"]},T={title:Wt("buttonTitles.drawRectButton"),className:"control-icon leaflet-pm-icon-rectangle",jsClass:"Rectangle",onClick:()=>{},afterClick:(ot,ut)=>{this.map.pm.Draw[ut.button._button.jsClass].toggle()},doToggle:!0,toggleStatus:!1,disableOtherButtons:!0,position:this.options.position,actions:["cancel"]},O={title:Wt("buttonTitles.editButton"),className:"control-icon leaflet-pm-icon-edit",onClick:()=>{},afterClick:()=>{this.map.pm.toggleGlobalEditMode()},doToggle:!0,toggleStatus:!1,disableOtherButtons:!0,position:this.options.position,tool:"edit",actions:["finishMode"]},R={title:Wt("buttonTitles.dragButton"),className:"control-icon leaflet-pm-icon-drag",onClick:()=>{},afterClick:()=>{this.map.pm.toggleGlobalDragMode()},doToggle:!0,toggleStatus:!1,disableOtherButtons:!0,position:this.options.position,tool:"edit",actions:["finishMode"]},Z={title:Wt("buttonTitles.cutButton"),className:"control-icon leaflet-pm-icon-cut",jsClass:"Cut",onClick:()=>{},afterClick:(ot,ut)=>{this.map.pm.Draw[ut.button._button.jsClass].toggle({snappable:!0,cursorMarker:!0,allowSelfIntersection:!1})},doToggle:!0,toggleStatus:!1,disableOtherButtons:!0,position:this.options.position,tool:"edit",actions:["finish","removeLastVertex","cancel"]},U={title:Wt("buttonTitles.deleteButton"),className:"control-icon leaflet-pm-icon-delete",onClick:()=>{},afterClick:()=>{this.map.pm.toggleGlobalRemovalMode()},doToggle:!0,toggleStatus:!1,disableOtherButtons:!0,position:this.options.position,tool:"edit",actions:["finishMode"]},Q={title:Wt("buttonTitles.rotateButton"),className:"control-icon leaflet-pm-icon-rotate",onClick:()=>{},afterClick:()=>{this.map.pm.toggleGlobalRotateMode()},doToggle:!0,toggleStatus:!1,disableOtherButtons:!0,position:this.options.position,tool:"edit",actions:["finishMode"]},Y={className:"control-icon leaflet-pm-icon-text",title:Wt("buttonTitles.drawTextButton"),jsClass:"Text",onClick:()=>{},afterClick:(ot,ut)=>{this.map.pm.Draw[ut.button._button.jsClass].toggle()},doToggle:!0,toggleStatus:!1,disableOtherButtons:!0,position:this.options.position,actions:["cancel"]};this._addButton("drawMarker",new L.Control.PMButton(C)),this._addButton("drawPolyline",new L.Control.PMButton(B)),this._addButton("drawRectangle",new L.Control.PMButton(T)),this._addButton("drawPolygon",new L.Control.PMButton(k)),this._addButton("drawCircle",new L.Control.PMButton(P)),this._addButton("drawCircleMarker",new L.Control.PMButton(A)),this._addButton("drawText",new L.Control.PMButton(Y)),this._addButton("editMode",new L.Control.PMButton(O)),this._addButton("dragMode",new L.Control.PMButton(R)),this._addButton("cutPolygon",new L.Control.PMButton(Z)),this._addButton("removalMode",new L.Control.PMButton(U)),this._addButton("rotateMode",new L.Control.PMButton(Q))},_showHideButtons(){if(!this.isVisible)return;this.removeControls(),this.isVisible=!0;let C=this.getButtons(),k=[];this.options.drawControls===!1&&(k=k.concat(Object.keys(C).filter(B=>!C[B]._button.tool))),this.options.editControls===!1&&(k=k.concat(Object.keys(C).filter(B=>C[B]._button.tool==="edit"))),this.options.optionsControls===!1&&(k=k.concat(Object.keys(C).filter(B=>C[B]._button.tool==="options"))),this.options.customControls===!1&&(k=k.concat(Object.keys(C).filter(B=>C[B]._button.tool==="custom")));for(let B in C)if(this.options[B]&&k.indexOf(B)===-1){let P=C[B]._button.tool;P||(P="draw"),C[B].setPosition(this._getBtnPosition(P)),C[B].addTo(this.map)}},_getBtnPosition(C){return this.options.positions&&this.options.positions[C]?this.options.positions[C]:this.options.position},setBlockPosition(C,k){this.options.positions[C]=k,this._showHideButtons(),this.changeControlOrder()},getBlockPositions(){return this.options.positions},copyDrawControl(C,k){if(k)typeof k!="object"&&(k={name:k});else throw new TypeError("Button has no name");let B=this._btnNameMapping(C);if(!k.name)throw new TypeError("Button has no name");if(this.buttons[k.name])throw new TypeError("Button with this name already exists");let P=this.map.pm.Draw.createNewDrawInstance(k.name,B);k={...this.buttons[B]._button,...k};let A=this.createCustomControl(k);return{drawInstance:P,control:A}},createCustomControl(C){if(!C.name)throw new TypeError("Button has no name");if(this.buttons[C.name])throw new TypeError("Button with this name already exists");C.onClick||(C.onClick=()=>{}),C.afterClick||(C.afterClick=()=>{}),C.toggle!==!1&&(C.toggle=!0),C.block&&(C.block=C.block.toLowerCase()),(!C.block||C.block==="draw")&&(C.block=""),C.className?C.className.indexOf("control-icon")===-1&&(C.className=`control-icon ${C.className}`):C.className="control-icon";let k={tool:C.block,className:C.className,title:C.title||"",jsClass:C.name,onClick:C.onClick,afterClick:C.afterClick,doToggle:C.toggle,toggleStatus:!1,disableOtherButtons:C.disableOtherButtons??!0,disableByOtherButtons:C.disableByOtherButtons??!0,cssToggle:C.toggle,position:this.options.position,actions:C.actions||[],disabled:!!C.disabled};this.options[C.name]!==!1&&(this.options[C.name]=!0);let B=this._addButton(C.name,new L.Control.PMButton(k));return this.changeControlOrder(),B},controlExists(C){return!!this.getButton(C)},getButton(C){return this.getButtons()[C]},getButtonsInBlock(C){let k={};if(C)for(let B in this.getButtons()){let P=this.getButtons()[B];(P._button.tool===C||C==="draw"&&!P._button.tool)&&(k[B]=P)}return k},changeControlOrder(C=[]){let k=this._shapeMapping(),B=[];C.forEach(T=>{k[T]?B.push(k[T]):B.push(T)});let P=this.getButtons(),A={};B.forEach(T=>{P[T]&&(A[T]=P[T])}),Object.keys(P).filter(T=>!P[T]._button.tool||P[T]._button.tool==="draw").forEach(T=>{B.indexOf(T)===-1&&(A[T]=P[T])}),Object.keys(P).filter(T=>P[T]._button.tool==="edit").forEach(T=>{B.indexOf(T)===-1&&(A[T]=P[T])}),Object.keys(P).filter(T=>P[T]._button.tool==="options").forEach(T=>{B.indexOf(T)===-1&&(A[T]=P[T])}),Object.keys(P).filter(T=>P[T]._button.tool==="custom").forEach(T=>{B.indexOf(T)===-1&&(A[T]=P[T])}),Object.keys(P).forEach(T=>{B.indexOf(T)===-1&&(A[T]=P[T])}),this.map.pm.Toolbar.buttons=A,this._showHideButtons()},getControlOrder(){let C=this.getButtons(),k=[];for(let B in C)k.push(B);return k},changeActionsOfControl(C,k){let B=this._btnNameMapping(C);if(!B)throw new TypeError("No name passed");if(!k)throw new TypeError("No actions passed");if(!this.buttons[B])throw new TypeError("Button with this name not exists");this.buttons[B]._button.actions=k,this.changeControlOrder()},setButtonDisabled(C,k){let B=this._btnNameMapping(C);k?this.buttons[B].disable():this.buttons[B].enable()},_shapeMapping(){return{Marker:"drawMarker",Circle:"drawCircle",Polygon:"drawPolygon",Rectangle:"drawRectangle",Polyline:"drawPolyline",Line:"drawPolyline",CircleMarker:"drawCircleMarker",Edit:"editMode",Drag:"dragMode",Cut:"cutPolygon",Removal:"removalMode",Rotate:"rotateMode",Text:"drawText"}},_btnNameMapping(C){let k=this._shapeMapping();return k[C]?k[C]:C}}),ls=di,hs=et(mn()),hr={_initSnappableMarkers(){this.options.snapDistance=this.options.snapDistance||30,this.options.snapSegment=this.options.snapSegment===void 0?!0:this.options.snapSegment,this._assignEvents(this._markers),this._layer.off("pm:dragstart",this._unsnap,this),this._layer.on("pm:dragstart",this._unsnap,this)},_disableSnapping(){this._layer.off("pm:dragstart",this._unsnap,this)},_assignEvents(C){C.forEach(k=>{if(Array.isArray(k)){this._assignEvents(k);return}k.off("drag",this._handleSnapping,this),k.on("drag",this._handleSnapping,this),k.off("dragend",this._cleanupSnapping,this),k.on("dragend",this._cleanupSnapping,this)})},_cleanupSnapping(C){if(C){let k=C.target;k._snapped=!1}delete this._snapList,this.throttledList&&(this._map.off("layeradd",this.throttledList,this),this.throttledList=void 0),this._map.off("layerremove",this._handleSnapLayerRemoval,this),this.debugIndicatorLines&&this.debugIndicatorLines.forEach(k=>{k.remove()})},_handleThrottleSnapping(){this.throttledList&&this._createSnapList()},_handleSnapping(C,k=!1){let B=C.target;if(B._snapped=!1,this.throttledList||(this.throttledList=L.Util.throttle(this._handleThrottleSnapping,100,this)),C?.originalEvent?.altKey||this._map?.pm?.Keyboard.isAltKeyPressed())return!1;let P;if(k){if(!this._otherSnapLayers||this._otherSnapLayers.length===0)return!1;P=this._otherSnapLayers}else this._snapList===void 0&&(this._createSnapList(),this._map.off("layeradd",this.throttledList,this),this._map.on("layeradd",this.throttledList,this)),P=this._snapList;if(P.length<=0)return!1;let A=this._calcClosestLayer(B.getLatLng(),P);if(Object.keys(A).length===0)return!1;let T=A.layer instanceof L.Marker||A.layer instanceof L.CircleMarker||!this.options.snapSegment,O;T?O=A.latlng:O=this._checkPrioritiySnapping(A);let R=this.options.snapDistance,Z={marker:B,shape:this._shape,snapLatLng:O,segment:A.segment,layer:this._layer,workingLayer:this._layer,layerInteractedWith:A.layer,distance:A.distance};if(this._fireSnapDrag(Z.marker,Z),this._fireSnapDrag(this._layer,Z),A.distance{this._snapLatLng=O,this._fireSnap(B,Z),this._fireSnap(this._layer,Z)},Q=this._snapLatLng||{},Y=O||{};(Q.lat!==Y.lat||Q.lng!==Y.lng)&&U()}else this._snapLatLng&&(this._unsnap(Z),B._snapped=!1,B._snapInfo=void 0,this._fireUnsnap(Z.marker,Z),this._fireUnsnap(this._layer,Z));return!0},_createSnapList(){let C=[],k=[],B=this._map;B.off("layerremove",this._handleSnapLayerRemoval,this),B.on("layerremove",this._handleSnapLayerRemoval,this),B.eachLayer(P=>{if((P instanceof L.Polyline||P instanceof L.Marker||P instanceof L.CircleMarker||P instanceof L.ImageOverlay)&&P.options.snapIgnore!==!0){if(P.options.snapIgnore===void 0&&(!L.PM.optIn&&P.options.pmIgnore===!0||L.PM.optIn&&P.options.pmIgnore!==!1))return;(P instanceof L.Circle||P instanceof L.CircleMarker)&&P.pm&&P.pm._hiddenPolyCircle?C.push(P.pm._hiddenPolyCircle):P instanceof L.ImageOverlay&&(P=L.rectangle(P.getBounds())),C.push(P);let A=L.polyline([],{color:"red",pmIgnore:!0});A._pmTempLayer=!0,k.push(A),(P instanceof L.Circle||P instanceof L.CircleMarker)&&k.push(A)}}),C=C.filter(P=>this._layer!==P),C=C.filter(P=>P._latlng||P._latlngs&&qt(P._latlngs)),C=C.filter(P=>!P._pmTempLayer),this._otherSnapLayers?(this._otherSnapLayers.forEach(()=>{let P=L.polyline([],{color:"red",pmIgnore:!0});P._pmTempLayer=!0,k.push(P)}),this._snapList=C.concat(this._otherSnapLayers)):this._snapList=C,this.debugIndicatorLines=k},_handleSnapLayerRemoval({layer:C}){if(!C._leaflet_id)return;let k=this._snapList.findIndex(B=>B._leaflet_id===C._leaflet_id);k>-1&&this._snapList.splice(k,1)},_calcClosestLayer(C,k){return this._calcClosestLayers(C,k,1)[0]},_calcClosestLayers(C,k,B=1){let P=[],A={};k.forEach((O,R)=>{if(O._parentCopy&&O._parentCopy===this._layer||O.getLatLngs?.().flat(5).length<2)return;let Z=this._calcLayerDistances(C,O);if(Z.distance=Math.floor(Z.distance),this.debugIndicatorLines){if(!this.debugIndicatorLines[R]){let U=L.polyline([],{color:"red",pmIgnore:!0});U._pmTempLayer=!0,this.debugIndicatorLines[R]=U}this.debugIndicatorLines[R].setLatLngs([C,Z.latlng])}B===1&&(A.distance===void 0||Z.distance-5<=A.distance)?(Z.distance+5O.distance-R.distance)),B===-1&&(B=P.length);let T=this._getClosestLayerByPriority(P,B);return L.Util.isArray(T)?T:[T]},_calcLayerDistances(C,k){let B=this._map,P=k instanceof L.Marker||k instanceof L.CircleMarker,A=k instanceof L.Polygon,T=C;if(P){let O=k.getLatLng();return{latlng:{...O},distance:this._getDistance(B,O,T)}}return this._calcLatLngDistances(T,k.getLatLngs(),B,A)},_calcLatLngDistances(C,k,B,P=!1){let A,T,O,R=Z=>{Z.forEach((U,Q)=>{if(Array.isArray(U)){R(U);return}if(this.options.snapSegment){let Y=U,ot;P?ot=Q+1===Z.length?0:Q+1:ot=Q+1===Z.length?void 0:Q+1;let ut=Z[ot];if(ut){let vt=this._getDistanceToSegment(B,C,Y,ut);(T===void 0||vtO._leaflet_id-R._leaflet_id);let B=["Marker","CircleMarker","Circle","Line","Polygon","Rectangle"],P=this._map.pm.globalOptions.snappingOrder||[],A=0,T={};return P.concat(B).forEach(O=>{T[O]||(A+=1,T[O]=A)}),C.sort(ga("instanceofShape",T)),k===1?C[0]||{}:C.slice(0,k)},_checkPrioritiySnapping(C){let k=this._map,B=C.segment[0],P=C.segment[1],A=C.latlng,T=A;if(this.options.snapVertex){let O=this._getDistance(k,B,A),R=this._getDistance(k,P,A),Z=O{this[B]=new L.PM.Draw[B](this._map)}),this.Marker.setOptions({continueDrawing:!0}),this.CircleMarker.setOptions({continueDrawing:!0})},setPathOptions(C,k=!1){k?this.options.pathOptions=(0,hs.default)(this.options.pathOptions,C):this.options.pathOptions=C},getShapes(){return this.shapes},getShape(){return this._shape},enable(C,k){if(!C)throw new Error(`Error: Please pass a shape as a parameter. Possible shapes are: ${this.getShapes().join(",")}`);this.disable(),this[C].enable(k)},disable(){this.shapes.forEach(C=>{this[C].disable()})},addControls(){this.shapes.forEach(C=>{this[C].addButton()})},getActiveShape(){let C;return this.shapes.forEach(k=>{this[k]._enabled&&(C=k)}),C},_setGlobalDrawMode(){this._shape==="Cut"?this._fireGlobalCutModeToggled():this._fireGlobalDrawModeToggled();let C=[];this._map.eachLayer(k=>{(k instanceof L.Polyline||k instanceof L.Marker||k instanceof L.Circle||k instanceof L.CircleMarker||k instanceof L.ImageOverlay)&&(k._pmTempLayer||C.push(k))}),this._enabled?C.forEach(k=>{L.PM.Utils.disablePopup(k)}):C.forEach(k=>{L.PM.Utils.enablePopup(k)})},createNewDrawInstance(C,k){let B=this._getShapeFromBtnName(k);if(this[C])throw new TypeError("Draw Type already exists");if(!L.PM.Draw[B])throw new TypeError(`There is no class L.PM.Draw.${B}`);return this[C]=new L.PM.Draw[B](this._map),this[C].toolbarButtonName=C,this[C]._shape=C,this.shapes.push(C),this[k]&&this[C].setOptions(this[k].options),this[C].setOptions(this[C].options),this[C]},_getShapeFromBtnName(C){let k={drawMarker:"Marker",drawCircle:"Circle",drawPolygon:"Polygon",drawPolyline:"Line",drawRectangle:"Rectangle",drawCircleMarker:"CircleMarker",editMode:"Edit",dragMode:"Drag",cutPolygon:"Cut",removalMode:"Removal",rotateMode:"Rotate",drawText:"Text"};return k[C]?k[C]:this[C]?this[C]._shape:C},_finishLayer(C){C.pm&&(C.pm.setOptions(this.options),C.pm._shape=this._shape,C.pm._map=this._map),this._addDrawnLayerProp(C)},_addDrawnLayerProp(C){C._drawnByGeoman=!0},_setPane(C,k){k==="layerPane"?C.options.pane=this._map.pm.globalOptions.panes&&this._map.pm.globalOptions.panes.layerPane||"overlayPane":k==="vertexPane"?C.options.pane=this._map.pm.globalOptions.panes&&this._map.pm.globalOptions.panes.vertexPane||"markerPane":k==="markerPane"&&(C.options.pane=this._map.pm.globalOptions.panes&&this._map.pm.globalOptions.panes.markerPane||"markerPane")},_isFirstLayer(){return(this._map||this._layer._map).pm.getGeomanLayers().length===0}}),fe=ds;fe.Marker=fe.extend({initialize(C){this._map=C,this._shape="Marker",this.toolbarButtonName="drawMarker",this._layerIsDragging=!1},enable(C){L.Util.setOptions(this,C),this._enabled=!0,this._isTouchDevice=!ss(),this._map.getContainer().classList.add("geoman-draw-cursor"),this._map.on("click",this._createMarker,this),this._map.pm.Toolbar.toggleButton(this.toolbarButtonName,!0),this._isTouchDevice?(this._createTouchHint(),this._hintMarker=L.marker(this._map.getCenter(),{...this.options.markerStyle,opacity:0,interactive:!1}),this._setPane(this._hintMarker,"markerPane"),this._hintMarker._pmTempLayer=!0):(this._hintMarker=L.marker(this._map.getCenter(),this.options.markerStyle),this._setPane(this._hintMarker,"markerPane"),this._hintMarker._pmTempLayer=!0,this._hintMarker.addTo(this._map),this.options.tooltips&&this._hintMarker.bindTooltip(Wt("tooltips.placeMarker"),{permanent:!0,offset:L.point(0,10),direction:"bottom",opacity:.8}).openTooltip(),this._map.on("mousemove",this._syncHintMarker,this)),this._layer=this._hintMarker,this.options.markerEditable&&this._map.eachLayer(k=>{this.isRelevantMarker(k)&&k.pm.enable()}),this._fireDrawStart(),this._setGlobalDrawMode()},disable(){this._enabled&&(this._enabled=!1,this._map.getContainer().classList.remove("geoman-draw-cursor"),this._map.off("click",this._createMarker,this),this._isTouchDevice?(this._removeTouchHint(),this._hintMarker=null):(this._hintMarker.remove(),this._map.off("mousemove",this._syncHintMarker,this)),this._map.eachLayer(C=>{this.isRelevantMarker(C)&&C.pm.disable()}),this._map.pm.Toolbar.toggleButton(this.toolbarButtonName,!1),this.options.snappable&&this._cleanupSnapping(),this._fireDrawEnd(),this._setGlobalDrawMode())},enabled(){return this._enabled},toggle(C){this.enabled()?this.disable():this.enable(C)},isRelevantMarker(C){return C instanceof L.Marker&&C.pm&&!C._pmTempLayer&&!C.pm._initTextMarker},_syncHintMarker(C){if(this._hintMarker.setLatLng(C.latlng),this.options.snappable){let k=C;k.target=this._hintMarker,this._handleSnapping(k)}this._fireChange(this._hintMarker.getLatLng(),"Draw")},_createMarker(C){if(!C.latlng||this._layerIsDragging||this.options.requireSnapToFinish&&!this._hintMarker._snapped&&!this._isFirstLayer())return;this._hintMarker._snapped||this._hintMarker.setLatLng(C.latlng);let k=this._hintMarker.getLatLng(),B=new L.Marker(k,this.options.markerStyle);this._setPane(B,"markerPane"),this._finishLayer(B),B.pm||(B.options.draggable=!1),B.addTo(this._map.pm._getContainingLayer()),B.pm&&this.options.markerEditable?B.pm.enable():B.dragging&&B.dragging.disable(),this._fireCreate(B),this._cleanupSnapping(),this.options.continueDrawing||this.disable()},setStyle(){this.options.markerStyle?.icon&&this._hintMarker?.setIcon(this.options.markerStyle.icon)},_createTouchHint(){this.options.tooltips&&(this._touchHint=L.DomUtil.create("div","leaflet-pm-touch-hint"),this._touchHint.textContent=Wt("tooltips.placeMarkerTouch"),this._map.getContainer().appendChild(this._touchHint))},_removeTouchHint(){this._touchHint&&this._touchHint.parentNode&&(this._touchHint.parentNode.removeChild(this._touchHint),this._touchHint=null)}});var De=63710088e-1,La={centimeters:De*100,centimetres:De*100,degrees:360/(2*Math.PI),feet:De*3.28084,inches:De*39.37,kilometers:De/1e3,kilometres:De/1e3,meters:De,metres:De,miles:De/1609.344,millimeters:De*1e3,millimetres:De*1e3,nauticalmiles:De/1852,radians:1,yards:De*1.0936};function We(C,k,B={}){let P={type:"Feature"};return(B.id===0||B.id)&&(P.id=B.id),B.bbox&&(P.bbox=B.bbox),P.properties=k||{},P.geometry=C,P}function Gi(C,k,B={}){if(!C)throw new Error("coordinates is required");if(!Array.isArray(C))throw new Error("coordinates must be an Array");if(C.length<2)throw new Error("coordinates must be at least 2 numbers long");if(!ji(C[0])||!ji(C[1]))throw new Error("coordinates must contain numbers");return We({type:"Point",coordinates:C},k,B)}function an(C,k,B={}){if(C.length<2)throw new Error("coordinates must be an array of two or more positions");return We({type:"LineString",coordinates:C},k,B)}function Ie(C,k={}){let B={type:"FeatureCollection"};return k.id&&(B.id=k.id),k.bbox&&(B.bbox=k.bbox),B.features=C,B}function kn(C,k="kilometers"){let B=La[k];if(!B)throw new Error(k+" units is invalid");return C*B}function pi(C){return C%(2*Math.PI)*180/Math.PI}function Zi(C){return C%360*Math.PI/180}function ji(C){return!isNaN(C)&&C!==null&&!Array.isArray(C)}function ze(C){return C!==null&&typeof C=="object"&&!Array.isArray(C)}function ps(C){let k,B,P={type:"FeatureCollection",features:[]};if(C.type==="Feature"?B=C.geometry:B=C,B.type==="LineString")k=[B.coordinates];else if(B.type==="MultiLineString")k=B.coordinates;else if(B.type==="MultiPolygon")k=[].concat(...B.coordinates);else if(B.type==="Polygon")k=B.coordinates;else throw new Error("Input must be a LineString, MultiLineString, Polygon, or MultiPolygon Feature or Geometry");return k.forEach(A=>{k.forEach(T=>{for(let O=0;O=0&&U<=1&&(ut.onLine1=!0),Q>=0&&Q<=1&&(ut.onLine2=!0),ut.onLine1&&ut.onLine2?[ut.x,ut.y]:!1)}var Mn=ps;fe.Line=fe.extend({initialize(C){this._map=C,this._shape="Line",this.toolbarButtonName="drawPolyline",this._doesSelfIntersect=!1},enable(C){L.Util.setOptions(this,C),this._enabled=!0,this._markers=[],this._layerGroup=new L.FeatureGroup,this._layerGroup._pmTempLayer=!0,this._layerGroup.addTo(this._map),this._layer=L.polyline([],{...this.options.templineStyle,pmIgnore:!1}),this._setPane(this._layer,"layerPane"),this._layer._pmTempLayer=!0,this._layerGroup.addLayer(this._layer),this._hintline=L.polyline([],this.options.hintlineStyle),this._setPane(this._hintline,"layerPane"),this._hintline._pmTempLayer=!0,this._layerGroup.addLayer(this._hintline),this._hintMarker=L.marker(this._map.getCenter(),{interactive:!1,zIndexOffset:100,icon:L.divIcon({className:"marker-icon cursor-marker"})}),this._setPane(this._hintMarker,"vertexPane"),this._hintMarker._pmTempLayer=!0,this._layerGroup.addLayer(this._hintMarker),this.options.cursorMarker&&L.DomUtil.addClass(this._hintMarker._icon,"visible"),this.options.tooltips&&this._hintMarker.bindTooltip(Wt("tooltips.firstVertex"),{permanent:!0,offset:L.point(0,10),direction:"bottom",opacity:.8}).openTooltip(),this._map.getContainer().classList.add("geoman-draw-cursor"),this._map.on("click",this._createVertex,this),this.options.finishOn&&this.options.finishOn!=="snap"&&this._map.on(this.options.finishOn,this._finishShape,this),this.options.finishOn==="dblclick"&&(this.tempMapDoubleClickZoomState=this._map.doubleClickZoom._enabled,this.tempMapDoubleClickZoomState&&this._map.doubleClickZoom.disable()),this._map.on("mousemove",this._syncHintMarker,this),this._hintMarker.on("move",this._syncHintLine,this),this._map.pm.Toolbar.toggleButton(this.toolbarButtonName,!0),this._otherSnapLayers=[],this.isRed=!1,this._fireDrawStart(),this._setGlobalDrawMode()},disable(){this._enabled&&(this._enabled=!1,this._map.getContainer().classList.remove("geoman-draw-cursor"),this._map.off("click",this._createVertex,this),this._map.off("mousemove",this._syncHintMarker,this),this.options.finishOn&&this.options.finishOn!=="snap"&&this._map.off(this.options.finishOn,this._finishShape,this),this.tempMapDoubleClickZoomState&&this._map.doubleClickZoom.enable(),this._map.removeLayer(this._layerGroup),this._map.pm.Toolbar.toggleButton(this.toolbarButtonName,!1),this.options.snappable&&this._cleanupSnapping(),this._fireDrawEnd(),this._setGlobalDrawMode())},enabled(){return this._enabled},toggle(C){this.enabled()?this.disable():this.enable(C)},_syncHintLine(){let C=this._layer.getLatLngs();if(C.length>0){let k=C[C.length-1];this._hintline.setLatLngs([k,this._hintMarker.getLatLng()])}},_syncHintMarker(C){if(this._hintMarker.setLatLng(C.latlng),this.options.snappable){let B=C;B.target=this._hintMarker,this._handleSnapping(B)}else if(this._otherSnapLayers&&this._otherSnapLayers.length>0){let B=C;B.target=this._hintMarker,this._handleSnapping(B,!0)}this.options.allowSelfIntersection||this._handleSelfIntersection(!0,this._hintMarker.getLatLng());let k=this._layer._defaultShape().slice();k.push(this._hintMarker.getLatLng()),this._change(k)},hasSelfIntersection(){return Mn(this._layer.toGeoJSON(15)).features.length>0},_handleSelfIntersection(C,k){let B=L.polyline(this._layer.getLatLngs());C&&(k||(k=this._hintMarker.getLatLng()),B.addLatLng(k));let P=Mn(B.toGeoJSON(15));this._doesSelfIntersect=P.features.length>0,this._doesSelfIntersect?this.isRed||(this.isRed=!0,this._hintline.setStyle({color:"#f00000ff"}),this._fireIntersect(P,this._map,"Draw")):this._hintline.isEmpty()||(this.isRed=!1,this._hintline.setStyle(this.options.hintlineStyle))},_createVertex(C){if(!this.options.allowSelfIntersection&&(this._handleSelfIntersection(!0,C.latlng),this._doesSelfIntersect))return;this._hintMarker._snapped||this._hintMarker.setLatLng(C.latlng);let k=this._hintMarker.getLatLng(),B=this._layer.getLatLngs(),P=B[B.length-1];if(k.equals(B[0])||B.length>0&&k.equals(P)){this._finishShape();return}this._layer._latlngInfo=this._layer._latlngInfo||[],this._layer._latlngInfo.push({latlng:k,snapInfo:this._hintMarker._snapInfo}),this._layer.addLatLng(k);let A=this._createMarker(k);this._setTooltipText(),this._setHintLineAfterNewVertex(k),this._fireVertexAdded(A,void 0,k,"Draw"),this._change(this._layer.getLatLngs()),this.options.finishOn==="snap"&&this._hintMarker._snapped&&this._finishShape(C)},_setHintLineAfterNewVertex(C){this._hintline.setLatLngs([C,C])},_removeLastVertex(){let C=this._markers;if(C.length<=1){this.disable();return}let k=this._layer.getLatLngs(),B=C[C.length-1],{indexPath:P}=L.PM.Utils.findDeepMarkerIndex(C,B);C.pop(),this._layerGroup.removeLayer(B);let A=C[C.length-1],T=k.indexOf(A.getLatLng());k=k.slice(0,T+1),this._layer.setLatLngs(k),this._layer._latlngInfo.pop(),this._syncHintLine(),this._setTooltipText(),this._fireVertexRemoved(B,P,"Draw"),this._change(this._layer.getLatLngs())},_finishShape(){if(!this.options.allowSelfIntersection&&(this._handleSelfIntersection(!1),this._doesSelfIntersect)||this.options.requireSnapToFinish&&!this._hintMarker._snapped&&!this._isFirstLayer())return;let C=this._layer.getLatLngs();if(C.length<=1)return;let k=L.polyline(C,this.options.pathOptions);this._setPane(k,"layerPane"),this._finishLayer(k),k.addTo(this._map.pm._getContainingLayer()),this._fireCreate(k),this.options.snappable&&this._cleanupSnapping();let B=this._hintMarker.getLatLng();this.disable(),this.options.continueDrawing&&(this.enable(),this._hintMarker.setLatLng(B))},_createMarker(C){let k=new L.Marker(C,{draggable:!1,icon:L.divIcon({className:"marker-icon"})});return this._setPane(k,"vertexPane"),k._pmTempLayer=!0,this._layerGroup.addLayer(k),this._markers.push(k),k.on("click",this._finishShape,this),k},_setTooltipText(){let{length:C}=this._layer.getLatLngs().flat(),k="";C<=1?k=Wt("tooltips.continueLine"):k=Wt("tooltips.finishLine"),this._hintMarker.setTooltipContent(k)},_change(C){this._fireChange(C,"Draw")},setStyle(){this._layer?.setStyle(this.options.templineStyle),this._hintline?.setStyle(this.options.hintlineStyle)}}),fe.Polygon=fe.Line.extend({initialize(C){this._map=C,this._shape="Polygon",this.toolbarButtonName="drawPolygon"},enable(C){L.PM.Draw.Line.prototype.enable.call(this,C),this._layer.pm._shape="Polygon"},_createMarker(C){let k=new L.Marker(C,{draggable:!1,icon:L.divIcon({className:"marker-icon"})});return this._setPane(k,"vertexPane"),k._pmTempLayer=!0,this._layerGroup.addLayer(k),this._markers.push(k),this._layer.getLatLngs().flat().length===1?(k.on("click",this._finishShape,this),this._tempSnapLayerIndex=this._otherSnapLayers.push(k)-1,this.options.snappable&&this._cleanupSnapping()):k.on("click",()=>1),k},_setTooltipText(){let{length:C}=this._layer.getLatLngs().flat(),k="";C<=2?k=Wt("tooltips.continueLine"):k=Wt("tooltips.finishPoly"),this._hintMarker.setTooltipContent(k)},_finishShape(){if(!this.options.allowSelfIntersection&&(this._handleSelfIntersection(!0,this._layer.getLatLngs()[0]),this._doesSelfIntersect)||this.options.requireSnapToFinish&&!this._hintMarker._snapped&&!this._isFirstLayer())return;let C=this._layer.getLatLngs();if(C.length<=2)return;let k=L.polygon(C,this.options.pathOptions);this._setPane(k,"layerPane"),this._finishLayer(k),k.addTo(this._map.pm._getContainingLayer()),this._fireCreate(k),this._cleanupSnapping(),this._otherSnapLayers.splice(this._tempSnapLayerIndex,1),delete this._tempSnapLayerIndex;let B=this._hintMarker.getLatLng();this.disable(),this.options.continueDrawing&&(this.enable(),this._hintMarker.setLatLng(B))}}),fe.Rectangle=fe.extend({initialize(C){this._map=C,this._shape="Rectangle",this.toolbarButtonName="drawRectangle"},enable(C){if(L.Util.setOptions(this,C),this._enabled=!0,this._layerGroup=new L.FeatureGroup,this._layerGroup._pmTempLayer=!0,this._layerGroup.addTo(this._map),this._layer=L.rectangle([[0,0],[0,0]],this.options.pathOptions),this._setPane(this._layer,"layerPane"),this._layer._pmTempLayer=!0,this._startMarker=L.marker(this._map.getCenter(),{icon:L.divIcon({className:"marker-icon rect-start-marker"}),draggable:!1,zIndexOffset:-100,opacity:this.options.cursorMarker?1:0}),this._setPane(this._startMarker,"vertexPane"),this._startMarker._pmTempLayer=!0,this._layerGroup.addLayer(this._startMarker),this._hintMarker=L.marker(this._map.getCenter(),{zIndexOffset:150,icon:L.divIcon({className:"marker-icon cursor-marker"})}),this._setPane(this._hintMarker,"vertexPane"),this._hintMarker._pmTempLayer=!0,this._layerGroup.addLayer(this._hintMarker),this.options.cursorMarker&&L.DomUtil.addClass(this._hintMarker._icon,"visible"),this.options.tooltips&&this._hintMarker.bindTooltip(Wt("tooltips.firstVertex"),{permanent:!0,offset:L.point(0,10),direction:"bottom",opacity:.8}).openTooltip(),this.options.cursorMarker){this._styleMarkers=[];for(let k=0;k<2;k+=1){let B=L.marker(this._map.getCenter(),{icon:L.divIcon({className:"marker-icon rect-style-marker"}),draggable:!1,zIndexOffset:100});this._setPane(B,"vertexPane"),B._pmTempLayer=!0,this._layerGroup.addLayer(B),this._styleMarkers.push(B)}}this._map.getContainer().classList.add("geoman-draw-cursor"),this._map.on("click",this._placeStartingMarkers,this),this._map.on("mousemove",this._syncHintMarker,this),this._map.pm.Toolbar.toggleButton(this.toolbarButtonName,!0),this._otherSnapLayers=[],this._fireDrawStart(),this._setGlobalDrawMode()},disable(){this._enabled&&(this._enabled=!1,this._map.getContainer().classList.remove("geoman-draw-cursor"),this._map.off("click",this._finishShape,this),this._map.off("click",this._placeStartingMarkers,this),this._map.off("mousemove",this._syncHintMarker,this),this._map.removeLayer(this._layerGroup),this._map.pm.Toolbar.toggleButton(this.toolbarButtonName,!1),this.options.snappable&&this._cleanupSnapping(),this._fireDrawEnd(),this._setGlobalDrawMode())},enabled(){return this._enabled},toggle(C){this.enabled()?this.disable():this.enable(C)},_placeStartingMarkers(C){this._hintMarker._snapped||this._hintMarker.setLatLng(C.latlng);let k=this._hintMarker.getLatLng();L.DomUtil.addClass(this._startMarker._icon,"visible"),this._startMarker.setLatLng(k),this.options.cursorMarker&&this._styleMarkers&&this._styleMarkers.forEach(B=>{L.DomUtil.addClass(B._icon,"visible"),B.setLatLng(k)}),this._map.off("click",this._placeStartingMarkers,this),this._map.on("click",this._finishShape,this),this._hintMarker.setTooltipContent(Wt("tooltips.finishRect")),this._setRectangleOrigin()},_setRectangleOrigin(){let C=this._startMarker.getLatLng();C&&(this._layerGroup.addLayer(this._layer),this._layer.setLatLngs([C,C]),this._hintMarker.on("move",this._syncRectangleSize,this))},_syncHintMarker(C){if(this._hintMarker.setLatLng(C.latlng),this.options.snappable){let B=C;B.target=this._hintMarker,this._handleSnapping(B)}let k=this._layerGroup&&this._layerGroup.hasLayer(this._layer)?this._layer.getLatLngs():[this._hintMarker.getLatLng()];this._fireChange(k,"Draw")},_syncRectangleSize(){let C=os(this._startMarker.getLatLng(),this._map),k=os(this._hintMarker.getLatLng(),this._map),B=L.PM.Utils._getRotatedRectangle(C,k,this.options.rectangleAngle||0,this._map);if(this._layer.setLatLngs(B),this.options.cursorMarker&&this._styleMarkers){let P=[];B.forEach(A=>{!A.equals(C,1e-8)&&!A.equals(k,1e-8)&&P.push(A)}),P.forEach((A,T)=>{try{this._styleMarkers[T].setLatLng(A)}catch{}})}},_findCorners(){let C=this._layer.getLatLngs()[0];return L.PM.Utils._getRotatedRectangle(C[0],C[2],this.options.rectangleAngle||0,this._map)},_finishShape(C){C?.latlng&&!this._hintMarker._snapped&&this._hintMarker.setLatLng(C.latlng);let k=this._hintMarker.getLatLng(),B=this._startMarker.getLatLng();if(this.options.requireSnapToFinish&&!this._hintMarker._snapped&&!this._isFirstLayer()||B.equals(k))return;let P=L.rectangle([B,k],this.options.pathOptions);if(this.options.rectangleAngle){let T=L.PM.Utils._getRotatedRectangle(B,k,this.options.rectangleAngle||0,this._map);P.setLatLngs(T),P.pm&&P.pm._setAngle(this.options.rectangleAngle||0)}this._setPane(P,"layerPane"),this._finishLayer(P),P.addTo(this._map.pm._getContainingLayer()),this._fireCreate(P);let A=this._hintMarker.getLatLng();this.disable(),this.options.continueDrawing&&(this.enable(),this._hintMarker.setLatLng(A))},setStyle(){this._layer?.setStyle(this.options.pathOptions)}}),fe.CircleMarker=fe.extend({initialize(C){this._map=C,this._shape="CircleMarker",this.toolbarButtonName="drawCircleMarker",this._layerIsDragging=!1,this._BaseCircleClass=L.CircleMarker,this._minRadiusOption="minRadiusCircleMarker",this._maxRadiusOption="maxRadiusCircleMarker",this._editableOption="resizeableCircleMarker",this._defaultRadius=10},enable(C){if(L.Util.setOptions(this,C),this.options.editable&&(this.options.resizeableCircleMarker=this.options.editable,delete this.options.editable),this._enabled=!0,this._map.pm.Toolbar.toggleButton(this.toolbarButtonName,!0),this._map.getContainer().classList.add("geoman-draw-cursor"),this.options[this._editableOption]){let k={};L.extend(k,this.options.templineStyle),k.radius=0,this._layerGroup=new L.FeatureGroup,this._layerGroup._pmTempLayer=!0,this._layerGroup.addTo(this._map),this._layer=new this._BaseCircleClass(this._map.getCenter(),k),this._setPane(this._layer,"layerPane"),this._layer._pmTempLayer=!0,this._centerMarker=L.marker(this._map.getCenter(),{icon:L.divIcon({className:"marker-icon"}),draggable:!1,zIndexOffset:100}),this._setPane(this._centerMarker,"vertexPane"),this._centerMarker._pmTempLayer=!0,this._hintMarker=L.marker(this._map.getCenter(),{zIndexOffset:110,icon:L.divIcon({className:"marker-icon cursor-marker"})}),this._setPane(this._hintMarker,"vertexPane"),this._hintMarker._pmTempLayer=!0,this._layerGroup.addLayer(this._hintMarker),this.options.cursorMarker&&L.DomUtil.addClass(this._hintMarker._icon,"visible"),this.options.tooltips&&this._hintMarker.bindTooltip(Wt("tooltips.startCircle"),{permanent:!0,offset:L.point(0,10),direction:"bottom",opacity:.8}).openTooltip(),this._hintline=L.polyline([],this.options.hintlineStyle),this._setPane(this._hintline,"layerPane"),this._hintline._pmTempLayer=!0,this._layerGroup.addLayer(this._hintline),this._map.on("click",this._placeCenterMarker,this)}else this._map.on("click",this._createMarker,this),this._hintMarker=new this._BaseCircleClass(this._map.getCenter(),{radius:this._defaultRadius,...this.options.templineStyle}),this._setPane(this._hintMarker,"layerPane"),this._hintMarker._pmTempLayer=!0,this._hintMarker.addTo(this._map),this._layer=this._hintMarker,this.options.tooltips&&this._hintMarker.bindTooltip(Wt("tooltips.placeCircleMarker"),{permanent:!0,offset:L.point(0,10),direction:"bottom",opacity:.8}).openTooltip();this._map.on("mousemove",this._syncHintMarker,this),this._extendingEnable(),this._otherSnapLayers=[],this._fireDrawStart(),this._setGlobalDrawMode()},_extendingEnable(){!this.options[this._editableOption]&&this.options.markerEditable&&this._map.eachLayer(C=>{this.isRelevantMarker(C)&&C.pm.enable()}),this._layer.bringToBack()},disable(){this._enabled&&(this._enabled=!1,this._map.getContainer().classList.remove("geoman-draw-cursor"),this.options[this._editableOption]?(this._map.off("click",this._finishShape,this),this._map.off("click",this._placeCenterMarker,this),this._map.removeLayer(this._layerGroup)):(this._map.off("click",this._createMarker,this),this._extendingDisable(),this._hintMarker.remove()),this._map.off("mousemove",this._syncHintMarker,this),this._map.pm.Toolbar.toggleButton(this.toolbarButtonName,!1),this.options.snappable&&this._cleanupSnapping(),this._fireDrawEnd(),this._setGlobalDrawMode())},_extendingDisable(){this._map.eachLayer(C=>{this.isRelevantMarker(C)&&C.pm.disable()})},enabled(){return this._enabled},toggle(C){this.enabled()?this.disable():this.enable(C)},_placeCenterMarker(C){this._hintMarker._snapped||this._hintMarker.setLatLng(C.latlng),this._layerGroup.addLayer(this._layer),this._layerGroup.addLayer(this._centerMarker);let k=this._hintMarker.getLatLng();this._centerMarker.setLatLng(k),this._map.off("click",this._placeCenterMarker,this),this._map.on("click",this._finishShape,this),this._placeCircleCenter()},_placeCircleCenter(){let C=this._centerMarker.getLatLng();C&&(this._layer.setLatLng(C),this._hintMarker.on("move",this._syncHintLine,this),this._hintMarker.on("move",this._syncCircleRadius,this),this._hintMarker.setTooltipContent(Wt("tooltips.finishCircle")),this._fireCenterPlaced(),this._fireChange(this._layer.getLatLng(),"Draw"))},_syncHintLine(){let C=this._centerMarker.getLatLng(),k=this._getNewDestinationOfHintMarker();this._hintline.setLatLngs([C,k])},_syncCircleRadius(){let C=this._centerMarker.getLatLng(),k=this._hintMarker.getLatLng(),B=this._distanceCalculation(C,k);this.options[this._minRadiusOption]&&Bthis.options[this._maxRadiusOption]?this._layer.setRadius(this.options[this._maxRadiusOption]):this._layer.setRadius(B)},_syncHintMarker(C){if(this._hintMarker.setLatLng(C.latlng),this._hintMarker.setLatLng(this._getNewDestinationOfHintMarker()),this.options.snappable){let B=C;B.target=this._hintMarker,this._handleSnapping(B)}this._handleHintMarkerSnapping();let k=this._layerGroup&&this._layerGroup.hasLayer(this._centerMarker)?this._centerMarker.getLatLng():this._hintMarker.getLatLng();this._fireChange(k,"Draw")},isRelevantMarker(C){return C instanceof L.CircleMarker&&!(C instanceof L.Circle)&&C.pm&&!C._pmTempLayer},_createMarker(C){if(this.options.requireSnapToFinish&&!this._hintMarker._snapped&&!this._isFirstLayer()||!C.latlng||this._layerIsDragging)return;this._hintMarker._snapped||this._hintMarker.setLatLng(C.latlng);let k=this._hintMarker.getLatLng(),B=new this._BaseCircleClass(k,{radius:this._defaultRadius,...this.options.pathOptions});this._setPane(B,"layerPane"),this._finishLayer(B),B.addTo(this._map.pm._getContainingLayer()),this._extendingCreateMarker(B),this._fireCreate(B),this._cleanupSnapping(),this.options.continueDrawing||this.disable()},_extendingCreateMarker(C){C.pm&&this.options.markerEditable&&C.pm.enable()},_finishShape(C){if(this.options.requireSnapToFinish&&!this._hintMarker._snapped&&!this._isFirstLayer())return;C?.latlng&&!this._hintMarker._snapped&&this._hintMarker.setLatLng(C.latlng);let k=this._centerMarker.getLatLng(),B=this._defaultRadius;if(this.options[this._editableOption]){let O=this._hintMarker.getLatLng();B=this._distanceCalculation(k,O),this.options[this._minRadiusOption]&&Bthis.options[this._maxRadiusOption]&&(B=this.options[this._maxRadiusOption])}let P={...this.options.pathOptions,radius:B},A=new this._BaseCircleClass(k,P);this._setPane(A,"layerPane"),this._finishLayer(A),A.addTo(this._map.pm._getContainingLayer()),A.pm&&A.pm._updateHiddenPolyCircle(),this._fireCreate(A);let T=this._hintMarker.getLatLng();this.disable(),this.options.continueDrawing&&(this.enable(),this._hintMarker.setLatLng(T))},_getNewDestinationOfHintMarker(){let C=this._hintMarker.getLatLng();if(this.options[this._editableOption]){if(!this._layerGroup.hasLayer(this._centerMarker))return C;let k=this._centerMarker.getLatLng(),B=this._distanceCalculation(k,C);this.options[this._minRadiusOption]&&Bthis.options[this._maxRadiusOption]&&(C=zi(this._map,k,C,this._getMaxDistanceInMeter()))}return C},_getMinDistanceInMeter(){return L.PM.Utils.pxRadiusToMeterRadius(this.options[this._minRadiusOption],this._map,this._centerMarker.getLatLng())},_getMaxDistanceInMeter(){return L.PM.Utils.pxRadiusToMeterRadius(this.options[this._maxRadiusOption],this._map,this._centerMarker.getLatLng())},_handleHintMarkerSnapping(){if(this.options[this._editableOption]){if(this._hintMarker._snapped){let C=this._centerMarker.getLatLng(),k=this._hintMarker.getLatLng(),B=this._distanceCalculation(C,k);this._layerGroup.hasLayer(this._centerMarker)&&(this.options[this._minRadiusOption]&&Bthis.options[this._maxRadiusOption]&&this._hintMarker.setLatLng(this._hintMarker._orgLatLng))}this._hintMarker.setLatLng(this._getNewDestinationOfHintMarker())}},setStyle(){let C={};L.extend(C,this.options.templineStyle),this.options[this._editableOption]&&(C.radius=0),this._layer?.setStyle(C),this._hintline?.setStyle(this.options.hintlineStyle)},_distanceCalculation(C,k){return this._map.project(C).distanceTo(this._map.project(k))}}),fe.Circle=fe.CircleMarker.extend({initialize(C){this._map=C,this._shape="Circle",this.toolbarButtonName="drawCircle",this._BaseCircleClass=L.Circle,this._minRadiusOption="minRadiusCircle",this._maxRadiusOption="maxRadiusCircle",this._editableOption="resizeableCircle",this._defaultRadius=100},_extendingEnable(){},_extendingDisable(){},_extendingCreateMarker(){},isRelevantMarker(){},_getMinDistanceInMeter(){return this.options[this._minRadiusOption]},_getMaxDistanceInMeter(){return this.options[this._maxRadiusOption]},_distanceCalculation(C,k){return this._map.distance(C,k)}});var wn=class{constructor(C=[],k=cr){if(this.data=C,this.length=this.data.length,this.compare=k,this.length>0)for(let B=(this.length>>1)-1;B>=0;B--)this._down(B)}push(C){this.data.push(C),this.length++,this._up(this.length-1)}pop(){if(this.length===0)return;let C=this.data[0],k=this.data.pop();return this.length--,this.length>0&&(this.data[0]=k,this._down(0)),C}peek(){return this.data[0]}_up(C){let{data:k,compare:B}=this,P=k[C];for(;C>0;){let A=C-1>>1,T=k[A];if(B(P,T)>=0)break;k[C]=T,C=A}k[C]=P}_down(C){let{data:k,compare:B}=this,P=this.length>>1,A=k[C];for(;C=0)break;k[C]=O,C=T}k[C]=A}};function cr(C,k){return Ck?1:0}function _s(C,k){return C.p.x>k.p.x?1:C.p.xk.p.y?1:-1:1}function ba(C,k){return C.rightSweepEvent.p.x>k.rightSweepEvent.p.x?1:C.rightSweepEvent.p.x0?(Q.isLeftEndpoint=!0,U.isLeftEndpoint=!1):(U.isLeftEndpoint=!0,Q.isLeftEndpoint=!1),k.push(U),k.push(Q),O=R,En=En+1}}Be=Be+1}var xa=class{constructor(C){this.leftSweepEvent=C,this.rightSweepEvent=C.otherEvent}};function Ui(C,k){if(C===null||k===null||C.leftSweepEvent.ringId===k.leftSweepEvent.ringId&&(C.rightSweepEvent.isSamePoint(k.leftSweepEvent)||C.rightSweepEvent.isSamePoint(k.leftSweepEvent)||C.rightSweepEvent.isSamePoint(k.rightSweepEvent)||C.leftSweepEvent.isSamePoint(k.leftSweepEvent)||C.leftSweepEvent.isSamePoint(k.rightSweepEvent)))return!1;let B=C.leftSweepEvent.p.x,P=C.leftSweepEvent.p.y,A=C.rightSweepEvent.p.x,T=C.rightSweepEvent.p.y,O=k.leftSweepEvent.p.x,R=k.leftSweepEvent.p.y,Z=k.rightSweepEvent.p.x,U=k.rightSweepEvent.p.y,Q=(U-R)*(A-B)-(Z-O)*(T-P),Y=(Z-O)*(P-R)-(U-R)*(B-O),ot=(A-B)*(P-R)-(T-P)*(B-O);if(Q===0)return!1;let ut=Y/Q,vt=ot/Q;if(ut>=0&&ut<=1&&vt>=0&&vt<=1){let xt=B+ut*(A-B),Pt=P+ut*(T-P);return[xt,Pt]}return!1}function ka(C,k){k=k||!1;let B=[],P=new wn([],ba);for(;C.length;){let A=C.pop();if(A.isLeftEndpoint){let T=new xa(A);for(let O=0;O{let Q=U.join(",");Z[Q]||(Z[Q]=!0,R.push(U))})}else R=O;return Ie(R.map(Z=>Gi(Z)))}var Ne=gs,Pn=et(Yt(),1);function pr(C,k,B){if(C!==null)for(var P,A,T,O,R,Z,U,Q=0,Y=0,ot,ut=C.type,vt=ut==="FeatureCollection",xt=ut==="Feature",Pt=vt?C.features.length:1,At=0;At{B[0]>P[0]&&(B[0]=P[0]),B[1]>P[1]&&(B[1]=P[1]),B[2] is required");if(typeof B!="number")throw new Error(" must be a number");if(typeof P!="number")throw new Error(" must be a number");(A===!1||A===void 0)&&(C=JSON.parse(JSON.stringify(C)));var T=Math.pow(10,B);return pr(C,function(O){mr(O,T,P)}),C}function mr(C,k,B){C.length>B&&C.splice(B,C.length);for(var P=0;P=2&&!Array.isArray(C[0])&&!Array.isArray(C[1]))return[...C];throw new Error("coord must be GeoJSON Point or an Array of numbers")}function ui(C){if(Array.isArray(C))return C;if(C.type==="Feature"){if(C.geometry!==null)return C.geometry.coordinates}else if(C.coordinates)return C.coordinates;throw new Error("coords must be GeoJSON Feature, Geometry Object or an Array")}function ki(C){return C.type==="Feature"?C.geometry:C}function Mi(C,k){return C.type==="FeatureCollection"?"FeatureCollection":C.type==="GeometryCollection"?"GeometryCollection":C.type==="Feature"&&C.geometry!==null?C.geometry.type:C.type}function Sn(C){if(!C)throw new Error("geojson is required");let k=[];return fr(C,B=>{gr(B,k)}),Ie(k)}function gr(C,k){let B=[],P=C.geometry;if(P!==null){switch(P.type){case"Polygon":B=ui(P);break;case"LineString":B=[ui(P)]}B.forEach(A=>{vs(A,C.properties).forEach(T=>{T.id=k.length,k.push(T)})})}}function vs(C,k){let B=[];return C.reduce((P,A)=>{let T=an([P,A],k);return T.bbox=wa(P,A),B.push(T),A}),B}function wa(C,k){let B=C[0],P=C[1],A=k[0],T=k[1],O=BA?B:A,U=P>T?P:T;return[O,R,Z,U]}function Vi(C,k,B={}){var P=Oe(C),A=Oe(k),T=Zi(A[1]-P[1]),O=Zi(A[0]-P[0]),R=Zi(P[1]),Z=Zi(A[1]),U=Math.pow(Math.sin(T/2),2)+Math.pow(Math.sin(O/2),2)*Math.cos(R)*Math.cos(Z);return kn(2*Math.atan2(Math.sqrt(U),Math.sqrt(1-U)),B.units)}var Ea=Object.defineProperty,Ls=Object.defineProperties,Ba=Object.getOwnPropertyDescriptors,yr=Object.getOwnPropertySymbols,Pa=Object.prototype.hasOwnProperty,$e=Object.prototype.propertyIsEnumerable,ln=(C,k,B)=>k in C?Ea(C,k,{enumerable:!0,configurable:!0,writable:!0,value:B}):C[k]=B,Sa=(C,k)=>{for(var B in k||(k={}))Pa.call(k,B)&&ln(C,B,k[B]);if(yr)for(var B of yr(k))$e.call(k,B)&&ln(C,B,k[B]);return C},An=(C,k)=>Ls(C,Ba(k));function Aa(C,k,B={}){if(!C||!k)throw new Error("lines and inputPoint are required arguments");let P=Oe(k),A=Gi([1/0,1/0],{lineStringIndex:-1,segmentIndex:-1,totalDistance:-1,lineDistance:-1,segmentDistance:-1,pointDistance:1/0,multiFeatureIndex:-1,index:-1,location:-1,dist:1/0}),T=0,O=0,R=-1;return fr(C,function(Z,U,Q){R!==Q&&(R=Q,O=0);let Y=ui(Z),ot=Y.length-2;for(let ut=0;ut0?[[...k],!0]:[[...B],!1];let R=hn(O,T);if(R[0]===0&&R[1]===0&&R[2]===0)return[[...k],!0];let Z=hn(R,O),U=bs(Z),Q=[-U[0],-U[1],-U[2]],Y=fi(T,U)>fi(T,Q)?U:Q,ot=bs(O),ut=fi(hn(P,Y),ot),vt=fi(hn(Y,A),ot);return ut>=0&&vt>=0?[Cs(Y),!1]:fi(P,T)>fi(A,T)?[[...C],!1]:[[...k],!0]}function ks(C,k){if(!C)throw new Error("line is required");if(!k)throw new Error("splitter is required");let B=Mi(C),P=Mi(k);if(B!=="LineString")throw new Error("line must be LineString");if(P==="FeatureCollection")throw new Error("splitter cannot be a FeatureCollection");if(P==="GeometryCollection")throw new Error("splitter cannot be a GeometryCollection");var A=ys(k,{precision:7});switch(C.type!=="Feature"&&(C=We(C)),P){case"Point":return Tn(C,A);case"MultiPoint":return Xe(C,A);case"LineString":case"MultiLineString":case"Polygon":case"MultiPolygon":return Xe(C,gs(C,A,{ignoreSelfIntersections:!0}))}}function Xe(C,k){var B=[],P=un();return fr(k,function(A){if(B.forEach(function(R,Z){R.id=Z}),!B.length)B=Tn(C,A).features,P.load(Ie(B));else{var T=P.search(A);if(T.features.length){var O=vr(A,T);B=B.filter(function(R){return R.id!==O.id}),P.remove(O),Hi(Tn(O,A),function(R){B.push(R),P.insert(R)})}}}),Ie(B)}function Tn(C,k){var B=[],P=ui(C)[0],A=ui(C)[C.geometry.coordinates.length-1];if(wi(P,Oe(k))||wi(A,Oe(k)))return Ie([C]);var T=un(),O=Sn(C);T.load(O);var R=T.search(k);if(!R.features.length)return Ie([C]);var Z=vr(k,R),U=[P],Q=Ma(O,function(Y,ot,ut){var vt=ui(ot)[1],xt=Oe(k);return ut===Z.id?(Y.push(xt),B.push(an(Y)),wi(xt,vt)?[xt]:[xt,vt]):(Y.push(vt),Y)},U);return Q.length>1&&B.push(an(Q)),Ie(B)}function vr(C,k){if(!k.features.length)throw new Error("lines must contain features");if(k.features.length===1)return k.features[0];var B,P=1/0;return Hi(k,function(A){var T=Aa(A,C),O=T.properties.dist;OU==Q>-U?(T=U,U=k[++Y]):(T=Q,Q=P[++ot]);let ut=0;if(YU==Q>-U?(O=U+T,R=T-(O-U),U=k[++Y]):(O=Q+T,R=T-(O-Q),Q=P[++ot]),T=O,R!==0&&(A[ut++]=R);YU==Q>-U?(O=T+U,Z=O-T,R=T-(O-Z)+(U-Z),U=k[++Y]):(O=T+Q,Z=O-T,R=T-(O-Z)+(Q-Z),Q=P[++ot]),T=O,R!==0&&(A[ut++]=R);for(;Y=ct||-it>=ct||(Y=C-K,R=C-(K+Y)+(Y-A),Y=B-$,U=B-($+Y)+(Y-A),Y=k-st,Z=k-(st+Y)+(Y-T),Y=P-rt,Q=P-(rt+Y)+(Y-T),R===0&&Z===0&&U===0&&Q===0)||(ct=Bs*O+Ms*Math.abs(it),it+=K*Q+rt*R-(st*U+$*Z),it>=ct||-it>=ct))return it;yt=R*rt,ot=ce*R,ut=ot-(ot-R),vt=R-ut,ot=ce*rt,xt=ot-(ot-rt),Pt=rt-xt,Bt=vt*Pt-(yt-ut*xt-vt*xt-ut*Pt),wt=Z*$,ot=ce*Z,ut=ot-(ot-Z),vt=Z-ut,ot=ce*$,xt=ot-(ot-$),Pt=$-xt,Et=vt*Pt-(wt-ut*xt-vt*xt-ut*Pt),At=Bt-Et,Y=Bt-At,be[0]=Bt-(At+Y)+(Y-Et),J=yt+At,Y=J-yt,ht=yt-(J-Y)+(At-Y),At=ht-wt,Y=ht-At,be[1]=ht-(At+Y)+(Y-wt),q=J+At,Y=q-J,be[2]=J-(q-Y)+(At-Y),be[3]=q;let at=Dn(4,Ei,4,be,Ps);yt=K*Q,ot=ce*K,ut=ot-(ot-K),vt=K-ut,ot=ce*Q,xt=ot-(ot-Q),Pt=Q-xt,Bt=vt*Pt-(yt-ut*xt-vt*xt-ut*Pt),wt=st*U,ot=ce*st,ut=ot-(ot-st),vt=st-ut,ot=ce*U,xt=ot-(ot-U),Pt=U-xt,Et=vt*Pt-(wt-ut*xt-vt*xt-ut*Pt),At=Bt-Et,Y=Bt-At,be[0]=Bt-(At+Y)+(Y-Et),J=yt+At,Y=J-yt,ht=yt-(J-Y)+(At-Y),At=ht-wt,Y=ht-At,be[1]=ht-(At+Y)+(Y-wt),q=J+At,Y=q-J,be[2]=J-(q-Y)+(At-Y),be[3]=q;let lt=Dn(at,Ps,4,be,Lr);yt=R*Q,ot=ce*R,ut=ot-(ot-R),vt=R-ut,ot=ce*Q,xt=ot-(ot-Q),Pt=Q-xt,Bt=vt*Pt-(yt-ut*xt-vt*xt-ut*Pt),wt=Z*U,ot=ce*Z,ut=ot-(ot-Z),vt=Z-ut,ot=ce*U,xt=ot-(ot-U),Pt=U-xt,Et=vt*Pt-(wt-ut*xt-vt*xt-ut*Pt),At=Bt-Et,Y=Bt-At,be[0]=Bt-(At+Y)+(Y-Et),J=yt+At,Y=J-yt,ht=yt-(J-Y)+(At-Y),At=ht-wt,Y=ht-At,be[1]=ht-(At+Y)+(Y-wt),q=J+At,Y=q-J,be[2]=J-(q-Y)+(At-Y),be[3]=q;let mt=Dn(lt,Lr,4,be,br);return br[mt-1]}function M(C,k,B,P,A,T){let O=(k-T)*(B-A),R=(C-A)*(P-T),Z=O-R,U=Math.abs(O+R);return Math.abs(Z)>=ws*U?Z:-_(C,k,B,P,A,T,U)}function S(C,k){var B,P,A=0,T,O,R,Z,U,Q,Y,ot=C[0],ut=C[1],vt=k.length;for(B=0;B=0||O<=0&&Z>=0)return 0}else if(U>=0&&R<=0||U<=0&&R>=0){if(T=M(O,Z,R,U,0,0),T===0)return 0;(T>0&&U>0&&R<=0||T<0&&U<=0&&R>0)&&A++}Q=Y,R=U,O=Z}}return A%2!==0}function D(C,k,B={}){if(!C)throw new Error("point is required");if(!k)throw new Error("polygon is required");let P=Oe(C),A=ki(k),T=A.type,O=k.bbox,R=A.coordinates;if(O&&z(P,O)===!1)return!1;T==="Polygon"&&(R=[R]);let Z=!1;for(var U=0;U=C[0]&&k[3]>=C[1]}function V(C,k,B={}){let P=Oe(C),A=ui(k);for(let T=0;T"u"?null:B.epsilon))return!0}return!1}function nt(C,k,B,P,A){let T=B[0],O=B[1],R=C[0],Z=C[1],U=k[0],Q=k[1],Y=B[0]-R,ot=B[1]-Z,ut=U-R,vt=Q-Z,xt=Y*vt-ot*ut;if(A!==null){if(Math.abs(xt)>A)return!1}else if(xt!==0)return!1;if(Math.abs(ut)===Math.abs(vt)&&Math.abs(ut)===0)return P?!1:B[0]===C[0]&&B[1]===C[1];if(P){if(P==="start")return Math.abs(ut)>=Math.abs(vt)?ut>0?R0?Z=Math.abs(vt)?ut>0?R<=T&&T0?Z<=O&&O=Math.abs(vt)?ut>0?R0?Z=Math.abs(vt)?ut>0?R<=T&&T<=U:U<=T&&T<=R:vt>0?Z<=O&&O<=Q:Q<=O&&O<=Z;return!1}function dt(C,k){let B=ki(C),P=ki(k),A=B.type,T=P.type,O=B.coordinates,R=P.coordinates;switch(A){case"Point":if(T==="Point")return Cr(O,R);throw new Error("feature2 "+T+" geometry not supported");case"MultiPoint":switch(T){case"Point":return Tt(B,P);case"MultiPoint":return It(B,P);default:throw new Error("feature2 "+T+" geometry not supported")}case"LineString":switch(T){case"Point":return V(P,B,{ignoreEndVertices:!0});case"LineString":return _e(B,P);case"MultiPoint":return Vt(B,P);default:throw new Error("feature2 "+T+" geometry not supported")}case"Polygon":switch(T){case"Point":return D(P,B,{ignoreBoundary:!0});case"LineString":return Pe(B,P);case"Polygon":return mi(B,P);case"MultiPoint":return Ce(B,P);case"MultiPolygon":return Mt(B,P);default:throw new Error("feature2 "+T+" geometry not supported")}case"MultiPolygon":if(T==="Polygon")return gt(B,P);throw new Error("feature2 "+T+" geometry not supported");default:throw new Error("feature1 "+A+" geometry not supported")}}function gt(C,k){return C.coordinates.some(B=>mi({type:"Polygon",coordinates:B},k))}function Mt(C,k){return k.coordinates.every(B=>mi(C,{type:"Polygon",coordinates:B}))}function Tt(C,k){let B,P=!1;for(B=0;Bk[0]||C[2]k[1]||C[3]Y?_t.c=_t.e=null:q.e=10;ct/=10,it++);it>Y?_t.c=_t.e=null:(_t.e=it,_t.c=[q]);return}mt=String(q)}else{if(!Ts.test(mt=String(q)))return P(_t,mt,at);_t.s=mt.charCodeAt(0)==45?(mt=mt.slice(1),-1):1}(it=mt.indexOf("."))>-1&&(mt=mt.replace(".","")),(ct=mt.search(/e/i))>0?(it<0&&(it=ct),it+=+mt.slice(ct+1),mt=mt.substring(0,ct)):it<0&&(it=mt.length)}else{if(oe(K,2,Pt.length,"Base"),K==10&&At)return _t=new J(q),wt(_t,O+_t.e+1,R);if(mt=String(q),at=typeof q=="number"){if(q*0!=0)return P(_t,mt,at,K);if(_t.s=1/q<0?(mt=mt.slice(1),-1):1,J.DEBUG&&mt.replace(/^0\.0*|\./,"").length>15)throw Error(Ds+q)}else _t.s=mt.charCodeAt(0)===45?(mt=mt.slice(1),-1):1;for($=Pt.slice(0,K),it=ct=0,lt=mt.length;ctit){it=lt;continue}}else if(!rt&&(mt==mt.toUpperCase()&&(mt=mt.toLowerCase())||mt==mt.toLowerCase()&&(mt=mt.toUpperCase()))){rt=!0,ct=-1,it=0;continue}return P(_t,String(q),at,K)}at=!1,mt=B(mt,K,10,_t.s),(it=mt.indexOf("."))>-1?mt=mt.replace(".",""):it=mt.length}for(ct=0;mt.charCodeAt(ct)===48;ct++);for(lt=mt.length;mt.charCodeAt(--lt)===48;);if(mt=mt.slice(ct,++lt)){if(lt-=ct,at&&J.DEBUG&<>15&&(q>On||q!==xe(q)))throw Error(Ds+_t.s*q);if((it=it-ct-1)>Y)_t.c=_t.e=null;else if(it=-ye&&rt<=ye&&rt===xe(rt)){if(st[0]===0){if(rt===0&&st.length===1)return!0;break t}if(K=(rt+1)%Nt,K<1&&(K+=Nt),String(st[0]).length==K){for(K=0;K=He||$!==xe($))break t;if($!==0)return!0}}}else if(st===null&&rt===null&&(it===null||it===1||it===-1))return!0;throw Error(Se+"Invalid BigNumber: "+q)},J.maximum=J.max=function(){return yt(arguments,-1)},J.minimum=J.min=function(){return yt(arguments,1)},J.random=(function(){var q=9007199254740992,K=Math.random()*q&2097151?function(){return xe(Math.random()*q)}:function(){return(Math.random()*1073741824|0)*8388608+(Math.random()*8388608|0)};return function($){var st,rt,it,ct,at,lt=0,mt=[],_t=new J(T);if($==null?$=O:oe($,0,ye),ct=se($/Nt),ot)if(crypto.getRandomValues){for(st=crypto.getRandomValues(new Uint32Array(ct*=2));lt>>11),at>=9e15?(rt=crypto.getRandomValues(new Uint32Array(2)),st[lt]=rt[0],st[lt+1]=rt[1]):(mt.push(at%1e14),lt+=2);lt=ct/2}else if(crypto.randomBytes){for(st=crypto.randomBytes(ct*=7);lt=9e15?crypto.randomBytes(7).copy(st,lt):(mt.push(at%1e14),lt+=7);lt=ct/7}else throw ot=!1,Error(Se+"crypto unavailable");if(!ot)for(;lt=10;at/=10,lt++);ltrt-1&&(at[ct+1]==null&&(at[ct+1]=0),at[ct+1]+=at[ct]/rt|0,at[ct]%=rt)}return at.reverse()}return function($,st,rt,it,ct){var at,lt,mt,_t,kt,Ot,Ft,Ut,de=$.indexOf("."),ge=O,Xt=R;for(de>=0&&(_t=vt,vt=0,$=$.replace(".",""),Ut=new J(st),Ot=Ut.pow($.length-de),vt=_t,Ut.c=K(Bi(Qe(Ot.c),Ot.e,"0"),10,rt,q),Ut.e=Ut.c.length),Ft=K($,st,rt,ct?(at=Pt,q):(at=q,Pt)),mt=_t=Ft.length;Ft[--_t]==0;Ft.pop());if(!Ft[0])return at.charAt(0);if(de<0?--mt:(Ot.c=Ft,Ot.e=mt,Ot.s=it,Ot=k(Ot,Ut,ge,Xt,rt),Ft=Ot.c,kt=Ot.r,mt=Ot.e),lt=mt+ge+1,de=Ft[lt],_t=rt/2,kt=kt||lt<0||Ft[lt+1]!=null,kt=Xt<4?(de!=null||kt)&&(Xt==0||Xt==(Ot.s<0?3:2)):de>_t||de==_t&&(Xt==4||kt||Xt==6&&Ft[lt-1]&1||Xt==(Ot.s<0?8:7)),lt<1||!Ft[0])$=kt?Bi(at.charAt(1),-ge,at.charAt(0)):at.charAt(0);else{if(Ft.length=lt,kt)for(--rt;++Ft[--lt]>rt;)Ft[lt]=0,lt||(++mt,Ft=[1].concat(Ft));for(_t=Ft.length;!Ft[--_t];);for(de=0,$="";de<=_t;$+=at.charAt(Ft[de++]));$=Bi($,mt,at.charAt(0))}return $}})(),k=(function(){function q(st,rt,it){var ct,at,lt,mt,_t=0,kt=st.length,Ot=rt%Ki,Ft=rt/Ki|0;for(st=st.slice();kt--;)lt=st[kt]%Ki,mt=st[kt]/Ki|0,ct=Ft*lt+mt*Ot,at=Ot*lt+ct%Ki*Ki+_t,_t=(at/it|0)+(ct/Ki|0)+Ft*mt,st[kt]=at%it;return _t&&(st=[_t].concat(st)),st}function K(st,rt,it,ct){var at,lt;if(it!=ct)lt=it>ct?1:-1;else for(at=lt=0;atrt[at]?1:-1;break}return lt}function $(st,rt,it,ct){for(var at=0;it--;)st[it]-=at,at=st[it]1;st.splice(0,1));}return function(st,rt,it,ct,at){var lt,mt,_t,kt,Ot,Ft,Ut,de,ge,Xt,te,Ae,Hs,Ga,Za,vi,Er,ti=st.s==rt.s?1:-1,Fe=st.c,pe=rt.c;if(!Fe||!Fe[0]||!pe||!pe[0])return new J(!st.s||!rt.s||(Fe?pe&&Fe[0]==pe[0]:!pe)?NaN:Fe&&Fe[0]==0||!pe?ti*0:ti/0);for(de=new J(ti),ge=de.c=[],mt=st.e-rt.e,ti=it+mt+1,at||(at=He,mt=Je(st.e/Nt)-Je(rt.e/Nt),ti=ti/Nt|0),_t=0;pe[_t]==(Fe[_t]||0);_t++);if(pe[_t]>(Fe[_t]||0)&&mt--,ti<0)ge.push(1),kt=!0;else{for(Ga=Fe.length,vi=pe.length,_t=0,ti+=2,Ot=xe(at/(pe[0]+1)),Ot>1&&(pe=q(pe,Ot,at),Fe=q(Fe,Ot,at),vi=pe.length,Ga=Fe.length),Hs=vi,Xt=Fe.slice(0,vi),te=Xt.length;te=at/2&&Za++;do{if(Ot=0,lt=K(pe,Xt,vi,te),lt<0){if(Ae=Xt[0],vi!=te&&(Ae=Ae*at+(Xt[1]||0)),Ot=xe(Ae/Za),Ot>1)for(Ot>=at&&(Ot=at-1),Ft=q(pe,Ot,at),Ut=Ft.length,te=Xt.length;K(Ft,Xt,Ut,te)==1;)Ot--,$(Ft,vi=10;ti/=10,_t++);wt(de,it+(de.e=_t+mt*Nt-1)+1,ct,kt)}else de.e=mt,de.r=+kt;return de}})();function ht(q,K,$,st){var rt,it,ct,at,lt;if($==null?$=R:oe($,0,8),!q.c)return q.toString();if(rt=q.c[0],ct=q.e,K==null)lt=Qe(q.c),lt=st==1||st==2&&(ct<=Z||ct>=U)?Fs(lt,ct):Bi(lt,ct,"0");else if(q=wt(new J(q),K,$),it=q.e,lt=Qe(q.c),at=lt.length,st==1||st==2&&(K<=it||it<=Z)){for(;atct),lt=Bi(lt,it,"0"),it+1>at){if(--K>0)for(lt+=".";K--;lt+="0");}else if(K+=it-at,K>0)for(it+1==at&&(lt+=".");K--;lt+="0");return q.s<0&&rt?"-"+lt:lt}function yt(q,K){for(var $,st,rt=1,it=new J(q[0]);rt=10;rt/=10,st++);return($=st+$*Nt-1)>Y?q.c=q.e=null:$=10;at/=10,rt++);if(it=K-rt,it<0)it+=Nt,ct=K,lt=kt[mt=0],_t=xe(lt/Ot[rt-ct-1]%10);else if(mt=se((it+1)/Nt),mt>=kt.length)if(st){for(;kt.length<=mt;kt.push(0));lt=_t=0,rt=1,it%=Nt,ct=it-Nt+1}else break t;else{for(lt=at=kt[mt],rt=1;at>=10;at/=10,rt++);it%=Nt,ct=it-Nt+rt,_t=ct<0?0:xe(lt/Ot[rt-ct-1]%10)}if(st=st||K<0||kt[mt+1]!=null||(ct<0?lt:lt%Ot[rt-ct-1]),st=$<4?(_t||st)&&($==0||$==(q.s<0?3:2)):_t>5||_t==5&&($==4||st||$==6&&(it>0?ct>0?lt/Ot[rt-ct]:0:kt[mt-1])%10&1||$==(q.s<0?8:7)),K<1||!kt[0])return kt.length=0,st?(K-=q.e+1,kt[0]=Ot[(Nt-K%Nt)%Nt],q.e=-K||0):kt[0]=q.e=0,q;if(it==0?(kt.length=mt,at=1,mt--):(kt.length=mt+1,at=Ot[Nt-it],kt[mt]=ct>0?xe(lt/Ot[rt-ct]%Ot[ct])*at:0),st)for(;;)if(mt==0){for(it=1,ct=kt[0];ct>=10;ct/=10,it++);for(ct=kt[0]+=at,at=1;ct>=10;ct/=10,at++);it!=at&&(q.e++,kt[0]==He&&(kt[0]=1));break}else{if(kt[mt]+=at,kt[mt]!=He)break;kt[mt--]=0,at=1}for(it=kt.length;kt[--it]===0;kt.pop());}q.e>Y?q.c=q.e=null:q.e=U?Fs(K,$):Bi(K,$,"0"),q.s<0?"-"+K:K)}return A.absoluteValue=A.abs=function(){var q=new J(this);return q.s<0&&(q.s=1),q},A.comparedTo=function(q,K){return dn(this,new J(q,K))},A.decimalPlaces=A.dp=function(q,K){var $,st,rt,it=this;if(q!=null)return oe(q,0,ye),K==null?K=R:oe(K,0,8),wt(new J(it),q+it.e+1,K);if(!($=it.c))return null;if(st=((rt=$.length-1)-Je(this.e/Nt))*Nt,rt=$[rt])for(;rt%10==0;rt/=10,st--);return st<0&&(st=0),st},A.dividedBy=A.div=function(q,K){return k(this,new J(q,K),O,R)},A.dividedToIntegerBy=A.idiv=function(q,K){return k(this,new J(q,K),0,1)},A.exponentiatedBy=A.pow=function(q,K){var $,st,rt,it,ct,at,lt,mt,_t,kt=this;if(q=new J(q),q.c&&!q.isInteger())throw Error(Se+"Exponent not an integer: "+Et(q));if(K!=null&&(K=new J(K)),at=q.e>14,!kt.c||!kt.c[0]||kt.c[0]==1&&!kt.e&&kt.c.length==1||!q.c||!q.c[0])return _t=new J(Math.pow(+Et(kt),at?q.s*(2-Os(q)):+Et(q))),K?_t.mod(K):_t;if(lt=q.s<0,K){if(K.c?!K.c[0]:!K.s)return new J(NaN);st=!lt&&kt.isInteger()&&K.isInteger(),st&&(kt=kt.mod(K))}else{if(q.e>9&&(kt.e>0||kt.e<-1||(kt.e==0?kt.c[0]>1||at&&kt.c[1]>=24e7:kt.c[0]<8e13||at&&kt.c[0]<=9999975e7)))return it=kt.s<0&&Os(q)?-0:0,kt.e>-1&&(it=1/it),new J(lt?1/it:it);vt&&(it=se(vt/Nt+2))}for(at?($=new J(.5),lt&&(q.s=1),mt=Os(q)):(rt=Math.abs(+Et(q)),mt=rt%2),_t=new J(T);;){if(mt){if(_t=_t.times(kt),!_t.c)break;it?_t.c.length>it&&(_t.c.length=it):st&&(_t=_t.mod(K))}if(rt){if(rt=xe(rt/2),rt===0)break;mt=rt%2}else if(q=q.times($),wt(q,q.e+1,1),q.e>14)mt=Os(q);else{if(rt=+Et(q),rt===0)break;mt=rt%2}kt=kt.times(kt),it?kt.c&&kt.c.length>it&&(kt.c.length=it):st&&(kt=kt.mod(K))}return st?_t:(lt&&(_t=T.div(_t)),K?_t.mod(K):it?wt(_t,vt,R,ct):_t)},A.integerValue=function(q){var K=new J(this);return q==null?q=R:oe(q,0,8),wt(K,K.e+1,q)},A.isEqualTo=A.eq=function(q,K){return dn(this,new J(q,K))===0},A.isFinite=function(){return!!this.c},A.isGreaterThan=A.gt=function(q,K){return dn(this,new J(q,K))>0},A.isGreaterThanOrEqualTo=A.gte=function(q,K){return(K=dn(this,new J(q,K)))===1||K===0},A.isInteger=function(){return!!this.c&&Je(this.e/Nt)>this.c.length-2},A.isLessThan=A.lt=function(q,K){return dn(this,new J(q,K))<0},A.isLessThanOrEqualTo=A.lte=function(q,K){return(K=dn(this,new J(q,K)))===-1||K===0},A.isNaN=function(){return!this.s},A.isNegative=function(){return this.s<0},A.isPositive=function(){return this.s>0},A.isZero=function(){return!!this.c&&this.c[0]==0},A.minus=function(q,K){var $,st,rt,it,ct=this,at=ct.s;if(q=new J(q,K),K=q.s,!at||!K)return new J(NaN);if(at!=K)return q.s=-K,ct.plus(q);var lt=ct.e/Nt,mt=q.e/Nt,_t=ct.c,kt=q.c;if(!lt||!mt){if(!_t||!kt)return _t?(q.s=-K,q):new J(kt?ct:NaN);if(!_t[0]||!kt[0])return kt[0]?(q.s=-K,q):new J(_t[0]?ct:R==3?-0:0)}if(lt=Je(lt),mt=Je(mt),_t=_t.slice(),at=lt-mt){for((it=at<0)?(at=-at,rt=_t):(mt=lt,rt=kt),rt.reverse(),K=at;K--;rt.push(0));rt.reverse()}else for(st=(it=(at=_t.length)<(K=kt.length))?at:K,at=K=0;K0)for(;K--;_t[$++]=0);for(K=He-1;st>at;){if(_t[--st]=0;){for($=0,Ot=Ae[rt]%ge,Ft=Ae[rt]/ge|0,ct=lt,it=rt+ct;it>rt;)mt=te[--ct]%ge,_t=te[ct]/ge|0,at=Ft*mt+_t*Ot,mt=Ot*mt+at%ge*ge+Ut[it]+$,$=(mt/de|0)+(at/ge|0)+Ft*_t,Ut[it--]=mt%de;Ut[it]=$}return $?++st:Ut.splice(0,1),Bt(q,Ut,st)},A.negated=function(){var q=new J(this);return q.s=-q.s||null,q},A.plus=function(q,K){var $,st=this,rt=st.s;if(q=new J(q,K),K=q.s,!rt||!K)return new J(NaN);if(rt!=K)return q.s=-K,st.minus(q);var it=st.e/Nt,ct=q.e/Nt,at=st.c,lt=q.c;if(!it||!ct){if(!at||!lt)return new J(rt/0);if(!at[0]||!lt[0])return lt[0]?q:new J(at[0]?st:rt*0)}if(it=Je(it),ct=Je(ct),at=at.slice(),rt=it-ct){for(rt>0?(ct=it,$=lt):(rt=-rt,$=at),$.reverse();rt--;$.push(0));$.reverse()}for(rt=at.length,K=lt.length,rt-K<0&&($=lt,lt=at,at=$,K=rt),rt=0;K;)rt=(at[--K]=at[K]+lt[K]+rt)/He|0,at[K]=He===at[K]?0:at[K]%He;return rt&&(at=[rt].concat(at),++ct),Bt(q,at,ct)},A.precision=A.sd=function(q,K){var $,st,rt,it=this;if(q!=null&&q!==!!q)return oe(q,1,ye),K==null?K=R:oe(K,0,8),wt(new J(it),q,K);if(!($=it.c))return null;if(rt=$.length-1,st=rt*Nt+1,rt=$[rt]){for(;rt%10==0;rt/=10,st--);for(rt=$[0];rt>=10;rt/=10,st++);}return q&&it.e+1>st&&(st=it.e+1),st},A.shiftedBy=function(q){return oe(q,-On,On),this.times("1e"+q)},A.squareRoot=A.sqrt=function(){var q,K,$,st,rt,it=this,ct=it.c,at=it.s,lt=it.e,mt=O+4,_t=new J("0.5");if(at!==1||!ct||!ct[0])return new J(!at||at<0&&(!ct||ct[0])?NaN:ct?it:1/0);if(at=Math.sqrt(+Et(it)),at==0||at==1/0?(K=Qe(ct),(K.length+lt)%2==0&&(K+="0"),at=Math.sqrt(+K),lt=Je((lt+1)/2)-(lt<0||lt%2),at==1/0?K="5e"+lt:(K=at.toExponential(),K=K.slice(0,K.indexOf("e")+1)+lt),$=new J(K)):$=new J(at+""),$.c[0]){for(lt=$.e,at=lt+mt,at<3&&(at=0);;)if(rt=$,$=_t.times(rt.plus(k(it,rt,mt,1))),Qe(rt.c).slice(0,at)===(K=Qe($.c)).slice(0,at))if($.e0&&Ut>0){for(it=Ut%at||at,_t=Ft.substr(0,it);it0&&(_t+=mt+Ft.slice(it)),Ot&&(_t="-"+_t)}st=kt?_t+($.decimalSeparator||"")+((lt=+$.fractionGroupSize)?kt.replace(new RegExp("\\d{"+lt+"}\\B","g"),"$&"+($.fractionGroupSeparator||"")):kt):_t}return($.prefix||"")+st+($.suffix||"")},A.toFraction=function(q){var K,$,st,rt,it,ct,at,lt,mt,_t,kt,Ot,Ft=this,Ut=Ft.c;if(q!=null&&(at=new J(q),!at.isInteger()&&(at.c||at.s!==1)||at.lt(T)))throw Error(Se+"Argument "+(at.isInteger()?"out of range: ":"not an integer: ")+Et(at));if(!Ut)return new J(Ft);for(K=new J(T),mt=$=new J(T),st=lt=new J(T),Ot=Qe(Ut),it=K.e=Ot.length-Ft.e-1,K.c[0]=xr[(ct=it%Nt)<0?Nt+ct:ct],q=!q||at.comparedTo(K)>0?it>0?K:mt:at,ct=Y,Y=1/0,at=new J(Ot),lt.c[0]=0;_t=k(at,K,0,1),rt=$.plus(_t.times(st)),rt.comparedTo(q)!=1;)$=st,st=rt,mt=lt.plus(_t.times(rt=mt)),lt=rt,K=at.minus(_t.times(rt=K)),at=rt;return rt=k(q.minus($),st,0,1),lt=lt.plus(rt.times(mt)),$=$.plus(rt.times(st)),lt.s=mt.s=Ft.s,it=it*2,kt=k(mt,st,it,R).minus(Ft).abs().comparedTo(k(lt,$,it,R).minus(Ft).abs())<1?[mt,st]:[lt,$],Y=ct,kt},A.toNumber=function(){return+Et(this)},A.toPrecision=function(q,K){return q!=null&&oe(q,1,ye),ht(this,q,K,2)},A.toString=function(q){var K,$=this,st=$.s,rt=$.e;return rt===null?st?(K="Infinity",st<0&&(K="-"+K)):K="NaN":(q==null?K=rt<=Z||rt>=U?Fs(Qe($.c),rt):Bi(Qe($.c),rt,"0"):q===10&&At?($=wt(new J($),O+rt+1,R),K=Bi(Qe($.c),$.e,"0")):(oe(q,2,Pt.length,"Base"),K=B(Bi(Qe($.c),rt,"0"),10,q,st,!0)),st<0&&$.c[0]&&(K="-"+K)),K},A.valueOf=A.toJSON=function(){return Et(this)},A._isBigNumber=!0,A[Symbol.toStringTag]="BigNumber",A[Symbol.for("nodejs.util.inspect.custom")]=A.valueOf,C!=null&&J.set(C),J}function Je(C){var k=C|0;return C>0||C===k?k:k-1}function Qe(C){for(var k,B,P=1,A=C.length,T=C[0]+"";PU^B?1:-1;for(R=(Z=A.length)<(U=T.length)?Z:U,O=0;OT[O]^B?1:-1;return Z==U?0:Z>U^B?1:-1}function oe(C,k,B,P){if(CB||C!==xe(C))throw Error(Se+(P||"Argument")+(typeof C=="number"?CB?" out of range: ":" not an integer: ":" not a primitive number: ")+String(C))}function Os(C){var k=C.c.length-1;return Je(C.e/Nt)==k&&C.c[k]%2!=0}function Fs(C,k){return(C.length>1?C.charAt(0)+"."+C.slice(1):C)+(k<0?"e":"e+")+k}function Bi(C,k,B){var P,A;if(k<0){for(A=B+".";++k;A+=B);C=A+C}else if(P=C.length,++k>P){for(A=B,k-=P;--k;A+=B);C+=A}else k0){let U=O.left;if(U==null||(Z=R(U.key,C),Z>0&&(O.left=U.right,U.right=O,O=U,U=O.left,U==null)))break;B==null?P=O:B.left=O,B=O,O=U}else if(Z<0){let U=O.right;if(U==null||(Z=R(U.key,C),Z<0&&(O.right=U.left,U.left=O,O=U,U=O.right,U==null)))break;A==null?T=O:A.right=O,A=O,O=U}else break;return A!=null&&(A.right=O.left,O.left=T),B!=null&&(B.left=O.right,O.right=P),this.root!==O&&(this.root=O,this.splayCount++),Z}splayMin(C){let k=C,B=k.left;for(;B!=null;){let P=B;k.left=P.right,P.right=k,k=P,B=k.left}return k}splayMax(C){let k=C,B=k.right;for(;B!=null;){let P=B;k.right=P.left,P.left=k,k=P,B=k.right}return k}_delete(C){if(this.root==null||this.splay(C)!=0)return null;let k=this.root,B=k,P=k.left;if(this.size--,P==null)this.root=k.right;else{let A=k.right;k=this.splayMax(P),k.right=A,this.root=k}return this.modificationCount++,B}addNewRoot(C,k){this.size++,this.modificationCount++;let B=this.root;if(B==null){this.root=C;return}k<0?(C.left=B,C.right=B.right,B.right=null):(C.right=B,C.left=B.left,B.left=null),this.root=C}_first(){let C=this.root;return C==null?null:(this.root=this.splayMin(C),this.root)}_last(){let C=this.root;return C==null?null:(this.root=this.splayMax(C),this.root)}clear(){this.root=null,this.size=0,this.modificationCount++}has(C){return this.validKey(C)&&this.splay(C)==0}defaultCompare(){return(C,k)=>Ck?1:0}wrap(){return{getRoot:()=>this.root,setRoot:C=>{this.root=C},getSize:()=>this.size,getModificationCount:()=>this.modificationCount,getSplayCount:()=>this.splayCount,setSplayCount:C=>{this.splayCount=C},splay:C=>this.splay(C),has:C=>this.has(C)}}},Rs=class Br extends ao{root=null;compare;validKey;constructor(k,B){super(),this.compare=k??this.defaultCompare(),this.validKey=B??(P=>P!=null&&P!=null)}delete(k){return this.validKey(k)?this._delete(k)!=null:!1}deleteAll(k){for(let B of k)this.delete(B)}forEach(k){let B=this[Symbol.iterator](),P;for(;P=B.next(),!P.done;)k(P.value,P.value,this)}add(k){let B=this.splay(k);return B!=0&&this.addNewRoot(new kr(k),B),this}addAndReturn(k){let B=this.splay(k);return B!=0&&this.addNewRoot(new kr(k),B),this.root.key}addAll(k){for(let B of k)this.add(B)}isEmpty(){return this.root==null}isNotEmpty(){return this.root!=null}single(){if(this.size==0)throw"Bad state: No element";if(this.size>1)throw"Bad state: Too many element";return this.root.key}first(){if(this.size==0)throw"Bad state: No element";return this._first().key}last(){if(this.size==0)throw"Bad state: No element";return this._last().key}lastBefore(k){if(k==null)throw"Invalid arguments(s)";if(this.root==null)return null;if(this.splay(k)<0)return this.root.key;let B=this.root.left;if(B==null)return null;let P=B.right;for(;P!=null;)B=P,P=B.right;return B.key}firstAfter(k){if(k==null)throw"Invalid arguments(s)";if(this.root==null)return null;if(this.splay(k)>0)return this.root.key;let B=this.root.right;if(B==null)return null;let P=B.left;for(;P!=null;)B=P,P=B.left;return B.key}retainAll(k){let B=new Br(this.compare,this.validKey),P=this.modificationCount;for(let A of k){if(P!=this.modificationCount)throw"Concurrent modification during iteration.";this.validKey(A)&&this.splay(A)==0&&B.add(this.root.key)}B.size!=this.size&&(this.root=B.root,this.size=B.size,this.modificationCount++)}lookup(k){return!this.validKey(k)||this.splay(k)!=0?null:this.root.key}intersection(k){let B=new Br(this.compare,this.validKey);for(let P of this)k.has(P)&&B.add(P);return B}difference(k){let B=new Br(this.compare,this.validKey);for(let P of this)k.has(P)||B.add(P);return B}union(k){let B=this.clone();return B.addAll(k),B}clone(){let k=new Br(this.compare,this.validKey);return k.size=this.size,k.root=this.copyNode(this.root),k}copyNode(k){if(k==null)return null;function B(A,T){let O,R;do{if(O=A.left,R=A.right,O!=null){let Z=new kr(O.key);T.left=Z,B(O,Z)}if(R!=null){let Z=new kr(R.key);T.right=Z,A=R,T=Z}}while(R!=null)}let P=new kr(k.key);return B(k,P),P}toSet(){return this.clone()}entries(){return new uo(this.wrap())}keys(){return this[Symbol.iterator]()}values(){return this[Symbol.iterator]()}[Symbol.iterator](){return new oo(this.wrap())}[Symbol.toStringTag]="[object Set]"},Ha=class{tree;path=new Array;modificationCount=null;splayCount;constructor(C){this.tree=C,this.splayCount=C.getSplayCount()}[Symbol.iterator](){return this}next(){return this.moveNext()?{done:!1,value:this.current()}:{done:!0,value:null}}current(){if(!this.path.length)return null;let C=this.path[this.path.length-1];return this.getValue(C)}rebuildPath(C){this.path.splice(0,this.path.length),this.tree.splay(C),this.path.push(this.tree.getRoot()),this.splayCount=this.tree.getSplayCount()}findLeftMostDescendent(C){for(;C!=null;)this.path.push(C),C=C.left}moveNext(){if(this.modificationCount!=this.tree.getModificationCount()){if(this.modificationCount==null){this.modificationCount=this.tree.getModificationCount();let B=this.tree.getRoot();for(;B!=null;)this.path.push(B),B=B.left;return this.path.length>0}throw"Concurrent modification during iteration."}if(!this.path.length)return!1;this.splayCount!=this.tree.getSplayCount()&&this.rebuildPath(this.path[this.path.length-1].key);let C=this.path[this.path.length-1],k=C.right;if(k!=null){for(;k!=null;)this.path.push(k),k=k.left;return!0}for(this.path.pop();this.path.length&&this.path[this.path.length-1].right===C;)C=this.path.pop();return this.path.length>0}},oo=class extends Ha{getValue(C){return C.key}},uo=class extends Ha{getValue(C){return[C.key,C.key]}},Va=C=>()=>C,Ra=C=>{let k=C?(B,P)=>P.minus(B).abs().isLessThanOrEqualTo(C):Va(!1);return(B,P)=>k(B,P)?0:B.comparedTo(P)};function lo(C){let k=C?(B,P,A,T,O)=>B.exponentiatedBy(2).isLessThanOrEqualTo(T.minus(P).exponentiatedBy(2).plus(O.minus(A).exponentiatedBy(2)).times(C)):Va(!1);return(B,P,A)=>{let T=B.x,O=B.y,R=A.x,Z=A.y,U=O.minus(Z).times(P.x.minus(R)).minus(T.minus(R).times(P.y.minus(Z)));return k(U,T,O,R,Z)?0:U.comparedTo(0)}}var ho=C=>C,co=C=>{if(C){let k=new Rs(Ra(C)),B=new Rs(Ra(C)),P=(T,O)=>O.addAndReturn(T),A=T=>({x:P(T.x,k),y:P(T.y,B)});return A({x:new gi(0),y:new gi(0)}),A}return ho},Ia=C=>({set:k=>{Pi=Ia(k)},reset:()=>Ia(C),compare:Ra(C),snap:co(C),orient:lo(C)}),Pi=Ia(),Mr=(C,k)=>C.ll.x.isLessThanOrEqualTo(k.x)&&k.x.isLessThanOrEqualTo(C.ur.x)&&C.ll.y.isLessThanOrEqualTo(k.y)&&k.y.isLessThanOrEqualTo(C.ur.y),za=(C,k)=>{if(k.ur.x.isLessThan(C.ll.x)||C.ur.x.isLessThan(k.ll.x)||k.ur.y.isLessThan(C.ll.y)||C.ur.y.isLessThan(k.ll.y))return null;let B=C.ll.x.isLessThan(k.ll.x)?k.ll.x:C.ll.x,P=C.ur.x.isLessThan(k.ur.x)?C.ur.x:k.ur.x,A=C.ll.y.isLessThan(k.ll.y)?k.ll.y:C.ll.y,T=C.ur.y.isLessThan(k.ur.y)?C.ur.y:k.ur.y;return{ll:{x:B,y:A},ur:{x:P,y:T}}},Is=(C,k)=>C.x.times(k.y).minus(C.y.times(k.x)),qa=(C,k)=>C.x.times(k.x).plus(C.y.times(k.y)),zs=C=>qa(C,C).sqrt(),po=(C,k,B)=>{let P={x:k.x.minus(C.x),y:k.y.minus(C.y)},A={x:B.x.minus(C.x),y:B.y.minus(C.y)};return Is(A,P).div(zs(A)).div(zs(P))},fo=(C,k,B)=>{let P={x:k.x.minus(C.x),y:k.y.minus(C.y)},A={x:B.x.minus(C.x),y:B.y.minus(C.y)};return qa(A,P).div(zs(A)).div(zs(P))},Ka=(C,k,B)=>k.y.isZero()?null:{x:C.x.plus(k.x.div(k.y).times(B.minus(C.y))),y:B},Wa=(C,k,B)=>k.x.isZero()?null:{x:B,y:C.y.plus(k.y.div(k.x).times(B.minus(C.x)))},_o=(C,k,B,P)=>{if(k.x.isZero())return Wa(B,P,C.x);if(P.x.isZero())return Wa(C,k,B.x);if(k.y.isZero())return Ka(B,P,C.y);if(P.y.isZero())return Ka(C,k,B.y);let A=Is(k,P);if(A.isZero())return null;let T={x:B.x.minus(C.x),y:B.y.minus(C.y)},O=Is(T,k).div(A),R=Is(T,P).div(A),Z=C.x.plus(R.times(k.x)),U=B.x.plus(O.times(P.x)),Q=C.y.plus(R.times(k.y)),Y=B.y.plus(O.times(P.y)),ot=Z.plus(U).div(2),ut=Q.plus(Y).div(2);return{x:ot,y:ut}},yi=class no{point;isLeft;segment;otherSE;consumedBy;static compare(k,B){let P=no.comparePoints(k.point,B.point);return P!==0?P:(k.point!==B.point&&k.link(B),k.isLeft!==B.isLeft?k.isLeft?1:-1:Gs.compare(k.segment,B.segment))}static comparePoints(k,B){return k.x.isLessThan(B.x)?-1:k.x.isGreaterThan(B.x)?1:k.y.isLessThan(B.y)?-1:k.y.isGreaterThan(B.y)?1:0}constructor(k,B){k.events===void 0?k.events=[this]:k.events.push(this),this.point=k,this.isLeft=B}link(k){if(k.point===this.point)throw new Error("Tried to link already linked events");let B=k.point.events;for(let P=0,A=B.length;P{let T=A.otherSE;B.set(A,{sine:po(this.point,k.point,T.point),cosine:fo(this.point,k.point,T.point)})};return(A,T)=>{B.has(A)||P(A),B.has(T)||P(T);let{sine:O,cosine:R}=B.get(A),{sine:Z,cosine:U}=B.get(T);return O.isGreaterThanOrEqualTo(0)&&Z.isGreaterThanOrEqualTo(0)?R.isLessThan(U)?1:R.isGreaterThan(U)?-1:0:O.isLessThan(0)&&Z.isLessThan(0)?R.isLessThan(U)?-1:R.isGreaterThan(U)?1:0:Z.isLessThan(O)?-1:Z.isGreaterThan(O)?1:0}}},mo=class ja{events;poly;_isExteriorRing;_enclosingRing;static factory(k){let B=[];for(let P=0,A=k.length;P0&&(k=O)}let B=k.segment.prevInResult(),P=B?B.prevInResult():null;for(;;){if(!B)return null;if(!P)return B.ringOut;if(P.ringOut!==B.ringOut)return P.ringOut?.enclosingRing()!==B.ringOut?B.ringOut:B.ringOut?.enclosingRing();B=P.prevInResult(),P=B?B.prevInResult():null}}},Ya=class{exteriorRing;interiorRings;constructor(C){this.exteriorRing=C,C.poly=this,this.interiorRings=[]}addInterior(C){this.interiorRings.push(C),C.poly=this}getGeom(){let C=this.exteriorRing.getGeom();if(C===null)return null;let k=[C];for(let B=0,P=this.interiorRings.length;B0?(this.tree.delete(k),B.push(C)):(this.segments.push(k),k.prev=P)}else{if(P&&A){let T=P.getIntersection(A);if(T!==null){if(!P.isAnEndpoint(T)){let O=this._splitSafely(P,T);for(let R=0,Z=O.length;R0)return-1;let ot=B.comparePoint(k.rightSE.point);return ot!==0?ot:-1}if(P.isGreaterThan(A)){if(R.isLessThan(Z)&&R.isLessThan(Q))return-1;if(R.isGreaterThan(Z)&&R.isGreaterThan(Q))return 1;let Y=B.comparePoint(k.leftSE.point);if(Y!==0)return Y;let ot=k.comparePoint(B.rightSE.point);return ot<0?1:ot>0?-1:1}if(R.isLessThan(Z))return-1;if(R.isGreaterThan(Z))return 1;if(T.isLessThan(O)){let Y=B.comparePoint(k.rightSE.point);if(Y!==0)return Y}if(T.isGreaterThan(O)){let Y=k.comparePoint(B.rightSE.point);if(Y<0)return 1;if(Y>0)return-1}if(!T.eq(O)){let Y=U.minus(R),ot=T.minus(P),ut=Q.minus(Z),vt=O.minus(A);if(Y.isGreaterThan(ot)&&ut.isLessThan(vt))return 1;if(Y.isLessThan(ot)&&ut.isGreaterThan(vt))return-1}return T.isGreaterThan(O)?1:T.isLessThan(O)||U.isLessThan(Q)?-1:U.isGreaterThan(Q)?1:k.idB.id?1:0}constructor(k,B,P,A){this.id=++Lo,this.leftSE=k,k.segment=this,k.otherSE=B,this.rightSE=B,B.segment=this,B.otherSE=k,this.rings=P,this.windings=A}static fromRing(k,B,P){let A,T,O,R=yi.comparePoints(k,B);if(R<0)A=k,T=B,O=1;else if(R>0)A=B,T=k,O=-1;else throw new Error(`Tried to create degenerate segment at [${k.x}, ${k.y}]`);let Z=new yi(A,!0),U=new yi(T,!1);return new Vs(Z,U,[P],[O])}replaceRightSE(k){this.rightSE=k,this.rightSE.segment=this,this.rightSE.otherSE=this.leftSE,this.leftSE.otherSE=this.rightSE}bbox(){let k=this.leftSE.point.y,B=this.rightSE.point.y;return{ll:{x:this.leftSE.point.x,y:k.isLessThan(B)?k:B},ur:{x:this.rightSE.point.x,y:k.isGreaterThan(B)?k:B}}}vector(){return{x:this.rightSE.point.x.minus(this.leftSE.point.x),y:this.rightSE.point.y.minus(this.leftSE.point.y)}}isAnEndpoint(k){return k.x.eq(this.leftSE.point.x)&&k.y.eq(this.leftSE.point.y)||k.x.eq(this.rightSE.point.x)&&k.y.eq(this.rightSE.point.y)}comparePoint(k){return Pi.orient(this.leftSE.point,k,this.rightSE.point)}getIntersection(k){let B=this.bbox(),P=k.bbox(),A=za(B,P);if(A===null)return null;let T=this.leftSE.point,O=this.rightSE.point,R=k.leftSE.point,Z=k.rightSE.point,U=Mr(B,R)&&this.comparePoint(R)===0,Q=Mr(P,T)&&k.comparePoint(T)===0,Y=Mr(B,Z)&&this.comparePoint(Z)===0,ot=Mr(P,O)&&k.comparePoint(O)===0;if(Q&&U)return ot&&!Y?O:!ot&&Y?Z:null;if(Q)return Y&&T.x.eq(Z.x)&&T.y.eq(Z.y)?null:T;if(U)return ot&&O.x.eq(R.x)&&O.y.eq(R.y)?null:R;if(ot&&Y)return null;if(ot)return O;if(Y)return Z;let ut=_o(T,this.vector(),R,k.vector());return ut===null||!Mr(A,ut)?null:Pi.snap(ut)}split(k){let B=[],P=k.events!==void 0,A=new yi(k,!0),T=new yi(k,!1),O=this.rightSE;this.replaceRightSE(T),B.push(T),B.push(A);let R=new Vs(A,O,this.rings.slice(),this.windings.slice());return yi.comparePoints(R.leftSE.point,R.rightSE.point)>0&&R.swapEvents(),yi.comparePoints(this.leftSE.point,this.rightSE.point)>0&&this.swapEvents(),P&&(A.checkForConsuming(),T.checkForConsuming()),B}swapEvents(){let k=this.rightSE;this.rightSE=this.leftSE,this.leftSE=k,this.leftSE.isLeft=!0,this.rightSE.isLeft=!1;for(let B=0,P=this.windings.length;B0){let T=B;B=P,P=T}if(B.prev===P){let T=B;B=P,P=T}for(let T=0,O=P.rings.length;TA.length===1&&A[0].isSubject;this._isInResult=P(k)!==P(B);break}}return this._isInResult}},$a=class{poly;isExterior;segments;bbox;constructor(C,k,B){if(!Array.isArray(C)||C.length===0)throw new Error("Input geometry is not a valid Polygon or MultiPolygon");if(this.poly=k,this.isExterior=B,this.segments=[],typeof C[0][0]!="number"||typeof C[0][1]!="number")throw new Error("Input geometry is not a valid Polygon or MultiPolygon");let P=Pi.snap({x:new gi(C[0][0]),y:new gi(C[0][1])});this.bbox={ll:{x:P.x,y:P.y},ur:{x:P.x,y:P.y}};let A=P;for(let T=1,O=C.length;TNs.run("intersection",C,k),xo=(C,...k)=>Ns.run("difference",C,k);Pi.set;function Zs(C){let k={type:"Feature"};return k.geometry=C,k}function js(C){return C.type==="Feature"?C.geometry:C}function Ja(C){return C&&C.geometry&&C.geometry.coordinates?C.geometry.coordinates:C}function ko(C){return Zs({type:"LineString",coordinates:C})}function Mo(C){return Zs({type:"MultiLineString",coordinates:C})}function Qa(C){return Zs({type:"Polygon",coordinates:C})}function to(C){return Zs({type:"MultiPolygon",coordinates:C})}function wo(C,k){let B=js(C),P=js(k),A=Co(B.coordinates,P.coordinates);return A.length===0?null:A.length===1?Qa(A[0]):to(A)}function Eo(C,k){let B=js(C),P=js(k),A=xo(B.coordinates,P.coordinates);return A.length===0?null:A.length===1?Qa(A[0]):to(A)}function eo(C){return Array.isArray(C)?1+eo(C[0]):-1}function Bo(C){C instanceof L.Polyline&&(C=C.toGeoJSON(15));let k=Ja(C),B=eo(k),P=[];return B>1?k.forEach(A=>{P.push(ko(A))}):P.push(C),P}function Po(C){let k=[];return C.eachLayer(B=>{k.push(Ja(B.toGeoJSON(15)))}),Mo(k)}fe.Cut=fe.Polygon.extend({initialize(C){this._map=C,this._shape="Cut",this.toolbarButtonName="cutPolygon"},_finishShape(){if(this._editedLayers=[],!this.options.allowSelfIntersection&&(this._handleSelfIntersection(!0,this._layer.getLatLngs()[0]),this._doesSelfIntersect)||this.options.requireSnapToFinish&&!this._hintMarker._snapped&&!this._isFirstLayer())return;let C=this._layer.getLatLngs();if(C.length<=2)return;let k=L.polygon(C,this.options.pathOptions);k._latlngInfos=this._layer._latlngInfo,this.cut(k),this._cleanupSnapping(),this._otherSnapLayers.splice(this._tempSnapLayerIndex,1),delete this._tempSnapLayerIndex,this._editedLayers.forEach(({layer:P,originalLayer:A})=>{this._fireCut(A,P,A),this._fireCut(this._map,P,A),A.pm._fireEdit()}),this._editedLayers=[];let B=this._hintMarker.getLatLng();this.disable(),this.options.continueDrawing&&(this.enable(),this._hintMarker.setLatLng(B))},cut(C){let k=this._map._layers,B=C._latlngInfos||[];Object.keys(k).map(P=>k[P]).filter(P=>P.pm).filter(P=>!P._pmTempLayer).filter(P=>!L.PM.optIn&&!P.options.pmIgnore||L.PM.optIn&&P.options.pmIgnore===!1).filter(P=>P instanceof L.Polyline).filter(P=>P!==C).filter(P=>P.pm.options.allowCutting).filter(P=>this.options.layersToCut&&L.Util.isArray(this.options.layersToCut)&&this.options.layersToCut.length>0?this.options.layersToCut.indexOf(P)>-1:!0).filter(P=>!this._layerGroup.hasLayer(P)).filter(P=>{try{let A=!!Ne(C.toGeoJSON(15),P.toGeoJSON(15)).features.length>0;return A||P instanceof L.Polyline&&!(P instanceof L.Polygon)?A:!!wo(C.toGeoJSON(15),P.toGeoJSON(15))}catch{return P instanceof L.Polygon&&console.error("You can't cut polygons with self-intersections"),!1}}).forEach(P=>{let A;if(P instanceof L.Polygon){A=L.polygon(P.getLatLngs());let Z=A.getLatLngs();B.forEach(U=>{if(U&&U.snapInfo){let{latlng:Q}=U,Y=this._calcClosestLayer(Q,[A]);if(Y&&Y.segment&&Y.distance1?(0,Fa.default)(Z,vt):Z).splice(xt,0,Q)}}}})}else A=P;let T=this._cutLayer(C,A),O=L.geoJSON(T,P.options);O.getLayers().length===1&&([O]=O.getLayers()),this._setPane(O,"layerPane");let R=O.addTo(this._map.pm._getContainingLayer());if(R.pm.enable(P.pm.options),R.pm.disable(),P._pmTempLayer=!0,C._pmTempLayer=!0,P.remove(),P.removeFrom(this._map.pm._getContainingLayer()),C.remove(),C.removeFrom(this._map.pm._getContainingLayer()),R.getLayers&&R.getLayers().length===0&&this._map.pm.removeLayer({target:R}),R instanceof L.LayerGroup?(R.eachLayer(Z=>{this._addDrawnLayerProp(Z)}),this._addDrawnLayerProp(R)):this._addDrawnLayerProp(R),this.options.layersToCut&&L.Util.isArray(this.options.layersToCut)&&this.options.layersToCut.length>0){let Z=this.options.layersToCut.indexOf(P);Z>-1&&this.options.layersToCut.splice(Z,1)}this._editedLayers.push({layer:R,originalLayer:P})})},_cutLayer(C,k){let B=L.geoJSON(),P;if(k instanceof L.Polygon)P=Eo(k.toGeoJSON(15),C.toGeoJSON(15));else{let A=Bo(k);A.forEach(T=>{let O=Ta(T,C.toGeoJSON(15)),R;O&&O.features.length>0?R=L.geoJSON(O):R=L.geoJSON(T),R.getLayers().forEach(Z=>{As(C.toGeoJSON(15),Z.toGeoJSON(15))||Z.addTo(B)})}),A.length>1?P=Po(B):P=B.toGeoJSON(15)}return P},_change:L.Util.falseFn}),fe.Text=fe.extend({initialize(C){this._map=C,this._shape="Text",this.toolbarButtonName="drawText"},enable(C){L.Util.setOptions(this,C),this._enabled=!0,this._map.on("click",this._createMarker,this),this._map.pm.Toolbar.toggleButton(this.toolbarButtonName,!0),this._hintMarker=L.marker(this._map.getCenter(),{interactive:!1,zIndexOffset:100,icon:L.divIcon({className:"marker-icon cursor-marker"})}),this._setPane(this._hintMarker,"vertexPane"),this._hintMarker._pmTempLayer=!0,this._hintMarker.addTo(this._map),this.options.cursorMarker&&L.DomUtil.addClass(this._hintMarker._icon,"visible"),this.options.tooltips&&this._hintMarker.bindTooltip(Wt("tooltips.placeText"),{permanent:!0,offset:L.point(0,10),direction:"bottom",opacity:.8}).openTooltip(),this._layer=this._hintMarker,this._map.on("mousemove",this._syncHintMarker,this),this._map.getContainer().classList.add("geoman-draw-cursor"),this._fireDrawStart(),this._setGlobalDrawMode()},disable(){this._enabled&&(this._enabled=!1,this._map.off("click",this._createMarker,this),this._hintMarker?.remove(),this._map.getContainer().classList.remove("geoman-draw-cursor"),this._map.off("mousemove",this._syncHintMarker,this),this._map.off("mousemove",this._showHintMarkerAfterMoving,this),this._map.pm.Toolbar.toggleButton(this.toolbarButtonName,!1),this.options.snappable&&this._cleanupSnapping(),this._fireDrawEnd(),this._setGlobalDrawMode())},enabled(){return this._enabled},toggle(C){this.enabled()?this.disable():this.enable(C)},_syncHintMarker(C){if(this._hintMarker.setLatLng(C.latlng),this.options.snappable){let k=C;k.target=this._hintMarker,this._handleSnapping(k)}},_createMarker(C){if(!C.latlng||this.options.requireSnapToFinish&&!this._hintMarker._snapped&&!this._isFirstLayer())return;this._hintMarker._snapped||this._hintMarker.setLatLng(C.latlng);let k=this._hintMarker.getLatLng();if(this.textArea=this._createTextArea(),this.options.textOptions?.className){let A=this.options.textOptions.className.split(" ");this.textArea.classList.add(...A)}let B=this._createTextIcon(this.textArea),P=new L.Marker(k,{textMarker:!0,_textMarkerOverPM:!0,icon:B});if(this._setPane(P,"markerPane"),this._finishLayer(P),P.pm||(P.options.draggable=!1),P.addTo(this._map.pm._getContainingLayer()),P.pm){P.pm.textArea=this.textArea,L.setOptions(P.pm,{removeIfEmpty:this.options.textOptions?.removeIfEmpty??!0});let A=this.options.textOptions?.focusAfterDraw??!0;P.pm._createTextMarker(A),this.options.textOptions?.text&&P.pm.setText(this.options.textOptions.text)}this._fireCreate(P),this._cleanupSnapping(),this.disable(),this.options.continueDrawing&&this._map.once("mousemove",this._showHintMarkerAfterMoving,this)},_showHintMarkerAfterMoving(C){this.enable(),this._hintMarker.setLatLng(C.latlng)},_createTextArea(){let C=document.createElement("textarea");return C.readOnly=!0,C.classList.add("pm-textarea","pm-disabled"),C},_createTextIcon(C){return L.divIcon({className:"pm-text-marker",html:C})}});var So={enableLayerDrag(){if(!this.options.draggable||!this._layer._map)return;this.disable(),this._layerDragEnabled=!0,this._map||(this._map=this._layer._map),(this._layer instanceof L.Marker||this._layer instanceof L.ImageOverlay)&&L.DomEvent.on(this._getDOMElem(),"dragstart",this._stopDOMImageDrag),this._layer.dragging&&this._layer.dragging.disable(),this._tempDragCoord=null,Ni(this._layer)instanceof L.Canvas?(this._layer.on("mouseout",this.removeDraggingClass,this),this._layer.on("mouseover",this.addDraggingClass,this)):this.addDraggingClass(),this._originalMapDragState=this._layer._map.dragging._enabled,this._safeToCacheDragState=!0;let C=this._getDOMElem();C&&(Ni(this._layer)instanceof L.Canvas?(this._layer.on("touchstart mousedown",this._dragMixinOnMouseDown,this),this._map.pm._addTouchEvents(C)):L.DomEvent.on(C,"touchstart mousedown",this._simulateMouseDownEvent,this)),this._fireDragEnable()},disableLayerDrag(){this._layerDragEnabled=!1,Ni(this._layer)instanceof L.Canvas?(this._layer.off("mouseout",this.removeDraggingClass,this),this._layer.off("mouseover",this.addDraggingClass,this)):this.removeDraggingClass(),this._originalMapDragState&&this._dragging&&this._map.dragging.enable(),this._safeToCacheDragState=!1,this._layer.dragging&&this._layer.dragging.disable();let C=this._getDOMElem();C&&(Ni(this._layer)instanceof L.Canvas?(this._layer.off("touchstart mousedown",this._dragMixinOnMouseDown,this),this._map.pm._removeTouchEvents(C)):L.DomEvent.off(C,"touchstart mousedown",this._simulateMouseDownEvent,this)),this._layerDragged&&this._fireUpdate(),this._layerDragged=!1,this._fireDragDisable()},dragging(){return this._dragging},layerDragEnabled(){return!!this._layerDragEnabled},_simulateMouseDownEvent(C){let k=C.touches?C.touches[0]:C,B={originalEvent:k,target:this._layer};return B.containerPoint=this._map.mouseEventToContainerPoint(k),B.latlng=this._map.containerPointToLatLng(B.containerPoint),this._dragMixinOnMouseDown(B),!1},_simulateMouseMoveEvent(C){let k=C.touches?C.touches[0]:C,B={originalEvent:k,target:this._layer};return B.containerPoint=this._map.mouseEventToContainerPoint(k),B.latlng=this._map.containerPointToLatLng(B.containerPoint),this._dragMixinOnMouseMove(B),!1},_simulateMouseUpEvent(C){let k={originalEvent:C.touches?C.touches[0]:C,target:this._layer};return C.type.indexOf("touch")===-1&&(k.containerPoint=this._map.mouseEventToContainerPoint(C),k.latlng=this._map.containerPointToLatLng(k.containerPoint)),this._dragMixinOnMouseUp(k),!1},_dragMixinOnMouseDown(C){if(C.originalEvent.button>0)return;this._overwriteEventIfItComesFromMarker(C);let k=C._fromLayerSync,B=this._syncLayers("_dragMixinOnMouseDown",C);if(this._layer instanceof L.Marker&&(this.options.snappable&&!k&&!B?this._initSnappableMarkers():this._disableSnapping()),this._layer instanceof L.CircleMarker){let P="resizeableCircleMarker";this._layer instanceof L.Circle&&(P="resizeableCircle"),this.options.snappable&&!k&&!B?this._layer.pm.options[P]||this._initSnappableMarkersDrag():this._layer.pm.options[P]?this._layer.pm._disableSnapping():this._layer.pm._disableSnappingDrag()}this._safeToCacheDragState&&(this._originalMapDragState=this._layer._map.dragging._enabled,this._safeToCacheDragState=!1),this._tempDragCoord=C.latlng,L.DomEvent.on(this._map.getContainer(),"touchend mouseup",this._simulateMouseUpEvent,this),L.DomEvent.on(this._map.getContainer(),"touchmove mousemove",this._simulateMouseMoveEvent,this)},_dragMixinOnMouseMove(C){this._overwriteEventIfItComesFromMarker(C);let k=this._getDOMElem();this._syncLayers("_dragMixinOnMouseMove",C),this._dragging||(this._dragging=!0,L.DomUtil.addClass(k,"leaflet-pm-dragging"),this._layer instanceof L.Marker||this._layer.bringToFront(),this._originalMapDragState&&this._map.dragging.disable(),this._fireDragStart()),this._tempDragCoord||(this._tempDragCoord=C.latlng),this._onLayerDrag(C),this._layer instanceof L.CircleMarker&&this._layer.pm._updateHiddenPolyCircle()},_dragMixinOnMouseUp(C){let k=this._getDOMElem();return this._syncLayers("_dragMixinOnMouseUp",C),this._originalMapDragState&&this._map.dragging.enable(),this._safeToCacheDragState=!0,L.DomEvent.off(this._map.getContainer(),"touchmove mousemove",this._simulateMouseMoveEvent,this),L.DomEvent.off(this._map.getContainer(),"touchend mouseup",this._simulateMouseUpEvent,this),this._dragging?(this._layer instanceof L.CircleMarker&&this._layer.pm._updateHiddenPolyCircle(),this._layerDragged=!0,window.setTimeout(()=>{this._dragging=!1,k&&L.DomUtil.removeClass(k,"leaflet-pm-dragging"),this._fireDragEnd(),this._fireEdit(),this._layerEdited=!0},10),!0):!1},_onLayerDrag(C){let{latlng:k}=C,B={lat:k.lat-this._tempDragCoord.lat,lng:k.lng-this._tempDragCoord.lng},P=A=>A.map(T=>{if(Array.isArray(T))return P(T);let O={lat:T.lat+B.lat,lng:T.lng+B.lng};return(T.alt||T.alt===0)&&(O.alt=T.alt),O});if(this._layer instanceof L.Circle&&this._layer.options.resizeableCircle||this._layer instanceof L.CircleMarker&&this._layer.options.resizeableCircleMarker){let A=P([this._layer.getLatLng()]);this._layer.setLatLng(A[0]),this._fireChange(this._layer.getLatLng(),"Edit")}else if(this._layer instanceof L.CircleMarker||this._layer instanceof L.Marker){let A=this._layer.getLatLng();this._layer._snapped&&(A=this._layer._orgLatLng);let T=P([A]);this._layer.setLatLng(T[0]),this._fireChange(this._layer.getLatLng(),"Edit")}else if(this._layer instanceof L.ImageOverlay){let A=P([this._layer.getBounds().getNorthWest(),this._layer.getBounds().getSouthEast()]);this._layer.setBounds(A),this._fireChange(this._layer.getBounds(),"Edit")}else{let A=P(this._layer.getLatLngs());this._layer.setLatLngs(A),this._fireChange(this._layer.getLatLngs(),"Edit")}this._tempDragCoord=k,C.layer=this._layer,this._fireDrag(C)},addDraggingClass(){let C=this._getDOMElem();C&&L.DomUtil.addClass(C,"leaflet-pm-draggable")},removeDraggingClass(){let C=this._getDOMElem();C&&L.DomUtil.removeClass(C,"leaflet-pm-draggable")},_getDOMElem(){let C=null;return this._layer._path?C=this._layer._path:this._layer._renderer&&this._layer._renderer._container?C=this._layer._renderer._container:this._layer._image?C=this._layer._image:this._layer._icon&&(C=this._layer._icon),C},_overwriteEventIfItComesFromMarker(C){C.target.getLatLng&&(!C.target._radius||C.target._radius<=10)&&(C.containerPoint=this._map.mouseEventToContainerPoint(C.originalEvent),C.latlng=this._map.containerPointToLatLng(C.containerPoint))},_syncLayers(C,k){if(this.enabled())return!1;if(!k._fromLayerSync&&this._layer===k.target&&this.options.syncLayersOnDrag){k._fromLayerSync=!0;let B=[];if(L.Util.isArray(this.options.syncLayersOnDrag))B=this.options.syncLayersOnDrag,this.options.syncLayersOnDrag.forEach(P=>{P instanceof L.LayerGroup&&(B=B.concat(P.pm.getLayers(!0)))});else if(this.options.syncLayersOnDrag===!0&&this._parentLayerGroup)for(let P in this._parentLayerGroup){let A=this._parentLayerGroup[P];A.pm&&(B=A.pm.getLayers(!0))}return L.Util.isArray(B)&&B.length>0&&(B=B.filter(P=>!!P.pm).filter(P=>!!P.pm.options.draggable),B.forEach(P=>{P!==this._layer&&P.pm[C]&&(P._snapped=!1,P.pm[C](k))})),B.length>0}return!1},_stopDOMImageDrag(C){return C.preventDefault(),!1}},Ao=So,To=et(hi());function Do(C,k,B,P){return B.unproject(k.transform(B.project(C,P)),P)}function io(C,k,B){let P=B.getMaxZoom();if(P===1/0&&(P=B.getZoom()),L.Util.isArray(C)){let A=[];return C.forEach(T=>{A.push(io(T,k,B))}),A}return C instanceof L.LatLng?Do(C,k,B,P):null}function Fn(C,k){k instanceof L.Layer&&(k=k.getLatLng());let B=C.getMaxZoom();return B===1/0&&(B=C.getZoom()),C.project(k,B)}function Us(C,k){let B=C.getMaxZoom();return B===1/0&&(B=C.getZoom()),C.unproject(k,B)}var Oo={_onRotateStart(C){this._preventRenderingMarkers(!0),this._rotationOriginLatLng=this._getRotationCenter().clone(),this._rotationOriginPoint=Fn(this._map,this._rotationOriginLatLng),this._rotationStartPoint=Fn(this._map,C.target.getLatLng()),this._initialRotateLatLng=ri(this._layer),this._startAngle=this.getAngle();let k=ri(this._rotationLayer,this._rotationLayer.pm._rotateOrgLatLng);this._fireRotationStart(this._rotationLayer,k),this._fireRotationStart(this._map,k)},_onRotate(C){let k=Fn(this._map,C.target.getLatLng()),B=this._rotationStartPoint,P=this._rotationOriginPoint,A=Math.atan2(k.y-P.y,k.x-P.x)-Math.atan2(B.y-P.y,B.x-P.x);this._layer.setLatLngs(this._rotateLayer(A,this._initialRotateLatLng,this._rotationOriginLatLng,L.PM.Matrix.init(),this._map));let T=this;function O(Q,Y=[],ot=-1){if(ot>-1&&Y.push(ot),L.Util.isArray(Q[0]))Q.forEach((ut,vt)=>O(ut,Y.slice(),vt));else{let ut=Y.length>0?(0,To.default)(T._markers,Y):T._markers[0];Q.forEach((vt,xt)=>{ut[xt].setLatLng(vt)})}}O(this._layer.getLatLngs());let R=ri(this._rotationLayer);this._rotationLayer.setLatLngs(this._rotateLayer(A,this._rotationLayer.pm._rotateOrgLatLng,this._rotationOriginLatLng,L.PM.Matrix.init(),this._map));let Z=A*180/Math.PI;Z=Z<0?Z+360:Z;let U=Z+this._startAngle;this._setAngle(U),this._rotationLayer.pm._setAngle(U),this._fireRotation(this._rotationLayer,Z,R),this._fireRotation(this._map,Z,R),this._rotationLayer.pm._fireChange(this._rotationLayer.getLatLngs(),"Rotation")},_onRotateEnd(){let C=this._startAngle;delete this._rotationOriginLatLng,delete this._rotationOriginPoint,delete this._rotationStartPoint,delete this._initialRotateLatLng,delete this._startAngle;let k=ri(this._rotationLayer,this._rotationLayer.pm._rotateOrgLatLng);this._rotationLayer.pm._rotateOrgLatLng=ri(this._rotationLayer),this._fireRotationEnd(this._rotationLayer,C,k),this._fireRotationEnd(this._map,C,k),this._rotationLayer.pm._fireEdit(this._rotationLayer,"Rotation"),this._preventRenderingMarkers(!1),this._layerRotated=!0},_rotateLayer(C,k,B,P,A){let T=Fn(A,B);return this._matrix=P.clone().rotate(C,T).flip(),io(k,this._matrix,A)},_setAngle(C){C=C<0?C+360:C,this._angle=C%360},_getRotationCenter(){if(this._rotationCenter)return this._rotationCenter;let C=L.polygon(this._layer.getLatLngs(),{stroke:!1,fill:!1,pmIgnore:!0}).addTo(this._layer._map),k=C.getCenter();return C.removeFrom(this._layer._map),k},enableRotate(){if(!this.options.allowRotation){this.disableRotate();return}this.rotateEnabled()&&this.disableRotate(),this._layer instanceof L.Rectangle&&this._angle===void 0&&this.setInitAngle(ur(this._layer._map,this._layer.getLatLngs()[0][0],this._layer.getLatLngs()[0][1])||0);let C={fill:!1,stroke:!1,pmIgnore:!1,snapIgnore:!0};this._rotatePoly=L.polygon(this._layer.getLatLngs(),C),this._rotatePoly._pmTempLayer=!0,this._rotatePoly.addTo(this._layer._map),this._rotatePoly.pm._setAngle(this.getAngle()),this._rotatePoly.pm.setRotationCenter(this.getRotationCenter()),this._rotatePoly.pm.setOptions(this._layer._map.pm.getGlobalOptions()),this._rotatePoly.pm.setOptions({rotate:!0,snappable:!1,hideMiddleMarkers:!0}),this._rotatePoly.pm._rotationLayer=this._layer,this._rotatePoly.pm.enable(),this._rotateOrgLatLng=ri(this._layer),this._rotateEnabled=!0,this._layer.on("remove",this.disableRotate,this),this._fireRotationEnable(this._layer),this._fireRotationEnable(this._layer._map)},disableRotate(){this.rotateEnabled()&&(this._rotatePoly.pm._layerRotated&&this._fireUpdate(),this._rotatePoly.pm._layerRotated=!1,this._rotatePoly.pm.disable(),this._rotatePoly.remove(),this._rotatePoly.pm.setOptions({rotate:!1}),this._rotatePoly=void 0,this._rotateOrgLatLng=void 0,this._layer.off("remove",this.disableRotate,this),this._rotateEnabled=!1,this._fireRotationDisable(this._layer),this._fireRotationDisable(this._layer._map))},rotateEnabled(){return!!this._rotateEnabled},rotateLayer(C){let k=this.getAngle(),B=this._layer.getLatLngs(),P=C*(Math.PI/180);this._layer.setLatLngs(this._rotateLayer(P,this._layer.getLatLngs(),this._getRotationCenter(),L.PM.Matrix.init(),this._layer._map)),this._rotateOrgLatLng=L.polygon(this._layer.getLatLngs()).getLatLngs(),this._setAngle(this.getAngle()+C),this.rotateEnabled()&&this._rotatePoly&&this._rotatePoly.pm.enabled()&&(this._rotatePoly.setLatLngs(this._rotateLayer(P,this._rotatePoly.getLatLngs(),this._getRotationCenter(),L.PM.Matrix.init(),this._rotatePoly._map)),this._rotatePoly.pm._initMarkers());let A=this.getAngle()-k;A=A<0?A+360:A,this._startAngle=k,this._fireRotation(this._layer,A,B,this._layer),this._fireRotation(this._map||this._layer._map,A,B,this._layer),delete this._startAngle,this._fireChange(this._layer.getLatLngs(),"Rotation")},rotateLayerToAngle(C){let k=C-this.getAngle();this.rotateLayer(k)},getAngle(){return this._angle||0},setInitAngle(C){this._setAngle(C)},getRotationCenter(){return this._getRotationCenter()},setRotationCenter(C){this._rotationCenter=C,this._rotatePoly&&this._rotatePoly.pm.setRotationCenter(C)}},Fo=Oo,Ro=L.Class.extend({includes:[Ao,cs,Fo,sn],options:{snappable:!0,snapDistance:20,allowSelfIntersection:!0,allowSelfIntersectionEdit:!1,preventMarkerRemoval:!1,removeLayerBelowMinVertexCount:!0,limitMarkersToCount:-1,hideMiddleMarkers:!1,snapSegment:!0,syncLayersOnDrag:!1,draggable:!0,allowEditing:!0,allowRemoval:!0,allowCutting:!0,allowRotation:!0,addVertexOn:"click",removeVertexOn:"contextmenu",removeVertexValidation:void 0,addVertexValidation:void 0,moveVertexValidation:void 0,resizeableCircleMarker:!1,resizeableCircle:!0,snapMiddle:!1,snapVertex:!0},setOptions(C){L.Util.setOptions(this,C)},getOptions(){return this.options},applyOptions(){},isPolygon(){return this._layer instanceof L.Polygon},getShape(){return this._shape},_setPane(C,k){k==="layerPane"?C.options.pane=this._map.pm.globalOptions.panes&&this._map.pm.globalOptions.panes.layerPane||"overlayPane":k==="vertexPane"?C.options.pane=this._map.pm.globalOptions.panes&&this._map.pm.globalOptions.panes.vertexPane||"markerPane":k==="markerPane"&&(C.options.pane=this._map.pm.globalOptions.panes&&this._map.pm.globalOptions.panes.markerPane||"markerPane")},remove(){(this._map||this._layer._map).pm.removeLayer({target:this._layer})},_vertexValidation(C,k){let B=k.target,P={layer:this._layer,marker:B,event:k},A="";return C==="move"?A="moveVertexValidation":C==="add"?A="addVertexValidation":C==="remove"&&(A="removeVertexValidation"),this.options[A]&&typeof this.options[A]=="function"&&!this.options[A](P)?(C==="move"&&(B._cancelDragEventChain=B.getLatLng()),!1):(B._cancelDragEventChain=null,!0)},_vertexValidationDrag(C){return C._cancelDragEventChain?(C._latlng=C._cancelDragEventChain,C.update(),!1):!0},_vertexValidationDragEnd(C){return C._cancelDragEventChain?(C._cancelDragEventChain=null,!1):!0}}),ve=Ro;ve.LayerGroup=L.Class.extend({initialize(C){this._layerGroup=C,this._layers=this.getLayers(),this._getMap(),this._layers.forEach(P=>this._initLayer(P));let k=P=>{if(P.layer._pmTempLayer)return;this._layers=this.getLayers();let A=this._layers.filter(T=>!T.pm._parentLayerGroup||!(this._layerGroup._leaflet_id in T.pm._parentLayerGroup));A.forEach(T=>{this._initLayer(T)}),A.length>0&&this._getMap()&&this._getMap().pm.globalEditModeEnabled()&&this.enabled()&&this.enable(this.getOptions())};this._layerGroup.on("layeradd",L.Util.throttle(k,100,this),this),this._layerGroup.on("layerremove",P=>{this._removeLayerFromGroup(P.target)},this);let B=P=>{P.target._pmTempLayer||(this._layers=this.getLayers())};this._layerGroup.on("layerremove",L.Util.throttle(B,100,this),this)},enable(C,k=[]){k.length===0&&(this._layers=this.getLayers()),this._options=C,this._layers.forEach(B=>{B instanceof L.LayerGroup?k.indexOf(B._leaflet_id)===-1&&(k.push(B._leaflet_id),B.pm.enable(C,k)):B.pm.enable(C)})},disable(C=[]){C.length===0&&(this._layers=this.getLayers()),this._layers.forEach(k=>{k instanceof L.LayerGroup?C.indexOf(k._leaflet_id)===-1&&(C.push(k._leaflet_id),k.pm.disable(C)):k.pm.disable()})},enabled(C=[]){return C.length===0&&(this._layers=this.getLayers()),!!this._layers.find(k=>k instanceof L.LayerGroup?C.indexOf(k._leaflet_id)===-1?(C.push(k._leaflet_id),k.pm.enabled(C)):!1:k.pm.enabled())},toggleEdit(C,k=[]){k.length===0&&(this._layers=this.getLayers()),this._options=C,this._layers.forEach(B=>{B instanceof L.LayerGroup?k.indexOf(B._leaflet_id)===-1&&(k.push(B._leaflet_id),B.pm.toggleEdit(C,k)):B.pm.toggleEdit(C)})},_initLayer(C){let k=L.Util.stamp(this._layerGroup);C.pm._parentLayerGroup||(C.pm._parentLayerGroup={}),C.pm._parentLayerGroup[k]=this._layerGroup},_removeLayerFromGroup(C){if(C.pm&&C.pm._layerGroup){let k=L.Util.stamp(this._layerGroup);delete C.pm._layerGroup[k]}},dragging(){return this._layers=this.getLayers(),this._layers?!!this._layers.find(C=>C.pm.dragging()):!1},getOptions(){return this.options},_getMap(){return this._map||this._layers.find(C=>!!C._map)?._map||null},getLayers(C=!1,k=!0,B=!0,P=[]){let A=[];return C?this._layerGroup.getLayers().forEach(T=>{A.push(T),T instanceof L.LayerGroup&&P.indexOf(T._leaflet_id)===-1&&(P.push(T._leaflet_id),A=A.concat(T.pm.getLayers(!0,!0,!0,P)))}):A=this._layerGroup.getLayers(),B&&(A=A.filter(T=>!(T instanceof L.LayerGroup))),k&&(A=A.filter(T=>!!T.pm),A=A.filter(T=>!T._pmTempLayer),A=A.filter(T=>!L.PM.optIn&&!T.options.pmIgnore||L.PM.optIn&&T.options.pmIgnore===!1)),A},setOptions(C,k=[]){k.length===0&&(this._layers=this.getLayers()),this.options=C,this._layers.forEach(B=>{B.pm&&(B instanceof L.LayerGroup?k.indexOf(B._leaflet_id)===-1&&(k.push(B._leaflet_id),B.pm.setOptions(C,k)):B.pm.setOptions(C))})}}),ve.Marker=ve.extend({_shape:"Marker",initialize(C){this._layer=C,this._enabled=!1,this._layer.on("dragend",this._onDragEnd,this)},enable(C={draggable:!0}){if(L.Util.setOptions(this,C),!this.options.allowEditing||!this._layer._map){this.disable();return}this._map=this._layer._map,this.enabled()&&this.disable(),this.applyOptions(),this._layer.on("remove",this.disable,this),this._enabled=!0,this._layer.on("pm:dragstart",this._onDragStart,this),this._layer.on("pm:dragend",this._onMarkerDragEnd,this),this._fireEnable()},disable(){this.enabled()&&(this.disableLayerDrag(),this._layer.off("remove",this.disable,this),this._layer.off("contextmenu",this._removeMarker,this),this._layerEdited&&this._fireUpdate(),this._layerEdited=!1,this._fireDisable(),this._enabled=!1)},enabled(){return this._enabled},toggleEdit(C){this.enabled()?this.disable():this.enable(C)},applyOptions(){this.options.snappable?this._initSnappableMarkers():this._disableSnapping(),this.options.draggable?this.enableLayerDrag():this.disableLayerDrag(),this.options.preventMarkerRemoval||this._layer.on("contextmenu",this._removeMarker,this)},_removeMarker(C){let k=C.target;k.remove(),this._fireRemove(k),this._fireRemove(this._map,k)},_onDragStart(){this._map.pm.Draw.Marker._layerIsDragging=!0},_onMarkerDragEnd(){this._map.pm.Draw.Marker._layerIsDragging=!1},_onDragEnd(){this._fireEdit(),this._layerEdited=!0},_initSnappableMarkers(){let C=this._layer;this.options.snapDistance=this.options.snapDistance||30,this.options.snapSegment=this.options.snapSegment===void 0?!0:this.options.snapSegment,C.off("pm:drag",this._handleSnapping,this),C.on("pm:drag",this._handleSnapping,this),C.off("pm:dragend",this._cleanupSnapping,this),C.on("pm:dragend",this._cleanupSnapping,this),C.off("pm:dragstart",this._unsnap,this),C.on("pm:dragstart",this._unsnap,this)},_disableSnapping(){let C=this._layer;C.off("pm:drag",this._handleSnapping,this),C.off("pm:dragend",this._cleanupSnapping,this),C.off("pm:dragstart",this._unsnap,this)}});var Wi=et(hi()),Io={filterMarkerGroup(){this.markerCache=[],this.createCache(),this._layer.on("pm:edit",this.createCache,this),this.applyLimitFilters({}),this.throttledApplyLimitFilters||(this.throttledApplyLimitFilters=L.Util.throttle(this.applyLimitFilters,100,this)),this._layer.on("pm:disable",this._removeMarkerLimitEvents,this),this._layer.on("remove",this._removeMarkerLimitEvents,this),this.options.limitMarkersToCount>-1&&(this._layer.on("pm:vertexremoved",this._initMarkers,this),this._map.on("mousemove",this.throttledApplyLimitFilters,this))},_removeMarkerLimitEvents(){this._map.off("mousemove",this.throttledApplyLimitFilters,this),this._layer.off("pm:edit",this.createCache,this),this._layer.off("pm:disable",this._removeMarkerLimitEvents,this),this._layer.off("pm:vertexremoved",this._initMarkers,this)},createCache(){let C=[...this._markerGroup.getLayers(),...this.markerCache];this.markerCache=C.filter((k,B,P)=>P.indexOf(k)===B)},_removeFromCache(C){let k=this.markerCache.indexOf(C);k>-1&&this.markerCache.splice(k,1)},renderLimits(C){this.markerCache.forEach(k=>{C.includes(k)?this._markerGroup.addLayer(k):this._markerGroup.removeLayer(k)})},applyLimitFilters({latlng:C={lat:0,lng:0}}){if(this._preventRenderMarkers)return;let k=[...this._filterClosestMarkers(C)];this.renderLimits(k)},_filterClosestMarkers(C){let k=[...this.markerCache],B=this.options.limitMarkersToCount;return B===-1?k:(k.sort((P,A)=>{let T=P._latlng.distanceTo(C),O=A._latlng.distanceTo(C);return T-O}),k.filter((P,A)=>B>-1?A{if(Array.isArray(P[0]))return P.map(B,this);let A=P.map(this._createMarker,this);return this.options.hideMiddleMarkers!==!0&&P.map((T,O)=>{let R=this.isPolygon()?(O+1)%P.length:O+1;return this._createMiddleMarker(A[O],A[R])}),A};this._markers=B(k),this.filterMarkerGroup(),C.addLayer(this._markerGroup)},_createMarker(C){let k=new L.Marker(C,{draggable:!0,icon:L.divIcon({className:"marker-icon"})});return this._setPane(k,"vertexPane"),k._pmTempLayer=!0,this.options.rotate?(k.on("dragstart",this._onRotateStart,this),k.on("drag",this._onRotate,this),k.on("dragend",this._onRotateEnd,this)):(k.on("click",this._onVertexClick,this),k.on("dragstart",this._onMarkerDragStart,this),k.on("move",this._onMarkerDrag,this),k.on("dragend",this._onMarkerDragEnd,this),this.options.preventMarkerRemoval||k.on(this.options.removeVertexOn,this._removeMarker,this)),this._markerGroup.addLayer(k),k},_createMiddleMarker(C,k){if(!C||!k)return!1;let B=L.PM.Utils.calcMiddleLatLng(this._map,C.getLatLng(),k.getLatLng()),P=this._createMarker(B),A=L.divIcon({className:"marker-icon marker-icon-middle"});return P.setIcon(A),P.leftM=C,P.rightM=k,C._middleMarkerNext=P,k._middleMarkerPrev=P,P.on(this.options.addVertexOn,this._onMiddleMarkerClick,this),P.on("movestart",this._onMiddleMarkerMoveStart,this),P},_onMiddleMarkerClick(C){let k=C.target;if(!this._vertexValidation("add",C))return;let B=L.divIcon({className:"marker-icon"});k.setIcon(B),this._addMarker(k,k.leftM,k.rightM)},_onMiddleMarkerMoveStart(C){let k=C.target;if(k.on("moveend",this._onMiddleMarkerMoveEnd,this),!this._vertexValidation("add",C)){k.on("move",this._onMiddleMarkerMovePrevent,this);return}k._dragging=!0,this._addMarker(k,k.leftM,k.rightM)},_onMiddleMarkerMovePrevent(C){let k=C.target;this._vertexValidationDrag(k)},_onMiddleMarkerMoveEnd(C){let k=C.target;if(k.off("move",this._onMiddleMarkerMovePrevent,this),k.off("moveend",this._onMiddleMarkerMoveEnd,this),!this._vertexValidationDragEnd(k))return;let B=L.divIcon({className:"marker-icon"});k.setIcon(B),setTimeout(()=>{delete k._dragging},100)},_addMarker(C,k,B){C.off("movestart",this._onMiddleMarkerMoveStart,this),C.off(this.options.addVertexOn,this._onMiddleMarkerClick,this);let P=C.getLatLng(),A=this._layer._latlngs;delete C.leftM,delete C.rightM;let{indexPath:T,index:O,parentPath:R}=L.PM.Utils.findDeepMarkerIndex(this._markers,k),Z=T.length>1?(0,Wi.default)(A,R):A,U=T.length>1?(0,Wi.default)(this._markers,R):this._markers;Z.splice(O+1,0,P),U.splice(O+1,0,C),this._layer.setLatLngs(A),this.options.hideMiddleMarkers!==!0&&(this._createMiddleMarker(k,C),this._createMiddleMarker(C,B)),this._fireEdit(),this._layerEdited=!0,this._fireChange(this._layer.getLatLngs(),"Edit"),this._fireVertexAdded(C,L.PM.Utils.findDeepMarkerIndex(this._markers,C).indexPath,P),this.options.snappable&&this._initSnappableMarkers()},hasSelfIntersection(){return Mn(this._layer.toGeoJSON(15)).features.length>0},_handleSelfIntersectionOnVertexRemoval(){this._handleLayerStyle(!0)&&(this._layer.setLatLngs(this._coordsBeforeEdit),this._coordsBeforeEdit=null,this._initMarkers())},_handleLayerStyle(C){let k=this._layer,B,P;if(this.options.allowSelfIntersection?B=!1:(P=Mn(this._layer.toGeoJSON(15)),B=P.features.length>0),B){if(!this.options.allowSelfIntersection&&this.options.allowSelfIntersectionEdit&&this._updateDisabledMarkerStyle(this._markers,!0),this.isRed)return B;C?this._flashLayer():(k.setStyle({color:"#f00000ff"}),this.isRed=!0),this._fireIntersect(P)}else k.setStyle({color:this.cachedColor}),this.isRed=!1,!this.options.allowSelfIntersection&&this.options.allowSelfIntersectionEdit&&this._updateDisabledMarkerStyle(this._markers,!1);return B},_flashLayer(){this.cachedColor||(this.cachedColor=this._layer.options.color),this._layer.setStyle({color:"#f00000ff"}),this.isRed=!0,window.setTimeout(()=>{this._layer.setStyle({color:this.cachedColor}),this.isRed=!1},200)},_updateDisabledMarkerStyle(C,k){C.forEach(B=>{Array.isArray(B)?this._updateDisabledMarkerStyle(B,k):B._icon&&(k&&!this._checkMarkerAllowedToDrag(B)?L.DomUtil.addClass(B._icon,"vertexmarker-disabled"):L.DomUtil.removeClass(B._icon,"vertexmarker-disabled"))})},_removeMarker(C){let k=C.target;if(!this._vertexValidation("remove",C))return;this.options.allowSelfIntersection||(this._coordsBeforeEdit=ri(this._layer,this._layer.getLatLngs()));let B=this._layer.getLatLngs(),{indexPath:P,index:A,parentPath:T}=L.PM.Utils.findDeepMarkerIndex(this._markers,k);if(!P)return;let O=P.length>1?(0,Wi.default)(B,T):B,R=P.length>1?(0,Wi.default)(this._markers,T):this._markers,Z=T[T.length-1]>0&&this._layer instanceof L.Polygon;if(!this.options.removeLayerBelowMinVertexCount&&!Z&&(O.length<=2||this.isPolygon()&&O.length<=3)){this._flashLayer();return}O.splice(A,1),this._layer.setLatLngs(B),this.isPolygon()&&O.length<=2&&O.splice(0,O.length);let U=!1;if(O.length<=1&&(O.splice(0,O.length),T.length>1&&P.length>1&&(B=xn(B)),this._layer.setLatLngs(B),this._initMarkers(),U=!0),qt(B)||this._layer.remove(),B=xn(B),this._layer.setLatLngs(B),this._markers=xn(this._markers),!U&&(R=P.length>1?(0,Wi.default)(this._markers,T):this._markers,k._middleMarkerPrev&&(this._markerGroup.removeLayer(k._middleMarkerPrev),this._removeFromCache(k._middleMarkerPrev)),k._middleMarkerNext&&(this._markerGroup.removeLayer(k._middleMarkerNext),this._removeFromCache(k._middleMarkerNext)),this._markerGroup.removeLayer(k),this._removeFromCache(k),R)){let Q,Y;if(this.isPolygon()?(Q=(A+1)%R.length,Y=(A+(R.length-1))%R.length):(Y=A-1<0?void 0:A-1,Q=A+1>=R.length?void 0:A+1),Q!==Y){let ot=R[Y],ut=R[Q];this.options.hideMiddleMarkers!==!0&&this._createMiddleMarker(ot,ut)}R.splice(A,1)}this._fireEdit(),this._layerEdited=!0,this._fireVertexRemoved(k,P),this._fireChange(this._layer.getLatLngs(),"Edit")},updatePolygonCoordsFromMarkerDrag(C){let k=this._layer.getLatLngs(),B=C.getLatLng(),{indexPath:P,index:A,parentPath:T}=L.PM.Utils.findDeepMarkerIndex(this._markers,C),O=P.length>1?(0,Wi.default)(k,T):k;B.alt=O[A].alt,O.splice(A,1,B),this._layer.setLatLngs(k)},_getNeighborMarkers(C){let{indexPath:k,index:B,parentPath:P}=L.PM.Utils.findDeepMarkerIndex(this._markers,C),A=k.length>1?(0,Wi.default)(this._markers,P):this._markers,T=(B+1)%A.length,O=(B+(A.length-1))%A.length,R=A[O],Z=A[T];return{prevMarker:R,nextMarker:Z}},_checkMarkerAllowedToDrag(C){let{prevMarker:k,nextMarker:B}=this._getNeighborMarkers(C),P=L.polyline([k.getLatLng(),C.getLatLng()]),A=L.polyline([C.getLatLng(),B.getLatLng()]),T=Ne(this._layer.toGeoJSON(15),P.toGeoJSON(15)).features.filter(R=>{let Z=R.geometry.coordinates,U=L.latLng(Z[1],Z[0]);return!U.equals(k.getLatLng())&&!U.equals(C.getLatLng())}).length,O=Ne(this._layer.toGeoJSON(15),A.toGeoJSON(15)).features.filter(R=>{let Z=R.geometry.coordinates,U=L.latLng(Z[1],Z[0]);return!U.equals(B.getLatLng())&&!U.equals(C.getLatLng())}).length;return!(T<1&&O<1)},_onMarkerDragStart(C){let k=C.target;if(this._preventRenderingMarkers(!0),this.cachedColor||(this.cachedColor=this._layer.options.color),!this._vertexValidation("move",C))return;let{indexPath:B}=L.PM.Utils.findDeepMarkerIndex(this._markers,k);this._fireMarkerDragStart(C,B),this.options.allowSelfIntersection||(this._coordsBeforeEdit=ri(this._layer,this._layer.getLatLngs())),!this.options.allowSelfIntersection&&this.options.allowSelfIntersectionEdit&&this.hasSelfIntersection()?this._markerAllowedToDrag=this._checkMarkerAllowedToDrag(k):this._markerAllowedToDrag=null},_onMarkerDrag(C){let k=C.target;if(!this._vertexValidationDrag(k))return;let{indexPath:B,index:P,parentPath:A}=L.PM.Utils.findDeepMarkerIndex(this._markers,k);if(!B)return;if(!this.options.allowSelfIntersection&&this.options.allowSelfIntersectionEdit&&this.hasSelfIntersection()&&this._markerAllowedToDrag===!1){this._layer.setLatLngs(this._coordsBeforeEdit),this._initMarkers(),this._handleLayerStyle();return}this.updatePolygonCoordsFromMarkerDrag(k);let T=B.length>1?(0,Wi.default)(this._markers,A):this._markers,O=(P+1)%T.length,R=(P+(T.length-1))%T.length,Z=k.getLatLng(),U=T[R].getLatLng(),Q=T[O].getLatLng();if(k._middleMarkerNext){let Y=L.PM.Utils.calcMiddleLatLng(this._map,Z,Q);k._middleMarkerNext.setLatLng(Y)}if(k._middleMarkerPrev){let Y=L.PM.Utils.calcMiddleLatLng(this._map,Z,U);k._middleMarkerPrev.setLatLng(Y)}this.options.allowSelfIntersection||this._handleLayerStyle(),this._fireMarkerDrag(C,B),this._fireChange(this._layer.getLatLngs(),"Edit")},_onMarkerDragEnd(C){let k=C.target;if(this._preventRenderingMarkers(!1),!this._vertexValidationDragEnd(k))return;let{indexPath:B}=L.PM.Utils.findDeepMarkerIndex(this._markers,k),P=!this.options.allowSelfIntersection&&this.hasSelfIntersection();P&&this.options.allowSelfIntersectionEdit&&this._markerAllowedToDrag&&(P=!1);let A=!this.options.allowSelfIntersection&&P;if(this._fireMarkerDragEnd(C,B,A),A){this._layer.setLatLngs(this._coordsBeforeEdit),this._coordsBeforeEdit=null,this._initMarkers(),this.options.snappable&&this._initSnappableMarkers(),this._handleLayerStyle(),this._fireLayerReset(C,B);return}!this.options.allowSelfIntersection&&this.options.allowSelfIntersectionEdit&&this._handleLayerStyle(),this._fireEdit(),this._layerEdited=!0,this._fireChange(this._layer.getLatLngs(),"Edit")},_onVertexClick(C){let k=C.target;if(k._dragging)return;let{indexPath:B}=L.PM.Utils.findDeepMarkerIndex(this._markers,k);this._fireVertexClick(C,B)}}),ve.Polygon=ve.Line.extend({_shape:"Polygon",_checkMarkerAllowedToDrag(C){let{prevMarker:k,nextMarker:B}=this._getNeighborMarkers(C),P=L.polyline([k.getLatLng(),C.getLatLng()]),A=L.polyline([C.getLatLng(),B.getLatLng()]),T=Ne(this._layer.toGeoJSON(15),P.toGeoJSON(15)).features.filter(R=>{let Z=R.geometry.coordinates,U=L.latLng(Z[1],Z[0]);return!U.equals(k.getLatLng())&&!U.equals(C.getLatLng())}).length,O=Ne(this._layer.toGeoJSON(15),A.toGeoJSON(15)).features.filter(R=>{let Z=R.geometry.coordinates,U=L.latLng(Z[1],Z[0]);return!U.equals(B.getLatLng())&&!U.equals(C.getLatLng())}).length;return!(T<1&&O<1)}}),ve.Rectangle=ve.Polygon.extend({_shape:"Rectangle",_initMarkers(){let C=this._map,k=this._findCorners();this._markerGroup&&this._markerGroup.clearLayers(),this._markerGroup=new L.FeatureGroup,this._markerGroup._pmTempLayer=!0,C.addLayer(this._markerGroup),this._markers=[],this._markers[0]=k.map(this._createMarker,this),[this._cornerMarkers]=this._markers,this._layer.getLatLngs()[0].forEach((B,P)=>{let A=this._cornerMarkers.find(T=>T._index===P);A&&A.setLatLng(B)})},applyOptions(){this.options.snappable?this._initSnappableMarkers():this._disableSnapping(),this._addMarkerEvents()},_createMarker(C,k){let B=new L.Marker(C,{draggable:!0,icon:L.divIcon({className:"marker-icon"})});return this._setPane(B,"vertexPane"),B._origLatLng=C,B._index=k,B._pmTempLayer=!0,B.on("click",this._onVertexClick,this),this._markerGroup.addLayer(B),B},_addMarkerEvents(){this._markers[0].forEach(C=>{C.on("dragstart",this._onMarkerDragStart,this),C.on("drag",this._onMarkerDrag,this),C.on("dragend",this._onMarkerDragEnd,this),this.options.preventMarkerRemoval||C.on("contextmenu",this._removeMarker,this)})},_removeMarker(){return null},_onMarkerDragStart(C){if(!this._vertexValidation("move",C))return;let k=C.target,B=this._cornerMarkers;k._oppositeCornerLatLng=B.find(A=>A._index===(k._index+2)%4).getLatLng(),k._snapped=!1;let{indexPath:P}=L.PM.Utils.findDeepMarkerIndex(this._markers,k);this._fireMarkerDragStart(C,P)},_onMarkerDrag(C){let k=C.target;if(!this._vertexValidationDrag(k)||k._index===void 0)return;this._adjustRectangleForMarkerMove(k);let{indexPath:B}=L.PM.Utils.findDeepMarkerIndex(this._markers,k);this._fireMarkerDrag(C,B),this._fireChange(this._layer.getLatLngs(),"Edit")},_onMarkerDragEnd(C){let k=C.target;if(!this._vertexValidationDragEnd(k))return;this._cornerMarkers.forEach(P=>{delete P._oppositeCornerLatLng});let{indexPath:B}=L.PM.Utils.findDeepMarkerIndex(this._markers,k);this._fireMarkerDragEnd(C,B),this._fireEdit(),this._layerEdited=!0,this._fireChange(this._layer.getLatLngs(),"Edit")},_adjustRectangleForMarkerMove(C){L.extend(C._origLatLng,C._latlng);let k=L.PM.Utils._getRotatedRectangle(C.getLatLng(),C._oppositeCornerLatLng,this.getAngle(),this._map);this._layer.setLatLngs(k),this._adjustAllMarkers(C),this._layer.redraw()},_adjustAllMarkers(C){let k=this._layer.getLatLngs()[0];if(k&&k.length!==4&&k.length>0)k.forEach((B,P)=>{this._cornerMarkers[P].setLatLng(B)}),this._cornerMarkers.slice(k.length).forEach(B=>{B.setLatLng(k[0])});else if(!k||!k.length)console.error("The layer has no LatLngs");else{let B=k.findIndex(P=>C.getLatLng().equals(P));B>-1?(this._cornerMarkers[(C._index+1)%4].setLatLng(k[(B+1)%4]),this._cornerMarkers[(C._index+2)%4].setLatLng(k[(B+2)%4]),this._cornerMarkers[(C._index+3)%4].setLatLng(k[(B+3)%4])):this._cornerMarkers.forEach(P=>{P.setLatLng(k[P._index])})}},_findCorners(){this._angle===void 0&&this.setInitAngle(ur(this._map,this._layer.getLatLngs()[0][0],this._layer.getLatLngs()[0][1])||0);let C=this._layer.getLatLngs()[0];return L.PM.Utils._getRotatedRectangle(C[0],C[2],this.getAngle(),this._map||this)}}),ve.CircleMarker=ve.extend({_shape:"CircleMarker",initialize(C){this._layer=C,this._enabled=!1,this._minRadiusOption="minRadiusCircleMarker",this._maxRadiusOption="maxRadiusCircleMarker",this._editableOption="resizeableCircleMarker",this._updateHiddenPolyCircle()},enable(C={draggable:!0,snappable:!0}){if(L.Util.setOptions(this,C),this.options.editable&&(this.options.resizeableCircleMarker=this.options.editable,delete this.options.editable),!this.options.allowEditing||!this._layer._map){this.disable();return}this._map=this._layer._map,this.enabled()&&this.disable(),this.applyOptions(),this._layer.on("remove",this.disable,this),this._enabled=!0,this._extendingEnable(),this._updateHiddenPolyCircle(),this._fireEnable()},_extendingEnable(){this._layer.on("pm:dragstart",this._onDragStart,this),this._layer.on("pm:drag",this._onMarkerDrag,this),this._layer.on("pm:dragend",this._onMarkerDragEnd,this)},disable(){this.dragging()||(this._map||(this._map=this._layer._map),this._map&&this.enabled()&&(this.layerDragEnabled()&&this.disableLayerDrag(),this._helperLayers&&(this._helperLayers.clearLayers(),this._helperLayers.removeFrom(this._map)),this.options[this._editableOption]?(this._map.off("move",this._syncMarkers,this),this._outerMarker.off("drag",this._handleOuterMarkerSnapping,this)):this._map.off("move",this._updateHiddenPolyCircle,this),this._extendingDisable(),this._layer.off("remove",this.disable,this),this._layerEdited&&this._fireUpdate(),this._layerEdited=!1,this._fireDisable(),this._enabled=!1))},_extendingDisable(){this._layer.off("contextmenu",this._removeMarker,this)},enabled(){return this._enabled},toggleEdit(C){this.enabled()?this.disable():this.enable(C)},applyOptions(){this.options[this._editableOption]?(this._initMarkers(),this._map.on("move",this._syncMarkers,this),this.options.snappable?(this._initSnappableMarkers(),this._outerMarker.on("drag",this._handleOuterMarkerSnapping,this),this._outerMarker.on("move",this._syncHintLine,this),this._outerMarker.on("move",this._syncCircleRadius,this)):this._disableSnapping()):(this.options.draggable&&this.enableLayerDrag(),this._map.on("move",this._updateHiddenPolyCircle,this),this.options.snappable?this._initSnappableMarkersDrag():this._disableSnappingDrag()),this._extendingApplyOptions()},_extendingApplyOptions(){this.options.preventMarkerRemoval||this._layer.on("contextmenu",this._removeMarker,this)},_initMarkers(){let C=this._map;this._helperLayers&&(this._helperLayers.removeFrom(C),this._helperLayers.clearLayers()),this._helperLayers=new L.FeatureGroup,this._helperLayers._pmTempLayer=!0,this._helperLayers.addTo(C);let k=this._layer.getLatLng(),B=this._layer._radius,P=this._getLatLngOnCircle(k,B);this._centerMarker=this._createCenterMarker(k),this._outerMarker=this._createOuterMarker(P),this._markers=[this._centerMarker,this._outerMarker],this._createHintLine(this._centerMarker,this._outerMarker)},_getLatLngOnCircle(C,k){let B=this._map.project(C),P=L.point(B.x+k,B.y);return this._map.unproject(P)},_createHintLine(C,k){let B=C.getLatLng(),P=k.getLatLng();this._hintline=L.polyline([B,P],this.options.hintlineStyle),this._setPane(this._hintline,"layerPane"),this._hintline._pmTempLayer=!0,this._helperLayers.addLayer(this._hintline)},_createCenterMarker(C){let k=this._createMarker(C);return this.options.draggable?(L.DomUtil.addClass(k._icon,"leaflet-pm-draggable"),k.on("move",this._moveCircle,this)):k.dragging.disable(),k},_createOuterMarker(C){let k=this._createMarker(C);return k.on("drag",this._resizeCircle,this),k},_createMarker(C){let k=new L.Marker(C,{draggable:!0,icon:L.divIcon({className:"marker-icon"})});return this._setPane(k,"vertexPane"),k._origLatLng=C,k._pmTempLayer=!0,k.on("dragstart",this._onMarkerDragStart,this),k.on("drag",this._onMarkerDrag,this),k.on("dragend",this._onMarkerDragEnd,this),k.on("click",this._onVertexClick,this),this._helperLayers.addLayer(k),k},_moveCircle(C){if(C.target._cancelDragEventChain)return;let k=this._centerMarker.getLatLng();this._layer.setLatLng(k);let B=this._layer._radius,P=this._getLatLngOnCircle(k,B);this._outerMarker._latlng=P,this._outerMarker.update(),this._syncHintLine(),this._updateHiddenPolyCircle(),this._fireCenterPlaced("Edit"),this._fireChange(this._layer.getLatLng(),"Edit")},_syncMarkers(){let C=this._layer.getLatLng(),k=this._layer._radius,B=this._getLatLngOnCircle(C,k);this._outerMarker.setLatLng(B),this._centerMarker.setLatLng(C),this._syncHintLine(),this._updateHiddenPolyCircle()},_resizeCircle(){this._outerMarker.setLatLng(this._getNewDestinationOfOuterMarker()),this._syncHintLine(),this._syncCircleRadius()},_syncCircleRadius(){let C=this._centerMarker.getLatLng(),k=this._outerMarker.getLatLng(),B=this._distanceCalculation(C,k);this.options[this._minRadiusOption]&&Bthis.options[this._maxRadiusOption]?this._layer.setRadius(this.options[this._maxRadiusOption]):this._layer.setRadius(B),this._updateHiddenPolyCircle(),this._fireChange(this._layer.getLatLng(),"Edit")},_syncHintLine(){let C=this._centerMarker.getLatLng(),k=this._outerMarker.getLatLng();this._hintline.setLatLngs([C,k])},_removeMarker(){this.options[this._editableOption]&&this.disable(),this._layer.remove(),this._fireRemove(this._layer),this._fireRemove(this._map,this._layer)},_onDragStart(){this._map.pm.Draw.CircleMarker._layerIsDragging=!0},_onMarkerDragStart(C){this._vertexValidation("move",C)&&this._fireMarkerDragStart(C)},_onMarkerDrag(C){let k=C.target;k instanceof L.Marker&&!this._vertexValidationDrag(k)||this._fireMarkerDrag(C)},_onMarkerDragEnd(C){this._extedingMarkerDragEnd();let k=C.target;this._vertexValidationDragEnd(k)&&(this.options[this._editableOption]&&(this._fireEdit(),this._layerEdited=!0),this._fireMarkerDragEnd(C))},_extedingMarkerDragEnd(){this._map.pm.Draw.CircleMarker._layerIsDragging=!1},_initSnappableMarkersDrag(){let C=this._layer;this.options.snapDistance=this.options.snapDistance||30,this.options.snapSegment=this.options.snapSegment===void 0?!0:this.options.snapSegment,C.off("pm:drag",this._handleSnapping,this),C.on("pm:drag",this._handleSnapping,this),C.off("pm:dragend",this._cleanupSnapping,this),C.on("pm:dragend",this._cleanupSnapping,this),C.off("pm:dragstart",this._unsnap,this),C.on("pm:dragstart",this._unsnap,this)},_disableSnappingDrag(){let C=this._layer;C.off("pm:drag",this._handleSnapping,this),C.off("pm:dragend",this._cleanupSnapping,this),C.off("pm:dragstart",this._unsnap,this)},_updateHiddenPolyCircle(){let C=this._layer._map||this._map;if(C){let k=L.PM.Utils.pxRadiusToMeterRadius(this._layer.getRadius(),C,this._layer.getLatLng()),B=L.circle(this._layer.getLatLng(),this._layer.options);B.setRadius(k);let P=C&&C.pm._isCRSSimple();this._hiddenPolyCircle?this._hiddenPolyCircle.setLatLngs(L.PM.Utils.circleToPolygon(B,200,!P).getLatLngs()):this._hiddenPolyCircle=L.PM.Utils.circleToPolygon(B,200,!P),this._hiddenPolyCircle._parentCopy||(this._hiddenPolyCircle._parentCopy=this._layer)}},_getNewDestinationOfOuterMarker(){let C=this._centerMarker.getLatLng(),k=this._outerMarker.getLatLng(),B=this._distanceCalculation(C,k);return this.options[this._minRadiusOption]&&Bthis.options[this._maxRadiusOption]&&(k=zi(this._map,C,k,this._getMaxDistanceInMeter(C))),k},_handleOuterMarkerSnapping(){if(this._outerMarker._snapped){let C=this._centerMarker.getLatLng(),k=this._outerMarker.getLatLng(),B=this._distanceCalculation(C,k);this.options[this._minRadiusOption]&&Bthis.options[this._maxRadiusOption]&&this._outerMarker.setLatLng(this._outerMarker._orgLatLng)}this._outerMarker.setLatLng(this._getNewDestinationOfOuterMarker())},_distanceCalculation(C,k){return this._map.project(C).distanceTo(this._map.project(k))},_getMinDistanceInMeter(C){return L.PM.Utils.pxRadiusToMeterRadius(this.options[this._minRadiusOption],this._map,C)},_getMaxDistanceInMeter(C){return L.PM.Utils.pxRadiusToMeterRadius(this.options[this._maxRadiusOption],this._map,C)},_onVertexClick(C){C.target._dragging||this._fireVertexClick(C,void 0)}}),ve.Circle=ve.CircleMarker.extend({_shape:"Circle",initialize(C){this._layer=C,this._enabled=!1,this._minRadiusOption="minRadiusCircle",this._maxRadiusOption="maxRadiusCircle",this._editableOption="resizeableCircle",this._updateHiddenPolyCircle()},enable(C){L.PM.Edit.CircleMarker.prototype.enable.call(this,C||{})},_extendingEnable(){},_extendingDisable(){this._layer.off("remove",this.disable,this);let C=this._layer._path?this._layer._path:this._layer._renderer._container;L.DomUtil.removeClass(C,"leaflet-pm-draggable")},_extendingApplyOptions(){},_syncMarkers(){},_removeMarker(){},_onDragStart(){},_extedingMarkerDragEnd(){},_updateHiddenPolyCircle(){let C=this._map&&this._map.pm._isCRSSimple();this._hiddenPolyCircle?this._hiddenPolyCircle.setLatLngs(L.PM.Utils.circleToPolygon(this._layer,200,!C).getLatLngs()):this._hiddenPolyCircle=L.PM.Utils.circleToPolygon(this._layer,200,!C),this._hiddenPolyCircle._parentCopy||(this._hiddenPolyCircle._parentCopy=this._layer)},_distanceCalculation(C,k){return this._map.distance(C,k)},_getMinDistanceInMeter(){return this.options[this._minRadiusOption]},_getMaxDistanceInMeter(){return this.options[this._maxRadiusOption]},_onVertexClick(C){C.target._dragging||this._fireVertexClick(C,void 0)}}),ve.ImageOverlay=ve.extend({_shape:"ImageOverlay",initialize(C){this._layer=C,this._enabled=!1},toggleEdit(C){this.enabled()?this.disable():this.enable(C)},enabled(){return this._enabled},enable(C={draggable:!0,snappable:!0}){if(L.Util.setOptions(this,C),this._map=this._layer._map,!!this._map){if(!this.options.allowEditing){this.disable();return}this.enabled()||this.disable(),this.enableLayerDrag(),this._layer.on("remove",this.disable,this),this._enabled=!0,this._otherSnapLayers=this._findCorners(),this._fireEnable()}},disable(){this._dragging||(this._map||(this._map=this._layer._map),this.disableLayerDrag(),this._layer.off("remove",this.disable,this),this.enabled()||(this._layerEdited&&this._fireUpdate(),this._layerEdited=!1,this._fireDisable()),this._enabled=!1)},_findCorners(){let C=this._layer.getBounds(),k=C.getNorthWest(),B=C.getNorthEast(),P=C.getSouthEast(),A=C.getSouthWest();return[k,B,P,A]}}),ve.Text=ve.extend({_shape:"Text",initialize(C){this._layer=C,this._enabled=!1},enable(C){if(L.Util.setOptions(this,C),!!this.textArea){if(!this.options.allowEditing||!this._layer._map){this.disable();return}this._map=this._layer._map,this.enabled()&&this.disable(),this.applyOptions(),this._safeToCacheDragState=!0,this._focusChange(),this.textArea.readOnly=!1,this.textArea.classList.remove("pm-disabled"),this._layer.on("remove",this.disable,this),L.DomEvent.on(this.textArea,"input",this._autoResize,this),L.DomEvent.on(this.textArea,"focus",this._focusChange,this),L.DomEvent.on(this.textArea,"blur",this._focusChange,this),this._layer.on("dblclick",L.DomEvent.stop),L.DomEvent.off(this.textArea,"mousedown",this._preventTextSelection),this._enabled=!0,this._fireEnable()}},disable(){if(!this.enabled())return;this._layer.off("remove",this.disable,this),L.DomEvent.off(this.textArea,"input",this._autoResize,this),L.DomEvent.off(this.textArea,"focus",this._focusChange,this),L.DomEvent.off(this.textArea,"blur",this._focusChange,this),document.removeEventListener("click",this._documentClickThis,{capture:!0}),this._focusChange(),this.textArea.readOnly=!0,this.textArea.classList.add("pm-disabled");let C=document.activeElement;this.textArea.focus(),this.textArea.selectionStart=0,this.textArea.selectionEnd=0,L.DomEvent.on(this.textArea,"mousedown",this._preventTextSelection),C.focus(),this._disableOnBlurActive=!1,this._layerEdited&&this._fireUpdate(),this._layerEdited=!1,this._fireDisable(),this._enabled=!1},enabled(){return this._enabled},toggleEdit(C){this.enabled()?this.disable():this.enable(C)},applyOptions(){this.options.snappable?this._initSnappableMarkers():this._disableSnapping()},_initSnappableMarkers(){let C=this._layer;this.options.snapDistance=this.options.snapDistance||30,this.options.snapSegment=this.options.snapSegment===void 0?!0:this.options.snapSegment,C.off("pm:drag",this._handleSnapping,this),C.on("pm:drag",this._handleSnapping,this),C.off("pm:dragend",this._cleanupSnapping,this),C.on("pm:dragend",this._cleanupSnapping,this),C.off("pm:dragstart",this._unsnap,this),C.on("pm:dragstart",this._unsnap,this)},_disableSnapping(){let C=this._layer;C.off("pm:drag",this._handleSnapping,this),C.off("pm:dragend",this._cleanupSnapping,this),C.off("pm:dragstart",this._unsnap,this)},_autoResize(){this.textArea.style.height="1px",this.textArea.style.width="1px";let C=this.textArea.scrollHeight>21?this.textArea.scrollHeight:21,k=this.textArea.scrollWidth>16?this.textArea.scrollWidth:16;this.textArea.style.height=`${C}px`,this.textArea.style.width=`${k}px`,this._layer.options.text=this.getText(),this._fireTextChange(this.getText())},_disableOnBlur(){this._disableOnBlurActive=!0,setTimeout(()=>{this.enabled()&&(this._documentClickThis=this._documentClickThis||this._documentClick.bind(this),document.addEventListener("click",this._documentClickThis,{capture:!0}))},100)},_documentClick(C){C.target!==this.textArea&&(this.disable(),!this.getText()&&this.options.removeIfEmpty&&this.remove())},_focusChange(C={}){let k=this._hasFocus;this._hasFocus=C.type==="focus",!k!=!this._hasFocus&&(this._hasFocus?(this._applyFocus(),this._focusText=this.getText(),this._fireTextFocus()):(this._removeFocus(),this._fireTextBlur(),this._focusText!==this.getText()&&(this._fireEdit(),this._layerEdited=!0)))},_applyFocus(){this.textArea.classList.add("pm-hasfocus"),this._map.dragging&&(this._safeToCacheDragState&&(this._originalMapDragState=this._map.dragging._enabled,this._safeToCacheDragState=!1),this._map.dragging.disable())},_removeFocus(){this._map.dragging&&(this._originalMapDragState&&this._map.dragging.enable(),this._safeToCacheDragState=!0),this.textArea.classList.remove("pm-hasfocus")},focus(){if(!this.enabled())throw new TypeError("Layer is not enabled");this.textArea.focus()},blur(){if(!this.enabled())throw new TypeError("Layer is not enabled");this.textArea.blur(),this._disableOnBlurActive&&this.disable()},hasFocus(){return this._hasFocus},getElement(){return this.textArea},setText(C){C&&(this.textArea.value=C),this._autoResize()},getText(){return this.textArea.value},_initTextMarker(){if(this.textArea=L.PM.Draw.Text.prototype._createTextArea.call(this),this.options.className){let k=this.options.className.split(" ");this.textArea.classList.add(...k)}let C=L.PM.Draw.Text.prototype._createTextIcon.call(this,this.textArea);this._layer.setIcon(C),this._layer.once("add",this._createTextMarker,this)},_createTextMarker(C=!1){this._layer.off("add",this._createTextMarker,this),this._layer.getElement().tabIndex=-1,this.textArea.wrap="off",this.textArea.style.overflow="hidden",this.textArea.style.height=L.DomUtil.getStyle(this.textArea,"font-size"),this.textArea.style.width="1px",this._layer.options.text&&this.setText(this._layer.options.text),this._autoResize(),C===!0&&(this.enable(),this.focus(),this._disableOnBlur())},_preventTextSelection(C){C.preventDefault()}});var Na=function(C,k,B,P,A,T){this._matrix=[C,k,B,P,A,T]};Na.init=()=>new L.PM.Matrix(1,0,0,1,0,0),Na.prototype={transform(C){return this._transform(C.clone())},_transform(C){let k=this._matrix,{x:B,y:P}=C;return C.x=k[0]*B+k[1]*P+k[4],C.y=k[2]*B+k[3]*P+k[5],C},untransform(C){let k=this._matrix;return new L.Point((C.x/k[0]-k[4])/k[0],(C.y/k[2]-k[5])/k[2])},clone(){let C=this._matrix;return new L.PM.Matrix(C[0],C[1],C[2],C[3],C[4],C[5])},translate(C){if(C===void 0)return new L.Point(this._matrix[4],this._matrix[5]);let k,B;return typeof C=="number"?(k=C,B=C):(k=C.x,B=C.y),this._add(1,0,0,1,k,B)},scale(C,k){if(C===void 0)return new L.Point(this._matrix[0],this._matrix[3]);let B,P;return k=k||L.point(0,0),typeof C=="number"?(B=C,P=C):(B=C.x,P=C.y),this._add(B,0,0,P,k.x,k.y)._add(1,0,0,1,-k.x,-k.y)},rotate(C,k){let B=Math.cos(C),P=Math.sin(C);return k=k||new L.Point(0,0),this._add(B,P,-P,B,k.x,k.y)._add(1,0,0,1,-k.x,-k.y)},flip(){return this._matrix[1]*=-1,this._matrix[2]*=-1,this},_add(C,k,B,P,A,T){let O=[[],[],[]],R=this._matrix,Z=[[R[0],R[2],R[4]],[R[1],R[3],R[5]],[0,0,1]],U=[[C,B,A],[k,P,T],[0,0,1]],Q;C&&C instanceof L.PM.Matrix&&(R=C._matrix,U=[[R[0],R[2],R[4]],[R[1],R[3],R[5]],[0,0,1]]);for(let Y=0;Y<3;Y+=1)for(let ot=0;ot<3;ot+=1){Q=0;for(let ut=0;ut<3;ut+=1)Q+=Z[Y][ut]*U[ut][ot];O[Y][ot]=Q}return this._matrix=[O[0][0],O[1][0],O[0][1],O[1][1],O[0][2],O[1][2]],this}};var No=Na,Go={calcMiddleLatLng(C,k,B){let P=C.project(k),A=C.project(B);return C.unproject(P._add(A)._divideBy(2))},findLayers(C){let k=[];return C.eachLayer(B=>{(B instanceof L.Polyline||B instanceof L.Marker||B instanceof L.Circle||B instanceof L.CircleMarker||B instanceof L.ImageOverlay)&&k.push(B)}),k=k.filter(B=>!!B.pm),k=k.filter(B=>!B._pmTempLayer),k=k.filter(B=>!L.PM.optIn&&!B.options.pmIgnore||L.PM.optIn&&B.options.pmIgnore===!1),k},circleToPolygon(C,k=60,B=!0){let P=C.getLatLng(),A=C.getRadius(),T=Ii(P,A,k,0,B),O=[];for(let R=0;R{T.fire(k,B,P)})},getAllParentGroups(C){let k=[],B=[],P=A=>{for(let T in A._eventParents)if(k.indexOf(T)===-1){k.push(T);let O=A._eventParents[T];B.push(O),P(O)}};return!C._pmLastGroupFetch||!C._pmLastGroupFetch.time||new Date().getTime()-C._pmLastGroupFetch.time>1e3?(P(C),C._pmLastGroupFetch={time:new Date().getTime(),groups:B,groupIds:k},{groupIds:k,groups:B}):{groups:C._pmLastGroupFetch.groups,groupIds:C._pmLastGroupFetch.groupIds}},createGeodesicPolygon:Ii,getTranslation:Wt,findDeepCoordIndex(C,k,B=!0){let P,A=O=>(R,Z)=>{let U=O.concat(Z);if(B){if(R.lat&&R.lat===k.lat&&R.lng===k.lng)return P=U,!0}else if(R.lat&&L.latLng(R).equals(k))return P=U,!0;return Array.isArray(R)&&R.some(A(U))};C.some(A([]));let T={};return P&&(T={indexPath:P,index:P[P.length-1],parentPath:P.slice(0,P.length-1)}),T},findDeepMarkerIndex(C,k){let B,P=T=>(O,R)=>{let Z=T.concat(R);return O._leaflet_id===k._leaflet_id?(B=Z,!0):Array.isArray(O)&&O.some(P(Z))};C.some(P([]));let A={};return B&&(A={indexPath:B,index:B[B.length-1],parentPath:B.slice(0,B.length-1)}),A},_getIndexFromSegment(C,k){if(k&&k.length===2){let B=this.findDeepCoordIndex(C,k[0]),P=this.findDeepCoordIndex(C,k[1]),A=Math.max(B.index,P.index);return(B.index===0||P.index===0)&&A!==1&&(A+=1),{indexA:B,indexB:P,newIndex:A,indexPath:B.indexPath,parentPath:B.parentPath}}return null},_getRotatedRectangle(C,k,B,P){let A=Fn(P,C),T=Fn(P,k),O=B*Math.PI/180,R=Math.cos(O),Z=Math.sin(O),U=(T.x-A.x)*R+(T.y-A.y)*Z,Q=(T.y-A.y)*R-(T.x-A.x)*Z,Y=U*R+A.x,ot=U*Z+A.y,ut=-Q*Z+A.x,vt=Q*R+A.y,xt=Us(P,A),Pt=Us(P,{x:Y,y:ot}),At=Us(P,T),J=Us(P,{x:ut,y:vt});return[xt,Pt,At,J]},pxRadiusToMeterRadius(C,k,B){let P=k.project(B),A=L.point(P.x+C,P.y);return k.distance(k.unproject(A),B)}},Zo=Go;L.PM=L.PM||{version:re.version,Map:Ke,Toolbar:ls,Draw:fe,Edit:ve,Utils:Zo,Matrix:No,activeLang:"en",optIn:!1,initialize(C){this.addInitHooks(C)},setOptIn(C){this.optIn=!!C},addInitHooks(){function C(){this.pm=void 0,L.PM.optIn?this.options.pmIgnore===!1&&(this.pm=new L.PM.Map(this)):this.options.pmIgnore||(this.pm=new L.PM.Map(this)),this.pm&&this.pm.setGlobalOptions({})}L.Map.addInitHook(C);function k(){this.pm=void 0,L.PM.optIn?this.options.pmIgnore===!1&&(this.pm=new L.PM.Edit.LayerGroup(this)):this.options.pmIgnore||(this.pm=new L.PM.Edit.LayerGroup(this))}L.LayerGroup.addInitHook(k);function B(){this.pm=void 0,L.PM.optIn?this.options.pmIgnore===!1&&(this.options.textMarker?(this.pm=new L.PM.Edit.Text(this),this.options._textMarkerOverPM||this.pm._initTextMarker(),delete this.options._textMarkerOverPM):this.pm=new L.PM.Edit.Marker(this)):this.options.pmIgnore||(this.options.textMarker?(this.pm=new L.PM.Edit.Text(this),this.options._textMarkerOverPM||this.pm._initTextMarker(),delete this.options._textMarkerOverPM):this.pm=new L.PM.Edit.Marker(this))}L.Marker.addInitHook(B);function P(){this.pm=void 0,L.PM.optIn?this.options.pmIgnore===!1&&(this.pm=new L.PM.Edit.CircleMarker(this)):this.options.pmIgnore||(this.pm=new L.PM.Edit.CircleMarker(this))}L.CircleMarker.addInitHook(P);function A(){this.pm=void 0,L.PM.optIn?this.options.pmIgnore===!1&&(this.pm=new L.PM.Edit.Line(this)):this.options.pmIgnore||(this.pm=new L.PM.Edit.Line(this))}L.Polyline.addInitHook(A);function T(){this.pm=void 0,L.PM.optIn?this.options.pmIgnore===!1&&(this.pm=new L.PM.Edit.Polygon(this)):this.options.pmIgnore||(this.pm=new L.PM.Edit.Polygon(this))}L.Polygon.addInitHook(T);function O(){this.pm=void 0,L.PM.optIn?this.options.pmIgnore===!1&&(this.pm=new L.PM.Edit.Rectangle(this)):this.options.pmIgnore||(this.pm=new L.PM.Edit.Rectangle(this))}L.Rectangle.addInitHook(O);function R(){this.pm=void 0,L.PM.optIn?this.options.pmIgnore===!1&&(this.pm=new L.PM.Edit.Circle(this)):this.options.pmIgnore||(this.pm=new L.PM.Edit.Circle(this))}L.Circle.addInitHook(R);function Z(){this.pm=void 0,L.PM.optIn?this.options.pmIgnore===!1&&(this.pm=new L.PM.Edit.ImageOverlay(this)):this.options.pmIgnore||(this.pm=new L.PM.Edit.ImageOverlay(this))}L.ImageOverlay.addInitHook(Z)},reInitLayer(C){C instanceof L.LayerGroup&&C.eachLayer(k=>{this.reInitLayer(k)}),C.pm||L.PM.optIn&&C.options.pmIgnore!==!1||C.options.pmIgnore||(C instanceof L.Map?C.pm=new L.PM.Map(C):C instanceof L.Marker?C.options.textMarker?(C.pm=new L.PM.Edit.Text(C),C.pm._initTextMarker(),C.pm._createTextMarker(!1)):C.pm=new L.PM.Edit.Marker(C):C instanceof L.Circle?C.pm=new L.PM.Edit.Circle(C):C instanceof L.CircleMarker?C.pm=new L.PM.Edit.CircleMarker(C):C instanceof L.Rectangle?C.pm=new L.PM.Edit.Rectangle(C):C instanceof L.Polygon?C.pm=new L.PM.Edit.Polygon(C):C instanceof L.Polyline?C.pm=new L.PM.Edit.Line(C):C instanceof L.LayerGroup?C.pm=new L.PM.Edit.LayerGroup(C):C instanceof L.ImageOverlay&&(C.pm=new L.PM.Edit.ImageOverlay(C)))}},L.version==="1.7.1"&&L.Canvas.include({_onClick(C){let k=this._map.mouseEventToLayerPoint(C),B,P;for(let A=this._drawFirst;A;A=A.next)B=A.layer,B.options.interactive&&B._containsPoint(k)&&(!(C.type==="click"||C.type==="preclick")||!this._map._draggableMoved(B))&&(P=B);P&&(L.DomEvent.fakeStop(C),this._fireEvent([P],C))}}),L.PM.initialize()})()),leafletGeoman}requireLeafletGeoman();var leaflet_markerclusterSrc$1={exports:{}},leaflet_markerclusterSrc=leaflet_markerclusterSrc$1.exports,hasRequiredLeaflet_markerclusterSrc;function requireLeaflet_markerclusterSrc(){return hasRequiredLeaflet_markerclusterSrc||(hasRequiredLeaflet_markerclusterSrc=1,(function(j,H){(function(G,X){X(H)})(leaflet_markerclusterSrc,function(G){var X=L.MarkerClusterGroup=L.FeatureGroup.extend({options:{maxClusterRadius:80,iconCreateFunction:null,clusterPane:L.Marker.prototype.options.pane,spiderfyOnEveryZoom:!1,spiderfyOnMaxZoom:!0,showCoverageOnHover:!0,zoomToBoundsOnClick:!0,singleMarkerMode:!1,disableClusteringAtZoom:null,removeOutsideVisibleBounds:!0,animate:!0,animateAddingMarkers:!1,spiderfyShapePositions:null,spiderfyDistanceMultiplier:1,spiderLegPolylineOptions:{weight:1.5,color:"#222",opacity:.5},chunkedLoading:!1,chunkInterval:200,chunkDelay:50,chunkProgress:null,polygonOptions:{}},initialize:function(F){L.Util.setOptions(this,F),this.options.iconCreateFunction||(this.options.iconCreateFunction=this._defaultIconCreateFunction),this._featureGroup=L.featureGroup(),this._featureGroup.addEventParent(this),this._nonPointGroup=L.featureGroup(),this._nonPointGroup.addEventParent(this),this._inZoomAnimation=0,this._needsClustering=[],this._needsRemoving=[],this._currentShownBounds=null,this._queue=[],this._childMarkerEventHandlers={dragstart:this._childMarkerDragStart,move:this._childMarkerMoved,dragend:this._childMarkerDragEnd};var N=L.DomUtil.TRANSITION&&this.options.animate;L.extend(this,N?this._withAnimation:this._noAnimation),this._markerCluster=N?L.MarkerCluster:L.MarkerClusterNonAnimated},addLayer:function(F){if(F instanceof L.LayerGroup)return this.addLayers([F]);if(!F.getLatLng)return this._nonPointGroup.addLayer(F),this.fire("layeradd",{layer:F}),this;if(!this._map)return this._needsClustering.push(F),this.fire("layeradd",{layer:F}),this;if(this.hasLayer(F))return this;this._unspiderfy&&this._unspiderfy(),this._addLayer(F,this._maxZoom),this.fire("layeradd",{layer:F}),this._topClusterLevel._recalculateBounds(),this._refreshClustersIcons();var N=F,W=this._zoom;if(F.__parent)for(;N.__parent._zoom>=W;)N=N.__parent;return this._currentShownBounds.contains(N.getLatLng())&&(this.options.animateAddingMarkers?this._animationAddLayer(F,N):this._animationAddLayerNonAnimated(F,N)),this},removeLayer:function(F){return F instanceof L.LayerGroup?this.removeLayers([F]):F.getLatLng?this._map?F.__parent?(this._unspiderfy&&(this._unspiderfy(),this._unspiderfyLayer(F)),this._removeLayer(F,!0),this.fire("layerremove",{layer:F}),this._topClusterLevel._recalculateBounds(),this._refreshClustersIcons(),F.off(this._childMarkerEventHandlers,this),this._featureGroup.hasLayer(F)&&(this._featureGroup.removeLayer(F),F.clusterShow&&F.clusterShow()),this):this:(!this._arraySplice(this._needsClustering,F)&&this.hasLayer(F)&&this._needsRemoving.push({layer:F,latlng:F._latlng}),this.fire("layerremove",{layer:F}),this):(this._nonPointGroup.removeLayer(F),this.fire("layerremove",{layer:F}),this)},addLayers:function(F,N){if(!L.Util.isArray(F))return this.addLayer(F);var W=this._featureGroup,et=this._nonPointGroup,ft=this.options.chunkedLoading,Lt=this.options.chunkInterval,pt=this.options.chunkProgress,Ct=F.length,bt=0,Dt=!0,St;if(this._map){var Jt=new Date().getTime(),Zt=L.bind(function(){var ie=new Date().getTime();for(this._map&&this._unspiderfy&&this._unspiderfy();btLt)break}if(St=F[bt],St instanceof L.LayerGroup){Dt&&(F=F.slice(),Dt=!1),this._extractNonGroupLayers(St,F),Ct=F.length;continue}if(!St.getLatLng){et.addLayer(St),N||this.fire("layeradd",{layer:St});continue}if(!this.hasLayer(St)&&(this._addLayer(St,this._maxZoom),N||this.fire("layeradd",{layer:St}),St.__parent&&St.__parent.getChildCount()===2)){var ke=St.__parent.getAllChildMarkers(),Ve=ke[0]===St?ke[1]:ke[0];W.removeLayer(Ve)}}pt&&pt(bt,Ct,new Date().getTime()-Jt),bt===Ct?(this._topClusterLevel._recalculateBounds(),this._refreshClustersIcons(),this._topClusterLevel._recursivelyAddChildrenToMap(null,this._zoom,this._currentShownBounds)):setTimeout(Zt,this.options.chunkDelay)},this);Zt()}else for(var ee=this._needsClustering;bt=0;N--)F.extend(this._needsClustering[N].getLatLng());return F.extend(this._nonPointGroup.getBounds()),F},eachLayer:function(F,N){var W=this._needsClustering.slice(),et=this._needsRemoving,ft,Lt,pt;for(this._topClusterLevel&&this._topClusterLevel.getAllChildMarkers(W),Lt=W.length-1;Lt>=0;Lt--){for(ft=!0,pt=et.length-1;pt>=0;pt--)if(et[pt].layer===W[Lt]){ft=!1;break}ft&&F.call(N,W[Lt])}this._nonPointGroup.eachLayer(F,N)},getLayers:function(){var F=[];return this.eachLayer(function(N){F.push(N)}),F},getLayer:function(F){var N=null;return F=parseInt(F,10),this.eachLayer(function(W){L.stamp(W)===F&&(N=W)}),N},hasLayer:function(F){if(!F)return!1;var N,W=this._needsClustering;for(N=W.length-1;N>=0;N--)if(W[N]===F)return!0;for(W=this._needsRemoving,N=W.length-1;N>=0;N--)if(W[N].layer===F)return!1;return!!(F.__parent&&F.__parent._group===this)||this._nonPointGroup.hasLayer(F)},zoomToShowLayer:function(F,N){var W=this._map;typeof N!="function"&&(N=function(){});var et=function(){(W.hasLayer(F)||W.hasLayer(F.__parent))&&!this._inZoomAnimation&&(this._map.off("moveend",et,this),this.off("animationend",et,this),W.hasLayer(F)?N():F.__parent._icon&&(this.once("spiderfied",N,this),F.__parent.spiderfy()))};F._icon&&this._map.getBounds().contains(F.getLatLng())?N():F.__parent._zoom=0;W--)if(F[W]===N)return F.splice(W,1),!0},_removeFromGridUnclustered:function(F,N){for(var W=this._map,et=this._gridUnclustered,ft=Math.floor(this._map.getMinZoom());N>=ft&&et[N].removeObject(F,W.project(F.getLatLng(),N));N--);},_childMarkerDragStart:function(F){F.target.__dragStart=F.target._latlng},_childMarkerMoved:function(F){if(!this._ignoreMove&&!F.target.__dragStart){var N=F.target._popup&&F.target._popup.isOpen();this._moveChild(F.target,F.oldLatLng,F.latlng),N&&F.target.openPopup()}},_moveChild:function(F,N,W){F._latlng=N,this.removeLayer(F),F._latlng=W,this.addLayer(F)},_childMarkerDragEnd:function(F){var N=F.target.__dragStart;delete F.target.__dragStart,N&&this._moveChild(F.target,N,F.target._latlng)},_removeLayer:function(F,N,W){var et=this._gridClusters,ft=this._gridUnclustered,Lt=this._featureGroup,pt=this._map,Ct=Math.floor(this._map.getMinZoom());N&&this._removeFromGridUnclustered(F,this._maxZoom);var bt=F.__parent,Dt=bt._markers,St;for(this._arraySplice(Dt,F);bt&&(bt._childCount--,bt._boundsNeedUpdate=!0,!(bt._zoom"+N+"",className:"marker-cluster"+W,iconSize:new L.Point(40,40)})},_bindEvents:function(){var F=this._map,N=this.options.spiderfyOnMaxZoom,W=this.options.showCoverageOnHover,et=this.options.zoomToBoundsOnClick,ft=this.options.spiderfyOnEveryZoom;(N||et||ft)&&this.on("clusterclick clusterkeypress",this._zoomOrSpiderfy,this),W&&(this.on("clustermouseover",this._showCoverage,this),this.on("clustermouseout",this._hideCoverage,this),F.on("zoomend",this._hideCoverage,this))},_zoomOrSpiderfy:function(F){var N=F.layer,W=N;if(!(F.type==="clusterkeypress"&&F.originalEvent&&F.originalEvent.keyCode!==13)){for(;W._childClusters.length===1;)W=W._childClusters[0];W._zoom===this._maxZoom&&W._childCount===N._childCount&&this.options.spiderfyOnMaxZoom?N.spiderfy():this.options.zoomToBoundsOnClick&&N.zoomToBounds(),this.options.spiderfyOnEveryZoom&&N.spiderfy(),F.originalEvent&&F.originalEvent.keyCode===13&&this._map._container.focus()}},_showCoverage:function(F){var N=this._map;this._inZoomAnimation||(this._shownPolygon&&N.removeLayer(this._shownPolygon),F.layer.getChildCount()>2&&F.layer!==this._spiderfied&&(this._shownPolygon=new L.Polygon(F.layer.getConvexHull(),this.options.polygonOptions),N.addLayer(this._shownPolygon)))},_hideCoverage:function(){this._shownPolygon&&(this._map.removeLayer(this._shownPolygon),this._shownPolygon=null)},_unbindEvents:function(){var F=this.options.spiderfyOnMaxZoom,N=this.options.showCoverageOnHover,W=this.options.zoomToBoundsOnClick,et=this.options.spiderfyOnEveryZoom,ft=this._map;(F||W||et)&&this.off("clusterclick clusterkeypress",this._zoomOrSpiderfy,this),N&&(this.off("clustermouseover",this._showCoverage,this),this.off("clustermouseout",this._hideCoverage,this),ft.off("zoomend",this._hideCoverage,this))},_zoomEnd:function(){this._map&&(this._mergeSplitClusters(),this._zoom=Math.round(this._map._zoom),this._currentShownBounds=this._getExpandedVisibleBounds())},_moveEnd:function(){if(!this._inZoomAnimation){var F=this._getExpandedVisibleBounds();this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,Math.floor(this._map.getMinZoom()),this._zoom,F),this._topClusterLevel._recursivelyAddChildrenToMap(null,Math.round(this._map._zoom),F),this._currentShownBounds=F}},_generateInitialClusters:function(){var F=Math.ceil(this._map.getMaxZoom()),N=Math.floor(this._map.getMinZoom()),W=this.options.maxClusterRadius,et=W;typeof W!="function"&&(et=function(){return W}),this.options.disableClusteringAtZoom!==null&&(F=this.options.disableClusteringAtZoom-1),this._maxZoom=F,this._gridClusters={},this._gridUnclustered={};for(var ft=F;ft>=N;ft--)this._gridClusters[ft]=new L.DistanceGrid(et(ft)),this._gridUnclustered[ft]=new L.DistanceGrid(et(ft));this._topClusterLevel=new this._markerCluster(this,N-1)},_addLayer:function(F,N){var W=this._gridClusters,et=this._gridUnclustered,ft=Math.floor(this._map.getMinZoom()),Lt,pt;for(this.options.singleMarkerMode&&this._overrideMarkerIcon(F),F.on(this._childMarkerEventHandlers,this);N>=ft;N--){Lt=this._map.project(F.getLatLng(),N);var Ct=W[N].getNearObject(Lt);if(Ct){Ct._addChild(F),F.__parent=Ct;return}if(Ct=et[N].getNearObject(Lt),Ct){var bt=Ct.__parent;bt&&this._removeLayer(Ct,!1);var Dt=new this._markerCluster(this,N,Ct,F);W[N].addObject(Dt,this._map.project(Dt._cLatLng,N)),Ct.__parent=Dt,F.__parent=Dt;var St=Dt;for(pt=N-1;pt>bt._zoom;pt--)St=new this._markerCluster(this,pt,St),W[pt].addObject(St,this._map.project(Ct.getLatLng(),pt));bt._addChild(St),this._removeFromGridUnclustered(Ct,N);return}et[N].addObject(F,Lt)}this._topClusterLevel._addChild(F),F.__parent=this._topClusterLevel},_refreshClustersIcons:function(){this._featureGroup.eachLayer(function(F){F instanceof L.MarkerCluster&&F._iconNeedsUpdate&&F._updateIcon()})},_enqueue:function(F){this._queue.push(F),this._queueTimeout||(this._queueTimeout=setTimeout(L.bind(this._processQueue,this),300))},_processQueue:function(){for(var F=0;FF?(this._animationStart(),this._animationZoomOut(this._zoom,F)):this._moveEnd()},_getExpandedVisibleBounds:function(){if(this.options.removeOutsideVisibleBounds){if(L.Browser.mobile)return this._checkBoundsMaxLat(this._map.getBounds())}else return this._mapBoundsInfinite;return this._checkBoundsMaxLat(this._map.getBounds().pad(1))},_checkBoundsMaxLat:function(F){var N=this._maxLat;return N!==void 0&&(F.getNorth()>=N&&(F._northEast.lat=1/0),F.getSouth()<=-N&&(F._southWest.lat=-1/0)),F},_animationAddLayerNonAnimated:function(F,N){if(N===F)this._featureGroup.addLayer(F);else if(N._childCount===2){N._addToMap();var W=N.getAllChildMarkers();this._featureGroup.removeLayer(W[0]),this._featureGroup.removeLayer(W[1])}else N._updateIcon()},_extractNonGroupLayers:function(F,N){var W=F.getLayers(),et=0,ft;for(N=N||[];et=0;Lt--)Dt=bt[Lt],W.contains(Dt._latlng)||et.removeLayer(Dt)}),this._forceLayout(),this._topClusterLevel._recursivelyBecomeVisible(W,N),et.eachLayer(function(pt){!(pt instanceof L.MarkerCluster)&&pt._icon&&pt.clusterShow()}),this._topClusterLevel._recursively(W,F,N,function(pt){pt._recursivelyRestoreChildPositions(N)}),this._ignoreMove=!1,this._enqueue(function(){this._topClusterLevel._recursively(W,F,ft,function(pt){et.removeLayer(pt),pt.clusterShow()}),this._animationEnd()})},_animationZoomOut:function(F,N){this._animationZoomOutSingle(this._topClusterLevel,F-1,N),this._topClusterLevel._recursivelyAddChildrenToMap(null,N,this._getExpandedVisibleBounds()),this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,Math.floor(this._map.getMinZoom()),F,this._getExpandedVisibleBounds())},_animationAddLayer:function(F,N){var W=this,et=this._featureGroup;et.addLayer(F),N!==F&&(N._childCount>2?(N._updateIcon(),this._forceLayout(),this._animationStart(),F._setPos(this._map.latLngToLayerPoint(N.getLatLng())),F.clusterHide(),this._enqueue(function(){et.removeLayer(F),F.clusterShow(),W._animationEnd()})):(this._forceLayout(),W._animationStart(),W._animationZoomOutSingle(N,this._map.getMaxZoom(),this._zoom)))}},_animationZoomOutSingle:function(F,N,W){var et=this._getExpandedVisibleBounds(),ft=Math.floor(this._map.getMinZoom());F._recursivelyAnimateChildrenInAndAddSelfToMap(et,ft,N+1,W);var Lt=this;this._forceLayout(),F._recursivelyBecomeVisible(et,W),this._enqueue(function(){if(F._childCount===1){var pt=F._markers[0];this._ignoreMove=!0,pt.setLatLng(pt.getLatLng()),this._ignoreMove=!1,pt.clusterShow&&pt.clusterShow()}else F._recursively(et,W,ft,function(Ct){Ct._recursivelyRemoveChildrenFromMap(et,ft,N+1)});Lt._animationEnd()})},_animationEnd:function(){this._map&&(this._map._mapPane.className=this._map._mapPane.className.replace(" leaflet-cluster-anim","")),this._inZoomAnimation--,this.fire("animationend")},_forceLayout:function(){L.Util.falseFn(document.body.offsetWidth)}}),L.markerClusterGroup=function(F){return new L.MarkerClusterGroup(F)};var tt=L.MarkerCluster=L.Marker.extend({options:L.Icon.prototype.options,initialize:function(F,N,W,et){L.Marker.prototype.initialize.call(this,W?W._cLatLng||W.getLatLng():new L.LatLng(0,0),{icon:this,pane:F.options.clusterPane}),this._group=F,this._zoom=N,this._markers=[],this._childClusters=[],this._childCount=0,this._iconNeedsUpdate=!0,this._boundsNeedUpdate=!0,this._bounds=new L.LatLngBounds,W&&this._addChild(W),et&&this._addChild(et)},getAllChildMarkers:function(F,N){F=F||[];for(var W=this._childClusters.length-1;W>=0;W--)this._childClusters[W].getAllChildMarkers(F,N);for(var et=this._markers.length-1;et>=0;et--)N&&this._markers[et].__dragStart||F.push(this._markers[et]);return F},getChildCount:function(){return this._childCount},zoomToBounds:function(F){for(var N=this._childClusters.slice(),W=this._group._map,et=W.getBoundsZoom(this._bounds),ft=this._zoom+1,Lt=W.getZoom(),pt;N.length>0&&et>ft;){ft++;var Ct=[];for(pt=0;ptft?this._group._map.setView(this._latlng,ft):et<=Lt?this._group._map.setView(this._latlng,Lt+1):this._group._map.fitBounds(this._bounds,F)},getBounds:function(){var F=new L.LatLngBounds;return F.extend(this._bounds),F},_updateIcon:function(){this._iconNeedsUpdate=!0,this._icon&&this.setIcon(this)},createIcon:function(){return this._iconNeedsUpdate&&(this._iconObj=this._group.options.iconCreateFunction(this),this._iconNeedsUpdate=!1),this._iconObj.createIcon()},createShadow:function(){return this._iconObj.createShadow()},_addChild:function(F,N){this._iconNeedsUpdate=!0,this._boundsNeedUpdate=!0,this._setClusterCenter(F),F instanceof L.MarkerCluster?(N||(this._childClusters.push(F),F.__parent=this),this._childCount+=F._childCount):(N||this._markers.push(F),this._childCount++),this.__parent&&this.__parent._addChild(F,!0)},_setClusterCenter:function(F){this._cLatLng||(this._cLatLng=F._cLatLng||F._latlng)},_resetBounds:function(){var F=this._bounds;F._southWest&&(F._southWest.lat=1/0,F._southWest.lng=1/0),F._northEast&&(F._northEast.lat=-1/0,F._northEast.lng=-1/0)},_recalculateBounds:function(){var F=this._markers,N=this._childClusters,W=0,et=0,ft=this._childCount,Lt,pt,Ct,bt;if(ft!==0){for(this._resetBounds(),Lt=0;Lt=0;Lt--)pt=ft[Lt],pt._icon&&(pt._setPos(N),pt.clusterHide())},function(et){var ft=et._childClusters,Lt,pt;for(Lt=ft.length-1;Lt>=0;Lt--)pt=ft[Lt],pt._icon&&(pt._setPos(N),pt.clusterHide())})},_recursivelyAnimateChildrenInAndAddSelfToMap:function(F,N,W,et){this._recursively(F,et,N,function(ft){ft._recursivelyAnimateChildrenIn(F,ft._group._map.latLngToLayerPoint(ft.getLatLng()).round(),W),ft._isSingleParent()&&W-1===et?(ft.clusterShow(),ft._recursivelyRemoveChildrenFromMap(F,N,W)):ft.clusterHide(),ft._addToMap()})},_recursivelyBecomeVisible:function(F,N){this._recursively(F,this._group._map.getMinZoom(),N,null,function(W){W.clusterShow()})},_recursivelyAddChildrenToMap:function(F,N,W){this._recursively(W,this._group._map.getMinZoom()-1,N,function(et){if(N!==et._zoom)for(var ft=et._markers.length-1;ft>=0;ft--){var Lt=et._markers[ft];W.contains(Lt._latlng)&&(F&&(Lt._backupLatlng=Lt.getLatLng(),Lt.setLatLng(F),Lt.clusterHide&&Lt.clusterHide()),et._group._featureGroup.addLayer(Lt))}},function(et){et._addToMap(F)})},_recursivelyRestoreChildPositions:function(F){for(var N=this._markers.length-1;N>=0;N--){var W=this._markers[N];W._backupLatlng&&(W.setLatLng(W._backupLatlng),delete W._backupLatlng)}if(F-1===this._zoom)for(var et=this._childClusters.length-1;et>=0;et--)this._childClusters[et]._restorePosition();else for(var ft=this._childClusters.length-1;ft>=0;ft--)this._childClusters[ft]._recursivelyRestoreChildPositions(F)},_restorePosition:function(){this._backupLatlng&&(this.setLatLng(this._backupLatlng),delete this._backupLatlng)},_recursivelyRemoveChildrenFromMap:function(F,N,W,et){var ft,Lt;this._recursively(F,N-1,W-1,function(pt){for(Lt=pt._markers.length-1;Lt>=0;Lt--)ft=pt._markers[Lt],(!et||!et.contains(ft._latlng))&&(pt._group._featureGroup.removeLayer(ft),ft.clusterShow&&ft.clusterShow())},function(pt){for(Lt=pt._childClusters.length-1;Lt>=0;Lt--)ft=pt._childClusters[Lt],(!et||!et.contains(ft._latlng))&&(pt._group._featureGroup.removeLayer(ft),ft.clusterShow&&ft.clusterShow())})},_recursively:function(F,N,W,et,ft){var Lt=this._childClusters,pt=this._zoom,Ct,bt;if(N<=pt&&(et&&et(this),ft&&pt===W&&ft(this)),pt=0;Ct--)bt=Lt[Ct],bt._boundsNeedUpdate&&bt._recalculateBounds(),F.intersects(bt._bounds)&&bt._recursively(F,N,W,et,ft)},_isSingleParent:function(){return this._childClusters.length>0&&this._childClusters[0]._childCount===this._childCount}});L.Marker.include({clusterHide:function(){var F=this.options.opacity;return this.setOpacity(0),this.options.opacity=F,this},clusterShow:function(){return this.setOpacity(this.options.opacity)}}),L.DistanceGrid=function(F){this._cellSize=F,this._sqCellSize=F*F,this._grid={},this._objectPoint={}},L.DistanceGrid.prototype={addObject:function(F,N){var W=this._getCoord(N.x),et=this._getCoord(N.y),ft=this._grid,Lt=ft[et]=ft[et]||{},pt=Lt[W]=Lt[W]||[],Ct=L.Util.stamp(F);this._objectPoint[Ct]=N,pt.push(F)},updateObject:function(F,N){this.removeObject(F),this.addObject(F,N)},removeObject:function(F,N){var W=this._getCoord(N.x),et=this._getCoord(N.y),ft=this._grid,Lt=ft[et]=ft[et]||{},pt=Lt[W]=Lt[W]||[],Ct,bt;for(delete this._objectPoint[L.Util.stamp(F)],Ct=0,bt=pt.length;Ct=0;Lt--){if(pt=N[Lt],Ct=this.getDistant(pt,F),Ct>0)ft.push(pt);else continue;Ct>W&&(W=Ct,et=pt)}return{maxPoint:et,newPoints:ft}},buildConvexHull:function(F,N){var W=[],et=this.findMostDistantPointFromBaseLine(F,N);return et.maxPoint?(W=W.concat(this.buildConvexHull([F[0],et.maxPoint],et.newPoints)),W=W.concat(this.buildConvexHull([et.maxPoint,F[1]],et.newPoints)),W):[F[0]]},getConvexHull:function(F){var N=!1,W=!1,et=!1,ft=!1,Lt=null,pt=null,Ct=null,bt=null,Dt=null,St=null,Jt;for(Jt=F.length-1;Jt>=0;Jt--){var Zt=F[Jt];(N===!1||Zt.lat>N)&&(Lt=Zt,N=Zt.lat),(W===!1||Zt.latet)&&(Ct=Zt,et=Zt.lng),(ft===!1||Zt.lng=0;et--)W=F[et].getLatLng(),N.push(W);return L.QuickHull.getConvexHull(N)}}),L.MarkerCluster.include({_2PI:Math.PI*2,_circleFootSeparation:25,_circleStartAngle:0,_spiralFootSeparation:28,_spiralLengthStart:11,_spiralLengthFactor:5,_circleSpiralSwitchover:9,spiderfy:function(){if(!(this._group._spiderfied===this||this._group._inZoomAnimation)){var F=this.getAllChildMarkers(null,!0),N=this._group,W=N._map,et=W.latLngToLayerPoint(this._latlng),ft;this._group._unspiderfy(),this._group._spiderfied=this,this._group.options.spiderfyShapePositions?ft=this._group.options.spiderfyShapePositions(F.length,et):F.length>=this._circleSpiralSwitchover?ft=this._generatePointsSpiral(F.length,et):(et.y+=10,ft=this._generatePointsCircle(F.length,et)),this._animationSpiderfy(F,ft)}},unspiderfy:function(F){this._group._inZoomAnimation||(this._animationUnspiderfy(F),this._group._spiderfied=null)},_generatePointsCircle:function(F,N){var W=this._group.options.spiderfyDistanceMultiplier*this._circleFootSeparation*(2+F),et=W/this._2PI,ft=this._2PI/F,Lt=[],pt,Ct;for(et=Math.max(et,35),Lt.length=F,pt=0;pt=0;bt--)bt=0;Lt--)ft=et[Lt],W.removeLayer(ft),ft._preSpiderfyLatlng&&(ft.setLatLng(ft._preSpiderfyLatlng),delete ft._preSpiderfyLatlng),ft.setZIndexOffset&&ft.setZIndexOffset(0),ft._spiderLeg&&(N.removeLayer(ft._spiderLeg),delete ft._spiderLeg);F.fire("unspiderfied",{cluster:this,markers:et}),F._ignoreMove=!1,F._spiderfied=null}}),L.MarkerClusterNonAnimated=L.MarkerCluster.extend({_animationSpiderfy:function(F,N){var W=this._group,et=W._map,ft=W._featureGroup,Lt=this._group.options.spiderLegPolylineOptions,pt,Ct,bt,Dt;for(W._ignoreMove=!0,pt=0;pt=0;Jt--)ke=ft.layerPointToLatLng(N[Jt]),Zt=F[Jt],Zt._preSpiderfyLatlng=Zt._latlng,Zt.setLatLng(ke),Zt.clusterShow&&Zt.clusterShow(),bt&&(ee=Zt._spiderLeg,ie=ee._path,ie.style.strokeDashoffset=0,ee.setStyle({opacity:St}));this.setOpacity(.3),et._ignoreMove=!1,setTimeout(function(){et._animationEnd(),et.fire("spiderfied",{cluster:W,markers:F})},200)},_animationUnspiderfy:function(F){var N=this,W=this._group,et=W._map,ft=W._featureGroup,Lt=F?et._latLngToNewLayerPoint(this._latlng,F.zoom,F.center):et.latLngToLayerPoint(this._latlng),pt=this.getAllChildMarkers(null,!0),Ct=L.Path.SVG,bt,Dt,St,Jt,Zt,ee;for(W._ignoreMove=!0,W._animationStart(),this.setOpacity(1),Dt=pt.length-1;Dt>=0;Dt--)bt=pt[Dt],bt._preSpiderfyLatlng&&(bt.closePopup(),bt.setLatLng(bt._preSpiderfyLatlng),delete bt._preSpiderfyLatlng,ee=!0,bt._setPos&&(bt._setPos(Lt),ee=!1),bt.clusterHide&&(bt.clusterHide(),ee=!1),ee&&ft.removeLayer(bt),Ct&&(St=bt._spiderLeg,Jt=St._path,Zt=Jt.getTotalLength()+.1,Jt.style.strokeDashoffset=Zt,St.setStyle({opacity:0})));W._ignoreMove=!1,setTimeout(function(){var ie=0;for(Dt=pt.length-1;Dt>=0;Dt--)bt=pt[Dt],bt._spiderLeg&&ie++;for(Dt=pt.length-1;Dt>=0;Dt--)bt=pt[Dt],bt._spiderLeg&&(bt.clusterShow&&bt.clusterShow(),bt.setZIndexOffset&&bt.setZIndexOffset(0),ie>1&&ft.removeLayer(bt),et.removeLayer(bt._spiderLeg),delete bt._spiderLeg);W._animationEnd(),W.fire("unspiderfied",{cluster:N,markers:pt})},200)}}),L.MarkerClusterGroup.include({_spiderfied:null,unspiderfy:function(){this._unspiderfy.apply(this,arguments)},_spiderfierOnAdd:function(){this._map.on("click",this._unspiderfyWrapper,this),this._map.options.zoomAnimation&&this._map.on("zoomstart",this._unspiderfyZoomStart,this),this._map.on("zoomend",this._noanimationUnspiderfy,this),L.Browser.touch||this._map.getRenderer(this)},_spiderfierOnRemove:function(){this._map.off("click",this._unspiderfyWrapper,this),this._map.off("zoomstart",this._unspiderfyZoomStart,this),this._map.off("zoomanim",this._unspiderfyZoomAnim,this),this._map.off("zoomend",this._noanimationUnspiderfy,this),this._noanimationUnspiderfy()},_unspiderfyZoomStart:function(){this._map&&this._map.on("zoomanim",this._unspiderfyZoomAnim,this)},_unspiderfyZoomAnim:function(F){L.DomUtil.hasClass(this._map._mapPane,"leaflet-touching")||(this._map.off("zoomanim",this._unspiderfyZoomAnim,this),this._unspiderfy(F))},_unspiderfyWrapper:function(){this._unspiderfy()},_unspiderfy:function(F){this._spiderfied&&this._spiderfied.unspiderfy(F)},_noanimationUnspiderfy:function(){this._spiderfied&&this._spiderfied._noanimationUnspiderfy()},_unspiderfyLayer:function(F){F._spiderLeg&&(this._featureGroup.removeLayer(F),F.clusterShow&&F.clusterShow(),F.setZIndexOffset&&F.setZIndexOffset(0),this._map.removeLayer(F._spiderLeg),delete F._spiderLeg)}}),L.MarkerClusterGroup.include({refreshClusters:function(F){return F?F instanceof L.MarkerClusterGroup?F=F._topClusterLevel.getAllChildMarkers():F instanceof L.LayerGroup?F=F._layers:F instanceof L.MarkerCluster?F=F.getAllChildMarkers():F instanceof L.Marker&&(F=[F]):F=this._topClusterLevel.getAllChildMarkers(),this._flagParentsIconsNeedUpdate(F),this._refreshClustersIcons(),this.options.singleMarkerMode&&this._refreshSingleMarkerModeMarkers(F),this},_flagParentsIconsNeedUpdate:function(F){var N,W;for(N in F)for(W=F[N].__parent;W;)W._iconNeedsUpdate=!0,W=W.__parent},_refreshSingleMarkerModeMarkers:function(F){var N,W;for(N in F)W=F[N],this.hasLayer(W)&&W.setIcon(this._overrideMarkerIcon(W))}}),L.Marker.include({refreshIconOptions:function(F,N){var W=this.options.icon;return L.setOptions(W,F),this.setIcon(W),N&&this.__parent&&this.__parent._group.refreshClusters(this),this}}),G.MarkerClusterGroup=X,G.MarkerCluster=tt,Object.defineProperty(G,"__esModule",{value:!0})})})(leaflet_markerclusterSrc$1,leaflet_markerclusterSrc$1.exports)),leaflet_markerclusterSrc$1.exports}requireLeaflet_markerclusterSrc();typeof document>"u"&&console.warn('"window.document" is undefined; leaflet.fullscreen requires this object to access the DOM');const nativeAPI=(()=>{const j=[["requestFullscreen","exitFullscreen","fullscreenElement","fullscreenEnabled","fullscreenchange","fullscreenerror"],["webkitRequestFullscreen","webkitExitFullscreen","webkitFullscreenElement","webkitFullscreenEnabled","webkitfullscreenchange","webkitfullscreenerror"]],H=j[0],G={};for(const X of j)if(X[1]in document){for(let tt=0;ttj[G](H))},async exit(){if(!this.isFullscreen)return;const j=nativeAPI.exitFullscreen;await this._callNative(()=>document[j]())},async _callNative(j){const H=j();if(H instanceof Promise){await H;return}await new Promise(G=>{const X=()=>{this.off("change",X),G()};this.on("change",X)})},on(j,H){const G=eventNameMap[j];G&&document.addEventListener(G,H)},off(j,H){const G=eventNameMap[j];G&&document.removeEventListener(G,H)},nativeAPI};Object.defineProperties(fullscreenAPI,{isFullscreen:{get(){return!!document[nativeAPI.fullscreenElement]}},isEnabled:{enumerable:!0,get(){return!!document[nativeAPI.fullscreenEnabled]}}});const FullScreen=leafletSrcExports.Control.extend({options:{position:"topleft",title:"Full Screen",titleCancel:"Exit Full Screen",forceSeparateButton:!1,forcePseudoFullscreen:!1,fullscreenElement:!1},_screenfull:fullscreenAPI,onAdd(j){let H="leaflet-control-zoom-fullscreen",G,X="";return j.zoomControl&&!this.options.forceSeparateButton?G=j.zoomControl._container:(G=document.createElement("div"),G.className="leaflet-bar"),this.options.content?X=this.options.content:H+=" leaflet-fullscreen-icon",this._createButton(this.options.title,H,X,G,this.toggleFullScreen,this),this._map.fullscreenControl=this,this._map.on("enterFullscreen exitFullscreen",this._toggleState,this),G},onRemove(){leafletSrcExports.DomEvent.off(this.link,"click",leafletSrcExports.DomEvent.stop).off(this.link,"click",this.toggleFullScreen,this),this._screenfull.isEnabled&&leafletSrcExports.DomEvent.off(document,this._screenfull.nativeAPI.fullscreenchange,leafletSrcExports.DomEvent.stop).off(document,this._screenfull.nativeAPI.fullscreenchange,this._handleFullscreenChange,this)},_createButton(j,H,G,X,tt,F){return this.link=document.createElement("a"),this.link.className=H,X.appendChild(this.link),this.link.href="#",this.link.title=j,this.link.innerHTML=G,this.link.setAttribute("role","button"),this.link.setAttribute("aria-label",j),leafletSrcExports.DomEvent.disableClickPropagation(X),leafletSrcExports.DomEvent.on(this.link,"click",leafletSrcExports.DomEvent.stop).on(this.link,"click",tt,F),this._screenfull.isEnabled&&leafletSrcExports.DomEvent.on(document,this._screenfull.nativeAPI.fullscreenchange,leafletSrcExports.DomEvent.stop).on(document,this._screenfull.nativeAPI.fullscreenchange,this._handleFullscreenChange,F),this.link},async toggleFullScreen(){const j=this._map,{fullscreenElement:H,forcePseudoFullscreen:G}=this.options,X=H||j.getContainer(),tt=this._screenfull.isEnabled&&!G;j._isFullscreen?(j._exitFired=!0,tt?await this._screenfull.exit():X.classList.remove("leaflet-pseudo-fullscreen"),j.invalidateSize(),j._isFullscreen=!1,j.fire("exitFullscreen")):(j._exitFired=!1,tt?await this._screenfull.request(X):X.classList.add("leaflet-pseudo-fullscreen"),j.invalidateSize(),j._isFullscreen=!0,j.fire("enterFullscreen"))},_toggleState(){const{title:j,titleCancel:H}=this.options,G=this._map._isFullscreen;this.link.title=G?H:j,this.link.setAttribute("aria-label",this.link.title),this.link.setAttribute("aria-pressed",G.toString()),this.link.classList.toggle("leaflet-fullscreen-on",G)},_handleFullscreenChange(){const j=this._map;!this._screenfull.isFullscreen&&j._isFullscreen&&!j._exitFired&&(j._exitFired=!0,j._isFullscreen=!1,j.fire("exitFullscreen"),j.invalidateSize())}});leafletSrcExports.Map.include({toggleFullscreen(){this.fullscreenControl.toggleFullScreen()}});function e(){return e=Object.assign?Object.assign.bind():function(j){for(var H=1;H"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function i(j,H,G){return i=o()?Reflect.construct.bind():function(X,tt,F){var N=[null];N.push.apply(N,tt);var W=new(Function.bind.apply(X,N));return F&&n(W,F.prototype),W},i.apply(null,arguments)}function s(j,H,G,X){H===void 0&&(H=""),X===void 0&&(X={});var tt=document.createElement(j);return H&&(tt.className=H),Object.keys(X).forEach(function(F){if(typeof X[F]=="function"){var N=F.indexOf("on")===0?F.substr(2).toLowerCase():F;tt.addEventListener(N,X[F])}else F==="html"?tt.innerHTML=X[F]:F==="text"?tt.innerText=X[F]:tt.setAttribute(F,X[F])}),G&&G.appendChild(tt),tt}function a(j){j.preventDefault(),j.stopPropagation()}var l=function(){return[].slice.call(arguments).filter(Boolean).join(" ").trim()};function c(j,H){j&&j.classList&&(Array.isArray(H)?H:[H]).forEach(function(G){j.classList.contains(G)||j.classList.add(G)})}function u(j,H){j&&j.classList&&(Array.isArray(H)?H:[H]).forEach(function(G){j.classList.contains(G)&&j.classList.remove(G)})}var h,p=13,d=40,f=38,m=[p,27,d,f,37,39],v=(function(){function j(G){var X=this,tt=G.handleSubmit,F=G.searchLabel,N=G.classNames,W=N===void 0?{}:N;this.container=void 0,this.form=void 0,this.input=void 0,this.handleSubmit=void 0,this.hasError=!1,this.container=s("div",l("geosearch",W.container)),this.form=s("form",["",W.form].join(" "),this.container,{autocomplete:"none",onClick:a,onDblClick:a,touchStart:a,touchEnd:a}),this.input=s("input",["glass",W.input].join(" "),this.form,{type:"text",placeholder:F||"search",onInput:this.onInput,onKeyUp:function(et){return X.onKeyUp(et)},onKeyPress:function(et){return X.onKeyPress(et)},onFocus:this.onFocus,onBlur:this.onBlur,onClick:function(){X.input.focus(),X.input.dispatchEvent(new Event("focus"))}}),this.handleSubmit=tt}var H=j.prototype;return H.onFocus=function(){c(this.form,"active")},H.onBlur=function(){u(this.form,"active")},H.onSubmit=function(G){try{var X=this;return a(G),u(tt=X.container,"error"),c(tt,"pending"),Promise.resolve(X.handleSubmit({query:X.input.value})).then(function(){u(X.container,"pending")})}catch(F){return Promise.reject(F)}var tt},H.onInput=function(){this.hasError&&(u(this.container,"error"),this.hasError=!1)},H.onKeyUp=function(G){G.keyCode===27&&(u(this.container,["pending","active"]),this.input.value="",document.body.focus(),document.body.blur())},H.onKeyPress=function(G){G.keyCode===p&&this.onSubmit(G)},H.setQuery=function(G){this.input.value=G},j})(),g=(function(){function j(G){var X=this,tt=G.handleClick,F=G.classNames,N=F===void 0?{}:F,W=G.notFoundMessage;this.handleClick=void 0,this.selected=-1,this.results=[],this.container=void 0,this.resultItem=void 0,this.notFoundMessage=void 0,this.onClick=function(et){if(typeof X.handleClick=="function"){var ft=et.target;if(ft&&X.container.contains(ft)&&ft.hasAttribute("data-key")){var Lt=Number(ft.getAttribute("data-key"));X.handleClick({result:X.results[Lt]})}}},this.handleClick=tt,this.notFoundMessage=W?s("div",l(N.notfound),void 0,{html:W}):void 0,this.container=s("div",l("results",N.resultlist)),this.container.addEventListener("click",this.onClick,!0),this.resultItem=s("div",l(N.item))}var H=j.prototype;return H.render=function(G,X){var tt=this;G===void 0&&(G=[]),this.clear(),G.forEach(function(F,N){var W=tt.resultItem.cloneNode(!0);W.setAttribute("data-key",""+N),W.innerHTML=X({result:F}),tt.container.appendChild(W)}),G.length>0?(c(this.container.parentElement,"open"),c(this.container,"active")):this.notFoundMessage&&(this.container.appendChild(this.notFoundMessage),c(this.container.parentElement,"open")),this.results=G},H.select=function(G){return Array.from(this.container.children).forEach(function(X,tt){return tt===G?c(X,"active"):u(X,"active")}),this.selected=G,this.results[G]},H.count=function(){return this.results?this.results.length:0},H.clear=function(){for(this.selected=-1;this.container.lastChild;)this.container.removeChild(this.container.lastChild);u(this.container.parentElement,"open"),u(this.container,"active")},j})(),y={position:"topleft",style:"button",showMarker:!0,showPopup:!1,popupFormat:function(j){return""+j.result.label},resultFormat:function(j){return""+j.result.label},marker:{icon:t&&leafletSrcExports.Icon?new leafletSrcExports.Icon.Default:void 0,draggable:!1},maxMarkers:1,maxSuggestions:5,retainZoomLevel:!1,animateZoom:!0,searchLabel:"Enter address",clearSearchLabel:"Clear search",notFoundMessage:"",messageHideDelay:3e3,zoomLevel:18,classNames:{container:"leaflet-bar leaflet-control leaflet-control-geosearch",button:"leaflet-bar-part leaflet-bar-part-single",resetButton:"reset",msgbox:"leaflet-bar message",form:"",input:"",resultlist:"",item:"",notfound:"leaflet-bar-notfound"},autoComplete:!0,autoCompleteDelay:250,autoClose:!1,keepResult:!1,updateMap:!0,resetButton:"×"},b="Leaflet must be loaded before instantiating the GeoSearch control",E={options:e({},y),classNames:e({},y.classNames),initialize:function(j){var H,G,X,tt,F=this;if(!t)throw new Error(b);if(!j.provider)throw new Error("Provider is missing from options");this.options=e({},y,j),this.classNames=e({},this.classNames,j.classNames),this.markers=new leafletSrcExports.FeatureGroup,this.classNames.container+=" leaflet-geosearch-"+this.options.style,this.searchElement=new v({searchLabel:this.options.searchLabel,classNames:{container:this.classNames.container,form:this.classNames.form,input:this.classNames.input},handleSubmit:function(N){return F.onSubmit(N)}}),this.button=s("a",this.classNames.button,this.searchElement.container,{title:this.options.searchLabel,href:"#",onClick:function(N){return F.onClick(N)}}),leafletSrcExports.DomEvent.disableClickPropagation(this.button),this.resetButton=s("button",this.classNames.resetButton,this.searchElement.form,{text:this.options.resetButton,"aria-label":this.options.clearSearchLabel,onClick:function(){F.searchElement.input.value===""?F.close():F.clearResults(null,!0)}}),leafletSrcExports.DomEvent.disableClickPropagation(this.resetButton),this.options.autoComplete&&(this.resultList=new g({handleClick:function(N){var W=N.result;F.searchElement.input.value=W.label,F.onSubmit({query:W.label,data:W})},classNames:{resultlist:this.classNames.resultlist,item:this.classNames.item,notfound:this.classNames.notfound},notFoundMessage:this.options.notFoundMessage}),this.searchElement.form.appendChild(this.resultList.container),this.searchElement.input.addEventListener("keyup",(H=function(N){return F.autoSearch(N)},(G=this.options.autoCompleteDelay)===void 0&&(G=250),X===void 0&&(X=!1),function(){var N=[].slice.call(arguments);tt&&clearTimeout(tt),tt=setTimeout(function(){tt=null,X||H.apply(void 0,N)},G),X&&!tt&&H.apply(void 0,N)}),!0),this.searchElement.input.addEventListener("keydown",function(N){return F.selectResult(N)},!0),this.searchElement.input.addEventListener("keydown",function(N){return F.clearResults(N,!0)},!0)),this.searchElement.form.addEventListener("click",function(N){N.preventDefault()},!1)},onAdd:function(j){var H=this.options,G=H.showMarker,X=H.style;if(this.map=j,G&&this.markers.addTo(j),X==="bar"){var tt=j.getContainer().querySelector(".leaflet-control-container");this.container=s("div","leaflet-control-geosearch leaflet-geosearch-bar"),this.container.appendChild(this.searchElement.form),tt.appendChild(this.container)}return leafletSrcExports.DomEvent.disableClickPropagation(this.searchElement.form),this.searchElement.container},onRemove:function(){var j;return(j=this.container)==null||j.remove(),this},open:function(){var j=this.searchElement,H=j.input;c(j.container,"active"),H.focus()},close:function(){u(this.searchElement.container,"active"),this.clearResults()},onClick:function(j){j.preventDefault(),j.stopPropagation(),this.searchElement.container.classList.contains("active")?this.close():this.open()},selectResult:function(j){if([p,d,f].indexOf(j.keyCode)!==-1)if(j.preventDefault(),j.keyCode!==p){var H=this.resultList.count()-1;if(!(H<0)){var G=this.resultList.selected,X=j.keyCode===d?G+1:G-1,tt=this.resultList.select(X<0?H:X>H?0:X);this.searchElement.input.value=tt.label}}else{var F=this.resultList.select(this.resultList.selected);this.onSubmit({query:this.searchElement.input.value,data:F})}},clearResults:function(j,H){if(H===void 0&&(H=!1),!j||j.keyCode===27){var G=this.options,X=G.autoComplete;!H&&G.keepResult||(this.searchElement.input.value="",this.markers.clearLayers()),X&&this.resultList.clear()}},autoSearch:function(j){try{var H=this;if(m.indexOf(j.keyCode)>-1)return Promise.resolve();var G=j.target.value,X=H.options.provider,tt=(function(){if(G.length)return Promise.resolve(X.search({query:G})).then(function(F){F=F.slice(0,H.options.maxSuggestions),H.resultList.render(F,H.options.resultFormat)});H.resultList.clear()})();return Promise.resolve(tt&&tt.then?tt.then(function(){}):void 0)}catch(F){return Promise.reject(F)}},onSubmit:function(j){try{var H=this;return H.resultList.clear(),Promise.resolve(H.options.provider.search(j)).then(function(G){G&&G.length>0&&H.showResult(G[0],j)})}catch(G){return Promise.reject(G)}},showResult:function(j,H){var G=this.options,X=G.autoClose,tt=G.updateMap,F=this.markers.getLayers();F.length>=this.options.maxMarkers&&this.markers.removeLayer(F[0]);var N=this.addMarker(j,H);tt&&this.centerMap(j),this.map.fireEvent("geosearch/showlocation",{location:j,marker:N}),X&&this.closeResults()},closeResults:function(){var j=this.searchElement.container;j.classList.contains("active")&&u(j,"active"),this.clearResults()},addMarker:function(j,H){var G=this,X=this.options,tt=X.marker,F=X.showPopup,N=X.popupFormat,W=new leafletSrcExports.Marker([j.y,j.x],tt),et=j.label;return typeof N=="function"&&(et=N({query:H,result:j})),W.bindPopup(et),this.markers.addLayer(W),F&&W.openPopup(),tt.draggable&&W.on("dragend",function(ft){G.map.fireEvent("geosearch/marker/dragend",{location:W.getLatLng(),event:ft})}),W},centerMap:function(j){var H=this.options,G=H.retainZoomLevel,X=H.animateZoom,tt=j.bounds?new leafletSrcExports.LatLngBounds(j.bounds):new leafletSrcExports.LatLng(j.y,j.x).toBounds(10),F=tt.isValid()?tt:this.markers.getBounds();!G&&tt.isValid()&&!j.bounds||G||!tt.isValid()?this.map.setView(F.getCenter(),this.getZoom(),{animate:X}):this.map.fitBounds(F,{animate:X})},getZoom:function(){var j=this.options,H=j.zoomLevel;return j.retainZoomLevel?this.map.getZoom():H}};function w(){if(!t)throw new Error(b);var j=leafletSrcExports.Control.extend(E);return i(j,[].slice.call(arguments))}(function(j){j[j.SEARCH=0]="SEARCH",j[j.REVERSE=1]="REVERSE"})(h||(h={}));var x=(function(){function j(G){G===void 0&&(G={}),this.options=void 0,this.options=G}var H=j.prototype;return H.getParamString=function(G){G===void 0&&(G={});var X=e({},this.options.params,G);return Object.keys(X).map(function(tt){return encodeURIComponent(tt)+"="+encodeURIComponent(X[tt])}).join("&")},H.getUrl=function(G,X){return G+"?"+this.getParamString(X)},H.search=function(G){try{var X=this,tt=X.endpoint({query:G.query,type:h.SEARCH});return Promise.resolve(fetch(tt)).then(function(F){return Promise.resolve(F.json()).then(function(N){return X.parse({data:N})})})}catch(F){return Promise.reject(F)}},j})(),L$1=(function(j){function H(){for(var X,tt=arguments.length,F=new Array(tt),N=0;N{this.map&&Alpine.raw(this.map).invalidateSize()}).observe(Alpine.raw(this.map._container))}addTileLayers(){this.config.tileLayersUrl.forEach(([j,H,G],X)=>{const tt=L$2.tileLayer(H,{maxZoom:this.config.zoomConfig.max,minZoom:this.config.zoomConfig.min,attribution:G});this.baseLayers[j]=Alpine.raw(tt),X===0&&Alpine.raw(tt).addTo(Alpine.raw(this.map))})}setupInfoControl(){this.info=L$2.control(),this.info.onAdd=()=>{const j=L$2.DomUtil.create("div","info");return this.info._div=j,j.style.display="none",j},this.info.update=j=>{if(this.info._div)if(j){this.info._div.style.display="block";let H=this.config.infoText.replace("{state}",j.name).replace("{density}",j.density);this.info._div.innerHTML=H}else this.info._div.style.display="none"},this.info.addTo(Alpine.raw(this.map))}async loadGeoJson(){if(this.config.geoJsonUrl)try{const H=await(await fetch(this.config.geoJsonUrl)).json(),G=Object.entries(this.config.geoJsonData).filter(([X])=>H[X]).map(([X,tt])=>({type:"Feature",id:X,properties:{name:H[X].name,density:tt},geometry:{type:"Polygon",coordinates:H[X].coordinates}}));this.geoJsonLayer=L$2.geoJson({type:"FeatureCollection",features:G},{style:X=>this.getFeatureStyle(X),onEachFeature:(X,tt)=>{tt.on({mouseover:F=>this.info?.update(F.target.feature.properties),mouseout:()=>this.info?.update(),click:F=>Alpine.raw(this.map).fitBounds(F.target.getBounds())})}}).addTo(Alpine.raw(this.map))}catch(j){console.error("Erro GeoJSON:",j)}}getFeatureStyle(j){const H=Object.values(this.config.geoJsonData),G=j.properties.density/Math.max(...H),X=Math.max(0,Math.ceil(G*this.config.geoJsonColors.length)-1);return{fillColor:this.config.geoJsonColors[X],weight:2,opacity:1,color:"white",dashArray:"3",fillOpacity:.8}}removeLayer(j){let H=this.layers.get(j.id);H&&Alpine.raw(this.map).removeLayer(Alpine.raw(H.layer))}addLayer(layerData){let layer=null;switch(layerData.type){case"marker":layer=this.createMarker(layerData);break;case"circle":layer=this.createCircle(layerData);break;case"circleMarker":layer=this.createCircleMarker(layerData);break;case"rectangle":layer=this.createRectangle(layerData);break;case"polygon":layer=this.createPolygon(layerData);break;case"polyline":layer=this.createPolyline(layerData);break;default:console.warn(`Tipo de layer desconhecido: ${layerData.type}`);return}if(!layer)return;layer.options.group=layerData.group||null,layerData.popup&&this.bindPopup(layer,layerData.popup),layerData.tooltip&&this.bindTooltip(layer,layerData.tooltip),layer.on("click",()=>{this.callbacks.onLayerClick&&this.callbacks.onLayerClick(layerData.id)}),layerData.onMouseOver&&layer.on("mouseover",function(){eval(layerData.onMouseOver)}),layerData.onMouseOut&&layer.on("mouseout",function(){eval(layerData.onMouseOut)}),layerData.isEditable?layer.pm.enable():layer.pm.disable();const updateHandler=j=>{if(this.callbacks.onLayerUpdated){const H=j.target;console.log(H);let G={};H instanceof L$2.Marker?G=H.getLatLng():H instanceof L$2.Circle||H instanceof L$2.CircleMarker?G={lat:H.getLatLng().lat,lng:H.getLatLng().lng,radius:H.getRadius()}:H instanceof L$2.Rectangle?G={bounds:Object.values(H.getBounds()).map(tt=>[tt.lat,tt.lng])}:H instanceof L$2.Polygon?G={points:H.getLatLngs()[0].map(tt=>[tt.lat,tt.lng])}:H instanceof L$2.Polyline&&(G={points:H.getLatLngs().map(tt=>[tt.lat,tt.lng])}),this.callbacks.onLayerUpdated(layerData.id,G)}};if(layer.on("dragend",updateHandler),layer.on("pm:update",updateHandler),layerData.group){const j=this.layerGroups.get(layerData.group);Alpine.raw(layer).addTo(Alpine.raw(j.layer))}else Alpine.raw(layer).addTo(Alpine.raw(this.map));Alpine.raw(this.layers).set(layerData.id,{layer:Alpine.raw(layer),data:layerData})}addLayers(){const j=Alpine.raw(this.config.layersData);j?.length&&j.forEach(H=>this.addLayer(H))}addLayerGroups(){const j=Alpine.raw(this.config.layerGroupsData);!Object.keys(j)?.length>0||j.forEach(H=>{let G=null;switch(H.options={pmIgnore:!0},H.type){case"group":G=L$2.layerGroup(H.options);break;case"feature":G=L$2.featureGroup(H.options);break;case"cluster":G=L$2.markerClusterGroup(H.options);break;default:console.warn(`Tipo de grupo desconhecido: ${H.type}`);return}G&&(this.layerGroups.set(H.id,{name:H.name,layer:G}),G.addTo(Alpine.raw(this.map)))})}createMarker(j){const H=this.createIcon(j.icon);return L$2.marker(j.coords,{icon:H,draggable:j.draggable})}createCircle(j){return L$2.circle(j.center,j.options)}createCircleMarker(j){return L$2.circleMarker(j.center,j.options)}createRectangle(j){return L$2.rectangle(j.bounds,j.options)}createPolygon(j){return L$2.polygon(j.points,j.options)}createPolyline(j){return L$2.polyline(j.points,j.options)}createIcon(j){const H=j?.url,G=j?.size||[24,36],X=j?.heroicon||null,tt=[G[0]/2,G[1]],F=[0,G[1]/1.25*-1],N=[0,G[1]/1.25*-1];let W={className:"",iconSize:G,iconAnchor:tt,popupAnchor:F,tooltipAnchor:N};if(H)W.html=` +
+ + + + + + + +
+ `;else{const et=new TinyColor(j?.color||"#2b7fff"),ft=et.toHexString(),Lt=et.darken(15).toHexString(),pt=`grad-${ft.replace("#","")}`,Ct=`shadow-${ft.replace("#","")}`,bt="M12 0C5.4 0 0 5.4 0 12c0 9 12 24 12 24s12-15 12-24C24 5.4 18.6 0 12 0z";let Dt;X?Dt=` + + ${X} + + `:Dt=``,W.html=` + + + + + + + + + + + + + + + + + + + + ${Dt} + + + `}return L$2.divIcon(W)}bindPopup(j,H){let G='
';H.title&&(G+=`${H.title}`),H.content&&(G+=`
${H.content}
`),H.actions&&H.actions.length>0&&H.actions.forEach(X=>{G+=``}),G+="
",j.bindPopup(G,H.options||{})}bindTooltip(j,H){const G=H.content,X=H.options||{};j.bindTooltip(G,X)}setupLayerControl(){let j=Array.from(this.layerGroups.values()).filter(tt=>tt&&tt.name).map(tt=>[tt.name,tt.layer]);j=Object.fromEntries(j);let H=Alpine.raw(this.baseLayers);const G=Object.keys(H)?.length>1,X=Object.keys(j)?.length>0;!G&&!X||(this.layerControl&&Alpine.raw(this.map).removeControl(Alpine.raw(this.layerControl)),this.layerControl=L$2.control.layers(H,j),Alpine.raw(this.layerControl).addTo(Alpine.raw(this.map)))}setupMapControls(){this.config.mapControls.attributionControl&&this.setupAttributionControl(),this.config.mapControls.scaleControl&&this.setupScaleControl(),this.config.mapControls.zoomControl&&this.setupZoomControl(),this.config.mapControls.fullscreenControl&&this.setupFullscreenControl(),this.config.mapControls.searchControl&&this.setupSearchControl(),this.config.mapControls.drawControls&&this.setupDrawControl(),this.setupLayerControl()}setupAttributionControl(){new L$2.control.attribution().addTo(Alpine.raw(this.map))}setupScaleControl(){new L$2.control.scale().addTo(Alpine.raw(this.map))}setupZoomControl(){new L$2.control.zoom().addTo(Alpine.raw(this.map))}setupSearchControl(){const j=new L$1;new w({provider:j,notFoundMessage:this.getTranslation("address_not_found",""),searchLabel:this.getTranslation("enter_address",""),marker:{icon:this.createIcon(),draggable:!1}}).addTo(Alpine.raw(this.map))}setupFullscreenControl(){new FullScreen({title:this.getTranslation("full_screen",""),titleCancel:this.getTranslation("exit_full_screen",""),forceSeparateButton:!0}).addTo(Alpine.raw(this.map))}setupDrawControl(){Alpine.raw(this.map.pm).setLang(window.filamentData?.language),Alpine.raw(this.map.pm).setGlobalOptions({snappable:!0,snapDistance:20,markerStyle:{icon:this.createIcon()}}),Alpine.raw(this.map.pm).addControls(this.config.mapControls.drawControls)}setupEventHandlers(j={}){this.callbacks=j,Alpine.raw(this.map).on("click",G=>{if(this.isDrawing)return;const X=G.latlng;this.callbacks.onMapClick&&this.callbacks.onMapClick(X.lat,X.lng)});let H=null;Alpine.raw(this.map).on("move",()=>{if(!this.config.mapConfig.recenterMapTimeout)return;clearTimeout(H);const G=this.map.getCenter(),X=this.map.getZoom();Math.abs(G.lat-this.config.defaultCoord[0])<1&&Math.abs(G.lng-this.config.defaultCoord[1])<1&&Math.abs(X-this.config.defaultZoom)<1||(H=setTimeout(()=>{this.map.flyTo(this.config.defaultCoord,this.config.defaultZoom)},this.config.mapConfig.recenterMapTimeout))}),Alpine.raw(this.map).on("pm:globaldrawmodetoggled",G=>{this.isDrawing=G.enabled}),Alpine.raw(this.map).on("pm:globaleditmodetoggled",G=>{this.isDrawing=G.enabled}),Alpine.raw(this.map).on("pm:globaldragmodetoggled",G=>{this.isDrawing=G.enabled}),Alpine.raw(this.map).on("pm:globalremovalmodetoggled",G=>{this.isDrawing=G.enabled}),Alpine.raw(this.map).on("pm:globalcutmodetoggled",G=>{this.isDrawing=G.enabled}),Alpine.raw(this.map).on("pm:globalrotatemodetoggled",G=>{this.isDrawing=G.enabled})}updateMapData(j){const H=this.config;this.config=j;let G=[],X=[];H.layersData.forEach(tt=>{this.config.layersData.find(F=>F.id==tt.id)||X.push(tt)}),this.config.layersData.forEach(tt=>{H.layersData.find(F=>F.id==tt.id)||G.push(tt)}),X.forEach(tt=>this.removeLayer(tt)),G.forEach(tt=>this.addLayer(tt)),Object.keys(this.config.geoJsonData)?.length&&(this.setupInfoControl(),this.loadGeoJson())}clearLayers(){Object.values(this.layers).forEach(({layer:j})=>{j.options.group?Alpine.raw(this.layerGroups[j.options.group].layer).removeLayer(Alpine.raw(j)):Alpine.raw(this.map).removeLayer(Alpine.raw(j))}),this.layers.clear(),Object.values(this.layerGroups).forEach(({layer:j})=>{Alpine.raw(this.map).removeLayer(Alpine.raw(j))}),this.layerGroups.clear(),this.layerControl&&(Alpine.raw(this.map).removeControl(this.layerControl),this.layerControl=null)}destroy(){this.map&&(this.clearLayers(),Alpine.raw(this.map).remove(),this.map=null)}}document.addEventListener("livewire:init",()=>{const j=(H,G)=>({mapCore:null,config:G,$wire:H,state:void 0,pickMarker:null,init(){this.mapCore=new LeafletMapCore(this.config),this.state=this.getState(),this.mapCore.init(),this.setupEventHandlers(),this.updatePickMarker(),this.watchState()},getState(){if(!this.config.state)return;const X=this.$wire.get(this.config.state.statePath);return{lat:X?X[this.config.state.latitudeFieldName]:this.config.defaultCoord[0],lng:X?X[this.config.state.longitudeFieldName]:this.config.defaultCoord[1]}},setState(X,tt){this.config.state&&(this.$wire.set(this.config.state.statePath,{[this.config.state.latitudeFieldName]:X,[this.config.state.longitudeFieldName]:tt}),this.updatePickMarker())},watchState(){this.config.state&&this.$wire.watch(this.config.state.statePath,()=>{this.updatePickMarker()})},updatePickMarker(){this.pickMarker&&Alpine.raw(this.pickMarker).removeFrom(Alpine.raw(this.mapCore.map));const X=this.getState();let tt=this.config.state.pickMarker;tt.coords=Object.values(X),this.pickMarker=this.mapCore.createMarker(tt),Alpine.raw(this.pickMarker).addTo(Alpine.raw(this.mapCore.map))},setupEventHandlers(){const X={onMapClick:(tt,F)=>{this.config.state.disabled||this.setState(tt,F),this.callFieldMethod("handleMapClick",{latitude:tt,longitude:F})},onLayerClick:tt=>{this.callFieldMethod("handleLayerClick",{layerId:tt})},onLayerUpdated:(tt,F)=>{this.callFieldMethod("handleLayerUpdated",{layerId:tt,data:F})}};this.mapCore.setupEventHandlers(X)},callFieldMethod(X,tt){this.$wire.callSchemaComponentMethod(G.state.key,X,tt)}});window.leafletMapField=j}),document.addEventListener("livewire:init",()=>{const j=(H,G)=>({mapCore:null,config:G,$wire:H,init(){this.mapCore=new LeafletMapCore(this.config),this.mapCore.init(),this.setupEventHandlers(),this.setupLivewireListeners()},setupEventHandlers(){const X={onMapClick:(tt,F)=>{this.$wire.call("handleMapClick",tt,F)},onLayerClick:tt=>{this.$wire.call("handleLayerClick",tt)},onLayerUpdated:(tt,F)=>{this.$wire.call("handleLayerUpdated",tt,F)}};this.mapCore.setupEventHandlers(X)},setupLivewireListeners(){window.addEventListener(`update-leaflet-${this.config.mapId}`,X=>{this.updateMapData(X.detail.config)})},updateMapData(X){this.config=X,this.mapCore.updateMapData(X)}});window.leafletMapWidget=j}),document.addEventListener("livewire:init",()=>{const j=(H,G)=>({mapCore:null,config:G,$wire:H,state:void 0,pickMarker:null,init(){this.mapCore=new LeafletMapCore(this.config),this.state=this.getState(),this.mapCore.init(),this.setupEventHandlers(),this.setupPickMarker()},getState(){if(!this.config.state)return;const X=this.config.state.state;return{lat:X?X[this.config.state.latitudeFieldName]:this.config.defaultCoord[0],lng:X?X[this.config.state.longitudeFieldName]:this.config.defaultCoord[1]}},setupPickMarker(){const X=this.getState();this.pickMarker&&Alpine.raw(this.pickMarker).removeFrom(Alpine.raw(this.mapCore.map));let tt=this.config.state.pickMarker;tt.coords=Object.values(X),this.pickMarker=this.mapCore.createMarker(tt),Alpine.raw(this.pickMarker).addTo(Alpine.raw(this.mapCore.map))},setupEventHandlers(){const X={onMapClick:(tt,F)=>{this.callFieldMethod("handleMapClick",{latitude:tt,longitude:F})},onLayerClick:tt=>{this.callFieldMethod("handleLayerClick",{layerId:tt})},onLayerUpdated:(tt,F)=>{this.callFieldMethod("handleLayerUpdated",{layerId:tt,data:F})}};this.mapCore.setupEventHandlers(X)},callFieldMethod(X,tt){this.$wire.callSchemaComponentMethod(G.state.key,X,tt)}});window.leafletMapEntry=j}),document.addEventListener("livewire:init",()=>{const j=(H,G)=>({mapCore:null,config:G,$wire:H,state:void 0,pickMarker:null,init(){this.mapCore=new LeafletMapCore(this.config),this.state=this.getState(),this.mapCore.init(),this.setupEventHandlers(),this.setupPickMarker()},getState(){if(!this.config.state)return;const X=this.config.state.state;return{lat:X?X[this.config.state.latitudeFieldName]:this.config.defaultCoord[0],lng:X?X[this.config.state.longitudeFieldName]:this.config.defaultCoord[1]}},setupPickMarker(){const X=this.getState();this.pickMarker&&Alpine.raw(this.pickMarker).removeFrom(Alpine.raw(this.mapCore.map));let tt=this.config.state.pickMarker;tt.coords=Object.values(X),this.pickMarker=this.mapCore.createMarker(tt),Alpine.raw(this.pickMarker).addTo(Alpine.raw(this.mapCore.map))},setupEventHandlers(){const X={onMapClick:(tt,F)=>{this.callColumnMethod("handleMapClick",{latitude:tt,longitude:F})},onLayerClick:tt=>{this.callColumnMethod("handleLayerClick",{layerId:tt})},onLayerUpdated:(tt,F)=>{this.callColumnMethod("handleLayerUpdated",{layerId:tt,data:F})}};this.mapCore.setupEventHandlers(X)},callColumnMethod(X,tt){this.$wire.callTableColumnMethod(G.state.name,G.state.recordKey,X,tt)}});window.leafletMapColumn=j})})); diff --git a/public/js/filament/actions/actions.js b/public/js/filament/actions/actions.js new file mode 100644 index 0000000..30e2d00 --- /dev/null +++ b/public/js/filament/actions/actions.js @@ -0,0 +1 @@ +(()=>{var n=({livewireId:e})=>({actionNestingIndex:null,init(){window.addEventListener("sync-action-modals",t=>{t.detail.id===e&&this.syncActionModals(t.detail.newActionNestingIndex,t.detail.shouldOverlayParentActions??!1)})},syncActionModals(t,i=!1){if(this.actionNestingIndex===t){this.actionNestingIndex!==null&&this.$nextTick(()=>this.openModal());return}let s=this.actionNestingIndex!==null&&t!==null&&t>this.actionNestingIndex;if(this.actionNestingIndex!==null&&!(i&&s)&&this.closeModal(),this.actionNestingIndex=t,this.actionNestingIndex!==null){if(!this.$el.querySelector(`#${this.generateModalId(t)}`)){this.$nextTick(()=>this.openModal());return}this.openModal()}},generateModalId(t){return`fi-${e}-action-`+t},openModal(){let t=this.generateModalId(this.actionNestingIndex);document.dispatchEvent(new CustomEvent("open-modal",{bubbles:!0,composed:!0,detail:{id:t}}))},closeModal(){let t=this.generateModalId(this.actionNestingIndex);document.dispatchEvent(new CustomEvent("close-modal-quietly",{bubbles:!0,composed:!0,detail:{id:t}}))}});document.addEventListener("alpine:init",()=>{window.Alpine.data("filamentActionModals",n)});})(); diff --git a/public/js/filament/filament/app.js b/public/js/filament/filament/app.js new file mode 100644 index 0000000..61d2899 --- /dev/null +++ b/public/js/filament/filament/app.js @@ -0,0 +1 @@ +(()=>{var re=Object.create,K=Object.defineProperty,ne=Object.getPrototypeOf,ie=Object.prototype.hasOwnProperty,oe=Object.getOwnPropertyNames,ae=Object.getOwnPropertyDescriptor,se=t=>K(t,"__esModule",{value:!0}),le=(t,n)=>()=>(n||(n={exports:{}},t(n.exports,n)),n.exports),fe=(t,n,i)=>{if(n&&typeof n=="object"||typeof n=="function")for(let a of oe(n))!ie.call(t,a)&&a!=="default"&&K(t,a,{get:()=>n[a],enumerable:!(i=ae(n,a))||i.enumerable});return t},ce=t=>fe(se(K(t!=null?re(ne(t)):{},"default",t&&t.__esModule&&"default"in t?{get:()=>t.default,enumerable:!0}:{value:t,enumerable:!0})),t),ue=le((t,n)=>{(function(i,a,w){if(!i)return;for(var c={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",224:"meta"},y={106:"*",107:"+",109:"-",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},v={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"},S={option:"alt",command:"meta",return:"enter",escape:"esc",plus:"+",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"},A,m=1;m<20;++m)c[111+m]="f"+m;for(m=0;m<=9;++m)c[m+96]=m.toString();function P(e,r,s){if(e.addEventListener){e.addEventListener(r,s,!1);return}e.attachEvent("on"+r,s)}function U(e){if(e.type=="keypress"){var r=String.fromCharCode(e.which);return e.shiftKey||(r=r.toLowerCase()),r}return c[e.which]?c[e.which]:y[e.which]?y[e.which]:String.fromCharCode(e.which).toLowerCase()}function F(e,r){return e.sort().join(",")===r.sort().join(",")}function V(e){var r=[];return e.shiftKey&&r.push("shift"),e.altKey&&r.push("alt"),e.ctrlKey&&r.push("ctrl"),e.metaKey&&r.push("meta"),r}function H(e){if(e.preventDefault){e.preventDefault();return}e.returnValue=!1}function B(e){if(e.stopPropagation){e.stopPropagation();return}e.cancelBubble=!0}function E(e){return e=="shift"||e=="ctrl"||e=="alt"||e=="meta"}function X(){if(!A){A={};for(var e in c)e>95&&e<112||c.hasOwnProperty(e)&&(A[c[e]]=e)}return A}function Y(e,r,s){return s||(s=X()[e]?"keydown":"keypress"),s=="keypress"&&r.length&&(s="keydown"),s}function Q(e){return e==="+"?["+"]:(e=e.replace(/\+{2}/g,"+plus"),e.split("+"))}function G(e,r){var s,h,k,M=[];for(s=Q(e),k=0;k1){$(o,b,f,p);return}u=G(o,p),r._callbacks[u.key]=r._callbacks[u.key]||[],I(u.key,u.modifiers,{type:u.action},l,o,d),r._callbacks[u.key][l?"unshift":"push"]({callback:f,modifiers:u.modifiers,action:u.action,seq:l,level:d,combo:o})}r._bindMultiple=function(o,f,p){for(var l=0;l-1||R(r,s.target))return!1;if("composedPath"in e&&typeof e.composedPath=="function"){var h=e.composedPath()[0];h!==e.target&&(r=h)}return r.tagName=="INPUT"||r.tagName=="SELECT"||r.tagName=="TEXTAREA"||r.isContentEditable},g.prototype.handleKey=function(){var e=this;return e._handleKey.apply(e,arguments)},g.addKeycodes=function(e){for(var r in e)e.hasOwnProperty(r)&&(c[r]=e[r]);A=null},g.init=function(){var e=g(a);for(var r in e)r.charAt(0)!=="_"&&(g[r]=(function(s){return function(){return e[s].apply(e,arguments)}})(r))},g.init(),i.Mousetrap=g,typeof n<"u"&&n.exports&&(n.exports=g),typeof define=="function"&&define.amd&&define(function(){return g})})(typeof window<"u"?window:null,typeof window<"u"?document:null)}),T=ce(ue());(function(t){if(t){var n={},i=t.prototype.stopCallback;t.prototype.stopCallback=function(a,w,c,y){var v=this;return v.paused?!0:n[c]||n[y]?!1:i.call(v,a,w,c)},t.prototype.bindGlobal=function(a,w,c){var y=this;if(y.bind(a,w,c),a instanceof Array){for(var v=0;vArray.from(document.querySelectorAll('[aria-modal="true"]')).find(t=>window.getComputedStyle(t).display!=="none"),pe=t=>{t.directive("mousetrap",(n,{modifiers:i,expression:a},{evaluate:w})=>{let c=()=>a?w(a):n.click();i=i.map(y=>y.replace(/--/g," ").replace(/-/g,"+").replace(/\bslash\b/g,"/")),i.includes("global")&&(i=i.filter(y=>y!=="global"),T.default.bindGlobal(i,y=>{let v=J();v&&!v.contains(n)||(y.preventDefault(),c())})),T.default.bind(i,y=>{let v=J();v&&!v.contains(n)||(y.preventDefault(),c())}),document.addEventListener("livewire:navigating",()=>{T.default.unbind(i)},{once:!0})})},W=pe;var j=()=>({isOpen:window.Alpine.$persist(!0).as("isOpen"),isOpenDesktop:window.Alpine.$persist(!0).as("isOpenDesktop"),collapsedGroups:window.Alpine.$persist(null).as("collapsedGroups"),scrollTop:0,init(){this.resizeObserver=null,this.setUpResizeObserver(),document.addEventListener("livewire:navigate",()=>{let t=document.querySelector(".fi-main-sidebar .fi-sidebar-nav");t&&(this.scrollTop=t.scrollTop)}),document.addEventListener("livewire:navigated",()=>{this.setUpResizeObserver(),requestAnimationFrame(()=>{let t=document.querySelector(".fi-main-sidebar .fi-sidebar-nav");t&&this.scrollTop&&(t.scrollTop=this.scrollTop)})})},setUpResizeObserver(){this.resizeObserver&&this.resizeObserver.disconnect();let t=window.innerWidth;this.resizeObserver=new ResizeObserver(()=>{let n=window.innerWidth,i=t>=1024,a=n<1024,w=n>=1024;i&&a?(this.isOpenDesktop=this.isOpen,this.isOpen&&this.close()):!i&&w&&(this.isOpen=this.isOpenDesktop),t=n}),this.resizeObserver.observe(document.body),window.innerWidth<1024?this.isOpen&&(this.isOpenDesktop=!0,this.close()):this.isOpen=this.isOpenDesktop},groupIsCollapsed(t){return this.collapsedGroups.includes(t)},collapseGroup(t){this.collapsedGroups.includes(t)||(this.collapsedGroups=this.collapsedGroups.concat(t))},toggleCollapsedGroup(t){this.collapsedGroups=this.collapsedGroups.includes(t)?this.collapsedGroups.filter(n=>n!==t):this.collapsedGroups.concat(t)},close(){this.isOpen=!1,window.innerWidth>=1024&&(this.isOpenDesktop=!1)},open(){this.isOpen=!0,window.innerWidth>=1024&&(this.isOpenDesktop=!0)}});document.addEventListener("alpine:init",()=>{let t=localStorage.getItem("theme")??getComputedStyle(document.documentElement).getPropertyValue("--default-theme-mode");window.Alpine.store("theme",t==="dark"||t==="system"&&window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"),window.addEventListener("theme-changed",n=>{let i=n.detail;localStorage.setItem("theme",i),i==="system"&&(i=window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"),window.Alpine.store("theme",i)}),window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change",n=>{localStorage.getItem("theme")==="system"&&window.Alpine.store("theme",n.matches?"dark":"light")}),window.Alpine.effect(()=>{window.Alpine.store("theme")==="dark"?document.documentElement.classList.add("dark"):document.documentElement.classList.remove("dark")})});document.addEventListener("livewire:init",()=>{Livewire.interceptRequest(({request:t,onError:n,onFailure:i})=>{n(({response:a,preventDefault:w})=>{let c=window.filamentErrorNotifications;if(!c)return;try{let S=t?.payload;if(S&&JSON.parse(S).components.length===1){for(let A of JSON.parse(S).components)if(JSON.parse(A.snapshot).data.isFilamentNotificationsComponent)return}}catch{}let y=a?.status??"",v=c[y]??c[""];v.isDisabled!==!0&&(w(),v.isHidden!==!0&&new FilamentNotification().title(v.title).body(v.body).danger().send())}),i(()=>{let a=window.filamentErrorNotifications;if(!a)return;let w=a[""];new FilamentNotification().title(w.title).body(w.body).danger().send()})})});var x=window.history.replaceState,de=window.history.pushState;window.history.replaceState=function(t,n,i){t?.url instanceof URL&&(t.url=t.url.toString());let a=i||t?.url||window.location.href,w=window.location.href;if(a!==w){x.call(window.history,t,n,i);return}try{let c=window.history.state;JSON.stringify(t)!==JSON.stringify(c)&&x.call(window.history,t,n,i)}catch{x.call(window.history,t,n,i)}};window.history.pushState=function(t,n,i){t?.url instanceof URL&&(t.url=t.url.toString()),de.call(window.history,t,n,i)};document.addEventListener("DOMContentLoaded",()=>{setTimeout(()=>{let t=document.querySelector(".fi-main-sidebar .fi-sidebar-item.fi-active");if((!t||t.offsetParent===null)&&(t=document.querySelector(".fi-main-sidebar .fi-sidebar-group.fi-active")),!t||t.offsetParent===null)return;let n=document.querySelector(".fi-main-sidebar .fi-sidebar-nav");n&&n.scrollTo(0,t.offsetTop-window.innerHeight/2)},10)});window.setUpUnsavedDataChangesAlert=({body:t,livewireComponent:n,$wire:i})=>{window.addEventListener("beforeunload",a=>{window.jsMd5(JSON.stringify(i.data).replace(/\\/g,""))===i.savedDataHash||i?.__instance?.effects?.redirect||(a.preventDefault(),a.returnValue=!0)})};window.setUpSpaModeUnsavedDataChangesAlert=({body:t,resolveLivewireComponentUsing:n,$wire:i})=>{let a=()=>i?.__instance?.effects?.redirect?!1:window.jsMd5(JSON.stringify(i.data).replace(/\\/g,""))!==i.savedDataHash,w=()=>confirm(t);document.addEventListener("livewire:navigate",c=>{if(typeof n()<"u"){if(!a()||w())return;c.preventDefault()}}),window.addEventListener("beforeunload",c=>{a()&&(c.preventDefault(),c.returnValue=!0)})};window.setUpUnsavedActionChangesAlert=({resolveLivewireComponentUsing:t,$wire:n})=>{window.addEventListener("beforeunload",i=>{if(!(typeof t()>"u")&&(n.mountedActions?.length??0)&&!n?.__instance?.effects?.redirect){i.preventDefault(),i.returnValue=!0;return}})};document.addEventListener("alpine:init",()=>{window.Alpine.plugin(W),window.Alpine.store("sidebar",j())});})(); diff --git a/public/js/filament/filament/echo.js b/public/js/filament/filament/echo.js new file mode 100644 index 0000000..4b2d09b --- /dev/null +++ b/public/js/filament/filament/echo.js @@ -0,0 +1,13 @@ +(()=>{var Ci=Object.create;var he=Object.defineProperty;var Ti=Object.getOwnPropertyDescriptor;var Pi=Object.getOwnPropertyNames;var xi=Object.getPrototypeOf,Oi=Object.prototype.hasOwnProperty;var Ai=(l,h)=>()=>(h||l((h={exports:{}}).exports,h),h.exports);var Ei=(l,h,a,c)=>{if(h&&typeof h=="object"||typeof h=="function")for(let s of Pi(h))!Oi.call(l,s)&&s!==a&&he(l,s,{get:()=>h[s],enumerable:!(c=Ti(h,s))||c.enumerable});return l};var Li=(l,h,a)=>(a=l!=null?Ci(xi(l)):{},Ei(h||!l||!l.__esModule?he(a,"default",{value:l,enumerable:!0}):a,l));var me=Ai((vt,It)=>{(function(h,a){typeof vt=="object"&&typeof It=="object"?It.exports=a():typeof define=="function"&&define.amd?define([],a):typeof vt=="object"?vt.Pusher=a():h.Pusher=a()})(window,function(){return(function(l){var h={};function a(c){if(h[c])return h[c].exports;var s=h[c]={i:c,l:!1,exports:{}};return l[c].call(s.exports,s,s.exports,a),s.l=!0,s.exports}return a.m=l,a.c=h,a.d=function(c,s,f){a.o(c,s)||Object.defineProperty(c,s,{enumerable:!0,get:f})},a.r=function(c){typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(c,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(c,"__esModule",{value:!0})},a.t=function(c,s){if(s&1&&(c=a(c)),s&8||s&4&&typeof c=="object"&&c&&c.__esModule)return c;var f=Object.create(null);if(a.r(f),Object.defineProperty(f,"default",{enumerable:!0,value:c}),s&2&&typeof c!="string")for(var d in c)a.d(f,d,function(N){return c[N]}.bind(null,d));return f},a.n=function(c){var s=c&&c.__esModule?function(){return c.default}:function(){return c};return a.d(s,"a",s),s},a.o=function(c,s){return Object.prototype.hasOwnProperty.call(c,s)},a.p="",a(a.s=2)})([(function(l,h,a){"use strict";var c=this&&this.__extends||(function(){var b=function(v,y){return b=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(w,O){w.__proto__=O}||function(w,O){for(var I in O)O.hasOwnProperty(I)&&(w[I]=O[I])},b(v,y)};return function(v,y){b(v,y);function w(){this.constructor=v}v.prototype=y===null?Object.create(y):(w.prototype=y.prototype,new w)}})();Object.defineProperty(h,"__esModule",{value:!0});var s=256,f=(function(){function b(v){v===void 0&&(v="="),this._paddingCharacter=v}return b.prototype.encodedLength=function(v){return this._paddingCharacter?(v+2)/3*4|0:(v*8+5)/6|0},b.prototype.encode=function(v){for(var y="",w=0;w>>18&63),y+=this._encodeByte(O>>>12&63),y+=this._encodeByte(O>>>6&63),y+=this._encodeByte(O>>>0&63)}var I=v.length-w;if(I>0){var O=v[w]<<16|(I===2?v[w+1]<<8:0);y+=this._encodeByte(O>>>18&63),y+=this._encodeByte(O>>>12&63),I===2?y+=this._encodeByte(O>>>6&63):y+=this._paddingCharacter||"",y+=this._paddingCharacter||""}return y},b.prototype.maxDecodedLength=function(v){return this._paddingCharacter?v/4*3|0:(v*6+7)/8|0},b.prototype.decodedLength=function(v){return this.maxDecodedLength(v.length-this._getPaddingLength(v))},b.prototype.decode=function(v){if(v.length===0)return new Uint8Array(0);for(var y=this._getPaddingLength(v),w=v.length-y,O=new Uint8Array(this.maxDecodedLength(w)),I=0,q=0,M=0,J=0,F=0,z=0,B=0;q>>4,O[I++]=F<<4|z>>>2,O[I++]=z<<6|B,M|=J&s,M|=F&s,M|=z&s,M|=B&s;if(q>>4,M|=J&s,M|=F&s),q>>2,M|=z&s),q>>8&6,y+=51-v>>>8&-75,y+=61-v>>>8&-15,y+=62-v>>>8&3,String.fromCharCode(y)},b.prototype._decodeChar=function(v){var y=s;return y+=(42-v&v-44)>>>8&-s+v-43+62,y+=(46-v&v-48)>>>8&-s+v-47+63,y+=(47-v&v-58)>>>8&-s+v-48+52,y+=(64-v&v-91)>>>8&-s+v-65+0,y+=(96-v&v-123)>>>8&-s+v-97+26,y},b.prototype._getPaddingLength=function(v){var y=0;if(this._paddingCharacter){for(var w=v.length-1;w>=0&&v[w]===this._paddingCharacter;w--)y++;if(v.length<4||y>2)throw new Error("Base64Coder: incorrect padding")}return y},b})();h.Coder=f;var d=new f;function N(b){return d.encode(b)}h.encode=N;function P(b){return d.decode(b)}h.decode=P;var T=(function(b){c(v,b);function v(){return b!==null&&b.apply(this,arguments)||this}return v.prototype._encodeByte=function(y){var w=y;return w+=65,w+=25-y>>>8&6,w+=51-y>>>8&-75,w+=61-y>>>8&-13,w+=62-y>>>8&49,String.fromCharCode(w)},v.prototype._decodeChar=function(y){var w=s;return w+=(44-y&y-46)>>>8&-s+y-45+62,w+=(94-y&y-96)>>>8&-s+y-95+63,w+=(47-y&y-58)>>>8&-s+y-48+52,w+=(64-y&y-91)>>>8&-s+y-65+0,w+=(96-y&y-123)>>>8&-s+y-97+26,w},v})(f);h.URLSafeCoder=T;var S=new T;function C(b){return S.encode(b)}h.encodeURLSafe=C;function x(b){return S.decode(b)}h.decodeURLSafe=x,h.encodedLength=function(b){return d.encodedLength(b)},h.maxDecodedLength=function(b){return d.maxDecodedLength(b)},h.decodedLength=function(b){return d.decodedLength(b)}}),(function(l,h,a){"use strict";Object.defineProperty(h,"__esModule",{value:!0});var c="utf8: invalid string",s="utf8: invalid source encoding";function f(P){for(var T=new Uint8Array(d(P)),S=0,C=0;C>6,T[S++]=128|x&63):x<55296?(T[S++]=224|x>>12,T[S++]=128|x>>6&63,T[S++]=128|x&63):(C++,x=(x&1023)<<10,x|=P.charCodeAt(C)&1023,x+=65536,T[S++]=240|x>>18,T[S++]=128|x>>12&63,T[S++]=128|x>>6&63,T[S++]=128|x&63)}return T}h.encode=f;function d(P){for(var T=0,S=0;S=P.length-1)throw new Error(c);S++,T+=4}else throw new Error(c)}return T}h.encodedLength=d;function N(P){for(var T=[],S=0;S=P.length)throw new Error(s);var b=P[++S];if((b&192)!==128)throw new Error(s);C=(C&31)<<6|b&63,x=128}else if(C<240){if(S>=P.length-1)throw new Error(s);var b=P[++S],v=P[++S];if((b&192)!==128||(v&192)!==128)throw new Error(s);C=(C&15)<<12|(b&63)<<6|v&63,x=2048}else if(C<248){if(S>=P.length-2)throw new Error(s);var b=P[++S],v=P[++S],y=P[++S];if((b&192)!==128||(v&192)!==128||(y&192)!==128)throw new Error(s);C=(C&15)<<18|(b&63)<<12|(v&63)<<6|y&63,x=65536}else throw new Error(s);if(C=55296&&C<=57343)throw new Error(s);if(C>=65536){if(C>1114111)throw new Error(s);C-=65536,T.push(String.fromCharCode(55296|C>>10)),C=56320|C&1023}}T.push(String.fromCharCode(C))}return T.join("")}h.decode=N}),(function(l,h,a){l.exports=a(3).default}),(function(l,h,a){"use strict";a.r(h);var c=(function(){function e(t,n){this.lastId=0,this.prefix=t,this.name=n}return e.prototype.create=function(t){this.lastId++;var n=this.lastId,r=this.prefix+n,i=this.name+"["+n+"]",o=!1,u=function(){o||(t.apply(null,arguments),o=!0)};return this[n]=u,{number:n,id:r,name:i,callback:u}},e.prototype.remove=function(t){delete this[t.number]},e})(),s=new c("_pusher_script_","Pusher.ScriptReceivers"),f={VERSION:"7.6.0",PROTOCOL:7,wsPort:80,wssPort:443,wsPath:"",httpHost:"sockjs.pusher.com",httpPort:80,httpsPort:443,httpPath:"/pusher",stats_host:"stats.pusher.com",authEndpoint:"/pusher/auth",authTransport:"ajax",activityTimeout:12e4,pongTimeout:3e4,unavailableTimeout:1e4,cluster:"mt1",userAuthentication:{endpoint:"/pusher/user-auth",transport:"ajax"},channelAuthorization:{endpoint:"/pusher/auth",transport:"ajax"},cdn_http:"http://js.pusher.com",cdn_https:"https://js.pusher.com",dependency_suffix:""},d=f,N=(function(){function e(t){this.options=t,this.receivers=t.receivers||s,this.loading={}}return e.prototype.load=function(t,n,r){var i=this;if(i.loading[t]&&i.loading[t].length>0)i.loading[t].push(r);else{i.loading[t]=[r];var o=m.createScriptRequest(i.getPath(t,n)),u=i.receivers.create(function(p){if(i.receivers.remove(u),i.loading[t]){var _=i.loading[t];delete i.loading[t];for(var g=function(E){E||o.cleanup()},k=0;k<_.length;k++)_[k](p,g)}});o.send(u)}},e.prototype.getRoot=function(t){var n,r=m.getDocument().location.protocol;return t&&t.useTLS||r==="https:"?n=this.options.cdn_https:n=this.options.cdn_http,n.replace(/\/*$/,"")+"/"+this.options.version},e.prototype.getPath=function(t,n){return this.getRoot(n)+"/"+t+this.options.suffix+".js"},e})(),P=N,T=new c("_pusher_dependencies","Pusher.DependenciesReceivers"),S=new P({cdn_http:d.cdn_http,cdn_https:d.cdn_https,version:d.VERSION,suffix:d.dependency_suffix,receivers:T}),C={baseUrl:"https://pusher.com",urls:{authenticationEndpoint:{path:"/docs/channels/server_api/authenticating_users"},authorizationEndpoint:{path:"/docs/channels/server_api/authorizing-users/"},javascriptQuickStart:{path:"/docs/javascript_quick_start"},triggeringClientEvents:{path:"/docs/client_api_guide/client_events#trigger-events"},encryptedChannelSupport:{fullUrl:"https://github.com/pusher/pusher-js/tree/cc491015371a4bde5743d1c87a0fbac0feb53195#encrypted-channel-support"}}},x=function(e){var t="See:",n=C.urls[e];if(!n)return"";var r;return n.fullUrl?r=n.fullUrl:n.path&&(r=C.baseUrl+n.path),r?t+" "+r:""},b={buildLogSuffix:x},v;(function(e){e.UserAuthentication="user-authentication",e.ChannelAuthorization="channel-authorization"})(v||(v={}));var y=(function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var o in i)i.hasOwnProperty(o)&&(r[o]=i[o])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}})(),w=(function(e){y(t,e);function t(n){var r=this.constructor,i=e.call(this,n)||this;return Object.setPrototypeOf(i,r.prototype),i}return t})(Error),O=(function(e){y(t,e);function t(n){var r=this.constructor,i=e.call(this,n)||this;return Object.setPrototypeOf(i,r.prototype),i}return t})(Error),I=(function(e){y(t,e);function t(n){var r=this.constructor,i=e.call(this,n)||this;return Object.setPrototypeOf(i,r.prototype),i}return t})(Error),q=(function(e){y(t,e);function t(n){var r=this.constructor,i=e.call(this,n)||this;return Object.setPrototypeOf(i,r.prototype),i}return t})(Error),M=(function(e){y(t,e);function t(n){var r=this.constructor,i=e.call(this,n)||this;return Object.setPrototypeOf(i,r.prototype),i}return t})(Error),J=(function(e){y(t,e);function t(n){var r=this.constructor,i=e.call(this,n)||this;return Object.setPrototypeOf(i,r.prototype),i}return t})(Error),F=(function(e){y(t,e);function t(n){var r=this.constructor,i=e.call(this,n)||this;return Object.setPrototypeOf(i,r.prototype),i}return t})(Error),z=(function(e){y(t,e);function t(n){var r=this.constructor,i=e.call(this,n)||this;return Object.setPrototypeOf(i,r.prototype),i}return t})(Error),B=(function(e){y(t,e);function t(n,r){var i=this.constructor,o=e.call(this,r)||this;return o.status=n,Object.setPrototypeOf(o,i.prototype),o}return t})(Error),ke=function(e,t,n,r,i){var o=m.createXHR();o.open("POST",n.endpoint,!0),o.setRequestHeader("Content-Type","application/x-www-form-urlencoded");for(var u in n.headers)o.setRequestHeader(u,n.headers[u]);if(n.headersProvider!=null){var p=n.headersProvider();for(var u in p)o.setRequestHeader(u,p[u])}return o.onreadystatechange=function(){if(o.readyState===4)if(o.status===200){var _=void 0,g=!1;try{_=JSON.parse(o.responseText),g=!0}catch{i(new B(200,"JSON returned from "+r.toString()+" endpoint was invalid, yet status code was 200. Data was: "+o.responseText),null)}g&&i(null,_)}else{var k="";switch(r){case v.UserAuthentication:k=b.buildLogSuffix("authenticationEndpoint");break;case v.ChannelAuthorization:k="Clients must be authorized to join private or presence channels. "+b.buildLogSuffix("authorizationEndpoint");break}i(new B(o.status,"Unable to retrieve auth string from "+r.toString()+" endpoint - "+("received status: "+o.status+" from "+n.endpoint+". "+k)),null)}},o.send(t),o},Se=ke;function Ce(e){return Ee(Oe(e))}for(var nt=String.fromCharCode,Z="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Te={},ct=0,Pe=Z.length;ct>>6)+nt(128|t&63):nt(224|t>>>12&15)+nt(128|t>>>6&63)+nt(128|t&63)},Oe=function(e){return e.replace(/[^\x00-\x7F]/g,xe)},Ae=function(e){var t=[0,2,1][e.length%3],n=e.charCodeAt(0)<<16|(e.length>1?e.charCodeAt(1):0)<<8|(e.length>2?e.charCodeAt(2):0),r=[Z.charAt(n>>>18),Z.charAt(n>>>12&63),t>=2?"=":Z.charAt(n>>>6&63),t>=1?"=":Z.charAt(n&63)];return r.join("")},Ee=window.btoa||function(e){return e.replace(/[\s\S]{1,3}/g,Ae)},Le=(function(){function e(t,n,r,i){var o=this;this.clear=n,this.timer=t(function(){o.timer&&(o.timer=i(o.timer))},r)}return e.prototype.isRunning=function(){return this.timer!==null},e.prototype.ensureAborted=function(){this.timer&&(this.clear(this.timer),this.timer=null)},e})(),jt=Le,Nt=(function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var o in i)i.hasOwnProperty(o)&&(r[o]=i[o])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}})();function Re(e){window.clearTimeout(e)}function Ie(e){window.clearInterval(e)}var Q=(function(e){Nt(t,e);function t(n,r){return e.call(this,setTimeout,Re,n,function(i){return r(),null})||this}return t})(jt),je=(function(e){Nt(t,e);function t(n,r){return e.call(this,setInterval,Ie,n,function(i){return r(),i})||this}return t})(jt),Ne={now:function(){return Date.now?Date.now():new Date().valueOf()},defer:function(e){return new Q(0,e)},method:function(e){for(var t=[],n=1;n0)for(var i=0;i=1002&&e.code<=1004?"backoff":null:e.code===4e3?"tls_only":e.code<4100?"refused":e.code<4200?"backoff":e.code<4300?"retry":"refused"},getCloseError:function(e){return e.code!==1e3&&e.code!==1001?{type:"PusherError",data:{code:e.code,message:e.reason||e.message}}:null}},K=Vt,Cn=(function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var o in i)i.hasOwnProperty(o)&&(r[o]=i[o])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}})(),Tn=(function(e){Cn(t,e);function t(n,r){var i=e.call(this)||this;return i.id=n,i.transport=r,i.activityTimeout=r.activityTimeout,i.bindListeners(),i}return t.prototype.handlesActivityChecks=function(){return this.transport.handlesActivityChecks()},t.prototype.send=function(n){return this.transport.send(n)},t.prototype.send_event=function(n,r,i){var o={event:n,data:r};return i&&(o.channel=i),A.debug("Event sent",o),this.send(K.encodeMessage(o))},t.prototype.ping=function(){this.transport.supportsPing()?this.transport.ping():this.send_event("pusher:ping",{})},t.prototype.close=function(){this.transport.close()},t.prototype.bindListeners=function(){var n=this,r={message:function(o){var u;try{u=K.decodeMessage(o)}catch(p){n.emit("error",{type:"MessageParseError",error:p,data:o.data})}if(u!==void 0){switch(A.debug("Event recd",u),u.event){case"pusher:error":n.emit("error",{type:"PusherError",data:u.data});break;case"pusher:ping":n.emit("ping");break;case"pusher:pong":n.emit("pong");break}n.emit("message",u)}},activity:function(){n.emit("activity")},error:function(o){n.emit("error",o)},closed:function(o){i(),o&&o.code&&n.handleCloseEvent(o),n.transport=null,n.emit("closed")}},i=function(){W(r,function(o,u){n.transport.unbind(u,o)})};W(r,function(o,u){n.transport.bind(u,o)})},t.prototype.handleCloseEvent=function(n){var r=K.getCloseAction(n),i=K.getCloseError(n);i&&this.emit("error",i),r&&this.emit(r,{action:r,error:i})},t})(V),Pn=Tn,xn=(function(){function e(t,n){this.transport=t,this.callback=n,this.bindListeners()}return e.prototype.close=function(){this.unbindListeners(),this.transport.close()},e.prototype.bindListeners=function(){var t=this;this.onMessage=function(n){t.unbindListeners();var r;try{r=K.processHandshake(n)}catch(i){t.finish("error",{error:i}),t.transport.close();return}r.action==="connected"?t.finish("connected",{connection:new Pn(r.id,t.transport),activityTimeout:r.activityTimeout}):(t.finish(r.action,{error:r.error}),t.transport.close())},this.onClosed=function(n){t.unbindListeners();var r=K.getCloseAction(n)||"backoff",i=K.getCloseError(n);t.finish(r,{error:i})},this.transport.bind("message",this.onMessage),this.transport.bind("closed",this.onClosed)},e.prototype.unbindListeners=function(){this.transport.unbind("message",this.onMessage),this.transport.unbind("closed",this.onClosed)},e.prototype.finish=function(t,n){this.callback(U({transport:this.transport,action:t},n))},e})(),On=xn,An=(function(){function e(t,n){this.timeline=t,this.options=n||{}}return e.prototype.send=function(t,n){this.timeline.isEmpty()||this.timeline.send(m.TimelineTransport.getAgent(this,t),n)},e})(),En=An,Ln=(function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var o in i)i.hasOwnProperty(o)&&(r[o]=i[o])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}})(),Rn=(function(e){Ln(t,e);function t(n,r){var i=e.call(this,function(o,u){A.debug("No callbacks on "+n+" for "+o)})||this;return i.name=n,i.pusher=r,i.subscribed=!1,i.subscriptionPending=!1,i.subscriptionCancelled=!1,i}return t.prototype.authorize=function(n,r){return r(null,{auth:""})},t.prototype.trigger=function(n,r){if(n.indexOf("client-")!==0)throw new w("Event '"+n+"' does not start with 'client-'");if(!this.subscribed){var i=b.buildLogSuffix("triggeringClientEvents");A.warn("Client event triggered before channel 'subscription_succeeded' event . "+i)}return this.pusher.send_event(n,r,this.name)},t.prototype.disconnect=function(){this.subscribed=!1,this.subscriptionPending=!1},t.prototype.handleEvent=function(n){var r=n.event,i=n.data;if(r==="pusher_internal:subscription_succeeded")this.handleSubscriptionSucceededEvent(n);else if(r==="pusher_internal:subscription_count")this.handleSubscriptionCountEvent(n);else if(r.indexOf("pusher_internal:")!==0){var o={};this.emit(r,i,o)}},t.prototype.handleSubscriptionSucceededEvent=function(n){this.subscriptionPending=!1,this.subscribed=!0,this.subscriptionCancelled?this.pusher.unsubscribe(this.name):this.emit("pusher:subscription_succeeded",n.data)},t.prototype.handleSubscriptionCountEvent=function(n){n.data.subscription_count&&(this.subscriptionCount=n.data.subscription_count),this.emit("pusher:subscription_count",n.data)},t.prototype.subscribe=function(){var n=this;this.subscribed||(this.subscriptionPending=!0,this.subscriptionCancelled=!1,this.authorize(this.pusher.connection.socket_id,function(r,i){r?(n.subscriptionPending=!1,A.error(r.toString()),n.emit("pusher:subscription_error",Object.assign({},{type:"AuthError",error:r.message},r instanceof B?{status:r.status}:{}))):n.pusher.send_event("pusher:subscribe",{auth:i.auth,channel_data:i.channel_data,channel:n.name})}))},t.prototype.unsubscribe=function(){this.subscribed=!1,this.pusher.send_event("pusher:unsubscribe",{channel:this.name})},t.prototype.cancelSubscription=function(){this.subscriptionCancelled=!0},t.prototype.reinstateSubscription=function(){this.subscriptionCancelled=!1},t})(V),bt=Rn,In=(function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var o in i)i.hasOwnProperty(o)&&(r[o]=i[o])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}})(),jn=(function(e){In(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.authorize=function(n,r){return this.pusher.config.channelAuthorizer({channelName:this.name,socketId:n},r)},t})(bt),mt=jn,Nn=(function(){function e(){this.reset()}return e.prototype.get=function(t){return Object.prototype.hasOwnProperty.call(this.members,t)?{id:t,info:this.members[t]}:null},e.prototype.each=function(t){var n=this;W(this.members,function(r,i){t(n.get(i))})},e.prototype.setMyID=function(t){this.myID=t},e.prototype.onSubscription=function(t){this.members=t.presence.hash,this.count=t.presence.count,this.me=this.get(this.myID)},e.prototype.addMember=function(t){return this.get(t.user_id)===null&&this.count++,this.members[t.user_id]=t.user_info,this.get(t.user_id)},e.prototype.removeMember=function(t){var n=this.get(t.user_id);return n&&(delete this.members[t.user_id],this.count--),n},e.prototype.reset=function(){this.members={},this.count=0,this.myID=null,this.me=null},e})(),qn=Nn,Un=(function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var o in i)i.hasOwnProperty(o)&&(r[o]=i[o])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}})(),Dn=function(e,t,n,r){function i(o){return o instanceof n?o:new n(function(u){u(o)})}return new(n||(n=Promise))(function(o,u){function p(k){try{g(r.next(k))}catch(E){u(E)}}function _(k){try{g(r.throw(k))}catch(E){u(E)}}function g(k){k.done?o(k.value):i(k.value).then(p,_)}g((r=r.apply(e,t||[])).next())})},Hn=function(e,t){var n={label:0,sent:function(){if(o[0]&1)throw o[1];return o[1]},trys:[],ops:[]},r,i,o,u;return u={next:p(0),throw:p(1),return:p(2)},typeof Symbol=="function"&&(u[Symbol.iterator]=function(){return this}),u;function p(g){return function(k){return _([g,k])}}function _(g){if(r)throw new TypeError("Generator is already executing.");for(;n;)try{if(r=1,i&&(o=g[0]&2?i.return:g[0]?i.throw||((o=i.return)&&o.call(i),0):i.next)&&!(o=o.call(i,g[1])).done)return o;switch(i=0,o&&(g=[g[0]&2,o.value]),g[0]){case 0:case 1:o=g;break;case 4:return n.label++,{value:g[1],done:!1};case 5:n.label++,i=g[1],g=[0];continue;case 7:g=n.ops.pop(),n.trys.pop();continue;default:if(o=n.trys,!(o=o.length>0&&o[o.length-1])&&(g[0]===6||g[0]===2)){n=0;continue}if(g[0]===3&&(!o||g[1]>o[0]&&g[1]0&&this.emit("connecting_in",Math.round(n/1e3)),this.retryTimer=new Q(n||0,function(){r.disconnectInternally(),r.connect()})},t.prototype.clearRetryTimer=function(){this.retryTimer&&(this.retryTimer.ensureAborted(),this.retryTimer=null)},t.prototype.setUnavailableTimer=function(){var n=this;this.unavailableTimer=new Q(this.options.unavailableTimeout,function(){n.updateState("unavailable")})},t.prototype.clearUnavailableTimer=function(){this.unavailableTimer&&this.unavailableTimer.ensureAborted()},t.prototype.sendActivityCheck=function(){var n=this;this.stopActivityCheck(),this.connection.ping(),this.activityTimer=new Q(this.options.pongTimeout,function(){n.timeline.error({pong_timed_out:n.options.pongTimeout}),n.retryIn(0)})},t.prototype.resetActivityCheck=function(){var n=this;this.stopActivityCheck(),this.connection&&!this.connection.handlesActivityChecks()&&(this.activityTimer=new Q(this.activityTimeout,function(){n.sendActivityCheck()}))},t.prototype.stopActivityCheck=function(){this.activityTimer&&this.activityTimer.ensureAborted()},t.prototype.buildConnectionCallbacks=function(n){var r=this;return U({},n,{message:function(i){r.resetActivityCheck(),r.emit("message",i)},ping:function(){r.send_event("pusher:pong",{})},activity:function(){r.resetActivityCheck()},error:function(i){r.emit("error",i)},closed:function(){r.abandonConnection(),r.shouldRetry()&&r.retryIn(1e3)}})},t.prototype.buildHandshakeCallbacks=function(n){var r=this;return U({},n,{connected:function(i){r.activityTimeout=Math.min(r.options.activityTimeout,i.activityTimeout,i.connection.activityTimeout||1/0),r.clearUnavailableTimer(),r.setConnection(i.connection),r.socket_id=r.connection.id,r.updateState("connected",{socket_id:r.socket_id})}})},t.prototype.buildErrorCallbacks=function(){var n=this,r=function(i){return function(o){o.error&&n.emit("error",{type:"WebSocketError",error:o.error}),i(o)}};return{tls_only:r(function(){n.usingTLS=!0,n.updateStrategy(),n.retryIn(0)}),refused:r(function(){n.disconnect()}),backoff:r(function(){n.retryIn(1e3)}),retry:r(function(){n.retryIn(0)})}},t.prototype.setConnection=function(n){this.connection=n;for(var r in this.connectionCallbacks)this.connection.bind(r,this.connectionCallbacks[r]);this.resetActivityCheck()},t.prototype.abandonConnection=function(){if(this.connection){this.stopActivityCheck();for(var n in this.connectionCallbacks)this.connection.unbind(n,this.connectionCallbacks[n]);var r=this.connection;return this.connection=null,r}},t.prototype.updateState=function(n,r){var i=this.state;if(this.state=n,i!==n){var o=n;o==="connected"&&(o+=" with new socket ID "+r.socket_id),A.debug("State changed",i+" -> "+o),this.timeline.info({state:n,params:r}),this.emit("state_change",{previous:i,current:n}),this.emit(n,r)}},t.prototype.shouldRetry=function(){return this.state==="connecting"||this.state==="connected"},t})(V),Gn=Vn,Qn=(function(){function e(){this.channels={}}return e.prototype.add=function(t,n){return this.channels[t]||(this.channels[t]=Yn(t,n)),this.channels[t]},e.prototype.all=function(){return Ue(this.channels)},e.prototype.find=function(t){return this.channels[t]},e.prototype.remove=function(t){var n=this.channels[t];return delete this.channels[t],n},e.prototype.disconnect=function(){W(this.channels,function(t){t.disconnect()})},e})(),Kn=Qn;function Yn(e,t){if(e.indexOf("private-encrypted-")===0){if(t.config.nacl)return G.createEncryptedChannel(e,t,t.config.nacl);var n="Tried to subscribe to a private-encrypted- channel but no nacl implementation available",r=b.buildLogSuffix("encryptedChannelSupport");throw new J(n+". "+r)}else{if(e.indexOf("private-")===0)return G.createPrivateChannel(e,t);if(e.indexOf("presence-")===0)return G.createPresenceChannel(e,t);if(e.indexOf("#")===0)throw new O('Cannot create a channel with name "'+e+'".');return G.createChannel(e,t)}}var $n={createChannels:function(){return new Kn},createConnectionManager:function(e,t){return new Gn(e,t)},createChannel:function(e,t){return new bt(e,t)},createPrivateChannel:function(e,t){return new mt(e,t)},createPresenceChannel:function(e,t){return new zn(e,t)},createEncryptedChannel:function(e,t,n){return new Jn(e,t,n)},createTimelineSender:function(e,t){return new En(e,t)},createHandshake:function(e,t){return new On(e,t)},createAssistantToTheTransportManager:function(e,t,n){return new Sn(e,t,n)}},G=$n,Zn=(function(){function e(t){this.options=t||{},this.livesLeft=this.options.lives||1/0}return e.prototype.getAssistant=function(t){return G.createAssistantToTheTransportManager(this,t,{minPingDelay:this.options.minPingDelay,maxPingDelay:this.options.maxPingDelay})},e.prototype.isAlive=function(){return this.livesLeft>0},e.prototype.reportDeath=function(){this.livesLeft-=1},e})(),Gt=Zn,tr=(function(){function e(t,n){this.strategies=t,this.loop=!!n.loop,this.failFast=!!n.failFast,this.timeout=n.timeout,this.timeoutLimit=n.timeoutLimit}return e.prototype.isSupported=function(){return zt(this.strategies,j.method("isSupported"))},e.prototype.connect=function(t,n){var r=this,i=this.strategies,o=0,u=this.timeout,p=null,_=function(g,k){k?n(null,k):(o=o+1,r.loop&&(o=o%i.length),o0&&(o=new Q(r.timeout,function(){u.abort(),i(!0)})),u=t.connect(n,function(p,_){p&&o&&o.isRunning()&&!r.failFast||(o&&o.ensureAborted(),i(p,_))}),{abort:function(){o&&o.ensureAborted(),u.abort()},forceMinPriority:function(p){u.forceMinPriority(p)}}},e})(),Y=tr,er=(function(){function e(t){this.strategies=t}return e.prototype.isSupported=function(){return zt(this.strategies,j.method("isSupported"))},e.prototype.connect=function(t,n){return nr(this.strategies,t,function(r,i){return function(o,u){if(i[r].error=o,o){rr(i)&&n(!0);return}rt(i,function(p){p.forceMinPriority(u.transport.priority)}),n(null,u)}})},e})(),kt=er;function nr(e,t,n){var r=Dt(e,function(i,o,u,p){return i.connect(t,n(o,p))});return{abort:function(){rt(r,ir)},forceMinPriority:function(i){rt(r,function(o){o.forceMinPriority(i)})}}}function rr(e){return Me(e,function(t){return!!t.error})}function ir(e){!e.error&&!e.aborted&&(e.abort(),e.aborted=!0)}var or=(function(){function e(t,n,r){this.strategy=t,this.transports=n,this.ttl=r.ttl||1800*1e3,this.usingTLS=r.useTLS,this.timeline=r.timeline}return e.prototype.isSupported=function(){return this.strategy.isSupported()},e.prototype.connect=function(t,n){var r=this.usingTLS,i=ar(r),o=[this.strategy];if(i&&i.timestamp+this.ttl>=j.now()){var u=this.transports[i.transport];u&&(this.timeline.info({cached:!0,transport:i.transport,latency:i.latency}),o.push(new Y([u],{timeout:i.latency*2+1e3,failFast:!0})))}var p=j.now(),_=o.pop().connect(t,function g(k,E){k?(Qt(r),o.length>0?(p=j.now(),_=o.pop().connect(t,g)):n(k)):(cr(r,E.transport.name,j.now()-p),n(null,E))});return{abort:function(){_.abort()},forceMinPriority:function(g){t=g,_&&_.forceMinPriority(g)}}},e})(),sr=or;function St(e){return"pusherTransport"+(e?"TLS":"NonTLS")}function ar(e){var t=m.getLocalStorage();if(t)try{var n=t[St(e)];if(n)return JSON.parse(n)}catch{Qt(e)}return null}function cr(e,t,n){var r=m.getLocalStorage();if(r)try{r[St(e)]=ut({timestamp:j.now(),transport:t,latency:n})}catch{}}function Qt(e){var t=m.getLocalStorage();if(t)try{delete t[St(e)]}catch{}}var ur=(function(){function e(t,n){var r=n.delay;this.strategy=t,this.options={delay:r}}return e.prototype.isSupported=function(){return this.strategy.isSupported()},e.prototype.connect=function(t,n){var r=this.strategy,i,o=new Q(this.options.delay,function(){i=r.connect(t,n)});return{abort:function(){o.ensureAborted(),i&&i.abort()},forceMinPriority:function(u){t=u,i&&i.forceMinPriority(u)}}},e})(),lt=ur,hr=(function(){function e(t,n,r){this.test=t,this.trueBranch=n,this.falseBranch=r}return e.prototype.isSupported=function(){var t=this.test()?this.trueBranch:this.falseBranch;return t.isSupported()},e.prototype.connect=function(t,n){var r=this.test()?this.trueBranch:this.falseBranch;return r.connect(t,n)},e})(),it=hr,lr=(function(){function e(t){this.strategy=t}return e.prototype.isSupported=function(){return this.strategy.isSupported()},e.prototype.connect=function(t,n){var r=this.strategy.connect(t,function(i,o){o&&r.abort(),n(i,o)});return r},e})(),fr=lr;function ot(e){return function(){return e.isSupported()}}var pr=function(e,t,n){var r={};function i(ce,mi,wi,ki,Si){var ue=n(e,ce,mi,wi,ki,Si);return r[ce]=ue,ue}var o=Object.assign({},t,{hostNonTLS:e.wsHost+":"+e.wsPort,hostTLS:e.wsHost+":"+e.wssPort,httpPath:e.wsPath}),u=Object.assign({},o,{useTLS:!0}),p=Object.assign({},t,{hostNonTLS:e.httpHost+":"+e.httpPort,hostTLS:e.httpHost+":"+e.httpsPort,httpPath:e.httpPath}),_={loop:!0,timeout:15e3,timeoutLimit:6e4},g=new Gt({lives:2,minPingDelay:1e4,maxPingDelay:e.activityTimeout}),k=new Gt({lives:2,minPingDelay:1e4,maxPingDelay:e.activityTimeout}),E=i("ws","ws",3,o,g),X=i("wss","ws",3,u,g),vi=i("sockjs","sockjs",1,p),ne=i("xhr_streaming","xhr_streaming",1,p,k),yi=i("xdr_streaming","xdr_streaming",1,p,k),re=i("xhr_polling","xhr_polling",1,p),gi=i("xdr_polling","xdr_polling",1,p),ie=new Y([E],_),_i=new Y([X],_),bi=new Y([vi],_),oe=new Y([new it(ot(ne),ne,yi)],_),se=new Y([new it(ot(re),re,gi)],_),ae=new Y([new it(ot(oe),new kt([oe,new lt(se,{delay:4e3})]),se)],_),xt=new it(ot(ae),ae,bi),Ot;return t.useTLS?Ot=new kt([ie,new lt(xt,{delay:2e3})]):Ot=new kt([ie,new lt(_i,{delay:2e3}),new lt(xt,{delay:5e3})]),new sr(new fr(new it(ot(E),Ot,xt)),r,{ttl:18e5,timeline:t.timeline,useTLS:t.useTLS})},dr=pr,vr=(function(){var e=this;e.timeline.info(e.buildTimelineMessage({transport:e.name+(e.options.useTLS?"s":"")})),e.hooks.isInitialized()?e.changeState("initialized"):e.hooks.file?(e.changeState("initializing"),S.load(e.hooks.file,{useTLS:e.options.useTLS},function(t,n){e.hooks.isInitialized()?(e.changeState("initialized"),n(!0)):(t&&e.onError(t),e.onClose(),n(!1))})):e.onClose()}),yr={getRequest:function(e){var t=new window.XDomainRequest;return t.ontimeout=function(){e.emit("error",new I),e.close()},t.onerror=function(n){e.emit("error",n),e.close()},t.onprogress=function(){t.responseText&&t.responseText.length>0&&e.onChunk(200,t.responseText)},t.onload=function(){t.responseText&&t.responseText.length>0&&e.onChunk(200,t.responseText),e.emit("finished",200),e.close()},t},abortRequest:function(e){e.ontimeout=e.onerror=e.onprogress=e.onload=null,e.abort()}},gr=yr,_r=(function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var o in i)i.hasOwnProperty(o)&&(r[o]=i[o])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}})(),br=256*1024,mr=(function(e){_r(t,e);function t(n,r,i){var o=e.call(this)||this;return o.hooks=n,o.method=r,o.url=i,o}return t.prototype.start=function(n){var r=this;this.position=0,this.xhr=this.hooks.getRequest(this),this.unloader=function(){r.close()},m.addUnloadListener(this.unloader),this.xhr.open(this.method,this.url,!0),this.xhr.setRequestHeader&&this.xhr.setRequestHeader("Content-Type","application/json"),this.xhr.send(n)},t.prototype.close=function(){this.unloader&&(m.removeUnloadListener(this.unloader),this.unloader=null),this.xhr&&(this.hooks.abortRequest(this.xhr),this.xhr=null)},t.prototype.onChunk=function(n,r){for(;;){var i=this.advanceBuffer(r);if(i)this.emit("chunk",{status:n,data:i});else break}this.isBufferTooLong(r)&&this.emit("buffer_too_long")},t.prototype.advanceBuffer=function(n){var r=n.slice(this.position),i=r.indexOf(` +`);return i!==-1?(this.position+=i+1,r.slice(0,i)):null},t.prototype.isBufferTooLong=function(n){return this.position===n.length&&n.length>br},t})(V),wr=mr,Ct;(function(e){e[e.CONNECTING=0]="CONNECTING",e[e.OPEN=1]="OPEN",e[e.CLOSED=3]="CLOSED"})(Ct||(Ct={}));var $=Ct,kr=1,Sr=(function(){function e(t,n){this.hooks=t,this.session=Yt(1e3)+"/"+xr(8),this.location=Cr(n),this.readyState=$.CONNECTING,this.openStream()}return e.prototype.send=function(t){return this.sendRaw(JSON.stringify([t]))},e.prototype.ping=function(){this.hooks.sendHeartbeat(this)},e.prototype.close=function(t,n){this.onClose(t,n,!0)},e.prototype.sendRaw=function(t){if(this.readyState===$.OPEN)try{return m.createSocketRequest("POST",Kt(Tr(this.location,this.session))).start(t),!0}catch{return!1}else return!1},e.prototype.reconnect=function(){this.closeStream(),this.openStream()},e.prototype.onClose=function(t,n,r){this.closeStream(),this.readyState=$.CLOSED,this.onclose&&this.onclose({code:t,reason:n,wasClean:r})},e.prototype.onChunk=function(t){if(t.status===200){this.readyState===$.OPEN&&this.onActivity();var n,r=t.data.slice(0,1);switch(r){case"o":n=JSON.parse(t.data.slice(1)||"{}"),this.onOpen(n);break;case"a":n=JSON.parse(t.data.slice(1)||"[]");for(var i=0;i0&&e.onChunk(n.status,n.responseText);break;case 4:n.responseText&&n.responseText.length>0&&e.onChunk(n.status,n.responseText),e.emit("finished",n.status),e.close();break}},n},abortRequest:function(e){e.onreadystatechange=null,e.abort()}},jr=Ir,Nr={createStreamingSocket:function(e){return this.createSocket(Er,e)},createPollingSocket:function(e){return this.createSocket(Rr,e)},createSocket:function(e,t){return new Or(e,t)},createXHR:function(e,t){return this.createRequest(jr,e,t)},createRequest:function(e,t,n){return new wr(e,t,n)}},$t=Nr;$t.createXDR=function(e,t){return this.createRequest(gr,e,t)};var qr=$t,Ur={nextAuthCallbackID:1,auth_callbacks:{},ScriptReceivers:s,DependenciesReceivers:T,getDefaultStrategy:dr,Transports:_n,transportConnectionInitializer:vr,HTTPFactory:qr,TimelineTransport:Ze,getXHRAPI:function(){return window.XMLHttpRequest},getWebSocketAPI:function(){return window.WebSocket||window.MozWebSocket},setup:function(e){var t=this;window.Pusher=e;var n=function(){t.onDocumentBody(e.ready)};window.JSON?n():S.load("json2",{},n)},getDocument:function(){return document},getProtocol:function(){return this.getDocument().location.protocol},getAuthorizers:function(){return{ajax:Se,jsonp:We}},onDocumentBody:function(e){var t=this;document.body?e():setTimeout(function(){t.onDocumentBody(e)},0)},createJSONPRequest:function(e,t){return new Ke(e,t)},createScriptRequest:function(e){return new Ge(e)},getLocalStorage:function(){try{return window.localStorage}catch{return}},createXHR:function(){return this.getXHRAPI()?this.createXMLHttpRequest():this.createMicrosoftXHR()},createXMLHttpRequest:function(){var e=this.getXHRAPI();return new e},createMicrosoftXHR:function(){return new ActiveXObject("Microsoft.XMLHTTP")},getNetwork:function(){return wn},createWebSocket:function(e){var t=this.getWebSocketAPI();return new t(e)},createSocketRequest:function(e,t){if(this.isXHRSupported())return this.HTTPFactory.createXHR(e,t);if(this.isXDRSupported(t.indexOf("https:")===0))return this.HTTPFactory.createXDR(e,t);throw"Cross-origin HTTP requests are not supported"},isXHRSupported:function(){var e=this.getXHRAPI();return!!e&&new e().withCredentials!==void 0},isXDRSupported:function(e){var t=e?"https:":"http:",n=this.getProtocol();return!!window.XDomainRequest&&n===t},addUnloadListener:function(e){window.addEventListener!==void 0?window.addEventListener("unload",e,!1):window.attachEvent!==void 0&&window.attachEvent("onunload",e)},removeUnloadListener:function(e){window.addEventListener!==void 0?window.removeEventListener("unload",e,!1):window.detachEvent!==void 0&&window.detachEvent("onunload",e)},randomInt:function(e){var t=function(){var n=window.crypto||window.msCrypto,r=n.getRandomValues(new Uint32Array(1))[0];return r/Math.pow(2,32)};return Math.floor(t()*e)}},m=Ur,Tt;(function(e){e[e.ERROR=3]="ERROR",e[e.INFO=6]="INFO",e[e.DEBUG=7]="DEBUG"})(Tt||(Tt={}));var ft=Tt,Dr=(function(){function e(t,n,r){this.key=t,this.session=n,this.events=[],this.options=r||{},this.sent=0,this.uniqueID=0}return e.prototype.log=function(t,n){t<=this.options.level&&(this.events.push(U({},n,{timestamp:j.now()})),this.options.limit&&this.events.length>this.options.limit&&this.events.shift())},e.prototype.error=function(t){this.log(ft.ERROR,t)},e.prototype.info=function(t){this.log(ft.INFO,t)},e.prototype.debug=function(t){this.log(ft.DEBUG,t)},e.prototype.isEmpty=function(){return this.events.length===0},e.prototype.send=function(t,n){var r=this,i=U({session:this.session,bundle:this.sent+1,key:this.key,lib:"js",version:this.options.version,cluster:this.options.cluster,features:this.options.features,timeline:this.events},this.options.params);return this.events=[],t(i,function(o,u){o||r.sent++,n&&n(o,u)}),!0},e.prototype.generateUniqueID=function(){return this.uniqueID++,this.uniqueID},e})(),Hr=Dr,Mr=(function(){function e(t,n,r,i){this.name=t,this.priority=n,this.transport=r,this.options=i||{}}return e.prototype.isSupported=function(){return this.transport.isSupported({useTLS:this.options.useTLS})},e.prototype.connect=function(t,n){var r=this;if(this.isSupported()){if(this.priority"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function Ii(l){if(l===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return l}function ji(l,h){if(h&&(typeof h=="object"||typeof h=="function"))return h;if(h!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return Ii(l)}function H(l){var h=Ri();return function(){var c=pt(l),s;if(h){var f=pt(this).constructor;s=Reflect.construct(c,arguments,f)}else s=c.apply(this,arguments);return ji(this,s)}}var Et=(function(){function l(){L(this,l)}return R(l,[{key:"listenForWhisper",value:function(a,c){return this.listen(".client-"+a,c)}},{key:"notification",value:function(a){return this.listen(".Illuminate\\Notifications\\Events\\BroadcastNotificationCreated",a)}},{key:"stopListeningForWhisper",value:function(a,c){return this.stopListening(".client-"+a,c)}}]),l})(),de=(function(){function l(h){L(this,l),this.namespace=h}return R(l,[{key:"format",value:function(a){return[".","\\"].includes(a.charAt(0))?a.substring(1):(this.namespace&&(a=this.namespace+"."+a),a.replace(/\./g,"\\"))}},{key:"setNamespace",value:function(a){this.namespace=a}}]),l})();function Ni(l){try{new l}catch(h){if(h.message.includes("is not a constructor"))return!1}return!0}var Lt=(function(l){D(a,l);var h=H(a);function a(c,s,f){var d;return L(this,a),d=h.call(this),d.name=s,d.pusher=c,d.options=f,d.eventFormatter=new de(d.options.namespace),d.subscribe(),d}return R(a,[{key:"subscribe",value:function(){this.subscription=this.pusher.subscribe(this.name)}},{key:"unsubscribe",value:function(){this.pusher.unsubscribe(this.name)}},{key:"listen",value:function(s,f){return this.on(this.eventFormatter.format(s),f),this}},{key:"listenToAll",value:function(s){var f=this;return this.subscription.bind_global(function(d,N){if(!d.startsWith("pusher:")){var P=f.options.namespace.replace(/\./g,"\\"),T=d.startsWith(P)?d.substring(P.length+1):"."+d;s(T,N)}}),this}},{key:"stopListening",value:function(s,f){return f?this.subscription.unbind(this.eventFormatter.format(s),f):this.subscription.unbind(this.eventFormatter.format(s)),this}},{key:"stopListeningToAll",value:function(s){return s?this.subscription.unbind_global(s):this.subscription.unbind_global(),this}},{key:"subscribed",value:function(s){return this.on("pusher:subscription_succeeded",function(){s()}),this}},{key:"error",value:function(s){return this.on("pusher:subscription_error",function(f){s(f)}),this}},{key:"on",value:function(s,f){return this.subscription.bind(s,f),this}}]),a})(Et),ve=(function(l){D(a,l);var h=H(a);function a(){return L(this,a),h.apply(this,arguments)}return R(a,[{key:"whisper",value:function(s,f){return this.pusher.channels.channels[this.name].trigger("client-".concat(s),f),this}}]),a})(Lt),qi=(function(l){D(a,l);var h=H(a);function a(){return L(this,a),h.apply(this,arguments)}return R(a,[{key:"whisper",value:function(s,f){return this.pusher.channels.channels[this.name].trigger("client-".concat(s),f),this}}]),a})(Lt),Ui=(function(l){D(a,l);var h=H(a);function a(){return L(this,a),h.apply(this,arguments)}return R(a,[{key:"here",value:function(s){return this.on("pusher:subscription_succeeded",function(f){s(Object.keys(f.members).map(function(d){return f.members[d]}))}),this}},{key:"joining",value:function(s){return this.on("pusher:member_added",function(f){s(f.info)}),this}},{key:"whisper",value:function(s,f){return this.pusher.channels.channels[this.name].trigger("client-".concat(s),f),this}},{key:"leaving",value:function(s){return this.on("pusher:member_removed",function(f){s(f.info)}),this}}]),a})(ve),ye=(function(l){D(a,l);var h=H(a);function a(c,s,f){var d;return L(this,a),d=h.call(this),d.events={},d.listeners={},d.name=s,d.socket=c,d.options=f,d.eventFormatter=new de(d.options.namespace),d.subscribe(),d}return R(a,[{key:"subscribe",value:function(){this.socket.emit("subscribe",{channel:this.name,auth:this.options.auth||{}})}},{key:"unsubscribe",value:function(){this.unbind(),this.socket.emit("unsubscribe",{channel:this.name,auth:this.options.auth||{}})}},{key:"listen",value:function(s,f){return this.on(this.eventFormatter.format(s),f),this}},{key:"stopListening",value:function(s,f){return this.unbindEvent(this.eventFormatter.format(s),f),this}},{key:"subscribed",value:function(s){return this.on("connect",function(f){s(f)}),this}},{key:"error",value:function(s){return this}},{key:"on",value:function(s,f){var d=this;return this.listeners[s]=this.listeners[s]||[],this.events[s]||(this.events[s]=function(N,P){d.name===N&&d.listeners[s]&&d.listeners[s].forEach(function(T){return T(P)})},this.socket.on(s,this.events[s])),this.listeners[s].push(f),this}},{key:"unbind",value:function(){var s=this;Object.keys(this.events).forEach(function(f){s.unbindEvent(f)})}},{key:"unbindEvent",value:function(s,f){this.listeners[s]=this.listeners[s]||[],f&&(this.listeners[s]=this.listeners[s].filter(function(d){return d!==f})),(!f||this.listeners[s].length===0)&&(this.events[s]&&(this.socket.removeListener(s,this.events[s]),delete this.events[s]),delete this.listeners[s])}}]),a})(Et),ge=(function(l){D(a,l);var h=H(a);function a(){return L(this,a),h.apply(this,arguments)}return R(a,[{key:"whisper",value:function(s,f){return this.socket.emit("client event",{channel:this.name,event:"client-".concat(s),data:f}),this}}]),a})(ye),Di=(function(l){D(a,l);var h=H(a);function a(){return L(this,a),h.apply(this,arguments)}return R(a,[{key:"here",value:function(s){return this.on("presence:subscribed",function(f){s(f.map(function(d){return d.user_info}))}),this}},{key:"joining",value:function(s){return this.on("presence:joining",function(f){return s(f.user_info)}),this}},{key:"whisper",value:function(s,f){return this.socket.emit("client event",{channel:this.name,event:"client-".concat(s),data:f}),this}},{key:"leaving",value:function(s){return this.on("presence:leaving",function(f){return s(f.user_info)}),this}}]),a})(ge),dt=(function(l){D(a,l);var h=H(a);function a(){return L(this,a),h.apply(this,arguments)}return R(a,[{key:"subscribe",value:function(){}},{key:"unsubscribe",value:function(){}},{key:"listen",value:function(s,f){return this}},{key:"listenToAll",value:function(s){return this}},{key:"stopListening",value:function(s,f){return this}},{key:"subscribed",value:function(s){return this}},{key:"error",value:function(s){return this}},{key:"on",value:function(s,f){return this}}]),a})(Et),_e=(function(l){D(a,l);var h=H(a);function a(){return L(this,a),h.apply(this,arguments)}return R(a,[{key:"whisper",value:function(s,f){return this}}]),a})(dt),Hi=(function(l){D(a,l);var h=H(a);function a(){return L(this,a),h.apply(this,arguments)}return R(a,[{key:"whisper",value:function(s,f){return this}}]),a})(dt),Mi=(function(l){D(a,l);var h=H(a);function a(){return L(this,a),h.apply(this,arguments)}return R(a,[{key:"here",value:function(s){return this}},{key:"joining",value:function(s){return this}},{key:"whisper",value:function(s,f){return this}},{key:"leaving",value:function(s){return this}}]),a})(_e),Rt=(function(){function l(h){L(this,l),this._defaultOptions={auth:{headers:{}},authEndpoint:"/broadcasting/auth",userAuthentication:{endpoint:"/broadcasting/user-auth",headers:{}},broadcaster:"pusher",csrfToken:null,bearerToken:null,host:null,key:null,namespace:"App.Events"},this.setOptions(h),this.connect()}return R(l,[{key:"setOptions",value:function(a){this.options=at(this._defaultOptions,a);var c=this.csrfToken();return c&&(this.options.auth.headers["X-CSRF-TOKEN"]=c,this.options.userAuthentication.headers["X-CSRF-TOKEN"]=c),c=this.options.bearerToken,c&&(this.options.auth.headers.Authorization="Bearer "+c,this.options.userAuthentication.headers.Authorization="Bearer "+c),a}},{key:"csrfToken",value:function(){var a;return typeof window<"u"&&window.Laravel&&window.Laravel.csrfToken?window.Laravel.csrfToken:this.options.csrfToken?this.options.csrfToken:typeof document<"u"&&typeof document.querySelector=="function"&&(a=document.querySelector('meta[name="csrf-token"]'))?a.getAttribute("content"):null}}]),l})(),fe=(function(l){D(a,l);var h=H(a);function a(){var c;return L(this,a),c=h.apply(this,arguments),c.channels={},c}return R(a,[{key:"connect",value:function(){typeof this.options.client<"u"?this.pusher=this.options.client:this.options.Pusher?this.pusher=new this.options.Pusher(this.options.key,this.options):this.pusher=new Pusher(this.options.key,this.options)}},{key:"signin",value:function(){this.pusher.signin()}},{key:"listen",value:function(s,f,d){return this.channel(s).listen(f,d)}},{key:"channel",value:function(s){return this.channels[s]||(this.channels[s]=new Lt(this.pusher,s,this.options)),this.channels[s]}},{key:"privateChannel",value:function(s){return this.channels["private-"+s]||(this.channels["private-"+s]=new ve(this.pusher,"private-"+s,this.options)),this.channels["private-"+s]}},{key:"encryptedPrivateChannel",value:function(s){return this.channels["private-encrypted-"+s]||(this.channels["private-encrypted-"+s]=new qi(this.pusher,"private-encrypted-"+s,this.options)),this.channels["private-encrypted-"+s]}},{key:"presenceChannel",value:function(s){return this.channels["presence-"+s]||(this.channels["presence-"+s]=new Ui(this.pusher,"presence-"+s,this.options)),this.channels["presence-"+s]}},{key:"leave",value:function(s){var f=this,d=[s,"private-"+s,"private-encrypted-"+s,"presence-"+s];d.forEach(function(N,P){f.leaveChannel(N)})}},{key:"leaveChannel",value:function(s){this.channels[s]&&(this.channels[s].unsubscribe(),delete this.channels[s])}},{key:"socketId",value:function(){return this.pusher.connection.socket_id}},{key:"disconnect",value:function(){this.pusher.disconnect()}}]),a})(Rt),pe=(function(l){D(a,l);var h=H(a);function a(){var c;return L(this,a),c=h.apply(this,arguments),c.channels={},c}return R(a,[{key:"connect",value:function(){var s=this,f=this.getSocketIO();return this.socket=f(this.options.host,this.options),this.socket.on("reconnect",function(){Object.values(s.channels).forEach(function(d){d.subscribe()})}),this.socket}},{key:"getSocketIO",value:function(){if(typeof this.options.client<"u")return this.options.client;if(typeof io<"u")return io;throw new Error("Socket.io client not found. Should be globally available or passed via options.client")}},{key:"listen",value:function(s,f,d){return this.channel(s).listen(f,d)}},{key:"channel",value:function(s){return this.channels[s]||(this.channels[s]=new ye(this.socket,s,this.options)),this.channels[s]}},{key:"privateChannel",value:function(s){return this.channels["private-"+s]||(this.channels["private-"+s]=new ge(this.socket,"private-"+s,this.options)),this.channels["private-"+s]}},{key:"presenceChannel",value:function(s){return this.channels["presence-"+s]||(this.channels["presence-"+s]=new Di(this.socket,"presence-"+s,this.options)),this.channels["presence-"+s]}},{key:"leave",value:function(s){var f=this,d=[s,"private-"+s,"presence-"+s];d.forEach(function(N){f.leaveChannel(N)})}},{key:"leaveChannel",value:function(s){this.channels[s]&&(this.channels[s].unsubscribe(),delete this.channels[s])}},{key:"socketId",value:function(){return this.socket.id}},{key:"disconnect",value:function(){this.socket.disconnect()}}]),a})(Rt),zi=(function(l){D(a,l);var h=H(a);function a(){var c;return L(this,a),c=h.apply(this,arguments),c.channels={},c}return R(a,[{key:"connect",value:function(){}},{key:"listen",value:function(s,f,d){return new dt}},{key:"channel",value:function(s){return new dt}},{key:"privateChannel",value:function(s){return new _e}},{key:"encryptedPrivateChannel",value:function(s){return new Hi}},{key:"presenceChannel",value:function(s){return new Mi}},{key:"leave",value:function(s){}},{key:"leaveChannel",value:function(s){}},{key:"socketId",value:function(){return"fake-socket-id"}},{key:"disconnect",value:function(){}}]),a})(Rt),be=(function(){function l(h){L(this,l),this.options=h,this.connect(),this.options.withoutInterceptors||this.registerInterceptors()}return R(l,[{key:"channel",value:function(a){return this.connector.channel(a)}},{key:"connect",value:function(){if(this.options.broadcaster=="reverb")this.connector=new fe(at(at({},this.options),{cluster:""}));else if(this.options.broadcaster=="pusher")this.connector=new fe(this.options);else if(this.options.broadcaster=="socket.io")this.connector=new pe(this.options);else if(this.options.broadcaster=="null")this.connector=new zi(this.options);else if(typeof this.options.broadcaster=="function"&&Ni(this.options.broadcaster))this.connector=new this.options.broadcaster(this.options);else throw new Error("Broadcaster ".concat(st(this.options.broadcaster)," ").concat(this.options.broadcaster," is not supported."))}},{key:"disconnect",value:function(){this.connector.disconnect()}},{key:"join",value:function(a){return this.connector.presenceChannel(a)}},{key:"leave",value:function(a){this.connector.leave(a)}},{key:"leaveChannel",value:function(a){this.connector.leaveChannel(a)}},{key:"leaveAllChannels",value:function(){for(var a in this.connector.channels)this.leaveChannel(a)}},{key:"listen",value:function(a,c,s){return this.connector.listen(a,c,s)}},{key:"private",value:function(a){return this.connector.privateChannel(a)}},{key:"encryptedPrivate",value:function(a){if(this.connector instanceof pe)throw new Error("Broadcaster ".concat(st(this.options.broadcaster)," ").concat(this.options.broadcaster," does not support encrypted private channels."));return this.connector.encryptedPrivateChannel(a)}},{key:"socketId",value:function(){return this.connector.socketId()}},{key:"registerInterceptors",value:function(){typeof Vue=="function"&&Vue.http&&this.registerVueRequestInterceptor(),typeof axios=="function"&&this.registerAxiosRequestInterceptor(),typeof jQuery=="function"&&this.registerjQueryAjaxSetup(),(typeof Turbo>"u"?"undefined":st(Turbo))==="object"&&this.registerTurboRequestInterceptor()}},{key:"registerVueRequestInterceptor",value:function(){var a=this;Vue.http.interceptors.push(function(c,s){a.socketId()&&c.headers.set("X-Socket-ID",a.socketId()),s()})}},{key:"registerAxiosRequestInterceptor",value:function(){var a=this;axios.interceptors.request.use(function(c){return a.socketId()&&(c.headers["X-Socket-Id"]=a.socketId()),c})}},{key:"registerjQueryAjaxSetup",value:function(){var a=this;typeof jQuery.ajax<"u"&&jQuery.ajaxPrefilter(function(c,s,f){a.socketId()&&f.setRequestHeader("X-Socket-Id",a.socketId())})}},{key:"registerTurboRequestInterceptor",value:function(){var a=this;document.addEventListener("turbo:before-fetch-request",function(c){c.detail.fetchOptions.headers["X-Socket-Id"]=a.socketId()})}}]),l})();var we=Li(me(),1);window.EchoFactory=be;window.Pusher=we.default;})(); +/*! Bundled license information: + +pusher-js/dist/web/pusher.js: + (*! + * Pusher JavaScript Library v7.6.0 + * https://pusher.com/ + * + * Copyright 2020, Pusher + * Released under the MIT licence. + *) +*/ diff --git a/public/js/filament/forms/components/checkbox-list.js b/public/js/filament/forms/components/checkbox-list.js new file mode 100644 index 0000000..992c9f7 --- /dev/null +++ b/public/js/filament/forms/components/checkbox-list.js @@ -0,0 +1 @@ +function c({livewireId:s}){return{areAllCheckboxesChecked:!1,checkboxListOptions:[],search:"",unsubscribeLivewireHook:null,visibleCheckboxListOptions:[],init(){this.checkboxListOptions=Array.from(this.$root.querySelectorAll(".fi-fo-checkbox-list-option")),this.updateVisibleCheckboxListOptions(),this.$nextTick(()=>{this.checkIfAllCheckboxesAreChecked()}),this.unsubscribeLivewireHook=Livewire.interceptMessage(({message:e,onSuccess:t})=>{t(()=>{this.$nextTick(()=>{e.component.id===s&&(this.checkboxListOptions=Array.from(this.$root.querySelectorAll(".fi-fo-checkbox-list-option")),this.updateVisibleCheckboxListOptions(),this.checkIfAllCheckboxesAreChecked())})})}),this.$watch("search",()=>{this.updateVisibleCheckboxListOptions(),this.checkIfAllCheckboxesAreChecked()})},checkIfAllCheckboxesAreChecked(){this.areAllCheckboxesChecked=this.visibleCheckboxListOptions.length===this.visibleCheckboxListOptions.filter(e=>e.querySelector("input[type=checkbox]:checked, input[type=checkbox]:disabled")).length},toggleAllCheckboxes(){this.checkIfAllCheckboxesAreChecked();let e=!this.areAllCheckboxesChecked;this.visibleCheckboxListOptions.forEach(t=>{let i=t.querySelector("input[type=checkbox]");i.disabled||i.checked!==e&&(i.checked=e,i.dispatchEvent(new Event("change")))}),this.areAllCheckboxesChecked=e},updateVisibleCheckboxListOptions(){this.visibleCheckboxListOptions=this.checkboxListOptions.filter(e=>["",null,void 0].includes(this.search)||e.querySelector(".fi-fo-checkbox-list-option-label")?.innerText.toLowerCase().includes(this.search.toLowerCase())?!0:e.querySelector(".fi-fo-checkbox-list-option-description")?.innerText.toLowerCase().includes(this.search.toLowerCase()))},destroy(){this.unsubscribeLivewireHook?.()}}}export{c as default}; diff --git a/public/js/filament/forms/components/code-editor.js b/public/js/filament/forms/components/code-editor.js new file mode 100644 index 0000000..9bee207 --- /dev/null +++ b/public/js/filament/forms/components/code-editor.js @@ -0,0 +1,38 @@ +var Ms=[],Xh=[];(()=>{let O="lc,34,7n,7,7b,19,,,,2,,2,,,20,b,1c,l,g,,2t,7,2,6,2,2,,4,z,,u,r,2j,b,1m,9,9,,o,4,,9,,3,,5,17,3,3b,f,,w,1j,,,,4,8,4,,3,7,a,2,t,,1m,,,,2,4,8,,9,,a,2,q,,2,2,1l,,4,2,4,2,2,3,3,,u,2,3,,b,2,1l,,4,5,,2,4,,k,2,m,6,,,1m,,,2,,4,8,,7,3,a,2,u,,1n,,,,c,,9,,14,,3,,1l,3,5,3,,4,7,2,b,2,t,,1m,,2,,2,,3,,5,2,7,2,b,2,s,2,1l,2,,,2,4,8,,9,,a,2,t,,20,,4,,2,3,,,8,,29,,2,7,c,8,2q,,2,9,b,6,22,2,r,,,,,,1j,e,,5,,2,5,b,,10,9,,2u,4,,6,,2,2,2,p,2,4,3,g,4,d,,2,2,6,,f,,jj,3,qa,3,t,3,t,2,u,2,1s,2,,7,8,,2,b,9,,19,3,3b,2,y,,3a,3,4,2,9,,6,3,63,2,2,,1m,,,7,,,,,2,8,6,a,2,,1c,h,1r,4,1c,7,,,5,,14,9,c,2,w,4,2,2,,3,1k,,,2,3,,,3,1m,8,2,2,48,3,,d,,7,4,,6,,3,2,5i,1m,,5,ek,,5f,x,2da,3,3x,,2o,w,fe,6,2x,2,n9w,4,,a,w,2,28,2,7k,,3,,4,,p,2,5,,47,2,q,i,d,,12,8,p,b,1a,3,1c,,2,4,2,2,13,,1v,6,2,2,2,2,c,,8,,1b,,1f,,,3,2,2,5,2,,,16,2,8,,6m,,2,,4,,fn4,,kh,g,g,g,a6,2,gt,,6a,,45,5,1ae,3,,2,5,4,14,3,4,,4l,2,fx,4,ar,2,49,b,4w,,1i,f,1k,3,1d,4,2,2,1x,3,10,5,,8,1q,,c,2,1g,9,a,4,2,,2n,3,2,,,2,6,,4g,,3,8,l,2,1l,2,,,,,m,,e,7,3,5,5f,8,2,3,,,n,,29,,2,6,,,2,,,2,,2,6j,,2,4,6,2,,2,r,2,2d,8,2,,,2,2y,,,,2,6,,,2t,3,2,4,,5,77,9,,2,6t,,a,2,,,4,,40,4,2,2,4,,w,a,14,6,2,4,8,,9,6,2,3,1a,d,,2,ba,7,,6,,,2a,m,2,7,,2,,2,3e,6,3,,,2,,7,,,20,2,3,,,,9n,2,f0b,5,1n,7,t4,,1r,4,29,,f5k,2,43q,,,3,4,5,8,8,2,7,u,4,44,3,1iz,1j,4,1e,8,,e,,m,5,,f,11s,7,,h,2,7,,2,,5,79,7,c5,4,15s,7,31,7,240,5,gx7k,2o,3k,6o".split(",").map(e=>e?parseInt(e,36):1);for(let e=0,t=0;e>1;if(O=Xh[i])e=i+1;else return!0;if(e==t)return!1}}function gh(O){return O>=127462&&O<=127487}var Ph=8205;function Th(O,e,t=!0,i=!0){return(t?bh:Ug)(O,e,i)}function bh(O,e,t){if(e==O.length)return e;e&&yh(O.charCodeAt(e))&&xh(O.charCodeAt(e-1))&&e--;let i=Ls(O,e);for(e+=Sh(i);e=0&&gh(Ls(O,s));)n++,s-=2;if(n%2==0)break;e+=2}else break}return e}function Ug(O,e,t){for(;e>0;){let i=bh(O,e-2,t);if(i=56320&&O<57344}function xh(O){return O>=55296&&O<56320}function Sh(O){return O<65536?1:2}var E=class O{lineAt(e){if(e<0||e>this.length)throw new RangeError(`Invalid position ${e} in document of length ${this.length}`);return this.lineInner(e,!1,1,0)}line(e){if(e<1||e>this.lines)throw new RangeError(`Invalid line number ${e} in ${this.lines}-line document`);return this.lineInner(e,!0,1,0)}replace(e,t,i){[e,t]=NO(this,e,t);let r=[];return this.decompose(0,e,r,2),i.length&&i.decompose(0,i.length,r,3),this.decompose(t,this.length,r,1),DO.from(r,this.length-(t-e)+i.length)}append(e){return this.replace(this.length,this.length,e)}slice(e,t=this.length){[e,t]=NO(this,e,t);let i=[];return this.decompose(e,t,i,0),DO.from(i,t-e)}eq(e){if(e==this)return!0;if(e.length!=this.length||e.lines!=this.lines)return!1;let t=this.scanIdentical(e,1),i=this.length-this.scanIdentical(e,-1),r=new $O(this),n=new $O(e);for(let s=t,a=t;;){if(r.next(s),n.next(s),s=0,r.lineBreak!=n.lineBreak||r.done!=n.done||r.value!=n.value)return!1;if(a+=r.value.length,r.done||a>=i)return!0}}iter(e=1){return new $O(this,e)}iterRange(e,t=this.length){return new Dr(this,e,t)}iterLines(e,t){let i;if(e==null)i=this.iter();else{t==null&&(t=this.lines+1);let r=this.line(e).from;i=this.iterRange(r,Math.max(r,t==this.lines+1?this.length:t<=1?0:this.line(t-1).to))}return new Ir(i)}toString(){return this.sliceString(0)}toJSON(){let e=[];return this.flatten(e),e}constructor(){}static of(e){if(e.length==0)throw new RangeError("A document must have at least one line");return e.length==1&&!e[0]?O.empty:e.length<=32?new Ae(e):DO.from(Ae.split(e,[]))}},Ae=class O extends E{constructor(e,t=Wg(e)){super(),this.text=e,this.length=t}get lines(){return this.text.length}get children(){return null}lineInner(e,t,i,r){for(let n=0;;n++){let s=this.text[n],a=r+s.length;if((t?i:a)>=e)return new Is(r,a,i,s);r=a+1,i++}}decompose(e,t,i,r){let n=e<=0&&t>=this.length?this:new O(kh(this.text,e,t),Math.min(t,this.length)-Math.max(0,e));if(r&1){let s=i.pop(),a=Mr(n.text,s.text.slice(),0,n.length);if(a.length<=32)i.push(new O(a,s.length+n.length));else{let o=a.length>>1;i.push(new O(a.slice(0,o)),new O(a.slice(o)))}}else i.push(n)}replace(e,t,i){if(!(i instanceof O))return super.replace(e,t,i);[e,t]=NO(this,e,t);let r=Mr(this.text,Mr(i.text,kh(this.text,0,e)),t),n=this.length+i.length-(t-e);return r.length<=32?new O(r,n):DO.from(O.split(r,[]),n)}sliceString(e,t=this.length,i=` +`){[e,t]=NO(this,e,t);let r="";for(let n=0,s=0;n<=t&&se&&s&&(r+=i),en&&(r+=a.slice(Math.max(0,e-n),t-n)),n=o+1}return r}flatten(e){for(let t of this.text)e.push(t)}scanIdentical(){return 0}static split(e,t){let i=[],r=-1;for(let n of e)i.push(n),r+=n.length+1,i.length==32&&(t.push(new O(i,r)),i=[],r=-1);return r>-1&&t.push(new O(i,r)),t}},DO=class O extends E{constructor(e,t){super(),this.children=e,this.length=t,this.lines=0;for(let i of e)this.lines+=i.lines}lineInner(e,t,i,r){for(let n=0;;n++){let s=this.children[n],a=r+s.length,o=i+s.lines-1;if((t?o:a)>=e)return s.lineInner(e,t,i,r);r=a+1,i=o+1}}decompose(e,t,i,r){for(let n=0,s=0;s<=t&&n=s){let l=r&((s<=e?1:0)|(o>=t?2:0));s>=e&&o<=t&&!l?i.push(a):a.decompose(e-s,t-s,i,l)}s=o+1}}replace(e,t,i){if([e,t]=NO(this,e,t),i.lines=n&&t<=a){let o=s.replace(e-n,t-n,i),l=this.lines-s.lines+o.lines;if(o.lines>4&&o.lines>l>>6){let c=this.children.slice();return c[r]=o,new O(c,this.length-(t-e)+i.length)}return super.replace(n,a,o)}n=a+1}return super.replace(e,t,i)}sliceString(e,t=this.length,i=` +`){[e,t]=NO(this,e,t);let r="";for(let n=0,s=0;ne&&n&&(r+=i),es&&(r+=a.sliceString(e-s,t-s,i)),s=o+1}return r}flatten(e){for(let t of this.children)t.flatten(e)}scanIdentical(e,t){if(!(e instanceof O))return 0;let i=0,[r,n,s,a]=t>0?[0,0,this.children.length,e.children.length]:[this.children.length-1,e.children.length-1,-1,-1];for(;;r+=t,n+=t){if(r==s||n==a)return i;let o=this.children[r],l=e.children[n];if(o!=l)return i+o.scanIdentical(l,t);i+=o.length+1}}static from(e,t=e.reduce((i,r)=>i+r.length+1,-1)){let i=0;for(let u of e)i+=u.lines;if(i<32){let u=[];for(let Q of e)Q.flatten(u);return new Ae(u,t)}let r=Math.max(32,i>>5),n=r<<1,s=r>>1,a=[],o=0,l=-1,c=[];function h(u){let Q;if(u.lines>n&&u instanceof O)for(let $ of u.children)h($);else u.lines>s&&(o>s||!o)?(f(),a.push(u)):u instanceof Ae&&o&&(Q=c[c.length-1])instanceof Ae&&u.lines+Q.lines<=32?(o+=u.lines,l+=u.length+1,c[c.length-1]=new Ae(Q.text.concat(u.text),Q.length+1+u.length)):(o+u.lines>r&&f(),o+=u.lines,l+=u.length+1,c.push(u))}function f(){o!=0&&(a.push(c.length==1?c[0]:O.from(c,l)),l=-1,o=c.length=0)}for(let u of e)h(u);return f(),a.length==1?a[0]:new O(a,t)}};E.empty=new Ae([""],0);function Wg(O){let e=-1;for(let t of O)e+=t.length+1;return e}function Mr(O,e,t=0,i=1e9){for(let r=0,n=0,s=!0;n=t&&(o>i&&(a=a.slice(0,i-r)),r0?1:(e instanceof Ae?e.text.length:e.children.length)<<1]}nextInner(e,t){for(this.done=this.lineBreak=!1;;){let i=this.nodes.length-1,r=this.nodes[i],n=this.offsets[i],s=n>>1,a=r instanceof Ae?r.text.length:r.children.length;if(s==(t>0?a:0)){if(i==0)return this.done=!0,this.value="",this;t>0&&this.offsets[i-1]++,this.nodes.pop(),this.offsets.pop()}else if((n&1)==(t>0?0:1)){if(this.offsets[i]+=t,e==0)return this.lineBreak=!0,this.value=` +`,this;e--}else if(r instanceof Ae){let o=r.text[s+(t<0?-1:0)];if(this.offsets[i]+=t,o.length>Math.max(0,e))return this.value=e==0?o:t>0?o.slice(e):o.slice(0,o.length-e),this;e-=o.length}else{let o=r.children[s+(t<0?-1:0)];e>o.length?(e-=o.length,this.offsets[i]+=t):(t<0&&this.offsets[i]--,this.nodes.push(o),this.offsets.push(t>0?1:(o instanceof Ae?o.text.length:o.children.length)<<1))}}}next(e=0){return e<0&&(this.nextInner(-e,-this.dir),e=this.value.length),this.nextInner(e,this.dir)}},Dr=class{constructor(e,t,i){this.value="",this.done=!1,this.cursor=new $O(e,t>i?-1:1),this.pos=t>i?e.length:0,this.from=Math.min(t,i),this.to=Math.max(t,i)}nextInner(e,t){if(t<0?this.pos<=this.from:this.pos>=this.to)return this.value="",this.done=!0,this;e+=Math.max(0,t<0?this.pos-this.to:this.from-this.pos);let i=t<0?this.pos-this.from:this.to-this.pos;e>i&&(e=i),i-=e;let{value:r}=this.cursor.next(e);return this.pos+=(r.length+e)*t,this.value=r.length<=i?r:t<0?r.slice(r.length-i):r.slice(0,i),this.done=!this.value,this}next(e=0){return e<0?e=Math.max(e,this.from-this.pos):e>0&&(e=Math.min(e,this.to-this.pos)),this.nextInner(e,this.cursor.dir)}get lineBreak(){return this.cursor.lineBreak&&this.value!=""}},Ir=class{constructor(e){this.inner=e,this.afterBreak=!0,this.value="",this.done=!1}next(e=0){let{done:t,lineBreak:i,value:r}=this.inner.next(e);return t&&this.afterBreak?(this.value="",this.afterBreak=!1):t?(this.done=!0,this.value=""):i?this.afterBreak?this.value="":(this.afterBreak=!0,this.next()):(this.value=r,this.afterBreak=!1),this}get lineBreak(){return!1}};typeof Symbol<"u"&&(E.prototype[Symbol.iterator]=function(){return this.iter()},$O.prototype[Symbol.iterator]=Dr.prototype[Symbol.iterator]=Ir.prototype[Symbol.iterator]=function(){return this});var Is=class{constructor(e,t,i,r){this.from=e,this.to=t,this.number=i,this.text=r}get length(){return this.to-this.from}};function NO(O,e,t){return e=Math.max(0,Math.min(O.length,e)),[e,Math.max(e,Math.min(O.length,t))]}function fe(O,e,t=!0,i=!0){return Th(O,e,t,i)}function jg(O){return O>=56320&&O<57344}function Cg(O){return O>=55296&&O<56320}function Se(O,e){let t=O.charCodeAt(e);if(!Cg(t)||e+1==O.length)return t;let i=O.charCodeAt(e+1);return jg(i)?(t-55296<<10)+(i-56320)+65536:t}function Ri(O){return O<=65535?String.fromCharCode(O):(O-=65536,String.fromCharCode((O>>10)+55296,(O&1023)+56320))}function Me(O){return O<65536?1:2}var Bs=/\r\n?|\n/,pe=(function(O){return O[O.Simple=0]="Simple",O[O.TrackDel=1]="TrackDel",O[O.TrackBefore=2]="TrackBefore",O[O.TrackAfter=3]="TrackAfter",O})(pe||(pe={})),vt=class O{constructor(e){this.sections=e}get length(){let e=0;for(let t=0;te)return n+(e-r);n+=a}else{if(i!=pe.Simple&&l>=e&&(i==pe.TrackDel&&re||i==pe.TrackBefore&&re))return null;if(l>e||l==e&&t<0&&!a)return e==r||t<0?n:n+o;n+=o}r=l}if(e>r)throw new RangeError(`Position ${e} is out of range for changeset of length ${r}`);return n}touchesRange(e,t=e){for(let i=0,r=0;i=0&&r<=t&&a>=e)return rt?"cover":!0;r=a}return!1}toString(){let e="";for(let t=0;t=0?":"+r:"")}return e}toJSON(){return this.sections}static fromJSON(e){if(!Array.isArray(e)||e.length%2||e.some(t=>typeof t!="number"))throw new RangeError("Invalid JSON representation of ChangeDesc");return new O(e)}static create(e){return new O(e)}},Ze=class O extends vt{constructor(e,t){super(e),this.inserted=t}apply(e){if(this.length!=e.length)throw new RangeError("Applying change set to a document with the wrong length");return Ns(this,(t,i,r,n,s)=>e=e.replace(r,r+(i-t),s),!1),e}mapDesc(e,t=!1){return Fs(this,e,t,!0)}invert(e){let t=this.sections.slice(),i=[];for(let r=0,n=0;r=0){t[r]=a,t[r+1]=s;let o=r>>1;for(;i.length0&&Mt(i,t,n.text),n.forward(c),a+=c}let l=e[s++];for(;a>1].toJSON()))}return e}static of(e,t,i){let r=[],n=[],s=0,a=null;function o(c=!1){if(!c&&!r.length)return;sf||h<0||f>t)throw new RangeError(`Invalid change range ${h} to ${f} (in doc of length ${t})`);let Q=u?typeof u=="string"?E.of(u.split(i||Bs)):u:E.empty,$=Q.length;if(h==f&&$==0)return;hs&&ye(r,h-s,-1),ye(r,f-h,$),Mt(n,r,Q),s=f}}return l(e),o(!a),a}static empty(e){return new O(e?[e,-1]:[],[])}static fromJSON(e){if(!Array.isArray(e))throw new RangeError("Invalid JSON representation of ChangeSet");let t=[],i=[];for(let r=0;ra&&typeof s!="string"))throw new RangeError("Invalid JSON representation of ChangeSet");if(n.length==1)t.push(n[0],0);else{for(;i.length=0&&t<=0&&t==O[r+1]?O[r]+=e:r>=0&&e==0&&O[r]==0?O[r+1]+=t:i?(O[r]+=e,O[r+1]+=t):O.push(e,t)}function Mt(O,e,t){if(t.length==0)return;let i=e.length-2>>1;if(i>1])),!(t||s==O.sections.length||O.sections[s+1]<0);)a=O.sections[s++],o=O.sections[s++];e(r,l,n,c,h),r=l,n=c}}}function Fs(O,e,t,i=!1){let r=[],n=i?[]:null,s=new pO(O),a=new pO(e);for(let o=-1;;){if(s.done&&a.len||a.done&&s.len)throw new Error("Mismatched change set lengths");if(s.ins==-1&&a.ins==-1){let l=Math.min(s.len,a.len);ye(r,l,-1),s.forward(l),a.forward(l)}else if(a.ins>=0&&(s.ins<0||o==s.i||s.off==0&&(a.len=0&&o=0){let l=0,c=s.len;for(;c;)if(a.ins==-1){let h=Math.min(c,a.len);l+=h,c-=h,a.forward(h)}else if(a.ins==0&&a.leno||s.ins>=0&&s.len>o)&&(a||i.length>l),n.forward2(o),s.forward(o)}}}}var pO=class{constructor(e){this.set=e,this.i=0,this.next()}next(){let{sections:e}=this.set;this.i>1;return t>=e.length?E.empty:e[t]}textBit(e){let{inserted:t}=this.set,i=this.i-2>>1;return i>=t.length&&!e?E.empty:t[i].slice(this.off,e==null?void 0:this.off+e)}forward(e){e==this.len?this.next():(this.len-=e,this.off+=e)}forward2(e){this.ins==-1?this.forward(e):e==this.ins?this.next():(this.ins-=e,this.off+=e)}},MO=class O{constructor(e,t,i){this.from=e,this.to=t,this.flags=i}get anchor(){return this.flags&32?this.to:this.from}get head(){return this.flags&32?this.from:this.to}get empty(){return this.from==this.to}get assoc(){return this.flags&8?-1:this.flags&16?1:0}get bidiLevel(){let e=this.flags&7;return e==7?null:e}get goalColumn(){let e=this.flags>>6;return e==16777215?void 0:e}map(e,t=-1){let i,r;return this.empty?i=r=e.mapPos(this.from,t):(i=e.mapPos(this.from,1),r=e.mapPos(this.to,-1)),i==this.from&&r==this.to?this:new O(i,r,this.flags)}extend(e,t=e){if(e<=this.anchor&&t>=this.anchor)return S.range(e,t);let i=Math.abs(e-this.anchor)>Math.abs(t-this.anchor)?e:t;return S.range(this.anchor,i)}eq(e,t=!1){return this.anchor==e.anchor&&this.head==e.head&&(!t||!this.empty||this.assoc==e.assoc)}toJSON(){return{anchor:this.anchor,head:this.head}}static fromJSON(e){if(!e||typeof e.anchor!="number"||typeof e.head!="number")throw new RangeError("Invalid JSON representation for SelectionRange");return S.range(e.anchor,e.head)}static create(e,t,i){return new O(e,t,i)}},S=class O{constructor(e,t){this.ranges=e,this.mainIndex=t}map(e,t=-1){return e.empty?this:O.create(this.ranges.map(i=>i.map(e,t)),this.mainIndex)}eq(e,t=!1){if(this.ranges.length!=e.ranges.length||this.mainIndex!=e.mainIndex)return!1;for(let i=0;ie.toJSON()),main:this.mainIndex}}static fromJSON(e){if(!e||!Array.isArray(e.ranges)||typeof e.main!="number"||e.main>=e.ranges.length)throw new RangeError("Invalid JSON representation for EditorSelection");return new O(e.ranges.map(t=>MO.fromJSON(t)),e.main)}static single(e,t=e){return new O([O.range(e,t)],0)}static create(e,t=0){if(e.length==0)throw new RangeError("A selection needs at least one range");for(let i=0,r=0;re?8:0)|n)}static normalized(e,t=0){let i=e[t];e.sort((r,n)=>r.from-n.from),t=e.indexOf(i);for(let r=1;rn.head?O.range(o,a):O.range(a,o))}}return new O(e,t)}};function Rh(O,e){for(let t of O.ranges)if(t.to>e)throw new RangeError("Selection points outside of document")}var sa=0,Z=class O{constructor(e,t,i,r,n){this.combine=e,this.compareInput=t,this.compare=i,this.isStatic=r,this.id=sa++,this.default=e([]),this.extensions=typeof n=="function"?n(this):n}get reader(){return this}static define(e={}){return new O(e.combine||(t=>t),e.compareInput||((t,i)=>t===i),e.compare||(e.combine?(t,i)=>t===i:aa),!!e.static,e.enables)}of(e){return new IO([],this,0,e)}compute(e,t){if(this.isStatic)throw new Error("Can't compute a static facet");return new IO(e,this,1,t)}computeN(e,t){if(this.isStatic)throw new Error("Can't compute a static facet");return new IO(e,this,2,t)}from(e,t){return t||(t=i=>i),this.compute([e],i=>t(i.field(e)))}};function aa(O,e){return O==e||O.length==e.length&&O.every((t,i)=>t===e[i])}var IO=class{constructor(e,t,i,r){this.dependencies=e,this.facet=t,this.type=i,this.value=r,this.id=sa++}dynamicSlot(e){var t;let i=this.value,r=this.facet.compareInput,n=this.id,s=e[n]>>1,a=this.type==2,o=!1,l=!1,c=[];for(let h of this.dependencies)h=="doc"?o=!0:h=="selection"?l=!0:(((t=e[h.id])!==null&&t!==void 0?t:1)&1)==0&&c.push(e[h.id]);return{create(h){return h.values[s]=i(h),1},update(h,f){if(o&&f.docChanged||l&&(f.docChanged||f.selection)||Hs(h,c)){let u=i(h);if(a?!wh(u,h.values[s],r):!r(u,h.values[s]))return h.values[s]=u,1}return 0},reconfigure:(h,f)=>{let u,Q=f.config.address[n];if(Q!=null){let $=Fr(f,Q);if(this.dependencies.every(p=>p instanceof Z?f.facet(p)===h.facet(p):p instanceof ce?f.field(p,!1)==h.field(p,!1):!0)||(a?wh(u=i(h),$,r):r(u=i(h),$)))return h.values[s]=$,0}else u=i(h);return h.values[s]=u,1}}}};function wh(O,e,t){if(O.length!=e.length)return!1;for(let i=0;iO[o.id]),r=t.map(o=>o.type),n=i.filter(o=>!(o&1)),s=O[e.id]>>1;function a(o){let l=[];for(let c=0;ci===r),e);return e.provide&&(t.provides=e.provide(t)),t}create(e){let t=e.facet(Er).find(i=>i.field==this);return(t?.create||this.createF)(e)}slot(e){let t=e[this.id]>>1;return{create:i=>(i.values[t]=this.create(i),1),update:(i,r)=>{let n=i.values[t],s=this.updateF(n,r);return this.compareF(n,s)?0:(i.values[t]=s,1)},reconfigure:(i,r)=>{let n=i.facet(Er),s=r.facet(Er),a;return(a=n.find(o=>o.field==this))&&a!=s.find(o=>o.field==this)?(i.values[t]=a.create(i),1):r.config.address[this.id]!=null?(i.values[t]=r.field(this),0):(i.values[t]=this.create(i),1)}}}init(e){return[this,Er.of({field:this,create:e})]}get extension(){return this}},uO={lowest:4,low:3,default:2,high:1,highest:0};function wi(O){return e=>new Br(e,O)}var ze={highest:wi(uO.highest),high:wi(uO.high),default:wi(uO.default),low:wi(uO.low),lowest:wi(uO.lowest)},Br=class{constructor(e,t){this.inner=e,this.prec=t}},FO=class O{of(e){return new vi(this,e)}reconfigure(e){return O.reconfigure.of({compartment:this,extension:e})}get(e){return e.config.compartments.get(this)}},vi=class{constructor(e,t){this.compartment=e,this.inner=t}},Nr=class O{constructor(e,t,i,r,n,s){for(this.base=e,this.compartments=t,this.dynamicSlots=i,this.address=r,this.staticValues=n,this.facets=s,this.statusTemplate=[];this.statusTemplate.length>1]}static resolve(e,t,i){let r=[],n=Object.create(null),s=new Map;for(let f of Eg(e,t,s))f instanceof ce?r.push(f):(n[f.facet.id]||(n[f.facet.id]=[])).push(f);let a=Object.create(null),o=[],l=[];for(let f of r)a[f.id]=l.length<<1,l.push(u=>f.slot(u));let c=i?.config.facets;for(let f in n){let u=n[f],Q=u[0].facet,$=c&&c[f]||[];if(u.every(p=>p.type==0))if(a[Q.id]=o.length<<1|1,aa($,u))o.push(i.facet(Q));else{let p=Q.combine(u.map(m=>m.value));o.push(i&&Q.compare(p,i.facet(Q))?i.facet(Q):p)}else{for(let p of u)p.type==0?(a[p.id]=o.length<<1|1,o.push(p.value)):(a[p.id]=l.length<<1,l.push(m=>p.dynamicSlot(m)));a[Q.id]=l.length<<1,l.push(p=>Gg(p,Q,u))}}let h=l.map(f=>f(a));return new O(e,s,h,a,o,n)}};function Eg(O,e,t){let i=[[],[],[],[],[]],r=new Map;function n(s,a){let o=r.get(s);if(o!=null){if(o<=a)return;let l=i[o].indexOf(s);l>-1&&i[o].splice(l,1),s instanceof vi&&t.delete(s.compartment)}if(r.set(s,a),Array.isArray(s))for(let l of s)n(l,a);else if(s instanceof vi){if(t.has(s.compartment))throw new RangeError("Duplicate use of compartment in extensions");let l=e.get(s.compartment)||s.inner;t.set(s.compartment,l),n(l,a)}else if(s instanceof Br)n(s.inner,s.prec);else if(s instanceof ce)i[a].push(s),s.provides&&n(s.provides,a);else if(s instanceof IO)i[a].push(s),s.facet.extensions&&n(s.facet.extensions,uO.default);else{let l=s.extension;if(!l)throw new Error(`Unrecognized extension value in extension set (${s}). This sometimes happens because multiple instances of @codemirror/state are loaded, breaking instanceof checks.`);n(l,a)}}return n(O,uO.default),i.reduce((s,a)=>s.concat(a))}function Zi(O,e){if(e&1)return 2;let t=e>>1,i=O.status[t];if(i==4)throw new Error("Cyclic dependency between fields and/or facets");if(i&2)return i;O.status[t]=4;let r=O.computeSlot(O,O.config.dynamicSlots[t]);return O.status[t]=2|r}function Fr(O,e){return e&1?O.config.staticValues[e>>1]:O.values[e>>1]}var Vh=Z.define(),Ks=Z.define({combine:O=>O.some(e=>e),static:!0}),qh=Z.define({combine:O=>O.length?O[0]:void 0,static:!0}),zh=Z.define(),Uh=Z.define(),Wh=Z.define(),jh=Z.define({combine:O=>O.length?O[0]:!1}),qe=class{constructor(e,t){this.type=e,this.value=t}static define(){return new Js}},Js=class{of(e){return new qe(this,e)}},ea=class{constructor(e){this.map=e}of(e){return new V(this,e)}},V=class O{constructor(e,t){this.type=e,this.value=t}map(e){let t=this.type.map(this.value,e);return t===void 0?void 0:t==this.value?this:new O(this.type,t)}is(e){return this.type==e}static define(e={}){return new ea(e.map||(t=>t))}static mapEffects(e,t){if(!e.length)return e;let i=[];for(let r of e){let n=r.map(t);n&&i.push(n)}return i}};V.reconfigure=V.define();V.appendConfig=V.define();var Qe=class O{constructor(e,t,i,r,n,s){this.startState=e,this.changes=t,this.selection=i,this.effects=r,this.annotations=n,this.scrollIntoView=s,this._doc=null,this._state=null,i&&Rh(i,t.newLength),n.some(a=>a.type==O.time)||(this.annotations=n.concat(O.time.of(Date.now())))}static create(e,t,i,r,n,s){return new O(e,t,i,r,n,s)}get newDoc(){return this._doc||(this._doc=this.changes.apply(this.startState.doc))}get newSelection(){return this.selection||this.startState.selection.map(this.changes)}get state(){return this._state||this.startState.applyTransaction(this),this._state}annotation(e){for(let t of this.annotations)if(t.type==e)return t.value}get docChanged(){return!this.changes.empty}get reconfigured(){return this.startState.config!=this.state.config}isUserEvent(e){let t=this.annotation(O.userEvent);return!!(t&&(t==e||t.length>e.length&&t.slice(0,e.length)==e&&t[e.length]=="."))}};Qe.time=qe.define();Qe.userEvent=qe.define();Qe.addToHistory=qe.define();Qe.remote=qe.define();function Ag(O,e){let t=[];for(let i=0,r=0;;){let n,s;if(i=O[i]))n=O[i++],s=O[i++];else if(r=0;r--){let n=i[r](O);n instanceof Qe?O=n:Array.isArray(n)&&n.length==1&&n[0]instanceof Qe?O=n[0]:O=Gh(e,BO(n),!1)}return O}function Mg(O){let e=O.startState,t=e.facet(Wh),i=O;for(let r=t.length-1;r>=0;r--){let n=t[r](O);n&&Object.keys(n).length&&(i=Ch(i,ta(e,n,O.changes.newLength),!0))}return i==O?O:Qe.create(e,O.changes,O.selection,i.effects,i.annotations,i.scrollIntoView)}var Dg=[];function BO(O){return O==null?Dg:Array.isArray(O)?O:[O]}var ee=(function(O){return O[O.Word=0]="Word",O[O.Space=1]="Space",O[O.Other=2]="Other",O})(ee||(ee={})),Ig=/[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/,Oa;try{Oa=new RegExp("[\\p{Alphabetic}\\p{Number}_]","u")}catch{}function Bg(O){if(Oa)return Oa.test(O);for(let e=0;e"\x80"&&(t.toUpperCase()!=t.toLowerCase()||Ig.test(t)))return!0}return!1}function Ng(O){return e=>{if(!/\S/.test(e))return ee.Space;if(Bg(e))return ee.Word;for(let t=0;t-1)return ee.Word;return ee.Other}}var I=class O{constructor(e,t,i,r,n,s){this.config=e,this.doc=t,this.selection=i,this.values=r,this.status=e.statusTemplate.slice(),this.computeSlot=n,s&&(s._state=this);for(let a=0;ar.set(l,o)),t=null),r.set(a.value.compartment,a.value.extension)):a.is(V.reconfigure)?(t=null,i=a.value):a.is(V.appendConfig)&&(t=null,i=BO(i).concat(a.value));let n;t?n=e.startState.values.slice():(t=Nr.resolve(i,r,this),n=new O(t,this.doc,this.selection,t.dynamicSlots.map(()=>null),(o,l)=>l.reconfigure(o,this),null).values);let s=e.startState.facet(Ks)?e.newSelection:e.newSelection.asSingle();new O(t,e.newDoc,s,n,(a,o)=>o.update(a,e),e)}replaceSelection(e){return typeof e=="string"&&(e=this.toText(e)),this.changeByRange(t=>({changes:{from:t.from,to:t.to,insert:e},range:S.cursor(t.from+e.length)}))}changeByRange(e){let t=this.selection,i=e(t.ranges[0]),r=this.changes(i.changes),n=[i.range],s=BO(i.effects);for(let a=1;as.spec.fromJSON(a,o)))}}return O.create({doc:e.doc,selection:S.fromJSON(e.selection),extensions:t.extensions?r.concat([t.extensions]):r})}static create(e={}){let t=Nr.resolve(e.extensions||[],new Map),i=e.doc instanceof E?e.doc:E.of((e.doc||"").split(t.staticFacet(O.lineSeparator)||Bs)),r=e.selection?e.selection instanceof S?e.selection:S.single(e.selection.anchor,e.selection.head):S.single(0);return Rh(r,i.length),t.staticFacet(Ks)||(r=r.asSingle()),new O(t,i,r,t.dynamicSlots.map(()=>null),(n,s)=>s.create(n),null)}get tabSize(){return this.facet(O.tabSize)}get lineBreak(){return this.facet(O.lineSeparator)||` +`}get readOnly(){return this.facet(jh)}phrase(e,...t){for(let i of this.facet(O.phrases))if(Object.prototype.hasOwnProperty.call(i,e)){e=i[e];break}return t.length&&(e=e.replace(/\$(\$|\d*)/g,(i,r)=>{if(r=="$")return"$";let n=+(r||1);return!n||n>t.length?i:t[n-1]})),e}languageDataAt(e,t,i=-1){let r=[];for(let n of this.facet(Vh))for(let s of n(this,t,i))Object.prototype.hasOwnProperty.call(s,e)&&r.push(s[e]);return r}charCategorizer(e){let t=this.languageDataAt("wordChars",e);return Ng(t.length?t[0]:"")}wordAt(e){let{text:t,from:i,length:r}=this.doc.lineAt(e),n=this.charCategorizer(e),s=e-i,a=e-i;for(;s>0;){let o=fe(t,s,!1);if(n(t.slice(o,s))!=ee.Word)break;s=o}for(;aO.length?O[0]:4});I.lineSeparator=qh;I.readOnly=jh;I.phrases=Z.define({compare(O,e){let t=Object.keys(O),i=Object.keys(e);return t.length==i.length&&t.every(r=>O[r]==e[r])}});I.languageData=Vh;I.changeFilter=zh;I.transactionFilter=Uh;I.transactionExtender=Wh;FO.reconfigure=V.define();function xe(O,e,t={}){let i={};for(let r of O)for(let n of Object.keys(r)){let s=r[n],a=i[n];if(a===void 0)i[n]=s;else if(!(a===s||s===void 0))if(Object.hasOwnProperty.call(t,n))i[n]=t[n](a,s);else throw new Error("Config merge conflict for field "+n)}for(let r in e)i[r]===void 0&&(i[r]=e[r]);return i}var tt=class{eq(e){return this==e}range(e,t=e){return Yi.create(e,t,this)}};tt.prototype.startSide=tt.prototype.endSide=0;tt.prototype.point=!1;tt.prototype.mapMode=pe.TrackDel;function oa(O,e){return O==e||O.constructor==e.constructor&&O.eq(e)}var Yi=class O{constructor(e,t,i){this.from=e,this.to=t,this.value=i}static create(e,t,i){return new O(e,t,i)}};function ia(O,e){return O.from-e.from||O.value.startSide-e.value.startSide}var ra=class O{constructor(e,t,i,r){this.from=e,this.to=t,this.value=i,this.maxPoint=r}get length(){return this.to[this.to.length-1]}findIndex(e,t,i,r=0){let n=i?this.to:this.from;for(let s=r,a=n.length;;){if(s==a)return s;let o=s+a>>1,l=n[o]-e||(i?this.value[o].endSide:this.value[o].startSide)-t;if(o==s)return l>=0?s:a;l>=0?a=o:s=o+1}}between(e,t,i,r){for(let n=this.findIndex(t,-1e9,!0),s=this.findIndex(i,1e9,!1,n);nu||f==u&&l.startSide>0&&l.endSide<=0)continue;(u-f||l.endSide-l.startSide)<0||(s<0&&(s=f),l.point&&(a=Math.max(a,u-f)),i.push(l),r.push(f-s),n.push(u-s))}return{mapped:i.length?new O(r,n,i,a):null,pos:s}}},M=class O{constructor(e,t,i,r){this.chunkPos=e,this.chunk=t,this.nextLayer=i,this.maxPoint=r}static create(e,t,i,r){return new O(e,t,i,r)}get length(){let e=this.chunk.length-1;return e<0?0:Math.max(this.chunkEnd(e),this.nextLayer.length)}get size(){if(this.isEmpty)return 0;let e=this.nextLayer.size;for(let t of this.chunk)e+=t.value.length;return e}chunkEnd(e){return this.chunkPos[e]+this.chunk[e].length}update(e){let{add:t=[],sort:i=!1,filterFrom:r=0,filterTo:n=this.length}=e,s=e.filter;if(t.length==0&&!s)return this;if(i&&(t=t.slice().sort(ia)),this.isEmpty)return t.length?O.of(t):this;let a=new Hr(this,null,-1).goto(0),o=0,l=[],c=new Le;for(;a.value||o=0){let h=t[o++];c.addInner(h.from,h.to,h.value)||l.push(h)}else a.rangeIndex==1&&a.chunkIndexthis.chunkEnd(a.chunkIndex)||na.to||n=n&&e<=n+s.length&&s.between(n,e-n,t-n,i)===!1)return}this.nextLayer.between(e,t,i)}}iter(e=0){return _i.from([this]).goto(e)}get isEmpty(){return this.nextLayer==this}static iter(e,t=0){return _i.from(e).goto(t)}static compare(e,t,i,r,n=-1){let s=e.filter(h=>h.maxPoint>0||!h.isEmpty&&h.maxPoint>=n),a=t.filter(h=>h.maxPoint>0||!h.isEmpty&&h.maxPoint>=n),o=Zh(s,a,i),l=new QO(s,o,n),c=new QO(a,o,n);i.iterGaps((h,f,u)=>vh(l,h,c,f,u,r)),i.empty&&i.length==0&&vh(l,0,c,0,0,r)}static eq(e,t,i=0,r){r==null&&(r=999999999);let n=e.filter(c=>!c.isEmpty&&t.indexOf(c)<0),s=t.filter(c=>!c.isEmpty&&e.indexOf(c)<0);if(n.length!=s.length)return!1;if(!n.length)return!0;let a=Zh(n,s),o=new QO(n,a,0).goto(i),l=new QO(s,a,0).goto(i);for(;;){if(o.to!=l.to||!na(o.active,l.active)||o.point&&(!l.point||!oa(o.point,l.point)))return!1;if(o.to>r)return!0;o.next(),l.next()}}static spans(e,t,i,r,n=-1){let s=new QO(e,null,n).goto(t),a=t,o=s.openStart;for(;;){let l=Math.min(s.to,i);if(s.point){let c=s.activeForPoint(s.to),h=s.pointFroma&&(r.span(a,l,s.active,o),o=s.openEnd(l));if(s.to>i)return o+(s.point&&s.to>i?1:0);a=s.to,s.next()}}static of(e,t=!1){let i=new Le;for(let r of e instanceof Yi?[e]:t?Fg(e):e)i.add(r.from,r.to,r.value);return i.finish()}static join(e){if(!e.length)return O.empty;let t=e[e.length-1];for(let i=e.length-2;i>=0;i--)for(let r=e[i];r!=O.empty;r=r.nextLayer)t=new O(r.chunkPos,r.chunk,t,Math.max(r.maxPoint,t.maxPoint));return t}};M.empty=new M([],[],null,-1);function Fg(O){if(O.length>1)for(let e=O[0],t=1;t0)return O.slice().sort(ia);e=i}return O}M.empty.nextLayer=M.empty;var Le=class O{finishChunk(e){this.chunks.push(new ra(this.from,this.to,this.value,this.maxPoint)),this.chunkPos.push(this.chunkStart),this.chunkStart=-1,this.setMaxPoint=Math.max(this.setMaxPoint,this.maxPoint),this.maxPoint=-1,e&&(this.from=[],this.to=[],this.value=[])}constructor(){this.chunks=[],this.chunkPos=[],this.chunkStart=-1,this.last=null,this.lastFrom=-1e9,this.lastTo=-1e9,this.from=[],this.to=[],this.value=[],this.maxPoint=-1,this.setMaxPoint=-1,this.nextLayer=null}add(e,t,i){this.addInner(e,t,i)||(this.nextLayer||(this.nextLayer=new O)).add(e,t,i)}addInner(e,t,i){let r=e-this.lastTo||i.startSide-this.last.endSide;if(r<=0&&(e-this.lastFrom||i.startSide-this.last.startSide)<0)throw new Error("Ranges must be added sorted by `from` position and `startSide`");return r<0?!1:(this.from.length==250&&this.finishChunk(!0),this.chunkStart<0&&(this.chunkStart=e),this.from.push(e-this.chunkStart),this.to.push(t-this.chunkStart),this.last=i,this.lastFrom=e,this.lastTo=t,this.value.push(i),i.point&&(this.maxPoint=Math.max(this.maxPoint,t-e)),!0)}addChunk(e,t){if((e-this.lastTo||t.value[0].startSide-this.last.endSide)<0)return!1;this.from.length&&this.finishChunk(!0),this.setMaxPoint=Math.max(this.setMaxPoint,t.maxPoint),this.chunks.push(t),this.chunkPos.push(e);let i=t.value.length-1;return this.last=t.value[i],this.lastFrom=t.from[i]+e,this.lastTo=t.to[i]+e,!0}finish(){return this.finishInner(M.empty)}finishInner(e){if(this.from.length&&this.finishChunk(!1),this.chunks.length==0)return e;let t=M.create(this.chunkPos,this.chunks,this.nextLayer?this.nextLayer.finishInner(e):e,this.setMaxPoint);return this.from=null,t}};function Zh(O,e,t){let i=new Map;for(let n of O)for(let s=0;s=this.minPoint)break}}setRangeIndex(e){if(e==this.layer.chunk[this.chunkIndex].value.length){if(this.chunkIndex++,this.skip)for(;this.chunkIndex=i&&r.push(new Hr(s,t,i,n));return r.length==1?r[0]:new O(r)}get startSide(){return this.value?this.value.startSide:0}goto(e,t=-1e9){for(let i of this.heap)i.goto(e,t);for(let i=this.heap.length>>1;i>=0;i--)Ds(this.heap,i);return this.next(),this}forward(e,t){for(let i of this.heap)i.forward(e,t);for(let i=this.heap.length>>1;i>=0;i--)Ds(this.heap,i);(this.to-e||this.value.endSide-t)<0&&this.next()}next(){if(this.heap.length==0)this.from=this.to=1e9,this.value=null,this.rank=-1;else{let e=this.heap[0];this.from=e.from,this.to=e.to,this.value=e.value,this.rank=e.rank,e.value&&e.next(),Ds(this.heap,0)}}};function Ds(O,e){for(let t=O[e];;){let i=(e<<1)+1;if(i>=O.length)break;let r=O[i];if(i+1=0&&(r=O[i+1],i++),t.compare(r)<0)break;O[i]=t,O[e]=r,e=i}}var QO=class{constructor(e,t,i){this.minPoint=i,this.active=[],this.activeTo=[],this.activeRank=[],this.minActive=-1,this.point=null,this.pointFrom=0,this.pointRank=0,this.to=-1e9,this.endSide=0,this.openStart=-1,this.cursor=_i.from(e,t,i)}goto(e,t=-1e9){return this.cursor.goto(e,t),this.active.length=this.activeTo.length=this.activeRank.length=0,this.minActive=-1,this.to=e,this.endSide=t,this.openStart=-1,this.next(),this}forward(e,t){for(;this.minActive>-1&&(this.activeTo[this.minActive]-e||this.active[this.minActive].endSide-t)<0;)this.removeActive(this.minActive);this.cursor.forward(e,t)}removeActive(e){Ar(this.active,e),Ar(this.activeTo,e),Ar(this.activeRank,e),this.minActive=Yh(this.active,this.activeTo)}addActive(e){let t=0,{value:i,to:r,rank:n}=this.cursor;for(;t0;)t++;Lr(this.active,t,i),Lr(this.activeTo,t,r),Lr(this.activeRank,t,n),e&&Lr(e,t,this.cursor.from),this.minActive=Yh(this.active,this.activeTo)}next(){let e=this.to,t=this.point;this.point=null;let i=this.openStart<0?[]:null;for(;;){let r=this.minActive;if(r>-1&&(this.activeTo[r]-this.cursor.from||this.active[r].endSide-this.cursor.startSide)<0){if(this.activeTo[r]>e){this.to=this.activeTo[r],this.endSide=this.active[r].endSide;break}this.removeActive(r),i&&Ar(i,r)}else if(this.cursor.value)if(this.cursor.from>e){this.to=this.cursor.from,this.endSide=this.cursor.startSide;break}else{let n=this.cursor.value;if(!n.point)this.addActive(i),this.cursor.next();else if(t&&this.cursor.to==this.to&&this.cursor.from=0&&i[r]=0&&!(this.activeRank[i]e||this.activeTo[i]==e&&this.active[i].endSide>=this.point.endSide)&&t.push(this.active[i]);return t.reverse()}openEnd(e){let t=0;for(let i=this.activeTo.length-1;i>=0&&this.activeTo[i]>e;i--)t++;return t}};function vh(O,e,t,i,r,n){O.goto(e),t.goto(i);let s=i+r,a=i,o=i-e,l=!!n.boundChange;for(let c=!1;;){let h=O.to+o-t.to,f=h||O.endSide-t.endSide,u=f<0?O.to+o:t.to,Q=Math.min(u,s);if(O.point||t.point?(O.point&&t.point&&oa(O.point,t.point)&&na(O.activeForPoint(O.to),t.activeForPoint(t.to))||n.comparePoint(a,Q,O.point,t.point),c=!1):(c&&n.boundChange(a),Q>a&&!na(O.active,t.active)&&n.compareRange(a,Q,O.active,t.active),l&&Qs)break;a=u,f<=0&&O.next(),f>=0&&t.next()}}function na(O,e){if(O.length!=e.length)return!1;for(let t=0;t=e;i--)O[i+1]=O[i];O[e]=t}function Yh(O,e){let t=-1,i=1e9;for(let r=0;r=e)return r;if(r==O.length)break;n+=O.charCodeAt(r)==9?t-n%t:1,r=fe(O,r)}return i===!0?-1:O.length}var Eh=typeof Symbol>"u"?"__\u037C":Symbol.for("\u037C"),la=typeof Symbol>"u"?"__styleSet"+Math.floor(Math.random()*1e8):Symbol("styleSet"),Ah=typeof globalThis<"u"?globalThis:typeof window<"u"?window:{},Ot=class{constructor(e,t){this.rules=[];let{finish:i}=t||{};function r(s){return/^@/.test(s)?[s]:s.split(/,\s*/)}function n(s,a,o,l){let c=[],h=/^@(\w+)\b/.exec(s[0]),f=h&&h[1]=="keyframes";if(h&&a==null)return o.push(s[0]+";");for(let u in a){let Q=a[u];if(/&/.test(u))n(u.split(/,\s*/).map($=>s.map(p=>$.replace(/&/,p))).reduce(($,p)=>$.concat(p)),Q,o);else if(Q&&typeof Q=="object"){if(!h)throw new RangeError("The value of a property ("+u+") should be a primitive value.");n(r(u),Q,c,f)}else Q!=null&&c.push(u.replace(/_.*/,"").replace(/[A-Z]/g,$=>"-"+$.toLowerCase())+": "+Q+";")}(c.length||f)&&o.push((i&&!h&&!l?s.map(i):s).join(", ")+" {"+c.join(" ")+"}")}for(let s in e)n(r(s),e[s],this.rules)}getRules(){return this.rules.join(` +`)}static newName(){let e=Ah[Eh]||1;return Ah[Eh]=e+1,"\u037C"+e.toString(36)}static mount(e,t,i){let r=e[la],n=i&&i.nonce;r?n&&r.setNonce(n):r=new ca(e,n),r.mount(Array.isArray(t)?t:[t],e)}},Lh=new Map,ca=class{constructor(e,t){let i=e.ownerDocument||e,r=i.defaultView;if(!e.head&&e.adoptedStyleSheets&&r.CSSStyleSheet){let n=Lh.get(i);if(n)return e[la]=n;this.sheet=new r.CSSStyleSheet,Lh.set(i,this)}else this.styleTag=i.createElement("style"),t&&this.styleTag.setAttribute("nonce",t);this.modules=[],e[la]=this}mount(e,t){let i=this.sheet,r=0,n=0;for(let s=0;s-1&&(this.modules.splice(o,1),n--,o=-1),o==-1){if(this.modules.splice(n++,0,a),i)for(let l=0;l",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},Hg=typeof navigator<"u"&&/Mac/.test(navigator.platform),Kg=typeof navigator<"u"&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent);for($e=0;$e<10;$e++)Yt[48+$e]=Yt[96+$e]=String($e);var $e;for($e=1;$e<=24;$e++)Yt[$e+111]="F"+$e;var $e;for($e=65;$e<=90;$e++)Yt[$e]=String.fromCharCode($e+32),HO[$e]=String.fromCharCode($e);var $e;for(Jr in Yt)HO.hasOwnProperty(Jr)||(HO[Jr]=Yt[Jr]);var Jr;function Mh(O){var e=Hg&&O.metaKey&&O.shiftKey&&!O.ctrlKey&&!O.altKey||Kg&&O.shiftKey&&O.key&&O.key.length==1||O.key=="Unidentified",t=!e&&O.key||(O.shiftKey?HO:Yt)[O.keyCode]||O.key||"Unidentified";return t=="Esc"&&(t="Escape"),t=="Del"&&(t="Delete"),t=="Left"&&(t="ArrowLeft"),t=="Up"&&(t="ArrowUp"),t=="Right"&&(t="ArrowRight"),t=="Down"&&(t="ArrowDown"),t}function N(){var O=arguments[0];typeof O=="string"&&(O=document.createElement(O));var e=1,t=arguments[1];if(t&&typeof t=="object"&&t.nodeType==null&&!Array.isArray(t)){for(var i in t)if(Object.prototype.hasOwnProperty.call(t,i)){var r=t[i];typeof r=="string"?O.setAttribute(i,r):r!=null&&(O[i]=r)}e++}for(;e2),v={mac:Nh||/Mac/.test(Ye.platform),windows:/Win/.test(Ye.platform),linux:/Linux|X11/.test(Ye.platform),ie:Rn,ie_version:_f?ga.documentMode||6:Sa?+Sa[1]:Pa?+Pa[1]:0,gecko:Ih,gecko_version:Ih?+(/Firefox\/(\d+)/.exec(Ye.userAgent)||[0,0])[1]:0,chrome:!!ha,chrome_version:ha?+ha[1]:0,ios:Nh,android:/Android\b/.test(Ye.userAgent),webkit:Bh,webkit_version:Bh?+(/\bAppleWebKit\/(\d+)/.exec(Ye.userAgent)||[0,0])[1]:0,safari:Xa,safari_version:Xa?+(/\bVersion\/(\d+(\.\d+)?)/.exec(Ye.userAgent)||[0,0])[1]:0,tabSize:ga.documentElement.style.tabSize!=null?"tab-size":"-moz-tab-size"};function uo(O,e){for(let t in O)t=="class"&&e.class?e.class+=" "+O.class:t=="style"&&e.style?e.style+=";"+O.style:e[t]=O[t];return e}var $n=Object.create(null);function Qo(O,e,t){if(O==e)return!0;O||(O=$n),e||(e=$n);let i=Object.keys(O),r=Object.keys(e);if(i.length-(t&&i.indexOf(t)>-1?1:0)!=r.length-(t&&r.indexOf(t)>-1?1:0))return!1;for(let n of i)if(n!=t&&(r.indexOf(n)==-1||O[n]!==e[n]))return!1;return!0}function Jg(O,e){for(let t=O.attributes.length-1;t>=0;t--){let i=O.attributes[t].name;e[i]==null&&O.removeAttribute(i)}for(let t in e){let i=e[t];t=="style"?O.style.cssText=i:O.getAttribute(t)!=i&&O.setAttribute(t,i)}}function Fh(O,e,t){let i=!1;if(e)for(let r in e)t&&r in t||(i=!0,r=="style"?O.style.cssText="":O.removeAttribute(r));if(t)for(let r in t)e&&e[r]==t[r]||(i=!0,r=="style"?O.style.cssText=t[r]:O.setAttribute(r,t[r]));return i}function eP(O){let e=Object.create(null);for(let t=0;t0?3e8:-4e8:t>0?1e8:-1e8,new PO(e,t,t,i,e.widget||null,!1)}static replace(e){let t=!!e.block,i,r;if(e.isBlockGap)i=-5e8,r=4e8;else{let{start:n,end:s}=Rf(e,t);i=(n?t?-3e8:-1:5e8)-1,r=(s?t?2e8:1:-6e8)+1}return new PO(e,i,r,t,e.widget||null,!0)}static line(e){return new Ii(e)}static set(e,t=!1){return M.of(e,t)}hasHeight(){return this.widget?this.widget.estimatedHeight>-1:!1}};Y.none=M.empty;var Di=class O extends Y{constructor(e){let{start:t,end:i}=Rf(e);super(t?-1:5e8,i?1:-6e8,null,e),this.tagName=e.tagName||"span",this.attrs=e.class&&e.attributes?uo(e.attributes,{class:e.class}):e.class?{class:e.class}:e.attributes||$n}eq(e){return this==e||e instanceof O&&this.tagName==e.tagName&&Qo(this.attrs,e.attrs)}range(e,t=e){if(e>=t)throw new RangeError("Mark decorations may not be empty");return super.range(e,t)}};Di.prototype.point=!1;var Ii=class O extends Y{constructor(e){super(-2e8,-2e8,null,e)}eq(e){return e instanceof O&&this.spec.class==e.spec.class&&Qo(this.spec.attributes,e.spec.attributes)}range(e,t=e){if(t!=e)throw new RangeError("Line decoration ranges must be zero-length");return super.range(e,t)}};Ii.prototype.mapMode=pe.TrackBefore;Ii.prototype.point=!0;var PO=class O extends Y{constructor(e,t,i,r,n,s){super(t,i,n,e),this.block=r,this.isReplace=s,this.mapMode=r?t<=0?pe.TrackBefore:pe.TrackAfter:pe.TrackDel}get type(){return this.startSide!=this.endSide?Te.WidgetRange:this.startSide<=0?Te.WidgetBefore:Te.WidgetAfter}get heightRelevant(){return this.block||!!this.widget&&(this.widget.estimatedHeight>=5||this.widget.lineBreaks>0)}eq(e){return e instanceof O&&tP(this.widget,e.widget)&&this.block==e.block&&this.startSide==e.startSide&&this.endSide==e.endSide}range(e,t=e){if(this.isReplace&&(e>t||e==t&&this.startSide>0&&this.endSide<=0))throw new RangeError("Invalid range for replacement decoration");if(!this.isReplace&&t!=e)throw new RangeError("Widget decorations can only have zero-length ranges");return super.range(e,t)}};PO.prototype.point=!0;function Rf(O,e=!1){let{inclusiveStart:t,inclusiveEnd:i}=O;return t==null&&(t=O.inclusive),i==null&&(i=O.inclusive),{start:t??e,end:i??e}}function tP(O,e){return O==e||!!(O&&e&&O.compare(e))}function Oi(O,e,t,i=0){let r=t.length-1;r>=0&&t[r]+i>=O?t[r]=Math.max(t[r],e):t.push(O,e)}var pn=class O extends tt{constructor(e,t){super(),this.tagName=e,this.attributes=t}eq(e){return e==this||e instanceof O&&this.tagName==e.tagName&&Qo(this.attributes,e.attributes)}static create(e){return new O(e.tagName,e.attributes||$n)}static set(e,t=!1){return M.of(e,t)}};pn.prototype.startSide=pn.prototype.endSide=-1;function Bi(O){let e;return O.nodeType==11?e=O.getSelection?O:O.ownerDocument:e=O,e.getSelection()}function Ta(O,e){return e?O==e||O.contains(e.nodeType!=1?e.parentNode:e):!1}function cn(O,e){if(!e.anchorNode)return!1;try{return Ta(O,e.anchorNode)}catch{return!1}}function hn(O){return O.nodeType==3?Ni(O,0,O.nodeValue.length).getClientRects():O.nodeType==1?O.getClientRects():[]}function Wi(O,e,t,i){return t?Hh(O,e,t,i,-1)||Hh(O,e,t,i,1):!1}function Nt(O){for(var e=0;;e++)if(O=O.previousSibling,!O)return e}function mn(O){return O.nodeType==1&&/^(DIV|P|LI|UL|OL|BLOCKQUOTE|DD|DT|H\d|SECTION|PRE)$/.test(O.nodeName)}function Hh(O,e,t,i,r){for(;;){if(O==t&&e==i)return!0;if(e==(r<0?0:Rt(O))){if(O.nodeName=="DIV")return!1;let n=O.parentNode;if(!n||n.nodeType!=1)return!1;e=Nt(O)+(r<0?0:1),O=n}else if(O.nodeType==1){if(O=O.childNodes[e+(r<0?-1:0)],O.nodeType==1&&O.contentEditable=="false")return!1;e=r<0?Rt(O):0}else return!1}}function Rt(O){return O.nodeType==3?O.nodeValue.length:O.childNodes.length}function gn(O,e){let t=e?O.left:O.right;return{left:t,right:t,top:O.top,bottom:O.bottom}}function OP(O){let e=O.visualViewport;return e?{left:0,right:e.width,top:0,bottom:e.height}:{left:0,right:O.innerWidth,top:0,bottom:O.innerHeight}}function Vf(O,e){let t=e.width/O.offsetWidth,i=e.height/O.offsetHeight;return(t>.995&&t<1.005||!isFinite(t)||Math.abs(e.width-O.offsetWidth)<1)&&(t=1),(i>.995&&i<1.005||!isFinite(i)||Math.abs(e.height-O.offsetHeight)<1)&&(i=1),{scaleX:t,scaleY:i}}function iP(O,e,t,i,r,n,s,a){let o=O.ownerDocument,l=o.defaultView||window;for(let c=O,h=!1;c&&!h;)if(c.nodeType==1){let f,u=c==o.body,Q=1,$=1;if(u)f=OP(l);else{if(/^(fixed|sticky)$/.test(getComputedStyle(c).position)&&(h=!0),c.scrollHeight<=c.clientHeight&&c.scrollWidth<=c.clientWidth){c=c.assignedSlot||c.parentNode;continue}let g=c.getBoundingClientRect();({scaleX:Q,scaleY:$}=Vf(c,g)),f={left:g.left,right:g.left+c.clientWidth*Q,top:g.top,bottom:g.top+c.clientHeight*$}}let p=0,m=0;if(r=="nearest")e.top0&&e.bottom>f.bottom+m&&(m=e.bottom-f.bottom+s)):e.bottom>f.bottom&&(m=e.bottom-f.bottom+s,t<0&&e.top-m0&&e.right>f.right+p&&(p=e.right-f.right+n)):e.right>f.right&&(p=e.right-f.right+n,t<0&&e.leftf.bottom||e.leftf.right)&&(e={left:Math.max(e.left,f.left),right:Math.min(e.right,f.right),top:Math.max(e.top,f.top),bottom:Math.min(e.bottom,f.bottom)}),c=c.assignedSlot||c.parentNode}else if(c.nodeType==11)c=c.host;else break}function rP(O){let e=O.ownerDocument,t,i;for(let r=O.parentNode;r&&!(r==e.body||t&&i);)if(r.nodeType==1)!i&&r.scrollHeight>r.clientHeight&&(i=r),!t&&r.scrollWidth>r.clientWidth&&(t=r),r=r.assignedSlot||r.parentNode;else if(r.nodeType==11)r=r.host;else break;return{x:t,y:i}}var ba=class{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}eq(e){return this.anchorNode==e.anchorNode&&this.anchorOffset==e.anchorOffset&&this.focusNode==e.focusNode&&this.focusOffset==e.focusOffset}setRange(e){let{anchorNode:t,focusNode:i}=e;this.set(t,Math.min(e.anchorOffset,t?Rt(t):0),i,Math.min(e.focusOffset,i?Rt(i):0))}set(e,t,i,r){this.anchorNode=e,this.anchorOffset=t,this.focusNode=i,this.focusOffset=r}},mO=null;v.safari&&v.safari_version>=26&&(mO=!1);function qf(O){if(O.setActive)return O.setActive();if(mO)return O.focus(mO);let e=[];for(let t=O;t&&(e.push(t,t.scrollTop,t.scrollLeft),t!=t.ownerDocument);t=t.parentNode);if(O.focus(mO==null?{get preventScroll(){return mO={preventScroll:!0},!0}}:void 0),!mO){mO=!1;for(let t=0;tMath.max(1,O.scrollHeight-O.clientHeight-4)}function Uf(O,e){for(let t=O,i=e;;){if(t.nodeType==3&&i>0)return{node:t,offset:i};if(t.nodeType==1&&i>0){if(t.contentEditable=="false")return null;t=t.childNodes[i-1],i=Rt(t)}else if(t.parentNode&&!mn(t))i=Nt(t),t=t.parentNode;else return null}}function Wf(O,e){for(let t=O,i=e;;){if(t.nodeType==3&&i=t){if(a.level==i)return s;(n<0||(r!=0?r<0?a.fromt:e[n].level>a.level))&&(n=s)}}if(n<0)throw new RangeError("Index out of range");return n}};function Gf(O,e){if(O.length!=e.length)return!1;for(let t=0;t=0;$-=3)if(Pt[$+1]==-u){let p=Pt[$+2],m=p&2?r:p&4?p&1?n:r:0;m&&(re[h]=re[Pt[$]]=m),a=$;break}}else{if(Pt.length==189)break;Pt[a++]=h,Pt[a++]=f,Pt[a++]=o}else if((Q=re[h])==2||Q==1){let $=Q==r;o=$?0:1;for(let p=a-3;p>=0;p-=3){let m=Pt[p+2];if(m&2)break;if($)Pt[p+2]|=2;else{if(m&4)break;Pt[p+2]|=4}}}}}function fP(O,e,t,i){for(let r=0,n=i;r<=t.length;r++){let s=r?t[r-1].to:O,a=ro;)Q==p&&(Q=t[--$].from,p=$?t[$-1].to:O),re[--Q]=u;o=c}else n=l,o++}}}function xa(O,e,t,i,r,n,s){let a=i%2?2:1;if(i%2==r%2)for(let o=e,l=0;oo&&s.push(new ct(o,$.from,u));let p=$.direction==SO!=!(u%2);ka(O,p?i+1:i,r,$.inner,$.from,$.to,s),o=$.to}Q=$.to}else{if(Q==t||(c?re[Q]!=a:re[Q]==a))break;Q++}f?xa(O,o,Q,i+1,r,f,s):oe;){let c=!0,h=!1;if(!l||o>n[l-1].to){let $=re[o-1];$!=a&&(c=!1,h=$==16)}let f=!c&&a==1?[]:null,u=c?i:i+1,Q=o;e:for(;;)if(l&&Q==n[l-1].to){if(h)break e;let $=n[--l];if(!c)for(let p=$.from,m=l;;){if(p==e)break e;if(m&&n[m-1].to==p)p=n[--m].from;else{if(re[p-1]==a)break e;break}}if(f)f.push($);else{$.tore.length;)re[re.length]=256;let i=[],r=e==SO?0:1;return ka(O,r,r,t,0,O.length,i),i}function Ef(O){return[new ct(0,O,0)]}var Af="";function uP(O,e,t,i,r){var n;let s=i.head-O.from,a=ct.find(e,s,(n=i.bidiLevel)!==null&&n!==void 0?n:-1,i.assoc),o=e[a],l=o.side(r,t);if(s==l){let f=a+=r?1:-1;if(f<0||f>=e.length)return null;o=e[a=f],s=o.side(!r,t),l=o.side(r,t)}let c=fe(O.text,s,o.forward(r,t));(co.to)&&(c=l),Af=O.text.slice(Math.min(s,c),Math.max(s,c));let h=a==(r?e.length-1:0)?null:e[a+(r?1:-1)];return h&&c==l&&h.level+(r?0:1)O.some(e=>e)}),Hf=Z.define({combine:O=>O.some(e=>e)}),Kf=Z.define(),ji=class O{constructor(e,t="nearest",i="nearest",r=5,n=5,s=!1){this.range=e,this.y=t,this.x=i,this.yMargin=r,this.xMargin=n,this.isSnapshot=s}map(e){return e.empty?this:new O(this.range.map(e),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}clip(e){return this.range.to<=e.doc.length?this:new O(S.cursor(e.doc.length),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}},en=V.define({map:(O,e)=>O.map(e)}),Jf=V.define();function Xe(O,e,t){let i=O.facet(If);i.length?i[0](e):window.onerror&&window.onerror(String(e),t,void 0,void 0,e)||(t?console.error(t+":",e):console.error(e))}var _t=Z.define({combine:O=>O.length?O[0]:!0}),$P=0,KO=Z.define({combine(O){return O.filter((e,t)=>{for(let i=0;i{let o=[];return s&&o.push(Fi.of(l=>{let c=l.plugin(a);return c?s(c):Y.none})),n&&o.push(n(a)),o})}static fromClass(e,t){return O.define((i,r)=>new e(i,r),t)}},Ci=class{constructor(e){this.spec=e,this.mustUpdate=null,this.value=null}get plugin(){return this.spec&&this.spec.plugin}update(e){if(this.value){if(this.mustUpdate){let t=this.mustUpdate;if(this.mustUpdate=null,this.value.update)try{this.value.update(t)}catch(i){if(Xe(t.state,i,"CodeMirror plugin crashed"),this.value.destroy)try{this.value.destroy()}catch{}this.deactivate()}}}else if(this.spec)try{this.value=this.spec.plugin.create(e,this.spec.arg)}catch(t){Xe(e.state,t,"CodeMirror plugin crashed"),this.deactivate()}return this}destroy(e){var t;if(!((t=this.value)===null||t===void 0)&&t.destroy)try{this.value.destroy()}catch(i){Xe(e.state,i,"CodeMirror plugin crashed")}}deactivate(){this.spec=this.value=null}},ed=Z.define(),go=Z.define(),Fi=Z.define(),td=Z.define(),Od=Z.define(),Ji=Z.define(),id=Z.define();function Jh(O,e){let t=O.state.facet(id);if(!t.length)return t;let i=t.map(n=>n instanceof Function?n(O):n),r=[];return M.spans(i,e.from,e.to,{point(){},span(n,s,a,o){let l=n-e.from,c=s-e.from,h=r;for(let f=a.length-1;f>=0;f--,o--){let u=a[f].spec.bidiIsolate,Q;if(u==null&&(u=QP(e.text,l,c)),o>0&&h.length&&(Q=h[h.length-1]).to==l&&Q.direction==u)Q.to=c,h=Q.inner;else{let $={from:l,to:c,direction:u,inner:[]};h.push($),h=$.inner}}}}),r}var rd=Z.define();function Po(O){let e=0,t=0,i=0,r=0;for(let n of O.state.facet(rd)){let s=n(O);s&&(s.left!=null&&(e=Math.max(e,s.left)),s.right!=null&&(t=Math.max(t,s.right)),s.top!=null&&(i=Math.max(i,s.top)),s.bottom!=null&&(r=Math.max(r,s.bottom)))}return{left:e,right:t,top:i,bottom:r}}var Vi=Z.define(),ht=class O{constructor(e,t,i,r){this.fromA=e,this.toA=t,this.fromB=i,this.toB=r}join(e){return new O(Math.min(this.fromA,e.fromA),Math.max(this.toA,e.toA),Math.min(this.fromB,e.fromB),Math.max(this.toB,e.toB))}addToSet(e){let t=e.length,i=this;for(;t>0;t--){let r=e[t-1];if(!(r.fromA>i.toA)){if(r.toAr.push(new ht(n,s,a,o))),this.changedRanges=r}static create(e,t,i){return new O(e,t,i)}get viewportChanged(){return(this.flags&4)>0}get viewportMoved(){return(this.flags&8)>0}get heightChanged(){return(this.flags&2)>0}get geometryChanged(){return this.docChanged||(this.flags&18)>0}get focusChanged(){return(this.flags&1)>0}get docChanged(){return!this.changes.empty}get selectionSet(){return this.transactions.some(e=>e.selection)}get empty(){return this.flags==0&&this.transactions.length==0}},pP=[],de=class{constructor(e,t,i=0){this.dom=e,this.length=t,this.flags=i,this.parent=null,e.cmTile=this}get breakAfter(){return this.flags&1}get children(){return pP}isWidget(){return!1}get isHidden(){return!1}isComposite(){return!1}isLine(){return!1}isText(){return!1}isBlock(){return!1}get domAttrs(){return null}sync(e){if(this.flags|=2,this.flags&4){this.flags&=-5;let t=this.domAttrs;t&&Jg(this.dom,t)}}toString(){return this.constructor.name+(this.children.length?`(${this.children})`:"")+(this.breakAfter?"#":"")}destroy(){this.parent=null}setDOM(e){this.dom=e,e.cmTile=this}get posAtStart(){return this.parent?this.parent.posBefore(this):0}get posAtEnd(){return this.posAtStart+this.length}posBefore(e,t=this.posAtStart){let i=t;for(let r of this.children){if(r==e)return i;i+=r.length+r.breakAfter}throw new RangeError("Invalid child in posBefore")}posAfter(e){return this.posBefore(e)+e.length}covers(e){return!0}coordsIn(e,t){return null}domPosFor(e,t){let i=Nt(this.dom),r=this.length?e>0:t>0;return new St(this.parent.dom,i+(r?1:0),e==0||e==this.length)}markDirty(e){this.flags&=-3,e&&(this.flags|=4),this.parent&&this.parent.flags&2&&this.parent.markDirty(!1)}get overrideDOMText(){return null}get root(){for(let e=this;e;e=e.parent)if(e instanceof ni)return e;return null}static get(e){return e.cmTile}},ri=class extends de{constructor(e){super(e,0),this._children=[]}isComposite(){return!0}get children(){return this._children}get lastChild(){return this.children.length?this.children[this.children.length-1]:null}append(e){this.children.push(e),e.parent=this}sync(e){if(this.flags&2)return;super.sync(e);let t=this.dom,i=null,r,n=e?.node==t?e:null,s=0;for(let a of this.children){if(a.sync(e),s+=a.length+a.breakAfter,r=i?i.nextSibling:t.firstChild,n&&r!=a.dom&&(n.written=!0),a.dom.parentNode==t)for(;r&&r!=a.dom;)r=ef(r);else t.insertBefore(a.dom,r);i=a.dom}for(r=i?i.nextSibling:t.firstChild,n&&r&&(n.written=!0);r;)r=ef(r);this.length=s}};function ef(O){let e=O.nextSibling;return O.parentNode.removeChild(O),e}var ni=class extends ri{constructor(e,t){super(t),this.view=e}owns(e){for(;e;e=e.parent)if(e==this)return!0;return!1}isBlock(){return!0}nearest(e){for(;;){if(!e)return null;let t=de.get(e);if(t&&this.owns(t))return t;e=e.parentNode}}blockTiles(e){for(let t=[],i=this,r=0,n=0;;)if(r==i.children.length){if(!t.length)return;i=i.parent,i.breakAfter&&n++,r=t.pop()}else{let s=i.children[r++];if(s instanceof It)t.push(r),i=s,r=0;else{let a=n+s.length,o=e(s,n);if(o!==void 0)return o;n=a+s.breakAfter}}}resolveBlock(e,t){let i,r=-1,n,s=-1;if(this.blockTiles((a,o)=>{let l=o+a.length;if(e>=o&&e<=l){if(a.isWidget()&&t>=-1&&t<=1){if(a.flags&32)return!0;a.flags&16&&(i=void 0)}(oe||e==o&&(t>1?a.length:a.covers(-1)))&&(!n||!a.isWidget()&&n.isWidget())&&(n=a,s=e-o)}}),!i&&!n)throw new Error("No tile at position "+e);return i&&t<0||!n?{tile:i,offset:r}:{tile:n,offset:s}}},It=class O extends ri{constructor(e,t){super(e),this.wrapper=t}isBlock(){return!0}covers(e){return this.children.length?e<0?this.children[0].covers(-1):this.lastChild.covers(1):!1}get domAttrs(){return this.wrapper.attributes}static of(e,t){let i=new O(t||document.createElement(e.tagName),e);return t||(i.flags|=4),i}},si=class O extends ri{constructor(e,t){super(e),this.attrs=t}isLine(){return!0}static start(e,t,i){let r=new O(t||document.createElement("div"),e);return(!t||!i)&&(r.flags|=4),r}get domAttrs(){return this.attrs}resolveInline(e,t,i){let r=null,n=-1,s=null,a=-1;function o(c,h){for(let f=0,u=0;f=h&&(Q.isComposite()?o(Q,h-u):(!s||s.isHidden&&(t>0||i&&gP(s,Q)))&&($>h||Q.flags&32)?(s=Q,a=h-u):(ui&&(e=i);let r=e,n=e,s=0;e==0&&t<0||e==i&&t>=0?v.chrome||v.gecko||(e?(r--,s=1):n=0)?0:a.length-1];return v.safari&&!s&&o.width==0&&(o=Array.prototype.find.call(a,l=>l.width)||o),s?gn(o,s<0):o||null}static of(e,t){let i=new O(t||document.createTextNode(e),e);return t||(i.flags|=2),i}},XO=class O extends de{constructor(e,t,i,r){super(e,t,r),this.widget=i}isWidget(){return!0}get isHidden(){return this.widget.isHidden}covers(e){return this.flags&48?!1:(this.flags&(e<0?64:128))>0}coordsIn(e,t){return this.coordsInWidget(e,t,!1)}coordsInWidget(e,t,i){let r=this.widget.coordsAt(this.dom,e,t);if(r)return r;if(i)return gn(this.dom.getBoundingClientRect(),this.length?e==0:t<=0);{let n=this.dom.getClientRects(),s=null;if(!n.length)return null;let a=this.flags&16?!0:this.flags&32?!1:e>0;for(let o=a?n.length-1:0;s=n[o],!(e>0?o==0:o==n.length-1||s.top0;)if(r.isComposite())if(s){if(!e)break;i&&i.break(),e--,s=!1}else if(n==r.children.length){if(!e&&!a.length)break;i&&i.leave(r),s=!!r.breakAfter,{tile:r,index:n}=a.pop(),n++}else{let o=r.children[n],l=o.breakAfter;(t>0?o.length<=e:o.length=0;a--){let o=t.marks[a],l=r.lastChild;if(l instanceof Ue&&l.mark.eq(o.mark))l.dom!=o.dom&&l.setDOM(fa(o.dom)),r=l;else{if(this.cache.reused.get(o)){let h=de.get(o.dom);h&&h.setDOM(fa(o.dom))}let c=Ue.of(o.mark,o.dom);r.append(c),r=c}this.cache.reused.set(o,2)}let n=de.get(e.text);n&&this.cache.reused.set(n,2);let s=new gO(e.text,e.text.nodeValue);s.flags|=8,r.append(s)}addInlineWidget(e,t,i){let r=this.afterWidget&&e.flags&48&&(this.afterWidget.flags&48)==(e.flags&48);r||this.flushBuffer();let n=this.ensureMarks(t,i);!r&&!(e.flags&16)&&n.append(this.getBuffer(1)),n.append(e),this.pos+=e.length,this.afterWidget=e}addMark(e,t,i){this.flushBuffer(),this.ensureMarks(t,i).append(e),this.pos+=e.length,this.afterWidget=null}addBlockWidget(e){this.getBlockPos().append(e),this.pos+=e.length,this.lastBlock=e,this.endLine()}continueWidget(e){let t=this.afterWidget||this.lastBlock;t.length+=e,this.pos+=e}addLineStart(e,t){var i;e||(e=nd);let r=si.start(e,t||((i=this.cache.find(si))===null||i===void 0?void 0:i.dom),!!t);this.getBlockPos().append(this.lastBlock=this.curLine=r)}addLine(e){this.getBlockPos().append(e),this.pos+=e.length,this.lastBlock=e,this.endLine()}addBreak(){this.lastBlock.flags|=1,this.endLine(),this.pos++}addLineStartIfNotCovered(e){this.blockPosCovered()||this.addLineStart(e)}ensureLine(e){this.curLine||this.addLineStart(e)}ensureMarks(e,t){var i;let r=this.curLine;for(let n=e.length-1;n>=0;n--){let s=e[n],a;if(t>0&&(a=r.lastChild)&&a instanceof Ue&&a.mark.eq(s))r=a,t--;else{let o=Ue.of(s,(i=this.cache.find(Ue,l=>l.mark.eq(s)))===null||i===void 0?void 0:i.dom);r.append(o),r=o,t=0}}return r}endLine(){if(this.curLine){this.flushBuffer();let e=this.curLine.lastChild;(!e||!tf(this.curLine,!1)||e.dom.nodeName!="BR"&&e.isWidget()&&!(v.ios&&tf(this.curLine,!0)))&&this.curLine.append(this.cache.findWidget(da,0,32)||new XO(da.toDOM(),0,da,32)),this.curLine=this.afterWidget=null}}updateBlockWrappers(){this.wrapperPos>this.pos+1e4&&(this.blockWrappers.goto(this.pos),this.wrappers.length=0);for(let e=this.wrappers.length-1;e>=0;e--)this.wrappers[e].to=this.pos){let t=new va(e.from,e.to,e.value,e.rank),i=this.wrappers.length;for(;i>0&&(this.wrappers[i-1].rank-t.rank||this.wrappers[i-1].to-t.to)<0;)i--;this.wrappers.splice(i,0,t)}this.wrapperPos=this.pos}getBlockPos(){var e;this.updateBlockWrappers();let t=this.root;for(let i of this.wrappers){let r=t.lastChild;if(i.froms.wrapper.eq(i.wrapper)))===null||e===void 0?void 0:e.dom);t.append(n),t=n}}return t}blockPosCovered(){let e=this.lastBlock;return e!=null&&!e.breakAfter&&(!e.isWidget()||(e.flags&160)>0)}getBuffer(e){let t=2|(e<0?16:32),i=this.cache.find(ai,void 0,1);return i&&(i.flags=t),i||new ai(t)}flushBuffer(){this.afterWidget&&!(this.afterWidget.flags&32)&&(this.afterWidget.parent.append(this.getBuffer(-1)),this.afterWidget=null)}},_a=class{constructor(e){this.skipCount=0,this.text="",this.textOff=0,this.cursor=e.iter()}skip(e){this.textOff+e<=this.text.length?this.textOff+=e:(this.skipCount+=e-(this.text.length-this.textOff),this.text="",this.textOff=0)}next(e){if(this.textOff==this.text.length){let{value:r,lineBreak:n,done:s}=this.cursor.next(this.skipCount);if(this.skipCount=0,s)throw new Error("Ran out of text content when drawing inline views");this.text=r;let a=this.textOff=Math.min(e,r.length);return n?null:r.slice(0,a)}let t=Math.min(this.text.length,this.textOff+e),i=this.text.slice(this.textOff,t);return this.textOff=t,i}},Sn=[XO,si,gO,Ue,ai,It,ni];for(let O=0;O[]),this.index=Sn.map(()=>0),this.reused=new Map}add(e){let t=e.constructor.bucket,i=this.buckets[t];i.length<6?i.push(e):i[this.index[t]=(this.index[t]+1)%6]=e}find(e,t,i=2){let r=e.bucket,n=this.buckets[r],s=this.index[r];for(let a=n.length-1;a>=0;a--){let o=(a+s)%n.length,l=n[o];if((!t||t(l))&&!this.reused.has(l))return n.splice(o,1),o{if(this.cache.add(s),s.isComposite())return!1},enter:s=>this.cache.add(s),leave:()=>{},break:()=>{}}}run(e,t){let i=t&&this.getCompositionContext(t.text);for(let r=0,n=0,s=0;;){let a=sr){let l=o-r;this.preserve(l,!s,!a),r=o,n+=l}if(!a)break;this.forward(a.fromA,a.toA),t&&a.fromA<=t.range.fromA&&a.toA>=t.range.toA?(this.emit(n,t.range.fromB),this.builder.addComposition(t,i),this.text.skip(t.range.toB-t.range.fromB),this.emit(t.range.toB,a.toB)):this.emit(n,a.toB),n=a.toB,r=a.toA}return this.builder.curLine&&this.builder.endLine(),this.builder.root}preserve(e,t,i){let r=XP(this.old),n=this.openMarks;this.old.advance(e,i?1:-1,{skip:(s,a,o)=>{if(s.isWidget())if(this.openWidget)this.builder.continueWidget(o-a);else{let l=o>0||a{s.isLine()?this.builder.addLineStart(s.attrs,this.cache.maybeReuse(s)):(this.cache.add(s),s instanceof Ue&&r.unshift(s.mark)),this.openWidget=!1},leave:s=>{s.isLine()?r.length&&(r.length=n=0):s instanceof Ue&&(r.shift(),n=Math.min(n,r.length))},break:()=>{this.builder.addBreak(),this.openWidget=!1}}),this.text.skip(e)}emit(e,t){let i=null,r=this.builder,n=0,s=M.spans(this.decorations,e,t,{point:(a,o,l,c,h,f)=>{if(l instanceof PO){if(this.disallowBlockEffectsFor[f]){if(l.block)throw new RangeError("Block decorations may not be specified via plugins");if(o>this.view.state.doc.lineAt(a).to)throw new RangeError("Decorations that replace line breaks may not be specified via plugins")}if(n=c.length,h>c.length)r.continueWidget(o-a);else{let u=l.widget||(l.block?Ft.block:Ft.inline),Q=PP(l),$=this.cache.findWidget(u,o-a,Q)||XO.of(u,this.view,o-a,Q);l.block?(l.startSide>0&&r.addLineStartIfNotCovered(i),r.addBlockWidget($)):(r.ensureLine(i),r.addInlineWidget($,c,h))}i=null}else i=SP(i,l);o>a&&this.text.skip(o-a)},span:(a,o,l,c)=>{for(let h=a;hn,this.openMarks=s}forward(e,t){t-e<=10?this.old.advance(t-e,1,this.reuseWalker):(this.old.advance(5,-1,this.reuseWalker),this.old.advance(t-e-10,-1),this.old.advance(5,1,this.reuseWalker))}getCompositionContext(e){let t=[],i=null;for(let r=e.parentNode;;r=r.parentNode){let n=de.get(r);if(r==this.view.contentDOM)break;n instanceof Ue?t.push(n):n?.isLine()?i=n:r.nodeName=="DIV"&&!i&&r!=this.view.contentDOM?i=new si(r,nd):t.push(Ue.of(new Di({tagName:r.nodeName.toLowerCase(),attributes:eP(r)}),r))}return{line:i,marks:t}}};function tf(O,e){let t=i=>{for(let r of i.children)if((e?r.isText():r.length)||t(r))return!0;return!1};return t(O)}function PP(O){let e=O.isReplace?(O.startSide<0?64:0)|(O.endSide>0?128:0):O.startSide>0?32:16;return O.block&&(e|=256),e}var nd={class:"cm-line"};function SP(O,e){let t=e.spec.attributes,i=e.spec.class;return!t&&!i||(O||(O={class:"cm-line"}),t&&uo(t,O),i&&(O.class+=" "+i)),O}function XP(O){let e=[];for(let t=O.parents.length;t>1;t--){let i=t==O.parents.length?O.tile:O.parents[t].tile;i instanceof Ue&&e.push(i.mark)}return e}function fa(O){let e=de.get(O);return e&&e.setDOM(O.cloneNode()),O}var Ft=class extends _e{constructor(e){super(),this.tag=e}eq(e){return e.tag==this.tag}toDOM(){return document.createElement(this.tag)}updateDOM(e){return e.nodeName.toLowerCase()==this.tag}get isHidden(){return!0}};Ft.inline=new Ft("span");Ft.block=new Ft("div");var da=new class extends _e{toDOM(){return document.createElement("br")}get isHidden(){return!0}get editable(){return!0}},Xn=class{constructor(e){this.view=e,this.decorations=[],this.blockWrappers=[],this.dynamicDecorationMap=[!1],this.domChanged=null,this.hasComposition=null,this.editContextFormatting=Y.none,this.lastCompositionAfterCursor=!1,this.minWidth=0,this.minWidthFrom=0,this.minWidthTo=0,this.impreciseAnchor=null,this.impreciseHead=null,this.forceSelection=!1,this.lastUpdate=Date.now(),this.updateDeco(),this.tile=new ni(e,e.contentDOM),this.updateInner([new ht(0,0,0,e.state.doc.length)],null)}update(e){var t;let i=e.changedRanges;this.minWidth>0&&i.length&&(i.every(({fromA:c,toA:h})=>hthis.minWidthTo)?(this.minWidthFrom=e.changes.mapPos(this.minWidthFrom,1),this.minWidthTo=e.changes.mapPos(this.minWidthTo,1)):this.minWidth=this.minWidthFrom=this.minWidthTo=0),this.updateEditContextFormatting(e);let r=-1;this.view.inputState.composing>=0&&!this.view.observer.editContext&&(!((t=this.domChanged)===null||t===void 0)&&t.newSel?r=this.domChanged.newSel.head:!vP(e.changes,this.hasComposition)&&!e.selectionSet&&(r=e.state.selection.main.head));let n=r>-1?bP(this.view,e.changes,r):null;if(this.domChanged=null,this.hasComposition){let{from:c,to:h}=this.hasComposition;i=new ht(c,h,e.changes.mapPos(c,-1),e.changes.mapPos(h,1)).addToSet(i.slice())}this.hasComposition=n?{from:n.range.fromB,to:n.range.toB}:null,(v.ie||v.chrome)&&!n&&e&&e.state.doc.lines!=e.startState.doc.lines&&(this.forceSelection=!0);let s=this.decorations,a=this.blockWrappers;this.updateDeco();let o=kP(s,this.decorations,e.changes);o.length&&(i=ht.extendWithRanges(i,o));let l=wP(a,this.blockWrappers,e.changes);return l.length&&(i=ht.extendWithRanges(i,l)),n&&!i.some(c=>c.fromA<=n.range.fromA&&c.toA>=n.range.toA)&&(i=n.range.addToSet(i.slice())),this.tile.flags&2&&i.length==0?!1:(this.updateInner(i,n),e.transactions.length&&(this.lastUpdate=Date.now()),!0)}updateInner(e,t){this.view.viewState.mustMeasureContent=!0;let{observer:i}=this.view;i.ignore(()=>{if(t||e.length){let s=this.tile,a=new Va(this.view,s,this.blockWrappers,this.decorations,this.dynamicDecorationMap);this.tile=a.run(e,t),qa(s,a.cache.reused)}this.tile.dom.style.height=this.view.viewState.contentHeight/this.view.scaleY+"px",this.tile.dom.style.flexBasis=this.minWidth?this.minWidth+"px":"";let n=v.chrome||v.ios?{node:i.selectionRange.focusNode,written:!1}:void 0;this.tile.sync(n),n&&(n.written||i.selectionRange.focusNode!=n.node||!this.tile.dom.contains(n.node))&&(this.forceSelection=!0),this.tile.dom.style.height=""});let r=[];if(this.view.viewport.from||this.view.viewport.to-1)&&cn(i,this.view.observer.selectionRange)&&!(r&&i.contains(r));if(!(n||t||s))return;let a=this.forceSelection;this.forceSelection=!1;let o=this.view.state.selection.main,l,c;if(o.empty?c=l=this.inlineDOMNearPos(o.anchor,o.assoc||1):(c=this.inlineDOMNearPos(o.head,o.head==o.from?1:-1),l=this.inlineDOMNearPos(o.anchor,o.anchor==o.from?1:-1)),v.gecko&&o.empty&&!this.hasComposition&&TP(l)){let f=document.createTextNode("");this.view.observer.ignore(()=>l.node.insertBefore(f,l.node.childNodes[l.offset]||null)),l=c=new St(f,0),a=!0}let h=this.view.observer.selectionRange;(a||!h.focusNode||(!Wi(l.node,l.offset,h.anchorNode,h.anchorOffset)||!Wi(c.node,c.offset,h.focusNode,h.focusOffset))&&!this.suppressWidgetCursorChange(h,o))&&(this.view.observer.ignore(()=>{v.android&&v.chrome&&i.contains(h.focusNode)&&ZP(h.focusNode,i)&&(i.blur(),i.focus({preventScroll:!0}));let f=Bi(this.view.root);if(f)if(o.empty){if(v.gecko){let u=yP(l.node,l.offset);if(u&&u!=3){let Q=(u==1?Uf:Wf)(l.node,l.offset);Q&&(l=new St(Q.node,Q.offset))}}f.collapse(l.node,l.offset),o.bidiLevel!=null&&f.caretBidiLevel!==void 0&&(f.caretBidiLevel=o.bidiLevel)}else if(f.extend){f.collapse(l.node,l.offset);try{f.extend(c.node,c.offset)}catch{}}else{let u=document.createRange();o.anchor>o.head&&([l,c]=[c,l]),u.setEnd(c.node,c.offset),u.setStart(l.node,l.offset),f.removeAllRanges(),f.addRange(u)}s&&this.view.root.activeElement==i&&(i.blur(),r&&r.focus())}),this.view.observer.setSelectionRange(l,c)),this.impreciseAnchor=l.precise?null:new St(h.anchorNode,h.anchorOffset),this.impreciseHead=c.precise?null:new St(h.focusNode,h.focusOffset)}suppressWidgetCursorChange(e,t){return this.hasComposition&&t.empty&&Wi(e.focusNode,e.focusOffset,e.anchorNode,e.anchorOffset)&&this.posFromDOM(e.focusNode,e.focusOffset)==t.head}enforceCursorAssoc(){if(this.hasComposition)return;let{view:e}=this,t=e.state.selection.main,i=Bi(e.root),{anchorNode:r,anchorOffset:n}=e.observer.selectionRange;if(!i||!t.empty||!t.assoc||!i.modify)return;let s=this.lineAt(t.head,t.assoc);if(!s)return;let a=s.posAtStart;if(t.head==a||t.head==a+s.length)return;let o=this.coordsAt(t.head,-1),l=this.coordsAt(t.head,1);if(!o||!l||o.bottom>l.top)return;let c=this.domAtPos(t.head+t.assoc,t.assoc);i.collapse(c.node,c.offset),i.modify("move",t.assoc<0?"forward":"backward","lineboundary"),e.observer.readSelectionRange();let h=e.observer.selectionRange;e.docView.posFromDOM(h.anchorNode,h.anchorOffset)!=t.from&&i.collapse(r,n)}posFromDOM(e,t){let i=this.tile.nearest(e);if(!i)return this.tile.dom.compareDocumentPosition(e)&2?0:this.view.state.doc.length;let r=i.posAtStart;if(i.isComposite()){let n;if(e==i.dom)n=i.dom.childNodes[t];else{let s=Rt(e)==0?0:t==0?-1:1;for(;;){let a=e.parentNode;if(a==i.dom)break;s==0&&a.firstChild!=a.lastChild&&(e==a.firstChild?s=-1:s=1),e=a}s<0?n=e:n=e.nextSibling}if(n==i.dom.firstChild)return r;for(;n&&!de.get(n);)n=n.nextSibling;if(!n)return r+i.length;for(let s=0,a=r;;s++){let o=i.children[s];if(o.dom==n)return a;a+=o.length+o.breakAfter}}else return i.isText()?e==i.dom?r+t:r+(t?i.length:0):r}domAtPos(e,t){let{tile:i,offset:r}=this.tile.resolveBlock(e,t);return i.isWidget()?i.domPosFor(e,t):i.domIn(r,t)}inlineDOMNearPos(e,t){let i,r=-1,n=!1,s,a=-1,o=!1;return this.tile.blockTiles((l,c)=>{if(l.isWidget()){if(l.flags&32&&c>=e)return!0;l.flags&16&&(n=!0)}else{let h=c+l.length;if(c<=e&&(i=l,r=e-c,n=h=e&&!s&&(s=l,a=e-c,o=c>e),c>e&&s)return!0}}),!i&&!s?this.domAtPos(e,t):(n&&s?i=null:o&&i&&(s=null),i&&t<0||!s?i.domIn(r,t):s.domIn(a,t))}coordsAt(e,t){let{tile:i,offset:r}=this.tile.resolveBlock(e,t);return i.isWidget()?i.widget instanceof Gi?null:i.coordsInWidget(r,t,!0):i.coordsIn(r,t)}lineAt(e,t){let{tile:i}=this.tile.resolveBlock(e,t);return i.isLine()?i:null}coordsForChar(e){let{tile:t,offset:i}=this.tile.resolveBlock(e,1);if(!t.isLine())return null;function r(n,s){if(n.isComposite())for(let a of n.children){if(a.length>=s){let o=r(a,s);if(o)return o}if(s-=a.length,s<0)break}else if(n.isText()&&sMath.max(this.view.scrollDOM.clientWidth,this.minWidth)+1,a=-1,o=this.view.textDirection==H.LTR,l=0,c=(h,f,u)=>{for(let Q=0;Qr);Q++){let $=h.children[Q],p=f+$.length,m=$.dom.getBoundingClientRect(),{height:g}=m;if(u&&!Q&&(l+=m.top-u.top),$ instanceof It)p>i&&c($,f,m);else if(f>=i&&(l>0&&t.push(-l),t.push(g+l),l=0,s)){let P=$.dom.lastChild,y=P?hn(P):[];if(y.length){let X=y[y.length-1],x=o?X.right-m.left:m.right-X.left;x>a&&(a=x,this.minWidth=n,this.minWidthFrom=f,this.minWidthTo=p)}}u&&Q==h.children.length-1&&(l+=u.bottom-m.bottom),f=p+$.breakAfter}};return c(this.tile,0,null),t}textDirectionAt(e){let{tile:t}=this.tile.resolveBlock(e,1);return getComputedStyle(t.dom).direction=="rtl"?H.RTL:H.LTR}measureTextSize(){let e=this.tile.blockTiles(s=>{if(s.isLine()&&s.children.length&&s.length<=20){let a=0,o;for(let l of s.children){if(!l.isText()||/[^ -~]/.test(l.text))return;let c=hn(l.dom);if(c.length!=1)return;a+=c[0].width,o=c[0].height}if(a)return{lineHeight:s.dom.getBoundingClientRect().height,charWidth:a/s.length,textHeight:o}}});if(e)return e;let t=document.createElement("div"),i,r,n;return t.className="cm-line",t.style.width="99999px",t.style.position="absolute",t.textContent="abc def ghi jkl mno pqr stu",this.view.observer.ignore(()=>{this.tile.dom.appendChild(t);let s=hn(t.firstChild)[0];i=t.getBoundingClientRect().height,r=s&&s.width?s.width/27:7,n=s&&s.height?s.height:i,t.remove()}),{lineHeight:i,charWidth:r,textHeight:n}}computeBlockGapDeco(){let e=[],t=this.view.viewState;for(let i=0,r=0;;r++){let n=r==t.viewports.length?null:t.viewports[r],s=n?n.from-1:this.view.state.doc.length;if(s>i){let a=(t.lineBlockAt(s).bottom-t.lineBlockAt(i).top)/this.view.scaleY;e.push(Y.replace({widget:new Gi(a),block:!0,inclusive:!0,isBlockGap:!0}).range(i,s))}if(!n)break;i=n.to+1}return Y.set(e)}updateDeco(){let e=1,t=this.view.state.facet(Fi).map(n=>(this.dynamicDecorationMap[e++]=typeof n=="function")?n(this.view):n),i=!1,r=this.view.state.facet(Od).map((n,s)=>{let a=typeof n=="function";return a&&(i=!0),a?n(this.view):n});for(r.length&&(this.dynamicDecorationMap[e++]=i,t.push(M.join(r))),this.decorations=[this.editContextFormatting,...t,this.computeBlockGapDeco(),this.view.viewState.lineGapDeco];etypeof n=="function"?n(this.view):n)}scrollIntoView(e){if(e.isSnapshot){let l=this.view.viewState.lineBlockAt(e.range.head);this.view.scrollDOM.scrollTop=l.top-e.yMargin,this.view.scrollDOM.scrollLeft=e.xMargin;return}for(let l of this.view.state.facet(Kf))try{if(l(this.view,e.range,e))return!0}catch(c){Xe(this.view.state,c,"scroll handler")}let{range:t}=e,i=this.coordsAt(t.head,t.empty?t.assoc:t.head>t.anchor?-1:1),r;if(!i)return;!t.empty&&(r=this.coordsAt(t.anchor,t.anchor>t.head?-1:1))&&(i={left:Math.min(i.left,r.left),top:Math.min(i.top,r.top),right:Math.max(i.right,r.right),bottom:Math.max(i.bottom,r.bottom)});let n=Po(this.view),s={left:i.left-n.left,top:i.top-n.top,right:i.right+n.right,bottom:i.bottom+n.bottom},{offsetWidth:a,offsetHeight:o}=this.view.scrollDOM;iP(this.view.scrollDOM,s,t.headi.isWidget()||i.children.some(t);return t(this.tile.resolveBlock(e,1).tile)}destroy(){qa(this.tile)}};function qa(O,e){let t=e?.get(O);if(t!=1){t==null&&O.destroy();for(let i of O.children)qa(i,e)}}function TP(O){return O.node.nodeType==1&&O.node.firstChild&&(O.offset==0||O.node.childNodes[O.offset-1].contentEditable=="false")&&(O.offset==O.node.childNodes.length||O.node.childNodes[O.offset].contentEditable=="false")}function sd(O,e){let t=O.observer.selectionRange;if(!t.focusNode)return null;let i=Uf(t.focusNode,t.focusOffset),r=Wf(t.focusNode,t.focusOffset),n=i||r;if(r&&i&&r.node!=i.node){let a=de.get(r.node);if(!a||a.isText()&&a.text!=r.node.nodeValue)n=r;else if(O.docView.lastCompositionAfterCursor){let o=de.get(i.node);!o||o.isText()&&o.text!=i.node.nodeValue||(n=r)}}if(O.docView.lastCompositionAfterCursor=n!=i,!n)return null;let s=e-n.offset;return{from:s,to:s+n.node.nodeValue.length,node:n.node}}function bP(O,e,t){let i=sd(O,t);if(!i)return null;let{node:r,from:n,to:s}=i,a=r.nodeValue;if(/[\n\r]/.test(a)||O.state.doc.sliceString(i.from,i.to)!=a)return null;let o=e.invertedDesc;return{range:new ht(o.mapPos(n),o.mapPos(s),n,s),text:r}}function yP(O,e){return O.nodeType!=1?0:(e&&O.childNodes[e-1].contentEditable=="false"?1:0)|(e{ie.from&&(t=!0)}),t}var Gi=class extends _e{constructor(e){super(),this.height=e}toDOM(){let e=document.createElement("div");return e.className="cm-gap",this.updateDOM(e),e}eq(e){return e.height==this.height}updateDOM(e){return e.style.height=this.height+"px",!0}get editable(){return!0}get estimatedHeight(){return this.height}ignoreEvent(){return!1}};function YP(O,e,t=1){let i=O.charCategorizer(e),r=O.doc.lineAt(e),n=e-r.from;if(r.length==0)return S.cursor(e);n==0?t=1:n==r.length&&(t=-1);let s=n,a=n;t<0?s=fe(r.text,n,!1):a=fe(r.text,n);let o=i(r.text.slice(s,a));for(;s>0;){let l=fe(r.text,s,!1);if(i(r.text.slice(l,s))!=o)break;s=l}for(;aO.defaultLineHeight*1.5){let a=O.viewState.heightOracle.textHeight,o=Math.floor((r-t.top-(O.defaultLineHeight-a)*.5)/a);n+=o*O.viewState.heightOracle.lineLength}let s=O.state.sliceDoc(t.from,t.to);return t.from+Kr(s,n,O.state.tabSize)}function Ua(O,e,t){let i=O.lineBlockAt(e);if(Array.isArray(i.type)){let r;for(let n of i.type){if(n.from>e)break;if(!(n.toe)return n;(!r||n.type==Te.Text&&(r.type!=n.type||(t<0?n.frome)))&&(r=n)}}return r||i}return i}function RP(O,e,t,i){let r=Ua(O,e.head,e.assoc||-1),n=!i||r.type!=Te.Text||!(O.lineWrapping||r.widgetLineBreaks)?null:O.coordsAtPos(e.assoc<0&&e.head>r.from?e.head-1:e.head);if(n){let s=O.dom.getBoundingClientRect(),a=O.textDirectionAt(r.from),o=O.posAtCoords({x:t==(a==H.LTR)?s.right-1:s.left+1,y:(n.top+n.bottom)/2});if(o!=null)return S.cursor(o,t?-1:1)}return S.cursor(t?r.to:r.from,t?-1:1)}function Of(O,e,t,i){let r=O.state.doc.lineAt(e.head),n=O.bidiSpans(r),s=O.textDirectionAt(r.from);for(let a=e,o=null;;){let l=uP(r,n,s,a,t),c=Af;if(!l){if(r.number==(t?O.state.doc.lines:1))return a;c=` +`,r=O.state.doc.line(r.number+(t?1:-1)),n=O.bidiSpans(r),l=O.visualLineSide(r,!t)}if(o){if(!o(c))return a}else{if(!i)return l;o=i(c)}a=l}}function VP(O,e,t){let i=O.state.charCategorizer(e),r=i(t);return n=>{let s=i(n);return r==ee.Space&&(r=s),r==s}}function qP(O,e,t,i){let r=e.head,n=t?1:-1;if(r==(t?O.state.doc.length:0))return S.cursor(r,e.assoc);let s=e.goalColumn,a,o=O.contentDOM.getBoundingClientRect(),l=O.coordsAtPos(r,e.assoc||-1),c=O.documentTop;if(l)s==null&&(s=l.left-o.left),a=n<0?l.top:l.bottom;else{let u=O.viewState.lineBlockAt(r);s==null&&(s=Math.min(o.right-o.left,O.defaultCharacterWidth*(r-u.from))),a=(n<0?u.top:u.bottom)+c}let h=o.left+s,f=i??O.viewState.heightOracle.textHeight>>1;for(let u=0;;u+=10){let Q=a+(f+u)*n,$=Wa(O,{x:h,y:Q},!1,n);return S.cursor($.pos,$.assoc,void 0,s)}}function Ei(O,e,t){for(;;){let i=0;for(let r of O)r.between(e-1,e+1,(n,s,a)=>{if(e>n&&er(O)),t.from,e.head>t.from?-1:1);return i==t.from?t:S.cursor(i,iO.viewState.docHeight)return new rt(O.state.doc.length,-1);if(l=O.elementAtHeight(o),i==null)break;if(l.type==Te.Text){let f=O.docView.coordsAt(i<0?l.from:l.to,i);if(f&&(i<0?f.top<=o+n:f.bottom>=o+n))break}let h=O.viewState.heightOracle.textHeight/2;o=i>0?l.bottom+h:l.top-h}if(O.viewport.from>=l.to||O.viewport.to<=l.from){if(t)return null;if(l.type==Te.Text){let h=_P(O,r,l,s,a);return new rt(h,h==l.from?1:-1)}}if(l.type!=Te.Text)return o<(l.top+l.bottom)/2?new rt(l.from,1):new rt(l.to,-1);let c=O.docView.lineAt(l.from,2);return(!c||c.length!=l.length)&&(c=O.docView.lineAt(l.from,-2)),od(O,c,l.from,s,a)}function od(O,e,t,i,r){let n=-1,s=null,a=1e9,o=1e9,l=r,c=r,h=(f,u)=>{for(let Q=0;Qi?$.left-i:$.rightr?$.top-r:$.bottom=l&&(l=Math.min($.top,l),c=Math.max($.bottom,c),m=0),(n<0||(m-o||p-a)<0)&&(n>=0&&o&&a=l+2?o=0:(n=u,a=p,o=m,s=$))}};if(e.isText()){for(let u=0;u(s.left+s.right)/2==(rf(O,n+t)==H.LTR)?new rt(t+fe(e.text,n),-1):new rt(t+n,1)}else{if(!e.length)return new rt(t,1);for(let $=0;$(s.left+s.right)/2==(rf(O,n+t)==H.LTR)?new rt(u+f.length,-1):new rt(u,1)}}function rf(O,e){let t=O.state.doc.lineAt(e);return O.bidiSpans(t)[ct.find(O.bidiSpans(t),e-t.from,-1,1)].dir}var qi="\uFFFF",ja=class{constructor(e,t){this.points=e,this.view=t,this.text="",this.lineSeparator=t.state.facet(I.lineSeparator)}append(e){this.text+=e}lineBreak(){this.text+=qi}readRange(e,t){if(!e)return this;let i=e.parentNode;for(let r=e;;){this.findPointBefore(i,r);let n=this.text.length;this.readNode(r);let s=de.get(r),a=r.nextSibling;if(a==t){s?.breakAfter&&!a&&i!=this.view.contentDOM&&this.lineBreak();break}let o=de.get(a);(s&&o?s.breakAfter:(s?s.breakAfter:mn(r))||mn(a)&&(r.nodeName!="BR"||s?.isWidget())&&this.text.length>n)&&!UP(a,t)&&this.lineBreak(),r=a}return this.findPointBefore(i,t),this}readTextNode(e){let t=e.nodeValue;for(let i of this.points)i.node==e&&(i.pos=this.text.length+Math.min(i.offset,t.length));for(let i=0,r=this.lineSeparator?null:/\r\n?|\n/g;;){let n=-1,s=1,a;if(this.lineSeparator?(n=t.indexOf(this.lineSeparator,i),s=this.lineSeparator.length):(a=r.exec(t))&&(n=a.index,s=a[0].length),this.append(t.slice(i,n<0?t.length:n)),n<0)break;if(this.lineBreak(),s>1)for(let o of this.points)o.node==e&&o.pos>this.text.length&&(o.pos-=s-1);i=n+s}}readNode(e){let t=de.get(e),i=t&&t.overrideDOMText;if(i!=null){this.findPointInside(e,i.length);for(let r=i.iter();!r.next().done;)r.lineBreak?this.lineBreak():this.append(r.value)}else e.nodeType==3?this.readTextNode(e):e.nodeName=="BR"?e.nextSibling&&this.lineBreak():e.nodeType==1&&this.readRange(e.firstChild,null)}findPointBefore(e,t){for(let i of this.points)i.node==e&&e.childNodes[i.offset]==t&&(i.pos=this.text.length)}findPointInside(e,t){for(let i of this.points)(e.nodeType==3?i.node==e:e.contains(i.node))&&(i.pos=this.text.length+(zP(e,i.node,i.offset)?t:0))}};function zP(O,e,t){for(;;){if(!e||t-1;let{impreciseHead:n,impreciseAnchor:s}=e.docView;if(e.state.readOnly&&t>-1)this.newSel=null;else if(t>-1&&(this.bounds=ld(e.docView.tile,t,i,0))){let a=n||s?[]:jP(e),o=new ja(a,e);o.readRange(this.bounds.startDOM,this.bounds.endDOM),this.text=o.text,this.newSel=CP(a,this.bounds.from)}else{let a=e.observer.selectionRange,o=n&&n.node==a.focusNode&&n.offset==a.focusOffset||!Ta(e.contentDOM,a.focusNode)?e.state.selection.main.head:e.docView.posFromDOM(a.focusNode,a.focusOffset),l=s&&s.node==a.anchorNode&&s.offset==a.anchorOffset||!Ta(e.contentDOM,a.anchorNode)?e.state.selection.main.anchor:e.docView.posFromDOM(a.anchorNode,a.anchorOffset),c=e.viewport;if((v.ios||v.chrome)&&e.state.selection.main.empty&&o!=l&&(c.from>0||c.to-1&&e.state.selection.ranges.length>1?this.newSel=e.state.selection.replaceRange(S.range(l,o)):this.newSel=S.single(l,o)}}};function ld(O,e,t,i){if(O.isComposite()){let r=-1,n=-1,s=-1,a=-1;for(let o=0,l=i,c=i;ot)return ld(h,e,t,l);if(f>=e&&r==-1&&(r=o,n=l),l>t&&h.dom.parentNode==O.dom){s=o,a=c;break}c=f,l=f+h.breakAfter}return{from:n,to:a<0?i+O.length:a,startDOM:(r?O.children[r-1].dom.nextSibling:null)||O.dom.firstChild,endDOM:s=0?O.children[s].dom:null}}else return O.isText()?{from:i,to:i+O.length,startDOM:O.dom,endDOM:O.dom.nextSibling}:null}function cd(O,e){let t,{newSel:i}=e,r=O.state.selection.main,n=O.inputState.lastKeyTime>Date.now()-100?O.inputState.lastKeyCode:-1;if(e.bounds){let{from:s,to:a}=e.bounds,o=r.from,l=null;(n===8||v.android&&e.text.length=r.from&&t.to<=r.to&&(t.from!=r.from||t.to!=r.to)&&r.to-r.from-(t.to-t.from)<=4?t={from:r.from,to:r.to,insert:O.state.doc.slice(r.from,t.from).append(t.insert).append(O.state.doc.slice(t.to,r.to))}:O.state.doc.lineAt(r.from).toDate.now()-50?t={from:r.from,to:r.to,insert:O.state.toText(O.inputState.insertingText)}:v.chrome&&t&&t.from==t.to&&t.from==r.head&&t.insert.toString()==` + `&&O.lineWrapping&&(i&&(i=S.single(i.main.anchor-1,i.main.head-1)),t={from:r.from,to:r.to,insert:E.of([" "])}),t)return So(O,t,i,n);if(i&&!i.main.eq(r)){let s=!1,a="select";return O.inputState.lastSelectionTime>Date.now()-50&&(O.inputState.lastSelectionOrigin=="select"&&(s=!0),a=O.inputState.lastSelectionOrigin,a=="select.pointer"&&(i=ad(O.state.facet(Ji).map(o=>o(O)),i))),O.dispatch({selection:i,scrollIntoView:s,userEvent:a}),!0}else return!1}function So(O,e,t,i=-1){if(v.ios&&O.inputState.flushIOSKey(e))return!0;let r=O.state.selection.main;if(v.android&&(e.to==r.to&&(e.from==r.from||e.from==r.from-1&&O.state.sliceDoc(e.from,r.from)==" ")&&e.insert.length==1&&e.insert.lines==2&&ii(O.contentDOM,"Enter",13)||(e.from==r.from-1&&e.to==r.to&&e.insert.length==0||i==8&&e.insert.lengthr.head)&&ii(O.contentDOM,"Backspace",8)||e.from==r.from&&e.to==r.to+1&&e.insert.length==0&&ii(O.contentDOM,"Delete",46)))return!0;let n=e.insert.toString();O.inputState.composing>=0&&O.inputState.composing++;let s,a=()=>s||(s=WP(O,e,t));return O.state.facet(Bf).some(o=>o(O,e.from,e.to,n,a))||O.dispatch(a()),!0}function WP(O,e,t){let i,r=O.state,n=r.selection.main,s=-1;if(e.from==e.to&&e.fromn.to){let o=e.fromh(O)),l,o);e.from==c&&(s=c)}if(s>-1)i={changes:e,selection:S.cursor(e.from+e.insert.length,-1)};else if(e.from>=n.from&&e.to<=n.to&&e.to-e.from>=(n.to-n.from)/3&&(!t||t.main.empty&&t.main.from==e.from+e.insert.length)&&O.inputState.composing<0){let o=n.frome.to?r.sliceDoc(e.to,n.to):"";i=r.replaceSelection(O.state.toText(o+e.insert.sliceString(0,void 0,O.state.lineBreak)+l))}else{let o=r.changes(e),l=t&&t.main.to<=o.newLength?t.main:void 0;if(r.selection.ranges.length>1&&(O.inputState.composing>=0||O.inputState.compositionPendingChange)&&e.to<=n.to+10&&e.to>=n.to-10){let c=O.state.sliceDoc(e.from,e.to),h,f=t&&sd(O,t.main.head);if(f){let Q=e.insert.length-(e.to-e.from);h={from:f.from,to:f.to-Q}}else h=O.state.doc.lineAt(n.head);let u=n.to-e.to;i=r.changeByRange(Q=>{if(Q.from==n.from&&Q.to==n.to)return{changes:o,range:l||Q.map(o)};let $=Q.to-u,p=$-c.length;if(O.state.sliceDoc(p,$)!=c||$>=h.from&&p<=h.to)return{range:Q};let m=r.changes({from:p,to:$,insert:e.insert}),g=Q.to-n.to;return{changes:m,range:l?S.range(Math.max(0,l.anchor+g),Math.max(0,l.head+g)):Q.map(m)}})}else i={changes:o,selection:l&&r.selection.replaceRange(l)}}let a="input.type";return(O.composing||O.inputState.compositionPendingChange&&O.inputState.compositionEndedAt>Date.now()-50)&&(O.inputState.compositionPendingChange=!1,a+=".compose",O.inputState.compositionFirstChange&&(a+=".start",O.inputState.compositionFirstChange=!1)),r.update(i,{userEvent:a,scrollIntoView:!0})}function hd(O,e,t,i){let r=Math.min(O.length,e.length),n=0;for(;n0&&a>0&&O.charCodeAt(s-1)==e.charCodeAt(a-1);)s--,a--;if(i=="end"){let o=Math.max(0,n-Math.min(s,a));t-=s+o-n}if(s=s?n-t:0;n-=o,a=n+(a-s),s=n}else if(a=a?n-t:0;n-=o,s=n+(s-a),a=n}return{from:n,toA:s,toB:a}}function jP(O){let e=[];if(O.root.activeElement!=O.contentDOM)return e;let{anchorNode:t,anchorOffset:i,focusNode:r,focusOffset:n}=O.observer.selectionRange;return t&&(e.push(new Tn(t,i)),(r!=t||n!=i)&&e.push(new Tn(r,n))),e}function CP(O,e){if(O.length==0)return null;let t=O[0].pos,i=O.length==2?O[1].pos:t;return t>-1&&i>-1?S.single(t+e,i+e):null}var Ga=class{setSelectionOrigin(e){this.lastSelectionOrigin=e,this.lastSelectionTime=Date.now()}constructor(e){this.view=e,this.lastKeyCode=0,this.lastKeyTime=0,this.lastTouchTime=0,this.lastFocusTime=0,this.lastScrollTop=0,this.lastScrollLeft=0,this.pendingIOSKey=void 0,this.tabFocusMode=-1,this.lastSelectionOrigin=null,this.lastSelectionTime=0,this.lastContextMenu=0,this.scrollHandlers=[],this.handlers=Object.create(null),this.composing=-1,this.compositionFirstChange=null,this.compositionEndedAt=0,this.compositionPendingKey=!1,this.compositionPendingChange=!1,this.insertingText="",this.insertingTextAt=0,this.mouseSelection=null,this.draggedContent=null,this.handleEvent=this.handleEvent.bind(this),this.notifiedFocused=e.hasFocus,v.safari&&e.contentDOM.addEventListener("input",()=>null),v.gecko&&eS(e.contentDOM.ownerDocument)}handleEvent(e){!IP(this.view,e)||this.ignoreDuringComposition(e)||e.type=="keydown"&&this.keydown(e)||(this.view.updateState!=0?Promise.resolve().then(()=>this.runHandlers(e.type,e)):this.runHandlers(e.type,e))}runHandlers(e,t){let i=this.handlers[e];if(i){for(let r of i.observers)r(this.view,t);for(let r of i.handlers){if(t.defaultPrevented)break;if(r(this.view,t)){t.preventDefault();break}}}}ensureHandlers(e){let t=GP(e),i=this.handlers,r=this.view.contentDOM;for(let n in t)if(n!="scroll"){let s=!t[n].handlers.length,a=i[n];a&&s!=!a.handlers.length&&(r.removeEventListener(n,this.handleEvent),a=null),a||r.addEventListener(n,this.handleEvent,{passive:s})}for(let n in i)n!="scroll"&&!t[n]&&r.removeEventListener(n,this.handleEvent);this.handlers=t}keydown(e){if(this.lastKeyCode=e.keyCode,this.lastKeyTime=Date.now(),e.keyCode==9&&this.tabFocusMode>-1&&(!this.tabFocusMode||Date.now()<=this.tabFocusMode))return!0;if(this.tabFocusMode>0&&e.keyCode!=27&&dd.indexOf(e.keyCode)<0&&(this.tabFocusMode=-1),v.android&&v.chrome&&!e.synthetic&&(e.keyCode==13||e.keyCode==8))return this.view.observer.delayAndroidKey(e.key,e.keyCode),!0;let t;return v.ios&&!e.synthetic&&!e.altKey&&!e.metaKey&&((t=fd.find(i=>i.keyCode==e.keyCode))&&!e.ctrlKey||EP.indexOf(e.key)>-1&&e.ctrlKey&&!e.shiftKey)?(this.pendingIOSKey=t||e,setTimeout(()=>this.flushIOSKey(),250),!0):(e.keyCode!=229&&this.view.observer.forceFlush(),!1)}flushIOSKey(e){let t=this.pendingIOSKey;return!t||t.key=="Enter"&&e&&e.from0?!0:v.safari&&!v.ios&&this.compositionPendingKey&&Date.now()-this.compositionEndedAt<100?(this.compositionPendingKey=!1,!0):!1}startMouseSelection(e){this.mouseSelection&&this.mouseSelection.destroy(),this.mouseSelection=e}update(e){this.view.observer.update(e),this.mouseSelection&&this.mouseSelection.update(e),this.draggedContent&&e.docChanged&&(this.draggedContent=this.draggedContent.map(e.changes)),e.transactions.length&&(this.lastKeyCode=this.lastSelectionTime=0)}destroy(){this.mouseSelection&&this.mouseSelection.destroy()}};function nf(O,e){return(t,i)=>{try{return e.call(O,i,t)}catch(r){Xe(t.state,r)}}}function GP(O){let e=Object.create(null);function t(i){return e[i]||(e[i]={observers:[],handlers:[]})}for(let i of O){let r=i.spec,n=r&&r.plugin.domEventHandlers,s=r&&r.plugin.domEventObservers;if(n)for(let a in n){let o=n[a];o&&t(a).handlers.push(nf(i.value,o))}if(s)for(let a in s){let o=s[a];o&&t(a).observers.push(nf(i.value,o))}}for(let i in ft)t(i).handlers.push(ft[i]);for(let i in nt)t(i).observers.push(nt[i]);return e}var fd=[{key:"Backspace",keyCode:8,inputType:"deleteContentBackward"},{key:"Enter",keyCode:13,inputType:"insertParagraph"},{key:"Enter",keyCode:13,inputType:"insertLineBreak"},{key:"Delete",keyCode:46,inputType:"deleteContentForward"}],EP="dthko",dd=[16,17,18,20,91,92,224,225],tn=6;function On(O){return Math.max(0,O)*.7+8}function AP(O,e){return Math.max(Math.abs(O.clientX-e.clientX),Math.abs(O.clientY-e.clientY))}var Ea=class{constructor(e,t,i,r){this.view=e,this.startEvent=t,this.style=i,this.mustSelect=r,this.scrollSpeed={x:0,y:0},this.scrolling=-1,this.lastEvent=t,this.scrollParents=rP(e.contentDOM),this.atoms=e.state.facet(Ji).map(s=>s(e));let n=e.contentDOM.ownerDocument;n.addEventListener("mousemove",this.move=this.move.bind(this)),n.addEventListener("mouseup",this.up=this.up.bind(this)),this.extend=t.shiftKey,this.multiple=e.state.facet(I.allowMultipleSelections)&&LP(e,t),this.dragging=DP(e,t)&&$d(t)==1?null:!1}start(e){this.dragging===!1&&this.select(e)}move(e){if(e.buttons==0)return this.destroy();if(this.dragging||this.dragging==null&&AP(this.startEvent,e)<10)return;this.select(this.lastEvent=e);let t=0,i=0,r=0,n=0,s=this.view.win.innerWidth,a=this.view.win.innerHeight;this.scrollParents.x&&({left:r,right:s}=this.scrollParents.x.getBoundingClientRect()),this.scrollParents.y&&({top:n,bottom:a}=this.scrollParents.y.getBoundingClientRect());let o=Po(this.view);e.clientX-o.left<=r+tn?t=-On(r-e.clientX):e.clientX+o.right>=s-tn&&(t=On(e.clientX-s)),e.clientY-o.top<=n+tn?i=-On(n-e.clientY):e.clientY+o.bottom>=a-tn&&(i=On(e.clientY-a)),this.setScrollSpeed(t,i)}up(e){this.dragging==null&&this.select(this.lastEvent),this.dragging||e.preventDefault(),this.destroy()}destroy(){this.setScrollSpeed(0,0);let e=this.view.contentDOM.ownerDocument;e.removeEventListener("mousemove",this.move),e.removeEventListener("mouseup",this.up),this.view.inputState.mouseSelection=this.view.inputState.draggedContent=null}setScrollSpeed(e,t){this.scrollSpeed={x:e,y:t},e||t?this.scrolling<0&&(this.scrolling=setInterval(()=>this.scroll(),50)):this.scrolling>-1&&(clearInterval(this.scrolling),this.scrolling=-1)}scroll(){let{x:e,y:t}=this.scrollSpeed;e&&this.scrollParents.x&&(this.scrollParents.x.scrollLeft+=e,e=0),t&&this.scrollParents.y&&(this.scrollParents.y.scrollTop+=t,t=0),(e||t)&&this.view.win.scrollBy(e,t),this.dragging===!1&&this.select(this.lastEvent)}select(e){let{view:t}=this,i=ad(this.atoms,this.style.get(e,this.extend,this.multiple));(this.mustSelect||!i.eq(t.state.selection,this.dragging===!1))&&this.view.dispatch({selection:i,userEvent:"select.pointer"}),this.mustSelect=!1}update(e){e.transactions.some(t=>t.isUserEvent("input.type"))?this.destroy():this.style.update(e)&&setTimeout(()=>this.select(this.lastEvent),20)}};function LP(O,e){let t=O.state.facet(Lf);return t.length?t[0](e):v.mac?e.metaKey:e.ctrlKey}function MP(O,e){let t=O.state.facet(Mf);return t.length?t[0](e):v.mac?!e.altKey:!e.ctrlKey}function DP(O,e){let{main:t}=O.state.selection;if(t.empty)return!1;let i=Bi(O.root);if(!i||i.rangeCount==0)return!0;let r=i.getRangeAt(0).getClientRects();for(let n=0;n=e.clientX&&s.top<=e.clientY&&s.bottom>=e.clientY)return!0}return!1}function IP(O,e){if(!e.bubbles)return!0;if(e.defaultPrevented)return!1;for(let t=e.target,i;t!=O.contentDOM;t=t.parentNode)if(!t||t.nodeType==11||(i=de.get(t))&&i.isWidget()&&!i.isHidden&&i.widget.ignoreEvent(e))return!1;return!0}var ft=Object.create(null),nt=Object.create(null),ud=v.ie&&v.ie_version<15||v.ios&&v.webkit_version<604;function BP(O){let e=O.dom.parentNode;if(!e)return;let t=e.appendChild(document.createElement("textarea"));t.style.cssText="position: fixed; left: -10000px; top: 10px",t.focus(),setTimeout(()=>{O.focus(),t.remove(),Qd(O,t.value)},50)}function Vn(O,e,t){for(let i of O.facet(e))t=i(t,O);return t}function Qd(O,e){e=Vn(O.state,po,e);let{state:t}=O,i,r=1,n=t.toText(e),s=n.lines==t.selection.ranges.length;if(Aa!=null&&t.selection.ranges.every(o=>o.empty)&&Aa==n.toString()){let o=-1;i=t.changeByRange(l=>{let c=t.doc.lineAt(l.from);if(c.from==o)return{range:l};o=c.from;let h=t.toText((s?n.line(r++).text:e)+t.lineBreak);return{changes:{from:c.from,insert:h},range:S.cursor(l.from+h.length)}})}else s?i=t.changeByRange(o=>{let l=n.line(r++);return{changes:{from:o.from,to:o.to,insert:l.text},range:S.cursor(o.from+l.length)}}):i=t.replaceSelection(n);O.dispatch(i,{userEvent:"input.paste",scrollIntoView:!0})}nt.scroll=O=>{O.inputState.lastScrollTop=O.scrollDOM.scrollTop,O.inputState.lastScrollLeft=O.scrollDOM.scrollLeft};ft.keydown=(O,e)=>(O.inputState.setSelectionOrigin("select"),e.keyCode==27&&O.inputState.tabFocusMode!=0&&(O.inputState.tabFocusMode=Date.now()+2e3),!1);nt.touchstart=(O,e)=>{O.inputState.lastTouchTime=Date.now(),O.inputState.setSelectionOrigin("select.pointer")};nt.touchmove=O=>{O.inputState.setSelectionOrigin("select.pointer")};ft.mousedown=(O,e)=>{if(O.observer.flush(),O.inputState.lastTouchTime>Date.now()-2e3)return!1;let t=null;for(let i of O.state.facet(Df))if(t=i(O,e),t)break;if(!t&&e.button==0&&(t=FP(O,e)),t){let i=!O.hasFocus;O.inputState.startMouseSelection(new Ea(O,e,t,i)),i&&O.observer.ignore(()=>{qf(O.contentDOM);let n=O.root.activeElement;n&&!n.contains(O.contentDOM)&&n.blur()});let r=O.inputState.mouseSelection;if(r)return r.start(e),r.dragging===!1}else O.inputState.setSelectionOrigin("select.pointer");return!1};function sf(O,e,t,i){if(i==1)return S.cursor(e,t);if(i==2)return YP(O.state,e,t);{let r=O.docView.lineAt(e,t),n=O.state.doc.lineAt(r?r.posAtEnd:e),s=r?r.posAtStart:n.from,a=r?r.posAtEnd:n.to;return aDate.now()-400&&Math.abs(e.clientX-O.clientX)<2&&Math.abs(e.clientY-O.clientY)<2?(of+1)%3:1}function FP(O,e){let t=O.posAndSideAtCoords({x:e.clientX,y:e.clientY},!1),i=$d(e),r=O.state.selection;return{update(n){n.docChanged&&(t.pos=n.changes.mapPos(t.pos),r=r.map(n.changes))},get(n,s,a){let o=O.posAndSideAtCoords({x:n.clientX,y:n.clientY},!1),l,c=sf(O,o.pos,o.assoc,i);if(t.pos!=o.pos&&!s){let h=sf(O,t.pos,t.assoc,i),f=Math.min(h.from,c.from),u=Math.max(h.to,c.to);c=f1&&(l=HP(r,o.pos))?l:a?r.addRange(c):S.create([c])}}}function HP(O,e){for(let t=0;t=e)return S.create(O.ranges.slice(0,t).concat(O.ranges.slice(t+1)),O.mainIndex==t?0:O.mainIndex-(O.mainIndex>t?1:0))}return null}ft.dragstart=(O,e)=>{let{selection:{main:t}}=O.state;if(e.target.draggable){let r=O.docView.tile.nearest(e.target);if(r&&r.isWidget()){let n=r.posAtStart,s=n+r.length;(n>=t.to||s<=t.from)&&(t=S.range(n,s))}}let{inputState:i}=O;return i.mouseSelection&&(i.mouseSelection.dragging=!0),i.draggedContent=t,e.dataTransfer&&(e.dataTransfer.setData("Text",Vn(O.state,mo,O.state.sliceDoc(t.from,t.to))),e.dataTransfer.effectAllowed="copyMove"),!1};ft.dragend=O=>(O.inputState.draggedContent=null,!1);function cf(O,e,t,i){if(t=Vn(O.state,po,t),!t)return;let r=O.posAtCoords({x:e.clientX,y:e.clientY},!1),{draggedContent:n}=O.inputState,s=i&&n&&MP(O,e)?{from:n.from,to:n.to}:null,a={from:r,insert:t},o=O.state.changes(s?[s,a]:a);O.focus(),O.dispatch({changes:o,selection:{anchor:o.mapPos(r,-1),head:o.mapPos(r,1)},userEvent:s?"move.drop":"input.drop"}),O.inputState.draggedContent=null}ft.drop=(O,e)=>{if(!e.dataTransfer)return!1;if(O.state.readOnly)return!0;let t=e.dataTransfer.files;if(t&&t.length){let i=Array(t.length),r=0,n=()=>{++r==t.length&&cf(O,e,i.filter(s=>s!=null).join(O.state.lineBreak),!1)};for(let s=0;s{/[\x00-\x08\x0e-\x1f]{2}/.test(a.result)||(i[s]=a.result),n()},a.readAsText(t[s])}return!0}else{let i=e.dataTransfer.getData("Text");if(i)return cf(O,e,i,!0),!0}return!1};ft.paste=(O,e)=>{if(O.state.readOnly)return!0;O.observer.flush();let t=ud?null:e.clipboardData;return t?(Qd(O,t.getData("text/plain")||t.getData("text/uri-list")),!0):(BP(O),!1)};function KP(O,e){let t=O.dom.parentNode;if(!t)return;let i=t.appendChild(document.createElement("textarea"));i.style.cssText="position: fixed; left: -10000px; top: 10px",i.value=e,i.focus(),i.selectionEnd=e.length,i.selectionStart=0,setTimeout(()=>{i.remove(),O.focus()},50)}function JP(O){let e=[],t=[],i=!1;for(let r of O.selection.ranges)r.empty||(e.push(O.sliceDoc(r.from,r.to)),t.push(r));if(!e.length){let r=-1;for(let{from:n}of O.selection.ranges){let s=O.doc.lineAt(n);s.number>r&&(e.push(s.text),t.push({from:s.from,to:Math.min(O.doc.length,s.to+1)})),r=s.number}i=!0}return{text:Vn(O,mo,e.join(O.lineBreak)),ranges:t,linewise:i}}var Aa=null;ft.copy=ft.cut=(O,e)=>{let{text:t,ranges:i,linewise:r}=JP(O.state);if(!t&&!r)return!1;Aa=r?t:null,e.type=="cut"&&!O.state.readOnly&&O.dispatch({changes:i,scrollIntoView:!0,userEvent:"delete.cut"});let n=ud?null:e.clipboardData;return n?(n.clearData(),n.setData("text/plain",t),!0):(KP(O,t),!1)};var pd=qe.define();function md(O,e){let t=[];for(let i of O.facet(Nf)){let r=i(O,e);r&&t.push(r)}return t.length?O.update({effects:t,annotations:pd.of(!0)}):null}function gd(O){setTimeout(()=>{let e=O.hasFocus;if(e!=O.inputState.notifiedFocused){let t=md(O.state,e);t?O.dispatch(t):O.update([])}},10)}nt.focus=O=>{O.inputState.lastFocusTime=Date.now(),!O.scrollDOM.scrollTop&&(O.inputState.lastScrollTop||O.inputState.lastScrollLeft)&&(O.scrollDOM.scrollTop=O.inputState.lastScrollTop,O.scrollDOM.scrollLeft=O.inputState.lastScrollLeft),gd(O)};nt.blur=O=>{O.observer.clearSelectionRange(),gd(O)};nt.compositionstart=nt.compositionupdate=O=>{O.observer.editContext||(O.inputState.compositionFirstChange==null&&(O.inputState.compositionFirstChange=!0),O.inputState.composing<0&&(O.inputState.composing=0))};nt.compositionend=O=>{O.observer.editContext||(O.inputState.composing=-1,O.inputState.compositionEndedAt=Date.now(),O.inputState.compositionPendingKey=!0,O.inputState.compositionPendingChange=O.observer.pendingRecords().length>0,O.inputState.compositionFirstChange=null,v.chrome&&v.android?O.observer.flushSoon():O.inputState.compositionPendingChange?Promise.resolve().then(()=>O.observer.flush()):setTimeout(()=>{O.inputState.composing<0&&O.docView.hasComposition&&O.update([])},50))};nt.contextmenu=O=>{O.inputState.lastContextMenu=Date.now()};ft.beforeinput=(O,e)=>{var t,i;if((e.inputType=="insertText"||e.inputType=="insertCompositionText")&&(O.inputState.insertingText=e.data,O.inputState.insertingTextAt=Date.now()),e.inputType=="insertReplacementText"&&O.observer.editContext){let n=(t=e.dataTransfer)===null||t===void 0?void 0:t.getData("text/plain"),s=e.getTargetRanges();if(n&&s.length){let a=s[0],o=O.posAtDOM(a.startContainer,a.startOffset),l=O.posAtDOM(a.endContainer,a.endOffset);return So(O,{from:o,to:l,insert:O.state.toText(n)},null),!0}}let r;if(v.chrome&&v.android&&(r=fd.find(n=>n.inputType==e.inputType))&&(O.observer.delayAndroidKey(r.key,r.keyCode),r.key=="Backspace"||r.key=="Delete")){let n=((i=window.visualViewport)===null||i===void 0?void 0:i.height)||0;setTimeout(()=>{var s;(((s=window.visualViewport)===null||s===void 0?void 0:s.height)||0)>n+10&&O.hasFocus&&(O.contentDOM.blur(),O.focus())},100)}return v.ios&&e.inputType=="deleteContentForward"&&O.observer.flushSoon(),v.safari&&e.inputType=="insertText"&&O.inputState.composing>=0&&setTimeout(()=>nt.compositionend(O,e),20),!1};var hf=new Set;function eS(O){hf.has(O)||(hf.add(O),O.addEventListener("copy",()=>{}),O.addEventListener("cut",()=>{}))}var ff=["pre-wrap","normal","pre-line","break-spaces"],oi=!1;function df(){oi=!1}var La=class{constructor(e){this.lineWrapping=e,this.doc=E.empty,this.heightSamples={},this.lineHeight=14,this.charWidth=7,this.textHeight=14,this.lineLength=30}heightForGap(e,t){let i=this.doc.lineAt(t).number-this.doc.lineAt(e).number+1;return this.lineWrapping&&(i+=Math.max(0,Math.ceil((t-e-i*this.lineLength*.5)/this.lineLength))),this.lineHeight*i}heightForLine(e){return this.lineWrapping?(1+Math.max(0,Math.ceil((e-this.lineLength)/Math.max(1,this.lineLength-5))))*this.lineHeight:this.lineHeight}setDoc(e){return this.doc=e,this}mustRefreshForWrapping(e){return ff.indexOf(e)>-1!=this.lineWrapping}mustRefreshForHeights(e){let t=!1;for(let i=0;i-1,o=Math.round(t)!=Math.round(this.lineHeight)||this.lineWrapping!=a;if(this.lineWrapping=a,this.lineHeight=t,this.charWidth=i,this.textHeight=r,this.lineLength=n,o){this.heightSamples={};for(let l=0;l0}set outdated(e){this.flags=(e?2:0)|this.flags&-3}setHeight(e){this.height!=e&&(Math.abs(this.height-e)>fn&&(oi=!0),this.height=e)}replace(e,t,i){return O.of(i)}decomposeLeft(e,t){t.push(this)}decomposeRight(e,t){t.push(this)}applyChanges(e,t,i,r){let n=this,s=i.doc;for(let a=r.length-1;a>=0;a--){let{fromA:o,toA:l,fromB:c,toB:h}=r[a],f=n.lineAt(o,oe.ByPosNoHeight,i.setDoc(t),0,0),u=f.to>=l?f:n.lineAt(l,oe.ByPosNoHeight,i,0,0);for(h+=u.to-l,l=u.to;a>0&&f.from<=r[a-1].toA;)o=r[a-1].fromA,c=r[a-1].fromB,a--,on*2){let a=e[t-1];a.break?e.splice(--t,1,a.left,null,a.right):e.splice(--t,1,a.left,a.right),i+=1+a.break,r-=a.size}else if(n>r*2){let a=e[i];a.break?e.splice(i,1,a.left,null,a.right):e.splice(i,1,a.left,a.right),i+=2+a.break,n-=a.size}else break;else if(r=n&&s(this.lineAt(0,oe.ByPos,i,r,n))}setMeasuredHeight(e){let t=e.heights[e.index++];t<0?(this.spaceAbove=-t,t=e.heights[e.index++]):this.spaceAbove=0,this.setHeight(t)}updateHeight(e,t=0,i=!1,r){return r&&r.from<=t&&r.more&&this.setMeasuredHeight(r),this.outdated=!1,this}toString(){return`block(${this.length})`}},it=class O extends yn{constructor(e,t,i){super(e,t,null),this.collapsed=0,this.widgetHeight=0,this.breaks=0,this.spaceAbove=i}mainBlock(e,t){return new lt(t,this.length,e+this.spaceAbove,this.height-this.spaceAbove,this.breaks)}replace(e,t,i){let r=i[0];return i.length==1&&(r instanceof O||r instanceof Bt&&r.flags&4)&&Math.abs(this.length-r.length)<10?(r instanceof Bt?r=new O(r.length,this.height,this.spaceAbove):r.height=this.height,this.outdated||(r.outdated=!1),r):De.of(i)}updateHeight(e,t=0,i=!1,r){return r&&r.from<=t&&r.more?this.setMeasuredHeight(r):(i||this.outdated)&&(this.spaceAbove=0,this.setHeight(Math.max(this.widgetHeight,e.heightForLine(this.length-this.collapsed))+this.breaks*e.lineHeight)),this.outdated=!1,this}toString(){return`line(${this.length}${this.collapsed?-this.collapsed:""}${this.widgetHeight?":"+this.widgetHeight:""})`}},Bt=class O extends De{constructor(e){super(e,0)}heightMetrics(e,t){let i=e.doc.lineAt(t).number,r=e.doc.lineAt(t+this.length).number,n=r-i+1,s,a=0;if(e.lineWrapping){let o=Math.min(this.height,e.lineHeight*n);s=o/n,this.length>n+1&&(a=(this.height-o)/(this.length-n-1))}else s=this.height/n;return{firstLine:i,lastLine:r,perLine:s,perChar:a}}blockAt(e,t,i,r){let{firstLine:n,lastLine:s,perLine:a,perChar:o}=this.heightMetrics(t,r);if(t.lineWrapping){let l=r+(e0){let n=i[i.length-1];n instanceof O?i[i.length-1]=new O(n.length+r):i.push(null,new O(r-1))}if(e>0){let n=i[0];n instanceof O?i[0]=new O(e+n.length):i.unshift(new O(e-1),null)}return De.of(i)}decomposeLeft(e,t){t.push(new O(e-1),null)}decomposeRight(e,t){t.push(null,new O(this.length-e-1))}updateHeight(e,t=0,i=!1,r){let n=t+this.length;if(r&&r.from<=t+this.length&&r.more){let s=[],a=Math.max(t,r.from),o=-1;for(r.from>t&&s.push(new O(r.from-t-1).updateHeight(e,t));a<=n&&r.more;){let c=e.doc.lineAt(a).length;s.length&&s.push(null);let h=r.heights[r.index++],f=0;h<0&&(f=-h,h=r.heights[r.index++]),o==-1?o=h:Math.abs(h-o)>=fn&&(o=-2);let u=new it(c,h,f);u.outdated=!1,s.push(u),a+=c+1}a<=n&&s.push(null,new O(n-a).updateHeight(e,a));let l=De.of(s);return(o<0||Math.abs(l.height-this.height)>=fn||Math.abs(o-this.heightMetrics(e,t).perLine)>=fn)&&(oi=!0),bn(this,l)}else(i||this.outdated)&&(this.setHeight(e.heightForGap(t,t+this.length)),this.outdated=!1);return this}toString(){return`gap(${this.length})`}},Da=class extends De{constructor(e,t,i){super(e.length+t+i.length,e.height+i.height,t|(e.outdated||i.outdated?2:0)),this.left=e,this.right=i,this.size=e.size+i.size}get break(){return this.flags&1}blockAt(e,t,i,r){let n=i+this.left.height;return ea))return l;let c=t==oe.ByPosNoHeight?oe.ByPosNoHeight:oe.ByPos;return o?l.join(this.right.lineAt(a,c,i,s,a)):this.left.lineAt(a,c,i,r,n).join(l)}forEachLine(e,t,i,r,n,s){let a=r+this.left.height,o=n+this.left.length+this.break;if(this.break)e=o&&this.right.forEachLine(e,t,i,a,o,s);else{let l=this.lineAt(o,oe.ByPos,i,r,n);e=e&&l.from<=t&&s(l),t>l.to&&this.right.forEachLine(l.to+1,t,i,a,o,s)}}replace(e,t,i){let r=this.left.length+this.break;if(tthis.left.length)return this.balanced(this.left,this.right.replace(e-r,t-r,i));let n=[];e>0&&this.decomposeLeft(e,n);let s=n.length;for(let a of i)n.push(a);if(e>0&&uf(n,s-1),t=i&&t.push(null)),e>i&&this.right.decomposeLeft(e-i,t)}decomposeRight(e,t){let i=this.left.length,r=i+this.break;if(e>=r)return this.right.decomposeRight(e-r,t);e2*t.size||t.size>2*e.size?De.of(this.break?[e,null,t]:[e,t]):(this.left=bn(this.left,e),this.right=bn(this.right,t),this.setHeight(e.height+t.height),this.outdated=e.outdated||t.outdated,this.size=e.size+t.size,this.length=e.length+this.break+t.length,this)}updateHeight(e,t=0,i=!1,r){let{left:n,right:s}=this,a=t+n.length+this.break,o=null;return r&&r.from<=t+n.length&&r.more?o=n=n.updateHeight(e,t,i,r):n.updateHeight(e,t,i),r&&r.from<=a+s.length&&r.more?o=s=s.updateHeight(e,a,i,r):s.updateHeight(e,a,i),o?this.balanced(n,s):(this.height=this.left.height+this.right.height,this.outdated=!1,this)}toString(){return this.left+(this.break?" ":"-")+this.right}};function uf(O,e){let t,i;O[e]==null&&(t=O[e-1])instanceof Bt&&(i=O[e+1])instanceof Bt&&O.splice(e-1,3,new Bt(t.length+1+i.length))}var OS=5,Ia=class O{constructor(e,t){this.pos=e,this.oracle=t,this.nodes=[],this.lineStart=-1,this.lineEnd=-1,this.covering=null,this.writtenTo=e}get isCovered(){return this.covering&&this.nodes[this.nodes.length-1]==this.covering}span(e,t){if(this.lineStart>-1){let i=Math.min(t,this.lineEnd),r=this.nodes[this.nodes.length-1];r instanceof it?r.length+=i-this.pos:(i>this.pos||!this.isCovered)&&this.nodes.push(new it(i-this.pos,-1,0)),this.writtenTo=i,t>i&&(this.nodes.push(null),this.writtenTo++,this.lineStart=-1)}this.pos=t}point(e,t,i){if(e=OS)&&this.addLineDeco(r,n,s)}else t>e&&this.span(e,t);this.lineEnd>-1&&this.lineEnd-1)return;let{from:e,to:t}=this.oracle.doc.lineAt(this.pos);this.lineStart=e,this.lineEnd=t,this.writtenToe&&this.nodes.push(new it(this.pos-e,-1,0)),this.writtenTo=this.pos}blankContent(e,t){let i=new Bt(t-e);return this.oracle.doc.lineAt(e).to==t&&(i.flags|=4),i}ensureLine(){this.enterLine();let e=this.nodes.length?this.nodes[this.nodes.length-1]:null;if(e instanceof it)return e;let t=new it(0,-1,0);return this.nodes.push(t),t}addBlock(e){this.enterLine();let t=e.deco;t&&t.startSide>0&&!this.isCovered&&this.ensureLine(),this.nodes.push(e),this.writtenTo=this.pos=this.pos+e.length,t&&t.endSide>0&&(this.covering=e)}addLineDeco(e,t,i){let r=this.ensureLine();r.length+=i,r.collapsed+=i,r.widgetHeight=Math.max(r.widgetHeight,e),r.breaks+=t,this.writtenTo=this.pos=this.pos+i}finish(e){let t=this.nodes.length==0?null:this.nodes[this.nodes.length-1];this.lineStart>-1&&!(t instanceof it)&&!this.isCovered?this.nodes.push(new it(0,-1,0)):(this.writtenToc.clientHeight||c.scrollWidth>c.clientWidth)&&h.overflow!="visible"){let f=c.getBoundingClientRect();n=Math.max(n,f.left),s=Math.min(s,f.right),a=Math.max(a,f.top),o=Math.min(l==O.parentNode?r.innerHeight:o,f.bottom)}l=h.position=="absolute"||h.position=="fixed"?c.offsetParent:c.parentNode}else if(l.nodeType==11)l=l.host;else break;return{left:n-t.left,right:Math.max(n,s)-t.left,top:a-(t.top+e),bottom:Math.max(a,o)-(t.top+e)}}function nS(O){let e=O.getBoundingClientRect(),t=O.ownerDocument.defaultView||window;return e.left0&&e.top0}function sS(O,e){let t=O.getBoundingClientRect();return{left:0,right:t.right-t.left,top:e,bottom:t.bottom-(t.top+e)}}var Ai=class{constructor(e,t,i,r){this.from=e,this.to=t,this.size=i,this.displaySize=r}static same(e,t){if(e.length!=t.length)return!1;for(let i=0;itypeof i!="function"&&i.class=="cm-lineWrapping");this.heightOracle=new La(t),this.stateDeco=e.facet(Fi).filter(i=>typeof i!="function"),this.heightMap=De.empty().applyChanges(this.stateDeco,E.empty,this.heightOracle.setDoc(e.doc),[new ht(0,0,0,e.doc.length)]);for(let i=0;i<2&&(this.viewport=this.getViewport(0,null),!!this.updateForViewport());i++);this.updateViewportLines(),this.lineGaps=this.ensureLineGaps([]),this.lineGapDeco=Y.set(this.lineGaps.map(i=>i.draw(this,!1))),this.computeVisibleRanges()}updateForViewport(){let e=[this.viewport],{main:t}=this.state.selection;for(let i=0;i<=1;i++){let r=i?t.head:t.anchor;if(!e.some(({from:n,to:s})=>r>=n&&r<=s)){let{from:n,to:s}=this.lineBlockAt(r);e.push(new JO(n,s))}}return this.viewports=e.sort((i,r)=>i.from-r.from),this.updateScaler()}updateScaler(){let e=this.scaler;return this.scaler=this.heightMap.height<=7e6?Qf:new Fa(this.heightOracle,this.heightMap,this.viewports),e.eq(this.scaler)?0:2}updateViewportLines(){this.viewportLines=[],this.heightMap.forEachLine(this.viewport.from,this.viewport.to,this.heightOracle.setDoc(this.state.doc),0,0,e=>{this.viewportLines.push(zi(e,this.scaler))})}update(e,t=null){this.state=e.state;let i=this.stateDeco;this.stateDeco=this.state.facet(Fi).filter(c=>typeof c!="function");let r=e.changedRanges,n=ht.extendWithRanges(r,iS(i,this.stateDeco,e?e.changes:Ze.empty(this.state.doc.length))),s=this.heightMap.height,a=this.scrolledToBottom?null:this.scrollAnchorAt(this.scrollTop);df(),this.heightMap=this.heightMap.applyChanges(this.stateDeco,e.startState.doc,this.heightOracle.setDoc(this.state.doc),n),(this.heightMap.height!=s||oi)&&(e.flags|=2),a?(this.scrollAnchorPos=e.changes.mapPos(a.from,-1),this.scrollAnchorHeight=a.top):(this.scrollAnchorPos=-1,this.scrollAnchorHeight=s);let o=n.length?this.mapViewport(this.viewport,e.changes):this.viewport;(t&&(t.range.heado.to)||!this.viewportIsAppropriate(o))&&(o=this.getViewport(0,t));let l=o.from!=this.viewport.from||o.to!=this.viewport.to;this.viewport=o,e.flags|=this.updateForViewport(),(l||!e.changes.empty||e.flags&2)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(this.mapLineGaps(this.lineGaps,e.changes))),e.flags|=this.computeVisibleRanges(e.changes),t&&(this.scrollTarget=t),!this.mustEnforceCursorAssoc&&e.selectionSet&&e.view.lineWrapping&&e.state.selection.main.empty&&e.state.selection.main.assoc&&!e.state.facet(Hf)&&(this.mustEnforceCursorAssoc=!0)}measure(e){let t=e.contentDOM,i=window.getComputedStyle(t),r=this.heightOracle,n=i.whiteSpace;this.defaultTextDirection=i.direction=="rtl"?H.RTL:H.LTR;let s=this.heightOracle.mustRefreshForWrapping(n),a=t.getBoundingClientRect(),o=s||this.mustMeasureContent||this.contentDOMHeight!=a.height;this.contentDOMHeight=a.height,this.mustMeasureContent=!1;let l=0,c=0;if(a.width&&a.height){let{scaleX:y,scaleY:X}=Vf(t,a);(y>.005&&Math.abs(this.scaleX-y)>.005||X>.005&&Math.abs(this.scaleY-X)>.005)&&(this.scaleX=y,this.scaleY=X,l|=16,s=o=!0)}let h=(parseInt(i.paddingTop)||0)*this.scaleY,f=(parseInt(i.paddingBottom)||0)*this.scaleY;(this.paddingTop!=h||this.paddingBottom!=f)&&(this.paddingTop=h,this.paddingBottom=f,l|=18),this.editorWidth!=e.scrollDOM.clientWidth&&(r.lineWrapping&&(o=!0),this.editorWidth=e.scrollDOM.clientWidth,l|=16);let u=e.scrollDOM.scrollTop*this.scaleY;this.scrollTop!=u&&(this.scrollAnchorHeight=-1,this.scrollTop=u),this.scrolledToBottom=zf(e.scrollDOM);let Q=(this.printing?sS:rS)(t,this.paddingTop),$=Q.top-this.pixelViewport.top,p=Q.bottom-this.pixelViewport.bottom;this.pixelViewport=Q;let m=this.pixelViewport.bottom>this.pixelViewport.top&&this.pixelViewport.right>this.pixelViewport.left;if(m!=this.inView&&(this.inView=m,m&&(o=!0)),!this.inView&&!this.scrollTarget&&!nS(e.dom))return 0;let g=a.width;if((this.contentDOMWidth!=g||this.editorHeight!=e.scrollDOM.clientHeight)&&(this.contentDOMWidth=a.width,this.editorHeight=e.scrollDOM.clientHeight,l|=16),o){let y=e.docView.measureVisibleLineHeights(this.viewport);if(r.mustRefreshForHeights(y)&&(s=!0),s||r.lineWrapping&&Math.abs(g-this.contentDOMWidth)>r.charWidth){let{lineHeight:X,charWidth:x,textHeight:k}=e.docView.measureTextSize();s=X>0&&r.refresh(n,X,x,k,Math.max(5,g/x),y),s&&(e.docView.minWidth=0,l|=16)}$>0&&p>0?c=Math.max($,p):$<0&&p<0&&(c=Math.min($,p)),df();for(let X of this.viewports){let x=X.from==this.viewport.from?y:e.docView.measureVisibleLineHeights(X);this.heightMap=(s?De.empty().applyChanges(this.stateDeco,E.empty,this.heightOracle,[new ht(0,0,0,e.state.doc.length)]):this.heightMap).updateHeight(r,0,s,new Ma(X.from,x))}oi&&(l|=2)}let P=!this.viewportIsAppropriate(this.viewport,c)||this.scrollTarget&&(this.scrollTarget.range.headthis.viewport.to);return P&&(l&2&&(l|=this.updateScaler()),this.viewport=this.getViewport(c,this.scrollTarget),l|=this.updateForViewport()),(l&2||P)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(s?[]:this.lineGaps,e)),l|=this.computeVisibleRanges(),this.mustEnforceCursorAssoc&&(this.mustEnforceCursorAssoc=!1,e.docView.enforceCursorAssoc()),l}get visibleTop(){return this.scaler.fromDOM(this.pixelViewport.top)}get visibleBottom(){return this.scaler.fromDOM(this.pixelViewport.bottom)}getViewport(e,t){let i=.5-Math.max(-.5,Math.min(.5,e/1e3/2)),r=this.heightMap,n=this.heightOracle,{visibleTop:s,visibleBottom:a}=this,o=new JO(r.lineAt(s-i*1e3,oe.ByHeight,n,0,0).from,r.lineAt(a+(1-i)*1e3,oe.ByHeight,n,0,0).to);if(t){let{head:l}=t.range;if(lo.to){let c=Math.min(this.editorHeight,this.pixelViewport.bottom-this.pixelViewport.top),h=r.lineAt(l,oe.ByPos,n,0,0),f;t.y=="center"?f=(h.top+h.bottom)/2-c/2:t.y=="start"||t.y=="nearest"&&l=a+Math.max(10,Math.min(i,250)))&&r>s-2*1e3&&n>1,s=r<<1;if(this.defaultTextDirection!=H.LTR&&!i)return[];let a=[],o=(c,h,f,u)=>{if(h-cc&&mm.from>=f.from&&m.to<=f.to&&Math.abs(m.from-c)m.fromg));if(!p){if(hP.from<=h&&P.to>=h)){let P=t.moveToLineBoundary(S.cursor(h),!1,!0).head;P>c&&(h=P)}let m=this.gapSize(f,c,h,u),g=i||m<2e6?m:2e6;p=new Ai(c,h,m,g)}a.push(p)},l=c=>{if(c.length2e6)for(let x of e)x.from>=c.from&&x.fromc.from&&o(c.from,u,c,h),Qt.draw(this,this.heightOracle.lineWrapping))))}computeVisibleRanges(e){let t=this.stateDeco;this.lineGaps.length&&(t=t.concat(this.lineGapDeco));let i=[];M.spans(t,this.viewport.from,this.viewport.to,{span(n,s){i.push({from:n,to:s})},point(){}},20);let r=0;if(i.length!=this.visibleRanges.length)r=12;else for(let n=0;n=this.viewport.from&&e<=this.viewport.to&&this.viewportLines.find(t=>t.from<=e&&t.to>=e)||zi(this.heightMap.lineAt(e,oe.ByPos,this.heightOracle,0,0),this.scaler)}lineBlockAtHeight(e){return e>=this.viewportLines[0].top&&e<=this.viewportLines[this.viewportLines.length-1].bottom&&this.viewportLines.find(t=>t.top<=e&&t.bottom>=e)||zi(this.heightMap.lineAt(this.scaler.fromDOM(e),oe.ByHeight,this.heightOracle,0,0),this.scaler)}scrollAnchorAt(e){let t=this.lineBlockAtHeight(e+8);return t.from>=this.viewport.from||this.viewportLines[0].top-e>200?t:this.viewportLines[0]}elementAtHeight(e){return zi(this.heightMap.blockAt(this.scaler.fromDOM(e),this.heightOracle,0,0),this.scaler)}get docHeight(){return this.scaler.toDOM(this.heightMap.height)}get contentHeight(){return this.docHeight+this.paddingTop+this.paddingBottom}},JO=class{constructor(e,t){this.from=e,this.to=t}};function aS(O,e,t){let i=[],r=O,n=0;return M.spans(t,O,e,{span(){},point(s,a){s>r&&(i.push({from:r,to:s}),n+=s-r),r=a}},20),r=1)return e[e.length-1].to;let i=Math.floor(O*t);for(let r=0;;r++){let{from:n,to:s}=e[r],a=s-n;if(i<=a)return n+i;i-=a}}function nn(O,e){let t=0;for(let{from:i,to:r}of O.ranges){if(e<=r){t+=e-i;break}t+=r-i}return t/O.total}function oS(O,e){for(let t of O)if(e(t))return t}var Qf={toDOM(O){return O},fromDOM(O){return O},scale:1,eq(O){return O==this}},Fa=class O{constructor(e,t,i){let r=0,n=0,s=0;this.viewports=i.map(({from:a,to:o})=>{let l=t.lineAt(a,oe.ByPos,e,0,0).top,c=t.lineAt(o,oe.ByPos,e,0,0).bottom;return r+=c-l,{from:a,to:o,top:l,bottom:c,domTop:0,domBottom:0}}),this.scale=(7e6-r)/(t.height-r);for(let a of this.viewports)a.domTop=s+(a.top-n)*this.scale,s=a.domBottom=a.domTop+(a.bottom-a.top),n=a.bottom}toDOM(e){for(let t=0,i=0,r=0;;t++){let n=tt.from==e.viewports[i].from&&t.to==e.viewports[i].to):!1}};function zi(O,e){if(e.scale==1)return O;let t=e.toDOM(O.top),i=e.toDOM(O.bottom);return new lt(O.from,O.length,t,i-t,Array.isArray(O._content)?O._content.map(r=>zi(r,e)):O._content)}var sn=Z.define({combine:O=>O.join(" ")}),Ha=Z.define({combine:O=>O.indexOf(!0)>-1}),Ka=Ot.newName(),Pd=Ot.newName(),Sd=Ot.newName(),Xd={"&light":"."+Pd,"&dark":"."+Sd};function Ja(O,e,t){return new Ot(e,{finish(i){return/&/.test(i)?i.replace(/&\w*/,r=>{if(r=="&")return O;if(!t||!t[r])throw new RangeError(`Unsupported selector: ${r}`);return t[r]}):O+" "+i}})}var lS=Ja("."+Ka,{"&":{position:"relative !important",boxSizing:"border-box","&.cm-focused":{outline:"1px dotted #212121"},display:"flex !important",flexDirection:"column"},".cm-scroller":{display:"flex !important",alignItems:"flex-start !important",fontFamily:"monospace",lineHeight:1.4,height:"100%",overflowX:"auto",position:"relative",zIndex:0,overflowAnchor:"none"},".cm-content":{margin:0,flexGrow:2,flexShrink:0,display:"block",whiteSpace:"pre",wordWrap:"normal",boxSizing:"border-box",minHeight:"100%",padding:"4px 0",outline:"none","&[contenteditable=true]":{WebkitUserModify:"read-write-plaintext-only"}},".cm-lineWrapping":{whiteSpace_fallback:"pre-wrap",whiteSpace:"break-spaces",wordBreak:"break-word",overflowWrap:"anywhere",flexShrink:1},"&light .cm-content":{caretColor:"black"},"&dark .cm-content":{caretColor:"white"},".cm-line":{display:"block",padding:"0 2px 0 6px"},".cm-layer":{position:"absolute",left:0,top:0,contain:"size style","& > *":{position:"absolute"}},"&light .cm-selectionBackground":{background:"#d9d9d9"},"&dark .cm-selectionBackground":{background:"#222"},"&light.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#d7d4f0"},"&dark.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#233"},".cm-cursorLayer":{pointerEvents:"none"},"&.cm-focused > .cm-scroller > .cm-cursorLayer":{animation:"steps(1) cm-blink 1.2s infinite"},"@keyframes cm-blink":{"0%":{},"50%":{opacity:0},"100%":{}},"@keyframes cm-blink2":{"0%":{},"50%":{opacity:0},"100%":{}},".cm-cursor, .cm-dropCursor":{borderLeft:"1.2px solid black",marginLeft:"-0.6px",pointerEvents:"none"},".cm-cursor":{display:"none"},"&dark .cm-cursor":{borderLeftColor:"#ddd"},".cm-dropCursor":{position:"absolute"},"&.cm-focused > .cm-scroller > .cm-cursorLayer .cm-cursor":{display:"block"},".cm-iso":{unicodeBidi:"isolate"},".cm-announced":{position:"fixed",top:"-10000px"},"@media print":{".cm-announced":{display:"none"}},"&light .cm-activeLine":{backgroundColor:"#cceeff44"},"&dark .cm-activeLine":{backgroundColor:"#99eeff33"},"&light .cm-specialChar":{color:"red"},"&dark .cm-specialChar":{color:"#f78"},".cm-gutters":{flexShrink:0,display:"flex",height:"100%",boxSizing:"border-box",zIndex:200},".cm-gutters-before":{insetInlineStart:0},".cm-gutters-after":{insetInlineEnd:0},"&light .cm-gutters":{backgroundColor:"#f5f5f5",color:"#6c6c6c",border:"0px solid #ddd","&.cm-gutters-before":{borderRightWidth:"1px"},"&.cm-gutters-after":{borderLeftWidth:"1px"}},"&dark .cm-gutters":{backgroundColor:"#333338",color:"#ccc"},".cm-gutter":{display:"flex !important",flexDirection:"column",flexShrink:0,boxSizing:"border-box",minHeight:"100%",overflow:"hidden"},".cm-gutterElement":{boxSizing:"border-box"},".cm-lineNumbers .cm-gutterElement":{padding:"0 3px 0 5px",minWidth:"20px",textAlign:"right",whiteSpace:"nowrap"},"&light .cm-activeLineGutter":{backgroundColor:"#e2f2ff"},"&dark .cm-activeLineGutter":{backgroundColor:"#222227"},".cm-panels":{boxSizing:"border-box",position:"sticky",left:0,right:0,zIndex:300},"&light .cm-panels":{backgroundColor:"#f5f5f5",color:"black"},"&light .cm-panels-top":{borderBottom:"1px solid #ddd"},"&light .cm-panels-bottom":{borderTop:"1px solid #ddd"},"&dark .cm-panels":{backgroundColor:"#333338",color:"white"},".cm-dialog":{padding:"2px 19px 4px 6px",position:"relative","& label":{fontSize:"80%"}},".cm-dialog-close":{position:"absolute",top:"3px",right:"4px",backgroundColor:"inherit",border:"none",font:"inherit",fontSize:"14px",padding:"0"},".cm-tab":{display:"inline-block",overflow:"hidden",verticalAlign:"bottom"},".cm-widgetBuffer":{verticalAlign:"text-top",height:"1em",width:0,display:"inline"},".cm-placeholder":{color:"#888",display:"inline-block",verticalAlign:"top",userSelect:"none"},".cm-highlightSpace":{backgroundImage:"radial-gradient(circle at 50% 55%, #aaa 20%, transparent 5%)",backgroundPosition:"center"},".cm-highlightTab":{backgroundImage:`url('data:image/svg+xml,')`,backgroundSize:"auto 100%",backgroundPosition:"right 90%",backgroundRepeat:"no-repeat"},".cm-trailingSpace":{backgroundColor:"#ff332255"},".cm-button":{verticalAlign:"middle",color:"inherit",fontSize:"70%",padding:".2em 1em",borderRadius:"1px"},"&light .cm-button":{backgroundImage:"linear-gradient(#eff1f5, #d9d9df)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#b4b4b4, #d0d3d6)"}},"&dark .cm-button":{backgroundImage:"linear-gradient(#393939, #111)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#111, #333)"}},".cm-textfield":{verticalAlign:"middle",color:"inherit",fontSize:"70%",border:"1px solid silver",padding:".2em .5em"},"&light .cm-textfield":{backgroundColor:"white"},"&dark .cm-textfield":{border:"1px solid #555",backgroundColor:"inherit"}},Xd),cS={childList:!0,characterData:!0,subtree:!0,attributes:!0,characterDataOldValue:!0},Qa=v.ie&&v.ie_version<=11,eo=class{constructor(e){this.view=e,this.active=!1,this.editContext=null,this.selectionRange=new ba,this.selectionChanged=!1,this.delayedFlush=-1,this.resizeTimeout=-1,this.queue=[],this.delayedAndroidKey=null,this.flushingAndroidKey=-1,this.lastChange=0,this.scrollTargets=[],this.intersection=null,this.resizeScroll=null,this.intersecting=!1,this.gapIntersection=null,this.gaps=[],this.printQuery=null,this.parentCheck=-1,this.dom=e.contentDOM,this.observer=new MutationObserver(t=>{for(let i of t)this.queue.push(i);(v.ie&&v.ie_version<=11||v.ios&&e.composing)&&t.some(i=>i.type=="childList"&&i.removedNodes.length||i.type=="characterData"&&i.oldValue.length>i.target.nodeValue.length)?this.flushSoon():this.flush()}),window.EditContext&&v.android&&e.constructor.EDIT_CONTEXT!==!1&&!(v.chrome&&v.chrome_version<126)&&(this.editContext=new to(e),e.state.facet(_t)&&(e.contentDOM.editContext=this.editContext.editContext)),Qa&&(this.onCharData=t=>{this.queue.push({target:t.target,type:"characterData",oldValue:t.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this),this.onResize=this.onResize.bind(this),this.onPrint=this.onPrint.bind(this),this.onScroll=this.onScroll.bind(this),window.matchMedia&&(this.printQuery=window.matchMedia("print")),typeof ResizeObserver=="function"&&(this.resizeScroll=new ResizeObserver(()=>{var t;((t=this.view.docView)===null||t===void 0?void 0:t.lastUpdate){this.parentCheck<0&&(this.parentCheck=setTimeout(this.listenForScroll.bind(this),1e3)),t.length>0&&t[t.length-1].intersectionRatio>0!=this.intersecting&&(this.intersecting=!this.intersecting,this.intersecting!=this.view.inView&&this.onScrollChanged(document.createEvent("Event")))},{threshold:[0,.001]}),this.intersection.observe(this.dom),this.gapIntersection=new IntersectionObserver(t=>{t.length>0&&t[t.length-1].intersectionRatio>0&&this.onScrollChanged(document.createEvent("Event"))},{})),this.listenForScroll(),this.readSelectionRange()}onScrollChanged(e){this.view.inputState.runHandlers("scroll",e),this.intersecting&&this.view.measure()}onScroll(e){this.intersecting&&this.flush(!1),this.editContext&&this.view.requestMeasure(this.editContext.measureReq),this.onScrollChanged(e)}onResize(){this.resizeTimeout<0&&(this.resizeTimeout=setTimeout(()=>{this.resizeTimeout=-1,this.view.requestMeasure()},50))}onPrint(e){(e.type=="change"||!e.type)&&!e.matches||(this.view.viewState.printing=!0,this.view.measure(),setTimeout(()=>{this.view.viewState.printing=!1,this.view.requestMeasure()},500))}updateGaps(e){if(this.gapIntersection&&(e.length!=this.gaps.length||this.gaps.some((t,i)=>t!=e[i]))){this.gapIntersection.disconnect();for(let t of e)this.gapIntersection.observe(t);this.gaps=e}}onSelectionChange(e){let t=this.selectionChanged;if(!this.readSelectionRange()||this.delayedAndroidKey)return;let{view:i}=this,r=this.selectionRange;if(i.state.facet(_t)?i.root.activeElement!=this.dom:!cn(this.dom,r))return;let n=r.anchorNode&&i.docView.tile.nearest(r.anchorNode);if(n&&n.isWidget()&&n.widget.ignoreEvent(e)){t||(this.selectionChanged=!1);return}(v.ie&&v.ie_version<=11||v.android&&v.chrome)&&!i.state.selection.main.empty&&r.focusNode&&Wi(r.focusNode,r.focusOffset,r.anchorNode,r.anchorOffset)?this.flushSoon():this.flush(!1)}readSelectionRange(){let{view:e}=this,t=Bi(e.root);if(!t)return!1;let i=v.safari&&e.root.nodeType==11&&e.root.activeElement==this.dom&&hS(this.view,t)||t;if(!i||this.selectionRange.eq(i))return!1;let r=cn(this.dom,i);return r&&!this.selectionChanged&&e.inputState.lastFocusTime>Date.now()-200&&e.inputState.lastTouchTime{let n=this.delayedAndroidKey;n&&(this.clearDelayedAndroidKey(),this.view.inputState.lastKeyCode=n.keyCode,this.view.inputState.lastKeyTime=Date.now(),!this.flush()&&n.force&&ii(this.dom,n.key,n.keyCode))};this.flushingAndroidKey=this.view.win.requestAnimationFrame(r)}(!this.delayedAndroidKey||e=="Enter")&&(this.delayedAndroidKey={key:e,keyCode:t,force:this.lastChange{this.delayedFlush=-1,this.flush()}))}forceFlush(){this.delayedFlush>=0&&(this.view.win.cancelAnimationFrame(this.delayedFlush),this.delayedFlush=-1),this.flush()}pendingRecords(){for(let e of this.observer.takeRecords())this.queue.push(e);return this.queue}processRecords(){let e=this.pendingRecords();e.length&&(this.queue=[]);let t=-1,i=-1,r=!1;for(let n of e){let s=this.readMutation(n);s&&(s.typeOver&&(r=!0),t==-1?{from:t,to:i}=s:(t=Math.min(s.from,t),i=Math.max(s.to,i)))}return{from:t,to:i,typeOver:r}}readChange(){let{from:e,to:t,typeOver:i}=this.processRecords(),r=this.selectionChanged&&cn(this.dom,this.selectionRange);if(e<0&&!r)return null;e>-1&&(this.lastChange=Date.now()),this.view.inputState.lastFocusTime=0,this.selectionChanged=!1;let n=new Ca(this.view,e,t,i);return this.view.docView.domChanged={newSel:n.newSel?n.newSel.main:null},n}flush(e=!0){if(this.delayedFlush>=0||this.delayedAndroidKey)return!1;e&&this.readSelectionRange();let t=this.readChange();if(!t)return this.view.requestMeasure(),!1;let i=this.view.state,r=cd(this.view,t);return this.view.state==i&&(t.domChanged||t.newSel&&!t.newSel.main.eq(this.view.state.selection.main))&&this.view.update([]),r}readMutation(e){let t=this.view.docView.tile.nearest(e.target);if(!t||t.isWidget())return null;if(t.markDirty(e.type=="attributes"),e.type=="childList"){let i=$f(t,e.previousSibling||e.target.previousSibling,-1),r=$f(t,e.nextSibling||e.target.nextSibling,1);return{from:i?t.posAfter(i):t.posAtStart,to:r?t.posBefore(r):t.posAtEnd,typeOver:!1}}else return e.type=="characterData"?{from:t.posAtStart,to:t.posAtEnd,typeOver:e.target.nodeValue==e.oldValue}:null}setWindow(e){e!=this.win&&(this.removeWindowListeners(this.win),this.win=e,this.addWindowListeners(this.win))}addWindowListeners(e){e.addEventListener("resize",this.onResize),this.printQuery?this.printQuery.addEventListener?this.printQuery.addEventListener("change",this.onPrint):this.printQuery.addListener(this.onPrint):e.addEventListener("beforeprint",this.onPrint),e.addEventListener("scroll",this.onScroll),e.document.addEventListener("selectionchange",this.onSelectionChange)}removeWindowListeners(e){e.removeEventListener("scroll",this.onScroll),e.removeEventListener("resize",this.onResize),this.printQuery?this.printQuery.removeEventListener?this.printQuery.removeEventListener("change",this.onPrint):this.printQuery.removeListener(this.onPrint):e.removeEventListener("beforeprint",this.onPrint),e.document.removeEventListener("selectionchange",this.onSelectionChange)}update(e){this.editContext&&(this.editContext.update(e),e.startState.facet(_t)!=e.state.facet(_t)&&(e.view.contentDOM.editContext=e.state.facet(_t)?this.editContext.editContext:null))}destroy(){var e,t,i;this.stop(),(e=this.intersection)===null||e===void 0||e.disconnect(),(t=this.gapIntersection)===null||t===void 0||t.disconnect(),(i=this.resizeScroll)===null||i===void 0||i.disconnect();for(let r of this.scrollTargets)r.removeEventListener("scroll",this.onScroll);this.removeWindowListeners(this.win),clearTimeout(this.parentCheck),clearTimeout(this.resizeTimeout),this.win.cancelAnimationFrame(this.delayedFlush),this.win.cancelAnimationFrame(this.flushingAndroidKey),this.editContext&&(this.view.contentDOM.editContext=null,this.editContext.destroy())}};function $f(O,e,t){for(;e;){let i=de.get(e);if(i&&i.parent==O)return i;let r=e.parentNode;e=r!=O.dom?r:t>0?e.nextSibling:e.previousSibling}return null}function pf(O,e){let t=e.startContainer,i=e.startOffset,r=e.endContainer,n=e.endOffset,s=O.docView.domAtPos(O.state.selection.main.anchor,1);return Wi(s.node,s.offset,r,n)&&([t,i,r,n]=[r,n,t,i]),{anchorNode:t,anchorOffset:i,focusNode:r,focusOffset:n}}function hS(O,e){if(e.getComposedRanges){let r=e.getComposedRanges(O.root)[0];if(r)return pf(O,r)}let t=null;function i(r){r.preventDefault(),r.stopImmediatePropagation(),t=r.getTargetRanges()[0]}return O.contentDOM.addEventListener("beforeinput",i,!0),O.dom.ownerDocument.execCommand("indent"),O.contentDOM.removeEventListener("beforeinput",i,!0),t?pf(O,t):null}var to=class{constructor(e){this.from=0,this.to=0,this.pendingContextChange=null,this.handlers=Object.create(null),this.composing=null,this.resetRange(e.state);let t=this.editContext=new window.EditContext({text:e.state.doc.sliceString(this.from,this.to),selectionStart:this.toContextPos(Math.max(this.from,Math.min(this.to,e.state.selection.main.anchor))),selectionEnd:this.toContextPos(e.state.selection.main.head)});this.handlers.textupdate=i=>{let r=e.state.selection.main,{anchor:n,head:s}=r,a=this.toEditorPos(i.updateRangeStart),o=this.toEditorPos(i.updateRangeEnd);e.inputState.composing>=0&&!this.composing&&(this.composing={contextBase:i.updateRangeStart,editorBase:a,drifted:!1});let l=o-a>i.text.length;a==this.from&&nthis.to&&(o=n);let c=hd(e.state.sliceDoc(a,o),i.text,(l?r.from:r.to)-a,l?"end":null);if(!c){let f=S.single(this.toEditorPos(i.selectionStart),this.toEditorPos(i.selectionEnd));f.main.eq(r)||e.dispatch({selection:f,userEvent:"select"});return}let h={from:c.from+a,to:c.toA+a,insert:E.of(i.text.slice(c.from,c.toB).split(` +`))};if((v.mac||v.android)&&h.from==s-1&&/^\. ?$/.test(i.text)&&e.contentDOM.getAttribute("autocorrect")=="off"&&(h={from:a,to:o,insert:E.of([i.text.replace("."," ")])}),this.pendingContextChange=h,!e.state.readOnly){let f=this.to-this.from+(h.to-h.from+h.insert.length);So(e,h,S.single(this.toEditorPos(i.selectionStart,f),this.toEditorPos(i.selectionEnd,f)))}this.pendingContextChange&&(this.revertPending(e.state),this.setSelection(e.state)),h.from=0&&!/[\\p{Alphabetic}\\p{Number}_]/.test(t.text.slice(Math.max(0,i.updateRangeStart-1),Math.min(t.text.length,i.updateRangeStart+1)))&&this.handlers.compositionend(i)},this.handlers.characterboundsupdate=i=>{let r=[],n=null;for(let s=this.toEditorPos(i.rangeStart),a=this.toEditorPos(i.rangeEnd);s{let r=[];for(let n of i.getTextFormats()){let s=n.underlineStyle,a=n.underlineThickness;if(!/none/i.test(s)&&!/none/i.test(a)){let o=this.toEditorPos(n.rangeStart),l=this.toEditorPos(n.rangeEnd);if(o{e.inputState.composing<0&&(e.inputState.composing=0,e.inputState.compositionFirstChange=!0)},this.handlers.compositionend=()=>{if(e.inputState.composing=-1,e.inputState.compositionFirstChange=null,this.composing){let{drifted:i}=this.composing;this.composing=null,i&&this.reset(e.state)}};for(let i in this.handlers)t.addEventListener(i,this.handlers[i]);this.measureReq={read:i=>{this.editContext.updateControlBounds(i.contentDOM.getBoundingClientRect());let r=Bi(i.root);r&&r.rangeCount&&this.editContext.updateSelectionBounds(r.getRangeAt(0).getBoundingClientRect())}}}applyEdits(e){let t=0,i=!1,r=this.pendingContextChange;return e.changes.iterChanges((n,s,a,o,l)=>{if(i)return;let c=l.length-(s-n);if(r&&s>=r.to)if(r.from==n&&r.to==s&&r.insert.eq(l)){r=this.pendingContextChange=null,t+=c,this.to+=c;return}else r=null,this.revertPending(e.state);if(n+=t,s+=t,s<=this.from)this.from+=c,this.to+=c;else if(nthis.to||this.to-this.from+l.length>3e4){i=!0;return}this.editContext.updateText(this.toContextPos(n),this.toContextPos(s),l.toString()),this.to+=c}t+=c}),r&&!i&&this.revertPending(e.state),!i}update(e){let t=this.pendingContextChange,i=e.startState.selection.main;this.composing&&(this.composing.drifted||!e.changes.touchesRange(i.from,i.to)&&e.transactions.some(r=>!r.isUserEvent("input.type")&&r.changes.touchesRange(this.from,this.to)))?(this.composing.drifted=!0,this.composing.editorBase=e.changes.mapPos(this.composing.editorBase)):!this.applyEdits(e)||!this.rangeIsValid(e.state)?(this.pendingContextChange=null,this.reset(e.state)):(e.docChanged||e.selectionSet||t)&&this.setSelection(e.state),(e.geometryChanged||e.docChanged||e.selectionSet)&&e.view.requestMeasure(this.measureReq)}resetRange(e){let{head:t}=e.selection.main;this.from=Math.max(0,t-1e4),this.to=Math.min(e.doc.length,t+1e4)}reset(e){this.resetRange(e),this.editContext.updateText(0,this.editContext.text.length,e.doc.sliceString(this.from,this.to)),this.setSelection(e)}revertPending(e){let t=this.pendingContextChange;this.pendingContextChange=null,this.editContext.updateText(this.toContextPos(t.from),this.toContextPos(t.from+t.insert.length),e.doc.sliceString(t.from,t.to))}setSelection(e){let{main:t}=e.selection,i=this.toContextPos(Math.max(this.from,Math.min(this.to,t.anchor))),r=this.toContextPos(t.head);(this.editContext.selectionStart!=i||this.editContext.selectionEnd!=r)&&this.editContext.updateSelection(i,r)}rangeIsValid(e){let{head:t}=e.selection.main;return!(this.from>0&&t-this.from<500||this.to1e4*3)}toEditorPos(e,t=this.to-this.from){e=Math.min(e,t);let i=this.composing;return i&&i.drifted?i.editorBase+(e-i.contextBase):e+this.from}toContextPos(e){let t=this.composing;return t&&t.drifted?t.contextBase+(e-t.editorBase):e-this.from}destroy(){for(let e in this.handlers)this.editContext.removeEventListener(e,this.handlers[e])}},T=class O{get state(){return this.viewState.state}get viewport(){return this.viewState.viewport}get visibleRanges(){return this.viewState.visibleRanges}get inView(){return this.viewState.inView}get composing(){return!!this.inputState&&this.inputState.composing>0}get compositionStarted(){return!!this.inputState&&this.inputState.composing>=0}get root(){return this._root}get win(){return this.dom.ownerDocument.defaultView||window}constructor(e={}){var t;this.plugins=[],this.pluginMap=new Map,this.editorAttrs={},this.contentAttrs={},this.bidiCache=[],this.destroyed=!1,this.updateState=2,this.measureScheduled=-1,this.measureRequests=[],this.contentDOM=document.createElement("div"),this.scrollDOM=document.createElement("div"),this.scrollDOM.tabIndex=-1,this.scrollDOM.className="cm-scroller",this.scrollDOM.appendChild(this.contentDOM),this.announceDOM=document.createElement("div"),this.announceDOM.className="cm-announced",this.announceDOM.setAttribute("aria-live","polite"),this.dom=document.createElement("div"),this.dom.appendChild(this.announceDOM),this.dom.appendChild(this.scrollDOM),e.parent&&e.parent.appendChild(this.dom);let{dispatch:i}=e;this.dispatchTransactions=e.dispatchTransactions||i&&(r=>r.forEach(n=>i(n,this)))||(r=>this.update(r)),this.dispatch=this.dispatch.bind(this),this._root=e.root||nP(e.parent)||document,this.viewState=new xn(e.state||I.create(e)),e.scrollTo&&e.scrollTo.is(en)&&(this.viewState.scrollTarget=e.scrollTo.value.clip(this.viewState.state)),this.plugins=this.state.facet(KO).map(r=>new Ci(r));for(let r of this.plugins)r.update(this);this.observer=new eo(this),this.inputState=new Ga(this),this.inputState.ensureHandlers(this.plugins),this.docView=new Xn(this),this.mountStyles(),this.updateAttrs(),this.updateState=0,this.requestMeasure(),!((t=document.fonts)===null||t===void 0)&&t.ready&&document.fonts.ready.then(()=>this.requestMeasure())}dispatch(...e){let t=e.length==1&&e[0]instanceof Qe?e:e.length==1&&Array.isArray(e[0])?e[0]:[this.state.update(...e)];this.dispatchTransactions(t,this)}update(e){if(this.updateState!=0)throw new Error("Calls to EditorView.update are not allowed while an update is in progress");let t=!1,i=!1,r,n=this.state;for(let f of e){if(f.startState!=n)throw new RangeError("Trying to update state with a transaction that doesn't start from the previous state.");n=f.state}if(this.destroyed){this.viewState.state=n;return}let s=this.hasFocus,a=0,o=null;e.some(f=>f.annotation(pd))?(this.inputState.notifiedFocused=s,a=1):s!=this.inputState.notifiedFocused&&(this.inputState.notifiedFocused=s,o=md(n,s),o||(a=1));let l=this.observer.delayedAndroidKey,c=null;if(l?(this.observer.clearDelayedAndroidKey(),c=this.observer.readChange(),(c&&!this.state.doc.eq(n.doc)||!this.state.selection.eq(n.selection))&&(c=null)):this.observer.clear(),n.facet(I.phrases)!=this.state.facet(I.phrases))return this.setState(n);r=Pn.create(this,n,e),r.flags|=a;let h=this.viewState.scrollTarget;try{this.updateState=2;for(let f of e){if(h&&(h=h.map(f.changes)),f.scrollIntoView){let{main:u}=f.state.selection;h=new ji(u.empty?u:S.cursor(u.head,u.head>u.anchor?-1:1))}for(let u of f.effects)u.is(en)&&(h=u.value.clip(this.state))}this.viewState.update(r,h),this.bidiCache=kn.update(this.bidiCache,r.changes),r.empty||(this.updatePlugins(r),this.inputState.update(r)),t=this.docView.update(r),this.state.facet(Vi)!=this.styleModules&&this.mountStyles(),i=this.updateAttrs(),this.showAnnouncements(e),this.docView.updateSelection(t,e.some(f=>f.isUserEvent("select.pointer")))}finally{this.updateState=0}if(r.startState.facet(sn)!=r.state.facet(sn)&&(this.viewState.mustMeasureContent=!0),(t||i||h||this.viewState.mustEnforceCursorAssoc||this.viewState.mustMeasureContent)&&this.requestMeasure(),t&&this.docViewUpdate(),!r.empty)for(let f of this.state.facet(wa))try{f(r)}catch(u){Xe(this.state,u,"update listener")}(o||c)&&Promise.resolve().then(()=>{o&&this.state==o.startState&&this.dispatch(o),c&&!cd(this,c)&&l.force&&ii(this.contentDOM,l.key,l.keyCode)})}setState(e){if(this.updateState!=0)throw new Error("Calls to EditorView.setState are not allowed while an update is in progress");if(this.destroyed){this.viewState.state=e;return}this.updateState=2;let t=this.hasFocus;try{for(let i of this.plugins)i.destroy(this);this.viewState=new xn(e),this.plugins=e.facet(KO).map(i=>new Ci(i)),this.pluginMap.clear();for(let i of this.plugins)i.update(this);this.docView.destroy(),this.docView=new Xn(this),this.inputState.ensureHandlers(this.plugins),this.mountStyles(),this.updateAttrs(),this.bidiCache=[]}finally{this.updateState=0}t&&this.focus(),this.requestMeasure()}updatePlugins(e){let t=e.startState.facet(KO),i=e.state.facet(KO);if(t!=i){let r=[];for(let n of i){let s=t.indexOf(n);if(s<0)r.push(new Ci(n));else{let a=this.plugins[s];a.mustUpdate=e,r.push(a)}}for(let n of this.plugins)n.mustUpdate!=e&&n.destroy(this);this.plugins=r,this.pluginMap.clear()}else for(let r of this.plugins)r.mustUpdate=e;for(let r=0;r-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.observer.delayedAndroidKey){this.measureScheduled=-1,this.requestMeasure();return}this.measureScheduled=0,e&&this.observer.forceFlush();let t=null,i=this.scrollDOM,r=i.scrollTop*this.scaleY,{scrollAnchorPos:n,scrollAnchorHeight:s}=this.viewState;Math.abs(r-this.viewState.scrollTop)>1&&(s=-1),this.viewState.scrollAnchorHeight=-1;try{for(let a=0;;a++){if(s<0)if(zf(i))n=-1,s=this.viewState.heightMap.height;else{let u=this.viewState.scrollAnchorAt(r);n=u.from,s=u.top}this.updateState=1;let o=this.viewState.measure(this);if(!o&&!this.measureRequests.length&&this.viewState.scrollTarget==null)break;if(a>5){console.warn(this.measureRequests.length?"Measure loop restarted more than 5 times":"Viewport failed to stabilize");break}let l=[];o&4||([this.measureRequests,l]=[l,this.measureRequests]);let c=l.map(u=>{try{return u.read(this)}catch(Q){return Xe(this.state,Q),mf}}),h=Pn.create(this,this.state,[]),f=!1;h.flags|=o,t?t.flags|=o:t=h,this.updateState=2,h.empty||(this.updatePlugins(h),this.inputState.update(h),this.updateAttrs(),f=this.docView.update(h),f&&this.docViewUpdate());for(let u=0;u1||Q<-1){r=r+Q,i.scrollTop=r/this.scaleY,s=-1;continue}}break}}}finally{this.updateState=0,this.measureScheduled=-1}if(t&&!t.empty)for(let a of this.state.facet(wa))a(t)}get themeClasses(){return Ka+" "+(this.state.facet(Ha)?Sd:Pd)+" "+this.state.facet(sn)}updateAttrs(){let e=gf(this,ed,{class:"cm-editor"+(this.hasFocus?" cm-focused ":" ")+this.themeClasses}),t={spellcheck:"false",autocorrect:"off",autocapitalize:"off",writingsuggestions:"false",translate:"no",contenteditable:this.state.facet(_t)?"true":"false",class:"cm-content",style:`${v.tabSize}: ${this.state.tabSize}`,role:"textbox","aria-multiline":"true"};this.state.readOnly&&(t["aria-readonly"]="true"),gf(this,go,t);let i=this.observer.ignore(()=>{let r=Fh(this.contentDOM,this.contentAttrs,t),n=Fh(this.dom,this.editorAttrs,e);return r||n});return this.editorAttrs=e,this.contentAttrs=t,i}showAnnouncements(e){let t=!0;for(let i of e)for(let r of i.effects)if(r.is(O.announce)){t&&(this.announceDOM.textContent=""),t=!1;let n=this.announceDOM.appendChild(document.createElement("div"));n.textContent=r.value}}mountStyles(){this.styleModules=this.state.facet(Vi);let e=this.state.facet(O.cspNonce);Ot.mount(this.root,this.styleModules.concat(lS).reverse(),e?{nonce:e}:void 0)}readMeasured(){if(this.updateState==2)throw new Error("Reading the editor layout isn't allowed during an update");this.updateState==0&&this.measureScheduled>-1&&this.measure(!1)}requestMeasure(e){if(this.measureScheduled<0&&(this.measureScheduled=this.win.requestAnimationFrame(()=>this.measure())),e){if(this.measureRequests.indexOf(e)>-1)return;if(e.key!=null){for(let t=0;ti.plugin==e)||null),t&&t.update(this).value}get documentTop(){return this.contentDOM.getBoundingClientRect().top+this.viewState.paddingTop}get documentPadding(){return{top:this.viewState.paddingTop,bottom:this.viewState.paddingBottom}}get scaleX(){return this.viewState.scaleX}get scaleY(){return this.viewState.scaleY}elementAtHeight(e){return this.readMeasured(),this.viewState.elementAtHeight(e)}lineBlockAtHeight(e){return this.readMeasured(),this.viewState.lineBlockAtHeight(e)}get viewportLineBlocks(){return this.viewState.viewportLines}lineBlockAt(e){return this.viewState.lineBlockAt(e)}get contentHeight(){return this.viewState.contentHeight}moveByChar(e,t,i){return ua(this,e,Of(this,e,t,i))}moveByGroup(e,t){return ua(this,e,Of(this,e,t,i=>VP(this,e.head,i)))}visualLineSide(e,t){let i=this.bidiSpans(e),r=this.textDirectionAt(e.from),n=i[t?i.length-1:0];return S.cursor(n.side(t,r)+e.from,n.forward(!t,r)?1:-1)}moveToLineBoundary(e,t,i=!0){return RP(this,e,t,i)}moveVertically(e,t,i){return ua(this,e,qP(this,e,t,i))}domAtPos(e,t=1){return this.docView.domAtPos(e,t)}posAtDOM(e,t=0){return this.docView.posFromDOM(e,t)}posAtCoords(e,t=!0){this.readMeasured();let i=Wa(this,e,t);return i&&i.pos}posAndSideAtCoords(e,t=!0){return this.readMeasured(),Wa(this,e,t)}coordsAtPos(e,t=1){this.readMeasured();let i=this.docView.coordsAt(e,t);if(!i||i.left==i.right)return i;let r=this.state.doc.lineAt(e),n=this.bidiSpans(r),s=n[ct.find(n,e-r.from,-1,t)];return gn(i,s.dir==H.LTR==t>0)}coordsForChar(e){return this.readMeasured(),this.docView.coordsForChar(e)}get defaultCharacterWidth(){return this.viewState.heightOracle.charWidth}get defaultLineHeight(){return this.viewState.heightOracle.lineHeight}get textDirection(){return this.viewState.defaultTextDirection}textDirectionAt(e){return!this.state.facet(Ff)||ethis.viewport.to?this.textDirection:(this.readMeasured(),this.docView.textDirectionAt(e))}get lineWrapping(){return this.viewState.heightOracle.lineWrapping}bidiSpans(e){if(e.length>fS)return Ef(e.length);let t=this.textDirectionAt(e.from),i;for(let n of this.bidiCache)if(n.from==e.from&&n.dir==t&&(n.fresh||Gf(n.isolates,i=Jh(this,e))))return n.order;i||(i=Jh(this,e));let r=dP(e.text,t,i);return this.bidiCache.push(new kn(e.from,e.to,t,i,!0,r)),r}get hasFocus(){var e;return(this.dom.ownerDocument.hasFocus()||v.safari&&((e=this.inputState)===null||e===void 0?void 0:e.lastContextMenu)>Date.now()-3e4)&&this.root.activeElement==this.contentDOM}focus(){this.observer.ignore(()=>{qf(this.contentDOM),this.docView.updateSelection()})}setRoot(e){this._root!=e&&(this._root=e,this.observer.setWindow((e.nodeType==9?e:e.ownerDocument).defaultView||window),this.mountStyles())}destroy(){this.root.activeElement==this.contentDOM&&this.contentDOM.blur();for(let e of this.plugins)e.destroy(this);this.plugins=[],this.inputState.destroy(),this.docView.destroy(),this.dom.remove(),this.observer.destroy(),this.measureScheduled>-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.destroyed=!0}static scrollIntoView(e,t={}){return en.of(new ji(typeof e=="number"?S.cursor(e):e,t.y,t.x,t.yMargin,t.xMargin))}scrollSnapshot(){let{scrollTop:e,scrollLeft:t}=this.scrollDOM,i=this.viewState.scrollAnchorAt(e);return en.of(new ji(S.cursor(i.from),"start","start",i.top-e,t,!0))}setTabFocusMode(e){e==null?this.inputState.tabFocusMode=this.inputState.tabFocusMode<0?0:-1:typeof e=="boolean"?this.inputState.tabFocusMode=e?0:-1:this.inputState.tabFocusMode!=0&&(this.inputState.tabFocusMode=Date.now()+e)}static domEventHandlers(e){return he.define(()=>({}),{eventHandlers:e})}static domEventObservers(e){return he.define(()=>({}),{eventObservers:e})}static theme(e,t){let i=Ot.newName(),r=[sn.of(i),Vi.of(Ja(`.${i}`,e))];return t&&t.dark&&r.push(Ha.of(!0)),r}static baseTheme(e){return ze.lowest(Vi.of(Ja("."+Ka,e,Xd)))}static findFromDOM(e){var t;let i=e.querySelector(".cm-content"),r=i&&de.get(i)||de.get(e);return((t=r?.root)===null||t===void 0?void 0:t.view)||null}};T.styleModule=Vi;T.inputHandler=Bf;T.clipboardInputFilter=po;T.clipboardOutputFilter=mo;T.scrollHandler=Kf;T.focusChangeEffect=Nf;T.perLineTextDirection=Ff;T.exceptionSink=If;T.updateListener=wa;T.editable=_t;T.mouseSelectionStyle=Df;T.dragMovesSelection=Mf;T.clickAddsSelectionRange=Lf;T.decorations=Fi;T.blockWrappers=td;T.outerDecorations=Od;T.atomicRanges=Ji;T.bidiIsolatedRanges=id;T.scrollMargins=rd;T.darkTheme=Ha;T.cspNonce=Z.define({combine:O=>O.length?O[0]:""});T.contentAttributes=go;T.editorAttributes=ed;T.lineWrapping=T.contentAttributes.of({class:"cm-lineWrapping"});T.announce=V.define();var fS=4096,mf={},kn=class O{constructor(e,t,i,r,n,s){this.from=e,this.to=t,this.dir=i,this.isolates=r,this.fresh=n,this.order=s}static update(e,t){if(t.empty&&!e.some(n=>n.fresh))return e;let i=[],r=e.length?e[e.length-1].dir:H.LTR;for(let n=Math.max(0,e.length-10);n=0;r--){let n=i[r],s=typeof n=="function"?n(O):n;s&&uo(s,t)}return t}var dS=v.mac?"mac":v.windows?"win":v.linux?"linux":"key";function uS(O,e){let t=O.split(/-(?!$)/),i=t[t.length-1];i=="Space"&&(i=" ");let r,n,s,a;for(let o=0;oi.concat(r),[]))),t}function bd(O,e,t){return yd(Td(O.state),e,O,t)}var Dt=null,$S=4e3;function pS(O,e=dS){let t=Object.create(null),i=Object.create(null),r=(s,a)=>{let o=i[s];if(o==null)i[s]=a;else if(o!=a)throw new Error("Key binding "+s+" is used both as a regular binding and as a multi-stroke prefix")},n=(s,a,o,l,c)=>{var h,f;let u=t[s]||(t[s]=Object.create(null)),Q=a.split(/ (?!$)/).map(m=>uS(m,e));for(let m=1;m{let y=Dt={view:P,prefix:g,scope:s};return setTimeout(()=>{Dt==y&&(Dt=null)},$S),!0}]})}let $=Q.join(" ");r($,!1);let p=u[$]||(u[$]={preventDefault:!1,stopPropagation:!1,run:((f=(h=u._any)===null||h===void 0?void 0:h.run)===null||f===void 0?void 0:f.slice())||[]});o&&p.run.push(o),l&&(p.preventDefault=!0),c&&(p.stopPropagation=!0)};for(let s of O){let a=s.scope?s.scope.split(" "):["editor"];if(s.any)for(let l of a){let c=t[l]||(t[l]=Object.create(null));c._any||(c._any={preventDefault:!1,stopPropagation:!1,run:[]});let{any:h}=s;for(let f in c)c[f].run.push(u=>h(u,Oo))}let o=s[e]||s.key;if(o)for(let l of a)n(l,o,s.run,s.preventDefault,s.stopPropagation),s.shift&&n(l,"Shift-"+o,s.shift,s.preventDefault,s.stopPropagation)}return t}var Oo=null;function yd(O,e,t,i){Oo=e;let r=Mh(e),n=Se(r,0),s=Me(n)==r.length&&r!=" ",a="",o=!1,l=!1,c=!1;Dt&&Dt.view==t&&Dt.scope==i&&(a=Dt.prefix+" ",dd.indexOf(e.keyCode)<0&&(l=!0,Dt=null));let h=new Set,f=p=>{if(p){for(let m of p.run)if(!h.has(m)&&(h.add(m),m(t)))return p.stopPropagation&&(c=!0),!0;p.preventDefault&&(p.stopPropagation&&(c=!0),l=!0)}return!1},u=O[i],Q,$;return u&&(f(u[a+an(r,e,!s)])?o=!0:s&&(e.altKey||e.metaKey||e.ctrlKey)&&!(v.windows&&e.ctrlKey&&e.altKey)&&!(v.mac&&e.altKey&&!(e.ctrlKey||e.metaKey))&&(Q=Yt[e.keyCode])&&Q!=r?(f(u[a+an(Q,e,!0)])||e.shiftKey&&($=HO[e.keyCode])!=r&&$!=Q&&f(u[a+an($,e,!1)]))&&(o=!0):s&&e.shiftKey&&f(u[a+an(r,e,!0)])&&(o=!0),!o&&f(u._any)&&(o=!0)),l&&(o=!0),o&&c&&e.stopPropagation(),Oo=null,o}var Hi=class O{constructor(e,t,i,r,n){this.className=e,this.left=t,this.top=i,this.width=r,this.height=n}draw(){let e=document.createElement("div");return e.className=this.className,this.adjust(e),e}update(e,t){return t.className!=this.className?!1:(this.adjust(e),!0)}adjust(e){e.style.left=this.left+"px",e.style.top=this.top+"px",this.width!=null&&(e.style.width=this.width+"px"),e.style.height=this.height+"px"}eq(e){return this.left==e.left&&this.top==e.top&&this.width==e.width&&this.height==e.height&&this.className==e.className}static forRange(e,t,i){if(i.empty){let r=e.coordsAtPos(i.head,i.assoc||1);if(!r)return[];let n=xd(e);return[new O(t,r.left-n.left,r.top-n.top,null,r.bottom-r.top)]}else return mS(e,t,i)}};function xd(O){let e=O.scrollDOM.getBoundingClientRect();return{left:(O.textDirection==H.LTR?e.left:e.right-O.scrollDOM.clientWidth*O.scaleX)-O.scrollDOM.scrollLeft*O.scaleX,top:e.top-O.scrollDOM.scrollTop*O.scaleY}}function Sf(O,e,t,i){let r=O.coordsAtPos(e,t*2);if(!r)return i;let n=O.dom.getBoundingClientRect(),s=(r.top+r.bottom)/2,a=O.posAtCoords({x:n.left+1,y:s}),o=O.posAtCoords({x:n.right-1,y:s});return a==null||o==null?i:{from:Math.max(i.from,Math.min(a,o)),to:Math.min(i.to,Math.max(a,o))}}function mS(O,e,t){if(t.to<=O.viewport.from||t.from>=O.viewport.to)return[];let i=Math.max(t.from,O.viewport.from),r=Math.min(t.to,O.viewport.to),n=O.textDirection==H.LTR,s=O.contentDOM,a=s.getBoundingClientRect(),o=xd(O),l=s.querySelector(".cm-line"),c=l&&window.getComputedStyle(l),h=a.left+(c?parseInt(c.paddingLeft)+Math.min(0,parseInt(c.textIndent)):0),f=a.right-(c?parseInt(c.paddingRight):0),u=Ua(O,i,1),Q=Ua(O,r,-1),$=u.type==Te.Text?u:null,p=Q.type==Te.Text?Q:null;if($&&(O.lineWrapping||u.widgetLineBreaks)&&($=Sf(O,i,1,$)),p&&(O.lineWrapping||Q.widgetLineBreaks)&&(p=Sf(O,r,-1,p)),$&&p&&$.from==p.from&&$.to==p.to)return g(P(t.from,t.to,$));{let X=$?P(t.from,null,$):y(u,!1),x=p?P(null,t.to,p):y(Q,!0),k=[];return($||u).to<(p||Q).from-($&&p?1:0)||u.widgetLineBreaks>1&&X.bottom+O.defaultLineHeight/2q&&B.from=we)break;Je>ae&&G(Math.max(Pe,ae),X==null&&Pe<=q,Math.min(Je,we),x==null&&Je>=K,mt.dir)}if(ae=Ee.to+1,ae>=we)break}return ie.length==0&&G(q,X==null,K,x==null,O.textDirection),{top:j,bottom:A,horizontal:ie}}function y(X,x){let k=a.top+(x?X.top:X.bottom);return{top:k,bottom:k,horizontal:[]}}}function gS(O,e){return O.constructor==e.constructor&&O.eq(e)}var io=class{constructor(e,t){this.view=e,this.layer=t,this.drawn=[],this.scaleX=1,this.scaleY=1,this.measureReq={read:this.measure.bind(this),write:this.draw.bind(this)},this.dom=e.scrollDOM.appendChild(document.createElement("div")),this.dom.classList.add("cm-layer"),t.above&&this.dom.classList.add("cm-layer-above"),t.class&&this.dom.classList.add(t.class),this.scale(),this.dom.setAttribute("aria-hidden","true"),this.setOrder(e.state),e.requestMeasure(this.measureReq),t.mount&&t.mount(this.dom,e)}update(e){e.startState.facet(dn)!=e.state.facet(dn)&&this.setOrder(e.state),(this.layer.update(e,this.dom)||e.geometryChanged)&&(this.scale(),e.view.requestMeasure(this.measureReq))}docViewUpdate(e){this.layer.updateOnDocViewUpdate!==!1&&e.requestMeasure(this.measureReq)}setOrder(e){let t=0,i=e.facet(dn);for(;t!gS(t,this.drawn[i]))){let t=this.dom.firstChild,i=0;for(let r of e)r.update&&t&&r.constructor&&this.drawn[i].constructor&&r.update(t,this.drawn[i])?(t=t.nextSibling,i++):this.dom.insertBefore(r.draw(),t);for(;t;){let r=t.nextSibling;t.remove(),t=r}this.drawn=e,v.safari&&v.safari_version>=26&&(this.dom.style.display=this.dom.firstChild?"":"none")}}destroy(){this.layer.destroy&&this.layer.destroy(this.dom,this.view),this.dom.remove()}},dn=Z.define();function kd(O){return[he.define(e=>new io(e,O)),dn.of(O)]}var Ki=Z.define({combine(O){return xe(O,{cursorBlinkRate:1200,drawRangeCursor:!0},{cursorBlinkRate:(e,t)=>Math.min(e,t),drawRangeCursor:(e,t)=>e||t})}});function wd(O={}){return[Ki.of(O),PS,SS,XS,Hf.of(!0)]}function Zd(O){return O.startState.facet(Ki)!=O.state.facet(Ki)}var PS=kd({above:!0,markers(O){let{state:e}=O,t=e.facet(Ki),i=[];for(let r of e.selection.ranges){let n=r==e.selection.main;if(r.empty||t.drawRangeCursor){let s=n?"cm-cursor cm-cursor-primary":"cm-cursor cm-cursor-secondary",a=r.empty?r:S.cursor(r.head,r.head>r.anchor?-1:1);for(let o of Hi.forRange(O,s,a))i.push(o)}}return i},update(O,e){O.transactions.some(i=>i.selection)&&(e.style.animationName=e.style.animationName=="cm-blink"?"cm-blink2":"cm-blink");let t=Zd(O);return t&&Xf(O.state,e),O.docChanged||O.selectionSet||t},mount(O,e){Xf(e.state,O)},class:"cm-cursorLayer"});function Xf(O,e){e.style.animationDuration=O.facet(Ki).cursorBlinkRate+"ms"}var SS=kd({above:!1,markers(O){return O.state.selection.ranges.map(e=>e.empty?[]:Hi.forRange(O,"cm-selectionBackground",e)).reduce((e,t)=>e.concat(t))},update(O,e){return O.docChanged||O.selectionSet||O.viewportChanged||Zd(O)},class:"cm-selectionLayer"}),XS=ze.highest(T.theme({".cm-line":{"& ::selection, &::selection":{backgroundColor:"transparent !important"},caretColor:"transparent !important"},".cm-content":{caretColor:"transparent !important","& :focus":{caretColor:"initial !important","&::selection, & ::selection":{backgroundColor:"Highlight !important"}}}})),vd=V.define({map(O,e){return O==null?null:e.mapPos(O)}}),Ui=ce.define({create(){return null},update(O,e){return O!=null&&(O=e.changes.mapPos(O)),e.effects.reduce((t,i)=>i.is(vd)?i.value:t,O)}}),TS=he.fromClass(class{constructor(O){this.view=O,this.cursor=null,this.measureReq={read:this.readPos.bind(this),write:this.drawCursor.bind(this)}}update(O){var e;let t=O.state.field(Ui);t==null?this.cursor!=null&&((e=this.cursor)===null||e===void 0||e.remove(),this.cursor=null):(this.cursor||(this.cursor=this.view.scrollDOM.appendChild(document.createElement("div")),this.cursor.className="cm-dropCursor"),(O.startState.field(Ui)!=t||O.docChanged||O.geometryChanged)&&this.view.requestMeasure(this.measureReq))}readPos(){let{view:O}=this,e=O.state.field(Ui),t=e!=null&&O.coordsAtPos(e);if(!t)return null;let i=O.scrollDOM.getBoundingClientRect();return{left:t.left-i.left+O.scrollDOM.scrollLeft*O.scaleX,top:t.top-i.top+O.scrollDOM.scrollTop*O.scaleY,height:t.bottom-t.top}}drawCursor(O){if(this.cursor){let{scaleX:e,scaleY:t}=this.view;O?(this.cursor.style.left=O.left/e+"px",this.cursor.style.top=O.top/t+"px",this.cursor.style.height=O.height/t+"px"):this.cursor.style.left="-100000px"}}destroy(){this.cursor&&this.cursor.remove()}setDropPos(O){this.view.state.field(Ui)!=O&&this.view.dispatch({effects:vd.of(O)})}},{eventObservers:{dragover(O){this.setDropPos(this.view.posAtCoords({x:O.clientX,y:O.clientY}))},dragleave(O){(O.target==this.view.contentDOM||!this.view.contentDOM.contains(O.relatedTarget))&&this.setDropPos(null)},dragend(){this.setDropPos(null)},drop(){this.setDropPos(null)}}});function Yd(){return[Ui,TS]}function Tf(O,e,t,i,r){e.lastIndex=0;for(let n=O.iterRange(t,i),s=t,a;!n.next().done;s+=n.value.length)if(!n.lineBreak)for(;a=e.exec(n.value);)r(s+a.index,a)}function bS(O,e){let t=O.visibleRanges;if(t.length==1&&t[0].from==O.viewport.from&&t[0].to==O.viewport.to)return t;let i=[];for(let{from:r,to:n}of t)r=Math.max(O.state.doc.lineAt(r).from,r-e),n=Math.min(O.state.doc.lineAt(n).to,n+e),i.length&&i[i.length-1].to>=r?i[i.length-1].to=n:i.push({from:r,to:n});return i}var ro=class{constructor(e){let{regexp:t,decoration:i,decorate:r,boundary:n,maxLength:s=1e3}=e;if(!t.global)throw new RangeError("The regular expression given to MatchDecorator should have its 'g' flag set");if(this.regexp=t,r)this.addMatch=(a,o,l,c)=>r(c,l,l+a[0].length,a,o);else if(typeof i=="function")this.addMatch=(a,o,l,c)=>{let h=i(a,o,l);h&&c(l,l+a[0].length,h)};else if(i)this.addMatch=(a,o,l,c)=>c(l,l+a[0].length,i);else throw new RangeError("Either 'decorate' or 'decoration' should be provided to MatchDecorator");this.boundary=n,this.maxLength=s}createDeco(e){let t=new Le,i=t.add.bind(t);for(let{from:r,to:n}of bS(e,this.maxLength))Tf(e.state.doc,this.regexp,r,n,(s,a)=>this.addMatch(a,e,s,i));return t.finish()}updateDeco(e,t){let i=1e9,r=-1;return e.docChanged&&e.changes.iterChanges((n,s,a,o)=>{o>=e.view.viewport.from&&a<=e.view.viewport.to&&(i=Math.min(a,i),r=Math.max(o,r))}),e.viewportMoved||r-i>1e3?this.createDeco(e.view):r>-1?this.updateRange(e.view,t.map(e.changes),i,r):t}updateRange(e,t,i,r){for(let n of e.visibleRanges){let s=Math.max(n.from,i),a=Math.min(n.to,r);if(a>=s){let o=e.state.doc.lineAt(s),l=o.too.from;s--)if(this.boundary.test(o.text[s-1-o.from])){c=s;break}for(;af.push(m.range($,p));if(o==l)for(this.regexp.lastIndex=c-o.from;(u=this.regexp.exec(o.text))&&u.indexthis.addMatch(p,e,$,Q));t=t.update({filterFrom:c,filterTo:h,filter:($,p)=>$h,add:f})}}return t}},no=/x/.unicode!=null?"gu":"g",yS=new RegExp(`[\0-\b +-\x7F-\x9F\xAD\u061C\u200B\u200E\u200F\u2028\u2029\u202D\u202E\u2066\u2067\u2069\uFEFF\uFFF9-\uFFFC]`,no),xS={0:"null",7:"bell",8:"backspace",10:"newline",11:"vertical tab",13:"carriage return",27:"escape",8203:"zero width space",8204:"zero width non-joiner",8205:"zero width joiner",8206:"left-to-right mark",8207:"right-to-left mark",8232:"line separator",8237:"left-to-right override",8238:"right-to-left override",8294:"left-to-right isolate",8295:"right-to-left isolate",8297:"pop directional isolate",8233:"paragraph separator",65279:"zero width no-break space",65532:"object replacement"},$a=null;function kS(){var O;if($a==null&&typeof document<"u"&&document.body){let e=document.body.style;$a=((O=e.tabSize)!==null&&O!==void 0?O:e.MozTabSize)!=null}return $a||!1}var un=Z.define({combine(O){let e=xe(O,{render:null,specialChars:yS,addSpecialChars:null});return(e.replaceTabs=!kS())&&(e.specialChars=new RegExp(" |"+e.specialChars.source,no)),e.addSpecialChars&&(e.specialChars=new RegExp(e.specialChars.source+"|"+e.addSpecialChars.source,no)),e}});function _d(O={}){return[un.of(O),wS()]}var bf=null;function wS(){return bf||(bf=he.fromClass(class{constructor(O){this.view=O,this.decorations=Y.none,this.decorationCache=Object.create(null),this.decorator=this.makeDecorator(O.state.facet(un)),this.decorations=this.decorator.createDeco(O)}makeDecorator(O){return new ro({regexp:O.specialChars,decoration:(e,t,i)=>{let{doc:r}=t.state,n=Se(e[0],0);if(n==9){let s=r.lineAt(i),a=t.state.tabSize,o=ve(s.text,a,i-s.from);return Y.replace({widget:new ao((a-o%a)*this.view.defaultCharacterWidth/this.view.scaleX)})}return this.decorationCache[n]||(this.decorationCache[n]=Y.replace({widget:new so(O,n)}))},boundary:O.replaceTabs?void 0:/[^]/})}update(O){let e=O.state.facet(un);O.startState.facet(un)!=e?(this.decorator=this.makeDecorator(e),this.decorations=this.decorator.createDeco(O.view)):this.decorations=this.decorator.updateDeco(O,this.decorations)}},{decorations:O=>O.decorations}))}var ZS="\u2022";function vS(O){return O>=32?ZS:O==10?"\u2424":String.fromCharCode(9216+O)}var so=class extends _e{constructor(e,t){super(),this.options=e,this.code=t}eq(e){return e.code==this.code}toDOM(e){let t=vS(this.code),i=e.state.phrase("Control character")+" "+(xS[this.code]||"0x"+this.code.toString(16)),r=this.options.render&&this.options.render(this.code,i,t);if(r)return r;let n=document.createElement("span");return n.textContent=t,n.title=i,n.setAttribute("aria-label",i),n.className="cm-specialChar",n}ignoreEvent(){return!1}},ao=class extends _e{constructor(e){super(),this.width=e}eq(e){return e.width==this.width}toDOM(){let e=document.createElement("span");return e.textContent=" ",e.className="cm-tab",e.style.width=this.width+"px",e}ignoreEvent(){return!1}};function Rd(){return _S}var YS=Y.line({class:"cm-activeLine"}),_S=he.fromClass(class{constructor(O){this.decorations=this.getDeco(O)}update(O){(O.docChanged||O.selectionSet)&&(this.decorations=this.getDeco(O.view))}getDeco(O){let e=-1,t=[];for(let i of O.state.selection.ranges){let r=O.lineBlockAt(i.head);r.from>e&&(t.push(YS.range(r.from)),e=r.from)}return Y.set(t)}},{decorations:O=>O.decorations});var oo=2e3;function RS(O,e,t){let i=Math.min(e.line,t.line),r=Math.max(e.line,t.line),n=[];if(e.off>oo||t.off>oo||e.col<0||t.col<0){let s=Math.min(e.off,t.off),a=Math.max(e.off,t.off);for(let o=i;o<=r;o++){let l=O.doc.line(o);l.length<=a&&n.push(S.range(l.from+s,l.to+a))}}else{let s=Math.min(e.col,t.col),a=Math.max(e.col,t.col);for(let o=i;o<=r;o++){let l=O.doc.line(o),c=Kr(l.text,s,O.tabSize,!0);if(c<0)n.push(S.cursor(l.to));else{let h=Kr(l.text,a,O.tabSize);n.push(S.range(l.from+c,l.from+h))}}}return n}function VS(O,e){let t=O.coordsAtPos(O.viewport.from);return t?Math.round(Math.abs((t.left-e)/O.defaultCharacterWidth)):-1}function yf(O,e){let t=O.posAtCoords({x:e.clientX,y:e.clientY},!1),i=O.state.doc.lineAt(t),r=t-i.from,n=r>oo?-1:r==i.length?VS(O,e.clientX):ve(i.text,O.state.tabSize,t-i.from);return{line:i.number,col:n,off:r}}function qS(O,e){let t=yf(O,e),i=O.state.selection;return t?{update(r){if(r.docChanged){let n=r.changes.mapPos(r.startState.doc.line(t.line).from),s=r.state.doc.lineAt(n);t={line:s.number,col:t.col,off:Math.min(t.off,s.length)},i=i.map(r.changes)}},get(r,n,s){let a=yf(O,r);if(!a)return i;let o=RS(O.state,t,a);return o.length?s?S.create(o.concat(i.ranges)):S.create(o):i}}:null}function Vd(O){let e=O?.eventFilter||(t=>t.altKey&&t.button==0);return T.mouseSelectionStyle.of((t,i)=>e(i)?qS(t,i):null)}var zS={Alt:[18,O=>!!O.altKey],Control:[17,O=>!!O.ctrlKey],Shift:[16,O=>!!O.shiftKey],Meta:[91,O=>!!O.metaKey]},US={style:"cursor: crosshair"};function qd(O={}){let[e,t]=zS[O.key||"Alt"],i=he.fromClass(class{constructor(r){this.view=r,this.isDown=!1}set(r){this.isDown!=r&&(this.isDown=r,this.view.update([]))}},{eventObservers:{keydown(r){this.set(r.keyCode==e||t(r))},keyup(r){(r.keyCode==e||!t(r))&&this.set(!1)},mousemove(r){this.set(t(r))}}});return[i,T.contentAttributes.of(r=>{var n;return!((n=r.plugin(i))===null||n===void 0)&&n.isDown?US:null})]}var on="-10000px",wn=class{constructor(e,t,i,r){this.facet=t,this.createTooltipView=i,this.removeTooltipView=r,this.input=e.state.facet(t),this.tooltips=this.input.filter(s=>s);let n=null;this.tooltipViews=this.tooltips.map(s=>n=i(s,n))}update(e,t){var i;let r=e.state.facet(this.facet),n=r.filter(o=>o);if(r===this.input){for(let o of this.tooltipViews)o.update&&o.update(e);return!1}let s=[],a=t?[]:null;for(let o=0;ot[l]=o),t.length=a.length),this.input=r,this.tooltips=n,this.tooltipViews=s,!0}};function WS(O){let e=O.dom.ownerDocument.documentElement;return{top:0,left:0,bottom:e.clientHeight,right:e.clientWidth}}var pa=Z.define({combine:O=>{var e,t,i;return{position:v.ios?"absolute":((e=O.find(r=>r.position))===null||e===void 0?void 0:e.position)||"fixed",parent:((t=O.find(r=>r.parent))===null||t===void 0?void 0:t.parent)||null,tooltipSpace:((i=O.find(r=>r.tooltipSpace))===null||i===void 0?void 0:i.tooltipSpace)||WS}}}),xf=new WeakMap,Xo=he.fromClass(class{constructor(O){this.view=O,this.above=[],this.inView=!0,this.madeAbsolute=!1,this.lastTransaction=0,this.measureTimeout=-1;let e=O.state.facet(pa);this.position=e.position,this.parent=e.parent,this.classes=O.themeClasses,this.createContainer(),this.measureReq={read:this.readMeasure.bind(this),write:this.writeMeasure.bind(this),key:this},this.resizeObserver=typeof ResizeObserver=="function"?new ResizeObserver(()=>this.measureSoon()):null,this.manager=new wn(O,er,(t,i)=>this.createTooltip(t,i),t=>{this.resizeObserver&&this.resizeObserver.unobserve(t.dom),t.dom.remove()}),this.above=this.manager.tooltips.map(t=>!!t.above),this.intersectionObserver=typeof IntersectionObserver=="function"?new IntersectionObserver(t=>{Date.now()>this.lastTransaction-50&&t.length>0&&t[t.length-1].intersectionRatio<1&&this.measureSoon()},{threshold:[1]}):null,this.observeIntersection(),O.win.addEventListener("resize",this.measureSoon=this.measureSoon.bind(this)),this.maybeMeasure()}createContainer(){this.parent?(this.container=document.createElement("div"),this.container.style.position="relative",this.container.className=this.view.themeClasses,this.parent.appendChild(this.container)):this.container=this.view.dom}observeIntersection(){if(this.intersectionObserver){this.intersectionObserver.disconnect();for(let O of this.manager.tooltipViews)this.intersectionObserver.observe(O.dom)}}measureSoon(){this.measureTimeout<0&&(this.measureTimeout=setTimeout(()=>{this.measureTimeout=-1,this.maybeMeasure()},50))}update(O){O.transactions.length&&(this.lastTransaction=Date.now());let e=this.manager.update(O,this.above);e&&this.observeIntersection();let t=e||O.geometryChanged,i=O.state.facet(pa);if(i.position!=this.position&&!this.madeAbsolute){this.position=i.position;for(let r of this.manager.tooltipViews)r.dom.style.position=this.position;t=!0}if(i.parent!=this.parent){this.parent&&this.container.remove(),this.parent=i.parent,this.createContainer();for(let r of this.manager.tooltipViews)this.container.appendChild(r.dom);t=!0}else this.parent&&this.view.themeClasses!=this.classes&&(this.classes=this.container.className=this.view.themeClasses);t&&this.maybeMeasure()}createTooltip(O,e){let t=O.create(this.view),i=e?e.dom:null;if(t.dom.classList.add("cm-tooltip"),O.arrow&&!t.dom.querySelector(".cm-tooltip > .cm-tooltip-arrow")){let r=document.createElement("div");r.className="cm-tooltip-arrow",t.dom.appendChild(r)}return t.dom.style.position=this.position,t.dom.style.top=on,t.dom.style.left="0px",this.container.insertBefore(t.dom,i),t.mount&&t.mount(this.view),this.resizeObserver&&this.resizeObserver.observe(t.dom),t}destroy(){var O,e,t;this.view.win.removeEventListener("resize",this.measureSoon);for(let i of this.manager.tooltipViews)i.dom.remove(),(O=i.destroy)===null||O===void 0||O.call(i);this.parent&&this.container.remove(),(e=this.resizeObserver)===null||e===void 0||e.disconnect(),(t=this.intersectionObserver)===null||t===void 0||t.disconnect(),clearTimeout(this.measureTimeout)}readMeasure(){let O=1,e=1,t=!1;if(this.position=="fixed"&&this.manager.tooltipViews.length){let{dom:n}=this.manager.tooltipViews[0];if(v.safari){let s=n.getBoundingClientRect();t=Math.abs(s.top+1e4)>1||Math.abs(s.left)>1}else t=!!n.offsetParent&&n.offsetParent!=this.container.ownerDocument.body}if(t||this.position=="absolute")if(this.parent){let n=this.parent.getBoundingClientRect();n.width&&n.height&&(O=n.width/this.parent.offsetWidth,e=n.height/this.parent.offsetHeight)}else({scaleX:O,scaleY:e}=this.view.viewState);let i=this.view.scrollDOM.getBoundingClientRect(),r=Po(this.view);return{visible:{left:i.left+r.left,top:i.top+r.top,right:i.right-r.right,bottom:i.bottom-r.bottom},parent:this.parent?this.container.getBoundingClientRect():this.view.dom.getBoundingClientRect(),pos:this.manager.tooltips.map((n,s)=>{let a=this.manager.tooltipViews[s];return a.getCoords?a.getCoords(n.pos):this.view.coordsAtPos(n.pos)}),size:this.manager.tooltipViews.map(({dom:n})=>n.getBoundingClientRect()),space:this.view.state.facet(pa).tooltipSpace(this.view),scaleX:O,scaleY:e,makeAbsolute:t}}writeMeasure(O){var e;if(O.makeAbsolute){this.madeAbsolute=!0,this.position="absolute";for(let a of this.manager.tooltipViews)a.dom.style.position="absolute"}let{visible:t,space:i,scaleX:r,scaleY:n}=O,s=[];for(let a=0;a=Math.min(t.bottom,i.bottom)||h.rightMath.min(t.right,i.right)+.1)){c.style.top=on;continue}let u=o.arrow?l.dom.querySelector(".cm-tooltip-arrow"):null,Q=u?7:0,$=f.right-f.left,p=(e=xf.get(l))!==null&&e!==void 0?e:f.bottom-f.top,m=l.offset||CS,g=this.view.textDirection==H.LTR,P=f.width>i.right-i.left?g?i.left:i.right-f.width:g?Math.max(i.left,Math.min(h.left-(u?14:0)+m.x,i.right-$)):Math.min(Math.max(i.left,h.left-$+(u?14:0)-m.x),i.right-$),y=this.above[a];!o.strictSide&&(y?h.top-p-Q-m.yi.bottom)&&y==i.bottom-h.bottom>h.top-i.top&&(y=this.above[a]=!y);let X=(y?h.top-i.top:i.bottom-h.bottom)-Q;if(XP&&j.topx&&(x=y?j.top-p-2-Q:j.bottom+Q+2);if(this.position=="absolute"?(c.style.top=(x-O.parent.top)/n+"px",kf(c,(P-O.parent.left)/r)):(c.style.top=x/n+"px",kf(c,P/r)),u){let j=h.left+(g?m.x:-m.x)-(P+14-7);u.style.left=j/r+"px"}l.overlap!==!0&&s.push({left:P,top:x,right:k,bottom:x+p}),c.classList.toggle("cm-tooltip-above",y),c.classList.toggle("cm-tooltip-below",!y),l.positioned&&l.positioned(O.space)}}maybeMeasure(){if(this.manager.tooltips.length&&(this.view.inView&&this.view.requestMeasure(this.measureReq),this.inView!=this.view.inView&&(this.inView=this.view.inView,!this.inView)))for(let O of this.manager.tooltipViews)O.dom.style.top=on}},{eventObservers:{scroll(){this.maybeMeasure()}}});function kf(O,e){let t=parseInt(O.style.left,10);(isNaN(t)||Math.abs(e-t)>1)&&(O.style.left=e+"px")}var jS=T.baseTheme({".cm-tooltip":{zIndex:500,boxSizing:"border-box"},"&light .cm-tooltip":{border:"1px solid #bbb",backgroundColor:"#f5f5f5"},"&light .cm-tooltip-section:not(:first-child)":{borderTop:"1px solid #bbb"},"&dark .cm-tooltip":{backgroundColor:"#333338",color:"white"},".cm-tooltip-arrow":{height:"7px",width:"14px",position:"absolute",zIndex:-1,overflow:"hidden","&:before, &:after":{content:"''",position:"absolute",width:0,height:0,borderLeft:"7px solid transparent",borderRight:"7px solid transparent"},".cm-tooltip-above &":{bottom:"-7px","&:before":{borderTop:"7px solid #bbb"},"&:after":{borderTop:"7px solid #f5f5f5",bottom:"1px"}},".cm-tooltip-below &":{top:"-7px","&:before":{borderBottom:"7px solid #bbb"},"&:after":{borderBottom:"7px solid #f5f5f5",top:"1px"}}},"&dark .cm-tooltip .cm-tooltip-arrow":{"&:before":{borderTopColor:"#333338",borderBottomColor:"#333338"},"&:after":{borderTopColor:"transparent",borderBottomColor:"transparent"}}}),CS={x:0,y:0},er=Z.define({enables:[Xo,jS]}),Zn=Z.define({combine:O=>O.reduce((e,t)=>e.concat(t),[])}),vn=class O{static create(e){return new O(e)}constructor(e){this.view=e,this.mounted=!1,this.dom=document.createElement("div"),this.dom.classList.add("cm-tooltip-hover"),this.manager=new wn(e,Zn,(t,i)=>this.createHostedView(t,i),t=>t.dom.remove())}createHostedView(e,t){let i=e.create(this.view);return i.dom.classList.add("cm-tooltip-section"),this.dom.insertBefore(i.dom,t?t.dom.nextSibling:this.dom.firstChild),this.mounted&&i.mount&&i.mount(this.view),i}mount(e){for(let t of this.manager.tooltipViews)t.mount&&t.mount(e);this.mounted=!0}positioned(e){for(let t of this.manager.tooltipViews)t.positioned&&t.positioned(e)}update(e){this.manager.update(e)}destroy(){var e;for(let t of this.manager.tooltipViews)(e=t.destroy)===null||e===void 0||e.call(t)}passProp(e){let t;for(let i of this.manager.tooltipViews){let r=i[e];if(r!==void 0){if(t===void 0)t=r;else if(t!==r)return}}return t}get offset(){return this.passProp("offset")}get getCoords(){return this.passProp("getCoords")}get overlap(){return this.passProp("overlap")}get resize(){return this.passProp("resize")}},GS=er.compute([Zn],O=>{let e=O.facet(Zn);return e.length===0?null:{pos:Math.min(...e.map(t=>t.pos)),end:Math.max(...e.map(t=>{var i;return(i=t.end)!==null&&i!==void 0?i:t.pos})),create:vn.create,above:e[0].above,arrow:e.some(t=>t.arrow)}}),lo=class{constructor(e,t,i,r,n){this.view=e,this.source=t,this.field=i,this.setHover=r,this.hoverTime=n,this.hoverTimeout=-1,this.restartTimeout=-1,this.pending=null,this.lastMove={x:0,y:0,target:e.dom,time:0},this.checkHover=this.checkHover.bind(this),e.dom.addEventListener("mouseleave",this.mouseleave=this.mouseleave.bind(this)),e.dom.addEventListener("mousemove",this.mousemove=this.mousemove.bind(this))}update(){this.pending&&(this.pending=null,clearTimeout(this.restartTimeout),this.restartTimeout=setTimeout(()=>this.startHover(),20))}get active(){return this.view.state.field(this.field)}checkHover(){if(this.hoverTimeout=-1,this.active.length)return;let e=Date.now()-this.lastMove.time;ea.bottom||t.xa.right+e.defaultCharacterWidth)return;let o=e.bidiSpans(e.state.doc.lineAt(r)).find(c=>c.from<=r&&c.to>=r),l=o&&o.dir==H.RTL?-1:1;n=t.x{this.pending==a&&(this.pending=null,o&&!(Array.isArray(o)&&!o.length)&&e.dispatch({effects:this.setHover.of(Array.isArray(o)?o:[o])}))},o=>Xe(e.state,o,"hover tooltip"))}else s&&!(Array.isArray(s)&&!s.length)&&e.dispatch({effects:this.setHover.of(Array.isArray(s)?s:[s])})}get tooltip(){let e=this.view.plugin(Xo),t=e?e.manager.tooltips.findIndex(i=>i.create==vn.create):-1;return t>-1?e.manager.tooltipViews[t]:null}mousemove(e){var t,i;this.lastMove={x:e.clientX,y:e.clientY,target:e.target,time:Date.now()},this.hoverTimeout<0&&(this.hoverTimeout=setTimeout(this.checkHover,this.hoverTime));let{active:r,tooltip:n}=this;if(r.length&&n&&!ES(n.dom,e)||this.pending){let{pos:s}=r[0]||this.pending,a=(i=(t=r[0])===null||t===void 0?void 0:t.end)!==null&&i!==void 0?i:s;(s==a?this.view.posAtCoords(this.lastMove)!=s:!AS(this.view,s,a,e.clientX,e.clientY))&&(this.view.dispatch({effects:this.setHover.of([])}),this.pending=null)}}mouseleave(e){clearTimeout(this.hoverTimeout),this.hoverTimeout=-1;let{active:t}=this;if(t.length){let{tooltip:i}=this;i&&i.dom.contains(e.relatedTarget)?this.watchTooltipLeave(i.dom):this.view.dispatch({effects:this.setHover.of([])})}}watchTooltipLeave(e){let t=i=>{e.removeEventListener("mouseleave",t),this.active.length&&!this.view.dom.contains(i.relatedTarget)&&this.view.dispatch({effects:this.setHover.of([])})};e.addEventListener("mouseleave",t)}destroy(){clearTimeout(this.hoverTimeout),this.view.dom.removeEventListener("mouseleave",this.mouseleave),this.view.dom.removeEventListener("mousemove",this.mousemove)}},ln=4;function ES(O,e){let{left:t,right:i,top:r,bottom:n}=O.getBoundingClientRect(),s;if(s=O.querySelector(".cm-tooltip-arrow")){let a=s.getBoundingClientRect();r=Math.min(a.top,r),n=Math.max(a.bottom,n)}return e.clientX>=t-ln&&e.clientX<=i+ln&&e.clientY>=r-ln&&e.clientY<=n+ln}function AS(O,e,t,i,r,n){let s=O.scrollDOM.getBoundingClientRect(),a=O.documentTop+O.documentPadding.top+O.contentHeight;if(s.left>i||s.rightr||Math.min(s.bottom,a)=e&&o<=t}function zd(O,e={}){let t=V.define(),i=ce.define({create(){return[]},update(r,n){if(r.length&&(e.hideOnChange&&(n.docChanged||n.selection)?r=[]:e.hideOn&&(r=r.filter(s=>!e.hideOn(n,s))),n.docChanged)){let s=[];for(let a of r){let o=n.changes.mapPos(a.pos,-1,pe.TrackDel);if(o!=null){let l=Object.assign(Object.create(null),a);l.pos=o,l.end!=null&&(l.end=n.changes.mapPos(l.end)),s.push(l)}}r=s}for(let s of n.effects)s.is(t)&&(r=s.value),s.is(LS)&&(r=[]);return r},provide:r=>Zn.from(r)});return{active:i,extension:[i,he.define(r=>new lo(r,O,i,t,e.hoverTime||300)),GS]}}function To(O,e){let t=O.plugin(Xo);if(!t)return null;let i=t.manager.tooltips.indexOf(e);return i<0?null:t.manager.tooltipViews[i]}var LS=V.define();var wf=Z.define({combine(O){let e,t;for(let i of O)e=e||i.topContainer,t=t||i.bottomContainer;return{topContainer:e,bottomContainer:t}}});function bO(O,e){let t=O.plugin(Ud),i=t?t.specs.indexOf(e):-1;return i>-1?t.panels[i]:null}var Ud=he.fromClass(class{constructor(O){this.input=O.state.facet(TO),this.specs=this.input.filter(t=>t),this.panels=this.specs.map(t=>t(O));let e=O.state.facet(wf);this.top=new ei(O,!0,e.topContainer),this.bottom=new ei(O,!1,e.bottomContainer),this.top.sync(this.panels.filter(t=>t.top)),this.bottom.sync(this.panels.filter(t=>!t.top));for(let t of this.panels)t.dom.classList.add("cm-panel"),t.mount&&t.mount()}update(O){let e=O.state.facet(wf);this.top.container!=e.topContainer&&(this.top.sync([]),this.top=new ei(O.view,!0,e.topContainer)),this.bottom.container!=e.bottomContainer&&(this.bottom.sync([]),this.bottom=new ei(O.view,!1,e.bottomContainer)),this.top.syncClasses(),this.bottom.syncClasses();let t=O.state.facet(TO);if(t!=this.input){let i=t.filter(o=>o),r=[],n=[],s=[],a=[];for(let o of i){let l=this.specs.indexOf(o),c;l<0?(c=o(O.view),a.push(c)):(c=this.panels[l],c.update&&c.update(O)),r.push(c),(c.top?n:s).push(c)}this.specs=i,this.panels=r,this.top.sync(n),this.bottom.sync(s);for(let o of a)o.dom.classList.add("cm-panel"),o.mount&&o.mount()}else for(let i of this.panels)i.update&&i.update(O)}destroy(){this.top.sync([]),this.bottom.sync([])}},{provide:O=>T.scrollMargins.of(e=>{let t=e.plugin(O);return t&&{top:t.top.scrollMargin(),bottom:t.bottom.scrollMargin()}})}),ei=class{constructor(e,t,i){this.view=e,this.top=t,this.container=i,this.dom=void 0,this.classes="",this.panels=[],this.syncClasses()}sync(e){for(let t of this.panels)t.destroy&&e.indexOf(t)<0&&t.destroy();this.panels=e,this.syncDOM()}syncDOM(){if(this.panels.length==0){this.dom&&(this.dom.remove(),this.dom=void 0);return}if(!this.dom){this.dom=document.createElement("div"),this.dom.className=this.top?"cm-panels cm-panels-top":"cm-panels cm-panels-bottom",this.dom.style[this.top?"top":"bottom"]="0";let t=this.container||this.view.dom;t.insertBefore(this.dom,this.top?t.firstChild:null)}let e=this.dom.firstChild;for(let t of this.panels)if(t.dom.parentNode==this.dom){for(;e!=t.dom;)e=Zf(e);e=e.nextSibling}else this.dom.insertBefore(t.dom,e);for(;e;)e=Zf(e)}scrollMargin(){return!this.dom||this.container?0:Math.max(0,this.top?this.dom.getBoundingClientRect().bottom-Math.max(0,this.view.scrollDOM.getBoundingClientRect().top):Math.min(innerHeight,this.view.scrollDOM.getBoundingClientRect().bottom)-this.dom.getBoundingClientRect().top)}syncClasses(){if(!(!this.container||this.classes==this.view.themeClasses)){for(let e of this.classes.split(" "))e&&this.container.classList.remove(e);for(let e of(this.classes=this.view.themeClasses).split(" "))e&&this.container.classList.add(e)}}};function Zf(O){let e=O.nextSibling;return O.remove(),e}var TO=Z.define({enables:Ud});var Ie=class extends tt{compare(e){return this==e||this.constructor==e.constructor&&this.eq(e)}eq(e){return!1}destroy(e){}};Ie.prototype.elementClass="";Ie.prototype.toDOM=void 0;Ie.prototype.mapMode=pe.TrackBefore;Ie.prototype.startSide=Ie.prototype.endSide=-1;Ie.prototype.point=!0;var Qn=Z.define(),MS=Z.define(),DS={class:"",renderEmptyElements:!1,elementStyle:"",markers:()=>M.empty,lineMarker:()=>null,widgetMarker:()=>null,lineMarkerChange:null,initialSpacer:null,updateSpacer:null,domEventHandlers:{},side:"before"},Li=Z.define();function bo(O){return[Wd(),Li.of({...DS,...O})]}var co=Z.define({combine:O=>O.some(e=>e)});function Wd(O){let e=[IS];return O&&O.fixed===!1&&e.push(co.of(!0)),e}var IS=he.fromClass(class{constructor(O){this.view=O,this.domAfter=null,this.prevViewport=O.viewport,this.dom=document.createElement("div"),this.dom.className="cm-gutters cm-gutters-before",this.dom.setAttribute("aria-hidden","true"),this.dom.style.minHeight=this.view.contentHeight/this.view.scaleY+"px",this.gutters=O.state.facet(Li).map(e=>new Yn(O,e)),this.fixed=!O.state.facet(co);for(let e of this.gutters)e.config.side=="after"?this.getDOMAfter().appendChild(e.dom):this.dom.appendChild(e.dom);this.fixed&&(this.dom.style.position="sticky"),this.syncGutters(!1),O.scrollDOM.insertBefore(this.dom,O.contentDOM)}getDOMAfter(){return this.domAfter||(this.domAfter=document.createElement("div"),this.domAfter.className="cm-gutters cm-gutters-after",this.domAfter.setAttribute("aria-hidden","true"),this.domAfter.style.minHeight=this.view.contentHeight/this.view.scaleY+"px",this.domAfter.style.position=this.fixed?"sticky":"",this.view.scrollDOM.appendChild(this.domAfter)),this.domAfter}update(O){if(this.updateGutters(O)){let e=this.prevViewport,t=O.view.viewport,i=Math.min(e.to,t.to)-Math.max(e.from,t.from);this.syncGutters(i<(t.to-t.from)*.8)}if(O.geometryChanged){let e=this.view.contentHeight/this.view.scaleY+"px";this.dom.style.minHeight=e,this.domAfter&&(this.domAfter.style.minHeight=e)}this.view.state.facet(co)!=!this.fixed&&(this.fixed=!this.fixed,this.dom.style.position=this.fixed?"sticky":"",this.domAfter&&(this.domAfter.style.position=this.fixed?"sticky":"")),this.prevViewport=O.view.viewport}syncGutters(O){let e=this.dom.nextSibling;O&&(this.dom.remove(),this.domAfter&&this.domAfter.remove());let t=M.iter(this.view.state.facet(Qn),this.view.viewport.from),i=[],r=this.gutters.map(n=>new fo(n,this.view.viewport,-this.view.documentPadding.top));for(let n of this.view.viewportLineBlocks)if(i.length&&(i=[]),Array.isArray(n.type)){let s=!0;for(let a of n.type)if(a.type==Te.Text&&s){ho(t,i,a.from);for(let o of r)o.line(this.view,a,i);s=!1}else if(a.widget)for(let o of r)o.widget(this.view,a)}else if(n.type==Te.Text){ho(t,i,n.from);for(let s of r)s.line(this.view,n,i)}else if(n.widget)for(let s of r)s.widget(this.view,n);for(let n of r)n.finish();O&&(this.view.scrollDOM.insertBefore(this.dom,e),this.domAfter&&this.view.scrollDOM.appendChild(this.domAfter))}updateGutters(O){let e=O.startState.facet(Li),t=O.state.facet(Li),i=O.docChanged||O.heightChanged||O.viewportChanged||!M.eq(O.startState.facet(Qn),O.state.facet(Qn),O.view.viewport.from,O.view.viewport.to);if(e==t)for(let r of this.gutters)r.update(O)&&(i=!0);else{i=!0;let r=[];for(let n of t){let s=e.indexOf(n);s<0?r.push(new Yn(this.view,n)):(this.gutters[s].update(O),r.push(this.gutters[s]))}for(let n of this.gutters)n.dom.remove(),r.indexOf(n)<0&&n.destroy();for(let n of r)n.config.side=="after"?this.getDOMAfter().appendChild(n.dom):this.dom.appendChild(n.dom);this.gutters=r}return i}destroy(){for(let O of this.gutters)O.destroy();this.dom.remove(),this.domAfter&&this.domAfter.remove()}},{provide:O=>T.scrollMargins.of(e=>{let t=e.plugin(O);if(!t||t.gutters.length==0||!t.fixed)return null;let i=t.dom.offsetWidth*e.scaleX,r=t.domAfter?t.domAfter.offsetWidth*e.scaleX:0;return e.textDirection==H.LTR?{left:i,right:r}:{right:i,left:r}})});function vf(O){return Array.isArray(O)?O:[O]}function ho(O,e,t){for(;O.value&&O.from<=t;)O.from==t&&e.push(O.value),O.next()}var fo=class{constructor(e,t,i){this.gutter=e,this.height=i,this.i=0,this.cursor=M.iter(e.markers,t.from)}addElement(e,t,i){let{gutter:r}=this,n=(t.top-this.height)/e.scaleY,s=t.height/e.scaleY;if(this.i==r.elements.length){let a=new _n(e,s,n,i);r.elements.push(a),r.dom.appendChild(a.dom)}else r.elements[this.i].update(e,s,n,i);this.height=t.bottom,this.i++}line(e,t,i){let r=[];ho(this.cursor,r,t.from),i.length&&(r=r.concat(i));let n=this.gutter.config.lineMarker(e,t,r);n&&r.unshift(n);let s=this.gutter;r.length==0&&!s.config.renderEmptyElements||this.addElement(e,t,r)}widget(e,t){let i=this.gutter.config.widgetMarker(e,t.widget,t),r=i?[i]:null;for(let n of e.state.facet(MS)){let s=n(e,t.widget,t);s&&(r||(r=[])).push(s)}r&&this.addElement(e,t,r)}finish(){let e=this.gutter;for(;e.elements.length>this.i;){let t=e.elements.pop();e.dom.removeChild(t.dom),t.destroy()}}},Yn=class{constructor(e,t){this.view=e,this.config=t,this.elements=[],this.spacer=null,this.dom=document.createElement("div"),this.dom.className="cm-gutter"+(this.config.class?" "+this.config.class:"");for(let i in t.domEventHandlers)this.dom.addEventListener(i,r=>{let n=r.target,s;if(n!=this.dom&&this.dom.contains(n)){for(;n.parentNode!=this.dom;)n=n.parentNode;let o=n.getBoundingClientRect();s=(o.top+o.bottom)/2}else s=r.clientY;let a=e.lineBlockAtHeight(s-e.documentTop);t.domEventHandlers[i](e,a,r)&&r.preventDefault()});this.markers=vf(t.markers(e)),t.initialSpacer&&(this.spacer=new _n(e,0,0,[t.initialSpacer(e)]),this.dom.appendChild(this.spacer.dom),this.spacer.dom.style.cssText+="visibility: hidden; pointer-events: none")}update(e){let t=this.markers;if(this.markers=vf(this.config.markers(e.view)),this.spacer&&this.config.updateSpacer){let r=this.config.updateSpacer(this.spacer.markers[0],e);r!=this.spacer.markers[0]&&this.spacer.update(e.view,0,0,[r])}let i=e.view.viewport;return!M.eq(this.markers,t,i.from,i.to)||(this.config.lineMarkerChange?this.config.lineMarkerChange(e):!1)}destroy(){for(let e of this.elements)e.destroy()}},_n=class{constructor(e,t,i,r){this.height=-1,this.above=0,this.markers=[],this.dom=document.createElement("div"),this.dom.className="cm-gutterElement",this.update(e,t,i,r)}update(e,t,i,r){this.height!=t&&(this.height=t,this.dom.style.height=t+"px"),this.above!=i&&(this.dom.style.marginTop=(this.above=i)?i+"px":""),BS(this.markers,r)||this.setMarkers(e,r)}setMarkers(e,t){let i="cm-gutterElement",r=this.dom.firstChild;for(let n=0,s=0;;){let a=s,o=nn(a,o,l)||s(a,o,l):s}return i}})}}),Mi=class extends Ie{constructor(e){super(),this.number=e}eq(e){return this.number==e.number}toDOM(){return document.createTextNode(this.number)}};function ma(O,e){return O.state.facet(ti).formatNumber(e,O.state)}var HS=Li.compute([ti],O=>({class:"cm-lineNumbers",renderEmptyElements:!1,markers(e){return e.state.facet(NS)},lineMarker(e,t,i){return i.some(r=>r.toDOM)?null:new Mi(ma(e,e.state.doc.lineAt(t.from).number))},widgetMarker:(e,t,i)=>{for(let r of e.state.facet(FS)){let n=r(e,t,i);if(n)return n}return null},lineMarkerChange:e=>e.startState.facet(ti)!=e.state.facet(ti),initialSpacer(e){return new Mi(ma(e,Yf(e.state.doc.lines)))},updateSpacer(e,t){let i=ma(t.view,Yf(t.view.state.doc.lines));return i==e.number?e:new Mi(i)},domEventHandlers:O.facet(ti).domEventHandlers,side:"before"}));function jd(O={}){return[ti.of(O),Wd(),HS]}function Yf(O){let e=9;for(;e{let e=[],t=-1;for(let i of O.selection.ranges){let r=O.doc.lineAt(i.head).from;r>t&&(t=r,e.push(KS.range(r)))}return M.of(e)});function Cd(){return JS}var eX=0,We=class{constructor(e,t){this.from=e,this.to=t}},R=class{constructor(e={}){this.id=eX++,this.perNode=!!e.perNode,this.deserialize=e.deserialize||(()=>{throw new Error("This node type doesn't define a deserialize function")}),this.combine=e.combine||null}add(e){if(this.perNode)throw new RangeError("Can't add per-node props to node types");return typeof e!="function"&&(e=ue.match(e)),t=>{let i=e(t);return i===void 0?null:[this,i]}}};R.closedBy=new R({deserialize:O=>O.split(" ")});R.openedBy=new R({deserialize:O=>O.split(" ")});R.group=new R({deserialize:O=>O.split(" ")});R.isolate=new R({deserialize:O=>{if(O&&O!="rtl"&&O!="ltr"&&O!="auto")throw new RangeError("Invalid value for isolate: "+O);return O||"auto"}});R.contextHash=new R({perNode:!0});R.lookAhead=new R({perNode:!0});R.mounted=new R({perNode:!0});var Ht=class{constructor(e,t,i,r=!1){this.tree=e,this.overlay=t,this.parser=i,this.bracketed=r}static get(e){return e&&e.props&&e.props[R.mounted.id]}},tX=Object.create(null),ue=class O{constructor(e,t,i,r=0){this.name=e,this.props=t,this.id=i,this.flags=r}static define(e){let t=e.props&&e.props.length?Object.create(null):tX,i=(e.top?1:0)|(e.skipped?2:0)|(e.error?4:0)|(e.name==null?8:0),r=new O(e.name||"",t,e.id,i);if(e.props){for(let n of e.props)if(Array.isArray(n)||(n=n(r)),n){if(n[0].perNode)throw new RangeError("Can't store a per-node prop on a node type");t[n[0].id]=n[1]}}return r}prop(e){return this.props[e.id]}get isTop(){return(this.flags&1)>0}get isSkipped(){return(this.flags&2)>0}get isError(){return(this.flags&4)>0}get isAnonymous(){return(this.flags&8)>0}is(e){if(typeof e=="string"){if(this.name==e)return!0;let t=this.prop(R.group);return t?t.indexOf(e)>-1:!1}return this.id==e}static match(e){let t=Object.create(null);for(let i in e)for(let r of i.split(" "))t[r]=e[i];return i=>{for(let r=i.prop(R.group),n=-1;n<(r?r.length:0);n++){let s=t[n<0?i.name:r[n]];if(s)return s}}}};ue.none=new ue("",Object.create(null),0,8);var Kt=class O{constructor(e){this.types=e;for(let t=0;t0;for(let o=this.cursor(s|C.IncludeAnonymous);;){let l=!1;if(o.from<=n&&o.to>=r&&(!a&&o.type.isAnonymous||t(o)!==!1)){if(o.firstChild())continue;l=!0}for(;l&&i&&(a||!o.type.isAnonymous)&&i(o),!o.nextSibling();){if(!o.parent())return;l=!0}}}prop(e){return e.perNode?this.props?this.props[e.id]:void 0:this.type.prop(e)}get propValues(){let e=[];if(this.props)for(let t in this.props)e.push([+t,this.props[t]]);return e}balance(e={}){return this.children.length<=8?this:qo(ue.none,this.children,this.positions,0,this.children.length,0,this.length,(t,i,r)=>new O(this.type,t,i,r,this.propValues),e.makeTree||((t,i,r)=>new O(ue.none,t,i,r)))}static build(e){return iX(e)}};D.empty=new D(ue.none,[],[],0);var yo=class O{constructor(e,t){this.buffer=e,this.index=t}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}get pos(){return this.index}next(){this.index-=4}fork(){return new O(this.buffer,this.index)}},Jt=class O{constructor(e,t,i){this.buffer=e,this.length=t,this.set=i}get type(){return ue.none}toString(){let e=[];for(let t=0;t0));o=s[o+3]);return a}slice(e,t,i){let r=this.buffer,n=new Uint16Array(t-e),s=0;for(let a=e,o=0;a=e&&te;case 1:return t<=e&&i>e;case 2:return i>e;case 4:return!0}}function tr(O,e,t,i){for(var r;O.from==O.to||(t<1?O.from>=e:O.from>e)||(t>-1?O.to<=e:O.to0?o.length:-1;e!=c;e+=t){let h=o[e],f=l[e]+a.from;if(!(!(n&C.EnterBracketed&&h instanceof D&&((s=Ht.get(h))===null||s===void 0?void 0:s.overlay)===null&&(f>=i||f+h.length<=i))&&!Bd(r,i,f,f+h.length))){if(h instanceof Jt){if(n&C.ExcludeBuffers)continue;let u=h.findChild(0,h.buffer.length,t,i-f,r);if(u>-1)return new yO(new ko(a,h,e,f),null,u)}else if(n&C.IncludeAnonymous||!h.type.isAnonymous||Vo(h)){let u;if(!(n&C.IgnoreMounts)&&(u=Ht.get(h))&&!u.overlay)return new O(u.tree,f,e,a);let Q=new O(h,f,e,a);return n&C.IncludeAnonymous||!Q.type.isAnonymous?Q:Q.nextChild(t<0?h.children.length-1:0,t,i,r,n)}}}if(n&C.IncludeAnonymous||!a.type.isAnonymous||(a.index>=0?e=a.index+t:e=t<0?-1:a._parent._tree.children.length,a=a._parent,!a))return null}}get firstChild(){return this.nextChild(0,1,0,4)}get lastChild(){return this.nextChild(this._tree.children.length-1,-1,0,4)}childAfter(e){return this.nextChild(0,1,e,2)}childBefore(e){return this.nextChild(this._tree.children.length-1,-1,e,-2)}prop(e){return this._tree.prop(e)}enter(e,t,i=0){let r;if(!(i&C.IgnoreOverlays)&&(r=Ht.get(this._tree))&&r.overlay){let n=e-this.from,s=i&C.EnterBracketed&&r.bracketed;for(let{from:a,to:o}of r.overlay)if((t>0||s?a<=n:a=n:o>n))return new O(r.tree,r.overlay[0].from+this.from,-1,this)}return this.nextChild(0,1,e,t,i)}nextSignificantParent(){let e=this;for(;e.type.isAnonymous&&e._parent;)e=e._parent;return e}get parent(){return this._parent?this._parent.nextSignificantParent():null}get nextSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index+1,1,0,4):null}get prevSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index-1,-1,0,4):null}get tree(){return this._tree}toTree(){return this._tree}toString(){return this._tree.toString()}};function Ed(O,e,t,i){let r=O.cursor(),n=[];if(!r.firstChild())return n;if(t!=null){for(let s=!1;!s;)if(s=r.type.is(t),!r.nextSibling())return n}for(;;){if(i!=null&&r.type.is(i))return n;if(r.type.is(e)&&n.push(r.node),!r.nextSibling())return i==null?n:[]}}function xo(O,e,t=e.length-1){for(let i=O;t>=0;i=i.parent){if(!i)return!1;if(!i.type.isAnonymous){if(e[t]&&e[t]!=i.name)return!1;t--}}return!0}var ko=class{constructor(e,t,i,r){this.parent=e,this.buffer=t,this.index=i,this.start=r}},yO=class O extends Un{get name(){return this.type.name}get from(){return this.context.start+this.context.buffer.buffer[this.index+1]}get to(){return this.context.start+this.context.buffer.buffer[this.index+2]}constructor(e,t,i){super(),this.context=e,this._parent=t,this.index=i,this.type=e.buffer.set.types[e.buffer.buffer[i]]}child(e,t,i){let{buffer:r}=this.context,n=r.findChild(this.index+4,r.buffer[this.index+3],e,t-this.context.start,i);return n<0?null:new O(this.context,this,n)}get firstChild(){return this.child(1,0,4)}get lastChild(){return this.child(-1,0,4)}childAfter(e){return this.child(1,e,2)}childBefore(e){return this.child(-1,e,-2)}prop(e){return this.type.prop(e)}enter(e,t,i=0){if(i&C.ExcludeBuffers)return null;let{buffer:r}=this.context,n=r.findChild(this.index+4,r.buffer[this.index+3],t>0?1:-1,e-this.context.start,t);return n<0?null:new O(this.context,this,n)}get parent(){return this._parent||this.context.parent.nextSignificantParent()}externalSibling(e){return this._parent?null:this.context.parent.nextChild(this.context.index+e,e,0,4)}get nextSibling(){let{buffer:e}=this.context,t=e.buffer[this.index+3];return t<(this._parent?e.buffer[this._parent.index+3]:e.buffer.length)?new O(this.context,this._parent,t):this.externalSibling(1)}get prevSibling(){let{buffer:e}=this.context,t=this._parent?this._parent.index+4:0;return this.index==t?this.externalSibling(-1):new O(this.context,this._parent,e.findChild(t,this.index,-1,0,4))}get tree(){return null}toTree(){let e=[],t=[],{buffer:i}=this.context,r=this.index+4,n=i.buffer[this.index+3];if(n>r){let s=i.buffer[this.index+1];e.push(i.slice(r,n,s)),t.push(0)}return new D(this.type,e,t,this.to-this.from)}toString(){return this.context.buffer.childString(this.index)}};function Nd(O){if(!O.length)return null;let e=0,t=O[0];for(let n=1;nt.from||s.to=e){let a=new je(s.tree,s.overlay[0].from+n.from,-1,n);(r||(r=[i])).push(tr(a,e,t,!1))}}return r?Nd(r):i}var li=class{get name(){return this.type.name}constructor(e,t=0){if(this.buffer=null,this.stack=[],this.index=0,this.bufferNode=null,this.mode=t&~C.EnterBracketed,e instanceof je)this.yieldNode(e);else{this._tree=e.context.parent,this.buffer=e.context;for(let i=e._parent;i;i=i._parent)this.stack.unshift(i.index);this.bufferNode=e,this.yieldBuf(e.index)}}yieldNode(e){return e?(this._tree=e,this.type=e.type,this.from=e.from,this.to=e.to,!0):!1}yieldBuf(e,t){this.index=e;let{start:i,buffer:r}=this.buffer;return this.type=t||r.set.types[r.buffer[e]],this.from=i+r.buffer[e+1],this.to=i+r.buffer[e+2],!0}yield(e){return e?e instanceof je?(this.buffer=null,this.yieldNode(e)):(this.buffer=e.context,this.yieldBuf(e.index,e.type)):!1}toString(){return this.buffer?this.buffer.buffer.childString(this.index):this._tree.toString()}enterChild(e,t,i){if(!this.buffer)return this.yield(this._tree.nextChild(e<0?this._tree._tree.children.length-1:0,e,t,i,this.mode));let{buffer:r}=this.buffer,n=r.findChild(this.index+4,r.buffer[this.index+3],e,t-this.buffer.start,i);return n<0?!1:(this.stack.push(this.index),this.yieldBuf(n))}firstChild(){return this.enterChild(1,0,4)}lastChild(){return this.enterChild(-1,0,4)}childAfter(e){return this.enterChild(1,e,2)}childBefore(e){return this.enterChild(-1,e,-2)}enter(e,t,i=this.mode){return this.buffer?i&C.ExcludeBuffers?!1:this.enterChild(1,e,t):this.yield(this._tree.enter(e,t,i))}parent(){if(!this.buffer)return this.yieldNode(this.mode&C.IncludeAnonymous?this._tree._parent:this._tree.parent);if(this.stack.length)return this.yieldBuf(this.stack.pop());let e=this.mode&C.IncludeAnonymous?this.buffer.parent:this.buffer.parent.nextSignificantParent();return this.buffer=null,this.yieldNode(e)}sibling(e){if(!this.buffer)return this._tree._parent?this.yield(this._tree.index<0?null:this._tree._parent.nextChild(this._tree.index+e,e,0,4,this.mode)):!1;let{buffer:t}=this.buffer,i=this.stack.length-1;if(e<0){let r=i<0?0:this.stack[i]+4;if(this.index!=r)return this.yieldBuf(t.findChild(r,this.index,-1,0,4))}else{let r=t.buffer[this.index+3];if(r<(i<0?t.buffer.length:t.buffer[this.stack[i]+3]))return this.yieldBuf(r)}return i<0?this.yield(this.buffer.parent.nextChild(this.buffer.index+e,e,0,4,this.mode)):!1}nextSibling(){return this.sibling(1)}prevSibling(){return this.sibling(-1)}atLastNode(e){let t,i,{buffer:r}=this;if(r){if(e>0){if(this.index-1)for(let n=t+e,s=e<0?-1:i._tree.children.length;n!=s;n+=e){let a=i._tree.children[n];if(this.mode&C.IncludeAnonymous||a instanceof Jt||!a.type.isAnonymous||Vo(a))return!1}return!0}move(e,t){if(t&&this.enterChild(e,0,4))return!0;for(;;){if(this.sibling(e))return!0;if(this.atLastNode(e)||!this.parent())return!1}}next(e=!0){return this.move(1,e)}prev(e=!0){return this.move(-1,e)}moveTo(e,t=0){for(;(this.from==this.to||(t<1?this.from>=e:this.from>e)||(t>-1?this.to<=e:this.to=0;){for(let s=e;s;s=s._parent)if(s.index==r){if(r==this.index)return s;t=s,i=n+1;break e}r=this.stack[--n]}for(let r=i;r=0;n--){if(n<0)return xo(this._tree,e,r);let s=i[t.buffer[this.stack[n]]];if(!s.isAnonymous){if(e[r]&&e[r]!=s.name)return!1;r--}}return!0}};function Vo(O){return O.children.some(e=>e instanceof Jt||!e.type.isAnonymous||Vo(e))}function iX(O){var e;let{buffer:t,nodeSet:i,maxBufferLength:r=1024,reused:n=[],minRepeatType:s=i.types.length}=O,a=Array.isArray(t)?new yo(t,t.length):t,o=i.types,l=0,c=0;function h(X,x,k,j,A,ie){let{id:G,start:q,end:K,size:B}=a,ae=c,we=l;if(B<0)if(a.next(),B==-1){let Zt=n[G];k.push(Zt),j.push(q-X);return}else if(B==-3){l=G;return}else if(B==-4){c=G;return}else throw new RangeError(`Unrecognized record size: ${B}`);let Ee=o[G],mt,Pe,Je=q-X;if(K-q<=r&&(Pe=p(a.pos-x,A))){let Zt=new Uint16Array(Pe.size-Pe.skip),et=a.pos-Pe.size,gt=Zt.length;for(;a.pos>et;)gt=m(Pe.start,Zt,gt);mt=new Jt(Zt,K-Pe.start,i),Je=Pe.start-X}else{let Zt=a.pos-B;a.next();let et=[],gt=[],dO=G>=s?G:-1,LO=0,Gr=K;for(;a.pos>Zt;)dO>=0&&a.id==dO&&a.size>=0?(a.end<=Gr-r&&(Q(et,gt,q,LO,a.end,Gr,dO,ae,we),LO=et.length,Gr=a.end),a.next()):ie>2500?f(q,Zt,et,gt):h(q,Zt,et,gt,dO,ie+1);if(dO>=0&&LO>0&&LO-1&&LO>0){let mh=u(Ee,we);mt=qo(Ee,et,gt,0,et.length,0,K-q,mh,mh)}else mt=$(Ee,et,gt,K-q,ae-K,we)}k.push(mt),j.push(Je)}function f(X,x,k,j){let A=[],ie=0,G=-1;for(;a.pos>x;){let{id:q,start:K,end:B,size:ae}=a;if(ae>4)a.next();else{if(G>-1&&K=0;B-=3)q[ae++]=A[B],q[ae++]=A[B+1]-K,q[ae++]=A[B+2]-K,q[ae++]=ae;k.push(new Jt(q,A[2]-K,i)),j.push(K-X)}}function u(X,x){return(k,j,A)=>{let ie=0,G=k.length-1,q,K;if(G>=0&&(q=k[G])instanceof D){if(!G&&q.type==X&&q.length==A)return q;(K=q.prop(R.lookAhead))&&(ie=j[G]+q.length+K)}return $(X,k,j,A,ie,x)}}function Q(X,x,k,j,A,ie,G,q,K){let B=[],ae=[];for(;X.length>j;)B.push(X.pop()),ae.push(x.pop()+k-A);X.push($(i.types[G],B,ae,ie-A,q-ie,K)),x.push(A-k)}function $(X,x,k,j,A,ie,G){if(ie){let q=[R.contextHash,ie];G=G?[q].concat(G):[q]}if(A>25){let q=[R.lookAhead,A];G=G?[q].concat(G):[q]}return new D(X,x,k,j,G)}function p(X,x){let k=a.fork(),j=0,A=0,ie=0,G=k.end-r,q={size:0,start:0,skip:0};e:for(let K=k.pos-X;k.pos>K;){let B=k.size;if(k.id==x&&B>=0){q.size=j,q.start=A,q.skip=ie,ie+=4,j+=4,k.next();continue}let ae=k.pos-B;if(B<0||ae=s?4:0,Ee=k.start;for(k.next();k.pos>ae;){if(k.size<0)if(k.size==-3||k.size==-4)we+=4;else break e;else k.id>=s&&(we+=4);k.next()}A=Ee,j+=B,ie+=we}return(x<0||j==X)&&(q.size=j,q.start=A,q.skip=ie),q.size>4?q:void 0}function m(X,x,k){let{id:j,start:A,end:ie,size:G}=a;if(a.next(),G>=0&&j4){let K=a.pos-(G-4);for(;a.pos>K;)k=m(X,x,k)}x[--k]=q,x[--k]=ie-X,x[--k]=A-X,x[--k]=j}else G==-3?l=j:G==-4&&(c=j);return k}let g=[],P=[];for(;a.pos>0;)h(O.start||0,O.bufferStart||0,g,P,-1,0);let y=(e=O.length)!==null&&e!==void 0?e:g.length?P[0]+g[0].length:0;return new D(o[O.topID],g.reverse(),P.reverse(),y)}var Ad=new WeakMap;function zn(O,e){if(!O.isAnonymous||e instanceof Jt||e.type!=O)return 1;let t=Ad.get(e);if(t==null){t=1;for(let i of e.children){if(i.type!=O||!(i instanceof D)){t=1;break}t+=zn(O,i)}Ad.set(e,t)}return t}function qo(O,e,t,i,r,n,s,a,o){let l=0;for(let Q=i;Q=c)break;x+=k}if(P==y+1){if(x>c){let k=Q[y];u(k.children,k.positions,0,k.children.length,$[y]+g);continue}h.push(Q[y])}else{let k=$[P-1]+Q[P-1].length-X;h.push(qo(O,Q,$,y,P,X,k,null,o))}f.push(X+g-n)}}return u(e,t,i,r,0),(a||o)(h,f,s)}var Tt=class{constructor(){this.map=new WeakMap}setBuffer(e,t,i){let r=this.map.get(e);r||this.map.set(e,r=new Map),r.set(t,i)}getBuffer(e,t){let i=this.map.get(e);return i&&i.get(t)}set(e,t){e instanceof yO?this.setBuffer(e.context.buffer,e.index,t):e instanceof je&&this.map.set(e.tree,t)}get(e){return e instanceof yO?this.getBuffer(e.context.buffer,e.index):e instanceof je?this.map.get(e.tree):void 0}cursorSet(e,t){e.buffer?this.setBuffer(e.buffer.buffer,e.index,t):this.map.set(e.tree,t)}cursorGet(e){return e.buffer?this.getBuffer(e.buffer.buffer,e.index):this.map.get(e.tree)}},Vt=class O{constructor(e,t,i,r,n=!1,s=!1){this.from=e,this.to=t,this.tree=i,this.offset=r,this.open=(n?1:0)|(s?2:0)}get openStart(){return(this.open&1)>0}get openEnd(){return(this.open&2)>0}static addTree(e,t=[],i=!1){let r=[new O(0,e.length,e,0,!1,i)];for(let n of t)n.to>e.length&&r.push(n);return r}static applyChanges(e,t,i=128){if(!t.length)return e;let r=[],n=1,s=e.length?e[0]:null;for(let a=0,o=0,l=0;;a++){let c=a=i)for(;s&&s.from=f.from||h<=f.to||l){let u=Math.max(f.from,o)-l,Q=Math.min(f.to,h)-l;f=u>=Q?null:new O(u,Q,f.tree,f.offset+l,a>0,!!c)}if(f&&r.push(f),s.to>h)break;s=nnew We(r.from,r.to)):[new We(0,0)]:[new We(0,e.length)],this.createParse(e,t||[],i)}parse(e,t,i){let r=this.startParse(e,t,i);for(;;){let n=r.advance();if(n)return n}}},Zo=class{constructor(e){this.string=e}get length(){return this.string.length}chunk(e){return this.string.slice(e)}get lineChunks(){return!1}read(e,t){return this.string.slice(e,t)}};function xO(O){return(e,t,i,r)=>new _o(e,O,t,i,r)}var Wn=class{constructor(e,t,i,r,n,s){this.parser=e,this.parse=t,this.overlay=i,this.bracketed=r,this.target=n,this.from=s}};function Ld(O){if(!O.length||O.some(e=>e.from>=e.to))throw new RangeError("Invalid inner parse ranges given: "+JSON.stringify(O))}var vo=class{constructor(e,t,i,r,n,s,a,o){this.parser=e,this.predicate=t,this.mounts=i,this.index=r,this.start=n,this.bracketed=s,this.target=a,this.prev=o,this.depth=0,this.ranges=[]}},Yo=new R({perNode:!0}),_o=class{constructor(e,t,i,r,n){this.nest=t,this.input=i,this.fragments=r,this.ranges=n,this.inner=[],this.innerDone=0,this.baseTree=null,this.stoppedAt=null,this.baseParse=e}advance(){if(this.baseParse){let i=this.baseParse.advance();if(!i)return null;if(this.baseParse=null,this.baseTree=i,this.startInner(),this.stoppedAt!=null)for(let r of this.inner)r.parse.stopAt(this.stoppedAt)}if(this.innerDone==this.inner.length){let i=this.baseTree;return this.stoppedAt!=null&&(i=new D(i.type,i.children,i.positions,i.length,i.propValues.concat([[Yo,this.stoppedAt]]))),i}let e=this.inner[this.innerDone],t=e.parse.advance();if(t){this.innerDone++;let i=Object.assign(Object.create(null),e.target.props);i[R.mounted.id]=new Ht(t,e.overlay,e.parser,e.bracketed),e.target.props=i}return null}get parsedPos(){if(this.baseParse)return 0;let e=this.input.length;for(let t=this.innerDone;t=this.stoppedAt)a=!1;else if(e.hasNode(r)){if(t){let l=t.mounts.find(c=>c.frag.from<=r.from&&c.frag.to>=r.to&&c.mount.overlay);if(l)for(let c of l.mount.overlay){let h=c.from+l.pos,f=c.to+l.pos;h>=r.from&&f<=r.to&&!t.ranges.some(u=>u.fromh)&&t.ranges.push({from:h,to:f})}}a=!1}else if(i&&(s=rX(i.ranges,r.from,r.to)))a=s!=2;else if(!r.type.isAnonymous&&(n=this.nest(r,this.input))&&(r.fromnew We(h.from-r.from,h.to-r.from)):null,!!n.bracketed,r.tree,c.length?c[0].from:r.from)),n.overlay?c.length&&(i={ranges:c,depth:0,prev:i}):a=!1}}else if(t&&(o=t.predicate(r))&&(o===!0&&(o=new We(r.from,r.to)),o.from=0&&t.ranges[l].to==o.from?t.ranges[l]={from:t.ranges[l].from,to:o.to}:t.ranges.push(o)}if(a&&r.firstChild())t&&t.depth++,i&&i.depth++;else for(;!r.nextSibling();){if(!r.parent())break e;if(t&&!--t.depth){let l=Dd(this.ranges,t.ranges);l.length&&(Ld(l),this.inner.splice(t.index,0,new Wn(t.parser,t.parser.startParse(this.input,Id(t.mounts,l),l),t.ranges.map(c=>new We(c.from-t.start,c.to-t.start)),t.bracketed,t.target,l[0].from))),t=t.prev}i&&!--i.depth&&(i=i.prev)}}}};function rX(O,e,t){for(let i of O){if(i.from>=t)break;if(i.to>e)return i.from<=e&&i.to>=t?2:1}return 0}function Md(O,e,t,i,r,n){if(e=e&&t.enter(i,1,C.IgnoreOverlays|C.ExcludeBuffers)||t.next(!1)||(this.done=!0)}hasNode(e){if(this.moveTo(e.from),!this.done&&this.cursor.from+this.offset==e.from&&this.cursor.tree)for(let t=this.cursor.tree;;){if(t==e.tree)return!0;if(t.children.length&&t.positions[0]==0&&t.children[0]instanceof D)t=t.children[0];else break}return!1}},Ro=class{constructor(e){var t;if(this.fragments=e,this.curTo=0,this.fragI=0,e.length){let i=this.curFrag=e[0];this.curTo=(t=i.tree.prop(Yo))!==null&&t!==void 0?t:i.to,this.inner=new jn(i.tree,-i.offset)}else this.curFrag=this.inner=null}hasNode(e){for(;this.curFrag&&e.from>=this.curTo;)this.nextFrag();return this.curFrag&&this.curFrag.from<=e.from&&this.curTo>=e.to&&this.inner.hasNode(e)}nextFrag(){var e;if(this.fragI++,this.fragI==this.fragments.length)this.curFrag=this.inner=null;else{let t=this.curFrag=this.fragments[this.fragI];this.curTo=(e=t.tree.prop(Yo))!==null&&e!==void 0?e:t.to,this.inner=new jn(t.tree,-t.offset)}}findMounts(e,t){var i;let r=[];if(this.inner){this.inner.cursor.moveTo(e,1);for(let n=this.inner.cursor.node;n;n=n.parent){let s=(i=n.tree)===null||i===void 0?void 0:i.prop(R.mounted);if(s&&s.parser==t)for(let a=this.fragI;a=n.to)break;o.tree==this.curFrag.tree&&r.push({frag:o,pos:n.from-o.offset,mount:s})}}}return r}};function Dd(O,e){let t=null,i=e;for(let r=1,n=0;r=a)break;o.to<=s||(t||(i=t=e.slice()),o.froma&&t.splice(n+1,0,new We(a,o.to))):o.to>a?t[n--]=new We(a,o.to):t.splice(n--,1))}}return i}function sX(O,e,t,i){let r=0,n=0,s=!1,a=!1,o=-1e9,l=[];for(;;){let c=r==O.length?1e9:s?O[r].to:O[r].from,h=n==e.length?1e9:a?e[n].to:e[n].from;if(s!=a){let f=Math.max(o,t),u=Math.min(c,h,i);fnew We(f.from+i,f.to+i)),h=sX(e,c,o,l);for(let f=0,u=o;;f++){let Q=f==h.length,$=Q?l:h[f].from;if($>u&&t.push(new Vt(u,$,r.tree,-s,n.from>=u||n.openStart,n.to<=$||n.openEnd)),Q)break;u=h[f].to}}else t.push(new Vt(o,l,r.tree,-s,n.from>=s||n.openStart,n.to<=a||n.openEnd))}return t}var aX=0,Be=class O{constructor(e,t,i,r){this.name=e,this.set=t,this.base=i,this.modified=r,this.id=aX++}toString(){let{name:e}=this;for(let t of this.modified)t.name&&(e=`${t.name}(${e})`);return e}static define(e,t){let i=typeof e=="string"?e:"?";if(e instanceof O&&(t=e),t?.base)throw new Error("Can not derive from a modified tag");let r=new O(i,[],null,[]);if(r.set.push(r),t)for(let n of t.set)r.set.push(n);return r}static defineModifier(e){let t=new An(e);return i=>i.modified.indexOf(t)>-1?i:An.get(i.base||i,i.modified.concat(t).sort((r,n)=>r.id-n.id))}},oX=0,An=class O{constructor(e){this.name=e,this.instances=[],this.id=oX++}static get(e,t){if(!t.length)return e;let i=t[0].instances.find(a=>a.base==e&&lX(t,a.modified));if(i)return i;let r=[],n=new Be(e.name,r,e,t);for(let a of t)a.instances.push(n);let s=cX(t);for(let a of e.set)if(!a.modified.length)for(let o of s)r.push(O.get(a,o));return n}};function lX(O,e){return O.length==e.length&&O.every((t,i)=>t==e[i])}function cX(O){let e=[[]];for(let t=0;ti.length-t.length)}function F(O){let e=Object.create(null);for(let t in O){let i=O[t];Array.isArray(i)||(i=[i]);for(let r of t.split(" "))if(r){let n=[],s=2,a=r;for(let h=0;;){if(a=="..."&&h>0&&h+3==r.length){s=1;break}let f=/^"(?:[^"\\]|\\.)*?"|[^\/!]+/.exec(a);if(!f)throw new RangeError("Invalid path: "+r);if(n.push(f[0]=="*"?"":f[0][0]=='"'?JSON.parse(f[0]):f[0]),h+=f[0].length,h==r.length)break;let u=r[h++];if(h==r.length&&u=="!"){s=0;break}if(u!="/")throw new RangeError("Invalid path: "+r);a=r.slice(h)}let o=n.length-1,l=n[o];if(!l)throw new RangeError("Invalid path: "+r);let c=new wO(i,s,o>0?n.slice(0,o):null);e[l]=c.sort(e[l])}}return Kd.add(e)}var Kd=new R({combine(O,e){let t,i,r;for(;O||e;){if(!O||e&&O.depth>=e.depth?(r=e,e=e.next):(r=O,O=O.next),t&&t.mode==r.mode&&!r.context&&!t.context)continue;let n=new wO(r.tags,r.mode,r.context);t?t.next=n:i=n,t=n}return i}}),wO=class{constructor(e,t,i,r){this.tags=e,this.mode=t,this.context=i,this.next=r}get opaque(){return this.mode==0}get inherit(){return this.mode==1}sort(e){return!e||e.depth{let s=r;for(let a of n)for(let o of a.set){let l=t[o.id];if(l){s=s?s+" "+l:l;break}}return s},scope:i}}function hX(O,e){let t=null;for(let i of O){let r=i.style(e);r&&(t=t?t+" "+r:r)}return t}function Jd(O,e,t,i=0,r=O.length){let n=new Uo(i,Array.isArray(e)?e:[e],t);n.highlightRange(O.cursor(),i,r,"",n.highlighters),n.flush(r)}var Uo=class{constructor(e,t,i){this.at=e,this.highlighters=t,this.span=i,this.class=""}startSpan(e,t){t!=this.class&&(this.flush(e),e>this.at&&(this.at=e),this.class=t)}flush(e){e>this.at&&this.class&&this.span(this.at,e,this.class)}highlightRange(e,t,i,r,n){let{type:s,from:a,to:o}=e;if(a>=i||o<=t)return;s.isTop&&(n=this.highlighters.filter(u=>!u.scope||u.scope(s)));let l=r,c=fX(e)||wO.empty,h=hX(n,c.tags);if(h&&(l&&(l+=" "),l+=h,c.mode==1&&(r+=(r?" ":"")+h)),this.startSpan(Math.max(t,a),l),c.opaque)return;let f=e.tree&&e.tree.prop(R.mounted);if(f&&f.overlay){let u=e.node.enter(f.overlay[0].from+a,1),Q=this.highlighters.filter(p=>!p.scope||p.scope(f.tree.type)),$=e.firstChild();for(let p=0,m=a;;p++){let g=p=P||!e.nextSibling())););if(!g||P>i)break;m=g.to+a,m>t&&(this.highlightRange(u.cursor(),Math.max(t,g.from+a),Math.min(i,m),"",Q),this.startSpan(Math.min(i,m),l))}$&&e.parent()}else if(e.firstChild()){f&&(r="");do if(!(e.to<=t)){if(e.from>=i)break;this.highlightRange(e,t,i,r,n),this.startSpan(Math.min(i,e.to),l)}while(e.nextSibling());e.parent()}}};function fX(O){let e=O.type.prop(Kd);for(;e&&e.context&&!O.matchContext(e.context);)e=e.next;return e||null}var w=Be.define,Cn=w(),tO=w(),Fd=w(tO),Hd=w(tO),OO=w(),Gn=w(OO),zo=w(OO),xt=w(),kO=w(xt),bt=w(),yt=w(),Wo=w(),Or=w(Wo),En=w(),d={comment:Cn,lineComment:w(Cn),blockComment:w(Cn),docComment:w(Cn),name:tO,variableName:w(tO),typeName:Fd,tagName:w(Fd),propertyName:Hd,attributeName:w(Hd),className:w(tO),labelName:w(tO),namespace:w(tO),macroName:w(tO),literal:OO,string:Gn,docString:w(Gn),character:w(Gn),attributeValue:w(Gn),number:zo,integer:w(zo),float:w(zo),bool:w(OO),regexp:w(OO),escape:w(OO),color:w(OO),url:w(OO),keyword:bt,self:w(bt),null:w(bt),atom:w(bt),unit:w(bt),modifier:w(bt),operatorKeyword:w(bt),controlKeyword:w(bt),definitionKeyword:w(bt),moduleKeyword:w(bt),operator:yt,derefOperator:w(yt),arithmeticOperator:w(yt),logicOperator:w(yt),bitwiseOperator:w(yt),compareOperator:w(yt),updateOperator:w(yt),definitionOperator:w(yt),typeOperator:w(yt),controlOperator:w(yt),punctuation:Wo,separator:w(Wo),bracket:Or,angleBracket:w(Or),squareBracket:w(Or),paren:w(Or),brace:w(Or),content:xt,heading:kO,heading1:w(kO),heading2:w(kO),heading3:w(kO),heading4:w(kO),heading5:w(kO),heading6:w(kO),contentSeparator:w(xt),list:w(xt),quote:w(xt),emphasis:w(xt),strong:w(xt),link:w(xt),monospace:w(xt),strikethrough:w(xt),inserted:w(),deleted:w(),changed:w(),invalid:w(),meta:En,documentMeta:w(En),annotation:w(En),processingInstruction:w(En),definition:Be.defineModifier("definition"),constant:Be.defineModifier("constant"),function:Be.defineModifier("function"),standard:Be.defineModifier("standard"),local:Be.defineModifier("local"),special:Be.defineModifier("special")};for(let O in d){let e=d[O];e instanceof Be&&(e.name=O)}var a_=jo([{tag:d.link,class:"tok-link"},{tag:d.heading,class:"tok-heading"},{tag:d.emphasis,class:"tok-emphasis"},{tag:d.strong,class:"tok-strong"},{tag:d.keyword,class:"tok-keyword"},{tag:d.atom,class:"tok-atom"},{tag:d.bool,class:"tok-bool"},{tag:d.url,class:"tok-url"},{tag:d.labelName,class:"tok-labelName"},{tag:d.inserted,class:"tok-inserted"},{tag:d.deleted,class:"tok-deleted"},{tag:d.literal,class:"tok-literal"},{tag:d.string,class:"tok-string"},{tag:d.number,class:"tok-number"},{tag:[d.regexp,d.escape,d.special(d.string)],class:"tok-string2"},{tag:d.variableName,class:"tok-variableName"},{tag:d.local(d.variableName),class:"tok-variableName tok-local"},{tag:d.definition(d.variableName),class:"tok-variableName tok-definition"},{tag:d.special(d.variableName),class:"tok-variableName2"},{tag:d.definition(d.propertyName),class:"tok-propertyName tok-definition"},{tag:d.typeName,class:"tok-typeName"},{tag:d.namespace,class:"tok-namespace"},{tag:d.className,class:"tok-className"},{tag:d.macroName,class:"tok-macroName"},{tag:d.propertyName,class:"tok-propertyName"},{tag:d.operator,class:"tok-operator"},{tag:d.comment,class:"tok-comment"},{tag:d.meta,class:"tok-meta"},{tag:d.invalid,class:"tok-invalid"},{tag:d.punctuation,class:"tok-punctuation"}]);var Co,iO=new R;function or(O){return Z.define({combine:O?e=>e.concat(O):void 0})}var Dn=new R,Re=class{constructor(e,t,i=[],r=""){this.data=e,this.name=r,I.prototype.hasOwnProperty("tree")||Object.defineProperty(I.prototype,"tree",{get(){return U(this)}}),this.parser=t,this.extension=[rO.of(this),I.languageData.of((n,s,a)=>{let o=eu(n,s,a),l=o.type.prop(iO);if(!l)return[];let c=n.facet(l),h=o.type.prop(Dn);if(h){let f=o.resolve(s-o.from,a);for(let u of h)if(u.test(f,n)){let Q=n.facet(u.facet);return u.type=="replace"?Q:Q.concat(c)}}return c})].concat(i)}isActiveAt(e,t,i=-1){return eu(e,t,i).type.prop(iO)==this.data}findRegions(e){let t=e.facet(rO);if(t?.data==this.data)return[{from:0,to:e.doc.length}];if(!t||!t.allowsNesting)return[];let i=[],r=(n,s)=>{if(n.prop(iO)==this.data){i.push({from:s,to:s+n.length});return}let a=n.prop(R.mounted);if(a){if(a.tree.prop(iO)==this.data){if(a.overlay)for(let o of a.overlay)i.push({from:o.from+s,to:o.to+s});else i.push({from:s,to:s+n.length});return}else if(a.overlay){let o=i.length;if(r(a.tree,a.overlay[0].from+s),i.length>o)return}}for(let o=0;oi.isTop?t:void 0)]}),e.name)}configure(e,t){return new O(this.data,this.parser.configure(e),t||this.name)}get allowsNesting(){return this.parser.hasWrappers()}};function U(O){let e=O.field(Re.state,!1);return e?e.tree:D.empty}var Lo=class{constructor(e){this.doc=e,this.cursorPos=0,this.string="",this.cursor=e.iter()}get length(){return this.doc.length}syncTo(e){return this.string=this.cursor.next(e-this.cursorPos).value,this.cursorPos=e+this.string.length,this.cursorPos-this.string.length}chunk(e){return this.syncTo(e),this.string}get lineChunks(){return!0}read(e,t){let i=this.cursorPos-this.string.length;return e=this.cursorPos?this.doc.sliceString(e,t):this.string.slice(e-i,t-i)}},ir=null,nr=class O{constructor(e,t,i=[],r,n,s,a,o){this.parser=e,this.state=t,this.fragments=i,this.tree=r,this.treeLen=n,this.viewport=s,this.skipped=a,this.scheduleOn=o,this.parse=null,this.tempSkipped=[]}static create(e,t,i){return new O(e,t,[],D.empty,0,i,[],null)}startParse(){return this.parser.startParse(new Lo(this.state.doc),this.fragments)}work(e,t){return t!=null&&t>=this.state.doc.length&&(t=void 0),this.tree!=D.empty&&this.isDone(t??this.state.doc.length)?(this.takeTree(),!0):this.withContext(()=>{var i;if(typeof e=="number"){let r=Date.now()+e;e=()=>Date.now()>r}for(this.parse||(this.parse=this.startParse()),t!=null&&(this.parse.stoppedAt==null||this.parse.stoppedAt>t)&&t=this.treeLen&&((this.parse.stoppedAt==null||this.parse.stoppedAt>e)&&this.parse.stopAt(e),this.withContext(()=>{for(;!(t=this.parse.advance()););}),this.treeLen=e,this.tree=t,this.fragments=this.withoutTempSkipped(Vt.addTree(this.tree,this.fragments,!0)),this.parse=null)}withContext(e){let t=ir;ir=this;try{return e()}finally{ir=t}}withoutTempSkipped(e){for(let t;t=this.tempSkipped.pop();)e=tu(e,t.from,t.to);return e}changes(e,t){let{fragments:i,tree:r,treeLen:n,viewport:s,skipped:a}=this;if(this.takeTree(),!e.empty){let o=[];if(e.iterChangedRanges((l,c,h,f)=>o.push({fromA:l,toA:c,fromB:h,toB:f})),i=Vt.applyChanges(i,o),r=D.empty,n=0,s={from:e.mapPos(s.from,-1),to:e.mapPos(s.to,1)},this.skipped.length){a=[];for(let l of this.skipped){let c=e.mapPos(l.from,1),h=e.mapPos(l.to,-1);ce.from&&(this.fragments=tu(this.fragments,r,n),this.skipped.splice(i--,1))}return this.skipped.length>=t?!1:(this.reset(),!0)}reset(){this.parse&&(this.takeTree(),this.parse=null)}skipUntilInView(e,t){this.skipped.push({from:e,to:t})}static getSkippingParser(e){return new class extends eO{createParse(t,i,r){let n=r[0].from,s=r[r.length-1].to;return{parsedPos:n,advance(){let o=ir;if(o){for(let l of r)o.tempSkipped.push(l);e&&(o.scheduleOn=o.scheduleOn?Promise.all([o.scheduleOn,e]):e)}return this.parsedPos=s,new D(ue.none,[],[],s-n)},stoppedAt:null,stopAt(){}}}}}isDone(e){e=Math.min(e,this.state.doc.length);let t=this.fragments;return this.treeLen>=e&&t.length&&t[0].from==0&&t[0].to>=e}static get(){return ir}};function tu(O,e,t){return Vt.applyChanges(O,[{fromA:e,toA:t,fromB:e,toB:t}])}var sr=class O{constructor(e){this.context=e,this.tree=e.tree}apply(e){if(!e.docChanged&&this.tree==this.context.tree)return this;let t=this.context.changes(e.changes,e.state),i=this.context.treeLen==e.startState.doc.length?void 0:Math.max(e.changes.mapPos(this.context.treeLen),t.viewport.to);return t.work(20,i)||t.takeTree(),new O(t)}static init(e){let t=Math.min(3e3,e.doc.length),i=nr.create(e.facet(rO).parser,e,{from:0,to:t});return i.work(20,t)||i.takeTree(),new O(i)}};Re.state=ce.define({create:sr.init,update(O,e){for(let t of e.effects)if(t.is(Re.setState))return t.value;return e.startState.facet(rO)!=e.state.facet(rO)?sr.init(e.state):O.apply(e)}});var au=O=>{let e=setTimeout(()=>O(),500);return()=>clearTimeout(e)};typeof requestIdleCallback<"u"&&(au=O=>{let e=-1,t=setTimeout(()=>{e=requestIdleCallback(O,{timeout:400})},100);return()=>e<0?clearTimeout(t):cancelIdleCallback(e)});var Go=typeof navigator<"u"&&(!((Co=navigator.scheduling)===null||Co===void 0)&&Co.isInputPending)?()=>navigator.scheduling.isInputPending():null,dX=he.fromClass(class{constructor(e){this.view=e,this.working=null,this.workScheduled=0,this.chunkEnd=-1,this.chunkBudget=-1,this.work=this.work.bind(this),this.scheduleWork()}update(e){let t=this.view.state.field(Re.state).context;(t.updateViewport(e.view.viewport)||this.view.viewport.to>t.treeLen)&&this.scheduleWork(),(e.docChanged||e.selectionSet)&&(this.view.hasFocus&&(this.chunkBudget+=50),this.scheduleWork()),this.checkAsyncSchedule(t)}scheduleWork(){if(this.working)return;let{state:e}=this.view,t=e.field(Re.state);(t.tree!=t.context.tree||!t.context.isDone(e.doc.length))&&(this.working=au(this.work))}work(e){this.working=null;let t=Date.now();if(this.chunkEndr+1e3,o=n.context.work(()=>Go&&Go()||Date.now()>s,r+(a?0:1e5));this.chunkBudget-=Date.now()-t,(o||this.chunkBudget<=0)&&(n.context.takeTree(),this.view.dispatch({effects:Re.setState.of(new sr(n.context))})),this.chunkBudget>0&&!(o&&!a)&&this.scheduleWork(),this.checkAsyncSchedule(n.context)}checkAsyncSchedule(e){e.scheduleOn&&(this.workScheduled++,e.scheduleOn.then(()=>this.scheduleWork()).catch(t=>Xe(this.view.state,t)).then(()=>this.workScheduled--),e.scheduleOn=null)}destroy(){this.working&&this.working()}isWorking(){return!!(this.working||this.workScheduled>0)}},{eventHandlers:{focus(){this.scheduleWork()}}}),rO=Z.define({combine(O){return O.length?O[0]:null},enables:O=>[Re.state,dX,T.contentAttributes.compute([O],e=>{let t=e.facet(O);return t&&t.name?{"data-language":t.name}:{}})]}),J=class{constructor(e,t=[]){this.language=e,this.support=t,this.extension=[e,t]}},ar=class O{constructor(e,t,i,r,n,s=void 0){this.name=e,this.alias=t,this.extensions=i,this.filename=r,this.loadFunc=n,this.support=s,this.loading=null}load(){return this.loading||(this.loading=this.loadFunc().then(e=>this.support=e,e=>{throw this.loading=null,e}))}static of(e){let{load:t,support:i}=e;if(!t){if(!i)throw new RangeError("Must pass either 'load' or 'support' to LanguageDescription.of");t=()=>Promise.resolve(i)}return new O(e.name,(e.alias||[]).concat(e.name).map(r=>r.toLowerCase()),e.extensions||[],e.filename,t,i)}static matchFilename(e,t){for(let r of e)if(r.filename&&r.filename.test(t))return r;let i=/\.([^.]+)$/.exec(t);if(i){for(let r of e)if(r.extensions.indexOf(i[1])>-1)return r}return null}static matchLanguageName(e,t,i=!0){t=t.toLowerCase();for(let r of e)if(r.alias.some(n=>n==t))return r;if(i)for(let r of e)for(let n of r.alias){let s=t.indexOf(n);if(s>-1&&(n.length>2||!/\w/.test(t[s-1])&&!/\w/.test(t[s+n.length])))return r}return null}},uX=Z.define(),nO=Z.define({combine:O=>{if(!O.length)return" ";let e=O[0];if(!e||/\S/.test(e)||Array.from(e).some(t=>t!=e[0]))throw new Error("Invalid indent unit: "+JSON.stringify(O[0]));return e}});function lr(O){let e=O.facet(nO);return e.charCodeAt(0)==9?O.tabSize*e.length:e.length}function hi(O,e){let t="",i=O.tabSize,r=O.facet(nO)[0];if(r==" "){for(;e>=i;)t+=" ",e-=i;r=" "}for(let n=0;n=e?QX(O,t,e):null}var ZO=class{constructor(e,t={}){this.state=e,this.options=t,this.unit=lr(e)}lineAt(e,t=1){let i=this.state.doc.lineAt(e),{simulateBreak:r,simulateDoubleBreak:n}=this.options;return r!=null&&r>=i.from&&r<=i.to?n&&r==e?{text:"",from:e}:(t<0?r-1&&(n+=s-this.countColumn(i,i.search(/\S|$/))),n}countColumn(e,t=e.length){return ve(e,this.state.tabSize,t)}lineIndent(e,t=1){let{text:i,from:r}=this.lineAt(e,t),n=this.options.overrideIndentation;if(n){let s=n(r);if(s>-1)return s}return this.countColumn(i,i.search(/\S|$/))}get simulatedBreak(){return this.options.simulateBreak||null}},se=new R;function QX(O,e,t){let i=e.resolveStack(t),r=e.resolveInner(t,-1).resolve(t,0).enterUnfinishedNodesBefore(t);if(r!=i.node){let n=[];for(let s=r;s&&!(s.fromi.node.to||s.from==i.node.from&&s.type==i.node.type);s=s.parent)n.push(s);for(let s=n.length-1;s>=0;s--)i={node:n[s],next:i}}return ou(i,O,t)}function ou(O,e,t){for(let i=O;i;i=i.next){let r=pX(i.node);if(r)return r(Mo.create(e,t,i))}return 0}function $X(O){return O.pos==O.options.simulateBreak&&O.options.simulateDoubleBreak}function pX(O){let e=O.type.prop(se);if(e)return e;let t=O.firstChild,i;if(t&&(i=t.type.prop(R.closedBy))){let r=O.lastChild,n=r&&i.indexOf(r.name)>-1;return s=>lu(s,!0,1,void 0,n&&!$X(s)?r.from:void 0)}return O.parent==null?mX:null}function mX(){return 0}var Mo=class O extends ZO{constructor(e,t,i){super(e.state,e.options),this.base=e,this.pos=t,this.context=i}get node(){return this.context.node}static create(e,t,i){return new O(e,t,i)}get textAfter(){return this.textAfterPos(this.pos)}get baseIndent(){return this.baseIndentFor(this.node)}baseIndentFor(e){let t=this.state.doc.lineAt(e.from);for(;;){let i=e.resolve(t.from);for(;i.parent&&i.parent.from==i.from;)i=i.parent;if(gX(i,e))break;t=this.state.doc.lineAt(i.from)}return this.lineIndent(t.from)}continue(){return ou(this.context.next,this.base,this.pos)}};function gX(O,e){for(let t=e;t;t=t.parent)if(O==t)return!0;return!1}function PX(O){let e=O.node,t=e.childAfter(e.from),i=e.lastChild;if(!t)return null;let r=O.options.simulateBreak,n=O.state.doc.lineAt(t.from),s=r==null||r<=n.from?n.to:Math.min(n.to,r);for(let a=t.to;;){let o=e.childAfter(a);if(!o||o==i)return null;if(!o.type.isSkipped){if(o.from>=s)return null;let l=/^ */.exec(n.text.slice(t.to-n.from))[0].length;return{from:t.from,to:t.to+l}}a=o.to}}function be({closing:O,align:e=!0,units:t=1}){return i=>lu(i,e,t,O)}function lu(O,e,t,i,r){let n=O.textAfter,s=n.match(/^\s*/)[0].length,a=i&&n.slice(s,s+i.length)==i||r==O.pos+s,o=e?PX(O):null;return o?a?O.column(o.from):O.column(o.to):O.baseIndent+(a?0:O.unit*t)}var sO=O=>O.baseIndent;function le({except:O,units:e=1}={}){return t=>{let i=O&&O.test(t.textAfter);return t.baseIndent+(i?0:e*t.unit)}}var SX=200;function cu(){return I.transactionFilter.of(O=>{if(!O.docChanged||!O.isUserEvent("input.type")&&!O.isUserEvent("input.complete"))return O;let e=O.startState.languageDataAt("indentOnInput",O.startState.selection.main.head);if(!e.length)return O;let t=O.newDoc,{head:i}=O.newSelection.main,r=t.lineAt(i);if(i>r.from+SX)return O;let n=t.sliceString(r.from,i);if(!e.some(l=>l.test(n)))return O;let{state:s}=O,a=-1,o=[];for(let{head:l}of s.selection.ranges){let c=s.doc.lineAt(l);if(c.from==a)continue;a=c.from;let h=In(s,c.from);if(h==null)continue;let f=/^\s*/.exec(c.text)[0],u=hi(s,h);f!=u&&o.push({from:c.from,to:c.from+f.length,insert:u})}return o.length?[O,{changes:o,sequential:!0}]:O})}var Ho=Z.define(),te=new R;function me(O){let e=O.firstChild,t=O.lastChild;return e&&e.tot)continue;if(n&&a.from=e&&l.to>t&&(n=l)}}return n}function TX(O){let e=O.lastChild;return e&&e.to==O.to&&e.type.isError}function Ln(O,e,t){for(let i of O.facet(Ho)){let r=i(O,e,t);if(r)return r}return XX(O,e,t)}function hu(O,e){let t=e.mapPos(O.from,1),i=e.mapPos(O.to,-1);return t>=i?void 0:{from:t,to:i}}var Bn=V.define({map:hu}),cr=V.define({map:hu});function fu(O){let e=[];for(let{head:t}of O.state.selection.ranges)e.some(i=>i.from<=t&&i.to>=t)||e.push(O.lineBlockAt(t));return e}var vO=ce.define({create(){return Y.none},update(O,e){e.isUserEvent("delete")&&e.changes.iterChangedRanges((t,i)=>O=Ou(O,t,i)),O=O.map(e.changes);for(let t of e.effects)if(t.is(Bn)&&!bX(O,t.value.from,t.value.to)){let{preparePlaceholder:i}=e.state.facet(Ko),r=i?Y.replace({widget:new Do(i(e.state,t.value))}):iu;O=O.update({add:[r.range(t.value.from,t.value.to)]})}else t.is(cr)&&(O=O.update({filter:(i,r)=>t.value.from!=i||t.value.to!=r,filterFrom:t.value.from,filterTo:t.value.to}));return e.selection&&(O=Ou(O,e.selection.main.head)),O},provide:O=>T.decorations.from(O),toJSON(O,e){let t=[];return O.between(0,e.doc.length,(i,r)=>{t.push(i,r)}),t},fromJSON(O){if(!Array.isArray(O)||O.length%2)throw new RangeError("Invalid JSON for fold state");let e=[];for(let t=0;t{re&&(i=!0)}),i?O.update({filterFrom:e,filterTo:t,filter:(r,n)=>r>=t||n<=e}):O}function Mn(O,e,t){var i;let r=null;return(i=O.field(vO,!1))===null||i===void 0||i.between(e,t,(n,s)=>{(!r||r.from>n)&&(r={from:n,to:s})}),r}function bX(O,e,t){let i=!1;return O.between(e,e,(r,n)=>{r==e&&n==t&&(i=!0)}),i}function du(O,e){return O.field(vO,!1)?e:e.concat(V.appendConfig.of($u()))}var yX=O=>{for(let e of fu(O)){let t=Ln(O.state,e.from,e.to);if(t)return O.dispatch({effects:du(O.state,[Bn.of(t),uu(O,t)])}),!0}return!1},xX=O=>{if(!O.state.field(vO,!1))return!1;let e=[];for(let t of fu(O)){let i=Mn(O.state,t.from,t.to);i&&e.push(cr.of(i),uu(O,i,!1))}return e.length&&O.dispatch({effects:e}),e.length>0};function uu(O,e,t=!0){let i=O.state.doc.lineAt(e.from).number,r=O.state.doc.lineAt(e.to).number;return T.announce.of(`${O.state.phrase(t?"Folded lines":"Unfolded lines")} ${i} ${O.state.phrase("to")} ${r}.`)}var kX=O=>{let{state:e}=O,t=[];for(let i=0;i{let e=O.state.field(vO,!1);if(!e||!e.size)return!1;let t=[];return e.between(0,O.state.doc.length,(i,r)=>{t.push(cr.of({from:i,to:r}))}),O.dispatch({effects:t}),!0};var Qu=[{key:"Ctrl-Shift-[",mac:"Cmd-Alt-[",run:yX},{key:"Ctrl-Shift-]",mac:"Cmd-Alt-]",run:xX},{key:"Ctrl-Alt-[",run:kX},{key:"Ctrl-Alt-]",run:wX}],ZX={placeholderDOM:null,preparePlaceholder:null,placeholderText:"\u2026"},Ko=Z.define({combine(O){return xe(O,ZX)}});function $u(O){let e=[vO,YX];return O&&e.push(Ko.of(O)),e}function pu(O,e){let{state:t}=O,i=t.facet(Ko),r=s=>{let a=O.lineBlockAt(O.posAtDOM(s.target)),o=Mn(O.state,a.from,a.to);o&&O.dispatch({effects:cr.of(o)}),s.preventDefault()};if(i.placeholderDOM)return i.placeholderDOM(O,r,e);let n=document.createElement("span");return n.textContent=i.placeholderText,n.setAttribute("aria-label",t.phrase("folded code")),n.title=t.phrase("unfold"),n.className="cm-foldPlaceholder",n.onclick=r,n}var iu=Y.replace({widget:new class extends _e{toDOM(O){return pu(O,null)}}}),Do=class extends _e{constructor(e){super(),this.value=e}eq(e){return this.value==e.value}toDOM(e){return pu(e,this.value)}},vX={openText:"\u2304",closedText:"\u203A",markerDOM:null,domEventHandlers:{},foldingChanged:()=>!1},rr=class extends Ie{constructor(e,t){super(),this.config=e,this.open=t}eq(e){return this.config==e.config&&this.open==e.open}toDOM(e){if(this.config.markerDOM)return this.config.markerDOM(this.open);let t=document.createElement("span");return t.textContent=this.open?this.config.openText:this.config.closedText,t.title=e.state.phrase(this.open?"Fold line":"Unfold line"),t}};function mu(O={}){let e={...vX,...O},t=new rr(e,!0),i=new rr(e,!1),r=he.fromClass(class{constructor(s){this.from=s.viewport.from,this.markers=this.buildMarkers(s)}update(s){(s.docChanged||s.viewportChanged||s.startState.facet(rO)!=s.state.facet(rO)||s.startState.field(vO,!1)!=s.state.field(vO,!1)||U(s.startState)!=U(s.state)||e.foldingChanged(s))&&(this.markers=this.buildMarkers(s.view))}buildMarkers(s){let a=new Le;for(let o of s.viewportLineBlocks){let l=Mn(s.state,o.from,o.to)?i:Ln(s.state,o.from,o.to)?t:null;l&&a.add(o.from,o.from,l)}return a.finish()}}),{domEventHandlers:n}=e;return[r,bo({class:"cm-foldGutter",markers(s){var a;return((a=s.plugin(r))===null||a===void 0?void 0:a.markers)||M.empty},initialSpacer(){return new rr(e,!1)},domEventHandlers:{...n,click:(s,a,o)=>{if(n.click&&n.click(s,a,o))return!0;let l=Mn(s.state,a.from,a.to);if(l)return s.dispatch({effects:cr.of(l)}),!0;let c=Ln(s.state,a.from,a.to);return c?(s.dispatch({effects:Bn.of(c)}),!0):!1}}}),$u()]}var YX=T.baseTheme({".cm-foldPlaceholder":{backgroundColor:"#eee",border:"1px solid #ddd",color:"#888",borderRadius:".2em",margin:"0 1px",padding:"0 1px",cursor:"pointer"},".cm-foldGutter span":{padding:"0 1px",cursor:"pointer"}}),ci=class O{constructor(e,t){this.specs=e;let i;function r(a){let o=Ot.newName();return(i||(i=Object.create(null)))["."+o]=a,o}let n=typeof t.all=="string"?t.all:t.all?r(t.all):void 0,s=t.scope;this.scope=s instanceof Re?a=>a.prop(iO)==s.data:s?a=>a==s:void 0,this.style=jo(e.map(a=>({tag:a.tag,class:a.class||r(Object.assign({},a,{tag:null}))})),{all:n}).style,this.module=i?new Ot(i):null,this.themeType=t.themeType}static define(e,t){return new O(e,t||{})}},Io=Z.define(),gu=Z.define({combine(O){return O.length?[O[0]]:null}});function Eo(O){let e=O.facet(Io);return e.length?e:O.facet(gu)}function Nn(O,e){let t=[_X],i;return O instanceof ci&&(O.module&&t.push(T.styleModule.of(O.module)),i=O.themeType),e?.fallback?t.push(gu.of(O)):i?t.push(Io.computeN([T.darkTheme],r=>r.facet(T.darkTheme)==(i=="dark")?[O]:[])):t.push(Io.of(O)),t}var Bo=class{constructor(e){this.markCache=Object.create(null),this.tree=U(e.state),this.decorations=this.buildDeco(e,Eo(e.state)),this.decoratedTo=e.viewport.to}update(e){let t=U(e.state),i=Eo(e.state),r=i!=Eo(e.startState),{viewport:n}=e.view,s=e.changes.mapPos(this.decoratedTo,1);t.length=n.to?(this.decorations=this.decorations.map(e.changes),this.decoratedTo=s):(t!=this.tree||e.viewportChanged||r)&&(this.tree=t,this.decorations=this.buildDeco(e.view,i),this.decoratedTo=n.to)}buildDeco(e,t){if(!t||!this.tree.length)return Y.none;let i=new Le;for(let{from:r,to:n}of e.visibleRanges)Jd(this.tree,t,(s,a,o)=>{i.add(s,a,this.markCache[o]||(this.markCache[o]=Y.mark({class:o})))},r,n);return i.finish()}},_X=ze.high(he.fromClass(Bo,{decorations:O=>O.decorations})),Pu=ci.define([{tag:d.meta,color:"#404740"},{tag:d.link,textDecoration:"underline"},{tag:d.heading,textDecoration:"underline",fontWeight:"bold"},{tag:d.emphasis,fontStyle:"italic"},{tag:d.strong,fontWeight:"bold"},{tag:d.strikethrough,textDecoration:"line-through"},{tag:d.keyword,color:"#708"},{tag:[d.atom,d.bool,d.url,d.contentSeparator,d.labelName],color:"#219"},{tag:[d.literal,d.inserted],color:"#164"},{tag:[d.string,d.deleted],color:"#a11"},{tag:[d.regexp,d.escape,d.special(d.string)],color:"#e40"},{tag:d.definition(d.variableName),color:"#00f"},{tag:d.local(d.variableName),color:"#30a"},{tag:[d.typeName,d.namespace],color:"#085"},{tag:d.className,color:"#167"},{tag:[d.special(d.variableName),d.macroName],color:"#256"},{tag:d.definition(d.propertyName),color:"#00c"},{tag:d.comment,color:"#940"},{tag:d.invalid,color:"#f00"}]),RX=T.baseTheme({"&.cm-focused .cm-matchingBracket":{backgroundColor:"#328c8252"},"&.cm-focused .cm-nonmatchingBracket":{backgroundColor:"#bb555544"}}),Su=1e4,Xu="()[]{}",Tu=Z.define({combine(O){return xe(O,{afterCursor:!0,brackets:Xu,maxScanDistance:Su,renderMatch:zX})}}),VX=Y.mark({class:"cm-matchingBracket"}),qX=Y.mark({class:"cm-nonmatchingBracket"});function zX(O){let e=[],t=O.matched?VX:qX;return e.push(t.range(O.start.from,O.start.to)),O.end&&e.push(t.range(O.end.from,O.end.to)),e}var UX=ce.define({create(){return Y.none},update(O,e){if(!e.docChanged&&!e.selection)return O;let t=[],i=e.state.facet(Tu);for(let r of e.state.selection.ranges){if(!r.empty)continue;let n=dt(e.state,r.head,-1,i)||r.head>0&&dt(e.state,r.head-1,1,i)||i.afterCursor&&(dt(e.state,r.head,1,i)||r.headT.decorations.from(O)}),WX=[UX,RX];function bu(O={}){return[Tu.of(O),WX]}var hr=new R;function No(O,e,t){let i=O.prop(e<0?R.openedBy:R.closedBy);if(i)return i;if(O.name.length==1){let r=t.indexOf(O.name);if(r>-1&&r%2==(e<0?1:0))return[t[r+e]]}return null}function Fo(O){let e=O.type.prop(hr);return e?e(O.node):O}function dt(O,e,t,i={}){let r=i.maxScanDistance||Su,n=i.brackets||Xu,s=U(O),a=s.resolveInner(e,t);for(let o=a;o;o=o.parent){let l=No(o.type,t,n);if(l&&o.from0?e>=c.from&&ec.from&&e<=c.to))return jX(O,e,t,o,c,l,n)}}return CX(O,e,t,s,a.type,r,n)}function jX(O,e,t,i,r,n,s){let a=i.parent,o={from:r.from,to:r.to},l=0,c=a?.cursor();if(c&&(t<0?c.childBefore(i.from):c.childAfter(i.to)))do if(t<0?c.to<=i.from:c.from>=i.to){if(l==0&&n.indexOf(c.type.name)>-1&&c.from0)return null;let l={from:t<0?e-1:e,to:t>0?e+1:e},c=O.doc.iterRange(e,t>0?O.doc.length:0),h=0;for(let f=0;!c.next().done&&f<=n;){let u=c.value;t<0&&(f+=u.length);let Q=e+f*t;for(let $=t>0?0:u.length-1,p=t>0?u.length:-1;$!=p;$+=t){let m=s.indexOf(u[$]);if(!(m<0||i.resolveInner(Q+$,1).type!=r))if(m%2==0==t>0)h++;else{if(h==1)return{start:l,end:{from:Q+$,to:Q+$+1},matched:m>>1==o>>1};h--}}t>0&&(f+=u.length)}return c.done?{start:l,matched:!1}:null}var GX=Object.create(null),ru=[ue.none];var nu=[],su=Object.create(null),EX=Object.create(null);for(let[O,e]of[["variable","variableName"],["variable-2","variableName.special"],["string-2","string.special"],["def","variableName.definition"],["tag","tagName"],["attribute","attributeName"],["type","typeName"],["builtin","variableName.standard"],["qualifier","modifier"],["error","invalid"],["header","heading"],["property","propertyName"]])EX[O]=AX(GX,e);function Ao(O,e){nu.indexOf(O)>-1||(nu.push(O),console.warn(e))}function AX(O,e){let t=[];for(let a of e.split(" ")){let o=[];for(let l of a.split(".")){let c=O[l]||d[l];c?typeof c=="function"?o.length?o=o.map(c):Ao(l,`Modifier ${l} used at start of tag`):o.length?Ao(l,`Tag ${l} used as modifier`):o=Array.isArray(c)?c:[c]:Ao(l,`Unknown highlighting tag ${l}`)}for(let l of o)t.push(l)}if(!t.length)return 0;let i=e.replace(/ /g,"_"),r=i+" "+t.map(a=>a.id),n=su[r];if(n)return n.id;let s=su[r]=ue.define({id:ru.length,name:i,props:[F({[i]:t})]});return ru.push(s),s.id}var Q_={rtl:Y.mark({class:"cm-iso",inclusive:!0,attributes:{dir:"rtl"},bidiIsolate:H.RTL}),ltr:Y.mark({class:"cm-iso",inclusive:!0,attributes:{dir:"ltr"},bidiIsolate:H.LTR}),auto:Y.mark({class:"cm-iso",inclusive:!0,attributes:{dir:"auto"},bidiIsolate:null})};var LX=O=>{let{state:e}=O,t=e.doc.lineAt(e.selection.main.from),i=nl(O.state,t.from);return i.line?MX(O):i.block?IX(O):!1};function rl(O,e){return({state:t,dispatch:i})=>{if(t.readOnly)return!1;let r=O(e,t);return r?(i(t.update(r)),!0):!1}}var MX=rl(FX,0);var DX=rl(Ru,0);var IX=rl((O,e)=>Ru(O,e,NX(e)),0);function nl(O,e){let t=O.languageDataAt("commentTokens",e,1);return t.length?t[0]:{}}var fr=50;function BX(O,{open:e,close:t},i,r){let n=O.sliceDoc(i-fr,i),s=O.sliceDoc(r,r+fr),a=/\s*$/.exec(n)[0].length,o=/^\s*/.exec(s)[0].length,l=n.length-a;if(n.slice(l-e.length,l)==e&&s.slice(o,o+t.length)==t)return{open:{pos:i-a,margin:a&&1},close:{pos:r+o,margin:o&&1}};let c,h;r-i<=2*fr?c=h=O.sliceDoc(i,r):(c=O.sliceDoc(i,i+fr),h=O.sliceDoc(r-fr,r));let f=/^\s*/.exec(c)[0].length,u=/\s*$/.exec(h)[0].length,Q=h.length-u-t.length;return c.slice(f,f+e.length)==e&&h.slice(Q,Q+t.length)==t?{open:{pos:i+f+e.length,margin:/\s/.test(c.charAt(f+e.length))?1:0},close:{pos:r-u-t.length,margin:/\s/.test(h.charAt(Q-1))?1:0}}:null}function NX(O){let e=[];for(let t of O.selection.ranges){let i=O.doc.lineAt(t.from),r=t.to<=i.to?i:O.doc.lineAt(t.to);r.from>i.from&&r.from==t.to&&(r=t.to==i.to+1?i:O.doc.lineAt(t.to-1));let n=e.length-1;n>=0&&e[n].to>i.from?e[n].to=r.to:e.push({from:i.from+/^\s*/.exec(i.text)[0].length,to:r.to})}return e}function Ru(O,e,t=e.selection.ranges){let i=t.map(n=>nl(e,n.from).block);if(!i.every(n=>n))return null;let r=t.map((n,s)=>BX(e,i[s],n.from,n.to));if(O!=2&&!r.every(n=>n))return{changes:e.changes(t.map((n,s)=>r[s]?[]:[{from:n.from,insert:i[s].open+" "},{from:n.to,insert:" "+i[s].close}]))};if(O!=1&&r.some(n=>n)){let n=[];for(let s=0,a;sr&&(n==s||s>h.from)){r=h.from;let f=/^\s*/.exec(h.text)[0].length,u=f==h.length,Q=h.text.slice(f,f+l.length)==l?f:-1;fn.comment<0&&(!n.empty||n.single))){let n=[];for(let{line:a,token:o,indent:l,empty:c,single:h}of i)(h||!c)&&n.push({from:a.from+l,insert:o+" "});let s=e.changes(n);return{changes:s,selection:e.selection.map(s,1)}}else if(O!=1&&i.some(n=>n.comment>=0)){let n=[];for(let{line:s,comment:a,token:o}of i)if(a>=0){let l=s.from+a,c=l+o.length;s.text[c-s.from]==" "&&c++,n.push({from:l,to:c})}return{changes:n}}return null}var el=qe.define(),HX=qe.define(),KX=Z.define(),Vu=Z.define({combine(O){return xe(O,{minDepth:100,newGroupDelay:500,joinToEvent:(e,t)=>t},{minDepth:Math.max,newGroupDelay:Math.min,joinToEvent:(e,t)=>(i,r)=>e(i,r)||t(i,r)})}}),qu=ce.define({create(){return YO.empty},update(O,e){let t=e.state.facet(Vu),i=e.annotation(el);if(i){let o=ut.fromTransaction(e,i.selection),l=i.side,c=l==0?O.undone:O.done;return o?c=Hn(c,c.length,t.minDepth,o):c=ju(c,e.startState.selection),new YO(l==0?i.rest:c,l==0?c:i.rest)}let r=e.annotation(HX);if((r=="full"||r=="before")&&(O=O.isolate()),e.annotation(Qe.addToHistory)===!1)return e.changes.empty?O:O.addMapping(e.changes.desc);let n=ut.fromTransaction(e),s=e.annotation(Qe.time),a=e.annotation(Qe.userEvent);return n?O=O.addChanges(n,s,a,t,e):e.selection&&(O=O.addSelection(e.startState.selection,s,a,t.newGroupDelay)),(r=="full"||r=="after")&&(O=O.isolate()),O},toJSON(O){return{done:O.done.map(e=>e.toJSON()),undone:O.undone.map(e=>e.toJSON())}},fromJSON(O){return new YO(O.done.map(ut.fromJSON),O.undone.map(ut.fromJSON))}});function zu(O={}){return[qu,Vu.of(O),T.domEventHandlers({beforeinput(e,t){let i=e.inputType=="historyUndo"?Uu:e.inputType=="historyRedo"?tl:null;return i?(e.preventDefault(),i(t)):!1}})]}function Kn(O,e){return function({state:t,dispatch:i}){if(!e&&t.readOnly)return!1;let r=t.field(qu,!1);if(!r)return!1;let n=r.pop(O,t,e);return n?(i(n),!0):!1}}var Uu=Kn(0,!1),tl=Kn(1,!1),JX=Kn(0,!0),eT=Kn(1,!0);var ut=class O{constructor(e,t,i,r,n){this.changes=e,this.effects=t,this.mapped=i,this.startSelection=r,this.selectionsAfter=n}setSelAfter(e){return new O(this.changes,this.effects,this.mapped,this.startSelection,e)}toJSON(){var e,t,i;return{changes:(e=this.changes)===null||e===void 0?void 0:e.toJSON(),mapped:(t=this.mapped)===null||t===void 0?void 0:t.toJSON(),startSelection:(i=this.startSelection)===null||i===void 0?void 0:i.toJSON(),selectionsAfter:this.selectionsAfter.map(r=>r.toJSON())}}static fromJSON(e){return new O(e.changes&&Ze.fromJSON(e.changes),[],e.mapped&&vt.fromJSON(e.mapped),e.startSelection&&S.fromJSON(e.startSelection),e.selectionsAfter.map(S.fromJSON))}static fromTransaction(e,t){let i=st;for(let r of e.startState.facet(KX)){let n=r(e);n.length&&(i=i.concat(n))}return!i.length&&e.changes.empty?null:new O(e.changes.invert(e.startState.doc),i,void 0,t||e.startState.selection,st)}static selection(e){return new O(void 0,st,void 0,void 0,e)}};function Hn(O,e,t,i){let r=e+1>t+20?e-t-1:0,n=O.slice(r,e);return n.push(i),n}function tT(O,e){let t=[],i=!1;return O.iterChangedRanges((r,n)=>t.push(r,n)),e.iterChangedRanges((r,n,s,a)=>{for(let o=0;o=l&&s<=c&&(i=!0)}}),i}function OT(O,e){return O.ranges.length==e.ranges.length&&O.ranges.filter((t,i)=>t.empty!=e.ranges[i].empty).length===0}function Wu(O,e){return O.length?e.length?O.concat(e):O:e}var st=[],iT=200;function ju(O,e){if(O.length){let t=O[O.length-1],i=t.selectionsAfter.slice(Math.max(0,t.selectionsAfter.length-iT));return i.length&&i[i.length-1].eq(e)?O:(i.push(e),Hn(O,O.length-1,1e9,t.setSelAfter(i)))}else return[ut.selection([e])]}function rT(O){let e=O[O.length-1],t=O.slice();return t[O.length-1]=e.setSelAfter(e.selectionsAfter.slice(0,e.selectionsAfter.length-1)),t}function Jo(O,e){if(!O.length)return O;let t=O.length,i=st;for(;t;){let r=nT(O[t-1],e,i);if(r.changes&&!r.changes.empty||r.effects.length){let n=O.slice(0,t);return n[t-1]=r,n}else e=r.mapped,t--,i=r.selectionsAfter}return i.length?[ut.selection(i)]:st}function nT(O,e,t){let i=Wu(O.selectionsAfter.length?O.selectionsAfter.map(a=>a.map(e)):st,t);if(!O.changes)return ut.selection(i);let r=O.changes.map(e),n=e.mapDesc(O.changes,!0),s=O.mapped?O.mapped.composeDesc(n):n;return new ut(r,V.mapEffects(O.effects,e),s,O.startSelection.map(n),i)}var sT=/^(input\.type|delete)($|\.)/,YO=class O{constructor(e,t,i=0,r=void 0){this.done=e,this.undone=t,this.prevTime=i,this.prevUserEvent=r}isolate(){return this.prevTime?new O(this.done,this.undone):this}addChanges(e,t,i,r,n){let s=this.done,a=s[s.length-1];return a&&a.changes&&!a.changes.empty&&e.changes&&(!i||sT.test(i))&&(!a.selectionsAfter.length&&t-this.prevTime0&&t-this.prevTimet.empty?O.moveByChar(t,e):Jn(t,e))}function ke(O){return O.textDirectionAt(O.state.selection.main.head)==H.LTR}var Eu=O=>Gu(O,!ke(O)),Au=O=>Gu(O,ke(O));function Lu(O,e){return $t(O,t=>t.empty?O.moveByGroup(t,e):Jn(t,e))}var aT=O=>Lu(O,!ke(O)),oT=O=>Lu(O,ke(O));var b_=typeof Intl<"u"&&Intl.Segmenter?new Intl.Segmenter(void 0,{granularity:"word"}):null;function lT(O,e,t){if(e.type.prop(t))return!0;let i=e.to-e.from;return i&&(i>2||/[^\s,.;:]/.test(O.sliceDoc(e.from,e.to)))||e.firstChild}function es(O,e,t){let i=U(O).resolveInner(e.head),r=t?R.closedBy:R.openedBy;for(let o=e.head;;){let l=t?i.childAfter(o):i.childBefore(o);if(!l)break;lT(O,l,r)?i=l:o=t?l.to:l.from}let n=i.type.prop(r),s,a;return n&&(s=t?dt(O,i.from,1):dt(O,i.to,-1))&&s.matched?a=t?s.end.to:s.end.from:a=t?i.to:i.from,S.cursor(a,t?-1:1)}var cT=O=>$t(O,e=>es(O.state,e,!ke(O))),hT=O=>$t(O,e=>es(O.state,e,ke(O)));function Mu(O,e){return $t(O,t=>{if(!t.empty)return Jn(t,e);let i=O.moveVertically(t,e);return i.head!=t.head?i:O.moveToLineBoundary(t,e)})}var Du=O=>Mu(O,!1),Iu=O=>Mu(O,!0);function Bu(O){let e=O.scrollDOM.clientHeights.empty?O.moveVertically(s,e,t.height):Jn(s,e));if(r.eq(i.selection))return!1;let n;if(t.selfScroll){let s=O.coordsAtPos(i.selection.main.head),a=O.scrollDOM.getBoundingClientRect(),o=a.top+t.marginTop,l=a.bottom-t.marginBottom;s&&s.top>o&&s.bottomNu(O,!1),Ol=O=>Nu(O,!0);function aO(O,e,t){let i=O.lineBlockAt(e.head),r=O.moveToLineBoundary(e,t);if(r.head==e.head&&r.head!=(t?i.to:i.from)&&(r=O.moveToLineBoundary(e,t,!1)),!t&&r.head==i.from&&i.length){let n=/^\s*/.exec(O.state.sliceDoc(i.from,Math.min(i.from+100,i.to)))[0].length;n&&e.head!=i.from+n&&(r=S.cursor(i.from+n))}return r}var fT=O=>$t(O,e=>aO(O,e,!0)),dT=O=>$t(O,e=>aO(O,e,!1)),uT=O=>$t(O,e=>aO(O,e,!ke(O))),QT=O=>$t(O,e=>aO(O,e,ke(O))),$T=O=>$t(O,e=>S.cursor(O.lineBlockAt(e.head).from,1)),pT=O=>$t(O,e=>S.cursor(O.lineBlockAt(e.head).to,-1));function mT(O,e,t){let i=!1,r=fi(O.selection,n=>{let s=dt(O,n.head,-1)||dt(O,n.head,1)||n.head>0&&dt(O,n.head-1,1)||n.headmT(O,e,!1);function at(O,e){let t=fi(O.state.selection,i=>{let r=e(i);return S.range(i.anchor,r.head,r.goalColumn,r.bidiLevel||void 0)});return t.eq(O.state.selection)?!1:(O.dispatch(Qt(O.state,t)),!0)}function Fu(O,e){return at(O,t=>O.moveByChar(t,e))}var Hu=O=>Fu(O,!ke(O)),Ku=O=>Fu(O,ke(O));function Ju(O,e){return at(O,t=>O.moveByGroup(t,e))}var PT=O=>Ju(O,!ke(O)),ST=O=>Ju(O,ke(O));var XT=O=>at(O,e=>es(O.state,e,!ke(O))),TT=O=>at(O,e=>es(O.state,e,ke(O)));function eQ(O,e){return at(O,t=>O.moveVertically(t,e))}var tQ=O=>eQ(O,!1),OQ=O=>eQ(O,!0);function iQ(O,e){return at(O,t=>O.moveVertically(t,e,Bu(O).height))}var xu=O=>iQ(O,!1),ku=O=>iQ(O,!0),bT=O=>at(O,e=>aO(O,e,!0)),yT=O=>at(O,e=>aO(O,e,!1)),xT=O=>at(O,e=>aO(O,e,!ke(O))),kT=O=>at(O,e=>aO(O,e,ke(O))),wT=O=>at(O,e=>S.cursor(O.lineBlockAt(e.head).from)),ZT=O=>at(O,e=>S.cursor(O.lineBlockAt(e.head).to)),wu=({state:O,dispatch:e})=>(e(Qt(O,{anchor:0})),!0),Zu=({state:O,dispatch:e})=>(e(Qt(O,{anchor:O.doc.length})),!0),vu=({state:O,dispatch:e})=>(e(Qt(O,{anchor:O.selection.main.anchor,head:0})),!0),Yu=({state:O,dispatch:e})=>(e(Qt(O,{anchor:O.selection.main.anchor,head:O.doc.length})),!0),vT=({state:O,dispatch:e})=>(e(O.update({selection:{anchor:0,head:O.doc.length},userEvent:"select"})),!0),YT=({state:O,dispatch:e})=>{let t=ts(O).map(({from:i,to:r})=>S.range(i,Math.min(r+1,O.doc.length)));return e(O.update({selection:S.create(t),userEvent:"select"})),!0},_T=({state:O,dispatch:e})=>{let t=fi(O.selection,i=>{let r=U(O),n=r.resolveStack(i.from,1);if(i.empty){let s=r.resolveStack(i.from,-1);s.node.from>=n.node.from&&s.node.to<=n.node.to&&(n=s)}for(let s=n;s;s=s.next){let{node:a}=s;if((a.from=i.to||a.to>i.to&&a.from<=i.from)&&s.next)return S.range(a.to,a.from)}return i});return t.eq(O.selection)?!1:(e(Qt(O,t)),!0)};function rQ(O,e){let{state:t}=O,i=t.selection,r=t.selection.ranges.slice();for(let n of t.selection.ranges){let s=t.doc.lineAt(n.head);if(e?s.to0)for(let a=n;;){let o=O.moveVertically(a,e);if(o.heads.to){r.some(l=>l.head==o.head)||r.push(o);break}else{if(o.head==a.head)break;a=o}}}return r.length==i.ranges.length?!1:(O.dispatch(Qt(t,S.create(r,r.length-1))),!0)}var RT=O=>rQ(O,!1),VT=O=>rQ(O,!0),qT=({state:O,dispatch:e})=>{let t=O.selection,i=null;return t.ranges.length>1?i=S.create([t.main]):t.main.empty||(i=S.create([S.cursor(t.main.head)])),i?(e(Qt(O,i)),!0):!1};function dr(O,e){if(O.state.readOnly)return!1;let t="delete.selection",{state:i}=O,r=i.changeByRange(n=>{let{from:s,to:a}=n;if(s==a){let o=e(n);os&&(t="delete.forward",o=Fn(O,o,!0)),s=Math.min(s,o),a=Math.max(a,o)}else s=Fn(O,s,!1),a=Fn(O,a,!0);return s==a?{range:n}:{changes:{from:s,to:a},range:S.cursor(s,sr(O)))i.between(e,e,(r,n)=>{re&&(e=t?n:r)});return e}var nQ=(O,e,t)=>dr(O,i=>{let r=i.from,{state:n}=O,s=n.doc.lineAt(r),a,o;if(t&&!e&&r>s.from&&rnQ(O,!1,!0);var sQ=O=>nQ(O,!0,!1),aQ=(O,e)=>dr(O,t=>{let i=t.head,{state:r}=O,n=r.doc.lineAt(i),s=r.charCategorizer(i);for(let a=null;;){if(i==(e?n.to:n.from)){i==t.head&&n.number!=(e?r.doc.lines:1)&&(i+=e?1:-1);break}let o=fe(n.text,i-n.from,e)+n.from,l=n.text.slice(Math.min(i,o)-n.from,Math.max(i,o)-n.from),c=s(l);if(a!=null&&c!=a)break;(l!=" "||i!=t.head)&&(a=c),i=o}return i}),oQ=O=>aQ(O,!1),zT=O=>aQ(O,!0);var UT=O=>dr(O,e=>{let t=O.lineBlockAt(e.head).to;return e.headdr(O,e=>{let t=O.moveToLineBoundary(e,!1).head;return e.head>t?t:Math.max(0,e.head-1)}),jT=O=>dr(O,e=>{let t=O.moveToLineBoundary(e,!0).head;return e.head{if(O.readOnly)return!1;let t=O.changeByRange(i=>({changes:{from:i.from,to:i.to,insert:E.of(["",""])},range:S.cursor(i.from)}));return e(O.update(t,{scrollIntoView:!0,userEvent:"input"})),!0},GT=({state:O,dispatch:e})=>{if(O.readOnly)return!1;let t=O.changeByRange(i=>{if(!i.empty||i.from==0||i.from==O.doc.length)return{range:i};let r=i.from,n=O.doc.lineAt(r),s=r==n.from?r-1:fe(n.text,r-n.from,!1)+n.from,a=r==n.to?r+1:fe(n.text,r-n.from,!0)+n.from;return{changes:{from:s,to:a,insert:O.doc.slice(r,a).append(O.doc.slice(s,r))},range:S.cursor(a)}});return t.changes.empty?!1:(e(O.update(t,{scrollIntoView:!0,userEvent:"move.character"})),!0)};function ts(O){let e=[],t=-1;for(let i of O.selection.ranges){let r=O.doc.lineAt(i.from),n=O.doc.lineAt(i.to);if(!i.empty&&i.to==n.from&&(n=O.doc.lineAt(i.to-1)),t>=r.number){let s=e[e.length-1];s.to=n.to,s.ranges.push(i)}else e.push({from:r.from,to:n.to,ranges:[i]});t=n.number+1}return e}function lQ(O,e,t){if(O.readOnly)return!1;let i=[],r=[];for(let n of ts(O)){if(t?n.to==O.doc.length:n.from==0)continue;let s=O.doc.lineAt(t?n.to+1:n.from-1),a=s.length+1;if(t){i.push({from:n.to,to:s.to},{from:n.from,insert:s.text+O.lineBreak});for(let o of n.ranges)r.push(S.range(Math.min(O.doc.length,o.anchor+a),Math.min(O.doc.length,o.head+a)))}else{i.push({from:s.from,to:n.from},{from:n.to,insert:O.lineBreak+s.text});for(let o of n.ranges)r.push(S.range(o.anchor-a,o.head-a))}}return i.length?(e(O.update({changes:i,scrollIntoView:!0,selection:S.create(r,O.selection.mainIndex),userEvent:"move.line"})),!0):!1}var ET=({state:O,dispatch:e})=>lQ(O,e,!1),AT=({state:O,dispatch:e})=>lQ(O,e,!0);function cQ(O,e,t){if(O.readOnly)return!1;let i=[];for(let n of ts(O))t?i.push({from:n.from,insert:O.doc.slice(n.from,n.to)+O.lineBreak}):i.push({from:n.to,insert:O.lineBreak+O.doc.slice(n.from,n.to)});let r=O.changes(i);return e(O.update({changes:r,selection:O.selection.map(r,t?1:-1),scrollIntoView:!0,userEvent:"input.copyline"})),!0}var LT=({state:O,dispatch:e})=>cQ(O,e,!1),MT=({state:O,dispatch:e})=>cQ(O,e,!0),DT=O=>{if(O.state.readOnly)return!1;let{state:e}=O,t=e.changes(ts(e).map(({from:r,to:n})=>(r>0?r--:n{let n;if(O.lineWrapping){let s=O.lineBlockAt(r.head),a=O.coordsAtPos(r.head,r.assoc||1);a&&(n=s.bottom+O.documentTop-a.bottom+O.defaultLineHeight/2)}return O.moveVertically(r,!0,n)}).map(t);return O.dispatch({changes:t,selection:i,scrollIntoView:!0,userEvent:"delete.line"}),!0};function IT(O,e){if(/\(\)|\[\]|\{\}/.test(O.sliceDoc(e-1,e+1)))return{from:e,to:e};let t=U(O).resolveInner(e),i=t.childBefore(e),r=t.childAfter(e),n;return i&&r&&i.to<=e&&r.from>=e&&(n=i.type.prop(R.closedBy))&&n.indexOf(r.name)>-1&&O.doc.lineAt(i.to).from==O.doc.lineAt(r.from).from&&!/\S/.test(O.sliceDoc(i.to,r.from))?{from:i.to,to:r.from}:null}var _u=hQ(!1),BT=hQ(!0);function hQ(O){return({state:e,dispatch:t})=>{if(e.readOnly)return!1;let i=e.changeByRange(r=>{let{from:n,to:s}=r,a=e.doc.lineAt(n),o=!O&&n==s&&IT(e,n);O&&(n=s=(s<=a.to?a:e.doc.lineAt(s)).to);let l=new ZO(e,{simulateBreak:n,simulateDoubleBreak:!!o}),c=In(l,n);for(c==null&&(c=ve(/^\s*/.exec(e.doc.lineAt(n).text)[0],e.tabSize));sa.from&&n{let r=[];for(let s=i.from;s<=i.to;){let a=O.doc.lineAt(s);a.number>t&&(i.empty||i.to>a.from)&&(e(a,r,i),t=a.number),s=a.to+1}let n=O.changes(r);return{changes:r,range:S.range(n.mapPos(i.anchor,1),n.mapPos(i.head,1))}})}var NT=({state:O,dispatch:e})=>{if(O.readOnly)return!1;let t=Object.create(null),i=new ZO(O,{overrideIndentation:n=>{let s=t[n];return s??-1}}),r=sl(O,(n,s,a)=>{let o=In(i,n.from);if(o==null)return;/\S/.test(n.text)||(o=0);let l=/^\s*/.exec(n.text)[0],c=hi(O,o);(l!=c||a.fromO.readOnly?!1:(e(O.update(sl(O,(t,i)=>{i.push({from:t.from,insert:O.facet(nO)})}),{userEvent:"input.indent"})),!0),dQ=({state:O,dispatch:e})=>O.readOnly?!1:(e(O.update(sl(O,(t,i)=>{let r=/^\s*/.exec(t.text)[0];if(!r)return;let n=ve(r,O.tabSize),s=0,a=hi(O,Math.max(0,n-lr(O)));for(;s(O.setTabFocusMode(),!0);var HT=[{key:"Ctrl-b",run:Eu,shift:Hu,preventDefault:!0},{key:"Ctrl-f",run:Au,shift:Ku},{key:"Ctrl-p",run:Du,shift:tQ},{key:"Ctrl-n",run:Iu,shift:OQ},{key:"Ctrl-a",run:$T,shift:wT},{key:"Ctrl-e",run:pT,shift:ZT},{key:"Ctrl-d",run:sQ},{key:"Ctrl-h",run:il},{key:"Ctrl-k",run:UT},{key:"Ctrl-Alt-h",run:oQ},{key:"Ctrl-o",run:CT},{key:"Ctrl-t",run:GT},{key:"Ctrl-v",run:Ol}],KT=[{key:"ArrowLeft",run:Eu,shift:Hu,preventDefault:!0},{key:"Mod-ArrowLeft",mac:"Alt-ArrowLeft",run:aT,shift:PT,preventDefault:!0},{mac:"Cmd-ArrowLeft",run:uT,shift:xT,preventDefault:!0},{key:"ArrowRight",run:Au,shift:Ku,preventDefault:!0},{key:"Mod-ArrowRight",mac:"Alt-ArrowRight",run:oT,shift:ST,preventDefault:!0},{mac:"Cmd-ArrowRight",run:QT,shift:kT,preventDefault:!0},{key:"ArrowUp",run:Du,shift:tQ,preventDefault:!0},{mac:"Cmd-ArrowUp",run:wu,shift:vu},{mac:"Ctrl-ArrowUp",run:yu,shift:xu},{key:"ArrowDown",run:Iu,shift:OQ,preventDefault:!0},{mac:"Cmd-ArrowDown",run:Zu,shift:Yu},{mac:"Ctrl-ArrowDown",run:Ol,shift:ku},{key:"PageUp",run:yu,shift:xu},{key:"PageDown",run:Ol,shift:ku},{key:"Home",run:dT,shift:yT,preventDefault:!0},{key:"Mod-Home",run:wu,shift:vu},{key:"End",run:fT,shift:bT,preventDefault:!0},{key:"Mod-End",run:Zu,shift:Yu},{key:"Enter",run:_u,shift:_u},{key:"Mod-a",run:vT},{key:"Backspace",run:il,shift:il,preventDefault:!0},{key:"Delete",run:sQ,preventDefault:!0},{key:"Mod-Backspace",mac:"Alt-Backspace",run:oQ,preventDefault:!0},{key:"Mod-Delete",mac:"Alt-Delete",run:zT,preventDefault:!0},{mac:"Mod-Backspace",run:WT,preventDefault:!0},{mac:"Mod-Delete",run:jT,preventDefault:!0}].concat(HT.map(O=>({mac:O.key,run:O.run,shift:O.shift}))),uQ=[{key:"Alt-ArrowLeft",mac:"Ctrl-ArrowLeft",run:cT,shift:XT},{key:"Alt-ArrowRight",mac:"Ctrl-ArrowRight",run:hT,shift:TT},{key:"Alt-ArrowUp",run:ET},{key:"Shift-Alt-ArrowUp",run:LT},{key:"Alt-ArrowDown",run:AT},{key:"Shift-Alt-ArrowDown",run:MT},{key:"Mod-Alt-ArrowUp",run:RT},{key:"Mod-Alt-ArrowDown",run:VT},{key:"Escape",run:qT},{key:"Mod-Enter",run:BT},{key:"Alt-l",mac:"Ctrl-l",run:YT},{key:"Mod-i",run:_T,preventDefault:!0},{key:"Mod-[",run:dQ},{key:"Mod-]",run:fQ},{key:"Mod-Alt-\\",run:NT},{key:"Shift-Mod-k",run:DT},{key:"Shift-Mod-\\",run:gT},{key:"Mod-/",run:LX},{key:"Alt-A",run:DX},{key:"Ctrl-m",mac:"Shift-Alt-m",run:FT}].concat(KT),QQ={key:"Tab",run:fQ,shift:dQ};var $Q=typeof String.prototype.normalize=="function"?O=>O.normalize("NFKD"):O=>O,lO=class{constructor(e,t,i=0,r=e.length,n,s){this.test=s,this.value={from:0,to:0},this.done=!1,this.matches=[],this.buffer="",this.bufferPos=0,this.iter=e.iterRange(i,r),this.bufferStart=i,this.normalize=n?a=>n($Q(a)):$Q,this.query=this.normalize(t)}peek(){if(this.bufferPos==this.buffer.length){if(this.bufferStart+=this.buffer.length,this.iter.next(),this.iter.done)return-1;this.bufferPos=0,this.buffer=this.iter.value}return Se(this.buffer,this.bufferPos)}next(){for(;this.matches.length;)this.matches.pop();return this.nextOverlapping()}nextOverlapping(){for(;;){let e=this.peek();if(e<0)return this.done=!0,this;let t=Ri(e),i=this.bufferStart+this.bufferPos;this.bufferPos+=Me(e);let r=this.normalize(t);if(r.length)for(let n=0,s=i;;n++){let a=r.charCodeAt(n),o=this.match(a,s,this.bufferPos+this.bufferStart);if(n==r.length-1){if(o)return this.value=o,this;break}s==i&&nthis.to&&(this.curLine=this.curLine.slice(0,this.to-this.curLineStart)),this.iter.next())}nextLine(){this.curLineStart=this.curLineStart+this.curLine.length+1,this.curLineStart>this.to?this.curLine="":this.getLine(0)}next(){for(let e=this.matchPos-this.curLineStart;;){this.re.lastIndex=e;let t=this.matchPos<=this.to&&this.re.exec(this.curLine);if(t){let i=this.curLineStart+t.index,r=i+t[0].length;if(this.matchPos=as(this.text,r+(i==r?1:0)),i==this.curLineStart+this.curLine.length&&this.nextLine(),(ithis.value.to)&&(!this.test||this.test(i,r,t)))return this.value={from:i,to:r,match:t},this;e=this.matchPos-this.curLineStart}else if(this.curLineStart+this.curLine.length=i||r.to<=t){let a=new O(t,e.sliceString(t,i));return al.set(e,a),a}if(r.from==t&&r.to==i)return r;let{text:n,from:s}=r;return s>t&&(n=e.sliceString(t,s)+n,s=t),r.to=this.to?this.to:this.text.lineAt(e).to}next(){for(;;){let e=this.re.lastIndex=this.matchPos-this.flat.from,t=this.re.exec(this.flat.text);if(t&&!t[0]&&t.index==e&&(this.re.lastIndex=e+1,t=this.re.exec(this.flat.text)),t){let i=this.flat.from+t.index,r=i+t[0].length;if((this.flat.to>=this.to||t.index+t[0].length<=this.flat.text.length-10)&&(!this.test||this.test(i,r,t)))return this.value={from:i,to:r,match:t},this.matchPos=as(this.text,r+(i==r?1:0)),this}if(this.flat.to==this.to)return this.done=!0,this;this.flat=ns.get(this.text,this.flat.from,this.chunkEnd(this.flat.from+this.flat.text.length*2))}}};typeof Symbol<"u"&&(rs.prototype[Symbol.iterator]=ss.prototype[Symbol.iterator]=function(){return this});function JT(O){try{return new RegExp(O,dl),!0}catch{return!1}}function as(O,e){if(e>=O.length)return e;let t=O.lineAt(e),i;for(;e=56320&&i<57344;)e++;return e}function ol(O){let e=String(O.state.doc.lineAt(O.state.selection.main.head).number),t=N("input",{class:"cm-textfield",name:"line",value:e}),i=N("form",{class:"cm-gotoLine",onkeydown:n=>{n.keyCode==27?(n.preventDefault(),O.dispatch({effects:ur.of(!1)}),O.focus()):n.keyCode==13&&(n.preventDefault(),r())},onsubmit:n=>{n.preventDefault(),r()}},N("label",O.state.phrase("Go to line"),": ",t)," ",N("button",{class:"cm-button",type:"submit"},O.state.phrase("go")),N("button",{name:"close",onclick:()=>{O.dispatch({effects:ur.of(!1)}),O.focus()},"aria-label":O.state.phrase("close"),type:"button"},["\xD7"]));function r(){let n=/^([+-])?(\d+)?(:\d+)?(%)?$/.exec(t.value);if(!n)return;let{state:s}=O,a=s.doc.lineAt(s.selection.main.head),[,o,l,c,h]=n,f=c?+c.slice(1):0,u=l?+l:a.number;if(l&&h){let p=u/100;o&&(p=p*(o=="-"?-1:1)+a.number/s.doc.lines),u=Math.round(s.doc.lines*p)}else l&&o&&(u=u*(o=="-"?-1:1)+a.number);let Q=s.doc.line(Math.max(1,Math.min(s.doc.lines,u))),$=S.cursor(Q.from+Math.max(0,Math.min(f,Q.length)));O.dispatch({effects:[ur.of(!1),T.scrollIntoView($.from,{y:"center"})],selection:$}),O.focus()}return{dom:i}}var ur=V.define(),pQ=ce.define({create(){return!0},update(O,e){for(let t of e.effects)t.is(ur)&&(O=t.value);return O},provide:O=>TO.from(O,e=>e?ol:null)}),e1=O=>{let e=bO(O,ol);if(!e){let t=[ur.of(!0)];O.state.field(pQ,!1)==null&&t.push(V.appendConfig.of([pQ,t1])),O.dispatch({effects:t}),e=bO(O,ol)}return e&&e.dom.querySelector("input").select(),!0},t1=T.baseTheme({".cm-panel.cm-gotoLine":{padding:"2px 6px 4px",position:"relative","& label":{fontSize:"80%"},"& [name=close]":{position:"absolute",top:"0",bottom:"0",right:"4px",backgroundColor:"inherit",border:"none",font:"inherit",padding:"0"}}}),O1={highlightWordAroundCursor:!1,minSelectionLength:1,maxMatches:100,wholeWords:!1},SQ=Z.define({combine(O){return xe(O,O1,{highlightWordAroundCursor:(e,t)=>e||t,minSelectionLength:Math.min,maxMatches:Math.min})}});function XQ(O){let e=[a1,s1];return O&&e.push(SQ.of(O)),e}var i1=Y.mark({class:"cm-selectionMatch"}),r1=Y.mark({class:"cm-selectionMatch cm-selectionMatch-main"});function mQ(O,e,t,i){return(t==0||O(e.sliceDoc(t-1,t))!=ee.Word)&&(i==e.doc.length||O(e.sliceDoc(i,i+1))!=ee.Word)}function n1(O,e,t,i){return O(e.sliceDoc(t,t+1))==ee.Word&&O(e.sliceDoc(i-1,i))==ee.Word}var s1=he.fromClass(class{constructor(O){this.decorations=this.getDeco(O)}update(O){(O.selectionSet||O.docChanged||O.viewportChanged)&&(this.decorations=this.getDeco(O.view))}getDeco(O){let e=O.state.facet(SQ),{state:t}=O,i=t.selection;if(i.ranges.length>1)return Y.none;let r=i.main,n,s=null;if(r.empty){if(!e.highlightWordAroundCursor)return Y.none;let o=t.wordAt(r.head);if(!o)return Y.none;s=t.charCategorizer(r.head),n=t.sliceDoc(o.from,o.to)}else{let o=r.to-r.from;if(o200)return Y.none;if(e.wholeWords){if(n=t.sliceDoc(r.from,r.to),s=t.charCategorizer(r.head),!(mQ(s,t,r.from,r.to)&&n1(s,t,r.from,r.to)))return Y.none}else if(n=t.sliceDoc(r.from,r.to),!n)return Y.none}let a=[];for(let o of O.visibleRanges){let l=new lO(t.doc,n,o.from,o.to);for(;!l.next().done;){let{from:c,to:h}=l.value;if((!s||mQ(s,t,c,h))&&(r.empty&&c<=r.from&&h>=r.to?a.push(r1.range(c,h)):(c>=r.to||h<=r.from)&&a.push(i1.range(c,h)),a.length>e.maxMatches))return Y.none}}return Y.set(a)}},{decorations:O=>O.decorations}),a1=T.baseTheme({".cm-selectionMatch":{backgroundColor:"#99ff7780"},".cm-searchMatch .cm-selectionMatch":{backgroundColor:"transparent"}}),o1=({state:O,dispatch:e})=>{let{selection:t}=O,i=S.create(t.ranges.map(r=>O.wordAt(r.head)||S.cursor(r.head)),t.mainIndex);return i.eq(t)?!1:(e(O.update({selection:i})),!0)};function l1(O,e){let{main:t,ranges:i}=O.selection,r=O.wordAt(t.head),n=r&&r.from==t.from&&r.to==t.to;for(let s=!1,a=new lO(O.doc,e,i[i.length-1].to);;)if(a.next(),a.done){if(s)return null;a=new lO(O.doc,e,0,Math.max(0,i[i.length-1].from-1)),s=!0}else{if(s&&i.some(o=>o.from==a.value.from))continue;if(n){let o=O.wordAt(a.value.from);if(!o||o.from!=a.value.from||o.to!=a.value.to)continue}return a.value}}var c1=({state:O,dispatch:e})=>{let{ranges:t}=O.selection;if(t.some(n=>n.from===n.to))return o1({state:O,dispatch:e});let i=O.sliceDoc(t[0].from,t[0].to);if(O.selection.ranges.some(n=>O.sliceDoc(n.from,n.to)!=i))return!1;let r=l1(O,i);return r?(e(O.update({selection:O.selection.addRange(S.range(r.from,r.to),!1),effects:T.scrollIntoView(r.to)})),!0):!1},Qi=Z.define({combine(O){return xe(O,{top:!1,caseSensitive:!1,literal:!1,regexp:!1,wholeWord:!1,createPanel:e=>new fl(e),scrollToMatch:e=>T.scrollIntoView(e)})}});var os=class{constructor(e){this.search=e.search,this.caseSensitive=!!e.caseSensitive,this.literal=!!e.literal,this.regexp=!!e.regexp,this.replace=e.replace||"",this.valid=!!this.search&&(!this.regexp||JT(this.search)),this.unquoted=this.unquote(this.search),this.wholeWord=!!e.wholeWord}unquote(e){return this.literal?e:e.replace(/\\([nrt\\])/g,(t,i)=>i=="n"?` +`:i=="r"?"\r":i=="t"?" ":"\\")}eq(e){return this.search==e.search&&this.replace==e.replace&&this.caseSensitive==e.caseSensitive&&this.regexp==e.regexp&&this.wholeWord==e.wholeWord}create(){return this.regexp?new cl(this):new ll(this)}getCursor(e,t=0,i){let r=e.doc?e:I.create({doc:e});return i==null&&(i=r.doc.length),this.regexp?ui(this,r,t,i):di(this,r,t,i)}},ls=class{constructor(e){this.spec=e}};function di(O,e,t,i){return new lO(e.doc,O.unquoted,t,i,O.caseSensitive?void 0:r=>r.toLowerCase(),O.wholeWord?h1(e.doc,e.charCategorizer(e.selection.main.head)):void 0)}function h1(O,e){return(t,i,r,n)=>((n>t||n+r.length=t)return null;r.push(i.value)}return r}highlight(e,t,i,r){let n=di(this.spec,e,Math.max(0,t-this.spec.unquoted.length),Math.min(i+this.spec.unquoted.length,e.doc.length));for(;!n.next().done;)r(n.value.from,n.value.to)}};function ui(O,e,t,i){return new rs(e.doc,O.search,{ignoreCase:!O.caseSensitive,test:O.wholeWord?f1(e.charCategorizer(e.selection.main.head)):void 0},t,i)}function cs(O,e){return O.slice(fe(O,e,!1),e)}function hs(O,e){return O.slice(e,fe(O,e))}function f1(O){return(e,t,i)=>!i[0].length||(O(cs(i.input,i.index))!=ee.Word||O(hs(i.input,i.index))!=ee.Word)&&(O(hs(i.input,i.index+i[0].length))!=ee.Word||O(cs(i.input,i.index+i[0].length))!=ee.Word)}var cl=class extends ls{nextMatch(e,t,i){let r=ui(this.spec,e,i,e.doc.length).next();return r.done&&(r=ui(this.spec,e,0,t).next()),r.done?null:r.value}prevMatchInRange(e,t,i){for(let r=1;;r++){let n=Math.max(t,i-r*1e4),s=ui(this.spec,e,n,i),a=null;for(;!s.next().done;)a=s.value;if(a&&(n==t||a.from>n+10))return a;if(n==t)return null}}prevMatch(e,t,i){return this.prevMatchInRange(e,0,t)||this.prevMatchInRange(e,i,e.doc.length)}getReplacement(e){return this.spec.unquote(this.spec.replace).replace(/\$([$&]|\d+)/g,(t,i)=>{if(i=="&")return e.match[0];if(i=="$")return"$";for(let r=i.length;r>0;r--){let n=+i.slice(0,r);if(n>0&&n=t)return null;r.push(i.value)}return r}highlight(e,t,i,r){let n=ui(this.spec,e,Math.max(0,t-250),Math.min(i+250,e.doc.length));for(;!n.next().done;)r(n.value.from,n.value.to)}},$r=V.define(),ul=V.define(),oO=ce.define({create(O){return new Qr(hl(O).create(),null)},update(O,e){for(let t of e.effects)t.is($r)?O=new Qr(t.value.create(),O.panel):t.is(ul)&&(O=new Qr(O.query,t.value?Ql:null));return O},provide:O=>TO.from(O,e=>e.panel)});var Qr=class{constructor(e,t){this.query=e,this.panel=t}},d1=Y.mark({class:"cm-searchMatch"}),u1=Y.mark({class:"cm-searchMatch cm-searchMatch-selected"}),Q1=he.fromClass(class{constructor(O){this.view=O,this.decorations=this.highlight(O.state.field(oO))}update(O){let e=O.state.field(oO);(e!=O.startState.field(oO)||O.docChanged||O.selectionSet||O.viewportChanged)&&(this.decorations=this.highlight(e))}highlight({query:O,panel:e}){if(!e||!O.spec.valid)return Y.none;let{view:t}=this,i=new Le;for(let r=0,n=t.visibleRanges,s=n.length;rn[r+1].from-500;)o=n[++r].to;O.highlight(t.state,a,o,(l,c)=>{let h=t.state.selection.ranges.some(f=>f.from==l&&f.to==c);i.add(l,c,h?u1:d1)})}return i.finish()}},{decorations:O=>O.decorations});function pr(O){return e=>{let t=e.state.field(oO,!1);return t&&t.query.spec.valid?O(e,t):yQ(e)}}var fs=pr((O,{query:e})=>{let{to:t}=O.state.selection.main,i=e.nextMatch(O.state,t,t);if(!i)return!1;let r=S.single(i.from,i.to),n=O.state.facet(Qi);return O.dispatch({selection:r,effects:[$l(O,i),n.scrollToMatch(r.main,O)],userEvent:"select.search"}),bQ(O),!0}),ds=pr((O,{query:e})=>{let{state:t}=O,{from:i}=t.selection.main,r=e.prevMatch(t,i,i);if(!r)return!1;let n=S.single(r.from,r.to),s=O.state.facet(Qi);return O.dispatch({selection:n,effects:[$l(O,r),s.scrollToMatch(n.main,O)],userEvent:"select.search"}),bQ(O),!0}),$1=pr((O,{query:e})=>{let t=e.matchAll(O.state,1e3);return!t||!t.length?!1:(O.dispatch({selection:S.create(t.map(i=>S.range(i.from,i.to))),userEvent:"select.search.matches"}),!0)}),p1=({state:O,dispatch:e})=>{let t=O.selection;if(t.ranges.length>1||t.main.empty)return!1;let{from:i,to:r}=t.main,n=[],s=0;for(let a=new lO(O.doc,O.sliceDoc(i,r));!a.next().done;){if(n.length>1e3)return!1;a.value.from==i&&(s=n.length),n.push(S.range(a.value.from,a.value.to))}return e(O.update({selection:S.create(n,s),userEvent:"select.search.matches"})),!0},gQ=pr((O,{query:e})=>{let{state:t}=O,{from:i,to:r}=t.selection.main;if(t.readOnly)return!1;let n=e.nextMatch(t,i,i);if(!n)return!1;let s=n,a=[],o,l,c=[];s.from==i&&s.to==r&&(l=t.toText(e.getReplacement(s)),a.push({from:s.from,to:s.to,insert:l}),s=e.nextMatch(t,s.from,s.to),c.push(T.announce.of(t.phrase("replaced match on line $",t.doc.lineAt(i).number)+".")));let h=O.state.changes(a);return s&&(o=S.single(s.from,s.to).map(h),c.push($l(O,s)),c.push(t.facet(Qi).scrollToMatch(o.main,O))),O.dispatch({changes:h,selection:o,effects:c,userEvent:"input.replace"}),!0}),m1=pr((O,{query:e})=>{if(O.state.readOnly)return!1;let t=e.matchAll(O.state,1e9).map(r=>{let{from:n,to:s}=r;return{from:n,to:s,insert:e.getReplacement(r)}});if(!t.length)return!1;let i=O.state.phrase("replaced $ matches",t.length)+".";return O.dispatch({changes:t,effects:T.announce.of(i),userEvent:"input.replace.all"}),!0});function Ql(O){return O.state.facet(Qi).createPanel(O)}function hl(O,e){var t,i,r,n,s;let a=O.selection.main,o=a.empty||a.to>a.from+100?"":O.sliceDoc(a.from,a.to);if(e&&!o)return e;let l=O.facet(Qi);return new os({search:((t=e?.literal)!==null&&t!==void 0?t:l.literal)?o:o.replace(/\n/g,"\\n"),caseSensitive:(i=e?.caseSensitive)!==null&&i!==void 0?i:l.caseSensitive,literal:(r=e?.literal)!==null&&r!==void 0?r:l.literal,regexp:(n=e?.regexp)!==null&&n!==void 0?n:l.regexp,wholeWord:(s=e?.wholeWord)!==null&&s!==void 0?s:l.wholeWord})}function TQ(O){let e=bO(O,Ql);return e&&e.dom.querySelector("[main-field]")}function bQ(O){let e=TQ(O);e&&e==O.root.activeElement&&e.select()}var yQ=O=>{let e=O.state.field(oO,!1);if(e&&e.panel){let t=TQ(O);if(t&&t!=O.root.activeElement){let i=hl(O.state,e.query.spec);i.valid&&O.dispatch({effects:$r.of(i)}),t.focus(),t.select()}}else O.dispatch({effects:[ul.of(!0),e?$r.of(hl(O.state,e.query.spec)):V.appendConfig.of(P1)]});return!0},xQ=O=>{let e=O.state.field(oO,!1);if(!e||!e.panel)return!1;let t=bO(O,Ql);return t&&t.dom.contains(O.root.activeElement)&&O.focus(),O.dispatch({effects:ul.of(!1)}),!0},kQ=[{key:"Mod-f",run:yQ,scope:"editor search-panel"},{key:"F3",run:fs,shift:ds,scope:"editor search-panel",preventDefault:!0},{key:"Mod-g",run:fs,shift:ds,scope:"editor search-panel",preventDefault:!0},{key:"Escape",run:xQ,scope:"editor search-panel"},{key:"Mod-Shift-l",run:p1},{key:"Mod-Alt-g",run:e1},{key:"Mod-d",run:c1,preventDefault:!0}],fl=class{constructor(e){this.view=e;let t=this.query=e.state.field(oO).query.spec;this.commit=this.commit.bind(this),this.searchField=N("input",{value:t.search,placeholder:Ne(e,"Find"),"aria-label":Ne(e,"Find"),class:"cm-textfield",name:"search",form:"","main-field":"true",onchange:this.commit,onkeyup:this.commit}),this.replaceField=N("input",{value:t.replace,placeholder:Ne(e,"Replace"),"aria-label":Ne(e,"Replace"),class:"cm-textfield",name:"replace",form:"",onchange:this.commit,onkeyup:this.commit}),this.caseField=N("input",{type:"checkbox",name:"case",form:"",checked:t.caseSensitive,onchange:this.commit}),this.reField=N("input",{type:"checkbox",name:"re",form:"",checked:t.regexp,onchange:this.commit}),this.wordField=N("input",{type:"checkbox",name:"word",form:"",checked:t.wholeWord,onchange:this.commit});function i(r,n,s){return N("button",{class:"cm-button",name:r,onclick:n,type:"button"},s)}this.dom=N("div",{onkeydown:r=>this.keydown(r),class:"cm-search"},[this.searchField,i("next",()=>fs(e),[Ne(e,"next")]),i("prev",()=>ds(e),[Ne(e,"previous")]),i("select",()=>$1(e),[Ne(e,"all")]),N("label",null,[this.caseField,Ne(e,"match case")]),N("label",null,[this.reField,Ne(e,"regexp")]),N("label",null,[this.wordField,Ne(e,"by word")]),...e.state.readOnly?[]:[N("br"),this.replaceField,i("replace",()=>gQ(e),[Ne(e,"replace")]),i("replaceAll",()=>m1(e),[Ne(e,"replace all")])],N("button",{name:"close",onclick:()=>xQ(e),"aria-label":Ne(e,"close"),type:"button"},["\xD7"])])}commit(){let e=new os({search:this.searchField.value,caseSensitive:this.caseField.checked,regexp:this.reField.checked,wholeWord:this.wordField.checked,replace:this.replaceField.value});e.eq(this.query)||(this.query=e,this.view.dispatch({effects:$r.of(e)}))}keydown(e){bd(this.view,e,"search-panel")?e.preventDefault():e.keyCode==13&&e.target==this.searchField?(e.preventDefault(),(e.shiftKey?ds:fs)(this.view)):e.keyCode==13&&e.target==this.replaceField&&(e.preventDefault(),gQ(this.view))}update(e){for(let t of e.transactions)for(let i of t.effects)i.is($r)&&!i.value.eq(this.query)&&this.setQuery(i.value)}setQuery(e){this.query=e,this.searchField.value=e.search,this.replaceField.value=e.replace,this.caseField.checked=e.caseSensitive,this.reField.checked=e.regexp,this.wordField.checked=e.wholeWord}mount(){this.searchField.select()}get pos(){return 80}get top(){return this.view.state.facet(Qi).top}};function Ne(O,e){return O.state.phrase(e)}var Os=30,is=/[\s\.,:;?!]/;function $l(O,{from:e,to:t}){let i=O.state.doc.lineAt(e),r=O.state.doc.lineAt(t).to,n=Math.max(i.from,e-Os),s=Math.min(r,t+Os),a=O.state.sliceDoc(n,s);if(n!=i.from){for(let o=0;oa.length-Os;o--)if(!is.test(a[o-1])&&is.test(a[o])){a=a.slice(0,o);break}}return T.announce.of(`${O.state.phrase("current match")}. ${a} ${O.state.phrase("on line")} ${i.number}.`)}var g1=T.baseTheme({".cm-panel.cm-search":{padding:"2px 6px 4px",position:"relative","& [name=close]":{position:"absolute",top:"0",right:"4px",backgroundColor:"inherit",border:"none",font:"inherit",padding:0,margin:0},"& input, & button, & label":{margin:".2em .6em .2em 0"},"& input[type=checkbox]":{marginRight:".2em"},"& label":{fontSize:"80%",whiteSpace:"pre"}},"&light .cm-searchMatch":{backgroundColor:"#ffff0054"},"&dark .cm-searchMatch":{backgroundColor:"#00ffff8a"},"&light .cm-searchMatch-selected":{backgroundColor:"#ff6a0054"},"&dark .cm-searchMatch-selected":{backgroundColor:"#ff00ff8a"}}),P1=[oO,ze.low(Q1),g1];var $i=class{constructor(e,t,i,r){this.state=e,this.pos=t,this.explicit=i,this.view=r,this.abortListeners=[],this.abortOnDocChange=!1}tokenBefore(e){let t=U(this.state).resolveInner(this.pos,-1);for(;t&&e.indexOf(t.name)<0;)t=t.parent;return t?{from:t.from,to:this.pos,text:this.state.sliceDoc(t.from,this.pos),type:t.type}:null}matchBefore(e){let t=this.state.doc.lineAt(this.pos),i=Math.max(t.from,this.pos-250),r=t.text.slice(i-t.from,this.pos-t.from),n=r.search(zQ(e,!1));return n<0?null:{from:i+n,to:this.pos,text:r.slice(n)}}get aborted(){return this.abortListeners==null}addEventListener(e,t,i){e=="abort"&&this.abortListeners&&(this.abortListeners.push(t),i&&i.onDocChange&&(this.abortOnDocChange=!0))}};function wQ(O){let e=Object.keys(O).join(""),t=/\w/.test(e);return t&&(e=e.replace(/\w/g,"")),`[${t?"\\w":""}${e.replace(/[^\w\s]/g,"\\$&")}]`}function S1(O){let e=Object.create(null),t=Object.create(null);for(let{label:r}of O){e[r[0]]=!0;for(let n=1;ntypeof r=="string"?{label:r}:r),[t,i]=e.every(r=>/^\w+$/.test(r.label))?[/\w*$/,/\w+$/]:S1(e);return r=>{let n=r.matchBefore(i);return n||r.explicit?{from:n?n.from:r.pos,options:e,validFor:t}:null}}function cO(O,e){return t=>{for(let i=U(t.state).resolveInner(t.pos,-1);i;i=i.parent){if(O.indexOf(i.name)>-1)return null;if(i.type.isTop)break}return e(t)}}var Qs=class{constructor(e,t,i,r){this.completion=e,this.source=t,this.match=i,this.score=r}};function RO(O){return O.selection.main.from}function zQ(O,e){var t;let{source:i}=O,r=e&&i[0]!="^",n=i[i.length-1]!="$";return!r&&!n?O:new RegExp(`${r?"^":""}(?:${i})${n?"$":""}`,(t=O.flags)!==null&&t!==void 0?t:O.ignoreCase?"i":"")}var Zl=qe.define();function X1(O,e,t,i){let{main:r}=O.selection,n=t-r.from,s=i-r.from;return{...O.changeByRange(a=>{if(a!=r&&t!=i&&O.sliceDoc(a.from+n,a.from+s)!=O.sliceDoc(t,i))return{range:a};let o=O.toText(e);return{changes:{from:a.from+n,to:i==r.from?a.to:a.from+s,insert:o},range:S.cursor(a.from+n+o.length)}}),scrollIntoView:!0,userEvent:"input.complete"}}var ZQ=new WeakMap;function T1(O){if(!Array.isArray(O))return O;let e=ZQ.get(O);return e||ZQ.set(O,e=zt(O)),e}var $s=V.define(),mr=V.define(),Pl=class{constructor(e){this.pattern=e,this.chars=[],this.folded=[],this.any=[],this.precise=[],this.byWord=[],this.score=0,this.matched=[];for(let t=0;t=48&&X<=57||X>=97&&X<=122?2:X>=65&&X<=90?1:0:(x=Ri(X))!=x.toLowerCase()?1:x!=x.toUpperCase()?2:0;(!g||k==1&&p||y==0&&k!=0)&&(t[h]==X||i[h]==X&&(f=!0)?s[h++]=g:s.length&&(m=!1)),y=k,g+=Me(X)}return h==o&&s[0]==0&&m?this.result(-100+(f?-200:0),s,e):u==o&&Q==0?this.ret(-200-e.length+($==e.length?0:-100),[0,$]):a>-1?this.ret(-700-e.length,[a,a+this.pattern.length]):u==o?this.ret(-900-e.length,[Q,$]):h==o?this.result(-100+(f?-200:0)+-700+(m?0:-1100),s,e):t.length==2?null:this.result((r[0]?-700:0)+-200+-1100,r,e)}result(e,t,i){let r=[],n=0;for(let s of t){let a=s+(this.astral?Me(Se(i,s)):1);n&&r[n-1]==s?r[n-1]=a:(r[n++]=s,r[n++]=a)}return this.ret(e-i.length,r)}},Sl=class{constructor(e){this.pattern=e,this.matched=[],this.score=0,this.folded=e.toLowerCase()}match(e){if(e.length!1,activateOnTypingDelay:100,selectOnOpen:!0,override:null,closeOnBlur:!0,maxRenderedOptions:100,defaultKeymap:!0,tooltipClass:()=>"",optionClass:()=>"",aboveCursor:!1,icons:!0,addToOptions:[],positionInfo:b1,filterStrict:!1,compareCompletions:(e,t)=>(e.sortText||e.label).localeCompare(t.sortText||t.label),interactionDelay:75,updateSyncTime:100},{defaultKeymap:(e,t)=>e&&t,closeOnBlur:(e,t)=>e&&t,icons:(e,t)=>e&&t,tooltipClass:(e,t)=>i=>vQ(e(i),t(i)),optionClass:(e,t)=>i=>vQ(e(i),t(i)),addToOptions:(e,t)=>e.concat(t),filterStrict:(e,t)=>e||t})}});function vQ(O,e){return O?e?O+" "+e:O:e}function b1(O,e,t,i,r,n){let s=O.textDirection==H.RTL,a=s,o=!1,l="top",c,h,f=e.left-r.left,u=r.right-e.right,Q=i.right-i.left,$=i.bottom-i.top;if(a&&f=$||g>e.top?c=t.bottom-e.top:(l="bottom",c=e.bottom-t.top)}let p=(e.bottom-e.top)/n.offsetHeight,m=(e.right-e.left)/n.offsetWidth;return{style:`${l}: ${c/p}px; max-width: ${h/m}px`,class:"cm-completionInfo-"+(o?s?"left-narrow":"right-narrow":a?"left":"right")}}function y1(O){let e=O.addToOptions.slice();return O.icons&&e.push({render(t){let i=document.createElement("div");return i.classList.add("cm-completionIcon"),t.type&&i.classList.add(...t.type.split(/\s+/g).map(r=>"cm-completionIcon-"+r)),i.setAttribute("aria-hidden","true"),i},position:20}),e.push({render(t,i,r,n){let s=document.createElement("span");s.className="cm-completionLabel";let a=t.displayLabel||t.label,o=0;for(let l=0;lo&&s.appendChild(document.createTextNode(a.slice(o,c)));let f=s.appendChild(document.createElement("span"));f.appendChild(document.createTextNode(a.slice(c,h))),f.className="cm-completionMatchedText",o=h}return ot.position-i.position).map(t=>t.render)}function pl(O,e,t){if(O<=t)return{from:0,to:O};if(e<0&&(e=0),e<=O>>1){let r=Math.floor(e/t);return{from:r*t,to:(r+1)*t}}let i=Math.floor((O-e)/t);return{from:O-(i+1)*t,to:O-i*t}}var Xl=class{constructor(e,t,i){this.view=e,this.stateField=t,this.applyCompletion=i,this.info=null,this.infoDestroy=null,this.placeInfoReq={read:()=>this.measureInfo(),write:o=>this.placeInfo(o),key:this},this.space=null,this.currentClass="";let r=e.state.field(t),{options:n,selected:s}=r.open,a=e.state.facet(ge);this.optionContent=y1(a),this.optionClass=a.optionClass,this.tooltipClass=a.tooltipClass,this.range=pl(n.length,s,a.maxRenderedOptions),this.dom=document.createElement("div"),this.dom.className="cm-tooltip-autocomplete",this.updateTooltipClass(e.state),this.dom.addEventListener("mousedown",o=>{let{options:l}=e.state.field(t).open;for(let c=o.target,h;c&&c!=this.dom;c=c.parentNode)if(c.nodeName=="LI"&&(h=/-(\d+)$/.exec(c.id))&&+h[1]{let l=e.state.field(this.stateField,!1);l&&l.tooltip&&e.state.facet(ge).closeOnBlur&&o.relatedTarget!=e.contentDOM&&e.dispatch({effects:mr.of(null)})}),this.showOptions(n,r.id)}mount(){this.updateSel()}showOptions(e,t){this.list&&this.list.remove(),this.list=this.dom.appendChild(this.createListBox(e,t,this.range)),this.list.addEventListener("scroll",()=>{this.info&&this.view.requestMeasure(this.placeInfoReq)})}update(e){var t;let i=e.state.field(this.stateField),r=e.startState.field(this.stateField);if(this.updateTooltipClass(e.state),i!=r){let{options:n,selected:s,disabled:a}=i.open;(!r.open||r.open.options!=n)&&(this.range=pl(n.length,s,e.state.facet(ge).maxRenderedOptions),this.showOptions(n,i.id)),this.updateSel(),a!=((t=r.open)===null||t===void 0?void 0:t.disabled)&&this.dom.classList.toggle("cm-tooltip-autocomplete-disabled",!!a)}}updateTooltipClass(e){let t=this.tooltipClass(e);if(t!=this.currentClass){for(let i of this.currentClass.split(" "))i&&this.dom.classList.remove(i);for(let i of t.split(" "))i&&this.dom.classList.add(i);this.currentClass=t}}positioned(e){this.space=e,this.info&&this.view.requestMeasure(this.placeInfoReq)}updateSel(){let e=this.view.state.field(this.stateField),t=e.open;(t.selected>-1&&t.selected=this.range.to)&&(this.range=pl(t.options.length,t.selected,this.view.state.facet(ge).maxRenderedOptions),this.showOptions(t.options,e.id));let i=this.updateSelectedOption(t.selected);if(i){this.destroyInfo();let{completion:r}=t.options[t.selected],{info:n}=r;if(!n)return;let s=typeof n=="string"?document.createTextNode(n):n(r);if(!s)return;"then"in s?s.then(a=>{a&&this.view.state.field(this.stateField,!1)==e&&this.addInfoPane(a,r)}).catch(a=>Xe(this.view.state,a,"completion info")):(this.addInfoPane(s,r),i.setAttribute("aria-describedby",this.info.id))}}addInfoPane(e,t){this.destroyInfo();let i=this.info=document.createElement("div");if(i.className="cm-tooltip cm-completionInfo",i.id="cm-completionInfo-"+Math.floor(Math.random()*65535).toString(16),e.nodeType!=null)i.appendChild(e),this.infoDestroy=null;else{let{dom:r,destroy:n}=e;i.appendChild(r),this.infoDestroy=n||null}this.dom.appendChild(i),this.view.requestMeasure(this.placeInfoReq)}updateSelectedOption(e){let t=null;for(let i=this.list.firstChild,r=this.range.from;i;i=i.nextSibling,r++)i.nodeName!="LI"||!i.id?r--:r==e?i.hasAttribute("aria-selected")||(i.setAttribute("aria-selected","true"),t=i):i.hasAttribute("aria-selected")&&(i.removeAttribute("aria-selected"),i.removeAttribute("aria-describedby"));return t&&k1(this.list,t),t}measureInfo(){let e=this.dom.querySelector("[aria-selected]");if(!e||!this.info)return null;let t=this.dom.getBoundingClientRect(),i=this.info.getBoundingClientRect(),r=e.getBoundingClientRect(),n=this.space;if(!n){let s=this.dom.ownerDocument.documentElement;n={left:0,top:0,right:s.clientWidth,bottom:s.clientHeight}}return r.top>Math.min(n.bottom,t.bottom)-10||r.bottom{s.target==r&&s.preventDefault()});let n=null;for(let s=i.from;si.from||i.from==0))if(n=f,typeof l!="string"&&l.header)r.appendChild(l.header(l));else{let u=r.appendChild(document.createElement("completion-section"));u.textContent=f}}let c=r.appendChild(document.createElement("li"));c.id=t+"-"+s,c.setAttribute("role","option");let h=this.optionClass(a);h&&(c.className=h);for(let f of this.optionContent){let u=f(a,this.view.state,this.view,o);u&&c.appendChild(u)}}return i.from&&r.classList.add("cm-completionListIncompleteTop"),i.tonew Xl(t,O,e)}function k1(O,e){let t=O.getBoundingClientRect(),i=e.getBoundingClientRect(),r=t.height/O.offsetHeight;i.topt.bottom&&(O.scrollTop+=(i.bottom-t.bottom)/r)}function YQ(O){return(O.boost||0)*100+(O.apply?10:0)+(O.info?5:0)+(O.type?1:0)}function w1(O,e){let t=[],i=null,r=null,n=c=>{t.push(c);let{section:h}=c.completion;if(h){i||(i=[]);let f=typeof h=="string"?h:h.name;i.some(u=>u.name==f)||i.push(typeof h=="string"?{name:f}:h)}},s=e.facet(ge);for(let c of O)if(c.hasResult()){let h=c.result.getMatch;if(c.result.filter===!1)for(let f of c.result.options)n(new Qs(f,c.source,h?h(f):[],1e9-t.length));else{let f=e.sliceDoc(c.from,c.to),u,Q=s.filterStrict?new Sl(f):new Pl(f);for(let $ of c.result.options)if(u=Q.match($.label)){let p=$.displayLabel?h?h($,u.matched):[]:u.matched,m=u.score+($.boost||0);if(n(new Qs($,c.source,p,m)),typeof $.section=="object"&&$.section.rank==="dynamic"){let{name:g}=$.section;r||(r=Object.create(null)),r[g]=Math.max(m,r[g]||-1e9)}}}}if(i){let c=Object.create(null),h=0,f=(u,Q)=>(u.rank==="dynamic"&&Q.rank==="dynamic"?r[Q.name]-r[u.name]:0)||(typeof u.rank=="number"?u.rank:1e9)-(typeof Q.rank=="number"?Q.rank:1e9)||(u.namef.score-h.score||l(h.completion,f.completion))){let h=c.completion;!o||o.label!=h.label||o.detail!=h.detail||o.type!=null&&h.type!=null&&o.type!=h.type||o.apply!=h.apply||o.boost!=h.boost?a.push(c):YQ(c.completion)>YQ(o)&&(a[a.length-1]=c),o=c.completion}return a}var Tl=class O{constructor(e,t,i,r,n,s){this.options=e,this.attrs=t,this.tooltip=i,this.timestamp=r,this.selected=n,this.disabled=s}setSelected(e,t){return e==this.selected||e>=this.options.length?this:new O(this.options,_Q(t,e),this.tooltip,this.timestamp,e,this.disabled)}static build(e,t,i,r,n,s){if(r&&!s&&e.some(l=>l.isPending))return r.setDisabled();let a=w1(e,t);if(!a.length)return r&&e.some(l=>l.isPending)?r.setDisabled():null;let o=t.facet(ge).selectOnOpen?0:-1;if(r&&r.selected!=o&&r.selected!=-1){let l=r.options[r.selected].completion;for(let c=0;cc.hasResult()?Math.min(l,c.from):l,1e8),create:V1,above:n.aboveCursor},r?r.timestamp:Date.now(),o,!1)}map(e){return new O(this.options,this.attrs,{...this.tooltip,pos:e.mapPos(this.tooltip.pos)},this.timestamp,this.selected,this.disabled)}setDisabled(){return new O(this.options,this.attrs,this.tooltip,this.timestamp,this.selected,!0)}},bl=class O{constructor(e,t,i){this.active=e,this.id=t,this.open=i}static start(){return new O(_1,"cm-ac-"+Math.floor(Math.random()*2e6).toString(36),null)}update(e){let{state:t}=e,i=t.facet(ge),n=(i.override||t.languageDataAt("autocomplete",RO(t)).map(T1)).map(o=>(this.active.find(c=>c.source==o)||new qt(o,this.active.some(c=>c.state!=0)?1:0)).update(e,i));n.length==this.active.length&&n.every((o,l)=>o==this.active[l])&&(n=this.active);let s=this.open,a=e.effects.some(o=>o.is(vl));s&&e.docChanged&&(s=s.map(e.changes)),e.selection||n.some(o=>o.hasResult()&&e.changes.touchesRange(o.from,o.to))||!Z1(n,this.active)||a?s=Tl.build(n,t,this.id,s,i,a):s&&s.disabled&&!n.some(o=>o.isPending)&&(s=null),!s&&n.every(o=>!o.isPending)&&n.some(o=>o.hasResult())&&(n=n.map(o=>o.hasResult()?new qt(o.source,0):o));for(let o of e.effects)o.is(WQ)&&(s=s&&s.setSelected(o.value,this.id));return n==this.active&&s==this.open?this:new O(n,this.id,s)}get tooltip(){return this.open?this.open.tooltip:null}get attrs(){return this.open?this.open.attrs:this.active.length?v1:Y1}};function Z1(O,e){if(O==e)return!0;for(let t=0,i=0;;){for(;t-1&&(t["aria-activedescendant"]=O+"-"+e),t}var _1=[];function UQ(O,e){if(O.isUserEvent("input.complete")){let i=O.annotation(Zl);if(i&&e.activateOnCompletion(i))return 12}let t=O.isUserEvent("input.type");return t&&e.activateOnTyping?5:t?1:O.isUserEvent("delete.backward")?2:O.selection?8:O.docChanged?16:0}var qt=class O{constructor(e,t,i=!1){this.source=e,this.state=t,this.explicit=i}hasResult(){return!1}get isPending(){return this.state==1}update(e,t){let i=UQ(e,t),r=this;(i&8||i&16&&this.touches(e))&&(r=new O(r.source,0)),i&4&&r.state==0&&(r=new O(this.source,1)),r=r.updateFor(e,i);for(let n of e.effects)if(n.is($s))r=new O(r.source,1,n.value);else if(n.is(mr))r=new O(r.source,0);else if(n.is(vl))for(let s of n.value)s.source==r.source&&(r=s);return r}updateFor(e,t){return this.map(e.changes)}map(e){return this}touches(e){return e.changes.touchesRange(RO(e.state))}},ps=class O extends qt{constructor(e,t,i,r,n,s){super(e,3,t),this.limit=i,this.result=r,this.from=n,this.to=s}hasResult(){return!0}updateFor(e,t){var i;if(!(t&3))return this.map(e.changes);let r=this.result;r.map&&!e.changes.empty&&(r=r.map(r,e.changes));let n=e.changes.mapPos(this.from),s=e.changes.mapPos(this.to,1),a=RO(e.state);if(a>s||!r||t&2&&(RO(e.startState)==this.from||at.map(e))}}),WQ=V.define(),Ce=ce.define({create(){return bl.start()},update(O,e){return O.update(e)},provide:O=>[er.from(O,e=>e.tooltip),T.contentAttributes.from(O,e=>e.attrs)]});function Yl(O,e){let t=e.completion.apply||e.completion.label,i=O.state.field(Ce).active.find(r=>r.source==e.source);return i instanceof ps?(typeof t=="string"?O.dispatch({...X1(O.state,t,i.from,i.to),annotations:Zl.of(e.completion)}):t(O,e.completion,i.from,i.to),!0):!1}var V1=x1(Ce,Yl);function us(O,e="option"){return t=>{let i=t.state.field(Ce,!1);if(!i||!i.open||i.open.disabled||Date.now()-i.open.timestamp-1?i.open.selected+r*(O?1:-1):O?0:s-1;return a<0?a=e=="page"?0:s-1:a>=s&&(a=e=="page"?s-1:0),t.dispatch({effects:WQ.of(a)}),!0}}var q1=O=>{let e=O.state.field(Ce,!1);return O.state.readOnly||!e||!e.open||e.open.selected<0||e.open.disabled||Date.now()-e.open.timestampO.state.field(Ce,!1)?(O.dispatch({effects:$s.of(!0)}),!0):!1,z1=O=>{let e=O.state.field(Ce,!1);return!e||!e.active.some(t=>t.state!=0)?!1:(O.dispatch({effects:mr.of(null)}),!0)},yl=class{constructor(e,t){this.active=e,this.context=t,this.time=Date.now(),this.updates=[],this.done=void 0}},U1=50,W1=1e3,j1=he.fromClass(class{constructor(O){this.view=O,this.debounceUpdate=-1,this.running=[],this.debounceAccept=-1,this.pendingStart=!1,this.composing=0;for(let e of O.state.field(Ce).active)e.isPending&&this.startQuery(e)}update(O){let e=O.state.field(Ce),t=O.state.facet(ge);if(!O.selectionSet&&!O.docChanged&&O.startState.field(Ce)==e)return;let i=O.transactions.some(n=>{let s=UQ(n,t);return s&8||(n.selection||n.docChanged)&&!(s&3)});for(let n=0;nU1&&Date.now()-s.time>W1){for(let a of s.context.abortListeners)try{a()}catch(o){Xe(this.view.state,o)}s.context.abortListeners=null,this.running.splice(n--,1)}else s.updates.push(...O.transactions)}this.debounceUpdate>-1&&clearTimeout(this.debounceUpdate),O.transactions.some(n=>n.effects.some(s=>s.is($s)))&&(this.pendingStart=!0);let r=this.pendingStart?50:t.activateOnTypingDelay;if(this.debounceUpdate=e.active.some(n=>n.isPending&&!this.running.some(s=>s.active.source==n.source))?setTimeout(()=>this.startUpdate(),r):-1,this.composing!=0)for(let n of O.transactions)n.isUserEvent("input.type")?this.composing=2:this.composing==2&&n.selection&&(this.composing=3)}startUpdate(){this.debounceUpdate=-1,this.pendingStart=!1;let{state:O}=this.view,e=O.field(Ce);for(let t of e.active)t.isPending&&!this.running.some(i=>i.active.source==t.source)&&this.startQuery(t);this.running.length&&e.open&&e.open.disabled&&(this.debounceAccept=setTimeout(()=>this.accept(),this.view.state.facet(ge).updateSyncTime))}startQuery(O){let{state:e}=this.view,t=RO(e),i=new $i(e,t,O.explicit,this.view),r=new yl(O,i);this.running.push(r),Promise.resolve(O.source(i)).then(n=>{r.context.aborted||(r.done=n||null,this.scheduleAccept())},n=>{this.view.dispatch({effects:mr.of(null)}),Xe(this.view.state,n)})}scheduleAccept(){this.running.every(O=>O.done!==void 0)?this.accept():this.debounceAccept<0&&(this.debounceAccept=setTimeout(()=>this.accept(),this.view.state.facet(ge).updateSyncTime))}accept(){var O;this.debounceAccept>-1&&clearTimeout(this.debounceAccept),this.debounceAccept=-1;let e=[],t=this.view.state.facet(ge),i=this.view.state.field(Ce);for(let r=0;ra.source==n.active.source);if(s&&s.isPending)if(n.done==null){let a=new qt(n.active.source,0);for(let o of n.updates)a=a.update(o,t);a.isPending||e.push(a)}else this.startQuery(s)}(e.length||i.open&&i.open.disabled)&&this.view.dispatch({effects:vl.of(e)})}},{eventHandlers:{blur(O){let e=this.view.state.field(Ce,!1);if(e&&e.tooltip&&this.view.state.facet(ge).closeOnBlur){let t=e.open&&To(this.view,e.open.tooltip);(!t||!t.dom.contains(O.relatedTarget))&&setTimeout(()=>this.view.dispatch({effects:mr.of(null)}),10)}},compositionstart(){this.composing=1},compositionend(){this.composing==3&&setTimeout(()=>this.view.dispatch({effects:$s.of(!1)}),20),this.composing=0}}}),C1=typeof navigator=="object"&&/Win/.test(navigator.platform),G1=ze.highest(T.domEventHandlers({keydown(O,e){let t=e.state.field(Ce,!1);if(!t||!t.open||t.open.disabled||t.open.selected<0||O.key.length>1||O.ctrlKey&&!(C1&&O.altKey)||O.metaKey)return!1;let i=t.open.options[t.open.selected],r=t.active.find(s=>s.source==i.source),n=i.completion.commitCharacters||r.result.commitCharacters;return n&&n.indexOf(O.key)>-1&&Yl(e,i),!1}})),jQ=T.baseTheme({".cm-tooltip.cm-tooltip-autocomplete":{"& > ul":{fontFamily:"monospace",whiteSpace:"nowrap",overflow:"hidden auto",maxWidth_fallback:"700px",maxWidth:"min(700px, 95vw)",minWidth:"250px",maxHeight:"10em",height:"100%",listStyle:"none",margin:0,padding:0,"& > li, & > completion-section":{padding:"1px 3px",lineHeight:1.2},"& > li":{overflowX:"hidden",textOverflow:"ellipsis",cursor:"pointer"},"& > completion-section":{display:"list-item",borderBottom:"1px solid silver",paddingLeft:"0.5em",opacity:.7}}},"&light .cm-tooltip-autocomplete ul li[aria-selected]":{background:"#17c",color:"white"},"&light .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:"#777"},"&dark .cm-tooltip-autocomplete ul li[aria-selected]":{background:"#347",color:"white"},"&dark .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:"#444"},".cm-completionListIncompleteTop:before, .cm-completionListIncompleteBottom:after":{content:'"\xB7\xB7\xB7"',opacity:.5,display:"block",textAlign:"center"},".cm-tooltip.cm-completionInfo":{position:"absolute",padding:"3px 9px",width:"max-content",maxWidth:"400px",boxSizing:"border-box",whiteSpace:"pre-line"},".cm-completionInfo.cm-completionInfo-left":{right:"100%"},".cm-completionInfo.cm-completionInfo-right":{left:"100%"},".cm-completionInfo.cm-completionInfo-left-narrow":{right:"30px"},".cm-completionInfo.cm-completionInfo-right-narrow":{left:"30px"},"&light .cm-snippetField":{backgroundColor:"#00000022"},"&dark .cm-snippetField":{backgroundColor:"#ffffff22"},".cm-snippetFieldPosition":{verticalAlign:"text-top",width:0,height:"1.15em",display:"inline-block",margin:"0 -0.7px -.7em",borderLeft:"1.4px dotted #888"},".cm-completionMatchedText":{textDecoration:"underline"},".cm-completionDetail":{marginLeft:"0.5em",fontStyle:"italic"},".cm-completionIcon":{fontSize:"90%",width:".8em",display:"inline-block",textAlign:"center",paddingRight:".6em",opacity:"0.6",boxSizing:"content-box"},".cm-completionIcon-function, .cm-completionIcon-method":{"&:after":{content:"'\u0192'"}},".cm-completionIcon-class":{"&:after":{content:"'\u25CB'"}},".cm-completionIcon-interface":{"&:after":{content:"'\u25CC'"}},".cm-completionIcon-variable":{"&:after":{content:"'\u{1D465}'"}},".cm-completionIcon-constant":{"&:after":{content:"'\u{1D436}'"}},".cm-completionIcon-type":{"&:after":{content:"'\u{1D461}'"}},".cm-completionIcon-enum":{"&:after":{content:"'\u222A'"}},".cm-completionIcon-property":{"&:after":{content:"'\u25A1'"}},".cm-completionIcon-keyword":{"&:after":{content:"'\u{1F511}\uFE0E'"}},".cm-completionIcon-namespace":{"&:after":{content:"'\u25A2'"}},".cm-completionIcon-text":{"&:after":{content:"'abc'",fontSize:"50%",verticalAlign:"middle"}}}),xl=class{constructor(e,t,i,r){this.field=e,this.line=t,this.from=i,this.to=r}},kl=class O{constructor(e,t,i){this.field=e,this.from=t,this.to=i}map(e){let t=e.mapPos(this.from,-1,pe.TrackDel),i=e.mapPos(this.to,1,pe.TrackDel);return t==null||i==null?null:new O(this.field,t,i)}},wl=class O{constructor(e,t){this.lines=e,this.fieldPositions=t}instantiate(e,t){let i=[],r=[t],n=e.doc.lineAt(t),s=/^\s*/.exec(n.text)[0];for(let o of this.lines){if(i.length){let l=s,c=/^\t*/.exec(o)[0].length;for(let h=0;hnew kl(o.field,r[o.line]+o.from,r[o.line]+o.to));return{text:i,ranges:a}}static parse(e){let t=[],i=[],r=[],n;for(let s of e.split(/\r\n?|\n/)){for(;n=/[#$]\{(?:(\d+)(?::([^{}]*))?|((?:\\[{}]|[^{}])*))\}/.exec(s);){let a=n[1]?+n[1]:null,o=n[2]||n[3]||"",l=-1,c=o.replace(/\\[{}]/g,h=>h[1]);for(let h=0;h=l&&f.field++}for(let h of r)if(h.line==i.length&&h.from>n.index){let f=n[2]?3+(n[1]||"").length:2;h.from-=f,h.to-=f}r.push(new xl(l,i.length,n.index,n.index+c.length)),s=s.slice(0,n.index)+o+s.slice(n.index+n[0].length)}s=s.replace(/\\([{}])/g,(a,o,l)=>{for(let c of r)c.line==i.length&&c.from>l&&(c.from--,c.to--);return o}),i.push(s)}return new O(i,r)}},E1=Y.widget({widget:new class extends _e{toDOM(){let O=document.createElement("span");return O.className="cm-snippetFieldPosition",O}ignoreEvent(){return!1}}}),A1=Y.mark({class:"cm-snippetField"}),pi=class O{constructor(e,t){this.ranges=e,this.active=t,this.deco=Y.set(e.map(i=>(i.from==i.to?E1:A1).range(i.from,i.to)),!0)}map(e){let t=[];for(let i of this.ranges){let r=i.map(e);if(!r)return null;t.push(r)}return new O(t,this.active)}selectionInsideField(e){return e.ranges.every(t=>this.ranges.some(i=>i.field==this.active&&i.from<=t.from&&i.to>=t.to))}},Sr=V.define({map(O,e){return O&&O.map(e)}}),L1=V.define(),gr=ce.define({create(){return null},update(O,e){for(let t of e.effects){if(t.is(Sr))return t.value;if(t.is(L1)&&O)return new pi(O.ranges,t.value)}return O&&e.docChanged&&(O=O.map(e.changes)),O&&e.selection&&!O.selectionInsideField(e.selection)&&(O=null),O},provide:O=>T.decorations.from(O,e=>e?e.deco:Y.none)});function _l(O,e){return S.create(O.filter(t=>t.field==e).map(t=>S.range(t.from,t.to)))}function M1(O){let e=wl.parse(O);return(t,i,r,n)=>{let{text:s,ranges:a}=e.instantiate(t.state,r),{main:o}=t.state.selection,l={changes:{from:r,to:n==o.from?o.to:n,insert:E.of(s)},scrollIntoView:!0,annotations:i?[Zl.of(i),Qe.userEvent.of("input.complete")]:void 0};if(a.length&&(l.selection=_l(a,0)),a.some(c=>c.field>0)){let c=new pi(a,0),h=l.effects=[Sr.of(c)];t.state.field(gr,!1)===void 0&&h.push(V.appendConfig.of([gr,F1,H1,jQ]))}t.dispatch(t.state.update(l))}}function CQ(O){return({state:e,dispatch:t})=>{let i=e.field(gr,!1);if(!i||O<0&&i.active==0)return!1;let r=i.active+O,n=O>0&&!i.ranges.some(s=>s.field==r+O);return t(e.update({selection:_l(i.ranges,r),effects:Sr.of(n?null:new pi(i.ranges,r)),scrollIntoView:!0})),!0}}var D1=({state:O,dispatch:e})=>O.field(gr,!1)?(e(O.update({effects:Sr.of(null)})),!0):!1,I1=CQ(1),B1=CQ(-1);var N1=[{key:"Tab",run:I1,shift:B1},{key:"Escape",run:D1}],RQ=Z.define({combine(O){return O.length?O[0]:N1}}),F1=ze.highest(Xt.compute([RQ],O=>O.facet(RQ)));function W(O,e){return{...e,apply:M1(O)}}var H1=T.domEventHandlers({mousedown(O,e){let t=e.state.field(gr,!1),i;if(!t||(i=e.posAtCoords({x:O.clientX,y:O.clientY}))==null)return!1;let r=t.ranges.find(n=>n.from<=i&&n.to>=i);return!r||r.field==t.active?!1:(e.dispatch({selection:_l(t.ranges,r.field),effects:Sr.of(t.ranges.some(n=>n.field>r.field)?new pi(t.ranges,r.field):null),scrollIntoView:!0}),!0)}});var Pr={brackets:["(","[","{","'",'"'],before:")]}:;>",stringPrefixes:[]},_O=V.define({map(O,e){let t=e.mapPos(O,-1,pe.TrackAfter);return t??void 0}}),Rl=new class extends tt{};Rl.startSide=1;Rl.endSide=-1;var GQ=ce.define({create(){return M.empty},update(O,e){if(O=O.map(e.changes),e.selection){let t=e.state.doc.lineAt(e.selection.main.head);O=O.update({filter:i=>i>=t.from&&i<=t.to})}for(let t of e.effects)t.is(_O)&&(O=O.update({add:[Rl.range(t.value,t.value+1)]}));return O}});function EQ(){return[J1,GQ]}var gl="()[]{}<>\xAB\xBB\xBB\xAB\uFF3B\uFF3D\uFF5B\uFF5D";function AQ(O){for(let e=0;e{if((K1?O.composing:O.compositionStarted)||O.state.readOnly)return!1;let r=O.state.selection.main;if(i.length>2||i.length==2&&Me(Se(i,0))==1||e!=r.from||t!=r.to)return!1;let n=t0(O.state,i);return n?(O.dispatch(n),!0):!1}),e0=({state:O,dispatch:e})=>{if(O.readOnly)return!1;let i=LQ(O,O.selection.main.head).brackets||Pr.brackets,r=null,n=O.changeByRange(s=>{if(s.empty){let a=O0(O.doc,s.head);for(let o of i)if(o==a&&ms(O.doc,s.head)==AQ(Se(o,0)))return{changes:{from:s.head-o.length,to:s.head+o.length},range:S.cursor(s.head-o.length)}}return{range:r=s}});return r||e(O.update(n,{scrollIntoView:!0,userEvent:"delete.backward"})),!r},MQ=[{key:"Backspace",run:e0}];function t0(O,e){let t=LQ(O,O.selection.main.head),i=t.brackets||Pr.brackets;for(let r of i){let n=AQ(Se(r,0));if(e==r)return n==r?n0(O,r,i.indexOf(r+r+r)>-1,t):i0(O,r,n,t.before||Pr.before);if(e==n&&DQ(O,O.selection.main.from))return r0(O,r,n)}return null}function DQ(O,e){let t=!1;return O.field(GQ).between(0,O.doc.length,i=>{i==e&&(t=!0)}),t}function ms(O,e){let t=O.sliceString(e,e+2);return t.slice(0,Me(Se(t,0)))}function O0(O,e){let t=O.sliceString(e-2,e);return Me(Se(t,0))==t.length?t:t.slice(1)}function i0(O,e,t,i){let r=null,n=O.changeByRange(s=>{if(!s.empty)return{changes:[{insert:e,from:s.from},{insert:t,from:s.to}],effects:_O.of(s.to+e.length),range:S.range(s.anchor+e.length,s.head+e.length)};let a=ms(O.doc,s.head);return!a||/\s/.test(a)||i.indexOf(a)>-1?{changes:{insert:e+t,from:s.head},effects:_O.of(s.head+e.length),range:S.cursor(s.head+e.length)}:{range:r=s}});return r?null:O.update(n,{scrollIntoView:!0,userEvent:"input.type"})}function r0(O,e,t){let i=null,r=O.changeByRange(n=>n.empty&&ms(O.doc,n.head)==t?{changes:{from:n.head,to:n.head+t.length,insert:t},range:S.cursor(n.head+t.length)}:i={range:n});return i?null:O.update(r,{scrollIntoView:!0,userEvent:"input.type"})}function n0(O,e,t,i){let r=i.stringPrefixes||Pr.stringPrefixes,n=null,s=O.changeByRange(a=>{if(!a.empty)return{changes:[{insert:e,from:a.from},{insert:e,from:a.to}],effects:_O.of(a.to+e.length),range:S.range(a.anchor+e.length,a.head+e.length)};let o=a.head,l=ms(O.doc,o),c;if(l==e){if(VQ(O,o))return{changes:{insert:e+e,from:o},effects:_O.of(o+e.length),range:S.cursor(o+e.length)};if(DQ(O,o)){let f=t&&O.sliceDoc(o,o+e.length*3)==e+e+e?e+e+e:e;return{changes:{from:o,to:o+f.length,insert:f},range:S.cursor(o+f.length)}}}else{if(t&&O.sliceDoc(o-2*e.length,o)==e+e&&(c=qQ(O,o-2*e.length,r))>-1&&VQ(O,c))return{changes:{insert:e+e+e+e,from:o},effects:_O.of(o+e.length),range:S.cursor(o+e.length)};if(O.charCategorizer(o)(l)!=ee.Word&&qQ(O,o,r)>-1&&!s0(O,o,e,r))return{changes:{insert:e+e,from:o},effects:_O.of(o+e.length),range:S.cursor(o+e.length)}}return{range:n=a}});return n?null:O.update(s,{scrollIntoView:!0,userEvent:"input.type"})}function VQ(O,e){let t=U(O).resolveInner(e+1);return t.parent&&t.from==e}function s0(O,e,t,i){let r=U(O).resolveInner(e,-1),n=i.reduce((s,a)=>Math.max(s,a.length),0);for(let s=0;s<5;s++){let a=O.sliceDoc(r.from,Math.min(r.to,r.from+t.length+n)),o=a.indexOf(t);if(!o||o>-1&&i.indexOf(a.slice(0,o))>-1){let c=r.firstChild;for(;c&&c.from==r.from&&c.to-c.from>t.length+o;){if(O.sliceDoc(c.to-t.length,c.to)==t)return!1;c=c.firstChild}return!0}let l=r.to==e&&r.parent;if(!l)break;r=l}return!1}function qQ(O,e,t){let i=O.charCategorizer(e);if(i(O.sliceDoc(e-1,e))!=ee.Word)return e;for(let r of t){let n=e-r.length;if(O.sliceDoc(n,e)==r&&i(O.sliceDoc(n-1,n))!=ee.Word)return n}return-1}function IQ(O={}){return[G1,Ce,ge.of(O),j1,a0,jQ]}var Vl=[{key:"Ctrl-Space",run:ml},{mac:"Alt-`",run:ml},{mac:"Alt-i",run:ml},{key:"Escape",run:z1},{key:"ArrowDown",run:us(!0)},{key:"ArrowUp",run:us(!1)},{key:"PageDown",run:us(!0,"page")},{key:"PageUp",run:us(!1,"page")},{key:"Enter",run:q1}],a0=ze.highest(Xt.computeN([ge],O=>O.facet(ge).defaultKeymap?[Vl]:[]));var Ps=class{constructor(e,t,i){this.from=e,this.to=t,this.diagnostic=i}},VO=class O{constructor(e,t,i){this.diagnostics=e,this.panel=t,this.selected=i}static init(e,t,i){let r=i.facet(Xr).markerFilter;r&&(e=r(e,i));let n=e.slice().sort((u,Q)=>u.from-Q.from||u.to-Q.to),s=new Le,a=[],o=0,l=i.doc.iter(),c=0,h=i.doc.length;for(let u=0;;){let Q=u==n.length?null:n[u];if(!Q&&!a.length)break;let $,p;if(a.length)$=o,p=a.reduce((P,y)=>Math.min(P,y.to),Q&&Q.from>$?Q.from:1e8);else{if($=Q.from,$>h)break;p=Q.to,a.push(Q),u++}for(;uP.from||P.to==$))a.push(P),u++,p=Math.min(P.to,p);else{p=Math.min(P.from,p);break}}p=Math.min(p,h);let m=!1;if(a.some(P=>P.from==$&&(P.to==p||p==h))&&(m=$==p,!m&&p-$<10)){let P=$-(c+l.value.length);P>0&&(l.next(P),c=$);for(let y=$;;){if(y>=p){m=!0;break}if(!l.lineBreak&&c+l.value.length>y)break;y=c+l.value.length,c+=l.value.length,l.next()}}let g=m0(a);if(m)s.add($,$,Y.widget({widget:new ql(g),diagnostics:a.slice()}));else{let P=a.reduce((y,X)=>X.markClass?y+" "+X.markClass:y,"");s.add($,p,Y.mark({class:"cm-lintRange cm-lintRange-"+g+P,diagnostics:a.slice(),inclusiveEnd:a.some(y=>y.to>p)}))}if(o=p,o==h)break;for(let P=0;P{if(!(e&&s.diagnostics.indexOf(e)<0))if(!i)i=new Ps(r,n,e||s.diagnostics[0]);else{if(s.diagnostics.indexOf(i.diagnostic)<0)return!1;i=new Ps(i.from,n,i.diagnostic)}}),i}function o0(O,e){let t=e.pos,i=e.end||t,r=O.state.facet(Xr).hideOn(O,t,i);if(r!=null)return r;let n=O.startState.doc.lineAt(e.pos);return!!(O.effects.some(s=>s.is(FQ))||O.changes.touchesRange(n.from,Math.max(n.to,i)))}function l0(O,e){return O.field(Fe,!1)?e:e.concat(V.appendConfig.of(g0))}var FQ=V.define(),zl=V.define(),HQ=V.define(),Fe=ce.define({create(){return new VO(Y.none,null,null)},update(O,e){if(e.docChanged&&O.diagnostics.size){let t=O.diagnostics.map(e.changes),i=null,r=O.panel;if(O.selected){let n=e.changes.mapPos(O.selected.from,1);i=mi(t,O.selected.diagnostic,n)||mi(t,null,n)}!t.size&&r&&e.state.facet(Xr).autoPanel&&(r=null),O=new VO(t,r,i)}for(let t of e.effects)if(t.is(FQ)){let i=e.state.facet(Xr).autoPanel?t.value.length?Tr.open:null:O.panel;O=VO.init(t.value,i,e.state)}else t.is(zl)?O=new VO(O.diagnostics,t.value?Tr.open:null,O.selected):t.is(HQ)&&(O=new VO(O.diagnostics,O.panel,t.value));return O},provide:O=>[TO.from(O,e=>e.panel),T.decorations.from(O,e=>e.diagnostics)]});var c0=Y.mark({class:"cm-lintRange cm-lintRange-active"});function h0(O,e,t){let{diagnostics:i}=O.state.field(Fe),r,n=-1,s=-1;i.between(e-(t<0?1:0),e+(t>0?1:0),(o,l,{spec:c})=>{if(e>=o&&e<=l&&(o==l||(e>o||t>0)&&(ee$(O,t,!1)))}var d0=O=>{let e=O.state.field(Fe,!1);(!e||!e.panel)&&O.dispatch({effects:l0(O.state,[zl.of(!0)])});let t=bO(O,Tr.open);return t&&t.dom.querySelector(".cm-panel-lint ul").focus(),!0},BQ=O=>{let e=O.state.field(Fe,!1);return!e||!e.panel?!1:(O.dispatch({effects:zl.of(!1)}),!0)},u0=O=>{let e=O.state.field(Fe,!1);if(!e)return!1;let t=O.state.selection.main,i=e.diagnostics.iter(t.to+1);return!i.value&&(i=e.diagnostics.iter(0),!i.value||i.from==t.from&&i.to==t.to)?!1:(O.dispatch({selection:{anchor:i.from,head:i.to},scrollIntoView:!0}),!0)};var KQ=[{key:"Mod-Shift-m",run:d0,preventDefault:!0},{key:"F8",run:u0}];var Xr=Z.define({combine(O){return{sources:O.map(e=>e.source).filter(e=>e!=null),...xe(O.map(e=>e.config),{delay:750,markerFilter:null,tooltipFilter:null,needsRefresh:null,hideOn:()=>null},{delay:Math.max,markerFilter:NQ,tooltipFilter:NQ,needsRefresh:(e,t)=>e?t?i=>e(i)||t(i):e:t,hideOn:(e,t)=>e?t?(i,r,n)=>e(i,r,n)||t(i,r,n):e:t,autoPanel:(e,t)=>e||t})}}});function NQ(O,e){return O?e?(t,i)=>e(O(t,i),i):O:e}function JQ(O){let e=[];if(O)e:for(let{name:t}of O){for(let i=0;in.toLowerCase()==r.toLowerCase())){e.push(r);continue e}}e.push("")}return e}function e$(O,e,t){var i;let r=t?JQ(e.actions):[];return N("li",{class:"cm-diagnostic cm-diagnostic-"+e.severity},N("span",{class:"cm-diagnosticText"},e.renderMessage?e.renderMessage(O):e.message),(i=e.actions)===null||i===void 0?void 0:i.map((n,s)=>{let a=!1,o=u=>{if(u.preventDefault(),a)return;a=!0;let Q=mi(O.state.field(Fe).diagnostics,e);Q&&n.apply(O,Q.from,Q.to)},{name:l}=n,c=r[s]?l.indexOf(r[s]):-1,h=c<0?l:[l.slice(0,c),N("u",l.slice(c,c+1)),l.slice(c+1)],f=n.markClass?" "+n.markClass:"";return N("button",{type:"button",class:"cm-diagnosticAction"+f,onclick:o,onmousedown:o,"aria-label":` Action: ${l}${c<0?"":` (access key "${r[s]})"`}.`},h)}),e.source&&N("div",{class:"cm-diagnosticSource"},e.source))}var ql=class extends _e{constructor(e){super(),this.sev=e}eq(e){return e.sev==this.sev}toDOM(){return N("span",{class:"cm-lintPoint cm-lintPoint-"+this.sev})}},Ss=class{constructor(e,t){this.diagnostic=t,this.id="item_"+Math.floor(Math.random()*4294967295).toString(16),this.dom=e$(e,t,!0),this.dom.id=this.id,this.dom.setAttribute("role","option")}},Tr=class O{constructor(e){this.view=e,this.items=[];let t=r=>{if(r.keyCode==27)BQ(this.view),this.view.focus();else if(r.keyCode==38||r.keyCode==33)this.moveSelection((this.selectedIndex-1+this.items.length)%this.items.length);else if(r.keyCode==40||r.keyCode==34)this.moveSelection((this.selectedIndex+1)%this.items.length);else if(r.keyCode==36)this.moveSelection(0);else if(r.keyCode==35)this.moveSelection(this.items.length-1);else if(r.keyCode==13)this.view.focus();else if(r.keyCode>=65&&r.keyCode<=90&&this.selectedIndex>=0){let{diagnostic:n}=this.items[this.selectedIndex],s=JQ(n.actions);for(let a=0;a{for(let n=0;nBQ(this.view)},"\xD7")),this.update()}get selectedIndex(){let e=this.view.state.field(Fe).selected;if(!e)return-1;for(let t=0;t{for(let c of l.diagnostics){if(s.has(c))continue;s.add(c);let h=-1,f;for(let u=i;ui&&(this.items.splice(i,h-i),r=!0)),t&&f.diagnostic==t.diagnostic?f.dom.hasAttribute("aria-selected")||(f.dom.setAttribute("aria-selected","true"),n=f):f.dom.hasAttribute("aria-selected")&&f.dom.removeAttribute("aria-selected"),i++}});i({sel:n.dom.getBoundingClientRect(),panel:this.list.getBoundingClientRect()}),write:({sel:a,panel:o})=>{let l=o.height/this.list.offsetHeight;a.topo.bottom&&(this.list.scrollTop+=(a.bottom-o.bottom)/l)}})):this.selectedIndex<0&&this.list.removeAttribute("aria-activedescendant"),r&&this.sync()}sync(){let e=this.list.firstChild;function t(){let i=e;e=i.nextSibling,i.remove()}for(let i of this.items)if(i.dom.parentNode==this.list){for(;e!=i.dom;)t();e=i.dom.nextSibling}else this.list.insertBefore(i.dom,e);for(;e;)t()}moveSelection(e){if(this.selectedIndex<0)return;let t=this.view.state.field(Fe),i=mi(t.diagnostics,this.items[e].diagnostic);i&&this.view.dispatch({selection:{anchor:i.from,head:i.to},scrollIntoView:!0,effects:HQ.of(i)})}static open(e){return new O(e)}};function Q0(O,e='viewBox="0 0 40 40"'){return`url('data:image/svg+xml,${encodeURIComponent(O)}')`}function gs(O){return Q0(``,'width="6" height="3"')}var $0=T.baseTheme({".cm-diagnostic":{padding:"3px 6px 3px 8px",marginLeft:"-1px",display:"block",whiteSpace:"pre-wrap"},".cm-diagnostic-error":{borderLeft:"5px solid #d11"},".cm-diagnostic-warning":{borderLeft:"5px solid orange"},".cm-diagnostic-info":{borderLeft:"5px solid #999"},".cm-diagnostic-hint":{borderLeft:"5px solid #66d"},".cm-diagnosticAction":{font:"inherit",border:"none",padding:"2px 4px",backgroundColor:"#444",color:"white",borderRadius:"3px",marginLeft:"8px",cursor:"pointer"},".cm-diagnosticSource":{fontSize:"70%",opacity:.7},".cm-lintRange":{backgroundPosition:"left bottom",backgroundRepeat:"repeat-x",paddingBottom:"0.7px"},".cm-lintRange-error":{backgroundImage:gs("#d11")},".cm-lintRange-warning":{backgroundImage:gs("orange")},".cm-lintRange-info":{backgroundImage:gs("#999")},".cm-lintRange-hint":{backgroundImage:gs("#66d")},".cm-lintRange-active":{backgroundColor:"#ffdd9980"},".cm-tooltip-lint":{padding:0,margin:0},".cm-lintPoint":{position:"relative","&:after":{content:'""',position:"absolute",bottom:0,left:"-2px",borderLeft:"3px solid transparent",borderRight:"3px solid transparent",borderBottom:"4px solid #d11"}},".cm-lintPoint-warning":{"&:after":{borderBottomColor:"orange"}},".cm-lintPoint-info":{"&:after":{borderBottomColor:"#999"}},".cm-lintPoint-hint":{"&:after":{borderBottomColor:"#66d"}},".cm-panel.cm-panel-lint":{position:"relative","& ul":{maxHeight:"100px",overflowY:"auto","& [aria-selected]":{backgroundColor:"#ddd","& u":{textDecoration:"underline"}},"&:focus [aria-selected]":{background_fallback:"#bdf",backgroundColor:"Highlight",color_fallback:"white",color:"HighlightText"},"& u":{textDecoration:"none"},padding:0,margin:0},"& [name=close]":{position:"absolute",top:"0",right:"2px",background:"inherit",border:"none",font:"inherit",padding:0,margin:0}}});function p0(O){return O=="error"?4:O=="warning"?3:O=="info"?2:1}function m0(O){let e="hint",t=1;for(let i of O){let r=p0(i.severity);r>t&&(t=r,e=i.severity)}return e}var g0=[Fe,T.decorations.compute([Fe],O=>{let{selected:e,panel:t}=O.field(Fe);return!e||!t||e.from==e.to?Y.none:Y.set([c0.range(e.from,e.to)])}),zd(h0,{hideOn:o0}),$0];var t$=[jd(),Cd(),_d(),zu(),mu(),wd(),Yd(),I.allowMultipleSelections.of(!0),cu(),Nn(Pu,{fallback:!0}),bu(),EQ(),IQ(),Vd(),qd(),Rd(),XQ(),Xt.of([...MQ,...uQ,...kQ,...Cu,...Qu,...Vl,...KQ])];var P0="#e5c07b",O$="#e06c75",S0="#56b6c2",X0="#ffffff",Xs="#abb2bf",Wl="#7d8799",T0="#61afef",b0="#98c379",i$="#d19a66",y0="#c678dd",x0="#21252b",r$="#2c313a",n$="#282c34",Ul="#353a42",k0="#3E4451",s$="#528bff";var w0=T.theme({"&":{color:Xs,backgroundColor:n$},".cm-content":{caretColor:s$},".cm-cursor, .cm-dropCursor":{borderLeftColor:s$},"&.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground, .cm-selectionBackground, .cm-content ::selection":{backgroundColor:k0},".cm-panels":{backgroundColor:x0,color:Xs},".cm-panels.cm-panels-top":{borderBottom:"2px solid black"},".cm-panels.cm-panels-bottom":{borderTop:"2px solid black"},".cm-searchMatch":{backgroundColor:"#72a1ff59",outline:"1px solid #457dff"},".cm-searchMatch.cm-searchMatch-selected":{backgroundColor:"#6199ff2f"},".cm-activeLine":{backgroundColor:"#6699ff0b"},".cm-selectionMatch":{backgroundColor:"#aafe661a"},"&.cm-focused .cm-matchingBracket, &.cm-focused .cm-nonmatchingBracket":{backgroundColor:"#bad0f847"},".cm-gutters":{backgroundColor:n$,color:Wl,border:"none"},".cm-activeLineGutter":{backgroundColor:r$},".cm-foldPlaceholder":{backgroundColor:"transparent",border:"none",color:"#ddd"},".cm-tooltip":{border:"none",backgroundColor:Ul},".cm-tooltip .cm-tooltip-arrow:before":{borderTopColor:"transparent",borderBottomColor:"transparent"},".cm-tooltip .cm-tooltip-arrow:after":{borderTopColor:Ul,borderBottomColor:Ul},".cm-tooltip-autocomplete":{"& > ul > li[aria-selected]":{backgroundColor:r$,color:Xs}}},{dark:!0}),Z0=ci.define([{tag:d.keyword,color:y0},{tag:[d.name,d.deleted,d.character,d.propertyName,d.macroName],color:O$},{tag:[d.function(d.variableName),d.labelName],color:T0},{tag:[d.color,d.constant(d.name),d.standard(d.name)],color:i$},{tag:[d.definition(d.name),d.separator],color:Xs},{tag:[d.typeName,d.className,d.number,d.changed,d.annotation,d.modifier,d.self,d.namespace],color:P0},{tag:[d.operator,d.operatorKeyword,d.url,d.escape,d.regexp,d.link,d.special(d.string)],color:S0},{tag:[d.meta,d.comment],color:Wl},{tag:d.strong,fontWeight:"bold"},{tag:d.emphasis,fontStyle:"italic"},{tag:d.strikethrough,textDecoration:"line-through"},{tag:d.link,color:Wl,textDecoration:"underline"},{tag:d.heading,fontWeight:"bold",color:O$},{tag:[d.atom,d.bool,d.special(d.variableName)],color:i$},{tag:[d.processingInstruction,d.string,d.inserted],color:b0},{tag:d.invalid,color:X0}]),a$=[w0,Nn(Z0)];var Gl=class O{constructor(e,t,i,r,n,s,a,o,l,c=0,h){this.p=e,this.stack=t,this.state=i,this.reducePos=r,this.pos=n,this.score=s,this.buffer=a,this.bufferBase=o,this.curContext=l,this.lookAhead=c,this.parent=h}toString(){return`[${this.stack.filter((e,t)=>t%3==0).concat(this.state)}]@${this.pos}${this.score?"!"+this.score:""}`}static start(e,t,i=0){let r=e.parser.context;return new O(e,[],t,i,i,0,[],0,r?new Ts(r,r.start):null,0,null)}get context(){return this.curContext?this.curContext.context:null}pushState(e,t){this.stack.push(this.state,t,this.bufferBase+this.buffer.length),this.state=e}reduce(e){var t;let i=e>>19,r=e&65535,{parser:n}=this.p,s=this.reducePos=2e3&&!(!((t=this.p.parser.nodeSet.types[r])===null||t===void 0)&&t.isAnonymous)&&(l==this.p.lastBigReductionStart?(this.p.bigReductionCount++,this.p.lastBigReductionSize=c):this.p.lastBigReductionSizeo;)this.stack.pop();this.reduceContext(r,l)}storeNode(e,t,i,r=4,n=!1){if(e==0&&(!this.stack.length||this.stack[this.stack.length-1]0&&s.buffer[a-4]==0&&s.buffer[a-1]>-1){if(t==i)return;if(s.buffer[a-2]>=t){s.buffer[a-2]=i;return}}}if(!n||this.pos==i)this.buffer.push(e,t,i,r);else{let s=this.buffer.length;if(s>0&&(this.buffer[s-4]!=0||this.buffer[s-1]<0)){let a=!1;for(let o=s;o>0&&this.buffer[o-2]>i;o-=4)if(this.buffer[o-1]>=0){a=!0;break}if(a)for(;s>0&&this.buffer[s-2]>i;)this.buffer[s]=this.buffer[s-4],this.buffer[s+1]=this.buffer[s-3],this.buffer[s+2]=this.buffer[s-2],this.buffer[s+3]=this.buffer[s-1],s-=4,r>4&&(r-=4)}this.buffer[s]=e,this.buffer[s+1]=t,this.buffer[s+2]=i,this.buffer[s+3]=r}}shift(e,t,i,r){if(e&131072)this.pushState(e&65535,this.pos);else if((e&262144)==0){let n=e,{parser:s}=this.p;(r>this.pos||t<=s.maxNode)&&(this.pos=r,s.stateFlag(n,1)||(this.reducePos=r)),this.pushState(n,i),this.shiftContext(t,i),t<=s.maxNode&&this.buffer.push(t,i,r,4)}else this.pos=r,this.shiftContext(t,i),t<=this.p.parser.maxNode&&this.buffer.push(t,i,r,4)}apply(e,t,i,r){e&65536?this.reduce(e):this.shift(e,t,i,r)}useNode(e,t){let i=this.p.reused.length-1;(i<0||this.p.reused[i]!=e)&&(this.p.reused.push(e),i++);let r=this.pos;this.reducePos=this.pos=r+e.length,this.pushState(t,r),this.buffer.push(i,r,this.reducePos,-1),this.curContext&&this.updateContext(this.curContext.tracker.reuse(this.curContext.context,e,this,this.p.stream.reset(this.pos-e.length)))}split(){let e=this,t=e.buffer.length;for(;t>0&&e.buffer[t-2]>e.reducePos;)t-=4;let i=e.buffer.slice(t),r=e.bufferBase+t;for(;e&&r==e.bufferBase;)e=e.parent;return new O(this.p,this.stack.slice(),this.state,this.reducePos,this.pos,this.score,i,r,this.curContext,this.lookAhead,e)}recoverByDelete(e,t){let i=e<=this.p.parser.maxNode;i&&this.storeNode(e,this.pos,t,4),this.storeNode(0,this.pos,t,i?8:4),this.pos=this.reducePos=t,this.score-=190}canShift(e){for(let t=new El(this);;){let i=this.p.parser.stateSlot(t.state,4)||this.p.parser.hasAction(t.state,e);if(i==0)return!1;if((i&65536)==0)return!0;t.reduce(i)}}recoverByInsert(e){if(this.stack.length>=300)return[];let t=this.p.parser.nextStates(this.state);if(t.length>8||this.stack.length>=120){let r=[];for(let n=0,s;no&1&&a==s)||r.push(t[n],s)}t=r}let i=[];for(let r=0;r>19,r=t&65535,n=this.stack.length-i*3;if(n<0||e.getGoto(this.stack[n],r,!1)<0){let s=this.findForcedReduction();if(s==null)return!1;t=s}this.storeNode(0,this.pos,this.pos,4,!0),this.score-=100}return this.reducePos=this.pos,this.reduce(t),!0}findForcedReduction(){let{parser:e}=this.p,t=[],i=(r,n)=>{if(!t.includes(r))return t.push(r),e.allActions(r,s=>{if(!(s&393216))if(s&65536){let a=(s>>19)-n;if(a>1){let o=s&65535,l=this.stack.length-a*3;if(l>=0&&e.getGoto(this.stack[l],o,!1)>=0)return a<<19|65536|o}}else{let a=i(s,n+1);if(a!=null)return a}})};return i(this.state,0)}forceAll(){for(;!this.p.parser.stateFlag(this.state,2);)if(!this.forceReduce()){this.storeNode(0,this.pos,this.pos,4,!0);break}return this}get deadEnd(){if(this.stack.length!=3)return!1;let{parser:e}=this.p;return e.data[e.stateSlot(this.state,1)]==65535&&!e.stateSlot(this.state,4)}restart(){this.storeNode(0,this.pos,this.pos,4,!0),this.state=this.stack[0],this.stack.length=0}sameState(e){if(this.state!=e.state||this.stack.length!=e.stack.length)return!1;for(let t=0;t0&&this.emitLookAhead()}},Ts=class{constructor(e,t){this.tracker=e,this.context=t,this.hash=e.strict?e.hash(t):0}},El=class{constructor(e){this.start=e,this.state=e.state,this.stack=e.stack,this.base=this.stack.length}reduce(e){let t=e&65535,i=e>>19;i==0?(this.stack==this.start.stack&&(this.stack=this.stack.slice()),this.stack.push(this.state,0,0),this.base+=3):this.base-=(i-1)*3;let r=this.start.p.parser.getGoto(this.stack[this.base-3],t,!0);this.state=r}},Al=class O{constructor(e,t,i){this.stack=e,this.pos=t,this.index=i,this.buffer=e.buffer,this.index==0&&this.maybeNext()}static create(e,t=e.bufferBase+e.buffer.length){return new O(e,t,t-e.bufferBase)}maybeNext(){let e=this.stack.parent;e!=null&&(this.index=this.stack.bufferBase-e.bufferBase,this.stack=e,this.buffer=e.buffer)}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}next(){this.index-=4,this.pos-=4,this.index==0&&this.maybeNext()}fork(){return new O(this.stack,this.pos,this.index)}};function br(O,e=Uint16Array){if(typeof O!="string")return O;let t=null;for(let i=0,r=0;i=92&&s--,s>=34&&s--;let o=s-32;if(o>=46&&(o-=46,a=!0),n+=o,a)break;n*=46}t?t[r++]=n:t=new e(n)}return t}var gi=class{constructor(){this.start=-1,this.value=-1,this.end=-1,this.extended=-1,this.lookAhead=0,this.mask=0,this.context=0}},o$=new gi,Ll=class{constructor(e,t){this.input=e,this.ranges=t,this.chunk="",this.chunkOff=0,this.chunk2="",this.chunk2Pos=0,this.next=-1,this.token=o$,this.rangeIndex=0,this.pos=this.chunkPos=t[0].from,this.range=t[0],this.end=t[t.length-1].to,this.readNext()}resolveOffset(e,t){let i=this.range,r=this.rangeIndex,n=this.pos+e;for(;ni.to:n>=i.to;){if(r==this.ranges.length-1)return null;let s=this.ranges[++r];n+=s.from-i.to,i=s}return n}clipPos(e){if(e>=this.range.from&&ee)return Math.max(e,t.from);return this.end}peek(e){let t=this.chunkOff+e,i,r;if(t>=0&&t=this.chunk2Pos&&ia.to&&(this.chunk2=this.chunk2.slice(0,a.to-i)),r=this.chunk2.charCodeAt(0)}}return i>=this.token.lookAhead&&(this.token.lookAhead=i+1),r}acceptToken(e,t=0){let i=t?this.resolveOffset(t,-1):this.pos;if(i==null||i=this.chunk2Pos&&this.posthis.range.to?e.slice(0,this.range.to-this.pos):e,this.chunkPos=this.pos,this.chunkOff=0}}readNext(){return this.chunkOff>=this.chunk.length&&(this.getChunk(),this.chunkOff==this.chunk.length)?this.next=-1:this.next=this.chunk.charCodeAt(this.chunkOff)}advance(e=1){for(this.chunkOff+=e;this.pos+e>=this.range.to;){if(this.rangeIndex==this.ranges.length-1)return this.setDone();e-=this.range.to-this.pos,this.range=this.ranges[++this.rangeIndex],this.pos=this.range.from}return this.pos+=e,this.pos>=this.token.lookAhead&&(this.token.lookAhead=this.pos+1),this.readNext()}setDone(){return this.pos=this.chunkPos=this.end,this.range=this.ranges[this.rangeIndex=this.ranges.length-1],this.chunk="",this.next=-1}reset(e,t){if(t?(this.token=t,t.start=e,t.lookAhead=e+1,t.value=t.extended=-1):this.token=o$,this.pos!=e){if(this.pos=e,e==this.end)return this.setDone(),this;for(;e=this.range.to;)this.range=this.ranges[++this.rangeIndex];e>=this.chunkPos&&e=this.chunkPos&&t<=this.chunkPos+this.chunk.length)return this.chunk.slice(e-this.chunkPos,t-this.chunkPos);if(e>=this.chunk2Pos&&t<=this.chunk2Pos+this.chunk2.length)return this.chunk2.slice(e-this.chunk2Pos,t-this.chunk2Pos);if(e>=this.range.from&&t<=this.range.to)return this.input.read(e,t);let i="";for(let r of this.ranges){if(r.from>=t)break;r.to>e&&(i+=this.input.read(Math.max(r.from,e),Math.min(r.to,t)))}return i}},hO=class{constructor(e,t){this.data=e,this.id=t}token(e,t){let{parser:i}=t.p;d$(this.data,e,t,this.id,i.data,i.tokenPrecTable)}};hO.prototype.contextual=hO.prototype.fallback=hO.prototype.extend=!1;var kt=class{constructor(e,t,i){this.precTable=t,this.elseToken=i,this.data=typeof e=="string"?br(e):e}token(e,t){let i=e.pos,r=0;for(;;){let n=e.next<0,s=e.resolveOffset(1,1);if(d$(this.data,e,t,0,this.data,this.precTable),e.token.value>-1)break;if(this.elseToken==null)return;if(n||r++,s==null)break;e.reset(s,e.token)}r&&(e.reset(i,e.token),e.acceptToken(this.elseToken,r))}};kt.prototype.contextual=hO.prototype.fallback=hO.prototype.extend=!1;var z=class{constructor(e,t={}){this.token=e,this.contextual=!!t.contextual,this.fallback=!!t.fallback,this.extend=!!t.extend}};function d$(O,e,t,i,r,n){let s=0,a=1<0){let Q=O[u];if(o.allows(Q)&&(e.token.value==-1||e.token.value==Q||Y0(Q,e.token.value,r,n))){e.acceptToken(Q);break}}let c=e.next,h=0,f=O[s+2];if(e.next<0&&f>h&&O[l+f*3-3]==65535){s=O[l+f*3-1];continue e}for(;h>1,Q=l+u+(u<<1),$=O[Q],p=O[Q+1]||65536;if(c<$)f=u;else if(c>=p)h=u+1;else{s=O[Q+2],e.advance();continue e}}break}}function l$(O,e,t){for(let i=e,r;(r=O[i])!=65535;i++)if(r==t)return i-e;return-1}function Y0(O,e,t,i){let r=l$(t,i,e);return r<0||l$(t,i,O)e)&&!i.type.isError)return t<0?Math.max(0,Math.min(i.to-1,e-25)):Math.min(O.length,Math.max(i.from+1,e+25));if(t<0?i.prevSibling():i.nextSibling())break;if(!i.parent())return t<0?0:O.length}}var Ml=class{constructor(e,t){this.fragments=e,this.nodeSet=t,this.i=0,this.fragment=null,this.safeFrom=-1,this.safeTo=-1,this.trees=[],this.start=[],this.index=[],this.nextFragment()}nextFragment(){let e=this.fragment=this.i==this.fragments.length?null:this.fragments[this.i++];if(e){for(this.safeFrom=e.openStart?c$(e.tree,e.from+e.offset,1)-e.offset:e.from,this.safeTo=e.openEnd?c$(e.tree,e.to+e.offset,-1)-e.offset:e.to;this.trees.length;)this.trees.pop(),this.start.pop(),this.index.pop();this.trees.push(e.tree),this.start.push(-e.offset),this.index.push(0),this.nextStart=this.safeFrom}else this.nextStart=1e9}nodeAt(e){if(ee)return this.nextStart=s,null;if(n instanceof D){if(s==e){if(s=Math.max(this.safeFrom,e)&&(this.trees.push(n),this.start.push(s),this.index.push(0))}else this.index[t]++,this.nextStart=s+n.length}}},Dl=class{constructor(e,t){this.stream=t,this.tokens=[],this.mainToken=null,this.actions=[],this.tokens=e.tokenizers.map(i=>new gi)}getActions(e){let t=0,i=null,{parser:r}=e.p,{tokenizers:n}=r,s=r.stateSlot(e.state,3),a=e.curContext?e.curContext.hash:0,o=0;for(let l=0;lh.end+25&&(o=Math.max(h.lookAhead,o)),h.value!=0)){let f=t;if(h.extended>-1&&(t=this.addActions(e,h.extended,h.end,t)),t=this.addActions(e,h.value,h.end,t),!c.extend&&(i=h,t>f))break}}for(;this.actions.length>t;)this.actions.pop();return o&&e.setLookAhead(o),!i&&e.pos==this.stream.end&&(i=new gi,i.value=e.p.parser.eofTerm,i.start=i.end=e.pos,t=this.addActions(e,i.value,i.end,t)),this.mainToken=i,this.actions}getMainToken(e){if(this.mainToken)return this.mainToken;let t=new gi,{pos:i,p:r}=e;return t.start=i,t.end=Math.min(i+1,r.stream.end),t.value=i==r.stream.end?r.parser.eofTerm:0,t}updateCachedToken(e,t,i){let r=this.stream.clipPos(i.pos);if(t.token(this.stream.reset(r,e),i),e.value>-1){let{parser:n}=i.p;for(let s=0;s=0&&i.p.parser.dialect.allows(a>>1)){(a&1)==0?e.value=a>>1:e.extended=a>>1;break}}}else e.value=0,e.end=this.stream.clipPos(r+1)}putAction(e,t,i,r){for(let n=0;ne.bufferLength*4?new Ml(i,e.nodeSet):null}get parsedPos(){return this.minStackPos}advance(){let e=this.stacks,t=this.minStackPos,i=this.stacks=[],r,n;if(this.bigReductionCount>300&&e.length==1){let[s]=e;for(;s.forceReduce()&&s.stack.length&&s.stack[s.stack.length-2]>=this.lastBigReductionStart;);this.bigReductionCount=this.lastBigReductionSize=0}for(let s=0;st)i.push(a);else{if(this.advanceStack(a,i,e))continue;{r||(r=[],n=[]),r.push(a);let o=this.tokens.getMainToken(a);n.push(o.value,o.end)}}break}}if(!i.length){let s=r&&_0(r);if(s)return He&&console.log("Finish with "+this.stackID(s)),this.stackToTree(s);if(this.parser.strict)throw He&&r&&console.log("Stuck with token "+(this.tokens.mainToken?this.parser.getName(this.tokens.mainToken.value):"none")),new SyntaxError("No parse at "+t);this.recovering||(this.recovering=5)}if(this.recovering&&r){let s=this.stoppedAt!=null&&r[0].pos>this.stoppedAt?r[0]:this.runRecovery(r,n,i);if(s)return He&&console.log("Force-finish "+this.stackID(s)),this.stackToTree(s.forceAll())}if(this.recovering){let s=this.recovering==1?1:this.recovering*3;if(i.length>s)for(i.sort((a,o)=>o.score-a.score);i.length>s;)i.pop();i.some(a=>a.reducePos>t)&&this.recovering--}else if(i.length>1){e:for(let s=0;s500&&l.buffer.length>500)if((a.score-l.score||a.buffer.length-l.buffer.length)>0)i.splice(o--,1);else{i.splice(s--,1);continue e}}}i.length>12&&(i.sort((s,a)=>a.score-s.score),i.splice(12,i.length-12))}this.minStackPos=i[0].pos;for(let s=1;s ":"";if(this.stoppedAt!=null&&r>this.stoppedAt)return e.forceReduce()?e:null;if(this.fragments){let l=e.curContext&&e.curContext.tracker.strict,c=l?e.curContext.hash:0;for(let h=this.fragments.nodeAt(r);h;){let f=this.parser.nodeSet.types[h.type.id]==h.type?n.getGoto(e.state,h.type.id):-1;if(f>-1&&h.length&&(!l||(h.prop(R.contextHash)||0)==c))return e.useNode(h,f),He&&console.log(s+this.stackID(e)+` (via reuse of ${n.getName(h.type.id)})`),!0;if(!(h instanceof D)||h.children.length==0||h.positions[0]>0)break;let u=h.children[0];if(u instanceof D&&h.positions[0]==0)h=u;else break}}let a=n.stateSlot(e.state,4);if(a>0)return e.reduce(a),He&&console.log(s+this.stackID(e)+` (via always-reduce ${n.getName(a&65535)})`),!0;if(e.stack.length>=8400)for(;e.stack.length>6e3&&e.forceReduce(););let o=this.tokens.getActions(e);for(let l=0;lr?t.push(Q):i.push(Q)}return!1}advanceFully(e,t){let i=e.pos;for(;;){if(!this.advanceStack(e,null,null))return!1;if(e.pos>i)return h$(e,t),!0}}runRecovery(e,t,i){let r=null,n=!1;for(let s=0;s ":"";if(a.deadEnd&&(n||(n=!0,a.restart(),He&&console.log(c+this.stackID(a)+" (restarted)"),this.advanceFully(a,i))))continue;let h=a.split(),f=c;for(let u=0;u<10&&h.forceReduce()&&(He&&console.log(f+this.stackID(h)+" (via force-reduce)"),!this.advanceFully(h,i));u++)He&&(f=this.stackID(h)+" -> ");for(let u of a.recoverByInsert(o))He&&console.log(c+this.stackID(u)+" (via recover-insert)"),this.advanceFully(u,i);this.stream.end>a.pos?(l==a.pos&&(l++,o=0),a.recoverByDelete(o,l),He&&console.log(c+this.stackID(a)+` (via recover-delete ${this.parser.getName(o)})`),h$(a,i)):(!r||r.scoreO,Ge=class{constructor(e){this.start=e.start,this.shift=e.shift||Cl,this.reduce=e.reduce||Cl,this.reuse=e.reuse||Cl,this.hash=e.hash||(()=>0),this.strict=e.strict!==!1}},Oe=class O extends eO{constructor(e){if(super(),this.wrappers=[],e.version!=14)throw new RangeError(`Parser version (${e.version}) doesn't match runtime version (14)`);let t=e.nodeNames.split(" ");this.minRepeatTerm=t.length;for(let a=0;ae.topRules[a][1]),r=[];for(let a=0;a=0)n(c,o,a[l++]);else{let h=a[l+-c];for(let f=-c;f>0;f--)n(a[l++],o,h);l++}}}this.nodeSet=new Kt(t.map((a,o)=>ue.define({name:o>=this.minRepeatTerm?void 0:a,id:o,props:r[o],top:i.indexOf(o)>-1,error:o==0,skipped:e.skippedNodes&&e.skippedNodes.indexOf(o)>-1}))),e.propSources&&(this.nodeSet=this.nodeSet.extend(...e.propSources)),this.strict=!1,this.bufferLength=1024;let s=br(e.tokenData);this.context=e.context,this.specializerSpecs=e.specialized||[],this.specialized=new Uint16Array(this.specializerSpecs.length);for(let a=0;atypeof a=="number"?new hO(s,a):a),this.topRules=e.topRules,this.dialects=e.dialects||{},this.dynamicPrecedences=e.dynamicPrecedences||null,this.tokenPrecTable=e.tokenPrec,this.termNames=e.termNames||null,this.maxNode=this.nodeSet.types.length-1,this.dialect=this.parseDialect(),this.top=this.topRules[Object.keys(this.topRules)[0]]}createParse(e,t,i){let r=new Il(this,e,t,i);for(let n of this.wrappers)r=n(r,e,t,i);return r}getGoto(e,t,i=!1){let r=this.goto;if(t>=r[0])return-1;for(let n=r[t+1];;){let s=r[n++],a=s&1,o=r[n++];if(a&&i)return o;for(let l=n+(s>>1);n0}validAction(e,t){return!!this.allActions(e,i=>i==t?!0:null)}allActions(e,t){let i=this.stateSlot(e,4),r=i?t(i):void 0;for(let n=this.stateSlot(e,1);r==null;n+=3){if(this.data[n]==65535)if(this.data[n+1]==1)n=Ut(this.data,n+2);else break;r=t(Ut(this.data,n+1))}return r}nextStates(e){let t=[];for(let i=this.stateSlot(e,1);;i+=3){if(this.data[i]==65535)if(this.data[i+1]==1)i=Ut(this.data,i+2);else break;if((this.data[i+2]&1)==0){let r=this.data[i+1];t.some((n,s)=>s&1&&n==r)||t.push(this.data[i],r)}}return t}configure(e){let t=Object.assign(Object.create(O.prototype),this);if(e.props&&(t.nodeSet=this.nodeSet.extend(...e.props)),e.top){let i=this.topRules[e.top];if(!i)throw new RangeError(`Invalid top rule name ${e.top}`);t.top=i}return e.tokenizers&&(t.tokenizers=this.tokenizers.map(i=>{let r=e.tokenizers.find(n=>n.from==i);return r?r.to:i})),e.specializers&&(t.specializers=this.specializers.slice(),t.specializerSpecs=this.specializerSpecs.map((i,r)=>{let n=e.specializers.find(a=>a.from==i.external);if(!n)return i;let s=Object.assign(Object.assign({},i),{external:n.to});return t.specializers[r]=f$(s),s})),e.contextTracker&&(t.context=e.contextTracker),e.dialect&&(t.dialect=this.parseDialect(e.dialect)),e.strict!=null&&(t.strict=e.strict),e.wrap&&(t.wrappers=t.wrappers.concat(e.wrap)),e.bufferLength!=null&&(t.bufferLength=e.bufferLength),t}hasWrappers(){return this.wrappers.length>0}getName(e){return this.termNames?this.termNames[e]:String(e<=this.maxNode&&this.nodeSet.types[e].name||e)}get eofTerm(){return this.maxNode+1}get topNode(){return this.nodeSet.types[this.top[1]]}dynamicPrecedence(e){let t=this.dynamicPrecedences;return t==null?0:t[e]||0}parseDialect(e){let t=Object.keys(this.dialects),i=t.map(()=>!1);if(e)for(let n of e.split(" ")){let s=t.indexOf(n);s>=0&&(i[s]=!0)}let r=null;for(let n=0;ni)&&t.p.parser.stateFlag(t.state,2)&&(!e||e.scoreO.external(t,i)<<1|e}return O.get}var u$=1,R0=2,V0=3,q0=82,z0=76,U0=117,W0=85,j0=97,C0=122,G0=65,E0=90,A0=95,Nl=48,Q$=34,L0=40,$$=41,M0=32,p$=62,D0=new z(O=>{if(O.next==z0||O.next==W0?O.advance():O.next==U0&&(O.advance(),O.next==Nl+8&&O.advance()),O.next!=q0||(O.advance(),O.next!=Q$))return;O.advance();let e="";for(;O.next!=L0;){if(O.next==M0||O.next<=13||O.next==$$)return;e+=String.fromCharCode(O.next),O.advance()}for(O.advance();;){if(O.next<0)return O.acceptToken(u$);if(O.next==$$){let t=!0;for(let i=0;t&&i{if(O.next==p$)O.peek(1)==p$&&O.acceptToken(R0,1);else{let e=!1,t=0;for(;;t++){if(O.next>=G0&&O.next<=E0)e=!0;else{if(O.next>=j0&&O.next<=C0)return;if(O.next!=A0&&!(O.next>=Nl&&O.next<=Nl+9))break}O.advance()}e&&t>1&&O.acceptToken(V0)}},{extend:!0}),B0=F({"typedef struct union enum class typename decltype auto template operator friend noexcept namespace using requires concept import export module __attribute__ __declspec __based":d.definitionKeyword,"extern MsCallModifier MsPointerModifier extern static register thread_local inline const volatile restrict _Atomic mutable constexpr constinit consteval virtual explicit VirtualSpecifier Access":d.modifier,"if else switch for while do case default return break continue goto throw try catch":d.controlKeyword,"co_return co_yield co_await":d.controlKeyword,"new sizeof delete static_assert":d.operatorKeyword,"NULL nullptr":d.null,this:d.self,"True False":d.bool,"TypeSize PrimitiveType":d.standard(d.typeName),TypeIdentifier:d.typeName,FieldIdentifier:d.propertyName,"CallExpression/FieldExpression/FieldIdentifier":d.function(d.propertyName),"ModuleName/Identifier":d.namespace,PartitionName:d.labelName,StatementIdentifier:d.labelName,"Identifier DestructorName":d.variableName,"CallExpression/Identifier":d.function(d.variableName),"CallExpression/ScopedIdentifier/Identifier":d.function(d.variableName),"FunctionDeclarator/Identifier FunctionDeclarator/DestructorName":d.function(d.definition(d.variableName)),NamespaceIdentifier:d.namespace,OperatorName:d.operator,ArithOp:d.arithmeticOperator,LogicOp:d.logicOperator,BitOp:d.bitwiseOperator,CompareOp:d.compareOperator,AssignOp:d.definitionOperator,UpdateOp:d.updateOperator,LineComment:d.lineComment,BlockComment:d.blockComment,Number:d.number,String:d.string,"RawString SystemLibString":d.special(d.string),CharLiteral:d.character,EscapeSequence:d.escape,"UserDefinedLiteral/Identifier":d.literal,PreProcArg:d.meta,"PreprocDirectiveName #include #ifdef #ifndef #if #define #else #endif #elif":d.processingInstruction,MacroName:d.special(d.name),"( )":d.paren,"[ ]":d.squareBracket,"{ }":d.brace,"< >":d.angleBracket,". ->":d.derefOperator,", ;":d.separator}),N0={__proto__:null,bool:36,char:36,int:36,float:36,double:36,void:36,size_t:36,ssize_t:36,intptr_t:36,uintptr_t:36,charptr_t:36,int8_t:36,int16_t:36,int32_t:36,int64_t:36,uint8_t:36,uint16_t:36,uint32_t:36,uint64_t:36,char8_t:36,char16_t:36,char32_t:36,char64_t:36,const:70,volatile:72,restrict:74,_Atomic:76,mutable:78,constexpr:80,constinit:82,consteval:84,struct:88,__declspec:92,final:148,override:148,public:152,private:152,protected:152,virtual:154,extern:160,static:162,register:164,inline:166,thread_local:168,__attribute__:172,__based:178,__restrict:180,__uptr:180,__sptr:180,_unaligned:180,__unaligned:180,noexcept:194,requires:198,TRUE:786,true:786,FALSE:788,false:788,typename:218,class:220,template:234,throw:248,__cdecl:256,__clrcall:256,__stdcall:256,__fastcall:256,__thiscall:256,__vectorcall:256,try:260,catch:264,export:282,import:286,case:296,default:298,if:308,else:314,switch:318,do:322,while:324,for:330,return:334,break:338,continue:342,goto:346,co_return:350,co_yield:354,using:362,typedef:366,namespace:380,new:398,delete:400,co_await:402,concept:406,enum:410,static_assert:414,friend:422,union:424,explicit:430,operator:444,module:456,signed:518,unsigned:518,long:518,short:518,decltype:528,auto:530,sizeof:566,NULL:572,nullptr:586,this:588},F0={__proto__:null,"<":755},H0={__proto__:null,">":135},K0={__proto__:null,operator:388,new:576,delete:582},m$=Oe.deserialize({version:14,states:"$;SQ!QQVOOP'gOUOOO(XOWO'#CdO,RQUO'#CgO,]QUO'#FjO-sQbO'#CxO.UQUO'#CxO0TQUO'#KZO0[QUO'#CwO0gOpO'#DvO0oQ!dO'#D]OOQR'#JO'#JOO5XQVO'#GUO5fQUO'#JVOOQQ'#JV'#JVO8zQUO'#KnO{QVO'#E^O?]QUO'#E^OOQQ'#Ed'#EdOOQQ'#Ee'#EeO?bQVO'#EfO@XQVO'#EiOBUQUO'#FPOBvQUO'#FhOOQR'#Fj'#FjOB{QUO'#FjOOQR'#LR'#LROOQR'#LQ'#LQOETQVO'#KQOFxQUO'#LWOGVQUO'#KrOGkQUO'#LWOH]QUO'#LYOOQR'#HU'#HUOOQR'#HV'#HVOOQR'#HW'#HWOOQR'#K}'#K}OOQR'#J_'#J_Q!QQVOOOHkQVO'#FOOIWQUO'#EhOI_QUOOOKZQVO'#HgOKkQUO'#HgONVQUO'#KrONaQUO'#KrOOQQ'#Kr'#KrO!!_QUO'#KrOOQQ'#Jq'#JqO!!lQUO'#HxOOQQ'#KZ'#KZO!&^QUO'#KZO!&zQUO'#KQO!(zQVO'#I]O!(zQVO'#I`OCQQUO'#KQOOQQ'#Ip'#IpOOQQ'#KQ'#KQO!,}QUO'#KZOOQR'#KY'#KYO!-UQUO'#DZO!/mQUO'#KoOOQQ'#Ko'#KoO!/tQUO'#KoO!/{QUO'#ETO!0QQUO'#EWO!0VQUO'#FRO8zQUO'#FPO!QQVO'#F^O!0[Q#vO'#F`O!0gQUO'#FkO!0oQUO'#FpO!0tQVO'#FrO!0oQUO'#FuO!3sQUO'#FvO!3xQVO'#FxO!4SQUO'#FzO!4XQUO'#F|O!4^QUO'#GOO!4cQVO'#GQO!(zQVO'#GSO!4jQUO'#GpO!4xQUO'#GYO!(zQVO'#FeO!6VQUO'#FeO!6[QVO'#G`O!6cQUO'#GaO!6nQUO'#GnO!6sQUO'#GrO!6xQUO'#GzO!7jQ&lO'#HiO!:mQUO'#GuO!:}QUO'#HXO!;YQUO'#HZO!;bQUO'#DXO!;bQUO'#HuO!;bQUO'#HvO!;yQUO'#HwO!<[QUO'#H|O!=PQUO'#H}O!>uQVO'#IbO!(zQVO'#IdO!?PQUO'#IgO!?WQVO'#IjP!@}{,UO'#CbP!6n{,UO'#CbP!AY{7[O'#CbP!6n{,UO'#CbP!A_{,UO'#CbP!AjOSO'#IzPOOO)CEn)CEnOOOO'#I|'#I|O!AtOWO,59OOOQR,59O,59OO!(zQVO,59VOOQQ,59X,59XOOQR'#Do'#DoO!(zQVO,5;ROOQR,5qOOQR'#IX'#IXOOQR'#IY'#IYOOQR'#IZ'#IZOOQR'#I['#I[O!(zQVO,5>rO!(zQVO,5>rO!(zQVO,5>rO!(zQVO,5>rO!(zQVO,5>rO!(zQVO,5>rO!(zQVO,5>rO!(zQVO,5>rO!(zQVO,5>rO!(zQVO,5>rO!DOQVO,5>zOOQQ,5?W,5?WO!EqQVO'#CjO!IjQUO'#CzOOQQ,59d,59dOOQQ,59c,59cOOQQ,5<},5<}O!IwQ&lO,5=mO!?PQUO,5?RO!LkQVO,5?UO!LrQbO,59dO!L}QVO'#FYOOQQ,5?P,5?PO!M_QVO,59WO!MfO`O,5:bO!MkQbO'#D^O!M|QbO'#K_O!N[QbO,59wO!NdQbO'#CxO!NuQUO'#CxO!NzQUO'#KZO# UQUO'#CwOOQR-E<|-E<|O# aQUO,5ApO# hQVO'#EfO@XQVO'#EiOBUQUO,5;kOOQR,5l,5>lO#3gQUO'#CgO#4]QUO,5>pO#6OQUO'#IeOOQR'#I}'#I}O#6WQUO,5:xO#6tQUO,5:xO#7eQUO,5:xO#8YQUO'#CuO!0QQUO'#CmOOQQ'#JW'#JWO#6tQUO,5:xO#8bQUO,5;QO!4xQUO'#DOO#9kQUO,5;QO#9pQUO,5>QO#:|QUO'#DOO#;dQUO,5>{O#;iQUO'#KxO#}QUO'#L]O#?UQUO,5>UO#?ZQbO'#CxO#?fQUO'#GcO#?kQUO'#E^O#@[QUO,5;kO#@sQUO'#LOO#@{QUO,5;rOKkQUO'#HfOBUQUO'#HgO#AQQUO'#KrO!6nQUO'#HjO#AxQUO'#CuO!0tQVO,5PO$(WQUO'#E[O$(eQUO,5>ROOQQ,5>S,5>SO$,RQVO'#C|OOQQ-E=o-E=oOOQQ,5>d,5>dOOQQ,59a,59aO$,]QUO,5>wO$.]QUO,5>zO!6nQUO,59uO$.pQUO,5;qO$.}QUO,5<{O!0QQUO,5:oOOQQ,5:r,5:rO$/YQUO,5;mO$/_QUO'#KnOBUQUO,5;kOOQR,5;x,5;xO$0OQUO'#FbO$0^QUO'#FbO$0cQUO,5;zO$3|QVO'#FmO!0tQVO,5eQUO,5pQUO,5=[O$>uQUO,5=[O!4xQUO,5}QUO,5uQUO,5<{O$DQQUO,5<{O$D]QUO,5=YO!(zQVO,5=^O!(zQVO,5=fO#NeQUO,5=mOOQQ,5>T,5>TO$FbQUO,5>TO$FlQUO,5>TO$FqQUO,5>TO$FvQUO,5>TO!6nQUO,5>TO$HtQUO'#KZO$H{QUO,5=oO$IWQUO,5=aOKkQUO,5=oO$JQQUO,5=sOOQR,5=s,5=sO$JYQUO,5=sO$LeQVO'#H[OOQQ,5=u,5=uO!;]QUO,5=uO%#`QUO'#KkO%#gQUO'#K[O%#{QUO'#KkO%$VQUO'#DyO%$hQUO'#D|O%'eQUO'#K[OOQQ'#K['#K[O%)WQUO'#K[O%#gQUO'#K[O%)]QUO'#K[OOQQ,59s,59sOOQQ,5>a,5>aOOQQ,5>b,5>bO%)eQUO'#HzO%)mQUO,5>cOOQQ,5>c,5>cO%-XQUO,5>cO%-dQUO,5>hO%1OQVO,5>iO%1VQUO,5>|O# hQVO'#EfO%4]QUO,5>|OOQQ,5>|,5>|O%4|QUO,5?OO%7QQUO,5?RO!<[QUO,5?RO%8|QUO,5?UO%sQUO1G0mOOQQ1G0m1G0mO%@PQUO'#CpO%B`QbO'#CxO%BkQUO'#CsO%BpQUO'#CsO%BuQUO1G.uO#AxQUO'#CrOOQQ1G.u1G.uO%DxQUO1G4]O%FOQUO1G4^O%GqQUO1G4^O%IdQUO1G4^O%KVQUO1G4^O%LxQUO1G4^O%NkQUO1G4^O&!^QUO1G4^O&$PQUO1G4^O&%rQUO1G4^O&'eQUO1G4^O&)WQUO1G4^O&*yQUO'#KPO&,SQUO'#KPO&,[QUO,59UOOQQ,5=P,5=PO&.dQUO,5=PO&.nQUO,5=PO&.sQUO,5=PO&.xQUO,5=PO!6nQUO,5=PO#NeQUO1G3XO&/SQUO1G4mO!<[QUO1G4mO&1OQUO1G4pO&2qQVO1G4pOOQQ1G/O1G/OOOQQ1G.}1G.}OOQQ1G2i1G2iO!IwQ&lO1G3XO&2xQUO'#LPO@XQVO'#EiO&4RQUO'#F]OOQQ'#Ja'#JaO&4WQUO'#FZO&4cQUO'#LPO&4kQUO,5;tO&4pQUO1G.rOOQQ1G.r1G.rOOQR1G/|1G/|O&6cQ!dO'#JPO&6hQbO,59xO&8yQ!eO'#D`O&9QQ!dO'#JRO&9VQbO,5@yO&9VQbO,5@yOOQR1G/c1G/cO&9bQbO1G/cO&9gQ&lO'#GeO&:eQbO,59dOOQR1G7[1G7[O#@[QUO1G1VO&:pQUO1G1^OBUQUO1G1VO&=RQUO'#CzO#*wQbO,59dO&@tQUO1G6tOOQR-E<{-E<{O&BWQUO1G0dO#6WQUO1G0dOOQQ-E=U-E=UO#6tQUO1G0dOOQQ1G0l1G0lO&B{QUO,59jOOQQ1G3l1G3lO&CcQUO,59jO&CyQUO,59jO!M_QVO1G4gO!(zQVO'#JYO&DeQUO,5AdOOQQ1G0o1G0oO!(zQVO1G0oO!6nQUO'#JnO&DmQUO,5AwOOQQ1G3p1G3pOOQR1G1V1G1VO&HjQVO'#FOO!M_QVO,5;sOOQQ,5;s,5;sOBUQUO'#JcO&JfQUO,5AjO&JnQVO'#E[OOQR1G1^1G1^O&M]QUO'#L]OOQR1G1n1G1nOOQR-E=f-E=fOOQR1G7^1G7^O#DhQUO1G7^OGVQUO1G7^O#DhQUO1G7`OOQR1G7`1G7`O&MeQUO'#G}O&MmQUO'#LXOOQQ,5=h,5=hO&M{QUO,5=jO&NQQUO,5=kOOQR1G7a1G7aO#EfQVO1G7aO&NVQUO1G7aO' ]QVO,5=kOOQR1G1U1G1UO$.vQUO'#E]O'!RQUO'#E]OOQQ'#Kz'#KzO'!lQUO'#KyO'!wQUO,5;UO'#PQUO'#ElO'#dQUO'#ElO'#wQUO'#EtOOQQ'#J['#J[O'#|QUO,5;cO'$sQUO,5;cO'%nQUO,5;dO'&tQVO,5;dOOQQ,5;d,5;dO''OQVO,5;dO'&tQVO,5;dO''VQUO,5;bO'(SQUO,5;eO'(_QUO'#KqO'(gQUO,5:vO'(lQUO,5;fOOQQ1G0n1G0nOOQQ'#J]'#J]O''VQUO,5;bO!4xQUO'#E}OOQQ,5;b,5;bO')gQUO'#E`O'+aQUO'#E{OHrQUO1G0nO'+fQUO'#EbOOQQ'#JX'#JXO'-OQUO'#KsOOQQ'#Ks'#KsO'-xQUO1G0eO'.pQUO1G3kO'/vQVO1G3kOOQQ1G3k1G3kO'0QQVO1G3kO'0XQUO'#L`O'1eQUO'#KXO'1sQUO'#KWO'2OQUO,59hO'2WQUO1G/aO'2]QUO'#FPOOQR1G1]1G1]OOQR1G2g1G2gO$>uQUO1G2gO'2gQUO1G2gO'2rQUO1G0ZOOQR'#J`'#J`O'2wQVO1G1XO'8pQUO'#FTO'8uQUO1G1VO!6nQUO'#JdO'9TQUO,5;|O$0^QUO,5;|OOQQ'#Fc'#FcOOQQ,5;|,5;|O'9cQUO1G1fOOQR1G1f1G1fO'9kQUO,5}QUO1G2`OOQQ'#Cv'#CvO'CzQUO'#G[O'DuQUO'#G[O'DzQUO'#LSO'EYQUO'#G_OOQQ'#LT'#LTO'EhQUO1G2`O'EmQVO1G1kO'HOQVO'#GUOBUQUO'#FWOOQR'#Je'#JeO'EmQVO1G1kO'HYQUO'#FvOOQR1G2f1G2fO'H_QUO1G2gO'HdQUO'#JgO'2gQUO1G2gO!(zQVO1G2tO'HlQUO1G2xO'IuQUO1G3QO'J{QUO1G3XOOQQ1G3o1G3oO'KaQUO1G3oOOQR1G3Z1G3ZO'KfQUO'#KZO'2]QUO'#LUOGkQUO'#LWOOQR'#Gy'#GyO#DhQUO'#LYOOQR'#HQ'#HQO'KpQUO'#GvO'#wQUO'#GuOOQR1G2{1G2{O'LmQUO1G2{O'MdQUO1G3ZO'MoQUO1G3_O'MtQUO1G3_OOQR1G3_1G3_O'M|QUO'#H]OOQR'#H]'#H]O( VQUO'#H]O!(zQVO'#H`O!(zQVO'#H_OOQR'#L['#L[O( [QUO'#L[OOQR'#Jk'#JkO( aQVO,5=vOOQQ,5=v,5=vO( hQUO'#H^O( pQUO'#HZOOQQ1G3a1G3aO( zQUO,5@vOOQQ,5@v,5@vO%)WQUO,5@vO%)]QUO,5@vO%$VQUO,5:eO(%iQUO'#KlO(%wQUO'#KlOOQQ,5:e,5:eOOQQ'#JS'#JSO(&SQUO'#D}O(&^QUO'#KrOGkQUO'#LWO('YQUO'#D}OOQQ'#Hp'#HpOOQQ'#Hr'#HrOOQQ'#Hs'#HsOOQQ'#Km'#KmOOQQ'#JU'#JUO('dQUO,5:hOOQQ,5:h,5:hO((aQUO'#LWO((nQUO'#HtO()UQUO,5@vO()]QUO'#H{O()hQUO'#L_O()pQUO,5>fO()uQUO'#L^OOQQ1G3}1G3}O(-lQUO1G3}O(-sQUO1G3}O(-zQUO1G4TO(/QQUO1G4TO(/VQUO,5A}O!6nQUO1G4hO!(zQVO'#IiOOQQ1G4m1G4mO(/[QUO1G4mO(1_QVO1G4pPOOO1G.h1G.hP!A_{,UO1G.hP(3_QUO'#LfP(3j{,UO1G.hP(3o{7[O1G.hPO{O-E=s-E=sPOOO,5BO,5BOP(3w{,UO,5BOPOOO1G5Q1G5QO!(zQVO7+$]O(3|QUO'#CzOOQQ,59_,59_O(4XQbO,59dO(4dQbO,59_OOQQ,59^,59^OOQQ7+)w7+)wO!M_QVO'#JtO(4oQUO,5@kOOQQ1G.p1G.pOOQQ1G2k1G2kO(4wQUO1G2kO(4|QUO7+(sOOQQ7+*X7+*XO(7bQUO7+*XO(7iQUO7+*XO(1_QVO7+*[O#NeQUO7+(sO(7vQVO'#JbO(8ZQUO,5AkO(8cQUO,5;vOOQQ'#Cp'#CpOOQQ,5;w,5;wO!(zQVO'#F[OOQQ-E=_-E=_O!M_QVO,5;uOOQQ1G1`1G1`OOQQ,5?k,5?kOOQQ-E<}-E<}OOQR'#Dg'#DgOOQR'#Di'#DiOOQR'#Dl'#DlO(9lQ!eO'#K`O(9sQMkO'#K`O(9zQ!eO'#K`OOQR'#K`'#K`OOQR'#JQ'#JQO(:RQ!eO,59zOOQQ,59z,59zO(:YQbO,5?mOOQQ-E=P-E=PO(:hQbO1G6eOOQR7+$}7+$}OOQR7+&q7+&qOOQR7+&x7+&xO'8uQUO7+&qO(:sQUO7+&OO#6WQUO7+&OO(;hQUO1G/UO(]QUO,5?tOOQQ-E=W-E=WO(?fQUO7+&ZOOQQ,5@Y,5@YOOQQ-E=l-E=lO(?kQUO'#LPO@XQVO'#EiO(@wQUO1G1_OOQQ1G1_1G1_O(BQQUO,5?}OOQQ,5?},5?}OOQQ-E=a-E=aO(BfQUO'#KqOOQR7+,x7+,xO#DhQUO7+,xOOQR7+,z7+,zO(BsQUO,5=iO#DsQUO'#JjO(CUQUO,5AsOOQR1G3U1G3UOOQR1G3V1G3VO(CdQUO7+,{OOQR7+,{7+,{O(E[QUO,5:wO(FyQUO'#EwO!(zQVO,5;VO(GlQUO,5:wO(GvQUO'#EpO(HXQUO'#EzOOQQ,5;Z,5;ZO#K]QVO'#ExO(HoQUO,5:wO(HvQUO'#EyO#GgQUO'#JZO(J`QUO,5AeOOQQ1G0p1G0pO(JkQUO,5;WO!<[QUO,5;^O(KUQUO,5;_O(KdQUO,5;WO(MvQUO,5;`OOQQ-E=Y-E=YO(NOQUO1G0}OOQQ1G1O1G1OO(NyQUO1G1OO)!PQVO1G1OO)!WQVO1G1OO)!bQUO1G0|OOQQ1G0|1G0|OOQQ1G1P1G1PO)#_QUO'#JoO)#iQUO,5A]OOQQ1G0b1G0bOOQQ-E=Z-E=ZO)#qQUO,5;iO!<[QUO,5;iO)$nQVO,5:zO)$uQUO,5;gO$ mQUO7+&YOOQQ7+&Y7+&YO!(zQVO'#EfO)$|QUO,5:|OOQQ'#Kt'#KtOOQQ-E=V-E=VOOQQ,5A_,5A_OOQQ'#Jl'#JlO)(qQUO7+&PPOQQ7+&P7+&POOQQ7+)V7+)VO))iQUO7+)VO)*oQVO7+)VOOQQ,5>m,5>mO$)YQVO'#JsO)*vQUO,5@rOOQQ1G/S1G/SOOQQ7+${7+${O)+RQUO7+(RO)+WQUO7+(ROOQR7+(R7+(RO$>uQUO7+(ROOQQ7+%u7+%uOOQR-E=^-E=^O!0VQUO,5;oOOQQ,5@O,5@OOOQQ-E=b-E=bO$0^QUO1G1hOOQQ1G1h1G1hOOQR7+'Q7+'QOOQR1G1s1G1sOBUQUO,5;rO)+tQUO,5hQUO,5}QUO7+(dO)?SQVO7+(dOOQQ7+(l7+(lOOQQ7+)Z7+)ZO)?[QUO'#KkO)?fQUO'#KkOOQR,5=b,5=bO)?sQUO,5=bO!;bQUO,5=bO!;bQUO,5=bO!;bQUO,5=bOOQR7+(g7+(gOOQR7+(u7+(uOOQR7+(y7+(yOOQR,5=w,5=wO)?xQUO,5=zO)AOQUO,5=yOOQR,5Av,5AvOOQR-E=i-E=iOOQQ1G3b1G3bO)BUQUO,5=xO)BZQVO'#EfOOQQ1G6b1G6bO%)WQUO1G6bO%)]QUO1G6bOOQQ1G0P1G0POOQQ-E=Q-E=QO)DrQUO,5AWO(%iQUO'#JTO)D}QUO,5AWO)D}QUO,5AWO)EVQUO,5:iO8zQUO,5:iOOQQ,5>],5>]O)EaQUO,5ArO)EhQUO'#EVO)FrQUO'#EVO)G]QUO,5:iO)GgQUO'#HlO)GgQUO'#HmOOQQ'#Kp'#KpO)HUQUO'#KpO!(zQVO'#HnOOQQ,5:i,5:iO)HvQUO,5:iO!M_QVO,5:iOOQQ-E=S-E=SOOQQ1G0S1G0SOOQQ,5>`,5>`O)H{QUO1G6bO!(zQVO,5>gO)LjQUO'#JrO)LuQUO,5AyOOQQ1G4Q1G4QO)L}QUO,5AxOOQQ,5Ax,5AxOOQQ7+)i7+)iO*!lQUO7+)iOOQQ7+)o7+)oO*'kQVO1G7iO*)mQUO7+*SO*)rQUO,5?TO**xQUO7+*[POOO7+$S7+$SP*,kQUO'#LgP*,sQUO,5BQP*,x{,UO7+$SPOOO1G7j1G7jO*,}QUO<XQUO7+&jO*?_QVO7+&jOOQQ7+&h7+&hOOQQ,5@Z,5@ZOOQQ-E=m-E=mO*@ZQUO1G1TO*@eQUO1G1TO*AOQUO1G0fOOQQ1G0f1G0fO*BUQUO'#K|O*B^QUO1G1ROOQQ<uQUO<VO)GgQUO'#JpO*NQQUO1G0TO*NcQVO1G0TOOQQ1G3u1G3uO*NjQUO,5>WO*NuQUO,5>XO+ dQUO,5>YO+!jQUO1G0TO%)]QUO7++|O+#pQUO1G4ROOQQ,5@^,5@^OOQQ-E=p-E=pOOQQ<n,5>nO+/iQUOANAXOOQRANAXANAXO+/nQUO7+'`OOQRAN@cAN@cO+0zQVOAN@nO+1RQUOAN@nO!0tQVOAN@nO+2[QUOAN@nO+2aQUOAN@}O+2lQUOAN@}O+3rQUOAN@}OOQRAN@nAN@nO!M_QVOAN@}OOQRANAOANAOO+3wQUO7+'|O)7VQUO7+'|OOQQ7+(O7+(OO+4YQUO7+(OO+5`QVO7+(OO+5gQVO7+'hO+5nQUOANAjOOQR7+(h7+(hOOQR7+)P7+)PO+5sQUO7+)PO+5xQUO7+)POOQQ<= h<= hO+6QQUO7+,^O+6YQUO1G5ZOOQQ1G5Z1G5ZO+6eQUO7+%oOOQQ7+%o7+%oO+6vQUO7+%oO*NcQVO7+%oOOQQ7+)a7+)aO+6{QUO7+%oO+8RQUO7+%oO!M_QVO7+%oO+8]QUO1G0]O*LkQUO1G0]O)EhQUO1G0]OOQQ1G0a1G0aO+8zQUO1G3qO+:QQVO1G3qOOQQ1G3q1G3qO+:[QVO1G3qO+:cQUO,5@[OOQQ-E=n-E=nOOQQ1G3r1G3rO%)WQUO<= hOOQQ7+*Z7+*ZPOQQ,5@b,5@bPOQQ-E=t-E=tOOQQ1G/}1G/}OOQQ,5?x,5?xOOQQ-E=[-E=[OOQRG26sG26sO+:zQUOG26YO!0tQVOG26YO+QQUO<uAN>uO+BpQUOAN>uO+CvQUOAN>uO!M_QVOAN>uO+C{QUO<nQUO'#KZO,?OQUO'#CzO,?^QbO,59dO,6VQUO7+&OO,PP>j>|?bFYMY!&^!,tP!3n!4c!5WP!5rPPPPPPPP!6]P!7uP!9W!:pP!:vPPPPPP!:yP!:yPP!:yPP!;VPPPPPP!=X!@oP!@rPP!A`!BTPPPPP!BXP>m!CjPP>m!Eq!Gr!HQ!Ig!KWP!KcP!Kr!Kr# S#$c#%y#)V#,a!Gr#,kPP!Gr#,r#,x#,k#,k#,{P#-P#-n#-n#-n#-n!KWP#.X#.j#1PP#1eP#3QP#3U#3^#4R#4^#6l#6t#6t#3UP#3UP#6{#7RP#7]PP#7x#8g#9X#7xP#9y#:VP#7xP#7xPP#7x#7xP#7xP#7xP#7xP#7xP#7xP#7xP#:Y#7]#:vP#;]P#;r#;r#;r#;r#m>m>m$%Y!BT!BT!BT!BT!BT!BT!6]!6]!6]$%mP$'Y$'h!6]$'nPP!6]$)|$*P#Bo$*S:u7k$-Y$/T$0t$2d7kPP7k$4W7kP7k7kP7kP$7^7kP7kPP7k$7jPPPPPPPPP*]P$:r$:x$=a$?g$?m$@T$@_$@j$@y$AP$B_$C^$Ce$Cl$Cr$Cz$DU$D[$Dg$Dm$Dv$EO$EZ$Ea$Ek$Eq$E{$FS$Fc$Fi$FoP$Fu$F}$GU$Gd$IQ$IW$I^$Ie$InPPPPPPPP$It$IxPPPPP%!z$)|%!}%&V%(_PP%(l%(oPPPPPPPPPP%({%*O%*U%*Y%,P%-^%.P%.W%0g%0mPPP%0w%1S%1V%1]%2d%2g%2q%2{%3P%4T%4v%4|#BxP%5g%5w%5z%6[%6h%6l%6r%6x$)|$*P$*P%6{%7OP%7Y%7]R#cP'`mO[aefwx{!W!X!g!k!n!r!s!v!x#X#Y#[#g#j#m#r#s#t#u#v#w#x#y#z#{#|$O$V$X$Z$f$g$l%^%n&R&T&X&c&g&y&z&}'P'Q'c'j'k'z(a(c(j)m)s*i*j*m*r*s*w+X+Z+i+k+l,Q,S,o,r,x-^-_-b-h.Q.R.V/O/R/]/d/m/o/t/v0i0|1R1b1c1m1q1{1}2d2g2j2v2{3O3j4P4S4X4b5Z5f5r6`6d6g6i6k6u6w6|7c7k7n8f8h8n8t8u9S9W9^9`9m9p9q9|:P:V:X:^:c:gU%pm%q7RQ&n!`Q(k#]d0Q*O/}0O0P0S5O5P5Q5T8RR7R3Ub}Oaewx{!g&T*r&v$j[!W!X!k!n!r!s!v!x#X#Y#[#g#j#m#r#s#t#u#v#w#x#y#z#{#|$O$V$X$Z$f$g$l%^%n&R&X&c&g&y&z&}'P'Q'c'j'k'z(a(c(j)m)s*i*j*m*s*w+X+Z+i+k+l,Q,S,o,r,x-^-_-b-h.Q.R.V/O/R/]/d/m/o/t/v0|1b1c1m1q1{1}2d2g2j2v2{3O3j4P4S4X4b5Z5f5r6`6d6g6i6k6u6w6|7c7k7n8f8h8n8t8u9S9W9^9`9m9p9q9|:P:V:X:^:c:gS%af0i#d%kgnp|#O$h$}%O%T%e%i%j%x&t'u'v(R*Z*a*c*u+^,m,w-`-q-x.g.n.p0^0z0{1P1T2`2k5b6h;X;Y;Z;a;b;c;p;q;r;s;w;x;y;z MacroName LineComment BlockComment PreprocDirective #include String EscapeSequence SystemLibString Identifier ) ( ArgumentList ConditionalExpression AssignmentExpression CallExpression PrimitiveType FieldExpression FieldIdentifier DestructorName TemplateMethod ScopedFieldIdentifier NamespaceIdentifier TemplateType TypeIdentifier ScopedTypeIdentifier ScopedNamespaceIdentifier :: NamespaceIdentifier TypeIdentifier TemplateArgumentList < TypeDescriptor const volatile restrict _Atomic mutable constexpr constinit consteval StructSpecifier struct MsDeclspecModifier __declspec Attribute AttributeName Identifier AttributeArgs { } [ ] UpdateOp ArithOp ArithOp ArithOp LogicOp BitOp BitOp BitOp CompareOp CompareOp CompareOp > CompareOp BitOp UpdateOp , Number CharLiteral AttributeArgs VirtualSpecifier BaseClassClause Access virtual FieldDeclarationList FieldDeclaration extern static register inline thread_local AttributeSpecifier __attribute__ PointerDeclarator MsBasedModifier __based MsPointerModifier FunctionDeclarator ParameterList ParameterDeclaration PointerDeclarator FunctionDeclarator Noexcept noexcept RequiresClause requires True False ParenthesizedExpression CommaExpression LambdaExpression LambdaCaptureSpecifier TemplateParameterList OptionalParameterDeclaration TypeParameterDeclaration typename class VariadicParameterDeclaration VariadicDeclarator ReferenceDeclarator OptionalTypeParameterDeclaration VariadicTypeParameterDeclaration TemplateTemplateParameterDeclaration template AbstractFunctionDeclarator AbstractPointerDeclarator AbstractArrayDeclarator AbstractParenthesizedDeclarator AbstractReferenceDeclarator ThrowSpecifier throw TrailingReturnType CompoundStatement FunctionDefinition MsCallModifier TryStatement try CatchClause catch LinkageSpecification Declaration InitDeclarator InitializerList InitializerPair SubscriptDesignator FieldDesignator ExportDeclaration export ImportDeclaration import ModuleName PartitionName HeaderName CaseStatement case default LabeledStatement StatementIdentifier ExpressionStatement IfStatement if ConditionClause Declaration else SwitchStatement switch DoStatement do while WhileStatement ForStatement for ReturnStatement return BreakStatement break ContinueStatement continue GotoStatement goto CoReturnStatement co_return CoYieldStatement co_yield AttributeStatement ForRangeLoop AliasDeclaration using TypeDefinition typedef PointerDeclarator FunctionDeclarator ArrayDeclarator ParenthesizedDeclarator ThrowStatement NamespaceDefinition namespace ScopedIdentifier Identifier OperatorName operator ArithOp BitOp CompareOp LogicOp new delete co_await ConceptDefinition concept UsingDeclaration enum StaticAssertDeclaration static_assert ConcatenatedString TemplateDeclaration FriendDeclaration friend union FunctionDefinition ExplicitFunctionSpecifier explicit FieldInitializerList FieldInitializer DefaultMethodClause DeleteMethodClause FunctionDefinition OperatorCast operator TemplateInstantiation FunctionDefinition FunctionDefinition Declaration ModuleDeclaration module RequiresExpression RequirementList SimpleRequirement TypeRequirement CompoundRequirement ReturnTypeRequirement ConstraintConjuction LogicOp ConstraintDisjunction LogicOp ArrayDeclarator ParenthesizedDeclarator ReferenceDeclarator TemplateFunction OperatorName StructuredBindingDeclarator ArrayDeclarator ParenthesizedDeclarator ReferenceDeclarator BitfieldClause FunctionDefinition FunctionDefinition Declaration FunctionDefinition Declaration AccessSpecifier UnionSpecifier ClassSpecifier EnumSpecifier SizedTypeSpecifier TypeSize EnumeratorList Enumerator DependentType Decltype decltype auto PlaceholderTypeSpecifier ParameterPackExpansion ParameterPackExpansion FieldIdentifier PointerExpression SubscriptExpression BinaryExpression ArithOp LogicOp LogicOp BitOp UnaryExpression LogicOp BitOp UpdateExpression CastExpression SizeofExpression sizeof CoAwaitExpression CompoundLiteralExpression NULL NewExpression new NewDeclarator DeleteExpression delete ParameterPackExpansion nullptr this UserDefinedLiteral ParamPack #define PreprocArg #if #ifdef #ifndef #else #endif #elif PreprocDirectiveName Macro Program",maxTerm:426,nodeProps:[["group",-35,1,8,11,15,16,17,19,71,72,100,101,102,104,191,208,229,242,243,270,271,272,277,280,281,282,284,285,286,287,290,292,293,294,295,296,"Expression",-13,18,25,26,27,43,255,256,257,258,262,263,265,266,"Type",-19,126,129,147,150,152,153,158,160,163,164,166,168,170,172,174,176,178,179,188,"Statement"],["isolate",-4,4,5,8,10,""],["openedBy",12,"(",52,"{",54,"["],["closedBy",13,")",51,"}",53,"]"]],propSources:[B0],skippedNodes:[0,3,4,5,6,7,10,297,298,299,300,301,302,303,304,305,306,347,348],repeatNodeCount:41,tokenData:"&*r7ZR!UOX$eXY({YZ.gZ]$e]^+P^p$epq({qr.}rs0}st2ktu$euv!7dvw!9bwx!;exy!O{|!?R|}!AV}!O!BQ!O!P!DX!P!Q#+y!Q!R#Az!R![$(x![!]$Ag!]!^$Cc!^!_$D^!_!`%1W!`!a%2X!a!b%5_!b!c$e!c!n%6Y!n!o%7q!o!w%6Y!w!x%7q!x!}%6Y!}#O%:n#O#P%u#Y#]4Y#]#^NZ#^#o4Y#o;'S$e;'S;=`(u<%lO$e4e4eb)^W(qQ'f&j'm.oOY$eZr$ers%^sw$ewx(Ox!Q$e!Q![4Y![!c$e!c!}4Y!}#O$e#O#P&f#P#R$e#R#S4Y#S#T$e#T#o4Y#o;'S$e;'S;=`(u<%lO$e4e5xd)^W(qQ'f&j'm.oOY$eZr$ers%^sw$ewx(Ox!Q$e!Q![4Y![!c$e!c!}4Y!}#O$e#O#P&f#P#R$e#R#S4Y#S#T$e#T#X4Y#X#Y7W#Y#o4Y#o;'S$e;'S;=`(u<%lO$e4e7cd)^W(qQ'f&j'm.oOY$eZr$ers%^sw$ewx(Ox!Q$e!Q![4Y![!c$e!c!}4Y!}#O$e#O#P&f#P#R$e#R#S4Y#S#T$e#T#Y4Y#Y#Z8q#Z#o4Y#o;'S$e;'S;=`(u<%lO$e4e8|d)^W(qQ'f&j'm.oOY$eZr$ers%^sw$ewx(Ox!Q$e!Q![4Y![!c$e!c!}4Y!}#O$e#O#P&f#P#R$e#R#S4Y#S#T$e#T#]4Y#]#^:[#^#o4Y#o;'S$e;'S;=`(u<%lO$e4e:gd)^W(qQ'f&j'm.oOY$eZr$ers%^sw$ewx(Ox!Q$e!Q![4Y![!c$e!c!}4Y!}#O$e#O#P&f#P#R$e#R#S4Y#S#T$e#T#b4Y#b#c;u#c#o4Y#o;'S$e;'S;=`(u<%lO$e4e][)T,g)^W(qQ%Z!b'f&jOY$eZr$ers%^sw$ewx(Ox!_$e!_!`!8g!`#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e3o!?`^)^W(qQ%Z!b!Y,g'f&jOY$eZr$ers%^sw$ewx(Ox{$e{|!@[|!_$e!_!`!8g!`#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e3o!@gY)^W!X-y(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e2a!AbY!h,k)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e3o!B__)^W(qQ%Z!b!Y,g'f&jOY$eZr$ers%^sw$ewx(Ox}$e}!O!@[!O!_$e!_!`!8g!`!a!C^!a#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e3o!CiY(x-y)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e2a!Dd^)^W(qQ'f&j(w,gOY$eZr$ers%^sw$ewx(Ox!O$e!O!P!E`!P!Q$e!Q![!GY![#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e2a!Ei[)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox!O$e!O!P!F_!P#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e2a!FjY)Z,k)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e2]!Gen)^W(qQ!i,g'f&jOY$eZr$ers%^sw$ewx!Icx!Q$e!Q![!GY![!g$e!g!h#$w!h!i#*Y!i!n$e!n!o#*Y!o!r$e!r!s#$w!s!w$e!w!x#*Y!x#O$e#O#P&f#P#X$e#X#Y#$w#Y#Z#*Y#Z#`$e#`#a#*Y#a#d$e#d#e#$w#e#i$e#i#j#*Y#j;'S$e;'S;=`(u<%lO$e2T!IjY(qQ'f&jOY(OZr(Ors%}s!Q(O!Q![!JY![#O(O#O#P&f#P;'S(O;'S;=`(o<%lO(O2T!Jcn(qQ!i,g'f&jOY(OZr(Ors%}sw(Owx!Icx!Q(O!Q![!JY![!g(O!g!h!La!h!i##`!i!n(O!n!o##`!o!r(O!r!s!La!s!w(O!w!x##`!x#O(O#O#P&f#P#X(O#X#Y!La#Y#Z##`#Z#`(O#`#a##`#a#d(O#d#e!La#e#i(O#i#j##`#j;'S(O;'S;=`(o<%lO(O2T!Ljl(qQ!i,g'f&jOY(OZr(Ors%}s{(O{|!Nb|}(O}!O!Nb!O!Q(O!Q![# e![!c(O!c!h# e!h!i# e!i!n(O!n!o##`!o!w(O!w!x##`!x#O(O#O#P&f#P#T(O#T#Y# e#Y#Z# e#Z#`(O#`#a##`#a#i(O#i#j##`#j;'S(O;'S;=`(o<%lO(O2T!Ni^(qQ'f&jOY(OZr(Ors%}s!Q(O!Q![# e![!c(O!c!i# e!i#O(O#O#P&f#P#T(O#T#Z# e#Z;'S(O;'S;=`(o<%lO(O2T# nj(qQ!i,g'f&jOY(OZr(Ors%}sw(Owx!Nbx!Q(O!Q![# e![!c(O!c!h# e!h!i# e!i!n(O!n!o##`!o!w(O!w!x##`!x#O(O#O#P&f#P#T(O#T#Y# e#Y#Z# e#Z#`(O#`#a##`#a#i(O#i#j##`#j;'S(O;'S;=`(o<%lO(O2T##id(qQ!i,g'f&jOY(OZr(Ors%}s!h(O!h!i##`!i!n(O!n!o##`!o!w(O!w!x##`!x#O(O#O#P&f#P#Y(O#Y#Z##`#Z#`(O#`#a##`#a#i(O#i#j##`#j;'S(O;'S;=`(o<%lO(O2]#%Sn)^W(qQ!i,g'f&jOY$eZr$ers%^sw$ewx(Ox{$e{|#'Q|}$e}!O#'Q!O!Q$e!Q![#(]![!c$e!c!h#(]!h!i#(]!i!n$e!n!o#*Y!o!w$e!w!x#*Y!x#O$e#O#P&f#P#T$e#T#Y#(]#Y#Z#(]#Z#`$e#`#a#*Y#a#i$e#i#j#*Y#j;'S$e;'S;=`(u<%lO$e2]#'Z`)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox!Q$e!Q![#(]![!c$e!c!i#(]!i#O$e#O#P&f#P#T$e#T#Z#(]#Z;'S$e;'S;=`(u<%lO$e2]#(hj)^W(qQ!i,g'f&jOY$eZr$ers%^sw$ewx!Nbx!Q$e!Q![#(]![!c$e!c!h#(]!h!i#(]!i!n$e!n!o#*Y!o!w$e!w!x#*Y!x#O$e#O#P&f#P#T$e#T#Y#(]#Y#Z#(]#Z#`$e#`#a#*Y#a#i$e#i#j#*Y#j;'S$e;'S;=`(u<%lO$e2]#*ef)^W(qQ!i,g'f&jOY$eZr$ers%^sw$ewx(Ox!h$e!h!i#*Y!i!n$e!n!o#*Y!o!w$e!w!x#*Y!x#O$e#O#P&f#P#Y$e#Y#Z#*Y#Z#`$e#`#a#*Y#a#i$e#i#j#*Y#j;'S$e;'S;=`(u<%lO$e7Z#,W`)^W(qQ%Z!b![,g'f&jOY$eZr$ers%^sw$ewx(Oxz$ez{#-Y{!P$e!P!Q#:s!Q!_$e!_!`!8g!`#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e7Z#-c])^W(qQ'f&jOY#-YYZ#.[Zr#-Yrs#/csw#-Ywx#5wxz#-Yz{#8j{#O#-Y#O#P#2`#P;'S#-Y;'S;=`#:m<%lO#-Y1e#._TOz#.[z{#.n{;'S#.[;'S;=`#/]<%lO#.[1e#.qVOz#.[z{#.n{!P#.[!P!Q#/W!Q;'S#.[;'S;=`#/]<%lO#.[1e#/]OT1e1e#/`P;=`<%l#.[7X#/jZ)^W'f&jOY#/cYZ#.[Zw#/cwx#0]xz#/cz{#4O{#O#/c#O#P#2`#P;'S#/c;'S;=`#5q<%lO#/c7P#0bX'f&jOY#0]YZ#.[Zz#0]z{#0}{#O#0]#O#P#2`#P;'S#0];'S;=`#3x<%lO#0]7P#1SZ'f&jOY#0]YZ#.[Zz#0]z{#0}{!P#0]!P!Q#1u!Q#O#0]#O#P#2`#P;'S#0];'S;=`#3x<%lO#0]7P#1|UT1e'f&jOY%}Z#O%}#O#P&f#P;'S%};'S;=`'r<%lO%}7P#2eZ'f&jOY#0]YZ#0]Z]#0]]^#3W^z#0]z{#0}{#O#0]#O#P#2`#P;'S#0];'S;=`#3x<%lO#0]7P#3]X'f&jOY#0]YZ#0]Zz#0]z{#0}{#O#0]#O#P#2`#P;'S#0];'S;=`#3x<%lO#0]7P#3{P;=`<%l#0]7X#4V])^W'f&jOY#/cYZ#.[Zw#/cwx#0]xz#/cz{#4O{!P#/c!P!Q#5O!Q#O#/c#O#P#2`#P;'S#/c;'S;=`#5q<%lO#/c7X#5XW)^WT1e'f&jOY%^Zw%^wx%}x#O%^#O#P&f#P;'S%^;'S;=`'x<%lO%^7X#5tP;=`<%l#/c7R#6OZ(qQ'f&jOY#5wYZ#.[Zr#5wrs#0]sz#5wz{#6q{#O#5w#O#P#2`#P;'S#5w;'S;=`#8d<%lO#5w7R#6x](qQ'f&jOY#5wYZ#.[Zr#5wrs#0]sz#5wz{#6q{!P#5w!P!Q#7q!Q#O#5w#O#P#2`#P;'S#5w;'S;=`#8d<%lO#5w7R#7zW(qQT1e'f&jOY(OZr(Ors%}s#O(O#O#P&f#P;'S(O;'S;=`(o<%lO(O7R#8gP;=`<%l#5w7Z#8s_)^W(qQ'f&jOY#-YYZ#.[Zr#-Yrs#/csw#-Ywx#5wxz#-Yz{#8j{!P#-Y!P!Q#9r!Q#O#-Y#O#P#2`#P;'S#-Y;'S;=`#:m<%lO#-Y7Z#9}Y)^W(qQT1e'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e7Z#:pP;=`<%l#-Y7Z#;OY)^W(qQS1e'f&jOY#:sZr#:srs#;nsw#:swx#@{x#O#:s#O#P#[<%lO#b#P;'S#[<%lO#[<%lO#_P;=`<%l#i]S1e'f&jOY#b#P#b#[<%lO#[<%lO#b#P#b#[<%lO#t!R![$2V![!c$e!c!i$2V!i#O$e#O#P&f#P#T$e#T#Z$2V#Z;'S$e;'S;=`(u<%lO$e2]$?Pv)^W(qQ!i,g'f&jOY$eZr$ers%^sw$ewx$4lx!O$e!O!P$ m!P!Q$e!Q![$2V![!c$e!c!g$2V!g!h$:p!h!i$2V!i!n$e!n!o#*Y!o!r$e!r!s#$w!s!w$e!w!x#*Y!x#O$e#O#P&f#P#T$e#T#U$2V#U#V$2V#V#X$2V#X#Y$:p#Y#Z$2V#Z#`$e#`#a#*Y#a#d$e#d#e#$w#e#i$e#i#j#*Y#j#l$e#l#m$0z#m;'S$e;'S;=`(u<%lO$e4e$Ar[(v-X)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox![$e![!]$Bh!]#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e3s$BsYm-})^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e2]$CnY)Y,g)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e7V$Dk_q,g%]!b)^W(qQ'f&jOY$EjYZ$FlZr$Ejrs$GZsw$Ejwx%)Px!^$Ej!^!_%+w!_!`%.U!`!a%0]!a#O$Ej#O#P$Ib#P;'S$Ej;'S;=`%+q<%lO$Ej*[$Es])^W(qQ'f&jOY$EjYZ$FlZr$Ejrs$GZsw$Ejwx%)Px!`$Ej!`!a%*t!a#O$Ej#O#P$Ib#P;'S$Ej;'S;=`%+q<%lO$Ejp$FoTO!`$Fl!`!a$GO!a;'S$Fl;'S;=`$GT<%lO$Flp$GTO$Wpp$GWP;=`<%l$Fl*Y$GbZ)^W'f&jOY$GZYZ$FlZw$GZwx$HTx!`$GZ!`!a%(U!a#O$GZ#O#P$Ib#P;'S$GZ;'S;=`%(y<%lO$GZ*Q$HYX'f&jOY$HTYZ$FlZ!`$HT!`!a$Hu!a#O$HT#O#P$Ib#P;'S$HT;'S;=`$Mx<%lO$HT*Q$IOU$WpY#t'f&jOY%}Z#O%}#O#P&f#P;'S%};'S;=`'r<%lO%}*Q$Ig['f&jOY$HTYZ$HTZ]$HT]^$J]^!`$HT!`!a$NO!a#O$HT#O#P%&n#P;'S$HT;'S;=`%'f;=`<%l%$z<%lO$HT*Q$JbX'f&jOY$HTYZ$J}Z!`$HT!`!a$Hu!a#O$HT#O#P$Ib#P;'S$HT;'S;=`$Mx<%lO$HT'[$KSX'f&jOY$J}YZ$FlZ!`$J}!`!a$Ko!a#O$J}#O#P$LY#P;'S$J};'S;=`$Mr<%lO$J}'[$KvU$Wp'f&jOY%}Z#O%}#O#P&f#P;'S%};'S;=`'r<%lO%}'[$L_Z'f&jOY$J}YZ$J}Z]$J}]^$MQ^!`$J}!`!a$Ko!a#O$J}#O#P$LY#P;'S$J};'S;=`$Mr<%lO$J}'[$MVX'f&jOY$J}YZ$J}Z!`$J}!`!a$Ko!a#O$J}#O#P$LY#P;'S$J};'S;=`$Mr<%lO$J}'[$MuP;=`<%l$J}*Q$M{P;=`<%l$HT*Q$NVW$Wp'f&jOY$NoZ!`$No!`!a% ^!a#O$No#O#P% w#P;'S$No;'S;=`%#^<%lO$No)`$NtW'f&jOY$NoZ!`$No!`!a% ^!a#O$No#O#P% w#P;'S$No;'S;=`%#^<%lO$No)`% eUY#t'f&jOY%}Z#O%}#O#P&f#P;'S%};'S;=`'r<%lO%})`% |Y'f&jOY$NoYZ$NoZ]$No]^%!l^#O$No#O#P%#d#P;'S$No;'S;=`%$[;=`<%l%$z<%lO$No)`%!qX'f&jOY$NoYZ%}Z!`$No!`!a% ^!a#O$No#O#P% w#P;'S$No;'S;=`%#^<%lO$No)`%#aP;=`<%l$No)`%#iZ'f&jOY$NoYZ%}Z]$No]^%!l^!`$No!`!a% ^!a#O$No#O#P% w#P;'S$No;'S;=`%#^<%lO$No)`%$_XOY%$zZ!`%$z!`!a%%g!a#O%$z#O#P%%l#P;'S%$z;'S;=`%&h;=`<%l$No<%lO%$z#t%$}WOY%$zZ!`%$z!`!a%%g!a#O%$z#O#P%%l#P;'S%$z;'S;=`%&h<%lO%$z#t%%lOY#t#t%%oRO;'S%$z;'S;=`%%x;=`O%$z#t%%{XOY%$zZ!`%$z!`!a%%g!a#O%$z#O#P%%l#P;'S%$z;'S;=`%&h;=`<%l%$z<%lO%$z#t%&kP;=`<%l%$z*Q%&sZ'f&jOY$HTYZ$J}Z]$HT]^$J]^!`$HT!`!a$Hu!a#O$HT#O#P$Ib#P;'S$HT;'S;=`$Mx<%lO$HT*Q%'iXOY%$zZ!`%$z!`!a%%g!a#O%$z#O#P%%l#P;'S%$z;'S;=`%&h;=`<%l$HT<%lO%$z*Y%(aW$WpY#t)^W'f&jOY%^Zw%^wx%}x#O%^#O#P&f#P;'S%^;'S;=`'x<%lO%^*Y%(|P;=`<%l$GZ*S%)WZ(qQ'f&jOY%)PYZ$FlZr%)Prs$HTs!`%)P!`!a%)y!a#O%)P#O#P$Ib#P;'S%)P;'S;=`%*n<%lO%)P*S%*UW$WpY#t(qQ'f&jOY(OZr(Ors%}s#O(O#O#P&f#P;'S(O;'S;=`(o<%lO(O*S%*qP;=`<%l%)P*[%+RY$WpY#t)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e*[%+tP;=`<%l$Ej7V%,U^)^W(qQ%[!b!f,g'f&jOY$EjYZ$FlZr$Ejrs$GZsw$Ejwx%)Px!_$Ej!_!`%-Q!`!a%*t!a#O$Ej#O#P$Ib#P;'S$Ej;'S;=`%+q<%lO$Ej7V%-]]!g-y)^W(qQ'f&jOY$EjYZ$FlZr$Ejrs$GZsw$Ejwx%)Px!`$Ej!`!a%*t!a#O$Ej#O#P$Ib#P;'S$Ej;'S;=`%+q<%lO$Ej7V%.c]%]!b!b,g)^W(qQ'f&jOY$EjYZ$FlZr$Ejrs$GZsw$Ejwx%)Px!`$Ej!`!a%/[!a#O$Ej#O#P$Ib#P;'S$Ej;'S;=`%+q<%lO$Ej7V%/mY%]!b!b,g$WpY#t)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e)j%0hYY#t)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e3o%1c[)k!c)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox!_$e!_!`0Q!`#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e3o%2f]%]!b)^W(qQ!d,g'f&jOY$eZr$ers%^sw$ewx(Ox!_$e!_!`%3_!`!a%4[!a#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e3o%3lY%]!b!b,g)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e3o%4i[)^W(qQ%[!b!f,g'f&jOY$eZr$ers%^sw$ewx(Ox!_$e!_!`!8g!`#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e&u%5jY(uP)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e7Z%6ib)^W(yS(qQ!R,f(r%y'f&jOY$eZr$ers%^sw$ewx(Ox!Q$e!Q![%6Y![!c$e!c!}%6Y!}#O$e#O#P&f#P#R$e#R#S%6Y#S#T$e#T#o%6Y#o;'S$e;'S;=`(u<%lO$e7Z%8Qb)^W(yS(qQ!R,f(r%y'f&jOY$eZr$ers%9Ysw$ewx%9{x!Q$e!Q![%6Y![!c$e!c!}%6Y!}#O$e#O#P&f#P#R$e#R#S%6Y#S#T$e#T#o%6Y#o;'S$e;'S;=`(u<%lO$e5P%9cW)^W(p/]'f&jOY%^Zw%^wx%}x#O%^#O#P&f#P;'S%^;'S;=`'x<%lO%^2T%:UW(qQ)],g'f&jOY(OZr(Ors%}s#O(O#O#P&f#P;'S(O;'S;=`(o<%lO(O3o%:yZ!V-y)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox!}$e!}#O%;l#O#P&f#P;'S$e;'S;=`(u<%lO$e&u%;wY)QP)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e4e%[Z]%=q]^%?Z^!Q%=q!Q![%?w![!w%=q!w!x%AX!x#O%=q#O#P%H_#P#i%=q#i#j%Ds#j#l%=q#l#m%IR#m;'S%=q;'S;=`%Kt<%lO%=q&t%=xUXY'f&jOY%}Z#O%}#O#P&f#P;'S%};'S;=`'r<%lO%}4e%>e[XY(n.o'f&jOX%}XY-OYZ*[Z]%}]^-O^p%}pq-Oq#O%}#O#P,^#P;'S%};'S;=`'r<%lO%}4e%?bVXY'f&jOY%}YZ-OZ#O%}#O#P&f#P;'S%};'S;=`'r<%lO%}&t%@OWXY'f&jOY%}Z!Q%}!Q![%@h![#O%}#O#P&f#P;'S%};'S;=`'r<%lO%}&t%@oWXY'f&jOY%}Z!Q%}!Q![%=q![#O%}#O#P&f#P;'S%};'S;=`'r<%lO%}&t%A^['f&jOY%}Z!Q%}!Q![%BS![!c%}!c!i%BS!i#O%}#O#P&f#P#T%}#T#Z%BS#Z;'S%};'S;=`'r<%lO%}&t%BX['f&jOY%}Z!Q%}!Q![%B}![!c%}!c!i%B}!i#O%}#O#P&f#P#T%}#T#Z%B}#Z;'S%};'S;=`'r<%lO%}&t%CS['f&jOY%}Z!Q%}!Q![%Cx![!c%}!c!i%Cx!i#O%}#O#P&f#P#T%}#T#Z%Cx#Z;'S%};'S;=`'r<%lO%}&t%C}['f&jOY%}Z!Q%}!Q![%Ds![!c%}!c!i%Ds!i#O%}#O#P&f#P#T%}#T#Z%Ds#Z;'S%};'S;=`'r<%lO%}&t%Dx['f&jOY%}Z!Q%}!Q![%En![!c%}!c!i%En!i#O%}#O#P&f#P#T%}#T#Z%En#Z;'S%};'S;=`'r<%lO%}&t%Es['f&jOY%}Z!Q%}!Q![%Fi![!c%}!c!i%Fi!i#O%}#O#P&f#P#T%}#T#Z%Fi#Z;'S%};'S;=`'r<%lO%}&t%Fn['f&jOY%}Z!Q%}!Q![%Gd![!c%}!c!i%Gd!i#O%}#O#P&f#P#T%}#T#Z%Gd#Z;'S%};'S;=`'r<%lO%}&t%Gi['f&jOY%}Z!Q%}!Q![%=q![!c%}!c!i%=q!i#O%}#O#P&f#P#T%}#T#Z%=q#Z;'S%};'S;=`'r<%lO%}&t%HfXXY'f&jOY%}YZ%}Z]%}]^'W^#O%}#O#P&f#P;'S%};'S;=`'r<%lO%}&t%IW['f&jOY%}Z!Q%}!Q![%I|![!c%}!c!i%I|!i#O%}#O#P&f#P#T%}#T#Z%I|#Z;'S%};'S;=`'r<%lO%}&t%JR['f&jOY%}Z!Q%}!Q![%Jw![!c%}!c!i%Jw!i#O%}#O#P&f#P#T%}#T#Z%Jw#Z;'S%};'S;=`'r<%lO%}&t%KO[XY'f&jOY%}Z!Q%}!Q![%Jw![!c%}!c!i%Jw!i#O%}#O#P&f#P#T%}#T#Z%Jw#Z;'S%};'S;=`'r<%lO%}&t%KwP;=`<%l%=q2a%LVZ!W,V)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P#Q%Lx#Q;'S$e;'S;=`(u<%lO$e'Y%MTY)Pd)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e3o%NQ[)^W(qQ%[!b'f&j!_,gOY$eZr$ers%^sw$ewx(Ox!_$e!_!`!8g!`#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e7Z& Vd)^W(yS(qQ!R,f(r%y'f&jOY$eZr$ers%9Ysw$ewx%9{x!Q$e!Q!Y%6Y!Y!Z%7q!Z![%6Y![!c$e!c!}%6Y!}#O$e#O#P&f#P#R$e#R#S%6Y#S#T$e#T#o%6Y#o;'S$e;'S;=`(u<%lO$e2]&!pY!T,g)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e3o&#m^)^W(qQ%[!b'f&j!^,gOY$eZr$ers%^sw$ewx(Ox!_$e!_!`!8g!`#O$e#O#P&f#P#p$e#p#q&$i#q;'S$e;'S;=`(u<%lO$e3o&$vY)U,g%^!b)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e'V&%qY!Ua)^W(qQ'f&jOY$eZr$ers%^sw$ewx(Ox#O$e#O#P&f#P;'S$e;'S;=`(u<%lO$e(]&&nc)^W(qQ%[!b'RP'f&jOX$eXY&'yZp$epq&'yqr$ers%^sw$ewx(Ox!c$e!c!}&)_!}#O$e#O#P&f#P#R$e#R#S&)_#S#T$e#T#o&)_#o;'S$e;'S;=`(u<%lO$e&y&(Sc)^W(qQ'f&jOX$eXY&'yZp$epq&'yqr$ers%^sw$ewx(Ox!c$e!c!}&)_!}#O$e#O#P&f#P#R$e#R#S&)_#S#T$e#T#o&)_#o;'S$e;'S;=`(u<%lO$e&y&)jb)^W(qQeT'f&jOY$eZr$ers%^sw$ewx(Ox!Q$e!Q![&)_![!c$e!c!}&)_!}#O$e#O#P&f#P#R$e#R#S&)_#S#T$e#T#o&)_#o;'S$e;'S;=`(u<%lO$e",tokenizers:[D0,I0,0,1,2,3,4,5,6,7,8,9],topRules:{Program:[0,307]},dynamicPrecedences:{65:1,87:1,94:1,119:1,184:1,187:-10,240:-10,241:1,244:-1,246:-10,247:1,262:-1,267:2,268:2,306:-10,365:3,418:1,419:3,420:1,421:1},specialized:[{term:356,get:O=>N0[O]||-1},{term:33,get:O=>F0[O]||-1},{term:66,get:O=>H0[O]||-1},{term:363,get:O=>K0[O]||-1}],tokenPrec:24891});var J0=ne.define({name:"cpp",parser:m$.configure({props:[se.add({IfStatement:le({except:/^\s*({|else\b)/}),TryStatement:le({except:/^\s*({|catch)\b/}),LabeledStatement:sO,CaseStatement:O=>O.baseIndent+O.unit,BlockComment:()=>null,CompoundStatement:be({closing:"}"}),Statement:le({except:/^{/})}),te.add({"DeclarationList CompoundStatement EnumeratorList FieldDeclarationList InitializerList":me,BlockComment(O){return{from:O.from+2,to:O.to-2}}})]}),languageData:{commentTokens:{line:"//",block:{open:"/*",close:"*/"}},indentOnInput:/^\s*(?:case |default:|\{|\})$/,closeBrackets:{stringPrefixes:["L","u","U","u8","LR","UR","uR","u8R","R"]}}});function g$(){return new J(J0)}var eb=122,P$=1,tb=123,Ob=124,X$=2,ib=125,rb=3,nb=4,T$=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288],sb=58,ab=40,b$=95,ob=91,bs=45,lb=46,cb=35,hb=37,fb=38,db=92,ub=10,Qb=42;function yr(O){return O>=65&&O<=90||O>=97&&O<=122||O>=161}function Fl(O){return O>=48&&O<=57}function S$(O){return Fl(O)||O>=97&&O<=102||O>=65&&O<=70}var y$=(O,e,t)=>(i,r)=>{for(let n=!1,s=0,a=0;;a++){let{next:o}=i;if(yr(o)||o==bs||o==b$||n&&Fl(o))!n&&(o!=bs||a>0)&&(n=!0),s===a&&o==bs&&s++,i.advance();else if(o==db&&i.peek(1)!=ub){if(i.advance(),S$(i.next)){do i.advance();while(S$(i.next));i.next==32&&i.advance()}else i.next>-1&&i.advance();n=!0}else{n&&i.acceptToken(s==2&&r.canShift(X$)?e:o==ab?t:O);break}}},$b=new z(y$(tb,X$,Ob)),pb=new z(y$(ib,rb,nb)),mb=new z(O=>{if(T$.includes(O.peek(-1))){let{next:e}=O;(yr(e)||e==b$||e==cb||e==lb||e==Qb||e==ob||e==sb&&yr(O.peek(1))||e==bs||e==fb)&&O.acceptToken(eb)}}),gb=new z(O=>{if(!T$.includes(O.peek(-1))){let{next:e}=O;if(e==hb&&(O.advance(),O.acceptToken(P$)),yr(e)){do O.advance();while(yr(O.next)||Fl(O.next));O.acceptToken(P$)}}}),Pb=F({"AtKeyword import charset namespace keyframes media supports":d.definitionKeyword,"from to selector":d.keyword,NamespaceName:d.namespace,KeyframeName:d.labelName,KeyframeRangeName:d.operatorKeyword,TagName:d.tagName,ClassName:d.className,PseudoClassName:d.constant(d.className),IdName:d.labelName,"FeatureName PropertyName":d.propertyName,AttributeName:d.attributeName,NumberLiteral:d.number,KeywordQuery:d.keyword,UnaryQueryOp:d.operatorKeyword,"CallTag ValueName":d.atom,VariableName:d.variableName,Callee:d.operatorKeyword,Unit:d.unit,"UniversalSelector NestingSelector":d.definitionOperator,"MatchOp CompareOp":d.compareOperator,"ChildOp SiblingOp, LogicOp":d.logicOperator,BinOp:d.arithmeticOperator,Important:d.modifier,Comment:d.blockComment,ColorLiteral:d.color,"ParenthesizedContent StringLiteral":d.string,":":d.punctuation,"PseudoOp #":d.derefOperator,"; ,":d.separator,"( )":d.paren,"[ ]":d.squareBracket,"{ }":d.brace}),Sb={__proto__:null,lang:38,"nth-child":38,"nth-last-child":38,"nth-of-type":38,"nth-last-of-type":38,dir:38,"host-context":38,if:84,url:124,"url-prefix":124,domain:124,regexp:124},Xb={__proto__:null,or:98,and:98,not:106,only:106,layer:170},Tb={__proto__:null,selector:112,layer:166},bb={__proto__:null,"@import":162,"@media":174,"@charset":178,"@namespace":182,"@keyframes":188,"@supports":200,"@scope":204},yb={__proto__:null,to:207},x$=Oe.deserialize({version:14,states:"EbQYQdOOO#qQdOOP#xO`OOOOQP'#Cf'#CfOOQP'#Ce'#CeO#}QdO'#ChO$nQaO'#CcO$xQdO'#CkO%TQdO'#DpO%YQdO'#DrO%_QdO'#DuO%_QdO'#DxOOQP'#FV'#FVO&eQhO'#EhOOQS'#FU'#FUOOQS'#Ek'#EkQYQdOOO&lQdO'#EOO&PQhO'#EUO&lQdO'#EWO'aQdO'#EYO'lQdO'#E]O'tQhO'#EcO(VQdO'#EeO(bQaO'#CfO)VQ`O'#D{O)[Q`O'#F`O)gQdO'#F`QOQ`OOP)qO&jO'#CaPOOO)C@t)C@tOOQP'#Cj'#CjOOQP,59S,59SO#}QdO,59SO)|QdO,59VO%TQdO,5:[O%YQdO,5:^O%_QdO,5:aO%_QdO,5:cO%_QdO,5:dO%_QdO'#ErO*XQ`O,58}O*aQdO'#DzOOQS,58},58}OOQP'#Cn'#CnOOQO'#Dn'#DnOOQP,59V,59VO*hQ`O,59VO*mQ`O,59VOOQP'#Dq'#DqOOQP,5:[,5:[OOQO'#Ds'#DsO*rQpO,5:^O+]QaO,5:aO+sQaO,5:dOOQW'#DZ'#DZO,ZQhO'#DdO,xQhO'#FaO'tQhO'#DbO-WQ`O'#DhOOQW'#F['#F[O-]Q`O,5;SO-eQ`O'#DeOOQS-E8i-E8iOOQ['#Cs'#CsO-jQdO'#CtO.QQdO'#CzO.hQdO'#C}O/OQ!pO'#DPO1RQ!jO,5:jOOQO'#DU'#DUO*mQ`O'#DTO1cQ!nO'#FXO3`Q`O'#DVO3eQ`O'#DkOOQ['#FX'#FXO-`Q`O,5:pO3jQ!bO,5:rOOQS'#E['#E[O3rQ`O,5:tO3wQdO,5:tOOQO'#E_'#E_O4PQ`O,5:wO4UQhO,5:}O%_QdO'#DgOOQS,5;P,5;PO-eQ`O,5;PO4^QdO,5;PO4fQdO,5:gO4vQdO'#EtO5TQ`O,5;zO5TQ`O,5;zPOOO'#Ej'#EjP5`O&jO,58{POOO,58{,58{OOQP1G.n1G.nOOQP1G.q1G.qO*hQ`O1G.qO*mQ`O1G.qOOQP1G/v1G/vO5kQpO1G/xO5sQaO1G/{O6ZQaO1G/}O6qQaO1G0OO7XQaO,5;^OOQO-E8p-E8pOOQS1G.i1G.iO7cQ`O,5:fO7hQdO'#DoO7oQdO'#CrOOQP1G/x1G/xO&lQdO1G/xO7vQ!jO'#DZO8UQ!bO,59vO8^QhO,5:OOOQO'#F]'#F]O8XQ!bO,59zO'tQhO,59xO8fQhO'#EvO8sQ`O,5;{O9OQhO,59|O9uQhO'#DiOOQW,5:S,5:SOOQS1G0n1G0nOOQW,5:P,5:PO9|Q!fO'#FYOOQS'#FY'#FYOOQS'#Em'#EmO;^QdO,59`OOQ[,59`,59`O;tQdO,59fOOQ[,59f,59fO<[QdO,59iOOQ[,59i,59iOOQ[,59k,59kO&lQdO,59mOPQ!fO1G0ROOQO1G0R1G0ROOQO,5;`,5;`O>gQdO,5;`OOQO-E8r-E8rO>tQ`O1G1fPOOO-E8h-E8hPOOO1G.g1G.gOOQP7+$]7+$]OOQP7+%d7+%dO&lQdO7+%dOOQS1G0Q1G0QO?PQaO'#F_O?ZQ`O,5:ZO?`Q!fO'#ElO@^QdO'#FWO@hQ`O,59^O@mQ!bO7+%dO&lQdO1G/bO@uQhO1G/fOOQW1G/j1G/jOOQW1G/d1G/dOAWQhO,5;bOOQO-E8t-E8tOAfQhO'#DZOAtQhO'#F^OBPQ`O'#F^OBUQ`O,5:TOOQS-E8k-E8kOOQ[1G.z1G.zOOQ[1G/Q1G/QOOQ[1G/T1G/TOOQ[1G/X1G/XOBZQdO,5:lOOQS7+%p7+%pOB`Q`O7+%pOBeQhO'#DYOBmQ`O,59sO'tQhO,59sOOQ[1G/q1G/qOBuQ`O1G/qOOQS7+%z7+%zOBzQbO'#DPOOQO'#Eb'#EbOCYQ`O'#EaOOQO'#Ea'#EaOCeQ`O'#EwOCmQdO,5:zOOQS,5:z,5:zOOQ[1G/m1G/mOOQS7+&V7+&VO-`Q`O7+&VOCxQ!fO'#EsO&lQdO'#EsOEPQdO7+%mOOQO7+%m7+%mOOQO1G0z1G0zOEdQ!bO<jAN>jOIUQaO,5;]OOQO-E8o-E8oOI`QdO,5;[OOQO-E8n-E8nOOQW<WO&lQdO1G0uOK]Q`O7+'OOOQO,5;a,5;aOOQO-E8s-E8sOOQW<t}!O?V!O!P?t!P!Q@]!Q![AU![!]BP!]!^B{!^!_C^!_!`DY!`!aDm!a!b$q!b!cEn!c!}$q!}#OG{#O#P$q#P#QH^#Q#R6W#R#o$q#o#pHo#p#q6W#q#rIQ#r#sIc#s#y$q#y#z%i#z$f$q$f$g%i$g#BY$q#BY#BZ%i#BZ$IS$q$IS$I_%i$I_$I|$q$I|$JO%i$JO$JT$q$JT$JU%i$JU$KV$q$KV$KW%i$KW&FU$q&FU&FV%i&FV;'S$q;'S;=`Iz<%lO$q`$tSOy%Qz;'S%Q;'S;=`%c<%lO%Q`%VS!a`Oy%Qz;'S%Q;'S;=`%c<%lO%Q`%fP;=`<%l%Q~%nh#s~OX%QX^'Y^p%Qpq'Yqy%Qz#y%Q#y#z'Y#z$f%Q$f$g'Y$g#BY%Q#BY#BZ'Y#BZ$IS%Q$IS$I_'Y$I_$I|%Q$I|$JO'Y$JO$JT%Q$JT$JU'Y$JU$KV%Q$KV$KW'Y$KW&FU%Q&FU&FV'Y&FV;'S%Q;'S;=`%c<%lO%Q~'ah#s~!a`OX%QX^'Y^p%Qpq'Yqy%Qz#y%Q#y#z'Y#z$f%Q$f$g'Y$g#BY%Q#BY#BZ'Y#BZ$IS%Q$IS$I_'Y$I_$I|%Q$I|$JO'Y$JO$JT%Q$JT$JU'Y$JU$KV%Q$KV$KW'Y$KW&FU%Q&FU&FV'Y&FV;'S%Q;'S;=`%c<%lO%Qj)OUOy%Qz#]%Q#]#^)b#^;'S%Q;'S;=`%c<%lO%Qj)gU!a`Oy%Qz#a%Q#a#b)y#b;'S%Q;'S;=`%c<%lO%Qj*OU!a`Oy%Qz#d%Q#d#e*b#e;'S%Q;'S;=`%c<%lO%Qj*gU!a`Oy%Qz#c%Q#c#d*y#d;'S%Q;'S;=`%c<%lO%Qj+OU!a`Oy%Qz#f%Q#f#g+b#g;'S%Q;'S;=`%c<%lO%Qj+gU!a`Oy%Qz#h%Q#h#i+y#i;'S%Q;'S;=`%c<%lO%Qj,OU!a`Oy%Qz#T%Q#T#U,b#U;'S%Q;'S;=`%c<%lO%Qj,gU!a`Oy%Qz#b%Q#b#c,y#c;'S%Q;'S;=`%c<%lO%Qj-OU!a`Oy%Qz#h%Q#h#i-b#i;'S%Q;'S;=`%c<%lO%Qj-iS!qY!a`Oy%Qz;'S%Q;'S;=`%c<%lO%Q~-xWOY-uZr-urs.bs#O-u#O#P.g#P;'S-u;'S;=`/c<%lO-u~.gOt~~.jRO;'S-u;'S;=`.s;=`O-u~.vXOY-uZr-urs.bs#O-u#O#P.g#P;'S-u;'S;=`/c;=`<%l-u<%lO-u~/fP;=`<%l-uj/nYjYOy%Qz!Q%Q!Q![0^![!c%Q!c!i0^!i#T%Q#T#Z0^#Z;'S%Q;'S;=`%c<%lO%Qj0cY!a`Oy%Qz!Q%Q!Q![1R![!c%Q!c!i1R!i#T%Q#T#Z1R#Z;'S%Q;'S;=`%c<%lO%Qj1WY!a`Oy%Qz!Q%Q!Q![1v![!c%Q!c!i1v!i#T%Q#T#Z1v#Z;'S%Q;'S;=`%c<%lO%Qj1}YrY!a`Oy%Qz!Q%Q!Q![2m![!c%Q!c!i2m!i#T%Q#T#Z2m#Z;'S%Q;'S;=`%c<%lO%Qj2tYrY!a`Oy%Qz!Q%Q!Q![3d![!c%Q!c!i3d!i#T%Q#T#Z3d#Z;'S%Q;'S;=`%c<%lO%Qj3iY!a`Oy%Qz!Q%Q!Q![4X![!c%Q!c!i4X!i#T%Q#T#Z4X#Z;'S%Q;'S;=`%c<%lO%Qj4`YrY!a`Oy%Qz!Q%Q!Q![5O![!c%Q!c!i5O!i#T%Q#T#Z5O#Z;'S%Q;'S;=`%c<%lO%Qj5TY!a`Oy%Qz!Q%Q!Q![5s![!c%Q!c!i5s!i#T%Q#T#Z5s#Z;'S%Q;'S;=`%c<%lO%Qj5zSrY!a`Oy%Qz;'S%Q;'S;=`%c<%lO%Qd6ZUOy%Qz!_%Q!_!`6m!`;'S%Q;'S;=`%c<%lO%Qd6tS!hS!a`Oy%Qz;'S%Q;'S;=`%c<%lO%Qb7VSZQOy%Qz;'S%Q;'S;=`%c<%lO%Q~7fWOY7cZw7cwx.bx#O7c#O#P8O#P;'S7c;'S;=`8z<%lO7c~8RRO;'S7c;'S;=`8[;=`O7c~8_XOY7cZw7cwx.bx#O7c#O#P8O#P;'S7c;'S;=`8z;=`<%l7c<%lO7c~8}P;=`<%l7cj9VSeYOy%Qz;'S%Q;'S;=`%c<%lO%Q~9hOd~n9oUWQvWOy%Qz!_%Q!_!`6m!`;'S%Q;'S;=`%c<%lO%Qj:YWvW!mQOy%Qz!O%Q!O!P:r!P!Q%Q!Q![=w![;'S%Q;'S;=`%c<%lO%Qj:wU!a`Oy%Qz!Q%Q!Q![;Z![;'S%Q;'S;=`%c<%lO%Qj;bY!a`#}YOy%Qz!Q%Q!Q![;Z![!g%Q!g!hO[!a`#}YOy%Qz!O%Q!O!P;Z!P!Q%Q!Q![=w![!g%Q!g!hyS!^YOy%Qz;'S%Q;'S;=`%c<%lO%Qj?[WvWOy%Qz!O%Q!O!P:r!P!Q%Q!Q![=w![;'S%Q;'S;=`%c<%lO%Qj?yU]YOy%Qz!Q%Q!Q![;Z![;'S%Q;'S;=`%c<%lO%Q~@bTvWOy%Qz{@q{;'S%Q;'S;=`%c<%lO%Q~@xS!a`#t~Oy%Qz;'S%Q;'S;=`%c<%lO%QjAZ[#}YOy%Qz!O%Q!O!P;Z!P!Q%Q!Q![=w![!g%Q!g!hSb[O]||-1},{term:125,get:O=>Xb[O]||-1},{term:4,get:O=>Tb[O]||-1},{term:25,get:O=>bb[O]||-1},{term:123,get:O=>yb[O]||-1}],tokenPrec:1963});var Hl=null;function Kl(){if(!Hl&&typeof document=="object"&&document.body){let{style:O}=document.body,e=[],t=new Set;for(let i in O)i!="cssText"&&i!="cssFloat"&&typeof O[i]=="string"&&(/[A-Z]/.test(i)&&(i=i.replace(/[A-Z]/g,r=>"-"+r.toLowerCase())),t.has(i)||(e.push(i),t.add(i)));Hl=e.sort().map(i=>({type:"property",label:i,apply:i+": "}))}return Hl||[]}var k$=["active","after","any-link","autofill","backdrop","before","checked","cue","default","defined","disabled","empty","enabled","file-selector-button","first","first-child","first-letter","first-line","first-of-type","focus","focus-visible","focus-within","fullscreen","has","host","host-context","hover","in-range","indeterminate","invalid","is","lang","last-child","last-of-type","left","link","marker","modal","not","nth-child","nth-last-child","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","part","placeholder","placeholder-shown","read-only","read-write","required","right","root","scope","selection","slotted","target","target-text","valid","visited","where"].map(O=>({type:"class",label:O})),w$=["above","absolute","activeborder","additive","activecaption","after-white-space","ahead","alias","all","all-scroll","alphabetic","alternate","always","antialiased","appworkspace","asterisks","attr","auto","auto-flow","avoid","avoid-column","avoid-page","avoid-region","axis-pan","background","backwards","baseline","below","bidi-override","blink","block","block-axis","bold","bolder","border","border-box","both","bottom","break","break-all","break-word","bullets","button","button-bevel","buttonface","buttonhighlight","buttonshadow","buttontext","calc","capitalize","caps-lock-indicator","caption","captiontext","caret","cell","center","checkbox","circle","cjk-decimal","clear","clip","close-quote","col-resize","collapse","color","color-burn","color-dodge","column","column-reverse","compact","condensed","contain","content","contents","content-box","context-menu","continuous","copy","counter","counters","cover","crop","cross","crosshair","currentcolor","cursive","cyclic","darken","dashed","decimal","decimal-leading-zero","default","default-button","dense","destination-atop","destination-in","destination-out","destination-over","difference","disc","discard","disclosure-closed","disclosure-open","document","dot-dash","dot-dot-dash","dotted","double","down","e-resize","ease","ease-in","ease-in-out","ease-out","element","ellipse","ellipsis","embed","end","ethiopic-abegede-gez","ethiopic-halehame-aa-er","ethiopic-halehame-gez","ew-resize","exclusion","expanded","extends","extra-condensed","extra-expanded","fantasy","fast","fill","fill-box","fixed","flat","flex","flex-end","flex-start","footnotes","forwards","from","geometricPrecision","graytext","grid","groove","hand","hard-light","help","hidden","hide","higher","highlight","highlighttext","horizontal","hsl","hsla","hue","icon","ignore","inactiveborder","inactivecaption","inactivecaptiontext","infinite","infobackground","infotext","inherit","initial","inline","inline-axis","inline-block","inline-flex","inline-grid","inline-table","inset","inside","intrinsic","invert","italic","justify","keep-all","landscape","large","larger","left","level","lighter","lighten","line-through","linear","linear-gradient","lines","list-item","listbox","listitem","local","logical","loud","lower","lower-hexadecimal","lower-latin","lower-norwegian","lowercase","ltr","luminosity","manipulation","match","matrix","matrix3d","medium","menu","menutext","message-box","middle","min-intrinsic","mix","monospace","move","multiple","multiple_mask_images","multiply","n-resize","narrower","ne-resize","nesw-resize","no-close-quote","no-drop","no-open-quote","no-repeat","none","normal","not-allowed","nowrap","ns-resize","numbers","numeric","nw-resize","nwse-resize","oblique","opacity","open-quote","optimizeLegibility","optimizeSpeed","outset","outside","outside-shape","overlay","overline","padding","padding-box","painted","page","paused","perspective","pinch-zoom","plus-darker","plus-lighter","pointer","polygon","portrait","pre","pre-line","pre-wrap","preserve-3d","progress","push-button","radial-gradient","radio","read-only","read-write","read-write-plaintext-only","rectangle","region","relative","repeat","repeating-linear-gradient","repeating-radial-gradient","repeat-x","repeat-y","reset","reverse","rgb","rgba","ridge","right","rotate","rotate3d","rotateX","rotateY","rotateZ","round","row","row-resize","row-reverse","rtl","run-in","running","s-resize","sans-serif","saturation","scale","scale3d","scaleX","scaleY","scaleZ","screen","scroll","scrollbar","scroll-position","se-resize","self-start","self-end","semi-condensed","semi-expanded","separate","serif","show","single","skew","skewX","skewY","skip-white-space","slide","slider-horizontal","slider-vertical","sliderthumb-horizontal","sliderthumb-vertical","slow","small","small-caps","small-caption","smaller","soft-light","solid","source-atop","source-in","source-out","source-over","space","space-around","space-between","space-evenly","spell-out","square","start","static","status-bar","stretch","stroke","stroke-box","sub","subpixel-antialiased","svg_masks","super","sw-resize","symbolic","symbols","system-ui","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group","text","text-bottom","text-top","textarea","textfield","thick","thin","threeddarkshadow","threedface","threedhighlight","threedlightshadow","threedshadow","to","top","transform","translate","translate3d","translateX","translateY","translateZ","transparent","ultra-condensed","ultra-expanded","underline","unidirectional-pan","unset","up","upper-latin","uppercase","url","var","vertical","vertical-text","view-box","visible","visibleFill","visiblePainted","visibleStroke","visual","w-resize","wait","wave","wider","window","windowframe","windowtext","words","wrap","wrap-reverse","x-large","x-small","xor","xx-large","xx-small"].map(O=>({type:"keyword",label:O})).concat(["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","grey","green","greenyellow","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"].map(O=>({type:"constant",label:O}))),xb=["a","abbr","address","article","aside","b","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","dd","del","details","dfn","dialog","div","dl","dt","em","figcaption","figure","footer","form","header","hgroup","h1","h2","h3","h4","h5","h6","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","main","meter","nav","ol","output","p","pre","ruby","section","select","small","source","span","strong","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","tr","u","ul"].map(O=>({type:"type",label:O})),kb=["@charset","@color-profile","@container","@counter-style","@font-face","@font-feature-values","@font-palette-values","@import","@keyframes","@layer","@media","@namespace","@page","@position-try","@property","@scope","@starting-style","@supports","@view-transition"].map(O=>({type:"keyword",label:O})),Wt=/^(\w[\w-]*|-\w[\w-]*|)$/,wb=/^-(-[\w-]*)?$/;function Zb(O,e){var t;if((O.name=="("||O.type.isError)&&(O=O.parent||O),O.name!="ArgList")return!1;let i=(t=O.parent)===null||t===void 0?void 0:t.firstChild;return i?.name!="Callee"?!1:e.sliceString(i.from,i.to)=="var"}var Z$=new Tt,vb=["Declaration"];function Yb(O){for(let e=O;;){if(e.type.isTop)return e;if(!(e=e.parent))return O}}function v$(O,e,t){if(e.to-e.from>4096){let i=Z$.get(e);if(i)return i;let r=[],n=new Set,s=e.cursor(C.IncludeAnonymous);if(s.firstChild())do for(let a of v$(O,s.node,t))n.has(a.label)||(n.add(a.label),r.push(a));while(s.nextSibling());return Z$.set(e,r),r}else{let i=[],r=new Set;return e.cursor().iterate(n=>{var s;if(t(n)&&n.matchContext(vb)&&((s=n.node.nextSibling)===null||s===void 0?void 0:s.name)==":"){let a=O.sliceString(n.from,n.to);r.has(a)||(r.add(a),i.push({label:a,type:"variable"}))}}),i}}var _b=O=>e=>{let{state:t,pos:i}=e,r=U(t).resolveInner(i,-1),n=r.type.isError&&r.from==r.to-1&&t.doc.sliceString(r.from,r.to)=="-";if(r.name=="PropertyName"||(n||r.name=="TagName")&&/^(Block|Styles)$/.test(r.resolve(r.to).name))return{from:r.from,options:Kl(),validFor:Wt};if(r.name=="ValueName")return{from:r.from,options:w$,validFor:Wt};if(r.name=="PseudoClassName")return{from:r.from,options:k$,validFor:Wt};if(O(r)||(e.explicit||n)&&Zb(r,t.doc))return{from:O(r)||n?r.from:i,options:v$(t.doc,Yb(r),O),validFor:wb};if(r.name=="TagName"){for(let{parent:o}=r;o;o=o.parent)if(o.name=="Block")return{from:r.from,options:Kl(),validFor:Wt};return{from:r.from,options:xb,validFor:Wt}}if(r.name=="AtKeyword")return{from:r.from,options:kb,validFor:Wt};if(!e.explicit)return null;let s=r.resolve(i),a=s.childBefore(i);return a&&a.name==":"&&s.name=="PseudoClassSelector"?{from:i,options:k$,validFor:Wt}:a&&a.name==":"&&s.name=="Declaration"||s.name=="ArgList"?{from:i,options:w$,validFor:Wt}:s.name=="Block"||s.name=="Styles"?{from:i,options:Kl(),validFor:Wt}:null},Rb=_b(O=>O.name=="VariableName"),xr=ne.define({name:"css",parser:x$.configure({props:[se.add({Declaration:le()}),te.add({"Block KeyframeList":me})]}),languageData:{commentTokens:{block:{open:"/*",close:"*/"}},indentOnInput:/^\s*\}$/,wordChars:"-"}});function ys(){return new J(xr,xr.data.of({autocomplete:Rb}))}var Vb=177,qb=179,zb=184,Ub=12,Wb=13,jb=17,Cb=20,Gb=25,Eb=53,Ab=95,Lb=142,Mb=144,Db=145,Ib=148,Bb=10,Nb=13,Fb=32,Hb=9,Y$=47,Kb=41,Jb=125,ey=new z((O,e)=>{for(let t=0,i=O.next;(e.context&&(i<0||i==Bb||i==Nb||i==Y$&&O.peek(t+1)==Y$)||i==Kb||i==Jb)&&O.acceptToken(Vb),!(i!=Fb&&i!=Hb);)i=O.peek(++t)},{contextual:!0}),ty=new Set([Ab,zb,Cb,Ub,jb,Mb,Db,Lb,Ib,Wb,Eb,Gb]),Oy=new Ge({start:!1,shift:(O,e)=>e==qb?O:ty.has(e)}),iy=F({"func interface struct chan map const type var":d.definitionKeyword,"import package":d.moduleKeyword,"switch for go select return break continue goto fallthrough case if else defer":d.controlKeyword,range:d.keyword,Bool:d.bool,String:d.string,Rune:d.character,Number:d.number,Nil:d.null,VariableName:d.variableName,DefName:d.definition(d.variableName),TypeName:d.typeName,LabelName:d.labelName,FieldName:d.propertyName,"FunctionDecl/DefName":d.function(d.definition(d.variableName)),"TypeSpec/DefName":d.definition(d.typeName),"CallExpr/VariableName":d.function(d.variableName),LineComment:d.lineComment,BlockComment:d.blockComment,LogicOp:d.logicOperator,ArithOp:d.arithmeticOperator,BitOp:d.bitwiseOperator,"DerefOp .":d.derefOperator,"UpdateOp IncDecOp":d.updateOperator,CompareOp:d.compareOperator,"= :=":d.definitionOperator,"<-":d.operator,'~ "*"':d.modifier,"; ,":d.separator,"... :":d.punctuation,"( )":d.paren,"[ ]":d.squareBracket,"{ }":d.brace}),ry={__proto__:null,package:10,import:18,true:380,false:380,nil:383,struct:48,func:68,interface:78,chan:94,map:118,make:157,new:159,const:204,type:212,var:224,if:236,else:238,switch:242,case:248,default:250,for:260,range:266,go:270,select:274,return:284,break:288,continue:290,goto:292,fallthrough:296,defer:300},_$=Oe.deserialize({version:14,states:"!=xO#{QQOOP$SOQOOO&UQTO'#CbO&]QRO'#FlO]QQOOOOQP'#Cn'#CnOOQP'#Co'#CoO&eQQO'#C|O(kQQO'#C{O)]QRO'#GiO+tQQO'#D_OOQP'#Ge'#GeO+{QQO'#GeO.aQTO'#GaO.hQQO'#D`OOQP'#Gm'#GmO.mQRO'#GdO/hQQO'#DgOOQP'#Gd'#GdO/uQQO'#DrO2bQQO'#DsO4QQTO'#GqO,^QTO'#GaO4XQQO'#DxO4^QQO'#D{OOQO'#EQ'#EQOOQO'#ER'#EROOQO'#ES'#ESOOQO'#ET'#ETO4cQQO'#EPO5}QQO'#EPOOQP'#Ga'#GaO6UQQO'#E`O6^QQO'#EcOOQP'#G`'#G`O6cQQO'#EsOOQP'#G_'#G_O&]QRO'#FnOOQO'#Fn'#FnO9QQQO'#G^QOQQOOO&]QROOO9XQQO'#C`O9^QSO'#CdO9lQQO'#C}O9tQQO'#DSO9yQQO'#D[O:kQQO'#CsO:pQQO'#DhO:uQQO'#EeO:}QQO'#EiO;VQQO'#EoO;_QQO'#EuOPQSO7+%hOOQP7+%h7+%hO4cQQO7+%hOOQP1G0Q1G0QO!>^QQO1G0QOOQP1G0U1G0UO!>fQQO1G0UOF|QQO1G0UOOQO,5nAN>nO4cQQOAN>nO!IsQSOAN>nOOQP<nQQO'#FrOOQO,5vAN>vO!LtQQOAN>vP.hQQO'#F|OOQPG25XG25XO!LyQQOG25bO!MOQQO'#FPOOQPG25bG25bO!MZQQOG25bOOQPLD)tLD)tOOQPG24bG24bO!JqQQOLD*|O!9OQQO'#GQO!McQQO,5;kOOQP,5;k,5;kO?tQQO'#FQO!MnQQO'#FQO!MsQQOLD*|OOQP!$'Nh!$'NhOOQO,5VO^!hOh!POr-TOw}O!P-_O!Q-`O!W-^O!]-eO%O!eO%Y!fO~OZ!sO~O^#uO~O!P$xO~On!lO#W%]aV%]a^%]ah%]ar%]aw%]a!P%]a!Q%]a!W%]a!]%]a#T%]a$w%]a%O%]a%Y%]au%]a~O]${O^#QO~OZ#RO^#VO!W#SO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YO%p#[O%q#]O~O]$|O!|,WO~PBROj!qOn%QO!QnOi%cP~P*aO!V%WO!|#`O~PBRO!V%YO~OV!}O[oO^YOaoOdoOh!POjcOr!pOw}O!P!OO!QnO!WaO!]!QO!phO!qhO#Y!RO#^!SO#d!TO#j!UO#m!VO#v!WO#{!XO#}!YO$S!ZO$U![O$V![O$W!]O$Y!^O$[!_O%OQO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~Oi%dX#p%dX#q%dX~PDQOi%]O~O[oO^YOaoOdoOh!POr!pOw}O!P!OO!Q-QO!WaO!]!QO!phO!qhO%O+{O%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~O^%aO%O%_O~O!QnO!a%cO~P*aO!QnOn$mX#T$mX#U$mXV$mX$w$mX!a$mX~P*aOn#TO#T%ea#U%eaV%ea$w%ea!a%ea~O]%fO~PF|OV#ga$w#ga~PDTO[%sO~OZ#rO[#qO]%vO%O#oO~O^!hOh!POn%zOr-TOu%xOw}O!P-_O!Q-`O!W-^O!]-eO%O,dO%Y!fO]%[P~O^&OOh!POr!jOw}O!P!OO!Q!kO!WaO!]!QO%Y!fO^%ZXj%ZX~O%O%}O~PKfOjcO^qa]qanqa!Vqa~O^#uO!W&SO~O^!hOh!POr-TOw}O{&WO!P-_O!Q-`O!W-^O!]-eO%O,xO%Y!fO~Oi&^O~PL{O^!hOh!POr!jOw}O!Q!kO!WaO!]!QO%O!eO%Y!fO~O!P#hO~PMwOi&eO%O,yO%Y!fO~O#T&gOV#ZX$w#ZX~P?tO]&kO%O#oO~O^!hOh!POr-TOw}O!P-_O!Q-`O!]-eO%O!eO%Y!fO~O!W&lO#T&mO~P! _O]&qO%O#oO~O#T&sOV#eX$w#eX~P?tO]&vO%O#oO~OjeX~P$XOjcO!|,XO~P2gOn!lO#W&yO#W%]X~O^#VOn#TO!Q#cO!W#SO!|,XO#R#dO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YO%p#[O%q#]OV`X#T%eX#U%eX~OZ&zOj$`O$w`X~P!#cOi'OO#p'PO#q'QO~OZ#ROjcO~P!#cO#T'TO#U#iO~O#W'UO~OV'WO!QnO~P*aOV'XO~OjcO~O!|#`OV#za$w#za~PBROi'[O#p']O#q'^O~On#TO!|#`OV%eX$w%eX!a%eX~PBRO!|#`OV$Za$w$Za~PBRO${$rO$|$rO$}'`O~O]${O~O%O!eO]%ZXn%ZX!V%ZX~PKfO!|#`Oi!_Xn!_X!a!`X~PBROi!_Xn!_X!a!`X~O!a'aO~On'bOi%cX~Oi'dO~On'eO!V%bX!a%bX~O!V'gO~O]'jOn'kO!|,YO~PBROn'nO!V'mO!a'oO!|#`O~PBRO!QnO!V'qO!a'rO~P*aO!|#`On$ma#T$ma#U$maV$ma$w$ma!a$ma~PBRO]'sOu'tO~O%Y#XO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YOV!xiZ!xi^!xin!xi!Q!xi!W!xi!|!xi#R!xi#T!xi#U!xi$w!xi%`!xi%f!xi%g!xi%i!xi%p!xi%q!xi~O!V!xii!xi!a!xi~P!+YO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YOV!xiZ!xi^!xin!xi!Q!xi!W!xi#R!xi#T!xi#U!xi$w!xi%p!xi%q!xi!V!xii!xi!a!xi~O!|!xi~P!-TO!|#`O~P!-TO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YO%p#[OV!xiZ!xi^!xin!xi!Q!xi!W!xi#R!xi#T!xi#U!xi$w!xi%q!xi~O!|#`O!V!xii!xi!a!xi~P!/VO!|#`OV#Pi$w#Pi!a#Pi~PBRO]'uOn'wOu'vO~OZ#rO[#qO]'zO%O#oO~Ou'|O~P?tOn'}O]%[X~O](PO~OZeX^mX^!TXj!TX!W!TX~OjcOV$]i$w$]i~O%`(ZOV%^X$w%^Xn%^X!V%^X~Oi(`O~PL{O[(aO!W!tOVlX$wlX~On(bO~P?tO[(aOVlX$wlX~Oi(hO%O,yO%Y!fO~O!V(iO~O#T(kO~O](nO%O#oO~O[oO^YOaoOdoOh!POr!pOu-bOw}O!P!OO!QnO!V-UO!WaO!]!QO!phO!qhO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~O%O+zO~P!4vO](sO%O#oO~O#T(tOV#ea$w#ea~O](xO%O#oO~O#k(yOV#ii$w#ii~O[oO^YOaoOdoOh!POr!pOw}O!P!OO!Q-PO!WaO!]!QO!phO!qhO%O+xO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~O^(|O%O%_O~O#p%dP#q%dP~P/uOi)PO#p'PO#q'QO~O!a)RO~O!QnO#y)VO~P*aOV)WO!|#`O~PBROj#wa~P;_OV)WO!QnO~P*aOi)]O#p']O#q'^O~O[oO^YOaoOdoOh!POr!pOw}O!P!OO!QnO!WaO!]!QO!phO!qhO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~O%O,eO~P!:lO!a)bO~Oj!qO!QnO~P*aOj!qO!QnOi%ca~P*aOn)iOi%ca~O!V%ba!a%ba~P?tOn)lO!V%ba!a%ba~O])nO~O])oO~O!V)pO~O!QnO!V)rO!a)sO~P*aO!V)rO!a)sO!|#`O~PBRO])uOn)vO~O])wOn)xO~O^!hOh!POr-TOu%xOw}O!P-_O!Q-`O!W-^O!]-eO%O,dO%Y!fO~O]%[a~P!>nOn)|O]%[a~O]${O]tXntX~OjcOV$^q$w$^q~On*PO{&WO~P?tOn*SO!V%rX~O!V*UO~OjcOV$]q$w$]q~O%`(ZOV|a$w|an|a!V|a~O[*]OVla$wla~O[*]O!W!tOVla$wla~On*PO{&WO!W*`O^%WXj%WX~P! _OjcO#j!UO~OjcO!|,XO~PBROZ*dO^#VO!W#SO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YO%p#[O%q#]O~O!|#`O~P!BoO#^*eO~P?tO!a*fO~Oj$`O!|,XO~P!BoO#W*hO~Oj#wi~P;_OV*kO!|#`O~PBROn#TO!Q#cO!|#`O!a$QX#T%eX~PBRO#T*lO~O#W*lO~O!a*mO~O!|#`Oi!_in!_i~PBRO!|#`Oi!bXn!bX!a!cX~PBROi!bXn!bX!a!cX~O!a*nO~Oj!qO!QnOi%ci~P*aO!V%bi!a%bi~P?tO!V*qO!a*rO!|#`O~PBRO!V*qO!|#`O~PBRO]*tO~O]*uO~O]*uOu*vO~O]%[i~P!>nO%O!eO!V%ra~On*|O!V%ra~O[+OOVli$wli~O%O+yO~P!4vO#k+QOV#iy$w#iy~O^+RO%O%_O~O]+SO~O!|,XOj#xq~PBROj#wq~P;_O!V+ZO!|#`O~PBRO]+[On+]O~O%O!eO!V%ri~O^#QOn'eO!V%bX~O#^+`O~P?tOj+aO~O^#VO!W#SO!|#`O%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YO%p#[O%q#]O~OZ+cO~P!JvO!|#`O!a$Qi~PBRO!|#`Oi!bin!bi~PBRO!V+dO!|#`O~PBRO]+eO~O]+fO~Oi+iO#p+jO#q+kO~O^+lO%O%_O~Oi+pO#p+jO#q+kO~O!a+rO~O#^+sO~P?tO!a+tO~O]+uO~OZeX^eX^!TXj!TX!WeX!W!TX!|eX%YeX%`eX%feX%geX%ieX%jeX%keX%leX%meX%neX%oeX%peX%qeXVeXneX!QeX#ReX#TeX#UeX$weX~O]eX]!TX!VeXieX!aeX~P!NUOjeX~P!NUOZeX^eX^!TXj!TX!WeX!W!TX!|eX%YeX%`eX%feX%geX%ieX%jeX%keX%leX%meX%neX%oeX%peX%qeXn!TX!VeX~O]eX!V!TX~P#!gOh!TXr!TXw!TX{!TX!P!TX!Q!TX!]!TX%O!TX%Y!TX~P#!gOZeX^eX^!TXj!TXneX!WeX!W!TX!|eX%YeX%`eX%feX%geX%ieX%jeX%keX%leX%meX%neX%oeX%peX%qeX~O]eXueX~P#$xO]$mXn$mXu$mX~PF|Oj$mXn$mX~P!7`On+|O]%eau%ea~On+}Oj%ea~O[oO^YOaoOdoOh!POr!pOw}O!P!OO!Q-OO!WaO!]!QO!phO!qhO%O+yO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~OZeX]!TX^UXhUXnUXn!TXrUXuUXwUX!PUX!QUX!WUX!W!TX!]UX%OUX%YUX~OnUX!QeX!aeX#TeX#WUX~P#$xOn+|O!|,YO]%eXu%eX~PBROn+}O!|,XOj%eX~PBRO^&OOV%ZXj%ZX$w%ZX]%ZXn%ZX!V%ZXu%ZX%`%ZX#T%ZX[%ZX!a%ZX~P?wO!|,YO]$man$mau$ma~PBRO!|,XOj$man$ma~PBRO%Y#XO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YOZ!xi]!xi^!xi!W!xi!|!xi%`!xi%f!xi%g!xi%i!xi%p!xi%q!xi~Oj!xi~P!+YOn!xiu!xi~P#,hO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YOZ!xi]!xi^!xi!W!xi!|!xi%p!xi%q!xi~O%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YOV!xiZ!xi^!xij!xin!xi!Q!xi!W!xi#R!xi#T!xi#U!xi$w!xi%p!xi%q!xi~O!|!xi~P#/_On!xiu!xi~P#.TO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YOZ!xi]!xi^!xi!W!xi%p!xi%q!xi~O!|,WO~P#1^O!|,XO~P#/_O!|,YOn!xiu!xi~P#1^O%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YO%p#[OZ!xi]!xi^!xi!W!xi%q!xi~O!|,WO~P#3QO!|,XOj!xi~P!/VO!|,YOn!xiu!xi~P#3QO!|,XOj#Pi~PBROV!TXZeX^mX!W!TX$w!TX~O%`!TX~P#5RO[!TXhmXnmXrmXwmX!PmX!QmX!WmX!]mX%OmX%YmX~P#5ROn#TO!Q,aO!|,XO#R#dOj`X#T%eX#U%eX~PBRO[oO^YOaoOdoOh!POr!pOw}O!P#hO!WaO!]!QO!phO!qhO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~O!Q-OO%O+yO~P#6{O!Q-PO%O+xO~P#6{O!Q-QO%O+{O~P#6{O#T,bO#U,bO~O#W,cO~O^!hOh!POr-TOw}O!P-_O!Q-WO!W-^O!]-eO%O!eO%Y!fO~O^!hOh!POr-TOw}O!Q-`O!W-^O!]-eO%O!eO%Y!fO~O!P-VO~P#9zO%O+wO~P!4vO!P-XO~O!V-YO!|#`O~PBRO!V-ZO~O!V-[O~O!W-dO~OP%ka%Oa~",goto:"!FW%sPP%tP%wP%zP'SP'XPPPP'`'cP'u'uP)w'u-_PPP0j0m0qP1V4b1VP7s8WP1VP8a8d8hP8p8w1VPP1V8{<`?vPPCY-_-_-_PCdCuCxPC{DQ'u'uDV'uES'u'u'u'uGUIW'uPPJR'uJUMjMjMj'u! r! r!#SP!$`!%d!&d'cP'cPP'cP!&yP!'V!'^!&yP!'a!'h!'n!'w!&yP!'z!(R!&y!(U!(fPP!&yP!(x!)UPP!&y!)Y!)c!&yP!)g!)gP!&yP!&yP!)j!)m!&v!&yP!&yPPP!&yP!&yP!)q!)q!)w!)}!*U!*[!*d!*j!*p!*w!*}!+T!+Z!.q!.x!/O!/X!/m!/s!/z!0Q!0W!0^!0d!0jPPPPPPPPP!0p!1f!1k!1{!2kPP!7P!:^P!>u!?Z!?_!@Z!@fP!@p!D_!Df!Di!DuPPPPPPPPPPPP!FSR!aPRyO!WXOScw!R!T!U!W#O#k#n#u$R$X&O&j&u&|'W'Y']'})W)|*k*w+gQ#pzU#r{#s%uQ#x|U$T!S$U&pQ$^!VQ$y!lR)U'RVROS#nQ#t{T%t#s%uR#t{qrOScw!U!V!W#O#k#n&|'W'Y)W*k+g%PoOSYacmnw!U!V!W!X!Z!_!q#O#Q#S#T#V#^#_#`#a#b#c#i#j#k#n$f%c&g&l&s&x&y&|'P'R'T'U'W'X'Y']'a'b'o'r'w(k(t)V)W)i)s*`*h*k*l*n*o*r+g+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,{,|,}-O-P-Q-^%O]OSYacmnw!U!V!W!X!Z!_!q#O#Q#S#T#V#^#_#`#a#b#c#i#j#k#n$f%c&g&l&s&x&y&|'P'R'T'U'W'X'Y']'a'b'o'r'w(k(t)V)W)i)s*`*h*k*l*n*o*r+g+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,{,|,}-O-P-Q-^#u!iW^!O!h!t!z#e#h#u#v#y#|#}$P$Q$T$W$v$x%W%Y%a%x%y&O&S&W&]&`&b&d&m'e'|'}(S([(c(i(o(|)l)|*P*Q*S*p*w*|+R+^+j+l,h-U-V-W-X-Y-Z-[-]-_-d'cbOSWYacmnw!O!U!V!W!X!Z!_!h!q!t!z#O#Q#S#T#V#^#_#`#a#b#c#e#h#i#j#k#n#u#v#y#|$P$Q$T$W$f$v$x%W%Y%a%c%x%y&O&W&]&`&g&l&m&s&x&y&|'P'R'T'U'W'X'Y']'a'b'e'o'r'w'|'}(S([(c(i(k(o(t(|)V)W)i)l)s)|*Q*`*h*k*l*n*o*p*r*w+R+g+j+l+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,h,{,|,}-O-P-Q-U-V-W-X-Y-Z-[-]-^-_-dR$O!PT&c#}&dW%`#R&z*d+cQ&Q#vS&V#y&]S&`#}&dR*Y(b'cZOSWYacmnw!O!U!V!W!X!Z!_!h!q!t!z#O#Q#S#T#V#^#_#`#a#b#c#e#h#i#j#k#n#u#v#y#|$P$Q$T$W$f$v$x%W%Y%a%c%x%y&O&W&]&`&g&l&m&s&x&y&|'P'R'T'U'W'X'Y']'a'b'e'o'r'w'|'}(S([(c(i(k(o(t(|)V)W)i)l)s)|*Q*`*h*k*l*n*o*p*r*w+R+g+j+l+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,h,{,|,}-O-P-Q-U-V-W-X-Y-Z-[-]-^-_-d%fWOSWYacmnw!O!U!V!W!X!Z!_!q!z#O#Q#S#T#V#^#_#`#a#b#c#h#i#j#k#n#v#|$f$v$x%W%Y%c&g&l&s&x&y&|'P'R'T'U'W'X'Y']'a'b'o'r'w(i(k(t)V)W)i)s*`*h*k*l*n*o*r+g+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,{,|,}-O-P-Q-^S&b#}&d!{-]!h!t#e#u#y$P$Q$T$W%a%x%y&O&W&]&`&m'e'|'}(S([(c(o(|)l)|*Q*p*w+R+j+l,h-U-V-W-X-Y-Z-[-]-_-dQ#v|S$v!j!pU&P#v$v,hZ,h#x&Q&U&V-TS%{#u&OV){'})|*wR#z}T&[#y&]]&X#y&](S([(o*QZ&Z#y&](S(o*QT([&Y(]'s_OSWYacmnw!O!U!V!W!X!Z!_!h!q!t!z#O#Q#S#T#V#^#_#`#a#b#c#e#h#i#j#k#n#u#v#y#|#}$P$Q$T$W$f$v$x%W%Y%a%c%x%y&O&S&W&]&`&b&d&g&l&m&s&x&y&|'P'R'T'U'W'X'Y']'a'b'e'o'r'w'|'}(S([(c(i(k(o(t(|)V)W)i)l)s)|*P*Q*S*`*h*k*l*n*o*p*r*w*|+R+^+g+j+l+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,h,{,|,}-O-P-Q-U-V-W-X-Y-Z-[-]-^-_-d'r_OSWYacmnw!O!U!V!W!X!Z!_!h!q!t!z#O#Q#S#T#V#^#_#`#a#b#c#e#h#i#j#k#n#u#v#y#|#}$P$Q$T$W$f$v$x%W%Y%a%c%x%y&O&S&W&]&`&b&d&g&l&m&s&x&y&|'P'R'T'U'W'X'Y']'a'b'e'o'r'w'|'}(S([(c(i(k(o(t(|)V)W)i)l)s)|*P*Q*S*`*h*k*l*n*o*p*r*w*|+R+^+g+j+l+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,h,{,|,}-O-P-Q-U-V-W-X-Y-Z-[-]-^-_-dR!w^'bbOSWYacmnw!O!U!V!W!X!Z!_!h!q!t!z#O#Q#S#T#V#^#_#`#a#b#c#e#h#i#j#k#n#u#v#y#|$P$Q$T$W$f$v$x%W%Y%a%c%x%y&O&W&]&`&g&l&m&s&x&y&|'P'R'T'U'W'X'Y']'a'b'e'o'r'w'|'}(S([(c(i(k(o(t(|)V)W)i)l)s)|*Q*`*h*k*l*n*o*p*r*w+R+g+j+l+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,h,{,|,}-O-P-Q-U-V-W-X-Y-Z-[-]-^-_-dS&a#}&dR(d&bS!u]fX!x`&_(e(oQ!r[Q%O!qQ)d'aU)f'b)i*oR+X*nR%R!qR%P!qV)h'b)i*oV)g'b)i*odtOScw#O#k#n&|'Y+gQ$h!WQ&R#wQ&w$[S'S$c$iQ(V&TQ*O(RQ*V(WQ*b(yQ*c(zR+_+Q%PfOSYacmnw!U!V!W!X!Z!_!q#O#Q#S#T#V#^#_#`#a#b#c#i#j#k#n$f%c&g&l&s&x&y&|'P'R'T'U'W'X'Y']'a'b'o'r'w(k(t)V)W)i)s*`*h*k*l*n*o*r+g+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,{,|,}-O-P-Q-^%PgOSYacmnw!U!V!W!X!Z!_!q#O#Q#S#T#V#^#_#`#a#b#c#i#j#k#n$f%c&g&l&s&x&y&|'P'R'T'U'W'X'Y']'a'b'o'r'w(k(t)V)W)i)s*`*h*k*l*n*o*r+g+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,{,|,}-O-P-Q-^!q#Weg!o!y$[$_$c$j$m$q$}%^%b%d%m'V'p(z({)S)Y)^)c)e)q)t*i*s+T+V+W+Y,f,g,i,j,w,z-aR#fh#^mOSacmnw!X!Z!_!q#O#S#T#^#_#`#a#b#c#i#j#k#n$f%c&g&l&s&y&|'P'T'U'X'Y']'a'b'o'r(k(t)i)s*`*h*l*n*o*r+g-^!W#_e!y$j$m$q$}%b%d%j%k%l%m'V'p({)Y)^)c)e)q)t*s+T+V+W+Y-aW,T!o,n,q,tj,U$[$_$c(z)S*i,g,j,o,r,u,w,z[,V%^,f,i,p,s,v`,{Y,Q,T,W,Z,^,{-Ox,|!U!V!W&x'R'W)V)W*k+},R,U,X,[,_,a,b,c,|-Pg,}#Q#V'w+|,S,V,Y,],`,}-Q#^mOSacmnw!X!Z!_!q#O#S#T#^#_#`#a#b#c#i#j#k#n$f%c&g&l&s&y&|'P'T'U'X'Y']'a'b'o'r(k(t)i)s*`*h*l*n*o*r+g-^`,{Y,Q,T,W,Z,^,{-Ox,|!U!V!W&x'R'W)V)W*k+},R,U,X,[,_,a,b,c,|-Pg,}#Q#V'w+|,S,V,Y,],`,}-Q!Y#^e!y$j$m$q$}%b%d%i%j%k%l%m'V'p({)Y)^)c)e)q)t*s+T+V+W+Y-aY,Q!o,k,n,q,tl,R$[$_$c(z)S*i,g,j,l,o,r,u,w,z_,S%^,f,i,m,p,s,v!W#_e!y$j$m$q$}%b%d%j%k%l%m'V'p({)Y)^)c)e)q)t*s+T+V+W+Y-aW,T!o,n,q,tj,U$[$_$c(z)S*i,g,j,o,r,u,w,z],V%^,f,i,p,s,v!S#ae!y$j$m$q$}%b%d%l%m'V'p({)Y)^)c)e)q)t*s+T+V+W+Y-aS,Z!o,tf,[$[$_$c(z)S*i,g,j,u,w,zX,]%^,f,i,v!Q#be!y$j$m$q$}%b%d%m'V'p({)Y)^)c)e)q)t*s+T+V+W+Y-aQ,^!od,_$[$_$c(z)S*i,g,j,w,zV,`%^,f,iprOScw!U!V!W#O#k#n&|'W'Y)W*k+gR)a']etOScw#O#k#n&|'Y+gQ$S!RT&i$R&jR$S!RQ$V!ST&o$U&pQ&U#xR&m$TS(T&S&lV*{*S*|+^R$V!SQ$Y!TT&t$X&uR$Y!TdsOScw#O#k#n&|'Y+gT$p![!]dtOScw#O#k#n&|'Y+gQ*b(yR+_+QQ$a!VQ&{$_Q)T'RR*g)ST&|$`&}Q+b+SQ+m+fR+v+uT+g+a+hR$i!WR$l!YT'Y$k'ZXuOSw#nQ$s!`R'_$sSSO#nR!dSQ%u#sR'y%uUwOS#nR#mwQ&d#}R(g&dQ(c&`R*Z(cS!mX$^R$z!mQ(O%{R)}(OQ&]#yR(_&]Q(]&YR*X(]'r^OSWYacmnw!O!U!V!W!X!Z!_!h!q!t!z#O#Q#S#T#V#^#_#`#a#b#c#e#h#i#j#k#n#u#v#y#|#}$P$Q$T$W$f$v$x%W%Y%a%c%x%y&O&S&W&]&`&b&d&g&l&m&s&x&y&|'P'R'T'U'W'X'Y']'a'b'e'o'r'w'|'}(S([(c(i(k(o(t(|)V)W)i)l)s)|*P*Q*S*`*h*k*l*n*o*p*r*w*|+R+^+g+j+l+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,h,{,|,}-O-P-Q-U-V-W-X-Y-Z-[-]-^-_-dR!v^S'f%T+PR)m'fQ'c%RR)j'cW#Oc&|'Y+gR%[#O^#Ue$[$_$c$m)^,zU%e#U,O,PQ,O,fR,P,gQ&j$RR(m&jS*Q(S(oR*y*QQ*T(TR*}*TQ&p$UR(r&pQ&u$XR(w&uQ&}$`R)O&}Q+h+aR+o+hQ'Z$kR)['ZQ!cRQ#luQ#nyQ%Z!|Q&x$]Q'R$bQ'x%tQ(^&[Q(f&cQ(l&iQ(q&oR(v&tVxOS#nWuOSw#nY!|c#O&|'Y+gR%r#kdtOScw#O#k#n&|'Y+gQ$]!UQ$b!VQ$g!WQ)X'WQ*j)WR+U*kdeOScw#O#k#n&|'Y+gQ!oYQ!ya`#gmn,{,|,}-O-P-QQ$[!UQ$_!VQ$c!WQ$j!Xd$m!Z#i#j&g&s'P'T'U(k(tQ$q!_Q$}!qQ%^#QQ%b#SQ%d#TW%h#^,Q,R,SQ%i#_Q%j#`Q%k#aQ%l#bQ%m#cQ'V$fQ'p%cQ(z&xQ({&yQ)S'RQ)Y'XQ)^']Q)c'aU)e'b)i*oQ)q'oQ)t'rQ*i)VQ*s)sQ+T*hQ+V*lQ+W*nQ+Y*rS,f#V'wS,g,b,cQ,i+|Q,j+}Q,k,TQ,l,UQ,m,VQ,n,WQ,o,XQ,p,YQ,q,ZQ,r,[Q,s,]Q,t,^Q,u,_Q,v,`Q,w,aU,z'W)W*kV-a&l*`-^#bZW!O!h!t!z#e#h#u#v#y#|$P$Q$T$W$v$x%W%Y%a%x%y&O&W&]&`&m'e'|'}(S([(c(i(o(|)l)|*Q*p*w+R+j+l,h-U-V-W-X-Y-Z-[-]-_-d%P[OSYacmnw!U!V!W!X!Z!_!q#O#Q#S#T#V#^#_#`#a#b#c#i#j#k#n$f%c&g&l&s&x&y&|'P'R'T'U'W'X'Y']'a'b'o'r'w(k(t)V)W)i)s*`*h*k*l*n*o*r+g+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,{,|,}-O-P-Q-^$zdOSacmnw!U!V!W!X!Z!_!q#O#Q#S#T#V#^#_#`#a#b#c#i#j#k#n$f%c&g&l&s&x&y&|'P'R'T'U'W'X'Y']'a'b'o'r'w(k(t)V)W)i)s*h*k*l*n*o*r+g+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,{,|,}-O-P-Q-^S!gW-]Q!nYS#{!O-_Q$u!hS%T!t+jS%X!z-UQ%n#e[%o#h#|$x-V-W-XW%w#u'})|*wU&P#v$v,h[&X#y&](S([(o*QQ&f$PQ&h$QQ&n$TQ&r$WS'h%W-YS'i%Y-ZW'l%a(|+R+lS'{%x%yQ(Q&OQ(Y&WQ(d&`Q(p&mU)k'e)l*pQ)z'|Q*[(cS*^(i-[Q+P*`R-c-dS#w|!pS$w!j-TQ&T#xQ(R&QQ(W&UR(X&VT%|#u&OhqOScw!U!V#O#k#n&|'Y+gU$Q!R$R&jU$W!T$X&uQ$e!WY%y#u&O'})|*wQ)`']V-S'W)W*kS&[#y&]S*R(S(oR*z*QY&Y#y&](S(o*QR*W(['``OSWYacmnw!O!U!V!W!X!Z!_!h!q!t!z#O#Q#S#T#V#^#_#`#a#b#c#e#h#i#j#k#n#u#v#y#|$P$Q$T$W$f$v$x%W%Y%a%c%x%y&O&W&]&`&g&m&s&x&y&|'P'R'T'U'W'X'Y']'a'b'e'o'r'w'|'}(S([(c(i(k(o(t(|)V)W)i)l)s)|*Q*`*h*k*l*n*o*p*r*w+R+g+j+l+|+},Q,R,S,T,U,V,W,X,Y,Z,[,],^,_,`,a,b,c,h,{,|,}-O-P-Q-U-V-W-X-Y-Z-[-]-^-_-dS&_#}&dW(S&S*S*|+^Q(e&bQ(o&lR*x*PS%U!t*`R+q+jR%S!qQ#PcQ(}&|Q)Z'YR+n+ghpOScw!U!V#O#k#n&|'Y+gQ$d!WQ$n!ZQ%g#VU%p#i'T,bU%q#j'U,cQ(j&gQ(u&sQ)Q'PQ)_']Q)y'wQ*_(kQ*a(tV-R'W)W*kT(U&S&l",nodeNames:"\u26A0 LineComment BlockComment SourceFile PackageClause package DefName ; ImportDecl import ImportSpec . String ) ( SpecList ExprStatement Number Bool Nil Rune VariableName TypedLiteral StructType struct } { StructBody FieldDecl FieldName , PointerType * FunctionType func Parameters Parameter ... InterfaceType interface InterfaceBody MethodElem UnderlyingType ~ TypeElem LogicOp ChannelType chan <- ParenthesizedType QualifiedType TypeName ParameterizedType ] [ TypeArgs ArrayType SliceType MapType map LiteralValue Element Key : Element Key ParenthesizedExpr FunctionLiteral Block Conversion SelectorExpr IndexExpr SliceExpr TypeAssertion CallExpr ParameterizedExpr Arguments CallExpr make new Arguments UnaryExp ArithOp LogicOp BitOp DerefOp BinaryExp ArithOp BitOp BitOp CompareOp LogicOp LogicOp SendStatement IncDecStatement IncDecOp Assignment = UpdateOp VarDecl := ConstDecl const ConstSpec SpecList TypeDecl type TypeSpec TypeParams TypeParam SpecList VarDecl var VarSpec SpecList LabeledStatement LabelName IfStatement if else SwitchStatement switch SwitchBlock Case case default TypeSwitchStatement SwitchBlock Case ForStatement for ForClause RangeClause range GoStatement go SelectStatement select SelectBlock Case ReceiveStatement ReturnStatement return GotoStatement break continue goto FallthroughStatement fallthrough DeferStatement defer FunctionDecl MethodDecl",maxTerm:218,context:Oy,nodeProps:[["isolate",-3,2,12,20,""],["group",-18,12,17,18,19,20,21,22,66,67,69,70,71,72,73,74,77,81,86,"Expr",-20,16,68,93,94,96,99,101,105,111,115,117,120,126,129,134,136,141,143,147,149,"Statement",-12,23,31,33,38,46,49,50,51,52,56,57,58,"Type"],["openedBy",13,"(",25,"{",53,"["],["closedBy",14,")",26,"}",54,"]"]],propSources:[iy],skippedNodes:[0,1,2,153],repeatNodeCount:23,tokenData:":b~RvXY#iYZ#i]^#ipq#iqr#zrs$Xuv&Pvw&^wx&yxy(qyz(vz{({{|)T|})e}!O)j!O!P)u!P!Q+}!Q!R,y!R![-t![!]2^!]!^2k!^!_2p!_!`3]!`!a3e!c!}3x!}#O4j#P#Q4o#Q#R4t#R#S4|#S#T9X#T#o3x#o#p9q#p#q9v#q#r:W#r#s:]$g;'S3x;'S;=`4d<%lO3x~#nS$y~XY#iYZ#i]^#ipq#iU$PP%hQ!_!`$SS$XO!|S~$^W[~OY$XZr$Xrs$vs#O$X#O#P${#P;'S$X;'S;=`%y<%lO$X~${O[~~%ORO;'S$X;'S;=`%X;=`O$X~%^X[~OY$XZr$Xrs$vs#O$X#O#P${#P;'S$X;'S;=`%y;=`<%l$X<%lO$X~%|P;=`<%l$X~&UP%l~!_!`&X~&^O#U~~&cR%j~vw&l!_!`&X#Q#R&q~&qO%p~~&vP%o~!_!`&X~'OWd~OY&yZw&ywx'hx#O&y#O#P'm#P;'S&y;'S;=`(k<%lO&y~'mOd~~'pRO;'S&y;'S;=`'y;=`O&y~(OXd~OY&yZw&ywx'hx#O&y#O#P'm#P;'S&y;'S;=`(k;=`<%l&y<%lO&y~(nP;=`<%l&y~(vO^~~({O]~~)QP%Y~!_!`&X~)YQ%f~{|)`!_!`&X~)eO#R~~)jOn~~)oQ%g~}!O)`!_!`&X~)zRZS!O!P*T!Q![*`#R#S+w~*WP!O!P*Z~*`Ou~Q*eTaQ!Q![*`!g!h*t#R#S+w#X#Y*t#]#^+rQ*wS{|+T}!O+T!Q![+^#R#S+lQ+WQ!Q![+^#R#S+lQ+cRaQ!Q![+^#R#S+l#]#^+rQ+oP!Q![+^Q+wOaQQ+zP!Q![*`~,SR%k~z{,]!P!Q,b!_!`&X~,bO$z~~,gSP~OY,bZ;'S,b;'S;=`,s<%lO,b~,vP;=`<%l,bQ-O[aQ!O!P*`!Q![-t!d!e.c!g!h*t!q!r/Z!z!{/x#R#S.]#U#V.c#X#Y*t#]#^+r#c#d/Z#l#m/xQ-yUaQ!O!P*`!Q![-t!g!h*t#R#S.]#X#Y*t#]#^+rQ.`P!Q![-tQ.fR!Q!R.o!R!S.o#R#S/QQ.tSaQ!Q!R.o!R!S.o#R#S/Q#]#^+rQ/TQ!Q!R.o!R!S.oQ/^Q!Q!Y/d#R#S/rQ/iRaQ!Q!Y/d#R#S/r#]#^+rQ/uP!Q!Y/dQ/{T!O!P0[!Q![1c!c!i1c#R#S2Q#T#Z1cQ0_S!Q![0k!c!i0k#R#S1V#T#Z0kQ0pVaQ!Q![0k!c!i0k!r!s*t#R#S1V#T#Z0k#]#^+r#d#e*tQ1YR!Q![0k!c!i0k#T#Z0kQ1hWaQ!O!P0k!Q![1c!c!i1c!r!s*t#R#S2Q#T#Z1c#]#^+r#d#e*tQ2TR!Q![1c!c!i1c#T#Z1c~2cP!a~!_!`2f~2kO#W~~2pOV~~2uR!|S}!O3O!^!_3T!_!`$S~3TO!Q~~3YP%m~!_!`&X~3bP#T~!_!`$S~3jQ!|S!_!`$S!`!a3p~3uP%n~!_!`&X~3}V%O~!Q![3x!c!}3x#R#S3x#T#o3x$g;'S3x;'S;=`4d<%lO3x~4gP;=`<%l3x~4oO!W~~4tO!V~~4yP%i~!_!`&X~5RV%O~!Q![5h!c!}3x#R#S3x#T#o3x$g;'S3x;'S;=`4d<%lO3x~5o^aQ%O~!O!P*`!Q![5h!c!g3x!g!h6k!h!}3x#R#S4|#T#X3x#X#Y6k#Y#]3x#]#^8k#^#o3x$g;'S3x;'S;=`4d<%lO3x~6pX%O~{|+T}!O+T!Q![7]!c!}3x#R#S8P#T#o3x$g;'S3x;'S;=`4d<%lO3x~7dXaQ%O~!Q![7]!c!}3x#R#S8P#T#]3x#]#^8k#^#o3x$g;'S3x;'S;=`4d<%lO3x~8UV%O~!Q![7]!c!}3x#R#S3x#T#o3x$g;'S3x;'S;=`4d<%lO3x~8rVaQ%O~!Q![3x!c!}3x#R#S3x#T#o3x$g;'S3x;'S;=`4d<%lO3x~9[TO#S9X#S#T$v#T;'S9X;'S;=`9k<%lO9X~9nP;=`<%l9X~9vOj~~9{Q%`~!_!`&X#p#q:R~:WO%q~~:]Oi~~:bO{~",tokenizers:[ey,1,2,new kt("j~RQYZXz{^~^O$|~~aP!P!Qd~iO$}~~",25,181)],topRules:{SourceFile:[0,3]},dynamicPrecedences:{19:1,51:-1,55:2,69:-1,108:-1},specialized:[{term:184,get:O=>ry[O]||-1}],tokenPrec:5451});var ny=[W("func ${name}(${params}) ${type} {\n ${}\n}",{label:"func",detail:"declaration",type:"keyword"}),W("func (${receiver}) ${name}(${params}) ${type} {\n ${}\n}",{label:"func",detail:"method declaration",type:"keyword"}),W("var ${name} = ${value}",{label:"var",detail:"declaration",type:"keyword"}),W("type ${name} ${type}",{label:"type",detail:"declaration",type:"keyword"}),W("const ${name} = ${value}",{label:"const",detail:"declaration",type:"keyword"}),W("type ${name} = ${type}",{label:"type",detail:"alias declaration",type:"keyword"}),W("for ${init}; ${test}; ${update} {\n ${}\n}",{label:"for",detail:"loop",type:"keyword"}),W("for ${i} := range ${value} {\n ${}\n}",{label:"for",detail:"range",type:"keyword"}),W(`select { + \${} +}`,{label:"select",detail:"statement",type:"keyword"}),W("case ${}:\n${}",{label:"case",type:"keyword"}),W("switch ${} {\n ${}\n}",{label:"switch",detail:"statement",type:"keyword"}),W("switch ${}.(${type}) {\n ${}\n}",{label:"switch",detail:"type statement",type:"keyword"}),W("if ${} {\n ${}\n}",{label:"if",detail:"block",type:"keyword"}),W(`if \${} { + \${} +} else { + \${} +}`,{label:"if",detail:"/ else block",type:"keyword"}),W('import ${name} "${module}"\n${}',{label:"import",detail:"declaration",type:"keyword"})],R$=new Tt,q$=new Set(["SourceFile","Block","FunctionDecl","MethodDecl","FunctionLiteral","ForStatement","SwitchStatement","TypeSwitchStatement","IfStatement"]);function Pi(O,e){return(t,i)=>{e:for(let r=t.node.firstChild,n=0,s=null;;){for(;!r;){if(!n)break e;n--,r=s.nextSibling,s=s.parent}e&&r.name==e||r.name=="SpecList"?(n++,s=r,r=r.firstChild):(r.name=="DefName"&&i(r,O),r=r.nextSibling)}return!0}}var sy={FunctionDecl:Pi("function"),VarDecl:Pi("var","VarSpec"),ConstDecl:Pi("constant","ConstSpec"),TypeDecl:Pi("type","TypeSpec"),ImportDecl:Pi("constant","ImportSpec"),Parameter:Pi("var"),__proto__:null};function z$(O,e){let t=R$.get(e);if(t)return t;let i=[],r=!0;function n(s,a){let o=O.sliceString(s.from,s.to);i.push({label:o,type:a})}return e.cursor(C.IncludeAnonymous).iterate(s=>{if(r)r=!1;else if(s.name){let a=sy[s.name];if(a&&a(s,n)||q$.has(s.name))return!1}else if(s.to-s.from>8192){for(let a of z$(O,s.node))i.push(a);return!1}}),R$.set(e,i),i}var V$=/^[\w$\xa1-\uffff][\w$\d\xa1-\uffff]*$/,U$=["String","LineComment","BlockComment","DefName","LabelName","FieldName",".","?."],ay=O=>{let e=U(O.state).resolveInner(O.pos,-1);if(U$.indexOf(e.name)>-1)return null;let t=e.name=="VariableName"||e.to-e.from<20&&V$.test(O.state.sliceDoc(e.from,e.to));if(!t&&!O.explicit)return null;let i=[];for(let r=e;r;r=r.parent)q$.has(r.name)&&(i=i.concat(z$(O.state.doc,r)));return{options:i,from:t?e.from:O.pos,validFor:V$}},Jl=ne.define({name:"go",parser:_$.configure({props:[se.add({IfStatement:le({except:/^\s*({|else\b)/}),LabeledStatement:sO,"SwitchBlock SelectBlock":O=>{let e=O.textAfter,t=/^\s*\}/.test(e),i=/^\s*(case|default)\b/.test(e);return O.baseIndent+(t||i?0:O.unit)},Block:be({closing:"}"}),BlockComment:()=>null,Statement:le({except:/^{/})}),te.add({"Block SwitchBlock SelectBlock LiteralValue InterfaceType StructType SpecList":me,BlockComment(O){return{from:O.from+2,to:O.to-2}}})]}),languageData:{closeBrackets:{brackets:["(","[","{","'",'"',"`"]},commentTokens:{line:"//",block:{open:"/*",close:"*/"}},indentOnInput:/^\s*(?:case\b|default\b|\})$/}}),oy=O=>({label:O,type:"keyword"}),ly="interface struct chan map package go return break continue goto fallthrough else defer range true false nil".split(" ").map(oy);function W$(){let O=ny.concat(ly);return new J(Jl,[Jl.data.of({autocomplete:cO(U$,zt(O))}),Jl.data.of({autocomplete:ay})])}var cy=55,hy=1,fy=56,dy=2,uy=57,Qy=3,j$=4,$y=5,rc=6,I$=7,B$=8,N$=9,F$=10,py=11,my=12,gy=13,ec=58,Py=14,Sy=15,C$=59,H$=21,Xy=23,K$=24,Ty=25,Oc=27,J$=28,by=29,yy=32,xy=35,ky=37,wy=38,Zy=0,vy=1,Yy={area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,frame:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0,menuitem:!0},_y={dd:!0,li:!0,optgroup:!0,option:!0,p:!0,rp:!0,rt:!0,tbody:!0,td:!0,tfoot:!0,th:!0,tr:!0},G$={dd:{dd:!0,dt:!0},dt:{dd:!0,dt:!0},li:{li:!0},option:{option:!0,optgroup:!0},optgroup:{optgroup:!0},p:{address:!0,article:!0,aside:!0,blockquote:!0,dir:!0,div:!0,dl:!0,fieldset:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,menu:!0,nav:!0,ol:!0,p:!0,pre:!0,section:!0,table:!0,ul:!0},rp:{rp:!0,rt:!0},rt:{rp:!0,rt:!0},tbody:{tbody:!0,tfoot:!0},td:{td:!0,th:!0},tfoot:{tbody:!0},th:{td:!0,th:!0},thead:{tbody:!0,tfoot:!0},tr:{tr:!0}};function Ry(O){return O==45||O==46||O==58||O>=65&&O<=90||O==95||O>=97&&O<=122||O>=161}var E$=null,A$=null,L$=0;function ic(O,e){let t=O.pos+e;if(L$==t&&A$==O)return E$;let i=O.peek(e),r="";for(;Ry(i);)r+=String.fromCharCode(i),i=O.peek(++e);return A$=O,L$=t,E$=r?r.toLowerCase():i==Vy||i==qy?void 0:null}var ep=60,xs=62,nc=47,Vy=63,qy=33,zy=45;function M$(O,e){this.name=O,this.parent=e}var Uy=[rc,F$,I$,B$,N$],Wy=new Ge({start:null,shift(O,e,t,i){return Uy.indexOf(e)>-1?new M$(ic(i,1)||"",O):O},reduce(O,e){return e==H$&&O?O.parent:O},reuse(O,e,t,i){let r=e.type.id;return r==rc||r==ky?new M$(ic(i,1)||"",O):O},strict:!1}),jy=new z((O,e)=>{if(O.next!=ep){O.next<0&&e.context&&O.acceptToken(ec);return}O.advance();let t=O.next==nc;t&&O.advance();let i=ic(O,0);if(i===void 0)return;if(!i)return O.acceptToken(t?Sy:Py);let r=e.context?e.context.name:null;if(t){if(i==r)return O.acceptToken(py);if(r&&_y[r])return O.acceptToken(ec,-2);if(e.dialectEnabled(Zy))return O.acceptToken(my);for(let n=e.context;n;n=n.parent)if(n.name==i)return;O.acceptToken(gy)}else{if(i=="script")return O.acceptToken(I$);if(i=="style")return O.acceptToken(B$);if(i=="textarea")return O.acceptToken(N$);if(Yy.hasOwnProperty(i))return O.acceptToken(F$);r&&G$[r]&&G$[r][i]?O.acceptToken(ec,-1):O.acceptToken(rc)}},{contextual:!0}),Cy=new z(O=>{for(let e=0,t=0;;t++){if(O.next<0){t&&O.acceptToken(C$);break}if(O.next==zy)e++;else if(O.next==xs&&e>=2){t>=3&&O.acceptToken(C$,-2);break}else e=0;O.advance()}});function Gy(O){for(;O;O=O.parent)if(O.name=="svg"||O.name=="math")return!0;return!1}var Ey=new z((O,e)=>{if(O.next==nc&&O.peek(1)==xs){let t=e.dialectEnabled(vy)||Gy(e.context);O.acceptToken(t?$y:j$,2)}else O.next==xs&&O.acceptToken(j$,1)});function sc(O,e,t){let i=2+O.length;return new z(r=>{for(let n=0,s=0,a=0;;a++){if(r.next<0){a&&r.acceptToken(e);break}if(n==0&&r.next==ep||n==1&&r.next==nc||n>=2&&ns?r.acceptToken(e,-s):r.acceptToken(t,-(s-2));break}else if((r.next==10||r.next==13)&&a){r.acceptToken(e,1);break}else n=s=0;r.advance()}})}var Ay=sc("script",cy,hy),Ly=sc("style",fy,dy),My=sc("textarea",uy,Qy),Dy=F({"Text RawText IncompleteTag IncompleteCloseTag":d.content,"StartTag StartCloseTag SelfClosingEndTag EndTag":d.angleBracket,TagName:d.tagName,"MismatchedCloseTag/TagName":[d.tagName,d.invalid],AttributeName:d.attributeName,"AttributeValue UnquotedAttributeValue":d.attributeValue,Is:d.definitionOperator,"EntityReference CharacterReference":d.character,Comment:d.blockComment,ProcessingInst:d.processingInstruction,DoctypeDecl:d.documentMeta}),tp=Oe.deserialize({version:14,states:",xOVO!rOOO!ZQ#tO'#CrO!`Q#tO'#C{O!eQ#tO'#DOO!jQ#tO'#DRO!oQ#tO'#DTO!tOaO'#CqO#PObO'#CqO#[OdO'#CqO$kO!rO'#CqOOO`'#Cq'#CqO$rO$fO'#DUO$zQ#tO'#DWO%PQ#tO'#DXOOO`'#Dl'#DlOOO`'#DZ'#DZQVO!rOOO%UQ&rO,59^O%aQ&rO,59gO%lQ&rO,59jO%wQ&rO,59mO&SQ&rO,59oOOOa'#D_'#D_O&_OaO'#CyO&jOaO,59]OOOb'#D`'#D`O&rObO'#C|O&}ObO,59]OOOd'#Da'#DaO'VOdO'#DPO'bOdO,59]OOO`'#Db'#DbO'jO!rO,59]O'qQ#tO'#DSOOO`,59],59]OOOp'#Dc'#DcO'vO$fO,59pOOO`,59p,59pO(OQ#|O,59rO(TQ#|O,59sOOO`-E7X-E7XO(YQ&rO'#CtOOQW'#D['#D[O(hQ&rO1G.xOOOa1G.x1G.xOOO`1G/Z1G/ZO(sQ&rO1G/ROOOb1G/R1G/RO)OQ&rO1G/UOOOd1G/U1G/UO)ZQ&rO1G/XOOO`1G/X1G/XO)fQ&rO1G/ZOOOa-E7]-E7]O)qQ#tO'#CzOOO`1G.w1G.wOOOb-E7^-E7^O)vQ#tO'#C}OOOd-E7_-E7_O){Q#tO'#DQOOO`-E7`-E7`O*QQ#|O,59nOOOp-E7a-E7aOOO`1G/[1G/[OOO`1G/^1G/^OOO`1G/_1G/_O*VQ,UO,59`OOQW-E7Y-E7YOOOa7+$d7+$dOOO`7+$u7+$uOOOb7+$m7+$mOOOd7+$p7+$pOOO`7+$s7+$sO*bQ#|O,59fO*gQ#|O,59iO*lQ#|O,59lOOO`1G/Y1G/YO*qO7[O'#CwO+SOMhO'#CwOOQW1G.z1G.zOOO`1G/Q1G/QOOO`1G/T1G/TOOO`1G/W1G/WOOOO'#D]'#D]O+eO7[O,59cOOQW,59c,59cOOOO'#D^'#D^O+vOMhO,59cOOOO-E7Z-E7ZOOQW1G.}1G.}OOOO-E7[-E7[",stateData:",c~O!_OS~OUSOVPOWQOXROYTO[]O][O^^O_^Oa^Ob^Oc^Od^Oy^O|_O!eZO~OgaO~OgbO~OgcO~OgdO~OgeO~O!XfOPmP![mP~O!YiOQpP![pP~O!ZlORsP![sP~OUSOVPOWQOXROYTOZqO[]O][O^^O_^Oa^Ob^Oc^Od^Oy^O!eZO~O![rO~P#gO!]sO!fuO~OgvO~OgwO~OS|OT}OiyO~OS!POT}OiyO~OS!ROT}OiyO~OS!TOT}OiyO~OS}OT}OiyO~O!XfOPmX![mX~OP!WO![!XO~O!YiOQpX![pX~OQ!ZO![!XO~O!ZlORsX![sX~OR!]O![!XO~O![!XO~P#gOg!_O~O!]sO!f!aO~OS!bO~OS!cO~Oj!dOShXThXihX~OS!fOT!gOiyO~OS!hOT!gOiyO~OS!iOT!gOiyO~OS!jOT!gOiyO~OS!gOT!gOiyO~Og!kO~Og!lO~Og!mO~OS!nO~Ol!qO!a!oO!c!pO~OS!rO~OS!sO~OS!tO~Ob!uOc!uOd!uO!a!wO!b!uO~Ob!xOc!xOd!xO!c!wO!d!xO~Ob!uOc!uOd!uO!a!{O!b!uO~Ob!xOc!xOd!xO!c!{O!d!xO~OT~cbd!ey|!e~",goto:"%q!aPPPPPPPPPPPPPPPPPPPPP!b!hP!nPP!zP!}#Q#T#Z#^#a#g#j#m#s#y!bP!b!bP$P$V$m$s$y%P%V%]%cPPPPPPPP%iX^OX`pXUOX`pezabcde{!O!Q!S!UR!q!dRhUR!XhXVOX`pRkVR!XkXWOX`pRnWR!XnXXOX`pQrXR!XpXYOX`pQ`ORx`Q{aQ!ObQ!QcQ!SdQ!UeZ!e{!O!Q!S!UQ!v!oR!z!vQ!y!pR!|!yQgUR!VgQjVR!YjQmWR![mQpXR!^pQtZR!`tS_O`ToXp",nodeNames:"\u26A0 StartCloseTag StartCloseTag StartCloseTag EndTag SelfClosingEndTag StartTag StartTag StartTag StartTag StartTag StartCloseTag StartCloseTag StartCloseTag IncompleteTag IncompleteCloseTag Document Text EntityReference CharacterReference InvalidEntity Element OpenTag TagName Attribute AttributeName Is AttributeValue UnquotedAttributeValue ScriptText CloseTag OpenTag StyleText CloseTag OpenTag TextareaText CloseTag OpenTag CloseTag SelfClosingTag Comment ProcessingInst MismatchedCloseTag CloseTag DoctypeDecl",maxTerm:68,context:Wy,nodeProps:[["closedBy",-10,1,2,3,7,8,9,10,11,12,13,"EndTag",6,"EndTag SelfClosingEndTag",-4,22,31,34,37,"CloseTag"],["openedBy",4,"StartTag StartCloseTag",5,"StartTag",-4,30,33,36,38,"OpenTag"],["group",-10,14,15,18,19,20,21,40,41,42,43,"Entity",17,"Entity TextContent",-3,29,32,35,"TextContent Entity"],["isolate",-11,22,30,31,33,34,36,37,38,39,42,43,"ltr",-3,27,28,40,""]],propSources:[Dy],skippedNodes:[0],repeatNodeCount:9,tokenData:"!]tw8twx7Sx!P8t!P!Q5u!Q!]8t!]!^/^!^!a7S!a#S8t#S#T;{#T#s8t#s$f5u$f;'S8t;'S;=`>V<%l?Ah8t?Ah?BY5u?BY?Mn8t?MnO5u!Z5zblWOX5uXZ7SZ[5u[^7S^p5uqr5urs7Sst+Ptw5uwx7Sx!]5u!]!^7w!^!a7S!a#S5u#S#T7S#T;'S5u;'S;=`8n<%lO5u!R7VVOp7Sqs7St!]7S!]!^7l!^;'S7S;'S;=`7q<%lO7S!R7qOb!R!R7tP;=`<%l7S!Z8OYlWb!ROX+PZ[+P^p+Pqr+Psw+Px!^+P!a#S+P#T;'S+P;'S;=`+t<%lO+P!Z8qP;=`<%l5u!_8{iiSlWOX5uXZ7SZ[5u[^7S^p5uqr8trs7Sst/^tw8twx7Sx!P8t!P!Q5u!Q!]8t!]!^:j!^!a7S!a#S8t#S#T;{#T#s8t#s$f5u$f;'S8t;'S;=`>V<%l?Ah8t?Ah?BY5u?BY?Mn8t?MnO5u!_:sbiSlWb!ROX+PZ[+P^p+Pqr/^sw/^x!P/^!P!Q+P!Q!^/^!a#S/^#S#T0m#T#s/^#s$f+P$f;'S/^;'S;=`1e<%l?Ah/^?Ah?BY+P?BY?Mn/^?MnO+P!VP<%l?Ah;{?Ah?BY7S?BY?Mn;{?MnO7S!V=dXiSb!Rqr0msw0mx!P0m!Q!^0m!a#s0m$f;'S0m;'S;=`1_<%l?Ah0m?BY?Mn0m!V>SP;=`<%l;{!_>YP;=`<%l8t!_>dhiSlWOX@OXZAYZ[@O[^AY^p@OqrBwrsAYswBwwxAYx!PBw!P!Q@O!Q!]Bw!]!^/^!^!aAY!a#SBw#S#TE{#T#sBw#s$f@O$f;'SBw;'S;=`HS<%l?AhBw?Ah?BY@O?BY?MnBw?MnO@O!Z@TalWOX@OXZAYZ[@O[^AY^p@Oqr@OrsAYsw@OwxAYx!]@O!]!^Az!^!aAY!a#S@O#S#TAY#T;'S@O;'S;=`Bq<%lO@O!RA]UOpAYq!]AY!]!^Ao!^;'SAY;'S;=`At<%lOAY!RAtOc!R!RAwP;=`<%lAY!ZBRYlWc!ROX+PZ[+P^p+Pqr+Psw+Px!^+P!a#S+P#T;'S+P;'S;=`+t<%lO+P!ZBtP;=`<%l@O!_COhiSlWOX@OXZAYZ[@O[^AY^p@OqrBwrsAYswBwwxAYx!PBw!P!Q@O!Q!]Bw!]!^Dj!^!aAY!a#SBw#S#TE{#T#sBw#s$f@O$f;'SBw;'S;=`HS<%l?AhBw?Ah?BY@O?BY?MnBw?MnO@O!_DsbiSlWc!ROX+PZ[+P^p+Pqr/^sw/^x!P/^!P!Q+P!Q!^/^!a#S/^#S#T0m#T#s/^#s$f+P$f;'S/^;'S;=`1e<%l?Ah/^?Ah?BY+P?BY?Mn/^?MnO+P!VFQbiSOpAYqrE{rsAYswE{wxAYx!PE{!P!QAY!Q!]E{!]!^GY!^!aAY!a#sE{#s$fAY$f;'SE{;'S;=`G|<%l?AhE{?Ah?BYAY?BY?MnE{?MnOAY!VGaXiSc!Rqr0msw0mx!P0m!Q!^0m!a#s0m$f;'S0m;'S;=`1_<%l?Ah0m?BY?Mn0m!VHPP;=`<%lE{!_HVP;=`<%lBw!ZHcW!cxaP!b`Or(trs'ksv(tw!^(t!^!_)e!_;'S(t;'S;=`*P<%lO(t!aIYliSaPlW!b`!dpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx}-_}!OKQ!O!P-_!P!Q$q!Q!^-_!^!_*V!_!a&X!a#S-_#S#T1k#T#s-_#s$f$q$f;'S-_;'S;=`3X<%l?Ah-_?Ah?BY$q?BY?Mn-_?MnO$q!aK_kiSaPlW!b`!dpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx!P-_!P!Q$q!Q!^-_!^!_*V!_!`&X!`!aMS!a#S-_#S#T1k#T#s-_#s$f$q$f;'S-_;'S;=`3X<%l?Ah-_?Ah?BY$q?BY?Mn-_?MnO$q!TM_XaP!b`!dp!fQOr&Xrs&}sv&Xwx(tx!^&X!^!_*V!_;'S&X;'S;=`*y<%lO&X!aNZ!ZiSgQaPlW!b`!dpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx}-_}!OMz!O!PMz!P!Q$q!Q![Mz![!]Mz!]!^-_!^!_*V!_!a&X!a!c-_!c!}Mz!}#R-_#R#SMz#S#T1k#T#oMz#o#s-_#s$f$q$f$}-_$}%OMz%O%W-_%W%oMz%o%p-_%p&aMz&a&b-_&b1pMz1p4UMz4U4dMz4d4e-_4e$ISMz$IS$I`-_$I`$IbMz$Ib$Je-_$Je$JgMz$Jg$Kh-_$Kh%#tMz%#t&/x-_&/x&EtMz&Et&FV-_&FV;'SMz;'S;:j!#|;:j;=`3X<%l?&r-_?&r?AhMz?Ah?BY$q?BY?MnMz?MnO$q!a!$PP;=`<%lMz!R!$ZY!b`!dpOq*Vqr!$yrs(Vsv*Vwx)ex!a*V!a!b!4t!b;'S*V;'S;=`*s<%lO*V!R!%Q]!b`!dpOr*Vrs(Vsv*Vwx)ex}*V}!O!%y!O!f*V!f!g!']!g#W*V#W#X!0`#X;'S*V;'S;=`*s<%lO*V!R!&QX!b`!dpOr*Vrs(Vsv*Vwx)ex}*V}!O!&m!O;'S*V;'S;=`*s<%lO*V!R!&vV!b`!dp!ePOr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!'dX!b`!dpOr*Vrs(Vsv*Vwx)ex!q*V!q!r!(P!r;'S*V;'S;=`*s<%lO*V!R!(WX!b`!dpOr*Vrs(Vsv*Vwx)ex!e*V!e!f!(s!f;'S*V;'S;=`*s<%lO*V!R!(zX!b`!dpOr*Vrs(Vsv*Vwx)ex!v*V!v!w!)g!w;'S*V;'S;=`*s<%lO*V!R!)nX!b`!dpOr*Vrs(Vsv*Vwx)ex!{*V!{!|!*Z!|;'S*V;'S;=`*s<%lO*V!R!*bX!b`!dpOr*Vrs(Vsv*Vwx)ex!r*V!r!s!*}!s;'S*V;'S;=`*s<%lO*V!R!+UX!b`!dpOr*Vrs(Vsv*Vwx)ex!g*V!g!h!+q!h;'S*V;'S;=`*s<%lO*V!R!+xY!b`!dpOr!+qrs!,hsv!+qvw!-Swx!.[x!`!+q!`!a!/j!a;'S!+q;'S;=`!0Y<%lO!+qq!,mV!dpOv!,hvx!-Sx!`!,h!`!a!-q!a;'S!,h;'S;=`!.U<%lO!,hP!-VTO!`!-S!`!a!-f!a;'S!-S;'S;=`!-k<%lO!-SP!-kO|PP!-nP;=`<%l!-Sq!-xS!dp|POv(Vx;'S(V;'S;=`(h<%lO(Vq!.XP;=`<%l!,ha!.aX!b`Or!.[rs!-Ssv!.[vw!-Sw!`!.[!`!a!.|!a;'S!.[;'S;=`!/d<%lO!.[a!/TT!b`|POr)esv)ew;'S)e;'S;=`)y<%lO)ea!/gP;=`<%l!.[!R!/sV!b`!dp|POr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!0]P;=`<%l!+q!R!0gX!b`!dpOr*Vrs(Vsv*Vwx)ex#c*V#c#d!1S#d;'S*V;'S;=`*s<%lO*V!R!1ZX!b`!dpOr*Vrs(Vsv*Vwx)ex#V*V#V#W!1v#W;'S*V;'S;=`*s<%lO*V!R!1}X!b`!dpOr*Vrs(Vsv*Vwx)ex#h*V#h#i!2j#i;'S*V;'S;=`*s<%lO*V!R!2qX!b`!dpOr*Vrs(Vsv*Vwx)ex#m*V#m#n!3^#n;'S*V;'S;=`*s<%lO*V!R!3eX!b`!dpOr*Vrs(Vsv*Vwx)ex#d*V#d#e!4Q#e;'S*V;'S;=`*s<%lO*V!R!4XX!b`!dpOr*Vrs(Vsv*Vwx)ex#X*V#X#Y!+q#Y;'S*V;'S;=`*s<%lO*V!R!4{Y!b`!dpOr!4trs!5ksv!4tvw!6Vwx!8]x!a!4t!a!b!:]!b;'S!4t;'S;=`!;r<%lO!4tq!5pV!dpOv!5kvx!6Vx!a!5k!a!b!7W!b;'S!5k;'S;=`!8V<%lO!5kP!6YTO!a!6V!a!b!6i!b;'S!6V;'S;=`!7Q<%lO!6VP!6lTO!`!6V!`!a!6{!a;'S!6V;'S;=`!7Q<%lO!6VP!7QOyPP!7TP;=`<%l!6Vq!7]V!dpOv!5kvx!6Vx!`!5k!`!a!7r!a;'S!5k;'S;=`!8V<%lO!5kq!7yS!dpyPOv(Vx;'S(V;'S;=`(h<%lO(Vq!8YP;=`<%l!5ka!8bX!b`Or!8]rs!6Vsv!8]vw!6Vw!a!8]!a!b!8}!b;'S!8];'S;=`!:V<%lO!8]a!9SX!b`Or!8]rs!6Vsv!8]vw!6Vw!`!8]!`!a!9o!a;'S!8];'S;=`!:V<%lO!8]a!9vT!b`yPOr)esv)ew;'S)e;'S;=`)y<%lO)ea!:YP;=`<%l!8]!R!:dY!b`!dpOr!4trs!5ksv!4tvw!6Vwx!8]x!`!4t!`!a!;S!a;'S!4t;'S;=`!;r<%lO!4t!R!;]V!b`!dpyPOr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!;uP;=`<%l!4t!V!{let l=a.type.id;if(l==by)return tc(a,o,t);if(l==yy)return tc(a,o,i);if(l==xy)return tc(a,o,r);if(l==H$&&n.length){let c=a.node,h=c.firstChild,f=h&&D$(h,o),u;if(f){for(let Q of n)if(Q.tag==f&&(!Q.attrs||Q.attrs(u||(u=Op(h,o))))){let $=c.lastChild,p=$.type.id==wy?$.from:c.to;if(p>h.to)return{parser:Q.parser,overlay:[{from:h.to,to:p}]}}}}if(s&&l==K$){let c=a.node,h;if(h=c.firstChild){let f=s[o.read(h.from,h.to)];if(f)for(let u of f){if(u.tagName&&u.tagName!=D$(c.parent,o))continue;let Q=c.lastChild;if(Q.type.id==Oc){let $=Q.from+1,p=Q.lastChild,m=Q.to-(p&&p.isError?0:1);if(m>$)return{parser:u.parser,overlay:[{from:$,to:m}],bracketed:!0}}else if(Q.type.id==J$)return{parser:u.parser,overlay:[{from:Q.from,to:Q.to}]}}}}return null})}var Iy=316,By=317,ip=1,Ny=2,Fy=3,Hy=4,Ky=318,Jy=320,ex=321,tx=5,Ox=6,ix=0,lc=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288],rp=125,rx=59,cc=47,nx=42,sx=43,ax=45,ox=60,lx=44,cx=63,hx=46,fx=91,dx=new Ge({start:!1,shift(O,e){return e==tx||e==Ox||e==Jy?O:e==ex},strict:!1}),ux=new z((O,e)=>{let{next:t}=O;(t==rp||t==-1||e.context)&&O.acceptToken(Ky)},{contextual:!0,fallback:!0}),Qx=new z((O,e)=>{let{next:t}=O,i;lc.indexOf(t)>-1||t==cc&&((i=O.peek(1))==cc||i==nx)||t!=rp&&t!=rx&&t!=-1&&!e.context&&O.acceptToken(Iy)},{contextual:!0}),$x=new z((O,e)=>{O.next==fx&&!e.context&&O.acceptToken(By)},{contextual:!0}),px=new z((O,e)=>{let{next:t}=O;if(t==sx||t==ax){if(O.advance(),t==O.next){O.advance();let i=!e.context&&e.canShift(ip);O.acceptToken(i?ip:Ny)}}else t==cx&&O.peek(1)==hx&&(O.advance(),O.advance(),(O.next<48||O.next>57)&&O.acceptToken(Fy))},{contextual:!0});function oc(O,e){return O>=65&&O<=90||O>=97&&O<=122||O==95||O>=192||!e&&O>=48&&O<=57}var mx=new z((O,e)=>{if(O.next!=ox||!e.dialectEnabled(ix)||(O.advance(),O.next==cc))return;let t=0;for(;lc.indexOf(O.next)>-1;)O.advance(),t++;if(oc(O.next,!0)){for(O.advance(),t++;oc(O.next,!1);)O.advance(),t++;for(;lc.indexOf(O.next)>-1;)O.advance(),t++;if(O.next==lx)return;for(let i=0;;i++){if(i==7){if(!oc(O.next,!0))return;break}if(O.next!="extends".charCodeAt(i))break;O.advance(),t++}}O.acceptToken(Hy,-t)}),gx=F({"get set async static":d.modifier,"for while do if else switch try catch finally return throw break continue default case defer":d.controlKeyword,"in of await yield void typeof delete instanceof as satisfies":d.operatorKeyword,"let var const using function class extends":d.definitionKeyword,"import export from":d.moduleKeyword,"with debugger new":d.keyword,TemplateString:d.special(d.string),super:d.atom,BooleanLiteral:d.bool,this:d.self,null:d.null,Star:d.modifier,VariableName:d.variableName,"CallExpression/VariableName TaggedTemplateExpression/VariableName":d.function(d.variableName),VariableDefinition:d.definition(d.variableName),Label:d.labelName,PropertyName:d.propertyName,PrivatePropertyName:d.special(d.propertyName),"CallExpression/MemberExpression/PropertyName":d.function(d.propertyName),"FunctionDeclaration/VariableDefinition":d.function(d.definition(d.variableName)),"ClassDeclaration/VariableDefinition":d.definition(d.className),"NewExpression/VariableName":d.className,PropertyDefinition:d.definition(d.propertyName),PrivatePropertyDefinition:d.definition(d.special(d.propertyName)),UpdateOp:d.updateOperator,"LineComment Hashbang":d.lineComment,BlockComment:d.blockComment,Number:d.number,String:d.string,Escape:d.escape,ArithOp:d.arithmeticOperator,LogicOp:d.logicOperator,BitOp:d.bitwiseOperator,CompareOp:d.compareOperator,RegExp:d.regexp,Equals:d.definitionOperator,Arrow:d.function(d.punctuation),": Spread":d.punctuation,"( )":d.paren,"[ ]":d.squareBracket,"{ }":d.brace,"InterpolationStart InterpolationEnd":d.special(d.brace),".":d.derefOperator,", ;":d.separator,"@":d.meta,TypeName:d.typeName,TypeDefinition:d.definition(d.typeName),"type enum interface implements namespace module declare":d.definitionKeyword,"abstract global Privacy readonly override":d.modifier,"is keyof unique infer asserts":d.operatorKeyword,JSXAttributeValue:d.attributeValue,JSXText:d.content,"JSXStartTag JSXStartCloseTag JSXSelfCloseEndTag JSXEndTag":d.angleBracket,"JSXIdentifier JSXNameSpacedName":d.tagName,"JSXAttribute/JSXIdentifier JSXAttribute/JSXNameSpacedName":d.attributeName,"JSXBuiltin/JSXIdentifier":d.standard(d.tagName)}),Px={__proto__:null,export:20,as:25,from:33,default:36,async:41,function:42,in:52,out:55,const:56,extends:60,this:64,true:72,false:72,null:84,void:88,typeof:92,super:108,new:142,delete:154,yield:163,await:167,class:172,public:235,private:235,protected:235,readonly:237,instanceof:256,satisfies:259,import:292,keyof:349,unique:353,infer:359,asserts:395,is:397,abstract:417,implements:419,type:421,let:424,var:426,using:429,interface:435,enum:439,namespace:445,module:447,declare:451,global:455,defer:471,for:476,of:485,while:488,with:492,do:496,if:500,else:502,switch:506,case:512,try:518,catch:522,finally:526,return:530,throw:534,break:538,continue:542,debugger:546},Sx={__proto__:null,async:129,get:131,set:133,declare:195,public:197,private:197,protected:197,static:199,abstract:201,override:203,readonly:209,accessor:211,new:401},Xx={__proto__:null,"<":193},np=Oe.deserialize({version:14,states:"$F|Q%TQlOOO%[QlOOO'_QpOOP(lO`OOO*zQ!0MxO'#CiO+RO#tO'#CjO+aO&jO'#CjO+oO#@ItO'#DaO.QQlO'#DgO.bQlO'#DrO%[QlO'#DzO0fQlO'#ESOOQ!0Lf'#E['#E[O1PQ`O'#EXOOQO'#Ep'#EpOOQO'#Il'#IlO1XQ`O'#GsO1dQ`O'#EoO1iQ`O'#EoO3hQ!0MxO'#JrO6[Q!0MxO'#JsO6uQ`O'#F]O6zQ,UO'#FtOOQ!0Lf'#Ff'#FfO7VO7dO'#FfO9XQMhO'#F|O9`Q`O'#F{OOQ!0Lf'#Js'#JsOOQ!0Lb'#Jr'#JrO9eQ`O'#GwOOQ['#K_'#K_O9pQ`O'#IYO9uQ!0LrO'#IZOOQ['#J`'#J`OOQ['#I_'#I_Q`QlOOQ`QlOOO9}Q!L^O'#DvO:UQlO'#EOO:]QlO'#EQO9kQ`O'#GsO:dQMhO'#CoO:rQ`O'#EnO:}Q`O'#EyO;hQMhO'#FeO;xQ`O'#GsOOQO'#K`'#K`O;}Q`O'#K`O<]Q`O'#G{O<]Q`O'#G|O<]Q`O'#HOO9kQ`O'#HRO=SQ`O'#HUO>kQ`O'#CeO>{Q`O'#HcO?TQ`O'#HiO?TQ`O'#HkO`QlO'#HmO?TQ`O'#HoO?TQ`O'#HrO?YQ`O'#HxO?_Q!0LsO'#IOO%[QlO'#IQO?jQ!0LsO'#ISO?uQ!0LsO'#IUO9uQ!0LrO'#IWO@QQ!0MxO'#CiOASQpO'#DlQOQ`OOO%[QlO'#EQOAjQ`O'#ETO:dQMhO'#EnOAuQ`O'#EnOBQQ!bO'#FeOOQ['#Cg'#CgOOQ!0Lb'#Dq'#DqOOQ!0Lb'#Jv'#JvO%[QlO'#JvOOQO'#Jy'#JyOOQO'#Ih'#IhOCQQpO'#EgOOQ!0Lb'#Ef'#EfOOQ!0Lb'#J}'#J}OC|Q!0MSO'#EgODWQpO'#EWOOQO'#Jx'#JxODlQpO'#JyOEyQpO'#EWODWQpO'#EgPFWO&2DjO'#CbPOOO)CD})CD}OOOO'#I`'#I`OFcO#tO,59UOOQ!0Lh,59U,59UOOOO'#Ia'#IaOFqO&jO,59UOGPQ!L^O'#DcOOOO'#Ic'#IcOGWO#@ItO,59{OOQ!0Lf,59{,59{OGfQlO'#IdOGyQ`O'#JtOIxQ!fO'#JtO+}QlO'#JtOJPQ`O,5:ROJgQ`O'#EpOJtQ`O'#KTOKPQ`O'#KSOKPQ`O'#KSOKXQ`O,5;^OK^Q`O'#KROOQ!0Ln,5:^,5:^OKeQlO,5:^OMcQ!0MxO,5:fONSQ`O,5:nONmQ!0LrO'#KQONtQ`O'#KPO9eQ`O'#KPO! YQ`O'#KPO! bQ`O,5;]O! gQ`O'#KPO!#lQ!fO'#JsOOQ!0Lh'#Ci'#CiO%[QlO'#ESO!$[Q!fO,5:sOOQS'#Jz'#JzOOQO-EtOOQ['#Jh'#JhOOQ[,5>u,5>uOOQ[-E<]-E<]O!TO`QlO,5>VO!LOQ`O,5>XO`QlO,5>ZO!LTQ`O,5>^O!LYQlO,5>dOOQ[,5>j,5>jO%[QlO,5>jO9uQ!0LrO,5>lOOQ[,5>n,5>nO#!dQ`O,5>nOOQ[,5>p,5>pO#!dQ`O,5>pOOQ[,5>r,5>rO##QQpO'#D_O%[QlO'#JvO##sQpO'#JvO##}QpO'#DmO#$`QpO'#DmO#&qQlO'#DmO#&xQ`O'#JuO#'QQ`O,5:WO#'VQ`O'#EtO#'eQ`O'#KUO#'mQ`O,5;_O#'rQpO'#DmO#(PQpO'#EVOOQ!0Lf,5:o,5:oO%[QlO,5:oO#(WQ`O,5:oO?YQ`O,5;YO!CUQpO,5;YO!C^QMhO,5;YO:dQMhO,5;YO#(`Q`O,5@bO#(eQ07dO,5:sOOQO-EPO$6^Q`O,5>POOQ[1G3i1G3iO`QlO1G3iOOQ[1G3o1G3oOOQ[1G3q1G3qO?TQ`O1G3sO$6cQlO1G3uO$:gQlO'#HtOOQ[1G3x1G3xO$:tQ`O'#HzO?YQ`O'#H|OOQ[1G4O1G4OO$:|QlO1G4OO9uQ!0LrO1G4UOOQ[1G4W1G4WOOQ!0Lb'#G_'#G_O9uQ!0LrO1G4YO9uQ!0LrO1G4[O$?TQ`O,5@bO!)[QlO,5;`O9eQ`O,5;`O?YQ`O,5:XO!)[QlO,5:XO!CUQpO,5:XO$?YQ?MtO,5:XOOQO,5;`,5;`O$?dQpO'#IeO$?zQ`O,5@aOOQ!0Lf1G/r1G/rO$@SQpO'#IkO$@^Q`O,5@pOOQ!0Lb1G0y1G0yO#$`QpO,5:XOOQO'#Ig'#IgO$@fQpO,5:qOOQ!0Ln,5:q,5:qO#(ZQ`O1G0ZOOQ!0Lf1G0Z1G0ZO%[QlO1G0ZOOQ!0Lf1G0t1G0tO?YQ`O1G0tO!CUQpO1G0tO!C^QMhO1G0tOOQ!0Lb1G5|1G5|O!ByQ!0LrO1G0^OOQO1G0m1G0mO%[QlO1G0mO$@mQ!0LrO1G0mO$@xQ!0LrO1G0mO!CUQpO1G0^ODWQpO1G0^O$AWQ!0LrO1G0mOOQO1G0^1G0^O$AlQ!0MxO1G0mPOOO-E<[-E<[POOO1G.h1G.hOOOO1G/i1G/iO$AvQ!bO,5QQpO,5@}OOQ!0Lb1G3c1G3cOOQ[7+$V7+$VO@zQ`O7+$VO9uQ!0LrO7+$VO%>]Q`O7+$VO%[QlO1G6lO%[QlO1G6mO%>bQ!0LrO1G6lO%>lQlO1G3kO%>sQ`O1G3kO%>xQlO1G3kOOQ[7+)T7+)TO9uQ!0LrO7+)_O`QlO7+)aOOQ['#Kh'#KhOOQ['#JS'#JSO%?PQlO,5>`OOQ[,5>`,5>`O%[QlO'#HuO%?^Q`O'#HwOOQ[,5>f,5>fO9eQ`O,5>fOOQ[,5>h,5>hOOQ[7+)j7+)jOOQ[7+)p7+)pOOQ[7+)t7+)tOOQ[7+)v7+)vO%?cQpO1G5|O%?}Q?MtO1G0zO%@XQ`O1G0zOOQO1G/s1G/sO%@dQ?MtO1G/sO?YQ`O1G/sO!)[QlO'#DmOOQO,5?P,5?POOQO-ERQ`O7+,WO&>WQ`O7+,XO%[QlO7+,WO%[QlO7+,XOOQ[7+)V7+)VO&>]Q`O7+)VO&>bQlO7+)VO&>iQ`O7+)VOOQ[<nQ`O,5>aOOQ[,5>c,5>cO&>sQ`O1G4QO9eQ`O7+&fO!)[QlO7+&fOOQO7+%_7+%_O&>xQ?MtO1G6ZO?YQ`O7+%_OOQ!0Lf<yQ?MvO,5?aO'@|Q?MvO,5?cO'CPQ?MvO7+'|O'DuQMjOG27TOOQO<VO!l$xO#jROe!iOpkOrPO(T)]O(VTO(YUO(aVO(o[O~O!]$_Oa$qa'z$qa'w$qa!k$qa!Y$qa!_$qa%i$qa!g$qa~Ol)dO~P!&zOh%VOp%WOr%XOs$tOt$tOz%YO|%ZO!O%]O!S${O!_$|O!i%bO!l$xO#j%cO$W%`O$t%^O$v%_O$y%aO(T(vO(VTO(YUO(a$uO(y$}O(z%PO~Og(pP~P!,TO!Q)iO!g)hO!_$^X$Z$^X$]$^X$_$^X$f$^X~O!g)hO!_({X$Z({X$]({X$_({X$f({X~O!Q)iO~P!.^O!Q)iO!_({X$Z({X$]({X$_({X$f({X~O!_)kO$Z)oO$])jO$_)jO$f)pO~O![)sO~P!)[O$]$hO$_$gO$f)wO~On$zX!Q$zX#S$zX'y$zX(y$zX(z$zX~OgmXg$zXnmX!]mX#`mX~P!0SOx)yO(b)zO(c)|O~On*VO!Q*OO'y*PO(y$}O(z%PO~Og)}O~P!1WOg*WO~Oh%VOr%XOs$tOt$tOz%YO|%ZO!OVO!l$xO#jVO!l$xO#jROe!iOpkOrPO(VTO(YUO(aVO(o[O~O(T=QO~P#$qO!]-]O!^(iX~O!^-_O~O!g-VO#`-UO!]#hX!^#hX~O!]-`O!^(xX~O!^-bO~O!c-cO!d-cO(U!lO~P#$`O!^-fO~P'_On-iO!_'`O~O!Y-nO~Os!{a!b!{a!c!{a!d!{a#T!{a#U!{a#V!{a#W!{a#X!{a#[!{a#]!{a(U!{a(V!{a(Y!{a(e!{a(o!{a~P!#vO!p-sO#`-qO~PChO!c-uO!d-uO(U!lO~PDWOa%nO#`-qO'z%nO~Oa%nO!g#vO#`-qO'z%nO~Oa%nO!g#vO!p-sO#`-qO'z%nO(r'pO~O(P'xO(Q'xO(R-zO~Ov-{O~O!Y'Wa!]'Wa~P!:tO![.PO!Y'WX!]'WX~P%[O!](VO!Y(ha~O!Y(ha~PHRO!](^O!Y(va~O!S%hO![.TO!_%iO(T%gO!Y'^X!]'^X~O#`.VO!](ta!k(taa(ta'z(ta~O!g#vO~P#,wO!](jO!k(sa~O!S%hO!_%iO#j.ZO(T%gO~Op.`O!S%hO![.]O!_%iO!|]O#i._O#j.]O(T%gO!]'aX!k'aX~OR.dO!l#xO~Oh%VOn.gO!_'`O%i.fO~Oa#ci!]#ci'z#ci'w#ci!Y#ci!k#civ#ci!_#ci%i#ci!g#ci~P!:tOn>]O!Q*OO'y*PO(y$}O(z%PO~O#k#_aa#_a#`#_a'z#_a!]#_a!k#_a!_#_a!Y#_a~P#/sO#k(`XP(`XR(`X[(`Xa(`Xj(`Xr(`X!S(`X!l(`X!p(`X#R(`X#n(`X#o(`X#p(`X#q(`X#r(`X#s(`X#t(`X#u(`X#v(`X#x(`X#z(`X#{(`X'z(`X(a(`X(r(`X!k(`X!Y(`X'w(`Xv(`X!_(`X%i(`X!g(`X~P!6kO!].tO!k(kX~P!:tO!k.wO~O!Y.yO~OP$[OR#zO!Q#yO!S#{O!l#xO!p$[O(aVO[#mia#mij#mir#mi!]#mi#R#mi#o#mi#p#mi#q#mi#r#mi#s#mi#t#mi#u#mi#v#mi#x#mi#z#mi#{#mi'z#mi(r#mi(y#mi(z#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#n#mi~P#3cO#n$OO~P#3cOP$[OR#zOr$aO!Q#yO!S#{O!l#xO!p$[O#n$OO#o$PO#p$PO#q$PO(aVO[#mia#mij#mi!]#mi#R#mi#s#mi#t#mi#u#mi#v#mi#x#mi#z#mi#{#mi'z#mi(r#mi(y#mi(z#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#r#mi~P#6QO#r$QO~P#6QOP$[OR#zO[$cOj$ROr$aO!Q#yO!S#{O!l#xO!p$[O#R$RO#n$OO#o$PO#p$PO#q$PO#r$QO#s$RO#t$RO#u$bO(aVOa#mi!]#mi#x#mi#z#mi#{#mi'z#mi(r#mi(y#mi(z#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#v#mi~P#8oOP$[OR#zO[$cOj$ROr$aO!Q#yO!S#{O!l#xO!p$[O#R$RO#n$OO#o$PO#p$PO#q$PO#r$QO#s$RO#t$RO#u$bO#v$SO(aVO(z#}Oa#mi!]#mi#z#mi#{#mi'z#mi(r#mi(y#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#x$UO~P#;VO#x#mi~P#;VO#v$SO~P#8oOP$[OR#zO[$cOj$ROr$aO!Q#yO!S#{O!l#xO!p$[O#R$RO#n$OO#o$PO#p$PO#q$PO#r$QO#s$RO#t$RO#u$bO#v$SO#x$UO(aVO(y#|O(z#}Oa#mi!]#mi#{#mi'z#mi(r#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#z#mi~P#={O#z$WO~P#={OP]XR]X[]Xj]Xr]X!Q]X!S]X!l]X!p]X#R]X#S]X#`]X#kfX#n]X#o]X#p]X#q]X#r]X#s]X#t]X#u]X#v]X#x]X#z]X#{]X$Q]X(a]X(r]X(y]X(z]X!]]X!^]X~O$O]X~P#@jOP$[OR#zO[]O!Q*OO'y*PO(y$}O(z%POP#miR#mi!S#mi!l#mi!p#mi#n#mi#o#mi#p#mi#q#mi(a#mi~P#EyO!]/POg(pX~P!1WOg/RO~Oa$Pi!]$Pi'z$Pi'w$Pi!Y$Pi!k$Piv$Pi!_$Pi%i$Pi!g$Pi~P!:tO$]/SO$_/SO~O$]/TO$_/TO~O!g)hO#`/UO!_$cX$Z$cX$]$cX$_$cX$f$cX~O![/VO~O!_)kO$Z/XO$])jO$_)jO$f/YO~O!]VO!l$xO#j^O!Q*OO'y*PO(y$}O(z%POP#miR#mi!S#mi!l#mi!p#mi#n#mi#o#mi#p#mi#q#mi(a#mi~P&,QO#S$dOP(`XR(`X[(`Xj(`Xn(`Xr(`X!Q(`X!S(`X!l(`X!p(`X#R(`X#n(`X#o(`X#p(`X#q(`X#r(`X#s(`X#t(`X#u(`X#v(`X#x(`X#z(`X#{(`X$O(`X'y(`X(a(`X(r(`X(y(`X(z(`X!](`X!^(`X~O$O$Pi!]$Pi!^$Pi~P#BwO$O!ri!^!ri~P$+oOg']a!]']a~P!1WO!^7nO~O!]'da!^'da~P#BwO!Y7oO~P#/sO!g#vO(r'pO!]'ea!k'ea~O!]/pO!k)Oi~O!]/pO!g#vO!k)Oi~Og$|q!]$|q#`$|q$O$|q~P!1WO!Y'ga!]'ga~P#/sO!g7vO~O!]/yO!Y)Pi~P#/sO!]/yO!Y)Pi~O!Y7yO~Oh%VOr8OO!l%eO(r'pO~Oj8QO!g#vO~Or8TO!g#vO(r'pO~O!Q*OO'y*PO(z%POn'ja(y'ja!]'ja#`'ja~Og'ja$O'ja~P&5RO!Q*OO'y*POn'la(y'la(z'la!]'la#`'la~Og'la$O'la~P&5tOg(_q!](_q~P!1WO#`8VOg(_q!](_q~P!1WO!Y8WO~Og%Oq!]%Oq#`%Oq$O%Oq~P!1WOa$oy!]$oy'z$oy'w$oy!Y$oy!k$oyv$oy!_$oy%i$oy!g$oy~P!:tO!g6rO~O!]5[O!_)Qa~O!_'`OP$TaR$Ta[$Taj$Tar$Ta!Q$Ta!S$Ta!]$Ta!l$Ta!p$Ta#R$Ta#n$Ta#o$Ta#p$Ta#q$Ta#r$Ta#s$Ta#t$Ta#u$Ta#v$Ta#x$Ta#z$Ta#{$Ta(a$Ta(r$Ta(y$Ta(z$Ta~O%i7WO~P&8fO%^8[Oa%[i!_%[i'z%[i!]%[i~Oa#cy!]#cy'z#cy'w#cy!Y#cy!k#cyv#cy!_#cy%i#cy!g#cy~P!:tO[8^O~Ob8`O(T+qO(VTO(YUO~O!]1TO!^)Xi~O`8dO~O(e(|O!]'pX!^'pX~O!]5uO!^)Ua~O!^8nO~P%;eO(o!sO~P$&YO#[8oO~O!_1oO~O!_1oO%i8qO~On8tO!_1oO%i8qO~O[8yO!]'sa!^'sa~O!]1zO!^)Vi~O!k8}O~O!k9OO~O!k9RO~O!k9RO~P%[Oa9TO~O!g9UO~O!k9VO~O!](wi!^(wi~P#BwOa%nO#`9_O'z%nO~O!](ty!k(tya(ty'z(ty~P!:tO!](jO!k(sy~O%i9bO~P&8fO!_'`O%i9bO~O#k$|qP$|qR$|q[$|qa$|qj$|qr$|q!S$|q!]$|q!l$|q!p$|q#R$|q#n$|q#o$|q#p$|q#q$|q#r$|q#s$|q#t$|q#u$|q#v$|q#x$|q#z$|q#{$|q'z$|q(a$|q(r$|q!k$|q!Y$|q'w$|q#`$|qv$|q!_$|q%i$|q!g$|q~P#/sO#k'jaP'jaR'ja['jaa'jaj'jar'ja!S'ja!l'ja!p'ja#R'ja#n'ja#o'ja#p'ja#q'ja#r'ja#s'ja#t'ja#u'ja#v'ja#x'ja#z'ja#{'ja'z'ja(a'ja(r'ja!k'ja!Y'ja'w'jav'ja!_'ja%i'ja!g'ja~P&5RO#k'laP'laR'la['laa'laj'lar'la!S'la!l'la!p'la#R'la#n'la#o'la#p'la#q'la#r'la#s'la#t'la#u'la#v'la#x'la#z'la#{'la'z'la(a'la(r'la!k'la!Y'la'w'lav'la!_'la%i'la!g'la~P&5tO#k%OqP%OqR%Oq[%Oqa%Oqj%Oqr%Oq!S%Oq!]%Oq!l%Oq!p%Oq#R%Oq#n%Oq#o%Oq#p%Oq#q%Oq#r%Oq#s%Oq#t%Oq#u%Oq#v%Oq#x%Oq#z%Oq#{%Oq'z%Oq(a%Oq(r%Oq!k%Oq!Y%Oq'w%Oq#`%Oqv%Oq!_%Oq%i%Oq!g%Oq~P#/sO!]'Yi!k'Yi~P!:tO$O#cq!]#cq!^#cq~P#BwO(y$}OP%aaR%aa[%aaj%aar%aa!S%aa!l%aa!p%aa#R%aa#n%aa#o%aa#p%aa#q%aa#r%aa#s%aa#t%aa#u%aa#v%aa#x%aa#z%aa#{%aa$O%aa(a%aa(r%aa!]%aa!^%aa~On%aa!Q%aa'y%aa(z%aa~P&IyO(z%POP%caR%ca[%caj%car%ca!S%ca!l%ca!p%ca#R%ca#n%ca#o%ca#p%ca#q%ca#r%ca#s%ca#t%ca#u%ca#v%ca#x%ca#z%ca#{%ca$O%ca(a%ca(r%ca!]%ca!^%ca~On%ca!Q%ca'y%ca(y%ca~P&LQOn>^O!Q*OO'y*PO(z%PO~P&IyOn>^O!Q*OO'y*PO(y$}O~P&LQOR0kO!Q0kO!S0lO#S$dOP}a[}aj}an}ar}a!l}a!p}a#R}a#n}a#o}a#p}a#q}a#r}a#s}a#t}a#u}a#v}a#x}a#z}a#{}a$O}a'y}a(a}a(r}a(y}a(z}a!]}a!^}a~O!Q*OO'y*POP$saR$sa[$saj$san$sar$sa!S$sa!l$sa!p$sa#R$sa#n$sa#o$sa#p$sa#q$sa#r$sa#s$sa#t$sa#u$sa#v$sa#x$sa#z$sa#{$sa$O$sa(a$sa(r$sa(y$sa(z$sa!]$sa!^$sa~O!Q*OO'y*POP$uaR$ua[$uaj$uan$uar$ua!S$ua!l$ua!p$ua#R$ua#n$ua#o$ua#p$ua#q$ua#r$ua#s$ua#t$ua#u$ua#v$ua#x$ua#z$ua#{$ua$O$ua(a$ua(r$ua(y$ua(z$ua!]$ua!^$ua~On>^O!Q*OO'y*PO(y$}O(z%PO~OP%TaR%Ta[%Taj%Tar%Ta!S%Ta!l%Ta!p%Ta#R%Ta#n%Ta#o%Ta#p%Ta#q%Ta#r%Ta#s%Ta#t%Ta#u%Ta#v%Ta#x%Ta#z%Ta#{%Ta$O%Ta(a%Ta(r%Ta!]%Ta!^%Ta~P''VO$O$mq!]$mq!^$mq~P#BwO$O$oq!]$oq!^$oq~P#BwO!^9oO~O$O9pO~P!1WO!g#vO!]'ei!k'ei~O!g#vO(r'pO!]'ei!k'ei~O!]/pO!k)Oq~O!Y'gi!]'gi~P#/sO!]/yO!Y)Pq~Or9wO!g#vO(r'pO~O[9yO!Y9xO~P#/sO!Y9xO~Oj:PO!g#vO~Og(_y!](_y~P!1WO!]'na!_'na~P#/sOa%[q!_%[q'z%[q!]%[q~P#/sO[:UO~O!]1TO!^)Xq~O`:YO~O#`:ZO!]'pa!^'pa~O!]5uO!^)Ui~P#BwO!S:]O~O!_1oO%i:`O~O(VTO(YUO(e:eO~O!]1zO!^)Vq~O!k:hO~O!k:iO~O!k:jO~O!k:jO~P%[O#`:mO!]#hy!^#hy~O!]#hy!^#hy~P#BwO%i:rO~P&8fO!_'`O%i:rO~O$O#|y!]#|y!^#|y~P#BwOP$|iR$|i[$|ij$|ir$|i!S$|i!l$|i!p$|i#R$|i#n$|i#o$|i#p$|i#q$|i#r$|i#s$|i#t$|i#u$|i#v$|i#x$|i#z$|i#{$|i$O$|i(a$|i(r$|i!]$|i!^$|i~P''VO!Q*OO'y*PO(z%POP'iaR'ia['iaj'ian'iar'ia!S'ia!l'ia!p'ia#R'ia#n'ia#o'ia#p'ia#q'ia#r'ia#s'ia#t'ia#u'ia#v'ia#x'ia#z'ia#{'ia$O'ia(a'ia(r'ia(y'ia!]'ia!^'ia~O!Q*OO'y*POP'kaR'ka['kaj'kan'kar'ka!S'ka!l'ka!p'ka#R'ka#n'ka#o'ka#p'ka#q'ka#r'ka#s'ka#t'ka#u'ka#v'ka#x'ka#z'ka#{'ka$O'ka(a'ka(r'ka(y'ka(z'ka!]'ka!^'ka~O(y$}OP%aiR%ai[%aij%ain%air%ai!Q%ai!S%ai!l%ai!p%ai#R%ai#n%ai#o%ai#p%ai#q%ai#r%ai#s%ai#t%ai#u%ai#v%ai#x%ai#z%ai#{%ai$O%ai'y%ai(a%ai(r%ai(z%ai!]%ai!^%ai~O(z%POP%ciR%ci[%cij%cin%cir%ci!Q%ci!S%ci!l%ci!p%ci#R%ci#n%ci#o%ci#p%ci#q%ci#r%ci#s%ci#t%ci#u%ci#v%ci#x%ci#z%ci#{%ci$O%ci'y%ci(a%ci(r%ci(y%ci!]%ci!^%ci~O$O$oy!]$oy!^$oy~P#BwO$O#cy!]#cy!^#cy~P#BwO!g#vO!]'eq!k'eq~O!]/pO!k)Oy~O!Y'gq!]'gq~P#/sOr:|O!g#vO(r'pO~O[;QO!Y;PO~P#/sO!Y;PO~Og(_!R!](_!R~P!1WOa%[y!_%[y'z%[y!]%[y~P#/sO!]1TO!^)Xy~O!]5uO!^)Uq~O(T;XO~O!_1oO%i;[O~O!k;_O~O%i;dO~P&8fOP$|qR$|q[$|qj$|qr$|q!S$|q!l$|q!p$|q#R$|q#n$|q#o$|q#p$|q#q$|q#r$|q#s$|q#t$|q#u$|q#v$|q#x$|q#z$|q#{$|q$O$|q(a$|q(r$|q!]$|q!^$|q~P''VO!Q*OO'y*PO(z%POP'jaR'ja['jaj'jan'jar'ja!S'ja!l'ja!p'ja#R'ja#n'ja#o'ja#p'ja#q'ja#r'ja#s'ja#t'ja#u'ja#v'ja#x'ja#z'ja#{'ja$O'ja(a'ja(r'ja(y'ja!]'ja!^'ja~O!Q*OO'y*POP'laR'la['laj'lan'lar'la!S'la!l'la!p'la#R'la#n'la#o'la#p'la#q'la#r'la#s'la#t'la#u'la#v'la#x'la#z'la#{'la$O'la(a'la(r'la(y'la(z'la!]'la!^'la~OP%OqR%Oq[%Oqj%Oqr%Oq!S%Oq!l%Oq!p%Oq#R%Oq#n%Oq#o%Oq#p%Oq#q%Oq#r%Oq#s%Oq#t%Oq#u%Oq#v%Oq#x%Oq#z%Oq#{%Oq$O%Oq(a%Oq(r%Oq!]%Oq!^%Oq~P''VOg%e!Z!]%e!Z#`%e!Z$O%e!Z~P!1WO!Y;hO~P#/sOr;iO!g#vO(r'pO~O[;kO!Y;hO~P#/sO!]'pq!^'pq~P#BwO!]#h!Z!^#h!Z~P#BwO#k%e!ZP%e!ZR%e!Z[%e!Za%e!Zj%e!Zr%e!Z!S%e!Z!]%e!Z!l%e!Z!p%e!Z#R%e!Z#n%e!Z#o%e!Z#p%e!Z#q%e!Z#r%e!Z#s%e!Z#t%e!Z#u%e!Z#v%e!Z#x%e!Z#z%e!Z#{%e!Z'z%e!Z(a%e!Z(r%e!Z!k%e!Z!Y%e!Z'w%e!Z#`%e!Zv%e!Z!_%e!Z%i%e!Z!g%e!Z~P#/sOr;tO!g#vO(r'pO~O!Y;uO~P#/sOr;|O!g#vO(r'pO~O!Y;}O~P#/sOP%e!ZR%e!Z[%e!Zj%e!Zr%e!Z!S%e!Z!l%e!Z!p%e!Z#R%e!Z#n%e!Z#o%e!Z#p%e!Z#q%e!Z#r%e!Z#s%e!Z#t%e!Z#u%e!Z#v%e!Z#x%e!Z#z%e!Z#{%e!Z$O%e!Z(a%e!Z(r%e!Z!]%e!Z!^%e!Z~P''VOrROe!iOpkOrPO(T)]O(VTO(YUO(aVO(o[O~O!]WO!l$xO#jgPPP!>oI[PPPPPPPPP!BOP!C]PPI[!DnPI[PI[I[I[I[I[PI[!FQP!I[P!LbP!Lf!Lp!Lt!LtP!IXP!Lx!LxP#!OP#!SI[PI[#!Y#%_CjA^PA^PA^A^P#&lA^A^#)OA^#+vA^#.SA^A^#.r#1W#1W#1]#1f#1W#1qPP#1WPA^#2ZA^#6YA^A^6mPPP#:_PPP#:x#:xP#:xP#;`#:xPP#;fP#;]P#;]#;y#;]#P#>V#>]#>k#>q#>{#?R#?]#?c#?s#?y#@k#@}#AT#AZ#Ai#BO#Cs#DR#DY#Et#FS#Gt#HS#HY#H`#Hf#Hp#Hv#H|#IW#Ij#IpPPPPPPPPPPP#IvPPPPPPP#Jk#Mx$ b$ i$ qPPP$']P$'f$*_$0x$0{$1O$1}$2Q$2X$2aP$2g$2jP$3W$3[$4S$5b$5g$5}PP$6S$6Y$6^$6a$6e$6i$7e$7|$8e$8i$8l$8o$8y$8|$9Q$9UR!|RoqOXst!Z#d%m&r&t&u&w,s,x2[2_Y!vQ'`-e1o5{Q%tvQ%|yQ&T|Q&j!VS'W!e-]Q'f!iS'l!r!yU*k$|*Z*oQ+o%}S+|&V&WQ,d&dQ-c'_Q-m'gQ-u'mQ0[*qQ1b,OQ1y,eR<{SU+P%]S!S!nQ!r!v!y!z$|'W'_'`'l'm'n*k*o*q*r-]-c-e-u0[0_1o5{5}%[$ti#v$b$c$d$x${%O%Q%^%_%c)y*R*T*V*Y*a*g*w*x+f+i,S,V.f/P/d/m/x/y/{0`0b0i0j0o1f1i1q3c4^4_4j4o5Q5[5_6S7W7v8Q8V8[8q9b9p9y:P:`:r;Q;[;d;kP>X>Y>]>^Q&X|Q'U!eS'[%i-`Q+t&PQ,P&WQ,f&gQ0n+SQ1Y+uQ1_+{Q2Q,jQ2R,kQ5f1TQ5o1aQ6[1zQ6_1|Q6`2PQ8`5gQ8c5lQ8|6bQ:X8dQ:f8yQ;V:YR<}*ZrnOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_R,h&k&z^OPXYstuvwz!Z!`!g!j!o#S#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n%m%t&R&k&n&o&r&t&u&w&{'T'b'r(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mR>S[#]WZ#W#Z'X(T!b%jm#h#i#l$x%e%h(^(h(i(j*Y*^*b+Z+[+^,o-V.T.Z.[.]._/m/p2d3[3]4a6r7TQ%wxQ%{yW&Q|&V&W,OQ&_!TQ'c!hQ'e!iQ(q#sS+n%|%}Q+r&PQ,_&bQ,c&dS-l'f'gQ.i(rQ1R+oQ1X+uQ1Z+vQ1^+zQ1t,`S1x,d,eQ2|-mQ5e1TQ5i1WQ5n1`Q6Z1yQ8_5gQ8b5kQ8f5pQ:T8^R;T:U!U$zi$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y!^%yy!i!u%{%|%}'V'e'f'g'k'u*j+n+o-Y-l-m-t0R0U1R2u2|3T4r4s4v7}9{Q+h%wQ,T&[Q,W&]Q,b&dQ.h(qQ1s,_U1w,c,d,eQ3e.iQ6U1tS6Y1x1yQ8x6Z#f>T#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^o>UPS&[!Q&iQ&]!RQ&^!SU*}%[%d=sR,R&Y%]%Si#v$b$c$d$x${%O%Q%^%_%c)y*R*T*V*Y*a*g*w*x+f+i,S,V.f/P/d/m/x/y/{0`0b0i0j0o1f1i1q3c4^4_4j4o5Q5[5_6S7W7v8Q8V8[8q9b9p9y:P:`:r;Q;[;d;kP>X>Y>]>^T)z$u){V+P%]S$i$^c#Y#e%q%s%u(S(Y(t(y)R)S)T)U)V)W)X)Y)Z)[)^)`)b)g)q+d+x-Z-x-}.S.U.s.v.z.|.}/O/b0p2k2n3O3V3k3p3q3r3s3t3u3v3w3x3y3z3{3|4P4Q4X5X5c6u6{7Q7a7b7k7l8k9X9]9g9m9n:o;W;`SQ'Y!eR2q-]!W!nQ!e!r!v!y!z$|'W'_'`'l'm'n*Z*k*o*q*r-]-c-e-u0[0_1o5{5}R1l,ZnqOXst!Z#d%m&r&t&u&w,s,x2[2_Q&y!^Q'v!xS(s#u<^Q+l%zQ,]&_Q,^&aQ-j'dQ-w'oS.r(x=PS0q+X=ZQ1P+mQ1n,[Q2c,zQ2e,{Q2m-WQ2z-kQ2}-oS5Y0r=eQ5a1QS5d1S=fQ6t2oQ6x2{Q6}3SQ8]5bQ9Y6vQ9Z6yQ9^7OR:l9V$d$]c#Y#e%s%u(S(Y(t(y)R)S)T)U)V)W)X)Y)Z)[)^)`)b)g)q+d+x-Z-x-}.S.U.s.v.z.}/O/b0p2k2n3O3V3k3p3q3r3s3t3u3v3w3x3y3z3{3|4P4Q4X5X5c6u6{7Q7a7b7k7l8k9X9]9g9m9n:o;W;`SS#q]SU$fd)_,mS(p#p'iU*v%R(w4OU0m+O.n7gQ5^0xQ7V3`Q9d7YR:s9em!tQ!r!v!y!z'`'l'm'n-e-u1o5{5}Q't!uS(f#g2US-s'k'wQ/s*]Q0R*jQ3U-vQ4f/tQ4r0TQ4s0UQ4x0^Q7r4`S7}4t4vS8R4y4{Q9r7sQ9v7yQ9{8OQ:Q8TS:{9w9xS;g:|;PS;s;h;iS;{;t;uSSR=o>R%^bOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&o&r&t&u&w&{'T'b'r(T(V(](d(x(z)O)}*i+X+]+g,p,s,x-i-q.P.V.g.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3d3l4z6T6e6f6i6|7[8t9T9_Q%fj!^%xy!i!u%{%|%}'V'e'f'g'k'u*j+n+o-Y-l-m-t0R0U1R2u2|3T4r4s4v7}9{S&Oz!jQ+k%yQ,a&dW1v,b,c,d,eU6X1w1x1yS8w6Y6ZQ:d8x!r=j$Z$n'X)s-U-X/V2p4T5w6s:Z:mSQ=t>QR=u>R%QeOPXYstuvw!Z!`!g!o#S#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&r&t&u&w&{'T'b'r(V(](d(x(z)O)}*i+X+]+g,p,s,x-i-q.P.V.g.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3d3l4z6T6e6f6i6|7[8t9T9_Y#bWZ#W#Z(T!b%jm#h#i#l$x%e%h(^(h(i(j*Y*^*b+Z+[+^,o-V.T.Z.[.]._/m/p2d3[3]4a6r7TQ,n&o!p=k$Z$n)s-U-X/V2p4T5w6s:Z:mSR=n'XU']!e%i*ZR2s-`%SdOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&r&t&u&w&{'T'b'r(T(V(](d(x(z)O)}*i+X+],p,s,x-i-q.P.V.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3l4z6T6e6f6i6|8t9T9_!r)_$Z$n'X)s-U-X/V2p4T5w6s:Z:mSQ,m&oQ0x+gQ3`.gQ7Y3dR9e7[!b$Tc#Y%q(S(Y(t(y)Z)[)`)g+x-x-}.S.U.s.v/b0p3O3V3k3{5X5c6{7Q7a9]:oS)^)q-Z.|2k2n3p4P4X6u7b7k7l8k9X9g9m9n;W;`=vQ>X>ZR>Y>['QkOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n%m%t&R&k&n&o&r&t&u&w&{'T'X'b'r(T(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mSS$oh$pR4U/U'XgOPWXYZhstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n$p%m%t&R&k&n&o&r&t&u&w&{'T'X'b'r(T(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/U/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mST$kf$qQ$ifS)j$l)nR)v$qT$jf$qT)l$l)n'XhOPWXYZhstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n$p%m%t&R&k&n&o&r&t&u&w&{'T'X'b'r(T(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/U/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mST$oh$pQ$rhR)u$p%^jOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&o&r&t&u&w&{'T'b'r(T(V(](d(x(z)O)}*i+X+]+g,p,s,x-i-q.P.V.g.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3d3l4z6T6e6f6i6|7[8t9T9_!s>Q$Z$n'X)s-U-X/V2p4T5w6s:Z:mS#glOPXZst!Z!`!o#S#d#o#{$n%m&k&n&o&r&t&u&w&{'T'b)O)s*i+]+g,p,s,x-i.g/V/n0]0l1r2S2T2V2X2[2_2a3d4T4z6T6e6f6i7[8t9T!U%Ri$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y#f(w#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^Q+T%aQ/c*Oo4OP>X>YQ*c$zU*l$|*Z*oQ+U%bQ0W*m#f=q#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^n=rTQ=x>UQ=y>VR=z>W!U%Ri$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y#f(w#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^o4OP>X>Y>]>^Q,U&]Q1h,WQ5s1gR8h5tV*n$|*Z*oU*n$|*Z*oT5z1o5{S0P*i/nQ4w0]T8S4z:]Q+j%xQ0V*lQ1O+kQ1u,aQ6W1vQ8v6XQ:c8wR;^:d!U%Oi$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Yx*R$v)e*S*u+V/v0d0e4R4g5R5S5W7p8U:R:x=p=}>OS0`*t0a#f]>^nZ>[`=T3}7c7f7j9h:t:w;yS=_.l3iT=`7e9k!U%Qi$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y|*T$v)e*U*t+V/g/v0d0e4R4g4|5R5S5W7p8U:R:x=p=}>OS0b*u0c#f]>^nZ>[d=V3}7d7e7j9h9i:t:u:w;yS=a.m3jT=b7f9lrnOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_Q&f!UR,p&ornOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_R&f!UQ,Y&^R1d,RsnOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_Q1p,_S6R1s1tU8p6P6Q6US:_8r8sS;Y:^:aQ;m;ZR;w;nQ&m!VR,i&iR6_1|R:f8yW&Q|&V&W,OR1Z+vQ&r!WR,s&sR,y&xT2],x2_R,}&yQ,|&yR2f,}Q'y!{R-y'ySsOtQ#dXT%ps#dQ#OTR'{#OQ#RUR'}#RQ){$uR/`){Q#UVR(Q#UQ#XWU(W#X(X.QQ(X#YR.Q(YQ-^'YR2r-^Q.u(yS3m.u3nR3n.vQ-e'`R2v-eY!rQ'`-e1o5{R'j!rQ/Q)eR4S/QU#_W%h*YU(_#_(`.RQ(`#`R.R(ZQ-a']R2t-at`OXst!V!Z#d%m&i&k&r&t&u&w,s,x2[2_S#hZ%eU#r`#h.[R.[(jQ(k#jQ.X(gW.a(k.X3X7RQ3X.YR7R3YQ)n$lR/W)nQ$phR)t$pQ$`cU)a$`-|O>Z>[Q/z*eU4k/z4m7xQ4m/|R7x4lS*o$|*ZR0Y*ox*S$v)e*t*u+V/v0d0e4R4g5R5S5W7p8U:R:x=p=}>O!d.j(u)c*[*e.l.m.q/_/k/|0v1e3h4[4h4l5r7]7`7w7z8X8Z9t9|:S:};R;e;j;v>Z>[U/h*S.j7ca7c3}7e7f7j9h:t:w;yQ0a*tQ3i.lU4}0a3i9kR9k7e|*U$v)e*t*u+V/g/v0d0e4R4g4|5R5S5W7p8U:R:x=p=}>O!h.k(u)c*[*e.l.m.q/_/k/|0v1e3f3h4[4h4l5r7]7^7`7w7z8X8Z9t9|:S:};R;e;j;v>Z>[U/j*U.k7de7d3}7e7f7j9h9i:t:u:w;yQ0c*uQ3j.mU5P0c3j9lR9l7fQ*z%UR0g*zQ5]0vR8Y5]Q+_%kR0u+_Q5v1jS8j5v:[R:[8kQ,[&_R1m,[Q5{1oR8m5{Q1{,fS6]1{8zR8z6_Q1U+rW5h1U5j8a:VQ5j1XQ8a5iR:V8bQ+w&QR1[+wQ2_,xR6m2_YrOXst#dQ&v!ZQ+a%mQ,r&rQ,t&tQ,u&uQ,w&wQ2Y,sS2],x2_R6l2[Q%opQ&z!_Q&}!aQ'P!bQ'R!cQ'q!uQ+`%lQ+l%zQ,Q&XQ,h&mQ-P&|W-p'k's't'wQ-w'oQ0X*nQ1P+mQ1c,PS2O,i,lQ2g-OQ2h-RQ2i-SQ2}-oW3P-r-s-v-xQ5a1QQ5m1_Q5q1eQ6V1uQ6a2QQ6k2ZU6z3O3R3UQ6}3SQ8]5bQ8e5oQ8g5rQ8l5zQ8u6WQ8{6`S9[6{7PQ9^7OQ:W8cQ:b8vQ:g8|Q:n9]Q;U:XQ;]:cQ;a:oQ;l;VR;o;^Q%zyQ'd!iQ'o!uU+m%{%|%}Q-W'VU-k'e'f'gS-o'k'uQ0Q*jS1Q+n+oQ2o-YS2{-l-mQ3S-tS4p0R0UQ5b1RQ6v2uQ6y2|Q7O3TU7{4r4s4vQ9z7}R;O9{S$wi>PR*{%VU%Ui%V>PR0f*yQ$viS(u#v+iS)c$b$cQ)e$dQ*[$xS*e${*YQ*t%OQ*u%QQ+Q%^Q+R%_Q+V%cQ.lPQ=}>XQ>O>YQ>Z>]R>[>^Q+O%]Q.nSR#[WR'Z!el!tQ!r!v!y!z'`'l'm'n-e-u1o5{5}S'V!e-]U*j$|*Z*oS-Y'W'_S0U*k*qQ0^*rQ2u-cQ4v0[R4{0_R({#xQ!fQT-d'`-e]!qQ!r'`-e1o5{Q#p]R'i < TypeParamList in out const TypeDefinition extends ThisType this LiteralType ArithOp Number BooleanLiteral TemplateType InterpolationEnd Interpolation InterpolationStart NullType null VoidType void TypeofType typeof MemberExpression . PropertyName [ TemplateString Escape Interpolation super RegExp ] ArrayExpression Spread , } { ObjectExpression Property async get set PropertyDefinition Block : NewTarget new NewExpression ) ( ArgList UnaryExpression delete LogicOp BitOp YieldExpression yield AwaitExpression await ParenthesizedExpression ClassExpression class ClassBody MethodDeclaration Decorator @ MemberExpression PrivatePropertyName CallExpression TypeArgList CompareOp < declare Privacy static abstract override PrivatePropertyDefinition PropertyDeclaration readonly accessor Optional TypeAnnotation Equals StaticBlock FunctionExpression ArrowFunction ParamList ParamList ArrayPattern ObjectPattern PatternProperty Privacy readonly Arrow MemberExpression BinaryExpression ArithOp ArithOp ArithOp ArithOp BitOp CompareOp instanceof satisfies CompareOp BitOp BitOp BitOp LogicOp LogicOp ConditionalExpression LogicOp LogicOp AssignmentExpression UpdateOp PostfixExpression CallExpression InstantiationExpression TaggedTemplateExpression DynamicImport import ImportMeta JSXElement JSXSelfCloseEndTag JSXSelfClosingTag JSXIdentifier JSXBuiltin JSXIdentifier JSXNamespacedName JSXMemberExpression JSXSpreadAttribute JSXAttribute JSXAttributeValue JSXEscape JSXEndTag JSXOpenTag JSXFragmentTag JSXText JSXEscape JSXStartCloseTag JSXCloseTag PrefixCast < ArrowFunction TypeParamList SequenceExpression InstantiationExpression KeyofType keyof UniqueType unique ImportType InferredType infer TypeName ParenthesizedType FunctionSignature ParamList NewSignature IndexedType TupleType Label ArrayType ReadonlyType ObjectType MethodType PropertyType IndexSignature PropertyDefinition CallSignature TypePredicate asserts is NewSignature new UnionType LogicOp IntersectionType LogicOp ConditionalType ParameterizedType ClassDeclaration abstract implements type VariableDeclaration let var using TypeAliasDeclaration InterfaceDeclaration interface EnumDeclaration enum EnumBody NamespaceDeclaration namespace module AmbientDeclaration declare GlobalDeclaration global ClassDeclaration ClassBody AmbientFunctionDeclaration ExportGroup VariableName VariableName ImportDeclaration defer ImportGroup ForStatement for ForSpec ForInSpec ForOfSpec of WhileStatement while WithStatement with DoStatement do IfStatement if else SwitchStatement switch SwitchBody CaseLabel case DefaultLabel TryStatement try CatchClause catch FinallyClause finally ReturnStatement return ThrowStatement throw BreakStatement break ContinueStatement continue DebuggerStatement debugger LabeledStatement ExpressionStatement SingleExpression SingleClassItem",maxTerm:380,context:dx,nodeProps:[["isolate",-8,5,6,14,37,39,51,53,55,""],["group",-26,9,17,19,68,207,211,215,216,218,221,224,234,237,243,245,247,249,252,258,264,266,268,270,272,274,275,"Statement",-34,13,14,32,35,36,42,51,54,55,57,62,70,72,76,80,82,84,85,110,111,120,121,136,139,141,142,143,144,145,147,148,167,169,171,"Expression",-23,31,33,37,41,43,45,173,175,177,178,180,181,182,184,185,186,188,189,190,201,203,205,206,"Type",-3,88,103,109,"ClassItem"],["openedBy",23,"<",38,"InterpolationStart",56,"[",60,"{",73,"(",160,"JSXStartCloseTag"],["closedBy",-2,24,168,">",40,"InterpolationEnd",50,"]",61,"}",74,")",165,"JSXEndTag"]],propSources:[gx],skippedNodes:[0,5,6,278],repeatNodeCount:37,tokenData:"$Fq07[R!bOX%ZXY+gYZ-yZ[+g[]%Z]^.c^p%Zpq+gqr/mrs3cst:_tuEruvJSvwLkwx! Yxy!'iyz!(sz{!)}{|!,q|}!.O}!O!,q!O!P!/Y!P!Q!9j!Q!R#:O!R![#<_![!]#I_!]!^#Jk!^!_#Ku!_!`$![!`!a$$v!a!b$*T!b!c$,r!c!}Er!}#O$-|#O#P$/W#P#Q$4o#Q#R$5y#R#SEr#S#T$7W#T#o$8b#o#p$x#r#s$@U#s$f%Z$f$g+g$g#BYEr#BY#BZ$A`#BZ$ISEr$IS$I_$A`$I_$I|Er$I|$I}$Dk$I}$JO$Dk$JO$JTEr$JT$JU$A`$JU$KVEr$KV$KW$A`$KW&FUEr&FU&FV$A`&FV;'SEr;'S;=`I|<%l?HTEr?HT?HU$A`?HUOEr(n%d_$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z&j&hT$i&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c&j&zP;=`<%l&c'|'U]$i&j(Z!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!b(SU(Z!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!b(iP;=`<%l'}'|(oP;=`<%l&}'[(y]$i&j(WpOY(rYZ&cZr(rrs&cs!^(r!^!_)r!_#O(r#O#P&c#P#o(r#o#p)r#p;'S(r;'S;=`*a<%lO(rp)wU(WpOY)rZr)rs#O)r#P;'S)r;'S;=`*Z<%lO)rp*^P;=`<%l)r'[*dP;=`<%l(r#S*nX(Wp(Z!bOY*gZr*grs'}sw*gwx)rx#O*g#P;'S*g;'S;=`+Z<%lO*g#S+^P;=`<%l*g(n+dP;=`<%l%Z07[+rq$i&j(Wp(Z!b'|0/lOX%ZXY+gYZ&cZ[+g[p%Zpq+gqr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p$f%Z$f$g+g$g#BY%Z#BY#BZ+g#BZ$IS%Z$IS$I_+g$I_$JT%Z$JT$JU+g$JU$KV%Z$KV$KW+g$KW&FU%Z&FU&FV+g&FV;'S%Z;'S;=`+a<%l?HT%Z?HT?HU+g?HUO%Z07[.ST(X#S$i&j'}0/lO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c07[.n_$i&j(Wp(Z!b'}0/lOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)3p/x`$i&j!p),Q(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`0z!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW1V`#v(Ch$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`2X!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW2d_#v(Ch$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'At3l_(V':f$i&j(Z!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k(^4r_$i&j(Z!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k&z5vX$i&jOr5qrs6cs!^5q!^!_6y!_#o5q#o#p6y#p;'S5q;'S;=`7h<%lO5q&z6jT$d`$i&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c`6|TOr6yrs7]s;'S6y;'S;=`7b<%lO6y`7bO$d``7eP;=`<%l6y&z7kP;=`<%l5q(^7w]$d`$i&j(Z!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!r8uZ(Z!bOY8pYZ6yZr8prs9hsw8pwx6yx#O8p#O#P6y#P;'S8p;'S;=`:R<%lO8p!r9oU$d`(Z!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!r:UP;=`<%l8p(^:[P;=`<%l4k%9[:hh$i&j(Wp(Z!bOY%ZYZ&cZq%Zqr`#P#o`x!^=^!^!_?q!_#O=^#O#P>`#P#o=^#o#p?q#p;'S=^;'S;=`@h<%lO=^&n>gXWS$i&jOY>`YZ&cZ!^>`!^!_?S!_#o>`#o#p?S#p;'S>`;'S;=`?k<%lO>`S?XSWSOY?SZ;'S?S;'S;=`?e<%lO?SS?hP;=`<%l?S&n?nP;=`<%l>`!f?xWWS(Z!bOY?qZw?qwx?Sx#O?q#O#P?S#P;'S?q;'S;=`@b<%lO?q!f@eP;=`<%l?q(Q@kP;=`<%l=^'`@w]WS$i&j(WpOY@nYZ&cZr@nrs>`s!^@n!^!_Ap!_#O@n#O#P>`#P#o@n#o#pAp#p;'S@n;'S;=`Bg<%lO@ntAwWWS(WpOYApZrAprs?Ss#OAp#O#P?S#P;'SAp;'S;=`Ba<%lOAptBdP;=`<%lAp'`BjP;=`<%l@n#WBvYWS(Wp(Z!bOYBmZrBmrs?qswBmwxApx#OBm#O#P?S#P;'SBm;'S;=`Cf<%lOBm#WCiP;=`<%lBm(rCoP;=`<%l^!Q^$i&j!X7`OY!=yYZ&cZ!P!=y!P!Q!>|!Q!^!=y!^!_!@c!_!}!=y!}#O!CW#O#P!Dy#P#o!=y#o#p!@c#p;'S!=y;'S;=`!Ek<%lO!=y|#X#Z&c#Z#[!>|#[#]&c#]#^!>|#^#a&c#a#b!>|#b#g&c#g#h!>|#h#i&c#i#j!>|#j#k!>|#k#m&c#m#n!>|#n#o&c#p;'S&c;'S;=`&w<%lO&c7`!@hX!X7`OY!@cZ!P!@c!P!Q!AT!Q!}!@c!}#O!Ar#O#P!Bq#P;'S!@c;'S;=`!CQ<%lO!@c7`!AYW!X7`#W#X!AT#Z#[!AT#]#^!AT#a#b!AT#g#h!AT#i#j!AT#j#k!AT#m#n!AT7`!AuVOY!ArZ#O!Ar#O#P!B[#P#Q!@c#Q;'S!Ar;'S;=`!Bk<%lO!Ar7`!B_SOY!ArZ;'S!Ar;'S;=`!Bk<%lO!Ar7`!BnP;=`<%l!Ar7`!BtSOY!@cZ;'S!@c;'S;=`!CQ<%lO!@c7`!CTP;=`<%l!@c^!Ezl$i&j(Z!b!X7`OY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#W&}#W#X!Eq#X#Z&}#Z#[!Eq#[#]&}#]#^!Eq#^#a&}#a#b!Eq#b#g&}#g#h!Eq#h#i&}#i#j!Eq#j#k!Eq#k#m&}#m#n!Eq#n#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}8r!GyZ(Z!b!X7`OY!GrZw!Grwx!@cx!P!Gr!P!Q!Hl!Q!}!Gr!}#O!JU#O#P!Bq#P;'S!Gr;'S;=`!J|<%lO!Gr8r!Hse(Z!b!X7`OY'}Zw'}x#O'}#P#W'}#W#X!Hl#X#Z'}#Z#[!Hl#[#]'}#]#^!Hl#^#a'}#a#b!Hl#b#g'}#g#h!Hl#h#i'}#i#j!Hl#j#k!Hl#k#m'}#m#n!Hl#n;'S'};'S;=`(f<%lO'}8r!JZX(Z!bOY!JUZw!JUwx!Arx#O!JU#O#P!B[#P#Q!Gr#Q;'S!JU;'S;=`!Jv<%lO!JU8r!JyP;=`<%l!JU8r!KPP;=`<%l!Gr>^!KZ^$i&j(Z!bOY!KSYZ&cZw!KSwx!CWx!^!KS!^!_!JU!_#O!KS#O#P!DR#P#Q!^!LYP;=`<%l!KS>^!L`P;=`<%l!_#c#d#Bq#d#l%Z#l#m#Es#m#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#>j_$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#?rd$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#A]f$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Bzc$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Dbe$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#E|g$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Gpi$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z*)x#Il_!g$b$i&j$O)Lv(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)[#Jv_al$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z04f#LS^h#)`#R-v$?V_!^(CdvBr$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z?O$@a_!q7`$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z07[$Aq|$i&j(Wp(Z!b'|0/l$]#t(T,2j(e$I[OX%ZXY+gYZ&cZ[+g[p%Zpq+gqr%Zrs&}st%ZtuEruw%Zwx(rx}%Z}!OGv!O!Q%Z!Q![Er![!^%Z!^!_*g!_!c%Z!c!}Er!}#O%Z#O#P&c#P#R%Z#R#SEr#S#T%Z#T#oEr#o#p*g#p$f%Z$f$g+g$g#BYEr#BY#BZ$A`#BZ$ISEr$IS$I_$A`$I_$JTEr$JT$JU$A`$JU$KVEr$KV$KW$A`$KW&FUEr&FU&FV$A`&FV;'SEr;'S;=`I|<%l?HTEr?HT?HU$A`?HUOEr07[$D|k$i&j(Wp(Z!b'}0/l$]#t(T,2j(e$I[OY%ZYZ&cZr%Zrs&}st%ZtuEruw%Zwx(rx}%Z}!OGv!O!Q%Z!Q![Er![!^%Z!^!_*g!_!c%Z!c!}Er!}#O%Z#O#P&c#P#R%Z#R#SEr#S#T%Z#T#oEr#o#p*g#p$g%Z$g;'SEr;'S;=`I|<%lOEr",tokenizers:[Qx,$x,px,mx,2,3,4,5,6,7,8,9,10,11,12,13,14,ux,new kt("$S~RRtu[#O#Pg#S#T#|~_P#o#pb~gOx~~jVO#i!P#i#j!U#j#l!P#l#m!q#m;'S!P;'S;=`#v<%lO!P~!UO!U~~!XS!Q![!e!c!i!e#T#Z!e#o#p#Z~!hR!Q![!q!c!i!q#T#Z!q~!tR!Q![!}!c!i!}#T#Z!}~#QR!Q![!P!c!i!P#T#Z!P~#^R!Q![#g!c!i#g#T#Z#g~#jS!Q![#g!c!i#g#T#Z#g#q#r!P~#yP;=`<%l!P~$RO(c~~",141,340),new kt("j~RQYZXz{^~^O(Q~~aP!P!Qd~iO(R~~",25,323)],topRules:{Script:[0,7],SingleExpression:[1,276],SingleClassItem:[2,277]},dialects:{jsx:0,ts:15175},dynamicPrecedences:{80:1,82:1,94:1,169:1,199:1},specialized:[{term:327,get:O=>Px[O]||-1},{term:343,get:O=>Sx[O]||-1},{term:95,get:O=>Xx[O]||-1}],tokenPrec:15201});var lp=[W("function ${name}(${params}) {\n ${}\n}",{label:"function",detail:"definition",type:"keyword"}),W("for (let ${index} = 0; ${index} < ${bound}; ${index}++) {\n ${}\n}",{label:"for",detail:"loop",type:"keyword"}),W("for (let ${name} of ${collection}) {\n ${}\n}",{label:"for",detail:"of loop",type:"keyword"}),W("do {\n ${}\n} while (${})",{label:"do",detail:"loop",type:"keyword"}),W("while (${}) {\n ${}\n}",{label:"while",detail:"loop",type:"keyword"}),W(`try { + \${} +} catch (\${error}) { + \${} +}`,{label:"try",detail:"/ catch block",type:"keyword"}),W("if (${}) {\n ${}\n}",{label:"if",detail:"block",type:"keyword"}),W(`if (\${}) { + \${} +} else { + \${} +}`,{label:"if",detail:"/ else block",type:"keyword"}),W(`class \${name} { + constructor(\${params}) { + \${} + } +}`,{label:"class",detail:"definition",type:"keyword"}),W('import {${names}} from "${module}"\n${}',{label:"import",detail:"named",type:"keyword"}),W('import ${name} from "${module}"\n${}',{label:"import",detail:"default",type:"keyword"})],Tx=lp.concat([W("interface ${name} {\n ${}\n}",{label:"interface",detail:"definition",type:"keyword"}),W("type ${name} = ${type}",{label:"type",detail:"definition",type:"keyword"}),W("enum ${name} {\n ${}\n}",{label:"enum",detail:"definition",type:"keyword"})]),sp=new Tt,cp=new Set(["Script","Block","FunctionExpression","FunctionDeclaration","ArrowFunction","MethodDeclaration","ForStatement"]);function kr(O){return(e,t)=>{let i=e.node.getChild("VariableDefinition");return i&&t(i,O),!0}}var bx=["FunctionDeclaration"],yx={FunctionDeclaration:kr("function"),ClassDeclaration:kr("class"),ClassExpression:()=>!0,EnumDeclaration:kr("constant"),TypeAliasDeclaration:kr("type"),NamespaceDeclaration:kr("namespace"),VariableDefinition(O,e){O.matchContext(bx)||e(O,"variable")},TypeDefinition(O,e){e(O,"type")},__proto__:null};function hp(O,e){let t=sp.get(e);if(t)return t;let i=[],r=!0;function n(s,a){let o=O.sliceString(s.from,s.to);i.push({label:o,type:a})}return e.cursor(C.IncludeAnonymous).iterate(s=>{if(r)r=!1;else if(s.name){let a=yx[s.name];if(a&&a(s,n)||cp.has(s.name))return!1}else if(s.to-s.from>8192){for(let a of hp(O,s.node))i.push(a);return!1}}),sp.set(e,i),i}var ap=/^[\w$\xa1-\uffff][\w$\d\xa1-\uffff]*$/,fp=["TemplateString","String","RegExp","LineComment","BlockComment","VariableDefinition","TypeDefinition","Label","PropertyDefinition","PropertyName","PrivatePropertyDefinition","PrivatePropertyName","JSXText","JSXAttributeValue","JSXOpenTag","JSXCloseTag","JSXSelfClosingTag",".","?."];function xx(O){let e=U(O.state).resolveInner(O.pos,-1);if(fp.indexOf(e.name)>-1)return null;let t=e.name=="VariableName"||e.to-e.from<20&&ap.test(O.state.sliceDoc(e.from,e.to));if(!t&&!O.explicit)return null;let i=[];for(let r=e;r;r=r.parent)cp.has(r.name)&&(i=i.concat(hp(O.state.doc,r)));return{options:i,from:t?e.from:O.pos,validFor:ap}}var pt=ne.define({name:"javascript",parser:np.configure({props:[se.add({IfStatement:le({except:/^\s*({|else\b)/}),TryStatement:le({except:/^\s*({|catch\b|finally\b)/}),LabeledStatement:sO,SwitchBody:O=>{let e=O.textAfter,t=/^\s*\}/.test(e),i=/^\s*(case|default)\b/.test(e);return O.baseIndent+(t?0:i?1:2)*O.unit},Block:be({closing:"}"}),ArrowFunction:O=>O.baseIndent+O.unit,"TemplateString BlockComment":()=>null,"Statement Property":le({except:/^\s*{/}),JSXElement(O){let e=/^\s*<\//.test(O.textAfter);return O.lineIndent(O.node.from)+(e?0:O.unit)},JSXEscape(O){let e=/\s*\}/.test(O.textAfter);return O.lineIndent(O.node.from)+(e?0:O.unit)},"JSXOpenTag JSXSelfClosingTag"(O){return O.column(O.node.from)+O.unit}}),te.add({"Block ClassBody SwitchBody EnumBody ObjectExpression ArrayExpression ObjectType":me,BlockComment(O){return{from:O.from+2,to:O.to-2}}})]}),languageData:{closeBrackets:{brackets:["(","[","{","'",'"',"`"]},commentTokens:{line:"//",block:{open:"/*",close:"*/"}},indentOnInput:/^\s*(?:case |default:|\{|\}|<\/)$/,wordChars:"$"}}),dp={test:O=>/^JSX/.test(O.name),facet:or({commentTokens:{block:{open:"{/*",close:"*/}"}}})},hc=pt.configure({dialect:"ts"},"typescript"),fc=pt.configure({dialect:"jsx",props:[Dn.add(O=>O.isTop?[dp]:void 0)]}),dc=pt.configure({dialect:"jsx ts",props:[Dn.add(O=>O.isTop?[dp]:void 0)]},"typescript"),up=O=>({label:O,type:"keyword"}),Qp="break case const continue default delete export extends false finally in instanceof let new return static super switch this throw true typeof var yield".split(" ").map(up),kx=Qp.concat(["declare","implements","private","protected","public"].map(up));function ks(O={}){let e=O.jsx?O.typescript?dc:fc:O.typescript?hc:pt,t=O.typescript?Tx.concat(kx):lp.concat(Qp);return new J(e,[pt.data.of({autocomplete:cO(fp,zt(t))}),pt.data.of({autocomplete:xx}),O.jsx?vx:[]])}function wx(O){for(;;){if(O.name=="JSXOpenTag"||O.name=="JSXSelfClosingTag"||O.name=="JSXFragmentTag")return O;if(O.name=="JSXEscape"||!O.parent)return null;O=O.parent}}function op(O,e,t=O.length){for(let i=e?.firstChild;i;i=i.nextSibling)if(i.name=="JSXIdentifier"||i.name=="JSXBuiltin"||i.name=="JSXNamespacedName"||i.name=="JSXMemberExpression")return O.sliceString(i.from,Math.min(i.to,t));return""}var Zx=typeof navigator=="object"&&/Android\b/.test(navigator.userAgent),vx=T.inputHandler.of((O,e,t,i,r)=>{if((Zx?O.composing:O.compositionStarted)||O.state.readOnly||e!=t||i!=">"&&i!="/"||!pt.isActiveAt(O.state,e,-1))return!1;let n=r(),{state:s}=n,a=s.changeByRange(o=>{var l;let{head:c}=o,h=U(s).resolveInner(c-1,-1),f;if(h.name=="JSXStartTag"&&(h=h.parent),!(s.doc.sliceString(c-1,c)!=i||h.name=="JSXAttributeValue"&&h.to>c)){if(i==">"&&h.name=="JSXFragmentTag")return{range:o,changes:{from:c,insert:""}};if(i=="/"&&h.name=="JSXStartCloseTag"){let u=h.parent,Q=u.parent;if(Q&&u.from==c-2&&((f=op(s.doc,Q.firstChild,c))||((l=Q.firstChild)===null||l===void 0?void 0:l.name)=="JSXFragmentTag")){let $=`${f}>`;return{range:S.cursor(c+$.length,-1),changes:{from:c,insert:$}}}}else if(i==">"){let u=wx(h);if(u&&u.name=="JSXOpenTag"&&!/^\/?>|^<\//.test(s.doc.sliceString(c,c+2))&&(f=op(s.doc,u,c)))return{range:o,changes:{from:c,insert:``}}}}return{range:o}});return a.changes.empty?!1:(O.dispatch([n,s.update(a,{userEvent:"input.complete",scrollIntoView:!0})]),!0)});var wr=["_blank","_self","_top","_parent"],uc=["ascii","utf-8","utf-16","latin1","latin1"],Qc=["get","post","put","delete"],$c=["application/x-www-form-urlencoded","multipart/form-data","text/plain"],Ke=["true","false"],_={},Yx={a:{attrs:{href:null,ping:null,type:null,media:null,target:wr,hreflang:null}},abbr:_,address:_,area:{attrs:{alt:null,coords:null,href:null,target:null,ping:null,media:null,hreflang:null,type:null,shape:["default","rect","circle","poly"]}},article:_,aside:_,audio:{attrs:{src:null,mediagroup:null,crossorigin:["anonymous","use-credentials"],preload:["none","metadata","auto"],autoplay:["autoplay"],loop:["loop"],controls:["controls"]}},b:_,base:{attrs:{href:null,target:wr}},bdi:_,bdo:_,blockquote:{attrs:{cite:null}},body:_,br:_,button:{attrs:{form:null,formaction:null,name:null,value:null,autofocus:["autofocus"],disabled:["autofocus"],formenctype:$c,formmethod:Qc,formnovalidate:["novalidate"],formtarget:wr,type:["submit","reset","button"]}},canvas:{attrs:{width:null,height:null}},caption:_,center:_,cite:_,code:_,col:{attrs:{span:null}},colgroup:{attrs:{span:null}},command:{attrs:{type:["command","checkbox","radio"],label:null,icon:null,radiogroup:null,command:null,title:null,disabled:["disabled"],checked:["checked"]}},data:{attrs:{value:null}},datagrid:{attrs:{disabled:["disabled"],multiple:["multiple"]}},datalist:{attrs:{data:null}},dd:_,del:{attrs:{cite:null,datetime:null}},details:{attrs:{open:["open"]}},dfn:_,div:_,dl:_,dt:_,em:_,embed:{attrs:{src:null,type:null,width:null,height:null}},eventsource:{attrs:{src:null}},fieldset:{attrs:{disabled:["disabled"],form:null,name:null}},figcaption:_,figure:_,footer:_,form:{attrs:{action:null,name:null,"accept-charset":uc,autocomplete:["on","off"],enctype:$c,method:Qc,novalidate:["novalidate"],target:wr}},h1:_,h2:_,h3:_,h4:_,h5:_,h6:_,head:{children:["title","base","link","style","meta","script","noscript","command"]},header:_,hgroup:_,hr:_,html:{attrs:{manifest:null}},i:_,iframe:{attrs:{src:null,srcdoc:null,name:null,width:null,height:null,sandbox:["allow-top-navigation","allow-same-origin","allow-forms","allow-scripts"],seamless:["seamless"]}},img:{attrs:{alt:null,src:null,ismap:null,usemap:null,width:null,height:null,crossorigin:["anonymous","use-credentials"]}},input:{attrs:{alt:null,dirname:null,form:null,formaction:null,height:null,list:null,max:null,maxlength:null,min:null,name:null,pattern:null,placeholder:null,size:null,src:null,step:null,value:null,width:null,accept:["audio/*","video/*","image/*"],autocomplete:["on","off"],autofocus:["autofocus"],checked:["checked"],disabled:["disabled"],formenctype:$c,formmethod:Qc,formnovalidate:["novalidate"],formtarget:wr,multiple:["multiple"],readonly:["readonly"],required:["required"],type:["hidden","text","search","tel","url","email","password","datetime","date","month","week","time","datetime-local","number","range","color","checkbox","radio","file","submit","image","reset","button"]}},ins:{attrs:{cite:null,datetime:null}},kbd:_,keygen:{attrs:{challenge:null,form:null,name:null,autofocus:["autofocus"],disabled:["disabled"],keytype:["RSA"]}},label:{attrs:{for:null,form:null}},legend:_,li:{attrs:{value:null}},link:{attrs:{href:null,type:null,hreflang:null,media:null,sizes:["all","16x16","16x16 32x32","16x16 32x32 64x64"]}},map:{attrs:{name:null}},mark:_,menu:{attrs:{label:null,type:["list","context","toolbar"]}},meta:{attrs:{content:null,charset:uc,name:["viewport","application-name","author","description","generator","keywords"],"http-equiv":["content-language","content-type","default-style","refresh"]}},meter:{attrs:{value:null,min:null,low:null,high:null,max:null,optimum:null}},nav:_,noscript:_,object:{attrs:{data:null,type:null,name:null,usemap:null,form:null,width:null,height:null,typemustmatch:["typemustmatch"]}},ol:{attrs:{reversed:["reversed"],start:null,type:["1","a","A","i","I"]},children:["li","script","template","ul","ol"]},optgroup:{attrs:{disabled:["disabled"],label:null}},option:{attrs:{disabled:["disabled"],label:null,selected:["selected"],value:null}},output:{attrs:{for:null,form:null,name:null}},p:_,param:{attrs:{name:null,value:null}},pre:_,progress:{attrs:{value:null,max:null}},q:{attrs:{cite:null}},rp:_,rt:_,ruby:_,samp:_,script:{attrs:{type:["text/javascript"],src:null,async:["async"],defer:["defer"],charset:uc}},section:_,select:{attrs:{form:null,name:null,size:null,autofocus:["autofocus"],disabled:["disabled"],multiple:["multiple"]}},slot:{attrs:{name:null}},small:_,source:{attrs:{src:null,type:null,media:null}},span:_,strong:_,style:{attrs:{type:["text/css"],media:null,scoped:null}},sub:_,summary:_,sup:_,table:_,tbody:_,td:{attrs:{colspan:null,rowspan:null,headers:null}},template:_,textarea:{attrs:{dirname:null,form:null,maxlength:null,name:null,placeholder:null,rows:null,cols:null,autofocus:["autofocus"],disabled:["disabled"],readonly:["readonly"],required:["required"],wrap:["soft","hard"]}},tfoot:_,th:{attrs:{colspan:null,rowspan:null,headers:null,scope:["row","col","rowgroup","colgroup"]}},thead:_,time:{attrs:{datetime:null}},title:_,tr:_,track:{attrs:{src:null,label:null,default:null,kind:["subtitles","captions","descriptions","chapters","metadata"],srclang:null}},ul:{children:["li","script","template","ul","ol"]},var:_,video:{attrs:{src:null,poster:null,width:null,height:null,crossorigin:["anonymous","use-credentials"],preload:["auto","metadata","none"],autoplay:["autoplay"],mediagroup:["movie"],muted:["muted"],controls:["controls"]}},wbr:_},gp={accesskey:null,class:null,contenteditable:Ke,contextmenu:null,dir:["ltr","rtl","auto"],draggable:["true","false","auto"],dropzone:["copy","move","link","string:","file:"],hidden:["hidden"],id:null,inert:["inert"],itemid:null,itemprop:null,itemref:null,itemscope:["itemscope"],itemtype:null,lang:["ar","bn","de","en-GB","en-US","es","fr","hi","id","ja","pa","pt","ru","tr","zh"],spellcheck:Ke,autocorrect:Ke,autocapitalize:Ke,style:null,tabindex:null,title:null,translate:["yes","no"],rel:["stylesheet","alternate","author","bookmark","help","license","next","nofollow","noreferrer","prefetch","prev","search","tag"],role:"alert application article banner button cell checkbox complementary contentinfo dialog document feed figure form grid gridcell heading img list listbox listitem main navigation region row rowgroup search switch tab table tabpanel textbox timer".split(" "),"aria-activedescendant":null,"aria-atomic":Ke,"aria-autocomplete":["inline","list","both","none"],"aria-busy":Ke,"aria-checked":["true","false","mixed","undefined"],"aria-controls":null,"aria-describedby":null,"aria-disabled":Ke,"aria-dropeffect":null,"aria-expanded":["true","false","undefined"],"aria-flowto":null,"aria-grabbed":["true","false","undefined"],"aria-haspopup":Ke,"aria-hidden":Ke,"aria-invalid":["true","false","grammar","spelling"],"aria-label":null,"aria-labelledby":null,"aria-level":null,"aria-live":["off","polite","assertive"],"aria-multiline":Ke,"aria-multiselectable":Ke,"aria-owns":null,"aria-posinset":null,"aria-pressed":["true","false","mixed","undefined"],"aria-readonly":Ke,"aria-relevant":null,"aria-required":Ke,"aria-selected":["true","false","undefined"],"aria-setsize":null,"aria-sort":["ascending","descending","none","other"],"aria-valuemax":null,"aria-valuemin":null,"aria-valuenow":null,"aria-valuetext":null},Pp="beforeunload copy cut dragstart dragover dragleave dragenter dragend drag paste focus blur change click load mousedown mouseenter mouseleave mouseup keydown keyup resize scroll unload".split(" ").map(O=>"on"+O);for(let O of Pp)gp[O]=null;var qO=class{constructor(e,t){this.tags={...Yx,...e},this.globalAttrs={...gp,...t},this.allTags=Object.keys(this.tags),this.globalAttrNames=Object.keys(this.globalAttrs)}};qO.default=new qO;function Si(O,e,t=O.length){if(!e)return"";let i=e.firstChild,r=i&&i.getChild("TagName");return r?O.sliceString(r.from,Math.min(r.to,t)):""}function Xi(O,e=!1){for(;O;O=O.parent)if(O.name=="Element")if(e)e=!1;else return O;return null}function Sp(O,e,t){let i=t.tags[Si(O,Xi(e))];return i?.children||t.allTags}function pc(O,e){let t=[];for(let i=Xi(e);i&&!i.type.isTop;i=Xi(i.parent)){let r=Si(O,i);if(r&&i.lastChild.name=="CloseTag")break;r&&t.indexOf(r)<0&&(e.name=="EndTag"||e.from>=i.firstChild.to)&&t.push(r)}return t}var Xp=/^[:\-\.\w\u00b7-\uffff]*$/;function $p(O,e,t,i,r){let n=/\s*>/.test(O.sliceDoc(r,r+5))?"":">",s=Xi(t,t.name=="StartTag"||t.name=="TagName");return{from:i,to:r,options:Sp(O.doc,s,e).map(a=>({label:a,type:"type"})).concat(pc(O.doc,t).map((a,o)=>({label:"/"+a,apply:"/"+a+n,type:"type",boost:99-o}))),validFor:/^\/?[:\-\.\w\u00b7-\uffff]*$/}}function pp(O,e,t,i){let r=/\s*>/.test(O.sliceDoc(i,i+5))?"":">";return{from:t,to:i,options:pc(O.doc,e).map((n,s)=>({label:n,apply:n+r,type:"type",boost:99-s})),validFor:Xp}}function _x(O,e,t,i){let r=[],n=0;for(let s of Sp(O.doc,t,e))r.push({label:"<"+s,type:"type"});for(let s of pc(O.doc,t))r.push({label:"",type:"type",boost:99-n++});return{from:i,to:i,options:r,validFor:/^<\/?[:\-\.\w\u00b7-\uffff]*$/}}function Rx(O,e,t,i,r){let n=Xi(t),s=n?e.tags[Si(O.doc,n)]:null,a=s&&s.attrs?Object.keys(s.attrs):[],o=s&&s.globalAttrs===!1?a:a.length?a.concat(e.globalAttrNames):e.globalAttrNames;return{from:i,to:r,options:o.map(l=>({label:l,type:"property"})),validFor:Xp}}function Vx(O,e,t,i,r){var n;let s=(n=t.parent)===null||n===void 0?void 0:n.getChild("AttributeName"),a=[],o;if(s){let l=O.sliceDoc(s.from,s.to),c=e.globalAttrs[l];if(!c){let h=Xi(t),f=h?e.tags[Si(O.doc,h)]:null;c=f?.attrs&&f.attrs[l]}if(c){let h=O.sliceDoc(i,r).toLowerCase(),f='"',u='"';/^['"]/.test(h)?(o=h[0]=='"'?/^[^"]*$/:/^[^']*$/,f="",u=O.sliceDoc(r,r+1)==h[0]?"":h[0],h=h.slice(1),i++):o=/^[^\s<>='"]*$/;for(let Q of c)a.push({label:Q,apply:f+Q+u,type:"constant"})}}return{from:i,to:r,options:a,validFor:o}}function Tp(O,e){let{state:t,pos:i}=e,r=U(t).resolveInner(i,-1),n=r.resolve(i);for(let s=i,a;n==r&&(a=r.childBefore(s));){let o=a.lastChild;if(!o||!o.type.isError||o.fromTp(i,r)}var zx=pt.parser.configure({top:"SingleExpression"}),yp=[{tag:"script",attrs:O=>O.type=="text/typescript"||O.lang=="ts",parser:hc.parser},{tag:"script",attrs:O=>O.type=="text/babel"||O.type=="text/jsx",parser:fc.parser},{tag:"script",attrs:O=>O.type=="text/typescript-jsx",parser:dc.parser},{tag:"script",attrs(O){return/^(importmap|speculationrules|application\/(.+\+)?json)$/i.test(O.type)},parser:zx},{tag:"script",attrs(O){return!O.type||/^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^module$|^$/i.test(O.type)},parser:pt.parser},{tag:"style",attrs(O){return(!O.lang||O.lang=="css")&&(!O.type||/^(text\/)?(x-)?(stylesheet|css)$/i.test(O.type))},parser:xr.parser}],xp=[{name:"style",parser:xr.parser.configure({top:"Styles"})}].concat(Pp.map(O=>({name:O,parser:pt.parser}))),kp=ne.define({name:"html",parser:tp.configure({props:[se.add({Element(O){let e=/^(\s*)(<\/)?/.exec(O.textAfter);return O.node.to<=O.pos+e[0].length?O.continue():O.lineIndent(O.node.from)+(e[2]?0:O.unit)},"OpenTag CloseTag SelfClosingTag"(O){return O.column(O.node.from)+O.unit},Document(O){if(O.pos+/\s*/.exec(O.textAfter)[0].lengthO.getChild("TagName")})]}),languageData:{commentTokens:{block:{open:""}},indentOnInput:/^\s*<\/\w+\W$/,wordChars:"-_"}}),ws=kp.configure({wrap:ac(yp,xp)});function Ti(O={}){let e="",t;O.matchClosingTags===!1&&(e="noMatch"),O.selfClosingTags===!0&&(e=(e?e+" ":"")+"selfClosing"),(O.nestedLanguages&&O.nestedLanguages.length||O.nestedAttributes&&O.nestedAttributes.length)&&(t=ac((O.nestedLanguages||[]).concat(yp),(O.nestedAttributes||[]).concat(xp)));let i=t?kp.configure({wrap:t,dialect:e}):e?ws.configure({dialect:e}):ws;return new J(i,[ws.data.of({autocomplete:qx(O)}),O.autoCloseTags!==!1?Ux:[],ks().support,ys().support])}var mp=new Set("area base br col command embed frame hr img input keygen link meta param source track wbr menuitem".split(" ")),Ux=T.inputHandler.of((O,e,t,i,r)=>{if(O.composing||O.state.readOnly||e!=t||i!=">"&&i!="/"||!ws.isActiveAt(O.state,e,-1))return!1;let n=r(),{state:s}=n,a=s.changeByRange(o=>{var l,c,h;let f=s.doc.sliceString(o.from-1,o.to)==i,{head:u}=o,Q=U(s).resolveInner(u,-1),$;if(f&&i==">"&&Q.name=="EndTag"){let p=Q.parent;if(((c=(l=p.parent)===null||l===void 0?void 0:l.lastChild)===null||c===void 0?void 0:c.name)!="CloseTag"&&($=Si(s.doc,p.parent,u))&&!mp.has($)){let m=u+(s.doc.sliceString(u,u+1)===">"?1:0),g=``;return{range:o,changes:{from:u,to:m,insert:g}}}}else if(f&&i=="/"&&Q.name=="IncompleteCloseTag"){let p=Q.parent;if(Q.from==u-2&&((h=p.lastChild)===null||h===void 0?void 0:h.name)!="CloseTag"&&($=Si(s.doc,p,u))&&!mp.has($)){let m=u+(s.doc.sliceString(u,u+1)===">"?1:0),g=`${$}>`;return{range:S.cursor(u+g.length,-1),changes:{from:u,to:m,insert:g}}}}return{range:o}});return a.changes.empty?!1:(O.dispatch([n,s.update(a,{userEvent:"input.complete",scrollIntoView:!0})]),!0)});var Wx=F({null:d.null,instanceof:d.operatorKeyword,this:d.self,"new super assert open to with void":d.keyword,"class interface extends implements enum var":d.definitionKeyword,"module package import":d.moduleKeyword,"switch while for if else case default do break continue return try catch finally throw":d.controlKeyword,"requires exports opens uses provides public private protected static transitive abstract final strictfp synchronized native transient volatile throws":d.modifier,IntegerLiteral:d.integer,FloatingPointLiteral:d.float,"StringLiteral TextBlock":d.string,CharacterLiteral:d.character,LineComment:d.lineComment,BlockComment:d.blockComment,BooleanLiteral:d.bool,PrimitiveType:d.standard(d.typeName),TypeName:d.typeName,Identifier:d.variableName,"MethodName/Identifier":d.function(d.variableName),Definition:d.definition(d.variableName),ArithOp:d.arithmeticOperator,LogicOp:d.logicOperator,BitOp:d.bitwiseOperator,CompareOp:d.compareOperator,AssignOp:d.definitionOperator,UpdateOp:d.updateOperator,Asterisk:d.punctuation,Label:d.labelName,"( )":d.paren,"[ ]":d.squareBracket,"{ }":d.brace,".":d.derefOperator,", ;":d.separator}),jx={__proto__:null,true:34,false:34,null:42,void:46,byte:48,short:48,int:48,long:48,char:48,float:48,double:48,boolean:48,extends:62,super:64,class:76,this:78,new:84,public:100,protected:102,private:104,abstract:106,static:108,final:110,strictfp:112,default:114,synchronized:116,native:118,transient:120,volatile:122,throws:150,implements:160,interface:166,enum:176,instanceof:238,open:267,module:269,requires:274,transitive:276,exports:278,to:280,opens:282,uses:284,provides:286,with:288,package:292,import:296,if:308,else:310,while:314,for:318,var:325,assert:332,switch:336,case:342,do:346,break:350,continue:354,return:358,throw:364,try:368,catch:372,finally:380},wp=Oe.deserialize({version:14,states:"##jQ]QPOOQ$wQPOOO(bQQO'#H^O*iQQO'#CbOOQO'#Cb'#CbO*pQPO'#CaO*xOSO'#CpOOQO'#Hc'#HcOOQO'#Cu'#CuO,eQPO'#D_O-OQQO'#HmOOQO'#Hm'#HmO/gQQO'#HhO/nQQO'#HhOOQO'#Hh'#HhOOQO'#Hg'#HgO1rQPO'#DUO2PQPO'#GnO4wQPO'#D_O5OQPO'#DzO*pQPO'#E[O5qQPO'#E[OOQO'#DV'#DVO7SQQO'#HaO9^QQO'#EeO9eQPO'#EdO9jQPO'#EfOOQO'#Hb'#HbO7jQQO'#HbO:pQQO'#FhO:wQPO'#ExO:|QPO'#E}O:|QPO'#FPOOQO'#Ha'#HaOOQO'#HY'#HYOOQO'#Gh'#GhOOQO'#HX'#HXO<^QPO'#FiOOQO'#HW'#HWOOQO'#Gg'#GgQ]QPOOOOQO'#Hs'#HsOQQPO'#GSO>]QPO'#GUO=kQPO'#GWO:|QPO'#GXO>dQPO'#GZO?QQQO'#HiO?mQQO'#CuO?tQPO'#HxO@SQPO'#D_O@rQPO'#DpO?wQPO'#DqO@|QPO'#HxOA_QPO'#DpOAgQPO'#IROAlQPO'#E`OOQO'#Hr'#HrOOQO'#Gm'#GmQ$wQPOOOAtQPO'#HsOOQO'#H^'#H^OCsQQO,58{OOQO'#H['#H[OOOO'#Gi'#GiOEfOSO,59[OOQO,59[,59[OOQO'#Hi'#HiOFVQPO,59eOGXQPO,59yOOQO-E:f-E:fO*pQPO,58zOG{QPO,58zO*pQPO,5;}OHQQPO'#DQOHVQPO'#DQOOQO'#Gk'#GkOIVQQO,59jOOQO'#Dm'#DmOJqQPO'#HuOJ{QPO'#DlOKZQPO'#HtOKcQPO,5<_OKhQPO,59^OLRQPO'#CxOOQO,59c,59cOLYQPO,59bOLeQQO'#H^ONgQQO'#CbO!!iQPO'#D_O!#nQQO'#HmO!$OQQO,59pO!$VQPO'#DvO!$eQPO'#H|O!$mQPO,5:`O!$rQPO,5:`O!%YQPO,5;nO!%eQPO'#ITO!%pQPO,5;eO!%uQPO,5=YOOQO-E:l-E:lOOQO,5:f,5:fO!']QPO,5:fO!'dQPO,5:vO?tQPO,5<_O*pQPO,5:vO_,5>_O!*sQPO,5:gO!+RQPO,5:qO!+ZQPO,5:lO!+fQPO,5>[O!$VQPO,5>[O!'iQPO,59UO!+qQQO,58zO!+yQQO,5;}O!,RQQO,5gQPO,5gQPO,5<}O!2mQPO,59jO!2zQPO'#HuO!3RQPO,59xO!3WQPO,5>dO?tQPO,59xO!3cQPO,5:[OAlQPO,5:zO!3kQPO'#DrO?wQPO'#DrO!3vQPO'#HyO!4OQPO,5:]O?tQPO,5>dO!(hQPO,5>dOAgQPO,5>mOOQO,5:[,5:[O!$rQPO'#DtOOQO,5>m,5>mO!4TQPO'#EaOOQO,5:z,5:zO!7UQPO,5:zO!(hQPO'#DxOOQO-E:k-E:kOOQO,5:y,5:yO*pQPO,58}O!7ZQPO'#ChOOQO1G.k1G.kOOOO-E:g-E:gOOQO1G.v1G.vO!+qQQO1G.fO*pQPO1G.fO!7eQQO1G1iOOQO,59l,59lO!7mQPO,59lOOQO-E:i-E:iO!7rQPO,5>aO!8ZQPO,5:WO`OOQO1G1y1G1yOOQO1G.x1G.xO!8{QPO'#CyO!9kQPO'#HmO!9uQPO'#CzO!:TQPO'#HlO!:]QPO,59dOOQO1G.|1G.|OLYQPO1G.|O!:sQPO,59eO!;QQQO'#H^O!;cQQO'#CbOOQO,5:b,5:bOhOOQO1G/z1G/zO!oOOQO1G1P1G1POOQO1G0Q1G0QO!=oQPO'#E]OOQO1G0b1G0bO!>`QPO1G1yO!'dQPO1G0bO!*sQPO1G0RO!+RQPO1G0]O!+ZQPO1G0WOOQO1G/]1G/]O!>eQQO1G.pO9eQPO1G0jO*pQPO1G0jOgQPO'#GaOOQO1G2a1G2aO#2zQPO1G2iO#6xQPO,5>gOOQO1G/d1G/dOOQO1G4O1G4OO#7ZQPO1G/dOOQO1G/v1G/vOOQO1G0f1G0fO!7UQPO1G0fOOQO,5:^,5:^O!(hQPO'#DsO#7`QPO,5:^O?wQPO'#GrO#7kQPO,5>eOOQO1G/w1G/wOAgQPO'#H{O#7sQPO1G4OO?tQPO1G4OOOQO1G4X1G4XO!#YQPO'#DvO!!iQPO'#D_OOQO,5:{,5:{O#8OQPO,5:{O#8OQPO,5:{O#8VQQO'#HaO#9hQQO'#HbO#9rQQO'#EbO#9}QPO'#EbO#:VQPO'#IOOOQO,5:d,5:dOOQO1G.i1G.iO#:bQQO'#EeO#:rQQO'#H`O#;SQPO'#FTOOQO'#H`'#H`O#;^QPO'#H`O#;{QPO'#IWO#WOOQO1G/O1G/OOOQO7+$h7+$hOOQO1G/{1G/{O#=cQQO1G/{OOQO1G/}1G/}O#=hQPO1G/{OOQO1G/|1G/|OdQPO,5:wOOQO,5:w,5:wOOQO7+'e7+'eOOQO7+%|7+%|OOQO7+%m7+%mO!KqQPO7+%mO!KvQPO7+%mO!LOQPO7+%mOOQO7+%w7+%wO!LnQPO7+%wOOQO7+%r7+%rO!MmQPO7+%rO!MrQPO7+%rOOQO7+&U7+&UOOQO'#Ee'#EeO9eQPO7+&UO9eQPO,5>[O#?TQPO7+$[OOQO7+&T7+&TOOQO7+&W7+&WO:|QPO'#GlO#?cQPO,5>]OOQO1G/_1G/_O:|QPO7+&lO#?nQQO,59eO#@tQPO,59vOOQO,59v,59vOOQO,5:h,5:hOOQO'#EP'#EPOOQO,5:i,5:iO#@{QPO'#EYOgQPO,5jO#M{QPO,59TO#NSQPO'#IVO#N[QPO,5;oO*pQPO'#G{O#NaQPO,5>rOOQO1G.n1G.nOOQO<Z,5>ZOOQO,5=U,5=UOOQO-E:h-E:hO#NvQPO7+%gOOQO7+%g7+%gOOQO7+%i7+%iOOQO<kO$%tQPO'#EZOOQO1G0_1G0_O$%{QPO1G0_O?tQPO,5:pOOQO-E:s-E:sOOQO1G0Z1G0ZOOQO1G0n1G0nO$&QQQO1G0nOOQO<qOOQO1G1Z1G1ZO$+dQPO'#FUOOQO,5=g,5=gOOQO-E:y-E:yO$+iQPO'#GoO$+vQPO,5>cOOQO1G/u1G/uOOQO<sAN>sO!KqQPOAN>sOOQOAN>xAN>xOOQOAN?[AN?[O9eQPOAN?[OOQO1G0`1G0`O$,_QPO1G0`OOQO,5=b,5=bOOQO-E:t-E:tO$,mQPO,5:uOOQO7+%y7+%yOOQO7+&Y7+&YOOQO1G1`1G1`O$,tQQO1G1`OOQO-E:{-E:{O$,|QQO'#IYO$,wQPO1G1`O$&gQPO1G1`O*pQPO1G1`OOQOAN@]AN@]O$-XQQO<tO$.qQPO7+&zO$.vQQO'#IZOOQOAN@nAN@nO$/RQQOAN@nOOQOAN@jAN@jO$/YQPOAN@jO$/_QQO<uOOQOG26YG26YOOQOG26UG26UOOQO<lOWiXuiX%}iX&PiX&RiX&_iX~OZ!aX~P?XOu#OO%}TO&P#SO&R#SO~O%}TO~P3gOg^Oh^Ov#pO!u#rO!z#qO&_!hO&t#oO~O&P!cO&R!dO~P@ZOg^Oh^O%}TO&P!cO&R!dO~O}cO!P%aO~OZ%bO~O}%dO!m%gO~O}cOg&gXh&gXv&gX!S&gX!T&gX!U&gX!V&gX!W&gX!X&gX!Y&gX!Z&gX!]&gX!^&gX!_&gX!u&gX!z&gX%}&gX&P&gX&R&gX&_&gX&t&gX~OW%jOZ%kOgTahTa%}Ta&PTa&RTa~OvTa!STa!TTa!UTa!VTa!WTa!XTa!YTa!ZTa!]Ta!^Ta!_Ta!uTa!zTa#yTa#zTa$WTa$hTa&tTa&_TauTaYTaqTa|Ta!PTa~PC[O&W%nO&Y!tO~Ou#OO%}TOqma&^maYma&nma!Pma~O&vma}ma!rma~PEnO!SyO!TyO!UyO!VyO!WyO!XyO!YyO!ZzO!]yO!^yO!_yO~Og!Rah!Rav!Ra!u!Ra!z!Ra$h!Ra&P!Ra&R!Ra&t!Ra&_!Ra~PFdO#z%pO~Os%rO~Ou%sO%}TO~Ou#OO%}ra&Pra&Rra&vraYrawra&nra&qra!Pra&^raqra~OWra#_ra#ara#bra#dra#era#fra#gra#hra#ira#kra#ora#rra&_ra#prasra|ra~PH_Ou#OO%}TOq&iX!P&iX!b&iX~OY&iX#p&iX~PJ`O!b%vOq!`X!P!`XY!`X~Oq%wO!P&hX~O!P%yO~Ov%zO~Og^Oh^O%}0oO&P!wO&RWO&b%}O~O&^&`P~PKmO%}TO&P!wO&RWO~OW&QXYiXY!aXY&QXZ&QXq!aXu&QXwiX!b&QX#]&QX#_&QX#a&QX#b&QX#d&QX#e&QX#f&QX#g&QX#h&QX#i&QX#k&QX#o&QX#r&QX&^&QX&_&QX&niX&n&QX&qiX&viX&v&QX&x!aX~P?XOWUXYUXY!aXY&]XZUXq!aXuUXw&]X!bUX#]UX#_UX#aUX#bUX#dUX#eUX#fUX#gUX#hUX#iUX#kUX#oUX#rUX&^UX&_UX&nUX&n&]X&q&]X&vUX&v&]X&x!aX~P>lOg^Oh^O%}TO&P!wO&RWOg!RXh!RX&P!RX&R!RX~PFdOu#OOw&XO%}TO&P&UO&R&TO&q&WO~OW#XOY&aX&n&aX&v&aX~P!#YOY&ZO~P9oOg^Oh^O&P!wO&RWO~Oq&]OY&pX~OY&_O~Og^Oh^O%}TO&P!wO&RWOY&pP~PFdOY&dO&n&bO&v#vO~Oq&eO&x$ZOY&wX~OY&gO~O%}TOg%bah%bav%ba!S%ba!T%ba!U%ba!V%ba!W%ba!X%ba!Y%ba!Z%ba!]%ba!^%ba!_%ba!u%ba!z%ba$h%ba&P%ba&R%ba&t%ba&_%ba~O|&hO~P]O}&iO~Op&uOw&vO&PSO&R!qO&_#YO~Oz&tO~P!'iOz&xO&PSO&R!qO&_#YO~OY&eP~P:|Og^Oh^O%}TO&P!wO&RWO~O}cO~P:|OW#XOu#OO%}TO&v&aX~O#r$WO!P#sa#_#sa#a#sa#b#sa#d#sa#e#sa#f#sa#g#sa#h#sa#i#sa#k#sa#o#sa&^#sa&_#sa&n#saY#sa#p#sas#saq#sa|#sa~Oo'_O}'^O!r'`O&_!hO~O}'eO!r'`O~Oo'iO}'hO&_!hO~OZ#xOu'mO%}TO~OW%jO}'sO~OW%jO!P'uO~OW'vO!P'wO~O$h!WO&P0qO&R0pO!P&eP~P/uO!P(SO#p(TO~P9oO}(UO~O$c(WO~O!P(XO~O!P(YO~O!P(ZO~P9oO!P(]O~P9oOZ$lO_VO`VOaVObVOcVOeVOg^Oh^Op!POwkOz!OO%}TO&P(_O&R(^O&XUO~PFdO%Q(hO%U(iOZ$}a_$}a`$}aa$}ab$}ac$}ae$}ag$}ah$}ap$}av$}aw$}az$}a}$}a!P$}a!S$}a!T$}a!U$}a!V$}a!W$}a!X$}a!Y$}a!Z$}a![$}a!]$}a!^$}a!_$}a!u$}a!z$}a#f$}a#r$}a#t$}a#u$}a#y$}a#z$}a$W$}a$Y$}a$`$}a$c$}a$e$}a$h$}a$l$}a$n$}a$s$}a$u$}a$w$}a$y$}a$|$}a%O$}a%w$}a%}$}a&P$}a&R$}a&X$}a&t$}a|$}a$a$}a$q$}a~O}ra!rra'Ora~PH_OZ%bO~PJ`O!P(mO~O!m%gO}&la!P&la~O}cO!P(pO~Oo(tOq!fX&^!fX~Oq(vO&^&mX~O&^(xO~OZ`O_VO`VOaVObVOcVOeVOg^Oh^Op)UOv{Ow)TOz!OO|)PO}cO!PvO![!`O!u}O!z|O#fpO#roO#tpO#upO#y!RO#z!QO$W!SO$Y!TO$`!UO$c!VO$e!XO$h!WO$l!YO$n!ZO$s![O$u!]O$w!^O$y!_O$|!aO%O!bO%}TO&PRO&RQO&XUO&_#YO&tdO~PFdO}%dO~O})]OY&zP~P:|OW%jO!P)dO~Os)eO~Ou#OO%}TOq&ia!P&ia!b&iaY&ia#p&ia~O})fO~P:|Oq%wO!P&ha~Og^Oh^O%}0oO&P!wO&RWO~O&b)mO~P!8jOu#OO%}TOq&aX&^&aXY&aX&n&aX!P&aX~O}&aX!r&aX~P!9SOo)oOp)oOqnX&^nX~Oq)pO&^&`X~O&^)rO~Ou#OOw)tO%}TO&PSO&R!qO~OYma&nma&vma~P!:bOW&QXY!aXq!aXu!aX%}!aX~OWUXY!aXq!aXu!aX%}!aX~OW)wO~Ou#OO%}TO&P#SO&R#SO&q)yO~Og^Oh^O%}TO&P!wO&RWO~PFdOq&]OY&pa~Ou#OO%}TO&P#SO&R#SO&q&WO~OY)|O~OY*PO&n&bO~Oq&eOY&wa~Og^Oh^Ov{O|*XO!u}O%}TO&P!wO&RWO&tdO~PFdO!P*YO~OW^iZ#XXu^i!P^i!b^i#]^i#_^i#a^i#b^i#d^i#e^i#f^i#g^i#h^i#i^i#k^i#o^i#r^i&^^i&_^i&n^i&v^iY^i#p^is^iq^i|^i~OW*iO~Os*jO~P9oOz*kO&PSO&R!qO~O!P]iY]i#p]is]iq]i|]i~P9oOq*lOY&eX!P&eX~P9oOY*nO~O#f$SO#g$TO#k$YO#r$WO!P#^i#_#^i#a#^i#b#^i#d#^i#e#^i#o#^i&^#^i&_#^i&n#^iY#^i#p#^is#^iq#^i|#^i~O#h$UO#i$UO~P!AmO#_#|O#d$QO#e$RO#f$SO#g$TO#h$UO#i$UO#k$YO#r$WO&^#zO&_#zO&n#{O!P#^i#b#^i#o#^iY#^i#p#^is#^iq#^i|#^i~O#a#^i~P!CUO#a#}O~P!CUO#_#|O#f$SO#g$TO#h$UO#i$UO#k$YO#r$WO&^#zO&_#zO!P#^i#a#^i#b#^i#d#^i#e#^i#o#^iY#^i#p#^is#^iq#^i|#^i~O&n#^i~P!DtO&n#{O~P!DtO#f$SO#g$TO#k$YO#r$WO!P#^i#a#^i#b#^i#e#^i#o#^iY#^i#p#^is#^iq#^i|#^i~O#_#|O#d$QO#h$UO#i$UO&^#zO&_#zO&n#{O~P!FdO#k$YO#r$WO!P#^i#_#^i#a#^i#b#^i#d#^i#e#^i#f#^i#h#^i#i#^i#o#^i&^#^i&_#^i&n#^iY#^i#p#^is#^iq#^i|#^i~O#g$TO~P!G{O#g#^i~P!G{O#h#^i#i#^i~P!AmO#p*oO~P9oO#_&aX#a&aX#b&aX#d&aX#e&aX#f&aX#g&aX#h&aX#i&aX#k&aX#o&aX#r&aX&_&aX#p&aXs&aX|&aX~P!9SO!P#liY#li#p#lis#liq#li|#li~P9oO|*rO~P$wO}'^O~O}'^O!r'`O~Oo'_O}'^O!r'`O~O%}TO&P#SO&R#SO|&sP!P&sP~PFdO}'eO~Og^Oh^Ov{O|+PO!P*}O!u}O!z|O%}TO&P!wO&RWO&_!hO&tdO~PFdO}'hO~Oo'iO}'hO~Os+RO~P:|Ou+TO%}TO~Ou'mO})fO%}TOW#Zi!P#Zi#_#Zi#a#Zi#b#Zi#d#Zi#e#Zi#f#Zi#g#Zi#h#Zi#i#Zi#k#Zi#o#Zi#r#Zi&^#Zi&_#Zi&n#Zi&v#ZiY#Zi#p#Zis#Ziq#Zi|#Zi~O}'^OW&diu&di!P&di#_&di#a&di#b&di#d&di#e&di#f&di#g&di#h&di#i&di#k&di#o&di#r&di&^&di&_&di&n&di&v&diY&di#p&dis&diq&di|&di~O#}+]O$P+^O$R+^O$S+_O$T+`O~O|+[O~P##nO$Z+aO&PSO&R!qO~OW+bO!P+cO~O$a+dOZ$_i_$_i`$_ia$_ib$_ic$_ie$_ig$_ih$_ip$_iv$_iw$_iz$_i}$_i!P$_i!S$_i!T$_i!U$_i!V$_i!W$_i!X$_i!Y$_i!Z$_i![$_i!]$_i!^$_i!_$_i!u$_i!z$_i#f$_i#r$_i#t$_i#u$_i#y$_i#z$_i$W$_i$Y$_i$`$_i$c$_i$e$_i$h$_i$l$_i$n$_i$s$_i$u$_i$w$_i$y$_i$|$_i%O$_i%w$_i%}$_i&P$_i&R$_i&X$_i&t$_i|$_i$q$_i~Og^Oh^O$h#sO&P!wO&RWO~O!P+hO~P:|O!P+iO~OZ`O_VO`VOaVObVOcVOeVOg^Oh^Op!POv{OwkOz!OO}cO!PvO!SyO!TyO!UyO!VyO!WyO!XyO!YyO!Z+nO![!`O!]yO!^yO!_yO!u}O!z|O#fpO#roO#tpO#upO#y!RO#z!QO$W!SO$Y!TO$`!UO$c!VO$e!XO$h!WO$l!YO$n!ZO$q+oO$s![O$u!]O$w!^O$y!_O$|!aO%O!bO%}TO&PRO&RQO&XUO&tdO~O|+mO~P#)QOW&QXY&QXZ&QXu&QX!P&QX&viX&v&QX~P?XOWUXYUXZUXuUX!PUX&vUX&v&]X~P>lOW#tOu#uO&v#vO~OW&UXY%XXu&UX!P%XX&v&UX~OZ#XX~P#.VOY+uO!P+sO~O%Q(hO%U(iOZ$}i_$}i`$}ia$}ib$}ic$}ie$}ig$}ih$}ip$}iv$}iw$}iz$}i}$}i!P$}i!S$}i!T$}i!U$}i!V$}i!W$}i!X$}i!Y$}i!Z$}i![$}i!]$}i!^$}i!_$}i!u$}i!z$}i#f$}i#r$}i#t$}i#u$}i#y$}i#z$}i$W$}i$Y$}i$`$}i$c$}i$e$}i$h$}i$l$}i$n$}i$s$}i$u$}i$w$}i$y$}i$|$}i%O$}i%w$}i%}$}i&P$}i&R$}i&X$}i&t$}i|$}i$a$}i$q$}i~OZ+xO~O%Q(hO%U(iOZ%Vi_%Vi`%Via%Vib%Vic%Vie%Vig%Vih%Vip%Viv%Viw%Viz%Vi}%Vi!P%Vi!S%Vi!T%Vi!U%Vi!V%Vi!W%Vi!X%Vi!Y%Vi!Z%Vi![%Vi!]%Vi!^%Vi!_%Vi!u%Vi!z%Vi#f%Vi#r%Vi#t%Vi#u%Vi#y%Vi#z%Vi$W%Vi$Y%Vi$`%Vi$c%Vi$e%Vi$h%Vi$l%Vi$n%Vi$s%Vi$u%Vi$w%Vi$y%Vi$|%Vi%O%Vi%w%Vi%}%Vi&P%Vi&R%Vi&X%Vi&t%Vi|%Vi$a%Vi$q%Vi~Ou#OO%}TO}&oa!P&oa!m&oa~O!P,OO~Oo(tOq!fa&^!fa~Oq(vO&^&ma~O!m%gO}&li!P&li~O|,XO~P]OW,ZO~P5xOW&UXu&UX#_&UX#a&UX#b&UX#d&UX#e&UX#f&UX#g&UX#h&UX#i&UX#k&UX#o&UX#r&UX&^&UX&_&UX&n&UX&v&UX~OZ#xO!P&UX~P#8^OW$gOZ#xO&v#vO~Op,]Ow,]O~Oq,^O}&rX!P&rX~O!b,`O#]#wOY&UXZ#XX~P#8^OY&SXq&SX|&SX!P&SX~P9oO})]O|&yP~P:|OY&SXg%[Xh%[X%}%[X&P%[X&R%[Xq&SX|&SX!P&SX~Oq,cOY&zX~OY,eO~O})fO|&kP~P:|Oq&jX!P&jX|&jXY&jX~P9oO&bTa~PC[Oo)oOp)oOqna&^na~Oq)pO&^&`a~OW,mO~Ow,nO~Ou#OO%}TO&P,rO&R,qO~Og^Oh^Ov#pO!u#rO&P!wO&RWO&t#oO~Og^Oh^Ov{O|,wO!u}O%}TO&P!wO&RWO&tdO~PFdOw-SO&PSO&R!qO&_#YO~Oq*lOY&ea!P&ea~O#_ma#ama#bma#dma#ema#fma#gma#hma#ima#kma#oma#rma&_ma#pmasma|ma~PEnO|-WO~P$wOZ#xO}'^Oq!|X|!|X!P!|X~Oq-[O|&sX!P&sX~O|-_O!P-^O~O&_!hO~P5VOg^Oh^Ov{O|-cO!P*}O!u}O!z|O%}TO&P!wO&RWO&_!hO&tdO~PFdOs-dO~P9oOs-dO~P:|O}'^OW&dqu&dq!P&dq#_&dq#a&dq#b&dq#d&dq#e&dq#f&dq#g&dq#h&dq#i&dq#k&dq#o&dq#r&dq&^&dq&_&dq&n&dq&v&dqY&dq#p&dqs&dqq&dq|&dq~O|-hO~P##nO!W-lO$O-lO&PSO&R!qO~O!P-oO~O$Z-pO&PSO&R!qO~O!b%vO#p-rOq!`X!P!`X~O!P-tO~P9oO!P-tO~P:|O!P-wO~P9oO|-yO~P#)QO![$aO#p-zO~O!P-|O~O!b-}O~OY.QOZ$lO_VO`VOaVObVOcVOeVOg^Oh^Op!POwkOz!OO%}TO&P(_O&R(^O&XUO~PFdOY.QO!P.RO~O%Q(hO%U(iOZ%Vq_%Vq`%Vqa%Vqb%Vqc%Vqe%Vqg%Vqh%Vqp%Vqv%Vqw%Vqz%Vq}%Vq!P%Vq!S%Vq!T%Vq!U%Vq!V%Vq!W%Vq!X%Vq!Y%Vq!Z%Vq![%Vq!]%Vq!^%Vq!_%Vq!u%Vq!z%Vq#f%Vq#r%Vq#t%Vq#u%Vq#y%Vq#z%Vq$W%Vq$Y%Vq$`%Vq$c%Vq$e%Vq$h%Vq$l%Vq$n%Vq$s%Vq$u%Vq$w%Vq$y%Vq$|%Vq%O%Vq%w%Vq%}%Vq&P%Vq&R%Vq&X%Vq&t%Vq|%Vq$a%Vq$q%Vq~Ou#OO%}TO}&oi!P&oi!m&oi~O&n&bOq!ga&^!ga~O!m%gO}&lq!P&lq~O|.^O~P]Op.`Ow&vOz&tO&PSO&R!qO&_#YO~O!P.aO~Oq,^O}&ra!P&ra~O})]O~P:|Oq.gO|&yX~O|.iO~Oq,cOY&za~Oq.mO|&kX~O|.oO~Ow.pO~Oq!aXu!aX!P!aX!b!aX%}!aX~OZ&QX~P#N{OZUX~P#N{O!P.qO~OZ.rO~OW^yZ#XXu^y!P^y!b^y#]^y#_^y#a^y#b^y#d^y#e^y#f^y#g^y#h^y#i^y#k^y#o^y#r^y&^^y&_^y&n^y&v^yY^y#p^ys^yq^y|^y~OY%`aq%`a!P%`a~P9oO!P#nyY#ny#p#nys#nyq#ny|#ny~P9oO}'^Oq!|a|!|a!P!|a~OZ#xO}'^Oq!|a|!|a!P!|a~O%}TO&P#SO&R#SOq%jX|%jX!P%jX~PFdOq-[O|&sa!P&sa~O|!}X~P$wO|/PO~Os/QO~P9oOW%jO!P/RO~OW%jO$Q/WO&PSO&R!qO!P&|P~OW%jO$U/XO~O!P/YO~O!b%vO#p/[Oq!`X!P!`X~OY/^O~O!P/_O~P9oO#p/`O~P9oO!b/bO~OY/cOZ$lO_VO`VOaVObVOcVOeVOg^Oh^Op!POwkOz!OO%}TO&P(_O&R(^O&XUO~PFdOW#[Ou&[X%}&[X&P&[X&R&[X'O&[X~O&_#YO~P$)QOu#OO%}TO'O/eO&P%SX&R%SX~O&n&bOq!gi&^!gi~Op/iO&PSO&R!qO~OW*iOZ#xO~O!P/kO~OY&SXq&SX~P9oO})]Oq%nX|%nX~P:|Oq.gO|&ya~O!b/nO~O})fOq%cX|%cX~P:|Oq.mO|&ka~OY/qO~O!P/rO~OZ/sO~O}'^Oq!|i|!|i!P!|i~O|!}a~P$wOW%jO!P/wO~OW%jOq/xO!P&|X~OY/|O~P9oOY0OO~OY%Xq!P%Xq~P9oO'O/eO&P%Sa&R%Sa~OY0TO~O!P0WO~Ou#OO!P0YO!Z0ZO%}TO~OY0[O~Oq/xO!P&|a~O!P0_O~OW%jOq/xO!P&}X~OY0aO~P9oOY0bO~OY%Xy!P%Xy~P9oOu#OO%}TO&P%ua&R%ua'O%ua~OY0cO~O!P0dO~Ou#OO!P0eO!Z0fO%}TO~OW%jOq%ra!P%ra~Oq/xO!P&}a~O!P0jO~Ou#OO!P0jO!Z0kO%}TO~O!P0lO~O!P0nO~O#p&QXY&QXs&QXq&QX|&QX~P&bO#pUXYUXsUXqUX|UX~P(iO`Q_P#g%y&P&Xc&X~",goto:"#+S'OPPPP'P'd*x.OP'dPP.d.h0PPPPPP1nP3ZPP4v7l:[WP!?[P!Ap!BW!E]3ZPPP!F|!Jm!MaPP#!P#!SP#$`#$f#&V#&f#&n#'p#(Y#)T#)^#)a#)oP#)r#*OP#*V#*^P#*aP#*lP#*o#*r#*u#*y#+PstOcx![#l$_$m$n$p$q%d(U)Q)R+d+l,Y'urOPXY`acopx!Y![!_!a!e!f!h!i!o!x#P#T#Y#[#_#`#e#i#l#n#u#w#x#|#}$O$P$Q$R$S$T$U$V$Y$Z$[$]$_$e$l$m$n$o$p$q%O%S%V%Z%^%_%b%d%g%k%u%v%{%|&R&S&[&]&`&b&d&i'X'^'_'`'e'h'i'm'n'p'{'|(O(T(U(`(l(t(v({(})O)Q)R)])f)o)p*P*T*W*l*o*p*q*z*{+O+T+d+f+h+i+l+o+r+s+x+},W,Y,^,`,u-[-^-a-r-t-}.R.V.g.m/O/[/_/b/d/n/q0R0X0Z0[0f0h0k0r#xhO`copx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%d%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o,Y,`-r-t-}.g.m/[/_/b/n0Z0f0kt!sT!Q!S!T!{!}$k%p+]+^+_+`-k-m/W/X/x0oQ#mdS&Y#`(}Q&l#oU&q#t$g,ZQ&x#vW(b%O+s.R/dU)Y%j'v+bQ)Z%kS)u&S,WU*f&s-R._Q*k&yQ,t*TQ-P*iQ.j,cR.t,uu!sT!Q!S!T!{!}$k%p+]+^+_+`-k-m/W/X/x0oT%l!r)l#{qO`copx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%d%k%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o,Y,`-r-t-}.g.m/[/_/b/n0Z0f0k#zlO`copx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%d%k%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o,Y,`-r-t-}.g.m/[/_/b/n0Z0f0kX(c%O+s.R/d$TVO`copx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%O%d%k%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o+s,Y,`-r-t-}.R.g.m/[/_/b/d/n0Z0f0k$TkO`copx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%O%d%k%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o+s,Y,`-r-t-}.R.g.m/[/_/b/d/n0Z0f0k&O[OPX`ceopx!O!Y![!_!a!g!i!o#Y#_#b#e#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Y$Z$[$_$f$l$m$n$o$p$q%O%_%b%d%g%k%v%{&]&b&d&i&t'^'_'`'h'i'm'{'}(O(T(U(d(t)O)Q)R)])f)o)p*P*U*W*l*o*q*{*|+O+T+d+h+i+l+o+s,Y,^,`-^-r-t-}.R.g.m/O/[/_/b/d/n0Z0f0k0rQ&Q#[Q)s&RV.T+x.X/e&O[OPX`ceopx!O!Y![!_!a!g!i!o#Y#_#b#e#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Y$Z$[$_$f$l$m$n$o$p$q%O%_%b%d%g%k%v%{&]&b&d&i&t'^'_'`'h'i'm'{'}(O(T(U(d(t)O)Q)R)])f)o)p*P*U*W*l*o*q*{*|+O+T+d+h+i+l+o+s,Y,^,`-^-r-t-}.R.g.m/O/[/_/b/d/n0Z0f0k0rV.T+x.X/e&O]OPX`ceopx!O!Y![!_!a!g!i!o#Y#_#b#e#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Y$Z$[$_$f$l$m$n$o$p$q%O%_%b%d%g%k%v%{&]&b&d&i&t'^'_'`'h'i'm'{'}(O(T(U(d(t)O)Q)R)])f)o)p*P*U*W*l*o*q*{*|+O+T+d+h+i+l+o+s,Y,^,`-^-r-t-}.R.g.m/O/[/_/b/d/n0Z0f0k0rV.U+x.X/eS#Z[.TS$f!O&tS&s#t$gQ&y#vQ)V%dQ-R*iR._,Z$kZO`copx!Y![!_!a#Y#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Y$Z$_$l$m$n$o$p$q%O%d%g%k%v&b&d'_'`'i'm(O(T(U(t)Q)R)])f)o)p*P*l*o+T+d+h+i+l+o+s,Y,^,`-r-t-}.R.g.m/[/_/b/d/n0Z0f0kQ&O#YR,k)p&P_OPX`ceopx!Y![!_!a!g!i!o#Y#_#b#e#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Y$Z$[$_$l$m$n$o$p$q%O%_%b%d%g%k%v%{&]&b&d&i'^'_'`'h'i'm'{'}(O(T(U(d(t)O)Q)R)])f)o)p*P*U*W*l*o*q*{*|+O+T+d+h+i+l+o+s+x,Y,^,`-^-r-t-}.R.X.g.m/O/[/_/b/d/e/n0Z0f0k0r!o#QY!e!x#R#T#`#n$]%R%S%V%^%u%|&S&[&`'X'|(`(l({(}*T*p*z+f+r+},W,u-a.V/q0R0X0[0h$SkO`copx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%O%d%k%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o+s,Y,`-r-t-}.R.g.m/[/_/b/d/n0Z0f0kQ$m!UQ$n!VQ$s!ZQ$|!`R+p(WQ#yiS'q$e*hQ*e&rQ+X'rS,[)T)UQ-O*gQ-Y*vQ.b,]Q.x-QQ.{-ZQ/j.`Q/u.yR0V/iQ'a$bW*[&m'b'c'dQ+W'qU,x*]*^*_Q-X*vQ-f+XS.u,y,zS.z-Y-ZQ/t.vR/v.{]!mP!o'^*q-^/OreOcx![#l$_$m$n$p$q%d(U)Q)R+d+l,Y[!gP!o'^*q-^/OW#b`#e%b&]Q'}$oW(d%O+s.R/dS*U&i*WS*w'e-[S*|'h+OR.X+xh#VY!W!e#n#s%V'|*T*z+f,u-aQ)j%wQ)v&WR,o)y#xnOcopx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%d%k%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o,Y,`-r-t-}.g.m/[/_/b/n0Z0f0k^!kP!g!o'^*q-^/Ov#TY!W#`#n#s%w&W&[&`'|(`(})y*T+f+r,u.W/hQ#g`Q$b{Q$c|Q$d}W%S!e%V*z-aS%Y!h(vQ%`!iQ&m#pQ&n#qQ&o#rQ(u%ZS(y%^({Q*R&eS*v'e-[R-Z*wU)h%v)f.mR+V'p[!mP!o'^*q-^/OT*}'h+O^!iP!g!o'^*q-^/OQ'd$bQ'l$dQ*_&mQ*d&oV*{'h*|+OQ%[!hR,S(vQ(s%YR,R(u#znO`copx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%d%k%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o,Y,`-r-t-}.g.m/[/_/b/n0Z0f0kQ%c!kS(l%S(yR(|%`T#e`%bU#c`#e%bR)z&]Q%f!lQ(n%UQ(r%XQ,U(zR.],VrvOcx![#l$_$m$n$p$q%d(U)Q)R+d+l,Y[!mP!o'^*q-^/OQ%P!bQ%a!jQ%i!pQ'[$ZQ([$|Q(k%QQ(p%WQ+z(iR.Y+yrtOcx![#l$_$m$n$p$q%d(U)Q)R+d+l,Y[!mP!o'^*q-^/OS*V&i*WT*}'h+OQ'c$bS*^&m'dR,z*_Q'b$bQ'g$cU*]&m'c'dQ*a&nS,y*^*_R.v,zQ*u'`R+Q'iQ'k$dS*c&o'lR,}*dQ'j$dU*b&o'k'lS,|*c*dR.w,}rtOcx![#l$_$m$n$p$q%d(U)Q)R+d+l,Y[!mP!o'^*q-^/OT*}'h+OQ'f$cS*`&n'gR,{*aQ*x'eR.|-[R-`*yQ&j#mR*Z&lT*V&i*WQ%e!lS(q%X%fR,P(rR)R%dWk%O+s.R/d#{lO`copx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%d%k%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o,Y,`-r-t-}.g.m/[/_/b/n0Z0f0k$SiO`copx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%O%d%k%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o+s,Y,`-r-t-}.R.g.m/[/_/b/d/n0Z0f0kU&r#t$g,ZS*g&s._Q-Q*iR.y-RT'o$e'p!_#|m#a$r$z$}&w&z&{'O'P'Q'R'S'W'Z)[)g+S+g+j-T-V-e-v-{.e/Z/a/}0Q!]$Pm#a$r$z$}&w&z&{'O'P'R'S'W'Z)[)g+S+g+j-T-V-e-v-{.e/Z/a/}0Q#{nO`copx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%d%k%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o,Y,`-r-t-}.g.m/[/_/b/n0Z0f0ka)^%k)],`.g/n0Z0f0kQ)`%kR.k,cQ't$hQ)b%oR,f)cT+Y's+ZsvOcx![#l$_$m$n$p$q%d(U)Q)R+d+l,YruOcx![#l$_$m$n$p$q%d(U)Q)R+d+l,YQ$w!]R$y!^R$p!XrvOcx![#l$_$m$n$p$q%d(U)Q)R+d+l,YR(O$oR$q!XR(V$sT+k(U+lX(f%P(g(k+{R+y(hQ.W+xR/h.XQ(j%PQ+w(gQ+|(kR.Z+{R%Q!bQ(e%OV.P+s.R/dQxOQ#lcW$`x#l)Q,YQ)Q%dR,Y)RrXOcx![#l$_$m$n$p$q%d(U)Q)R+d+l,Yn!fP!o#e&]&i'^'e'h*W*q+O+x-[-^/Ol!zX!f#P#_#i$[%Z%_%{&R'n'{)O0r!j#PY!e!x#T#`#n$]%S%V%^%u%|&S&[&`'X'|(`(l({(}*T*p*z+f+r+},W,u-a.V/q0R0X0[0hQ#_`Q#ia#d$[op!Y!_!a#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$l%g%k%v&b&d'_'`'i'm(O(T(t)])f)o*P*l*o+T+h+i+o,^,`-r-t-}.g.m/[/_/b/n0Z0f0kS%Z!h(vS%_!i*{S%{#Y)pQ&R#[S'n$e'pY'{$o%O+s.R/dQ)O%bR0r$YQ!uUR%m!uQ)q&OR,l)q^#RY#`$]'X'|(`*px%R!e!x#n%V%^%|&S&[&`({(}*T*z+f+r,W,u-a.V0R[%t#R%R%u+}0X0hS%u#T%SQ+}(lQ0X/qR0h0[Q*m&{R-U*mQ!oPU%h!o*q/OQ*q'^R/O-^!pbOP`cx![!o#e#l$_$m$n$o$p$q%O%b%d&]&i'^'e'h(U)Q)R*W*q+O+d+l+s+x,Y-[-^.R/O/dY!yX!f#_'{)OT#jb!yQ.n,gR/p.nQ%x#VR)k%xQ&c#fS*O&c.[R.[,QQ(w%[R,T(wQ&^#cR){&^Q,_)WR.d,_Q+O'hR-b+OQ-]*xR.}-]Q*W&iR,v*WQ'p$eR+U'pQ&f#gR*S&fQ.h,aR/m.hQ,d)`R.l,dQ+Z'sR-g+ZQ-k+]R/T-kQ/y/US0^/y0`R0`/{Q+l(UR-x+lQ(g%PS+v(g+{R+{(kQ/f.VR0S/fQ+t(eR.S+t`wOcx#l%d)Q)R,YQ$t![Q']$_Q'y$mQ'z$nQ(Q$pQ(R$qS+k(U+lR-q+d'dsOPXY`acopx!Y![!_!a!e!f!h!i!o!x#P#T#Y#[#_#`#e#i#l#n#u#w#x#|#}$O$P$Q$R$S$T$U$V$Y$Z$[$]$_$e$l$m$n$o$p$q%O%S%V%Z%^%_%b%d%g%u%v%{%|&R&S&[&]&`&b&d&i'X'^'_'`'e'h'i'm'n'p'{'|(O(T(U(`(l(t(v({(})O)Q)R)f)o)p*P*T*W*l*o*p*q*z*{+O+T+d+f+h+i+l+o+r+s+x+},W,Y,^,u-[-^-a-r-t-}.R.V.m/O/[/_/b/d/q0R0X0[0h0ra)_%k)],`.g/n0Z0f0kQ!rTQ$h!QQ$i!SQ$j!TQ%o!{Q%q!}Q'x$kQ)c%pQ)l0oS-i+]+_Q-m+^Q-n+`Q/S-kS/U-m/WQ/{/XR0]/x%uSOT`cdopx!Q!S!T!Y![!_!a!{!}#`#l#o#t#u#v#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$g$k$l$m$n$o$p$q%O%d%j%k%p%v&S&d&s&y'm'v(O(T(U(})Q)R)])f*P*T*i*l*o+T+]+^+_+`+b+d+h+i+l+o+s,W,Y,Z,`,c,u-R-k-m-r-t-}.R._.g.m/W/X/[/_/b/d/n/x0Z0f0k0oQ)a%kQ,a)]S.f,`/nQ/l.gQ0g0ZQ0i0fR0m0krmOcx![#l$_$m$n$p$q%d(U)Q)R+d+l,YS#a`$lQ$WoQ$^pQ$r!YQ$z!_Q$}!aQ&w#uQ&z#wY&{#x$o+h-t/_Q&}#|Q'O#}Q'P$OQ'Q$PQ'R$QQ'S$RQ'T$SQ'U$TQ'V$UQ'W$VQ'Z$Z^)[%k)].g/n0Z0f0kU)g%v)f.mQ*Q&dQ+S'mQ+g(OQ+j(TQ,p*PQ-T*lQ-V*oQ-e+TQ-v+iQ-{+oQ.e,`Q/Z-rQ/a-}Q/}/[R0Q/b#xgO`copx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%k%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o,Y,`-r-t-}.g.m/[/_/b/n0Z0f0kW(a%O+s.R/dR)S%drYOcx![#l$_$m$n$p$q%d(U)Q)R+d+l,Y[!eP!o'^*q-^/OW!xX$[%{'{Q#``Q#ne#S$]op!Y!_!a#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$l%k%v&d'm(O(T)])f*P*l*o+T+h+i+o,`-r-t-}.g.m/[/_/b/n0Z0f0kQ%V!gS%^!i*{d%|#Y%g&b'_'`'i(t)o)p,^Q&S#_Q&[#bS&`#e&]Q'X$YQ'|$oW(`%O+s.R/dQ({%_Q(}%bS*T&i*WQ*p0rS*z'h+OQ+f'}Q+r(dQ,W)OQ,u*UQ-a*|S.V+x.XR0R/e&O_OPX`ceopx!Y![!_!a!g!i!o#Y#_#b#e#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Y$Z$[$_$l$m$n$o$p$q%O%_%b%d%g%k%v%{&]&b&d&i'^'_'`'h'i'm'{'}(O(T(U(d(t)O)Q)R)])f)o)p*P*U*W*l*o*q*{*|+O+T+d+h+i+l+o+s+x,Y,^,`-^-r-t-}.R.X.g.m/O/[/_/b/d/e/n0Z0f0k0rQ$e!OQ'r$fR*h&t&ZWOPX`ceopx!O!Y![!_!a!g!i!o#Y#[#_#b#e#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Y$Z$[$_$f$l$m$n$o$p$q%O%_%b%d%g%k%v%{&R&]&b&d&i&t'^'_'`'h'i'm'{'}(O(T(U(d(t)O)Q)R)])f)o)p*P*U*W*l*o*q*{*|+O+T+d+h+i+l+o+s+x,Y,^,`-^-r-t-}.R.X.g.m/O/[/_/b/d/e/n0Z0f0k0rR&P#Y$QjOcopx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%O%d%k%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o+s,Y,`-r-t-}.R.g.m/[/_/b/d/n0Z0f0kQ#f`Q&O#YQ'Y$YU)W%g'`'iQ)}&bQ*s'_Q,Q(tQ,j)oQ,k)pR.c,^Q)n%}R,i)m$SfO`copx!Y![!_!a#l#u#w#x#|#}$O$P$Q$R$S$T$U$V$Z$_$l$m$n$o$p$q%O%d%k%v&d'm(O(T(U)Q)R)])f*P*l*o+T+d+h+i+l+o+s,Y,`-r-t-}.R.g.m/[/_/b/d/n0Z0f0kT&p#t,ZQ&|#xQ(P$oQ-u+hQ/]-tR0P/_]!nP!o'^*q-^/O#PaOPX`bcx![!f!o!y#_#e#l$_$m$n$o$p$q%O%b%d&]&i'^'e'h'{(U)O)Q)R*W*q+O+d+l+s+x,Y-[-^.R/O/dU#WY!W'|Q%T!eU&k#n#s+fQ(o%VS,s*T*zT.s,u-aj#UY!W!e#n#s%V%w&W)y*T*z,u-aU&V#`&`(}Q)x&[Q+e'|Q+q(`Q-s+fQ.O+rQ/g.WR0U/hQ)i%vQ,g)fR/o.mR,h)f`!jP!o'^'h*q+O-^/OT%W!g*|R%]!hW%U!e%V*z-aQ(z%^R,V({S#d`%bR&a#eQ)X%gT*t'`'iR*y'e[!lP!o'^*q-^/OR%X!gR#h`R,b)]R)a%kT-j+]-kQ/V-mR/z/WR/z/X",nodeNames:"\u26A0 LineComment BlockComment Program ModuleDeclaration MarkerAnnotation Identifier ScopedIdentifier . Annotation ) ( AnnotationArgumentList AssignmentExpression FieldAccess IntegerLiteral FloatingPointLiteral BooleanLiteral CharacterLiteral StringLiteral TextBlock null ClassLiteral void PrimitiveType TypeName ScopedTypeName GenericType TypeArguments AnnotatedType Wildcard extends super , ArrayType ] Dimension [ class this ParenthesizedExpression ObjectCreationExpression new ArgumentList } { ClassBody ; FieldDeclaration Modifiers public protected private abstract static final strictfp default synchronized native transient volatile VariableDeclarator Definition AssignOp ArrayInitializer MethodDeclaration TypeParameters TypeParameter TypeBound FormalParameters ReceiverParameter FormalParameter SpreadParameter Throws throws Block ClassDeclaration Superclass SuperInterfaces implements InterfaceTypeList InterfaceDeclaration interface ExtendsInterfaces InterfaceBody ConstantDeclaration EnumDeclaration enum EnumBody EnumConstant EnumBodyDeclarations AnnotationTypeDeclaration AnnotationTypeBody AnnotationTypeElementDeclaration StaticInitializer ConstructorDeclaration ConstructorBody ExplicitConstructorInvocation ArrayAccess MethodInvocation MethodName MethodReference ArrayCreationExpression Dimension AssignOp BinaryExpression CompareOp CompareOp LogicOp LogicOp BitOp BitOp BitOp ArithOp ArithOp ArithOp BitOp InstanceofExpression instanceof LambdaExpression InferredParameters TernaryExpression LogicOp : UpdateExpression UpdateOp UnaryExpression LogicOp BitOp CastExpression ElementValueArrayInitializer ElementValuePair open module ModuleBody ModuleDirective requires transitive exports to opens uses provides with PackageDeclaration package ImportDeclaration import Asterisk ExpressionStatement LabeledStatement Label IfStatement if else WhileStatement while ForStatement for ForSpec LocalVariableDeclaration var EnhancedForStatement ForSpec AssertStatement assert SwitchStatement switch SwitchBlock SwitchLabel case DoStatement do BreakStatement break ContinueStatement continue ReturnStatement return SynchronizedStatement ThrowStatement throw TryStatement try CatchClause catch CatchFormalParameter CatchType FinallyClause finally TryWithResourcesStatement ResourceSpecification Resource ClassContent",maxTerm:276,nodeProps:[["isolate",-4,1,2,18,19,""],["group",-26,4,47,76,77,82,87,92,145,147,150,151,153,156,158,161,163,165,167,172,174,176,178,180,181,183,191,"Statement",-25,6,13,14,15,16,17,18,19,20,21,22,39,40,41,99,100,102,103,106,118,120,122,125,127,130,"Expression",-7,23,24,25,26,27,29,34,"Type"],["openedBy",10,"(",44,"{"],["closedBy",11,")",45,"}"]],propSources:[Wx],skippedNodes:[0,1,2],repeatNodeCount:28,tokenData:"#'f_R!_OX%QXY'fYZ)bZ^'f^p%Qpq'fqr*|rs,^st%Qtu4euv5zvw7[wx8rxyAZyzAwz{Be{|CZ|}Dq}!OE_!O!PFx!P!Q! r!Q!R!,h!R![!0`![!]!>p!]!^!@Q!^!_!@n!_!`!BX!`!a!B{!a!b!Di!b!c!EX!c!}!LT!}#O!Mj#O#P%Q#P#Q!NW#Q#R!Nt#R#S4e#S#T%Q#T#o4e#o#p# h#p#q#!U#q#r##n#r#s#$[#s#y%Q#y#z'f#z$f%Q$f$g'f$g#BY4e#BY#BZ#$x#BZ$IS4e$IS$I_#$x$I_$I|4e$I|$JO#$x$JO$JT4e$JT$JU#$x$JU$KV4e$KV$KW#$x$KW&FU4e&FU&FV#$x&FV;'S4e;'S;=`5t<%lO4eS%VV&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QS%qO&YSS%tVOY&ZYZ%lZr&Zrs&ys;'S&Z;'S;=`'`<%lO&ZS&^VOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QS&vP;=`<%l%QS&|UOY&ZYZ%lZr&Zs;'S&Z;'S;=`'`<%lO&ZS'cP;=`<%l&Z_'mk&YS%yZOX%QXY'fYZ)bZ^'f^p%Qpq'fqr%Qrs%qs#y%Q#y#z'f#z$f%Q$f$g'f$g#BY%Q#BY#BZ'f#BZ$IS%Q$IS$I_'f$I_$I|%Q$I|$JO'f$JO$JT%Q$JT$JU'f$JU$KV%Q$KV$KW'f$KW&FU%Q&FU&FV'f&FV;'S%Q;'S;=`&s<%lO%Q_)iY&YS%yZX^*Xpq*X#y#z*X$f$g*X#BY#BZ*X$IS$I_*X$I|$JO*X$JT$JU*X$KV$KW*X&FU&FV*XZ*^Y%yZX^*Xpq*X#y#z*X$f$g*X#BY#BZ*X$IS$I_*X$I|$JO*X$JT$JU*X$KV$KW*X&FU&FV*XV+TX#tP&YSOY%QYZ%lZr%Qrs%qs!_%Q!_!`+p!`;'S%Q;'S;=`&s<%lO%QU+wV#_Q&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QT,aXOY,|YZ%lZr,|rs3Ys#O,|#O#P2d#P;'S,|;'S;=`3S<%lO,|T-PXOY-lYZ%lZr-lrs.^s#O-l#O#P.x#P;'S-l;'S;=`2|<%lO-lT-qX&YSOY-lYZ%lZr-lrs.^s#O-l#O#P.x#P;'S-l;'S;=`2|<%lO-lT.cVcPOY&ZYZ%lZr&Zrs&ys;'S&Z;'S;=`'`<%lO&ZT.}V&YSOY-lYZ/dZr-lrs1]s;'S-l;'S;=`2|<%lO-lT/iW&YSOY0RZr0Rrs0ns#O0R#O#P0s#P;'S0R;'S;=`1V<%lO0RP0UWOY0RZr0Rrs0ns#O0R#O#P0s#P;'S0R;'S;=`1V<%lO0RP0sOcPP0vTOY0RYZ0RZ;'S0R;'S;=`1V<%lO0RP1YP;=`<%l0RT1`XOY,|YZ%lZr,|rs1{s#O,|#O#P2d#P;'S,|;'S;=`3S<%lO,|T2QUcPOY&ZYZ%lZr&Zs;'S&Z;'S;=`'`<%lO&ZT2gVOY-lYZ/dZr-lrs1]s;'S-l;'S;=`2|<%lO-lT3PP;=`<%l-lT3VP;=`<%l,|T3_VcPOY&ZYZ%lZr&Zrs3ts;'S&Z;'S;=`'`<%lO&ZT3yR&WSXY4SYZ4`pq4SP4VRXY4SYZ4`pq4SP4eO&XP_4lb&YS&PZOY%QYZ%lZr%Qrs%qst%Qtu4eu!Q%Q!Q![4e![!c%Q!c!}4e!}#R%Q#R#S4e#S#T%Q#T#o4e#o$g%Q$g;'S4e;'S;=`5t<%lO4e_5wP;=`<%l4eU6RX#hQ&YSOY%QYZ%lZr%Qrs%qs!_%Q!_!`6n!`;'S%Q;'S;=`&s<%lO%QU6uV#]Q&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QV7cZ&nR&YSOY%QYZ%lZr%Qrs%qsv%Qvw8Uw!_%Q!_!`6n!`;'S%Q;'S;=`&s<%lO%QU8]V#aQ&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QT8wZ&YSOY9jYZ%lZr9jrs:xsw9jwx%Qx#O9j#O#PhYZ%lZr>hrs?dsw>hwx;hx#O>h#O#P&Z#P;'S>h;'S;=`@}<%lO>hT>kZOYhYZ%lZr>hrs@Ysw>hwx;hx#O>h#O#P&Z#P;'S>h;'S;=`@}<%lO>hP@]VOY@YZw@Ywx@rx#O@Y#P;'S@Y;'S;=`@w<%lO@YP@wObPP@zP;=`<%l@YTAQP;=`<%l>hTAWP;=`<%l9j_AbVZZ&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QVBOVYR&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QVBnX$ZP&YS#gQOY%QYZ%lZr%Qrs%qs!_%Q!_!`6n!`;'S%Q;'S;=`&s<%lO%QVCbZ#fR&YSOY%QYZ%lZr%Qrs%qs{%Q{|DT|!_%Q!_!`6n!`;'S%Q;'S;=`&s<%lO%QVD[V#rR&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QVDxVqR&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QVEf[#fR&YSOY%QYZ%lZr%Qrs%qs}%Q}!ODT!O!_%Q!_!`6n!`!aF[!a;'S%Q;'S;=`&s<%lO%QVFcV&xR&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%Q_GPZWY&YSOY%QYZ%lZr%Qrs%qs!O%Q!O!PGr!P!Q%Q!Q![IQ![;'S%Q;'S;=`&s<%lO%QVGwX&YSOY%QYZ%lZr%Qrs%qs!O%Q!O!PHd!P;'S%Q;'S;=`&s<%lO%QVHkV&qR&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QTIXc&YS`POY%QYZ%lZr%Qrs%qs!Q%Q!Q![IQ![!f%Q!f!gJd!g!hKQ!h!iJd!i#R%Q#R#SNz#S#W%Q#W#XJd#X#YKQ#Y#ZJd#Z;'S%Q;'S;=`&s<%lO%QTJkV&YS`POY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QTKV]&YSOY%QYZ%lZr%Qrs%qs{%Q{|LO|}%Q}!OLO!O!Q%Q!Q![Lp![;'S%Q;'S;=`&s<%lO%QTLTX&YSOY%QYZ%lZr%Qrs%qs!Q%Q!Q![Lp![;'S%Q;'S;=`&s<%lO%QTLwc&YS`POY%QYZ%lZr%Qrs%qs!Q%Q!Q![Lp![!f%Q!f!gJd!g!h%Q!h!iJd!i#R%Q#R#SNS#S#W%Q#W#XJd#X#Y%Q#Y#ZJd#Z;'S%Q;'S;=`&s<%lO%QTNXZ&YSOY%QYZ%lZr%Qrs%qs!Q%Q!Q![Lp![#R%Q#R#SNS#S;'S%Q;'S;=`&s<%lO%QT! PZ&YSOY%QYZ%lZr%Qrs%qs!Q%Q!Q![IQ![#R%Q#R#SNz#S;'S%Q;'S;=`&s<%lO%Q_! y]&YS#gQOY%QYZ%lZr%Qrs%qsz%Qz{!!r{!P%Q!P!Q!)e!Q!_%Q!_!`6n!`;'S%Q;'S;=`&s<%lO%Q_!!wX&YSOY!!rYZ!#dZr!!rrs!%Psz!!rz{!&_{;'S!!r;'S;=`!'s<%lO!!r_!#iT&YSOz!#xz{!$[{;'S!#x;'S;=`!$y<%lO!#xZ!#{TOz!#xz{!$[{;'S!#x;'S;=`!$y<%lO!#xZ!$_VOz!#xz{!$[{!P!#x!P!Q!$t!Q;'S!#x;'S;=`!$y<%lO!#xZ!$yOQZZ!$|P;=`<%l!#x_!%SXOY!%oYZ!#dZr!%ors!'ysz!%oz{!(i{;'S!%o;'S;=`!)_<%lO!%o_!%rXOY!!rYZ!#dZr!!rrs!%Psz!!rz{!&_{;'S!!r;'S;=`!'s<%lO!!r_!&dZ&YSOY!!rYZ!#dZr!!rrs!%Psz!!rz{!&_{!P!!r!P!Q!'V!Q;'S!!r;'S;=`!'s<%lO!!r_!'^V&YSQZOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%Q_!'vP;=`<%l!!r_!'|XOY!%oYZ!#dZr!%ors!#xsz!%oz{!(i{;'S!%o;'S;=`!)_<%lO!%o_!(lZOY!!rYZ!#dZr!!rrs!%Psz!!rz{!&_{!P!!r!P!Q!'V!Q;'S!!r;'S;=`!'s<%lO!!r_!)bP;=`<%l!%o_!)lV&YSPZOY!)eYZ%lZr!)ers!*Rs;'S!)e;'S;=`!+X<%lO!)e_!*WVPZOY!*mYZ%lZr!*mrs!+_s;'S!*m;'S;=`!,b<%lO!*m_!*rVPZOY!)eYZ%lZr!)ers!*Rs;'S!)e;'S;=`!+X<%lO!)e_!+[P;=`<%l!)e_!+dVPZOY!*mYZ%lZr!*mrs!+ys;'S!*m;'S;=`!,b<%lO!*mZ!,OSPZOY!+yZ;'S!+y;'S;=`!,[<%lO!+yZ!,_P;=`<%l!+y_!,eP;=`<%l!*mT!,ou&YS_POY%QYZ%lZr%Qrs%qs!O%Q!O!P!/S!P!Q%Q!Q![!0`![!d%Q!d!e!3j!e!f%Q!f!gJd!g!hKQ!h!iJd!i!n%Q!n!o!2U!o!q%Q!q!r!5h!r!z%Q!z!{!7`!{#R%Q#R#S!2r#S#U%Q#U#V!3j#V#W%Q#W#XJd#X#YKQ#Y#ZJd#Z#`%Q#`#a!2U#a#c%Q#c#d!5h#d#l%Q#l#m!7`#m;'S%Q;'S;=`&s<%lO%QT!/Za&YS`POY%QYZ%lZr%Qrs%qs!Q%Q!Q![IQ![!f%Q!f!gJd!g!hKQ!h!iJd!i#W%Q#W#XJd#X#YKQ#Y#ZJd#Z;'S%Q;'S;=`&s<%lO%QT!0gi&YS_POY%QYZ%lZr%Qrs%qs!O%Q!O!P!/S!P!Q%Q!Q![!0`![!f%Q!f!gJd!g!hKQ!h!iJd!i!n%Q!n!o!2U!o#R%Q#R#S!2r#S#W%Q#W#XJd#X#YKQ#Y#ZJd#Z#`%Q#`#a!2U#a;'S%Q;'S;=`&s<%lO%QT!2]V&YS_POY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QT!2wZ&YSOY%QYZ%lZr%Qrs%qs!Q%Q!Q![!0`![#R%Q#R#S!2r#S;'S%Q;'S;=`&s<%lO%QT!3oY&YSOY%QYZ%lZr%Qrs%qs!Q%Q!Q!R!4_!R!S!4_!S;'S%Q;'S;=`&s<%lO%QT!4f`&YS_POY%QYZ%lZr%Qrs%qs!Q%Q!Q!R!4_!R!S!4_!S!n%Q!n!o!2U!o#R%Q#R#S!3j#S#`%Q#`#a!2U#a;'S%Q;'S;=`&s<%lO%QT!5mX&YSOY%QYZ%lZr%Qrs%qs!Q%Q!Q!Y!6Y!Y;'S%Q;'S;=`&s<%lO%QT!6a_&YS_POY%QYZ%lZr%Qrs%qs!Q%Q!Q!Y!6Y!Y!n%Q!n!o!2U!o#R%Q#R#S!5h#S#`%Q#`#a!2U#a;'S%Q;'S;=`&s<%lO%QT!7e_&YSOY%QYZ%lZr%Qrs%qs!O%Q!O!P!8d!P!Q%Q!Q![!:r![!c%Q!c!i!:r!i#T%Q#T#Z!:r#Z;'S%Q;'S;=`&s<%lO%QT!8i]&YSOY%QYZ%lZr%Qrs%qs!Q%Q!Q![!9b![!c%Q!c!i!9b!i#T%Q#T#Z!9b#Z;'S%Q;'S;=`&s<%lO%QT!9gc&YSOY%QYZ%lZr%Qrs%qs!Q%Q!Q![!9b![!c%Q!c!i!9b!i!r%Q!r!sKQ!s#R%Q#R#S!8d#S#T%Q#T#Z!9b#Z#d%Q#d#eKQ#e;'S%Q;'S;=`&s<%lO%QT!:yi&YS_POY%QYZ%lZr%Qrs%qs!O%Q!O!P!wX#pR&YSOY%QYZ%lZr%Qrs%qs![%Q![!]!?d!];'S%Q;'S;=`&s<%lO%QV!?kV&vR&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QV!@XV!PR&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%Q_!@uY&_Z&YSOY%QYZ%lZr%Qrs%qs!^%Q!^!_!Ae!_!`+p!`;'S%Q;'S;=`&s<%lO%QU!AlX#iQ&YSOY%QYZ%lZr%Qrs%qs!_%Q!_!`6n!`;'S%Q;'S;=`&s<%lO%QV!B`X!bR&YSOY%QYZ%lZr%Qrs%qs!_%Q!_!`+p!`;'S%Q;'S;=`&s<%lO%QV!CSY&^R&YSOY%QYZ%lZr%Qrs%qs!_%Q!_!`+p!`!a!Cr!a;'S%Q;'S;=`&s<%lO%QU!CyY#iQ&YSOY%QYZ%lZr%Qrs%qs!_%Q!_!`6n!`!a!Ae!a;'S%Q;'S;=`&s<%lO%Q_!DrV&bX#oQ&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%Q_!E`X%}Z&YSOY%QYZ%lZr%Qrs%qs#]%Q#]#^!E{#^;'S%Q;'S;=`&s<%lO%QV!FQX&YSOY%QYZ%lZr%Qrs%qs#b%Q#b#c!Fm#c;'S%Q;'S;=`&s<%lO%QV!FrX&YSOY%QYZ%lZr%Qrs%qs#h%Q#h#i!G_#i;'S%Q;'S;=`&s<%lO%QV!GdX&YSOY%QYZ%lZr%Qrs%qs#X%Q#X#Y!HP#Y;'S%Q;'S;=`&s<%lO%QV!HUX&YSOY%QYZ%lZr%Qrs%qs#f%Q#f#g!Hq#g;'S%Q;'S;=`&s<%lO%QV!HvX&YSOY%QYZ%lZr%Qrs%qs#Y%Q#Y#Z!Ic#Z;'S%Q;'S;=`&s<%lO%QV!IhX&YSOY%QYZ%lZr%Qrs%qs#T%Q#T#U!JT#U;'S%Q;'S;=`&s<%lO%QV!JYX&YSOY%QYZ%lZr%Qrs%qs#V%Q#V#W!Ju#W;'S%Q;'S;=`&s<%lO%QV!JzX&YSOY%QYZ%lZr%Qrs%qs#X%Q#X#Y!Kg#Y;'S%Q;'S;=`&s<%lO%QV!KnV&tR&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%Q_!L[b&RZ&YSOY%QYZ%lZr%Qrs%qst%Qtu!LTu!Q%Q!Q![!LT![!c%Q!c!}!LT!}#R%Q#R#S!LT#S#T%Q#T#o!LT#o$g%Q$g;'S!LT;'S;=`!Md<%lO!LT_!MgP;=`<%l!LT_!MqVuZ&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QV!N_VsR&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QU!N{X#eQ&YSOY%QYZ%lZr%Qrs%qs!_%Q!_!`6n!`;'S%Q;'S;=`&s<%lO%QV# oV}R&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%Q_#!_Z'OX#dQ&YSOY%QYZ%lZr%Qrs%qs!_%Q!_!`6n!`#p%Q#p#q##Q#q;'S%Q;'S;=`&s<%lO%QU##XV#bQ&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QV##uV|R&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%QT#$cV#uP&YSOY%QYZ%lZr%Qrs%qs;'S%Q;'S;=`&s<%lO%Q_#%Ru&YS%yZ&PZOX%QXY'fYZ)bZ^'f^p%Qpq'fqr%Qrs%qst%Qtu4eu!Q%Q!Q![4e![!c%Q!c!}4e!}#R%Q#R#S4e#S#T%Q#T#o4e#o#y%Q#y#z'f#z$f%Q$f$g'f$g#BY4e#BY#BZ#$x#BZ$IS4e$IS$I_#$x$I_$I|4e$I|$JO#$x$JO$JT4e$JT$JU#$x$JU$KV4e$KV$KW#$x$KW&FU4e&FU&FV#$x&FV;'S4e;'S;=`5t<%lO4e",tokenizers:[0,1,2,3],topRules:{Program:[0,3],ClassContent:[1,194]},dynamicPrecedences:{27:1,232:-1,243:-1},specialized:[{term:231,get:O=>jx[O]||-1}],tokenPrec:7144});var Cx=ne.define({name:"java",parser:wp.configure({props:[se.add({IfStatement:le({except:/^\s*({|else\b)/}),TryStatement:le({except:/^\s*({|catch|finally)\b/}),LabeledStatement:sO,SwitchBlock:O=>{let e=O.textAfter,t=/^\s*\}/.test(e),i=/^\s*(case|default)\b/.test(e);return O.baseIndent+(t?0:i?1:2)*O.unit},Block:be({closing:"}"}),BlockComment:()=>null,Statement:le({except:/^{/})}),te.add({"Block SwitchBlock ClassBody ElementValueArrayInitializer ModuleBody EnumBody ConstructorBody InterfaceBody ArrayInitializer":me,BlockComment(O){return{from:O.from+2,to:O.to-2}}})]}),languageData:{commentTokens:{line:"//",block:{open:"/*",close:"*/"}},indentOnInput:/^\s*(?:case |default:|\{|\})$/}});function Zp(){return new J(Cx)}var Gx=F({String:d.string,Number:d.number,"True False":d.bool,PropertyName:d.propertyName,Null:d.null,", :":d.separator,"[ ]":d.squareBracket,"{ }":d.brace}),vp=Oe.deserialize({version:14,states:"$bOVQPOOOOQO'#Cb'#CbOnQPO'#CeOvQPO'#ClOOQO'#Cr'#CrQOQPOOOOQO'#Cg'#CgO}QPO'#CfO!SQPO'#CtOOQO,59P,59PO![QPO,59PO!aQPO'#CuOOQO,59W,59WO!iQPO,59WOVQPO,59QOqQPO'#CmO!nQPO,59`OOQO1G.k1G.kOVQPO'#CnO!vQPO,59aOOQO1G.r1G.rOOQO1G.l1G.lOOQO,59X,59XOOQO-E6k-E6kOOQO,59Y,59YOOQO-E6l-E6l",stateData:"#O~OeOS~OQSORSOSSOTSOWQO_ROgPO~OVXOgUO~O^[O~PVO[^O~O]_OVhX~OVaO~O]bO^iX~O^dO~O]_OVha~O]bO^ia~O",goto:"!kjPPPPPPkPPkqwPPPPk{!RPPP!XP!e!hXSOR^bQWQRf_TVQ_Q`WRg`QcZRicQTOQZRQe^RhbRYQR]R",nodeNames:"\u26A0 JsonText True False Null Number String } { Object Property PropertyName : , ] [ Array",maxTerm:25,nodeProps:[["isolate",-2,6,11,""],["openedBy",7,"{",14,"["],["closedBy",8,"}",15,"]"]],propSources:[Gx],skippedNodes:[0],repeatNodeCount:2,tokenData:"(|~RaXY!WYZ!W]^!Wpq!Wrs!]|}$u}!O$z!Q!R%T!R![&c![!]&t!}#O&y#P#Q'O#Y#Z'T#b#c'r#h#i(Z#o#p(r#q#r(w~!]Oe~~!`Wpq!]qr!]rs!xs#O!]#O#P!}#P;'S!];'S;=`$o<%lO!]~!}Og~~#QXrs!]!P!Q!]#O#P!]#U#V!]#Y#Z!]#b#c!]#f#g!]#h#i!]#i#j#m~#pR!Q![#y!c!i#y#T#Z#y~#|R!Q![$V!c!i$V#T#Z$V~$YR!Q![$c!c!i$c#T#Z$c~$fR!Q![!]!c!i!]#T#Z!]~$rP;=`<%l!]~$zO]~~$}Q!Q!R%T!R![&c~%YRT~!O!P%c!g!h%w#X#Y%w~%fP!Q![%i~%nRT~!Q![%i!g!h%w#X#Y%w~%zR{|&T}!O&T!Q![&Z~&WP!Q![&Z~&`PT~!Q![&Z~&hST~!O!P%c!Q![&c!g!h%w#X#Y%w~&yO[~~'OO_~~'TO^~~'WP#T#U'Z~'^P#`#a'a~'dP#g#h'g~'jP#X#Y'm~'rOR~~'uP#i#j'x~'{P#`#a(O~(RP#`#a(U~(ZOS~~(^P#f#g(a~(dP#i#j(g~(jP#X#Y(m~(rOQ~~(wOW~~(|OV~",tokenizers:[0],topRules:{JsonText:[0,1]},tokenPrec:0});var Ex=ne.define({name:"json",parser:vp.configure({props:[se.add({Object:le({except:/^\s*\}/}),Array:le({except:/^\s*\]/})}),te.add({"Object Array":me})]}),languageData:{closeBrackets:{brackets:["[","{",'"']},indentOnInput:/^\s*[\}\]]$/}});function Yp(){return new J(Ex)}var Ys=class O{static create(e,t,i,r,n){let s=r+(r<<8)+e+(t<<4)|0;return new O(e,t,i,s,n,[],[])}constructor(e,t,i,r,n,s,a){this.type=e,this.value=t,this.from=i,this.hash=r,this.end=n,this.children=s,this.positions=a,this.hashProp=[[R.contextHash,r]]}addChild(e,t){e.prop(R.contextHash)!=this.hash&&(e=new D(e.type,e.children,e.positions,e.length,this.hashProp)),this.children.push(e),this.positions.push(t)}toTree(e,t=this.end){let i=this.children.length-1;return i>=0&&(t=Math.max(t,this.positions[i]+this.children[i].length+this.from)),new D(e.types[this.type],this.children,this.positions,t-this.from).balance({makeTree:(r,n,s)=>new D(ue.none,r,n,s,this.hashProp)})}},b;(function(O){O[O.Document=1]="Document",O[O.CodeBlock=2]="CodeBlock",O[O.FencedCode=3]="FencedCode",O[O.Blockquote=4]="Blockquote",O[O.HorizontalRule=5]="HorizontalRule",O[O.BulletList=6]="BulletList",O[O.OrderedList=7]="OrderedList",O[O.ListItem=8]="ListItem",O[O.ATXHeading1=9]="ATXHeading1",O[O.ATXHeading2=10]="ATXHeading2",O[O.ATXHeading3=11]="ATXHeading3",O[O.ATXHeading4=12]="ATXHeading4",O[O.ATXHeading5=13]="ATXHeading5",O[O.ATXHeading6=14]="ATXHeading6",O[O.SetextHeading1=15]="SetextHeading1",O[O.SetextHeading2=16]="SetextHeading2",O[O.HTMLBlock=17]="HTMLBlock",O[O.LinkReference=18]="LinkReference",O[O.Paragraph=19]="Paragraph",O[O.CommentBlock=20]="CommentBlock",O[O.ProcessingInstructionBlock=21]="ProcessingInstructionBlock",O[O.Escape=22]="Escape",O[O.Entity=23]="Entity",O[O.HardBreak=24]="HardBreak",O[O.Emphasis=25]="Emphasis",O[O.StrongEmphasis=26]="StrongEmphasis",O[O.Link=27]="Link",O[O.Image=28]="Image",O[O.InlineCode=29]="InlineCode",O[O.HTMLTag=30]="HTMLTag",O[O.Comment=31]="Comment",O[O.ProcessingInstruction=32]="ProcessingInstruction",O[O.Autolink=33]="Autolink",O[O.HeaderMark=34]="HeaderMark",O[O.QuoteMark=35]="QuoteMark",O[O.ListMark=36]="ListMark",O[O.LinkMark=37]="LinkMark",O[O.EmphasisMark=38]="EmphasisMark",O[O.CodeMark=39]="CodeMark",O[O.CodeText=40]="CodeText",O[O.CodeInfo=41]="CodeInfo",O[O.LinkTitle=42]="LinkTitle",O[O.LinkLabel=43]="LinkLabel",O[O.URL=44]="URL"})(b||(b={}));var Pc=class{constructor(e,t){this.start=e,this.content=t,this.marks=[],this.parsers=[]}},Sc=class{constructor(){this.text="",this.baseIndent=0,this.basePos=0,this.depth=0,this.markers=[],this.pos=0,this.indent=0,this.next=-1}forward(){this.basePos>this.pos&&this.forwardInner()}forwardInner(){let e=this.skipSpace(this.basePos);this.indent=this.countIndent(e,this.pos,this.indent),this.pos=e,this.next=e==this.text.length?-1:this.text.charCodeAt(e)}skipSpace(e){return vr(this.text,e)}reset(e){for(this.text=e,this.baseIndent=this.basePos=this.pos=this.indent=0,this.forwardInner(),this.depth=1;this.markers.length;)this.markers.pop()}moveBase(e){this.basePos=e,this.baseIndent=this.countIndent(e,this.pos,this.indent)}moveBaseColumn(e){this.baseIndent=e,this.basePos=this.findColumn(e)}addMarker(e){this.markers.push(e)}countIndent(e,t=0,i=0){for(let r=t;r=e.stack[t.depth+1].value+t.baseIndent)return!0;if(t.indent>=t.baseIndent+4)return!1;let i=(O.type==b.OrderedList?Rc:_c)(t,e,!1);return i>0&&(O.type!=b.BulletList||Yc(t,e,!1)<0)&&t.text.charCodeAt(t.pos+i-1)==O.value}var Ap={[b.Blockquote](O,e,t){return t.next!=62?!1:(t.markers.push(L(b.QuoteMark,e.lineStart+t.pos,e.lineStart+t.pos+1)),t.moveBase(t.pos+(ot(t.text.charCodeAt(t.pos+1))?2:1)),O.end=e.lineStart+t.text.length,!0)},[b.ListItem](O,e,t){return t.indent-1?!1:(t.moveBaseColumn(t.baseIndent+O.value),!0)},[b.OrderedList]:_p,[b.BulletList]:_p,[b.Document](){return!0}};function ot(O){return O==32||O==9||O==10||O==13}function vr(O,e=0){for(;et&&ot(O.charCodeAt(e-1));)e--;return e}function Lp(O){if(O.next!=96&&O.next!=126)return-1;let e=O.pos+1;for(;e-1&&O.depth==e.stack.length&&e.parser.leafBlockParsers.indexOf(Kp.SetextHeading)>-1||i<3?-1:1}function Dp(O,e){for(let t=O.stack.length-1;t>=0;t--)if(O.stack[t].type==e)return!0;return!1}function _c(O,e,t){return(O.next==45||O.next==43||O.next==42)&&(O.pos==O.text.length-1||ot(O.text.charCodeAt(O.pos+1)))&&(!t||Dp(e,b.BulletList)||O.skipSpace(O.pos+2)=48&&r<=57;){i++;if(i==O.text.length)return-1;r=O.text.charCodeAt(i)}return i==O.pos||i>O.pos+9||r!=46&&r!=41||iO.pos+1||O.next!=49)?-1:i+1-O.pos}function Ip(O){if(O.next!=35)return-1;let e=O.pos+1;for(;e6?-1:t}function Bp(O){if(O.next!=45&&O.next!=61||O.indent>=O.baseIndent+4)return-1;let e=O.pos+1;for(;e/,Fp=/\?>/,Tc=[[/^<(?:script|pre|style)(?:\s|>|$)/i,/<\/(?:script|pre|style)>/i],[/^\s*/i.exec(i);if(n)return O.append(L(b.Comment,t,t+1+n[0].length));let s=/^\?[^]*?\?>/.exec(i);if(s)return O.append(L(b.ProcessingInstruction,t,t+1+s[0].length));let a=/^(?:![A-Z][^]*?>|!\[CDATA\[[^]*?\]\]>|\/\s*[a-zA-Z][\w-]*\s*>|\s*[a-zA-Z][\w-]*(\s+[a-zA-Z:_][\w-.:]*(?:\s*=\s*(?:[^\s"'=<>`]+|'[^']*'|"[^"]*"))?)*\s*(\/\s*)?>)/.exec(i);return a?O.append(L(b.HTMLTag,t,t+1+a[0].length)):-1},Emphasis(O,e,t){if(e!=95&&e!=42)return-1;let i=t+1;for(;O.char(i)==e;)i++;let r=O.slice(t-1,t),n=O.slice(i,i+1),s=Rr.test(r),a=Rr.test(n),o=/\s|^$/.test(r),l=/\s|^$/.test(n),c=!l&&(!a||o||s),h=!o&&(!s||l||a),f=c&&(e==42||!h||s),u=h&&(e==42||!c||a);return O.append(new Ve(e==95?tm:Om,t,i,(f?1:0)|(u?2:0)))},HardBreak(O,e,t){if(e==92&&O.char(t+1)==10)return O.append(L(b.HardBreak,t,t+2));if(e==32){let i=t+1;for(;O.char(i)==32;)i++;if(O.char(i)==10&&i>=t+2)return O.append(L(b.HardBreak,t,i+1))}return-1},Link(O,e,t){return e==91?O.append(new Ve(zO,t,t+1,1)):-1},Image(O,e,t){return e==33&&O.char(t+1)==91?O.append(new Ve(Vs,t,t+2,1)):-1},LinkEnd(O,e,t){if(e!=93)return-1;for(let i=O.parts.length-1;i>=0;i--){let r=O.parts[i];if(r instanceof Ve&&(r.type==zO||r.type==Vs)){if(!r.side||O.skipSpace(r.to)==t&&!/[(\[]/.test(O.slice(t+1,t+2)))return O.parts[i]=null,-1;let n=O.takeContent(i),s=O.parts[i]=Mx(O,n,r.type==zO?b.Link:b.Image,r.from,t+1);if(r.type==zO)for(let a=0;ae?L(b.URL,e+t,n+t):n==O.length?null:!1}}function rm(O,e,t){let i=O.charCodeAt(e);if(i!=39&&i!=34&&i!=40)return!1;let r=i==40?41:i;for(let n=e+1,s=!1;n=this.end?-1:this.text.charCodeAt(e-this.offset)}get end(){return this.offset+this.text.length}slice(e,t){return this.text.slice(e-this.offset,t-this.offset)}append(e){return this.parts.push(e),e.to}addDelimiter(e,t,i,r,n){return this.append(new Ve(e,t,i,(r?1:0)|(n?2:0)))}get hasOpenLink(){for(let e=this.parts.length-1;e>=0;e--){let t=this.parts[e];if(t instanceof Ve&&(t.type==zO||t.type==Vs))return!0}return!1}addElement(e){return this.append(e)}resolveMarkers(e){for(let i=e;i=e;o--){let $=this.parts[o];if($ instanceof Ve&&$.side&1&&$.type==r.type&&!(n&&(r.side&1||$.side&2)&&($.to-$.from+s)%3==0&&(($.to-$.from)%3||s%3))){a=$;break}}if(!a)continue;let l=r.type.resolve,c=[],h=a.from,f=r.to;if(n){let $=Math.min(2,a.to-a.from,s);h=a.to-$,f=r.from+$,l=$==1?"Emphasis":"StrongEmphasis"}a.type.mark&&c.push(this.elt(a.type.mark,h,a.to));for(let $=o+1;$=0;t--){let i=this.parts[t];if(i instanceof Ve&&i.type==e&&i.side&1)return t}return null}takeContent(e){let t=this.resolveMarkers(e);return this.parts.length=e,t}getDelimiterAt(e){let t=this.parts[e];return t instanceof Ve?t:null}skipSpace(e){return vr(this.text,e-this.offset)+this.offset}elt(e,t,i,r){return typeof e=="string"?L(this.parser.getNodeType(e),t,i,r):new Rs(e,t)}};Vr.linkStart=zO;Vr.imageStart=Vs;function wc(O,e){if(!e.length)return O;if(!O.length)return e;let t=O.slice(),i=0;for(let r of e){for(;i(e?e-1:0))return!1;if(this.fragmentEnd<0){let n=this.fragment.to;for(;n>0&&this.input.read(n-1,n)!=` +`;)n--;this.fragmentEnd=n?n-1:0}let i=this.cursor;i||(i=this.cursor=this.fragment.tree.cursor(),i.firstChild());let r=e+this.fragment.offset;for(;i.to<=r;)if(!i.parent())return!1;for(;;){if(i.from>=r)return this.fragment.from<=t;if(!i.childAfter(r))return!1}}matches(e){let t=this.cursor.tree;return t&&t.prop(R.contextHash)==e}takeNodes(e){let t=this.cursor,i=this.fragment.offset,r=this.fragmentEnd-(this.fragment.openEnd?1:0),n=e.absoluteLineStart,s=n,a=e.block.children.length,o=s,l=a;for(;;){if(t.to-i>r){if(t.type.isAnonymous&&t.firstChild())continue;break}let c=sm(t.from-i,e.ranges);if(t.to-i<=e.ranges[e.rangeI].to)e.addNode(t.tree,c);else{let h=new D(e.parser.nodeSet.types[b.Paragraph],[],[],0,e.block.hashProp);e.reusePlaceholders.set(h,t.tree),e.addNode(h,c)}if(t.type.is("Block")&&(Dx.indexOf(t.type.id)<0?(s=t.to-i,a=e.block.children.length):(s=o,a=l,o=t.to-i,l=e.block.children.length)),!t.nextSibling())break}for(;e.block.children.length>a;)e.block.children.pop(),e.block.positions.pop();return s-n}};function sm(O,e){let t=O;for(let i=1;iZs[O]),Object.keys(Zs).map(O=>Kp[O]),Object.keys(Zs),Ax,Ap,Object.keys(gc).map(O=>gc[O]),Object.keys(gc),[]);function Bx(O,e,t){let i=[];for(let r=O.firstChild,n=e;;r=r.nextSibling){let s=r?r.from:t;if(s>n&&i.push({from:n,to:s}),!r)break;n=r.to}return i}function om(O){let{codeParser:e,htmlParser:t}=O;return{wrap:xO((r,n)=>{let s=r.type.id;if(e&&(s==b.CodeBlock||s==b.FencedCode)){let a="";if(s==b.FencedCode){let l=r.node.getChild(b.CodeInfo);l&&(a=n.read(l.from,l.to))}let o=e(a);if(o)return{parser:o,overlay:l=>l.type.id==b.CodeText,bracketed:s==b.FencedCode}}else if(t&&(s==b.HTMLBlock||s==b.HTMLTag||s==b.CommentBlock))return{parser:t,overlay:Bx(r.node,r.from,r.to)};return null})}}var Nx={resolve:"Strikethrough",mark:"StrikethroughMark"},Fx={defineNodes:[{name:"Strikethrough",style:{"Strikethrough/...":d.strikethrough}},{name:"StrikethroughMark",style:d.processingInstruction}],parseInline:[{name:"Strikethrough",parse(O,e,t){if(e!=126||O.char(t+1)!=126||O.char(t+2)==126)return-1;let i=O.slice(t-1,t),r=O.slice(t+2,t+3),n=/\s|^$/.test(i),s=/\s|^$/.test(r),a=Rr.test(i),o=Rr.test(r);return O.addDelimiter(Nx,t,t+2,!s&&(!o||n||a),!n&&(!a||s||o))},after:"Emphasis"}]};function Yr(O,e,t=0,i,r=0){let n=0,s=!0,a=-1,o=-1,l=!1,c=()=>{i.push(O.elt("TableCell",r+a,r+o,O.parser.parseInline(e.slice(a,o),r+a)))};for(let h=t;h-1)&&n++,s=!1,i&&(a>-1&&c(),i.push(O.elt("TableDelimiter",h+r,h+r+1))),a=o=-1):(l||f!=32&&f!=9)&&(a<0&&(a=h),o=h+1),l=!l&&f==92}return a>-1&&(n++,i&&c()),n}function zp(O,e){for(let t=e;tr instanceof qs)||!zp(e.text,e.basePos))return!1;let i=O.peekLine();return lm.test(i)&&Yr(O,e.text,e.basePos)==Yr(O,i,e.basePos)},before:"SetextHeading"}]},vc=class{nextLine(){return!1}finish(e,t){return e.addLeafElement(t,e.elt("Task",t.start,t.start+t.content.length,[e.elt("TaskMarker",t.start,t.start+3),...e.parser.parseInline(t.content.slice(3),t.start+3)])),!0}},Kx={defineNodes:[{name:"Task",block:!0,style:d.list},{name:"TaskMarker",style:d.atom}],parseBlock:[{name:"TaskList",leaf(O,e){return/^\[[ xX]\][ \t]/.test(e.content)&&O.parentType().name=="ListItem"?new vc:null},after:"SetextHeading"}]},Up=/(www\.)|(https?:\/\/)|([\w.+-]{1,100}@)|(mailto:|xmpp:)/gy,Wp=/[\w-]+(\.[\w-]+)+(\/[^\s<]*)?/gy,Jx=/[\w-]+\.[\w-]+($|\/)/,jp=/[\w.+-]+@[\w-]+(\.[\w.-]+)+/gy,Cp=/\/[a-zA-Z\d@.]+/gy;function Gp(O,e,t,i){let r=0;for(let n=e;n-1)return-1;let i=e+t[0].length;for(;;){let r=O[i-1],n;if(/[?!.,:*_~]/.test(r)||r==")"&&Gp(O,e,i,")")>Gp(O,e,i,"("))i--;else if(r==";"&&(n=/&(?:#\d+|#x[a-f\d]+|\w+);$/.exec(O.slice(e,i))))i=e+n.index;else break}return i}function Ep(O,e){jp.lastIndex=e;let t=jp.exec(O);if(!t)return-1;let i=t[0][t[0].length-1];return i=="_"||i=="-"?-1:e+t[0].length-(i=="."?1:0)}var tk={parseInline:[{name:"Autolink",parse(O,e,t){let i=t-O.offset;if(i&&/\w/.test(O.text[i-1]))return-1;Up.lastIndex=i;let r=Up.exec(O.text),n=-1;if(!r)return-1;if(r[1]||r[2]){if(n=ek(O.text,i+r[0].length),n>-1&&O.hasOpenLink){let s=/([^\[\]]|\[[^\]]*\])*/.exec(O.text.slice(i,n));n=i+s[0].length}}else r[3]?n=Ep(O.text,i):(n=Ep(O.text,i+r[0].length),n>-1&&r[0]=="xmpp:"&&(Cp.lastIndex=n,r=Cp.exec(O.text),r&&(n=r.index+r[0].length)));return n<0?-1:(O.addElement(O.elt("URL",t,n+O.offset)),n+O.offset)}}]},cm=[Hx,Kx,Fx,tk];function hm(O,e,t){return(i,r,n)=>{if(r!=O||i.char(n+1)==O)return-1;let s=[i.elt(t,n,n+1)];for(let a=n+1;a"}}}),mm=new R,gm=am.configure({props:[te.add(O=>!O.is("Block")||O.is("Document")||zc(O)!=null||Ok(O)?void 0:(e,t)=>({from:t.doc.lineAt(e.from).to,to:e.to})),mm.add(zc),se.add({Document:()=>null}),iO.add({Document:pm})]});function zc(O){let e=/^(?:ATX|Setext)Heading(\d)$/.exec(O.name);return e?+e[1]:void 0}function Ok(O){return O.name=="OrderedList"||O.name=="BulletList"}function ik(O,e){let t=O;for(;;){let i=t.nextSibling,r;if(!i||(r=zc(i.type))!=null&&r<=e)break;t=i}return t.to}var rk=Ho.of((O,e,t)=>{for(let i=U(O).resolveInner(t,-1);i&&!(i.fromt)return{from:t,to:n}}return null});function Uc(O){return new Re(pm,O,[],"markdown")}var nk=Uc(gm),sk=gm.configure([cm,dm,fm,um,{props:[te.add({Table:(O,e)=>({from:e.doc.lineAt(O.from).to,to:O.to})})]}]),zs=Uc(sk);function ak(O,e){return t=>{if(t&&O){let i=null;if(t=/\S*/.exec(t)[0],typeof O=="function"?i=O(t):i=ar.matchLanguageName(O,t,!0),i instanceof ar)return i.support?i.support.language.parser:nr.getSkippingParser(i.load());if(i)return i.parser}return e?e.parser:null}}var qr=class{constructor(e,t,i,r,n,s,a){this.node=e,this.from=t,this.to=i,this.spaceBefore=r,this.spaceAfter=n,this.type=s,this.item=a}blank(e,t=!0){let i=this.spaceBefore+(this.node.name=="Blockquote"?">":"");if(e!=null){for(;i.length0;r--)i+=" ";return i+(t?this.spaceAfter:"")}}marker(e,t){let i=this.node.name=="OrderedList"?String(+Sm(this.item,e)[2]+t):"";return this.spaceBefore+i+this.type+this.spaceAfter}};function Pm(O,e){let t=[],i=[];for(let r=O;r;r=r.parent){if(r.name=="FencedCode")return i;(r.name=="ListItem"||r.name=="Blockquote")&&t.push(r)}for(let r=t.length-1;r>=0;r--){let n=t[r],s,a=e.lineAt(n.from),o=n.from-a.from;if(n.name=="Blockquote"&&(s=/^ *>( ?)/.exec(a.text.slice(o))))i.push(new qr(n,o,o+s[0].length,"",s[1],">",null));else if(n.name=="ListItem"&&n.parent.name=="OrderedList"&&(s=/^( *)\d+([.)])( *)/.exec(a.text.slice(o)))){let l=s[3],c=s[0].length;l.length>=4&&(l=l.slice(0,l.length-4),c-=4),i.push(new qr(n.parent,o,o+c,s[1],l,s[2],n))}else if(n.name=="ListItem"&&n.parent.name=="BulletList"&&(s=/^( *)([-+*])( {1,4}\[[ xX]\])?( +)/.exec(a.text.slice(o)))){let l=s[4],c=s[0].length;l.length>4&&(l=l.slice(0,l.length-4),c-=4);let h=s[2];s[3]&&(h+=s[3].replace(/[xX]/," ")),i.push(new qr(n.parent,o,o+c,s[1],l,h,n))}}return i}function Sm(O,e){return/^(\s*)(\d+)(?=[.)])/.exec(e.sliceString(O.from,O.from+10))}function Vc(O,e,t,i=0){for(let r=-1,n=O;;){if(n.name=="ListItem"){let a=Sm(n,e),o=+a[2];if(r>=0){if(o!=r+1)return;t.push({from:n.from+a[1].length,to:n.from+a[0].length,insert:String(r+2+i)})}r=o}let s=n.nextSibling;if(!s)break;n=s}}function Wc(O,e){let t=/^[ \t]*/.exec(O)[0].length;if(!t||e.facet(nO)!=" ")return O;let i=ve(O,4,t),r="";for(let n=i;n>0;)n>=4?(r+=" ",n-=4):(r+=" ",n--);return r+O.slice(t)}var ok=(O={})=>({state:e,dispatch:t})=>{let i=U(e),{doc:r}=e,n=null,s=e.changeByRange(a=>{if(!a.empty||!zs.isActiveAt(e,a.from,-1)&&!zs.isActiveAt(e,a.from,1))return n={range:a};let o=a.from,l=r.lineAt(o),c=Pm(i.resolveInner(o,-1),r);for(;c.length&&c[c.length-1].from>o-l.from;)c.pop();if(!c.length)return n={range:a};let h=c[c.length-1];if(h.to-h.spaceAfter.length>o-l.from)return n={range:a};let f=o>=h.to-h.spaceAfter.length&&!/\S/.test(l.text.slice(h.to));if(h.item&&f){let m=h.node.firstChild,g=h.node.getChild("ListItem","ListItem");if(m.to>=o||g&&g.to0&&!/[^\s>]/.test(r.lineAt(l.from-1).text)||O.nonTightLists===!1){let P=c.length>1?c[c.length-2]:null,y,X="";P&&P.item?(y=l.from+P.from,X=P.marker(r,1)):y=l.from+(P?P.to:0);let x=[{from:y,to:o,insert:X}];return h.node.name=="OrderedList"&&Vc(h.item,r,x,-2),P&&P.node.name=="OrderedList"&&Vc(P.item,r,x),{range:S.cursor(y+X.length),changes:x}}else{let P=$m(c,e,l);return{range:S.cursor(o+P.length+1),changes:{from:l.from,insert:P+e.lineBreak}}}}if(h.node.name=="Blockquote"&&f&&l.from){let m=r.lineAt(l.from-1),g=/>\s*$/.exec(m.text);if(g&&g.index==h.from){let P=e.changes([{from:m.from+g.index,to:m.to},{from:l.from+h.from,to:l.to}]);return{range:a.map(P),changes:P}}}let u=[];h.node.name=="OrderedList"&&Vc(h.item,r,u);let Q=h.item&&h.item.from]*/.exec(l.text)[0].length>=h.to)for(let m=0,g=c.length-1;m<=g;m++)$+=m==g&&!Q?c[m].marker(r,1):c[m].blank(ml.from&&/\s/.test(l.text.charAt(p-l.from-1));)p--;return $=Wc($,e),ck(h.node,e.doc)&&($=$m(c,e,l)+e.lineBreak+$),u.push({from:p,to:o,insert:e.lineBreak+$}),{range:S.cursor(p+$.length+1),changes:u}});return n?!1:(t(e.update(s,{scrollIntoView:!0,userEvent:"input"})),!0)},lk=ok();function Qm(O){return O.name=="QuoteMark"||O.name=="ListMark"}function ck(O,e){if(O.name!="OrderedList"&&O.name!="BulletList")return!1;let t=O.firstChild,i=O.getChild("ListItem","ListItem");if(!i)return!1;let r=e.lineAt(t.to),n=e.lineAt(i.from),s=/^[\s>]*$/.test(r.text);return r.number+(s?0:1){let t=U(O),i=null,r=O.changeByRange(n=>{let s=n.from,{doc:a}=O;if(n.empty&&zs.isActiveAt(O,n.from)){let o=a.lineAt(s),l=Pm(hk(t,s),a);if(l.length){let c=l[l.length-1],h=c.to-c.spaceAfter.length+(c.spaceAfter?1:0);if(s-o.from>h&&!/\S/.test(o.text.slice(h,s-o.from)))return{range:S.cursor(o.from+h),changes:{from:o.from+h,to:s}};if(s-o.from==h&&(!c.item||o.from<=c.item.from||!/\S/.test(o.text.slice(0,c.to)))){let f=o.from+c.from;if(c.item&&c.node.from{var t;let{main:i}=e.state.selection;if(i.empty)return!1;let r=(t=O.clipboardData)===null||t===void 0?void 0:t.getData("text/plain");if(!r||!/^(https?:\/\/|mailto:|xmpp:|www\.)/.test(r)||(/^www\./.test(r)&&(r="https://"+r),!zs.isActiveAt(e.state,i.from,1)))return!1;let n=U(e.state),s=!1;return n.iterate({from:i.from,to:i.to,enter:a=>{(a.from>i.from||$k.test(a.name))&&(s=!0)},leave:a=>{a.to=97&&O<=122||O>=65&&O<=90}function zr(O){return O==95||O>=128||wm(O)}function Cc(O){return O>=48&&O<=55||O>=97&&O<=102||O>=65&&O<=70}var _w={int:!0,integer:!0,bool:!0,boolean:!0,float:!0,double:!0,real:!0,string:!0,array:!0,object:!0,unset:!0,__proto__:null},Rw=new z(O=>{if(O.next==40){O.advance();let e=0;for(;km(O.peek(e));)e++;let t="",i;for(;wm(i=O.peek(e));)t+=String.fromCharCode(i),e++;for(;km(O.peek(e));)e++;O.peek(e)==41&&_w[t.toLowerCase()]&&O.acceptToken(mk)}else if(O.next==60&&O.peek(1)==60&&O.peek(2)==60){for(let i=0;i<3;i++)O.advance();for(;O.next==32||O.next==9;)O.advance();let e=O.next==39;if(e&&O.advance(),!zr(O.next))return;let t=String.fromCharCode(O.next);for(;O.advance(),!(!zr(O.next)&&!(O.next>=48&&O.next<=55));)t+=String.fromCharCode(O.next);if(e){if(O.next!=39)return;O.advance()}if(O.next!=10&&O.next!=13)return;for(;;){let i=O.next==10||O.next==13;if(O.advance(),O.next<0)return;if(i){for(;O.next==32||O.next==9;)O.advance();let r=!0;for(let n=0;n{O.next<0&&O.acceptToken(Tk)}),qw=new z((O,e)=>{O.next==63&&e.canShift(bm)&&O.peek(1)==62&&O.acceptToken(bm)});function zw(O){let e=O.peek(1);if(e==110||e==114||e==116||e==118||e==101||e==102||e==92||e==36||e==34||e==123)return 2;if(e>=48&&e<=55){let t=2,i;for(;t<5&&(i=O.peek(t))>=48&&i<=55;)t++;return t}if(e==120&&Cc(O.peek(2)))return Cc(O.peek(3))?4:3;if(e==117&&O.peek(2)==123)for(let t=3;;t++){let i=O.peek(t);if(i==125)return t==2?0:t+1;if(!Cc(i))break}return 0}var Uw=new z((O,e)=>{let t=!1;for(;!(O.next==34||O.next<0||O.next==36&&(zr(O.peek(1))||O.peek(1)==123)||O.next==123&&O.peek(1)==36);t=!0){if(O.next==92){let i=zw(O);if(i){if(t)break;return O.acceptToken(Sk,i)}}else if(!t&&(O.next==91||O.next==45&&O.peek(1)==62&&zr(O.peek(2))||O.next==63&&O.peek(1)==45&&O.peek(2)==62&&zr(O.peek(3)))&&e.canShift(Xk))break;O.advance()}t&&O.acceptToken(Pk)}),Ww=F({"Visibility abstract final static":d.modifier,"for foreach while do if else elseif switch try catch finally return throw break continue default case":d.controlKeyword,"endif endfor endforeach endswitch endwhile declare enddeclare goto match":d.controlKeyword,"and or xor yield unset clone instanceof insteadof":d.operatorKeyword,"function fn class trait implements extends const enum global interface use var":d.definitionKeyword,"include include_once require require_once namespace":d.moduleKeyword,"new from echo print array list as":d.keyword,null:d.null,Boolean:d.bool,VariableName:d.variableName,"NamespaceName/...":d.namespace,"NamedType/...":d.typeName,Name:d.name,"CallExpression/Name":d.function(d.variableName),"LabelStatement/Name":d.labelName,"MemberExpression/Name":d.propertyName,"MemberExpression/VariableName":d.special(d.propertyName),"ScopedExpression/ClassMemberName/Name":d.propertyName,"ScopedExpression/ClassMemberName/VariableName":d.special(d.propertyName),"CallExpression/MemberExpression/Name":d.function(d.propertyName),"CallExpression/ScopedExpression/ClassMemberName/Name":d.function(d.propertyName),"MethodDeclaration/Name":d.function(d.definition(d.variableName)),"FunctionDefinition/Name":d.function(d.definition(d.variableName)),"ClassDeclaration/Name":d.definition(d.className),UpdateOp:d.updateOperator,ArithOp:d.arithmeticOperator,"LogicOp IntersectionType/&":d.logicOperator,BitOp:d.bitwiseOperator,CompareOp:d.compareOperator,ControlOp:d.controlOperator,AssignOp:d.definitionOperator,"$ ConcatOp":d.operator,LineComment:d.lineComment,BlockComment:d.blockComment,Integer:d.integer,Float:d.float,String:d.string,ShellExpression:d.special(d.string),"=> ->":d.punctuation,"( )":d.paren,"#[ [ ]":d.squareBracket,"${ { }":d.brace,"-> ?->":d.derefOperator,", ; :: : \\":d.separator,"PhpOpen PhpClose":d.processingInstruction}),jw={__proto__:null,static:325,STATIC:325,class:351,CLASS:351},Zm=Oe.deserialize({version:14,states:"%#[Q`OWOOQhQaOOP%oO`OOOOO#t'#Hh'#HhO%tO#|O'#DuOOO#u'#Dx'#DxQ&SOWO'#DxO&XO$VOOOOQ#u'#Dy'#DyO&lQaO'#D}O'[QdO'#EQO+QQdO'#IqO+_QdO'#ERO-RQaO'#EXO/bQ`O'#EUO/gQ`O'#E_O2UQaO'#E_O2]Q`O'#EgO2bQ`O'#EqO-RQaO'#EqO2mQpO'#FOO2rQ`O'#FOOOQS'#Iq'#IqO2wQ`O'#ExOOQS'#Ih'#IhO5SQdO'#IeO9UQeO'#F]O-RQaO'#FlO-RQaO'#FmO-RQaO'#FnO-RQaO'#FoO-RQaO'#FoO-RQaO'#FrOOQO'#Ir'#IrO9cQ`O'#FxOOQO'#Ht'#HtO9kQ`O'#HXO:VQ`O'#FsO:bQ`O'#HfO:mQ`O'#GPO:uQaO'#GQO-RQaO'#G`O-RQaO'#GcO;bOrO'#GfOOQS'#JP'#JPOOQS'#JO'#JOOOQS'#Ie'#IeO/bQ`O'#GmO/bQ`O'#GoO/bQ`O'#GtOhQaO'#GvO;iQ`O'#GwO;nQ`O'#GzO:]Q`O'#G}O;sQeO'#HOO;sQeO'#HPO;sQeO'#HQO;}Q`O'#HROhQ`O'#HVO:]Q`O'#HWO>mQ`O'#HWO;}Q`O'#HXO:]Q`O'#HZO:]Q`O'#H[O:]Q`O'#H]O>rQ`O'#H`O>}Q`O'#HaOQO!$dQ`O,5POOQ#u-E;h-E;hO!1QQ`O,5=tOOO#u,5:_,5:_O!1]O#|O,5:_OOO#u-E;g-E;gOOOO,5>|,5>|OOQ#y1G0T1G0TO!1eQ`O1G0YO-RQaO1G0YO!2wQ`O1G0qOOQS1G0q1G0qOOQS'#Eo'#EoOOQS'#Il'#IlO-RQaO'#IlOOQS1G0r1G0rO!4ZQ`O'#IoO!5pQ`O'#IqO!5}QaO'#EwOOQO'#Io'#IoO!6XQ`O'#InO!6aQ`O,5;aO-RQaO'#FXOOQS'#FW'#FWOOQS1G1[1G1[O!6fQdO1G1dO!8kQdO1G1dO!:WQdO1G1dO!;sQdO1G1dO!=`QdO1G1dO!>{QdO1G1dO!@hQdO1G1dO!BTQdO1G1dO!CpQdO1G1dO!E]QdO1G1dO!FxQdO1G1dO!HeQdO1G1dO!JQQdO1G1dO!KmQdO1G1dO!MYQdO1G1dO!NuQdO1G1dOOQT1G0_1G0_O!#[Q`O,5<_O#!bQaO'#EYOOQS1G0[1G0[O#!iQ`O,5:zOEdQaO,5:zO#!nQaO,5;OO#!uQdO,5:|O#$tQdO,5?UO#&sQaO'#HmO#'TQ`O,5?TOOQS1G0e1G0eO#']Q`O1G0eO#'bQ`O'#IkO#(zQ`O'#IkO#)SQ`O,5;SOG|QaO,5;SOOQS1G0w1G0wOOQO,5>^,5>^OOQO-E;p-E;pOOQS1G1U1G1UO#)pQdO'#FQO#+uQ`O'#HsOJ}QpO1G1UO2wQ`O'#HpO#+zQtO,5;eO2wQ`O'#HqO#,iQtO,5;gO#-WQaO1G1OOOQS,5;h,5;hO#/gQtO'#FQO#/tQdO1G0dO-RQaO1G0dO#1aQdO1G1aO#2|QdO1G1cOOQO,5X,5>XOOQO-E;k-E;kOOQS7+&P7+&PO!+iQaO,5;TO$$^QaO'#HnO$$hQ`O,5?VOOQS1G0n1G0nO$$pQ`O1G0nPOQO'#FQ'#FQOOQO,5>_,5>_OOQO-E;q-E;qOOQS7+&p7+&pOOQS,5>[,5>[OOQS-E;n-E;nO$$uQtO,5>]OOQS-E;o-E;oO$%dQdO7+&jO$'iQtO'#FQO$'vQdO7+&OOOQS1G0j1G0jOOQO,5>a,5>aOOQO-E;s-E;sOOQ#u7+(x7+(xO!$[QdO7+(xOOQ#u7+(}7+(}O#JfQ`O7+(}O#JkQ`O7+(}OOQ#u7+(z7+(zO!.]Q`O7+(zO!1TQ`O7+(zO!1QQ`O7+(zO$)cQ`O,5i,5>iOOQS-E;{-E;{O$.lQdO7+'qO$.|QpO7+'qO$/XQdO'#IxOOQO,5pOOQ#u,5>p,5>pOOQ#u-EoOOQS-EVQdO1G2^OOQS,5>h,5>hOOQS-E;z-E;zOOQ#u7+({7+({O$?oQ`O'#GXO:]Q`O'#H_OOQO'#IV'#IVO$@fQ`O,5=xOOQ#u,5=x,5=xO$AcQ!bO'#EQO$AzQ!bO7+(}O$BYQpO7+)RO#KRQpO7+)RO$BbQ`O'#HbO!$[QdO7+)RO$BpQdO,5>rOOQS-EVOOQS-E;i-E;iO$D{QdO<Z,5>ZOOQO-E;m-E;mOOQS1G1_1G1_O$8rQaO,5:uO$G}QaO'#HlO$H[Q`O,5?QOOQS1G0`1G0`OOQS7+&Q7+&QO$HdQ`O7+&UO$IyQ`O1G0oO$K`Q`O,5>YOOQO,5>Y,5>YOOQO-E;l-E;lOOQS7+&Y7+&YOOQS7+&U7+&UOOQ#u<c,5>cOOQO-E;u-E;uOOQS<lOOQ#u-EmOOQO-EW,5>WOOQO-E;j-E;jO!+iQaO,5;UOOQ#uANBTANBTO#JfQ`OANBTOOQ#uANBQANBQO!.]Q`OANBQO!+iQaO7+'hOOQO7+'l7+'lO%-bQ`O7+'hO%.wQ`O7+'hO%/SQ`O7+'lO!+iQaO7+'mOOQO7+'m7+'mO%/XQdO'#F}OOQO'#Hv'#HvO%/jQ`O,5e,5>eOOQS-E;w-E;wOOQO1G2_1G2_O$1YQdO1G2_O$/jQpO1G2_O#JkQ`O1G2]O!.mQdO1G2aO%$dQ!bO1G2]O!$[QdO1G2]OOQO1G2a1G2aOOQO1G2]1G2]O%2uQaO'#G]OOQO1G2b1G2bOOQSAN@xAN@xO!.]Q`OAN@xOOOQ<]O%6rQ!bO'#FQO!$[QdOANBXOOQ#uANBXANBXO:]Q`O,5=}O%7WQ`O,5=}O%7cQ`O'#IXO%7wQ`O,5?rOOQS1G3h1G3hOOQS7+)x7+)xP%+OQpOANBXO%8PQ`O1G0pOOQ#uG27oG27oOOQ#uG27lG27lO%9fQ`O<d,5>dO%dOOQO-E;v-E;vO%hQ`O'#IqO%>rQ`O'#IhO!$[QdO'#IOO%@lQaO,5s,5>sOOQO-Ej,5>jOOQP-E;|-E;|OOQO1G2c1G2cOOQ#uLD,kLD,kOOQTG27[G27[O!$[QdOLD-RO!$[QdO<OO%EpQ`O,5>OPOQ#uLD-_LD-_OOQO7+'o7+'oO+_QdO7+'oOOQS!$( ]!$( ]OOQOAN@}AN@}OOQS1G2d1G2dOOQS1G2e1G2eO%E{QdO1G2eOOQ#u!$(!m!$(!mOOQOANBVANBVOOQO1G3j1G3jO:]Q`O1G3jOOQO<tQaO,5:xO'/vQaO,5;uO'/vQaO,5;wO'@sQdO,5YQdO,5<^O)@XQdO,5QQ`O,5=eO*>YQaO'#HkO*>dQ`O,5?ROlQdO7+%tO*@kQ`O1G0jO!+iQaO1G0jO*BQQdO7+&OOoO*GeQ`O,5>VO*HzQdO<[QdO,5{QdO'#IjO.BbQ`O'#IeO.BoQ`O'#GPO.BwQaO,5:nO.COQ`O,5uOs#fOx7xOy7xO}aO!O^O!Q8OO!R}O!T7}O!V7yO!W7yO!Z8QO!d:QO!z]O#T#mO#V#lO#X`O#dhO#fbO#gcO#sdO$[7|O$d7{O$e7|O$hqO%T8PO%U!OO%W}O%X}O%`|O'WYO'u{O#Y']P~O#O#qO~P/lO!z#rO~O#d#tO#fbO#gcO~O'a#vO~O#s#zO~OU$OO!R$OO!w#}O#s3hO'W#{O~OT'XXz'XX!S'XX!c'XX!n'XX!w'XX!z'XX#T'XX#X'XX#a'XX#b'XX#y'XX$R'XX$S'XX$T'XX$U'XX$V'XX$X'XX$Y'XX$Z'XX$['XX$]'XX$^'XX$_'XX%T'XX'P'XX!y'XX!o'XX~O#|$QO$O$RO~P3YOP7wOQ|OU_OW}O[7zOo>uOs#fOx7xOy7xO}aO!O^O!Q8OO!R}O!T7}O!V7yO!W7yO!Z8QO!d:QO!z]O#X`O#dhO#fbO#gcO#sdO$[7|O$d7{O$e7|O$hqO%T8PO%U!OO%W}O%X}O%`|O'WYO'u{OT$PXz$PX!S$PX!c$PX!n$PX!w$PX#a$PX#b$PX#y$PX$R$PX$S$PX$T$PX$U$PX$V$PX$X$PX$Y$PX$Z$PX$]$PX$^$PX$_$PX'P$PX!y$PX!o$PX~Or$TO#T8eO#V8dO~P5^O#sdO'WYO~OS$fO]$aOk$dOm$fOs$`O!a$bO$krO$u$eO~O!z$hO#T$jO'W$gO~Oo$mOs$lO#d$nO~O!z$hO#T$rO~O!U$uO$u$tO~P-ROR${O!p$zO#d$yO#g$zO&}${O~O't$}O~P;PO!z%SO~O!z%UO~O!n#bO'P#bO~P-RO!pXO~O!z%`O~OP7wOQ|OU_OW}O[7zOo>uOs#fOx7xOy7xO}aO!O^O!Q8OO!R}O!T7}O!V7yO!W7yO!Z8QO!d:QO!z]O#X`O#dhO#fbO#gcO#sdO$[7|O$d7{O$e7|O$hqO%T8PO%U!OO%W}O%X}O%`|O'WYO'u{O~O!z%dO~O]$aO~O!pXO#sdO'WYO~O]%rOs%rO#s%nO'WYO~O!j%wO'Q%wO'TRO~O'Q%zO~PhO!o%{O~PhO!r%}O~PvO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y'cX#O'cX~P!%aO!r)yO!y'eX#O'eX~P)dO!y#kX#O#kX~P!+iO#O){O!y'bX~O!y)}O~O%T#cOT$Qiz$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$Z$Qi$[$Qi$]$Qi$^$Qi$_$Qi'P$Qi!y$Qi#O$Qi#P$Qi#Y$Qi!o$Qi!r$QiV$Qi#|$Qi$O$Qi!p$Qi~P!%aOz#QO#T#PO$R#RO$S#VO$T#WO$U#XO$V#YO$X#[O$Y#]O$Z#^O$[#_O$]#`O$^#aO$_#aO%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi'P$Qi!y$Qi!o$Qi~P!%aOz#QO!w!yO#T#PO$R#RO$S#VO$T#WO$U#XO$V#YO$X#[O$Y#]O$Z#^O$[#_O$]#`O$^#aO$_#aO%T#cOT$Qi!S$Qi!c$Qi!n$Qi'P$Qi!y$Qi!o$Qi~P!%aOT#SOz#QO!c#UO!w!yO#T#PO$R#RO$S#VO$T#WO$U#XO$V#YO$X#[O$Y#]O$Z#^O$[#_O$]#`O$^#aO$_#aO%T#cO!S$Qi!n$Qi'P$Qi!y$Qi!o$Qi~P!%aOT#SOz#QO!w!yO#T#PO$R#RO$S#VO$T#WO$U#XO$V#YO$X#[O$Y#]O$Z#^O$[#_O$]#`O$^#aO$_#aO%T#cO!S$Qi!c$Qi!n$Qi'P$Qi!y$Qi!o$Qi~P!%aOz#QO#T#PO$T#WO$U#XO$V#YO$X#[O$Y#]O$Z#^O$[#_O$]#`O$^#aO$_#aO%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi$R$Qi$S$Qi'P$Qi!y$Qi!o$Qi~P!%aOz#QO#T#PO$U#XO$V#YO$X#[O$Y#]O$Z#^O$[#_O$]#`O$^#aO$_#aO%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi$R$Qi$S$Qi$T$Qi'P$Qi!y$Qi!o$Qi~P!%aOz#QO#T#PO$V#YO$X#[O$Y#]O$Z#^O$[#_O$]#`O$^#aO$_#aO%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi$R$Qi$S$Qi$T$Qi$U$Qi'P$Qi!y$Qi!o$Qi~P!%aOz#QO#T#PO$X#[O$Y#]O$Z#^O$[#_O$]#`O$^#aO$_#aO%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi'P$Qi!y$Qi!o$Qi~P!%aOz#QO$X#[O$Y#]O$Z#^O$[#_O$]#`O$^#aO$_#aO%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi'P$Qi!y$Qi!o$Qi~P!%aOz#QO$Y#]O$Z#^O$[#_O$]#`O$^#aO$_#aO%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi'P$Qi!y$Qi!o$Qi~P!%aOz#QO$Z#^O$[#_O$]#`O$^#aO$_#aO%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi'P$Qi!y$Qi!o$Qi~P!%aOz#QO$[#_O$^#aO$_#aO%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$Z$Qi$]$Qi'P$Qi!y$Qi!o$Qi~P!%aOz#QO$^#aO$_#aO%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$Z$Qi$[$Qi$]$Qi'P$Qi!y$Qi!o$Qi~P!%aOz#QO$Z#^O$[#_O$^#aO$_#aO%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$]$Qi'P$Qi!y$Qi!o$Qi~P!%aOz#QO$_#aO%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$Z$Qi$[$Qi$]$Qi$^$Qi'P$Qi!y$Qi!o$Qi~P!%aO_*PO~PxO$hqO$krO~P2wO#X+|O#a+{O#b+{O~O#d,OO%W,OO%^+}O'W$gO~O!o,PO~PCVOc%bXd%bXh%bXj%bXf%bXg%bXe%bX~PhOc,TOd,ROP%aiQ%aiS%aiU%aiW%aiX%ai[%ai]%ai^%ai`%aia%aib%aik%aim%aio%aip%aiq%ais%ait%aiu%aiv%aix%aiy%ai|%ai}%ai!O%ai!P%ai!Q%ai!R%ai!T%ai!V%ai!W%ai!X%ai!Y%ai!Z%ai![%ai!]%ai!^%ai!_%ai!a%ai!b%ai!d%ai!n%ai!p%ai!z%ai#X%ai#d%ai#f%ai#g%ai#s%ai$[%ai$d%ai$e%ai$h%ai$k%ai$u%ai%T%ai%U%ai%W%ai%X%ai%`%ai&|%ai'W%ai'u%ai'Q%ai!o%aih%aij%aif%aig%aiY%ai_%aii%aie%ai~Oc,XOd,UOh,WO~OY,YO_,ZO!o,^O~OY,YO_,ZOi%gX~Oi,`O~Oj,aO~O!n,cO~PxO$hqO$krO~P2wO!p)`O~OU$OO!R$OO!w3nO#s3iO'W,zO~O#s,|O~O!p-OO'a'UO~O#sdO'WYO!n&zX#O&zX'P&zX~O#O)gO!n'ya'P'ya~O#s-UO~O!n&_X#O&_X'P&_X#P&_X~PvO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y#ka#O#ka~P!%aO!y&cX#O&cX~P@aO#O){O!y'ba~O!o-_O~PCVO#P-`O~O#O-aO!o'YX~O!o-cO~O!y-dO~OT8TOz8RO!S8UO!c8VO!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO#O#Wi#Y#Wi~P!%aO!y&bX#O&bX~PxO#n'XO~OS+kO].cOm+kOs$`O!U+kO!`+kO!a+kO#d>xO$hqO$krO~P2wOS+kO].cOm+kOs$`O!U+kO!`+kO!a+kO#d>xO$hqO~P2wO!n#bO!p-yO'P#bO~OS+kO]+nOm+kOs$`O!U+kO!_+qO!`+kO!a+kO!o.mO#d>xO$hqO$krO~P2wO#d.rO%W.rO%^+}O'W$gO~O%W.sO~O#Y.tO~Oc%bad%bah%baj%baf%bag%bae%ba~PhOc.wOd,ROP%aqQ%aqS%aqU%aqW%aqX%aq[%aq]%aq^%aq`%aqa%aqb%aqk%aqm%aqo%aqp%aqq%aqs%aqt%aqu%aqv%aqx%aqy%aq|%aq}%aq!O%aq!P%aq!Q%aq!R%aq!T%aq!V%aq!W%aq!X%aq!Y%aq!Z%aq![%aq!]%aq!^%aq!_%aq!a%aq!b%aq!d%aq!n%aq!p%aq!z%aq#X%aq#d%aq#f%aq#g%aq#s%aq$[%aq$d%aq$e%aq$h%aq$k%aq$u%aq%T%aq%U%aq%W%aq%X%aq%`%aq&|%aq'W%aq'u%aq'Q%aq!o%aqh%aqj%aqf%aqg%aqY%aq_%aqi%aqe%aq~Oc.|Od,UOh.{O~O!r(hO~OP7wOQ|OU_OW}O[xO$hqO$krO~P2wOS+kOY,vO]+nOm+kOs$`O!U+kO!_+qO!`+kO!a+kO!o/fO#d>xO$hqO$krO~P2wOw!tX!p!tX#T!tX#n!tX#s#vX#|!tX'W!tX~Ow(ZO!p)`O#T3tO#n3sO~O!p-OO'a&fa~O]/nOs/nO#sdO'WYO~OV/rO!n&za#O&za'P&za~O#O)gO!n'yi'P'yi~O#s/tO~OT8TOz8RO!S8UO!c8VO!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO!n&_a#O&_a'P&_a#P&_a~P!%aOz#QO#T#PO$R#RO$S#VO$T#WO$U#XO$V#YO$X#[O$Y#]O$Z#^O$[#_O$]#`O$^#aO$_#aO%T#cOT!vy!S!vy!c!vy!n!vy!w!vy'P!vy!y!vy!o!vy~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y#ji#O#ji~P!%aO_*PO!o&`X#O&`X~PvO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y#]i#O#]i~P!%aOT8TOz8RO!S8UO!c8VO!w:_O#P/yO#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO!y&ba#O&ba~P!%aO#|0OO!y$ji#O$ji~O#d0PO~O#V0SO#d0RO~P2wOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$ji#O$ji~P!%aO!p-yO#|0TO!y$oi#O$oi~O!o0YO'W$gO~O#O0[O!y'kX~O#d0^O~O!y0_O~O!pXO!r0bO~O#T'ZO#n'XO!p'qy!n'qy'P'qy~O!n$sy'P$sy!y$sy!o$sy~PCVO#P0eO#T'ZO#n'XO~O#sdO'WYOw&mX!p&mX#O&mX!n&mX'P&mX~O#O.^Ow'la!p'la!n'la'P'la~OS+kO]0mOm+kOs$`O!U+kO!`+kO!a+kO#d>xO$hqO~P2wO#T3tO#n3sO'W$gO~O#|)XO#T'eX#n'eX'W'eX~O!n#bO!p0sO'P#bO~O#Y0wO~Oh0|O~OTvO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$jq#O$jq~P!%aO#|1kO!y$jq#O$jq~O#d1lO~O!n#bO!pXO!z$hO#P1oO'P#bO~O!o1rO'W$gO~OT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$oq#O$oq~P!%aO#T1tO#d1sO!y&lX#O&lX~O#O0[O!y'ka~O#T'ZO#n'XO!p'q!R!n'q!R'P'q!R~O!pXO!r1yO~O!n$s!R'P$s!R!y$s!R!o$s!R~PCVO#P1{O#T'ZO#n'XO~OP7wOU_O[:rOo?tOs#fOx:rOy:rO}aO!O^O!QvO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y#^i#O#^i~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$jy#O$jy~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$oy#O$oy~P!%aO!pXO#P2rO~O#d2sO~O#O0[O!y'ki~O!n$s!Z'P$s!Z!y$s!Z!o$s!Z~PCVOTvO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$j!R#O$j!R~P!%aO!n$s!c'P$s!c!y$s!c!o$s!c~PCVO!a3`O'W$gO~OV3dO!o&Wa#O&Wa~O'W$gO!n%Ri'P%Ri~O'a'_O~O'a/jO~O'a*iO~O'a1]O~OT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n$ta#|$ta$O$ta'P$ta!y$ta!o$ta#O$ta~P!%aO#T3uO~P-RO#s3lO~O#s3mO~O!U$uO$u$tO~P#-WOT8TOz8RO!S8UO!c8VO!w:_O#P3pO#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO!n'^X'P'^X!y'^X!o'^X~P!%aOT6QOz6OO!S6RO!c6SO!w7oO#P5aO#T#PO$R6PO$S6TO$T6UO$U6VO$V6WO$X6YO$Y6ZO$Z6[O$[6]O$]6^O$^6_O$_6_O%T#cO#O'^X#Y'^X#|'^X$O'^X!n'^X'P'^X!r'^X!y'^X!o'^XV'^X!p'^X~P!%aO#T5OO~P#-WOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n$`a#|$`a$O$`a'P$`a!y$`a!o$`a#O$`a~P!%aOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n$aa#|$aa$O$aa'P$aa!y$aa!o$aa#O$aa~P!%aOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n$ba#|$ba$O$ba'P$ba!y$ba!o$ba#O$ba~P!%aOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n$ca#|$ca$O$ca'P$ca!y$ca!o$ca#O$ca~P!%aOz3{O#|$ca$O$ca#O$ca~PMVOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n$fa#|$fa$O$fa'P$fa!y$fa!o$fa#O$fa~P!%aOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n%Va#|%Va$O%Va'P%Va!y%Va!o%Va#O%Va~P!%aOz3{O#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#|$Qi$O$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOz3{O!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT$Qi!S$Qi!c$Qi!n$Qi#|$Qi$O$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOT3}Oz3{O!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!S$Qi!n$Qi#|$Qi$O$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOT3}Oz3{O!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!S$Qi!c$Qi!n$Qi#|$Qi$O$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOz3{O#T#PO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#|$Qi$O$Qi$R$Qi$S$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOz3{O#T#PO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#|$Qi$O$Qi$R$Qi$S$Qi$T$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOz3{O#T#PO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#|$Qi$O$Qi$R$Qi$S$Qi$T$Qi$U$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOz3{O#T#PO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#|$Qi$O$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOz3{O$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi#|$Qi$O$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOz3{O$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi#|$Qi$O$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOz3{O$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi#|$Qi$O$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOz3{O$[4YO$^4[O$_4[O%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi#|$Qi$O$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$Z$Qi$]$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOz3{O$^4[O$_4[O%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi#|$Qi$O$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$Z$Qi$[$Qi$]$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOz3{O$Z4XO$[4YO$^4[O$_4[O%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi#|$Qi$O$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$]$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOz3{O$_4[O%T#cOT$Qi!S$Qi!c$Qi!n$Qi!w$Qi#T$Qi#|$Qi$O$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$Z$Qi$[$Qi$]$Qi$^$Qi'P$Qi!y$Qi!o$Qi#O$Qi~P!%aOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n#Ua#|#Ua$O#Ua'P#Ua!y#Ua!o#Ua#O#Ua~P!%aOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n'^a#|'^a$O'^a'P'^a!y'^a!o'^a#O'^a~P!%aOz3{O!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT#Qi!S#Qi!c#Qi!n#Qi#|#Qi$O#Qi'P#Qi!y#Qi!o#Qi#O#Qi~P!%aOz3{O!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT#}i!S#}i!c#}i!n#}i#|#}i$O#}i'P#}i!y#}i!o#}i#O#}i~P!%aOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n$Pi#|$Pi$O$Pi'P$Pi!y$Pi!o$Pi#O$Pi~P!%aOz3{O#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT!vq!S!vq!c!vq!n!vq!w!vq#|!vq$O!vq'P!vq!y!vq!o!vq#O!vq~P!%aOz3{O!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT#Qq!S#Qq!c#Qq!n#Qq#|#Qq$O#Qq'P#Qq!y#Qq!o#Qq#O#Qq~P!%aOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n$sq#|$sq$O$sq'P$sq!y$sq!o$sq#O$sq~P!%aOz3{O#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cOT!vy!S!vy!c!vy!n!vy!w!vy#|!vy$O!vy'P!vy!y!vy!o!vy#O!vy~P!%aOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n$sy#|$sy$O$sy'P$sy!y$sy!o$sy#O$sy~P!%aOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n$s!R#|$s!R$O$s!R'P$s!R!y$s!R!o$s!R#O$s!R~P!%aOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n$s!Z#|$s!Z$O$s!Z'P$s!Z!y$s!Z!o$s!Z#O$s!Z~P!%aOT3}Oz3{O!S4OO!c4PO!w5rO#T#PO$R3|O$S4QO$T4RO$U4SO$V4TO$X4VO$Y4WO$Z4XO$[4YO$]4ZO$^4[O$_4[O%T#cO!n$s!c#|$s!c$O$s!c'P$s!c!y$s!c!o$s!c#O$s!c~P!%aOP7wOU_O[5kOo9xOs#fOx5gOy5gO}aO!O^O!Q5{O!T5qO!V5iO!W5iO!Z5}O!d5eO!z]O#T5bO#X`O#dhO#fbO#gcO#sdO$[5oO$d5mO$e5oO$hqO%T5|O%U!OO'WYO~P$vO#O9_O#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y'xX~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#O9aO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y'ZX~P!%aOz8RO#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cOT$Qi!S$Qi!c$Qi!w$Qi#O$Qi#P$Qi#Y$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOz8RO!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cOT$Qi!S$Qi!c$Qi#O$Qi#P$Qi#Y$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOT8TOz8RO!c8VO!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO!S$Qi#O$Qi#P$Qi#Y$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOT8TOz8RO!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO!S$Qi!c$Qi#O$Qi#P$Qi#Y$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOz8RO#T#PO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cOT$Qi!S$Qi!c$Qi!w$Qi#O$Qi#P$Qi#Y$Qi$R$Qi$S$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOz8RO#T#PO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cOT$Qi!S$Qi!c$Qi!w$Qi#O$Qi#P$Qi#Y$Qi$R$Qi$S$Qi$T$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOz8RO#T#PO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cOT$Qi!S$Qi!c$Qi!w$Qi#O$Qi#P$Qi#Y$Qi$R$Qi$S$Qi$T$Qi$U$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOz8RO#T#PO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cOT$Qi!S$Qi!c$Qi!w$Qi#O$Qi#P$Qi#Y$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOz8RO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cOT$Qi!S$Qi!c$Qi!w$Qi#O$Qi#P$Qi#T$Qi#Y$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOz8RO$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cOT$Qi!S$Qi!c$Qi!w$Qi#O$Qi#P$Qi#T$Qi#Y$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOz8RO$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cOT$Qi!S$Qi!c$Qi!w$Qi#O$Qi#P$Qi#T$Qi#Y$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOz8RO$[8`O$^8bO$_8bO%T#cOT$Qi!S$Qi!c$Qi!w$Qi#O$Qi#P$Qi#T$Qi#Y$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$Z$Qi$]$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOz8RO$^8bO$_8bO%T#cOT$Qi!S$Qi!c$Qi!w$Qi#O$Qi#P$Qi#T$Qi#Y$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$Z$Qi$[$Qi$]$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOz8RO$Z8_O$[8`O$^8bO$_8bO%T#cOT$Qi!S$Qi!c$Qi!w$Qi#O$Qi#P$Qi#T$Qi#Y$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$]$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aOz8RO$_8bO%T#cOT$Qi!S$Qi!c$Qi!w$Qi#O$Qi#P$Qi#T$Qi#Y$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$Z$Qi$[$Qi$]$Qi$^$Qi!n$Qi'P$Qi!r$Qi!y$Qi!o$QiV$Qi!p$Qi~P!%aO#T9fO~P!+iO!n#Ua'P#Ua!y#Ua!o#Ua~PCVO!n'^a'P'^a!y'^a!o'^a~PCVO#T=PO#V=OO!y&aX#O&aX~PvO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y#Wi#O#Wi~P!%aOz8RO!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cOT#Qq!S#Qq!c#Qq#O#Qq#P#Qq#Y#Qq!n#Qq'P#Qq!r#Qq!y#Qq!o#QqV#Qq!p#Qq~P!%aOT8TOz8RO!S8UO!c8VO!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO#O$sq#P$sq#Y$sq!n$sq'P$sq!r$sq!y$sq!o$sqV$sq!p$sq~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y&wa#O&wa~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y&_a#O&_a~P!%aOz8RO#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cOT!vy!S!vy!c!vy!w!vy#O!vy#P!vy#Y!vy!n!vy'P!vy!r!vy!y!vy!o!vyV!vy!p!vy~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y#Wq#O#Wq~P!%aOT8TOz8RO!S8UO!c8VO!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO#O$sy#P$sy#Y$sy!n$sy'P$sy!r$sy!y$sy!o$syV$sy!p$sy~P!%aOT8TOz8RO!S8UO!c8VO!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO#O$s!R#P$s!R#Y$s!R!n$s!R'P$s!R!r$s!R!y$s!R!o$s!RV$s!R!p$s!R~P!%aOT8TOz8RO!S8UO!c8VO!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO#O$s!Z#P$s!Z#Y$s!Z!n$s!Z'P$s!Z!r$s!Z!y$s!Z!o$s!ZV$s!Z!p$s!Z~P!%aOT8TOz8RO!S8UO!c8VO!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO#O$s!c#P$s!c#Y$s!c!n$s!c'P$s!c!r$s!c!y$s!c!o$s!cV$s!c!p$s!c~P!%aO#T9vO~PvO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$`a#O$`a~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$aa#O$aa~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$ba#O$ba~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$ca#O$ca~P!%aOz:`O%T#cOT$ca!S$ca!c$ca!w$ca!y$ca#O$ca#T$ca$R$ca$S$ca$T$ca$U$ca$V$ca$X$ca$Y$ca$Z$ca$[$ca$]$ca$^$ca$_$ca~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$fa#O$fa~P!%aO!r?SO#P9^O~OT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$ta#O$ta~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y%Va#O%Va~P!%aOT8TOz8RO!S8UO!c8VO!r9cO!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO~P!%aOz:`O#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT$Qi!S$Qi!c$Qi!w$Qi!y$Qi#O$Qi~P!%aOz:`O!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT$Qi!S$Qi!c$Qi!y$Qi#O$Qi~P!%aOT:bOz:`O!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!S$Qi!y$Qi#O$Qi~P!%aOT:bOz:`O!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!S$Qi!c$Qi!y$Qi#O$Qi~P!%aOz:`O#T#PO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT$Qi!S$Qi!c$Qi!w$Qi!y$Qi#O$Qi$R$Qi$S$Qi~P!%aOz:`O#T#PO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT$Qi!S$Qi!c$Qi!w$Qi!y$Qi#O$Qi$R$Qi$S$Qi$T$Qi~P!%aOz:`O#T#PO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT$Qi!S$Qi!c$Qi!w$Qi!y$Qi#O$Qi$R$Qi$S$Qi$T$Qi$U$Qi~P!%aOz:`O#T#PO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT$Qi!S$Qi!c$Qi!w$Qi!y$Qi#O$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi~P!%aOz:`O$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT$Qi!S$Qi!c$Qi!w$Qi!y$Qi#O$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi~P!%aOz:`O$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT$Qi!S$Qi!c$Qi!w$Qi!y$Qi#O$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi~P!%aOz:`O$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT$Qi!S$Qi!c$Qi!w$Qi!y$Qi#O$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi~P!%aOz:`O$[:mO$^:oO$_:oO%T#cOT$Qi!S$Qi!c$Qi!w$Qi!y$Qi#O$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$Z$Qi$]$Qi~P!%aOz:`O$^:oO$_:oO%T#cOT$Qi!S$Qi!c$Qi!w$Qi!y$Qi#O$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$Z$Qi$[$Qi$]$Qi~P!%aOz:`O$Z:lO$[:mO$^:oO$_:oO%T#cOT$Qi!S$Qi!c$Qi!w$Qi!y$Qi#O$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$]$Qi~P!%aOz:`O$_:oO%T#cOT$Qi!S$Qi!c$Qi!w$Qi!y$Qi#O$Qi#T$Qi$R$Qi$S$Qi$T$Qi$U$Qi$V$Qi$X$Qi$Y$Qi$Z$Qi$[$Qi$]$Qi$^$Qi~P!%aOz:`O!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT#Qi!S#Qi!c#Qi!y#Qi#O#Qi~P!%aOz:`O!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT#}i!S#}i!c#}i!y#}i#O#}i~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$Pi#O$Pi~P!%aO!r?TO#P9hO~Oz:`O#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT!vq!S!vq!c!vq!w!vq!y!vq#O!vq~P!%aOz:`O!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT#Qq!S#Qq!c#Qq!y#Qq#O#Qq~P!%aO!r?YO#P9oO~OT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$sq#O$sq~P!%aO#P9oO#T'ZO#n'XO~Oz:`O#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cOT!vy!S!vy!c!vy!w!vy!y!vy#O!vy~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$sy#O$sy~P!%aO#P9pO#T'ZO#n'XO~OT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$s!R#O$s!R~P!%aO#P9sO#T'ZO#n'XO~OT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$s!Z#O$s!Z~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y$s!c#O$s!c~P!%aO#T;}O~P!+iOT8TOz8RO!S8UO!c8VO!w:_O#P;|O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO!y'^X#O'^X~P!%aO!U$uO$u$tO~P$8rOP7wOU_O[:rOo?tOs#fOx:rOy:rO}aO!O^O!QVO~P$8rOP7wOU_O[:rOo?tOs#fOx:rOy:rO}aO!O^O!QWO#X`O#dhO#fbO#gcO#sdO$[vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y#Ua#O#Ua~P!%aOT:bOz:`O!S:cO!c:dO!w>vO#T#PO$R:aO$S:eO$T:fO$U:gO$V:hO$X:jO$Y:kO$Z:lO$[:mO$]:nO$^:oO$_:oO%T#cO!y'^a#O'^a~P!%aOz<]O!w?^O#T#PO$R<_O$SpO~P$8rOP7wOU_O[:rOo?tOs#fOx:rOy:rO}aO!O^O!QqO#X`O#dhO#fbO#gcO#sdO$[oO#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO~P!%aOT8TOz8RO!S8UO!c8VO!w:_O#P>nO#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO!n'^X!r'^X!o'^X#O'^X!p'^X'P'^X~P!%aOT'XXz'XX!S'XX!c'XX!w'XX!z'XX#O'XX#T'XX#X'XX#a'XX#b'XX#y'XX$R'XX$S'XX$T'XX$U'XX$V'XX$X'XX$Y'XX$Z'XX$['XX$]'XX$^'XX$_'XX%T'XX~O#|:uO$O:vO!y'XX~P.@qO!z$hO#T>zO~O!r;SO~PxO!n&qX!p&qX#O&qX'P&qX~O#O?QO!n'pa!p'pa'P'pa~O!r?rO#P;uO~OT[O~O!r?zO#P:rO~OT8TOz8RO!S8UO!c8VO!r>]O!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO~P!%aOT8TOz8RO!S8UO!c8VO!r>^O!w:_O#T#PO$R8SO$S8WO$T8XO$U8YO$V8ZO$X8]O$Y8^O$Z8_O$[8`O$]8aO$^8bO$_8bO%T#cO~P!%aO!r?{O#P>cO~O!r?|O#P>hO~O#P>hO#T'ZO#n'XO~O#P:rO#T'ZO#n'XO~O#P>iO#T'ZO#n'XO~O#P>lO#T'ZO#n'XO~O!z$hO#T?nO~Oo>wOs$lO~O!z$hO#T?oO~O#O?QO!n'pX!p'pX'P'pX~O!z$hO#T?vO~O!z$hO#T?wO~O!z$hO#T?xO~Oo?lOs$lO~Oo?uOs$lO~Oo?tOs$lO~O%X$]%W$k!e$^#d%`#g'u'W#f~",goto:"%1O'{PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP'|P(TPP(Z(^PPP(vP(^*o(^6cP6cPP>cFxF{PP6cGR! RP! UP! UPPGR! e! h! lGRGRPP! oP! rPPGR!)u!0q!0qGR!0uP!0u!0u!0u!2PP!;g!S#>Y#>h#>n#>x#?O#?U#?[#?b#?l#?v#?|#@S#@^PPPPPPPP#@d#@hP#A^$(h$(k$(u$1R$1_$1t$1zP$1}$2Q$2W$5[$?Y$Gr$Gu$G{$HO$Kb$Ke$Kn$Kv$LQ$Li$MP$Mz%'}PP%0O%0S%0`%0u%0{Q!nQT!qV!rQUOR%x!mRVO}!hPVX!S!j!r!s!w%O%Q%T%V(h,Q,T.u.w/P0}1O1W2]|!hPVX!S!j!r!s!w%O%Q%T%V(h,Q,T.u.w/P0}1O1W2]Q%_!ZQ%h!aQ%m!eQ'k$cQ'x$iQ)d%lQ+W'{Q,k)QU.O+T+V+]Q.j+pQ/`,jS0a.T.UQ0q.dQ1n0VS1w0`0dQ2Q0nQ2q1pQ2t1xR3[2u|ZPVX!S!j!r!s!w%O%Q%T%V(h,Q,T.u.w/P0}1O1W2]2lf]`cgjklmnoprxyz!W!X!Y!]!e!f!g!y!z#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a#i#l#m#q#r#}$Q$R$T$h$z%S%U%d%r%}&S&W&[&q&t&u&x'P'X'Z']'a'e'p't'y(R(V(W(Y(Z([(t)T)X)`)c)g)n)u)y*V*Z*[*r*w*|+Q+X+[+^+_+j+m+q+t,Y,c,e,g,i,u,x-O-`-a-t-v-z.S.V.[.].^.b/X/n/y0O0T0b0e1R1S1b1k1o1y1{2k2r3n3p3s3t3u3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5a5b5d5e5f5g5h5i5j5k5l5m5n5o5p5q5r5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`7b7c7i7j7k7o7w7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8d8e8f8g8h8s9T9W9Z9^9_9a9c9f9h9o9p9s9u9v9|9}:O:Q:R:S:T:U:V:W:X:Y:Z:[:]:^:_:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:q:r:s:u:v:w;S;e;i;j;k;n;u;v;z;|;}V>W>[>]>^>c>h>i>l>n>o>p>q>v?S?T?Y?^?_?p?q?r?y?z?{?|S$ku$`Q%W!V^%e!_$a'j)Y.f0o2OQ%i!bQ%j!cQ%k!dQ%v!kS&V!|){Q&]#OQ'l$dQ'm$eS'|$j'hQ)S%`Q*v'nQ+z(bQ,O(dQ-S)iU.g+n.c0mQ.q+{Q.r+|Q/d,vS0V-y0XQ1X/cQ1e/rS2T0s2WQ2h1`Q3U2iQ3^2zQ3_2{Q3c3VQ3f3`R3g3d0{!OPVX]`cjklmnopxyz!S!W!X!Y!]!g!j!r!s!w!y!z!|#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a#i#l#m#q#r$Q$R$T$z%O%Q%S%T%U%V%d%}&S&W&[&q&t&u&x'P']'a(R(V(h(t)T)X)n)u)y){*V*Z*[*|+^,Q,T,Y,c,e,g-`-a-t-z.[.u.w/P/X/y0O0T0e0s0}1O1R1S1W1k1o1{2W2]2r3p3u3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5a5b5d5e5f5g5h5i5j5k5l5m5n5o5p5q5r5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`7b7c7o7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8d8e8f8g8h8s9T9W9Z9^9_9a9c9f9h9o9p9s9u9v:Q:R:S:T:U:V:W:X:Y:Z:[:]:^:_:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:q:r:s:u:v:w;S;e;i;j;k;n;u;v;z;|;}V>W>[>]>^>c>h>i>l>n>o>p>q>v?^?_0z!OPVX]`cjklmnopxyz!S!W!X!Y!]!g!j!r!s!w!y!z!|#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a#i#l#m#q#r$Q$R$T$z%O%Q%S%T%U%V%d%}&S&W&[&q&t&u&x'P']'a(R(V(h(t)T)X)n)u)y){*V*Z*[*|+^,Q,T,Y,c,e,g-`-a-t-z.[.u.w/P/X/y0O0T0e0s0}1O1R1S1W1k1o1{2W2]2r3p3u3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5a5b5d5e5f5g5h5i5j5k5l5m5n5o5p5q5r5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`7b7c7o7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8d8e8f8g8h8s9T9W9Z9^9_9a9c9f9h9o9p9s9u9v:Q:R:S:T:U:V:W:X:Y:Z:[:]:^:_:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:q:r:s:u:v:w;S;e;i;j;k;n;u;v;z;|;}V>W>[>]>^>c>h>i>l>n>o>p>q>v?^?_Q#h^Q%O!PQ%P!QQ%Q!RQ,b(sQ.u,RR.y,UR&r#hQ*Q&qR/w-a0{hPVX]`cjklmnopxyz!S!W!X!Y!]!g!j!r!s!w!y!z!|#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a#i#l#m#q#r$Q$R$T$z%O%Q%S%T%U%V%d%}&S&W&[&q&t&u&x'P']'a(R(V(h(t)T)X)n)u)y){*V*Z*[*|+^,Q,T,Y,c,e,g-`-a-t-z.[.u.w/P/X/y0O0T0e0s0}1O1R1S1W1k1o1{2W2]2r3p3u3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5a5b5d5e5f5g5h5i5j5k5l5m5n5o5p5q5r5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`7b7c7o7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8d8e8f8g8h8s9T9W9Z9^9_9a9c9f9h9o9p9s9u9v:Q:R:S:T:U:V:W:X:Y:Z:[:]:^:_:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:q:r:s:u:v:w;S;e;i;j;k;n;u;v;z;|;}V>W>[>]>^>c>h>i>l>n>o>p>q>v?^?_R#j_k#n`j#i#q&t&x5d5e9W:Q:R:S:TR#saT&}#r'PR-h*[R&R!{0zhPVX]`cjklmnopxyz!S!W!X!Y!]!g!j!r!s!w!y!z!|#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a#i#l#m#q#r$Q$R$T$z%O%Q%S%T%U%V%d%}&S&W&[&q&t&u&x'P']'a(R(V(h(t)T)X)n)u)y){*V*Z*[*|+^,Q,T,Y,c,e,g-`-a-t-z.[.u.w/P/X/y0O0T0e0s0}1O1R1S1W1k1o1{2W2]2r3p3u3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5a5b5d5e5f5g5h5i5j5k5l5m5n5o5p5q5r5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`7b7c7o7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8d8e8f8g8h8s9T9W9Z9^9_9a9c9f9h9o9p9s9u9v:Q:R:S:T:U:V:W:X:Y:Z:[:]:^:_:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:q:r:s:u:v:w;S;e;i;j;k;n;u;v;z;|;}V>W>[>]>^>c>h>i>l>n>o>p>q>v?^?_R#tb-x!}[#e#k#u$U$V$W$X$Y$Z$v$w%X%Z%]%a%s%|&O&U&_&`&a&b&c&d&e&f&g&h&i&j&k&l&m&n&v&w&|'`'b'c(e(x)v)x)z*O*U*h*j+a+d,n,q-W-Y-[-e-f-g-w.Y/O/[/v0Q0Z0f1g1j1m1z2S2`2o2p2v3Z4]4^4d4e4f4g4h4i4j4l4m4n4o4p4q4r4s4t4u4v4w4x4y4z4{4|4}5P5Q5T5U5W5X5Y5]5^5`5t6e6f6g6h6i6j6k6m6n6o6p6q6r6s6t6u6v6w6x6y6z6{6|6}7O7Q7R7U7V7X7Y7Z7^7_7a7m7q8i8j8k8l8m8n8p8q8r8t8u8v8w8x8y8z8{8|8}9O9P9Q9R9S9U9V9Y9[9]9d9e9g9i9j9k9l9m9n9q9r9t9w:p:x:y:z:{:|:};Q;R;T;U;V;W;X;Y;Z;[;];^;_;`;a;b;c;d;f;g;l;m;p;r;s;w;y;{O>P>Q>R>S>T>U>X>Y>Z>_>`>a>b>d>e>f>g>j>k>m>r>s>{>|>}?V?b?cQ'd$[Y(X$s8o;P=^=_S(]3o7lQ(`$tR+y(aT&X!|){#a$Pg#}$h'X'Z'p't'y(W([)`)c*r*w+Q+X+[+_+j+m+n+t,i,u,x-v.S.V.].b.c0b0m1y3n3s3t7i7j7k7w9|9}:O?S?T?Y?p?q?r?y?z?{?|3yfPVX]`cgjklmnoprxyz!S!W!X!Y!]!e!f!g!j!r!s!w!y!z!|#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a#i#l#m#q#r#}$Q$R$T$h$z%O%Q%S%T%U%V%d%r%}&S&W&[&q&t&u&x'P'X'Z']'a'e'p't'y(R(V(W(Y(Z([(h(t)T)X)`)c)g)n)u)y){*V*Z*[*r*w*|+Q+X+[+^+_+j+m+n+q+t,Q,T,Y,c,e,g,i,u,x-O-`-a-t-v-z.S.V.[.].^.b.c.u.w/P/X/n/y0O0T0b0e0m0s0}1O1R1S1W1b1k1o1y1{2W2]2k2r3n3p3s3t3u3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5a5b5d5e5f5g5h5i5j5k5l5m5n5o5p5q5r5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`7b7c7i7j7k7o7w7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8d8e8f8g8h8s9T9W9Z9^9_9a9c9f9h9o9p9s9u9v9|9}:O:Q:R:S:T:U:V:W:X:Y:Z:[:]:^:_:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:q:r:s:u:v:w;S;e;i;j;k;n;u;v;z;|;}V>W>[>]>^>c>h>i>l>n>o>p>q>v?S?T?Y?^?_?p?q?r?y?z?{?|[#wd#x3h3i3j3kh'V#z'W)f,}-U/k/u1f3l3m3q3rQ)e%nR-T)kY#yd%n)k3h3iV'T#x3j3k1dePVX]`cjklmnoprxyz!S!W!X!Y!]!e!g!j!r!s!w!y!z!|#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a#i#l#m#q#r$Q$R$T$z%O%Q%S%T%U%V%d%}&S&W&[&q&t&u&x'P']'a'e(R(V(Y(Z(h(t)T)X)g)n)u)y){*V*Z*[*|+^+q,Q,T,Y,c,e,g-O-`-a-t-z.[.^.u.w/P/X/n/y0O0T0e0s0}1O1R1S1W1b1k1o1{2W2]2k2r3p3u3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5a5b5d5e5f5g5h5i5j5k5l5m5n5o5p5q5r5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`7b7c7o7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8d8e8f8g8h8s9T9W9Z9^9_9a9c9f9h9o9p9s9u9v:Q:R:S:T:U:V:W:X:Y:Z:[:]:^:_:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:q:r:s:u:v:w;S;e;i;j;k;n;u;v;z;|;}V>W>[>]>^>c>h>i>l>n>o>p>q>v?^?_Q%o!fQ)l%r#O3vg#}$h'X'Z'p't'y(W([)`*w+Q+X+[+_+j+m+t,i,u,x-v.S.V.].b0b1y7i7j7k7w9|9}:O?S?T?Y?p?q?r?y?z?{?|a3w)c*r+n.c0m3n3s3tY'T#z)f-U3l3mZ*c'W,}/u3q3r0vhPVX]`cjklmnopxyz!S!W!X!Y!]!g!j!r!s!w!y!z!|#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a#i#l#m#q#r$Q$R$T$z%O%Q%S%T%U%V%d%}&S&W&[&q&t&u&x'P']'a(R(V(h(t)T)X)n)u)y){*V*Z*[*|+^,Q,T,Y,c,e,g-`-a-t-z.[.u.w/P/X/y0O0T0e0}1O1R1S1W1k1o1{2]2r3p3u3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5a5b5d5e5f5g5h5i5j5k5l5m5n5o5p5q5r5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`7b7c7o7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8d8e8f8g8h8s9T9W9Z9^9_9a9c9f9h9o9p9s9u9v:Q:R:S:T:U:V:W:X:Y:Z:[:]:^:_:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:q:r:s:u:v:w;S;e;i;j;k;n;u;v;z;|;}V>W>[>]>^>c>h>i>l>n>o>p>q>v?^?_T2U0s2WR&^#OR&]#O!r#Z[#e#u$U$V$W$X$Z$s$w%X%Z%]&`&a&b&c&d&e&f&g'`'b'c(e)v)x*O*j+d-Y.Y0f1z2`2p2v3Z9U9V!Y4U3o4d4e4f4g4i4j4l4m4n4o4p4q4r4s4{4|4}5P5Q5T5U5W5X5Y5]5^5`!^6X4^6e6f6g6h6j6k6m6n6o6p6q6r6s6t6|6}7O7Q7R7U7V7X7Y7Z7^7_7a7l7m#b8[#k%a%s%|&O&v&w&|(x*U+a,n,q-W-e-g/[4]5t7q8i8j8k8l8n8o8p8t8u8v8w8x8y8z8{9Y9[9]9d9g9i9l9n9q9r9t9w:p;Rr>s>{?b?c!|:i&U)z-[-f-w0Q0Z1g1j1m2o8q8r9e9j9k9m:x:y:z:{:};P;Q;T;U;V;W;X;Y;Z;[;d;f;g;l;m;p;r;s;w;y;{>R>S!`T>X>Z>_>a>d>e>g>j>k>m>|>}?VoU>Y>`>b>fS$iu#fQ$qwU'{$j$l&pQ'}$kS(P$m$rQ+Z'|Q+](OQ+`(QQ1p0VQ5s7dS5v7f7gQ5w7hQ7p9xS7r9y9zQ7s9{Q;O>uS;h>w>zQ;o?PQ>y?jS?O?l?nQ?U?oQ?`?sS?a?t?wS?d?u?vR?e?xT'u$h+Q!csPVXt!S!j!r!s!w$h%O%Q%T%V'p([(h)`+Q+j+t,Q,T,u,x.u.w/P0}1O1W2]Q$]rR*l'eQ-{+PQ.i+oQ0U-xQ0j.`Q1|0kR2w1}T0W-y0XQ+V'zQ.U+YR0d.XQ(_$tQ)^%iQ)s%vQ*u'mS+x(`(aQ-q*vR.p+yQ(^$tQ)b%kQ)r%vQ*q'lS*t'm)sU+w(_(`(aS-p*u*vS.o+x+yQ/i,{Q/{-nQ/}-qR0v.pQ(]$tQ)]%iQ)_%jQ)q%vU*s'm)r)sW+v(^(_(`(aQ,t)^U-o*t*u*vU.n+w+x+yS/|-p-qS0u.o.pQ1i/}R2Y0vX+r([)`+t,xb%f!_$a'j+n.c.f0m0o2OR,r)YQ$ovS+b(S?Qg?m([)`+i+j+m+t,u,x.a.b0lR0t.kT2V0s2W0}|PVX]`cjklmnopxyz!S!W!X!Y!]!g!j!r!s!w!y!z!|#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a#i#l#m#q#r$Q$R$T$z%O%Q%S%T%U%V%d%}&S&W&[&q&t&u&x'P']'a(R(V(h(t)T)X)n)u)y){*V*Z*[*|+^,Q,T,Y,c,e,g,m-`-a-t-z.[.u.w/P/X/y0O0T0e0s0}1O1R1S1W1k1o1{2W2]2r3p3u3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5a5b5d5e5f5g5h5i5j5k5l5m5n5o5p5q5r5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`7b7c7o7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8d8e8f8g8h8s9T9W9Z9^9_9a9c9f9h9o9p9s9u9v:Q:R:S:T:U:V:W:X:Y:Z:[:]:^:_:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:q:r:s:u:v:w;S;e;i;j;k;n;u;v;z;|;}V>W>[>]>^>c>h>i>l>n>o>p>q>v?^?_T$y{$|Q,O(dR.r+|T${{$|Q(j%OQ(r%QQ(w%TQ(z%VQ.},XQ0z.yQ0{.|R2c1WR(m%PX,[(k(l,],_R(n%PX(p%Q%T%V1WR%T!T_%b!]%S(t,c,e/X1RR%V!UR/],gR,j)PQ)a%kS*p'l)bS-m*q,{S/z-n/iR1h/{T,w)`,xQ-P)fU/l,|,}-UU1^/k/t/uR2n1fR/o-OR2l1bSSO!mR!oSQ!rVR%y!rQ!jPS!sV!rQ!wX[%u!j!s!w,Q1O2]Q,Q(hQ1O/PR2]0}Q)o%sS-X)o9bR9b8rQ-b*QR/x-bQ&y#oS*X&y9XR9X:tS*]&|&}R-i*]Q)|&YR-^)|!j'Y#|'o*f*z+O+T+e+i.T.W.Z.a/_0`0c0g0l1x2u5x5y5z7e7t7u7v;q;t;x?W?X?Z?f?g?h?iS*e'Y/g]/g,{-n.f0o1[2O!h'[#|'o*z+O+T+e+i.T.W.Z.a/_0`0c0g0l1x2u5x5y5z7e7t7u7v;q;t;x?W?X?Z?f?g?h?iS*g'[/hZ/h,{-n.f0o2OU#xd%n)kU'S#x3j3kQ3j3hR3k3iQ'W#z^*b'W,}/k/u1f3q3rQ,})fQ/u-UQ3q3lR3r3m|tPVX!S!j!r!s!w%O%Q%T%V(h,Q,T.u.w/P0}1O1W2]W$_t'p+j,uS'p$h+QS+j([+tT,u)`,xQ'f$]R*m'fQ0X-yR1q0XQ+R'vR-}+RQ0].PS1u0]1vR1v0^Q._+fR0i._Q+t([R.l+tW+m([)`+t,xS.b+j,uT.e+m.bQ)Z%fR,s)ZQ(T$oS+c(T?RR?R?mQ2W0sR2}2WQ$|{R(f$|Q,S(iR.v,SQ,V(jR.z,VQ,](kQ,_(lT/Q,],_Q)U%aS,o)U9`R9`8qQ)R%_R,l)RQ,x)`R/e,xQ)h%pS-R)h/sR/s-SQ1c/oR2m1cT!uV!rj!iPVX!j!r!s!w(h,Q/P0}1O2]Q%R!SQ(i%OW(p%Q%T%V1WQ.x,TQ0x.uR0y.w|[PVX!S!j!r!s!w%O%Q%T%V(h,Q,T.u.w/P0}1O1W2]Q#e]U#k`#q&xQ#ucQ$UkQ$VlQ$WmQ$XnQ$YoQ$ZpQ$sx^$vy3y5|8P:]n>oQ+a(RQ+d(VQ,n)TQ,q)XQ-W)nQ-Y)uQ-[)yQ-e*VQ-f*ZQ-g*[^-k3u5b7c9v;}>p>qQ-w*|Q.Y+^Q/O,YQ/[,gQ/v-`Q0Q-tQ0Z-zQ0f.[Q1g/yQ1j0OQ1m0TQ1z0eU2S0s2W:rQ2`1SQ2o1kQ2p1oQ2v1{Q3Z2rQ3o3xQ4]jQ4^5eQ4d5fQ4e5hQ4f5jQ4g5lQ4h5nQ4i5pQ4j3zQ4l3|Q4m3}Q4n4OQ4o4PQ4p4QQ4q4RQ4r4SQ4s4TQ4t4UQ4u4VQ4v4WQ4w4XQ4x4YQ4y4ZQ4z4[Q4{4_Q4|4`Q4}4aQ5P4bQ5Q4cQ5T4kQ5U5OQ5W5RQ5X5SQ5Y5VQ5]5ZQ5^5[Q5`5_Q5t5rQ6e5gQ6f5iQ6g5kQ6h5mQ6i5oQ6j5qQ6k5}Q6m6PQ6n6QQ6o6RQ6p6SQ6q6TQ6r6UQ6s6VQ6t6WQ6u6XQ6v6YQ6w6ZQ6x6[Q6y6]Q6z6^Q6{6_Q6|6`Q6}6aQ7O6bQ7Q6cQ7R6dQ7U6lQ7V7PQ7X7SQ7Y7TQ7Z7WQ7^7[Q7_7]Q7a7`Q7l5{Q7m5dQ7q7oQ8i7xQ8j7yQ8k7zQ8l7{Q8m7|Q8n7}Q8o8OQ8p8QU8q,c/X1RQ8r%dQ8t8SQ8u8TQ8v8UQ8w8VQ8x8WQ8y8XQ8z8YQ8{8ZQ8|8[Q8}8]Q9O8^Q9P8_Q9Q8`Q9R8aQ9S8bQ9U8dQ9V8eQ9Y8fQ9[8gQ9]8hQ9d8sQ9e9TQ9g9ZQ9i9^Q9j9_Q9k9aQ9l9cQ9m9fQ9n9hQ9q9oQ9r9pQ9t9sQ9w:QU:p#i&t9WQ:x:UQ:y:VQ:z:WQ:{:XQ:|:YQ:}:ZQ;P:[Q;Q:^Q;R:_Q;T:aQ;U:bQ;V:cQ;W:dQ;X:eQ;Y:fQ;Z:gQ;[:hQ;]:iQ;^:jQ;_:kQ;`:lQ;a:mQ;b:nQ;c:oQ;d:uQ;f:vQ;g:wQ;l;SQ;m;eQ;p;jQ;r;kQ;s;nQ;w;uQ;y;vQ;{;zQOP<{Q>Q<|Q>R=OQ>S=PQ>T=QQ>U=RQ>X=SQ>Y=TQ>Z=UQ>_=aQ>`=bQ>a>VQ>b>WQ>d>[Q>e>]Q>f>^Q>g>cQ>j>hQ>k>iQ>m>lQ>r:SQ>s:RQ>{>vQ>|:qQ>}:sQ?V;iQ?b?^R?c?_R*R&qQ%t!gQ)W%dT*P&q-a$WiPVX]cklmnopxyz!S!W!X!Y!j!r!s!w#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a$Q$R$T$z%O%Q%T%V%}&S&['a(V(h)u+^,Q,T.[.u.w/P0e0}1O1S1W1o1{2]2r3p3u8d8e!t5c']3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5f5h5j5l5n5p7b7c!x7n5a5b5d5e5g5i5k5m5o5q5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`$`:P`j!]!g!y!z#i#l#m#q#r%S%U&q&t&u&x'P(R(t)T)X)n*V*[,e,g-a5r7o7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8f8g8h8s9W9Z9^9c9h9o9p9s9u9v:Q:R:S:T:_>v?^?_#l>t!|%d&W)y){*Z*|,c-t-z/X/y0O0T1R1k9T9_9a9f:U:V:W:X:Y:Z:[:]:^:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:u:v:w;S;e;j;k;n;u;v;z;|;}=O=P!x?[,Y-`:q:s;iV>[>]>c>h>i>l>n>p!]?]0s2W:rW>^>o>qQ#p`Q&s#iQ&{#qR*T&tS#o`#q^$Sj5d5e:Q:R:S:TS*W&x9WT:t#i&tQ'O#rR*_'PR&T!{R&Z!|Q&Y!|R-]){Q#|gS'^#}3nS'o$h+QS*d'X3sU*f'Z*w-vQ*z'pQ+O'tQ+T'yQ+e(WW+i([)`+t,xQ,{)cQ-n*rQ.T+XQ.W+[Q.Z+_U.a+j+m,uQ.f+nQ/_,iQ0`.SQ0c.VQ0g.]Q0l.bQ0o.cQ1[3tQ1x0bQ2O0mQ2u1yQ5x7iQ5y7jQ5z7kQ7e7wQ7t9|Q7u9}Q7v:OQ;q?SQ;t?TQ;x?YQ?W?pQ?X?qQ?Z?rQ?f?yQ?g?zQ?h?{R?i?|0z!OPVX]`cjklmnopxyz!S!W!X!Y!]!g!j!r!s!w!y!z!|#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a#i#l#m#q#r$Q$R$T$z%O%Q%S%T%U%V%d%}&S&W&[&q&t&u&x'P']'a(R(V(h(t)T)X)n)u)y){*V*Z*[*|+^,Q,T,Y,c,e,g-`-a-t-z.[.u.w/P/X/y0O0T0e0s0}1O1R1S1W1k1o1{2W2]2r3p3u3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5a5b5d5e5f5g5h5i5j5k5l5m5n5o5p5q5r5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`7b7c7o7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8d8e8f8g8h8s9T9W9Z9^9_9a9c9f9h9o9p9s9u9v:Q:R:S:T:U:V:W:X:Y:Z:[:]:^:_:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:q:r:s:u:v:w;S;e;i;j;k;n;u;v;z;|;}V>W>[>]>^>c>h>i>l>n>o>p>q>v?^?_#`$Og#}$h'X'Z'p't'y(W([)`)c*r*w+Q+X+[+_+j+m+n+t,i,u,x-v.S.V.].b.c0b0m1y3n3s3t7i7j7k7w9|9}:O?S?T?Y?p?q?r?y?z?{?|S$[r'eQ%l!eS%p!f%rU+f(Y(Z+qQ-Q)gQ/m-OQ0h.^Q1a/nQ2j1bR3W2k|vPVX!S!j!r!s!w%O%Q%T%V(h,Q,T.u.w/P0}1O1W2]#Y#g]cklmnopxyz!W!X!Y#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a$Q$R$T$z%}&S&['a(V)u+^.[0e1S1o1{2r3p3u8d8e`+k([)`+j+m+t,u,x.b!t8c']3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5f5h5j5l5n5p7b7c!x<}5a5b5d5e5g5i5k5m5o5q5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`$`?k`j!]!g!y!z#i#l#m#q#r%S%U&q&t&u&x'P(R(t)T)X)n*V*[,e,g-a5r7o7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8f8g8h8s9W9Z9^9c9h9o9p9s9u9v:Q:R:S:T:_>v?^?_#l?}!|%d&W)y){*Z*|,c-t-z/X/y0O0T1R1k9T9_9a9f:U:V:W:X:Y:Z:[:]:^:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:u:v:w;S;e;j;k;n;u;v;z;|;}=O=P!x@O,Y-`:q:s;iV>[>]>c>h>i>l>n>p!]@P0s2W:rW>^>o>qR'w$hQ'v$hR-|+QR$^rQ#d[Q%Y!WQ%[!XQ%^!YQ(U$pQ({%WQ(|%XQ(}%ZQ)O%]Q)V%cQ)[%gQ)d%lQ)j%qQ)p%tQ*n'iQ-V)mQ-l*oQ.i+oQ.j+pQ.x,WQ/S,`Q/T,aQ/U,bQ/Z,fQ/^,hQ/b,pQ/q-PQ0j.`Q0q.dQ0r.hQ0t.kQ0y.{Q1Y/dQ1_/lQ1n0VQ1|0kQ2Q0nQ2R0pQ2[0|Q2d1XQ2g1^Q2w1}Q2y2PQ2|2VQ3P2ZQ3T2fQ3X2nQ3Y2pQ3]2xQ3a3RQ3b3SR3e3ZR.R+UQ+g(YQ+h(ZR.k+qS+s([+tT,w)`,xa+l([)`+j+m+t,u,x.bQ%g!_Q'i$aQ*o'jQ.h+nS0p.c.fS2P0m0oR2x2OQ$pvW+o([)`+t,xW.`+i+j+m,uS0k.a.bR1}0l|!aPVX!S!j!r!s!w%O%Q%T%V(h,Q,T.u.w/P0}1O1W2]Q$ctW+p([)`+t,xU.d+j+m,uR0n.b0z!OPVX]`cjklmnopxyz!S!W!X!Y!]!g!j!r!s!w!y!z!|#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a#i#l#m#q#r$Q$R$T$z%O%Q%S%T%U%V%d%}&S&W&[&q&t&u&x'P']'a(R(V(h(t)T)X)n)u)y){*V*Z*[*|+^,Q,T,Y,c,e,g-`-a-t-z.[.u.w/P/X/y0O0T0e0s0}1O1R1S1W1k1o1{2W2]2r3p3u3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5a5b5d5e5f5g5h5i5j5k5l5m5n5o5p5q5r5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`7b7c7o7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8d8e8f8g8h8s9T9W9Z9^9_9a9c9f9h9o9p9s9u9v:Q:R:S:T:U:V:W:X:Y:Z:[:]:^:_:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:q:r:s:u:v:w;S;e;i;j;k;n;u;v;z;|;}V>W>[>]>^>c>h>i>l>n>o>p>q>v?^?_R/a,m0}}PVX]`cjklmnopxyz!S!W!X!Y!]!g!j!r!s!w!y!z!|#Q#R#S#T#U#V#W#X#Y#Z#[#]#^#_#`#a#i#l#m#q#r$Q$R$T$z%O%Q%S%T%U%V%d%}&S&W&[&q&t&u&x'P']'a(R(V(h(t)T)X)n)u)y){*V*Z*[*|+^,Q,T,Y,c,e,g,m-`-a-t-z.[.u.w/P/X/y0O0T0e0s0}1O1R1S1W1k1o1{2W2]2r3p3u3x3y3z3{3|3}4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4_4`4a4b4c4k5O5R5S5V5Z5[5_5a5b5d5e5f5g5h5i5j5k5l5m5n5o5p5q5r5u5{5|5}6O6P6Q6R6S6T6U6V6W6X6Y6Z6[6]6^6_6`6a6b6c6d6l7P7S7T7W7[7]7`7b7c7o7x7y7z7{7|7}8O8P8Q8R8S8T8U8V8W8X8Y8Z8[8]8^8_8`8a8b8d8e8f8g8h8s9T9W9Z9^9_9a9c9f9h9o9p9s9u9v:Q:R:S:T:U:V:W:X:Y:Z:[:]:^:_:`:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:q:r:s:u:v:w;S;e;i;j;k;n;u;v;z;|;}V>W>[>]>^>c>h>i>l>n>o>p>q>v?^?_T$x{$|Q(q%QQ(v%TQ(y%VR2b1WQ%c!]Q(u%SQ,d(tQ/W,cQ/Y,eQ1Q/XR2_1RQ%q!fR)m%rR/p-O",nodeNames:"\u26A0 ( HeredocString EscapeSequence abstract LogicOp array as Boolean break case catch clone const continue default declare do echo else elseif enddeclare endfor endforeach endif endswitch endwhile enum extends final finally fn for foreach from function global goto if implements include include_once LogicOp insteadof interface list match namespace new null LogicOp print readonly require require_once return switch throw trait try unset use var Visibility while LogicOp yield LineComment BlockComment TextInterpolation PhpClose Text PhpOpen Template TextInterpolation EmptyStatement ; } { Block : LabelStatement Name ExpressionStatement ConditionalExpression LogicOp MatchExpression ) ( ParenthesizedExpression MatchBlock MatchArm , => AssignmentExpression ArrayExpression ValueList & VariadicUnpacking ... Pair [ ] ListExpression ValueList Pair Pair SubscriptExpression MemberExpression -> ?-> Name VariableName DynamicVariable $ ${ CallExpression ArgList NamedArgument SpreadArgument CastExpression UnionType LogicOp IntersectionType OptionalType NamedType QualifiedName \\ NamespaceName Name NamespaceName Name ScopedExpression :: ClassMemberName DynamicMemberName AssignOp UpdateExpression UpdateOp YieldExpression BinaryExpression LogicOp LogicOp LogicOp BitOp BitOp BitOp CompareOp CompareOp BitOp ArithOp ConcatOp ArithOp ArithOp IncludeExpression RequireExpression CloneExpression UnaryExpression ControlOp LogicOp PrintIntrinsic FunctionExpression static ParamList Parameter #[ Attributes Attribute VariadicParameter PropertyParameter PropertyHooks PropertyHook UseList ArrowFunction NewExpression class BaseClause ClassInterfaceClause DeclarationList ConstDeclaration VariableDeclarator PropertyDeclaration VariableDeclarator MethodDeclaration UseDeclaration UseList UseInsteadOfClause UseAsClause UpdateExpression ArithOp ShellExpression ThrowExpression Integer Float String MemberExpression SubscriptExpression UnaryExpression ArithOp Interpolation String IfStatement ColonBlock SwitchStatement Block CaseStatement DefaultStatement ColonBlock WhileStatement EmptyStatement DoStatement ForStatement ForSpec SequenceExpression ForeachStatement ForSpec Pair GotoStatement ContinueStatement BreakStatement ReturnStatement TryStatement CatchDeclarator DeclareStatement EchoStatement UnsetStatement ConstDeclaration FunctionDefinition ClassDeclaration InterfaceDeclaration TraitDeclaration EnumDeclaration EnumBody EnumCase NamespaceDefinition NamespaceUseDeclaration UseGroup UseClause UseClause GlobalDeclaration FunctionStaticDeclaration Program",maxTerm:318,nodeProps:[["group",-36,2,8,49,82,84,86,89,94,95,103,107,108,112,113,116,120,126,132,137,139,140,154,155,156,157,160,161,173,174,188,190,191,192,193,194,200,"Expression",-28,75,79,81,83,201,203,208,210,211,214,217,218,219,220,221,223,224,225,226,227,228,229,230,231,234,235,239,240,"Statement",-4,121,123,124,125,"Type"],["isolate",-4,67,68,71,200,""],["openedBy",70,"phpOpen",77,"{",87,"(",102,"#["],["closedBy",72,"phpClose",78,"}",88,")",165,"]"]],propSources:[Ww],skippedNodes:[0],repeatNodeCount:32,tokenData:"!GQ_R!]OX$zXY&^YZ'sZ]$z]^&^^p$zpq&^qr)Rrs+Pst+otu2buv5evw6rwx8Vxy>]yz>yz{?g{|@}|}Bb}!OCO!O!PDh!P!QKT!Q!R!!o!R![!$q![!]!,P!]!^!-a!^!_!-}!_!`!1S!`!a!2d!a!b!3t!b!c!7^!c!d!7z!d!e!9Y!e!}!7z!}#O!;b#O#P!V<%lO8VR9WV'TP%`QOw9mwx:Xx#O9m#O#P:^#P;'S9m;'S;=`;X<%lO9mQ9rV%`QOw9mwx:Xx#O9m#O#P:^#P;'S9m;'S;=`;X<%lO9mQ:^O%`QQ:aRO;'S9m;'S;=`:j;=`O9mQ:oW%`QOw9mwx:Xx#O9m#O#P:^#P;'S9m;'S;=`;X;=`<%l9m<%lO9mQ;[P;=`<%l9mR;fV'TP%`QOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zRV<%l~8V~O8V~~%fR=OW'TPOY8VYZ9PZ!^8V!^!_;{!_;'S8V;'S;=`=h;=`<%l9m<%lO8VR=mW%`QOw9mwx:Xx#O9m#O#P:^#P;'S9m;'S;=`;X;=`<%l8V<%lO9mR>YP;=`<%l8VR>dV!zQ'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zV?QV!yU'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zR?nY'TP$^QOY$zYZ%fZz$zz{@^{!^$z!^!_%k!_!`6U!`;'S$z;'S;=`&W<%lO$zR@eW$_Q'TPOY$zYZ%fZ!^$z!^!_%k!_!`6U!`;'S$z;'S;=`&W<%lO$zRAUY$[Q'TPOY$zYZ%fZ{$z{|At|!^$z!^!_%k!_!`6U!`;'S$z;'S;=`&W<%lO$zRA{V%TQ'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zRBiV#OQ'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$z_CXZ$[Q%^W'TPOY$zYZ%fZ}$z}!OAt!O!^$z!^!_%k!_!`6U!`!aCz!a;'S$z;'S;=`&W<%lO$zVDRV#aU'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zVDo['TP$]QOY$zYZ%fZ!O$z!O!PEe!P!Q$z!Q![Fs![!^$z!^!_%k!_!`6U!`;'S$z;'S;=`&W<%lO$zVEjX'TPOY$zYZ%fZ!O$z!O!PFV!P!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zVF^V#VU'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zRFz_'TP%XQOY$zYZ%fZ!Q$z!Q![Fs![!^$z!^!_%k!_!g$z!g!hGy!h#R$z#R#SJc#S#X$z#X#YGy#Y;'S$z;'S;=`&W<%lO$zRHO]'TPOY$zYZ%fZ{$z{|Hw|}$z}!OHw!O!Q$z!Q![Ii![!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zRH|X'TPOY$zYZ%fZ!Q$z!Q![Ii![!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zRIpZ'TP%XQOY$zYZ%fZ!Q$z!Q![Ii![!^$z!^!_%k!_#R$z#R#SHw#S;'S$z;'S;=`&W<%lO$zRJhX'TPOY$zYZ%fZ!Q$z!Q![Fs![!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$z_K[['TP$^QOY$zYZ%fZz$zz{LQ{!P$z!P!Q,o!Q!^$z!^!_%k!_!`6U!`;'S$z;'S;=`&W<%lO$z_LVX'TPOYLQYZLrZzLQz{N_{!^LQ!^!_! s!_;'SLQ;'S;=`!!i<%lOLQ_LwT'TPOzMWz{Mj{;'SMW;'S;=`NX<%lOMW^MZTOzMWz{Mj{;'SMW;'S;=`NX<%lOMW^MmVOzMWz{Mj{!PMW!P!QNS!Q;'SMW;'S;=`NX<%lOMW^NXO!f^^N[P;=`<%lMW_NdZ'TPOYLQYZLrZzLQz{N_{!PLQ!P!Q! V!Q!^LQ!^!_! s!_;'SLQ;'S;=`!!i<%lOLQ_! ^V!f^'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$z_! vZOYLQYZLrZzLQz{N_{!aLQ!a!bMW!b;'SLQ;'S;=`!!i<%l~LQ~OLQ~~%f_!!lP;=`<%lLQZ!!vm'TP%WYOY$zYZ%fZ!O$z!O!PFs!P!Q$z!Q![!$q![!^$z!^!_%k!_!d$z!d!e!&o!e!g$z!g!hGy!h!q$z!q!r!(a!r!z$z!z!{!){!{#R$z#R#S!%}#S#U$z#U#V!&o#V#X$z#X#YGy#Y#c$z#c#d!(a#d#l$z#l#m!){#m;'S$z;'S;=`&W<%lO$zZ!$xa'TP%WYOY$zYZ%fZ!O$z!O!PFs!P!Q$z!Q![!$q![!^$z!^!_%k!_!g$z!g!hGy!h#R$z#R#S!%}#S#X$z#X#YGy#Y;'S$z;'S;=`&W<%lO$zZ!&SX'TPOY$zYZ%fZ!Q$z!Q![!$q![!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zZ!&tY'TPOY$zYZ%fZ!Q$z!Q!R!'d!R!S!'d!S!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zZ!'k['TP%WYOY$zYZ%fZ!Q$z!Q!R!'d!R!S!'d!S!^$z!^!_%k!_#R$z#R#S!&o#S;'S$z;'S;=`&W<%lO$zZ!(fX'TPOY$zYZ%fZ!Q$z!Q!Y!)R!Y!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zZ!)YZ'TP%WYOY$zYZ%fZ!Q$z!Q!Y!)R!Y!^$z!^!_%k!_#R$z#R#S!(a#S;'S$z;'S;=`&W<%lO$zZ!*Q]'TPOY$zYZ%fZ!Q$z!Q![!*y![!^$z!^!_%k!_!c$z!c!i!*y!i#T$z#T#Z!*y#Z;'S$z;'S;=`&W<%lO$zZ!+Q_'TP%WYOY$zYZ%fZ!Q$z!Q![!*y![!^$z!^!_%k!_!c$z!c!i!*y!i#R$z#R#S!){#S#T$z#T#Z!*y#Z;'S$z;'S;=`&W<%lO$zR!,WX!rQ'TPOY$zYZ%fZ![$z![!]!,s!]!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zR!,zV#yQ'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zV!-hV!nU'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zR!.S[$YQOY$zYZ%fZ!^$z!^!_!.x!_!`!/i!`!a*c!a!b!0]!b;'S$z;'S;=`&W<%l~$z~O$z~~%fR!/PW$ZQ'TPOY$zYZ%fZ!^$z!^!_%k!_!`6U!`;'S$z;'S;=`&W<%lO$zR!/pX$YQ'TPOY$zYZ%fZ!^$z!^!_%k!_!`$z!`!a*c!a;'S$z;'S;=`&W<%lO$zP!0bR!jP!_!`!0k!r!s!0p#d#e!0pP!0pO!jPP!0sQ!j!k!0y#[#]!0yP!0|Q!r!s!0k#d#e!0k_!1ZX#|Y'TPOY$zYZ%fZ!^$z!^!_%k!_!`)r!`!a!1v!a;'S$z;'S;=`&W<%lO$zV!1}V#PU'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zR!2kX$YQ'TPOY$zYZ%fZ!^$z!^!_%k!_!`!3W!`!a!.x!a;'S$z;'S;=`&W<%lO$zR!3_V$YQ'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$z_!3{[!wQ'TPOY$zYZ%fZ}$z}!O!4q!O!^$z!^!_%k!_!`$z!`!a!6P!a!b!6m!b;'S$z;'S;=`&W<%lO$zV!4vX'TPOY$zYZ%fZ!^$z!^!_%k!_!`$z!`!a!5c!a;'S$z;'S;=`&W<%lO$zV!5jV#bU'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$z_!6WV!h^'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zR!6tW$RQ'TPOY$zYZ%fZ!^$z!^!_%k!_!`6U!`;'S$z;'S;=`&W<%lO$zR!7eV$dQ'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$z_!8Ta'aS'TP'WYOY$zYZ%fZ!Q$z!Q![!7z![!^$z!^!_%k!_!c$z!c!}!7z!}#R$z#R#S!7z#S#T$z#T#o!7z#o$g$z$g&j!7z&j;'S$z;'S;=`&W<%lO$z_!9ce'aS'TP'WYOY$zYZ%fZr$zrs!:tsw$zwx8Vx!Q$z!Q![!7z![!^$z!^!_%k!_!c$z!c!}!7z!}#R$z#R#S!7z#S#T$z#T#o!7z#o$g$z$g&j!7z&j;'S$z;'S;=`&W<%lO$zR!:{V'TP'uQOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zV!;iV#XU'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$z_!OZ'TPOY!=yYZ!>qZ!^!=y!^!_!@y!_#O!=y#O#P!Au#P#S!=y#S#T!CP#T;'S!=y;'S;=`!Cm<%lO!=yR!>vV'TPO#O!?]#O#P!?u#P#S!?]#S#T!@n#T;'S!?];'S;=`!@s<%lO!?]Q!?`VO#O!?]#O#P!?u#P#S!?]#S#T!@n#T;'S!?];'S;=`!@s<%lO!?]Q!?xRO;'S!?];'S;=`!@R;=`O!?]Q!@UWO#O!?]#O#P!?u#P#S!?]#S#T!@n#T;'S!?];'S;=`!@s;=`<%l!?]<%lO!?]Q!@sO%UQQ!@vP;=`<%l!?]R!@|]OY!=yYZ!>qZ!a!=y!a!b!?]!b#O!=y#O#P!Au#P#S!=y#S#T!CP#T;'S!=y;'S;=`!Cm<%l~!=y~O!=y~~%fR!AzW'TPOY!=yYZ!>qZ!^!=y!^!_!@y!_;'S!=y;'S;=`!Bd;=`<%l!?]<%lO!=yR!BgWO#O!?]#O#P!?u#P#S!?]#S#T!@n#T;'S!?];'S;=`!@s;=`<%l!=y<%lO!?]R!CWV%UQ'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zR!CpP;=`<%l!=y_!CzV!p^'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$z_!DjY$UQ#n['TPOY$zYZ%fZ!^$z!^!_%k!_!`6U!`#p$z#p#q!EY#q;'S$z;'S;=`&W<%lO$zR!EaV$SQ'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zR!E}V!oQ'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$zR!FkV$eQ'TPOY$zYZ%fZ!^$z!^!_%k!_;'S$z;'S;=`&W<%lO$z",tokenizers:[Rw,Uw,qw,0,1,2,3,Vw],topRules:{Template:[0,73],Program:[1,241]},dynamicPrecedences:{298:1},specialized:[{term:284,get:(O,e)=>xm(O)<<1,external:xm},{term:284,get:O=>jw[O]||-1}],tokenPrec:29889});var Cw=ne.define({name:"php",parser:Zm.configure({props:[se.add({IfStatement:le({except:/^\s*({|else\b|elseif\b|endif\b)/}),TryStatement:le({except:/^\s*({|catch\b|finally\b)/}),SwitchBody:O=>{let e=O.textAfter,t=/^\s*\}/.test(e),i=/^\s*(case|default)\b/.test(e);return O.baseIndent+(t?0:i?1:2)*O.unit},ColonBlock:O=>O.baseIndent+O.unit,"Block EnumBody DeclarationList":be({closing:"}"}),ArrowFunction:O=>O.baseIndent+O.unit,"String BlockComment":()=>null,Statement:le({except:/^({|end(for|foreach|switch|while)\b)/})}),te.add({"Block EnumBody DeclarationList SwitchBody ArrayExpression ValueList":me,ColonBlock(O){return{from:O.from+1,to:O.to}},BlockComment(O){return{from:O.from+2,to:O.to-2}}})]}),languageData:{commentTokens:{block:{open:"/*",close:"*/"},line:"//"},indentOnInput:/^\s*(?:case |default:|end(?:if|for(?:each)?|switch|while)|else(?:if)?|\{|\})$/,wordChars:"$",closeBrackets:{stringPrefixes:["b","B"]}}});function vm(O={}){let e=[],t;if(O.baseLanguage!==null)if(O.baseLanguage)t=O.baseLanguage;else{let i=Ti({matchClosingTags:!1});e.push(i.support),t=i.language}return new J(Cw.configure({wrap:t&&xO(i=>i.type.isTop?{parser:t.parser,overlay:r=>r.name=="Text"}:null),top:O.plain?"Program":"Template"}),e)}var Gw=1,zm=194,Um=195,Ew=196,Ym=197,Aw=198,Lw=199,Mw=200,Dw=2,Wm=3,_m=201,Iw=24,Bw=25,Nw=49,Fw=50,Hw=55,Kw=56,Jw=57,eZ=59,tZ=60,OZ=61,iZ=62,rZ=63,nZ=65,sZ=238,aZ=71,oZ=241,lZ=242,cZ=243,hZ=244,fZ=245,dZ=246,uZ=247,QZ=248,jm=72,$Z=249,pZ=250,mZ=251,gZ=252,PZ=253,SZ=254,XZ=255,TZ=256,bZ=73,yZ=77,xZ=263,kZ=112,wZ=130,ZZ=151,vZ=152,YZ=155,WO=10,Ur=13,Lc=32,js=9,Mc=35,_Z=40,RZ=46,Ac=123,Rm=125,Cm=39,Gm=34,Vm=92,VZ=111,qZ=120,zZ=78,UZ=117,WZ=85,jZ=new Set([Bw,Nw,Fw,xZ,nZ,wZ,Kw,Jw,sZ,iZ,rZ,jm,bZ,yZ,tZ,OZ,ZZ,vZ,YZ,kZ]);function Gc(O){return O==WO||O==Ur}function Ec(O){return O>=48&&O<=57||O>=65&&O<=70||O>=97&&O<=102}var CZ=new z((O,e)=>{let t;if(O.next<0)O.acceptToken(Lw);else if(e.context.flags&Us)Gc(O.next)&&O.acceptToken(Aw,1);else if(((t=O.peek(-1))<0||Gc(t))&&e.canShift(Ym)){let i=0;for(;O.next==Lc||O.next==js;)O.advance(),i++;(O.next==WO||O.next==Ur||O.next==Mc)&&O.acceptToken(Ym,-i)}else Gc(O.next)&&O.acceptToken(Ew,1)},{contextual:!0}),GZ=new z((O,e)=>{let t=e.context;if(t.flags)return;let i=O.peek(-1);if(i==WO||i==Ur){let r=0,n=0;for(;;){if(O.next==Lc)r++;else if(O.next==js)r+=8-r%8;else break;O.advance(),n++}r!=t.indent&&O.next!=WO&&O.next!=Ur&&O.next!=Mc&&(r[O,e|Em])),LZ=new Ge({start:EZ,reduce(O,e,t,i){return O.flags&Us&&jZ.has(e)||(e==aZ||e==jm)&&O.flags&Em?O.parent:O},shift(O,e,t,i){return e==zm?new Ws(O,AZ(i.read(i.pos,t.pos)),0):e==Um?O.parent:e==Iw||e==Hw||e==eZ||e==Wm?new Ws(O,0,Us):qm.has(e)?new Ws(O,0,qm.get(e)|O.flags&Us):O},hash(O){return O.hash}}),MZ=new z(O=>{for(let e=0;e<5;e++){if(O.next!="print".charCodeAt(e))return;O.advance()}if(!/\w/.test(String.fromCharCode(O.next)))for(let e=0;;e++){let t=O.peek(e);if(!(t==Lc||t==js)){t!=_Z&&t!=RZ&&t!=WO&&t!=Ur&&t!=Mc&&O.acceptToken(Gw);return}}}),DZ=new z((O,e)=>{let{flags:t}=e.context,i=t&jt?Gm:Cm,r=(t&Ct)>0,n=!(t&Gt),s=(t&Et)>0,a=O.pos;for(;!(O.next<0);)if(s&&O.next==Ac)if(O.peek(1)==Ac)O.advance(2);else{if(O.pos==a){O.acceptToken(Wm,1);return}break}else if(n&&O.next==Vm){if(O.pos==a){O.advance();let o=O.next;o>=0&&(O.advance(),IZ(O,o)),O.acceptToken(Dw);return}break}else if(O.next==Vm&&!n&&O.peek(1)>-1)O.advance(2);else if(O.next==i&&(!r||O.peek(1)==i&&O.peek(2)==i)){if(O.pos==a){O.acceptToken(_m,r?3:1);return}break}else if(O.next==WO){if(r)O.advance();else if(O.pos==a){O.acceptToken(_m);return}break}else O.advance();O.pos>a&&O.acceptToken(Mw)});function IZ(O,e){if(e==VZ)for(let t=0;t<2&&O.next>=48&&O.next<=55;t++)O.advance();else if(e==qZ)for(let t=0;t<2&&Ec(O.next);t++)O.advance();else if(e==UZ)for(let t=0;t<4&&Ec(O.next);t++)O.advance();else if(e==WZ)for(let t=0;t<8&&Ec(O.next);t++)O.advance();else if(e==zZ&&O.next==Ac){for(O.advance();O.next>=0&&O.next!=Rm&&O.next!=Cm&&O.next!=Gm&&O.next!=WO;)O.advance();O.next==Rm&&O.advance()}}var BZ=F({'async "*" "**" FormatConversion FormatSpec':d.modifier,"for while if elif else try except finally return raise break continue with pass assert await yield match case":d.controlKeyword,"in not and or is del":d.operatorKeyword,"from def class global nonlocal lambda":d.definitionKeyword,import:d.moduleKeyword,"with as print":d.keyword,Boolean:d.bool,None:d.null,VariableName:d.variableName,"CallExpression/VariableName":d.function(d.variableName),"FunctionDefinition/VariableName":d.function(d.definition(d.variableName)),"ClassDefinition/VariableName":d.definition(d.className),PropertyName:d.propertyName,"CallExpression/MemberExpression/PropertyName":d.function(d.propertyName),Comment:d.lineComment,Number:d.number,String:d.string,FormatString:d.special(d.string),Escape:d.escape,UpdateOp:d.updateOperator,"ArithOp!":d.arithmeticOperator,BitOp:d.bitwiseOperator,CompareOp:d.compareOperator,AssignOp:d.definitionOperator,Ellipsis:d.punctuation,At:d.meta,"( )":d.paren,"[ ]":d.squareBracket,"{ }":d.brace,".":d.derefOperator,", ;":d.separator}),NZ={__proto__:null,await:44,or:54,and:56,in:60,not:62,is:64,if:70,else:72,lambda:76,yield:94,from:96,async:102,for:104,None:162,True:164,False:164,del:178,pass:182,break:186,continue:190,return:194,raise:202,import:206,as:208,global:212,nonlocal:214,assert:218,type:223,elif:236,while:240,try:246,except:248,finally:250,with:254,def:258,class:268,match:279,case:285},Am=Oe.deserialize({version:14,states:"##jO`QeOOP$}OSOOO&WQtO'#HUOOQS'#Co'#CoOOQS'#Cp'#CpO'vQdO'#CnO*UQtO'#HTOOQS'#HU'#HUOOQS'#DU'#DUOOQS'#HT'#HTO*rQdO'#D_O+VQdO'#DfO+gQdO'#DjO+zOWO'#DuO,VOWO'#DvO.[QtO'#GuOOQS'#Gu'#GuO'vQdO'#GtO0ZQtO'#GtOOQS'#Eb'#EbO0rQdO'#EcOOQS'#Gs'#GsO0|QdO'#GrOOQV'#Gr'#GrO1XQdO'#FYOOQS'#G^'#G^O1^QdO'#FXOOQV'#IS'#ISOOQV'#Gq'#GqOOQV'#Fq'#FqQ`QeOOO'vQdO'#CqO1lQdO'#C}O1sQdO'#DRO2RQdO'#HYO2cQtO'#EVO'vQdO'#EWOOQS'#EY'#EYOOQS'#E['#E[OOQS'#E^'#E^O2wQdO'#E`O3_QdO'#EdO3rQdO'#EfO3zQtO'#EfO1XQdO'#EiO0rQdO'#ElO1XQdO'#EnO0rQdO'#EtO0rQdO'#EwO4VQdO'#EyO4^QdO'#FOO4iQdO'#EzO0rQdO'#FOO1XQdO'#FQO1XQdO'#FVO4nQdO'#F[P4uOdO'#GpPOOO)CBd)CBdOOQS'#Ce'#CeOOQS'#Cf'#CfOOQS'#Cg'#CgOOQS'#Ch'#ChOOQS'#Ci'#CiOOQS'#Cj'#CjOOQS'#Cl'#ClO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO5TQdO'#DoOOQS,5:Y,5:YO5hQdO'#HdOOQS,5:],5:]O5uQ!fO,5:]O5zQtO,59YO1lQdO,59bO1lQdO,59bO1lQdO,59bO8jQdO,59bO8oQdO,59bO8vQdO,59jO8}QdO'#HTO:TQdO'#HSOOQS'#HS'#HSOOQS'#D['#D[O:lQdO,59aO'vQdO,59aO:zQdO,59aOOQS,59y,59yO;PQdO,5:RO'vQdO,5:ROOQS,5:Q,5:QO;_QdO,5:QO;dQdO,5:XO'vQdO,5:XO'vQdO,5:VOOQS,5:U,5:UO;uQdO,5:UO;zQdO,5:WOOOW'#Fy'#FyOOOOQS'#Ds'#DsOOQS1G/w1G/wOOQS1G.|1G.|O!/[QtO1G.|O!/cQtO1G.|O1lQdO1G.|O!0OQdO1G/UOOQS'#DZ'#DZO0rQdO,59tOOQS1G.{1G.{O!0VQdO1G/eO!0gQdO1G/eO!0oQdO1G/fO'vQdO'#H[O!0tQdO'#H[O!0yQtO1G.{O!1ZQdO,59iO!2aQdO,5=zO!2qQdO,5=zO!2yQdO1G/mO!3OQtO1G/mOOQS1G/l1G/lO!3`QdO,5=uO!4VQdO,5=uO0rQdO1G/qO!4tQdO1G/sO!4yQtO1G/sO!5ZQtO1G/qOOQS1G/p1G/pOOQS1G/r1G/rOOOW-E9w-E9wOOQS1G/{1G/{O!5kQdO'#HxO0rQdO'#HxO!5|QdO,5>cOOOW-E9x-E9xOOQS1G/|1G/|OOQS-E9{-E9{O!6[Q#xO1G2zO!6{QtO1G2zO'vQdO,5kOOQS1G1`1G1`O!8RQdO1G1`OOQS'#DV'#DVO0rQdO,5=qOOQS,5=q,5=qO!8WQdO'#FrO!8cQdO,59oO!8kQdO1G/XO!8uQtO,5=uOOQS1G3`1G3`OOQS,5:m,5:mO!9fQdO'#GtOOQS,5jO!;ZQdO,5>jO1XQdO,5>jO!;lQdO,5>iOOQS-E:R-E:RO!;qQdO1G0lO!;|QdO1G0lO!lO!lO!hO!=VQdO,5>hO!=hQdO'#EpO0rQdO1G0tO!=sQdO1G0tO!=xQgO1G0zO!AvQgO1G0}O!EqQdO,5>oO!E{QdO,5>oO!FTQtO,5>oO0rQdO1G1PO!F_QdO1G1PO4iQdO1G1UO!!vQdO1G1WOOQV,5;a,5;aO!FdQfO,5;aO!FiQgO1G1QO!JjQdO'#GZO4iQdO1G1QO4iQdO1G1QO!JzQdO,5>pO!KXQdO,5>pO1XQdO,5>pOOQV1G1U1G1UO!KaQdO'#FSO!KrQ!fO1G1WO!KzQdO1G1WOOQV1G1]1G1]O4iQdO1G1]O!LPQdO1G1]O!LXQdO'#F^OOQV1G1b1G1bO!#ZQtO1G1bPOOO1G2v1G2vP!L^OSO1G2vOOQS,5=},5=}OOQS'#Dp'#DpO0rQdO,5=}O!LfQdO,5=|O!LyQdO,5=|OOQS1G/u1G/uO!MRQdO,5>PO!McQdO,5>PO!MkQdO,5>PO!NOQdO,5>PO!N`QdO,5>POOQS1G3j1G3jOOQS7+$h7+$hO!8kQdO7+$pO#!RQdO1G.|O#!YQdO1G.|OOQS1G/`1G/`OOQS,5<`,5<`O'vQdO,5<`OOQS7+%P7+%PO#!aQdO7+%POOQS-E9r-E9rOOQS7+%Q7+%QO#!qQdO,5=vO'vQdO,5=vOOQS7+$g7+$gO#!vQdO7+%PO##OQdO7+%QO##TQdO1G3fOOQS7+%X7+%XO##eQdO1G3fO##mQdO7+%XOOQS,5<_,5<_O'vQdO,5<_O##rQdO1G3aOOQS-E9q-E9qO#$iQdO7+%]OOQS7+%_7+%_O#$wQdO1G3aO#%fQdO7+%_O#%kQdO1G3gO#%{QdO1G3gO#&TQdO7+%]O#&YQdO,5>dO#&sQdO,5>dO#&sQdO,5>dOOQS'#Dx'#DxO#'UO&jO'#DzO#'aO`O'#HyOOOW1G3}1G3}O#'fQdO1G3}O#'nQdO1G3}O#'yQ#xO7+(fO#(jQtO1G2UP#)TQdO'#GOOOQS,5nQdO,5sQdO1G4OOOQS-E9y-E9yO#?^QdO1G4OO<[QdO'#H{OOOO'#D{'#D{OOOO'#F|'#F|O#?oO&jO,5:fOOOW,5>e,5>eOOOW7+)i7+)iO#?zQdO7+)iO#@SQdO1G2zO#@mQdO1G2zP'vQdO'#FuO0rQdO<mO#BQQdO,5>mOOQS1G0v1G0vOOQS<rO#KgQdO,5>rO#KrQdO,5>rO#K}QdO,5>qO#L`QdO,5>qOOQS1G1Y1G1YOOQS,5;p,5;pOOQV<VAN>VO$ oQdO<cAN>cO0rQdO1G1|O$!PQtO1G1|P$!ZQdO'#FvOOQS1G2R1G2RP$!hQdO'#F{O$!uQdO7+)jO$#`QdO,5>gOOOO-E9z-E9zOOOW<tO$4{QdO,5>tO1XQdO,5vO$)nQdO,5>vOOQS1G1p1G1pOOQS,5<[,5<[OOQU7+'P7+'PO$+zQdO1G/iO$)nQdO,5wO$8zQdO,5>wOOQS1G1s1G1sOOQS7+'S7+'SP$)nQdO'#GdO$9SQdO1G4bO$9^QdO1G4bO$9fQdO1G4bOOQS7+%T7+%TO$9tQdO1G1tO$:SQtO'#FaO$:ZQdO,5<}OOQS,5<},5<}O$:iQdO1G4cOOQS-E:a-E:aO$)nQdO,5<|O$:pQdO,5<|O$:uQdO7+)|OOQS-E:`-E:`O$;PQdO7+)|O$)nQdO,5S~O%cOS%^OSSOS%]PQ~OPdOVaOfoOhYOopOs!POvqO!PrO!Q{O!T!SO!U!RO!XZO!][O!h`O!r`O!s`O!t`O!{tO!}uO#PvO#RwO#TxO#XyO#ZzO#^|O#_|O#a}O#c!OO#l!QO#o!TO#s!UO#u!VO#z!WO#}hO$P!XO%oRO%pRO%tSO%uWO&Z]O&[]O&]]O&^]O&_]O&`]O&a]O&b]O&c^O&d^O&e^O&f^O&g^O&h^O&i^O&j^O~O%]!YO~OV!aO_!aOa!bOh!iO!X!kO!f!mO%j![O%k!]O%l!^O%m!_O%n!_O%o!`O%p!`O%q!aO%r!aO%s!aO~Ok%xXl%xXm%xXn%xXo%xXp%xXs%xXz%xX{%xX!x%xX#g%xX%[%xX%_%xX%z%xXg%xX!T%xX!U%xX%{%xX!W%xX![%xX!Q%xX#[%xXt%xX!m%xX~P%SOfoOhYO!XZO!][O!h`O!r`O!s`O!t`O%oRO%pRO%tSO%uWO&Z]O&[]O&]]O&^]O&_]O&`]O&a]O&b]O&c^O&d^O&e^O&f^O&g^O&h^O&i^O&j^O~Oz%wX{%wX#g%wX%[%wX%_%wX%z%wX~Ok!pOl!qOm!oOn!oOo!rOp!sOs!tO!x%wX~P)pOV!zOg!|Oo0cOv0qO!PrO~P'vOV#OOo0cOv0qO!W#PO~P'vOV#SOa#TOo0cOv0qO![#UO~P'vOQ#XO%`#XO%a#ZO~OQ#^OR#[O%`#^O%a#`O~OV%iX_%iXa%iXh%iXk%iXl%iXm%iXn%iXo%iXp%iXs%iXz%iX!X%iX!f%iX%j%iX%k%iX%l%iX%m%iX%n%iX%o%iX%p%iX%q%iX%r%iX%s%iXg%iX!T%iX!U%iX~O&Z]O&[]O&]]O&^]O&_]O&`]O&a]O&b]O&c^O&d^O&e^O&f^O&g^O&h^O&i^O&j^O{%iX!x%iX#g%iX%[%iX%_%iX%z%iX%{%iX!W%iX![%iX!Q%iX#[%iXt%iX!m%iX~P,eOz#dO{%hX!x%hX#g%hX%[%hX%_%hX%z%hX~Oo0cOv0qO~P'vO#g#gO%[#iO%_#iO~O%uWO~O!T#nO#u!VO#z!WO#}hO~OopO~P'vOV#sOa#tO%uWO{wP~OV#xOo0cOv0qO!Q#yO~P'vO{#{O!x$QO%z#|O#g!yX%[!yX%_!yX~OV#xOo0cOv0qO#g#SX%[#SX%_#SX~P'vOo0cOv0qO#g#WX%[#WX%_#WX~P'vOh$WO%uWO~O!f$YO!r$YO%uWO~OV$eO~P'vO!U$gO#s$hO#u$iO~O{$jO~OV$qO~P'vOS$sO%[$rO%_$rO%c$tO~OV$}Oa$}Og%POo0cOv0qO~P'vOo0cOv0qO{%SO~P'vO&Y%UO~Oa!bOh!iO!X!kO!f!mOVba_bakbalbambanbaobapbasbazba{ba!xba#gba%[ba%_ba%jba%kba%lba%mba%nba%oba%pba%qba%rba%sba%zbagba!Tba!Uba%{ba!Wba![ba!Qba#[batba!mba~On%ZO~Oo%ZO~P'vOo0cO~P'vOk0eOl0fOm0dOn0dOo0mOp0nOs0rOg%wX!T%wX!U%wX%{%wX!W%wX![%wX!Q%wX#[%wX!m%wX~P)pO%{%]Og%vXz%vX!T%vX!U%vX!W%vX{%vX~Og%_Oz%`O!T%dO!U%cO~Og%_O~Oz%gO!T%dO!U%cO!W&SX~O!W%kO~Oz%lO{%nO!T%dO!U%cO![%}X~O![%rO~O![%sO~OQ#XO%`#XO%a%uO~OV%wOo0cOv0qO!PrO~P'vOQ#^OR#[O%`#^O%a%zO~OV!qa_!qaa!qah!qak!qal!qam!qan!qao!qap!qas!qaz!qa{!qa!X!qa!f!qa!x!qa#g!qa%[!qa%_!qa%j!qa%k!qa%l!qa%m!qa%n!qa%o!qa%p!qa%q!qa%r!qa%s!qa%z!qag!qa!T!qa!U!qa%{!qa!W!qa![!qa!Q!qa#[!qat!qa!m!qa~P#yOz%|O{%ha!x%ha#g%ha%[%ha%_%ha%z%ha~P%SOV&OOopOvqO{%ha!x%ha#g%ha%[%ha%_%ha%z%ha~P'vOz%|O{%ha!x%ha#g%ha%[%ha%_%ha%z%ha~OPdOVaOopOvqO!PrO!Q{O!{tO!}uO#PvO#RwO#TxO#XyO#ZzO#^|O#_|O#a}O#c!OO#g$zX%[$zX%_$zX~P'vO#g#gO%[&TO%_&TO~O!f&UOh&sX%[&sXz&sX#[&sX#g&sX%_&sX#Z&sXg&sX~Oh!iO%[&WO~Okealeameaneaoeapeaseazea{ea!xea#gea%[ea%_ea%zeagea!Tea!Uea%{ea!Wea![ea!Qea#[eatea!mea~P%SOsqazqa{qa#gqa%[qa%_qa%zqa~Ok!pOl!qOm!oOn!oOo!rOp!sO!xqa~PEcO%z&YOz%yX{%yX~O%uWOz%yX{%yX~Oz&]O{wX~O{&_O~Oz%lO#g%}X%[%}X%_%}Xg%}X{%}X![%}X!m%}X%z%}X~OV0lOo0cOv0qO!PrO~P'vO%z#|O#gUa%[Ua%_Ua~Oz&hO#g&PX%[&PX%_&PXn&PX~P%SOz&kO!Q&jO#g#Wa%[#Wa%_#Wa~Oz&lO#[&nO#g&rX%[&rX%_&rXg&rX~O!f$YO!r$YO#Z&qO%uWO~O#Z&qO~Oz&sO#g&tX%[&tX%_&tX~Oz&uO#g&pX%[&pX%_&pX{&pX~O!X&wO%z&xO~Oz&|On&wX~P%SOn'PO~OPdOVaOopOvqO!PrO!Q{O!{tO!}uO#PvO#RwO#TxO#XyO#ZzO#^|O#_|O#a}O#c!OO%['UO~P'vOt'YO#p'WO#q'XOP#naV#naf#nah#nao#nas#nav#na!P#na!Q#na!T#na!U#na!X#na!]#na!h#na!r#na!s#na!t#na!{#na!}#na#P#na#R#na#T#na#X#na#Z#na#^#na#_#na#a#na#c#na#l#na#o#na#s#na#u#na#z#na#}#na$P#na%X#na%o#na%p#na%t#na%u#na&Z#na&[#na&]#na&^#na&_#na&`#na&a#na&b#na&c#na&d#na&e#na&f#na&g#na&h#na&i#na&j#na%Z#na%_#na~Oz'ZO#[']O{&xX~Oh'_O!X&wO~Oh!iO{$jO!X&wO~O{'eO~P%SO%['hO%_'hO~OS'iO%['hO%_'hO~OV!aO_!aOa!bOh!iO!X!kO!f!mO%l!^O%m!_O%n!_O%o!`O%p!`O%q!aO%r!aO%s!aOkWilWimWinWioWipWisWizWi{Wi!xWi#gWi%[Wi%_Wi%jWi%zWigWi!TWi!UWi%{Wi!WWi![Wi!QWi#[WitWi!mWi~O%k!]O~P!#uO%kWi~P!#uOV!aO_!aOa!bOh!iO!X!kO!f!mO%o!`O%p!`O%q!aO%r!aO%s!aOkWilWimWinWioWipWisWizWi{Wi!xWi#gWi%[Wi%_Wi%jWi%kWi%lWi%zWigWi!TWi!UWi%{Wi!WWi![Wi!QWi#[WitWi!mWi~O%m!_O%n!_O~P!&pO%mWi%nWi~P!&pOa!bOh!iO!X!kO!f!mOkWilWimWinWioWipWisWizWi{Wi!xWi#gWi%[Wi%_Wi%jWi%kWi%lWi%mWi%nWi%oWi%pWi%zWigWi!TWi!UWi%{Wi!WWi![Wi!QWi#[WitWi!mWi~OV!aO_!aO%q!aO%r!aO%s!aO~P!)nOVWi_Wi%qWi%rWi%sWi~P!)nO!T%dO!U%cOg&VXz&VX~O%z'kO%{'kO~P,eOz'mOg&UX~Og'oO~Oz'pO{'rO!W&XX~Oo0cOv0qOz'pO{'sO!W&XX~P'vO!W'uO~Om!oOn!oOo!rOp!sOkjisjizji{ji!xji#gji%[ji%_ji%zji~Ol!qO~P!.aOlji~P!.aOk0eOl0fOm0dOn0dOo0mOp0nO~Ot'wO~P!/jOV'|Og'}Oo0cOv0qO~P'vOg'}Oz(OO~Og(QO~O!U(SO~Og(TOz(OO!T%dO!U%cO~P%SOk0eOl0fOm0dOn0dOo0mOp0nOgqa!Tqa!Uqa%{qa!Wqa![qa!Qqa#[qatqa!mqa~PEcOV'|Oo0cOv0qO!W&Sa~P'vOz(WO!W&Sa~O!W(XO~Oz(WO!T%dO!U%cO!W&Sa~P%SOV(]Oo0cOv0qO![%}a#g%}a%[%}a%_%}ag%}a{%}a!m%}a%z%}a~P'vOz(^O![%}a#g%}a%[%}a%_%}ag%}a{%}a!m%}a%z%}a~O![(aO~Oz(^O!T%dO!U%cO![%}a~P%SOz(dO!T%dO!U%cO![&Ta~P%SOz(gO{&lX![&lX!m&lX%z&lX~O{(kO![(mO!m(nO%z(jO~OV&OOopOvqO{%hi!x%hi#g%hi%[%hi%_%hi%z%hi~P'vOz(pO{%hi!x%hi#g%hi%[%hi%_%hi%z%hi~O!f&UOh&sa%[&saz&sa#[&sa#g&sa%_&sa#Z&sag&sa~O%[(uO~OV#sOa#tO%uWO~Oz&]O{wa~OopOvqO~P'vOz(^O#g%}a%[%}a%_%}ag%}a{%}a![%}a!m%}a%z%}a~P%SOz(zO#g%hX%[%hX%_%hX%z%hX~O%z#|O#gUi%[Ui%_Ui~O#g&Pa%[&Pa%_&Pan&Pa~P'vOz(}O#g&Pa%[&Pa%_&Pan&Pa~O%uWO#g&ra%[&ra%_&rag&ra~Oz)SO#g&ra%[&ra%_&rag&ra~Og)VO~OV)WOh$WO%uWO~O#Z)XO~O%uWO#g&ta%[&ta%_&ta~Oz)ZO#g&ta%[&ta%_&ta~Oo0cOv0qO#g&pa%[&pa%_&pa{&pa~P'vOz)^O#g&pa%[&pa%_&pa{&pa~OV)`Oa)`O%uWO~O%z)eO~Ot)hO#j)gOP#hiV#hif#hih#hio#his#hiv#hi!P#hi!Q#hi!T#hi!U#hi!X#hi!]#hi!h#hi!r#hi!s#hi!t#hi!{#hi!}#hi#P#hi#R#hi#T#hi#X#hi#Z#hi#^#hi#_#hi#a#hi#c#hi#l#hi#o#hi#s#hi#u#hi#z#hi#}#hi$P#hi%X#hi%o#hi%p#hi%t#hi%u#hi&Z#hi&[#hi&]#hi&^#hi&_#hi&`#hi&a#hi&b#hi&c#hi&d#hi&e#hi&f#hi&g#hi&h#hi&i#hi&j#hi%Z#hi%_#hi~Ot)iOP#kiV#kif#kih#kio#kis#kiv#ki!P#ki!Q#ki!T#ki!U#ki!X#ki!]#ki!h#ki!r#ki!s#ki!t#ki!{#ki!}#ki#P#ki#R#ki#T#ki#X#ki#Z#ki#^#ki#_#ki#a#ki#c#ki#l#ki#o#ki#s#ki#u#ki#z#ki#}#ki$P#ki%X#ki%o#ki%p#ki%t#ki%u#ki&Z#ki&[#ki&]#ki&^#ki&_#ki&`#ki&a#ki&b#ki&c#ki&d#ki&e#ki&f#ki&g#ki&h#ki&i#ki&j#ki%Z#ki%_#ki~OV)kOn&wa~P'vOz)lOn&wa~Oz)lOn&wa~P%SOn)pO~O%Y)tO~Ot)wO#p'WO#q)vOP#niV#nif#nih#nio#nis#niv#ni!P#ni!Q#ni!T#ni!U#ni!X#ni!]#ni!h#ni!r#ni!s#ni!t#ni!{#ni!}#ni#P#ni#R#ni#T#ni#X#ni#Z#ni#^#ni#_#ni#a#ni#c#ni#l#ni#o#ni#s#ni#u#ni#z#ni#}#ni$P#ni%X#ni%o#ni%p#ni%t#ni%u#ni&Z#ni&[#ni&]#ni&^#ni&_#ni&`#ni&a#ni&b#ni&c#ni&d#ni&e#ni&f#ni&g#ni&h#ni&i#ni&j#ni%Z#ni%_#ni~OV)zOo0cOv0qO{$jO~P'vOo0cOv0qO{&xa~P'vOz*OO{&xa~OV*SOa*TOg*WO%q*UO%uWO~O{$jO&{*YO~Oh'_O~Oh!iO{$jO~O%[*_O~O%[*aO%_*aO~OV$}Oa$}Oo0cOv0qOg&Ua~P'vOz*dOg&Ua~Oo0cOv0qO{*gO!W&Xa~P'vOz*hO!W&Xa~Oo0cOv0qOz*hO{*kO!W&Xa~P'vOo0cOv0qOz*hO!W&Xa~P'vOz*hO{*kO!W&Xa~Om0dOn0dOo0mOp0nOgjikjisjizji!Tji!Uji%{ji!Wji{ji![ji#gji%[ji%_ji!Qji#[jitji!mji%zji~Ol0fO~P!NkOlji~P!NkOV'|Og*pOo0cOv0qO~P'vOn*rO~Og*pOz*tO~Og*uO~OV'|Oo0cOv0qO!W&Si~P'vOz*vO!W&Si~O!W*wO~OV(]Oo0cOv0qO![%}i#g%}i%[%}i%_%}ig%}i{%}i!m%}i%z%}i~P'vOz*zO!T%dO!U%cO![&Ti~Oz*}O![%}i#g%}i%[%}i%_%}ig%}i{%}i!m%}i%z%}i~O![+OO~Oa+QOo0cOv0qO![&Ti~P'vOz*zO![&Ti~O![+SO~OV+UOo0cOv0qO{&la![&la!m&la%z&la~P'vOz+VO{&la![&la!m&la%z&la~O!]+YO&n+[O![!nX~O![+^O~O{(kO![+_O~O{(kO![+_O!m+`O~OV&OOopOvqO{%hq!x%hq#g%hq%[%hq%_%hq%z%hq~P'vOz$ri{$ri!x$ri#g$ri%[$ri%_$ri%z$ri~P%SOV&OOopOvqO~P'vOV&OOo0cOv0qO#g%ha%[%ha%_%ha%z%ha~P'vOz+aO#g%ha%[%ha%_%ha%z%ha~Oz$ia#g$ia%[$ia%_$ian$ia~P%SO#g&Pi%[&Pi%_&Pin&Pi~P'vOz+dO#g#Wq%[#Wq%_#Wq~O#[+eOz$va#g$va%[$va%_$vag$va~O%uWO#g&ri%[&ri%_&rig&ri~Oz+gO#g&ri%[&ri%_&rig&ri~OV+iOh$WO%uWO~O%uWO#g&ti%[&ti%_&ti~Oo0cOv0qO#g&pi%[&pi%_&pi{&pi~P'vO{#{Oz#eX!W#eX~Oz+mO!W&uX~O!W+oO~Ot+rO#j)gOP#hqV#hqf#hqh#hqo#hqs#hqv#hq!P#hq!Q#hq!T#hq!U#hq!X#hq!]#hq!h#hq!r#hq!s#hq!t#hq!{#hq!}#hq#P#hq#R#hq#T#hq#X#hq#Z#hq#^#hq#_#hq#a#hq#c#hq#l#hq#o#hq#s#hq#u#hq#z#hq#}#hq$P#hq%X#hq%o#hq%p#hq%t#hq%u#hq&Z#hq&[#hq&]#hq&^#hq&_#hq&`#hq&a#hq&b#hq&c#hq&d#hq&e#hq&f#hq&g#hq&h#hq&i#hq&j#hq%Z#hq%_#hq~On$|az$|a~P%SOV)kOn&wi~P'vOz+yOn&wi~Oz,TO{$jO#[,TO~O#q,VOP#nqV#nqf#nqh#nqo#nqs#nqv#nq!P#nq!Q#nq!T#nq!U#nq!X#nq!]#nq!h#nq!r#nq!s#nq!t#nq!{#nq!}#nq#P#nq#R#nq#T#nq#X#nq#Z#nq#^#nq#_#nq#a#nq#c#nq#l#nq#o#nq#s#nq#u#nq#z#nq#}#nq$P#nq%X#nq%o#nq%p#nq%t#nq%u#nq&Z#nq&[#nq&]#nq&^#nq&_#nq&`#nq&a#nq&b#nq&c#nq&d#nq&e#nq&f#nq&g#nq&h#nq&i#nq&j#nq%Z#nq%_#nq~O#[,WOz%Oa{%Oa~Oo0cOv0qO{&xi~P'vOz,YO{&xi~O{#{O%z,[Og&zXz&zX~O%uWOg&zXz&zX~Oz,`Og&yX~Og,bO~O%Y,eO~O!T%dO!U%cOg&Viz&Vi~OV$}Oa$}Oo0cOv0qOg&Ui~P'vO{,hOz$la!W$la~Oo0cOv0qO{,iOz$la!W$la~P'vOo0cOv0qO{*gO!W&Xi~P'vOz,lO!W&Xi~Oo0cOv0qOz,lO!W&Xi~P'vOz,lO{,oO!W&Xi~Og$hiz$hi!W$hi~P%SOV'|Oo0cOv0qO~P'vOn,qO~OV'|Og,rOo0cOv0qO~P'vOV'|Oo0cOv0qO!W&Sq~P'vOz$gi![$gi#g$gi%[$gi%_$gig$gi{$gi!m$gi%z$gi~P%SOV(]Oo0cOv0qO~P'vOa+QOo0cOv0qO![&Tq~P'vOz,sO![&Tq~O![,tO~OV(]Oo0cOv0qO![%}q#g%}q%[%}q%_%}qg%}q{%}q!m%}q%z%}q~P'vO{,uO~OV+UOo0cOv0qO{&li![&li!m&li%z&li~P'vOz,zO{&li![&li!m&li%z&li~O!]+YO&n+[O![!na~O{(kO![,}O~OV&OOo0cOv0qO#g%hi%[%hi%_%hi%z%hi~P'vOz-OO#g%hi%[%hi%_%hi%z%hi~O%uWO#g&rq%[&rq%_&rqg&rq~Oz-RO#g&rq%[&rq%_&rqg&rq~OV)`Oa)`O%uWO!W&ua~Oz-TO!W&ua~On$|iz$|i~P%SOV)kO~P'vOV)kOn&wq~P'vOt-XOP#myV#myf#myh#myo#mys#myv#my!P#my!Q#my!T#my!U#my!X#my!]#my!h#my!r#my!s#my!t#my!{#my!}#my#P#my#R#my#T#my#X#my#Z#my#^#my#_#my#a#my#c#my#l#my#o#my#s#my#u#my#z#my#}#my$P#my%X#my%o#my%p#my%t#my%u#my&Z#my&[#my&]#my&^#my&_#my&`#my&a#my&b#my&c#my&d#my&e#my&f#my&g#my&h#my&i#my&j#my%Z#my%_#my~O%Z-]O%_-]O~P`O#q-^OP#nyV#nyf#nyh#nyo#nys#nyv#ny!P#ny!Q#ny!T#ny!U#ny!X#ny!]#ny!h#ny!r#ny!s#ny!t#ny!{#ny!}#ny#P#ny#R#ny#T#ny#X#ny#Z#ny#^#ny#_#ny#a#ny#c#ny#l#ny#o#ny#s#ny#u#ny#z#ny#}#ny$P#ny%X#ny%o#ny%p#ny%t#ny%u#ny&Z#ny&[#ny&]#ny&^#ny&_#ny&`#ny&a#ny&b#ny&c#ny&d#ny&e#ny&f#ny&g#ny&h#ny&i#ny&j#ny%Z#ny%_#ny~Oz-aO{$jO#[-aO~Oo0cOv0qO{&xq~P'vOz-dO{&xq~O%z,[Og&zaz&za~O{#{Og&zaz&za~OV*SOa*TO%q*UO%uWOg&ya~Oz-hOg&ya~O$S-lO~OV$}Oa$}Oo0cOv0qO~P'vOo0cOv0qO{-mOz$li!W$li~P'vOo0cOv0qOz$li!W$li~P'vO{-mOz$li!W$li~Oo0cOv0qO{*gO~P'vOo0cOv0qO{*gO!W&Xq~P'vOz-pO!W&Xq~Oo0cOv0qOz-pO!W&Xq~P'vOs-sO!T%dO!U%cOg&Oq!W&Oq![&Oqz&Oq~P!/jOa+QOo0cOv0qO![&Ty~P'vOz$ji![$ji~P%SOa+QOo0cOv0qO~P'vOV+UOo0cOv0qO~P'vOV+UOo0cOv0qO{&lq![&lq!m&lq%z&lq~P'vO{(kO![-xO!m-yO%z-wO~OV&OOo0cOv0qO#g%hq%[%hq%_%hq%z%hq~P'vO%uWO#g&ry%[&ry%_&ryg&ry~OV)`Oa)`O%uWO!W&ui~Ot-}OP#m!RV#m!Rf#m!Rh#m!Ro#m!Rs#m!Rv#m!R!P#m!R!Q#m!R!T#m!R!U#m!R!X#m!R!]#m!R!h#m!R!r#m!R!s#m!R!t#m!R!{#m!R!}#m!R#P#m!R#R#m!R#T#m!R#X#m!R#Z#m!R#^#m!R#_#m!R#a#m!R#c#m!R#l#m!R#o#m!R#s#m!R#u#m!R#z#m!R#}#m!R$P#m!R%X#m!R%o#m!R%p#m!R%t#m!R%u#m!R&Z#m!R&[#m!R&]#m!R&^#m!R&_#m!R&`#m!R&a#m!R&b#m!R&c#m!R&d#m!R&e#m!R&f#m!R&g#m!R&h#m!R&i#m!R&j#m!R%Z#m!R%_#m!R~Oo0cOv0qO{&xy~P'vOV*SOa*TO%q*UO%uWOg&yi~O$S-lO%Z.VO%_.VO~OV.aOh._O!X.^O!].`O!h.YO!s.[O!t.[O%p.XO%uWO&Z]O&[]O&]]O&^]O&_]O&`]O&a]O&b]O~Oo0cOv0qOz$lq!W$lq~P'vO{.fOz$lq!W$lq~Oo0cOv0qO{*gO!W&Xy~P'vOz.gO!W&Xy~Oo0cOv.kO~P'vOs-sO!T%dO!U%cOg&Oy!W&Oy![&Oyz&Oy~P!/jO{(kO![.nO~O{(kO![.nO!m.oO~OV*SOa*TO%q*UO%uWO~Oh.tO!f.rOz$TX#[$TX%j$TXg$TX~Os$TX{$TX!W$TX![$TX~P$-bO%o.vO%p.vOs$UXz$UX{$UX#[$UX%j$UX!W$UXg$UX![$UX~O!h.xO~Oz.|O#[/OO%j.yOs&|X{&|X!W&|Xg&|X~Oa/RO~P$)zOh.tOs&}Xz&}X{&}X#[&}X%j&}X!W&}Xg&}X![&}X~Os/VO{$jO~Oo0cOv0qOz$ly!W$ly~P'vOo0cOv0qO{*gO!W&X!R~P'vOz/ZO!W&X!R~Og&RXs&RX!T&RX!U&RX!W&RX![&RXz&RX~P!/jOs-sO!T%dO!U%cOg&Qa!W&Qa![&Qaz&Qa~O{(kO![/^O~O!f.rOh$[as$[az$[a{$[a#[$[a%j$[a!W$[ag$[a![$[a~O!h/eO~O%o.vO%p.vOs$Uaz$Ua{$Ua#[$Ua%j$Ua!W$Uag$Ua![$Ua~O%j.yOs$Yaz$Ya{$Ya#[$Ya!W$Yag$Ya![$Ya~Os&|a{&|a!W&|ag&|a~P$)nOz/jOs&|a{&|a!W&|ag&|a~O!W/mO~Og/mO~O{/oO~O![/pO~Oo0cOv0qO{*gO!W&X!Z~P'vO{/sO~O%z/tO~P$-bOz/uO#[/OO%j.yOg'PX~Oz/uOg'PX~Og/wO~O!h/xO~O#[/OOs%Saz%Sa{%Sa%j%Sa!W%Sag%Sa![%Sa~O#[/OO%j.yOs%Waz%Wa{%Wa!W%Wag%Wa~Os&|i{&|i!W&|ig&|i~P$)nOz/zO#[/OO%j.yO!['Oa~Og'Pa~P$)nOz0SOg'Pa~Oa0UO!['Oi~P$)zOz0WO!['Oi~Oz0WO#[/OO%j.yO!['Oi~O#[/OO%j.yOg$biz$bi~O%z0ZO~P$-bO#[/OO%j.yOg%Vaz%Va~Og'Pi~P$)nO{0^O~Oa0UO!['Oq~P$)zOz0`O!['Oq~O#[/OO%j.yOz%Ui![%Ui~Oa0UO~P$)zOa0UO!['Oy~P$)zO#[/OO%j.yOg$ciz$ci~O#[/OO%j.yOz%Uq![%Uq~Oz+aO#g%ha%[%ha%_%ha%z%ha~P%SOV&OOo0cOv0qO~P'vOn0hO~Oo0hO~P'vO{0iO~Ot0jO~P!/jO&]&Z&j&h&i&g&f&d&e&c&b&`&a&_&^&[%u~",goto:"!=j'QPPPPPP'RP'Z*s+[+t,_,y-fP.SP'Z.r.r'ZPPP'Z2[PPPPPP2[5PPP5PP7b7k=sPP=v>h>kPP'Z'ZPP>zPP'Z'ZPP'Z'Z'Z'Z'Z?O?w'ZP?zP@QDXGuGyPG|HWH['ZPPPH_Hk'RP'R'RP'RP'RP'RP'RP'R'R'RP'RPP'RPP'RP'RPHqH}IVPI^IdPI^PI^I^PPPI^PKrPK{LVL]KrPI^LfPI^PLmLsPLwM]MzNeLwLwNkNxLwLwLwLw! ^! d! g! l! o! y!!P!!]!!o!!u!#P!#V!#s!#y!$P!$Z!$a!$g!$y!%T!%Z!%a!%k!%q!%w!%}!&T!&Z!&e!&k!&u!&{!'U!'[!'k!'s!'}!(UPPPPPPPPPPP!([!(_!(e!(n!(x!)TPPPPPPPPPPPP!-u!/Z!3^!6oPP!6w!7W!7a!8Y!8P!8c!8i!8l!8o!8r!8z!9jPPPPPPPPPPPPPPPPP!9m!9q!9wP!:]!:a!:m!:v!;S!;j!;m!;p!;v!;|!_![!]Do!]!^Es!^!_FZ!_!`Gk!`!aHX!a!b%T!b!cIf!c!dJU!d!eK^!e!hJU!h!i!#f!i!tJU!t!u!,|!u!wJU!w!x!.t!x!}JU!}#O!0S#O#P&o#P#Q!0j#Q#R!1Q#R#SJU#S#T%T#T#UJU#U#VK^#V#YJU#Y#Z!#f#Z#fJU#f#g!,|#g#iJU#i#j!.t#j#oJU#o#p!1n#p#q!1s#q#r!2a#r#s!2f#s$g%T$g;'SJU;'S;=`KW<%lOJU`%YT&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T`%lP;=`<%l%To%v]&n`%c_OX%TXY%oY[%T[]%o]p%Tpq%oq#O%T#O#P&o#P#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To&tX&n`OY%TYZ%oZ]%T]^%o^#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc'f[&n`O!_%T!_!`([!`#T%T#T#U(r#U#f%T#f#g(r#g#h(r#h#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc(cTmR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc(yT!mR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk)aV&n`&[ZOr%Trs)vs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk){V&n`Or%Trs*bs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk*iT&n`&^ZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To+PZS_&n`OY*xYZ%TZ]*x]^%T^#o*x#o#p+r#p#q*x#q#r+r#r;'S*x;'S;=`,^<%lO*x_+wTS_OY+rZ]+r^;'S+r;'S;=`,W<%lO+r_,ZP;=`<%l+ro,aP;=`<%l*xj,kV%rQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj-XT!xY&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj-oV%lQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk.]V&n`&ZZOw%Twx.rx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk.wV&n`Ow%Twx/^x#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk/eT&n`&]ZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk/{ThZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc0cTgR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk0yXVZ&n`Oz%Tz{1f{!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk1mVaR&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk2ZV%oZ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc2wTzR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To3_W%pZ&n`O!_%T!_!`-Q!`!a3w!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Td4OT&{S&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk4fX!fQ&n`O!O%T!O!P5R!P!Q%T!Q![6T![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk5WV&n`O!O%T!O!P5m!P#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk5tT!rZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti6[a!hX&n`O!Q%T!Q![6T![!g%T!g!h7a!h!l%T!l!m9s!m#R%T#R#S6T#S#X%T#X#Y7a#Y#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti7fZ&n`O{%T{|8X|}%T}!O8X!O!Q%T!Q![8s![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti8^V&n`O!Q%T!Q![8s![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti8z]!hX&n`O!Q%T!Q![8s![!l%T!l!m9s!m#R%T#R#S8s#S#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti9zT!hX&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk:bX%qR&n`O!P%T!P!Q:}!Q!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj;UV%sQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti;ro!hX&n`O!O%T!O!P=s!P!Q%T!Q![>_![!d%T!d!e?q!e!g%T!g!h7a!h!l%T!l!m9s!m!q%T!q!rA]!r!z%T!z!{Bq!{#R%T#R#S>_#S#U%T#U#V?q#V#X%T#X#Y7a#Y#^%T#^#_9s#_#c%T#c#dA]#d#l%T#l#mBq#m#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti=xV&n`O!Q%T!Q![6T![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti>fc!hX&n`O!O%T!O!P=s!P!Q%T!Q![>_![!g%T!g!h7a!h!l%T!l!m9s!m#R%T#R#S>_#S#X%T#X#Y7a#Y#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti?vY&n`O!Q%T!Q!R@f!R!S@f!S#R%T#R#S@f#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti@mY!hX&n`O!Q%T!Q!R@f!R!S@f!S#R%T#R#S@f#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiAbX&n`O!Q%T!Q!YA}!Y#R%T#R#SA}#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiBUX!hX&n`O!Q%T!Q!YA}!Y#R%T#R#SA}#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiBv]&n`O!Q%T!Q![Co![!c%T!c!iCo!i#R%T#R#SCo#S#T%T#T#ZCo#Z#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiCv]!hX&n`O!Q%T!Q![Co![!c%T!c!iCo!i#R%T#R#SCo#S#T%T#T#ZCo#Z#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%ToDvV{_&n`O!_%T!_!`E]!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TcEdT%{R&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkEzT#gZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkFbXmR&n`O!^%T!^!_F}!_!`([!`!a([!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TjGUV%mQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkGrV%zZ&n`O!_%T!_!`([!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkH`WmR&n`O!_%T!_!`([!`!aHx!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TjIPV%nQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkIoV_Q#}P&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%ToJ_]&n`&YS%uZO!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUoKZP;=`<%lJUoKge&n`&YS%uZOr%Trs)Ysw%Twx.Ux!Q%T!Q![JU![!c%T!c!tJU!t!uLx!u!}JU!}#R%T#R#SJU#S#T%T#T#fJU#f#gLx#g#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUoMRa&n`&YS%uZOr%TrsNWsw%Twx! vx!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUkN_V&n`&`ZOr%TrsNts#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkNyV&n`Or%Trs! `s#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk! gT&n`&bZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk! }V&n`&_ZOw%Twx!!dx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!!iV&n`Ow%Twx!#Ox#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!#VT&n`&aZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!#oe&n`&YS%uZOr%Trs!%Qsw%Twx!&px!Q%T!Q![JU![!c%T!c!tJU!t!u!(`!u!}JU!}#R%T#R#SJU#S#T%T#T#fJU#f#g!(`#g#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!%XV&n`&dZOr%Trs!%ns#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!%sV&n`Or%Trs!&Ys#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!&aT&n`&fZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!&wV&n`&cZOw%Twx!'^x#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!'cV&n`Ow%Twx!'xx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!(PT&n`&eZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!(ia&n`&YS%uZOr%Trs!)nsw%Twx!+^x!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!)uV&n`&hZOr%Trs!*[s#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!*aV&n`Or%Trs!*vs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!*}T&n`&jZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!+eV&n`&gZOw%Twx!+zx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!,PV&n`Ow%Twx!,fx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!,mT&n`&iZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!-Vi&n`&YS%uZOr%TrsNWsw%Twx! vx!Q%T!Q![JU![!c%T!c!dJU!d!eLx!e!hJU!h!i!(`!i!}JU!}#R%T#R#SJU#S#T%T#T#UJU#U#VLx#V#YJU#Y#Z!(`#Z#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUo!.}a&n`&YS%uZOr%Trs)Ysw%Twx.Ux!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!0ZT!XZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc!0qT!WR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj!1XV%kQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T~!1sO!]~k!1zV%jR&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T~!2fO![~i!2mT%tX&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T",tokenizers:[MZ,GZ,CZ,DZ,0,1,2,3,4],topRules:{Script:[0,5]},specialized:[{term:221,get:O=>NZ[O]||-1}],tokenPrec:7668});var Lm=new Tt,Dm=new Set(["Script","Body","FunctionDefinition","ClassDefinition","LambdaExpression","ForStatement","MatchClause"]);function Cs(O){return(e,t,i)=>{if(i)return!1;let r=e.node.getChild("VariableName");return r&&t(r,O),!0}}var FZ={FunctionDefinition:Cs("function"),ClassDefinition:Cs("class"),ForStatement(O,e,t){if(t){for(let i=O.node.firstChild;i;i=i.nextSibling)if(i.name=="VariableName")e(i,"variable");else if(i.name=="in")break}},ImportStatement(O,e){var t,i;let{node:r}=O,n=((t=r.firstChild)===null||t===void 0?void 0:t.name)=="from";for(let s=r.getChild("import");s;s=s.nextSibling)s.name=="VariableName"&&((i=s.nextSibling)===null||i===void 0?void 0:i.name)!="as"&&e(s,n?"variable":"namespace")},AssignStatement(O,e){for(let t=O.node.firstChild;t;t=t.nextSibling)if(t.name=="VariableName")e(t,"variable");else if(t.name==":"||t.name=="AssignOp")break},ParamList(O,e){for(let t=null,i=O.node.firstChild;i;i=i.nextSibling)i.name=="VariableName"&&(!t||!/\*|AssignOp/.test(t.name))&&e(i,"variable"),t=i},CapturePattern:Cs("variable"),AsPattern:Cs("variable"),__proto__:null};function Im(O,e){let t=Lm.get(e);if(t)return t;let i=[],r=!0;function n(s,a){let o=O.sliceString(s.from,s.to);i.push({label:o,type:a})}return e.cursor(C.IncludeAnonymous).iterate(s=>{if(s.name){let a=FZ[s.name];if(a&&a(s,n,r)||!r&&Dm.has(s.name))return!1;r=!1}else if(s.to-s.from>8192){for(let a of Im(O,s.node))i.push(a);return!1}}),Lm.set(e,i),i}var Mm=/^[\w\xa1-\uffff][\w\d\xa1-\uffff]*$/,Bm=["String","FormatString","Comment","PropertyName"];function HZ(O){let e=U(O.state).resolveInner(O.pos,-1);if(Bm.indexOf(e.name)>-1)return null;let t=e.name=="VariableName"||e.to-e.from<20&&Mm.test(O.state.sliceDoc(e.from,e.to));if(!t&&!O.explicit)return null;let i=[];for(let r=e;r;r=r.parent)Dm.has(r.name)&&(i=i.concat(Im(O.state.doc,r)));return{options:i,from:t?e.from:O.pos,validFor:Mm}}var KZ=["__annotations__","__builtins__","__debug__","__doc__","__import__","__name__","__loader__","__package__","__spec__","False","None","True"].map(O=>({label:O,type:"constant"})).concat(["ArithmeticError","AssertionError","AttributeError","BaseException","BlockingIOError","BrokenPipeError","BufferError","BytesWarning","ChildProcessError","ConnectionAbortedError","ConnectionError","ConnectionRefusedError","ConnectionResetError","DeprecationWarning","EOFError","Ellipsis","EncodingWarning","EnvironmentError","Exception","FileExistsError","FileNotFoundError","FloatingPointError","FutureWarning","GeneratorExit","IOError","ImportError","ImportWarning","IndentationError","IndexError","InterruptedError","IsADirectoryError","KeyError","KeyboardInterrupt","LookupError","MemoryError","ModuleNotFoundError","NameError","NotADirectoryError","NotImplemented","NotImplementedError","OSError","OverflowError","PendingDeprecationWarning","PermissionError","ProcessLookupError","RecursionError","ReferenceError","ResourceWarning","RuntimeError","RuntimeWarning","StopAsyncIteration","StopIteration","SyntaxError","SyntaxWarning","SystemError","SystemExit","TabError","TimeoutError","TypeError","UnboundLocalError","UnicodeDecodeError","UnicodeEncodeError","UnicodeError","UnicodeTranslateError","UnicodeWarning","UserWarning","ValueError","Warning","ZeroDivisionError"].map(O=>({label:O,type:"type"}))).concat(["bool","bytearray","bytes","classmethod","complex","float","frozenset","int","list","map","memoryview","object","range","set","staticmethod","str","super","tuple","type"].map(O=>({label:O,type:"class"}))).concat(["abs","aiter","all","anext","any","ascii","bin","breakpoint","callable","chr","compile","delattr","dict","dir","divmod","enumerate","eval","exec","exit","filter","format","getattr","globals","hasattr","hash","help","hex","id","input","isinstance","issubclass","iter","len","license","locals","max","min","next","oct","open","ord","pow","print","property","quit","repr","reversed","round","setattr","slice","sorted","sum","vars","zip"].map(O=>({label:O,type:"function"}))),JZ=[W("def ${name}(${params}):\n ${}",{label:"def",detail:"function",type:"keyword"}),W("for ${name} in ${collection}:\n ${}",{label:"for",detail:"loop",type:"keyword"}),W("while ${}:\n ${}",{label:"while",detail:"loop",type:"keyword"}),W("try:\n ${}\nexcept ${error}:\n ${}",{label:"try",detail:"/ except block",type:"keyword"}),W(`if \${}: + +`,{label:"if",detail:"block",type:"keyword"}),W("if ${}:\n ${}\nelse:\n ${}",{label:"if",detail:"/ else block",type:"keyword"}),W("class ${name}:\n def __init__(self, ${params}):\n ${}",{label:"class",detail:"definition",type:"keyword"}),W("import ${module}",{label:"import",detail:"statement",type:"keyword"}),W("from ${module} import ${names}",{label:"from",detail:"import",type:"keyword"})],ev=cO(Bm,zt(KZ.concat(JZ)));function Dc(O){let{node:e,pos:t}=O,i=O.lineIndent(t,-1),r=null;for(;;){let n=e.childBefore(t);if(n)if(n.name=="Comment")t=n.from;else if(n.name=="Body"||n.name=="MatchBody")O.baseIndentFor(n)+O.unit<=i&&(r=n),e=n;else if(n.name=="MatchClause")e=n;else if(n.type.is("Statement"))e=n;else break;else break}return r}function Ic(O,e){let t=O.baseIndentFor(e),i=O.lineAt(O.pos,-1),r=i.from+i.text.length;return/^\s*($|#)/.test(i.text)&&O.node.tot?null:t+O.unit}var Bc=ne.define({name:"python",parser:Am.configure({props:[se.add({Body:O=>{var e;let t=/^\s*(#|$)/.test(O.textAfter)&&Dc(O)||O.node;return(e=Ic(O,t))!==null&&e!==void 0?e:O.continue()},MatchBody:O=>{var e;let t=Dc(O);return(e=Ic(O,t||O.node))!==null&&e!==void 0?e:O.continue()},IfStatement:O=>/^\s*(else:|elif )/.test(O.textAfter)?O.baseIndent:O.continue(),"ForStatement WhileStatement":O=>/^\s*else:/.test(O.textAfter)?O.baseIndent:O.continue(),TryStatement:O=>/^\s*(except[ :]|finally:|else:)/.test(O.textAfter)?O.baseIndent:O.continue(),MatchStatement:O=>/^\s*case /.test(O.textAfter)?O.baseIndent+O.unit:O.continue(),"TupleExpression ComprehensionExpression ParamList ArgList ParenthesizedExpression":be({closing:")"}),"DictionaryExpression DictionaryComprehensionExpression SetExpression SetComprehensionExpression":be({closing:"}"}),"ArrayExpression ArrayComprehensionExpression":be({closing:"]"}),MemberExpression:O=>O.baseIndent+O.unit,"String FormatString":()=>null,Script:O=>{var e;let t=Dc(O);return(e=t&&Ic(O,t))!==null&&e!==void 0?e:O.continue()}}),te.add({"ArrayExpression DictionaryExpression SetExpression TupleExpression":me,Body:(O,e)=>({from:O.from+1,to:O.to-(O.to==e.doc.length?0:1)}),"String FormatString":(O,e)=>({from:e.doc.lineAt(O.from).to,to:O.to})})]}),languageData:{closeBrackets:{brackets:["(","[","{","'",'"',"'''",'"""'],stringPrefixes:["f","fr","rf","r","u","b","br","rb","F","FR","RF","R","U","B","BR","RB"]},commentTokens:{line:"#"},indentOnInput:/^\s*([\}\]\)]|else:|elif |except |finally:|case\s+[^:]*:?)$/}});function Nm(){return new J(Bc,[Bc.data.of({autocomplete:HZ}),Bc.data.of({autocomplete:ev})])}var tv=36,Fm=1,Ov=2,yi=3,Nc=4,iv=5,rv=6,nv=7,sv=8,av=9,ov=10,lv=11,cv=12,hv=13,fv=14,dv=15,uv=16,Qv=17,Hm=18,$v=19,ng=20,sg=21,Km=22,pv=23,mv=24;function Hc(O){return O>=65&&O<=90||O>=97&&O<=122||O>=48&&O<=57}function gv(O){return O>=48&&O<=57||O>=97&&O<=102||O>=65&&O<=70}function CO(O,e,t){for(let i=!1;;){if(O.next<0)return;if(O.next==e&&!i){O.advance();return}i=t&&!i&&O.next==92,O.advance()}}function Pv(O,e){e:for(;;){if(O.next<0)return;if(O.next==36){O.advance();for(let t=0;t)".charCodeAt(t);for(;;){if(O.next<0)return;if(O.next==i&&O.peek(1)==39){O.advance(2);return}O.advance()}}function Kc(O,e){for(;!(O.next!=95&&!Hc(O.next));)e!=null&&(e+=String.fromCharCode(O.next)),O.advance();return e}function Xv(O){if(O.next==39||O.next==34||O.next==96){let e=O.next;O.advance(),CO(O,e,!1)}else Kc(O)}function Jm(O,e){for(;O.next==48||O.next==49;)O.advance();e&&O.next==e&&O.advance()}function eg(O,e){for(;;){if(O.next==46){if(e)break;e=!0}else if(O.next<48||O.next>57)break;O.advance()}if(O.next==69||O.next==101)for(O.advance(),(O.next==43||O.next==45)&&O.advance();O.next>=48&&O.next<=57;)O.advance()}function tg(O){for(;!(O.next<0||O.next==10);)O.advance()}function jO(O,e){for(let t=0;t!=&|~^/",specialVar:"?",identifierQuotes:'"',caseInsensitiveIdentifiers:!1,words:ag(EO,GO)};function Tv(O,e,t,i){let r={};for(let n in Jc)r[n]=(O.hasOwnProperty(n)?O:Jc)[n];return e&&(r.words=ag(e,t||"",i)),r}function og(O){return new z(e=>{var t;let{next:i}=e;if(e.advance(),jO(i,Fc)){for(;jO(e.next,Fc);)e.advance();e.acceptToken(tv)}else if(i==36&&O.doubleDollarQuotedStrings){let r=Kc(e,"");e.next==36&&(e.advance(),Pv(e,r),e.acceptToken(yi))}else if(i==39||i==34&&O.doubleQuotedStrings)CO(e,i,O.backslashEscapes),e.acceptToken(yi);else if(i==35&&O.hashComments||i==47&&e.next==47&&O.slashComments)tg(e),e.acceptToken(Fm);else if(i==45&&e.next==45&&(!O.spaceAfterDashes||e.peek(1)==32))tg(e),e.acceptToken(Fm);else if(i==47&&e.next==42){e.advance();for(let r=1;;){let n=e.next;if(e.next<0)break;if(e.advance(),n==42&&e.next==47){if(r--,e.advance(),!r)break}else n==47&&e.next==42&&(r++,e.advance())}e.acceptToken(Ov)}else if((i==101||i==69)&&e.next==39)e.advance(),CO(e,39,!0),e.acceptToken(yi);else if((i==110||i==78)&&e.next==39&&O.charSetCasts)e.advance(),CO(e,39,O.backslashEscapes),e.acceptToken(yi);else if(i==95&&O.charSetCasts)for(let r=0;;r++){if(e.next==39&&r>1){e.advance(),CO(e,39,O.backslashEscapes),e.acceptToken(yi);break}if(!Hc(e.next))break;e.advance()}else if(O.plsqlQuotingMechanism&&(i==113||i==81)&&e.next==39&&e.peek(1)>0&&!jO(e.peek(1),Fc)){let r=e.peek(1);e.advance(2),Sv(e,r),e.acceptToken(yi)}else if(jO(i,O.identifierQuotes)){let r=i==91?93:i;CO(e,r,!1),e.acceptToken($v)}else if(i==40)e.acceptToken(nv);else if(i==41)e.acceptToken(sv);else if(i==123)e.acceptToken(av);else if(i==125)e.acceptToken(ov);else if(i==91)e.acceptToken(lv);else if(i==93)e.acceptToken(cv);else if(i==59)e.acceptToken(hv);else if(O.unquotedBitLiterals&&i==48&&e.next==98)e.advance(),Jm(e),e.acceptToken(Km);else if((i==98||i==66)&&(e.next==39||e.next==34)){let r=e.next;e.advance(),O.treatBitsAsBytes?(CO(e,r,O.backslashEscapes),e.acceptToken(pv)):(Jm(e,r),e.acceptToken(Km))}else if(i==48&&(e.next==120||e.next==88)||(i==120||i==88)&&e.next==39){let r=e.next==39;for(e.advance();gv(e.next);)e.advance();r&&e.next==39&&e.advance(),e.acceptToken(Nc)}else if(i==46&&e.next>=48&&e.next<=57)eg(e,!0),e.acceptToken(Nc);else if(i==46)e.acceptToken(fv);else if(i>=48&&i<=57)eg(e,!1),e.acceptToken(Nc);else if(jO(i,O.operatorChars)){for(;jO(e.next,O.operatorChars);)e.advance();e.acceptToken(dv)}else if(jO(i,O.specialVar))e.next==i&&e.advance(),Xv(e),e.acceptToken(Qv);else if(i==58||i==44)e.acceptToken(uv);else if(Hc(i)){let r=Kc(e,String.fromCharCode(i));e.acceptToken(e.next==46||e.peek(-r.length-1)==46?Hm:(t=O.words[r.toLowerCase()])!==null&&t!==void 0?t:Hm)}})}var lg=og(Jc),bv=Oe.deserialize({version:14,states:"%vQ]QQOOO#wQRO'#DSO$OQQO'#CwO%eQQO'#CxO%lQQO'#CyO%sQQO'#CzOOQQ'#DS'#DSOOQQ'#C}'#C}O'UQRO'#C{OOQQ'#Cv'#CvOOQQ'#C|'#C|Q]QQOOQOQQOOO'`QQO'#DOO(xQRO,59cO)PQQO,59cO)UQQO'#DSOOQQ,59d,59dO)cQQO,59dOOQQ,59e,59eO)jQQO,59eOOQQ,59f,59fO)qQQO,59fOOQQ-E6{-E6{OOQQ,59b,59bOOQQ-E6z-E6zOOQQ,59j,59jOOQQ-E6|-E6|O+VQRO1G.}O+^QQO,59cOOQQ1G/O1G/OOOQQ1G/P1G/POOQQ1G/Q1G/QP+kQQO'#C}O+rQQO1G.}O)PQQO,59cO,PQQO'#Cw",stateData:",[~OtOSPOSQOS~ORUOSUOTUOUUOVROXSOZTO]XO^QO_UO`UOaPObPOcPOdUOeUOfUOgUOhUO~O^]ORvXSvXTvXUvXVvXXvXZvX]vX_vX`vXavXbvXcvXdvXevXfvXgvXhvX~OsvX~P!jOa_Ob_Oc_O~ORUOSUOTUOUUOVROXSOZTO^tO_UO`UOa`Ob`Oc`OdUOeUOfUOgUOhUO~OWaO~P$ZOYcO~P$ZO[eO~P$ZORUOSUOTUOUUOVROXSOZTO^QO_UO`UOaPObPOcPOdUOeUOfUOgUOhUO~O]hOsoX~P%zOajObjOcjO~O^]ORkaSkaTkaUkaVkaXkaZka]ka_ka`kaakabkackadkaekafkagkahka~Oska~P'kO^]O~OWvXYvX[vX~P!jOWnO~P$ZOYoO~P$ZO[pO~P$ZO^]ORkiSkiTkiUkiVkiXkiZki]ki_ki`kiakibkickidkiekifkigkihki~Oski~P)xOWkaYka[ka~P'kO]hO~P$ZOWkiYki[ki~P)xOasObsOcsO~O",goto:"#hwPPPPPPPPPPPPPPPPPPPPPPPPPPx||||!Y!^!d!xPPP#[TYOZeUORSTWZbdfqT[OZQZORiZSWOZQbRQdSQfTZgWbdfqQ^PWk^lmrQl_Qm`RrseVORSTWZbdfq",nodeNames:"\u26A0 LineComment BlockComment String Number Bool Null ( ) { } [ ] ; . Operator Punctuation SpecialVar Identifier QuotedIdentifier Keyword Type Bits Bytes Builtin Script Statement CompositeIdentifier Parens Braces Brackets Statement",maxTerm:38,nodeProps:[["isolate",-4,1,2,3,19,""]],skippedNodes:[0,1,2],repeatNodeCount:3,tokenData:"RORO",tokenizers:[0,lg],topRules:{Script:[0,25]},tokenPrec:0});function eh(O){let e=O.cursor().moveTo(O.from,-1);for(;/Comment/.test(e.name);)e.moveTo(e.from,-1);return e.node}function Wr(O,e){let t=O.sliceString(e.from,e.to),i=/^([`'"\[])(.*)([`'"\]])$/.exec(t);return i?i[2]:t}function Gs(O){return O&&(O.name=="Identifier"||O.name=="QuotedIdentifier")}function yv(O,e){if(e.name=="CompositeIdentifier"){let t=[];for(let i=e.firstChild;i;i=i.nextSibling)Gs(i)&&t.push(Wr(O,i));return t}return[Wr(O,e)]}function Og(O,e){for(let t=[];;){if(!e||e.name!=".")return t;let i=eh(e);if(!Gs(i))return t;t.unshift(Wr(O,i)),e=eh(i)}}function xv(O,e){let t=U(O).resolveInner(e,-1),i=wv(O.doc,t);return t.name=="Identifier"||t.name=="QuotedIdentifier"||t.name=="Keyword"?{from:t.from,quoted:t.name=="QuotedIdentifier"?O.doc.sliceString(t.from,t.from+1):null,parents:Og(O.doc,eh(t)),aliases:i}:t.name=="."?{from:e,quoted:null,parents:Og(O.doc,t),aliases:i}:{from:e,quoted:null,parents:[],empty:!0,aliases:i}}var kv=new Set("where group having order union intersect except all distinct limit offset fetch for".split(" "));function wv(O,e){let t;for(let r=e;!t;r=r.parent){if(!r)return null;r.name=="Statement"&&(t=r)}let i=null;for(let r=t.firstChild,n=!1,s=null;r;r=r.nextSibling){let a=r.name=="Keyword"?O.sliceString(r.from,r.to).toLowerCase():null,o=null;if(!n)n=a=="from";else if(a=="as"&&s&&Gs(r.nextSibling))o=Wr(O,r.nextSibling);else{if(a&&kv.has(a))break;s&&Gs(r)&&(o=Wr(O,r))}o&&(i||(i=Object.create(null)),i[o]=yv(O,s)),s=/Identifier$/.test(r.name)?r:null}return i}function Zv(O,e,t){return t.map(i=>({...i,label:i.label[0]==O?i.label:O+i.label+e,apply:void 0}))}var vv=/^\w*$/,Yv=/^[`'"\[]?\w*[`'"\]]?$/;function ig(O){return O.self&&typeof O.self.label=="string"}var th=class O{constructor(e,t){this.idQuote=e,this.idCaseInsensitive=t,this.list=[],this.children=void 0}child(e){let t=this.children||(this.children=Object.create(null)),i=t[e];return i||(e&&!this.list.some(r=>r.label==e)&&this.list.push(rg(e,"type",this.idQuote,this.idCaseInsensitive)),t[e]=new O(this.idQuote,this.idCaseInsensitive))}maybeChild(e){return this.children?this.children[e]:null}addCompletion(e){let t=this.list.findIndex(i=>i.label==e.label);t>-1?this.list[t]=e:this.list.push(e)}addCompletions(e){for(let t of e)this.addCompletion(typeof t=="string"?rg(t,"property",this.idQuote,this.idCaseInsensitive):t)}addNamespace(e){Array.isArray(e)?this.addCompletions(e):ig(e)?this.addNamespace(e.children):this.addNamespaceObject(e)}addNamespaceObject(e){for(let t of Object.keys(e)){let i=e[t],r=null,n=t.replace(/\\?\./g,a=>a=="."?"\0":a).split("\0"),s=this;ig(i)&&(r=i.self,i=i.children);for(let a=0;a{let{parents:h,from:f,quoted:u,empty:Q,aliases:$}=xv(c.state,c.pos);if(Q&&!c.explicit)return null;$&&h.length==1&&(h=$[h[0]]||h);let p=o;for(let g of h){for(;!p.children||!p.children[g];)if(p==o&&l)p=l;else if(p==l&&i)p=p.child(i);else return null;let P=p.maybeChild(g);if(!P)return null;p=P}let m=p.list;if(p==o&&$&&(m=m.concat(Object.keys($).map(g=>({label:g,type:"constant"})))),u){let g=u[0],P=cg(g),y=c.state.sliceDoc(c.pos,c.pos+1)==P;return{from:f,to:y?c.pos+1:void 0,options:Zv(g,P,m),validFor:Yv}}else return{from:f,options:m,validFor:vv}}}function Rv(O){return O==sg?"type":O==ng?"keyword":"variable"}function Vv(O,e,t){let i=Object.keys(O).map(r=>t(e?r.toUpperCase():r,Rv(O[r])));return cO(["QuotedIdentifier","String","LineComment","BlockComment","."],zt(i))}var qv=bv.configure({props:[se.add({Statement:le()}),te.add({Statement(O,e){return{from:Math.min(O.from+100,e.doc.lineAt(O.from).to),to:O.to}},BlockComment(O){return{from:O.from+2,to:O.to-2}}}),F({Keyword:d.keyword,Type:d.typeName,Builtin:d.standard(d.name),Bits:d.number,Bytes:d.string,Bool:d.bool,Null:d.null,Number:d.number,String:d.string,Identifier:d.name,QuotedIdentifier:d.special(d.string),SpecialVar:d.special(d.name),LineComment:d.lineComment,BlockComment:d.blockComment,Operator:d.operator,"Semi Punctuation":d.punctuation,"( )":d.paren,"{ }":d.brace,"[ ]":d.squareBracket})]}),wt=class O{constructor(e,t,i){this.dialect=e,this.language=t,this.spec=i}get extension(){return this.language.extension}configureLanguage(e,t){return new O(this.dialect,this.language.configure(e,t),this.spec)}static define(e){let t=Tv(e,e.keywords,e.types,e.builtin),i=ne.define({name:"sql",parser:qv.configure({tokenizers:[{from:lg,to:og(t)}]}),languageData:{commentTokens:{line:"--",block:{open:"/*",close:"*/"}},closeBrackets:{brackets:["(","[","{","'",'"',"`"]}}});return new O(t,i,e)}};function zv(O,e){return{label:O,type:e,boost:-1}}function Uv(O,e=!1,t){return Vv(O.dialect.words,e,t||zv)}function Wv(O){return O.schema?_v(O.schema,O.tables,O.schemas,O.defaultTable,O.defaultSchema,O.dialect||Oh):()=>null}function jv(O){return O.schema?(O.dialect||Oh).language.data.of({autocomplete:Wv(O)}):[]}function hg(O={}){let e=O.dialect||Oh;return new J(e.language,[jv(O),e.language.data.of({autocomplete:Uv(e,O.upperCaseKeywords,O.keywordCompletion)})])}var Oh=wt.define({}),q5=wt.define({charSetCasts:!0,doubleDollarQuotedStrings:!0,operatorChars:"+-*/<>=~!@#%^&|`?",specialVar:"",keywords:EO+"abort abs absent access according ada admin aggregate alias also always analyse analyze array_agg array_max_cardinality asensitive assert assignment asymmetric atomic attach attribute attributes avg backward base64 begin_frame begin_partition bernoulli bit_length blocked bom cache called cardinality catalog_name ceil ceiling chain char_length character_length character_set_catalog character_set_name character_set_schema characteristics characters checkpoint class class_origin cluster coalesce cobol collation_catalog collation_name collation_schema collect column_name columns command_function command_function_code comment comments committed concurrently condition_number configuration conflict connection_name constant constraint_catalog constraint_name constraint_schema contains content control conversion convert copy corr cost covar_pop covar_samp csv cume_dist current_catalog current_row current_schema cursor_name database datalink datatype datetime_interval_code datetime_interval_precision db debug defaults defined definer degree delimiter delimiters dense_rank depends derived detach detail dictionary disable discard dispatch dlnewcopy dlpreviouscopy dlurlcomplete dlurlcompleteonly dlurlcompletewrite dlurlpath dlurlpathonly dlurlpathwrite dlurlscheme dlurlserver dlvalue document dump dynamic_function dynamic_function_code element elsif empty enable encoding encrypted end_frame end_partition endexec enforced enum errcode error event every exclude excluding exclusive exp explain expression extension extract family file filter final first_value flag floor following force foreach fortran forward frame_row freeze fs functions fusion generated granted greatest groups handler header hex hierarchy hint id ignore ilike immediately immutable implementation implicit import include including increment indent index indexes info inherit inherits inline insensitive instance instantiable instead integrity intersection invoker isnull key_member key_type label lag last_value lead leakproof least length library like_regex link listen ln load location lock locked log logged lower mapping matched materialized max max_cardinality maxvalue member merge message message_length message_octet_length message_text min minvalue mod mode more move multiset mumps name namespace nfc nfd nfkc nfkd nil normalize normalized nothing notice notify notnull nowait nth_value ntile nullable nullif nulls number occurrences_regex octet_length octets off offset oids operator options ordering others over overlay overriding owned owner parallel parameter_mode parameter_name parameter_ordinal_position parameter_specific_catalog parameter_specific_name parameter_specific_schema parser partition pascal passing passthrough password percent percent_rank percentile_cont percentile_disc perform period permission pg_context pg_datatype_name pg_exception_context pg_exception_detail pg_exception_hint placing plans pli policy portion position position_regex power precedes preceding prepared print_strict_params procedural procedures program publication query quote raise range rank reassign recheck recovery refresh regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy regr_syy reindex rename repeatable replace replica requiring reset respect restart restore result_oid returned_cardinality returned_length returned_octet_length returned_sqlstate returning reverse routine_catalog routine_name routine_schema routines row_count row_number rowtype rule scale schema_name schemas scope scope_catalog scope_name scope_schema security selective self sensitive sequence sequences serializable server server_name setof share show simple skip slice snapshot source specific_name sqlcode sqlerror sqrt stable stacked standalone statement statistics stddev_pop stddev_samp stdin stdout storage strict strip structure style subclass_origin submultiset subscription substring substring_regex succeeds sum symmetric sysid system system_time table_name tables tablesample tablespace temp template ties token top_level_count transaction_active transactions_committed transactions_rolled_back transform transforms translate translate_regex trigger_catalog trigger_name trigger_schema trim trim_array truncate trusted type types uescape unbounded uncommitted unencrypted unlink unlisten unlogged unnamed untyped upper uri use_column use_variable user_defined_type_catalog user_defined_type_code user_defined_type_name user_defined_type_schema vacuum valid validate validator value_of var_pop var_samp varbinary variable_conflict variadic verbose version versioning views volatile warning whitespace width_bucket window within wrapper xmlagg xmlattributes xmlbinary xmlcast xmlcomment xmlconcat xmldeclaration xmldocument xmlelement xmlexists xmlforest xmliterate xmlnamespaces xmlparse xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltext xmlvalidate yes",types:GO+"bigint int8 bigserial serial8 varbit bool box bytea cidr circle precision float8 inet int4 json jsonb line lseg macaddr macaddr8 money numeric pg_lsn point polygon float4 int2 smallserial serial2 serial serial4 text timetz timestamptz tsquery tsvector txid_snapshot uuid xml"}),fg="accessible algorithm analyze asensitive authors auto_increment autocommit avg avg_row_length binlog btree cache catalog_name chain change changed checkpoint checksum class_origin client_statistics coalesce code collations columns comment committed completion concurrent consistent contains contributors convert database databases day_hour day_microsecond day_minute day_second delay_key_write delayed delimiter des_key_file dev_pop dev_samp deviance directory disable discard distinctrow div dual dumpfile enable enclosed ends engine engines enum errors escaped even event events every explain extended fast field fields flush force found_rows fulltext grants handler hash high_priority hosts hour_microsecond hour_minute hour_second ignore ignore_server_ids import index index_statistics infile innodb insensitive insert_method install invoker iterate keys kill linear lines list load lock logs low_priority master master_heartbeat_period master_ssl_verify_server_cert masters max max_rows maxvalue message_text middleint migrate min min_rows minute_microsecond minute_second mod mode modify mutex mysql_errno no_write_to_binlog offline offset one online optimize optionally outfile pack_keys parser partition partitions password phase plugin plugins prev processlist profile profiles purge query quick range read_write rebuild recover regexp relaylog remove rename reorganize repair repeatable replace require resume rlike row_format rtree schedule schema_name schemas second_microsecond security sensitive separator serializable server share show slave slow snapshot soname spatial sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result ssl starting starts std stddev stddev_pop stddev_samp storage straight_join subclass_origin sum suspend table_name table_statistics tables tablespace terminated triggers truncate uncommitted uninstall unlock upgrade use use_frm user_resources user_statistics utc_date utc_time utc_timestamp variables views warnings xa xor year_month zerofill",dg=GO+"bool blob long longblob longtext medium mediumblob mediumint mediumtext tinyblob tinyint tinytext text bigint int1 int2 int3 int4 int8 float4 float8 varbinary varcharacter precision datetime unsigned signed",ug="charset clear edit ego help nopager notee nowarning pager print prompt quit rehash source status system tee",z5=wt.define({operatorChars:"*+-%<>!=&|^",charSetCasts:!0,doubleQuotedStrings:!0,unquotedBitLiterals:!0,hashComments:!0,spaceAfterDashes:!0,specialVar:"@?",identifierQuotes:"`",keywords:EO+"group_concat "+fg,types:dg,builtin:ug}),U5=wt.define({operatorChars:"*+-%<>!=&|^",charSetCasts:!0,doubleQuotedStrings:!0,unquotedBitLiterals:!0,hashComments:!0,spaceAfterDashes:!0,specialVar:"@?",identifierQuotes:"`",keywords:EO+"always generated groupby_concat hard persistent shutdown soft virtual "+fg,types:dg,builtin:ug}),Cv="approx_count_distinct approx_percentile_cont approx_percentile_disc avg checksum_agg count count_big grouping grouping_id max min product stdev stdevp sum var varp ai_generate_embeddings ai_generate_chunks cume_dist first_value lag last_value lead percentile_cont percentile_disc percent_rank left_shift right_shift bit_count get_bit set_bit collationproperty tertiary_weights @@datefirst @@dbts @@langid @@language @@lock_timeout @@max_connections @@max_precision @@nestlevel @@options @@remserver @@servername @@servicename @@spid @@textsize @@version cast convert parse try_cast try_convert try_parse asymkey_id asymkeyproperty certproperty cert_id crypt_gen_random decryptbyasymkey decryptbycert decryptbykey decryptbykeyautoasymkey decryptbykeyautocert decryptbypassphrase encryptbyasymkey encryptbycert encryptbykey encryptbypassphrase hashbytes is_objectsigned key_guid key_id key_name signbyasymkey signbycert symkeyproperty verifysignedbycert verifysignedbyasymkey @@cursor_rows @@fetch_status cursor_status datalength ident_current ident_incr ident_seed identity sql_variant_property @@datefirst current_timestamp current_timezone current_timezone_id date_bucket dateadd datediff datediff_big datefromparts datename datepart datetime2fromparts datetimefromparts datetimeoffsetfromparts datetrunc day eomonth getdate getutcdate isdate month smalldatetimefromparts switchoffset sysdatetime sysdatetimeoffset sysutcdatetime timefromparts todatetimeoffset year edit_distance edit_distance_similarity jaro_winkler_distance jaro_winkler_similarity edge_id_from_parts graph_id_from_edge_id graph_id_from_node_id node_id_from_parts object_id_from_edge_id object_id_from_node_id json isjson json_array json_contains json_modify json_object json_path_exists json_query json_value regexp_like regexp_replace regexp_substr regexp_instr regexp_count regexp_matches regexp_split_to_table abs acos asin atan atn2 ceiling cos cot degrees exp floor log log10 pi power radians rand round sign sin sqrt square tan choose greatest iif least @@procid app_name applock_mode applock_test assemblyproperty col_length col_name columnproperty databasepropertyex db_id db_name file_id file_idex file_name filegroup_id filegroup_name filegroupproperty fileproperty filepropertyex fulltextcatalogproperty fulltextserviceproperty index_col indexkey_property indexproperty next value for object_definition object_id object_name object_schema_name objectproperty objectpropertyex original_db_name parsename schema_id schema_name scope_identity serverproperty stats_date type_id type_name typeproperty dense_rank ntile rank row_number publishingservername certenclosed certprivatekey current_user database_principal_id has_dbaccess has_perms_by_name is_member is_rolemember is_srvrolemember loginproperty original_login permissions pwdencrypt pwdcompare session_user sessionproperty suser_id suser_name suser_sid suser_sname system_user user user_id user_name ascii char charindex concat concat_ws difference format left len lower ltrim nchar patindex quotename replace replicate reverse right rtrim soundex space str string_agg string_escape stuff substring translate trim unicode upper $partition @@error @@identity @@pack_received @@rowcount @@trancount binary_checksum checksum compress connectionproperty context_info current_request_id current_transaction_id decompress error_line error_message error_number error_procedure error_severity error_state formatmessage get_filestream_transaction_context getansinull host_id host_name isnull isnumeric min_active_rowversion newid newsequentialid rowcount_big session_context xact_state @@connections @@cpu_busy @@idle @@io_busy @@pack_sent @@packet_errors @@timeticks @@total_errors @@total_read @@total_write textptr textvalid columns_updated eventdata trigger_nestlevel vector_distance vectorproperty vector_search generate_series opendatasource openjson openquery openrowset openxml predict string_split coalesce nullif apply catch filter force include keep keepfixed modify optimize parameterization parameters partition recompile sequence set",W5=wt.define({keywords:EO+"add external procedure all fetch public alter file raiserror and fillfactor read any for readtext as foreign reconfigure asc freetext references authorization freetexttable replication backup from restore begin full restrict between function return break goto revert browse grant revoke bulk group right by having rollback cascade holdlock rowcount case identity rowguidcol check identity_insert rule checkpoint identitycol save close if schema clustered in securityaudit coalesce index select collate inner semantickeyphrasetable column insert semanticsimilaritydetailstable commit intersect semanticsimilaritytable compute into session_user constraint is set contains join setuser containstable key shutdown continue kill some convert left statistics create like system_user cross lineno table current load tablesample current_date merge textsize current_time national then current_timestamp nocheck to current_user nonclustered top cursor not tran database null transaction dbcc nullif trigger deallocate of truncate declare off try_convert default offsets tsequal delete on union deny open unique desc opendatasource unpivot disk openquery update distinct openrowset updatetext distributed openxml use double option user drop or values dump order varying else outer view end over waitfor errlvl percent when escape pivot where except plan while exec precision with execute primary within group exists print writetext exit proc noexpand index forceseek forcescan holdlock nolock nowait paglock readcommitted readcommittedlock readpast readuncommitted repeatableread rowlock serializable snapshot spatial_window_max_cells tablock tablockx updlock xlock keepidentity keepdefaults ignore_constraints ignore_triggers",types:GO+"smalldatetime datetimeoffset datetime2 datetime bigint smallint smallmoney tinyint money real text nvarchar ntext varbinary image hierarchyid uniqueidentifier sql_variant xml",builtin:Cv,operatorChars:"*+-%<>!=^&|/",specialVar:"@",identifierQuotes:'"['}),j5=wt.define({keywords:EO+"abort analyze attach autoincrement conflict database detach exclusive fail glob ignore index indexed instead isnull notnull offset plan pragma query raise regexp reindex rename replace temp vacuum virtual",types:GO+"bool blob long longblob longtext medium mediumblob mediumint mediumtext tinyblob tinyint tinytext text bigint int2 int8 unsigned signed real",builtin:"auth backup bail changes clone databases dbinfo dump echo eqp explain fullschema headers help import imposter indexes iotrace lint load log mode nullvalue once print prompt quit restore save scanstats separator shell show stats system tables testcase timeout timer trace vfsinfo vfslist vfsname width",operatorChars:"*+-%<>!=&|/~",identifierQuotes:'`"',specialVar:"@:?$"}),C5=wt.define({keywords:"add all allow alter and any apply as asc authorize batch begin by clustering columnfamily compact consistency count create custom delete desc distinct drop each_quorum exists filtering from grant if in index insert into key keyspace keyspaces level limit local_one local_quorum modify nan norecursive nosuperuser not of on one order password permission permissions primary quorum rename revoke schema select set storage superuser table three to token truncate ttl two type unlogged update use user users using values where with writetime infinity NaN",types:GO+"ascii bigint blob counter frozen inet list map static text timeuuid tuple uuid varint",slashComments:!0}),G5=wt.define({keywords:EO+"abort accept access add all alter and any arraylen as asc assert assign at attributes audit authorization avg base_table begin between binary_integer body by case cast char_base check close cluster clusters colauth column comment commit compress connected constant constraint crash create current currval cursor data_base database dba deallocate debugoff debugon declare default definition delay delete desc digits dispose distinct do drop else elseif elsif enable end entry exception exception_init exchange exclusive exists external fast fetch file for force form from function generic goto grant group having identified if immediate in increment index indexes indicator initial initrans insert interface intersect into is key level library like limited local lock log logging loop master maxextents maxtrans member minextents minus mislabel mode modify multiset new next no noaudit nocompress nologging noparallel not nowait number_base of off offline on online only option or order out package parallel partition pctfree pctincrease pctused pls_integer positive positiven pragma primary prior private privileges procedure public raise range raw rebuild record ref references refresh rename replace resource restrict return returning returns reverse revoke rollback row rowid rowlabel rownum rows run savepoint schema segment select separate set share snapshot some space split sql start statement storage subtype successful synonym tabauth table tables tablespace task terminate then to trigger truncate type union unique unlimited unrecoverable unusable update use using validate value values variable view views when whenever where while with work",builtin:"appinfo arraysize autocommit autoprint autorecovery autotrace blockterminator break btitle cmdsep colsep compatibility compute concat copycommit copytypecheck define echo editfile embedded feedback flagger flush heading headsep instance linesize lno loboffset logsource longchunksize markup native newpage numformat numwidth pagesize pause pno recsep recsepchar repfooter repheader serveroutput shiftinout show showmode spool sqlblanklines sqlcase sqlcode sqlcontinue sqlnumber sqlpluscompatibility sqlprefix sqlprompt sqlterminator suffix tab term termout timing trimout trimspool ttitle underline verify version wrap",types:GO+"ascii bfile bfilename bigserial bit blob dec long number nvarchar nvarchar2 serial smallint string text uid varchar2 xml",operatorChars:"*/+-%<>!=~",doubleQuotedStrings:!0,charSetCasts:!0,plsqlQuotingMechanism:!0});var ih=1,Gv=2,Ev=3,Av=4,Lv=5,Mv=36,Dv=37,Iv=38,Bv=11,Nv=13;function Fv(O){return O==45||O==46||O==58||O>=65&&O<=90||O==95||O>=97&&O<=122||O>=161}function Hv(O){return O==9||O==10||O==13||O==32}var Qg=null,$g=null,pg=0;function rh(O,e){let t=O.pos+e;if($g==O&&pg==t)return Qg;for(;Hv(O.peek(e));)e++;let i="";for(;;){let r=O.peek(e);if(!Fv(r))break;i+=String.fromCharCode(r),e++}return $g=O,pg=t,Qg=i||null}function mg(O,e){this.name=O,this.parent=e}var Kv=new Ge({start:null,shift(O,e,t,i){return e==ih?new mg(rh(i,1)||"",O):O},reduce(O,e){return e==Bv&&O?O.parent:O},reuse(O,e,t,i){let r=e.type.id;return r==ih||r==Nv?new mg(rh(i,1)||"",O):O},strict:!1}),Jv=new z((O,e)=>{if(O.next==60){if(O.advance(),O.next==47){O.advance();let t=rh(O,0);if(!t)return O.acceptToken(Lv);if(e.context&&t==e.context.name)return O.acceptToken(Gv);for(let i=e.context;i;i=i.parent)if(i.name==t)return O.acceptToken(Ev,-2);O.acceptToken(Av)}else if(O.next!=33&&O.next!=63)return O.acceptToken(ih)}},{contextual:!0});function nh(O,e){return new z(t=>{let i=0,r=e.charCodeAt(0);e:for(;!(t.next<0);t.advance(),i++)if(t.next==r){for(let n=1;n"),tY=nh(Dv,"?>"),OY=nh(Iv,"]]>"),iY=F({Text:d.content,"StartTag StartCloseTag EndTag SelfCloseEndTag":d.angleBracket,TagName:d.tagName,"MismatchedCloseTag/TagName":[d.tagName,d.invalid],AttributeName:d.attributeName,AttributeValue:d.attributeValue,Is:d.definitionOperator,"EntityReference CharacterReference":d.character,Comment:d.blockComment,ProcessingInst:d.processingInstruction,DoctypeDecl:d.documentMeta,Cdata:d.special(d.string)}),gg=Oe.deserialize({version:14,states:",lOQOaOOOrOxO'#CfOzOpO'#CiO!tOaO'#CgOOOP'#Cg'#CgO!{OrO'#CrO#TOtO'#CsO#]OpO'#CtOOOP'#DT'#DTOOOP'#Cv'#CvQQOaOOOOOW'#Cw'#CwO#eOxO,59QOOOP,59Q,59QOOOO'#Cx'#CxO#mOpO,59TO#uO!bO,59TOOOP'#C|'#C|O$TOaO,59RO$[OpO'#CoOOOP,59R,59ROOOQ'#C}'#C}O$dOrO,59^OOOP,59^,59^OOOS'#DO'#DOO$lOtO,59_OOOP,59_,59_O$tOpO,59`O$|OpO,59`OOOP-E6t-E6tOOOW-E6u-E6uOOOP1G.l1G.lOOOO-E6v-E6vO%UO!bO1G.oO%UO!bO1G.oO%dOpO'#CkO%lO!bO'#CyO%zO!bO1G.oOOOP1G.o1G.oOOOP1G.w1G.wOOOP-E6z-E6zOOOP1G.m1G.mO&VOpO,59ZO&_OpO,59ZOOOQ-E6{-E6{OOOP1G.x1G.xOOOS-E6|-E6|OOOP1G.y1G.yO&gOpO1G.zO&gOpO1G.zOOOP1G.z1G.zO&oO!bO7+$ZO&}O!bO7+$ZOOOP7+$Z7+$ZOOOP7+$c7+$cO'YOpO,59VO'bOpO,59VO'mO!bO,59eOOOO-E6w-E6wO'{OpO1G.uO'{OpO1G.uOOOP1G.u1G.uO(TOpO7+$fOOOP7+$f7+$fO(]O!bO<c!|;'S(o;'S;=`)]<%lO(oi>jX|W!O`Or(ors&osv(owx'}x!r(o!r!s?V!s;'S(o;'S;=`)]<%lO(oi?^X|W!O`Or(ors&osv(owx'}x!g(o!g!h?y!h;'S(o;'S;=`)]<%lO(oi@QY|W!O`Or?yrs@psv?yvwA[wxBdx!`?y!`!aCr!a;'S?y;'S;=`Db<%lO?ya@uV!O`Ov@pvxA[x!`@p!`!aAy!a;'S@p;'S;=`B^<%lO@pPA_TO!`A[!`!aAn!a;'SA[;'S;=`As<%lOA[PAsOiPPAvP;=`<%lA[aBQSiP!O`Ov&ox;'S&o;'S;=`'Q<%lO&oaBaP;=`<%l@pXBiX|WOrBdrsA[svBdvwA[w!`Bd!`!aCU!a;'SBd;'S;=`Cl<%lOBdXC]TiP|WOr'}sv'}w;'S'};'S;=`(c<%lO'}XCoP;=`<%lBdiC{ViP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiDeP;=`<%l?yiDoZ|W!O`Or(ors&osv(owx'}x!e(o!e!fEb!f#V(o#V#WIr#W;'S(o;'S;=`)]<%lO(oiEiX|W!O`Or(ors&osv(owx'}x!f(o!f!gFU!g;'S(o;'S;=`)]<%lO(oiF]X|W!O`Or(ors&osv(owx'}x!c(o!c!dFx!d;'S(o;'S;=`)]<%lO(oiGPX|W!O`Or(ors&osv(owx'}x!v(o!v!wGl!w;'S(o;'S;=`)]<%lO(oiGsX|W!O`Or(ors&osv(owx'}x!c(o!c!dH`!d;'S(o;'S;=`)]<%lO(oiHgX|W!O`Or(ors&osv(owx'}x!}(o!}#OIS#O;'S(o;'S;=`)]<%lO(oiI]V|W!O`yPOr(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiIyX|W!O`Or(ors&osv(owx'}x#W(o#W#XJf#X;'S(o;'S;=`)]<%lO(oiJmX|W!O`Or(ors&osv(owx'}x#T(o#T#UKY#U;'S(o;'S;=`)]<%lO(oiKaX|W!O`Or(ors&osv(owx'}x#h(o#h#iK|#i;'S(o;'S;=`)]<%lO(oiLTX|W!O`Or(ors&osv(owx'}x#T(o#T#UH`#U;'S(o;'S;=`)]<%lO(oiLwX|W!O`Or(ors&osv(owx'}x#c(o#c#dMd#d;'S(o;'S;=`)]<%lO(oiMkX|W!O`Or(ors&osv(owx'}x#V(o#V#WNW#W;'S(o;'S;=`)]<%lO(oiN_X|W!O`Or(ors&osv(owx'}x#h(o#h#iNz#i;'S(o;'S;=`)]<%lO(oi! RX|W!O`Or(ors&osv(owx'}x#m(o#m#n! n#n;'S(o;'S;=`)]<%lO(oi! uX|W!O`Or(ors&osv(owx'}x#d(o#d#e!!b#e;'S(o;'S;=`)]<%lO(oi!!iX|W!O`Or(ors&osv(owx'}x#X(o#X#Y?y#Y;'S(o;'S;=`)]<%lO(oi!#_V!SP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(ok!$PXaQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo!$wX[UVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!%mZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!&`!a;'S$q;'S;=`)c<%lO$qk!&kX!RQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!'aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_#P$q#P#Q!(S#Q;'S$q;'S;=`)c<%lO$qk!(]ZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!)O!a;'S$q;'S;=`)c<%lO$qk!)ZXxQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$q",tokenizers:[Jv,eY,tY,OY,0,1,2,3,4],topRules:{Document:[0,6]},tokenPrec:0});function Es(O,e){let t=e&&e.getChild("TagName");return t?O.sliceString(t.from,t.to):""}function sh(O,e){let t=e&&e.firstChild;return!t||t.name!="OpenTag"?"":Es(O,t)}function rY(O,e,t){let i=e&&e.getChildren("Attribute").find(n=>n.from<=t&&n.to>=t),r=i&&i.getChild("AttributeName");return r?O.sliceString(r.from,r.to):""}function ah(O){for(let e=O&&O.parent;e;e=e.parent)if(e.name=="Element")return e;return null}function nY(O,e){var t;let i=U(O).resolveInner(e,-1),r=null;for(let n=i;!r&&n.parent;n=n.parent)(n.name=="OpenTag"||n.name=="CloseTag"||n.name=="SelfClosingTag"||n.name=="MismatchedCloseTag")&&(r=n);if(r&&(r.to>e||r.lastChild.type.isError)){let n=r.parent;if(i.name=="TagName")return r.name=="CloseTag"||r.name=="MismatchedCloseTag"?{type:"closeTag",from:i.from,context:n}:{type:"openTag",from:i.from,context:ah(n)};if(i.name=="AttributeName")return{type:"attrName",from:i.from,context:r};if(i.name=="AttributeValue")return{type:"attrValue",from:i.from,context:r};let s=i==r||i.name=="Attribute"?i.childBefore(e):i;return s?.name=="StartTag"?{type:"openTag",from:e,context:ah(n)}:s?.name=="StartCloseTag"&&s.to<=e?{type:"closeTag",from:e,context:n}:s?.name=="Is"?{type:"attrValue",from:e,context:r}:s?{type:"attrName",from:e,context:r}:null}else if(i.name=="StartCloseTag")return{type:"closeTag",from:e,context:i.parent};for(;i.parent&&i.to==e&&!(!((t=i.lastChild)===null||t===void 0)&&t.type.isError);)i=i.parent;return i.name=="Element"||i.name=="Text"||i.name=="Document"?{type:"tag",from:e,context:i.name=="Element"?i:ah(i)}:null}var lh=class{constructor(e,t,i){this.attrs=t,this.attrValues=i,this.children=[],this.name=e.name,this.completion=Object.assign(Object.assign({type:"type"},e.completion||{}),{label:this.name}),this.openCompletion=Object.assign(Object.assign({},this.completion),{label:"<"+this.name}),this.closeCompletion=Object.assign(Object.assign({},this.completion),{label:"",boost:2}),this.closeNameCompletion=Object.assign(Object.assign({},this.completion),{label:this.name+">"}),this.text=e.textContent?e.textContent.map(r=>({label:r,type:"text"})):[]}},oh=/^[:\-\.\w\u00b7-\uffff]*$/;function Pg(O){return Object.assign(Object.assign({type:"property"},O.completion||{}),{label:O.name})}function Sg(O){return typeof O=="string"?{label:`"${O}"`,type:"constant"}:/^"/.test(O.label)?O:Object.assign(Object.assign({},O),{label:`"${O.label}"`})}function sY(O,e){let t=[],i=[],r=Object.create(null);for(let o of e){let l=Pg(o);t.push(l),o.global&&i.push(l),o.values&&(r[o.name]=o.values.map(Sg))}let n=[],s=[],a=Object.create(null);for(let o of O){let l=i,c=r;o.attributes&&(l=l.concat(o.attributes.map(f=>typeof f=="string"?t.find(u=>u.label==f)||{label:f,type:"property"}:(f.values&&(c==r&&(c=Object.create(c)),c[f.name]=f.values.map(Sg)),Pg(f)))));let h=new lh(o,l,c);a[h.name]=h,n.push(h),o.top&&s.push(h)}s.length||(s=n);for(let o=0;o{var l;let{doc:c}=o.state,h=nY(o.state,o.pos);if(!h||h.type=="tag"&&!o.explicit)return null;let{type:f,from:u,context:Q}=h;if(f=="openTag"){let $=s,p=sh(c,Q);if(p){let m=a[p];$=m?.children||n}return{from:u,options:$.map(m=>m.completion),validFor:oh}}else if(f=="closeTag"){let $=sh(c,Q);return $?{from:u,to:o.pos+(c.sliceString(o.pos,o.pos+1)==">"?1:0),options:[((l=a[$])===null||l===void 0?void 0:l.closeNameCompletion)||{label:$+">",type:"type"}],validFor:oh}:null}else if(f=="attrName"){let $=a[Es(c,Q)];return{from:u,options:$?.attrs||i,validFor:oh}}else if(f=="attrValue"){let $=rY(c,Q,u);if(!$)return null;let p=a[Es(c,Q)],m=(p?.attrValues||r)[$];return!m||!m.length?null:{from:u,to:o.pos+(c.sliceString(o.pos,o.pos+1)=='"'?1:0),options:m,validFor:/^"[^"]*"?$/}}else if(f=="tag"){let $=sh(c,Q),p=a[$],m=[],g=Q&&Q.lastChild;$&&(!g||g.name!="CloseTag"||Es(c,g)!=$)&&m.push(p?p.closeCompletion:{label:"",type:"type",boost:2});let P=m.concat((p?.children||(Q?n:s)).map(y=>y.openCompletion));if(Q&&p?.text.length){let y=Q.firstChild;y.to>o.pos-20&&!/\S/.test(o.state.sliceDoc(y.to,o.pos))&&(P=P.concat(p.text))}return{from:u,options:P,validFor:/^<\/?[:\-\.\w\u00b7-\uffff]*$/}}else return null}}var ch=ne.define({name:"xml",parser:gg.configure({props:[se.add({Element(O){let e=/^\s*<\//.test(O.textAfter);return O.lineIndent(O.node.from)+(e?0:O.unit)},"OpenTag CloseTag SelfClosingTag"(O){return O.column(O.node.from)+O.unit}}),te.add({Element(O){let e=O.firstChild,t=O.lastChild;return!e||e.name!="OpenTag"?null:{from:e.to,to:t.name=="CloseTag"?t.from:O.to}}}),hr.add({"OpenTag CloseTag":O=>O.getChild("TagName")})]}),languageData:{commentTokens:{block:{open:""}},indentOnInput:/^\s*<\/$/}});function Tg(O={}){let e=[ch.data.of({autocomplete:sY(O.elements||[],O.attributes||[])})];return O.autoCloseTags!==!1&&e.push(aY),new J(ch,e)}function Xg(O,e,t=O.length){if(!e)return"";let i=e.firstChild,r=i&&i.getChild("TagName");return r?O.sliceString(r.from,Math.min(r.to,t)):""}var aY=T.inputHandler.of((O,e,t,i,r)=>{if(O.composing||O.state.readOnly||e!=t||i!=">"&&i!="/"||!ch.isActiveAt(O.state,e,-1))return!1;let n=r(),{state:s}=n,a=s.changeByRange(o=>{var l,c,h;let{head:f}=o,u=s.doc.sliceString(f-1,f)==i,Q=U(s).resolveInner(f,-1),$;if(u&&i==">"&&Q.name=="EndTag"){let p=Q.parent;if(((c=(l=p.parent)===null||l===void 0?void 0:l.lastChild)===null||c===void 0?void 0:c.name)!="CloseTag"&&($=Xg(s.doc,p.parent,f))){let m=f+(s.doc.sliceString(f,f+1)===">"?1:0),g=``;return{range:o,changes:{from:f,to:m,insert:g}}}}else if(u&&i=="/"&&Q.name=="StartCloseTag"){let p=Q.parent;if(Q.from==f-2&&((h=p.lastChild)===null||h===void 0?void 0:h.name)!="CloseTag"&&($=Xg(s.doc,p,f))){let m=f+(s.doc.sliceString(f,f+1)===">"?1:0),g=`${$}>`;return{range:S.cursor(f+g.length,-1),changes:{from:f,to:m,insert:g}}}}return{range:o}});return a.changes.empty?!1:(O.dispatch([n,s.update(a,{userEvent:"input.complete",scrollIntoView:!0})]),!0)});var xi=63,bg=64,oY=1,lY=2,kg=3,cY=4,wg=5,hY=6,fY=7,Zg=65,dY=66,uY=8,QY=9,$Y=10,pY=11,mY=12,vg=13,gY=19,PY=20,SY=29,XY=33,TY=34,bY=47,yY=0,$h=1,fh=2,Cr=3,dh=4,At=class{constructor(e,t,i){this.parent=e,this.depth=t,this.type=i,this.hash=(e?e.hash+e.hash<<8:0)+t+(t<<4)+i}};At.top=new At(null,-1,yY);function jr(O,e){for(let t=0,i=e-O.pos-1;;i--,t++){let r=O.peek(i);if(Lt(r)||r==-1)return t}}function uh(O){return O==32||O==9}function Lt(O){return O==10||O==13}function Yg(O){return uh(O)||Lt(O)}function AO(O){return O<0||Yg(O)}var xY=new Ge({start:At.top,reduce(O,e){return O.type==Cr&&(e==PY||e==TY)?O.parent:O},shift(O,e,t,i){if(e==kg)return new At(O,jr(i,i.pos),$h);if(e==Zg||e==wg)return new At(O,jr(i,i.pos),fh);if(e==xi)return O.parent;if(e==gY||e==XY)return new At(O,0,Cr);if(e==vg&&O.type==dh)return O.parent;if(e==bY){let r=/[1-9]/.exec(i.read(i.pos,t.pos));if(r)return new At(O,O.depth+ +r[0],dh)}return O},hash(O){return O.hash}});function ki(O,e,t=0){return O.peek(t)==e&&O.peek(t+1)==e&&O.peek(t+2)==e&&AO(O.peek(t+3))}var kY=new z((O,e)=>{if(O.next==-1&&e.canShift(bg))return O.acceptToken(bg);let t=O.peek(-1);if((Lt(t)||t<0)&&e.context.type!=Cr){if(ki(O,45))if(e.canShift(xi))O.acceptToken(xi);else return O.acceptToken(oY,3);if(ki(O,46))if(e.canShift(xi))O.acceptToken(xi);else return O.acceptToken(lY,3);let i=0;for(;O.next==32;)i++,O.advance();(i{if(e.context.type==Cr){O.next==63&&(O.advance(),AO(O.next)&&O.acceptToken(fY));return}if(O.next==45)O.advance(),AO(O.next)&&O.acceptToken(e.context.type==$h&&e.context.depth==jr(O,O.pos-1)?cY:kg);else if(O.next==63)O.advance(),AO(O.next)&&O.acceptToken(e.context.type==fh&&e.context.depth==jr(O,O.pos-1)?hY:wg);else{let t=O.pos;for(;;)if(uh(O.next)){if(O.pos==t)return;O.advance()}else if(O.next==33)_g(O);else if(O.next==38)Qh(O);else if(O.next==42){Qh(O);break}else if(O.next==39||O.next==34){if(ph(O,!0))break;return}else if(O.next==91||O.next==123){if(!vY(O))return;break}else{Rg(O,!0,!1,0);break}for(;uh(O.next);)O.advance();if(O.next==58){if(O.pos==t&&e.canShift(SY))return;let i=O.peek(1);AO(i)&&O.acceptTokenTo(e.context.type==fh&&e.context.depth==jr(O,t)?dY:Zg,t)}}},{contextual:!0});function ZY(O){return O>32&&O<127&&O!=34&&O!=37&&O!=44&&O!=60&&O!=62&&O!=92&&O!=94&&O!=96&&O!=123&&O!=124&&O!=125}function yg(O){return O>=48&&O<=57||O>=97&&O<=102||O>=65&&O<=70}function xg(O,e){return O.next==37?(O.advance(),yg(O.next)&&O.advance(),yg(O.next)&&O.advance(),!0):ZY(O.next)||e&&O.next==44?(O.advance(),!0):!1}function _g(O){if(O.advance(),O.next==60){for(O.advance();;)if(!xg(O,!0)){O.next==62&&O.advance();break}}else for(;xg(O,!1););}function Qh(O){for(O.advance();!AO(O.next)&&As(O.tag)!="f";)O.advance()}function ph(O,e){let t=O.next,i=!1,r=O.pos;for(O.advance();;){let n=O.next;if(n<0)break;if(O.advance(),n==t)if(n==39)if(O.next==39)O.advance();else break;else break;else if(n==92&&t==34)O.next>=0&&O.advance();else if(Lt(n)){if(e)return!1;i=!0}else if(e&&O.pos>=r+1024)return!1}return!i}function vY(O){for(let e=[],t=O.pos+1024;;)if(O.next==91||O.next==123)e.push(O.next),O.advance();else if(O.next==39||O.next==34){if(!ph(O,!0))return!1}else if(O.next==93||O.next==125){if(e[e.length-1]!=O.next-2)return!1;if(e.pop(),O.advance(),!e.length)return!0}else{if(O.next<0||O.pos>t||Lt(O.next))return!1;O.advance()}}var YY="iiisiiissisfissssssssssssisssiiissssssssssssssssssssssssssfsfssissssssssssssssssssssssssssfif";function As(O){return O<33?"u":O>125?"s":YY[O-33]}function hh(O,e){let t=As(O);return t!="u"&&!(e&&t=="f")}function Rg(O,e,t,i){if(As(O.next)=="s"||(O.next==63||O.next==58||O.next==45)&&hh(O.peek(1),t))O.advance();else return!1;let r=O.pos;for(;;){let n=O.next,s=0,a=i+1;for(;Yg(n);){if(Lt(n)){if(e)return!1;a=0}else a++;n=O.peek(++s)}if(!(n>=0&&(n==58?hh(O.peek(s+1),t):n==35?O.peek(s-1)!=32:hh(n,t)))||!t&&a<=i||a==0&&!t&&(ki(O,45,s)||ki(O,46,s)))break;if(e&&As(n)=="f")return!1;for(let l=s;l>=0;l--)O.advance();if(e&&O.pos>r+1024)return!1}return!0}var _Y=new z((O,e)=>{if(O.next==33)_g(O),O.acceptToken(mY);else if(O.next==38||O.next==42){let t=O.next==38?$Y:pY;Qh(O),O.acceptToken(t)}else O.next==39||O.next==34?(ph(O,!1),O.acceptToken(QY)):Rg(O,!1,e.context.type==Cr,e.context.depth)&&O.acceptToken(uY)}),RY=new z((O,e)=>{let t=e.context.type==dh?e.context.depth:-1,i=O.pos;e:for(;;){let r=0,n=O.next;for(;n==32;)n=O.peek(++r);if(!r&&(ki(O,45,r)||ki(O,46,r))||!Lt(n)&&(t<0&&(t=Math.max(e.context.depth+1,r)),rYAN>Y",stateData:";S~O!fOS!gOS^OS~OP_OQbORSOTUOWROXROYYOZZO[XOcPOqQO!PVO!V[O!cTO~O`cO~P]OVkOWROXROYeOZfO[dOcPOmhOqQO~OboO~P!bOVtOWROXROYeOZfO[dOcPOmrOqQO~OpwO~P#WORSOTUOWROXROYYOZZO[XOcPOqQO!PVO!cTO~OSvP!avP!bvP~P#|OWROXROYeOZfO[dOcPOqQO~OmzO~P%OOm!OOUzP!azP!bzP!dzP~P#|O^!SO!b!QO!f!TO!g!RO~ORSOTUOWROXROcPOqQO!PVO!cTO~OY!UOP!QXQ!QX!V!QX!`!QXS!QX!a!QX!b!QXU!QXm!QX!d!QX~P&aO[!WOP!SXQ!SX!V!SX!`!SXS!SX!a!SX!b!SXU!SXm!SX!d!SX~P&aO^!ZO!W![O!b!YO!f!]O!g!YO~OP!_O!V[OQaX!`aX~OPaXQaX!VaX!`aX~P#|OP!bOQ!cO!V[O~OP_O!V[O~P#|OWROXROY!fOcPOqQObfXmfXofXpfX~OWROXRO[!hOcPOqQObhXmhXohXphX~ObeXmlXoeX~ObkXokX~P%OOm!kO~Om!lObnPonP~P%OOb!pOo!oO~Ob!pO~P!bOm!sOosXpsX~OosXpsX~P%OOm!uOotPptP~P%OOo!xOp!yO~Op!yO~P#WOS!|O!a#OO!b#OO~OUyX!ayX!byX!dyX~P#|Om#QO~OU#SO!a#UO!b#UO!d#RO~Om#WOUzX!azX!bzX!dzX~O]#XO~O!b#XO!g#YO~O^#ZO!b#XO!g#YO~OP!RXQ!RX!V!RX!`!RXS!RX!a!RX!b!RXU!RXm!RX!d!RX~P&aOP!TXQ!TX!V!TX!`!TXS!TX!a!TX!b!TXU!TXm!TX!d!TX~P&aO!b#^O!g#^O~O^#_O!b#^O!f#`O!g#^O~O^#_O!W#aO!b#^O!g#^O~OPaaQaa!Vaa!`aa~P#|OP#cO!V[OQ!XX!`!XX~OP!XXQ!XX!V!XX!`!XX~P#|OP_O!V[OQ!_X!`!_X~P#|OWROXROcPOqQObgXmgXogXpgX~OWROXROcPOqQObiXmiXoiXpiX~Obkaoka~P%OObnXonX~P%OOm#kO~Ob#lOo!oO~Oosapsa~P%OOotXptX~P%OOm#pO~Oo!xOp#qO~OSwP!awP!bwP~P#|OS!|O!a#vO!b#vO~OUya!aya!bya!dya~P#|Om#xO~P%OOm#{OU}P!a}P!b}P!d}P~P#|OU#SO!a$OO!b$OO!d#RO~O]$QO~O!b$QO!g$RO~O!b$SO!g$SO~O^$TO!b$SO!g$SO~O^$TO!b$SO!f$UO!g$SO~OP!XaQ!Xa!V!Xa!`!Xa~P#|Obnaona~P%OOotapta~P%OOo!xO~OU|X!a|X!b|X!d|X~P#|Om$ZO~Om$]OU}X!a}X!b}X!d}X~O]$^O~O!b$_O!g$_O~O^$`O!b$_O!g$_O~OU|a!a|a!b|a!d|a~P#|O!b$cO!g$cO~O",goto:",]!mPPPPPPPPPPPPPPPPP!nPP!v#v#|$`#|$c$f$j$nP%VPPP!v%Y%^%a%{&O%a&R&U&X&_&b%aP&e&{&e'O'RPP']'a'g'm's'y(XPPPPPPPP(_)e*X+c,VUaObcR#e!c!{ROPQSTUXY_bcdehknrtvz!O!U!W!_!b!c!f!h!k!l!s!u!|#Q#R#S#W#c#k#p#x#{$Z$]QmPR!qnqfPQThknrtv!k!l!s!u#R#k#pR!gdR!ieTlPnTjPnSiPnSqQvQ{TQ!mkQ!trQ!vtR#y#RR!nkTsQvR!wt!RWOSUXY_bcz!O!U!W!_!b!c!|#Q#S#W#c#x#{$Z$]RySR#t!|R|TR|UQ!PUR#|#SR#z#RR#z#SyZOSU_bcz!O!_!b!c!|#Q#S#W#c#x#{$Z$]R!VXR!XYa]O^abc!a!c!eT!da!eQnPR!rnQvQR!{vQ!}yR#u!}Q#T|R#}#TW^Obc!cS!^^!aT!aa!eQ!eaR#f!eW`Obc!cQxSS}U#SQ!`_Q#PzQ#V!OQ#b!_Q#d!bQ#s!|Q#w#QQ$P#WQ$V#cQ$Y#xQ$[#{Q$a$ZR$b$]xZOSU_bcz!O!_!b!c!|#Q#S#W#c#x#{$Z$]Q!VXQ!XYQ#[!UR#]!W!QWOSUXY_bcz!O!U!W!_!b!c!|#Q#S#W#c#x#{$Z$]pfPQThknrtv!k!l!s!u#R#k#pQ!gdQ!ieQ#g!fR#h!hSgPn^pQTkrtv#RQ!jhQ#i!kQ#j!lQ#n!sQ#o!uQ$W#kR$X#pQuQR!zv",nodeNames:"\u26A0 DirectiveEnd DocEnd - - ? ? ? Literal QuotedLiteral Anchor Alias Tag BlockLiteralContent Comment Stream BOM Document ] [ FlowSequence Item Tagged Anchored Anchored Tagged FlowMapping Pair Key : Pair , } { FlowMapping Pair Pair BlockSequence Item Item BlockMapping Pair Pair Key Pair Pair BlockLiteral BlockLiteralHeader Tagged Anchored Anchored Tagged Directive DirectiveName DirectiveContent Document",maxTerm:74,context:xY,nodeProps:[["isolate",-3,8,9,14,""],["openedBy",18,"[",32,"{"],["closedBy",19,"]",33,"}"]],propSources:[VY],skippedNodes:[0],repeatNodeCount:6,tokenData:"-Y~RnOX#PXY$QYZ$]Z]#P]^$]^p#Ppq$Qqs#Pst$btu#Puv$yv|#P|}&e}![#P![!]'O!]!`#P!`!a'i!a!}#P!}#O*g#O#P#P#P#Q+Q#Q#o#P#o#p+k#p#q'i#q#r,U#r;'S#P;'S;=`#z<%l?HT#P?HT?HU,o?HUO#PQ#UU!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PQ#kTOY#PZs#Pt;'S#P;'S;=`#z<%lO#PQ#}P;=`<%l#P~$VQ!f~XY$Qpq$Q~$bO!g~~$gS^~OY$bZ;'S$b;'S;=`$s<%lO$b~$vP;=`<%l$bR%OX!WQOX%kXY#PZ]%k]^#P^p%kpq#hq;'S%k;'S;=`&_<%lO%kR%rX!WQ!VPOX%kXY#PZ]%k]^#P^p%kpq#hq;'S%k;'S;=`&_<%lO%kR&bP;=`<%l%kR&lUoP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR'VUmP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR'p[!PP!WQOY#PZp#Ppq#hq{#P{|(f|}#P}!O(f!O!R#P!R![)p![;'S#P;'S;=`#z<%lO#PR(mW!PP!WQOY#PZp#Ppq#hq!R#P!R![)V![;'S#P;'S;=`#z<%lO#PR)^U!PP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR)wY!PP!WQOY#PZp#Ppq#hq{#P{|)V|}#P}!O)V!O;'S#P;'S;=`#z<%lO#PR*nUcP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR+XUbP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR+rUqP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR,]UpP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR,vU`P!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#P",tokenizers:[kY,wY,_Y,RY,0,1],topRules:{Stream:[0,15]},tokenPrec:0});var qY=Oe.deserialize({version:14,states:"!vOQOPOOO]OPO'#C_OhOPO'#C^OOOO'#Cc'#CcOpOPO'#CaQOOOOOO{OPOOOOOO'#Cb'#CbO!WOPO'#C`O!`OPO,58xOOOO-E6a-E6aOOOO-E6`-E6`OOOO'#C_'#C_OOOO1G.d1G.d",stateData:"!h~OXPOYROWTP~OWVXXRXYRX~OYVOXSP~OXROYROWTX~OXROYROWTP~OYVOXSX~OX[O~OXY~",goto:"vWPPX[beioRUOQQOR]XRXQTTOUQWQRZWSSOURYS",nodeNames:"\u26A0 Document Frontmatter DashLine FrontmatterContent Body",maxTerm:10,skippedNodes:[0],repeatNodeCount:2,tokenData:"$z~RXOYnYZ!^Z]n]^!^^}n}!O!i!O;'Sn;'S;=`!c<%lOn~qXOYnYZ!^Z]n]^!^^;'Sn;'S;=`!c<%l~n~On~~!^~!cOY~~!fP;=`<%ln~!lZOYnYZ!^Z]n]^!^^}n}!O#_!O;'Sn;'S;=`!c<%l~n~On~~!^~#bZOYnYZ!^Z]n]^!^^}n}!O$T!O;'Sn;'S;=`!c<%l~n~On~~!^~$WXOYnYZ$sZ]n]^$s^;'Sn;'S;=`!c<%l~n~On~~$s~$zOX~Y~",tokenizers:[0],topRules:{Document:[0,1]},tokenPrec:67}),zY=ne.define({name:"yaml",parser:Vg.configure({props:[se.add({Stream:O=>{for(let e=O.node.resolve(O.pos,-1);e&&e.to>=O.pos;e=e.parent){if(e.name=="BlockLiteralContent"&&e.fromO.pos)return null}}return null},FlowMapping:be({closing:"}"}),FlowSequence:be({closing:"]"})}),te.add({"FlowMapping FlowSequence":me,"Item Pair BlockLiteral":(O,e)=>({from:e.doc.lineAt(O.from).to,to:O.to})})]}),languageData:{commentTokens:{line:"#"},indentOnInput:/^\s*[\]\}]$/}});function qg(){return new J(zY)}var nV=ne.define({name:"yaml-frontmatter",parser:qY.configure({props:[F({DashLine:d.meta})]})});function UY({canWrap:O,isDisabled:e,isLive:t,isLiveDebounced:i,isLiveOnBlur:r,liveDebounce:n,language:s,state:a}){return{editor:null,themeCompartment:new FO,isDocChanged:!1,state:a,init(){let o=this.getLanguageExtension(),l=Alpine.debounce(()=>this.$wire.commit(),n??300);this.editor=new T({parent:this.$refs.editor,state:I.create({doc:this.state,extensions:[t$,Xt.of([QQ]),...O?[T.lineWrapping]:[],I.readOnly.of(e),T.editable.of(!e),T.updateListener.of(c=>{c.docChanged&&(this.isDocChanged=!0,this.state=c.state.doc.toString(),!r&&(t||i)&&l())}),T.domEventHandlers({blur:(c,h)=>{r&&this.isDocChanged&&this.$wire.$commit()}}),...o?[o]:[],this.themeCompartment.of(this.getThemeExtensions())]})}),this.$watch("state",()=>{this.state!==void 0&&this.editor.state.doc.toString()!==this.state&&this.editor.dispatch({changes:{from:0,to:this.editor.state.doc.length,insert:this.state}})}),this.themeObserver=new MutationObserver(()=>{this.editor.dispatch({effects:this.themeCompartment.reconfigure(this.getThemeExtensions())})}),this.themeObserver.observe(document.documentElement,{attributes:!0,attributeFilter:["class"]})},isDarkMode(){return document.documentElement.classList.contains("dark")},getThemeExtensions(){return this.isDarkMode()?[a$]:[]},getLanguageExtension(){return s&&{cpp:g$,css:ys,go:W$,html:Ti,java:Zp,javascript:ks,json:Yp,markdown:Tm,php:vm,python:Nm,sql:hg,xml:Tg,yaml:qg}[s]?.()||null},destroy(){this.themeObserver&&(this.themeObserver.disconnect(),this.themeObserver=null),this.editor&&(this.editor.destroy(),this.editor=null)}}}export{UY as default}; diff --git a/public/js/filament/forms/components/color-picker.js b/public/js/filament/forms/components/color-picker.js new file mode 100644 index 0000000..07103ca --- /dev/null +++ b/public/js/filament/forms/components/color-picker.js @@ -0,0 +1 @@ +var c=(e,t=0,r=1)=>e>r?r:eMath.round(r*e)/r;var at={grad:360/400,turn:360,rad:360/(Math.PI*2)},F=e=>G(v(e)),v=e=>(e[0]==="#"&&(e=e.substring(1)),e.length<6?{r:parseInt(e[0]+e[0],16),g:parseInt(e[1]+e[1],16),b:parseInt(e[2]+e[2],16),a:e.length===4?a(parseInt(e[3]+e[3],16)/255,2):1}:{r:parseInt(e.substring(0,2),16),g:parseInt(e.substring(2,4),16),b:parseInt(e.substring(4,6),16),a:e.length===8?a(parseInt(e.substring(6,8),16)/255,2):1}),nt=(e,t="deg")=>Number(e)*(at[t]||1),it=e=>{let r=/hsla?\(?\s*(-?\d*\.?\d+)(deg|rad|grad|turn)?[,\s]+(-?\d*\.?\d+)%?[,\s]+(-?\d*\.?\d+)%?,?\s*[/\s]*(-?\d*\.?\d+)?(%)?\s*\)?/i.exec(e);return r?lt({h:nt(r[1],r[2]),s:Number(r[3]),l:Number(r[4]),a:r[5]===void 0?1:Number(r[5])/(r[6]?100:1)}):{h:0,s:0,v:0,a:1}},J=it,lt=({h:e,s:t,l:r,a:o})=>(t*=(r<50?r:100-r)/100,{h:e,s:t>0?2*t/(r+t)*100:0,v:r+t,a:o}),X=e=>ct(A(e)),Y=({h:e,s:t,v:r,a:o})=>{let s=(200-t)*r/100;return{h:a(e),s:a(s>0&&s<200?t*r/100/(s<=100?s:200-s)*100:0),l:a(s/2),a:a(o,2)}};var d=e=>{let{h:t,s:r,l:o}=Y(e);return`hsl(${t}, ${r}%, ${o}%)`},$=e=>{let{h:t,s:r,l:o,a:s}=Y(e);return`hsla(${t}, ${r}%, ${o}%, ${s})`},A=({h:e,s:t,v:r,a:o})=>{e=e/360*6,t=t/100,r=r/100;let s=Math.floor(e),n=r*(1-t),i=r*(1-(e-s)*t),l=r*(1-(1-e+s)*t),q=s%6;return{r:a([r,i,n,n,l,r][q]*255),g:a([l,r,r,i,n,n][q]*255),b:a([n,n,l,r,r,i][q]*255),a:a(o,2)}},B=e=>{let{r:t,g:r,b:o}=A(e);return`rgb(${t}, ${r}, ${o})`},D=e=>{let{r:t,g:r,b:o,a:s}=A(e);return`rgba(${t}, ${r}, ${o}, ${s})`};var I=e=>{let r=/rgba?\(?\s*(-?\d*\.?\d+)(%)?[,\s]+(-?\d*\.?\d+)(%)?[,\s]+(-?\d*\.?\d+)(%)?,?\s*[/\s]*(-?\d*\.?\d+)?(%)?\s*\)?/i.exec(e);return r?G({r:Number(r[1])/(r[2]?100/255:1),g:Number(r[3])/(r[4]?100/255:1),b:Number(r[5])/(r[6]?100/255:1),a:r[7]===void 0?1:Number(r[7])/(r[8]?100:1)}):{h:0,s:0,v:0,a:1}},U=I,b=e=>{let t=e.toString(16);return t.length<2?"0"+t:t},ct=({r:e,g:t,b:r,a:o})=>{let s=o<1?b(a(o*255)):"";return"#"+b(e)+b(t)+b(r)+s},G=({r:e,g:t,b:r,a:o})=>{let s=Math.max(e,t,r),n=s-Math.min(e,t,r),i=n?s===e?(t-r)/n:s===t?2+(r-e)/n:4+(e-t)/n:0;return{h:a(60*(i<0?i+6:i)),s:a(s?n/s*100:0),v:a(s/255*100),a:o}};var L=(e,t)=>{if(e===t)return!0;for(let r in e)if(e[r]!==t[r])return!1;return!0},h=(e,t)=>e.replace(/\s/g,"")===t.replace(/\s/g,""),K=(e,t)=>e.toLowerCase()===t.toLowerCase()?!0:L(v(e),v(t));var Q={},S=e=>{let t=Q[e];return t||(t=document.createElement("template"),t.innerHTML=e,Q[e]=t),t},f=(e,t,r)=>{e.dispatchEvent(new CustomEvent(t,{bubbles:!0,detail:r}))};var m=!1,O=e=>"touches"in e,pt=e=>m&&!O(e)?!1:(m||(m=O(e)),!0),W=(e,t)=>{let r=O(t)?t.touches[0]:t,o=e.el.getBoundingClientRect();f(e.el,"move",e.getMove({x:c((r.pageX-(o.left+window.pageXOffset))/o.width),y:c((r.pageY-(o.top+window.pageYOffset))/o.height)}))},ut=(e,t)=>{let r=t.keyCode;r>40||e.xy&&r<37||r<33||(t.preventDefault(),f(e.el,"move",e.getMove({x:r===39?.01:r===37?-.01:r===34?.05:r===33?-.05:r===35?1:r===36?-1:0,y:r===40?.01:r===38?-.01:0},!0)))},u=class{constructor(t,r,o,s){let n=S(`
`);t.appendChild(n.content.cloneNode(!0));let i=t.querySelector(`[part=${r}]`);i.addEventListener("mousedown",this),i.addEventListener("touchstart",this),i.addEventListener("keydown",this),this.el=i,this.xy=s,this.nodes=[i.firstChild,i]}set dragging(t){let r=t?document.addEventListener:document.removeEventListener;r(m?"touchmove":"mousemove",this),r(m?"touchend":"mouseup",this)}handleEvent(t){switch(t.type){case"mousedown":case"touchstart":if(t.preventDefault(),!pt(t)||!m&&t.button!=0)return;this.el.focus(),W(this,t),this.dragging=!0;break;case"mousemove":case"touchmove":t.preventDefault(),W(this,t);break;case"mouseup":case"touchend":this.dragging=!1;break;case"keydown":ut(this,t);break}}style(t){t.forEach((r,o)=>{for(let s in r)this.nodes[o].style.setProperty(s,r[s])})}};var H=class extends u{constructor(t){super(t,"hue",'aria-label="Hue" aria-valuemin="0" aria-valuemax="360"',!1)}update({h:t}){this.h=t,this.style([{left:`${t/360*100}%`,color:d({h:t,s:100,v:100,a:1})}]),this.el.setAttribute("aria-valuenow",`${a(t)}`)}getMove(t,r){return{h:r?c(this.h+t.x*360,0,360):360*t.x}}};var w=class extends u{constructor(t){super(t,"saturation",'aria-label="Color"',!0)}update(t){this.hsva=t,this.style([{top:`${100-t.v}%`,left:`${t.s}%`,color:d(t)},{"background-color":d({h:t.h,s:100,v:100,a:1})}]),this.el.setAttribute("aria-valuetext",`Saturation ${a(t.s)}%, Brightness ${a(t.v)}%`)}getMove(t,r){return{s:r?c(this.hsva.s+t.x*100,0,100):t.x*100,v:r?c(this.hsva.v-t.y*100,0,100):Math.round(100-t.y*100)}}};var Z=':host{display:flex;flex-direction:column;position:relative;width:200px;height:200px;user-select:none;-webkit-user-select:none;cursor:default}:host([hidden]){display:none!important}[role=slider]{position:relative;touch-action:none;user-select:none;-webkit-user-select:none;outline:0}[role=slider]:last-child{border-radius:0 0 8px 8px}[part$=pointer]{position:absolute;z-index:1;box-sizing:border-box;width:28px;height:28px;display:flex;place-content:center center;transform:translate(-50%,-50%);background-color:#fff;border:2px solid #fff;border-radius:50%;box-shadow:0 2px 4px rgba(0,0,0,.2)}[part$=pointer]::after{content:"";width:100%;height:100%;border-radius:inherit;background-color:currentColor}[role=slider]:focus [part$=pointer]{transform:translate(-50%,-50%) scale(1.1)}';var tt="[part=hue]{flex:0 0 24px;background:linear-gradient(to right,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%)}[part=hue-pointer]{top:50%;z-index:2}";var rt="[part=saturation]{flex-grow:1;border-color:transparent;border-bottom:12px solid #000;border-radius:8px 8px 0 0;background-image:linear-gradient(to top,#000,transparent),linear-gradient(to right,#fff,rgba(255,255,255,0));box-shadow:inset 0 0 0 1px rgba(0,0,0,.05)}[part=saturation-pointer]{z-index:3}";var T=Symbol("same"),R=Symbol("color"),et=Symbol("hsva"),_=Symbol("update"),ot=Symbol("parts"),g=Symbol("css"),x=Symbol("sliders"),p=class extends HTMLElement{static get observedAttributes(){return["color"]}get[g](){return[Z,tt,rt]}get[x](){return[w,H]}get color(){return this[R]}set color(t){if(!this[T](t)){let r=this.colorModel.toHsva(t);this[_](r),this[R]=t}}constructor(){super();let t=S(``),r=this.attachShadow({mode:"open"});r.appendChild(t.content.cloneNode(!0)),r.addEventListener("move",this),this[ot]=this[x].map(o=>new o(r))}connectedCallback(){if(this.hasOwnProperty("color")){let t=this.color;delete this.color,this.color=t}else this.color||(this.color=this.colorModel.defaultColor)}attributeChangedCallback(t,r,o){let s=this.colorModel.fromAttr(o);this[T](s)||(this.color=s)}handleEvent(t){let r=this[et],o={...r,...t.detail};this[_](o);let s;!L(o,r)&&!this[T](s=this.colorModel.fromHsva(o))&&(this[R]=s,f(this,"color-changed",{value:s}))}[T](t){return this.color&&this.colorModel.equal(t,this.color)}[_](t){this[et]=t,this[ot].forEach(r=>r.update(t))}};var dt={defaultColor:"#000",toHsva:F,fromHsva:({h:e,s:t,v:r})=>X({h:e,s:t,v:r,a:1}),equal:K,fromAttr:e=>e},y=class extends p{get colorModel(){return dt}};var P=class extends y{};customElements.define("hex-color-picker",P);var ht={defaultColor:"hsl(0, 0%, 0%)",toHsva:J,fromHsva:d,equal:h,fromAttr:e=>e},M=class extends p{get colorModel(){return ht}};var z=class extends M{};customElements.define("hsl-string-color-picker",z);var mt={defaultColor:"rgb(0, 0, 0)",toHsva:U,fromHsva:B,equal:h,fromAttr:e=>e},k=class extends p{get colorModel(){return mt}};var V=class extends k{};customElements.define("rgb-string-color-picker",V);var C=class extends u{constructor(t){super(t,"alpha",'aria-label="Alpha" aria-valuemin="0" aria-valuemax="1"',!1)}update(t){this.hsva=t;let r=$({...t,a:0}),o=$({...t,a:1}),s=t.a*100;this.style([{left:`${s}%`,color:$(t)},{"--gradient":`linear-gradient(90deg, ${r}, ${o}`}]);let n=a(s);this.el.setAttribute("aria-valuenow",`${n}`),this.el.setAttribute("aria-valuetext",`${n}%`)}getMove(t,r){return{a:r?c(this.hsva.a+t.x):t.x}}};var st=`[part=alpha]{flex:0 0 24px}[part=alpha]::after{display:block;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:inherit;background-image:var(--gradient);box-shadow:inset 0 0 0 1px rgba(0,0,0,.05)}[part^=alpha]{background-color:#fff;background-image:url('data:image/svg+xml,')}[part=alpha-pointer]{top:50%}`;var E=class extends p{get[g](){return[...super[g],st]}get[x](){return[...super[x],C]}};var ft={defaultColor:"rgba(0, 0, 0, 1)",toHsva:I,fromHsva:D,equal:h,fromAttr:e=>e},N=class extends E{get colorModel(){return ft}};var j=class extends N{};customElements.define("rgba-string-color-picker",j);function gt({isAutofocused:e,isDisabled:t,isLive:r,isLiveDebounced:o,isLiveOnBlur:s,liveDebounce:n,state:i}){return{state:i,init(){this.state===null||this.state===""||this.setState(this.state),e&&this.togglePanelVisibility(this.$refs.input),this.$watch("state",Alpine.debounce(l=>{CSS.supports("color",l)&&(this.$refs.picker.color=l)},200)),this.$refs.input.addEventListener("change",l=>{this.setState(l.target.value)}),this.$refs.panel.addEventListener("color-changed",l=>{this.setState(l.detail.value),!(s||!(r||o))&&setTimeout(()=>{this.state===l.detail.value&&this.commitState()},o?n:250)}),(r||o||s)&&new MutationObserver(()=>this.isOpen()?null:this.commitState()).observe(this.$refs.panel,{attributes:!0,childList:!0})},togglePanelVisibility(){t||this.$refs.panel.toggle(this.$refs.input)},setState(l){this.state=l,this.$refs.input.value=l,this.$refs.picker.color=l},isOpen(){return this.$refs.panel.style.display==="block"},commitState(){JSON.stringify(this.$wire.__instance.canonical)!==JSON.stringify(this.$wire.__instance.ephemeral)&&this.$wire.$commit()}}}export{gt as default}; diff --git a/public/js/filament/forms/components/date-time-picker.js b/public/js/filament/forms/components/date-time-picker.js new file mode 100644 index 0000000..31495b7 --- /dev/null +++ b/public/js/filament/forms/components/date-time-picker.js @@ -0,0 +1 @@ +var Gi=Object.create;var Hn=Object.defineProperty;var Ri=Object.getOwnPropertyDescriptor;var Zi=Object.getOwnPropertyNames;var Vi=Object.getPrototypeOf,Ki=Object.prototype.hasOwnProperty;var v=(n,t)=>()=>(t||n((t={exports:{}}).exports,t),t.exports);var Qi=(n,t,a,i)=>{if(t&&typeof t=="object"||typeof t=="function")for(let e of Zi(t))!Ki.call(n,e)&&e!==a&&Hn(n,e,{get:()=>t[e],enumerable:!(i=Ri(t,e))||i.enumerable});return n};var oe=(n,t,a)=>(a=n!=null?Gi(Vi(n)):{},Qi(t||!n||!n.__esModule?Hn(a,"default",{value:n,enumerable:!0}):a,n));var En=v((He,je)=>{(function(n,t){typeof He=="object"&&typeof je<"u"?je.exports=t():typeof define=="function"&&define.amd?define(t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_plugin_advancedFormat=t()})(He,(function(){"use strict";return function(n,t){var a=t.prototype,i=a.format;a.format=function(e){var r=this,s=this.$locale();if(!this.isValid())return i.bind(this)(e);var _=this.$utils(),d=(e||"YYYY-MM-DDTHH:mm:ssZ").replace(/\[([^\]]+)]|Q|wo|ww|w|WW|W|zzz|z|gggg|GGGG|Do|X|x|k{1,2}|S/g,(function(u){switch(u){case"Q":return Math.ceil((r.$M+1)/3);case"Do":return s.ordinal(r.$D);case"gggg":return r.weekYear();case"GGGG":return r.isoWeekYear();case"wo":return s.ordinal(r.week(),"W");case"w":case"ww":return _.s(r.week(),u==="w"?1:2,"0");case"W":case"WW":return _.s(r.isoWeek(),u==="W"?1:2,"0");case"k":case"kk":return _.s(String(r.$H===0?24:r.$H),u==="k"?1:2,"0");case"X":return Math.floor(r.$d.getTime()/1e3);case"x":return r.$d.getTime();case"z":return"["+r.offsetName()+"]";case"zzz":return"["+r.offsetName("long")+"]";default:return u}}));return i.bind(this)(d)}}}))});var Jn=v((Te,we)=>{(function(n,t){typeof Te=="object"&&typeof we<"u"?we.exports=t():typeof define=="function"&&define.amd?define(t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_plugin_customParseFormat=t()})(Te,(function(){"use strict";var n={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},t=/(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|Q|YYYY|YY?|ww?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g,a=/\d/,i=/\d\d/,e=/\d\d?/,r=/\d*[^-_:/,()\s\d]+/,s={},_=function(c){return(c=+c)+(c>68?1900:2e3)},d=function(c){return function(y){this[c]=+y}},u=[/[+-]\d\d:?(\d\d)?|Z/,function(c){(this.zone||(this.zone={})).offset=(function(y){if(!y||y==="Z")return 0;var D=y.match(/([+-]|\d\d)/g),L=60*D[1]+(+D[2]||0);return L===0?0:D[0]==="+"?-L:L})(c)}],o=function(c){var y=s[c];return y&&(y.indexOf?y:y.s.concat(y.f))},f=function(c,y){var D,L=s.meridiem;if(L){for(var w=1;w<=24;w+=1)if(c.indexOf(L(w,0,y))>-1){D=w>12;break}}else D=c===(y?"pm":"PM");return D},l={A:[r,function(c){this.afternoon=f(c,!1)}],a:[r,function(c){this.afternoon=f(c,!0)}],Q:[a,function(c){this.month=3*(c-1)+1}],S:[a,function(c){this.milliseconds=100*+c}],SS:[i,function(c){this.milliseconds=10*+c}],SSS:[/\d{3}/,function(c){this.milliseconds=+c}],s:[e,d("seconds")],ss:[e,d("seconds")],m:[e,d("minutes")],mm:[e,d("minutes")],H:[e,d("hours")],h:[e,d("hours")],HH:[e,d("hours")],hh:[e,d("hours")],D:[e,d("day")],DD:[i,d("day")],Do:[r,function(c){var y=s.ordinal,D=c.match(/\d+/);if(this.day=D[0],y)for(var L=1;L<=31;L+=1)y(L).replace(/\[|\]/g,"")===c&&(this.day=L)}],w:[e,d("week")],ww:[i,d("week")],M:[e,d("month")],MM:[i,d("month")],MMM:[r,function(c){var y=o("months"),D=(o("monthsShort")||y.map((function(L){return L.slice(0,3)}))).indexOf(c)+1;if(D<1)throw new Error;this.month=D%12||D}],MMMM:[r,function(c){var y=o("months").indexOf(c)+1;if(y<1)throw new Error;this.month=y%12||y}],Y:[/[+-]?\d+/,d("year")],YY:[i,function(c){this.year=_(c)}],YYYY:[/\d{4}/,d("year")],Z:u,ZZ:u};function m(c){var y,D;y=c,D=s&&s.formats;for(var L=(c=y.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,(function($,j,U){var W=U&&U.toUpperCase();return j||D[U]||n[U]||D[W].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,(function(g,M,h){return M||h.slice(1)}))}))).match(t),w=L.length,b=0;b-1)return new Date((Y==="X"?1e3:1)*p);var T=m(Y)(p),q=T.year,N=T.month,F=T.day,P=T.hours,B=T.minutes,Q=T.seconds,ae=T.milliseconds,Z=T.zone,J=T.week,R=new Date,X=F||(q||N?1:R.getDate()),ee=q||R.getFullYear(),fe=0;q&&!N||(fe=N>0?N-1:R.getMonth());var me,pe=P||0,Le=B||0,De=Q||0,ve=ae||0;return Z?new Date(Date.UTC(ee,fe,X,pe,Le,De,ve+60*Z.offset*1e3)):S?new Date(Date.UTC(ee,fe,X,pe,Le,De,ve)):(me=new Date(ee,fe,X,pe,Le,De,ve),J&&(me=H(me).week(J).toDate()),me)}catch{return new Date("")}})(C,x,A,D),this.init(),W&&W!==!0&&(this.$L=this.locale(W).$L),U&&C!=this.format(x)&&(this.$d=new Date("")),s={}}else if(x instanceof Array)for(var g=x.length,M=1;M<=g;M+=1){I[1]=x[M-1];var h=D.apply(this,I);if(h.isValid()){this.$d=h.$d,this.$L=h.$L,this.init();break}M===g&&(this.$d=new Date(""))}else w.call(this,b)}}}))});var Un=v(($e,Ce)=>{(function(n,t){typeof $e=="object"&&typeof Ce<"u"?Ce.exports=t():typeof define=="function"&&define.amd?define(t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_plugin_localeData=t()})($e,(function(){"use strict";return function(n,t,a){var i=t.prototype,e=function(u){return u&&(u.indexOf?u:u.s)},r=function(u,o,f,l,m){var c=u.name?u:u.$locale(),y=e(c[o]),D=e(c[f]),L=y||D.map((function(b){return b.slice(0,l)}));if(!m)return L;var w=c.weekStart;return L.map((function(b,C){return L[(C+(w||0))%7]}))},s=function(){return a.Ls[a.locale()]},_=function(u,o){return u.formats[o]||(function(f){return f.replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,(function(l,m,c){return m||c.slice(1)}))})(u.formats[o.toUpperCase()])},d=function(){var u=this;return{months:function(o){return o?o.format("MMMM"):r(u,"months")},monthsShort:function(o){return o?o.format("MMM"):r(u,"monthsShort","months",3)},firstDayOfWeek:function(){return u.$locale().weekStart||0},weekdays:function(o){return o?o.format("dddd"):r(u,"weekdays")},weekdaysMin:function(o){return o?o.format("dd"):r(u,"weekdaysMin","weekdays",2)},weekdaysShort:function(o){return o?o.format("ddd"):r(u,"weekdaysShort","weekdays",3)},longDateFormat:function(o){return _(u.$locale(),o)},meridiem:this.$locale().meridiem,ordinal:this.$locale().ordinal}};i.localeData=function(){return d.bind(this)()},a.localeData=function(){var u=s();return{firstDayOfWeek:function(){return u.weekStart||0},weekdays:function(){return a.weekdays()},weekdaysShort:function(){return a.weekdaysShort()},weekdaysMin:function(){return a.weekdaysMin()},months:function(){return a.months()},monthsShort:function(){return a.monthsShort()},longDateFormat:function(o){return _(u,o)},meridiem:u.meridiem,ordinal:u.ordinal}},a.months=function(){return r(s(),"months")},a.monthsShort=function(){return r(s(),"monthsShort","months",3)},a.weekdays=function(u){return r(s(),"weekdays",null,null,u)},a.weekdaysShort=function(u){return r(s(),"weekdaysShort","weekdays",3,u)},a.weekdaysMin=function(u){return r(s(),"weekdaysMin","weekdays",2,u)}}}))});var Wn=v((Oe,ze)=>{(function(n,t){typeof Oe=="object"&&typeof ze<"u"?ze.exports=t():typeof define=="function"&&define.amd?define(t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_plugin_timezone=t()})(Oe,(function(){"use strict";var n={year:0,month:1,day:2,hour:3,minute:4,second:5},t={};return function(a,i,e){var r,s=function(o,f,l){l===void 0&&(l={});var m=new Date(o),c=(function(y,D){D===void 0&&(D={});var L=D.timeZoneName||"short",w=y+"|"+L,b=t[w];return b||(b=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:y,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",timeZoneName:L}),t[w]=b),b})(f,l);return c.formatToParts(m)},_=function(o,f){for(var l=s(o,f),m=[],c=0;c=0&&(m[w]=parseInt(L,10))}var b=m[3],C=b===24?0:b,A=m[0]+"-"+m[1]+"-"+m[2]+" "+C+":"+m[4]+":"+m[5]+":000",I=+o;return(e.utc(A).valueOf()-(I-=I%1e3))/6e4},d=i.prototype;d.tz=function(o,f){o===void 0&&(o=r);var l,m=this.utcOffset(),c=this.toDate(),y=c.toLocaleString("en-US",{timeZone:o}),D=Math.round((c-new Date(y))/1e3/60),L=15*-Math.round(c.getTimezoneOffset()/15)-D;if(!Number(L))l=this.utcOffset(0,f);else if(l=e(y,{locale:this.$L}).$set("millisecond",this.$ms).utcOffset(L,!0),f){var w=l.utcOffset();l=l.add(m-w,"minute")}return l.$x.$timezone=o,l},d.offsetName=function(o){var f=this.$x.$timezone||e.tz.guess(),l=s(this.valueOf(),f,{timeZoneName:o}).find((function(m){return m.type.toLowerCase()==="timezonename"}));return l&&l.value};var u=d.startOf;d.startOf=function(o,f){if(!this.$x||!this.$x.$timezone)return u.call(this,o,f);var l=e(this.format("YYYY-MM-DD HH:mm:ss:SSS"),{locale:this.$L});return u.call(l,o,f).tz(this.$x.$timezone,!0)},e.tz=function(o,f,l){var m=l&&f,c=l||f||r,y=_(+e(),c);if(typeof o!="string")return e(o).tz(c);var D=(function(C,A,I){var x=C-60*A*1e3,$=_(x,I);if(A===$)return[x,A];var j=_(x-=60*($-A)*1e3,I);return $===j?[x,$]:[C-60*Math.min($,j)*1e3,Math.max($,j)]})(e.utc(o,m).valueOf(),y,c),L=D[0],w=D[1],b=e(L).utcOffset(w);return b.$x.$timezone=c,b},e.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},e.tz.setDefault=function(o){r=o}}}))});var Pn=v((Ae,qe)=>{(function(n,t){typeof Ae=="object"&&typeof qe<"u"?qe.exports=t():typeof define=="function"&&define.amd?define(t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_plugin_utc=t()})(Ae,(function(){"use strict";var n="minute",t=/[+-]\d\d(?::?\d\d)?/g,a=/([+-]|\d\d)/g;return function(i,e,r){var s=e.prototype;r.utc=function(m){var c={date:m,utc:!0,args:arguments};return new e(c)},s.utc=function(m){var c=r(this.toDate(),{locale:this.$L,utc:!0});return m?c.add(this.utcOffset(),n):c},s.local=function(){return r(this.toDate(),{locale:this.$L,utc:!1})};var _=s.parse;s.parse=function(m){m.utc&&(this.$u=!0),this.$utils().u(m.$offset)||(this.$offset=m.$offset),_.call(this,m)};var d=s.init;s.init=function(){if(this.$u){var m=this.$d;this.$y=m.getUTCFullYear(),this.$M=m.getUTCMonth(),this.$D=m.getUTCDate(),this.$W=m.getUTCDay(),this.$H=m.getUTCHours(),this.$m=m.getUTCMinutes(),this.$s=m.getUTCSeconds(),this.$ms=m.getUTCMilliseconds()}else d.call(this)};var u=s.utcOffset;s.utcOffset=function(m,c){var y=this.$utils().u;if(y(m))return this.$u?0:y(this.$offset)?u.call(this):this.$offset;if(typeof m=="string"&&(m=(function(b){b===void 0&&(b="");var C=b.match(t);if(!C)return null;var A=(""+C[0]).match(a)||["-",0,0],I=A[0],x=60*+A[1]+ +A[2];return x===0?0:I==="+"?x:-x})(m),m===null))return this;var D=Math.abs(m)<=16?60*m:m;if(D===0)return this.utc(c);var L=this.clone();if(c)return L.$offset=D,L.$u=!1,L;var w=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();return(L=this.local().add(D+w,n)).$offset=D,L.$x.$localOffset=w,L};var o=s.format;s.format=function(m){var c=m||(this.$u?"YYYY-MM-DDTHH:mm:ss[Z]":"");return o.call(this,c)},s.valueOf=function(){var m=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*m},s.isUTC=function(){return!!this.$u},s.toISOString=function(){return this.toDate().toISOString()},s.toString=function(){return this.toDate().toUTCString()};var f=s.toDate;s.toDate=function(m){return m==="s"&&this.$offset?r(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate():f.call(this)};var l=s.diff;s.diff=function(m,c,y){if(m&&this.$u===m.$u)return l.call(this,m,c,y);var D=this.local(),L=r(m).local();return l.call(D,L,c,y)}}}))});var k=v((Ie,xe)=>{(function(n,t){typeof Ie=="object"&&typeof xe<"u"?xe.exports=t():typeof define=="function"&&define.amd?define(t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs=t()})(Ie,(function(){"use strict";var n=1e3,t=6e4,a=36e5,i="millisecond",e="second",r="minute",s="hour",_="day",d="week",u="month",o="quarter",f="year",l="date",m="Invalid Date",c=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,y=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,D={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(g){var M=["th","st","nd","rd"],h=g%100;return"["+g+(M[(h-20)%10]||M[h]||M[0])+"]"}},L=function(g,M,h){var p=String(g);return!p||p.length>=M?g:""+Array(M+1-p.length).join(h)+g},w={s:L,z:function(g){var M=-g.utcOffset(),h=Math.abs(M),p=Math.floor(h/60),Y=h%60;return(M<=0?"+":"-")+L(p,2,"0")+":"+L(Y,2,"0")},m:function g(M,h){if(M.date()1)return g(H[0])}else{var T=M.name;C[T]=M,Y=T}return!p&&Y&&(b=Y),Y||!p&&b},$=function(g,M){if(I(g))return g.clone();var h=typeof M=="object"?M:{};return h.date=g,h.args=arguments,new U(h)},j=w;j.l=x,j.i=I,j.w=function(g,M){return $(g,{locale:M.$L,utc:M.$u,x:M.$x,$offset:M.$offset})};var U=(function(){function g(h){this.$L=x(h.locale,null,!0),this.parse(h),this.$x=this.$x||h.x||{},this[A]=!0}var M=g.prototype;return M.parse=function(h){this.$d=(function(p){var Y=p.date,S=p.utc;if(Y===null)return new Date(NaN);if(j.u(Y))return new Date;if(Y instanceof Date)return new Date(Y);if(typeof Y=="string"&&!/Z$/i.test(Y)){var H=Y.match(c);if(H){var T=H[2]-1||0,q=(H[7]||"0").substring(0,3);return S?new Date(Date.UTC(H[1],T,H[3]||1,H[4]||0,H[5]||0,H[6]||0,q)):new Date(H[1],T,H[3]||1,H[4]||0,H[5]||0,H[6]||0,q)}}return new Date(Y)})(h),this.init()},M.init=function(){var h=this.$d;this.$y=h.getFullYear(),this.$M=h.getMonth(),this.$D=h.getDate(),this.$W=h.getDay(),this.$H=h.getHours(),this.$m=h.getMinutes(),this.$s=h.getSeconds(),this.$ms=h.getMilliseconds()},M.$utils=function(){return j},M.isValid=function(){return this.$d.toString()!==m},M.isSame=function(h,p){var Y=$(h);return this.startOf(p)<=Y&&Y<=this.endOf(p)},M.isAfter=function(h,p){return $(h){(function(n,t){typeof Ne=="object"&&typeof Fe<"u"?Fe.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_am=t(n.dayjs)})(Ne,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"am",weekdays:"\u12A5\u1211\u12F5_\u1230\u129E_\u121B\u12AD\u1230\u129E_\u1228\u1261\u12D5_\u1210\u1219\u1235_\u12A0\u122D\u1265_\u1245\u12F3\u121C".split("_"),weekdaysShort:"\u12A5\u1211\u12F5_\u1230\u129E_\u121B\u12AD\u1230_\u1228\u1261\u12D5_\u1210\u1219\u1235_\u12A0\u122D\u1265_\u1245\u12F3\u121C".split("_"),weekdaysMin:"\u12A5\u1211_\u1230\u129E_\u121B\u12AD_\u1228\u1261_\u1210\u1219_\u12A0\u122D_\u1245\u12F3".split("_"),months:"\u1303\u1295\u12CB\u122A_\u134C\u1265\u122F\u122A_\u121B\u122D\u127D_\u12A4\u1355\u122A\u120D_\u121C\u12ED_\u1301\u1295_\u1301\u120B\u12ED_\u12A6\u1308\u1235\u1275_\u1234\u1355\u1274\u121D\u1260\u122D_\u12A6\u12AD\u1276\u1260\u122D_\u1296\u126C\u121D\u1260\u122D_\u12F2\u1234\u121D\u1260\u122D".split("_"),monthsShort:"\u1303\u1295\u12CB_\u134C\u1265\u122F_\u121B\u122D\u127D_\u12A4\u1355\u122A_\u121C\u12ED_\u1301\u1295_\u1301\u120B\u12ED_\u12A6\u1308\u1235_\u1234\u1355\u1274_\u12A6\u12AD\u1276_\u1296\u126C\u121D_\u12F2\u1234\u121D".split("_"),weekStart:1,yearStart:4,relativeTime:{future:"\u1260%s",past:"%s \u1260\u134A\u1275",s:"\u1325\u1242\u1275 \u1230\u12A8\u1295\u12F6\u127D",m:"\u12A0\u1295\u12F5 \u12F0\u1242\u1243",mm:"%d \u12F0\u1242\u1243\u12CE\u127D",h:"\u12A0\u1295\u12F5 \u1230\u12D3\u1275",hh:"%d \u1230\u12D3\u1273\u1275",d:"\u12A0\u1295\u12F5 \u1240\u1295",dd:"%d \u1240\u1293\u1275",M:"\u12A0\u1295\u12F5 \u12C8\u122D",MM:"%d \u12C8\u122B\u1275",y:"\u12A0\u1295\u12F5 \u12D3\u1218\u1275",yy:"%d \u12D3\u1218\u1273\u1275"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"MMMM D \u1363 YYYY",LLL:"MMMM D \u1363 YYYY HH:mm",LLLL:"dddd \u1363 MMMM D \u1363 YYYY HH:mm"},ordinal:function(e){return e+"\u129B"}};return a.default.locale(i,null,!0),i}))});var Rn=v((Ee,Je)=>{(function(n,t){typeof Ee=="object"&&typeof Je<"u"?Je.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_ar=t(n.dayjs)})(Ee,(function(n){"use strict";function t(f){return f&&typeof f=="object"&&"default"in f?f:{default:f}}var a=t(n),i="\u064A\u0646\u0627\u064A\u0631_\u0641\u0628\u0631\u0627\u064A\u0631_\u0645\u0627\u0631\u0633_\u0623\u0628\u0631\u064A\u0644_\u0645\u0627\u064A\u0648_\u064A\u0648\u0646\u064A\u0648_\u064A\u0648\u0644\u064A\u0648_\u0623\u063A\u0633\u0637\u0633_\u0633\u0628\u062A\u0645\u0628\u0631_\u0623\u0643\u062A\u0648\u0628\u0631_\u0646\u0648\u0641\u0645\u0628\u0631_\u062F\u064A\u0633\u0645\u0628\u0631".split("_"),e={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},r={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"},s=/[١٢٣٤٥٦٧٨٩٠]/g,_=/،/g,d=/\d/g,u=/,/g,o={name:"ar",weekdays:"\u0627\u0644\u0623\u062D\u062F_\u0627\u0644\u0625\u062B\u0646\u064A\u0646_\u0627\u0644\u062B\u0644\u0627\u062B\u0627\u0621_\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621_\u0627\u0644\u062E\u0645\u064A\u0633_\u0627\u0644\u062C\u0645\u0639\u0629_\u0627\u0644\u0633\u0628\u062A".split("_"),weekdaysShort:"\u0623\u062D\u062F_\u0625\u062B\u0646\u064A\u0646_\u062B\u0644\u0627\u062B\u0627\u0621_\u0623\u0631\u0628\u0639\u0627\u0621_\u062E\u0645\u064A\u0633_\u062C\u0645\u0639\u0629_\u0633\u0628\u062A".split("_"),weekdaysMin:"\u062D_\u0646_\u062B_\u0631_\u062E_\u062C_\u0633".split("_"),months:i,monthsShort:i,weekStart:6,meridiem:function(f){return f>12?"\u0645":"\u0635"},relativeTime:{future:"\u0628\u0639\u062F %s",past:"\u0645\u0646\u0630 %s",s:"\u062B\u0627\u0646\u064A\u0629 \u0648\u0627\u062D\u062F\u0629",m:"\u062F\u0642\u064A\u0642\u0629 \u0648\u0627\u062D\u062F\u0629",mm:"%d \u062F\u0642\u0627\u0626\u0642",h:"\u0633\u0627\u0639\u0629 \u0648\u0627\u062D\u062F\u0629",hh:"%d \u0633\u0627\u0639\u0627\u062A",d:"\u064A\u0648\u0645 \u0648\u0627\u062D\u062F",dd:"%d \u0623\u064A\u0627\u0645",M:"\u0634\u0647\u0631 \u0648\u0627\u062D\u062F",MM:"%d \u0623\u0634\u0647\u0631",y:"\u0639\u0627\u0645 \u0648\u0627\u062D\u062F",yy:"%d \u0623\u0639\u0648\u0627\u0645"},preparse:function(f){return f.replace(s,(function(l){return r[l]})).replace(_,",")},postformat:function(f){return f.replace(d,(function(l){return e[l]})).replace(u,"\u060C")},ordinal:function(f){return f},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/\u200FM/\u200FYYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"}};return a.default.locale(o,null,!0),o}))});var Zn=v((Ue,We)=>{(function(n,t){typeof Ue=="object"&&typeof We<"u"?We.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_bs=t(n.dayjs)})(Ue,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"bs",weekdays:"nedjelja_ponedjeljak_utorak_srijeda_\u010Detvrtak_petak_subota".split("_"),months:"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar".split("_"),weekStart:1,weekdaysShort:"ned._pon._uto._sri._\u010Det._pet._sub.".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.".split("_"),weekdaysMin:"ne_po_ut_sr_\u010De_pe_su".split("_"),ordinal:function(e){return e},formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"}};return a.default.locale(i,null,!0),i}))});var Vn=v((Pe,Ge)=>{(function(n,t){typeof Pe=="object"&&typeof Ge<"u"?Ge.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_ca=t(n.dayjs)})(Pe,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"ca",weekdays:"Diumenge_Dilluns_Dimarts_Dimecres_Dijous_Divendres_Dissabte".split("_"),weekdaysShort:"Dg._Dl._Dt._Dc._Dj._Dv._Ds.".split("_"),weekdaysMin:"Dg_Dl_Dt_Dc_Dj_Dv_Ds".split("_"),months:"Gener_Febrer_Mar\xE7_Abril_Maig_Juny_Juliol_Agost_Setembre_Octubre_Novembre_Desembre".split("_"),monthsShort:"Gen._Febr._Mar\xE7_Abr._Maig_Juny_Jul._Ag._Set._Oct._Nov._Des.".split("_"),weekStart:1,formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",LLL:"D MMMM [de] YYYY [a les] H:mm",LLLL:"dddd D MMMM [de] YYYY [a les] H:mm",ll:"D MMM YYYY",lll:"D MMM YYYY, H:mm",llll:"ddd D MMM YYYY, H:mm"},relativeTime:{future:"d'aqu\xED %s",past:"fa %s",s:"uns segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},ordinal:function(e){return""+e+(e===1||e===3?"r":e===2?"n":e===4?"t":"\xE8")}};return a.default.locale(i,null,!0),i}))});var Re=v((ye,Kn)=>{(function(n,t){typeof ye=="object"&&typeof Kn<"u"?t(ye,k()):typeof define=="function"&&define.amd?define(["exports","dayjs"],t):t((n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_ku={},n.dayjs)})(ye,(function(n,t){"use strict";function a(d){return d&&typeof d=="object"&&"default"in d?d:{default:d}}var i=a(t),e={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},r={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u0660":"0"},s=["\u06A9\u0627\u0646\u0648\u0648\u0646\u06CC \u062F\u0648\u0648\u06D5\u0645","\u0634\u0648\u0628\u0627\u062A","\u0626\u0627\u062F\u0627\u0631","\u0646\u06CC\u0633\u0627\u0646","\u0626\u0627\u06CC\u0627\u0631","\u062D\u0648\u0632\u06D5\u06CC\u0631\u0627\u0646","\u062A\u06D5\u0645\u0645\u0648\u0648\u0632","\u0626\u0627\u0628","\u0626\u06D5\u06CC\u0644\u0648\u0648\u0644","\u062A\u0634\u0631\u06CC\u0646\u06CC \u06CC\u06D5\u06A9\u06D5\u0645","\u062A\u0634\u0631\u06CC\u0646\u06CC \u062F\u0648\u0648\u06D5\u0645","\u06A9\u0627\u0646\u0648\u0648\u0646\u06CC \u06CC\u06D5\u06A9\u06D5\u0645"],_={name:"ku",months:s,monthsShort:s,weekdays:"\u06CC\u06D5\u06A9\u0634\u06D5\u0645\u0645\u06D5_\u062F\u0648\u0648\u0634\u06D5\u0645\u0645\u06D5_\u0633\u06CE\u0634\u06D5\u0645\u0645\u06D5_\u0686\u0648\u0627\u0631\u0634\u06D5\u0645\u0645\u06D5_\u067E\u06CE\u0646\u062C\u0634\u06D5\u0645\u0645\u06D5_\u0647\u06D5\u06CC\u0646\u06CC_\u0634\u06D5\u0645\u0645\u06D5".split("_"),weekdaysShort:"\u06CC\u06D5\u06A9\u0634\u06D5\u0645_\u062F\u0648\u0648\u0634\u06D5\u0645_\u0633\u06CE\u0634\u06D5\u0645_\u0686\u0648\u0627\u0631\u0634\u06D5\u0645_\u067E\u06CE\u0646\u062C\u0634\u06D5\u0645_\u0647\u06D5\u06CC\u0646\u06CC_\u0634\u06D5\u0645\u0645\u06D5".split("_"),weekStart:6,weekdaysMin:"\u06CC_\u062F_\u0633_\u0686_\u067E_\u0647\u0640_\u0634".split("_"),preparse:function(d){return d.replace(/[١٢٣٤٥٦٧٨٩٠]/g,(function(u){return r[u]})).replace(/،/g,",")},postformat:function(d){return d.replace(/\d/g,(function(u){return e[u]})).replace(/,/g,"\u060C")},ordinal:function(d){return d},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiem:function(d){return d<12?"\u067E.\u0646":"\u062F.\u0646"},relativeTime:{future:"\u0644\u06D5 %s",past:"\u0644\u06D5\u0645\u06D5\u0648\u067E\u06CE\u0634 %s",s:"\u0686\u06D5\u0646\u062F \u0686\u0631\u06A9\u06D5\u06CC\u06D5\u06A9",m:"\u06CC\u06D5\u06A9 \u062E\u0648\u0644\u06D5\u06A9",mm:"%d \u062E\u0648\u0644\u06D5\u06A9",h:"\u06CC\u06D5\u06A9 \u06A9\u0627\u062A\u0698\u0645\u06CE\u0631",hh:"%d \u06A9\u0627\u062A\u0698\u0645\u06CE\u0631",d:"\u06CC\u06D5\u06A9 \u0695\u06C6\u0698",dd:"%d \u0695\u06C6\u0698",M:"\u06CC\u06D5\u06A9 \u0645\u0627\u0646\u06AF",MM:"%d \u0645\u0627\u0646\u06AF",y:"\u06CC\u06D5\u06A9 \u0633\u0627\u06B5",yy:"%d \u0633\u0627\u06B5"}};i.default.locale(_,null,!0),n.default=_,n.englishToArabicNumbersMap=e,Object.defineProperty(n,"__esModule",{value:!0})}))});var Qn=v((Ze,Ve)=>{(function(n,t){typeof Ze=="object"&&typeof Ve<"u"?Ve.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_cs=t(n.dayjs)})(Ze,(function(n){"use strict";function t(s){return s&&typeof s=="object"&&"default"in s?s:{default:s}}var a=t(n);function i(s){return s>1&&s<5&&~~(s/10)!=1}function e(s,_,d,u){var o=s+" ";switch(d){case"s":return _||u?"p\xE1r sekund":"p\xE1r sekundami";case"m":return _?"minuta":u?"minutu":"minutou";case"mm":return _||u?o+(i(s)?"minuty":"minut"):o+"minutami";case"h":return _?"hodina":u?"hodinu":"hodinou";case"hh":return _||u?o+(i(s)?"hodiny":"hodin"):o+"hodinami";case"d":return _||u?"den":"dnem";case"dd":return _||u?o+(i(s)?"dny":"dn\xED"):o+"dny";case"M":return _||u?"m\u011Bs\xEDc":"m\u011Bs\xEDcem";case"MM":return _||u?o+(i(s)?"m\u011Bs\xEDce":"m\u011Bs\xEDc\u016F"):o+"m\u011Bs\xEDci";case"y":return _||u?"rok":"rokem";case"yy":return _||u?o+(i(s)?"roky":"let"):o+"lety"}}var r={name:"cs",weekdays:"ned\u011Ble_pond\u011Bl\xED_\xFAter\xFD_st\u0159eda_\u010Dtvrtek_p\xE1tek_sobota".split("_"),weekdaysShort:"ne_po_\xFAt_st_\u010Dt_p\xE1_so".split("_"),weekdaysMin:"ne_po_\xFAt_st_\u010Dt_p\xE1_so".split("_"),months:"leden_\xFAnor_b\u0159ezen_duben_kv\u011Bten_\u010Derven_\u010Dervenec_srpen_z\xE1\u0159\xED_\u0159\xEDjen_listopad_prosinec".split("_"),monthsShort:"led_\xFAno_b\u0159e_dub_kv\u011B_\u010Dvn_\u010Dvc_srp_z\xE1\u0159_\u0159\xEDj_lis_pro".split("_"),weekStart:1,yearStart:4,ordinal:function(s){return s+"."},formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},relativeTime:{future:"za %s",past:"p\u0159ed %s",s:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e}};return a.default.locale(r,null,!0),r}))});var Xn=v((Ke,Qe)=>{(function(n,t){typeof Ke=="object"&&typeof Qe<"u"?Qe.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_cy=t(n.dayjs)})(Ke,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"cy",weekdays:"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn".split("_"),months:"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr".split("_"),weekStart:1,weekdaysShort:"Sul_Llun_Maw_Mer_Iau_Gwe_Sad".split("_"),monthsShort:"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag".split("_"),weekdaysMin:"Su_Ll_Ma_Me_Ia_Gw_Sa".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},relativeTime:{future:"mewn %s",past:"%s yn \xF4l",s:"ychydig eiliadau",m:"munud",mm:"%d munud",h:"awr",hh:"%d awr",d:"diwrnod",dd:"%d diwrnod",M:"mis",MM:"%d mis",y:"blwyddyn",yy:"%d flynedd"}};return a.default.locale(i,null,!0),i}))});var Bn=v((Xe,Be)=>{(function(n,t){typeof Xe=="object"&&typeof Be<"u"?Be.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_da=t(n.dayjs)})(Xe,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"da",weekdays:"s\xF8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\xF8rdag".split("_"),weekdaysShort:"s\xF8n._man._tirs._ons._tors._fre._l\xF8r.".split("_"),weekdaysMin:"s\xF8._ma._ti._on._to._fr._l\xF8.".split("_"),months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj_juni_juli_aug._sept._okt._nov._dec.".split("_"),weekStart:1,yearStart:4,ordinal:function(e){return e+"."},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY [kl.] HH:mm"},relativeTime:{future:"om %s",past:"%s siden",s:"f\xE5 sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en m\xE5ned",MM:"%d m\xE5neder",y:"et \xE5r",yy:"%d \xE5r"}};return a.default.locale(i,null,!0),i}))});var ei=v((et,tt)=>{(function(n,t){typeof et=="object"&&typeof tt<"u"?tt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_de=t(n.dayjs)})(et,(function(n){"use strict";function t(s){return s&&typeof s=="object"&&"default"in s?s:{default:s}}var a=t(n),i={s:"ein paar Sekunden",m:["eine Minute","einer Minute"],mm:"%d Minuten",h:["eine Stunde","einer Stunde"],hh:"%d Stunden",d:["ein Tag","einem Tag"],dd:["%d Tage","%d Tagen"],M:["ein Monat","einem Monat"],MM:["%d Monate","%d Monaten"],y:["ein Jahr","einem Jahr"],yy:["%d Jahre","%d Jahren"]};function e(s,_,d){var u=i[d];return Array.isArray(u)&&(u=u[_?0:1]),u.replace("%d",s)}var r={name:"de",weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),months:"Januar_Februar_M\xE4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._M\xE4rz_Apr._Mai_Juni_Juli_Aug._Sept._Okt._Nov._Dez.".split("_"),ordinal:function(s){return s+"."},weekStart:1,yearStart:4,formats:{LTS:"HH:mm:ss",LT:"HH:mm",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},relativeTime:{future:"in %s",past:"vor %s",s:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e}};return a.default.locale(r,null,!0),r}))});var ti=v((nt,it)=>{(function(n,t){typeof nt=="object"&&typeof it<"u"?it.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_el=t(n.dayjs)})(nt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"el",weekdays:"\u039A\u03C5\u03C1\u03B9\u03B1\u03BA\u03AE_\u0394\u03B5\u03C5\u03C4\u03AD\u03C1\u03B1_\u03A4\u03C1\u03AF\u03C4\u03B7_\u03A4\u03B5\u03C4\u03AC\u03C1\u03C4\u03B7_\u03A0\u03AD\u03BC\u03C0\u03C4\u03B7_\u03A0\u03B1\u03C1\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE_\u03A3\u03AC\u03B2\u03B2\u03B1\u03C4\u03BF".split("_"),weekdaysShort:"\u039A\u03C5\u03C1_\u0394\u03B5\u03C5_\u03A4\u03C1\u03B9_\u03A4\u03B5\u03C4_\u03A0\u03B5\u03BC_\u03A0\u03B1\u03C1_\u03A3\u03B1\u03B2".split("_"),weekdaysMin:"\u039A\u03C5_\u0394\u03B5_\u03A4\u03C1_\u03A4\u03B5_\u03A0\u03B5_\u03A0\u03B1_\u03A3\u03B1".split("_"),months:"\u0399\u03B1\u03BD\u03BF\u03C5\u03AC\u03C1\u03B9\u03BF\u03C2_\u03A6\u03B5\u03B2\u03C1\u03BF\u03C5\u03AC\u03C1\u03B9\u03BF\u03C2_\u039C\u03AC\u03C1\u03C4\u03B9\u03BF\u03C2_\u0391\u03C0\u03C1\u03AF\u03BB\u03B9\u03BF\u03C2_\u039C\u03AC\u03B9\u03BF\u03C2_\u0399\u03BF\u03CD\u03BD\u03B9\u03BF\u03C2_\u0399\u03BF\u03CD\u03BB\u03B9\u03BF\u03C2_\u0391\u03CD\u03B3\u03BF\u03C5\u03C3\u03C4\u03BF\u03C2_\u03A3\u03B5\u03C0\u03C4\u03AD\u03BC\u03B2\u03C1\u03B9\u03BF\u03C2_\u039F\u03BA\u03C4\u03CE\u03B2\u03C1\u03B9\u03BF\u03C2_\u039D\u03BF\u03AD\u03BC\u03B2\u03C1\u03B9\u03BF\u03C2_\u0394\u03B5\u03BA\u03AD\u03BC\u03B2\u03C1\u03B9\u03BF\u03C2".split("_"),monthsShort:"\u0399\u03B1\u03BD_\u03A6\u03B5\u03B2_\u039C\u03B1\u03C1_\u0391\u03C0\u03C1_\u039C\u03B1\u03B9_\u0399\u03BF\u03C5\u03BD_\u0399\u03BF\u03C5\u03BB_\u0391\u03C5\u03B3_\u03A3\u03B5\u03C0\u03C4_\u039F\u03BA\u03C4_\u039D\u03BF\u03B5_\u0394\u03B5\u03BA".split("_"),ordinal:function(e){return e},weekStart:1,relativeTime:{future:"\u03C3\u03B5 %s",past:"\u03C0\u03C1\u03B9\u03BD %s",s:"\u03BC\u03B5\u03C1\u03B9\u03BA\u03AC \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03CC\u03BB\u03B5\u03C0\u03C4\u03B1",m:"\u03AD\u03BD\u03B1 \u03BB\u03B5\u03C0\u03C4\u03CC",mm:"%d \u03BB\u03B5\u03C0\u03C4\u03AC",h:"\u03BC\u03AF\u03B1 \u03CE\u03C1\u03B1",hh:"%d \u03CE\u03C1\u03B5\u03C2",d:"\u03BC\u03AF\u03B1 \u03BC\u03AD\u03C1\u03B1",dd:"%d \u03BC\u03AD\u03C1\u03B5\u03C2",M:"\u03AD\u03BD\u03B1 \u03BC\u03AE\u03BD\u03B1",MM:"%d \u03BC\u03AE\u03BD\u03B5\u03C2",y:"\u03AD\u03BD\u03B1 \u03C7\u03C1\u03CC\u03BD\u03BF",yy:"%d \u03C7\u03C1\u03CC\u03BD\u03B9\u03B1"},formats:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"}};return a.default.locale(i,null,!0),i}))});var ni=v((rt,at)=>{(function(n,t){typeof rt=="object"&&typeof at<"u"?at.exports=t():typeof define=="function"&&define.amd?define(t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_en=t()})(rt,(function(){"use strict";return{name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(n){var t=["th","st","nd","rd"],a=n%100;return"["+n+(t[(a-20)%10]||t[a]||t[0])+"]"}}}))});var ii=v((st,ut)=>{(function(n,t){typeof st=="object"&&typeof ut<"u"?ut.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_es=t(n.dayjs)})(st,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"es",monthsShort:"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),weekdays:"domingo_lunes_martes_mi\xE9rcoles_jueves_viernes_s\xE1bado".split("_"),weekdaysShort:"dom._lun._mar._mi\xE9._jue._vie._s\xE1b.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_s\xE1".split("_"),months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),weekStart:1,formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un d\xEDa",dd:"%d d\xEDas",M:"un mes",MM:"%d meses",y:"un a\xF1o",yy:"%d a\xF1os"},ordinal:function(e){return e+"\xBA"}};return a.default.locale(i,null,!0),i}))});var ri=v((dt,ot)=>{(function(n,t){typeof dt=="object"&&typeof ot<"u"?ot.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_et=t(n.dayjs)})(dt,(function(n){"use strict";function t(r){return r&&typeof r=="object"&&"default"in r?r:{default:r}}var a=t(n);function i(r,s,_,d){var u={s:["m\xF5ne sekundi","m\xF5ni sekund","paar sekundit"],m:["\xFChe minuti","\xFCks minut"],mm:["%d minuti","%d minutit"],h:["\xFChe tunni","tund aega","\xFCks tund"],hh:["%d tunni","%d tundi"],d:["\xFChe p\xE4eva","\xFCks p\xE4ev"],M:["kuu aja","kuu aega","\xFCks kuu"],MM:["%d kuu","%d kuud"],y:["\xFChe aasta","aasta","\xFCks aasta"],yy:["%d aasta","%d aastat"]};return s?(u[_][2]?u[_][2]:u[_][1]).replace("%d",r):(d?u[_][0]:u[_][1]).replace("%d",r)}var e={name:"et",weekdays:"p\xFChap\xE4ev_esmasp\xE4ev_teisip\xE4ev_kolmap\xE4ev_neljap\xE4ev_reede_laup\xE4ev".split("_"),weekdaysShort:"P_E_T_K_N_R_L".split("_"),weekdaysMin:"P_E_T_K_N_R_L".split("_"),months:"jaanuar_veebruar_m\xE4rts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember".split("_"),monthsShort:"jaan_veebr_m\xE4rts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets".split("_"),ordinal:function(r){return r+"."},weekStart:1,relativeTime:{future:"%s p\xE4rast",past:"%s tagasi",s:i,m:i,mm:i,h:i,hh:i,d:i,dd:"%d p\xE4eva",M:i,MM:i,y:i,yy:i},formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"}};return a.default.locale(e,null,!0),e}))});var ai=v((_t,lt)=>{(function(n,t){typeof _t=="object"&&typeof lt<"u"?lt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_fa=t(n.dayjs)})(_t,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"fa",weekdays:"\u06CC\u06A9\u200C\u0634\u0646\u0628\u0647_\u062F\u0648\u0634\u0646\u0628\u0647_\u0633\u0647\u200C\u0634\u0646\u0628\u0647_\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647_\u067E\u0646\u062C\u200C\u0634\u0646\u0628\u0647_\u062C\u0645\u0639\u0647_\u0634\u0646\u0628\u0647".split("_"),weekdaysShort:"\u06CC\u06A9\u200C\u0634\u0646\u0628\u0647_\u062F\u0648\u0634\u0646\u0628\u0647_\u0633\u0647\u200C\u0634\u0646\u0628\u0647_\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647_\u067E\u0646\u062C\u200C\u0634\u0646\u0628\u0647_\u062C\u0645\u0639\u0647_\u0634\u0646\u0628\u0647".split("_"),weekdaysMin:"\u06CC_\u062F_\u0633_\u0686_\u067E_\u062C_\u0634".split("_"),weekStart:6,months:"\u0698\u0627\u0646\u0648\u06CC\u0647_\u0641\u0648\u0631\u06CC\u0647_\u0645\u0627\u0631\u0633_\u0622\u0648\u0631\u06CC\u0644_\u0645\u0647_\u0698\u0648\u0626\u0646_\u0698\u0648\u0626\u06CC\u0647_\u0627\u0648\u062A_\u0633\u067E\u062A\u0627\u0645\u0628\u0631_\u0627\u06A9\u062A\u0628\u0631_\u0646\u0648\u0627\u0645\u0628\u0631_\u062F\u0633\u0627\u0645\u0628\u0631".split("_"),monthsShort:"\u0698\u0627\u0646\u0648\u06CC\u0647_\u0641\u0648\u0631\u06CC\u0647_\u0645\u0627\u0631\u0633_\u0622\u0648\u0631\u06CC\u0644_\u0645\u0647_\u0698\u0648\u0626\u0646_\u0698\u0648\u0626\u06CC\u0647_\u0627\u0648\u062A_\u0633\u067E\u062A\u0627\u0645\u0628\u0631_\u0627\u06A9\u062A\u0628\u0631_\u0646\u0648\u0627\u0645\u0628\u0631_\u062F\u0633\u0627\u0645\u0628\u0631".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},relativeTime:{future:"\u062F\u0631 %s",past:"%s \u067E\u06CC\u0634",s:"\u0686\u0646\u062F \u062B\u0627\u0646\u06CC\u0647",m:"\u06CC\u06A9 \u062F\u0642\u06CC\u0642\u0647",mm:"%d \u062F\u0642\u06CC\u0642\u0647",h:"\u06CC\u06A9 \u0633\u0627\u0639\u062A",hh:"%d \u0633\u0627\u0639\u062A",d:"\u06CC\u06A9 \u0631\u0648\u0632",dd:"%d \u0631\u0648\u0632",M:"\u06CC\u06A9 \u0645\u0627\u0647",MM:"%d \u0645\u0627\u0647",y:"\u06CC\u06A9 \u0633\u0627\u0644",yy:"%d \u0633\u0627\u0644"}};return a.default.locale(i,null,!0),i}))});var si=v((ft,mt)=>{(function(n,t){typeof ft=="object"&&typeof mt<"u"?mt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_fi=t(n.dayjs)})(ft,(function(n){"use strict";function t(r){return r&&typeof r=="object"&&"default"in r?r:{default:r}}var a=t(n);function i(r,s,_,d){var u={s:"muutama sekunti",m:"minuutti",mm:"%d minuuttia",h:"tunti",hh:"%d tuntia",d:"p\xE4iv\xE4",dd:"%d p\xE4iv\xE4\xE4",M:"kuukausi",MM:"%d kuukautta",y:"vuosi",yy:"%d vuotta",numbers:"nolla_yksi_kaksi_kolme_nelj\xE4_viisi_kuusi_seitsem\xE4n_kahdeksan_yhdeks\xE4n".split("_")},o={s:"muutaman sekunnin",m:"minuutin",mm:"%d minuutin",h:"tunnin",hh:"%d tunnin",d:"p\xE4iv\xE4n",dd:"%d p\xE4iv\xE4n",M:"kuukauden",MM:"%d kuukauden",y:"vuoden",yy:"%d vuoden",numbers:"nollan_yhden_kahden_kolmen_nelj\xE4n_viiden_kuuden_seitsem\xE4n_kahdeksan_yhdeks\xE4n".split("_")},f=d&&!s?o:u,l=f[_];return r<10?l.replace("%d",f.numbers[r]):l.replace("%d",r)}var e={name:"fi",weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kes\xE4kuu_hein\xE4kuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kes\xE4_hein\xE4_elo_syys_loka_marras_joulu".split("_"),ordinal:function(r){return r+"."},weekStart:1,yearStart:4,relativeTime:{future:"%s p\xE4\xE4st\xE4",past:"%s sitten",s:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},formats:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"D. MMMM[ta] YYYY",LLL:"D. MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, D. MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"D. MMM YYYY",lll:"D. MMM YYYY, [klo] HH.mm",llll:"ddd, D. MMM YYYY, [klo] HH.mm"}};return a.default.locale(e,null,!0),e}))});var ui=v((ct,ht)=>{(function(n,t){typeof ct=="object"&&typeof ht<"u"?ht.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_fr=t(n.dayjs)})(ct,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"fr",weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),months:"janvier_f\xE9vrier_mars_avril_mai_juin_juillet_ao\xFBt_septembre_octobre_novembre_d\xE9cembre".split("_"),monthsShort:"janv._f\xE9vr._mars_avr._mai_juin_juil._ao\xFBt_sept._oct._nov._d\xE9c.".split("_"),weekStart:1,yearStart:4,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinal:function(e){return""+e+(e===1?"er":"")}};return a.default.locale(i,null,!0),i}))});var di=v((Mt,Yt)=>{(function(n,t){typeof Mt=="object"&&typeof Yt<"u"?Yt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_he=t(n.dayjs)})(Mt,(function(n){"use strict";function t(s){return s&&typeof s=="object"&&"default"in s?s:{default:s}}var a=t(n),i={s:"\u05DE\u05E1\u05E4\u05E8 \u05E9\u05E0\u05D9\u05D5\u05EA",ss:"%d \u05E9\u05E0\u05D9\u05D5\u05EA",m:"\u05D3\u05E7\u05D4",mm:"%d \u05D3\u05E7\u05D5\u05EA",h:"\u05E9\u05E2\u05D4",hh:"%d \u05E9\u05E2\u05D5\u05EA",hh2:"\u05E9\u05E2\u05EA\u05D9\u05D9\u05DD",d:"\u05D9\u05D5\u05DD",dd:"%d \u05D9\u05DE\u05D9\u05DD",dd2:"\u05D9\u05D5\u05DE\u05D9\u05D9\u05DD",M:"\u05D7\u05D5\u05D3\u05E9",MM:"%d \u05D7\u05D5\u05D3\u05E9\u05D9\u05DD",MM2:"\u05D7\u05D5\u05D3\u05E9\u05D9\u05D9\u05DD",y:"\u05E9\u05E0\u05D4",yy:"%d \u05E9\u05E0\u05D9\u05DD",yy2:"\u05E9\u05E0\u05EA\u05D9\u05D9\u05DD"};function e(s,_,d){return(i[d+(s===2?"2":"")]||i[d]).replace("%d",s)}var r={name:"he",weekdays:"\u05E8\u05D0\u05E9\u05D5\u05DF_\u05E9\u05E0\u05D9_\u05E9\u05DC\u05D9\u05E9\u05D9_\u05E8\u05D1\u05D9\u05E2\u05D9_\u05D7\u05DE\u05D9\u05E9\u05D9_\u05E9\u05D9\u05E9\u05D9_\u05E9\u05D1\u05EA".split("_"),weekdaysShort:"\u05D0\u05F3_\u05D1\u05F3_\u05D2\u05F3_\u05D3\u05F3_\u05D4\u05F3_\u05D5\u05F3_\u05E9\u05F3".split("_"),weekdaysMin:"\u05D0\u05F3_\u05D1\u05F3_\u05D2\u05F3_\u05D3\u05F3_\u05D4\u05F3_\u05D5_\u05E9\u05F3".split("_"),months:"\u05D9\u05E0\u05D5\u05D0\u05E8_\u05E4\u05D1\u05E8\u05D5\u05D0\u05E8_\u05DE\u05E8\u05E5_\u05D0\u05E4\u05E8\u05D9\u05DC_\u05DE\u05D0\u05D9_\u05D9\u05D5\u05E0\u05D9_\u05D9\u05D5\u05DC\u05D9_\u05D0\u05D5\u05D2\u05D5\u05E1\u05D8_\u05E1\u05E4\u05D8\u05DE\u05D1\u05E8_\u05D0\u05D5\u05E7\u05D8\u05D5\u05D1\u05E8_\u05E0\u05D5\u05D1\u05DE\u05D1\u05E8_\u05D3\u05E6\u05DE\u05D1\u05E8".split("_"),monthsShort:"\u05D9\u05E0\u05D5_\u05E4\u05D1\u05E8_\u05DE\u05E8\u05E5_\u05D0\u05E4\u05E8_\u05DE\u05D0\u05D9_\u05D9\u05D5\u05E0_\u05D9\u05D5\u05DC_\u05D0\u05D5\u05D2_\u05E1\u05E4\u05D8_\u05D0\u05D5\u05E7_\u05E0\u05D5\u05D1_\u05D3\u05E6\u05DE".split("_"),relativeTime:{future:"\u05D1\u05E2\u05D5\u05D3 %s",past:"\u05DC\u05E4\u05E0\u05D9 %s",s:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinal:function(s){return s},format:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [\u05D1]MMMM YYYY",LLL:"D [\u05D1]MMMM YYYY HH:mm",LLLL:"dddd, D [\u05D1]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [\u05D1]MMMM YYYY",LLL:"D [\u05D1]MMMM YYYY HH:mm",LLLL:"dddd, D [\u05D1]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"}};return a.default.locale(r,null,!0),r}))});var oi=v((yt,pt)=>{(function(n,t){typeof yt=="object"&&typeof pt<"u"?pt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_hi=t(n.dayjs)})(yt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"hi",weekdays:"\u0930\u0935\u093F\u0935\u093E\u0930_\u0938\u094B\u092E\u0935\u093E\u0930_\u092E\u0902\u0917\u0932\u0935\u093E\u0930_\u092C\u0941\u0927\u0935\u093E\u0930_\u0917\u0941\u0930\u0942\u0935\u093E\u0930_\u0936\u0941\u0915\u094D\u0930\u0935\u093E\u0930_\u0936\u0928\u093F\u0935\u093E\u0930".split("_"),months:"\u091C\u0928\u0935\u0930\u0940_\u092B\u093C\u0930\u0935\u0930\u0940_\u092E\u093E\u0930\u094D\u091A_\u0905\u092A\u094D\u0930\u0948\u0932_\u092E\u0908_\u091C\u0942\u0928_\u091C\u0941\u0932\u093E\u0908_\u0905\u0917\u0938\u094D\u0924_\u0938\u093F\u0924\u092E\u094D\u092C\u0930_\u0905\u0915\u094D\u091F\u0942\u092C\u0930_\u0928\u0935\u092E\u094D\u092C\u0930_\u0926\u093F\u0938\u092E\u094D\u092C\u0930".split("_"),weekdaysShort:"\u0930\u0935\u093F_\u0938\u094B\u092E_\u092E\u0902\u0917\u0932_\u092C\u0941\u0927_\u0917\u0941\u0930\u0942_\u0936\u0941\u0915\u094D\u0930_\u0936\u0928\u093F".split("_"),monthsShort:"\u091C\u0928._\u092B\u093C\u0930._\u092E\u093E\u0930\u094D\u091A_\u0905\u092A\u094D\u0930\u0948._\u092E\u0908_\u091C\u0942\u0928_\u091C\u0941\u0932._\u0905\u0917._\u0938\u093F\u0924._\u0905\u0915\u094D\u091F\u0942._\u0928\u0935._\u0926\u093F\u0938.".split("_"),weekdaysMin:"\u0930_\u0938\u094B_\u092E\u0902_\u092C\u0941_\u0917\u0941_\u0936\u0941_\u0936".split("_"),ordinal:function(e){return e},formats:{LT:"A h:mm \u092C\u091C\u0947",LTS:"A h:mm:ss \u092C\u091C\u0947",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u092C\u091C\u0947",LLLL:"dddd, D MMMM YYYY, A h:mm \u092C\u091C\u0947"},relativeTime:{future:"%s \u092E\u0947\u0902",past:"%s \u092A\u0939\u0932\u0947",s:"\u0915\u0941\u091B \u0939\u0940 \u0915\u094D\u0937\u0923",m:"\u090F\u0915 \u092E\u093F\u0928\u091F",mm:"%d \u092E\u093F\u0928\u091F",h:"\u090F\u0915 \u0918\u0902\u091F\u093E",hh:"%d \u0918\u0902\u091F\u0947",d:"\u090F\u0915 \u0926\u093F\u0928",dd:"%d \u0926\u093F\u0928",M:"\u090F\u0915 \u092E\u0939\u0940\u0928\u0947",MM:"%d \u092E\u0939\u0940\u0928\u0947",y:"\u090F\u0915 \u0935\u0930\u094D\u0937",yy:"%d \u0935\u0930\u094D\u0937"}};return a.default.locale(i,null,!0),i}))});var _i=v((Lt,Dt)=>{(function(n,t){typeof Lt=="object"&&typeof Dt<"u"?Dt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_hu=t(n.dayjs)})(Lt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"hu",weekdays:"vas\xE1rnap_h\xE9tf\u0151_kedd_szerda_cs\xFCt\xF6rt\xF6k_p\xE9ntek_szombat".split("_"),weekdaysShort:"vas_h\xE9t_kedd_sze_cs\xFCt_p\xE9n_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),months:"janu\xE1r_febru\xE1r_m\xE1rcius_\xE1prilis_m\xE1jus_j\xFAnius_j\xFAlius_augusztus_szeptember_okt\xF3ber_november_december".split("_"),monthsShort:"jan_feb_m\xE1rc_\xE1pr_m\xE1j_j\xFAn_j\xFAl_aug_szept_okt_nov_dec".split("_"),ordinal:function(e){return e+"."},weekStart:1,relativeTime:{future:"%s m\xFAlva",past:"%s",s:function(e,r,s,_){return"n\xE9h\xE1ny m\xE1sodperc"+(_||r?"":"e")},m:function(e,r,s,_){return"egy perc"+(_||r?"":"e")},mm:function(e,r,s,_){return e+" perc"+(_||r?"":"e")},h:function(e,r,s,_){return"egy "+(_||r?"\xF3ra":"\xF3r\xE1ja")},hh:function(e,r,s,_){return e+" "+(_||r?"\xF3ra":"\xF3r\xE1ja")},d:function(e,r,s,_){return"egy "+(_||r?"nap":"napja")},dd:function(e,r,s,_){return e+" "+(_||r?"nap":"napja")},M:function(e,r,s,_){return"egy "+(_||r?"h\xF3nap":"h\xF3napja")},MM:function(e,r,s,_){return e+" "+(_||r?"h\xF3nap":"h\xF3napja")},y:function(e,r,s,_){return"egy "+(_||r?"\xE9v":"\xE9ve")},yy:function(e,r,s,_){return e+" "+(_||r?"\xE9v":"\xE9ve")}},formats:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"}};return a.default.locale(i,null,!0),i}))});var li=v((vt,gt)=>{(function(n,t){typeof vt=="object"&&typeof gt<"u"?gt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_hy_am=t(n.dayjs)})(vt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"hy-am",weekdays:"\u056F\u056B\u0580\u0561\u056F\u056B_\u0565\u0580\u056F\u0578\u0582\u0577\u0561\u0562\u0569\u056B_\u0565\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056B_\u0579\u0578\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056B_\u0570\u056B\u0576\u0563\u0577\u0561\u0562\u0569\u056B_\u0578\u0582\u0580\u0562\u0561\u0569_\u0577\u0561\u0562\u0561\u0569".split("_"),months:"\u0570\u0578\u0582\u0576\u057E\u0561\u0580\u056B_\u0583\u0565\u057F\u0580\u057E\u0561\u0580\u056B_\u0574\u0561\u0580\u057F\u056B_\u0561\u057A\u0580\u056B\u056C\u056B_\u0574\u0561\u0575\u056B\u057D\u056B_\u0570\u0578\u0582\u0576\u056B\u057D\u056B_\u0570\u0578\u0582\u056C\u056B\u057D\u056B_\u0585\u0563\u0578\u057D\u057F\u0578\u057D\u056B_\u057D\u0565\u057A\u057F\u0565\u0574\u0562\u0565\u0580\u056B_\u0570\u0578\u056F\u057F\u0565\u0574\u0562\u0565\u0580\u056B_\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580\u056B_\u0564\u0565\u056F\u057F\u0565\u0574\u0562\u0565\u0580\u056B".split("_"),weekStart:1,weekdaysShort:"\u056F\u0580\u056F_\u0565\u0580\u056F_\u0565\u0580\u0584_\u0579\u0580\u0584_\u0570\u0576\u0563_\u0578\u0582\u0580\u0562_\u0577\u0562\u0569".split("_"),monthsShort:"\u0570\u0576\u057E_\u0583\u057F\u0580_\u0574\u0580\u057F_\u0561\u057A\u0580_\u0574\u0575\u057D_\u0570\u0576\u057D_\u0570\u056C\u057D_\u0585\u0563\u057D_\u057D\u057A\u057F_\u0570\u056F\u057F_\u0576\u0574\u0562_\u0564\u056F\u057F".split("_"),weekdaysMin:"\u056F\u0580\u056F_\u0565\u0580\u056F_\u0565\u0580\u0584_\u0579\u0580\u0584_\u0570\u0576\u0563_\u0578\u0582\u0580\u0562_\u0577\u0562\u0569".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0569.",LLL:"D MMMM YYYY \u0569., HH:mm",LLLL:"dddd, D MMMM YYYY \u0569., HH:mm"},relativeTime:{future:"%s \u0570\u0565\u057F\u0578",past:"%s \u0561\u057C\u0561\u057B",s:"\u0574\u056B \u0584\u0561\u0576\u056B \u057E\u0561\u0575\u0580\u056F\u0575\u0561\u0576",m:"\u0580\u0578\u057A\u0565",mm:"%d \u0580\u0578\u057A\u0565",h:"\u056A\u0561\u0574",hh:"%d \u056A\u0561\u0574",d:"\u0585\u0580",dd:"%d \u0585\u0580",M:"\u0561\u0574\u056B\u057D",MM:"%d \u0561\u0574\u056B\u057D",y:"\u057F\u0561\u0580\u056B",yy:"%d \u057F\u0561\u0580\u056B"}};return a.default.locale(i,null,!0),i}))});var fi=v((bt,St)=>{(function(n,t){typeof bt=="object"&&typeof St<"u"?St.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_id=t(n.dayjs)})(bt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"id",weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),weekStart:1,formats:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},ordinal:function(e){return e+"."}};return a.default.locale(i,null,!0),i}))});var mi=v((kt,Ht)=>{(function(n,t){typeof kt=="object"&&typeof Ht<"u"?Ht.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_it=t(n.dayjs)})(kt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"it",weekdays:"domenica_luned\xEC_marted\xEC_mercoled\xEC_gioved\xEC_venerd\xEC_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),weekStart:1,monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},relativeTime:{future:"tra %s",past:"%s fa",s:"qualche secondo",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},ordinal:function(e){return e+"\xBA"}};return a.default.locale(i,null,!0),i}))});var ci=v((jt,Tt)=>{(function(n,t){typeof jt=="object"&&typeof Tt<"u"?Tt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_ja=t(n.dayjs)})(jt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"ja",weekdays:"\u65E5\u66DC\u65E5_\u6708\u66DC\u65E5_\u706B\u66DC\u65E5_\u6C34\u66DC\u65E5_\u6728\u66DC\u65E5_\u91D1\u66DC\u65E5_\u571F\u66DC\u65E5".split("_"),weekdaysShort:"\u65E5_\u6708_\u706B_\u6C34_\u6728_\u91D1_\u571F".split("_"),weekdaysMin:"\u65E5_\u6708_\u706B_\u6C34_\u6728_\u91D1_\u571F".split("_"),months:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),monthsShort:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),ordinal:function(e){return e+"\u65E5"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY\u5E74M\u6708D\u65E5",LLL:"YYYY\u5E74M\u6708D\u65E5 HH:mm",LLLL:"YYYY\u5E74M\u6708D\u65E5 dddd HH:mm",l:"YYYY/MM/DD",ll:"YYYY\u5E74M\u6708D\u65E5",lll:"YYYY\u5E74M\u6708D\u65E5 HH:mm",llll:"YYYY\u5E74M\u6708D\u65E5(ddd) HH:mm"},meridiem:function(e){return e<12?"\u5348\u524D":"\u5348\u5F8C"},relativeTime:{future:"%s\u5F8C",past:"%s\u524D",s:"\u6570\u79D2",m:"1\u5206",mm:"%d\u5206",h:"1\u6642\u9593",hh:"%d\u6642\u9593",d:"1\u65E5",dd:"%d\u65E5",M:"1\u30F6\u6708",MM:"%d\u30F6\u6708",y:"1\u5E74",yy:"%d\u5E74"}};return a.default.locale(i,null,!0),i}))});var hi=v((wt,$t)=>{(function(n,t){typeof wt=="object"&&typeof $t<"u"?$t.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_ka=t(n.dayjs)})(wt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"ka",weekdays:"\u10D9\u10D5\u10D8\u10E0\u10D0_\u10DD\u10E0\u10E8\u10D0\u10D1\u10D0\u10D7\u10D8_\u10E1\u10D0\u10DB\u10E8\u10D0\u10D1\u10D0\u10D7\u10D8_\u10DD\u10D7\u10EE\u10E8\u10D0\u10D1\u10D0\u10D7\u10D8_\u10EE\u10E3\u10D7\u10E8\u10D0\u10D1\u10D0\u10D7\u10D8_\u10DE\u10D0\u10E0\u10D0\u10E1\u10D9\u10D4\u10D5\u10D8_\u10E8\u10D0\u10D1\u10D0\u10D7\u10D8".split("_"),weekdaysShort:"\u10D9\u10D5\u10D8_\u10DD\u10E0\u10E8_\u10E1\u10D0\u10DB_\u10DD\u10D7\u10EE_\u10EE\u10E3\u10D7_\u10DE\u10D0\u10E0_\u10E8\u10D0\u10D1".split("_"),weekdaysMin:"\u10D9\u10D5_\u10DD\u10E0_\u10E1\u10D0_\u10DD\u10D7_\u10EE\u10E3_\u10DE\u10D0_\u10E8\u10D0".split("_"),months:"\u10D8\u10D0\u10DC\u10D5\u10D0\u10E0\u10D8_\u10D7\u10D4\u10D1\u10D4\u10E0\u10D5\u10D0\u10DA\u10D8_\u10DB\u10D0\u10E0\u10E2\u10D8_\u10D0\u10DE\u10E0\u10D8\u10DA\u10D8_\u10DB\u10D0\u10D8\u10E1\u10D8_\u10D8\u10D5\u10DC\u10D8\u10E1\u10D8_\u10D8\u10D5\u10DA\u10D8\u10E1\u10D8_\u10D0\u10D2\u10D5\u10D8\u10E1\u10E2\u10DD_\u10E1\u10D4\u10E5\u10E2\u10D4\u10DB\u10D1\u10D4\u10E0\u10D8_\u10DD\u10E5\u10E2\u10DD\u10DB\u10D1\u10D4\u10E0\u10D8_\u10DC\u10DD\u10D4\u10DB\u10D1\u10D4\u10E0\u10D8_\u10D3\u10D4\u10D9\u10D4\u10DB\u10D1\u10D4\u10E0\u10D8".split("_"),monthsShort:"\u10D8\u10D0\u10DC_\u10D7\u10D4\u10D1_\u10DB\u10D0\u10E0_\u10D0\u10DE\u10E0_\u10DB\u10D0\u10D8_\u10D8\u10D5\u10DC_\u10D8\u10D5\u10DA_\u10D0\u10D2\u10D5_\u10E1\u10D4\u10E5_\u10DD\u10E5\u10E2_\u10DC\u10DD\u10D4_\u10D3\u10D4\u10D9".split("_"),weekStart:1,formats:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},relativeTime:{future:"%s \u10E8\u10D4\u10DB\u10D3\u10D4\u10D2",past:"%s \u10EC\u10D8\u10DC",s:"\u10EC\u10D0\u10DB\u10D8",m:"\u10EC\u10E3\u10D7\u10D8",mm:"%d \u10EC\u10E3\u10D7\u10D8",h:"\u10E1\u10D0\u10D0\u10D7\u10D8",hh:"%d \u10E1\u10D0\u10D0\u10D7\u10D8\u10E1",d:"\u10D3\u10E6\u10D4\u10E1",dd:"%d \u10D3\u10E6\u10D8\u10E1 \u10D2\u10D0\u10DC\u10DB\u10D0\u10D5\u10DA\u10DD\u10D1\u10D0\u10E8\u10D8",M:"\u10D7\u10D5\u10D8\u10E1",MM:"%d \u10D7\u10D5\u10D8\u10E1",y:"\u10EC\u10D4\u10DA\u10D8",yy:"%d \u10EC\u10DA\u10D8\u10E1"},ordinal:function(e){return e}};return a.default.locale(i,null,!0),i}))});var Mi=v((Ct,Ot)=>{(function(n,t){typeof Ct=="object"&&typeof Ot<"u"?Ot.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_km=t(n.dayjs)})(Ct,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"km",weekdays:"\u17A2\u17B6\u1791\u17B7\u178F\u17D2\u1799_\u1785\u17D0\u1793\u17D2\u1791_\u17A2\u1784\u17D2\u1782\u17B6\u179A_\u1796\u17BB\u1792_\u1796\u17D2\u179A\u17A0\u179F\u17D2\u1794\u178F\u17B7\u17CD_\u179F\u17BB\u1780\u17D2\u179A_\u179F\u17C5\u179A\u17CD".split("_"),months:"\u1798\u1780\u179A\u17B6_\u1780\u17BB\u1798\u17D2\u1797\u17C8_\u1798\u17B8\u1793\u17B6_\u1798\u17C1\u179F\u17B6_\u17A7\u179F\u1797\u17B6_\u1798\u17B7\u1790\u17BB\u1793\u17B6_\u1780\u1780\u17D2\u1780\u178A\u17B6_\u179F\u17B8\u17A0\u17B6_\u1780\u1789\u17D2\u1789\u17B6_\u178F\u17BB\u179B\u17B6_\u179C\u17B7\u1785\u17D2\u1786\u17B7\u1780\u17B6_\u1792\u17D2\u1793\u17BC".split("_"),weekStart:1,weekdaysShort:"\u17A2\u17B6_\u1785_\u17A2_\u1796_\u1796\u17D2\u179A_\u179F\u17BB_\u179F".split("_"),monthsShort:"\u1798\u1780\u179A\u17B6_\u1780\u17BB\u1798\u17D2\u1797\u17C8_\u1798\u17B8\u1793\u17B6_\u1798\u17C1\u179F\u17B6_\u17A7\u179F\u1797\u17B6_\u1798\u17B7\u1790\u17BB\u1793\u17B6_\u1780\u1780\u17D2\u1780\u178A\u17B6_\u179F\u17B8\u17A0\u17B6_\u1780\u1789\u17D2\u1789\u17B6_\u178F\u17BB\u179B\u17B6_\u179C\u17B7\u1785\u17D2\u1786\u17B7\u1780\u17B6_\u1792\u17D2\u1793\u17BC".split("_"),weekdaysMin:"\u17A2\u17B6_\u1785_\u17A2_\u1796_\u1796\u17D2\u179A_\u179F\u17BB_\u179F".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},relativeTime:{future:"%s\u1791\u17C0\u178F",past:"%s\u1798\u17BB\u1793",s:"\u1794\u17C9\u17BB\u1793\u17D2\u1798\u17B6\u1793\u179C\u17B7\u1793\u17B6\u1791\u17B8",m:"\u1798\u17BD\u1799\u1793\u17B6\u1791\u17B8",mm:"%d \u1793\u17B6\u1791\u17B8",h:"\u1798\u17BD\u1799\u1798\u17C9\u17C4\u1784",hh:"%d \u1798\u17C9\u17C4\u1784",d:"\u1798\u17BD\u1799\u1790\u17D2\u1784\u17C3",dd:"%d \u1790\u17D2\u1784\u17C3",M:"\u1798\u17BD\u1799\u1781\u17C2",MM:"%d \u1781\u17C2",y:"\u1798\u17BD\u1799\u1786\u17D2\u1793\u17B6\u17C6",yy:"%d \u1786\u17D2\u1793\u17B6\u17C6"}};return a.default.locale(i,null,!0),i}))});var Yi=v((zt,At)=>{(function(n,t){typeof zt=="object"&&typeof At<"u"?At.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_lt=t(n.dayjs)})(zt,(function(n){"use strict";function t(d){return d&&typeof d=="object"&&"default"in d?d:{default:d}}var a=t(n),i="sausio_vasario_kovo_baland\u017Eio_gegu\u017E\u0117s_bir\u017Eelio_liepos_rugpj\u016B\u010Dio_rugs\u0117jo_spalio_lapkri\u010Dio_gruod\u017Eio".split("_"),e="sausis_vasaris_kovas_balandis_gegu\u017E\u0117_bir\u017Eelis_liepa_rugpj\u016Btis_rugs\u0117jis_spalis_lapkritis_gruodis".split("_"),r=/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/,s=function(d,u){return r.test(u)?i[d.month()]:e[d.month()]};s.s=e,s.f=i;var _={name:"lt",weekdays:"sekmadienis_pirmadienis_antradienis_tre\u010Diadienis_ketvirtadienis_penktadienis_\u0161e\u0161tadienis".split("_"),weekdaysShort:"sek_pir_ant_tre_ket_pen_\u0161e\u0161".split("_"),weekdaysMin:"s_p_a_t_k_pn_\u0161".split("_"),months:s,monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),ordinal:function(d){return d+"."},weekStart:1,relativeTime:{future:"u\u017E %s",past:"prie\u0161 %s",s:"kelias sekundes",m:"minut\u0119",mm:"%d minutes",h:"valand\u0105",hh:"%d valandas",d:"dien\u0105",dd:"%d dienas",M:"m\u0117nes\u012F",MM:"%d m\u0117nesius",y:"metus",yy:"%d metus"},format:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"}};return a.default.locale(_,null,!0),_}))});var yi=v((qt,It)=>{(function(n,t){typeof qt=="object"&&typeof It<"u"?It.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_lv=t(n.dayjs)})(qt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"lv",weekdays:"sv\u0113tdiena_pirmdiena_otrdiena_tre\u0161diena_ceturtdiena_piektdiena_sestdiena".split("_"),months:"janv\u0101ris_febru\u0101ris_marts_apr\u012Blis_maijs_j\u016Bnijs_j\u016Blijs_augusts_septembris_oktobris_novembris_decembris".split("_"),weekStart:1,weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),monthsShort:"jan_feb_mar_apr_mai_j\u016Bn_j\u016Bl_aug_sep_okt_nov_dec".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},relativeTime:{future:"p\u0113c %s",past:"pirms %s",s:"da\u017E\u0101m sekund\u0113m",m:"min\u016Btes",mm:"%d min\u016Bt\u0113m",h:"stundas",hh:"%d stund\u0101m",d:"dienas",dd:"%d dien\u0101m",M:"m\u0113ne\u0161a",MM:"%d m\u0113ne\u0161iem",y:"gada",yy:"%d gadiem"}};return a.default.locale(i,null,!0),i}))});var pi=v((xt,Nt)=>{(function(n,t){typeof xt=="object"&&typeof Nt<"u"?Nt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_ms=t(n.dayjs)})(xt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"ms",weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekStart:1,formats:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH.mm",LLLL:"dddd, D MMMM YYYY HH.mm"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},ordinal:function(e){return e+"."}};return a.default.locale(i,null,!0),i}))});var Li=v((Ft,Et)=>{(function(n,t){typeof Ft=="object"&&typeof Et<"u"?Et.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_my=t(n.dayjs)})(Ft,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"my",weekdays:"\u1010\u1014\u1004\u103A\u1039\u1002\u1014\u103D\u1031_\u1010\u1014\u1004\u103A\u1039\u101C\u102C_\u1021\u1004\u103A\u1039\u1002\u102B_\u1017\u102F\u1012\u1039\u1013\u101F\u1030\u1038_\u1000\u103C\u102C\u101E\u1015\u1010\u1031\u1038_\u101E\u1031\u102C\u1000\u103C\u102C_\u1005\u1014\u1031".split("_"),months:"\u1007\u1014\u103A\u1014\u101D\u102B\u101B\u102E_\u1016\u1031\u1016\u1031\u102C\u103A\u101D\u102B\u101B\u102E_\u1019\u1010\u103A_\u1027\u1015\u103C\u102E_\u1019\u1031_\u1007\u103D\u1014\u103A_\u1007\u1030\u101C\u102D\u102F\u1004\u103A_\u101E\u103C\u1002\u102F\u1010\u103A_\u1005\u1000\u103A\u1010\u1004\u103A\u1018\u102C_\u1021\u1031\u102C\u1000\u103A\u1010\u102D\u102F\u1018\u102C_\u1014\u102D\u102F\u101D\u1004\u103A\u1018\u102C_\u1012\u102E\u1007\u1004\u103A\u1018\u102C".split("_"),weekStart:1,weekdaysShort:"\u1014\u103D\u1031_\u101C\u102C_\u1002\u102B_\u101F\u1030\u1038_\u1000\u103C\u102C_\u101E\u1031\u102C_\u1014\u1031".split("_"),monthsShort:"\u1007\u1014\u103A_\u1016\u1031_\u1019\u1010\u103A_\u1015\u103C\u102E_\u1019\u1031_\u1007\u103D\u1014\u103A_\u101C\u102D\u102F\u1004\u103A_\u101E\u103C_\u1005\u1000\u103A_\u1021\u1031\u102C\u1000\u103A_\u1014\u102D\u102F_\u1012\u102E".split("_"),weekdaysMin:"\u1014\u103D\u1031_\u101C\u102C_\u1002\u102B_\u101F\u1030\u1038_\u1000\u103C\u102C_\u101E\u1031\u102C_\u1014\u1031".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},relativeTime:{future:"\u101C\u102C\u1019\u100A\u103A\u1037 %s \u1019\u103E\u102C",past:"\u101C\u103D\u1014\u103A\u1001\u1032\u1037\u101E\u1031\u102C %s \u1000",s:"\u1005\u1000\u1039\u1000\u1014\u103A.\u1021\u1014\u100A\u103A\u1038\u1004\u101A\u103A",m:"\u1010\u1005\u103A\u1019\u102D\u1014\u1005\u103A",mm:"%d \u1019\u102D\u1014\u1005\u103A",h:"\u1010\u1005\u103A\u1014\u102C\u101B\u102E",hh:"%d \u1014\u102C\u101B\u102E",d:"\u1010\u1005\u103A\u101B\u1000\u103A",dd:"%d \u101B\u1000\u103A",M:"\u1010\u1005\u103A\u101C",MM:"%d \u101C",y:"\u1010\u1005\u103A\u1014\u103E\u1005\u103A",yy:"%d \u1014\u103E\u1005\u103A"}};return a.default.locale(i,null,!0),i}))});var Di=v((Jt,Ut)=>{(function(n,t){typeof Jt=="object"&&typeof Ut<"u"?Ut.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_nb=t(n.dayjs)})(Jt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"nb",weekdays:"s\xF8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\xF8rdag".split("_"),weekdaysShort:"s\xF8._ma._ti._on._to._fr._l\xF8.".split("_"),weekdaysMin:"s\xF8_ma_ti_on_to_fr_l\xF8".split("_"),months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"),ordinal:function(e){return e+"."},weekStart:1,yearStart:4,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en m\xE5ned",MM:"%d m\xE5neder",y:"ett \xE5r",yy:"%d \xE5r"}};return a.default.locale(i,null,!0),i}))});var vi=v((Wt,Pt)=>{(function(n,t){typeof Wt=="object"&&typeof Pt<"u"?Pt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_nl=t(n.dayjs)})(Wt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"nl",weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),ordinal:function(e){return"["+e+(e===1||e===8||e>=20?"ste":"de")+"]"},weekStart:1,yearStart:4,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",m:"een minuut",mm:"%d minuten",h:"een uur",hh:"%d uur",d:"een dag",dd:"%d dagen",M:"een maand",MM:"%d maanden",y:"een jaar",yy:"%d jaar"}};return a.default.locale(i,null,!0),i}))});var gi=v((Gt,Rt)=>{(function(n,t){typeof Gt=="object"&&typeof Rt<"u"?Rt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_pl=t(n.dayjs)})(Gt,(function(n){"use strict";function t(o){return o&&typeof o=="object"&&"default"in o?o:{default:o}}var a=t(n);function i(o){return o%10<5&&o%10>1&&~~(o/10)%10!=1}function e(o,f,l){var m=o+" ";switch(l){case"m":return f?"minuta":"minut\u0119";case"mm":return m+(i(o)?"minuty":"minut");case"h":return f?"godzina":"godzin\u0119";case"hh":return m+(i(o)?"godziny":"godzin");case"MM":return m+(i(o)?"miesi\u0105ce":"miesi\u0119cy");case"yy":return m+(i(o)?"lata":"lat")}}var r="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\u015Bnia_pa\u017Adziernika_listopada_grudnia".split("_"),s="stycze\u0144_luty_marzec_kwiecie\u0144_maj_czerwiec_lipiec_sierpie\u0144_wrzesie\u0144_pa\u017Adziernik_listopad_grudzie\u0144".split("_"),_=/D MMMM/,d=function(o,f){return _.test(f)?r[o.month()]:s[o.month()]};d.s=s,d.f=r;var u={name:"pl",weekdays:"niedziela_poniedzia\u0142ek_wtorek_\u015Broda_czwartek_pi\u0105tek_sobota".split("_"),weekdaysShort:"ndz_pon_wt_\u015Br_czw_pt_sob".split("_"),weekdaysMin:"Nd_Pn_Wt_\u015Ar_Cz_Pt_So".split("_"),months:d,monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_pa\u017A_lis_gru".split("_"),ordinal:function(o){return o+"."},weekStart:1,yearStart:4,relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",m:e,mm:e,h:e,hh:e,d:"1 dzie\u0144",dd:"%d dni",M:"miesi\u0105c",MM:e,y:"rok",yy:e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"}};return a.default.locale(u,null,!0),u}))});var bi=v((Zt,Vt)=>{(function(n,t){typeof Zt=="object"&&typeof Vt<"u"?Vt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_pt=t(n.dayjs)})(Zt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"pt",weekdays:"domingo_segunda-feira_ter\xE7a-feira_quarta-feira_quinta-feira_sexta-feira_s\xE1bado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_sab".split("_"),weekdaysMin:"Do_2\xAA_3\xAA_4\xAA_5\xAA_6\xAA_Sa".split("_"),months:"janeiro_fevereiro_mar\xE7o_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),ordinal:function(e){return e+"\xBA"},weekStart:1,yearStart:4,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [\xE0s] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [\xE0s] HH:mm"},relativeTime:{future:"em %s",past:"h\xE1 %s",s:"alguns segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um m\xEAs",MM:"%d meses",y:"um ano",yy:"%d anos"}};return a.default.locale(i,null,!0),i}))});var Si=v((Kt,Qt)=>{(function(n,t){typeof Kt=="object"&&typeof Qt<"u"?Qt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_pt_br=t(n.dayjs)})(Kt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"pt-br",weekdays:"domingo_segunda-feira_ter\xE7a-feira_quarta-feira_quinta-feira_sexta-feira_s\xE1bado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_s\xE1b".split("_"),weekdaysMin:"Do_2\xAA_3\xAA_4\xAA_5\xAA_6\xAA_S\xE1".split("_"),months:"janeiro_fevereiro_mar\xE7o_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),ordinal:function(e){return e+"\xBA"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [\xE0s] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [\xE0s] HH:mm"},relativeTime:{future:"em %s",past:"h\xE1 %s",s:"poucos segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um m\xEAs",MM:"%d meses",y:"um ano",yy:"%d anos"}};return a.default.locale(i,null,!0),i}))});var ki=v((Xt,Bt)=>{(function(n,t){typeof Xt=="object"&&typeof Bt<"u"?Bt.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_ro=t(n.dayjs)})(Xt,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"ro",weekdays:"Duminic\u0103_Luni_Mar\u021Bi_Miercuri_Joi_Vineri_S\xE2mb\u0103t\u0103".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_S\xE2m".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_S\xE2".split("_"),months:"Ianuarie_Februarie_Martie_Aprilie_Mai_Iunie_Iulie_August_Septembrie_Octombrie_Noiembrie_Decembrie".split("_"),monthsShort:"Ian._Febr._Mart._Apr._Mai_Iun._Iul._Aug._Sept._Oct._Nov._Dec.".split("_"),weekStart:1,formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},relativeTime:{future:"peste %s",past:"acum %s",s:"c\xE2teva secunde",m:"un minut",mm:"%d minute",h:"o or\u0103",hh:"%d ore",d:"o zi",dd:"%d zile",M:"o lun\u0103",MM:"%d luni",y:"un an",yy:"%d ani"},ordinal:function(e){return e}};return a.default.locale(i,null,!0),i}))});var Hi=v((en,tn)=>{(function(n,t){typeof en=="object"&&typeof tn<"u"?tn.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_ru=t(n.dayjs)})(en,(function(n){"use strict";function t(l){return l&&typeof l=="object"&&"default"in l?l:{default:l}}var a=t(n),i="\u044F\u043D\u0432\u0430\u0440\u044F_\u0444\u0435\u0432\u0440\u0430\u043B\u044F_\u043C\u0430\u0440\u0442\u0430_\u0430\u043F\u0440\u0435\u043B\u044F_\u043C\u0430\u044F_\u0438\u044E\u043D\u044F_\u0438\u044E\u043B\u044F_\u0430\u0432\u0433\u0443\u0441\u0442\u0430_\u0441\u0435\u043D\u0442\u044F\u0431\u0440\u044F_\u043E\u043A\u0442\u044F\u0431\u0440\u044F_\u043D\u043E\u044F\u0431\u0440\u044F_\u0434\u0435\u043A\u0430\u0431\u0440\u044F".split("_"),e="\u044F\u043D\u0432\u0430\u0440\u044C_\u0444\u0435\u0432\u0440\u0430\u043B\u044C_\u043C\u0430\u0440\u0442_\u0430\u043F\u0440\u0435\u043B\u044C_\u043C\u0430\u0439_\u0438\u044E\u043D\u044C_\u0438\u044E\u043B\u044C_\u0430\u0432\u0433\u0443\u0441\u0442_\u0441\u0435\u043D\u0442\u044F\u0431\u0440\u044C_\u043E\u043A\u0442\u044F\u0431\u0440\u044C_\u043D\u043E\u044F\u0431\u0440\u044C_\u0434\u0435\u043A\u0430\u0431\u0440\u044C".split("_"),r="\u044F\u043D\u0432._\u0444\u0435\u0432\u0440._\u043C\u0430\u0440._\u0430\u043F\u0440._\u043C\u0430\u044F_\u0438\u044E\u043D\u044F_\u0438\u044E\u043B\u044F_\u0430\u0432\u0433._\u0441\u0435\u043D\u0442._\u043E\u043A\u0442._\u043D\u043E\u044F\u0431._\u0434\u0435\u043A.".split("_"),s="\u044F\u043D\u0432._\u0444\u0435\u0432\u0440._\u043C\u0430\u0440\u0442_\u0430\u043F\u0440._\u043C\u0430\u0439_\u0438\u044E\u043D\u044C_\u0438\u044E\u043B\u044C_\u0430\u0432\u0433._\u0441\u0435\u043D\u0442._\u043E\u043A\u0442._\u043D\u043E\u044F\u0431._\u0434\u0435\u043A.".split("_"),_=/D[oD]?(\[[^[\]]*\]|\s)+MMMM?/;function d(l,m,c){var y,D;return c==="m"?m?"\u043C\u0438\u043D\u0443\u0442\u0430":"\u043C\u0438\u043D\u0443\u0442\u0443":l+" "+(y=+l,D={mm:m?"\u043C\u0438\u043D\u0443\u0442\u0430_\u043C\u0438\u043D\u0443\u0442\u044B_\u043C\u0438\u043D\u0443\u0442":"\u043C\u0438\u043D\u0443\u0442\u0443_\u043C\u0438\u043D\u0443\u0442\u044B_\u043C\u0438\u043D\u0443\u0442",hh:"\u0447\u0430\u0441_\u0447\u0430\u0441\u0430_\u0447\u0430\u0441\u043E\u0432",dd:"\u0434\u0435\u043D\u044C_\u0434\u043D\u044F_\u0434\u043D\u0435\u0439",MM:"\u043C\u0435\u0441\u044F\u0446_\u043C\u0435\u0441\u044F\u0446\u0430_\u043C\u0435\u0441\u044F\u0446\u0435\u0432",yy:"\u0433\u043E\u0434_\u0433\u043E\u0434\u0430_\u043B\u0435\u0442"}[c].split("_"),y%10==1&&y%100!=11?D[0]:y%10>=2&&y%10<=4&&(y%100<10||y%100>=20)?D[1]:D[2])}var u=function(l,m){return _.test(m)?i[l.month()]:e[l.month()]};u.s=e,u.f=i;var o=function(l,m){return _.test(m)?r[l.month()]:s[l.month()]};o.s=s,o.f=r;var f={name:"ru",weekdays:"\u0432\u043E\u0441\u043A\u0440\u0435\u0441\u0435\u043D\u044C\u0435_\u043F\u043E\u043D\u0435\u0434\u0435\u043B\u044C\u043D\u0438\u043A_\u0432\u0442\u043E\u0440\u043D\u0438\u043A_\u0441\u0440\u0435\u0434\u0430_\u0447\u0435\u0442\u0432\u0435\u0440\u0433_\u043F\u044F\u0442\u043D\u0438\u0446\u0430_\u0441\u0443\u0431\u0431\u043E\u0442\u0430".split("_"),weekdaysShort:"\u0432\u0441\u043A_\u043F\u043D\u0434_\u0432\u0442\u0440_\u0441\u0440\u0434_\u0447\u0442\u0432_\u043F\u0442\u043D_\u0441\u0431\u0442".split("_"),weekdaysMin:"\u0432\u0441_\u043F\u043D_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043F\u0442_\u0441\u0431".split("_"),months:u,monthsShort:o,weekStart:1,yearStart:4,formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0433.",LLL:"D MMMM YYYY \u0433., H:mm",LLLL:"dddd, D MMMM YYYY \u0433., H:mm"},relativeTime:{future:"\u0447\u0435\u0440\u0435\u0437 %s",past:"%s \u043D\u0430\u0437\u0430\u0434",s:"\u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u043E \u0441\u0435\u043A\u0443\u043D\u0434",m:d,mm:d,h:"\u0447\u0430\u0441",hh:d,d:"\u0434\u0435\u043D\u044C",dd:d,M:"\u043C\u0435\u0441\u044F\u0446",MM:d,y:"\u0433\u043E\u0434",yy:d},ordinal:function(l){return l},meridiem:function(l){return l<4?"\u043D\u043E\u0447\u0438":l<12?"\u0443\u0442\u0440\u0430":l<17?"\u0434\u043D\u044F":"\u0432\u0435\u0447\u0435\u0440\u0430"}};return a.default.locale(f,null,!0),f}))});var ji=v((nn,rn)=>{(function(n,t){typeof nn=="object"&&typeof rn<"u"?rn.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_sl=t(n.dayjs)})(nn,(function(n){"use strict";function t(_){return _&&typeof _=="object"&&"default"in _?_:{default:_}}var a=t(n);function i(_){return _%100==2}function e(_){return _%100==3||_%100==4}function r(_,d,u,o){var f=_+" ";switch(u){case"s":return d||o?"nekaj sekund":"nekaj sekundami";case"m":return d?"ena minuta":"eno minuto";case"mm":return i(_)?f+(d||o?"minuti":"minutama"):e(_)?f+(d||o?"minute":"minutami"):f+(d||o?"minut":"minutami");case"h":return d?"ena ura":"eno uro";case"hh":return i(_)?f+(d||o?"uri":"urama"):e(_)?f+(d||o?"ure":"urami"):f+(d||o?"ur":"urami");case"d":return d||o?"en dan":"enim dnem";case"dd":return i(_)?f+(d||o?"dneva":"dnevoma"):f+(d||o?"dni":"dnevi");case"M":return d||o?"en mesec":"enim mesecem";case"MM":return i(_)?f+(d||o?"meseca":"mesecema"):e(_)?f+(d||o?"mesece":"meseci"):f+(d||o?"mesecev":"meseci");case"y":return d||o?"eno leto":"enim letom";case"yy":return i(_)?f+(d||o?"leti":"letoma"):e(_)?f+(d||o?"leta":"leti"):f+(d||o?"let":"leti")}}var s={name:"sl",weekdays:"nedelja_ponedeljek_torek_sreda_\u010Detrtek_petek_sobota".split("_"),months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),weekStart:1,weekdaysShort:"ned._pon._tor._sre._\u010Det._pet._sob.".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),weekdaysMin:"ne_po_to_sr_\u010De_pe_so".split("_"),ordinal:function(_){return _+"."},formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm",l:"D. M. YYYY"},relativeTime:{future:"\u010Dez %s",past:"pred %s",s:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r}};return a.default.locale(s,null,!0),s}))});var Ti=v((an,sn)=>{(function(n,t){typeof an=="object"&&typeof sn<"u"?sn.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_sr_cyrl=t(n.dayjs)})(an,(function(n){"use strict";function t(r){return r&&typeof r=="object"&&"default"in r?r:{default:r}}var a=t(n),i={words:{m:["\u0458\u0435\u0434\u0430\u043D \u043C\u0438\u043D\u0443\u0442","\u0458\u0435\u0434\u043D\u043E\u0433 \u043C\u0438\u043D\u0443\u0442\u0430"],mm:["%d \u043C\u0438\u043D\u0443\u0442","%d \u043C\u0438\u043D\u0443\u0442\u0430","%d \u043C\u0438\u043D\u0443\u0442\u0430"],h:["\u0458\u0435\u0434\u0430\u043D \u0441\u0430\u0442","\u0458\u0435\u0434\u043D\u043E\u0433 \u0441\u0430\u0442\u0430"],hh:["%d \u0441\u0430\u0442","%d \u0441\u0430\u0442\u0430","%d \u0441\u0430\u0442\u0438"],d:["\u0458\u0435\u0434\u0430\u043D \u0434\u0430\u043D","\u0458\u0435\u0434\u043D\u043E\u0433 \u0434\u0430\u043D\u0430"],dd:["%d \u0434\u0430\u043D","%d \u0434\u0430\u043D\u0430","%d \u0434\u0430\u043D\u0430"],M:["\u0458\u0435\u0434\u0430\u043D \u043C\u0435\u0441\u0435\u0446","\u0458\u0435\u0434\u043D\u043E\u0433 \u043C\u0435\u0441\u0435\u0446\u0430"],MM:["%d \u043C\u0435\u0441\u0435\u0446","%d \u043C\u0435\u0441\u0435\u0446\u0430","%d \u043C\u0435\u0441\u0435\u0446\u0438"],y:["\u0458\u0435\u0434\u043D\u0443 \u0433\u043E\u0434\u0438\u043D\u0443","\u0458\u0435\u0434\u043D\u0435 \u0433\u043E\u0434\u0438\u043D\u0435"],yy:["%d \u0433\u043E\u0434\u0438\u043D\u0443","%d \u0433\u043E\u0434\u0438\u043D\u0435","%d \u0433\u043E\u0434\u0438\u043D\u0430"]},correctGrammarCase:function(r,s){return r%10>=1&&r%10<=4&&(r%100<10||r%100>=20)?r%10==1?s[0]:s[1]:s[2]},relativeTimeFormatter:function(r,s,_,d){var u=i.words[_];if(_.length===1)return _==="y"&&s?"\u0458\u0435\u0434\u043D\u0430 \u0433\u043E\u0434\u0438\u043D\u0430":d||s?u[0]:u[1];var o=i.correctGrammarCase(r,u);return _==="yy"&&s&&o==="%d \u0433\u043E\u0434\u0438\u043D\u0443"?r+" \u0433\u043E\u0434\u0438\u043D\u0430":o.replace("%d",r)}},e={name:"sr-cyrl",weekdays:"\u041D\u0435\u0434\u0435\u0459\u0430_\u041F\u043E\u043D\u0435\u0434\u0435\u0459\u0430\u043A_\u0423\u0442\u043E\u0440\u0430\u043A_\u0421\u0440\u0435\u0434\u0430_\u0427\u0435\u0442\u0432\u0440\u0442\u0430\u043A_\u041F\u0435\u0442\u0430\u043A_\u0421\u0443\u0431\u043E\u0442\u0430".split("_"),weekdaysShort:"\u041D\u0435\u0434._\u041F\u043E\u043D._\u0423\u0442\u043E._\u0421\u0440\u0435._\u0427\u0435\u0442._\u041F\u0435\u0442._\u0421\u0443\u0431.".split("_"),weekdaysMin:"\u043D\u0435_\u043F\u043E_\u0443\u0442_\u0441\u0440_\u0447\u0435_\u043F\u0435_\u0441\u0443".split("_"),months:"\u0408\u0430\u043D\u0443\u0430\u0440_\u0424\u0435\u0431\u0440\u0443\u0430\u0440_\u041C\u0430\u0440\u0442_\u0410\u043F\u0440\u0438\u043B_\u041C\u0430\u0458_\u0408\u0443\u043D_\u0408\u0443\u043B_\u0410\u0432\u0433\u0443\u0441\u0442_\u0421\u0435\u043F\u0442\u0435\u043C\u0431\u0430\u0440_\u041E\u043A\u0442\u043E\u0431\u0430\u0440_\u041D\u043E\u0432\u0435\u043C\u0431\u0430\u0440_\u0414\u0435\u0446\u0435\u043C\u0431\u0430\u0440".split("_"),monthsShort:"\u0408\u0430\u043D._\u0424\u0435\u0431._\u041C\u0430\u0440._\u0410\u043F\u0440._\u041C\u0430\u0458_\u0408\u0443\u043D_\u0408\u0443\u043B_\u0410\u0432\u0433._\u0421\u0435\u043F._\u041E\u043A\u0442._\u041D\u043E\u0432._\u0414\u0435\u0446.".split("_"),weekStart:1,relativeTime:{future:"\u0437\u0430 %s",past:"\u043F\u0440\u0435 %s",s:"\u043D\u0435\u043A\u043E\u043B\u0438\u043A\u043E \u0441\u0435\u043A\u0443\u043D\u0434\u0438",m:i.relativeTimeFormatter,mm:i.relativeTimeFormatter,h:i.relativeTimeFormatter,hh:i.relativeTimeFormatter,d:i.relativeTimeFormatter,dd:i.relativeTimeFormatter,M:i.relativeTimeFormatter,MM:i.relativeTimeFormatter,y:i.relativeTimeFormatter,yy:i.relativeTimeFormatter},ordinal:function(r){return r+"."},formats:{LT:"H:mm",LTS:"H:mm:ss",L:"D. M. YYYY.",LL:"D. MMMM YYYY.",LLL:"D. MMMM YYYY. H:mm",LLLL:"dddd, D. MMMM YYYY. H:mm"}};return a.default.locale(e,null,!0),e}))});var wi=v((un,dn)=>{(function(n,t){typeof un=="object"&&typeof dn<"u"?dn.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_sr=t(n.dayjs)})(un,(function(n){"use strict";function t(r){return r&&typeof r=="object"&&"default"in r?r:{default:r}}var a=t(n),i={words:{m:["jedan minut","jednog minuta"],mm:["%d minut","%d minuta","%d minuta"],h:["jedan sat","jednog sata"],hh:["%d sat","%d sata","%d sati"],d:["jedan dan","jednog dana"],dd:["%d dan","%d dana","%d dana"],M:["jedan mesec","jednog meseca"],MM:["%d mesec","%d meseca","%d meseci"],y:["jednu godinu","jedne godine"],yy:["%d godinu","%d godine","%d godina"]},correctGrammarCase:function(r,s){return r%10>=1&&r%10<=4&&(r%100<10||r%100>=20)?r%10==1?s[0]:s[1]:s[2]},relativeTimeFormatter:function(r,s,_,d){var u=i.words[_];if(_.length===1)return _==="y"&&s?"jedna godina":d||s?u[0]:u[1];var o=i.correctGrammarCase(r,u);return _==="yy"&&s&&o==="%d godinu"?r+" godina":o.replace("%d",r)}},e={name:"sr",weekdays:"Nedelja_Ponedeljak_Utorak_Sreda_\u010Cetvrtak_Petak_Subota".split("_"),weekdaysShort:"Ned._Pon._Uto._Sre._\u010Cet._Pet._Sub.".split("_"),weekdaysMin:"ne_po_ut_sr_\u010De_pe_su".split("_"),months:"Januar_Februar_Mart_April_Maj_Jun_Jul_Avgust_Septembar_Oktobar_Novembar_Decembar".split("_"),monthsShort:"Jan._Feb._Mar._Apr._Maj_Jun_Jul_Avg._Sep._Okt._Nov._Dec.".split("_"),weekStart:1,relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",m:i.relativeTimeFormatter,mm:i.relativeTimeFormatter,h:i.relativeTimeFormatter,hh:i.relativeTimeFormatter,d:i.relativeTimeFormatter,dd:i.relativeTimeFormatter,M:i.relativeTimeFormatter,MM:i.relativeTimeFormatter,y:i.relativeTimeFormatter,yy:i.relativeTimeFormatter},ordinal:function(r){return r+"."},formats:{LT:"H:mm",LTS:"H:mm:ss",L:"D. M. YYYY.",LL:"D. MMMM YYYY.",LLL:"D. MMMM YYYY. H:mm",LLLL:"dddd, D. MMMM YYYY. H:mm"}};return a.default.locale(e,null,!0),e}))});var $i=v((on,_n)=>{(function(n,t){typeof on=="object"&&typeof _n<"u"?_n.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_sv=t(n.dayjs)})(on,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"sv",weekdays:"s\xF6ndag_m\xE5ndag_tisdag_onsdag_torsdag_fredag_l\xF6rdag".split("_"),weekdaysShort:"s\xF6n_m\xE5n_tis_ons_tor_fre_l\xF6r".split("_"),weekdaysMin:"s\xF6_m\xE5_ti_on_to_fr_l\xF6".split("_"),months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekStart:1,yearStart:4,ordinal:function(e){var r=e%10;return"["+e+(r===1||r===2?"a":"e")+"]"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},relativeTime:{future:"om %s",past:"f\xF6r %s sedan",s:"n\xE5gra sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en m\xE5nad",MM:"%d m\xE5nader",y:"ett \xE5r",yy:"%d \xE5r"}};return a.default.locale(i,null,!0),i}))});var Ci=v((ln,fn)=>{(function(n,t){typeof ln=="object"&&typeof fn<"u"?fn.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_th=t(n.dayjs)})(ln,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"th",weekdays:"\u0E2D\u0E32\u0E17\u0E34\u0E15\u0E22\u0E4C_\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C_\u0E2D\u0E31\u0E07\u0E04\u0E32\u0E23_\u0E1E\u0E38\u0E18_\u0E1E\u0E24\u0E2B\u0E31\u0E2A\u0E1A\u0E14\u0E35_\u0E28\u0E38\u0E01\u0E23\u0E4C_\u0E40\u0E2A\u0E32\u0E23\u0E4C".split("_"),weekdaysShort:"\u0E2D\u0E32\u0E17\u0E34\u0E15\u0E22\u0E4C_\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C_\u0E2D\u0E31\u0E07\u0E04\u0E32\u0E23_\u0E1E\u0E38\u0E18_\u0E1E\u0E24\u0E2B\u0E31\u0E2A_\u0E28\u0E38\u0E01\u0E23\u0E4C_\u0E40\u0E2A\u0E32\u0E23\u0E4C".split("_"),weekdaysMin:"\u0E2D\u0E32._\u0E08._\u0E2D._\u0E1E._\u0E1E\u0E24._\u0E28._\u0E2A.".split("_"),months:"\u0E21\u0E01\u0E23\u0E32\u0E04\u0E21_\u0E01\u0E38\u0E21\u0E20\u0E32\u0E1E\u0E31\u0E19\u0E18\u0E4C_\u0E21\u0E35\u0E19\u0E32\u0E04\u0E21_\u0E40\u0E21\u0E29\u0E32\u0E22\u0E19_\u0E1E\u0E24\u0E29\u0E20\u0E32\u0E04\u0E21_\u0E21\u0E34\u0E16\u0E38\u0E19\u0E32\u0E22\u0E19_\u0E01\u0E23\u0E01\u0E0E\u0E32\u0E04\u0E21_\u0E2A\u0E34\u0E07\u0E2B\u0E32\u0E04\u0E21_\u0E01\u0E31\u0E19\u0E22\u0E32\u0E22\u0E19_\u0E15\u0E38\u0E25\u0E32\u0E04\u0E21_\u0E1E\u0E24\u0E28\u0E08\u0E34\u0E01\u0E32\u0E22\u0E19_\u0E18\u0E31\u0E19\u0E27\u0E32\u0E04\u0E21".split("_"),monthsShort:"\u0E21.\u0E04._\u0E01.\u0E1E._\u0E21\u0E35.\u0E04._\u0E40\u0E21.\u0E22._\u0E1E.\u0E04._\u0E21\u0E34.\u0E22._\u0E01.\u0E04._\u0E2A.\u0E04._\u0E01.\u0E22._\u0E15.\u0E04._\u0E1E.\u0E22._\u0E18.\u0E04.".split("_"),formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY \u0E40\u0E27\u0E25\u0E32 H:mm",LLLL:"\u0E27\u0E31\u0E19dddd\u0E17\u0E35\u0E48 D MMMM YYYY \u0E40\u0E27\u0E25\u0E32 H:mm"},relativeTime:{future:"\u0E2D\u0E35\u0E01 %s",past:"%s\u0E17\u0E35\u0E48\u0E41\u0E25\u0E49\u0E27",s:"\u0E44\u0E21\u0E48\u0E01\u0E35\u0E48\u0E27\u0E34\u0E19\u0E32\u0E17\u0E35",m:"1 \u0E19\u0E32\u0E17\u0E35",mm:"%d \u0E19\u0E32\u0E17\u0E35",h:"1 \u0E0A\u0E31\u0E48\u0E27\u0E42\u0E21\u0E07",hh:"%d \u0E0A\u0E31\u0E48\u0E27\u0E42\u0E21\u0E07",d:"1 \u0E27\u0E31\u0E19",dd:"%d \u0E27\u0E31\u0E19",M:"1 \u0E40\u0E14\u0E37\u0E2D\u0E19",MM:"%d \u0E40\u0E14\u0E37\u0E2D\u0E19",y:"1 \u0E1B\u0E35",yy:"%d \u0E1B\u0E35"},ordinal:function(e){return e+"."}};return a.default.locale(i,null,!0),i}))});var Oi=v((mn,cn)=>{(function(n,t){typeof mn=="object"&&typeof cn<"u"?cn.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_tr=t(n.dayjs)})(mn,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"tr",weekdays:"Pazar_Pazartesi_Sal\u0131_\xC7ar\u015Famba_Per\u015Fembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_\xC7ar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_\xC7a_Pe_Cu_Ct".split("_"),months:"Ocak_\u015Eubat_Mart_Nisan_May\u0131s_Haziran_Temmuz_A\u011Fustos_Eyl\xFCl_Ekim_Kas\u0131m_Aral\u0131k".split("_"),monthsShort:"Oca_\u015Eub_Mar_Nis_May_Haz_Tem_A\u011Fu_Eyl_Eki_Kas_Ara".split("_"),weekStart:1,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},relativeTime:{future:"%s sonra",past:"%s \xF6nce",s:"birka\xE7 saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir g\xFCn",dd:"%d g\xFCn",M:"bir ay",MM:"%d ay",y:"bir y\u0131l",yy:"%d y\u0131l"},ordinal:function(e){return e+"."}};return a.default.locale(i,null,!0),i}))});var zi=v((hn,Mn)=>{(function(n,t){typeof hn=="object"&&typeof Mn<"u"?Mn.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_uk=t(n.dayjs)})(hn,(function(n){"use strict";function t(u){return u&&typeof u=="object"&&"default"in u?u:{default:u}}var a=t(n),i="\u0441\u0456\u0447\u043D\u044F_\u043B\u044E\u0442\u043E\u0433\u043E_\u0431\u0435\u0440\u0435\u0437\u043D\u044F_\u043A\u0432\u0456\u0442\u043D\u044F_\u0442\u0440\u0430\u0432\u043D\u044F_\u0447\u0435\u0440\u0432\u043D\u044F_\u043B\u0438\u043F\u043D\u044F_\u0441\u0435\u0440\u043F\u043D\u044F_\u0432\u0435\u0440\u0435\u0441\u043D\u044F_\u0436\u043E\u0432\u0442\u043D\u044F_\u043B\u0438\u0441\u0442\u043E\u043F\u0430\u0434\u0430_\u0433\u0440\u0443\u0434\u043D\u044F".split("_"),e="\u0441\u0456\u0447\u0435\u043D\u044C_\u043B\u044E\u0442\u0438\u0439_\u0431\u0435\u0440\u0435\u0437\u0435\u043D\u044C_\u043A\u0432\u0456\u0442\u0435\u043D\u044C_\u0442\u0440\u0430\u0432\u0435\u043D\u044C_\u0447\u0435\u0440\u0432\u0435\u043D\u044C_\u043B\u0438\u043F\u0435\u043D\u044C_\u0441\u0435\u0440\u043F\u0435\u043D\u044C_\u0432\u0435\u0440\u0435\u0441\u0435\u043D\u044C_\u0436\u043E\u0432\u0442\u0435\u043D\u044C_\u043B\u0438\u0441\u0442\u043E\u043F\u0430\u0434_\u0433\u0440\u0443\u0434\u0435\u043D\u044C".split("_"),r=/D[oD]?(\[[^[\]]*\]|\s)+MMMM?/;function s(u,o,f){var l,m;return f==="m"?o?"\u0445\u0432\u0438\u043B\u0438\u043D\u0430":"\u0445\u0432\u0438\u043B\u0438\u043D\u0443":f==="h"?o?"\u0433\u043E\u0434\u0438\u043D\u0430":"\u0433\u043E\u0434\u0438\u043D\u0443":u+" "+(l=+u,m={ss:o?"\u0441\u0435\u043A\u0443\u043D\u0434\u0430_\u0441\u0435\u043A\u0443\u043D\u0434\u0438_\u0441\u0435\u043A\u0443\u043D\u0434":"\u0441\u0435\u043A\u0443\u043D\u0434\u0443_\u0441\u0435\u043A\u0443\u043D\u0434\u0438_\u0441\u0435\u043A\u0443\u043D\u0434",mm:o?"\u0445\u0432\u0438\u043B\u0438\u043D\u0430_\u0445\u0432\u0438\u043B\u0438\u043D\u0438_\u0445\u0432\u0438\u043B\u0438\u043D":"\u0445\u0432\u0438\u043B\u0438\u043D\u0443_\u0445\u0432\u0438\u043B\u0438\u043D\u0438_\u0445\u0432\u0438\u043B\u0438\u043D",hh:o?"\u0433\u043E\u0434\u0438\u043D\u0430_\u0433\u043E\u0434\u0438\u043D\u0438_\u0433\u043E\u0434\u0438\u043D":"\u0433\u043E\u0434\u0438\u043D\u0443_\u0433\u043E\u0434\u0438\u043D\u0438_\u0433\u043E\u0434\u0438\u043D",dd:"\u0434\u0435\u043D\u044C_\u0434\u043D\u0456_\u0434\u043D\u0456\u0432",MM:"\u043C\u0456\u0441\u044F\u0446\u044C_\u043C\u0456\u0441\u044F\u0446\u0456_\u043C\u0456\u0441\u044F\u0446\u0456\u0432",yy:"\u0440\u0456\u043A_\u0440\u043E\u043A\u0438_\u0440\u043E\u043A\u0456\u0432"}[f].split("_"),l%10==1&&l%100!=11?m[0]:l%10>=2&&l%10<=4&&(l%100<10||l%100>=20)?m[1]:m[2])}var _=function(u,o){return r.test(o)?i[u.month()]:e[u.month()]};_.s=e,_.f=i;var d={name:"uk",weekdays:"\u043D\u0435\u0434\u0456\u043B\u044F_\u043F\u043E\u043D\u0435\u0434\u0456\u043B\u043E\u043A_\u0432\u0456\u0432\u0442\u043E\u0440\u043E\u043A_\u0441\u0435\u0440\u0435\u0434\u0430_\u0447\u0435\u0442\u0432\u0435\u0440_\u043F\u2019\u044F\u0442\u043D\u0438\u0446\u044F_\u0441\u0443\u0431\u043E\u0442\u0430".split("_"),weekdaysShort:"\u043D\u0434\u043B_\u043F\u043D\u0434_\u0432\u0442\u0440_\u0441\u0440\u0434_\u0447\u0442\u0432_\u043F\u0442\u043D_\u0441\u0431\u0442".split("_"),weekdaysMin:"\u043D\u0434_\u043F\u043D_\u0432\u0442_\u0441\u0440_\u0447\u0442_\u043F\u0442_\u0441\u0431".split("_"),months:_,monthsShort:"\u0441\u0456\u0447_\u043B\u044E\u0442_\u0431\u0435\u0440_\u043A\u0432\u0456\u0442_\u0442\u0440\u0430\u0432_\u0447\u0435\u0440\u0432_\u043B\u0438\u043F_\u0441\u0435\u0440\u043F_\u0432\u0435\u0440_\u0436\u043E\u0432\u0442_\u043B\u0438\u0441\u0442_\u0433\u0440\u0443\u0434".split("_"),weekStart:1,relativeTime:{future:"\u0437\u0430 %s",past:"%s \u0442\u043E\u043C\u0443",s:"\u0434\u0435\u043A\u0456\u043B\u044C\u043A\u0430 \u0441\u0435\u043A\u0443\u043D\u0434",m:s,mm:s,h:s,hh:s,d:"\u0434\u0435\u043D\u044C",dd:s,M:"\u043C\u0456\u0441\u044F\u0446\u044C",MM:s,y:"\u0440\u0456\u043A",yy:s},ordinal:function(u){return u},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0440.",LLL:"D MMMM YYYY \u0440., HH:mm",LLLL:"dddd, D MMMM YYYY \u0440., HH:mm"}};return a.default.locale(d,null,!0),d}))});var Ai=v((Yn,yn)=>{(function(n,t){typeof Yn=="object"&&typeof yn<"u"?yn.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_ur=t(n.dayjs)})(Yn,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"ur",weekdays:"\u0627\u062A\u0648\u0627\u0631_\u067E\u06CC\u0631_\u0645\u0646\u06AF\u0644_\u0628\u062F\u06BE_\u062C\u0645\u0639\u0631\u0627\u062A_\u062C\u0645\u0639\u06C1_\u06C1\u0641\u062A\u06C1".split("_"),months:"\u062C\u0646\u0648\u0631\u06CC_\u0641\u0631\u0648\u0631\u06CC_\u0645\u0627\u0631\u0686_\u0627\u067E\u0631\u06CC\u0644_\u0645\u0626\u06CC_\u062C\u0648\u0646_\u062C\u0648\u0644\u0627\u0626\u06CC_\u0627\u06AF\u0633\u062A_\u0633\u062A\u0645\u0628\u0631_\u0627\u06A9\u062A\u0648\u0628\u0631_\u0646\u0648\u0645\u0628\u0631_\u062F\u0633\u0645\u0628\u0631".split("_"),weekStart:1,weekdaysShort:"\u0627\u062A\u0648\u0627\u0631_\u067E\u06CC\u0631_\u0645\u0646\u06AF\u0644_\u0628\u062F\u06BE_\u062C\u0645\u0639\u0631\u0627\u062A_\u062C\u0645\u0639\u06C1_\u06C1\u0641\u062A\u06C1".split("_"),monthsShort:"\u062C\u0646\u0648\u0631\u06CC_\u0641\u0631\u0648\u0631\u06CC_\u0645\u0627\u0631\u0686_\u0627\u067E\u0631\u06CC\u0644_\u0645\u0626\u06CC_\u062C\u0648\u0646_\u062C\u0648\u0644\u0627\u0626\u06CC_\u0627\u06AF\u0633\u062A_\u0633\u062A\u0645\u0628\u0631_\u0627\u06A9\u062A\u0648\u0628\u0631_\u0646\u0648\u0645\u0628\u0631_\u062F\u0633\u0645\u0628\u0631".split("_"),weekdaysMin:"\u0627\u062A\u0648\u0627\u0631_\u067E\u06CC\u0631_\u0645\u0646\u06AF\u0644_\u0628\u062F\u06BE_\u062C\u0645\u0639\u0631\u0627\u062A_\u062C\u0645\u0639\u06C1_\u06C1\u0641\u062A\u06C1".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd\u060C D MMMM YYYY HH:mm"},relativeTime:{future:"%s \u0628\u0639\u062F",past:"%s \u0642\u0628\u0644",s:"\u0686\u0646\u062F \u0633\u06CC\u06A9\u0646\u0688",m:"\u0627\u06CC\u06A9 \u0645\u0646\u0679",mm:"%d \u0645\u0646\u0679",h:"\u0627\u06CC\u06A9 \u06AF\u06BE\u0646\u0679\u06C1",hh:"%d \u06AF\u06BE\u0646\u0679\u06D2",d:"\u0627\u06CC\u06A9 \u062F\u0646",dd:"%d \u062F\u0646",M:"\u0627\u06CC\u06A9 \u0645\u0627\u06C1",MM:"%d \u0645\u0627\u06C1",y:"\u0627\u06CC\u06A9 \u0633\u0627\u0644",yy:"%d \u0633\u0627\u0644"}};return a.default.locale(i,null,!0),i}))});var qi=v((pn,Ln)=>{(function(n,t){typeof pn=="object"&&typeof Ln<"u"?Ln.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_vi=t(n.dayjs)})(pn,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"vi",weekdays:"ch\u1EE7 nh\u1EADt_th\u1EE9 hai_th\u1EE9 ba_th\u1EE9 t\u01B0_th\u1EE9 n\u0103m_th\u1EE9 s\xE1u_th\u1EE9 b\u1EA3y".split("_"),months:"th\xE1ng 1_th\xE1ng 2_th\xE1ng 3_th\xE1ng 4_th\xE1ng 5_th\xE1ng 6_th\xE1ng 7_th\xE1ng 8_th\xE1ng 9_th\xE1ng 10_th\xE1ng 11_th\xE1ng 12".split("_"),weekStart:1,weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [n\u0103m] YYYY",LLL:"D MMMM [n\u0103m] YYYY HH:mm",LLLL:"dddd, D MMMM [n\u0103m] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},relativeTime:{future:"%s t\u1EDBi",past:"%s tr\u01B0\u1EDBc",s:"v\xE0i gi\xE2y",m:"m\u1ED9t ph\xFAt",mm:"%d ph\xFAt",h:"m\u1ED9t gi\u1EDD",hh:"%d gi\u1EDD",d:"m\u1ED9t ng\xE0y",dd:"%d ng\xE0y",M:"m\u1ED9t th\xE1ng",MM:"%d th\xE1ng",y:"m\u1ED9t n\u0103m",yy:"%d n\u0103m"}};return a.default.locale(i,null,!0),i}))});var Ii=v((Dn,vn)=>{(function(n,t){typeof Dn=="object"&&typeof vn<"u"?vn.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_zh_cn=t(n.dayjs)})(Dn,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"zh-cn",weekdays:"\u661F\u671F\u65E5_\u661F\u671F\u4E00_\u661F\u671F\u4E8C_\u661F\u671F\u4E09_\u661F\u671F\u56DB_\u661F\u671F\u4E94_\u661F\u671F\u516D".split("_"),weekdaysShort:"\u5468\u65E5_\u5468\u4E00_\u5468\u4E8C_\u5468\u4E09_\u5468\u56DB_\u5468\u4E94_\u5468\u516D".split("_"),weekdaysMin:"\u65E5_\u4E00_\u4E8C_\u4E09_\u56DB_\u4E94_\u516D".split("_"),months:"\u4E00\u6708_\u4E8C\u6708_\u4E09\u6708_\u56DB\u6708_\u4E94\u6708_\u516D\u6708_\u4E03\u6708_\u516B\u6708_\u4E5D\u6708_\u5341\u6708_\u5341\u4E00\u6708_\u5341\u4E8C\u6708".split("_"),monthsShort:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),ordinal:function(e,r){return r==="W"?e+"\u5468":e+"\u65E5"},weekStart:1,yearStart:4,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY\u5E74M\u6708D\u65E5",LLL:"YYYY\u5E74M\u6708D\u65E5Ah\u70B9mm\u5206",LLLL:"YYYY\u5E74M\u6708D\u65E5ddddAh\u70B9mm\u5206",l:"YYYY/M/D",ll:"YYYY\u5E74M\u6708D\u65E5",lll:"YYYY\u5E74M\u6708D\u65E5 HH:mm",llll:"YYYY\u5E74M\u6708D\u65E5dddd HH:mm"},relativeTime:{future:"%s\u5185",past:"%s\u524D",s:"\u51E0\u79D2",m:"1 \u5206\u949F",mm:"%d \u5206\u949F",h:"1 \u5C0F\u65F6",hh:"%d \u5C0F\u65F6",d:"1 \u5929",dd:"%d \u5929",M:"1 \u4E2A\u6708",MM:"%d \u4E2A\u6708",y:"1 \u5E74",yy:"%d \u5E74"},meridiem:function(e,r){var s=100*e+r;return s<600?"\u51CC\u6668":s<900?"\u65E9\u4E0A":s<1100?"\u4E0A\u5348":s<1300?"\u4E2D\u5348":s<1800?"\u4E0B\u5348":"\u665A\u4E0A"}};return a.default.locale(i,null,!0),i}))});var xi=v((gn,bn)=>{(function(n,t){typeof gn=="object"&&typeof bn<"u"?bn.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_zh_hk=t(n.dayjs)})(gn,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"zh-hk",months:"\u4E00\u6708_\u4E8C\u6708_\u4E09\u6708_\u56DB\u6708_\u4E94\u6708_\u516D\u6708_\u4E03\u6708_\u516B\u6708_\u4E5D\u6708_\u5341\u6708_\u5341\u4E00\u6708_\u5341\u4E8C\u6708".split("_"),monthsShort:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),weekdays:"\u661F\u671F\u65E5_\u661F\u671F\u4E00_\u661F\u671F\u4E8C_\u661F\u671F\u4E09_\u661F\u671F\u56DB_\u661F\u671F\u4E94_\u661F\u671F\u516D".split("_"),weekdaysShort:"\u9031\u65E5_\u9031\u4E00_\u9031\u4E8C_\u9031\u4E09_\u9031\u56DB_\u9031\u4E94_\u9031\u516D".split("_"),weekdaysMin:"\u65E5_\u4E00_\u4E8C_\u4E09_\u56DB_\u4E94_\u516D".split("_"),ordinal:function(e,r){return r==="W"?e+"\u9031":e+"\u65E5"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY\u5E74M\u6708D\u65E5",LLL:"YYYY\u5E74M\u6708D\u65E5 HH:mm",LLLL:"YYYY\u5E74M\u6708D\u65E5dddd HH:mm",l:"YYYY/M/D",ll:"YYYY\u5E74M\u6708D\u65E5",lll:"YYYY\u5E74M\u6708D\u65E5 HH:mm",llll:"YYYY\u5E74M\u6708D\u65E5dddd HH:mm"},relativeTime:{future:"%s\u5167",past:"%s\u524D",s:"\u5E7E\u79D2",m:"\u4E00\u5206\u9418",mm:"%d \u5206\u9418",h:"\u4E00\u5C0F\u6642",hh:"%d \u5C0F\u6642",d:"\u4E00\u5929",dd:"%d \u5929",M:"\u4E00\u500B\u6708",MM:"%d \u500B\u6708",y:"\u4E00\u5E74",yy:"%d \u5E74"},meridiem:function(e,r){var s=100*e+r;return s<600?"\u51CC\u6668":s<900?"\u65E9\u4E0A":s<1100?"\u4E0A\u5348":s<1300?"\u4E2D\u5348":s<1800?"\u4E0B\u5348":"\u665A\u4E0A"}};return a.default.locale(i,null,!0),i}))});var Ni=v((Sn,kn)=>{(function(n,t){typeof Sn=="object"&&typeof kn<"u"?kn.exports=t(k()):typeof define=="function"&&define.amd?define(["dayjs"],t):(n=typeof globalThis<"u"?globalThis:n||self).dayjs_locale_zh_tw=t(n.dayjs)})(Sn,(function(n){"use strict";function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(n),i={name:"zh-tw",weekdays:"\u661F\u671F\u65E5_\u661F\u671F\u4E00_\u661F\u671F\u4E8C_\u661F\u671F\u4E09_\u661F\u671F\u56DB_\u661F\u671F\u4E94_\u661F\u671F\u516D".split("_"),weekdaysShort:"\u9031\u65E5_\u9031\u4E00_\u9031\u4E8C_\u9031\u4E09_\u9031\u56DB_\u9031\u4E94_\u9031\u516D".split("_"),weekdaysMin:"\u65E5_\u4E00_\u4E8C_\u4E09_\u56DB_\u4E94_\u516D".split("_"),months:"\u4E00\u6708_\u4E8C\u6708_\u4E09\u6708_\u56DB\u6708_\u4E94\u6708_\u516D\u6708_\u4E03\u6708_\u516B\u6708_\u4E5D\u6708_\u5341\u6708_\u5341\u4E00\u6708_\u5341\u4E8C\u6708".split("_"),monthsShort:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),ordinal:function(e,r){return r==="W"?e+"\u9031":e+"\u65E5"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY\u5E74M\u6708D\u65E5",LLL:"YYYY\u5E74M\u6708D\u65E5 HH:mm",LLLL:"YYYY\u5E74M\u6708D\u65E5dddd HH:mm",l:"YYYY/M/D",ll:"YYYY\u5E74M\u6708D\u65E5",lll:"YYYY\u5E74M\u6708D\u65E5 HH:mm",llll:"YYYY\u5E74M\u6708D\u65E5dddd HH:mm"},relativeTime:{future:"%s\u5167",past:"%s\u524D",s:"\u5E7E\u79D2",m:"1 \u5206\u9418",mm:"%d \u5206\u9418",h:"1 \u5C0F\u6642",hh:"%d \u5C0F\u6642",d:"1 \u5929",dd:"%d \u5929",M:"1 \u500B\u6708",MM:"%d \u500B\u6708",y:"1 \u5E74",yy:"%d \u5E74"},meridiem:function(e,r){var s=100*e+r;return s<600?"\u51CC\u6668":s<900?"\u65E9\u4E0A":s<1100?"\u4E0A\u5348":s<1300?"\u4E2D\u5348":s<1800?"\u4E0B\u5348":"\u665A\u4E0A"}};return a.default.locale(i,null,!0),i}))});var jn=60,Tn=jn*60,wn=Tn*24,Xi=wn*7,se=1e3,ce=jn*se,ge=Tn*se,$n=wn*se,Cn=Xi*se,_e="millisecond",te="second",ne="minute",ie="hour",V="day",de="week",G="month",he="quarter",K="year",re="date",On="YYYY-MM-DDTHH:mm:ssZ",be="Invalid Date",zn=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,An=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g;var In={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(t){var a=["th","st","nd","rd"],i=t%100;return"["+t+(a[(i-20)%10]||a[i]||a[0])+"]"}};var Se=function(t,a,i){var e=String(t);return!e||e.length>=a?t:""+Array(a+1-e.length).join(i)+t},Bi=function(t){var a=-t.utcOffset(),i=Math.abs(a),e=Math.floor(i/60),r=i%60;return(a<=0?"+":"-")+Se(e,2,"0")+":"+Se(r,2,"0")},er=function n(t,a){if(t.date()1)return n(s[0])}else{var _=t.name;ue[_]=t,e=_}return!i&&e&&(le=e),e||!i&&le},E=function(t,a){if(ke(t))return t.clone();var i=typeof a=="object"?a:{};return i.date=t,i.args=arguments,new Ye(i)},rr=function(t,a){return E(t,{locale:a.$L,utc:a.$u,x:a.$x,$offset:a.$offset})},z=xn;z.l=Me;z.i=ke;z.w=rr;var ar=function(t){var a=t.date,i=t.utc;if(a===null)return new Date(NaN);if(z.u(a))return new Date;if(a instanceof Date)return new Date(a);if(typeof a=="string"&&!/Z$/i.test(a)){var e=a.match(zn);if(e){var r=e[2]-1||0,s=(e[7]||"0").substring(0,3);return i?new Date(Date.UTC(e[1],r,e[3]||1,e[4]||0,e[5]||0,e[6]||0,s)):new Date(e[1],r,e[3]||1,e[4]||0,e[5]||0,e[6]||0,s)}}return new Date(a)},Ye=(function(){function n(a){this.$L=Me(a.locale,null,!0),this.parse(a),this.$x=this.$x||a.x||{},this[Nn]=!0}var t=n.prototype;return t.parse=function(i){this.$d=ar(i),this.init()},t.init=function(){var i=this.$d;this.$y=i.getFullYear(),this.$M=i.getMonth(),this.$D=i.getDate(),this.$W=i.getDay(),this.$H=i.getHours(),this.$m=i.getMinutes(),this.$s=i.getSeconds(),this.$ms=i.getMilliseconds()},t.$utils=function(){return z},t.isValid=function(){return this.$d.toString()!==be},t.isSame=function(i,e){var r=E(i);return this.startOf(e)<=r&&r<=this.endOf(e)},t.isAfter=function(i,e){return E(i){this.focusedDate??(this.focusedDate=(this.getDefaultFocusedDate()??O()).tz(_)),this.focusedMonth??(this.focusedMonth=this.focusedDate.month()),this.focusedYear??(this.focusedYear=this.focusedDate.year())});let d=this.getSelectedDate()??this.getDefaultFocusedDate()??O().tz(_).hour(0).minute(0).second(0);(this.getMaxDate()!==null&&d.isAfter(this.getMaxDate())||this.getMinDate()!==null&&d.isBefore(this.getMinDate()))&&(d=null),this.hour=d?.hour()??0,this.minute=d?.minute()??0,this.second=d?.second()??0,this.setDisplayText(),this.setMonths(),this.setDayLabels(),i&&this.$nextTick(()=>this.togglePanelVisibility(this.$refs.button)),this.$watch("focusedMonth",()=>{this.focusedMonth=+this.focusedMonth,this.focusedDate.month()!==this.focusedMonth&&(this.focusedDate=this.focusedDate.month(this.focusedMonth))}),this.$watch("focusedYear",()=>{if(this.focusedYear?.length>4&&(this.focusedYear=this.focusedYear.substring(0,4)),!this.focusedYear||this.focusedYear?.length!==4)return;let u=+this.focusedYear;Number.isInteger(u)||(u=O().tz(_).year(),this.focusedYear=u),this.focusedDate.year()!==u&&(this.focusedDate=this.focusedDate.year(u))}),this.$watch("focusedDate",()=>{let u=this.focusedDate.month(),o=this.focusedDate.year();this.focusedMonth!==u&&(this.focusedMonth=u),this.focusedYear!==o&&(this.focusedYear=o),this.setupDaysGrid()}),this.$watch("hour",()=>{let u=+this.hour;if(Number.isInteger(u)?u>23?this.hour=0:u<0?this.hour=23:this.hour=u:this.hour=0,this.isClearingState)return;let o=this.getSelectedDate()??this.focusedDate;this.setState(o.hour(this.hour??0))}),this.$watch("minute",()=>{let u=+this.minute;if(Number.isInteger(u)?u>59?this.minute=0:u<0?this.minute=59:this.minute=u:this.minute=0,this.isClearingState)return;let o=this.getSelectedDate()??this.focusedDate;this.setState(o.minute(this.minute??0))}),this.$watch("second",()=>{let u=+this.second;if(Number.isInteger(u)?u>59?this.second=0:u<0?this.second=59:this.second=u:this.second=0,this.isClearingState)return;let o=this.getSelectedDate()??this.focusedDate;this.setState(o.second(this.second??0))}),this.$watch("state",()=>{if(this.state===void 0)return;let u=this.getSelectedDate();if(u===null){this.clearState();return}this.getMaxDate()!==null&&u?.isAfter(this.getMaxDate())&&(u=null),this.getMinDate()!==null&&u?.isBefore(this.getMinDate())&&(u=null);let o=u?.hour()??0;this.hour!==o&&(this.hour=o);let f=u?.minute()??0;this.minute!==f&&(this.minute=f);let l=u?.second()??0;this.second!==l&&(this.second=l),this.setDisplayText()})},clearState(){this.isClearingState=!0,this.setState(null),this.hour=0,this.minute=0,this.second=0,this.$nextTick(()=>this.isClearingState=!1)},dateIsDisabled(d){return!!(this.$refs?.disabledDates&&JSON.parse(this.$refs.disabledDates.value??[]).some(u=>(u=O(u),u.isValid()?u.isSame(d,"day"):!1))||this.getMaxDate()&&d.isAfter(this.getMaxDate(),"day")||this.getMinDate()&&d.isBefore(this.getMinDate(),"day"))},dayIsDisabled(d){return this.focusedDate??(this.focusedDate=O().tz(_)),this.dateIsDisabled(this.focusedDate.date(d))},dayIsSelected(d){let u=this.getSelectedDate();return u===null?!1:(this.focusedDate??(this.focusedDate=O().tz(_)),u.date()===d&&u.month()===this.focusedDate.month()&&u.year()===this.focusedDate.year())},dayIsToday(d){let u=O().tz(_);return this.focusedDate??(this.focusedDate=u),u.date()===d&&u.month()===this.focusedDate.month()&&u.year()===this.focusedDate.year()},focusPreviousDay(){this.focusedDate??(this.focusedDate=O().tz(_)),this.focusedDate=this.focusedDate.subtract(1,"day")},focusPreviousWeek(){this.focusedDate??(this.focusedDate=O().tz(_)),this.focusedDate=this.focusedDate.subtract(1,"week")},focusNextDay(){this.focusedDate??(this.focusedDate=O().tz(_)),this.focusedDate=this.focusedDate.add(1,"day")},focusNextWeek(){this.focusedDate??(this.focusedDate=O().tz(_)),this.focusedDate=this.focusedDate.add(1,"week")},getDayLabels(){let d=O.weekdaysShort();return a===0?d:[...d.slice(a),...d.slice(0,a)]},getMaxDate(){let d=O(this.$refs.maxDate?.value);return d.isValid()?d:null},getMinDate(){let d=O(this.$refs.minDate?.value);return d.isValid()?d:null},getSelectedDate(){if(this.state===void 0||this.state===null)return null;let d=O(this.state);return d.isValid()?d:null},getDefaultFocusedDate(){if(this.defaultFocusedDate===null)return null;let d=O(this.defaultFocusedDate);return d.isValid()?d:null},togglePanelVisibility(){this.isOpen()||(this.focusedDate=this.getSelectedDate()??this.focusedDate??this.getMinDate()??O().tz(_),this.setupDaysGrid()),this.$refs.panel.toggle(this.$refs.button)},selectDate(d=null){d&&this.setFocusedDay(d),this.focusedDate??(this.focusedDate=O().tz(_)),this.setState(this.focusedDate),r&&this.togglePanelVisibility()},setDisplayText(){this.displayText=this.getSelectedDate()?this.getSelectedDate().format(t):""},setMonths(){this.months=O.months()},setDayLabels(){this.dayLabels=this.getDayLabels()},setupDaysGrid(){this.focusedDate??(this.focusedDate=O().tz(_)),this.emptyDaysInFocusedMonth=Array.from({length:this.focusedDate.date(8-a).day()},(d,u)=>u+1),this.daysInFocusedMonth=Array.from({length:this.focusedDate.daysInMonth()},(d,u)=>u+1)},setFocusedDay(d){this.focusedDate=(this.focusedDate??O().tz(_)).date(d)},setState(d){if(d===null){this.state=null,this.setDisplayText();return}this.dateIsDisabled(d)||(this.state=d.hour(this.hour??0).minute(this.minute??0).second(this.second??0).format("YYYY-MM-DD HH:mm:ss"),this.setDisplayText())},isOpen(){return this.$refs.panel?.style.display==="block"}}}var Fi={am:Gn(),ar:Rn(),bs:Zn(),ca:Vn(),ckb:Re(),cs:Qn(),cy:Xn(),da:Bn(),de:ei(),el:ti(),en:ni(),es:ii(),et:ri(),fa:ai(),fi:si(),fr:ui(),he:di(),hi:oi(),hu:_i(),hy:li(),id:fi(),it:mi(),ja:ci(),ka:hi(),km:Mi(),ku:Re(),lt:Yi(),lv:yi(),ms:pi(),my:Li(),nb:Di(),nl:vi(),pl:gi(),pt:bi(),pt_BR:Si(),ro:ki(),ru:Hi(),sl:ji(),sr_Cyrl:Ti(),sr_Latn:wi(),sv:$i(),th:Ci(),tr:Oi(),uk:zi(),ur:Ai(),vi:qi(),zh_CN:Ii(),zh_HK:xi(),zh_TW:Ni()};export{sr as default}; diff --git a/public/js/filament/forms/components/file-upload.js b/public/js/filament/forms/components/file-upload.js new file mode 100644 index 0000000..f751684 --- /dev/null +++ b/public/js/filament/forms/components/file-upload.js @@ -0,0 +1,116 @@ +var xr=Object.defineProperty;var yr=(e,t)=>{for(var i in t)xr(e,i,{get:t[i],enumerable:!0})};var na={};yr(na,{FileOrigin:()=>Bt,FileStatus:()=>Tt,OptionTypes:()=>Gi,Status:()=>nl,create:()=>ft,destroy:()=>ht,find:()=>Hi,getOptions:()=>Wi,parse:()=>Ui,registerPlugin:()=>Ie,setOptions:()=>Dt,supported:()=>Vi});var Rr=e=>e instanceof HTMLElement,Sr=(e,t=[],i=[])=>{let a={...e},n=[],l=[],o=()=>({...a}),r=()=>{let g=[...n];return n.length=0,g},s=()=>{let g=[...l];l.length=0,g.forEach(({type:f,data:b})=>{p(f,b)})},p=(g,f,b)=>{if(b&&!document.hidden){l.push({type:g,data:f});return}u[g]&&u[g](f),n.push({type:g,data:f})},c=(g,...f)=>m[g]?m[g](...f):null,d={getState:o,processActionQueue:r,processDispatchQueue:s,dispatch:p,query:c},m={};t.forEach(g=>{m={...g(a),...m}});let u={};return i.forEach(g=>{u={...g(p,c,a),...u}}),d},_r=(e,t,i)=>{if(typeof i=="function"){e[t]=i;return}Object.defineProperty(e,t,{...i})},te=(e,t)=>{for(let i in e)e.hasOwnProperty(i)&&t(i,e[i])},He=e=>{let t={};return te(e,i=>{_r(t,i,e[i])}),t},se=(e,t,i=null)=>{if(i===null)return e.getAttribute(t)||e.hasAttribute(t);e.setAttribute(t,i)},wr="http://www.w3.org/2000/svg",Lr=["svg","path"],Pa=e=>Lr.includes(e),li=(e,t,i={})=>{typeof t=="object"&&(i=t,t=null);let a=Pa(e)?document.createElementNS(wr,e):document.createElement(e);return t&&(Pa(e)?se(a,"class",t):a.className=t),te(i,(n,l)=>{se(a,n,l)}),a},Mr=e=>(t,i)=>{typeof i<"u"&&e.children[i]?e.insertBefore(t,e.children[i]):e.appendChild(t)},Ar=(e,t)=>(i,a)=>(typeof a<"u"?t.splice(a,0,i):t.push(i),i),Pr=(e,t)=>i=>(t.splice(t.indexOf(i),1),i.element.parentNode&&e.removeChild(i.element),i),zr=typeof window<"u"&&typeof window.document<"u",bn=()=>zr,Fr=bn()?li("svg"):{},Or="children"in Fr?e=>e.children.length:e=>e.childNodes.length,En=(e,t,i,a)=>{let n=i[0]||e.left,l=i[1]||e.top,o=n+e.width,r=l+e.height*(a[1]||1),s={element:{...e},inner:{left:e.left,top:e.top,right:e.right,bottom:e.bottom},outer:{left:n,top:l,right:o,bottom:r}};return t.filter(p=>!p.isRectIgnored()).map(p=>p.rect).forEach(p=>{za(s.inner,{...p.inner}),za(s.outer,{...p.outer})}),Fa(s.inner),s.outer.bottom+=s.element.marginBottom,s.outer.right+=s.element.marginRight,Fa(s.outer),s},za=(e,t)=>{t.top+=e.top,t.right+=e.left,t.bottom+=e.top,t.left+=e.left,t.bottom>e.bottom&&(e.bottom=t.bottom),t.right>e.right&&(e.right=t.right)},Fa=e=>{e.width=e.right-e.left,e.height=e.bottom-e.top},Xe=e=>typeof e=="number",Dr=(e,t,i,a=.001)=>Math.abs(e-t){let a=null,n=null,l=0,o=!1,p=He({interpolate:(c,d)=>{if(o)return;if(!(Xe(a)&&Xe(n))){o=!0,l=0;return}let m=-(n-a)*e;l+=m/i,n+=l,l*=t,Dr(n,a,l)||d?(n=a,l=0,o=!0,p.onupdate(n),p.oncomplete(n)):p.onupdate(n)},target:{set:c=>{if(Xe(c)&&!Xe(n)&&(n=c),a===null&&(a=c,n=c),a=c,n===a||typeof a>"u"){o=!0,l=0,p.onupdate(n),p.oncomplete(n);return}o=!1},get:()=>a},resting:{get:()=>o},onupdate:c=>{},oncomplete:c=>{}});return p};var Br=e=>e<.5?2*e*e:-1+(4-2*e)*e,kr=({duration:e=500,easing:t=Br,delay:i=0}={})=>{let a=null,n,l,o=!0,r=!1,s=null,c=He({interpolate:(d,m)=>{o||s===null||(a===null&&(a=d),!(d-a=e||m?(n=1,l=r?0:1,c.onupdate(l*s),c.oncomplete(l*s),o=!0):(l=n/e,c.onupdate((n>=0?t(r?1-l:l):0)*s))))},target:{get:()=>r?0:s,set:d=>{if(s===null){s=d,c.onupdate(d),c.oncomplete(d);return}do},onupdate:d=>{},oncomplete:d=>{}});return c},Oa={spring:Cr,tween:kr},Nr=(e,t,i)=>{let a=e[t]&&typeof e[t][i]=="object"?e[t][i]:e[t]||e,n=typeof a=="string"?a:a.type,l=typeof a=="object"?{...a}:{};return Oa[n]?Oa[n](l):null},ji=(e,t,i,a=!1)=>{t=Array.isArray(t)?t:[t],t.forEach(n=>{e.forEach(l=>{let o=l,r=()=>i[l],s=p=>i[l]=p;typeof l=="object"&&(o=l.key,r=l.getter||r,s=l.setter||s),!(n[o]&&!a)&&(n[o]={get:r,set:s})})})},Vr=({mixinConfig:e,viewProps:t,viewInternalAPI:i,viewExternalAPI:a})=>{let n={...t},l=[];return te(e,(o,r)=>{let s=Nr(r);if(!s)return;s.onupdate=c=>{t[o]=c},s.target=n[o],ji([{key:o,setter:c=>{s.target!==c&&(s.target=c)},getter:()=>t[o]}],[i,a],t,!0),l.push(s)}),{write:o=>{let r=document.hidden,s=!0;return l.forEach(p=>{p.resting||(s=!1),p.interpolate(o,r)}),s},destroy:()=>{}}},Gr=e=>(t,i)=>{e.addEventListener(t,i)},Ur=e=>(t,i)=>{e.removeEventListener(t,i)},Hr=({mixinConfig:e,viewProps:t,viewInternalAPI:i,viewExternalAPI:a,viewState:n,view:l})=>{let o=[],r=Gr(l.element),s=Ur(l.element);return a.on=(p,c)=>{o.push({type:p,fn:c}),r(p,c)},a.off=(p,c)=>{o.splice(o.findIndex(d=>d.type===p&&d.fn===c),1),s(p,c)},{write:()=>!0,destroy:()=>{o.forEach(p=>{s(p.type,p.fn)})}}},Wr=({mixinConfig:e,viewProps:t,viewExternalAPI:i})=>{ji(e,i,t)},ue=e=>e!=null,jr={opacity:1,scaleX:1,scaleY:1,translateX:0,translateY:0,rotateX:0,rotateY:0,rotateZ:0,originX:0,originY:0},Yr=({mixinConfig:e,viewProps:t,viewInternalAPI:i,viewExternalAPI:a,view:n})=>{let l={...t},o={};ji(e,[i,a],t);let r=()=>[t.translateX||0,t.translateY||0],s=()=>[t.scaleX||0,t.scaleY||0],p=()=>n.rect?En(n.rect,n.childViews,r(),s()):null;return i.rect={get:p},a.rect={get:p},e.forEach(c=>{t[c]=typeof l[c]>"u"?jr[c]:l[c]}),{write:()=>{if(qr(o,t))return $r(n.element,t),Object.assign(o,{...t}),!0},destroy:()=>{}}},qr=(e,t)=>{if(Object.keys(e).length!==Object.keys(t).length)return!0;for(let i in t)if(t[i]!==e[i])return!0;return!1},$r=(e,{opacity:t,perspective:i,translateX:a,translateY:n,scaleX:l,scaleY:o,rotateX:r,rotateY:s,rotateZ:p,originX:c,originY:d,width:m,height:u})=>{let g="",f="";(ue(c)||ue(d))&&(f+=`transform-origin: ${c||0}px ${d||0}px;`),ue(i)&&(g+=`perspective(${i}px) `),(ue(a)||ue(n))&&(g+=`translate3d(${a||0}px, ${n||0}px, 0) `),(ue(l)||ue(o))&&(g+=`scale3d(${ue(l)?l:1}, ${ue(o)?o:1}, 1) `),ue(p)&&(g+=`rotateZ(${p}rad) `),ue(r)&&(g+=`rotateX(${r}rad) `),ue(s)&&(g+=`rotateY(${s}rad) `),g.length&&(f+=`transform:${g};`),ue(t)&&(f+=`opacity:${t};`,t===0&&(f+="visibility:hidden;"),t<1&&(f+="pointer-events:none;")),ue(u)&&(f+=`height:${u}px;`),ue(m)&&(f+=`width:${m}px;`);let b=e.elementCurrentStyle||"";(f.length!==b.length||f!==b)&&(e.style.cssText=f,e.elementCurrentStyle=f)},Xr={styles:Yr,listeners:Hr,animations:Vr,apis:Wr},Da=(e={},t={},i={})=>(t.layoutCalculated||(e.paddingTop=parseInt(i.paddingTop,10)||0,e.marginTop=parseInt(i.marginTop,10)||0,e.marginRight=parseInt(i.marginRight,10)||0,e.marginBottom=parseInt(i.marginBottom,10)||0,e.marginLeft=parseInt(i.marginLeft,10)||0,t.layoutCalculated=!0),e.left=t.offsetLeft||0,e.top=t.offsetTop||0,e.width=t.offsetWidth||0,e.height=t.offsetHeight||0,e.right=e.left+e.width,e.bottom=e.top+e.height,e.scrollTop=t.scrollTop,e.hidden=t.offsetParent===null,e),le=({tag:e="div",name:t=null,attributes:i={},read:a=()=>{},write:n=()=>{},create:l=()=>{},destroy:o=()=>{},filterFrameActionsForChild:r=(u,g)=>g,didCreateView:s=()=>{},didWriteView:p=()=>{},ignoreRect:c=!1,ignoreRectUpdate:d=!1,mixins:m=[]}={})=>(u,g={})=>{let f=li(e,`filepond--${t}`,i),b=window.getComputedStyle(f,null),v=Da(),h=null,E=!1,I=[],y=[],T={},_={},x=[n],R=[a],z=[o],P=()=>f,A=()=>I.concat(),B=()=>T,w=V=>(W,$)=>W(V,$),F=()=>h||(h=En(v,I,[0,0],[1,1]),h),S=()=>b,L=()=>{h=null,I.forEach($=>$._read()),!(d&&v.width&&v.height)&&Da(v,f,b);let W={root:Z,props:g,rect:v};R.forEach($=>$(W))},D=(V,W,$)=>{let ie=W.length===0;return x.forEach(ee=>{ee({props:g,root:Z,actions:W,timestamp:V,shouldOptimize:$})===!1&&(ie=!1)}),y.forEach(ee=>{ee.write(V)===!1&&(ie=!1)}),I.filter(ee=>!!ee.element.parentNode).forEach(ee=>{ee._write(V,r(ee,W),$)||(ie=!1)}),I.forEach((ee,pt)=>{ee.element.parentNode||(Z.appendChild(ee.element,pt),ee._read(),ee._write(V,r(ee,W),$),ie=!1)}),E=ie,p({props:g,root:Z,actions:W,timestamp:V}),ie},O=()=>{y.forEach(V=>V.destroy()),z.forEach(V=>{V({root:Z,props:g})}),I.forEach(V=>V._destroy())},U={element:{get:P},style:{get:S},childViews:{get:A}},C={...U,rect:{get:F},ref:{get:B},is:V=>t===V,appendChild:Mr(f),createChildView:w(u),linkView:V=>(I.push(V),V),unlinkView:V=>{I.splice(I.indexOf(V),1)},appendChildView:Ar(f,I),removeChildView:Pr(f,I),registerWriter:V=>x.push(V),registerReader:V=>R.push(V),registerDestroyer:V=>z.push(V),invalidateLayout:()=>f.layoutCalculated=!1,dispatch:u.dispatch,query:u.query},X={element:{get:P},childViews:{get:A},rect:{get:F},resting:{get:()=>E},isRectIgnored:()=>c,_read:L,_write:D,_destroy:O},K={...U,rect:{get:()=>v}};Object.keys(m).sort((V,W)=>V==="styles"?1:W==="styles"?-1:0).forEach(V=>{let W=Xr[V]({mixinConfig:m[V],viewProps:g,viewState:_,viewInternalAPI:C,viewExternalAPI:X,view:He(K)});W&&y.push(W)});let Z=He(C);l({root:Z,props:g});let ce=Or(f);return I.forEach((V,W)=>{Z.appendChild(V.element,ce+W)}),s(Z),He(X)},Kr=(e,t,i=60)=>{let a="__framePainter";if(window[a]){window[a].readers.push(e),window[a].writers.push(t);return}window[a]={readers:[e],writers:[t]};let n=window[a],l=1e3/i,o=null,r=null,s=null,p=null,c=()=>{document.hidden?(s=()=>window.setTimeout(()=>d(performance.now()),l),p=()=>window.clearTimeout(r)):(s=()=>window.requestAnimationFrame(d),p=()=>window.cancelAnimationFrame(r))};document.addEventListener("visibilitychange",()=>{p&&p(),c(),d(performance.now())});let d=m=>{r=s(d),o||(o=m);let u=m-o;u<=l||(o=m-u%l,n.readers.forEach(g=>g()),n.writers.forEach(g=>g(m)))};return c(),d(performance.now()),{pause:()=>{p(r)}}},fe=(e,t)=>({root:i,props:a,actions:n=[],timestamp:l,shouldOptimize:o})=>{n.filter(r=>e[r.type]).forEach(r=>e[r.type]({root:i,props:a,action:r.data,timestamp:l,shouldOptimize:o})),t&&t({root:i,props:a,actions:n,timestamp:l,shouldOptimize:o})},Ca=(e,t)=>t.parentNode.insertBefore(e,t),Ba=(e,t)=>t.parentNode.insertBefore(e,t.nextSibling),ci=e=>Array.isArray(e),Ve=e=>e==null,Zr=e=>e.trim(),di=e=>""+e,Qr=(e,t=",")=>Ve(e)?[]:ci(e)?e:di(e).split(t).map(Zr).filter(i=>i.length),Tn=e=>typeof e=="boolean",vn=e=>Tn(e)?e:e==="true",ge=e=>typeof e=="string",In=e=>Xe(e)?e:ge(e)?di(e).replace(/[a-z]+/gi,""):0,ni=e=>parseInt(In(e),10),ka=e=>parseFloat(In(e)),Et=e=>Xe(e)&&isFinite(e)&&Math.floor(e)===e,Na=(e,t=1e3)=>{if(Et(e))return e;let i=di(e).trim();return/MB$/i.test(i)?(i=i.replace(/MB$i/,"").trim(),ni(i)*t*t):/KB/i.test(i)?(i=i.replace(/KB$i/,"").trim(),ni(i)*t):ni(i)},Ke=e=>typeof e=="function",Jr=e=>{let t=self,i=e.split("."),a=null;for(;a=i.shift();)if(t=t[a],!t)return null;return t},Va={process:"POST",patch:"PATCH",revert:"DELETE",fetch:"GET",restore:"GET",load:"GET"},es=e=>{let t={};return t.url=ge(e)?e:e.url||"",t.timeout=e.timeout?parseInt(e.timeout,10):0,t.headers=e.headers?e.headers:{},te(Va,i=>{t[i]=ts(i,e[i],Va[i],t.timeout,t.headers)}),t.process=e.process||ge(e)||e.url?t.process:null,t.remove=e.remove||null,delete t.headers,t},ts=(e,t,i,a,n)=>{if(t===null)return null;if(typeof t=="function")return t;let l={url:i==="GET"||i==="PATCH"?`?${e}=`:"",method:i,headers:n,withCredentials:!1,timeout:a,onload:null,ondata:null,onerror:null};if(ge(t))return l.url=t,l;if(Object.assign(l,t),ge(l.headers)){let o=l.headers.split(/:(.+)/);l.headers={header:o[0],value:o[1]}}return l.withCredentials=vn(l.withCredentials),l},is=e=>es(e),as=e=>e===null,de=e=>typeof e=="object"&&e!==null,ns=e=>de(e)&&ge(e.url)&&de(e.process)&&de(e.revert)&&de(e.restore)&&de(e.fetch),zi=e=>ci(e)?"array":as(e)?"null":Et(e)?"int":/^[0-9]+ ?(?:GB|MB|KB)$/gi.test(e)?"bytes":ns(e)?"api":typeof e,ls=e=>e.replace(/{\s*'/g,'{"').replace(/'\s*}/g,'"}').replace(/'\s*:/g,'":').replace(/:\s*'/g,':"').replace(/,\s*'/g,',"').replace(/'\s*,/g,'",'),os={array:Qr,boolean:vn,int:e=>zi(e)==="bytes"?Na(e):ni(e),number:ka,float:ka,bytes:Na,string:e=>Ke(e)?e:di(e),function:e=>Jr(e),serverapi:is,object:e=>{try{return JSON.parse(ls(e))}catch{return null}}},rs=(e,t)=>os[t](e),xn=(e,t,i)=>{if(e===t)return e;let a=zi(e);if(a!==i){let n=rs(e,i);if(a=zi(n),n===null)throw`Trying to assign value with incorrect type to "${option}", allowed type: "${i}"`;e=n}return e},ss=(e,t)=>{let i=e;return{enumerable:!0,get:()=>i,set:a=>{i=xn(a,e,t)}}},cs=e=>{let t={};return te(e,i=>{let a=e[i];t[i]=ss(a[0],a[1])}),He(t)},ds=e=>({items:[],listUpdateTimeout:null,itemUpdateTimeout:null,processingQueue:[],options:cs(e)}),pi=(e,t="-")=>e.split(/(?=[A-Z])/).map(i=>i.toLowerCase()).join(t),ps=(e,t)=>{let i={};return te(t,a=>{i[a]={get:()=>e.getState().options[a],set:n=>{e.dispatch(`SET_${pi(a,"_").toUpperCase()}`,{value:n})}}}),i},ms=e=>(t,i,a)=>{let n={};return te(e,l=>{let o=pi(l,"_").toUpperCase();n[`SET_${o}`]=r=>{try{a.options[l]=r.value}catch{}t(`DID_SET_${o}`,{value:a.options[l]})}}),n},us=e=>t=>{let i={};return te(e,a=>{i[`GET_${pi(a,"_").toUpperCase()}`]=n=>t.options[a]}),i},Re={API:1,DROP:2,BROWSE:3,PASTE:4,NONE:5},Yi=()=>Math.random().toString(36).substring(2,11),qi=(e,t)=>e.splice(t,1),gs=(e,t)=>{t?e():document.hidden?Promise.resolve(1).then(e):setTimeout(e,0)},mi=()=>{let e=[],t=(a,n)=>{qi(e,e.findIndex(l=>l.event===a&&(l.cb===n||!n)))},i=(a,n,l)=>{e.filter(o=>o.event===a).map(o=>o.cb).forEach(o=>gs(()=>o(...n),l))};return{fireSync:(a,...n)=>{i(a,n,!0)},fire:(a,...n)=>{i(a,n,!1)},on:(a,n)=>{e.push({event:a,cb:n})},onOnce:(a,n)=>{e.push({event:a,cb:(...l)=>{t(a,n),n(...l)}})},off:t}},yn=(e,t,i)=>{Object.getOwnPropertyNames(e).filter(a=>!i.includes(a)).forEach(a=>Object.defineProperty(t,a,Object.getOwnPropertyDescriptor(e,a)))},fs=["fire","process","revert","load","on","off","onOnce","retryLoad","extend","archive","archived","release","released","requestProcessing","freeze"],he=e=>{let t={};return yn(e,t,fs),t},hs=e=>{e.forEach((t,i)=>{t.released&&qi(e,i)})},H={INIT:1,IDLE:2,PROCESSING_QUEUED:9,PROCESSING:3,PROCESSING_COMPLETE:5,PROCESSING_ERROR:6,PROCESSING_REVERT_ERROR:10,LOADING:7,LOAD_ERROR:8},re={INPUT:1,LIMBO:2,LOCAL:3},Rn=e=>/[^0-9]+/.exec(e),Sn=()=>Rn(1.1.toLocaleString())[0],bs=()=>{let e=Sn(),t=1e3.toLocaleString();return t!=="1000"?Rn(t)[0]:e==="."?",":"."},M={BOOLEAN:"boolean",INT:"int",NUMBER:"number",STRING:"string",ARRAY:"array",OBJECT:"object",FUNCTION:"function",ACTION:"action",SERVER_API:"serverapi",REGEX:"regex"},$i=[],Ae=(e,t,i)=>new Promise((a,n)=>{let l=$i.filter(r=>r.key===e).map(r=>r.cb);if(l.length===0){a(t);return}let o=l.shift();l.reduce((r,s)=>r.then(p=>s(p,i)),o(t,i)).then(r=>a(r)).catch(r=>n(r))}),it=(e,t,i)=>$i.filter(a=>a.key===e).map(a=>a.cb(t,i)),Es=(e,t)=>$i.push({key:e,cb:t}),Ts=e=>Object.assign(mt,e),oi=()=>({...mt}),vs=e=>{te(e,(t,i)=>{mt[t]&&(mt[t][0]=xn(i,mt[t][0],mt[t][1]))})},mt={id:[null,M.STRING],name:["filepond",M.STRING],disabled:[!1,M.BOOLEAN],className:[null,M.STRING],required:[!1,M.BOOLEAN],captureMethod:[null,M.STRING],allowSyncAcceptAttribute:[!0,M.BOOLEAN],allowDrop:[!0,M.BOOLEAN],allowBrowse:[!0,M.BOOLEAN],allowPaste:[!0,M.BOOLEAN],allowMultiple:[!1,M.BOOLEAN],allowReplace:[!0,M.BOOLEAN],allowRevert:[!0,M.BOOLEAN],allowRemove:[!0,M.BOOLEAN],allowProcess:[!0,M.BOOLEAN],allowReorder:[!1,M.BOOLEAN],allowDirectoriesOnly:[!1,M.BOOLEAN],storeAsFile:[!1,M.BOOLEAN],forceRevert:[!1,M.BOOLEAN],maxFiles:[null,M.INT],checkValidity:[!1,M.BOOLEAN],itemInsertLocationFreedom:[!0,M.BOOLEAN],itemInsertLocation:["before",M.STRING],itemInsertInterval:[75,M.INT],dropOnPage:[!1,M.BOOLEAN],dropOnElement:[!0,M.BOOLEAN],dropValidation:[!1,M.BOOLEAN],ignoredFiles:[[".ds_store","thumbs.db","desktop.ini"],M.ARRAY],instantUpload:[!0,M.BOOLEAN],maxParallelUploads:[2,M.INT],allowMinimumUploadDuration:[!0,M.BOOLEAN],chunkUploads:[!1,M.BOOLEAN],chunkForce:[!1,M.BOOLEAN],chunkSize:[5e6,M.INT],chunkRetryDelays:[[500,1e3,3e3],M.ARRAY],server:[null,M.SERVER_API],fileSizeBase:[1e3,M.INT],labelFileSizeBytes:["bytes",M.STRING],labelFileSizeKilobytes:["KB",M.STRING],labelFileSizeMegabytes:["MB",M.STRING],labelFileSizeGigabytes:["GB",M.STRING],labelDecimalSeparator:[Sn(),M.STRING],labelThousandsSeparator:[bs(),M.STRING],labelIdle:['Drag & Drop your files or Browse',M.STRING],labelInvalidField:["Field contains invalid files",M.STRING],labelFileWaitingForSize:["Waiting for size",M.STRING],labelFileSizeNotAvailable:["Size not available",M.STRING],labelFileCountSingular:["file in list",M.STRING],labelFileCountPlural:["files in list",M.STRING],labelFileLoading:["Loading",M.STRING],labelFileAdded:["Added",M.STRING],labelFileLoadError:["Error during load",M.STRING],labelFileRemoved:["Removed",M.STRING],labelFileRemoveError:["Error during remove",M.STRING],labelFileProcessing:["Uploading",M.STRING],labelFileProcessingComplete:["Upload complete",M.STRING],labelFileProcessingAborted:["Upload cancelled",M.STRING],labelFileProcessingError:["Error during upload",M.STRING],labelFileProcessingRevertError:["Error during revert",M.STRING],labelTapToCancel:["tap to cancel",M.STRING],labelTapToRetry:["tap to retry",M.STRING],labelTapToUndo:["tap to undo",M.STRING],labelButtonRemoveItem:["Remove",M.STRING],labelButtonAbortItemLoad:["Abort",M.STRING],labelButtonRetryItemLoad:["Retry",M.STRING],labelButtonAbortItemProcessing:["Cancel",M.STRING],labelButtonUndoItemProcessing:["Undo",M.STRING],labelButtonRetryItemProcessing:["Retry",M.STRING],labelButtonProcessItem:["Upload",M.STRING],iconRemove:['',M.STRING],iconProcess:['',M.STRING],iconRetry:['',M.STRING],iconUndo:['',M.STRING],iconDone:['',M.STRING],oninit:[null,M.FUNCTION],onwarning:[null,M.FUNCTION],onerror:[null,M.FUNCTION],onactivatefile:[null,M.FUNCTION],oninitfile:[null,M.FUNCTION],onaddfilestart:[null,M.FUNCTION],onaddfileprogress:[null,M.FUNCTION],onaddfile:[null,M.FUNCTION],onprocessfilestart:[null,M.FUNCTION],onprocessfileprogress:[null,M.FUNCTION],onprocessfileabort:[null,M.FUNCTION],onprocessfilerevert:[null,M.FUNCTION],onprocessfile:[null,M.FUNCTION],onprocessfiles:[null,M.FUNCTION],onremovefile:[null,M.FUNCTION],onpreparefile:[null,M.FUNCTION],onupdatefiles:[null,M.FUNCTION],onreorderfiles:[null,M.FUNCTION],beforeDropFile:[null,M.FUNCTION],beforeAddFile:[null,M.FUNCTION],beforeRemoveFile:[null,M.FUNCTION],beforePrepareFile:[null,M.FUNCTION],stylePanelLayout:[null,M.STRING],stylePanelAspectRatio:[null,M.STRING],styleItemPanelAspectRatio:[null,M.STRING],styleButtonRemoveItemPosition:["left",M.STRING],styleButtonProcessItemPosition:["right",M.STRING],styleLoadIndicatorPosition:["right",M.STRING],styleProgressIndicatorPosition:["right",M.STRING],styleButtonRemoveItemAlign:[!1,M.BOOLEAN],files:[[],M.ARRAY],credits:[["https://pqina.nl/","Powered by PQINA"],M.ARRAY]},Ze=(e,t)=>Ve(t)?e[0]||null:Et(t)?e[t]||null:(typeof t=="object"&&(t=t.id),e.find(i=>i.id===t)||null),_n=e=>{if(Ve(e))return e;if(/:/.test(e)){let t=e.split(":");return t[1]/t[0]}return parseFloat(e)},Pe=e=>e.filter(t=>!t.archived),wn={EMPTY:0,IDLE:1,ERROR:2,BUSY:3,READY:4},Qt=null,Is=()=>{if(Qt===null)try{let e=new DataTransfer;e.items.add(new File(["hello world"],"This_Works.txt"));let t=document.createElement("input");t.setAttribute("type","file"),t.files=e.files,Qt=t.files.length===1}catch{Qt=!1}return Qt},xs=[H.LOAD_ERROR,H.PROCESSING_ERROR,H.PROCESSING_REVERT_ERROR],ys=[H.LOADING,H.PROCESSING,H.PROCESSING_QUEUED,H.INIT],Rs=[H.PROCESSING_COMPLETE],Ss=e=>xs.includes(e.status),_s=e=>ys.includes(e.status),ws=e=>Rs.includes(e.status),Ga=e=>de(e.options.server)&&(de(e.options.server.process)||Ke(e.options.server.process)),Ls=e=>({GET_STATUS:()=>{let t=Pe(e.items),{EMPTY:i,ERROR:a,BUSY:n,IDLE:l,READY:o}=wn;return t.length===0?i:t.some(Ss)?a:t.some(_s)?n:t.some(ws)?o:l},GET_ITEM:t=>Ze(e.items,t),GET_ACTIVE_ITEM:t=>Ze(Pe(e.items),t),GET_ACTIVE_ITEMS:()=>Pe(e.items),GET_ITEMS:()=>e.items,GET_ITEM_NAME:t=>{let i=Ze(e.items,t);return i?i.filename:null},GET_ITEM_SIZE:t=>{let i=Ze(e.items,t);return i?i.fileSize:null},GET_STYLES:()=>Object.keys(e.options).filter(t=>/^style/.test(t)).map(t=>({name:t,value:e.options[t]})),GET_PANEL_ASPECT_RATIO:()=>/circle/.test(e.options.stylePanelLayout)?1:_n(e.options.stylePanelAspectRatio),GET_ITEM_PANEL_ASPECT_RATIO:()=>e.options.styleItemPanelAspectRatio,GET_ITEMS_BY_STATUS:t=>Pe(e.items).filter(i=>i.status===t),GET_TOTAL_ITEMS:()=>Pe(e.items).length,SHOULD_UPDATE_FILE_INPUT:()=>e.options.storeAsFile&&Is()&&!Ga(e),IS_ASYNC:()=>Ga(e),GET_FILE_SIZE_LABELS:t=>({labelBytes:t("GET_LABEL_FILE_SIZE_BYTES")||void 0,labelKilobytes:t("GET_LABEL_FILE_SIZE_KILOBYTES")||void 0,labelMegabytes:t("GET_LABEL_FILE_SIZE_MEGABYTES")||void 0,labelGigabytes:t("GET_LABEL_FILE_SIZE_GIGABYTES")||void 0})}),Ms=e=>{let t=Pe(e.items).length;if(!e.options.allowMultiple)return t===0;let i=e.options.maxFiles;return i===null||tMath.max(Math.min(i,e),t),As=(e,t,i)=>e.splice(t,0,i),Ps=(e,t,i)=>Ve(t)?null:typeof i>"u"?(e.push(t),t):(i=Ln(i,0,e.length),As(e,i,t),t),Fi=e=>/^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i.test(e),Ct=e=>`${e}`.split("/").pop().split("?").shift(),ui=e=>e.split(".").pop(),zs=e=>{if(typeof e!="string")return"";let t=e.split("/").pop();return/svg/.test(t)?"svg":/zip|compressed/.test(t)?"zip":/plain/.test(t)?"txt":/msword/.test(t)?"doc":/[a-z]+/.test(t)?t==="jpeg"?"jpg":t:""},Pt=(e,t="")=>(t+e).slice(-t.length),Mn=(e=new Date)=>`${e.getFullYear()}-${Pt(e.getMonth()+1,"00")}-${Pt(e.getDate(),"00")}_${Pt(e.getHours(),"00")}-${Pt(e.getMinutes(),"00")}-${Pt(e.getSeconds(),"00")}`,bt=(e,t,i=null,a=null)=>{let n=typeof i=="string"?e.slice(0,e.size,i):e.slice(0,e.size,e.type);return n.lastModifiedDate=new Date,e._relativePath&&(n._relativePath=e._relativePath),ge(t)||(t=Mn()),t&&a===null&&ui(t)?n.name=t:(a=a||zs(n.type),n.name=t+(a?"."+a:"")),n},Fs=()=>window.BlobBuilder=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder||window.MSBlobBuilder,An=(e,t)=>{let i=Fs();if(i){let a=new i;return a.append(e),a.getBlob(t)}return new Blob([e],{type:t})},Os=(e,t)=>{let i=new ArrayBuffer(e.length),a=new Uint8Array(i);for(let n=0;n(/^data:(.+);/.exec(e)||[])[1]||null,Ds=e=>e.split(",")[1].replace(/\s/g,""),Cs=e=>atob(Ds(e)),Bs=e=>{let t=Pn(e),i=Cs(e);return Os(i,t)},ks=(e,t,i)=>bt(Bs(e),t,null,i),Ns=e=>{if(!/^content-disposition:/i.test(e))return null;let t=e.split(/filename=|filename\*=.+''/).splice(1).map(i=>i.trim().replace(/^["']|[;"']{0,2}$/g,"")).filter(i=>i.length);return t.length?decodeURI(t[t.length-1]):null},Vs=e=>{if(/content-length:/i.test(e)){let t=e.match(/[0-9]+/)[0];return t?parseInt(t,10):null}return null},Gs=e=>/x-content-transfer-id:/i.test(e)&&(e.split(":")[1]||"").trim()||null,Xi=e=>{let t={source:null,name:null,size:null},i=e.split(` +`);for(let a of i){let n=Ns(a);if(n){t.name=n;continue}let l=Vs(a);if(l){t.size=l;continue}let o=Gs(a);if(o){t.source=o;continue}}return t},Us=e=>{let t={source:null,complete:!1,progress:0,size:null,timestamp:null,duration:0,request:null},i=()=>t.progress,a=()=>{t.request&&t.request.abort&&t.request.abort()},n=()=>{let r=t.source;o.fire("init",r),r instanceof File?o.fire("load",r):r instanceof Blob?o.fire("load",bt(r,r.name)):Fi(r)?o.fire("load",ks(r)):l(r)},l=r=>{if(!e){o.fire("error",{type:"error",body:"Can't load URL",code:400});return}t.timestamp=Date.now(),t.request=e(r,s=>{t.duration=Date.now()-t.timestamp,t.complete=!0,s instanceof Blob&&(s=bt(s,s.name||Ct(r))),o.fire("load",s instanceof Blob?s:s?s.body:null)},s=>{o.fire("error",typeof s=="string"?{type:"error",code:0,body:s}:s)},(s,p,c)=>{if(c&&(t.size=c),t.duration=Date.now()-t.timestamp,!s){t.progress=null;return}t.progress=p/c,o.fire("progress",t.progress)},()=>{o.fire("abort")},s=>{let p=Xi(typeof s=="string"?s:s.headers);o.fire("meta",{size:t.size||p.size,filename:p.name,source:p.source})})},o={...mi(),setSource:r=>t.source=r,getProgress:i,abort:a,load:n};return o},Ua=e=>/GET|HEAD/.test(e),Qe=(e,t,i)=>{let a={onheaders:()=>{},onprogress:()=>{},onload:()=>{},ontimeout:()=>{},onerror:()=>{},onabort:()=>{},abort:()=>{n=!0,o.abort()}},n=!1,l=!1;i={method:"POST",headers:{},withCredentials:!1,...i},t=encodeURI(t),Ua(i.method)&&e&&(t=`${t}${encodeURIComponent(typeof e=="string"?e:JSON.stringify(e))}`);let o=new XMLHttpRequest,r=Ua(i.method)?o:o.upload;return r.onprogress=s=>{n||a.onprogress(s.lengthComputable,s.loaded,s.total)},o.onreadystatechange=()=>{o.readyState<2||o.readyState===4&&o.status===0||l||(l=!0,a.onheaders(o))},o.onload=()=>{o.status>=200&&o.status<300?a.onload(o):a.onerror(o)},o.onerror=()=>a.onerror(o),o.onabort=()=>{n=!0,a.onabort()},o.ontimeout=()=>a.ontimeout(o),o.open(i.method,t,!0),Et(i.timeout)&&(o.timeout=i.timeout),Object.keys(i.headers).forEach(s=>{let p=unescape(encodeURIComponent(i.headers[s]));o.setRequestHeader(s,p)}),i.responseType&&(o.responseType=i.responseType),i.withCredentials&&(o.withCredentials=!0),o.send(e),a},ae=(e,t,i,a)=>({type:e,code:t,body:i,headers:a}),Je=e=>t=>{e(ae("error",0,"Timeout",t.getAllResponseHeaders()))},Ha=e=>/\?/.test(e),Ot=(...e)=>{let t="";return e.forEach(i=>{t+=Ha(t)&&Ha(i)?i.replace(/\?/,"&"):i}),t},_i=(e="",t)=>{if(typeof t=="function")return t;if(!t||!ge(t.url))return null;let i=t.onload||(n=>n),a=t.onerror||(n=>null);return(n,l,o,r,s,p)=>{let c=Qe(n,Ot(e,t.url),{...t,responseType:"blob"});return c.onload=d=>{let m=d.getAllResponseHeaders(),u=Xi(m).name||Ct(n);l(ae("load",d.status,t.method==="HEAD"?null:bt(i(d.response),u),m))},c.onerror=d=>{o(ae("error",d.status,a(d.response)||d.statusText,d.getAllResponseHeaders()))},c.onheaders=d=>{p(ae("headers",d.status,null,d.getAllResponseHeaders()))},c.ontimeout=Je(o),c.onprogress=r,c.onabort=s,c}},xe={QUEUED:0,COMPLETE:1,PROCESSING:2,ERROR:3,WAITING:4},Hs=(e,t,i,a,n,l,o,r,s,p,c)=>{let d=[],{chunkTransferId:m,chunkServer:u,chunkSize:g,chunkRetryDelays:f}=c,b={serverId:m,aborted:!1},v=t.ondata||(w=>w),h=t.onload||((w,F)=>F==="HEAD"?w.getResponseHeader("Upload-Offset"):w.response),E=t.onerror||(w=>null),I=w=>{let F=new FormData;de(n)&&F.append(i,JSON.stringify(n));let S=typeof t.headers=="function"?t.headers(a,n):{...t.headers,"Upload-Length":a.size},L={...t,headers:S},D=Qe(v(F),Ot(e,t.url),L);D.onload=O=>w(h(O,L.method)),D.onerror=O=>o(ae("error",O.status,E(O.response)||O.statusText,O.getAllResponseHeaders())),D.ontimeout=Je(o)},y=w=>{let F=Ot(e,u.url,b.serverId),L={headers:typeof t.headers=="function"?t.headers(b.serverId):{...t.headers},method:"HEAD"},D=Qe(null,F,L);D.onload=O=>w(h(O,L.method)),D.onerror=O=>o(ae("error",O.status,E(O.response)||O.statusText,O.getAllResponseHeaders())),D.ontimeout=Je(o)},T=Math.floor(a.size/g);for(let w=0;w<=T;w++){let F=w*g,S=a.slice(F,F+g,"application/offset+octet-stream");d[w]={index:w,size:S.size,offset:F,data:S,file:a,progress:0,retries:[...f],status:xe.QUEUED,error:null,request:null,timeout:null}}let _=()=>l(b.serverId),x=w=>w.status===xe.QUEUED||w.status===xe.ERROR,R=w=>{if(b.aborted)return;if(w=w||d.find(x),!w){d.every(C=>C.status===xe.COMPLETE)&&_();return}w.status=xe.PROCESSING,w.progress=null;let F=u.ondata||(C=>C),S=u.onerror||(C=>null),L=u.onload||(()=>{}),D=Ot(e,u.url,b.serverId),O=typeof u.headers=="function"?u.headers(w):{...u.headers,"Content-Type":"application/offset+octet-stream","Upload-Offset":w.offset,"Upload-Length":a.size,"Upload-Name":a.name},U=w.request=Qe(F(w.data),D,{...u,headers:O});U.onload=C=>{L(C,w.index,d.length),w.status=xe.COMPLETE,w.request=null,A()},U.onprogress=(C,X,K)=>{w.progress=C?X:null,P()},U.onerror=C=>{w.status=xe.ERROR,w.request=null,w.error=S(C.response)||C.statusText,z(w)||o(ae("error",C.status,S(C.response)||C.statusText,C.getAllResponseHeaders()))},U.ontimeout=C=>{w.status=xe.ERROR,w.request=null,z(w)||Je(o)(C)},U.onabort=()=>{w.status=xe.QUEUED,w.request=null,s()}},z=w=>w.retries.length===0?!1:(w.status=xe.WAITING,clearTimeout(w.timeout),w.timeout=setTimeout(()=>{R(w)},w.retries.shift()),!0),P=()=>{let w=d.reduce((S,L)=>S===null||L.progress===null?null:S+L.progress,0);if(w===null)return r(!1,0,0);let F=d.reduce((S,L)=>S+L.size,0);r(!0,w,F)},A=()=>{d.filter(F=>F.status===xe.PROCESSING).length>=1||R()},B=()=>{d.forEach(w=>{clearTimeout(w.timeout),w.request&&w.request.abort()})};return b.serverId?y(w=>{b.aborted||(d.filter(F=>F.offset{F.status=xe.COMPLETE,F.progress=F.size}),A())}):I(w=>{b.aborted||(p(w),b.serverId=w,A())}),{abort:()=>{b.aborted=!0,B()}}},Ws=(e,t,i,a)=>(n,l,o,r,s,p,c)=>{if(!n)return;let d=a.chunkUploads,m=d&&n.size>a.chunkSize,u=d&&(m||a.chunkForce);if(n instanceof Blob&&u)return Hs(e,t,i,n,l,o,r,s,p,c,a);let g=t.ondata||(y=>y),f=t.onload||(y=>y),b=t.onerror||(y=>null),v=typeof t.headers=="function"?t.headers(n,l)||{}:{...t.headers},h={...t,headers:v};var E=new FormData;de(l)&&E.append(i,JSON.stringify(l)),(n instanceof Blob?[{name:null,file:n}]:n).forEach(y=>{E.append(i,y.file,y.name===null?y.file.name:`${y.name}${y.file.name}`)});let I=Qe(g(E),Ot(e,t.url),h);return I.onload=y=>{o(ae("load",y.status,f(y.response),y.getAllResponseHeaders()))},I.onerror=y=>{r(ae("error",y.status,b(y.response)||y.statusText,y.getAllResponseHeaders()))},I.ontimeout=Je(r),I.onprogress=s,I.onabort=p,I},js=(e="",t,i,a)=>typeof t=="function"?(...n)=>t(i,...n,a):!t||!ge(t.url)?null:Ws(e,t,i,a),zt=(e="",t)=>{if(typeof t=="function")return t;if(!t||!ge(t.url))return(n,l)=>l();let i=t.onload||(n=>n),a=t.onerror||(n=>null);return(n,l,o)=>{let r=Qe(n,e+t.url,t);return r.onload=s=>{l(ae("load",s.status,i(s.response),s.getAllResponseHeaders()))},r.onerror=s=>{o(ae("error",s.status,a(s.response)||s.statusText,s.getAllResponseHeaders()))},r.ontimeout=Je(o),r}},zn=(e=0,t=1)=>e+Math.random()*(t-e),Ys=(e,t=1e3,i=0,a=25,n=250)=>{let l=null,o=Date.now(),r=()=>{let s=Date.now()-o,p=zn(a,n);s+p>t&&(p=s+p-t);let c=s/t;if(c>=1||document.hidden){e(1);return}e(c),l=setTimeout(r,p)};return t>0&&r(),{clear:()=>{clearTimeout(l)}}},qs=(e,t)=>{let i={complete:!1,perceivedProgress:0,perceivedPerformanceUpdater:null,progress:null,timestamp:null,perceivedDuration:0,duration:0,request:null,response:null},{allowMinimumUploadDuration:a}=t,n=(c,d)=>{let m=()=>{i.duration===0||i.progress===null||p.fire("progress",p.getProgress())},u=()=>{i.complete=!0,p.fire("load-perceived",i.response.body)};p.fire("start"),i.timestamp=Date.now(),i.perceivedPerformanceUpdater=Ys(g=>{i.perceivedProgress=g,i.perceivedDuration=Date.now()-i.timestamp,m(),i.response&&i.perceivedProgress===1&&!i.complete&&u()},a?zn(750,1500):0),i.request=e(c,d,g=>{i.response=de(g)?g:{type:"load",code:200,body:`${g}`,headers:{}},i.duration=Date.now()-i.timestamp,i.progress=1,p.fire("load",i.response.body),(!a||a&&i.perceivedProgress===1)&&u()},g=>{i.perceivedPerformanceUpdater.clear(),p.fire("error",de(g)?g:{type:"error",code:0,body:`${g}`})},(g,f,b)=>{i.duration=Date.now()-i.timestamp,i.progress=g?f/b:null,m()},()=>{i.perceivedPerformanceUpdater.clear(),p.fire("abort",i.response?i.response.body:null)},g=>{p.fire("transfer",g)})},l=()=>{i.request&&(i.perceivedPerformanceUpdater.clear(),i.request.abort&&i.request.abort(),i.complete=!0)},o=()=>{l(),i.complete=!1,i.perceivedProgress=0,i.progress=0,i.timestamp=null,i.perceivedDuration=0,i.duration=0,i.request=null,i.response=null},r=a?()=>i.progress?Math.min(i.progress,i.perceivedProgress):null:()=>i.progress||null,s=a?()=>Math.min(i.duration,i.perceivedDuration):()=>i.duration,p={...mi(),process:n,abort:l,getProgress:r,getDuration:s,reset:o};return p},Fn=e=>e.substring(0,e.lastIndexOf("."))||e,$s=e=>{let t=[e.name,e.size,e.type];return e instanceof Blob||Fi(e)?t[0]=e.name||Mn():Fi(e)?(t[1]=e.length,t[2]=Pn(e)):ge(e)&&(t[0]=Ct(e),t[1]=0,t[2]="application/octet-stream"),{name:t[0],size:t[1],type:t[2]}},et=e=>!!(e instanceof File||e instanceof Blob&&e.name),On=e=>{if(!de(e))return e;let t=ci(e)?[]:{};for(let i in e){if(!e.hasOwnProperty(i))continue;let a=e[i];t[i]=a&&de(a)?On(a):a}return t},Xs=(e=null,t=null,i=null)=>{let a=Yi(),n={archived:!1,frozen:!1,released:!1,source:null,file:i,serverFileReference:t,transferId:null,processingAborted:!1,status:t?H.PROCESSING_COMPLETE:H.INIT,activeLoader:null,activeProcessor:null},l=null,o={},r=x=>n.status=x,s=(x,...R)=>{n.released||n.frozen||T.fire(x,...R)},p=()=>ui(n.file.name),c=()=>n.file.type,d=()=>n.file.size,m=()=>n.file,u=(x,R,z)=>{if(n.source=x,T.fireSync("init"),n.file){T.fireSync("load-skip");return}n.file=$s(x),R.on("init",()=>{s("load-init")}),R.on("meta",P=>{n.file.size=P.size,n.file.filename=P.filename,P.source&&(e=re.LIMBO,n.serverFileReference=P.source,n.status=H.PROCESSING_COMPLETE),s("load-meta")}),R.on("progress",P=>{r(H.LOADING),s("load-progress",P)}),R.on("error",P=>{r(H.LOAD_ERROR),s("load-request-error",P)}),R.on("abort",()=>{r(H.INIT),s("load-abort")}),R.on("load",P=>{n.activeLoader=null;let A=w=>{n.file=et(w)?w:n.file,e===re.LIMBO&&n.serverFileReference?r(H.PROCESSING_COMPLETE):r(H.IDLE),s("load")},B=w=>{n.file=P,s("load-meta"),r(H.LOAD_ERROR),s("load-file-error",w)};if(n.serverFileReference){A(P);return}z(P,A,B)}),R.setSource(x),n.activeLoader=R,R.load()},g=()=>{n.activeLoader&&n.activeLoader.load()},f=()=>{if(n.activeLoader){n.activeLoader.abort();return}r(H.INIT),s("load-abort")},b=(x,R)=>{if(n.processingAborted){n.processingAborted=!1;return}if(r(H.PROCESSING),l=null,!(n.file instanceof Blob)){T.on("load",()=>{b(x,R)});return}x.on("load",A=>{n.transferId=null,n.serverFileReference=A}),x.on("transfer",A=>{n.transferId=A}),x.on("load-perceived",A=>{n.activeProcessor=null,n.transferId=null,n.serverFileReference=A,r(H.PROCESSING_COMPLETE),s("process-complete",A)}),x.on("start",()=>{s("process-start")}),x.on("error",A=>{n.activeProcessor=null,r(H.PROCESSING_ERROR),s("process-error",A)}),x.on("abort",A=>{n.activeProcessor=null,n.serverFileReference=A,r(H.IDLE),s("process-abort"),l&&l()}),x.on("progress",A=>{s("process-progress",A)});let z=A=>{n.archived||x.process(A,{...o})},P=console.error;R(n.file,z,P),n.activeProcessor=x},v=()=>{n.processingAborted=!1,r(H.PROCESSING_QUEUED)},h=()=>new Promise(x=>{if(!n.activeProcessor){n.processingAborted=!0,r(H.IDLE),s("process-abort"),x();return}l=()=>{x()},n.activeProcessor.abort()}),E=(x,R)=>new Promise((z,P)=>{let A=n.serverFileReference!==null?n.serverFileReference:n.transferId;if(A===null){z();return}x(A,()=>{n.serverFileReference=null,n.transferId=null,z()},B=>{if(!R){z();return}r(H.PROCESSING_REVERT_ERROR),s("process-revert-error"),P(B)}),r(H.IDLE),s("process-revert")}),I=(x,R,z)=>{let P=x.split("."),A=P[0],B=P.pop(),w=o;P.forEach(F=>w=w[F]),JSON.stringify(w[B])!==JSON.stringify(R)&&(w[B]=R,s("metadata-update",{key:A,value:o[A],silent:z}))},T={id:{get:()=>a},origin:{get:()=>e,set:x=>e=x},serverId:{get:()=>n.serverFileReference},transferId:{get:()=>n.transferId},status:{get:()=>n.status},filename:{get:()=>n.file.name},filenameWithoutExtension:{get:()=>Fn(n.file.name)},fileExtension:{get:p},fileType:{get:c},fileSize:{get:d},file:{get:m},relativePath:{get:()=>n.file._relativePath},source:{get:()=>n.source},getMetadata:x=>On(x?o[x]:o),setMetadata:(x,R,z)=>{if(de(x)){let P=x;return Object.keys(P).forEach(A=>{I(A,P[A],R)}),x}return I(x,R,z),R},extend:(x,R)=>_[x]=R,abortLoad:f,retryLoad:g,requestProcessing:v,abortProcessing:h,load:u,process:b,revert:E,...mi(),freeze:()=>n.frozen=!0,release:()=>n.released=!0,released:{get:()=>n.released},archive:()=>n.archived=!0,archived:{get:()=>n.archived},setFile:x=>n.file=x},_=He(T);return _},Ks=(e,t)=>Ve(t)?0:ge(t)?e.findIndex(i=>i.id===t):-1,Wa=(e,t)=>{let i=Ks(e,t);if(!(i<0))return e[i]||null},ja=(e,t,i,a,n,l)=>{let o=Qe(null,e,{method:"GET",responseType:"blob"});return o.onload=r=>{let s=r.getAllResponseHeaders(),p=Xi(s).name||Ct(e);t(ae("load",r.status,bt(r.response,p),s))},o.onerror=r=>{i(ae("error",r.status,r.statusText,r.getAllResponseHeaders()))},o.onheaders=r=>{l(ae("headers",r.status,null,r.getAllResponseHeaders()))},o.ontimeout=Je(i),o.onprogress=a,o.onabort=n,o},Ya=e=>(e.indexOf("//")===0&&(e=location.protocol+e),e.toLowerCase().replace("blob:","").replace(/([a-z])?:\/\//,"$1").split("/")[0]),Zs=e=>(e.indexOf(":")>-1||e.indexOf("//")>-1)&&Ya(location.href)!==Ya(e),Jt=e=>(...t)=>Ke(e)?e(...t):e,Qs=e=>!et(e.file),wi=(e,t)=>{clearTimeout(t.listUpdateTimeout),t.listUpdateTimeout=setTimeout(()=>{e("DID_UPDATE_ITEMS",{items:Pe(t.items)})},0)},qa=(e,...t)=>new Promise(i=>{if(!e)return i(!0);let a=e(...t);if(a==null)return i(!0);if(typeof a=="boolean")return i(a);typeof a.then=="function"&&a.then(i)}),Li=(e,t)=>{e.items.sort((i,a)=>t(he(i),he(a)))},ye=(e,t)=>({query:i,success:a=()=>{},failure:n=()=>{},...l}={})=>{let o=Ze(e.items,i);if(!o){n({error:ae("error",0,"Item not found"),file:null});return}t(o,a,n,l||{})},Js=(e,t,i)=>({ABORT_ALL:()=>{Pe(i.items).forEach(a=>{a.freeze(),a.abortLoad(),a.abortProcessing()})},DID_SET_FILES:({value:a=[]})=>{let n=a.map(o=>({source:o.source?o.source:o,options:o.options})),l=Pe(i.items);l.forEach(o=>{n.find(r=>r.source===o.source||r.source===o.file)||e("REMOVE_ITEM",{query:o,remove:!1})}),l=Pe(i.items),n.forEach((o,r)=>{l.find(s=>s.source===o.source||s.file===o.source)||e("ADD_ITEM",{...o,interactionMethod:Re.NONE,index:r})})},DID_UPDATE_ITEM_METADATA:({id:a,action:n,change:l})=>{l.silent||(clearTimeout(i.itemUpdateTimeout),i.itemUpdateTimeout=setTimeout(()=>{let o=Wa(i.items,a);if(!t("IS_ASYNC")){Ae("SHOULD_PREPARE_OUTPUT",!1,{item:o,query:t,action:n,change:l}).then(c=>{let d=t("GET_BEFORE_PREPARE_FILE");d&&(c=d(o,c)),c&&e("REQUEST_PREPARE_OUTPUT",{query:a,item:o,success:m=>{e("DID_PREPARE_OUTPUT",{id:a,file:m})}},!0)});return}o.origin===re.LOCAL&&e("DID_LOAD_ITEM",{id:o.id,error:null,serverFileReference:o.source});let r=()=>{setTimeout(()=>{e("REQUEST_ITEM_PROCESSING",{query:a})},32)},s=c=>{o.revert(zt(i.options.server.url,i.options.server.revert),t("GET_FORCE_REVERT")).then(c?r:()=>{}).catch(()=>{})},p=c=>{o.abortProcessing().then(c?r:()=>{})};if(o.status===H.PROCESSING_COMPLETE)return s(i.options.instantUpload);if(o.status===H.PROCESSING)return p(i.options.instantUpload);i.options.instantUpload&&r()},0))},MOVE_ITEM:({query:a,index:n})=>{let l=Ze(i.items,a);if(!l)return;let o=i.items.indexOf(l);n=Ln(n,0,i.items.length-1),o!==n&&i.items.splice(n,0,i.items.splice(o,1)[0])},SORT:({compare:a})=>{Li(i,a),e("DID_SORT_ITEMS",{items:t("GET_ACTIVE_ITEMS")})},ADD_ITEMS:({items:a,index:n,interactionMethod:l,success:o=()=>{},failure:r=()=>{}})=>{let s=n;if(n===-1||typeof n>"u"){let u=t("GET_ITEM_INSERT_LOCATION"),g=t("GET_TOTAL_ITEMS");s=u==="before"?0:g}let p=t("GET_IGNORED_FILES"),c=u=>et(u)?!p.includes(u.name.toLowerCase()):!Ve(u),m=a.filter(c).map(u=>new Promise((g,f)=>{e("ADD_ITEM",{interactionMethod:l,source:u.source||u,success:g,failure:f,index:s++,options:u.options||{}})}));Promise.all(m).then(o).catch(r)},ADD_ITEM:({source:a,index:n=-1,interactionMethod:l,success:o=()=>{},failure:r=()=>{},options:s={}})=>{if(Ve(a)){r({error:ae("error",0,"No source"),file:null});return}if(et(a)&&i.options.ignoredFiles.includes(a.name.toLowerCase()))return;if(!Ms(i)){if(i.options.allowMultiple||!i.options.allowMultiple&&!i.options.allowReplace){let h=ae("warning",0,"Max files");e("DID_THROW_MAX_FILES",{source:a,error:h}),r({error:h,file:null});return}let v=Pe(i.items)[0];if(v.status===H.PROCESSING_COMPLETE||v.status===H.PROCESSING_REVERT_ERROR){let h=t("GET_FORCE_REVERT");if(v.revert(zt(i.options.server.url,i.options.server.revert),h).then(()=>{h&&e("ADD_ITEM",{source:a,index:n,interactionMethod:l,success:o,failure:r,options:s})}).catch(()=>{}),h)return}e("REMOVE_ITEM",{query:v.id})}let p=s.type==="local"?re.LOCAL:s.type==="limbo"?re.LIMBO:re.INPUT,c=Xs(p,p===re.INPUT?null:a,s.file);Object.keys(s.metadata||{}).forEach(v=>{c.setMetadata(v,s.metadata[v])}),it("DID_CREATE_ITEM",c,{query:t,dispatch:e});let d=t("GET_ITEM_INSERT_LOCATION");i.options.itemInsertLocationFreedom||(n=d==="before"?-1:i.items.length),Ps(i.items,c,n),Ke(d)&&a&&Li(i,d);let m=c.id;c.on("init",()=>{e("DID_INIT_ITEM",{id:m})}),c.on("load-init",()=>{e("DID_START_ITEM_LOAD",{id:m})}),c.on("load-meta",()=>{e("DID_UPDATE_ITEM_META",{id:m})}),c.on("load-progress",v=>{e("DID_UPDATE_ITEM_LOAD_PROGRESS",{id:m,progress:v})}),c.on("load-request-error",v=>{let h=Jt(i.options.labelFileLoadError)(v);if(v.code>=400&&v.code<500){e("DID_THROW_ITEM_INVALID",{id:m,error:v,status:{main:h,sub:`${v.code} (${v.body})`}}),r({error:v,file:he(c)});return}e("DID_THROW_ITEM_LOAD_ERROR",{id:m,error:v,status:{main:h,sub:i.options.labelTapToRetry}})}),c.on("load-file-error",v=>{e("DID_THROW_ITEM_INVALID",{id:m,error:v.status,status:v.status}),r({error:v.status,file:he(c)})}),c.on("load-abort",()=>{e("REMOVE_ITEM",{query:m})}),c.on("load-skip",()=>{c.on("metadata-update",v=>{et(c.file)&&e("DID_UPDATE_ITEM_METADATA",{id:m,change:v})}),e("COMPLETE_LOAD_ITEM",{query:m,item:c,data:{source:a,success:o}})}),c.on("load",()=>{let v=h=>{if(!h){e("REMOVE_ITEM",{query:m});return}c.on("metadata-update",E=>{e("DID_UPDATE_ITEM_METADATA",{id:m,change:E})}),Ae("SHOULD_PREPARE_OUTPUT",!1,{item:c,query:t}).then(E=>{let I=t("GET_BEFORE_PREPARE_FILE");I&&(E=I(c,E));let y=()=>{e("COMPLETE_LOAD_ITEM",{query:m,item:c,data:{source:a,success:o}}),wi(e,i)};if(E){e("REQUEST_PREPARE_OUTPUT",{query:m,item:c,success:T=>{e("DID_PREPARE_OUTPUT",{id:m,file:T}),y()}},!0);return}y()})};Ae("DID_LOAD_ITEM",c,{query:t,dispatch:e}).then(()=>{qa(t("GET_BEFORE_ADD_FILE"),he(c)).then(v)}).catch(h=>{if(!h||!h.error||!h.status)return v(!1);e("DID_THROW_ITEM_INVALID",{id:m,error:h.error,status:h.status})})}),c.on("process-start",()=>{e("DID_START_ITEM_PROCESSING",{id:m})}),c.on("process-progress",v=>{e("DID_UPDATE_ITEM_PROCESS_PROGRESS",{id:m,progress:v})}),c.on("process-error",v=>{e("DID_THROW_ITEM_PROCESSING_ERROR",{id:m,error:v,status:{main:Jt(i.options.labelFileProcessingError)(v),sub:i.options.labelTapToRetry}})}),c.on("process-revert-error",v=>{e("DID_THROW_ITEM_PROCESSING_REVERT_ERROR",{id:m,error:v,status:{main:Jt(i.options.labelFileProcessingRevertError)(v),sub:i.options.labelTapToRetry}})}),c.on("process-complete",v=>{e("DID_COMPLETE_ITEM_PROCESSING",{id:m,error:null,serverFileReference:v}),e("DID_DEFINE_VALUE",{id:m,value:v})}),c.on("process-abort",()=>{e("DID_ABORT_ITEM_PROCESSING",{id:m})}),c.on("process-revert",()=>{e("DID_REVERT_ITEM_PROCESSING",{id:m}),e("DID_DEFINE_VALUE",{id:m,value:null})}),e("DID_ADD_ITEM",{id:m,index:n,interactionMethod:l}),wi(e,i);let{url:u,load:g,restore:f,fetch:b}=i.options.server||{};c.load(a,Us(p===re.INPUT?ge(a)&&Zs(a)&&b?_i(u,b):ja:p===re.LIMBO?_i(u,f):_i(u,g)),(v,h,E)=>{Ae("LOAD_FILE",v,{query:t}).then(h).catch(E)})},REQUEST_PREPARE_OUTPUT:({item:a,success:n,failure:l=()=>{}})=>{let o={error:ae("error",0,"Item not found"),file:null};if(a.archived)return l(o);Ae("PREPARE_OUTPUT",a.file,{query:t,item:a}).then(r=>{Ae("COMPLETE_PREPARE_OUTPUT",r,{query:t,item:a}).then(s=>{if(a.archived)return l(o);n(s)})})},COMPLETE_LOAD_ITEM:({item:a,data:n})=>{let{success:l,source:o}=n,r=t("GET_ITEM_INSERT_LOCATION");if(Ke(r)&&o&&Li(i,r),e("DID_LOAD_ITEM",{id:a.id,error:null,serverFileReference:a.origin===re.INPUT?null:o}),l(he(a)),a.origin===re.LOCAL){e("DID_LOAD_LOCAL_ITEM",{id:a.id});return}if(a.origin===re.LIMBO){e("DID_COMPLETE_ITEM_PROCESSING",{id:a.id,error:null,serverFileReference:o}),e("DID_DEFINE_VALUE",{id:a.id,value:a.serverId||o});return}t("IS_ASYNC")&&i.options.instantUpload&&e("REQUEST_ITEM_PROCESSING",{query:a.id})},RETRY_ITEM_LOAD:ye(i,a=>{a.retryLoad()}),REQUEST_ITEM_PREPARE:ye(i,(a,n,l)=>{e("REQUEST_PREPARE_OUTPUT",{query:a.id,item:a,success:o=>{e("DID_PREPARE_OUTPUT",{id:a.id,file:o}),n({file:a,output:o})},failure:l},!0)}),REQUEST_ITEM_PROCESSING:ye(i,(a,n,l)=>{if(!(a.status===H.IDLE||a.status===H.PROCESSING_ERROR)){let r=()=>e("REQUEST_ITEM_PROCESSING",{query:a,success:n,failure:l}),s=()=>document.hidden?r():setTimeout(r,32);a.status===H.PROCESSING_COMPLETE||a.status===H.PROCESSING_REVERT_ERROR?a.revert(zt(i.options.server.url,i.options.server.revert),t("GET_FORCE_REVERT")).then(s).catch(()=>{}):a.status===H.PROCESSING&&a.abortProcessing().then(s);return}a.status!==H.PROCESSING_QUEUED&&(a.requestProcessing(),e("DID_REQUEST_ITEM_PROCESSING",{id:a.id}),e("PROCESS_ITEM",{query:a,success:n,failure:l},!0))}),PROCESS_ITEM:ye(i,(a,n,l)=>{let o=t("GET_MAX_PARALLEL_UPLOADS");if(t("GET_ITEMS_BY_STATUS",H.PROCESSING).length===o){i.processingQueue.push({id:a.id,success:n,failure:l});return}if(a.status===H.PROCESSING)return;let s=()=>{let c=i.processingQueue.shift();if(!c)return;let{id:d,success:m,failure:u}=c,g=Ze(i.items,d);if(!g||g.archived){s();return}e("PROCESS_ITEM",{query:d,success:m,failure:u},!0)};a.onOnce("process-complete",()=>{n(he(a)),s();let c=i.options.server;if(i.options.instantUpload&&a.origin===re.LOCAL&&Ke(c.remove)){let u=()=>{};a.origin=re.LIMBO,i.options.server.remove(a.source,u,u)}t("GET_ITEMS_BY_STATUS",H.PROCESSING_COMPLETE).length===i.items.length&&e("DID_COMPLETE_ITEM_PROCESSING_ALL")}),a.onOnce("process-error",c=>{l({error:c,file:he(a)}),s()});let p=i.options;a.process(qs(js(p.server.url,p.server.process,p.name,{chunkTransferId:a.transferId,chunkServer:p.server.patch,chunkUploads:p.chunkUploads,chunkForce:p.chunkForce,chunkSize:p.chunkSize,chunkRetryDelays:p.chunkRetryDelays}),{allowMinimumUploadDuration:t("GET_ALLOW_MINIMUM_UPLOAD_DURATION")}),(c,d,m)=>{Ae("PREPARE_OUTPUT",c,{query:t,item:a}).then(u=>{e("DID_PREPARE_OUTPUT",{id:a.id,file:u}),d(u)}).catch(m)})}),RETRY_ITEM_PROCESSING:ye(i,a=>{e("REQUEST_ITEM_PROCESSING",{query:a})}),REQUEST_REMOVE_ITEM:ye(i,a=>{qa(t("GET_BEFORE_REMOVE_FILE"),he(a)).then(n=>{n&&e("REMOVE_ITEM",{query:a})})}),RELEASE_ITEM:ye(i,a=>{a.release()}),REMOVE_ITEM:ye(i,(a,n,l,o)=>{let r=()=>{let p=a.id;Wa(i.items,p).archive(),e("DID_REMOVE_ITEM",{error:null,id:p,item:a}),wi(e,i),n(he(a))},s=i.options.server;a.origin===re.LOCAL&&s&&Ke(s.remove)&&o.remove!==!1?(e("DID_START_ITEM_REMOVE",{id:a.id}),s.remove(a.source,()=>r(),p=>{e("DID_THROW_ITEM_REMOVE_ERROR",{id:a.id,error:ae("error",0,p,null),status:{main:Jt(i.options.labelFileRemoveError)(p),sub:i.options.labelTapToRetry}})})):((o.revert&&a.origin!==re.LOCAL&&a.serverId!==null||i.options.chunkUploads&&a.file.size>i.options.chunkSize||i.options.chunkUploads&&i.options.chunkForce)&&a.revert(zt(i.options.server.url,i.options.server.revert),t("GET_FORCE_REVERT")),r())}),ABORT_ITEM_LOAD:ye(i,a=>{a.abortLoad()}),ABORT_ITEM_PROCESSING:ye(i,a=>{if(a.serverId){e("REVERT_ITEM_PROCESSING",{id:a.id});return}a.abortProcessing().then(()=>{i.options.instantUpload&&e("REMOVE_ITEM",{query:a.id})})}),REQUEST_REVERT_ITEM_PROCESSING:ye(i,a=>{if(!i.options.instantUpload){e("REVERT_ITEM_PROCESSING",{query:a});return}let n=r=>{r&&e("REVERT_ITEM_PROCESSING",{query:a})},l=t("GET_BEFORE_REMOVE_FILE");if(!l)return n(!0);let o=l(he(a));if(o==null)return n(!0);if(typeof o=="boolean")return n(o);typeof o.then=="function"&&o.then(n)}),REVERT_ITEM_PROCESSING:ye(i,a=>{a.revert(zt(i.options.server.url,i.options.server.revert),t("GET_FORCE_REVERT")).then(()=>{(i.options.instantUpload||Qs(a))&&e("REMOVE_ITEM",{query:a.id})}).catch(()=>{})}),SET_OPTIONS:({options:a})=>{let n=Object.keys(a),l=ec.filter(r=>n.includes(r));[...l,...Object.keys(a).filter(r=>!l.includes(r))].forEach(r=>{e(`SET_${pi(r,"_").toUpperCase()}`,{value:a[r]})})}}),ec=["server"],Ki=e=>e,Ge=e=>document.createElement(e),ne=(e,t)=>{let i=e.childNodes[0];i?t!==i.nodeValue&&(i.nodeValue=t):(i=document.createTextNode(t),e.appendChild(i))},$a=(e,t,i,a)=>{let n=(a%360-90)*Math.PI/180;return{x:e+i*Math.cos(n),y:t+i*Math.sin(n)}},tc=(e,t,i,a,n,l)=>{let o=$a(e,t,i,n),r=$a(e,t,i,a);return["M",o.x,o.y,"A",i,i,0,l,0,r.x,r.y].join(" ")},ic=(e,t,i,a,n)=>{let l=1;return n>a&&n-a<=.5&&(l=0),a>n&&a-n>=.5&&(l=0),tc(e,t,i,Math.min(.9999,a)*360,Math.min(.9999,n)*360,l)},ac=({root:e,props:t})=>{t.spin=!1,t.progress=0,t.opacity=0;let i=li("svg");e.ref.path=li("path",{"stroke-width":2,"stroke-linecap":"round"}),i.appendChild(e.ref.path),e.ref.svg=i,e.appendChild(i)},nc=({root:e,props:t})=>{if(t.opacity===0)return;t.align&&(e.element.dataset.align=t.align);let i=parseInt(se(e.ref.path,"stroke-width"),10),a=e.rect.element.width*.5,n=0,l=0;t.spin?(n=0,l=.5):(n=0,l=t.progress);let o=ic(a,a,a-i,n,l);se(e.ref.path,"d",o),se(e.ref.path,"stroke-opacity",t.spin||t.progress>0?1:0)},Xa=le({tag:"div",name:"progress-indicator",ignoreRectUpdate:!0,ignoreRect:!0,create:ac,write:nc,mixins:{apis:["progress","spin","align"],styles:["opacity"],animations:{opacity:{type:"tween",duration:500},progress:{type:"spring",stiffness:.95,damping:.65,mass:10}}}}),lc=({root:e,props:t})=>{e.element.innerHTML=(t.icon||"")+`${t.label}`,t.isDisabled=!1},oc=({root:e,props:t})=>{let{isDisabled:i}=t,a=e.query("GET_DISABLED")||t.opacity===0;a&&!i?(t.isDisabled=!0,se(e.element,"disabled","disabled")):!a&&i&&(t.isDisabled=!1,e.element.removeAttribute("disabled"))},Dn=le({tag:"button",attributes:{type:"button"},ignoreRect:!0,ignoreRectUpdate:!0,name:"file-action-button",mixins:{apis:["label"],styles:["translateX","translateY","scaleX","scaleY","opacity"],animations:{scaleX:"spring",scaleY:"spring",translateX:"spring",translateY:"spring",opacity:{type:"tween",duration:250}},listeners:!0},create:lc,write:oc}),Cn=(e,t=".",i=1e3,a={})=>{let{labelBytes:n="bytes",labelKilobytes:l="KB",labelMegabytes:o="MB",labelGigabytes:r="GB"}=a;e=Math.round(Math.abs(e));let s=i,p=i*i,c=i*i*i;return ee.toFixed(t).split(".").filter(a=>a!=="0").join(i),rc=({root:e,props:t})=>{let i=Ge("span");i.className="filepond--file-info-main",se(i,"aria-hidden","true"),e.appendChild(i),e.ref.fileName=i;let a=Ge("span");a.className="filepond--file-info-sub",e.appendChild(a),e.ref.fileSize=a,ne(a,e.query("GET_LABEL_FILE_WAITING_FOR_SIZE")),ne(i,Ki(e.query("GET_ITEM_NAME",t.id)))},Oi=({root:e,props:t})=>{ne(e.ref.fileSize,Cn(e.query("GET_ITEM_SIZE",t.id),".",e.query("GET_FILE_SIZE_BASE"),e.query("GET_FILE_SIZE_LABELS",e.query))),ne(e.ref.fileName,Ki(e.query("GET_ITEM_NAME",t.id)))},Za=({root:e,props:t})=>{if(Et(e.query("GET_ITEM_SIZE",t.id))){Oi({root:e,props:t});return}ne(e.ref.fileSize,e.query("GET_LABEL_FILE_SIZE_NOT_AVAILABLE"))},sc=le({name:"file-info",ignoreRect:!0,ignoreRectUpdate:!0,write:fe({DID_LOAD_ITEM:Oi,DID_UPDATE_ITEM_META:Oi,DID_THROW_ITEM_LOAD_ERROR:Za,DID_THROW_ITEM_INVALID:Za}),didCreateView:e=>{it("CREATE_VIEW",{...e,view:e})},create:rc,mixins:{styles:["translateX","translateY"],animations:{translateX:"spring",translateY:"spring"}}}),Bn=e=>Math.round(e*100),cc=({root:e})=>{let t=Ge("span");t.className="filepond--file-status-main",e.appendChild(t),e.ref.main=t;let i=Ge("span");i.className="filepond--file-status-sub",e.appendChild(i),e.ref.sub=i,kn({root:e,action:{progress:null}})},kn=({root:e,action:t})=>{let i=t.progress===null?e.query("GET_LABEL_FILE_LOADING"):`${e.query("GET_LABEL_FILE_LOADING")} ${Bn(t.progress)}%`;ne(e.ref.main,i),ne(e.ref.sub,e.query("GET_LABEL_TAP_TO_CANCEL"))},dc=({root:e,action:t})=>{let i=t.progress===null?e.query("GET_LABEL_FILE_PROCESSING"):`${e.query("GET_LABEL_FILE_PROCESSING")} ${Bn(t.progress)}%`;ne(e.ref.main,i),ne(e.ref.sub,e.query("GET_LABEL_TAP_TO_CANCEL"))},pc=({root:e})=>{ne(e.ref.main,e.query("GET_LABEL_FILE_PROCESSING")),ne(e.ref.sub,e.query("GET_LABEL_TAP_TO_CANCEL"))},mc=({root:e})=>{ne(e.ref.main,e.query("GET_LABEL_FILE_PROCESSING_ABORTED")),ne(e.ref.sub,e.query("GET_LABEL_TAP_TO_RETRY"))},uc=({root:e})=>{ne(e.ref.main,e.query("GET_LABEL_FILE_PROCESSING_COMPLETE")),ne(e.ref.sub,e.query("GET_LABEL_TAP_TO_UNDO"))},Qa=({root:e})=>{ne(e.ref.main,""),ne(e.ref.sub,"")},Ft=({root:e,action:t})=>{ne(e.ref.main,t.status.main),ne(e.ref.sub,t.status.sub)},gc=le({name:"file-status",ignoreRect:!0,ignoreRectUpdate:!0,write:fe({DID_LOAD_ITEM:Qa,DID_REVERT_ITEM_PROCESSING:Qa,DID_REQUEST_ITEM_PROCESSING:pc,DID_ABORT_ITEM_PROCESSING:mc,DID_COMPLETE_ITEM_PROCESSING:uc,DID_UPDATE_ITEM_PROCESS_PROGRESS:dc,DID_UPDATE_ITEM_LOAD_PROGRESS:kn,DID_THROW_ITEM_LOAD_ERROR:Ft,DID_THROW_ITEM_INVALID:Ft,DID_THROW_ITEM_PROCESSING_ERROR:Ft,DID_THROW_ITEM_PROCESSING_REVERT_ERROR:Ft,DID_THROW_ITEM_REMOVE_ERROR:Ft}),didCreateView:e=>{it("CREATE_VIEW",{...e,view:e})},create:cc,mixins:{styles:["translateX","translateY","opacity"],animations:{opacity:{type:"tween",duration:250},translateX:"spring",translateY:"spring"}}}),Di={AbortItemLoad:{label:"GET_LABEL_BUTTON_ABORT_ITEM_LOAD",action:"ABORT_ITEM_LOAD",className:"filepond--action-abort-item-load",align:"LOAD_INDICATOR_POSITION"},RetryItemLoad:{label:"GET_LABEL_BUTTON_RETRY_ITEM_LOAD",action:"RETRY_ITEM_LOAD",icon:"GET_ICON_RETRY",className:"filepond--action-retry-item-load",align:"BUTTON_PROCESS_ITEM_POSITION"},RemoveItem:{label:"GET_LABEL_BUTTON_REMOVE_ITEM",action:"REQUEST_REMOVE_ITEM",icon:"GET_ICON_REMOVE",className:"filepond--action-remove-item",align:"BUTTON_REMOVE_ITEM_POSITION"},ProcessItem:{label:"GET_LABEL_BUTTON_PROCESS_ITEM",action:"REQUEST_ITEM_PROCESSING",icon:"GET_ICON_PROCESS",className:"filepond--action-process-item",align:"BUTTON_PROCESS_ITEM_POSITION"},AbortItemProcessing:{label:"GET_LABEL_BUTTON_ABORT_ITEM_PROCESSING",action:"ABORT_ITEM_PROCESSING",className:"filepond--action-abort-item-processing",align:"BUTTON_PROCESS_ITEM_POSITION"},RetryItemProcessing:{label:"GET_LABEL_BUTTON_RETRY_ITEM_PROCESSING",action:"RETRY_ITEM_PROCESSING",icon:"GET_ICON_RETRY",className:"filepond--action-retry-item-processing",align:"BUTTON_PROCESS_ITEM_POSITION"},RevertItemProcessing:{label:"GET_LABEL_BUTTON_UNDO_ITEM_PROCESSING",action:"REQUEST_REVERT_ITEM_PROCESSING",icon:"GET_ICON_UNDO",className:"filepond--action-revert-item-processing",align:"BUTTON_PROCESS_ITEM_POSITION"}},Ci=[];te(Di,e=>{Ci.push(e)});var ve=e=>{if(Bi(e)==="right")return 0;let t=e.ref.buttonRemoveItem.rect.element;return t.hidden?null:t.width+t.left},fc=e=>e.ref.buttonAbortItemLoad.rect.element.width,ei=e=>Math.floor(e.ref.buttonRemoveItem.rect.element.height/4),hc=e=>Math.floor(e.ref.buttonRemoveItem.rect.element.left/2),bc=e=>e.query("GET_STYLE_LOAD_INDICATOR_POSITION"),Ec=e=>e.query("GET_STYLE_PROGRESS_INDICATOR_POSITION"),Bi=e=>e.query("GET_STYLE_BUTTON_REMOVE_ITEM_POSITION"),Tc={buttonAbortItemLoad:{opacity:0},buttonRetryItemLoad:{opacity:0},buttonRemoveItem:{opacity:0},buttonProcessItem:{opacity:0},buttonAbortItemProcessing:{opacity:0},buttonRetryItemProcessing:{opacity:0},buttonRevertItemProcessing:{opacity:0},loadProgressIndicator:{opacity:0,align:bc},processProgressIndicator:{opacity:0,align:Ec},processingCompleteIndicator:{opacity:0,scaleX:.75,scaleY:.75},info:{translateX:0,translateY:0,opacity:0},status:{translateX:0,translateY:0,opacity:0}},Ja={buttonRemoveItem:{opacity:1},buttonProcessItem:{opacity:1},info:{translateX:ve},status:{translateX:ve}},Mi={buttonAbortItemProcessing:{opacity:1},processProgressIndicator:{opacity:1},status:{opacity:1}},ut={DID_THROW_ITEM_INVALID:{buttonRemoveItem:{opacity:1},info:{translateX:ve},status:{translateX:ve,opacity:1}},DID_START_ITEM_LOAD:{buttonAbortItemLoad:{opacity:1},loadProgressIndicator:{opacity:1},status:{opacity:1}},DID_THROW_ITEM_LOAD_ERROR:{buttonRetryItemLoad:{opacity:1},buttonRemoveItem:{opacity:1},info:{translateX:ve},status:{opacity:1}},DID_START_ITEM_REMOVE:{processProgressIndicator:{opacity:1,align:Bi},info:{translateX:ve},status:{opacity:0}},DID_THROW_ITEM_REMOVE_ERROR:{processProgressIndicator:{opacity:0,align:Bi},buttonRemoveItem:{opacity:1},info:{translateX:ve},status:{opacity:1,translateX:ve}},DID_LOAD_ITEM:Ja,DID_LOAD_LOCAL_ITEM:{buttonRemoveItem:{opacity:1},info:{translateX:ve},status:{translateX:ve}},DID_START_ITEM_PROCESSING:Mi,DID_REQUEST_ITEM_PROCESSING:Mi,DID_UPDATE_ITEM_PROCESS_PROGRESS:Mi,DID_COMPLETE_ITEM_PROCESSING:{buttonRevertItemProcessing:{opacity:1},info:{opacity:1},status:{opacity:1}},DID_THROW_ITEM_PROCESSING_ERROR:{buttonRemoveItem:{opacity:1},buttonRetryItemProcessing:{opacity:1},status:{opacity:1},info:{translateX:ve}},DID_THROW_ITEM_PROCESSING_REVERT_ERROR:{buttonRevertItemProcessing:{opacity:1},status:{opacity:1},info:{opacity:1}},DID_ABORT_ITEM_PROCESSING:{buttonRemoveItem:{opacity:1},buttonProcessItem:{opacity:1},info:{translateX:ve},status:{opacity:1}},DID_REVERT_ITEM_PROCESSING:Ja},vc=le({create:({root:e})=>{e.element.innerHTML=e.query("GET_ICON_DONE")},name:"processing-complete-indicator",ignoreRect:!0,mixins:{styles:["scaleX","scaleY","opacity"],animations:{scaleX:"spring",scaleY:"spring",opacity:{type:"tween",duration:250}}}}),Ic=({root:e,props:t})=>{let i=Object.keys(Di).reduce((g,f)=>(g[f]={...Di[f]},g),{}),{id:a}=t,n=e.query("GET_ALLOW_REVERT"),l=e.query("GET_ALLOW_REMOVE"),o=e.query("GET_ALLOW_PROCESS"),r=e.query("GET_INSTANT_UPLOAD"),s=e.query("IS_ASYNC"),p=e.query("GET_STYLE_BUTTON_REMOVE_ITEM_ALIGN"),c;s?o&&!n?c=g=>!/RevertItemProcessing/.test(g):!o&&n?c=g=>!/ProcessItem|RetryItemProcessing|AbortItemProcessing/.test(g):!o&&!n&&(c=g=>!/Process/.test(g)):c=g=>!/Process/.test(g);let d=c?Ci.filter(c):Ci.concat();if(r&&n&&(i.RevertItemProcessing.label="GET_LABEL_BUTTON_REMOVE_ITEM",i.RevertItemProcessing.icon="GET_ICON_REMOVE"),s&&!n){let g=ut.DID_COMPLETE_ITEM_PROCESSING;g.info.translateX=hc,g.info.translateY=ei,g.status.translateY=ei,g.processingCompleteIndicator={opacity:1,scaleX:1,scaleY:1}}if(s&&!o&&(["DID_START_ITEM_PROCESSING","DID_REQUEST_ITEM_PROCESSING","DID_UPDATE_ITEM_PROCESS_PROGRESS","DID_THROW_ITEM_PROCESSING_ERROR"].forEach(g=>{ut[g].status.translateY=ei}),ut.DID_THROW_ITEM_PROCESSING_ERROR.status.translateX=fc),p&&n){i.RevertItemProcessing.align="BUTTON_REMOVE_ITEM_POSITION";let g=ut.DID_COMPLETE_ITEM_PROCESSING;g.info.translateX=ve,g.status.translateY=ei,g.processingCompleteIndicator={opacity:1,scaleX:1,scaleY:1}}l||(i.RemoveItem.disabled=!0),te(i,(g,f)=>{let b=e.createChildView(Dn,{label:e.query(f.label),icon:e.query(f.icon),opacity:0});d.includes(g)&&e.appendChildView(b),f.disabled&&(b.element.setAttribute("disabled","disabled"),b.element.setAttribute("hidden","hidden")),b.element.dataset.align=e.query(`GET_STYLE_${f.align}`),b.element.classList.add(f.className),b.on("click",v=>{v.stopPropagation(),!f.disabled&&e.dispatch(f.action,{query:a})}),e.ref[`button${g}`]=b}),e.ref.processingCompleteIndicator=e.appendChildView(e.createChildView(vc)),e.ref.processingCompleteIndicator.element.dataset.align=e.query("GET_STYLE_BUTTON_PROCESS_ITEM_POSITION"),e.ref.info=e.appendChildView(e.createChildView(sc,{id:a})),e.ref.status=e.appendChildView(e.createChildView(gc,{id:a}));let m=e.appendChildView(e.createChildView(Xa,{opacity:0,align:e.query("GET_STYLE_LOAD_INDICATOR_POSITION")}));m.element.classList.add("filepond--load-indicator"),e.ref.loadProgressIndicator=m;let u=e.appendChildView(e.createChildView(Xa,{opacity:0,align:e.query("GET_STYLE_PROGRESS_INDICATOR_POSITION")}));u.element.classList.add("filepond--process-indicator"),e.ref.processProgressIndicator=u,e.ref.activeStyles=[]},xc=({root:e,actions:t,props:i})=>{yc({root:e,actions:t,props:i});let a=t.concat().filter(n=>/^DID_/.test(n.type)).reverse().find(n=>ut[n.type]);if(a){e.ref.activeStyles=[];let n=ut[a.type];te(Tc,(l,o)=>{let r=e.ref[l];te(o,(s,p)=>{let c=n[l]&&typeof n[l][s]<"u"?n[l][s]:p;e.ref.activeStyles.push({control:r,key:s,value:c})})})}e.ref.activeStyles.forEach(({control:n,key:l,value:o})=>{n[l]=typeof o=="function"?o(e):o})},yc=fe({DID_SET_LABEL_BUTTON_ABORT_ITEM_PROCESSING:({root:e,action:t})=>{e.ref.buttonAbortItemProcessing.label=t.value},DID_SET_LABEL_BUTTON_ABORT_ITEM_LOAD:({root:e,action:t})=>{e.ref.buttonAbortItemLoad.label=t.value},DID_SET_LABEL_BUTTON_ABORT_ITEM_REMOVAL:({root:e,action:t})=>{e.ref.buttonAbortItemRemoval.label=t.value},DID_REQUEST_ITEM_PROCESSING:({root:e})=>{e.ref.processProgressIndicator.spin=!0,e.ref.processProgressIndicator.progress=0},DID_START_ITEM_LOAD:({root:e})=>{e.ref.loadProgressIndicator.spin=!0,e.ref.loadProgressIndicator.progress=0},DID_START_ITEM_REMOVE:({root:e})=>{e.ref.processProgressIndicator.spin=!0,e.ref.processProgressIndicator.progress=0},DID_UPDATE_ITEM_LOAD_PROGRESS:({root:e,action:t})=>{e.ref.loadProgressIndicator.spin=!1,e.ref.loadProgressIndicator.progress=t.progress},DID_UPDATE_ITEM_PROCESS_PROGRESS:({root:e,action:t})=>{e.ref.processProgressIndicator.spin=!1,e.ref.processProgressIndicator.progress=t.progress}}),Rc=le({create:Ic,write:xc,didCreateView:e=>{it("CREATE_VIEW",{...e,view:e})},name:"file"}),Sc=({root:e,props:t})=>{e.ref.fileName=Ge("legend"),e.appendChild(e.ref.fileName),e.ref.file=e.appendChildView(e.createChildView(Rc,{id:t.id})),e.ref.data=!1},_c=({root:e,props:t})=>{ne(e.ref.fileName,Ki(e.query("GET_ITEM_NAME",t.id)))},wc=le({create:Sc,ignoreRect:!0,write:fe({DID_LOAD_ITEM:_c}),didCreateView:e=>{it("CREATE_VIEW",{...e,view:e})},tag:"fieldset",name:"file-wrapper"}),en={type:"spring",damping:.6,mass:7},Lc=({root:e,props:t})=>{[{name:"top"},{name:"center",props:{translateY:null,scaleY:null},mixins:{animations:{scaleY:en},styles:["translateY","scaleY"]}},{name:"bottom",props:{translateY:null},mixins:{animations:{translateY:en},styles:["translateY"]}}].forEach(i=>{Mc(e,i,t.name)}),e.element.classList.add(`filepond--${t.name}`),e.ref.scalable=null},Mc=(e,t,i)=>{let a=le({name:`panel-${t.name} filepond--${i}`,mixins:t.mixins,ignoreRectUpdate:!0}),n=e.createChildView(a,t.props);e.ref[t.name]=e.appendChildView(n)},Ac=({root:e,props:t})=>{if((e.ref.scalable===null||t.scalable!==e.ref.scalable)&&(e.ref.scalable=Tn(t.scalable)?t.scalable:!0,e.element.dataset.scalable=e.ref.scalable),!t.height)return;let i=e.ref.top.rect.element,a=e.ref.bottom.rect.element,n=Math.max(i.height+a.height,t.height);e.ref.center.translateY=i.height,e.ref.center.scaleY=(n-i.height-a.height)/100,e.ref.bottom.translateY=n-a.height},Nn=le({name:"panel",read:({root:e,props:t})=>t.heightCurrent=e.ref.bottom.translateY,write:Ac,create:Lc,ignoreRect:!0,mixins:{apis:["height","heightCurrent","scalable"]}}),Pc=e=>{let t=e.map(a=>a.id),i;return{setIndex:a=>{i=a},getIndex:()=>i,getItemIndex:a=>t.indexOf(a.id)}},tn={type:"spring",stiffness:.75,damping:.45,mass:10},an="spring",nn={DID_START_ITEM_LOAD:"busy",DID_UPDATE_ITEM_LOAD_PROGRESS:"loading",DID_THROW_ITEM_INVALID:"load-invalid",DID_THROW_ITEM_LOAD_ERROR:"load-error",DID_LOAD_ITEM:"idle",DID_THROW_ITEM_REMOVE_ERROR:"remove-error",DID_START_ITEM_REMOVE:"busy",DID_START_ITEM_PROCESSING:"busy processing",DID_REQUEST_ITEM_PROCESSING:"busy processing",DID_UPDATE_ITEM_PROCESS_PROGRESS:"processing",DID_COMPLETE_ITEM_PROCESSING:"processing-complete",DID_THROW_ITEM_PROCESSING_ERROR:"processing-error",DID_THROW_ITEM_PROCESSING_REVERT_ERROR:"processing-revert-error",DID_ABORT_ITEM_PROCESSING:"cancelled",DID_REVERT_ITEM_PROCESSING:"idle"},zc=({root:e,props:t})=>{if(e.ref.handleClick=a=>e.dispatch("DID_ACTIVATE_ITEM",{id:t.id}),e.element.id=`filepond--item-${t.id}`,e.element.addEventListener("click",e.ref.handleClick),e.ref.container=e.appendChildView(e.createChildView(wc,{id:t.id})),e.ref.panel=e.appendChildView(e.createChildView(Nn,{name:"item-panel"})),e.ref.panel.height=null,t.markedForRemoval=!1,!e.query("GET_ALLOW_REORDER"))return;e.element.dataset.dragState="idle";let i=a=>{if(!a.isPrimary)return;let n=!1,l={x:a.pageX,y:a.pageY};t.dragOrigin={x:e.translateX,y:e.translateY},t.dragCenter={x:a.offsetX,y:a.offsetY};let o=Pc(e.query("GET_ACTIVE_ITEMS"));e.dispatch("DID_GRAB_ITEM",{id:t.id,dragState:o});let r=d=>{if(!d.isPrimary)return;d.stopPropagation(),d.preventDefault(),t.dragOffset={x:d.pageX-l.x,y:d.pageY-l.y},t.dragOffset.x*t.dragOffset.x+t.dragOffset.y*t.dragOffset.y>16&&!n&&(n=!0,e.element.removeEventListener("click",e.ref.handleClick)),e.dispatch("DID_DRAG_ITEM",{id:t.id,dragState:o})},s=d=>{d.isPrimary&&(t.dragOffset={x:d.pageX-l.x,y:d.pageY-l.y},c())},p=()=>{c()},c=()=>{document.removeEventListener("pointercancel",p),document.removeEventListener("pointermove",r),document.removeEventListener("pointerup",s),e.dispatch("DID_DROP_ITEM",{id:t.id,dragState:o}),n&&setTimeout(()=>e.element.addEventListener("click",e.ref.handleClick),0)};document.addEventListener("pointercancel",p),document.addEventListener("pointermove",r),document.addEventListener("pointerup",s)};e.element.addEventListener("pointerdown",i)},Fc=fe({DID_UPDATE_PANEL_HEIGHT:({root:e,action:t})=>{e.height=t.height}}),Oc=fe({DID_GRAB_ITEM:({root:e,props:t})=>{t.dragOrigin={x:e.translateX,y:e.translateY}},DID_DRAG_ITEM:({root:e})=>{e.element.dataset.dragState="drag"},DID_DROP_ITEM:({root:e,props:t})=>{t.dragOffset=null,t.dragOrigin=null,e.element.dataset.dragState="drop"}},({root:e,actions:t,props:i,shouldOptimize:a})=>{e.element.dataset.dragState==="drop"&&e.scaleX<=1&&(e.element.dataset.dragState="idle");let n=t.concat().filter(o=>/^DID_/.test(o.type)).reverse().find(o=>nn[o.type]);n&&n.type!==i.currentState&&(i.currentState=n.type,e.element.dataset.filepondItemState=nn[i.currentState]||"");let l=e.query("GET_ITEM_PANEL_ASPECT_RATIO")||e.query("GET_PANEL_ASPECT_RATIO");l?a||(e.height=e.rect.element.width*l):(Fc({root:e,actions:t,props:i}),!e.height&&e.ref.container.rect.element.height>0&&(e.height=e.ref.container.rect.element.height)),a&&(e.ref.panel.height=null),e.ref.panel.height=e.height}),Dc=le({create:zc,write:Oc,destroy:({root:e,props:t})=>{e.element.removeEventListener("click",e.ref.handleClick),e.dispatch("RELEASE_ITEM",{query:t.id})},tag:"li",name:"item",mixins:{apis:["id","interactionMethod","markedForRemoval","spawnDate","dragCenter","dragOrigin","dragOffset"],styles:["translateX","translateY","scaleX","scaleY","opacity","height"],animations:{scaleX:an,scaleY:an,translateX:tn,translateY:tn,opacity:{type:"tween",duration:150}}}}),Zi=(e,t)=>Math.max(1,Math.floor((e+1)/t)),Qi=(e,t,i)=>{if(!i)return;let a=e.rect.element.width,n=t.length,l=null;if(n===0||i.toph){if(i.left{se(e.element,"role","list"),e.ref.lastItemSpanwDate=Date.now()},Bc=({root:e,action:t})=>{let{id:i,index:a,interactionMethod:n}=t;e.ref.addIndex=a;let l=Date.now(),o=l,r=1;if(n!==Re.NONE){r=0;let s=e.query("GET_ITEM_INSERT_INTERVAL"),p=l-e.ref.lastItemSpanwDate;o=p{e.dragOffset?(e.translateX=null,e.translateY=null,e.translateX=e.dragOrigin.x+e.dragOffset.x,e.translateY=e.dragOrigin.y+e.dragOffset.y,e.scaleX=1.025,e.scaleY=1.025):(e.translateX=t,e.translateY=i,Date.now()>e.spawnDate&&(e.opacity===0&&kc(e,t,i,a,n),e.scaleX=1,e.scaleY=1,e.opacity=1))},kc=(e,t,i,a,n)=>{e.interactionMethod===Re.NONE?(e.translateX=null,e.translateX=t,e.translateY=null,e.translateY=i):e.interactionMethod===Re.DROP?(e.translateX=null,e.translateX=t-a*20,e.translateY=null,e.translateY=i-n*10,e.scaleX=.8,e.scaleY=.8):e.interactionMethod===Re.BROWSE?(e.translateY=null,e.translateY=i-30):e.interactionMethod===Re.API&&(e.translateX=null,e.translateX=t-30,e.translateY=null)},Nc=({root:e,action:t})=>{let{id:i}=t,a=e.childViews.find(n=>n.id===i);a&&(a.scaleX=.9,a.scaleY=.9,a.opacity=0,a.markedForRemoval=!0)},Ai=e=>e.rect.element.height+e.rect.element.marginBottom+e.rect.element.marginTop,Vc=e=>e.rect.element.width+e.rect.element.marginLeft*.5+e.rect.element.marginRight*.5,Gc=({root:e,action:t})=>{let{id:i,dragState:a}=t,n=e.query("GET_ITEM",{id:i}),l=e.childViews.find(b=>b.id===i),o=e.childViews.length,r=a.getItemIndex(n);if(!l)return;let s={x:l.dragOrigin.x+l.dragOffset.x+l.dragCenter.x,y:l.dragOrigin.y+l.dragOffset.y+l.dragCenter.y},p=Ai(l),c=Vc(l),d=Math.floor(e.rect.outer.width/c);d>o&&(d=o);let m=Math.floor(o/d+1);ti.setHeight=p*m,ti.setWidth=c*d;var u={y:Math.floor(s.y/p),x:Math.floor(s.x/c),getGridIndex:function(){return s.y>ti.getHeight||s.y<0||s.x>ti.getWidth||s.x<0?r:this.y*d+this.x},getColIndex:function(){let v=e.query("GET_ACTIVE_ITEMS"),h=e.childViews.filter(P=>P.rect.element.height),E=v.map(P=>h.find(A=>A.id===P.id)),I=E.findIndex(P=>P===l),y=Ai(l),T=E.length,_=T,x=0,R=0,z=0;for(let P=0;PP){if(s.y1?u.getGridIndex():u.getColIndex();e.dispatch("MOVE_ITEM",{query:l,index:g});let f=a.getIndex();if(f===void 0||f!==g){if(a.setIndex(g),f===void 0)return;e.dispatch("DID_REORDER_ITEMS",{items:e.query("GET_ACTIVE_ITEMS"),origin:r,target:g})}},Uc=fe({DID_ADD_ITEM:Bc,DID_REMOVE_ITEM:Nc,DID_DRAG_ITEM:Gc}),Hc=({root:e,props:t,actions:i,shouldOptimize:a})=>{Uc({root:e,props:t,actions:i});let{dragCoordinates:n}=t,l=e.rect.element.width,o=e.childViews.filter(E=>E.rect.element.height),r=e.query("GET_ACTIVE_ITEMS").map(E=>o.find(I=>I.id===E.id)).filter(E=>E),s=n?Qi(e,r,n):null,p=e.ref.addIndex||null;e.ref.addIndex=null;let c=0,d=0,m=0;if(r.length===0)return;let u=r[0].rect.element,g=u.marginTop+u.marginBottom,f=u.marginLeft+u.marginRight,b=u.width+f,v=u.height+g,h=Zi(l,b);if(h===1){let E=0,I=0;r.forEach((y,T)=>{if(s){let R=T-s;R===-2?I=-g*.25:R===-1?I=-g*.75:R===0?I=g*.75:R===1?I=g*.25:I=0}a&&(y.translateX=null,y.translateY=null),y.markedForRemoval||ln(y,0,E+I);let x=(y.rect.element.height+g)*(y.markedForRemoval?y.opacity:1);E+=x})}else{let E=0,I=0;r.forEach((y,T)=>{T===s&&(c=1),T===p&&(m+=1),y.markedForRemoval&&y.opacity<.5&&(d-=1);let _=T+m+c+d,x=_%h,R=Math.floor(_/h),z=x*b,P=R*v,A=Math.sign(z-E),B=Math.sign(P-I);E=z,I=P,!y.markedForRemoval&&(a&&(y.translateX=null,y.translateY=null),ln(y,z,P,A,B))})}},Wc=(e,t)=>t.filter(i=>i.data&&i.data.id?e.id===i.data.id:!0),jc=le({create:Cc,write:Hc,tag:"ul",name:"list",didWriteView:({root:e})=>{e.childViews.filter(t=>t.markedForRemoval&&t.opacity===0&&t.resting).forEach(t=>{t._destroy(),e.removeChildView(t)})},filterFrameActionsForChild:Wc,mixins:{apis:["dragCoordinates"]}}),Yc=({root:e,props:t})=>{e.ref.list=e.appendChildView(e.createChildView(jc)),t.dragCoordinates=null,t.overflowing=!1},qc=({root:e,props:t,action:i})=>{e.query("GET_ITEM_INSERT_LOCATION_FREEDOM")&&(t.dragCoordinates={left:i.position.scopeLeft-e.ref.list.rect.element.left,top:i.position.scopeTop-(e.rect.outer.top+e.rect.element.marginTop+e.rect.element.scrollTop)})},$c=({props:e})=>{e.dragCoordinates=null},Xc=fe({DID_DRAG:qc,DID_END_DRAG:$c}),Kc=({root:e,props:t,actions:i})=>{if(Xc({root:e,props:t,actions:i}),e.ref.list.dragCoordinates=t.dragCoordinates,t.overflowing&&!t.overflow&&(t.overflowing=!1,e.element.dataset.state="",e.height=null),t.overflow){let a=Math.round(t.overflow);a!==e.height&&(t.overflowing=!0,e.element.dataset.state="overflow",e.height=a)}},Zc=le({create:Yc,write:Kc,name:"list-scroller",mixins:{apis:["overflow","dragCoordinates"],styles:["height","translateY"],animations:{translateY:"spring"}}}),ze=(e,t,i,a="")=>{i?se(e,t,a):e.removeAttribute(t)},Qc=e=>{if(!(!e||e.value==="")){try{e.value=""}catch{}if(e.value){let t=Ge("form"),i=e.parentNode,a=e.nextSibling;t.appendChild(e),t.reset(),a?i.insertBefore(e,a):i.appendChild(e)}}},Jc=({root:e,props:t})=>{e.element.id=`filepond--browser-${t.id}`,se(e.element,"name",e.query("GET_NAME")),se(e.element,"aria-controls",`filepond--assistant-${t.id}`),se(e.element,"aria-labelledby",`filepond--drop-label-${t.id}`),Vn({root:e,action:{value:e.query("GET_ACCEPTED_FILE_TYPES")}}),Gn({root:e,action:{value:e.query("GET_ALLOW_MULTIPLE")}}),Un({root:e,action:{value:e.query("GET_ALLOW_DIRECTORIES_ONLY")}}),ki({root:e}),Hn({root:e,action:{value:e.query("GET_REQUIRED")}}),Wn({root:e,action:{value:e.query("GET_CAPTURE_METHOD")}}),e.ref.handleChange=i=>{if(!e.element.value)return;let a=Array.from(e.element.files).map(n=>(n._relativePath=n.webkitRelativePath,n));setTimeout(()=>{t.onload(a),Qc(e.element)},250)},e.element.addEventListener("change",e.ref.handleChange)},Vn=({root:e,action:t})=>{e.query("GET_ALLOW_SYNC_ACCEPT_ATTRIBUTE")&&ze(e.element,"accept",!!t.value,t.value?t.value.join(","):"")},Gn=({root:e,action:t})=>{ze(e.element,"multiple",t.value)},Un=({root:e,action:t})=>{ze(e.element,"webkitdirectory",t.value)},ki=({root:e})=>{let t=e.query("GET_DISABLED"),i=e.query("GET_ALLOW_BROWSE"),a=t||!i;ze(e.element,"disabled",a)},Hn=({root:e,action:t})=>{t.value?e.query("GET_TOTAL_ITEMS")===0&&ze(e.element,"required",!0):ze(e.element,"required",!1)},Wn=({root:e,action:t})=>{ze(e.element,"capture",!!t.value,t.value===!0?"":t.value)},on=({root:e})=>{let{element:t}=e;if(e.query("GET_TOTAL_ITEMS")>0){ze(t,"required",!1),ze(t,"name",!1);let i=e.query("GET_ACTIVE_ITEMS"),a=!1;for(let n=0;n{e.query("GET_CHECK_VALIDITY")&&e.element.setCustomValidity(e.query("GET_LABEL_INVALID_FIELD"))},td=le({tag:"input",name:"browser",ignoreRect:!0,ignoreRectUpdate:!0,attributes:{type:"file"},create:Jc,destroy:({root:e})=>{e.element.removeEventListener("change",e.ref.handleChange)},write:fe({DID_LOAD_ITEM:on,DID_REMOVE_ITEM:on,DID_THROW_ITEM_INVALID:ed,DID_SET_DISABLED:ki,DID_SET_ALLOW_BROWSE:ki,DID_SET_ALLOW_DIRECTORIES_ONLY:Un,DID_SET_ALLOW_MULTIPLE:Gn,DID_SET_ACCEPTED_FILE_TYPES:Vn,DID_SET_CAPTURE_METHOD:Wn,DID_SET_REQUIRED:Hn})}),rn={ENTER:13,SPACE:32},id=({root:e,props:t})=>{let i=Ge("label");se(i,"for",`filepond--browser-${t.id}`),se(i,"id",`filepond--drop-label-${t.id}`),e.ref.handleKeyDown=a=>{(a.keyCode===rn.ENTER||a.keyCode===rn.SPACE)&&(a.preventDefault(),e.ref.label.click())},e.ref.handleClick=a=>{a.target===i||i.contains(a.target)||e.ref.label.click()},i.addEventListener("keydown",e.ref.handleKeyDown),e.element.addEventListener("click",e.ref.handleClick),jn(i,t.caption),e.appendChild(i),e.ref.label=i},jn=(e,t)=>{e.innerHTML=t;let i=e.querySelector(".filepond--label-action");return i&&se(i,"tabindex","0"),t},ad=le({name:"drop-label",ignoreRect:!0,create:id,destroy:({root:e})=>{e.ref.label.addEventListener("keydown",e.ref.handleKeyDown),e.element.removeEventListener("click",e.ref.handleClick)},write:fe({DID_SET_LABEL_IDLE:({root:e,action:t})=>{jn(e.ref.label,t.value)}}),mixins:{styles:["opacity","translateX","translateY"],animations:{opacity:{type:"tween",duration:150},translateX:"spring",translateY:"spring"}}}),nd=le({name:"drip-blob",ignoreRect:!0,mixins:{styles:["translateX","translateY","scaleX","scaleY","opacity"],animations:{scaleX:"spring",scaleY:"spring",translateX:"spring",translateY:"spring",opacity:{type:"tween",duration:250}}}}),ld=({root:e})=>{let t=e.rect.element.width*.5,i=e.rect.element.height*.5;e.ref.blob=e.appendChildView(e.createChildView(nd,{opacity:0,scaleX:2.5,scaleY:2.5,translateX:t,translateY:i}))},od=({root:e,action:t})=>{if(!e.ref.blob){ld({root:e});return}e.ref.blob.translateX=t.position.scopeLeft,e.ref.blob.translateY=t.position.scopeTop,e.ref.blob.scaleX=1,e.ref.blob.scaleY=1,e.ref.blob.opacity=1},rd=({root:e})=>{e.ref.blob&&(e.ref.blob.opacity=0)},sd=({root:e})=>{e.ref.blob&&(e.ref.blob.scaleX=2.5,e.ref.blob.scaleY=2.5,e.ref.blob.opacity=0)},cd=({root:e,props:t,actions:i})=>{dd({root:e,props:t,actions:i});let{blob:a}=e.ref;i.length===0&&a&&a.opacity===0&&(e.removeChildView(a),e.ref.blob=null)},dd=fe({DID_DRAG:od,DID_DROP:sd,DID_END_DRAG:rd}),pd=le({ignoreRect:!0,ignoreRectUpdate:!0,name:"drip",write:cd}),Yn=(e,t)=>{try{let i=new DataTransfer;t.forEach(a=>{a instanceof File?i.items.add(a):i.items.add(new File([a],a.name,{type:a.type}))}),e.files=i.files}catch{return!1}return!0},md=({root:e})=>{e.ref.fields={};let t=document.createElement("legend");t.textContent="Files",e.element.appendChild(t)},gi=(e,t)=>e.ref.fields[t],Ji=e=>{e.query("GET_ACTIVE_ITEMS").forEach(t=>{e.ref.fields[t.id]&&e.element.appendChild(e.ref.fields[t.id])})},sn=({root:e})=>Ji(e),ud=({root:e,action:t})=>{let n=!(e.query("GET_ITEM",t.id).origin===re.LOCAL)&&e.query("SHOULD_UPDATE_FILE_INPUT"),l=Ge("input");l.type=n?"file":"hidden",l.name=e.query("GET_NAME"),e.ref.fields[t.id]=l,Ji(e)},gd=({root:e,action:t})=>{let i=gi(e,t.id);if(!i||(t.serverFileReference!==null&&(i.value=t.serverFileReference),!e.query("SHOULD_UPDATE_FILE_INPUT")))return;let a=e.query("GET_ITEM",t.id);Yn(i,[a.file])},fd=({root:e,action:t})=>{e.query("SHOULD_UPDATE_FILE_INPUT")&&setTimeout(()=>{let i=gi(e,t.id);i&&Yn(i,[t.file])},0)},hd=({root:e})=>{e.element.disabled=e.query("GET_DISABLED")},bd=({root:e,action:t})=>{let i=gi(e,t.id);i&&(i.parentNode&&i.parentNode.removeChild(i),delete e.ref.fields[t.id])},Ed=({root:e,action:t})=>{let i=gi(e,t.id);i&&(t.value===null?i.removeAttribute("value"):i.type!="file"&&(i.value=t.value),Ji(e))},Td=fe({DID_SET_DISABLED:hd,DID_ADD_ITEM:ud,DID_LOAD_ITEM:gd,DID_REMOVE_ITEM:bd,DID_DEFINE_VALUE:Ed,DID_PREPARE_OUTPUT:fd,DID_REORDER_ITEMS:sn,DID_SORT_ITEMS:sn}),vd=le({tag:"fieldset",name:"data",create:md,write:Td,ignoreRect:!0}),Id=e=>"getRootNode"in e?e.getRootNode():document,xd=["jpg","jpeg","png","gif","bmp","webp","svg","tiff"],yd=["css","csv","html","txt"],Rd={zip:"zip|compressed",epub:"application/epub+zip"},qn=(e="")=>(e=e.toLowerCase(),xd.includes(e)?"image/"+(e==="jpg"?"jpeg":e==="svg"?"svg+xml":e):yd.includes(e)?"text/"+e:Rd[e]||""),ea=e=>new Promise((t,i)=>{let a=zd(e);if(a.length&&!Sd(e))return t(a);_d(e).then(t)}),Sd=e=>e.files?e.files.length>0:!1,_d=e=>new Promise((t,i)=>{let a=(e.items?Array.from(e.items):[]).filter(n=>wd(n)).map(n=>Ld(n));if(!a.length){t(e.files?Array.from(e.files):[]);return}Promise.all(a).then(n=>{let l=[];n.forEach(o=>{l.push.apply(l,o)}),t(l.filter(o=>o).map(o=>(o._relativePath||(o._relativePath=o.webkitRelativePath),o)))}).catch(console.error)}),wd=e=>{if($n(e)){let t=ta(e);if(t)return t.isFile||t.isDirectory}return e.kind==="file"},Ld=e=>new Promise((t,i)=>{if(Pd(e)){Md(ta(e)).then(t).catch(i);return}t([e.getAsFile()])}),Md=e=>new Promise((t,i)=>{let a=[],n=0,l=0,o=()=>{l===0&&n===0&&t(a)},r=s=>{n++;let p=s.createReader(),c=()=>{p.readEntries(d=>{if(d.length===0){n--,o();return}d.forEach(m=>{m.isDirectory?r(m):(l++,m.file(u=>{let g=Ad(u);m.fullPath&&(g._relativePath=m.fullPath),a.push(g),l--,o()}))}),c()},i)};c()};r(e)}),Ad=e=>{if(e.type.length)return e;let t=e.lastModifiedDate,i=e.name,a=qn(ui(e.name));return a.length&&(e=e.slice(0,e.size,a),e.name=i,e.lastModifiedDate=t),e},Pd=e=>$n(e)&&(ta(e)||{}).isDirectory,$n=e=>"webkitGetAsEntry"in e,ta=e=>e.webkitGetAsEntry(),zd=e=>{let t=[];try{if(t=Od(e),t.length)return t;t=Fd(e)}catch{}return t},Fd=e=>{let t=e.getData("url");return typeof t=="string"&&t.length?[t]:[]},Od=e=>{let t=e.getData("text/html");if(typeof t=="string"&&t.length){let i=t.match(/src\s*=\s*"(.+?)"/);if(i)return[i[1]]}return[]},ri=[],tt=e=>({pageLeft:e.pageX,pageTop:e.pageY,scopeLeft:e.offsetX||e.layerX,scopeTop:e.offsetY||e.layerY}),Dd=(e,t,i)=>{let a=Cd(t),n={element:e,filterElement:i,state:null,ondrop:()=>{},onenter:()=>{},ondrag:()=>{},onexit:()=>{},onload:()=>{},allowdrop:()=>{}};return n.destroy=a.addListener(n),n},Cd=e=>{let t=ri.find(a=>a.element===e);if(t)return t;let i=Bd(e);return ri.push(i),i},Bd=e=>{let t=[],i={dragenter:Nd,dragover:Vd,dragleave:Ud,drop:Gd},a={};te(i,(l,o)=>{a[l]=o(e,t),e.addEventListener(l,a[l],!1)});let n={element:e,addListener:l=>(t.push(l),()=>{t.splice(t.indexOf(l),1),t.length===0&&(ri.splice(ri.indexOf(n),1),te(i,o=>{e.removeEventListener(o,a[o],!1)}))})};return n},kd=(e,t)=>("elementFromPoint"in e||(e=document),e.elementFromPoint(t.x,t.y)),ia=(e,t)=>{let i=Id(t),a=kd(i,{x:e.pageX-window.pageXOffset,y:e.pageY-window.pageYOffset});return a===t||t.contains(a)},Xn=null,ii=(e,t)=>{try{e.dropEffect=t}catch{}},Nd=(e,t)=>i=>{i.preventDefault(),Xn=i.target,t.forEach(a=>{let{element:n,onenter:l}=a;ia(i,n)&&(a.state="enter",l(tt(i)))})},Vd=(e,t)=>i=>{i.preventDefault();let a=i.dataTransfer;ea(a).then(n=>{let l=!1;t.some(o=>{let{filterElement:r,element:s,onenter:p,onexit:c,ondrag:d,allowdrop:m}=o;ii(a,"copy");let u=m(n);if(!u){ii(a,"none");return}if(ia(i,s)){if(l=!0,o.state===null){o.state="enter",p(tt(i));return}if(o.state="over",r&&!u){ii(a,"none");return}d(tt(i))}else r&&!l&&ii(a,"none"),o.state&&(o.state=null,c(tt(i)))})})},Gd=(e,t)=>i=>{i.preventDefault();let a=i.dataTransfer;ea(a).then(n=>{t.forEach(l=>{let{filterElement:o,element:r,ondrop:s,onexit:p,allowdrop:c}=l;if(l.state=null,!(o&&!ia(i,r))){if(!c(n))return p(tt(i));s(tt(i),n)}})})},Ud=(e,t)=>i=>{Xn===i.target&&t.forEach(a=>{let{onexit:n}=a;a.state=null,n(tt(i))})},Hd=(e,t,i)=>{e.classList.add("filepond--hopper");let{catchesDropsOnPage:a,requiresDropOnElement:n,filterItems:l=c=>c}=i,o=Dd(e,a?document.documentElement:e,n),r="",s="";o.allowdrop=c=>t(l(c)),o.ondrop=(c,d)=>{let m=l(d);if(!t(m)){p.ondragend(c);return}s="drag-drop",p.onload(m,c)},o.ondrag=c=>{p.ondrag(c)},o.onenter=c=>{s="drag-over",p.ondragstart(c)},o.onexit=c=>{s="drag-exit",p.ondragend(c)};let p={updateHopperState:()=>{r!==s&&(e.dataset.hopperState=s,r=s)},onload:()=>{},ondragstart:()=>{},ondrag:()=>{},ondragend:()=>{},destroy:()=>{o.destroy()}};return p},Ni=!1,gt=[],Kn=e=>{let t=document.activeElement;if(t&&(/textarea|input/i.test(t.nodeName)||t.getAttribute("contenteditable")==="true"||t.getAttribute("contenteditable")==="")){let a=!1,n=t;for(;n!==document.body;){if(n.classList.contains("filepond--root")){a=!0;break}n=n.parentNode}if(!a)return}ea(e.clipboardData).then(a=>{a.length&>.forEach(n=>n(a))})},Wd=e=>{gt.includes(e)||(gt.push(e),!Ni&&(Ni=!0,document.addEventListener("paste",Kn)))},jd=e=>{qi(gt,gt.indexOf(e)),gt.length===0&&(document.removeEventListener("paste",Kn),Ni=!1)},Yd=()=>{let e=i=>{t.onload(i)},t={destroy:()=>{jd(e)},onload:()=>{}};return Wd(e),t},qd=({root:e,props:t})=>{e.element.id=`filepond--assistant-${t.id}`,se(e.element,"role","alert"),se(e.element,"aria-live","polite"),se(e.element,"aria-relevant","additions")},cn=null,dn=null,Pi=[],fi=(e,t)=>{e.element.textContent=t},$d=e=>{e.element.textContent=""},Zn=(e,t,i)=>{let a=e.query("GET_TOTAL_ITEMS");fi(e,`${i} ${t}, ${a} ${a===1?e.query("GET_LABEL_FILE_COUNT_SINGULAR"):e.query("GET_LABEL_FILE_COUNT_PLURAL")}`),clearTimeout(dn),dn=setTimeout(()=>{$d(e)},1500)},Qn=e=>e.element.parentNode.contains(document.activeElement),Xd=({root:e,action:t})=>{if(!Qn(e))return;e.element.textContent="";let i=e.query("GET_ITEM",t.id);Pi.push(i.filename),clearTimeout(cn),cn=setTimeout(()=>{Zn(e,Pi.join(", "),e.query("GET_LABEL_FILE_ADDED")),Pi.length=0},750)},Kd=({root:e,action:t})=>{if(!Qn(e))return;let i=t.item;Zn(e,i.filename,e.query("GET_LABEL_FILE_REMOVED"))},Zd=({root:e,action:t})=>{let a=e.query("GET_ITEM",t.id).filename,n=e.query("GET_LABEL_FILE_PROCESSING_COMPLETE");fi(e,`${a} ${n}`)},pn=({root:e,action:t})=>{let a=e.query("GET_ITEM",t.id).filename,n=e.query("GET_LABEL_FILE_PROCESSING_ABORTED");fi(e,`${a} ${n}`)},ai=({root:e,action:t})=>{let a=e.query("GET_ITEM",t.id).filename;fi(e,`${t.status.main} ${a} ${t.status.sub}`)},Qd=le({create:qd,ignoreRect:!0,ignoreRectUpdate:!0,write:fe({DID_LOAD_ITEM:Xd,DID_REMOVE_ITEM:Kd,DID_COMPLETE_ITEM_PROCESSING:Zd,DID_ABORT_ITEM_PROCESSING:pn,DID_REVERT_ITEM_PROCESSING:pn,DID_THROW_ITEM_REMOVE_ERROR:ai,DID_THROW_ITEM_LOAD_ERROR:ai,DID_THROW_ITEM_INVALID:ai,DID_THROW_ITEM_PROCESSING_ERROR:ai}),tag:"span",name:"assistant"}),Jn=(e,t="-")=>e.replace(new RegExp(`${t}.`,"g"),i=>i.charAt(1).toUpperCase()),el=(e,t=16,i=!0)=>{let a=Date.now(),n=null;return(...l)=>{clearTimeout(n);let o=Date.now()-a,r=()=>{a=Date.now(),e(...l)};oe.preventDefault(),ep=({root:e,props:t})=>{let i=e.query("GET_ID");i&&(e.element.id=i);let a=e.query("GET_CLASS_NAME");a&&a.split(" ").filter(s=>s.length).forEach(s=>{e.element.classList.add(s)}),e.ref.label=e.appendChildView(e.createChildView(ad,{...t,translateY:null,caption:e.query("GET_LABEL_IDLE")})),e.ref.list=e.appendChildView(e.createChildView(Zc,{translateY:null})),e.ref.panel=e.appendChildView(e.createChildView(Nn,{name:"panel-root"})),e.ref.assistant=e.appendChildView(e.createChildView(Qd,{...t})),e.ref.data=e.appendChildView(e.createChildView(vd,{...t})),e.ref.measure=Ge("div"),e.ref.measure.style.height="100%",e.element.appendChild(e.ref.measure),e.ref.bounds=null,e.query("GET_STYLES").filter(s=>!Ve(s.value)).map(({name:s,value:p})=>{e.element.dataset[s]=p}),e.ref.widthPrevious=null,e.ref.widthUpdated=el(()=>{e.ref.updateHistory=[],e.dispatch("DID_RESIZE_ROOT")},250),e.ref.previousAspectRatio=null,e.ref.updateHistory=[];let n=window.matchMedia("(pointer: fine) and (hover: hover)").matches,l="PointerEvent"in window;e.query("GET_ALLOW_REORDER")&&l&&!n&&(e.element.addEventListener("touchmove",si,{passive:!1}),e.element.addEventListener("gesturestart",si));let o=e.query("GET_CREDITS");if(o.length===2){let s=document.createElement("a");s.className="filepond--credits",s.href=o[0],s.tabIndex=-1,s.target="_blank",s.rel="noopener noreferrer nofollow",s.textContent=o[1],e.element.appendChild(s),e.ref.credits=s}},tp=({root:e,props:t,actions:i})=>{if(op({root:e,props:t,actions:i}),i.filter(T=>/^DID_SET_STYLE_/.test(T.type)).filter(T=>!Ve(T.data.value)).map(({type:T,data:_})=>{let x=Jn(T.substring(8).toLowerCase(),"_");e.element.dataset[x]=_.value,e.invalidateLayout()}),e.rect.element.hidden)return;e.rect.element.width!==e.ref.widthPrevious&&(e.ref.widthPrevious=e.rect.element.width,e.ref.widthUpdated());let a=e.ref.bounds;a||(a=e.ref.bounds=np(e),e.element.removeChild(e.ref.measure),e.ref.measure=null);let{hopper:n,label:l,list:o,panel:r}=e.ref;n&&n.updateHopperState();let s=e.query("GET_PANEL_ASPECT_RATIO"),p=e.query("GET_ALLOW_MULTIPLE"),c=e.query("GET_TOTAL_ITEMS"),d=p?e.query("GET_MAX_FILES")||Jd:1,m=c===d,u=i.find(T=>T.type==="DID_ADD_ITEM");if(m&&u){let T=u.data.interactionMethod;l.opacity=0,p?l.translateY=-40:T===Re.API?l.translateX=40:T===Re.BROWSE?l.translateY=40:l.translateY=30}else m||(l.opacity=1,l.translateX=0,l.translateY=0);let g=ip(e),f=ap(e),b=l.rect.element.height,v=!p||m?0:b,h=m?o.rect.element.marginTop:0,E=c===0?0:o.rect.element.marginBottom,I=v+h+f.visual+E,y=v+h+f.bounds+E;if(o.translateY=Math.max(0,v-o.rect.element.marginTop)-g.top,s){let T=e.rect.element.width,_=T*s;s!==e.ref.previousAspectRatio&&(e.ref.previousAspectRatio=s,e.ref.updateHistory=[]);let x=e.ref.updateHistory;x.push(T);let R=2;if(x.length>R*2){let P=x.length,A=P-10,B=0;for(let w=P;w>=A;w--)if(x[w]===x[w-2]&&B++,B>=R)return}r.scalable=!1,r.height=_;let z=_-v-(E-g.bottom)-(m?h:0);f.visual>z?o.overflow=z:o.overflow=null,e.height=_}else if(a.fixedHeight){r.scalable=!1;let T=a.fixedHeight-v-(E-g.bottom)-(m?h:0);f.visual>T?o.overflow=T:o.overflow=null}else if(a.cappedHeight){let T=I>=a.cappedHeight,_=Math.min(a.cappedHeight,I);r.scalable=!0,r.height=T?_:_-g.top-g.bottom;let x=_-v-(E-g.bottom)-(m?h:0);I>a.cappedHeight&&f.visual>x?o.overflow=x:o.overflow=null,e.height=Math.min(a.cappedHeight,y-g.top-g.bottom)}else{let T=c>0?g.top+g.bottom:0;r.scalable=!0,r.height=Math.max(b,I-T),e.height=Math.max(b,y-T)}e.ref.credits&&r.heightCurrent&&(e.ref.credits.style.transform=`translateY(${r.heightCurrent}px)`)},ip=e=>{let t=e.ref.list.childViews[0].childViews[0];return t?{top:t.rect.element.marginTop,bottom:t.rect.element.marginBottom}:{top:0,bottom:0}},ap=e=>{let t=0,i=0,a=e.ref.list,n=a.childViews[0],l=n.childViews.filter(h=>h.rect.element.height),o=e.query("GET_ACTIVE_ITEMS").map(h=>l.find(E=>E.id===h.id)).filter(h=>h);if(o.length===0)return{visual:t,bounds:i};let r=n.rect.element.width,s=Qi(n,o,a.dragCoordinates),p=o[0].rect.element,c=p.marginTop+p.marginBottom,d=p.marginLeft+p.marginRight,m=p.width+d,u=p.height+c,g=typeof s<"u"&&s>=0?1:0,f=o.find(h=>h.markedForRemoval&&h.opacity<.45)?-1:0,b=o.length+g+f,v=Zi(r,m);return v===1?o.forEach(h=>{let E=h.rect.element.height+c;i+=E,t+=E*h.opacity}):(i=Math.ceil(b/v)*u,t=i),{visual:t,bounds:i}},np=e=>{let t=e.ref.measureHeight||null;return{cappedHeight:parseInt(e.style.maxHeight,10)||null,fixedHeight:t===0?null:t}},aa=(e,t)=>{let i=e.query("GET_ALLOW_REPLACE"),a=e.query("GET_ALLOW_MULTIPLE"),n=e.query("GET_TOTAL_ITEMS"),l=e.query("GET_MAX_FILES"),o=t.length;return!a&&o>1?(e.dispatch("DID_THROW_MAX_FILES",{source:t,error:ae("warning",0,"Max files")}),!0):(l=a?l:1,!a&&i?!1:Et(l)&&n+o>l?(e.dispatch("DID_THROW_MAX_FILES",{source:t,error:ae("warning",0,"Max files")}),!0):!1)},lp=(e,t,i)=>{let a=e.childViews[0];return Qi(a,t,{left:i.scopeLeft-a.rect.element.left,top:i.scopeTop-(e.rect.outer.top+e.rect.element.marginTop+e.rect.element.scrollTop)})},mn=e=>{let t=e.query("GET_ALLOW_DROP"),i=e.query("GET_DISABLED"),a=t&&!i;if(a&&!e.ref.hopper){let n=Hd(e.element,l=>{let o=e.query("GET_BEFORE_DROP_FILE")||(()=>!0);return e.query("GET_DROP_VALIDATION")?l.every(s=>it("ALLOW_HOPPER_ITEM",s,{query:e.query}).every(p=>p===!0)&&o(s)):!0},{filterItems:l=>{let o=e.query("GET_IGNORED_FILES");return l.filter(r=>et(r)?!o.includes(r.name.toLowerCase()):!0)},catchesDropsOnPage:e.query("GET_DROP_ON_PAGE"),requiresDropOnElement:e.query("GET_DROP_ON_ELEMENT")});n.onload=(l,o)=>{let s=e.ref.list.childViews[0].childViews.filter(c=>c.rect.element.height),p=e.query("GET_ACTIVE_ITEMS").map(c=>s.find(d=>d.id===c.id)).filter(c=>c);Ae("ADD_ITEMS",l,{dispatch:e.dispatch}).then(c=>{if(aa(e,c))return!1;e.dispatch("ADD_ITEMS",{items:c,index:lp(e.ref.list,p,o),interactionMethod:Re.DROP})}),e.dispatch("DID_DROP",{position:o}),e.dispatch("DID_END_DRAG",{position:o})},n.ondragstart=l=>{e.dispatch("DID_START_DRAG",{position:l})},n.ondrag=el(l=>{e.dispatch("DID_DRAG",{position:l})}),n.ondragend=l=>{e.dispatch("DID_END_DRAG",{position:l})},e.ref.hopper=n,e.ref.drip=e.appendChildView(e.createChildView(pd))}else!a&&e.ref.hopper&&(e.ref.hopper.destroy(),e.ref.hopper=null,e.removeChildView(e.ref.drip))},un=(e,t)=>{let i=e.query("GET_ALLOW_BROWSE"),a=e.query("GET_DISABLED"),n=i&&!a;n&&!e.ref.browser?e.ref.browser=e.appendChildView(e.createChildView(td,{...t,onload:l=>{Ae("ADD_ITEMS",l,{dispatch:e.dispatch}).then(o=>{if(aa(e,o))return!1;e.dispatch("ADD_ITEMS",{items:o,index:-1,interactionMethod:Re.BROWSE})})}}),0):!n&&e.ref.browser&&(e.removeChildView(e.ref.browser),e.ref.browser=null)},gn=e=>{let t=e.query("GET_ALLOW_PASTE"),i=e.query("GET_DISABLED"),a=t&&!i;a&&!e.ref.paster?(e.ref.paster=Yd(),e.ref.paster.onload=n=>{Ae("ADD_ITEMS",n,{dispatch:e.dispatch}).then(l=>{if(aa(e,l))return!1;e.dispatch("ADD_ITEMS",{items:l,index:-1,interactionMethod:Re.PASTE})})}):!a&&e.ref.paster&&(e.ref.paster.destroy(),e.ref.paster=null)},op=fe({DID_SET_ALLOW_BROWSE:({root:e,props:t})=>{un(e,t)},DID_SET_ALLOW_DROP:({root:e})=>{mn(e)},DID_SET_ALLOW_PASTE:({root:e})=>{gn(e)},DID_SET_DISABLED:({root:e,props:t})=>{mn(e),gn(e),un(e,t),e.query("GET_DISABLED")?e.element.dataset.disabled="disabled":e.element.removeAttribute("data-disabled")}}),rp=le({name:"root",read:({root:e})=>{e.ref.measure&&(e.ref.measureHeight=e.ref.measure.offsetHeight)},create:ep,write:tp,destroy:({root:e})=>{e.ref.paster&&e.ref.paster.destroy(),e.ref.hopper&&e.ref.hopper.destroy(),e.element.removeEventListener("touchmove",si),e.element.removeEventListener("gesturestart",si)},mixins:{styles:["height"]}}),sp=(e={})=>{let t=null,i=oi(),a=Sr(ds(i),[Ls,us(i)],[Js,ms(i)]);a.dispatch("SET_OPTIONS",{options:e});let n=()=>{document.hidden||a.dispatch("KICK")};document.addEventListener("visibilitychange",n);let l=null,o=!1,r=!1,s=null,p=null,c=()=>{o||(o=!0),clearTimeout(l),l=setTimeout(()=>{o=!1,s=null,p=null,r&&(r=!1,a.dispatch("DID_STOP_RESIZE"))},500)};window.addEventListener("resize",c);let d=rp(a,{id:Yi()}),m=!1,u=!1,g={_read:()=>{o&&(p=window.innerWidth,s||(s=p),!r&&p!==s&&(a.dispatch("DID_START_RESIZE"),r=!0)),u&&m&&(m=d.element.offsetParent===null),!m&&(d._read(),u=d.rect.element.hidden)},_write:S=>{let L=a.processActionQueue().filter(D=>!/^SET_/.test(D.type));m&&!L.length||(h(L),m=d._write(S,L,r),hs(a.query("GET_ITEMS")),m&&a.processDispatchQueue())}},f=S=>L=>{let D={type:S};if(!L)return D;if(L.hasOwnProperty("error")&&(D.error=L.error?{...L.error}:null),L.status&&(D.status={...L.status}),L.file&&(D.output=L.file),L.source)D.file=L.source;else if(L.item||L.id){let O=L.item?L.item:a.query("GET_ITEM",L.id);D.file=O?he(O):null}return L.items&&(D.items=L.items.map(he)),/progress/.test(S)&&(D.progress=L.progress),L.hasOwnProperty("origin")&&L.hasOwnProperty("target")&&(D.origin=L.origin,D.target=L.target),D},b={DID_DESTROY:f("destroy"),DID_INIT:f("init"),DID_THROW_MAX_FILES:f("warning"),DID_INIT_ITEM:f("initfile"),DID_START_ITEM_LOAD:f("addfilestart"),DID_UPDATE_ITEM_LOAD_PROGRESS:f("addfileprogress"),DID_LOAD_ITEM:f("addfile"),DID_THROW_ITEM_INVALID:[f("error"),f("addfile")],DID_THROW_ITEM_LOAD_ERROR:[f("error"),f("addfile")],DID_THROW_ITEM_REMOVE_ERROR:[f("error"),f("removefile")],DID_PREPARE_OUTPUT:f("preparefile"),DID_START_ITEM_PROCESSING:f("processfilestart"),DID_UPDATE_ITEM_PROCESS_PROGRESS:f("processfileprogress"),DID_ABORT_ITEM_PROCESSING:f("processfileabort"),DID_COMPLETE_ITEM_PROCESSING:f("processfile"),DID_COMPLETE_ITEM_PROCESSING_ALL:f("processfiles"),DID_REVERT_ITEM_PROCESSING:f("processfilerevert"),DID_THROW_ITEM_PROCESSING_ERROR:[f("error"),f("processfile")],DID_REMOVE_ITEM:f("removefile"),DID_UPDATE_ITEMS:f("updatefiles"),DID_ACTIVATE_ITEM:f("activatefile"),DID_REORDER_ITEMS:f("reorderfiles")},v=S=>{let L={pond:F,...S};delete L.type,d.element.dispatchEvent(new CustomEvent(`FilePond:${S.type}`,{detail:L,bubbles:!0,cancelable:!0,composed:!0}));let D=[];S.hasOwnProperty("error")&&D.push(S.error),S.hasOwnProperty("file")&&D.push(S.file);let O=["type","error","file"];Object.keys(S).filter(C=>!O.includes(C)).forEach(C=>D.push(S[C])),F.fire(S.type,...D);let U=a.query(`GET_ON${S.type.toUpperCase()}`);U&&U(...D)},h=S=>{S.length&&S.filter(L=>b[L.type]).forEach(L=>{let D=b[L.type];(Array.isArray(D)?D:[D]).forEach(O=>{L.type==="DID_INIT_ITEM"?v(O(L.data)):setTimeout(()=>{v(O(L.data))},0)})})},E=S=>a.dispatch("SET_OPTIONS",{options:S}),I=S=>a.query("GET_ACTIVE_ITEM",S),y=S=>new Promise((L,D)=>{a.dispatch("REQUEST_ITEM_PREPARE",{query:S,success:O=>{L(O)},failure:O=>{D(O)}})}),T=(S,L={})=>new Promise((D,O)=>{R([{source:S,options:L}],{index:L.index}).then(U=>D(U&&U[0])).catch(O)}),_=S=>S.file&&S.id,x=(S,L)=>(typeof S=="object"&&!_(S)&&!L&&(L=S,S=void 0),a.dispatch("REMOVE_ITEM",{...L,query:S}),a.query("GET_ACTIVE_ITEM",S)===null),R=(...S)=>new Promise((L,D)=>{let O=[],U={};if(ci(S[0]))O.push.apply(O,S[0]),Object.assign(U,S[1]||{});else{let C=S[S.length-1];typeof C=="object"&&!(C instanceof Blob)&&Object.assign(U,S.pop()),O.push(...S)}a.dispatch("ADD_ITEMS",{items:O,index:U.index,interactionMethod:Re.API,success:L,failure:D})}),z=()=>a.query("GET_ACTIVE_ITEMS"),P=S=>new Promise((L,D)=>{a.dispatch("REQUEST_ITEM_PROCESSING",{query:S,success:O=>{L(O)},failure:O=>{D(O)}})}),A=(...S)=>{let L=Array.isArray(S[0])?S[0]:S,D=L.length?L:z();return Promise.all(D.map(y))},B=(...S)=>{let L=Array.isArray(S[0])?S[0]:S;if(!L.length){let D=z().filter(O=>!(O.status===H.IDLE&&O.origin===re.LOCAL)&&O.status!==H.PROCESSING&&O.status!==H.PROCESSING_COMPLETE&&O.status!==H.PROCESSING_REVERT_ERROR);return Promise.all(D.map(P))}return Promise.all(L.map(P))},w=(...S)=>{let L=Array.isArray(S[0])?S[0]:S,D;typeof L[L.length-1]=="object"?D=L.pop():Array.isArray(S[0])&&(D=S[1]);let O=z();return L.length?L.map(C=>Xe(C)?O[C]?O[C].id:null:C).filter(C=>C).map(C=>x(C,D)):Promise.all(O.map(C=>x(C,D)))},F={...mi(),...g,...ps(a,i),setOptions:E,addFile:T,addFiles:R,getFile:I,processFile:P,prepareFile:y,removeFile:x,moveFile:(S,L)=>a.dispatch("MOVE_ITEM",{query:S,index:L}),getFiles:z,processFiles:B,removeFiles:w,prepareFiles:A,sort:S=>a.dispatch("SORT",{compare:S}),browse:()=>{var S=d.element.querySelector("input[type=file]");S&&S.click()},destroy:()=>{F.fire("destroy",d.element),a.dispatch("ABORT_ALL"),d._destroy(),window.removeEventListener("resize",c),document.removeEventListener("visibilitychange",n),a.dispatch("DID_DESTROY")},insertBefore:S=>Ca(d.element,S),insertAfter:S=>Ba(d.element,S),appendTo:S=>S.appendChild(d.element),replaceElement:S=>{Ca(d.element,S),S.parentNode.removeChild(S),t=S},restoreElement:()=>{t&&(Ba(t,d.element),d.element.parentNode.removeChild(d.element),t=null)},isAttachedTo:S=>d.element===S||t===S,element:{get:()=>d.element},status:{get:()=>a.query("GET_STATUS")}};return a.dispatch("DID_INIT"),He(F)},tl=(e={})=>{let t={};return te(oi(),(a,n)=>{t[a]=n[0]}),sp({...t,...e})},cp=e=>e.charAt(0).toLowerCase()+e.slice(1),dp=e=>Jn(e.replace(/^data-/,"")),il=(e,t)=>{te(t,(i,a)=>{te(e,(n,l)=>{let o=new RegExp(i);if(!o.test(n)||(delete e[n],a===!1))return;if(ge(a)){e[a]=l;return}let s=a.group;de(a)&&!e[s]&&(e[s]={}),e[s][cp(n.replace(o,""))]=l}),a.mapping&&il(e[a.group],a.mapping)})},pp=(e,t={})=>{let i=[];te(e.attributes,n=>{i.push(e.attributes[n])});let a=i.filter(n=>n.name).reduce((n,l)=>{let o=se(e,l.name);return n[dp(l.name)]=o===l.name?!0:o,n},{});return il(a,t),a},mp=(e,t={})=>{let i={"^class$":"className","^multiple$":"allowMultiple","^capture$":"captureMethod","^webkitdirectory$":"allowDirectoriesOnly","^server":{group:"server",mapping:{"^process":{group:"process"},"^revert":{group:"revert"},"^fetch":{group:"fetch"},"^restore":{group:"restore"},"^load":{group:"load"}}},"^type$":!1,"^files$":!1};it("SET_ATTRIBUTE_TO_OPTION_MAP",i);let a={...t},n=pp(e.nodeName==="FIELDSET"?e.querySelector("input[type=file]"):e,i);Object.keys(n).forEach(o=>{de(n[o])?(de(a[o])||(a[o]={}),Object.assign(a[o],n[o])):a[o]=n[o]}),a.files=(t.files||[]).concat(Array.from(e.querySelectorAll("input:not([type=file])")).map(o=>({source:o.value,options:{type:o.dataset.type}})));let l=tl(a);return e.files&&Array.from(e.files).forEach(o=>{l.addFile(o)}),l.replaceElement(e),l},up=(...e)=>Rr(e[0])?mp(...e):tl(...e),gp=["fire","_read","_write"],fn=e=>{let t={};return yn(e,t,gp),t},fp=(e,t)=>e.replace(/(?:{([a-zA-Z]+)})/g,(i,a)=>t[a]),hp=e=>{let t=new Blob(["(",e.toString(),")()"],{type:"application/javascript"}),i=URL.createObjectURL(t),a=new Worker(i);return{transfer:(n,l)=>{},post:(n,l,o)=>{let r=Yi();a.onmessage=s=>{s.data.id===r&&l(s.data.message)},a.postMessage({id:r,message:n},o)},terminate:()=>{a.terminate(),URL.revokeObjectURL(i)}}},bp=e=>new Promise((t,i)=>{let a=new Image;a.onload=()=>{t(a)},a.onerror=n=>{i(n)},a.src=e}),al=(e,t)=>{let i=e.slice(0,e.size,e.type);return i.lastModifiedDate=e.lastModifiedDate,i.name=t,i},Ep=e=>al(e,e.name),hn=[],Tp=e=>{if(hn.includes(e))return;hn.push(e);let t=e({addFilter:Es,utils:{Type:M,forin:te,isString:ge,isFile:et,toNaturalFileSize:Cn,replaceInString:fp,getExtensionFromFilename:ui,getFilenameWithoutExtension:Fn,guesstimateMimeType:qn,getFileFromBlob:bt,getFilenameFromURL:Ct,createRoute:fe,createWorker:hp,createView:le,createItemAPI:he,loadImage:bp,copyFile:Ep,renameFile:al,createBlob:An,applyFilterChain:Ae,text:ne,getNumericAspectRatioFromString:_n},views:{fileActionButton:Dn}});Ts(t.options)},vp=()=>Object.prototype.toString.call(window.operamini)==="[object OperaMini]",Ip=()=>"Promise"in window,xp=()=>"slice"in Blob.prototype,yp=()=>"URL"in window&&"createObjectURL"in window.URL,Rp=()=>"visibilityState"in document,Sp=()=>"performance"in window,_p=()=>"supports"in(window.CSS||{}),wp=()=>/MSIE|Trident/.test(window.navigator.userAgent),Vi=(()=>{let e=bn()&&!vp()&&Rp()&&Ip()&&xp()&&yp()&&Sp()&&(_p()||wp());return()=>e})(),Ue={apps:[]},Lp="filepond",at=()=>{},nl={},Tt={},Bt={},Gi={},ft=at,ht=at,Ui=at,Hi=at,Ie=at,Wi=at,Dt=at;if(Vi()){Kr(()=>{Ue.apps.forEach(i=>i._read())},i=>{Ue.apps.forEach(a=>a._write(i))});let e=()=>{document.dispatchEvent(new CustomEvent("FilePond:loaded",{detail:{supported:Vi,create:ft,destroy:ht,parse:Ui,find:Hi,registerPlugin:Ie,setOptions:Dt}})),document.removeEventListener("DOMContentLoaded",e)};document.readyState!=="loading"?setTimeout(()=>e(),0):document.addEventListener("DOMContentLoaded",e);let t=()=>te(oi(),(i,a)=>{Gi[i]=a[1]});nl={...wn},Bt={...re},Tt={...H},Gi={},t(),ft=(...i)=>{let a=up(...i);return a.on("destroy",ht),Ue.apps.push(a),fn(a)},ht=i=>{let a=Ue.apps.findIndex(n=>n.isAttachedTo(i));return a>=0?(Ue.apps.splice(a,1)[0].restoreElement(),!0):!1},Ui=i=>Array.from(i.querySelectorAll(`.${Lp}`)).filter(l=>!Ue.apps.find(o=>o.isAttachedTo(l))).map(l=>ft(l)),Hi=i=>{let a=Ue.apps.find(n=>n.isAttachedTo(i));return a?fn(a):null},Ie=(...i)=>{i.forEach(Tp),t()},Wi=()=>{let i={};return te(oi(),(a,n)=>{i[a]=n[0]}),i},Dt=i=>(de(i)&&(Ue.apps.forEach(a=>{a.setOptions(i)}),vs(i)),Wi())}function ll(e,t){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter(function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable})),i.push.apply(i,a)}return i}function Il(e){for(var t=1;te.length)&&(t=e.length);for(var i=0,a=new Array(t);i
',Yp=Number.isNaN||De.isNaN;function Y(e){return typeof e=="number"&&!Yp(e)}var El=function(t){return t>0&&t<1/0};function la(e){return typeof e>"u"}function ot(e){return ra(e)==="object"&&e!==null}var qp=Object.prototype.hasOwnProperty;function It(e){if(!ot(e))return!1;try{var t=e.constructor,i=t.prototype;return t&&i&&qp.call(i,"isPrototypeOf")}catch{return!1}}function be(e){return typeof e=="function"}var $p=Array.prototype.slice;function Pl(e){return Array.from?Array.from(e):$p.call(e)}function oe(e,t){return e&&be(t)&&(Array.isArray(e)||Y(e.length)?Pl(e).forEach(function(i,a){t.call(e,i,a,e)}):ot(e)&&Object.keys(e).forEach(function(i){t.call(e,e[i],i,e)})),e}var J=Object.assign||function(t){for(var i=arguments.length,a=new Array(i>1?i-1:0),n=1;n0&&a.forEach(function(l){ot(l)&&Object.keys(l).forEach(function(o){t[o]=l[o]})}),t},Xp=/\.\d*(?:0|9){12}\d*$/;function yt(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1e11;return Xp.test(e)?Math.round(e*t)/t:e}var Kp=/^width|height|left|top|marginLeft|marginTop$/;function je(e,t){var i=e.style;oe(t,function(a,n){Kp.test(n)&&Y(a)&&(a="".concat(a,"px")),i[n]=a})}function Zp(e,t){return e.classList?e.classList.contains(t):e.className.indexOf(t)>-1}function pe(e,t){if(t){if(Y(e.length)){oe(e,function(a){pe(a,t)});return}if(e.classList){e.classList.add(t);return}var i=e.className.trim();i?i.indexOf(t)<0&&(e.className="".concat(i," ").concat(t)):e.className=t}}function Oe(e,t){if(t){if(Y(e.length)){oe(e,function(i){Oe(i,t)});return}if(e.classList){e.classList.remove(t);return}e.className.indexOf(t)>=0&&(e.className=e.className.replace(t,""))}}function xt(e,t,i){if(t){if(Y(e.length)){oe(e,function(a){xt(a,t,i)});return}i?pe(e,t):Oe(e,t)}}var Qp=/([a-z\d])([A-Z])/g;function Ia(e){return e.replace(Qp,"$1-$2").toLowerCase()}function ha(e,t){return ot(e[t])?e[t]:e.dataset?e.dataset[t]:e.getAttribute("data-".concat(Ia(t)))}function Wt(e,t,i){ot(i)?e[t]=i:e.dataset?e.dataset[t]=i:e.setAttribute("data-".concat(Ia(t)),i)}function Jp(e,t){if(ot(e[t]))try{delete e[t]}catch{e[t]=void 0}else if(e.dataset)try{delete e.dataset[t]}catch{e.dataset[t]=void 0}else e.removeAttribute("data-".concat(Ia(t)))}var zl=/\s\s*/,Fl=(function(){var e=!1;if(Ti){var t=!1,i=function(){},a=Object.defineProperty({},"once",{get:function(){return e=!0,t},set:function(l){t=l}});De.addEventListener("test",i,a),De.removeEventListener("test",i,a)}return e})();function Fe(e,t,i){var a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},n=i;t.trim().split(zl).forEach(function(l){if(!Fl){var o=e.listeners;o&&o[l]&&o[l][i]&&(n=o[l][i],delete o[l][i],Object.keys(o[l]).length===0&&delete o[l],Object.keys(o).length===0&&delete e.listeners)}e.removeEventListener(l,n,a)})}function Se(e,t,i){var a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},n=i;t.trim().split(zl).forEach(function(l){if(a.once&&!Fl){var o=e.listeners,r=o===void 0?{}:o;n=function(){delete r[l][i],e.removeEventListener(l,n,a);for(var p=arguments.length,c=new Array(p),d=0;dMath.abs(i)&&(i=m)})}),i}function bi(e,t){var i=e.pageX,a=e.pageY,n={endX:i,endY:a};return t?n:Il({startX:i,startY:a},n)}function im(e){var t=0,i=0,a=0;return oe(e,function(n){var l=n.startX,o=n.startY;t+=l,i+=o,a+=1}),t/=a,i/=a,{pageX:t,pageY:i}}function Ye(e){var t=e.aspectRatio,i=e.height,a=e.width,n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"contain",l=El(a),o=El(i);if(l&&o){var r=i*t;n==="contain"&&r>a||n==="cover"&&r90?{width:s,height:r}:{width:r,height:s}}function nm(e,t,i,a){var n=t.aspectRatio,l=t.naturalWidth,o=t.naturalHeight,r=t.rotate,s=r===void 0?0:r,p=t.scaleX,c=p===void 0?1:p,d=t.scaleY,m=d===void 0?1:d,u=i.aspectRatio,g=i.naturalWidth,f=i.naturalHeight,b=a.fillColor,v=b===void 0?"transparent":b,h=a.imageSmoothingEnabled,E=h===void 0?!0:h,I=a.imageSmoothingQuality,y=I===void 0?"low":I,T=a.maxWidth,_=T===void 0?1/0:T,x=a.maxHeight,R=x===void 0?1/0:x,z=a.minWidth,P=z===void 0?0:z,A=a.minHeight,B=A===void 0?0:A,w=document.createElement("canvas"),F=w.getContext("2d"),S=Ye({aspectRatio:u,width:_,height:R}),L=Ye({aspectRatio:u,width:P,height:B},"cover"),D=Math.min(S.width,Math.max(L.width,g)),O=Math.min(S.height,Math.max(L.height,f)),U=Ye({aspectRatio:n,width:_,height:R}),C=Ye({aspectRatio:n,width:P,height:B},"cover"),X=Math.min(U.width,Math.max(C.width,l)),K=Math.min(U.height,Math.max(C.height,o)),Z=[-X/2,-K/2,X,K];return w.width=yt(D),w.height=yt(O),F.fillStyle=v,F.fillRect(0,0,D,O),F.save(),F.translate(D/2,O/2),F.rotate(s*Math.PI/180),F.scale(c,m),F.imageSmoothingEnabled=E,F.imageSmoothingQuality=y,F.drawImage.apply(F,[e].concat(yl(Z.map(function(ce){return Math.floor(yt(ce))})))),F.restore(),w}var Dl=String.fromCharCode;function lm(e,t,i){var a="";i+=t;for(var n=t;n0;)i.push(Dl.apply(null,Pl(n.subarray(0,a)))),n=n.subarray(a);return"data:".concat(t,";base64,").concat(btoa(i.join("")))}function cm(e){var t=new DataView(e),i;try{var a,n,l;if(t.getUint8(0)===255&&t.getUint8(1)===216)for(var o=t.byteLength,r=2;r+1=8&&(l=p+d)}}}if(l){var m=t.getUint16(l,a),u,g;for(g=0;g=0?l:Ml),height:Math.max(a.offsetHeight,o>=0?o:Al)};this.containerData=r,je(n,{width:r.width,height:r.height}),pe(t,Ee),Oe(n,Ee)},initCanvas:function(){var t=this.containerData,i=this.imageData,a=this.options.viewMode,n=Math.abs(i.rotate)%180===90,l=n?i.naturalHeight:i.naturalWidth,o=n?i.naturalWidth:i.naturalHeight,r=l/o,s=t.width,p=t.height;t.height*r>t.width?a===3?s=t.height*r:p=t.width/r:a===3?p=t.width/r:s=t.height*r;var c={aspectRatio:r,naturalWidth:l,naturalHeight:o,width:s,height:p};this.canvasData=c,this.limited=a===1||a===2,this.limitCanvas(!0,!0),c.width=Math.min(Math.max(c.width,c.minWidth),c.maxWidth),c.height=Math.min(Math.max(c.height,c.minHeight),c.maxHeight),c.left=(t.width-c.width)/2,c.top=(t.height-c.height)/2,c.oldLeft=c.left,c.oldTop=c.top,this.initialCanvasData=J({},c)},limitCanvas:function(t,i){var a=this.options,n=this.containerData,l=this.canvasData,o=this.cropBoxData,r=a.viewMode,s=l.aspectRatio,p=this.cropped&&o;if(t){var c=Number(a.minCanvasWidth)||0,d=Number(a.minCanvasHeight)||0;r>1?(c=Math.max(c,n.width),d=Math.max(d,n.height),r===3&&(d*s>c?c=d*s:d=c/s)):r>0&&(c?c=Math.max(c,p?o.width:0):d?d=Math.max(d,p?o.height:0):p&&(c=o.width,d=o.height,d*s>c?c=d*s:d=c/s));var m=Ye({aspectRatio:s,width:c,height:d});c=m.width,d=m.height,l.minWidth=c,l.minHeight=d,l.maxWidth=1/0,l.maxHeight=1/0}if(i)if(r>(p?0:1)){var u=n.width-l.width,g=n.height-l.height;l.minLeft=Math.min(0,u),l.minTop=Math.min(0,g),l.maxLeft=Math.max(0,u),l.maxTop=Math.max(0,g),p&&this.limited&&(l.minLeft=Math.min(o.left,o.left+(o.width-l.width)),l.minTop=Math.min(o.top,o.top+(o.height-l.height)),l.maxLeft=o.left,l.maxTop=o.top,r===2&&(l.width>=n.width&&(l.minLeft=Math.min(0,u),l.maxLeft=Math.max(0,u)),l.height>=n.height&&(l.minTop=Math.min(0,g),l.maxTop=Math.max(0,g))))}else l.minLeft=-l.width,l.minTop=-l.height,l.maxLeft=n.width,l.maxTop=n.height},renderCanvas:function(t,i){var a=this.canvasData,n=this.imageData;if(i){var l=am({width:n.naturalWidth*Math.abs(n.scaleX||1),height:n.naturalHeight*Math.abs(n.scaleY||1),degree:n.rotate||0}),o=l.width,r=l.height,s=a.width*(o/a.naturalWidth),p=a.height*(r/a.naturalHeight);a.left-=(s-a.width)/2,a.top-=(p-a.height)/2,a.width=s,a.height=p,a.aspectRatio=o/r,a.naturalWidth=o,a.naturalHeight=r,this.limitCanvas(!0,!1)}(a.width>a.maxWidth||a.widtha.maxHeight||a.heighti.width?l.height=l.width/a:l.width=l.height*a),this.cropBoxData=l,this.limitCropBox(!0,!0),l.width=Math.min(Math.max(l.width,l.minWidth),l.maxWidth),l.height=Math.min(Math.max(l.height,l.minHeight),l.maxHeight),l.width=Math.max(l.minWidth,l.width*n),l.height=Math.max(l.minHeight,l.height*n),l.left=i.left+(i.width-l.width)/2,l.top=i.top+(i.height-l.height)/2,l.oldLeft=l.left,l.oldTop=l.top,this.initialCropBoxData=J({},l)},limitCropBox:function(t,i){var a=this.options,n=this.containerData,l=this.canvasData,o=this.cropBoxData,r=this.limited,s=a.aspectRatio;if(t){var p=Number(a.minCropBoxWidth)||0,c=Number(a.minCropBoxHeight)||0,d=r?Math.min(n.width,l.width,l.width+l.left,n.width-l.left):n.width,m=r?Math.min(n.height,l.height,l.height+l.top,n.height-l.top):n.height;p=Math.min(p,n.width),c=Math.min(c,n.height),s&&(p&&c?c*s>p?c=p/s:p=c*s:p?c=p/s:c&&(p=c*s),m*s>d?m=d/s:d=m*s),o.minWidth=Math.min(p,d),o.minHeight=Math.min(c,m),o.maxWidth=d,o.maxHeight=m}i&&(r?(o.minLeft=Math.max(0,l.left),o.minTop=Math.max(0,l.top),o.maxLeft=Math.min(n.width,l.left+l.width)-o.width,o.maxTop=Math.min(n.height,l.top+l.height)-o.height):(o.minLeft=0,o.minTop=0,o.maxLeft=n.width-o.width,o.maxTop=n.height-o.height))},renderCropBox:function(){var t=this.options,i=this.containerData,a=this.cropBoxData;(a.width>a.maxWidth||a.widtha.maxHeight||a.height=i.width&&a.height>=i.height?Sl:Ta),je(this.cropBox,J({width:a.width,height:a.height},Ut({translateX:a.left,translateY:a.top}))),this.cropped&&this.limited&&this.limitCanvas(!0,!0),this.disabled||this.output()},output:function(){this.preview(),Rt(this.element,pa,this.getData())}},mm={initPreview:function(){var t=this.element,i=this.crossOrigin,a=this.options.preview,n=i?this.crossOriginUrl:this.url,l=t.alt||"The image to preview",o=document.createElement("img");if(i&&(o.crossOrigin=i),o.src=n,o.alt=l,this.viewBox.appendChild(o),this.viewBoxImage=o,!!a){var r=a;typeof a=="string"?r=t.ownerDocument.querySelectorAll(a):a.querySelector&&(r=[a]),this.previews=r,oe(r,function(s){var p=document.createElement("img");Wt(s,hi,{width:s.offsetWidth,height:s.offsetHeight,html:s.innerHTML}),i&&(p.crossOrigin=i),p.src=n,p.alt=l,p.style.cssText='display:block;width:100%;height:auto;min-width:0!important;min-height:0!important;max-width:none!important;max-height:none!important;image-orientation:0deg!important;"',s.innerHTML="",s.appendChild(p)})}},resetPreview:function(){oe(this.previews,function(t){var i=ha(t,hi);je(t,{width:i.width,height:i.height}),t.innerHTML=i.html,Jp(t,hi)})},preview:function(){var t=this.imageData,i=this.canvasData,a=this.cropBoxData,n=a.width,l=a.height,o=t.width,r=t.height,s=a.left-i.left-t.left,p=a.top-i.top-t.top;!this.cropped||this.disabled||(je(this.viewBoxImage,J({width:o,height:r},Ut(J({translateX:-s,translateY:-p},t)))),oe(this.previews,function(c){var d=ha(c,hi),m=d.width,u=d.height,g=m,f=u,b=1;n&&(b=m/n,f=l*b),l&&f>u&&(b=u/l,g=n*b,f=u),je(c,{width:g,height:f}),je(c.getElementsByTagName("img")[0],J({width:o*b,height:r*b},Ut(J({translateX:-s*b,translateY:-p*b},t))))}))}},um={bind:function(){var t=this.element,i=this.options,a=this.cropper;be(i.cropstart)&&Se(t,ga,i.cropstart),be(i.cropmove)&&Se(t,ua,i.cropmove),be(i.cropend)&&Se(t,ma,i.cropend),be(i.crop)&&Se(t,pa,i.crop),be(i.zoom)&&Se(t,fa,i.zoom),Se(a,dl,this.onCropStart=this.cropStart.bind(this)),i.zoomable&&i.zoomOnWheel&&Se(a,fl,this.onWheel=this.wheel.bind(this),{passive:!1,capture:!0}),i.toggleDragModeOnDblclick&&Se(a,cl,this.onDblclick=this.dblclick.bind(this)),Se(t.ownerDocument,pl,this.onCropMove=this.cropMove.bind(this)),Se(t.ownerDocument,ml,this.onCropEnd=this.cropEnd.bind(this)),i.responsive&&Se(window,gl,this.onResize=this.resize.bind(this))},unbind:function(){var t=this.element,i=this.options,a=this.cropper;be(i.cropstart)&&Fe(t,ga,i.cropstart),be(i.cropmove)&&Fe(t,ua,i.cropmove),be(i.cropend)&&Fe(t,ma,i.cropend),be(i.crop)&&Fe(t,pa,i.crop),be(i.zoom)&&Fe(t,fa,i.zoom),Fe(a,dl,this.onCropStart),i.zoomable&&i.zoomOnWheel&&Fe(a,fl,this.onWheel,{passive:!1,capture:!0}),i.toggleDragModeOnDblclick&&Fe(a,cl,this.onDblclick),Fe(t.ownerDocument,pl,this.onCropMove),Fe(t.ownerDocument,ml,this.onCropEnd),i.responsive&&Fe(window,gl,this.onResize)}},gm={resize:function(){if(!this.disabled){var t=this.options,i=this.container,a=this.containerData,n=i.offsetWidth/a.width,l=i.offsetHeight/a.height,o=Math.abs(n-1)>Math.abs(l-1)?n:l;if(o!==1){var r,s;t.restore&&(r=this.getCanvasData(),s=this.getCropBoxData()),this.render(),t.restore&&(this.setCanvasData(oe(r,function(p,c){r[c]=p*o})),this.setCropBoxData(oe(s,function(p,c){s[c]=p*o})))}}},dblclick:function(){this.disabled||this.options.dragMode===Ll||this.setDragMode(Zp(this.dragBox,ca)?wl:va)},wheel:function(t){var i=this,a=Number(this.options.wheelZoomRatio)||.1,n=1;this.disabled||(t.preventDefault(),!this.wheeling&&(this.wheeling=!0,setTimeout(function(){i.wheeling=!1},50),t.deltaY?n=t.deltaY>0?1:-1:t.wheelDelta?n=-t.wheelDelta/120:t.detail&&(n=t.detail>0?1:-1),this.zoom(-n*a,t)))},cropStart:function(t){var i=t.buttons,a=t.button;if(!(this.disabled||(t.type==="mousedown"||t.type==="pointerdown"&&t.pointerType==="mouse")&&(Y(i)&&i!==1||Y(a)&&a!==0||t.ctrlKey))){var n=this.options,l=this.pointers,o;t.changedTouches?oe(t.changedTouches,function(r){l[r.identifier]=bi(r)}):l[t.pointerId||0]=bi(t),Object.keys(l).length>1&&n.zoomable&&n.zoomOnTouch?o=_l:o=ha(t.target,Ht),Gp.test(o)&&Rt(this.element,ga,{originalEvent:t,action:o})!==!1&&(t.preventDefault(),this.action=o,this.cropping=!1,o===Rl&&(this.cropping=!0,pe(this.dragBox,Ei)))}},cropMove:function(t){var i=this.action;if(!(this.disabled||!i)){var a=this.pointers;t.preventDefault(),Rt(this.element,ua,{originalEvent:t,action:i})!==!1&&(t.changedTouches?oe(t.changedTouches,function(n){J(a[n.identifier]||{},bi(n,!0))}):J(a[t.pointerId||0]||{},bi(t,!0)),this.change(t))}},cropEnd:function(t){if(!this.disabled){var i=this.action,a=this.pointers;t.changedTouches?oe(t.changedTouches,function(n){delete a[n.identifier]}):delete a[t.pointerId||0],i&&(t.preventDefault(),Object.keys(a).length||(this.action=""),this.cropping&&(this.cropping=!1,xt(this.dragBox,Ei,this.cropped&&this.options.modal)),Rt(this.element,ma,{originalEvent:t,action:i}))}}},fm={change:function(t){var i=this.options,a=this.canvasData,n=this.containerData,l=this.cropBoxData,o=this.pointers,r=this.action,s=i.aspectRatio,p=l.left,c=l.top,d=l.width,m=l.height,u=p+d,g=c+m,f=0,b=0,v=n.width,h=n.height,E=!0,I;!s&&t.shiftKey&&(s=d&&m?d/m:1),this.limited&&(f=l.minLeft,b=l.minTop,v=f+Math.min(n.width,a.width,a.left+a.width),h=b+Math.min(n.height,a.height,a.top+a.height));var y=o[Object.keys(o)[0]],T={x:y.endX-y.startX,y:y.endY-y.startY},_=function(R){switch(R){case nt:u+T.x>v&&(T.x=v-u);break;case lt:p+T.xh&&(T.y=h-g);break}};switch(r){case Ta:p+=T.x,c+=T.y;break;case nt:if(T.x>=0&&(u>=v||s&&(c<=b||g>=h))){E=!1;break}_(nt),d+=T.x,d<0&&(r=lt,d=-d,p-=d),s&&(m=d/s,c+=(l.height-m)/2);break;case We:if(T.y<=0&&(c<=b||s&&(p<=f||u>=v))){E=!1;break}_(We),m-=T.y,c+=T.y,m<0&&(r=vt,m=-m,c-=m),s&&(d=m*s,p+=(l.width-d)/2);break;case lt:if(T.x<=0&&(p<=f||s&&(c<=b||g>=h))){E=!1;break}_(lt),d-=T.x,p+=T.x,d<0&&(r=nt,d=-d,p-=d),s&&(m=d/s,c+=(l.height-m)/2);break;case vt:if(T.y>=0&&(g>=h||s&&(p<=f||u>=v))){E=!1;break}_(vt),m+=T.y,m<0&&(r=We,m=-m,c-=m),s&&(d=m*s,p+=(l.width-d)/2);break;case kt:if(s){if(T.y<=0&&(c<=b||u>=v)){E=!1;break}_(We),m-=T.y,c+=T.y,d=m*s}else _(We),_(nt),T.x>=0?ub&&(m-=T.y,c+=T.y):(m-=T.y,c+=T.y);d<0&&m<0?(r=Gt,m=-m,d=-d,c-=m,p-=d):d<0?(r=Nt,d=-d,p-=d):m<0&&(r=Vt,m=-m,c-=m);break;case Nt:if(s){if(T.y<=0&&(c<=b||p<=f)){E=!1;break}_(We),m-=T.y,c+=T.y,d=m*s,p+=l.width-d}else _(We),_(lt),T.x<=0?p>f?(d-=T.x,p+=T.x):T.y<=0&&c<=b&&(E=!1):(d-=T.x,p+=T.x),T.y<=0?c>b&&(m-=T.y,c+=T.y):(m-=T.y,c+=T.y);d<0&&m<0?(r=Vt,m=-m,d=-d,c-=m,p-=d):d<0?(r=kt,d=-d,p-=d):m<0&&(r=Gt,m=-m,c-=m);break;case Gt:if(s){if(T.x<=0&&(p<=f||g>=h)){E=!1;break}_(lt),d-=T.x,p+=T.x,m=d/s}else _(vt),_(lt),T.x<=0?p>f?(d-=T.x,p+=T.x):T.y>=0&&g>=h&&(E=!1):(d-=T.x,p+=T.x),T.y>=0?g=0&&(u>=v||g>=h)){E=!1;break}_(nt),d+=T.x,m=d/s}else _(vt),_(nt),T.x>=0?u=0&&g>=h&&(E=!1):d+=T.x,T.y>=0?g0?r=T.y>0?Vt:kt:T.x<0&&(p-=d,r=T.y>0?Gt:Nt),T.y<0&&(c-=m),this.cropped||(Oe(this.cropBox,Ee),this.cropped=!0,this.limited&&this.limitCropBox(!0,!0));break}E&&(l.width=d,l.height=m,l.left=p,l.top=c,this.action=r,this.renderCropBox()),oe(o,function(x){x.startX=x.endX,x.startY=x.endY})}},hm={crop:function(){return this.ready&&!this.cropped&&!this.disabled&&(this.cropped=!0,this.limitCropBox(!0,!0),this.options.modal&&pe(this.dragBox,Ei),Oe(this.cropBox,Ee),this.setCropBoxData(this.initialCropBoxData)),this},reset:function(){return this.ready&&!this.disabled&&(this.imageData=J({},this.initialImageData),this.canvasData=J({},this.initialCanvasData),this.cropBoxData=J({},this.initialCropBoxData),this.renderCanvas(),this.cropped&&this.renderCropBox()),this},clear:function(){return this.cropped&&!this.disabled&&(J(this.cropBoxData,{left:0,top:0,width:0,height:0}),this.cropped=!1,this.renderCropBox(),this.limitCanvas(!0,!0),this.renderCanvas(),Oe(this.dragBox,Ei),pe(this.cropBox,Ee)),this},replace:function(t){var i=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;return!this.disabled&&t&&(this.isImg&&(this.element.src=t),i?(this.url=t,this.image.src=t,this.ready&&(this.viewBoxImage.src=t,oe(this.previews,function(a){a.getElementsByTagName("img")[0].src=t}))):(this.isImg&&(this.replaced=!0),this.options.data=null,this.uncreate(),this.load(t))),this},enable:function(){return this.ready&&this.disabled&&(this.disabled=!1,Oe(this.cropper,rl)),this},disable:function(){return this.ready&&!this.disabled&&(this.disabled=!0,pe(this.cropper,rl)),this},destroy:function(){var t=this.element;return t[Q]?(t[Q]=void 0,this.isImg&&this.replaced&&(t.src=this.originalUrl),this.uncreate(),this):this},move:function(t){var i=arguments.length>1&&arguments[1]!==void 0?arguments[1]:t,a=this.canvasData,n=a.left,l=a.top;return this.moveTo(la(t)?t:n+Number(t),la(i)?i:l+Number(i))},moveTo:function(t){var i=arguments.length>1&&arguments[1]!==void 0?arguments[1]:t,a=this.canvasData,n=!1;return t=Number(t),i=Number(i),this.ready&&!this.disabled&&this.options.movable&&(Y(t)&&(a.left=t,n=!0),Y(i)&&(a.top=i,n=!0),n&&this.renderCanvas(!0)),this},zoom:function(t,i){var a=this.canvasData;return t=Number(t),t<0?t=1/(1-t):t=1+t,this.zoomTo(a.width*t/a.naturalWidth,null,i)},zoomTo:function(t,i,a){var n=this.options,l=this.canvasData,o=l.width,r=l.height,s=l.naturalWidth,p=l.naturalHeight;if(t=Number(t),t>=0&&this.ready&&!this.disabled&&n.zoomable){var c=s*t,d=p*t;if(Rt(this.element,fa,{ratio:t,oldRatio:o/s,originalEvent:a})===!1)return this;if(a){var m=this.pointers,u=Ol(this.cropper),g=m&&Object.keys(m).length?im(m):{pageX:a.pageX,pageY:a.pageY};l.left-=(c-o)*((g.pageX-u.left-l.left)/o),l.top-=(d-r)*((g.pageY-u.top-l.top)/r)}else It(i)&&Y(i.x)&&Y(i.y)?(l.left-=(c-o)*((i.x-l.left)/o),l.top-=(d-r)*((i.y-l.top)/r)):(l.left-=(c-o)/2,l.top-=(d-r)/2);l.width=c,l.height=d,this.renderCanvas(!0)}return this},rotate:function(t){return this.rotateTo((this.imageData.rotate||0)+Number(t))},rotateTo:function(t){return t=Number(t),Y(t)&&this.ready&&!this.disabled&&this.options.rotatable&&(this.imageData.rotate=t%360,this.renderCanvas(!0,!0)),this},scaleX:function(t){var i=this.imageData.scaleY;return this.scale(t,Y(i)?i:1)},scaleY:function(t){var i=this.imageData.scaleX;return this.scale(Y(i)?i:1,t)},scale:function(t){var i=arguments.length>1&&arguments[1]!==void 0?arguments[1]:t,a=this.imageData,n=!1;return t=Number(t),i=Number(i),this.ready&&!this.disabled&&this.options.scalable&&(Y(t)&&(a.scaleX=t,n=!0),Y(i)&&(a.scaleY=i,n=!0),n&&this.renderCanvas(!0,!0)),this},getData:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1,i=this.options,a=this.imageData,n=this.canvasData,l=this.cropBoxData,o;if(this.ready&&this.cropped){o={x:l.left-n.left,y:l.top-n.top,width:l.width,height:l.height};var r=a.width/a.naturalWidth;if(oe(o,function(c,d){o[d]=c/r}),t){var s=Math.round(o.y+o.height),p=Math.round(o.x+o.width);o.x=Math.round(o.x),o.y=Math.round(o.y),o.width=p-o.x,o.height=s-o.y}}else o={x:0,y:0,width:0,height:0};return i.rotatable&&(o.rotate=a.rotate||0),i.scalable&&(o.scaleX=a.scaleX||1,o.scaleY=a.scaleY||1),o},setData:function(t){var i=this.options,a=this.imageData,n=this.canvasData,l={};if(this.ready&&!this.disabled&&It(t)){var o=!1;i.rotatable&&Y(t.rotate)&&t.rotate!==a.rotate&&(a.rotate=t.rotate,o=!0),i.scalable&&(Y(t.scaleX)&&t.scaleX!==a.scaleX&&(a.scaleX=t.scaleX,o=!0),Y(t.scaleY)&&t.scaleY!==a.scaleY&&(a.scaleY=t.scaleY,o=!0)),o&&this.renderCanvas(!0,!0);var r=a.width/a.naturalWidth;Y(t.x)&&(l.left=t.x*r+n.left),Y(t.y)&&(l.top=t.y*r+n.top),Y(t.width)&&(l.width=t.width*r),Y(t.height)&&(l.height=t.height*r),this.setCropBoxData(l)}return this},getContainerData:function(){return this.ready?J({},this.containerData):{}},getImageData:function(){return this.sized?J({},this.imageData):{}},getCanvasData:function(){var t=this.canvasData,i={};return this.ready&&oe(["left","top","width","height","naturalWidth","naturalHeight"],function(a){i[a]=t[a]}),i},setCanvasData:function(t){var i=this.canvasData,a=i.aspectRatio;return this.ready&&!this.disabled&&It(t)&&(Y(t.left)&&(i.left=t.left),Y(t.top)&&(i.top=t.top),Y(t.width)?(i.width=t.width,i.height=t.width/a):Y(t.height)&&(i.height=t.height,i.width=t.height*a),this.renderCanvas(!0)),this},getCropBoxData:function(){var t=this.cropBoxData,i;return this.ready&&this.cropped&&(i={left:t.left,top:t.top,width:t.width,height:t.height}),i||{}},setCropBoxData:function(t){var i=this.cropBoxData,a=this.options.aspectRatio,n,l;return this.ready&&this.cropped&&!this.disabled&&It(t)&&(Y(t.left)&&(i.left=t.left),Y(t.top)&&(i.top=t.top),Y(t.width)&&t.width!==i.width&&(n=!0,i.width=t.width),Y(t.height)&&t.height!==i.height&&(l=!0,i.height=t.height),a&&(n?i.height=i.width/a:l&&(i.width=i.height*a)),this.renderCropBox()),this},getCroppedCanvas:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(!this.ready||!window.HTMLCanvasElement)return null;var i=this.canvasData,a=nm(this.image,this.imageData,i,t);if(!this.cropped)return a;var n=this.getData(t.rounded),l=n.x,o=n.y,r=n.width,s=n.height,p=a.width/Math.floor(i.naturalWidth);p!==1&&(l*=p,o*=p,r*=p,s*=p);var c=r/s,d=Ye({aspectRatio:c,width:t.maxWidth||1/0,height:t.maxHeight||1/0}),m=Ye({aspectRatio:c,width:t.minWidth||0,height:t.minHeight||0},"cover"),u=Ye({aspectRatio:c,width:t.width||(p!==1?a.width:r),height:t.height||(p!==1?a.height:s)}),g=u.width,f=u.height;g=Math.min(d.width,Math.max(m.width,g)),f=Math.min(d.height,Math.max(m.height,f));var b=document.createElement("canvas"),v=b.getContext("2d");b.width=yt(g),b.height=yt(f),v.fillStyle=t.fillColor||"transparent",v.fillRect(0,0,g,f);var h=t.imageSmoothingEnabled,E=h===void 0?!0:h,I=t.imageSmoothingQuality;v.imageSmoothingEnabled=E,I&&(v.imageSmoothingQuality=I);var y=a.width,T=a.height,_=l,x=o,R,z,P,A,B,w;_<=-r||_>y?(_=0,R=0,P=0,B=0):_<=0?(P=-_,_=0,R=Math.min(y,r+_),B=R):_<=y&&(P=0,R=Math.min(r,y-_),B=R),R<=0||x<=-s||x>T?(x=0,z=0,A=0,w=0):x<=0?(A=-x,x=0,z=Math.min(T,s+x),w=z):x<=T&&(A=0,z=Math.min(s,T-x),w=z);var F=[_,x,R,z];if(B>0&&w>0){var S=g/r;F.push(P*S,A*S,B*S,w*S)}return v.drawImage.apply(v,[a].concat(yl(F.map(function(L){return Math.floor(yt(L))})))),b},setAspectRatio:function(t){var i=this.options;return!this.disabled&&!la(t)&&(i.aspectRatio=Math.max(0,t)||NaN,this.ready&&(this.initCropBox(),this.cropped&&this.renderCropBox())),this},setDragMode:function(t){var i=this.options,a=this.dragBox,n=this.face;if(this.ready&&!this.disabled){var l=t===va,o=i.movable&&t===wl;t=l||o?t:Ll,i.dragMode=t,Wt(a,Ht,t),xt(a,ca,l),xt(a,da,o),i.cropBoxMovable||(Wt(n,Ht,t),xt(n,ca,l),xt(n,da,o))}return this}},bm=De.Cropper,xa=(function(){function e(t){var i=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(Ap(this,e),!t||!Wp.test(t.tagName))throw new Error("The first argument is required and must be an or element.");this.element=t,this.options=J({},bl,It(i)&&i),this.cropped=!1,this.disabled=!1,this.pointers={},this.ready=!1,this.reloading=!1,this.replaced=!1,this.sized=!1,this.sizing=!1,this.init()}return Pp(e,[{key:"init",value:function(){var i=this.element,a=i.tagName.toLowerCase(),n;if(!i[Q]){if(i[Q]=this,a==="img"){if(this.isImg=!0,n=i.getAttribute("src")||"",this.originalUrl=n,!n)return;n=i.src}else a==="canvas"&&window.HTMLCanvasElement&&(n=i.toDataURL());this.load(n)}}},{key:"load",value:function(i){var a=this;if(i){this.url=i,this.imageData={};var n=this.element,l=this.options;if(!l.rotatable&&!l.scalable&&(l.checkOrientation=!1),!l.checkOrientation||!window.ArrayBuffer){this.clone();return}if(Up.test(i)){Hp.test(i)?this.read(rm(i)):this.clone();return}var o=new XMLHttpRequest,r=this.clone.bind(this);this.reloading=!0,this.xhr=o,o.onabort=r,o.onerror=r,o.ontimeout=r,o.onprogress=function(){o.getResponseHeader("content-type")!==hl&&o.abort()},o.onload=function(){a.read(o.response)},o.onloadend=function(){a.reloading=!1,a.xhr=null},l.checkCrossOrigin&&Tl(i)&&n.crossOrigin&&(i=vl(i)),o.open("GET",i,!0),o.responseType="arraybuffer",o.withCredentials=n.crossOrigin==="use-credentials",o.send()}}},{key:"read",value:function(i){var a=this.options,n=this.imageData,l=cm(i),o=0,r=1,s=1;if(l>1){this.url=sm(i,hl);var p=dm(l);o=p.rotate,r=p.scaleX,s=p.scaleY}a.rotatable&&(n.rotate=o),a.scalable&&(n.scaleX=r,n.scaleY=s),this.clone()}},{key:"clone",value:function(){var i=this.element,a=this.url,n=i.crossOrigin,l=a;this.options.checkCrossOrigin&&Tl(a)&&(n||(n="anonymous"),l=vl(a)),this.crossOrigin=n,this.crossOriginUrl=l;var o=document.createElement("img");n&&(o.crossOrigin=n),o.src=l||a,o.alt=i.alt||"The image to crop",this.image=o,o.onload=this.start.bind(this),o.onerror=this.stop.bind(this),pe(o,sl),i.parentNode.insertBefore(o,i.nextSibling)}},{key:"start",value:function(){var i=this,a=this.image;a.onload=null,a.onerror=null,this.sizing=!0;var n=De.navigator&&/(?:iPad|iPhone|iPod).*?AppleWebKit/i.test(De.navigator.userAgent),l=function(p,c){J(i.imageData,{naturalWidth:p,naturalHeight:c,aspectRatio:p/c}),i.initialImageData=J({},i.imageData),i.sizing=!1,i.sized=!0,i.build()};if(a.naturalWidth&&!n){l(a.naturalWidth,a.naturalHeight);return}var o=document.createElement("img"),r=document.body||document.documentElement;this.sizingImage=o,o.onload=function(){l(o.width,o.height),n||r.removeChild(o)},o.src=a.src,n||(o.style.cssText="left:0;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;opacity:0;position:absolute;top:0;z-index:-1;",r.appendChild(o))}},{key:"stop",value:function(){var i=this.image;i.onload=null,i.onerror=null,i.parentNode.removeChild(i),this.image=null}},{key:"build",value:function(){if(!(!this.sized||this.ready)){var i=this.element,a=this.options,n=this.image,l=i.parentNode,o=document.createElement("div");o.innerHTML=jp;var r=o.querySelector(".".concat(Q,"-container")),s=r.querySelector(".".concat(Q,"-canvas")),p=r.querySelector(".".concat(Q,"-drag-box")),c=r.querySelector(".".concat(Q,"-crop-box")),d=c.querySelector(".".concat(Q,"-face"));this.container=l,this.cropper=r,this.canvas=s,this.dragBox=p,this.cropBox=c,this.viewBox=r.querySelector(".".concat(Q,"-view-box")),this.face=d,s.appendChild(n),pe(i,Ee),l.insertBefore(r,i.nextSibling),Oe(n,sl),this.initPreview(),this.bind(),a.initialAspectRatio=Math.max(0,a.initialAspectRatio)||NaN,a.aspectRatio=Math.max(0,a.aspectRatio)||NaN,a.viewMode=Math.max(0,Math.min(3,Math.round(a.viewMode)))||0,pe(c,Ee),a.guides||pe(c.getElementsByClassName("".concat(Q,"-dashed")),Ee),a.center||pe(c.getElementsByClassName("".concat(Q,"-center")),Ee),a.background&&pe(r,"".concat(Q,"-bg")),a.highlight||pe(d,Bp),a.cropBoxMovable&&(pe(d,da),Wt(d,Ht,Ta)),a.cropBoxResizable||(pe(c.getElementsByClassName("".concat(Q,"-line")),Ee),pe(c.getElementsByClassName("".concat(Q,"-point")),Ee)),this.render(),this.ready=!0,this.setDragMode(a.dragMode),a.autoCrop&&this.crop(),this.setData(a.data),be(a.ready)&&Se(i,ul,a.ready,{once:!0}),Rt(i,ul)}}},{key:"unbuild",value:function(){if(this.ready){this.ready=!1,this.unbind(),this.resetPreview();var i=this.cropper.parentNode;i&&i.removeChild(this.cropper),Oe(this.element,Ee)}}},{key:"uncreate",value:function(){this.ready?(this.unbuild(),this.ready=!1,this.cropped=!1):this.sizing?(this.sizingImage.onload=null,this.sizing=!1,this.sized=!1):this.reloading?(this.xhr.onabort=null,this.xhr.abort()):this.image&&this.stop()}}],[{key:"noConflict",value:function(){return window.Cropper=bm,e}},{key:"setDefaults",value:function(i){J(bl,It(i)&&i)}}])})();J(xa.prototype,pm,mm,um,gm,fm,hm);var Cl={"application/prs.cww":["cww"],"application/prs.xsf+xml":["xsf"],"application/vnd.1000minds.decision-model+xml":["1km"],"application/vnd.3gpp.pic-bw-large":["plb"],"application/vnd.3gpp.pic-bw-small":["psb"],"application/vnd.3gpp.pic-bw-var":["pvb"],"application/vnd.3gpp2.tcap":["tcap"],"application/vnd.3m.post-it-notes":["pwn"],"application/vnd.accpac.simply.aso":["aso"],"application/vnd.accpac.simply.imp":["imp"],"application/vnd.acucobol":["acu"],"application/vnd.acucorp":["atc","acutc"],"application/vnd.adobe.air-application-installer-package+zip":["air"],"application/vnd.adobe.formscentral.fcdt":["fcdt"],"application/vnd.adobe.fxp":["fxp","fxpl"],"application/vnd.adobe.xdp+xml":["xdp"],"application/vnd.adobe.xfdf":["*xfdf"],"application/vnd.age":["age"],"application/vnd.ahead.space":["ahead"],"application/vnd.airzip.filesecure.azf":["azf"],"application/vnd.airzip.filesecure.azs":["azs"],"application/vnd.amazon.ebook":["azw"],"application/vnd.americandynamics.acc":["acc"],"application/vnd.amiga.ami":["ami"],"application/vnd.android.package-archive":["apk"],"application/vnd.anser-web-certificate-issue-initiation":["cii"],"application/vnd.anser-web-funds-transfer-initiation":["fti"],"application/vnd.antix.game-component":["atx"],"application/vnd.apple.installer+xml":["mpkg"],"application/vnd.apple.keynote":["key"],"application/vnd.apple.mpegurl":["m3u8"],"application/vnd.apple.numbers":["numbers"],"application/vnd.apple.pages":["pages"],"application/vnd.apple.pkpass":["pkpass"],"application/vnd.aristanetworks.swi":["swi"],"application/vnd.astraea-software.iota":["iota"],"application/vnd.audiograph":["aep"],"application/vnd.autodesk.fbx":["fbx"],"application/vnd.balsamiq.bmml+xml":["bmml"],"application/vnd.blueice.multipass":["mpm"],"application/vnd.bmi":["bmi"],"application/vnd.businessobjects":["rep"],"application/vnd.chemdraw+xml":["cdxml"],"application/vnd.chipnuts.karaoke-mmd":["mmd"],"application/vnd.cinderella":["cdy"],"application/vnd.citationstyles.style+xml":["csl"],"application/vnd.claymore":["cla"],"application/vnd.cloanto.rp9":["rp9"],"application/vnd.clonk.c4group":["c4g","c4d","c4f","c4p","c4u"],"application/vnd.cluetrust.cartomobile-config":["c11amc"],"application/vnd.cluetrust.cartomobile-config-pkg":["c11amz"],"application/vnd.commonspace":["csp"],"application/vnd.contact.cmsg":["cdbcmsg"],"application/vnd.cosmocaller":["cmc"],"application/vnd.crick.clicker":["clkx"],"application/vnd.crick.clicker.keyboard":["clkk"],"application/vnd.crick.clicker.palette":["clkp"],"application/vnd.crick.clicker.template":["clkt"],"application/vnd.crick.clicker.wordbank":["clkw"],"application/vnd.criticaltools.wbs+xml":["wbs"],"application/vnd.ctc-posml":["pml"],"application/vnd.cups-ppd":["ppd"],"application/vnd.curl.car":["car"],"application/vnd.curl.pcurl":["pcurl"],"application/vnd.dart":["dart"],"application/vnd.data-vision.rdz":["rdz"],"application/vnd.dbf":["dbf"],"application/vnd.dcmp+xml":["dcmp"],"application/vnd.dece.data":["uvf","uvvf","uvd","uvvd"],"application/vnd.dece.ttml+xml":["uvt","uvvt"],"application/vnd.dece.unspecified":["uvx","uvvx"],"application/vnd.dece.zip":["uvz","uvvz"],"application/vnd.denovo.fcselayout-link":["fe_launch"],"application/vnd.dna":["dna"],"application/vnd.dolby.mlp":["mlp"],"application/vnd.dpgraph":["dpg"],"application/vnd.dreamfactory":["dfac"],"application/vnd.ds-keypoint":["kpxx"],"application/vnd.dvb.ait":["ait"],"application/vnd.dvb.service":["svc"],"application/vnd.dynageo":["geo"],"application/vnd.ecowin.chart":["mag"],"application/vnd.enliven":["nml"],"application/vnd.epson.esf":["esf"],"application/vnd.epson.msf":["msf"],"application/vnd.epson.quickanime":["qam"],"application/vnd.epson.salt":["slt"],"application/vnd.epson.ssf":["ssf"],"application/vnd.eszigno3+xml":["es3","et3"],"application/vnd.ezpix-album":["ez2"],"application/vnd.ezpix-package":["ez3"],"application/vnd.fdf":["*fdf"],"application/vnd.fdsn.mseed":["mseed"],"application/vnd.fdsn.seed":["seed","dataless"],"application/vnd.flographit":["gph"],"application/vnd.fluxtime.clip":["ftc"],"application/vnd.framemaker":["fm","frame","maker","book"],"application/vnd.frogans.fnc":["fnc"],"application/vnd.frogans.ltf":["ltf"],"application/vnd.fsc.weblaunch":["fsc"],"application/vnd.fujitsu.oasys":["oas"],"application/vnd.fujitsu.oasys2":["oa2"],"application/vnd.fujitsu.oasys3":["oa3"],"application/vnd.fujitsu.oasysgp":["fg5"],"application/vnd.fujitsu.oasysprs":["bh2"],"application/vnd.fujixerox.ddd":["ddd"],"application/vnd.fujixerox.docuworks":["xdw"],"application/vnd.fujixerox.docuworks.binder":["xbd"],"application/vnd.fuzzysheet":["fzs"],"application/vnd.genomatix.tuxedo":["txd"],"application/vnd.geogebra.file":["ggb"],"application/vnd.geogebra.slides":["ggs"],"application/vnd.geogebra.tool":["ggt"],"application/vnd.geometry-explorer":["gex","gre"],"application/vnd.geonext":["gxt"],"application/vnd.geoplan":["g2w"],"application/vnd.geospace":["g3w"],"application/vnd.gmx":["gmx"],"application/vnd.google-apps.document":["gdoc"],"application/vnd.google-apps.drawing":["gdraw"],"application/vnd.google-apps.form":["gform"],"application/vnd.google-apps.jam":["gjam"],"application/vnd.google-apps.map":["gmap"],"application/vnd.google-apps.presentation":["gslides"],"application/vnd.google-apps.script":["gscript"],"application/vnd.google-apps.site":["gsite"],"application/vnd.google-apps.spreadsheet":["gsheet"],"application/vnd.google-earth.kml+xml":["kml"],"application/vnd.google-earth.kmz":["kmz"],"application/vnd.gov.sk.xmldatacontainer+xml":["xdcf"],"application/vnd.grafeq":["gqf","gqs"],"application/vnd.groove-account":["gac"],"application/vnd.groove-help":["ghf"],"application/vnd.groove-identity-message":["gim"],"application/vnd.groove-injector":["grv"],"application/vnd.groove-tool-message":["gtm"],"application/vnd.groove-tool-template":["tpl"],"application/vnd.groove-vcard":["vcg"],"application/vnd.hal+xml":["hal"],"application/vnd.handheld-entertainment+xml":["zmm"],"application/vnd.hbci":["hbci"],"application/vnd.hhe.lesson-player":["les"],"application/vnd.hp-hpgl":["hpgl"],"application/vnd.hp-hpid":["hpid"],"application/vnd.hp-hps":["hps"],"application/vnd.hp-jlyt":["jlt"],"application/vnd.hp-pcl":["pcl"],"application/vnd.hp-pclxl":["pclxl"],"application/vnd.hydrostatix.sof-data":["sfd-hdstx"],"application/vnd.ibm.minipay":["mpy"],"application/vnd.ibm.modcap":["afp","listafp","list3820"],"application/vnd.ibm.rights-management":["irm"],"application/vnd.ibm.secure-container":["sc"],"application/vnd.iccprofile":["icc","icm"],"application/vnd.igloader":["igl"],"application/vnd.immervision-ivp":["ivp"],"application/vnd.immervision-ivu":["ivu"],"application/vnd.insors.igm":["igm"],"application/vnd.intercon.formnet":["xpw","xpx"],"application/vnd.intergeo":["i2g"],"application/vnd.intu.qbo":["qbo"],"application/vnd.intu.qfx":["qfx"],"application/vnd.ipunplugged.rcprofile":["rcprofile"],"application/vnd.irepository.package+xml":["irp"],"application/vnd.is-xpr":["xpr"],"application/vnd.isac.fcs":["fcs"],"application/vnd.jam":["jam"],"application/vnd.jcp.javame.midlet-rms":["rms"],"application/vnd.jisp":["jisp"],"application/vnd.joost.joda-archive":["joda"],"application/vnd.kahootz":["ktz","ktr"],"application/vnd.kde.karbon":["karbon"],"application/vnd.kde.kchart":["chrt"],"application/vnd.kde.kformula":["kfo"],"application/vnd.kde.kivio":["flw"],"application/vnd.kde.kontour":["kon"],"application/vnd.kde.kpresenter":["kpr","kpt"],"application/vnd.kde.kspread":["ksp"],"application/vnd.kde.kword":["kwd","kwt"],"application/vnd.kenameaapp":["htke"],"application/vnd.kidspiration":["kia"],"application/vnd.kinar":["kne","knp"],"application/vnd.koan":["skp","skd","skt","skm"],"application/vnd.kodak-descriptor":["sse"],"application/vnd.las.las+xml":["lasxml"],"application/vnd.llamagraphics.life-balance.desktop":["lbd"],"application/vnd.llamagraphics.life-balance.exchange+xml":["lbe"],"application/vnd.lotus-1-2-3":["123"],"application/vnd.lotus-approach":["apr"],"application/vnd.lotus-freelance":["pre"],"application/vnd.lotus-notes":["nsf"],"application/vnd.lotus-organizer":["org"],"application/vnd.lotus-screencam":["scm"],"application/vnd.lotus-wordpro":["lwp"],"application/vnd.macports.portpkg":["portpkg"],"application/vnd.mapbox-vector-tile":["mvt"],"application/vnd.mcd":["mcd"],"application/vnd.medcalcdata":["mc1"],"application/vnd.mediastation.cdkey":["cdkey"],"application/vnd.mfer":["mwf"],"application/vnd.mfmp":["mfm"],"application/vnd.micrografx.flo":["flo"],"application/vnd.micrografx.igx":["igx"],"application/vnd.mif":["mif"],"application/vnd.mobius.daf":["daf"],"application/vnd.mobius.dis":["dis"],"application/vnd.mobius.mbk":["mbk"],"application/vnd.mobius.mqy":["mqy"],"application/vnd.mobius.msl":["msl"],"application/vnd.mobius.plc":["plc"],"application/vnd.mobius.txf":["txf"],"application/vnd.mophun.application":["mpn"],"application/vnd.mophun.certificate":["mpc"],"application/vnd.mozilla.xul+xml":["xul"],"application/vnd.ms-artgalry":["cil"],"application/vnd.ms-cab-compressed":["cab"],"application/vnd.ms-excel":["xls","xlm","xla","xlc","xlt","xlw"],"application/vnd.ms-excel.addin.macroenabled.12":["xlam"],"application/vnd.ms-excel.sheet.binary.macroenabled.12":["xlsb"],"application/vnd.ms-excel.sheet.macroenabled.12":["xlsm"],"application/vnd.ms-excel.template.macroenabled.12":["xltm"],"application/vnd.ms-fontobject":["eot"],"application/vnd.ms-htmlhelp":["chm"],"application/vnd.ms-ims":["ims"],"application/vnd.ms-lrm":["lrm"],"application/vnd.ms-officetheme":["thmx"],"application/vnd.ms-outlook":["msg"],"application/vnd.ms-pki.seccat":["cat"],"application/vnd.ms-pki.stl":["*stl"],"application/vnd.ms-powerpoint":["ppt","pps","pot"],"application/vnd.ms-powerpoint.addin.macroenabled.12":["ppam"],"application/vnd.ms-powerpoint.presentation.macroenabled.12":["pptm"],"application/vnd.ms-powerpoint.slide.macroenabled.12":["sldm"],"application/vnd.ms-powerpoint.slideshow.macroenabled.12":["ppsm"],"application/vnd.ms-powerpoint.template.macroenabled.12":["potm"],"application/vnd.ms-project":["*mpp","mpt"],"application/vnd.ms-visio.viewer":["vdx"],"application/vnd.ms-word.document.macroenabled.12":["docm"],"application/vnd.ms-word.template.macroenabled.12":["dotm"],"application/vnd.ms-works":["wps","wks","wcm","wdb"],"application/vnd.ms-wpl":["wpl"],"application/vnd.ms-xpsdocument":["xps"],"application/vnd.mseq":["mseq"],"application/vnd.musician":["mus"],"application/vnd.muvee.style":["msty"],"application/vnd.mynfc":["taglet"],"application/vnd.nato.bindingdataobject+xml":["bdo"],"application/vnd.neurolanguage.nlu":["nlu"],"application/vnd.nitf":["ntf","nitf"],"application/vnd.noblenet-directory":["nnd"],"application/vnd.noblenet-sealer":["nns"],"application/vnd.noblenet-web":["nnw"],"application/vnd.nokia.n-gage.ac+xml":["*ac"],"application/vnd.nokia.n-gage.data":["ngdat"],"application/vnd.nokia.n-gage.symbian.install":["n-gage"],"application/vnd.nokia.radio-preset":["rpst"],"application/vnd.nokia.radio-presets":["rpss"],"application/vnd.novadigm.edm":["edm"],"application/vnd.novadigm.edx":["edx"],"application/vnd.novadigm.ext":["ext"],"application/vnd.oasis.opendocument.chart":["odc"],"application/vnd.oasis.opendocument.chart-template":["otc"],"application/vnd.oasis.opendocument.database":["odb"],"application/vnd.oasis.opendocument.formula":["odf"],"application/vnd.oasis.opendocument.formula-template":["odft"],"application/vnd.oasis.opendocument.graphics":["odg"],"application/vnd.oasis.opendocument.graphics-template":["otg"],"application/vnd.oasis.opendocument.image":["odi"],"application/vnd.oasis.opendocument.image-template":["oti"],"application/vnd.oasis.opendocument.presentation":["odp"],"application/vnd.oasis.opendocument.presentation-template":["otp"],"application/vnd.oasis.opendocument.spreadsheet":["ods"],"application/vnd.oasis.opendocument.spreadsheet-template":["ots"],"application/vnd.oasis.opendocument.text":["odt"],"application/vnd.oasis.opendocument.text-master":["odm"],"application/vnd.oasis.opendocument.text-template":["ott"],"application/vnd.oasis.opendocument.text-web":["oth"],"application/vnd.olpc-sugar":["xo"],"application/vnd.oma.dd2+xml":["dd2"],"application/vnd.openblox.game+xml":["obgx"],"application/vnd.openofficeorg.extension":["oxt"],"application/vnd.openstreetmap.data+xml":["osm"],"application/vnd.openxmlformats-officedocument.presentationml.presentation":["pptx"],"application/vnd.openxmlformats-officedocument.presentationml.slide":["sldx"],"application/vnd.openxmlformats-officedocument.presentationml.slideshow":["ppsx"],"application/vnd.openxmlformats-officedocument.presentationml.template":["potx"],"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":["xlsx"],"application/vnd.openxmlformats-officedocument.spreadsheetml.template":["xltx"],"application/vnd.openxmlformats-officedocument.wordprocessingml.document":["docx"],"application/vnd.openxmlformats-officedocument.wordprocessingml.template":["dotx"],"application/vnd.osgeo.mapguide.package":["mgp"],"application/vnd.osgi.dp":["dp"],"application/vnd.osgi.subsystem":["esa"],"application/vnd.palm":["pdb","pqa","oprc"],"application/vnd.pawaafile":["paw"],"application/vnd.pg.format":["str"],"application/vnd.pg.osasli":["ei6"],"application/vnd.picsel":["efif"],"application/vnd.pmi.widget":["wg"],"application/vnd.pocketlearn":["plf"],"application/vnd.powerbuilder6":["pbd"],"application/vnd.previewsystems.box":["box"],"application/vnd.procrate.brushset":["brushset"],"application/vnd.procreate.brush":["brush"],"application/vnd.procreate.dream":["drm"],"application/vnd.proteus.magazine":["mgz"],"application/vnd.publishare-delta-tree":["qps"],"application/vnd.pvi.ptid1":["ptid"],"application/vnd.pwg-xhtml-print+xml":["xhtm"],"application/vnd.quark.quarkxpress":["qxd","qxt","qwd","qwt","qxl","qxb"],"application/vnd.rar":["rar"],"application/vnd.realvnc.bed":["bed"],"application/vnd.recordare.musicxml":["mxl"],"application/vnd.recordare.musicxml+xml":["musicxml"],"application/vnd.rig.cryptonote":["cryptonote"],"application/vnd.rim.cod":["cod"],"application/vnd.rn-realmedia":["rm"],"application/vnd.rn-realmedia-vbr":["rmvb"],"application/vnd.route66.link66+xml":["link66"],"application/vnd.sailingtracker.track":["st"],"application/vnd.seemail":["see"],"application/vnd.sema":["sema"],"application/vnd.semd":["semd"],"application/vnd.semf":["semf"],"application/vnd.shana.informed.formdata":["ifm"],"application/vnd.shana.informed.formtemplate":["itp"],"application/vnd.shana.informed.interchange":["iif"],"application/vnd.shana.informed.package":["ipk"],"application/vnd.simtech-mindmapper":["twd","twds"],"application/vnd.smaf":["mmf"],"application/vnd.smart.teacher":["teacher"],"application/vnd.software602.filler.form+xml":["fo"],"application/vnd.solent.sdkm+xml":["sdkm","sdkd"],"application/vnd.spotfire.dxp":["dxp"],"application/vnd.spotfire.sfs":["sfs"],"application/vnd.stardivision.calc":["sdc"],"application/vnd.stardivision.draw":["sda"],"application/vnd.stardivision.impress":["sdd"],"application/vnd.stardivision.math":["smf"],"application/vnd.stardivision.writer":["sdw","vor"],"application/vnd.stardivision.writer-global":["sgl"],"application/vnd.stepmania.package":["smzip"],"application/vnd.stepmania.stepchart":["sm"],"application/vnd.sun.wadl+xml":["wadl"],"application/vnd.sun.xml.calc":["sxc"],"application/vnd.sun.xml.calc.template":["stc"],"application/vnd.sun.xml.draw":["sxd"],"application/vnd.sun.xml.draw.template":["std"],"application/vnd.sun.xml.impress":["sxi"],"application/vnd.sun.xml.impress.template":["sti"],"application/vnd.sun.xml.math":["sxm"],"application/vnd.sun.xml.writer":["sxw"],"application/vnd.sun.xml.writer.global":["sxg"],"application/vnd.sun.xml.writer.template":["stw"],"application/vnd.sus-calendar":["sus","susp"],"application/vnd.svd":["svd"],"application/vnd.symbian.install":["sis","sisx"],"application/vnd.syncml+xml":["xsm"],"application/vnd.syncml.dm+wbxml":["bdm"],"application/vnd.syncml.dm+xml":["xdm"],"application/vnd.syncml.dmddf+xml":["ddf"],"application/vnd.tao.intent-module-archive":["tao"],"application/vnd.tcpdump.pcap":["pcap","cap","dmp"],"application/vnd.tmobile-livetv":["tmo"],"application/vnd.trid.tpt":["tpt"],"application/vnd.triscape.mxs":["mxs"],"application/vnd.trueapp":["tra"],"application/vnd.ufdl":["ufd","ufdl"],"application/vnd.uiq.theme":["utz"],"application/vnd.umajin":["umj"],"application/vnd.unity":["unityweb"],"application/vnd.uoml+xml":["uoml","uo"],"application/vnd.vcx":["vcx"],"application/vnd.visio":["vsd","vst","vss","vsw","vsdx","vtx"],"application/vnd.visionary":["vis"],"application/vnd.vsf":["vsf"],"application/vnd.wap.wbxml":["wbxml"],"application/vnd.wap.wmlc":["wmlc"],"application/vnd.wap.wmlscriptc":["wmlsc"],"application/vnd.webturbo":["wtb"],"application/vnd.wolfram.player":["nbp"],"application/vnd.wordperfect":["wpd"],"application/vnd.wqd":["wqd"],"application/vnd.wt.stf":["stf"],"application/vnd.xara":["xar"],"application/vnd.xfdl":["xfdl"],"application/vnd.yamaha.hv-dic":["hvd"],"application/vnd.yamaha.hv-script":["hvs"],"application/vnd.yamaha.hv-voice":["hvp"],"application/vnd.yamaha.openscoreformat":["osf"],"application/vnd.yamaha.openscoreformat.osfpvg+xml":["osfpvg"],"application/vnd.yamaha.smaf-audio":["saf"],"application/vnd.yamaha.smaf-phrase":["spf"],"application/vnd.yellowriver-custom-menu":["cmp"],"application/vnd.zul":["zir","zirz"],"application/vnd.zzazz.deck+xml":["zaz"],"application/x-7z-compressed":["7z"],"application/x-abiword":["abw"],"application/x-ace-compressed":["ace"],"application/x-apple-diskimage":["*dmg"],"application/x-arj":["arj"],"application/x-authorware-bin":["aab","x32","u32","vox"],"application/x-authorware-map":["aam"],"application/x-authorware-seg":["aas"],"application/x-bcpio":["bcpio"],"application/x-bdoc":["*bdoc"],"application/x-bittorrent":["torrent"],"application/x-blender":["blend"],"application/x-blorb":["blb","blorb"],"application/x-bzip":["bz"],"application/x-bzip2":["bz2","boz"],"application/x-cbr":["cbr","cba","cbt","cbz","cb7"],"application/x-cdlink":["vcd"],"application/x-cfs-compressed":["cfs"],"application/x-chat":["chat"],"application/x-chess-pgn":["pgn"],"application/x-chrome-extension":["crx"],"application/x-cocoa":["cco"],"application/x-compressed":["*rar"],"application/x-conference":["nsc"],"application/x-cpio":["cpio"],"application/x-csh":["csh"],"application/x-debian-package":["*deb","udeb"],"application/x-dgc-compressed":["dgc"],"application/x-director":["dir","dcr","dxr","cst","cct","cxt","w3d","fgd","swa"],"application/x-doom":["wad"],"application/x-dtbncx+xml":["ncx"],"application/x-dtbook+xml":["dtb"],"application/x-dtbresource+xml":["res"],"application/x-dvi":["dvi"],"application/x-envoy":["evy"],"application/x-eva":["eva"],"application/x-font-bdf":["bdf"],"application/x-font-ghostscript":["gsf"],"application/x-font-linux-psf":["psf"],"application/x-font-pcf":["pcf"],"application/x-font-snf":["snf"],"application/x-font-type1":["pfa","pfb","pfm","afm"],"application/x-freearc":["arc"],"application/x-futuresplash":["spl"],"application/x-gca-compressed":["gca"],"application/x-glulx":["ulx"],"application/x-gnumeric":["gnumeric"],"application/x-gramps-xml":["gramps"],"application/x-gtar":["gtar"],"application/x-hdf":["hdf"],"application/x-httpd-php":["php"],"application/x-install-instructions":["install"],"application/x-ipynb+json":["ipynb"],"application/x-iso9660-image":["*iso"],"application/x-iwork-keynote-sffkey":["*key"],"application/x-iwork-numbers-sffnumbers":["*numbers"],"application/x-iwork-pages-sffpages":["*pages"],"application/x-java-archive-diff":["jardiff"],"application/x-java-jnlp-file":["jnlp"],"application/x-keepass2":["kdbx"],"application/x-latex":["latex"],"application/x-lua-bytecode":["luac"],"application/x-lzh-compressed":["lzh","lha"],"application/x-makeself":["run"],"application/x-mie":["mie"],"application/x-mobipocket-ebook":["*prc","mobi"],"application/x-ms-application":["application"],"application/x-ms-shortcut":["lnk"],"application/x-ms-wmd":["wmd"],"application/x-ms-wmz":["wmz"],"application/x-ms-xbap":["xbap"],"application/x-msaccess":["mdb"],"application/x-msbinder":["obd"],"application/x-mscardfile":["crd"],"application/x-msclip":["clp"],"application/x-msdos-program":["*exe"],"application/x-msdownload":["*exe","*dll","com","bat","*msi"],"application/x-msmediaview":["mvb","m13","m14"],"application/x-msmetafile":["*wmf","*wmz","*emf","emz"],"application/x-msmoney":["mny"],"application/x-mspublisher":["pub"],"application/x-msschedule":["scd"],"application/x-msterminal":["trm"],"application/x-mswrite":["wri"],"application/x-netcdf":["nc","cdf"],"application/x-ns-proxy-autoconfig":["pac"],"application/x-nzb":["nzb"],"application/x-perl":["pl","pm"],"application/x-pilot":["*prc","*pdb"],"application/x-pkcs12":["p12","pfx"],"application/x-pkcs7-certificates":["p7b","spc"],"application/x-pkcs7-certreqresp":["p7r"],"application/x-rar-compressed":["*rar"],"application/x-redhat-package-manager":["rpm"],"application/x-research-info-systems":["ris"],"application/x-sea":["sea"],"application/x-sh":["sh"],"application/x-shar":["shar"],"application/x-shockwave-flash":["swf"],"application/x-silverlight-app":["xap"],"application/x-sql":["*sql"],"application/x-stuffit":["sit"],"application/x-stuffitx":["sitx"],"application/x-subrip":["srt"],"application/x-sv4cpio":["sv4cpio"],"application/x-sv4crc":["sv4crc"],"application/x-t3vm-image":["t3"],"application/x-tads":["gam"],"application/x-tar":["tar"],"application/x-tcl":["tcl","tk"],"application/x-tex":["tex"],"application/x-tex-tfm":["tfm"],"application/x-texinfo":["texinfo","texi"],"application/x-tgif":["*obj"],"application/x-ustar":["ustar"],"application/x-virtualbox-hdd":["hdd"],"application/x-virtualbox-ova":["ova"],"application/x-virtualbox-ovf":["ovf"],"application/x-virtualbox-vbox":["vbox"],"application/x-virtualbox-vbox-extpack":["vbox-extpack"],"application/x-virtualbox-vdi":["vdi"],"application/x-virtualbox-vhd":["vhd"],"application/x-virtualbox-vmdk":["vmdk"],"application/x-wais-source":["src"],"application/x-web-app-manifest+json":["webapp"],"application/x-x509-ca-cert":["der","crt","pem"],"application/x-xfig":["fig"],"application/x-xliff+xml":["*xlf"],"application/x-xpinstall":["xpi"],"application/x-xz":["xz"],"application/x-zip-compressed":["*zip"],"application/x-zmachine":["z1","z2","z3","z4","z5","z6","z7","z8"],"audio/vnd.dece.audio":["uva","uvva"],"audio/vnd.digital-winds":["eol"],"audio/vnd.dra":["dra"],"audio/vnd.dts":["dts"],"audio/vnd.dts.hd":["dtshd"],"audio/vnd.lucent.voice":["lvp"],"audio/vnd.ms-playready.media.pya":["pya"],"audio/vnd.nuera.ecelp4800":["ecelp4800"],"audio/vnd.nuera.ecelp7470":["ecelp7470"],"audio/vnd.nuera.ecelp9600":["ecelp9600"],"audio/vnd.rip":["rip"],"audio/x-aac":["*aac"],"audio/x-aiff":["aif","aiff","aifc"],"audio/x-caf":["caf"],"audio/x-flac":["flac"],"audio/x-m4a":["*m4a"],"audio/x-matroska":["mka"],"audio/x-mpegurl":["m3u"],"audio/x-ms-wax":["wax"],"audio/x-ms-wma":["wma"],"audio/x-pn-realaudio":["ram","ra"],"audio/x-pn-realaudio-plugin":["rmp"],"audio/x-realaudio":["*ra"],"audio/x-wav":["*wav"],"chemical/x-cdx":["cdx"],"chemical/x-cif":["cif"],"chemical/x-cmdf":["cmdf"],"chemical/x-cml":["cml"],"chemical/x-csml":["csml"],"chemical/x-xyz":["xyz"],"image/prs.btif":["btif","btf"],"image/prs.pti":["pti"],"image/vnd.adobe.photoshop":["psd"],"image/vnd.airzip.accelerator.azv":["azv"],"image/vnd.blockfact.facti":["facti"],"image/vnd.dece.graphic":["uvi","uvvi","uvg","uvvg"],"image/vnd.djvu":["djvu","djv"],"image/vnd.dvb.subtitle":["*sub"],"image/vnd.dwg":["dwg"],"image/vnd.dxf":["dxf"],"image/vnd.fastbidsheet":["fbs"],"image/vnd.fpx":["fpx"],"image/vnd.fst":["fst"],"image/vnd.fujixerox.edmics-mmr":["mmr"],"image/vnd.fujixerox.edmics-rlc":["rlc"],"image/vnd.microsoft.icon":["ico"],"image/vnd.ms-dds":["dds"],"image/vnd.ms-modi":["mdi"],"image/vnd.ms-photo":["wdp"],"image/vnd.net-fpx":["npx"],"image/vnd.pco.b16":["b16"],"image/vnd.tencent.tap":["tap"],"image/vnd.valve.source.texture":["vtf"],"image/vnd.wap.wbmp":["wbmp"],"image/vnd.xiff":["xif"],"image/vnd.zbrush.pcx":["pcx"],"image/x-3ds":["3ds"],"image/x-adobe-dng":["dng"],"image/x-cmu-raster":["ras"],"image/x-cmx":["cmx"],"image/x-freehand":["fh","fhc","fh4","fh5","fh7"],"image/x-icon":["*ico"],"image/x-jng":["jng"],"image/x-mrsid-image":["sid"],"image/x-ms-bmp":["*bmp"],"image/x-pcx":["*pcx"],"image/x-pict":["pic","pct"],"image/x-portable-anymap":["pnm"],"image/x-portable-bitmap":["pbm"],"image/x-portable-graymap":["pgm"],"image/x-portable-pixmap":["ppm"],"image/x-rgb":["rgb"],"image/x-tga":["tga"],"image/x-xbitmap":["xbm"],"image/x-xpixmap":["xpm"],"image/x-xwindowdump":["xwd"],"message/vnd.wfa.wsc":["wsc"],"model/vnd.bary":["bary"],"model/vnd.cld":["cld"],"model/vnd.collada+xml":["dae"],"model/vnd.dwf":["dwf"],"model/vnd.gdl":["gdl"],"model/vnd.gtw":["gtw"],"model/vnd.mts":["*mts"],"model/vnd.opengex":["ogex"],"model/vnd.parasolid.transmit.binary":["x_b"],"model/vnd.parasolid.transmit.text":["x_t"],"model/vnd.pytha.pyox":["pyo","pyox"],"model/vnd.sap.vds":["vds"],"model/vnd.usda":["usda"],"model/vnd.usdz+zip":["usdz"],"model/vnd.valve.source.compiled-map":["bsp"],"model/vnd.vtu":["vtu"],"text/prs.lines.tag":["dsc"],"text/vnd.curl":["curl"],"text/vnd.curl.dcurl":["dcurl"],"text/vnd.curl.mcurl":["mcurl"],"text/vnd.curl.scurl":["scurl"],"text/vnd.dvb.subtitle":["sub"],"text/vnd.familysearch.gedcom":["ged"],"text/vnd.fly":["fly"],"text/vnd.fmi.flexstor":["flx"],"text/vnd.graphviz":["gv"],"text/vnd.in3d.3dml":["3dml"],"text/vnd.in3d.spot":["spot"],"text/vnd.sun.j2me.app-descriptor":["jad"],"text/vnd.wap.wml":["wml"],"text/vnd.wap.wmlscript":["wmls"],"text/x-asm":["s","asm"],"text/x-c":["c","cc","cxx","cpp","h","hh","dic"],"text/x-component":["htc"],"text/x-fortran":["f","for","f77","f90"],"text/x-handlebars-template":["hbs"],"text/x-java-source":["java"],"text/x-lua":["lua"],"text/x-markdown":["mkd"],"text/x-nfo":["nfo"],"text/x-opml":["opml"],"text/x-org":["*org"],"text/x-pascal":["p","pas"],"text/x-processing":["pde"],"text/x-sass":["sass"],"text/x-scss":["scss"],"text/x-setext":["etx"],"text/x-sfv":["sfv"],"text/x-suse-ymp":["ymp"],"text/x-uuencode":["uu"],"text/x-vcalendar":["vcs"],"text/x-vcard":["vcf"],"video/vnd.dece.hd":["uvh","uvvh"],"video/vnd.dece.mobile":["uvm","uvvm"],"video/vnd.dece.pd":["uvp","uvvp"],"video/vnd.dece.sd":["uvs","uvvs"],"video/vnd.dece.video":["uvv","uvvv"],"video/vnd.dvb.file":["dvb"],"video/vnd.fvt":["fvt"],"video/vnd.mpegurl":["mxu","m4u"],"video/vnd.ms-playready.media.pyv":["pyv"],"video/vnd.uvvu.mp4":["uvu","uvvu"],"video/vnd.vivo":["viv"],"video/x-f4v":["f4v"],"video/x-fli":["fli"],"video/x-flv":["flv"],"video/x-m4v":["m4v"],"video/x-matroska":["mkv","mk3d","mks"],"video/x-mng":["mng"],"video/x-ms-asf":["asf","asx"],"video/x-ms-vob":["vob"],"video/x-ms-wm":["wm"],"video/x-ms-wmv":["wmv"],"video/x-ms-wmx":["wmx"],"video/x-ms-wvx":["wvx"],"video/x-msvideo":["avi"],"video/x-sgi-movie":["movie"],"video/x-smv":["smv"],"x-conference/x-cooltalk":["ice"]};Object.freeze(Cl);var Bl=Cl;var kl={"application/andrew-inset":["ez"],"application/appinstaller":["appinstaller"],"application/applixware":["aw"],"application/appx":["appx"],"application/appxbundle":["appxbundle"],"application/atom+xml":["atom"],"application/atomcat+xml":["atomcat"],"application/atomdeleted+xml":["atomdeleted"],"application/atomsvc+xml":["atomsvc"],"application/atsc-dwd+xml":["dwd"],"application/atsc-held+xml":["held"],"application/atsc-rsat+xml":["rsat"],"application/automationml-aml+xml":["aml"],"application/automationml-amlx+zip":["amlx"],"application/bdoc":["bdoc"],"application/calendar+xml":["xcs"],"application/ccxml+xml":["ccxml"],"application/cdfx+xml":["cdfx"],"application/cdmi-capability":["cdmia"],"application/cdmi-container":["cdmic"],"application/cdmi-domain":["cdmid"],"application/cdmi-object":["cdmio"],"application/cdmi-queue":["cdmiq"],"application/cpl+xml":["cpl"],"application/cu-seeme":["cu"],"application/cwl":["cwl"],"application/dash+xml":["mpd"],"application/dash-patch+xml":["mpp"],"application/davmount+xml":["davmount"],"application/dicom":["dcm"],"application/docbook+xml":["dbk"],"application/dssc+der":["dssc"],"application/dssc+xml":["xdssc"],"application/ecmascript":["ecma"],"application/emma+xml":["emma"],"application/emotionml+xml":["emotionml"],"application/epub+zip":["epub"],"application/exi":["exi"],"application/express":["exp"],"application/fdf":["fdf"],"application/fdt+xml":["fdt"],"application/font-tdpfr":["pfr"],"application/geo+json":["geojson"],"application/gml+xml":["gml"],"application/gpx+xml":["gpx"],"application/gxf":["gxf"],"application/gzip":["gz"],"application/hjson":["hjson"],"application/hyperstudio":["stk"],"application/inkml+xml":["ink","inkml"],"application/ipfix":["ipfix"],"application/its+xml":["its"],"application/java-archive":["jar","war","ear"],"application/java-serialized-object":["ser"],"application/java-vm":["class"],"application/javascript":["*js"],"application/json":["json","map"],"application/json5":["json5"],"application/jsonml+json":["jsonml"],"application/ld+json":["jsonld"],"application/lgr+xml":["lgr"],"application/lost+xml":["lostxml"],"application/mac-binhex40":["hqx"],"application/mac-compactpro":["cpt"],"application/mads+xml":["mads"],"application/manifest+json":["webmanifest"],"application/marc":["mrc"],"application/marcxml+xml":["mrcx"],"application/mathematica":["ma","nb","mb"],"application/mathml+xml":["mathml"],"application/mbox":["mbox"],"application/media-policy-dataset+xml":["mpf"],"application/mediaservercontrol+xml":["mscml"],"application/metalink+xml":["metalink"],"application/metalink4+xml":["meta4"],"application/mets+xml":["mets"],"application/mmt-aei+xml":["maei"],"application/mmt-usd+xml":["musd"],"application/mods+xml":["mods"],"application/mp21":["m21","mp21"],"application/mp4":["*mp4","*mpg4","mp4s","m4p"],"application/msix":["msix"],"application/msixbundle":["msixbundle"],"application/msword":["doc","dot"],"application/mxf":["mxf"],"application/n-quads":["nq"],"application/n-triples":["nt"],"application/node":["cjs"],"application/octet-stream":["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"],"application/oda":["oda"],"application/oebps-package+xml":["opf"],"application/ogg":["ogx"],"application/omdoc+xml":["omdoc"],"application/onenote":["onetoc","onetoc2","onetmp","onepkg","one","onea"],"application/oxps":["oxps"],"application/p2p-overlay+xml":["relo"],"application/patch-ops-error+xml":["xer"],"application/pdf":["pdf"],"application/pgp-encrypted":["pgp"],"application/pgp-keys":["asc"],"application/pgp-signature":["sig","*asc"],"application/pics-rules":["prf"],"application/pkcs10":["p10"],"application/pkcs7-mime":["p7m","p7c"],"application/pkcs7-signature":["p7s"],"application/pkcs8":["p8"],"application/pkix-attr-cert":["ac"],"application/pkix-cert":["cer"],"application/pkix-crl":["crl"],"application/pkix-pkipath":["pkipath"],"application/pkixcmp":["pki"],"application/pls+xml":["pls"],"application/postscript":["ai","eps","ps"],"application/provenance+xml":["provx"],"application/pskc+xml":["pskcxml"],"application/raml+yaml":["raml"],"application/rdf+xml":["rdf","owl"],"application/reginfo+xml":["rif"],"application/relax-ng-compact-syntax":["rnc"],"application/resource-lists+xml":["rl"],"application/resource-lists-diff+xml":["rld"],"application/rls-services+xml":["rs"],"application/route-apd+xml":["rapd"],"application/route-s-tsid+xml":["sls"],"application/route-usd+xml":["rusd"],"application/rpki-ghostbusters":["gbr"],"application/rpki-manifest":["mft"],"application/rpki-roa":["roa"],"application/rsd+xml":["rsd"],"application/rss+xml":["rss"],"application/rtf":["rtf"],"application/sbml+xml":["sbml"],"application/scvp-cv-request":["scq"],"application/scvp-cv-response":["scs"],"application/scvp-vp-request":["spq"],"application/scvp-vp-response":["spp"],"application/sdp":["sdp"],"application/senml+xml":["senmlx"],"application/sensml+xml":["sensmlx"],"application/set-payment-initiation":["setpay"],"application/set-registration-initiation":["setreg"],"application/shf+xml":["shf"],"application/sieve":["siv","sieve"],"application/smil+xml":["smi","smil"],"application/sparql-query":["rq"],"application/sparql-results+xml":["srx"],"application/sql":["sql"],"application/srgs":["gram"],"application/srgs+xml":["grxml"],"application/sru+xml":["sru"],"application/ssdl+xml":["ssdl"],"application/ssml+xml":["ssml"],"application/swid+xml":["swidtag"],"application/tei+xml":["tei","teicorpus"],"application/thraud+xml":["tfi"],"application/timestamped-data":["tsd"],"application/toml":["toml"],"application/trig":["trig"],"application/ttml+xml":["ttml"],"application/ubjson":["ubj"],"application/urc-ressheet+xml":["rsheet"],"application/urc-targetdesc+xml":["td"],"application/voicexml+xml":["vxml"],"application/wasm":["wasm"],"application/watcherinfo+xml":["wif"],"application/widget":["wgt"],"application/winhlp":["hlp"],"application/wsdl+xml":["wsdl"],"application/wspolicy+xml":["wspolicy"],"application/xaml+xml":["xaml"],"application/xcap-att+xml":["xav"],"application/xcap-caps+xml":["xca"],"application/xcap-diff+xml":["xdf"],"application/xcap-el+xml":["xel"],"application/xcap-ns+xml":["xns"],"application/xenc+xml":["xenc"],"application/xfdf":["xfdf"],"application/xhtml+xml":["xhtml","xht"],"application/xliff+xml":["xlf"],"application/xml":["xml","xsl","xsd","rng"],"application/xml-dtd":["dtd"],"application/xop+xml":["xop"],"application/xproc+xml":["xpl"],"application/xslt+xml":["*xsl","xslt"],"application/xspf+xml":["xspf"],"application/xv+xml":["mxml","xhvml","xvml","xvm"],"application/yang":["yang"],"application/yin+xml":["yin"],"application/zip":["zip"],"application/zip+dotlottie":["lottie"],"audio/3gpp":["*3gpp"],"audio/aac":["adts","aac"],"audio/adpcm":["adp"],"audio/amr":["amr"],"audio/basic":["au","snd"],"audio/midi":["mid","midi","kar","rmi"],"audio/mobile-xmf":["mxmf"],"audio/mp3":["*mp3"],"audio/mp4":["m4a","mp4a","m4b"],"audio/mpeg":["mpga","mp2","mp2a","mp3","m2a","m3a"],"audio/ogg":["oga","ogg","spx","opus"],"audio/s3m":["s3m"],"audio/silk":["sil"],"audio/wav":["wav"],"audio/wave":["*wav"],"audio/webm":["weba"],"audio/xm":["xm"],"font/collection":["ttc"],"font/otf":["otf"],"font/ttf":["ttf"],"font/woff":["woff"],"font/woff2":["woff2"],"image/aces":["exr"],"image/apng":["apng"],"image/avci":["avci"],"image/avcs":["avcs"],"image/avif":["avif"],"image/bmp":["bmp","dib"],"image/cgm":["cgm"],"image/dicom-rle":["drle"],"image/dpx":["dpx"],"image/emf":["emf"],"image/fits":["fits"],"image/g3fax":["g3"],"image/gif":["gif"],"image/heic":["heic"],"image/heic-sequence":["heics"],"image/heif":["heif"],"image/heif-sequence":["heifs"],"image/hej2k":["hej2"],"image/ief":["ief"],"image/jaii":["jaii"],"image/jais":["jais"],"image/jls":["jls"],"image/jp2":["jp2","jpg2"],"image/jpeg":["jpg","jpeg","jpe"],"image/jph":["jph"],"image/jphc":["jhc"],"image/jpm":["jpm","jpgm"],"image/jpx":["jpx","jpf"],"image/jxl":["jxl"],"image/jxr":["jxr"],"image/jxra":["jxra"],"image/jxrs":["jxrs"],"image/jxs":["jxs"],"image/jxsc":["jxsc"],"image/jxsi":["jxsi"],"image/jxss":["jxss"],"image/ktx":["ktx"],"image/ktx2":["ktx2"],"image/pjpeg":["jfif"],"image/png":["png"],"image/sgi":["sgi"],"image/svg+xml":["svg","svgz"],"image/t38":["t38"],"image/tiff":["tif","tiff"],"image/tiff-fx":["tfx"],"image/webp":["webp"],"image/wmf":["wmf"],"message/disposition-notification":["disposition-notification"],"message/global":["u8msg"],"message/global-delivery-status":["u8dsn"],"message/global-disposition-notification":["u8mdn"],"message/global-headers":["u8hdr"],"message/rfc822":["eml","mime","mht","mhtml"],"model/3mf":["3mf"],"model/gltf+json":["gltf"],"model/gltf-binary":["glb"],"model/iges":["igs","iges"],"model/jt":["jt"],"model/mesh":["msh","mesh","silo"],"model/mtl":["mtl"],"model/obj":["obj"],"model/prc":["prc"],"model/step":["step","stp","stpnc","p21","210"],"model/step+xml":["stpx"],"model/step+zip":["stpz"],"model/step-xml+zip":["stpxz"],"model/stl":["stl"],"model/u3d":["u3d"],"model/vrml":["wrl","vrml"],"model/x3d+binary":["*x3db","x3dbz"],"model/x3d+fastinfoset":["x3db"],"model/x3d+vrml":["*x3dv","x3dvz"],"model/x3d+xml":["x3d","x3dz"],"model/x3d-vrml":["x3dv"],"text/cache-manifest":["appcache","manifest"],"text/calendar":["ics","ifb"],"text/coffeescript":["coffee","litcoffee"],"text/css":["css"],"text/csv":["csv"],"text/html":["html","htm","shtml"],"text/jade":["jade"],"text/javascript":["js","mjs"],"text/jsx":["jsx"],"text/less":["less"],"text/markdown":["md","markdown"],"text/mathml":["mml"],"text/mdx":["mdx"],"text/n3":["n3"],"text/plain":["txt","text","conf","def","list","log","in","ini"],"text/richtext":["rtx"],"text/rtf":["*rtf"],"text/sgml":["sgml","sgm"],"text/shex":["shex"],"text/slim":["slim","slm"],"text/spdx":["spdx"],"text/stylus":["stylus","styl"],"text/tab-separated-values":["tsv"],"text/troff":["t","tr","roff","man","me","ms"],"text/turtle":["ttl"],"text/uri-list":["uri","uris","urls"],"text/vcard":["vcard"],"text/vtt":["vtt"],"text/wgsl":["wgsl"],"text/xml":["*xml"],"text/yaml":["yaml","yml"],"video/3gpp":["3gp","3gpp"],"video/3gpp2":["3g2"],"video/h261":["h261"],"video/h263":["h263"],"video/h264":["h264"],"video/iso.segment":["m4s"],"video/jpeg":["jpgv"],"video/jpm":["*jpm","*jpgm"],"video/mj2":["mj2","mjp2"],"video/mp2t":["ts","m2t","m2ts","mts"],"video/mp4":["mp4","mp4v","mpg4"],"video/mpeg":["mpeg","mpg","mpe","m1v","m2v"],"video/ogg":["ogv"],"video/quicktime":["qt","mov"],"video/webm":["webm"]};Object.freeze(kl);var Nl=kl;var _e=function(e,t,i,a){if(i==="a"&&!a)throw new TypeError("Private accessor was defined without a getter");if(typeof t=="function"?e!==t||!a:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return i==="m"?a:i==="a"?a.call(e):a?a.value:t.get(e)},St,jt,rt,ya=class{constructor(...t){St.set(this,new Map),jt.set(this,new Map),rt.set(this,new Map);for(let i of t)this.define(i)}define(t,i=!1){for(let[a,n]of Object.entries(t)){a=a.toLowerCase(),n=n.map(r=>r.toLowerCase()),_e(this,rt,"f").has(a)||_e(this,rt,"f").set(a,new Set);let l=_e(this,rt,"f").get(a),o=!0;for(let r of n){let s=r.startsWith("*");if(r=s?r.slice(1):r,l?.add(r),o&&_e(this,jt,"f").set(a,r),o=!1,s)continue;let p=_e(this,St,"f").get(r);if(p&&p!=a&&!i)throw new Error(`"${a} -> ${r}" conflicts with "${p} -> ${r}". Pass \`force=true\` to override this definition.`);_e(this,St,"f").set(r,a)}}return this}getType(t){if(typeof t!="string")return null;let i=t.replace(/^.*[/\\]/s,"").toLowerCase(),a=i.replace(/^.*\./s,"").toLowerCase(),n=i.length{throw new Error("define() not allowed for built-in Mime objects. See https://github.com/broofa/mime/blob/main/README.md#custom-mime-instances")},Object.freeze(this);for(let t of _e(this,rt,"f").values())Object.freeze(t);return this}_getTestState(){return{types:_e(this,St,"f"),extensions:_e(this,jt,"f")}}};St=new WeakMap,jt=new WeakMap,rt=new WeakMap;var Ra=ya;var Vl=new Ra(Nl,Bl)._freeze();var Gl=({addFilter:e,utils:t})=>{let{Type:i,replaceInString:a,toNaturalFileSize:n}=t;return e("ALLOW_HOPPER_ITEM",(l,{query:o})=>{if(!o("GET_ALLOW_FILE_SIZE_VALIDATION"))return!0;let r=o("GET_MAX_FILE_SIZE");if(r!==null&&l.size>r)return!1;let s=o("GET_MIN_FILE_SIZE");return!(s!==null&&l.sizenew Promise((r,s)=>{if(!o("GET_ALLOW_FILE_SIZE_VALIDATION"))return r(l);let p=o("GET_FILE_VALIDATE_SIZE_FILTER");if(p&&!p(l))return r(l);let c=o("GET_MAX_FILE_SIZE");if(c!==null&&l.size>c){s({status:{main:o("GET_LABEL_MAX_FILE_SIZE_EXCEEDED"),sub:a(o("GET_LABEL_MAX_FILE_SIZE"),{filesize:n(c,".",o("GET_FILE_SIZE_BASE"),o("GET_FILE_SIZE_LABELS",o))})}});return}let d=o("GET_MIN_FILE_SIZE");if(d!==null&&l.sizeg+f.fileSize,0)>m){s({status:{main:o("GET_LABEL_MAX_TOTAL_FILE_SIZE_EXCEEDED"),sub:a(o("GET_LABEL_MAX_TOTAL_FILE_SIZE"),{filesize:n(m,".",o("GET_FILE_SIZE_BASE"),o("GET_FILE_SIZE_LABELS",o))})}});return}r(l)})),{options:{allowFileSizeValidation:[!0,i.BOOLEAN],maxFileSize:[null,i.INT],minFileSize:[null,i.INT],maxTotalFileSize:[null,i.INT],fileValidateSizeFilter:[null,i.FUNCTION],labelMinFileSizeExceeded:["File is too small",i.STRING],labelMinFileSize:["Minimum file size is {filesize}",i.STRING],labelMaxFileSizeExceeded:["File is too large",i.STRING],labelMaxFileSize:["Maximum file size is {filesize}",i.STRING],labelMaxTotalFileSizeExceeded:["Maximum total size exceeded",i.STRING],labelMaxTotalFileSize:["Maximum total file size is {filesize}",i.STRING]}}},Em=typeof window<"u"&&typeof window.document<"u";Em&&document.dispatchEvent(new CustomEvent("FilePond:pluginloaded",{detail:Gl}));var Ul=Gl;var Hl=({addFilter:e,utils:t})=>{let{Type:i,isString:a,replaceInString:n,guesstimateMimeType:l,getExtensionFromFilename:o,getFilenameFromURL:r}=t,s=(u,g)=>{let f=(/^[^/]+/.exec(u)||[]).pop(),b=g.slice(0,-2);return f===b},p=(u,g)=>u.some(f=>/\*$/.test(f)?s(g,f):f===g),c=u=>{let g="";if(a(u)){let f=r(u),b=o(f);b&&(g=l(b))}else g=u.type;return g},d=(u,g,f)=>{if(g.length===0)return!0;let b=c(u);return f?new Promise((v,h)=>{f(u,b).then(E=>{p(g,E)?v():h()}).catch(h)}):p(g,b)},m=u=>g=>u[g]===null?!1:u[g]||g;return e("SET_ATTRIBUTE_TO_OPTION_MAP",u=>Object.assign(u,{accept:"acceptedFileTypes"})),e("ALLOW_HOPPER_ITEM",(u,{query:g})=>g("GET_ALLOW_FILE_TYPE_VALIDATION")?d(u,g("GET_ACCEPTED_FILE_TYPES")):!0),e("LOAD_FILE",(u,{query:g})=>new Promise((f,b)=>{if(!g("GET_ALLOW_FILE_TYPE_VALIDATION")){f(u);return}let v=g("GET_ACCEPTED_FILE_TYPES"),h=g("GET_FILE_VALIDATE_TYPE_DETECT_TYPE"),E=d(u,v,h),I=()=>{let y=v.map(m(g("GET_FILE_VALIDATE_TYPE_LABEL_EXPECTED_TYPES_MAP"))).filter(_=>_!==!1),T=y.filter((_,x)=>y.indexOf(_)===x);b({status:{main:g("GET_LABEL_FILE_TYPE_NOT_ALLOWED"),sub:n(g("GET_FILE_VALIDATE_TYPE_LABEL_EXPECTED_TYPES"),{allTypes:T.join(", "),allButLastType:T.slice(0,-1).join(", "),lastType:T[T.length-1]})}})};if(typeof E=="boolean")return E?f(u):I();E.then(()=>{f(u)}).catch(I)})),{options:{allowFileTypeValidation:[!0,i.BOOLEAN],acceptedFileTypes:[[],i.ARRAY],labelFileTypeNotAllowed:["File is of invalid type",i.STRING],fileValidateTypeLabelExpectedTypes:["Expects {allButLastType} or {lastType}",i.STRING],fileValidateTypeLabelExpectedTypesMap:[{},i.OBJECT],fileValidateTypeDetectType:[null,i.FUNCTION]}}},Tm=typeof window<"u"&&typeof window.document<"u";Tm&&document.dispatchEvent(new CustomEvent("FilePond:pluginloaded",{detail:Hl}));var Wl=Hl;var jl=e=>/^image/.test(e.type),Yl=({addFilter:e,utils:t})=>{let{Type:i,isFile:a,getNumericAspectRatioFromString:n}=t,l=(p,c)=>!(!jl(p.file)||!c("GET_ALLOW_IMAGE_CROP")),o=p=>typeof p=="object",r=p=>typeof p=="number",s=(p,c)=>p.setMetadata("crop",Object.assign({},p.getMetadata("crop"),c));return e("DID_CREATE_ITEM",(p,{query:c})=>{p.extend("setImageCrop",d=>{if(!(!l(p,c)||!o(center)))return p.setMetadata("crop",d),d}),p.extend("setImageCropCenter",d=>{if(!(!l(p,c)||!o(d)))return s(p,{center:d})}),p.extend("setImageCropZoom",d=>{if(!(!l(p,c)||!r(d)))return s(p,{zoom:Math.max(1,d)})}),p.extend("setImageCropRotation",d=>{if(!(!l(p,c)||!r(d)))return s(p,{rotation:d})}),p.extend("setImageCropFlip",d=>{if(!(!l(p,c)||!o(d)))return s(p,{flip:d})}),p.extend("setImageCropAspectRatio",d=>{if(!l(p,c)||typeof d>"u")return;let m=p.getMetadata("crop"),u=n(d),g={center:{x:.5,y:.5},flip:m?Object.assign({},m.flip):{horizontal:!1,vertical:!1},rotation:0,zoom:1,aspectRatio:u};return p.setMetadata("crop",g),g})}),e("DID_LOAD_ITEM",(p,{query:c})=>new Promise((d,m)=>{let u=p.file;if(!a(u)||!jl(u)||!c("GET_ALLOW_IMAGE_CROP")||p.getMetadata("crop"))return d(p);let f=c("GET_IMAGE_CROP_ASPECT_RATIO");p.setMetadata("crop",{center:{x:.5,y:.5},flip:{horizontal:!1,vertical:!1},rotation:0,zoom:1,aspectRatio:f?n(f):null}),d(p)})),{options:{allowImageCrop:[!0,i.BOOLEAN],imageCropAspectRatio:[null,i.STRING]}}},vm=typeof window<"u"&&typeof window.document<"u";vm&&document.dispatchEvent(new CustomEvent("FilePond:pluginloaded",{detail:Yl}));var ql=Yl;var Sa=e=>/^image/.test(e.type),$l=e=>{let{addFilter:t,utils:i,views:a}=e,{Type:n,createRoute:l,createItemAPI:o=c=>c}=i,{fileActionButton:r}=a;t("SHOULD_REMOVE_ON_REVERT",(c,{item:d,query:m})=>new Promise(u=>{let{file:g}=d,f=m("GET_ALLOW_IMAGE_EDIT")&&m("GET_IMAGE_EDIT_ALLOW_EDIT")&&Sa(g);u(!f)})),t("DID_LOAD_ITEM",(c,{query:d,dispatch:m})=>new Promise((u,g)=>{if(c.origin>1){u(c);return}let{file:f}=c;if(!d("GET_ALLOW_IMAGE_EDIT")||!d("GET_IMAGE_EDIT_INSTANT_EDIT")){u(c);return}if(!Sa(f)){u(c);return}let b=(h,E,I)=>y=>{s.shift(),y?E(h):I(h),m("KICK"),v()},v=()=>{if(!s.length)return;let{item:h,resolve:E,reject:I}=s[0];m("EDIT_ITEM",{id:h.id,handleEditorResponse:b(h,E,I)})};p({item:c,resolve:u,reject:g}),s.length===1&&v()})),t("DID_CREATE_ITEM",(c,{query:d,dispatch:m})=>{c.extend("edit",()=>{m("EDIT_ITEM",{id:c.id})})});let s=[],p=c=>(s.push(c),c);return t("CREATE_VIEW",c=>{let{is:d,view:m,query:u}=c;if(!u("GET_ALLOW_IMAGE_EDIT"))return;let g=u("GET_ALLOW_IMAGE_PREVIEW");if(!(d("file-info")&&!g||d("file")&&g))return;let b=u("GET_IMAGE_EDIT_EDITOR");if(!b)return;b.filepondCallbackBridge||(b.outputData=!0,b.outputFile=!1,b.filepondCallbackBridge={onconfirm:b.onconfirm||(()=>{}),oncancel:b.oncancel||(()=>{})});let v=({root:I,props:y,action:T})=>{let{id:_}=y,{handleEditorResponse:x}=T;b.cropAspectRatio=I.query("GET_IMAGE_CROP_ASPECT_RATIO")||b.cropAspectRatio,b.outputCanvasBackgroundColor=I.query("GET_IMAGE_TRANSFORM_CANVAS_BACKGROUND_COLOR")||b.outputCanvasBackgroundColor;let R=I.query("GET_ITEM",_);if(!R)return;let z=R.file,P=R.getMetadata("crop"),A={center:{x:.5,y:.5},flip:{horizontal:!1,vertical:!1},zoom:1,rotation:0,aspectRatio:null},B=R.getMetadata("resize"),w=R.getMetadata("filter")||null,F=R.getMetadata("filters")||null,S=R.getMetadata("colors")||null,L=R.getMetadata("markup")||null,D={crop:P||A,size:B?{upscale:B.upscale,mode:B.mode,width:B.size.width,height:B.size.height}:null,filter:F?F.id||F.matrix:I.query("GET_ALLOW_IMAGE_FILTER")&&I.query("GET_IMAGE_FILTER_COLOR_MATRIX")&&!S?w:null,color:S,markup:L};b.onconfirm=({data:O})=>{let{crop:U,size:C,filter:X,color:K,colorMatrix:Z,markup:ce}=O,V={};if(U&&(V.crop=U),C){let W=(R.getMetadata("resize")||{}).size,$={width:C.width,height:C.height};!($.width&&$.height)&&W&&($.width=W.width,$.height=W.height),($.width||$.height)&&(V.resize={upscale:C.upscale,mode:C.mode,size:$})}ce&&(V.markup=ce),V.colors=K,V.filters=X,V.filter=Z,R.setMetadata(V),b.filepondCallbackBridge.onconfirm(O,o(R)),x&&(b.onclose=()=>{x(!0),b.onclose=null})},b.oncancel=()=>{b.filepondCallbackBridge.oncancel(o(R)),x&&(b.onclose=()=>{x(!1),b.onclose=null})},b.open(z,D)},h=({root:I,props:y})=>{if(!u("GET_IMAGE_EDIT_ALLOW_EDIT"))return;let{id:T}=y,_=u("GET_ITEM",T);if(!_)return;let x=_.file;if(Sa(x))if(I.ref.handleEdit=R=>{R.stopPropagation(),I.dispatch("EDIT_ITEM",{id:T})},g){let R=m.createChildView(r,{label:"edit",icon:u("GET_IMAGE_EDIT_ICON_EDIT"),opacity:0});R.element.classList.add("filepond--action-edit-item"),R.element.dataset.align=u("GET_STYLE_IMAGE_EDIT_BUTTON_EDIT_ITEM_POSITION"),R.on("click",I.ref.handleEdit),I.ref.buttonEditItem=m.appendChildView(R)}else{let R=m.element.querySelector(".filepond--file-info-main"),z=document.createElement("button");z.className="filepond--action-edit-item-alt",z.innerHTML=u("GET_IMAGE_EDIT_ICON_EDIT")+"edit",z.addEventListener("click",I.ref.handleEdit),R.appendChild(z),I.ref.editButton=z}};m.registerDestroyer(({root:I})=>{I.ref.buttonEditItem&&I.ref.buttonEditItem.off("click",I.ref.handleEdit),I.ref.editButton&&I.ref.editButton.removeEventListener("click",I.ref.handleEdit)});let E={EDIT_ITEM:v,DID_LOAD_ITEM:h};if(g){let I=({root:y})=>{y.ref.buttonEditItem&&(y.ref.buttonEditItem.opacity=1)};E.DID_IMAGE_PREVIEW_SHOW=I}m.registerWriter(l(E))}),{options:{allowImageEdit:[!0,n.BOOLEAN],styleImageEditButtonEditItemPosition:["bottom center",n.STRING],imageEditInstantEdit:[!1,n.BOOLEAN],imageEditAllowEdit:[!0,n.BOOLEAN],imageEditIconEdit:['',n.STRING],imageEditEditor:[null,n.OBJECT]}}},Im=typeof window<"u"&&typeof window.document<"u";Im&&document.dispatchEvent(new CustomEvent("FilePond:pluginloaded",{detail:$l}));var Xl=$l;var xm=e=>/^image\/jpeg/.test(e.type),st={JPEG:65496,APP1:65505,EXIF:1165519206,TIFF:18761,Orientation:274,Unknown:65280},ct=(e,t,i=!1)=>e.getUint16(t,i),Kl=(e,t,i=!1)=>e.getUint32(t,i),ym=e=>new Promise((t,i)=>{let a=new FileReader;a.onload=function(n){let l=new DataView(n.target.result);if(ct(l,0)!==st.JPEG){t(-1);return}let o=l.byteLength,r=2;for(;rRm,_m="data:image/jpg;base64,/9j/4AAQSkZJRgABAQEASABIAAD/4QA6RXhpZgAATU0AKgAAAAgAAwESAAMAAAABAAYAAAEoAAMAAAABAAIAAAITAAMAAAABAAEAAAAAAAD/2wBDAP//////////////////////////////////////////////////////////////////////////////////////wAALCAABAAIBASIA/8QAJgABAAAAAAAAAAAAAAAAAAAAAxABAAAAAAAAAAAAAAAAAAAAAP/aAAgBAQAAPwBH/9k=",Zl,vi=Sm()?new Image:{};vi.onload=()=>Zl=vi.naturalWidth>vi.naturalHeight;vi.src=_m;var wm=()=>Zl,Ql=({addFilter:e,utils:t})=>{let{Type:i,isFile:a}=t;return e("DID_LOAD_ITEM",(n,{query:l})=>new Promise((o,r)=>{let s=n.file;if(!a(s)||!xm(s)||!l("GET_ALLOW_IMAGE_EXIF_ORIENTATION")||!wm())return o(n);ym(s).then(p=>{n.setMetadata("exif",{orientation:p}),o(n)})})),{options:{allowImageExifOrientation:[!0,i.BOOLEAN]}}},Lm=typeof window<"u"&&typeof window.document<"u";Lm&&document.dispatchEvent(new CustomEvent("FilePond:pluginloaded",{detail:Ql}));var Jl=Ql;var Mm=e=>/^image/.test(e.type),eo=(e,t)=>qt(e.x*t,e.y*t),to=(e,t)=>qt(e.x+t.x,e.y+t.y),Am=e=>{let t=Math.sqrt(e.x*e.x+e.y*e.y);return t===0?{x:0,y:0}:qt(e.x/t,e.y/t)},Ii=(e,t,i)=>{let a=Math.cos(t),n=Math.sin(t),l=qt(e.x-i.x,e.y-i.y);return qt(i.x+a*l.x-n*l.y,i.y+n*l.x+a*l.y)},qt=(e=0,t=0)=>({x:e,y:t}),Te=(e,t,i=1,a)=>{if(typeof e=="string")return parseFloat(e)*i;if(typeof e=="number")return e*(a?t[a]:Math.min(t.width,t.height))},Pm=(e,t,i)=>{let a=e.borderStyle||e.lineStyle||"solid",n=e.backgroundColor||e.fontColor||"transparent",l=e.borderColor||e.lineColor||"transparent",o=Te(e.borderWidth||e.lineWidth,t,i),r=e.lineCap||"round",s=e.lineJoin||"round",p=typeof a=="string"?"":a.map(d=>Te(d,t,i)).join(","),c=e.opacity||1;return{"stroke-linecap":r,"stroke-linejoin":s,"stroke-width":o||0,"stroke-dasharray":p,stroke:l,fill:n,opacity:c}},we=e=>e!=null,zm=(e,t,i=1)=>{let a=Te(e.x,t,i,"width")||Te(e.left,t,i,"width"),n=Te(e.y,t,i,"height")||Te(e.top,t,i,"height"),l=Te(e.width,t,i,"width"),o=Te(e.height,t,i,"height"),r=Te(e.right,t,i,"width"),s=Te(e.bottom,t,i,"height");return we(n)||(we(o)&&we(s)?n=t.height-o-s:n=s),we(a)||(we(l)&&we(r)?a=t.width-l-r:a=r),we(l)||(we(a)&&we(r)?l=t.width-a-r:l=0),we(o)||(we(n)&&we(s)?o=t.height-n-s:o=0),{x:a||0,y:n||0,width:l||0,height:o||0}},Fm=e=>e.map((t,i)=>`${i===0?"M":"L"} ${t.x} ${t.y}`).join(" "),Be=(e,t)=>Object.keys(t).forEach(i=>e.setAttribute(i,t[i])),Om="http://www.w3.org/2000/svg",_t=(e,t)=>{let i=document.createElementNS(Om,e);return t&&Be(i,t),i},Dm=e=>Be(e,{...e.rect,...e.styles}),Cm=e=>{let t=e.rect.x+e.rect.width*.5,i=e.rect.y+e.rect.height*.5,a=e.rect.width*.5,n=e.rect.height*.5;return Be(e,{cx:t,cy:i,rx:a,ry:n,...e.styles})},Bm={contain:"xMidYMid meet",cover:"xMidYMid slice"},km=(e,t)=>{Be(e,{...e.rect,...e.styles,preserveAspectRatio:Bm[t.fit]||"none"})},Nm={left:"start",center:"middle",right:"end"},Vm=(e,t,i,a)=>{let n=Te(t.fontSize,i,a),l=t.fontFamily||"sans-serif",o=t.fontWeight||"normal",r=Nm[t.textAlign]||"start";Be(e,{...e.rect,...e.styles,"stroke-width":0,"font-weight":o,"font-size":n,"font-family":l,"text-anchor":r}),e.text!==t.text&&(e.text=t.text,e.textContent=t.text.length?t.text:" ")},Gm=(e,t,i,a)=>{Be(e,{...e.rect,...e.styles,fill:"none"});let n=e.childNodes[0],l=e.childNodes[1],o=e.childNodes[2],r=e.rect,s={x:e.rect.x+e.rect.width,y:e.rect.y+e.rect.height};if(Be(n,{x1:r.x,y1:r.y,x2:s.x,y2:s.y}),!t.lineDecoration)return;l.style.display="none",o.style.display="none";let p=Am({x:s.x-r.x,y:s.y-r.y}),c=Te(.05,i,a);if(t.lineDecoration.indexOf("arrow-begin")!==-1){let d=eo(p,c),m=to(r,d),u=Ii(r,2,m),g=Ii(r,-2,m);Be(l,{style:"display:block;",d:`M${u.x},${u.y} L${r.x},${r.y} L${g.x},${g.y}`})}if(t.lineDecoration.indexOf("arrow-end")!==-1){let d=eo(p,-c),m=to(s,d),u=Ii(s,2,m),g=Ii(s,-2,m);Be(o,{style:"display:block;",d:`M${u.x},${u.y} L${s.x},${s.y} L${g.x},${g.y}`})}},Um=(e,t,i,a)=>{Be(e,{...e.styles,fill:"none",d:Fm(t.points.map(n=>({x:Te(n.x,i,a,"width"),y:Te(n.y,i,a,"height")})))})},xi=e=>t=>_t(e,{id:t.id}),Hm=e=>{let t=_t("image",{id:e.id,"stroke-linecap":"round","stroke-linejoin":"round",opacity:"0"});return t.onload=()=>{t.setAttribute("opacity",e.opacity||1)},t.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",e.src),t},Wm=e=>{let t=_t("g",{id:e.id,"stroke-linecap":"round","stroke-linejoin":"round"}),i=_t("line");t.appendChild(i);let a=_t("path");t.appendChild(a);let n=_t("path");return t.appendChild(n),t},jm={image:Hm,rect:xi("rect"),ellipse:xi("ellipse"),text:xi("text"),path:xi("path"),line:Wm},Ym={rect:Dm,ellipse:Cm,image:km,text:Vm,path:Um,line:Gm},qm=(e,t)=>jm[e](t),$m=(e,t,i,a,n)=>{t!=="path"&&(e.rect=zm(i,a,n)),e.styles=Pm(i,a,n),Ym[t](e,i,a,n)},Xm=["x","y","left","top","right","bottom","width","height"],Km=e=>typeof e=="string"&&/%/.test(e)?parseFloat(e)/100:e,Zm=e=>{let[t,i]=e,a=i.points?{}:Xm.reduce((n,l)=>(n[l]=Km(i[l]),n),{});return[t,{zIndex:0,...i,...a}]},Qm=(e,t)=>e[1].zIndex>t[1].zIndex?1:e[1].zIndexe.utils.createView({name:"image-preview-markup",tag:"svg",ignoreRect:!0,mixins:{apis:["width","height","crop","markup","resize","dirty"]},write:({root:t,props:i})=>{if(!i.dirty)return;let{crop:a,resize:n,markup:l}=i,o=i.width,r=i.height,s=a.width,p=a.height;if(n){let{size:u}=n,g=u&&u.width,f=u&&u.height,b=n.mode,v=n.upscale;g&&!f&&(f=g),f&&!g&&(g=f);let h=s{let[g,f]=u,b=qm(g,f);$m(b,g,f,c,d),t.element.appendChild(b)})}}),Yt=(e,t)=>({x:e,y:t}),eu=(e,t)=>e.x*t.x+e.y*t.y,io=(e,t)=>Yt(e.x-t.x,e.y-t.y),tu=(e,t)=>eu(io(e,t),io(e,t)),ao=(e,t)=>Math.sqrt(tu(e,t)),no=(e,t)=>{let i=e,a=1.5707963267948966,n=t,l=1.5707963267948966-t,o=Math.sin(a),r=Math.sin(n),s=Math.sin(l),p=Math.cos(l),c=i/o,d=c*r,m=c*s;return Yt(p*d,p*m)},iu=(e,t)=>{let i=e.width,a=e.height,n=no(i,t),l=no(a,t),o=Yt(e.x+Math.abs(n.x),e.y-Math.abs(n.y)),r=Yt(e.x+e.width+Math.abs(l.y),e.y+Math.abs(l.x)),s=Yt(e.x-Math.abs(l.y),e.y+e.height-Math.abs(l.x));return{width:ao(o,r),height:ao(o,s)}},au=(e,t,i=1)=>{let a=e.height/e.width,n=1,l=t,o=1,r=a;r>l&&(r=l,o=r/a);let s=Math.max(n/o,l/r),p=e.width/(i*s*o),c=p*t;return{width:p,height:c}},oo=(e,t,i,a)=>{let n=a.x>.5?1-a.x:a.x,l=a.y>.5?1-a.y:a.y,o=n*2*e.width,r=l*2*e.height,s=iu(t,i);return Math.max(s.width/o,s.height/r)},ro=(e,t)=>{let i=e.width,a=i*t;a>e.height&&(a=e.height,i=a/t);let n=(e.width-i)*.5,l=(e.height-a)*.5;return{x:n,y:l,width:i,height:a}},nu=(e,t={})=>{let{zoom:i,rotation:a,center:n,aspectRatio:l}=t;l||(l=e.height/e.width);let o=au(e,l,i),r={x:o.width*.5,y:o.height*.5},s={x:0,y:0,width:o.width,height:o.height,center:r},p=typeof t.scaleToFit>"u"||t.scaleToFit,c=oo(e,ro(s,l),a,p?n:{x:.5,y:.5}),d=i*c;return{widthFloat:o.width/d,heightFloat:o.height/d,width:Math.round(o.width/d),height:Math.round(o.height/d)}},Ce={type:"spring",stiffness:.5,damping:.45,mass:10},lu=e=>e.utils.createView({name:"image-bitmap",ignoreRect:!0,mixins:{styles:["scaleX","scaleY"]},create:({root:t,props:i})=>{t.appendChild(i.image)}}),ou=e=>e.utils.createView({name:"image-canvas-wrapper",tag:"div",ignoreRect:!0,mixins:{apis:["crop","width","height"],styles:["originX","originY","translateX","translateY","scaleX","scaleY","rotateZ"],animations:{originX:Ce,originY:Ce,scaleX:Ce,scaleY:Ce,translateX:Ce,translateY:Ce,rotateZ:Ce}},create:({root:t,props:i})=>{i.width=i.image.width,i.height=i.image.height,t.ref.bitmap=t.appendChildView(t.createChildView(lu(e),{image:i.image}))},write:({root:t,props:i})=>{let{flip:a}=i.crop,{bitmap:n}=t.ref;n.scaleX=a.horizontal?-1:1,n.scaleY=a.vertical?-1:1}}),ru=e=>e.utils.createView({name:"image-clip",tag:"div",ignoreRect:!0,mixins:{apis:["crop","markup","resize","width","height","dirty","background"],styles:["width","height","opacity"],animations:{opacity:{type:"tween",duration:250}}},didWriteView:function({root:t,props:i}){i.background&&(t.element.style.backgroundColor=i.background)},create:({root:t,props:i})=>{t.ref.image=t.appendChildView(t.createChildView(ou(e),Object.assign({},i))),t.ref.createMarkup=()=>{t.ref.markup||(t.ref.markup=t.appendChildView(t.createChildView(Jm(e),Object.assign({},i))))},t.ref.destroyMarkup=()=>{t.ref.markup&&(t.removeChildView(t.ref.markup),t.ref.markup=null)};let a=t.query("GET_IMAGE_PREVIEW_TRANSPARENCY_INDICATOR");a!==null&&(a==="grid"?t.element.dataset.transparencyIndicator=a:t.element.dataset.transparencyIndicator="color")},write:({root:t,props:i,shouldOptimize:a})=>{let{crop:n,markup:l,resize:o,dirty:r,width:s,height:p}=i;t.ref.image.crop=n;let c={x:0,y:0,width:s,height:p,center:{x:s*.5,y:p*.5}},d={width:t.ref.image.width,height:t.ref.image.height},m={x:n.center.x*d.width,y:n.center.y*d.height},u={x:c.center.x-d.width*n.center.x,y:c.center.y-d.height*n.center.y},g=Math.PI*2+n.rotation%(Math.PI*2),f=n.aspectRatio||d.height/d.width,b=typeof n.scaleToFit>"u"||n.scaleToFit,v=oo(d,ro(c,f),g,b?n.center:{x:.5,y:.5}),h=n.zoom*v;l&&l.length?(t.ref.createMarkup(),t.ref.markup.width=s,t.ref.markup.height=p,t.ref.markup.resize=o,t.ref.markup.dirty=r,t.ref.markup.markup=l,t.ref.markup.crop=nu(d,n)):t.ref.markup&&t.ref.destroyMarkup();let E=t.ref.image;if(a){E.originX=null,E.originY=null,E.translateX=null,E.translateY=null,E.rotateZ=null,E.scaleX=null,E.scaleY=null;return}E.originX=m.x,E.originY=m.y,E.translateX=u.x,E.translateY=u.y,E.rotateZ=g,E.scaleX=h,E.scaleY=h}}),su=e=>e.utils.createView({name:"image-preview",tag:"div",ignoreRect:!0,mixins:{apis:["image","crop","markup","resize","dirty","background"],styles:["translateY","scaleX","scaleY","opacity"],animations:{scaleX:Ce,scaleY:Ce,translateY:Ce,opacity:{type:"tween",duration:400}}},create:({root:t,props:i})=>{t.ref.clip=t.appendChildView(t.createChildView(ru(e),{id:i.id,image:i.image,crop:i.crop,markup:i.markup,resize:i.resize,dirty:i.dirty,background:i.background}))},write:({root:t,props:i,shouldOptimize:a})=>{let{clip:n}=t.ref,{image:l,crop:o,markup:r,resize:s,dirty:p}=i;if(n.crop=o,n.markup=r,n.resize=s,n.dirty=p,n.opacity=a?0:1,a||t.rect.element.hidden)return;let c=l.height/l.width,d=o.aspectRatio||c,m=t.rect.inner.width,u=t.rect.inner.height,g=t.query("GET_IMAGE_PREVIEW_HEIGHT"),f=t.query("GET_IMAGE_PREVIEW_MIN_HEIGHT"),b=t.query("GET_IMAGE_PREVIEW_MAX_HEIGHT"),v=t.query("GET_PANEL_ASPECT_RATIO"),h=t.query("GET_ALLOW_MULTIPLE");v&&!h&&(g=m*v,d=v);let E=g!==null?g:Math.max(f,Math.min(m*d,b)),I=E/d;I>m&&(I=m,E=I*d),E>u&&(E=u,I=u/d),n.width=I,n.height=E}}),cu=` + + + + + + + + + + + + + + + + + +`,lo=0,du=e=>e.utils.createView({name:"image-preview-overlay",tag:"div",ignoreRect:!0,create:({root:t,props:i})=>{let a=cu;if(document.querySelector("base")){let n=new URL(window.location.href.replace(window.location.hash,"")).href;a=a.replace(/url\(\#/g,"url("+n+"#")}lo++,t.element.classList.add(`filepond--image-preview-overlay-${i.status}`),t.element.innerHTML=a.replace(/__UID__/g,lo)},mixins:{styles:["opacity"],animations:{opacity:{type:"spring",mass:25}}}}),pu=function(){self.onmessage=e=>{createImageBitmap(e.data.message.file).then(t=>{self.postMessage({id:e.data.id,message:t},[t])})}},mu=function(){self.onmessage=e=>{let t=e.data.message.imageData,i=e.data.message.colorMatrix,a=t.data,n=a.length,l=i[0],o=i[1],r=i[2],s=i[3],p=i[4],c=i[5],d=i[6],m=i[7],u=i[8],g=i[9],f=i[10],b=i[11],v=i[12],h=i[13],E=i[14],I=i[15],y=i[16],T=i[17],_=i[18],x=i[19],R=0,z=0,P=0,A=0,B=0;for(;R{let i=new Image;i.onload=()=>{let a=i.naturalWidth,n=i.naturalHeight;i=null,t(a,n)},i.src=e},gu={1:()=>[1,0,0,1,0,0],2:e=>[-1,0,0,1,e,0],3:(e,t)=>[-1,0,0,-1,e,t],4:(e,t)=>[1,0,0,-1,0,t],5:()=>[0,1,1,0,0,0],6:(e,t)=>[0,1,-1,0,t,0],7:(e,t)=>[0,-1,-1,0,t,e],8:e=>[0,-1,1,0,0,e]},fu=(e,t,i,a)=>{a!==-1&&e.transform.apply(e,gu[a](t,i))},hu=(e,t,i,a)=>{t=Math.round(t),i=Math.round(i);let n=document.createElement("canvas");n.width=t,n.height=i;let l=n.getContext("2d");return a>=5&&a<=8&&([t,i]=[i,t]),fu(l,t,i,a),l.drawImage(e,0,0,t,i),n},so=e=>/^image/.test(e.type)&&!/svg/.test(e.type),bu=10,Eu=10,Tu=e=>{let t=Math.min(bu/e.width,Eu/e.height),i=document.createElement("canvas"),a=i.getContext("2d"),n=i.width=Math.ceil(e.width*t),l=i.height=Math.ceil(e.height*t);a.drawImage(e,0,0,n,l);let o=null;try{o=a.getImageData(0,0,n,l).data}catch{return null}let r=o.length,s=0,p=0,c=0,d=0;for(;dMath.floor(Math.sqrt(e/(t/4))),vu=(e,t)=>(t=t||document.createElement("canvas"),t.width=e.width,t.height=e.height,t.getContext("2d").drawImage(e,0,0),t),Iu=e=>{let t;try{t=new ImageData(e.width,e.height)}catch{t=document.createElement("canvas").getContext("2d").createImageData(e.width,e.height)}return t.data.set(new Uint8ClampedArray(e.data)),t},xu=e=>new Promise((t,i)=>{let a=new Image;a.crossOrigin="Anonymous",a.onload=()=>{t(a)},a.onerror=n=>{i(n)},a.src=e}),yu=e=>{let t=du(e),i=su(e),{createWorker:a}=e.utils,n=(h,E,I)=>new Promise(y=>{h.ref.imageData||(h.ref.imageData=I.getContext("2d").getImageData(0,0,I.width,I.height));let T=Iu(h.ref.imageData);if(!E||E.length!==20)return I.getContext("2d").putImageData(T,0,0),y();let _=a(mu);_.post({imageData:T,colorMatrix:E},x=>{I.getContext("2d").putImageData(x,0,0),_.terminate(),y()},[T.data.buffer])}),l=(h,E)=>{h.removeChildView(E),E.image.width=1,E.image.height=1,E._destroy()},o=({root:h})=>{let E=h.ref.images.shift();return E.opacity=0,E.translateY=-15,h.ref.imageViewBin.push(E),E},r=({root:h,props:E,image:I})=>{let y=E.id,T=h.query("GET_ITEM",{id:y});if(!T)return;let _=T.getMetadata("crop")||{center:{x:.5,y:.5},flip:{horizontal:!1,vertical:!1},zoom:1,rotation:0,aspectRatio:null},x=h.query("GET_IMAGE_TRANSFORM_CANVAS_BACKGROUND_COLOR"),R,z,P=!1;h.query("GET_IMAGE_PREVIEW_MARKUP_SHOW")&&(R=T.getMetadata("markup")||[],z=T.getMetadata("resize"),P=!0);let A=h.appendChildView(h.createChildView(i,{id:y,image:I,crop:_,resize:z,markup:R,dirty:P,background:x,opacity:0,scaleX:1.15,scaleY:1.15,translateY:15}),h.childViews.length);h.ref.images.push(A),A.opacity=1,A.scaleX=1,A.scaleY=1,A.translateY=0,setTimeout(()=>{h.dispatch("DID_IMAGE_PREVIEW_SHOW",{id:y})},250)},s=({root:h,props:E})=>{let I=h.query("GET_ITEM",{id:E.id});if(!I)return;let y=h.ref.images[h.ref.images.length-1];y.crop=I.getMetadata("crop"),y.background=h.query("GET_IMAGE_TRANSFORM_CANVAS_BACKGROUND_COLOR"),h.query("GET_IMAGE_PREVIEW_MARKUP_SHOW")&&(y.dirty=!0,y.resize=I.getMetadata("resize"),y.markup=I.getMetadata("markup"))},p=({root:h,props:E,action:I})=>{if(!/crop|filter|markup|resize/.test(I.change.key)||!h.ref.images.length)return;let y=h.query("GET_ITEM",{id:E.id});if(y){if(/filter/.test(I.change.key)){let T=h.ref.images[h.ref.images.length-1];n(h,I.change.value,T.image);return}if(/crop|markup|resize/.test(I.change.key)){let T=y.getMetadata("crop"),_=h.ref.images[h.ref.images.length-1];if(T&&T.aspectRatio&&_.crop&&_.crop.aspectRatio&&Math.abs(T.aspectRatio-_.crop.aspectRatio)>1e-5){let x=o({root:h});r({root:h,props:E,image:vu(x.image)})}else s({root:h,props:E})}}},c=h=>{let I=window.navigator.userAgent.match(/Firefox\/([0-9]+)\./),y=I?parseInt(I[1]):null;return y!==null&&y<=58?!1:"createImageBitmap"in window&&so(h)},d=({root:h,props:E})=>{let{id:I}=E,y=h.query("GET_ITEM",I);if(!y)return;let T=URL.createObjectURL(y.file);uu(T,(_,x)=>{h.dispatch("DID_IMAGE_PREVIEW_CALCULATE_SIZE",{id:I,width:_,height:x})})},m=({root:h,props:E})=>{let{id:I}=E,y=h.query("GET_ITEM",I);if(!y)return;let T=URL.createObjectURL(y.file),_=()=>{xu(T).then(x)},x=R=>{URL.revokeObjectURL(T);let P=(y.getMetadata("exif")||{}).orientation||-1,{width:A,height:B}=R;if(!A||!B)return;P>=5&&P<=8&&([A,B]=[B,A]);let w=Math.max(1,window.devicePixelRatio*.75),S=h.query("GET_IMAGE_PREVIEW_ZOOM_FACTOR")*w,L=B/A,D=h.rect.element.width,O=h.rect.element.height,U=D,C=U*L;L>1?(U=Math.min(A,D*S),C=U*L):(C=Math.min(B,O*S),U=C/L);let X=hu(R,U,C,P),K=()=>{let ce=h.query("GET_IMAGE_PREVIEW_CALCULATE_AVERAGE_IMAGE_COLOR")?Tu(data):null;y.setMetadata("color",ce,!0),"close"in R&&R.close(),h.ref.overlayShadow.opacity=1,r({root:h,props:E,image:X})},Z=y.getMetadata("filter");Z?n(h,Z,X).then(K):K()};if(c(y.file)){let R=a(pu);R.post({file:y.file},z=>{if(R.terminate(),!z){_();return}x(z)})}else _()},u=({root:h})=>{let E=h.ref.images[h.ref.images.length-1];E.translateY=0,E.scaleX=1,E.scaleY=1,E.opacity=1},g=({root:h})=>{h.ref.overlayShadow.opacity=1,h.ref.overlayError.opacity=0,h.ref.overlaySuccess.opacity=0},f=({root:h})=>{h.ref.overlayShadow.opacity=.25,h.ref.overlayError.opacity=1},b=({root:h})=>{h.ref.overlayShadow.opacity=.25,h.ref.overlaySuccess.opacity=1},v=({root:h})=>{h.ref.images=[],h.ref.imageData=null,h.ref.imageViewBin=[],h.ref.overlayShadow=h.appendChildView(h.createChildView(t,{opacity:0,status:"idle"})),h.ref.overlaySuccess=h.appendChildView(h.createChildView(t,{opacity:0,status:"success"})),h.ref.overlayError=h.appendChildView(h.createChildView(t,{opacity:0,status:"failure"}))};return e.utils.createView({name:"image-preview-wrapper",create:v,styles:["height"],apis:["height"],destroy:({root:h})=>{h.ref.images.forEach(E=>{E.image.width=1,E.image.height=1})},didWriteView:({root:h})=>{h.ref.images.forEach(E=>{E.dirty=!1})},write:e.utils.createRoute({DID_IMAGE_PREVIEW_DRAW:u,DID_IMAGE_PREVIEW_CONTAINER_CREATE:d,DID_FINISH_CALCULATE_PREVIEWSIZE:m,DID_UPDATE_ITEM_METADATA:p,DID_THROW_ITEM_LOAD_ERROR:f,DID_THROW_ITEM_PROCESSING_ERROR:f,DID_THROW_ITEM_INVALID:f,DID_COMPLETE_ITEM_PROCESSING:b,DID_START_ITEM_PROCESSING:g,DID_REVERT_ITEM_PROCESSING:g},({root:h})=>{let E=h.ref.imageViewBin.filter(I=>I.opacity===0);h.ref.imageViewBin=h.ref.imageViewBin.filter(I=>I.opacity>0),E.forEach(I=>l(h,I)),E.length=0})})},co=e=>{let{addFilter:t,utils:i}=e,{Type:a,createRoute:n,isFile:l}=i,o=yu(e);return t("CREATE_VIEW",r=>{let{is:s,view:p,query:c}=r;if(!s("file")||!c("GET_ALLOW_IMAGE_PREVIEW"))return;let d=({root:b,props:v})=>{let{id:h}=v,E=c("GET_ITEM",h);if(!E||!l(E.file)||E.archived)return;let I=E.file;if(!Mm(I)||!c("GET_IMAGE_PREVIEW_FILTER_ITEM")(E))return;let y="createImageBitmap"in(window||{}),T=c("GET_IMAGE_PREVIEW_MAX_FILE_SIZE");if(!y&&T&&I.size>T)return;b.ref.imagePreview=p.appendChildView(p.createChildView(o,{id:h}));let _=b.query("GET_IMAGE_PREVIEW_HEIGHT");_&&b.dispatch("DID_UPDATE_PANEL_HEIGHT",{id:E.id,height:_});let x=!y&&I.size>c("GET_IMAGE_PREVIEW_MAX_INSTANT_PREVIEW_FILE_SIZE");b.dispatch("DID_IMAGE_PREVIEW_CONTAINER_CREATE",{id:h},x)},m=(b,v)=>{if(!b.ref.imagePreview)return;let{id:h}=v,E=b.query("GET_ITEM",{id:h});if(!E)return;let I=b.query("GET_PANEL_ASPECT_RATIO"),y=b.query("GET_ITEM_PANEL_ASPECT_RATIO"),T=b.query("GET_IMAGE_PREVIEW_HEIGHT");if(I||y||T)return;let{imageWidth:_,imageHeight:x}=b.ref;if(!_||!x)return;let R=b.query("GET_IMAGE_PREVIEW_MIN_HEIGHT"),z=b.query("GET_IMAGE_PREVIEW_MAX_HEIGHT"),A=(E.getMetadata("exif")||{}).orientation||-1;if(A>=5&&A<=8&&([_,x]=[x,_]),!so(E.file)||b.query("GET_IMAGE_PREVIEW_UPSCALE")){let D=2048/_;_*=D,x*=D}let B=x/_,w=(E.getMetadata("crop")||{}).aspectRatio||B,F=Math.max(R,Math.min(x,z)),S=b.rect.element.width,L=Math.min(S*w,F);b.dispatch("DID_UPDATE_PANEL_HEIGHT",{id:E.id,height:L})},u=({root:b})=>{b.ref.shouldRescale=!0},g=({root:b,action:v})=>{v.change.key==="crop"&&(b.ref.shouldRescale=!0)},f=({root:b,action:v})=>{b.ref.imageWidth=v.width,b.ref.imageHeight=v.height,b.ref.shouldRescale=!0,b.ref.shouldDrawPreview=!0,b.dispatch("KICK")};p.registerWriter(n({DID_RESIZE_ROOT:u,DID_STOP_RESIZE:u,DID_LOAD_ITEM:d,DID_IMAGE_PREVIEW_CALCULATE_SIZE:f,DID_UPDATE_ITEM_METADATA:g},({root:b,props:v})=>{b.ref.imagePreview&&(b.rect.element.hidden||(b.ref.shouldRescale&&(m(b,v),b.ref.shouldRescale=!1),b.ref.shouldDrawPreview&&(requestAnimationFrame(()=>{requestAnimationFrame(()=>{b.dispatch("DID_FINISH_CALCULATE_PREVIEWSIZE",{id:v.id})})}),b.ref.shouldDrawPreview=!1)))}))}),{options:{allowImagePreview:[!0,a.BOOLEAN],imagePreviewFilterItem:[()=>!0,a.FUNCTION],imagePreviewHeight:[null,a.INT],imagePreviewMinHeight:[44,a.INT],imagePreviewMaxHeight:[256,a.INT],imagePreviewMaxFileSize:[null,a.INT],imagePreviewZoomFactor:[2,a.INT],imagePreviewUpscale:[!1,a.BOOLEAN],imagePreviewMaxInstantPreviewFileSize:[1e6,a.INT],imagePreviewTransparencyIndicator:[null,a.STRING],imagePreviewCalculateAverageImageColor:[!1,a.BOOLEAN],imagePreviewMarkupShow:[!0,a.BOOLEAN],imagePreviewMarkupFilter:[()=>!0,a.FUNCTION]}}},Ru=typeof window<"u"&&typeof window.document<"u";Ru&&document.dispatchEvent(new CustomEvent("FilePond:pluginloaded",{detail:co}));var po=co;var Su=e=>/^image/.test(e.type),_u=(e,t)=>{let i=new Image;i.onload=()=>{let a=i.naturalWidth,n=i.naturalHeight;i=null,t({width:a,height:n})},i.onerror=()=>t(null),i.src=e},mo=({addFilter:e,utils:t})=>{let{Type:i}=t;return e("DID_LOAD_ITEM",(a,{query:n})=>new Promise((l,o)=>{let r=a.file;if(!Su(r)||!n("GET_ALLOW_IMAGE_RESIZE"))return l(a);let s=n("GET_IMAGE_RESIZE_MODE"),p=n("GET_IMAGE_RESIZE_TARGET_WIDTH"),c=n("GET_IMAGE_RESIZE_TARGET_HEIGHT"),d=n("GET_IMAGE_RESIZE_UPSCALE");if(p===null&&c===null)return l(a);let m=p===null?c:p,u=c===null?m:c,g=URL.createObjectURL(r);_u(g,f=>{if(URL.revokeObjectURL(g),!f)return l(a);let{width:b,height:v}=f,h=(a.getMetadata("exif")||{}).orientation||-1;if(h>=5&&h<=8&&([b,v]=[v,b]),b===m&&v===u)return l(a);if(!d){if(s==="cover"){if(b<=m||v<=u)return l(a)}else if(b<=m&&v<=m)return l(a)}a.setMetadata("resize",{mode:s,upscale:d,size:{width:m,height:u}}),l(a)})})),{options:{allowImageResize:[!0,i.BOOLEAN],imageResizeMode:["cover",i.STRING],imageResizeUpscale:[!0,i.BOOLEAN],imageResizeTargetWidth:[null,i.INT],imageResizeTargetHeight:[null,i.INT]}}},wu=typeof window<"u"&&typeof window.document<"u";wu&&document.dispatchEvent(new CustomEvent("FilePond:pluginloaded",{detail:mo}));var uo=mo;var Lu=e=>/^image/.test(e.type),Mu=e=>e.substr(0,e.lastIndexOf("."))||e,Au={jpeg:"jpg","svg+xml":"svg"},Pu=(e,t)=>{let i=Mu(e),a=t.split("/")[1],n=Au[a]||a;return`${i}.${n}`},zu=e=>/jpeg|png|svg\+xml/.test(e)?e:"image/jpeg",Fu=e=>/^image/.test(e.type),Ou={1:()=>[1,0,0,1,0,0],2:e=>[-1,0,0,1,e,0],3:(e,t)=>[-1,0,0,-1,e,t],4:(e,t)=>[1,0,0,-1,0,t],5:()=>[0,1,1,0,0,0],6:(e,t)=>[0,1,-1,0,t,0],7:(e,t)=>[0,-1,-1,0,t,e],8:e=>[0,-1,1,0,0,e]},Du=(e,t,i)=>(i===-1&&(i=1),Ou[i](e,t)),$t=(e,t)=>({x:e,y:t}),Cu=(e,t)=>e.x*t.x+e.y*t.y,go=(e,t)=>$t(e.x-t.x,e.y-t.y),Bu=(e,t)=>Cu(go(e,t),go(e,t)),fo=(e,t)=>Math.sqrt(Bu(e,t)),ho=(e,t)=>{let i=e,a=1.5707963267948966,n=t,l=1.5707963267948966-t,o=Math.sin(a),r=Math.sin(n),s=Math.sin(l),p=Math.cos(l),c=i/o,d=c*r,m=c*s;return $t(p*d,p*m)},ku=(e,t)=>{let i=e.width,a=e.height,n=ho(i,t),l=ho(a,t),o=$t(e.x+Math.abs(n.x),e.y-Math.abs(n.y)),r=$t(e.x+e.width+Math.abs(l.y),e.y+Math.abs(l.x)),s=$t(e.x-Math.abs(l.y),e.y+e.height-Math.abs(l.x));return{width:fo(o,r),height:fo(o,s)}},To=(e,t,i=0,a={x:.5,y:.5})=>{let n=a.x>.5?1-a.x:a.x,l=a.y>.5?1-a.y:a.y,o=n*2*e.width,r=l*2*e.height,s=ku(t,i);return Math.max(s.width/o,s.height/r)},vo=(e,t)=>{let i=e.width,a=i*t;a>e.height&&(a=e.height,i=a/t);let n=(e.width-i)*.5,l=(e.height-a)*.5;return{x:n,y:l,width:i,height:a}},bo=(e,t,i=1)=>{let a=e.height/e.width,n=1,l=t,o=1,r=a;r>l&&(r=l,o=r/a);let s=Math.max(n/o,l/r),p=e.width/(i*s*o),c=p*t;return{width:p,height:c}},Io=e=>{e.width=1,e.height=1,e.getContext("2d").clearRect(0,0,1,1)},Eo=e=>e&&(e.horizontal||e.vertical),Nu=(e,t,i)=>{if(t<=1&&!Eo(i))return e.width=e.naturalWidth,e.height=e.naturalHeight,e;let a=document.createElement("canvas"),n=e.naturalWidth,l=e.naturalHeight,o=t>=5&&t<=8;o?(a.width=l,a.height=n):(a.width=n,a.height=l);let r=a.getContext("2d");if(t&&r.transform.apply(r,Du(n,l,t)),Eo(i)){let s=[1,0,0,1,0,0];(!o&&i.horizontal||o&i.vertical)&&(s[0]=-1,s[4]=n),(!o&&i.vertical||o&&i.horizontal)&&(s[3]=-1,s[5]=l),r.transform(...s)}return r.drawImage(e,0,0,n,l),a},Vu=(e,t,i={},a={})=>{let{canvasMemoryLimit:n,background:l=null}=a,o=i.zoom||1,r=Nu(e,t,i.flip),s={width:r.width,height:r.height},p=i.aspectRatio||s.height/s.width,c=bo(s,p,o);if(n){let E=c.width*c.height;if(E>n){let I=Math.sqrt(n)/Math.sqrt(E);s.width=Math.floor(s.width*I),s.height=Math.floor(s.height*I),c=bo(s,p,o)}}let d=document.createElement("canvas"),m={x:c.width*.5,y:c.height*.5},u={x:0,y:0,width:c.width,height:c.height,center:m},g=typeof i.scaleToFit>"u"||i.scaleToFit,f=o*To(s,vo(u,p),i.rotation,g?i.center:{x:.5,y:.5});d.width=Math.round(c.width/f),d.height=Math.round(c.height/f),m.x/=f,m.y/=f;let b={x:m.x-s.width*(i.center?i.center.x:.5),y:m.y-s.height*(i.center?i.center.y:.5)},v=d.getContext("2d");l&&(v.fillStyle=l,v.fillRect(0,0,d.width,d.height)),v.translate(m.x,m.y),v.rotate(i.rotation||0),v.drawImage(r,b.x-m.x,b.y-m.y,s.width,s.height);let h=v.getImageData(0,0,d.width,d.height);return Io(d),h},Gu=typeof window<"u"&&typeof window.document<"u";Gu&&(HTMLCanvasElement.prototype.toBlob||Object.defineProperty(HTMLCanvasElement.prototype,"toBlob",{value:function(e,t,i){var a=this.toDataURL(t,i).split(",")[1];setTimeout(function(){for(var n=atob(a),l=n.length,o=new Uint8Array(l),r=0;rnew Promise(a=>{let n=i?i(e):e;Promise.resolve(n).then(l=>{l.toBlob(a,t.type,t.quality)})}),Ri=(e,t)=>Xt(e.x*t,e.y*t),Si=(e,t)=>Xt(e.x+t.x,e.y+t.y),xo=e=>{let t=Math.sqrt(e.x*e.x+e.y*e.y);return t===0?{x:0,y:0}:Xt(e.x/t,e.y/t)},qe=(e,t,i)=>{let a=Math.cos(t),n=Math.sin(t),l=Xt(e.x-i.x,e.y-i.y);return Xt(i.x+a*l.x-n*l.y,i.y+n*l.x+a*l.y)},Xt=(e=0,t=0)=>({x:e,y:t}),me=(e,t,i=1,a)=>{if(typeof e=="string")return parseFloat(e)*i;if(typeof e=="number")return e*(a?t[a]:Math.min(t.width,t.height))},dt=(e,t,i)=>{let a=e.borderStyle||e.lineStyle||"solid",n=e.backgroundColor||e.fontColor||"transparent",l=e.borderColor||e.lineColor||"transparent",o=me(e.borderWidth||e.lineWidth,t,i),r=e.lineCap||"round",s=e.lineJoin||"round",p=typeof a=="string"?"":a.map(d=>me(d,t,i)).join(","),c=e.opacity||1;return{"stroke-linecap":r,"stroke-linejoin":s,"stroke-width":o||0,"stroke-dasharray":p,stroke:l,fill:n,opacity:c}},Le=e=>e!=null,Lt=(e,t,i=1)=>{let a=me(e.x,t,i,"width")||me(e.left,t,i,"width"),n=me(e.y,t,i,"height")||me(e.top,t,i,"height"),l=me(e.width,t,i,"width"),o=me(e.height,t,i,"height"),r=me(e.right,t,i,"width"),s=me(e.bottom,t,i,"height");return Le(n)||(Le(o)&&Le(s)?n=t.height-o-s:n=s),Le(a)||(Le(l)&&Le(r)?a=t.width-l-r:a=r),Le(l)||(Le(a)&&Le(r)?l=t.width-a-r:l=0),Le(o)||(Le(n)&&Le(s)?o=t.height-n-s:o=0),{x:a||0,y:n||0,width:l||0,height:o||0}},Hu=e=>e.map((t,i)=>`${i===0?"M":"L"} ${t.x} ${t.y}`).join(" "),ke=(e,t)=>Object.keys(t).forEach(i=>e.setAttribute(i,t[i])),Wu="http://www.w3.org/2000/svg",wt=(e,t)=>{let i=document.createElementNS(Wu,e);return t&&ke(i,t),i},ju=e=>ke(e,{...e.rect,...e.styles}),Yu=e=>{let t=e.rect.x+e.rect.width*.5,i=e.rect.y+e.rect.height*.5,a=e.rect.width*.5,n=e.rect.height*.5;return ke(e,{cx:t,cy:i,rx:a,ry:n,...e.styles})},qu={contain:"xMidYMid meet",cover:"xMidYMid slice"},$u=(e,t)=>{ke(e,{...e.rect,...e.styles,preserveAspectRatio:qu[t.fit]||"none"})},Xu={left:"start",center:"middle",right:"end"},Ku=(e,t,i,a)=>{let n=me(t.fontSize,i,a),l=t.fontFamily||"sans-serif",o=t.fontWeight||"normal",r=Xu[t.textAlign]||"start";ke(e,{...e.rect,...e.styles,"stroke-width":0,"font-weight":o,"font-size":n,"font-family":l,"text-anchor":r}),e.text!==t.text&&(e.text=t.text,e.textContent=t.text.length?t.text:" ")},Zu=(e,t,i,a)=>{ke(e,{...e.rect,...e.styles,fill:"none"});let n=e.childNodes[0],l=e.childNodes[1],o=e.childNodes[2],r=e.rect,s={x:e.rect.x+e.rect.width,y:e.rect.y+e.rect.height};if(ke(n,{x1:r.x,y1:r.y,x2:s.x,y2:s.y}),!t.lineDecoration)return;l.style.display="none",o.style.display="none";let p=xo({x:s.x-r.x,y:s.y-r.y}),c=me(.05,i,a);if(t.lineDecoration.indexOf("arrow-begin")!==-1){let d=Ri(p,c),m=Si(r,d),u=qe(r,2,m),g=qe(r,-2,m);ke(l,{style:"display:block;",d:`M${u.x},${u.y} L${r.x},${r.y} L${g.x},${g.y}`})}if(t.lineDecoration.indexOf("arrow-end")!==-1){let d=Ri(p,-c),m=Si(s,d),u=qe(s,2,m),g=qe(s,-2,m);ke(o,{style:"display:block;",d:`M${u.x},${u.y} L${s.x},${s.y} L${g.x},${g.y}`})}},Qu=(e,t,i,a)=>{ke(e,{...e.styles,fill:"none",d:Hu(t.points.map(n=>({x:me(n.x,i,a,"width"),y:me(n.y,i,a,"height")})))})},yi=e=>t=>wt(e,{id:t.id}),Ju=e=>{let t=wt("image",{id:e.id,"stroke-linecap":"round","stroke-linejoin":"round",opacity:"0"});return t.onload=()=>{t.setAttribute("opacity",e.opacity||1)},t.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",e.src),t},eg=e=>{let t=wt("g",{id:e.id,"stroke-linecap":"round","stroke-linejoin":"round"}),i=wt("line");t.appendChild(i);let a=wt("path");t.appendChild(a);let n=wt("path");return t.appendChild(n),t},tg={image:Ju,rect:yi("rect"),ellipse:yi("ellipse"),text:yi("text"),path:yi("path"),line:eg},ig={rect:ju,ellipse:Yu,image:$u,text:Ku,path:Qu,line:Zu},ag=(e,t)=>tg[e](t),ng=(e,t,i,a,n)=>{t!=="path"&&(e.rect=Lt(i,a,n)),e.styles=dt(i,a,n),ig[t](e,i,a,n)},yo=(e,t)=>e[1].zIndex>t[1].zIndex?1:e[1].zIndexnew Promise(n=>{let{background:l=null}=a,o=new FileReader;o.onloadend=()=>{let r=o.result,s=document.createElement("div");s.style.cssText="position:absolute;pointer-events:none;width:0;height:0;visibility:hidden;",s.innerHTML=r;let p=s.querySelector("svg");document.body.appendChild(s);let c=p.getBBox();s.parentNode.removeChild(s);let d=s.querySelector("title"),m=p.getAttribute("viewBox")||"",u=p.getAttribute("width")||"",g=p.getAttribute("height")||"",f=parseFloat(u)||null,b=parseFloat(g)||null,v=(u.match(/[a-z]+/)||[])[0]||"",h=(g.match(/[a-z]+/)||[])[0]||"",E=m.split(" ").map(parseFloat),I=E.length?{x:E[0],y:E[1],width:E[2],height:E[3]}:c,y=f??I.width,T=b??I.height;p.style.overflow="visible",p.setAttribute("width",y),p.setAttribute("height",T);let _="";if(i&&i.length){let Z={width:y,height:T};_=i.sort(yo).reduce((ce,V)=>{let W=ag(V[0],V[1]);return ng(W,V[0],V[1],Z),W.removeAttribute("id"),W.getAttribute("opacity")===1&&W.removeAttribute("opacity"),ce+` +`+W.outerHTML+` +`},""),_=` + +${_.replace(/ /g," ")} + +`}let x=t.aspectRatio||T/y,R=y,z=R*x,P=typeof t.scaleToFit>"u"||t.scaleToFit,A=t.center?t.center.x:.5,B=t.center?t.center.y:.5,w=To({width:y,height:T},vo({width:R,height:z},x),t.rotation,P?{x:A,y:B}:{x:.5,y:.5}),F=t.zoom*w,S=t.rotation*(180/Math.PI),L={x:R*.5,y:z*.5},D={x:L.x-y*A,y:L.y-T*B},O=[`rotate(${S} ${L.x} ${L.y})`,`translate(${L.x} ${L.y})`,`scale(${F})`,`translate(${-L.x} ${-L.y})`,`translate(${D.x} ${D.y})`],U=t.flip&&t.flip.horizontal,C=t.flip&&t.flip.vertical,X=[`scale(${U?-1:1} ${C?-1:1})`,`translate(${U?-y:0} ${C?-T:0})`],K=` + + +${d?d.textContent:""} + + +${p.outerHTML}${_} + + +`;n(K)},o.readAsText(e)}),og=e=>{let t;try{t=new ImageData(e.width,e.height)}catch{t=document.createElement("canvas").getContext("2d").createImageData(e.width,e.height)}return t.data.set(e.data),t},rg=()=>{let e={resize:c,filter:p},t=(d,m)=>(d.forEach(u=>{m=e[u.type](m,u.data)}),m),i=(d,m)=>{let u=d.transforms,g=null;if(u.forEach(f=>{f.type==="filter"&&(g=f)}),g){let f=null;u.forEach(b=>{b.type==="resize"&&(f=b)}),f&&(f.data.matrix=g.data,u=u.filter(b=>b.type!=="filter"))}m(t(u,d.imageData))};self.onmessage=d=>{i(d.data.message,m=>{self.postMessage({id:d.data.id,message:m},[m.data.buffer])})};let a=1,n=1,l=1;function o(d,m,u){let g=m[d]/255,f=m[d+1]/255,b=m[d+2]/255,v=m[d+3]/255,h=g*u[0]+f*u[1]+b*u[2]+v*u[3]+u[4],E=g*u[5]+f*u[6]+b*u[7]+v*u[8]+u[9],I=g*u[10]+f*u[11]+b*u[12]+v*u[13]+u[14],y=g*u[15]+f*u[16]+b*u[17]+v*u[18]+u[19],T=Math.max(0,h*y)+a*(1-y),_=Math.max(0,E*y)+n*(1-y),x=Math.max(0,I*y)+l*(1-y);m[d]=Math.max(0,Math.min(1,T))*255,m[d+1]=Math.max(0,Math.min(1,_))*255,m[d+2]=Math.max(0,Math.min(1,x))*255}let r=self.JSON.stringify([1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0]);function s(d){return self.JSON.stringify(d||[])===r}function p(d,m){if(!m||s(m))return d;let u=d.data,g=u.length,f=m[0],b=m[1],v=m[2],h=m[3],E=m[4],I=m[5],y=m[6],T=m[7],_=m[8],x=m[9],R=m[10],z=m[11],P=m[12],A=m[13],B=m[14],w=m[15],F=m[16],S=m[17],L=m[18],D=m[19],O=0,U=0,C=0,X=0,K=0,Z=0,ce=0,V=0,W=0,$=0,ie=0,ee=0;for(;O1&&g===!1)return p(d,v);f=d.width*w,b=d.height*w}let h=d.width,E=d.height,I=Math.round(f),y=Math.round(b),T=d.data,_=new Uint8ClampedArray(I*y*4),x=h/I,R=E/y,z=Math.ceil(x*.5),P=Math.ceil(R*.5);for(let A=0;A=-1&&ie<=1&&(F=2*ie*ie*ie-3*ie*ie+1,F>0)){$=4*(W+K*h);let ee=T[$+3];C+=F*ee,L+=F,ee<255&&(F=F*ee/250),D+=F*T[$],O+=F*T[$+1],U+=F*T[$+2],S+=F}}}_[w]=D/S,_[w+1]=O/S,_[w+2]=U/S,_[w+3]=C/L,v&&o(w,_,v)}return{data:_,width:I,height:y}}},sg=(e,t)=>{if(e.getUint32(t+4,!1)!==1165519206)return;t+=4;let i=e.getUint16(t+=6,!1)===18761;t+=e.getUint32(t+4,i);let a=e.getUint16(t,i);t+=2;for(let n=0;n{let t=new DataView(e);if(t.getUint16(0)!==65496)return null;let i=2,a,n,l=!1;for(;i=65504&&a<=65519||a===65534)||(l||(l=sg(t,i,n)),i+n>t.byteLength)));)i+=n;return e.slice(0,i)},dg=e=>new Promise(t=>{let i=new FileReader;i.onload=()=>t(cg(i.result)||null),i.readAsArrayBuffer(e.slice(0,256*1024))}),pg=()=>window.BlobBuilder=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder||window.MSBlobBuilder,mg=(e,t)=>{let i=pg();if(i){let a=new i;return a.append(e),a.getBlob(t)}return new Blob([e],{type:t})},ug=()=>Math.random().toString(36).substr(2,9),gg=e=>{let t=new Blob(["(",e.toString(),")()"],{type:"application/javascript"}),i=URL.createObjectURL(t),a=new Worker(i),n=[];return{transfer:()=>{},post:(l,o,r)=>{let s=ug();n[s]=o,a.onmessage=p=>{let c=n[p.data.id];c&&(c(p.data.message),delete n[p.data.id])},a.postMessage({id:s,message:l},r)},terminate:()=>{a.terminate(),URL.revokeObjectURL(i)}}},fg=e=>new Promise((t,i)=>{let a=new Image;a.onload=()=>{t(a)},a.onerror=n=>{i(n)},a.src=e}),hg=e=>e.reduce((t,i)=>t.then(a=>i().then(Array.prototype.concat.bind(a))),Promise.resolve([])),bg=(e,t)=>new Promise(i=>{let a={width:e.width,height:e.height},n=e.getContext("2d"),l=t.sort(yo).map(o=>()=>new Promise(r=>{Rg[o[0]](n,a,o[1],r)&&r()}));hg(l).then(()=>i(e))}),Mt=(e,t)=>{e.beginPath(),e.lineCap=t["stroke-linecap"],e.lineJoin=t["stroke-linejoin"],e.lineWidth=t["stroke-width"],t["stroke-dasharray"].length&&e.setLineDash(t["stroke-dasharray"].split(",")),e.fillStyle=t.fill,e.strokeStyle=t.stroke,e.globalAlpha=t.opacity||1},At=e=>{e.fill(),e.stroke(),e.globalAlpha=1},Eg=(e,t,i)=>{let a=Lt(i,t),n=dt(i,t);return Mt(e,n),e.rect(a.x,a.y,a.width,a.height),At(e,n),!0},Tg=(e,t,i)=>{let a=Lt(i,t),n=dt(i,t);Mt(e,n);let l=a.x,o=a.y,r=a.width,s=a.height,p=.5522848,c=r/2*p,d=s/2*p,m=l+r,u=o+s,g=l+r/2,f=o+s/2;return e.moveTo(l,f),e.bezierCurveTo(l,f-d,g-c,o,g,o),e.bezierCurveTo(g+c,o,m,f-d,m,f),e.bezierCurveTo(m,f+d,g+c,u,g,u),e.bezierCurveTo(g-c,u,l,f+d,l,f),At(e,n),!0},vg=(e,t,i,a)=>{let n=Lt(i,t),l=dt(i,t);Mt(e,l);let o=new Image;new URL(i.src,window.location.href).origin!==window.location.origin&&(o.crossOrigin=""),o.onload=()=>{if(i.fit==="cover"){let s=n.width/n.height,p=s>1?o.width:o.height*s,c=s>1?o.width/s:o.height,d=o.width*.5-p*.5,m=o.height*.5-c*.5;e.drawImage(o,d,m,p,c,n.x,n.y,n.width,n.height)}else if(i.fit==="contain"){let s=Math.min(n.width/o.width,n.height/o.height),p=s*o.width,c=s*o.height,d=n.x+n.width*.5-p*.5,m=n.y+n.height*.5-c*.5;e.drawImage(o,0,0,o.width,o.height,d,m,p,c)}else e.drawImage(o,0,0,o.width,o.height,n.x,n.y,n.width,n.height);At(e,l),a()},o.src=i.src},Ig=(e,t,i)=>{let a=Lt(i,t),n=dt(i,t);Mt(e,n);let l=me(i.fontSize,t),o=i.fontFamily||"sans-serif",r=i.fontWeight||"normal",s=i.textAlign||"left";return e.font=`${r} ${l}px ${o}`,e.textAlign=s,e.fillText(i.text,a.x,a.y),At(e,n),!0},xg=(e,t,i)=>{let a=dt(i,t);Mt(e,a),e.beginPath();let n=i.points.map(o=>({x:me(o.x,t,1,"width"),y:me(o.y,t,1,"height")}));e.moveTo(n[0].x,n[0].y);let l=n.length;for(let o=1;o{let a=Lt(i,t),n=dt(i,t);Mt(e,n),e.beginPath();let l={x:a.x,y:a.y},o={x:a.x+a.width,y:a.y+a.height};e.moveTo(l.x,l.y),e.lineTo(o.x,o.y);let r=xo({x:o.x-l.x,y:o.y-l.y}),s=.04*Math.min(t.width,t.height);if(i.lineDecoration.indexOf("arrow-begin")!==-1){let p=Ri(r,s),c=Si(l,p),d=qe(l,2,c),m=qe(l,-2,c);e.moveTo(d.x,d.y),e.lineTo(l.x,l.y),e.lineTo(m.x,m.y)}if(i.lineDecoration.indexOf("arrow-end")!==-1){let p=Ri(r,-s),c=Si(o,p),d=qe(o,2,c),m=qe(o,-2,c);e.moveTo(d.x,d.y),e.lineTo(o.x,o.y),e.lineTo(m.x,m.y)}return At(e,n),!0},Rg={rect:Eg,ellipse:Tg,image:vg,text:Ig,line:yg,path:xg},Sg=e=>{let t=document.createElement("canvas");return t.width=e.width,t.height=e.height,t.getContext("2d").putImageData(e,0,0),t},_g=(e,t,i={})=>new Promise((a,n)=>{if(!e||!Fu(e))return n({status:"not an image file",file:e});let{stripImageHead:l,beforeCreateBlob:o,afterCreateBlob:r,canvasMemoryLimit:s}=i,{crop:p,size:c,filter:d,markup:m,output:u}=t,g=t.image&&t.image.orientation?Math.max(1,Math.min(8,t.image.orientation)):null,f=u&&u.quality,b=f===null?null:f/100,v=u&&u.type||null,h=u&&u.background||null,E=[];c&&(typeof c.width=="number"||typeof c.height=="number")&&E.push({type:"resize",data:c}),d&&d.length===20&&E.push({type:"filter",data:d});let I=_=>{let x=r?r(_):_;Promise.resolve(x).then(a)},y=(_,x)=>{let R=Sg(_),z=m.length?bg(R,m):R;Promise.resolve(z).then(P=>{Uu(P,x,o).then(A=>{if(Io(P),l)return I(A);dg(e).then(B=>{B!==null&&(A=new Blob([B,A.slice(20)],{type:A.type})),I(A)})}).catch(n)})};if(/svg/.test(e.type)&&v===null)return lg(e,p,m,{background:h}).then(_=>{a(mg(_,"image/svg+xml"))});let T=URL.createObjectURL(e);fg(T).then(_=>{URL.revokeObjectURL(T);let x=Vu(_,g,p,{canvasMemoryLimit:s,background:h}),R={quality:b,type:v||e.type};if(!E.length)return y(x,R);let z=gg(rg);z.post({transforms:E,imageData:x},P=>{y(og(P),R),z.terminate()},[x.data.buffer])}).catch(n)}),wg=["x","y","left","top","right","bottom","width","height"],Lg=e=>typeof e=="string"&&/%/.test(e)?parseFloat(e)/100:e,Mg=e=>{let[t,i]=e,a=i.points?{}:wg.reduce((n,l)=>(n[l]=Lg(i[l]),n),{});return[t,{zIndex:0,...i,...a}]},Ag=e=>new Promise((t,i)=>{let a=new Image;a.src=URL.createObjectURL(e);let n=()=>{let o=a.naturalWidth,r=a.naturalHeight;o&&r&&(URL.revokeObjectURL(a.src),clearInterval(l),t({width:o,height:r}))};a.onerror=o=>{URL.revokeObjectURL(a.src),clearInterval(l),i(o)};let l=setInterval(n,1);n()});typeof window<"u"&&typeof window.document<"u"&&(HTMLCanvasElement.prototype.toBlob||Object.defineProperty(HTMLCanvasElement.prototype,"toBlob",{value:function(e,t,i){let a=this;setTimeout(()=>{let n=a.toDataURL(t,i).split(",")[1],l=atob(n),o=l.length,r=new Uint8Array(o);for(;o--;)r[o]=l.charCodeAt(o);e(new Blob([r],{type:t||"image/png"}))})}}));var wa=typeof window<"u"&&typeof window.document<"u",Pg=wa&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream,Ro=({addFilter:e,utils:t})=>{let{Type:i,forin:a,getFileFromBlob:n,isFile:l}=t,o=["crop","resize","filter","markup","output"],r=c=>(d,m,u)=>d(m,c?c(u):u),s=c=>c.aspectRatio===null&&c.rotation===0&&c.zoom===1&&c.center&&c.center.x===.5&&c.center.y===.5&&c.flip&&c.flip.horizontal===!1&&c.flip.vertical===!1;e("SHOULD_PREPARE_OUTPUT",(c,{query:d})=>new Promise(m=>{m(!d("IS_ASYNC"))}));let p=(c,d,m)=>new Promise(u=>{if(!c("GET_ALLOW_IMAGE_TRANSFORM")||m.archived||!l(d)||!Lu(d))return u(!1);Ag(d).then(()=>{let g=c("GET_IMAGE_TRANSFORM_IMAGE_FILTER");if(g){let f=g(d);if(f==null)return handleRevert(!0);if(typeof f=="boolean")return u(f);if(typeof f.then=="function")return f.then(u)}u(!0)}).catch(g=>{u(!1)})});return e("DID_CREATE_ITEM",(c,{query:d,dispatch:m})=>{d("GET_ALLOW_IMAGE_TRANSFORM")&&c.extend("requestPrepare",()=>new Promise((u,g)=>{m("REQUEST_PREPARE_OUTPUT",{query:c.id,item:c,success:u,failure:g},!0)}))}),e("PREPARE_OUTPUT",(c,{query:d,item:m})=>new Promise(u=>{p(d,c,m).then(g=>{if(!g)return u(c);let f=[];d("GET_IMAGE_TRANSFORM_VARIANTS_INCLUDE_ORIGINAL")&&f.push(()=>new Promise(x=>{x({name:d("GET_IMAGE_TRANSFORM_VARIANTS_ORIGINAL_NAME"),file:c})})),d("GET_IMAGE_TRANSFORM_VARIANTS_INCLUDE_DEFAULT")&&f.push((x,R,z)=>new Promise(P=>{x(R,z).then(A=>P({name:d("GET_IMAGE_TRANSFORM_VARIANTS_DEFAULT_NAME"),file:A}))}));let b=d("GET_IMAGE_TRANSFORM_VARIANTS")||{};a(b,(x,R)=>{let z=r(R);f.push((P,A,B)=>new Promise(w=>{z(P,A,B).then(F=>w({name:x,file:F}))}))});let v=d("GET_IMAGE_TRANSFORM_OUTPUT_QUALITY"),h=d("GET_IMAGE_TRANSFORM_OUTPUT_QUALITY_MODE"),E=v===null?null:v/100,I=d("GET_IMAGE_TRANSFORM_OUTPUT_MIME_TYPE"),y=d("GET_IMAGE_TRANSFORM_CLIENT_TRANSFORMS")||o;m.setMetadata("output",{type:I,quality:E,client:y},!0);let T=(x,R)=>new Promise((z,P)=>{let A={...R};Object.keys(A).filter(C=>C!=="exif").forEach(C=>{y.indexOf(C)===-1&&delete A[C]});let{resize:B,exif:w,output:F,crop:S,filter:L,markup:D}=A,O={image:{orientation:w?w.orientation:null},output:F&&(F.type||typeof F.quality=="number"||F.background)?{type:F.type,quality:typeof F.quality=="number"?F.quality*100:null,background:F.background||d("GET_IMAGE_TRANSFORM_CANVAS_BACKGROUND_COLOR")||null}:void 0,size:B&&(B.size.width||B.size.height)?{mode:B.mode,upscale:B.upscale,...B.size}:void 0,crop:S&&!s(S)?{...S}:void 0,markup:D&&D.length?D.map(Mg):[],filter:L};if(O.output){let C=F.type?F.type!==x.type:!1,X=/\/jpe?g$/.test(x.type),K=F.quality!==null?X&&h==="always":!1;if(!!!(O.size||O.crop||O.filter||C||K))return z(x)}let U={beforeCreateBlob:d("GET_IMAGE_TRANSFORM_BEFORE_CREATE_BLOB"),afterCreateBlob:d("GET_IMAGE_TRANSFORM_AFTER_CREATE_BLOB"),canvasMemoryLimit:d("GET_IMAGE_TRANSFORM_CANVAS_MEMORY_LIMIT"),stripImageHead:d("GET_IMAGE_TRANSFORM_OUTPUT_STRIP_IMAGE_HEAD")};_g(x,O,U).then(C=>{let X=n(C,Pu(x.name,zu(C.type)));z(X)}).catch(P)}),_=f.map(x=>x(T,c,m.getMetadata()));Promise.all(_).then(x=>{u(x.length===1&&x[0].name===null?x[0].file:x)})})})),{options:{allowImageTransform:[!0,i.BOOLEAN],imageTransformImageFilter:[null,i.FUNCTION],imageTransformOutputMimeType:[null,i.STRING],imageTransformOutputQuality:[null,i.INT],imageTransformOutputStripImageHead:[!0,i.BOOLEAN],imageTransformClientTransforms:[null,i.ARRAY],imageTransformOutputQualityMode:["always",i.STRING],imageTransformVariants:[null,i.OBJECT],imageTransformVariantsIncludeDefault:[!0,i.BOOLEAN],imageTransformVariantsDefaultName:[null,i.STRING],imageTransformVariantsIncludeOriginal:[!1,i.BOOLEAN],imageTransformVariantsOriginalName:["original_",i.STRING],imageTransformBeforeCreateBlob:[null,i.FUNCTION],imageTransformAfterCreateBlob:[null,i.FUNCTION],imageTransformCanvasMemoryLimit:[wa&&Pg?4096*4096:null,i.INT],imageTransformCanvasBackgroundColor:[null,i.STRING]}}};wa&&document.dispatchEvent(new CustomEvent("FilePond:pluginloaded",{detail:Ro}));var So=Ro;var La=e=>/^video/.test(e.type),Kt=e=>/^audio/.test(e.type),Ma=class{constructor(t,i){this.mediaEl=t,this.audioElements=i,this.onPlayhead=!1,this.duration=0,this.timelineWidth=this.audioElements.timeline.offsetWidth-this.audioElements.playhead.offsetWidth,this.movePlayheadHandler=this.movePlayhead.bind(this),this.registerListeners()}registerListeners(){this.mediaEl.addEventListener("timeupdate",this.timeUpdate.bind(this),!1),this.mediaEl.addEventListener("canplaythrough",()=>this.duration=this.mediaEl.duration,!1),this.audioElements.timeline.addEventListener("click",this.timelineClicked.bind(this),!1),this.audioElements.button.addEventListener("click",this.play.bind(this)),this.audioElements.playhead.addEventListener("mousedown",this.mouseDown.bind(this),!1),window.addEventListener("mouseup",this.mouseUp.bind(this),!1)}play(){this.mediaEl.paused?this.mediaEl.play():this.mediaEl.pause(),this.audioElements.button.classList.toggle("play"),this.audioElements.button.classList.toggle("pause")}timeUpdate(){let t=this.mediaEl.currentTime/this.duration*100;this.audioElements.playhead.style.marginLeft=`${t}%`,this.mediaEl.currentTime===this.duration&&(this.audioElements.button.classList.toggle("play"),this.audioElements.button.classList.toggle("pause"))}movePlayhead(t){let i=t.clientX-this.getPosition(this.audioElements.timeline);i>=0&&i<=this.timelineWidth&&(this.audioElements.playhead.style.marginLeft=`${i}px`),i<0&&(this.audioElements.playhead.style.marginLeft="0px"),i>this.timelineWidth&&(this.audioElements.playhead.style.marginLeft=`${this.timelineWidth-4}px`)}timelineClicked(t){this.movePlayhead(t),this.mediaEl.currentTime=this.duration*this.clickPercent(t)}mouseDown(){this.onPlayhead=!0,window.addEventListener("mousemove",this.movePlayheadHandler,!0),this.mediaEl.removeEventListener("timeupdate",this.timeUpdate.bind(this),!1)}mouseUp(t){window.removeEventListener("mousemove",this.movePlayheadHandler,!0),this.onPlayhead&&(this.movePlayhead(t),this.mediaEl.currentTime=this.duration*this.clickPercent(t),this.mediaEl.addEventListener("timeupdate",this.timeUpdate.bind(this),!1)),this.onPlayhead=!1}clickPercent(t){return(t.clientX-this.getPosition(this.audioElements.timeline))/this.timelineWidth}getPosition(t){return t.getBoundingClientRect().left}},zg=e=>e.utils.createView({name:"media-preview",tag:"div",ignoreRect:!0,create:({root:t,props:i})=>{let a=t.query("GET_ITEM",{id:i.id}),n=Kt(a.file)?"audio":"video";if(t.ref.media=document.createElement(n),t.ref.media.setAttribute("controls",!0),t.element.appendChild(t.ref.media),Kt(a.file)){let l=document.createDocumentFragment();t.ref.audio=[],t.ref.audio.container=document.createElement("div"),t.ref.audio.button=document.createElement("span"),t.ref.audio.timeline=document.createElement("div"),t.ref.audio.playhead=document.createElement("div"),t.ref.audio.container.className="audioplayer",t.ref.audio.button.className="playpausebtn play",t.ref.audio.timeline.className="timeline",t.ref.audio.playhead.className="playhead",t.ref.audio.timeline.appendChild(t.ref.audio.playhead),t.ref.audio.container.appendChild(t.ref.audio.button),t.ref.audio.container.appendChild(t.ref.audio.timeline),l.appendChild(t.ref.audio.container),t.element.appendChild(l)}},write:e.utils.createRoute({DID_MEDIA_PREVIEW_LOAD:({root:t,props:i})=>{let{id:a,mediaPreviewHeight:n}=i,l=t.query("GET_ITEM",{id:a});if(!l)return;let o=window.URL||window.webkitURL,r=new Blob([l.file],{type:l.file.type});t.ref.media.type=l.file.type,t.ref.media.src=l.file.mock&&l.file.url||o.createObjectURL(r),Kt(l.file)&&new Ma(t.ref.media,t.ref.audio),t.ref.media.addEventListener("loadeddata",()=>{let s=75;if(La(l.file))if(n)s=n,t.element.querySelector("video").style.height=`${s}px`;else{let p=t.ref.media.offsetWidth,c=t.ref.media.videoWidth/p;s=t.ref.media.videoHeight/c}t.dispatch("DID_UPDATE_PANEL_HEIGHT",{id:a,height:s})},!1)}})}),Fg=e=>{let t=({root:a,props:n})=>{a.query("GET_ITEM",n.id)&&a.dispatch("DID_MEDIA_PREVIEW_LOAD",{id:n.id,mediaPreviewHeight:n.mediaPreviewHeight})},i=({root:a,props:n})=>{let l=zg(e);a.ref.media=a.appendChildView(a.createChildView(l,{id:n.id,mediaPreviewHeight:n.mediaPreviewHeight}))};return e.utils.createView({name:"media-preview-wrapper",create:i,write:e.utils.createRoute({DID_MEDIA_PREVIEW_CONTAINER_CREATE:t})})},_o=e=>{let{addFilter:t,utils:i}=e,{Type:a,createRoute:n}=i,l=Fg(e);return t("CREATE_VIEW",o=>{let{is:r,view:s,query:p}=o;if(!r("file"))return;let c=({root:d,props:m})=>{let u=p("GET_ITEM",m.id),g=p("GET_ALLOW_VIDEO_PREVIEW"),f=p("GET_ALLOW_AUDIO_PREVIEW"),b=p("GET_MEDIA_PREVIEW_HEIGHT");!u||u.archived||(!La(u.file)||!g)&&(!Kt(u.file)||!f)||(d.ref.mediaPreview=s.appendChildView(s.createChildView(l,{id:m.id,mediaPreviewHeight:b})),d.dispatch("DID_MEDIA_PREVIEW_CONTAINER_CREATE",{id:m.id}))};s.registerWriter(n({DID_LOAD_ITEM:c},({root:d,props:m})=>{let u=p("GET_ITEM",m.id),g=d.query("GET_ALLOW_VIDEO_PREVIEW"),f=d.query("GET_ALLOW_AUDIO_PREVIEW");!u||(!La(u.file)||!g)&&(!Kt(u.file)||!f)||d.rect.element.hidden}))}),{options:{allowVideoPreview:[!0,a.BOOLEAN],allowAudioPreview:[!0,a.BOOLEAN],mediaPreviewHeight:[null,a.INT]}}};typeof window<"u"&&typeof window.document<"u"&&document.dispatchEvent(new CustomEvent("FilePond:pluginloaded",{detail:_o}));var wo=_o;var Lo={labelIdle:'\u134B\u12ED\u120E\u127D \u1235\u1260\u12CD \u12A5\u12DA\u1205 \u130B\u122D \u12ED\u120D\u1240\u1241\u1275 \u12C8\u12ED\u121D \u134B\u12ED\u1209\u1295 \u12ED\u121D\u1228\u1321 ',labelInvalidField:"\u1218\u1235\u12A9 \u120D\u12AD \u12EB\u120D\u1206\u1291 \u134B\u12ED\u120E\u127D\u1295 \u12ED\u12DF\u120D",labelFileWaitingForSize:"\u12E8\u134B\u12ED\u1209\u1295 \u1218\u1320\u1295 \u1260\u1218\u1320\u1263\u1260\u1245 \u120B\u12ED",labelFileSizeNotAvailable:"\u12E8\u134B\u12ED\u1209\u1295 \u1218\u1320\u1295 \u120A\u1308\u129D \u12A0\u120D\u127B\u1208\u121D",labelFileLoading:"\u1260\u121B\u1295\u1260\u1265 \u120B\u12ED",labelFileLoadError:"\u1260\u121B\u1295\u1260\u1265 \u120B\u12ED \u127D\u130D\u122D \u1270\u1348\u1325\u122F\u120D",labelFileProcessing:"\u134B\u12ED\u1209\u1295 \u1260\u1218\u132B\u1295 \u120B\u12ED",labelFileProcessingComplete:"\u134B\u12ED\u1209\u1295 \u1218\u132B\u1295 \u1270\u1320\u1293\u1245\u124B\u120D",labelFileProcessingAborted:"\u134B\u12ED\u1209\u1295 \u1218\u132B\u1295 \u1270\u124B\u122D\u1327\u120D",labelFileProcessingError:"\u134B\u12ED\u1209\u1295 \u1260\u1218\u132B\u1295 \u120B\u12ED \u127D\u130D\u122D \u1270\u1348\u1325\u122F\u120D",labelFileProcessingRevertError:"\u1348\u12ED\u1209\u1295 \u1260\u1218\u1240\u120D\u1260\u1235 \u120B\u12ED \u127D\u130D\u122D \u1270\u1348\u1325\u122F\u120D",labelFileRemoveError:"\u1260\u121B\u1325\u134B\u1275 \u120B\u12ED \u127D\u130D\u122D \u1270\u1348\u1325\u122F\u120D",labelTapToCancel:"\u1208\u121B\u124B\u1228\u1325 \u1290\u12AB \u12EB\u12F5\u122D\u1309",labelTapToRetry:"\u12F0\u130D\u121E \u1208\u1218\u121E\u12A8\u122D \u1290\u12AB \u12EB\u12F5\u122D\u1309",labelTapToUndo:"\u12C8\u12F0\u1290\u1260\u1228\u1260\u1275 \u1208\u1218\u1218\u1208\u1235 \u1290\u12AB \u12EB\u12F5\u122D\u1309",labelButtonRemoveItem:"\u120B\u1325\u134B",labelButtonAbortItemLoad:"\u120B\u124B\u122D\u1325",labelButtonRetryItemLoad:"\u12F0\u130D\u121C \u120D\u121E\u12AD\u122D",labelButtonAbortItemProcessing:"\u12ED\u1245\u122D",labelButtonUndoItemProcessing:"\u12C8\u12F0\u1290\u1260\u1228\u1260\u1275 \u120D\u1218\u120D\u1235",labelButtonRetryItemProcessing:"\u12F0\u130D\u121C \u120D\u121E\u12AD\u122D",labelButtonProcessItem:"\u120D\u132B\u1295",labelMaxFileSizeExceeded:"\u134B\u12ED\u1209 \u1270\u120D\u124B\u120D",labelMaxFileSize:"\u12E8\u134B\u12ED\u120D \u1218\u1320\u1295 \u12A8 {filesize} \u1218\u1265\u1208\u1325 \u12A0\u12ED\u1348\u1240\u12F5\u121D",labelMaxTotalFileSizeExceeded:"\u12E8\u121A\u1348\u1240\u12F0\u12CD\u1295 \u1320\u1245\u120B\u120B \u12E8\u134B\u12ED\u120D \u1218\u1320\u1295 \u12A0\u120D\u1348\u12CB\u120D",labelMaxTotalFileSize:"\u1320\u1245\u120B\u120B \u12E8\u134B\u12ED\u120D \u1218\u1320\u1295 \u12A8 {filesize} \u1218\u1265\u1208\u1325 \u12A0\u12ED\u1348\u1240\u12F5\u121D",labelFileTypeNotAllowed:"\u12E8\u1270\u1233\u1233\u1270 \u12E8\u134B\u12ED\u120D \u12A0\u12ED\u1290\u1275 \u1290\u12CD",fileValidateTypeLabelExpectedTypes:"\u12E8\u134B\u12ED\u120D \u12A0\u12ED\u1290\u1271 \u1218\u1206\u1295 \u12E8\u121A\u1308\u1263\u12CD {allButLastType} \u12A5\u1293 {lastType} \u1290\u12CD",imageValidateSizeLabelFormatError:"\u12E8\u121D\u1235\u120D \u12A0\u12ED\u1290\u1271 \u1208\u1218\u132B\u1295 \u12A0\u12ED\u1206\u1295\u121D",imageValidateSizeLabelImageSizeTooSmall:"\u121D\u1235\u1209 \u1260\u1323\u121D \u12A0\u1295\u1237\u120D",imageValidateSizeLabelImageSizeTooBig:"\u121D\u1235\u1209 \u1260\u1323\u121D \u1270\u120D\u124B\u120D",imageValidateSizeLabelExpectedMinSize:"\u12DD\u1245\u1270\u129B\u12CD \u12E8\u121D\u1235\u120D \u120D\u12AC\u1275 {minWidth} \xD7 {minHeight} \u1290\u12CD",imageValidateSizeLabelExpectedMaxSize:"\u12A8\u134D\u1270\u129B\u12CD \u12E8\u121D\u1235\u120D \u120D\u12AC\u1275 {maxWidth} \xD7 {maxHeight} \u1290\u12CD",imageValidateSizeLabelImageResolutionTooLow:"\u12E8\u121D\u1235\u1209 \u1325\u122B\u1275 \u1260\u1323\u121D \u12DD\u1245\u1270\u129B \u1290\u12CD",imageValidateSizeLabelImageResolutionTooHigh:"\u12E8\u121D\u1235\u1209 \u1325\u122B\u1275 \u1260\u1323\u121D \u12A8\u134D\u1270\u129B \u1290\u12CD",imageValidateSizeLabelExpectedMinResolution:"\u12DD\u1245\u1270\u129B\u12CD \u12E8\u121D\u1235\u120D \u1325\u122B\u1275 {minResolution} \u1290\u12CD",imageValidateSizeLabelExpectedMaxResolution:"\u12A8\u134D\u1270\u129B\u12CD \u12E8\u121D\u1235\u120D \u1325\u122B\u1275 {maxResolution} \u1290\u12CD"};var Mo={labelIdle:'\u0627\u0633\u062D\u0628 \u0648 \u0627\u062F\u0631\u062C \u0645\u0644\u0641\u0627\u062A\u0643 \u0623\u0648 \u062A\u0635\u0641\u062D ',labelInvalidField:"\u0627\u0644\u062D\u0642\u0644 \u064A\u062D\u062A\u0648\u064A \u0639\u0644\u0649 \u0645\u0644\u0641\u0627\u062A \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629",labelFileWaitingForSize:"\u0628\u0627\u0646\u062A\u0638\u0627\u0631 \u0627\u0644\u062D\u062C\u0645",labelFileSizeNotAvailable:"\u0627\u0644\u062D\u062C\u0645 \u063A\u064A\u0631 \u0645\u062A\u0627\u062D",labelFileLoading:"\u0628\u0627\u0644\u0625\u0646\u062A\u0638\u0627\u0631",labelFileLoadError:"\u062D\u062F\u062B \u062E\u0637\u0623 \u0623\u062B\u0646\u0627\u0621 \u0627\u0644\u062A\u062D\u0645\u064A\u0644",labelFileProcessing:"\u064A\u062A\u0645 \u0627\u0644\u0631\u0641\u0639",labelFileProcessingComplete:"\u062A\u0645 \u0627\u0644\u0631\u0641\u0639",labelFileProcessingAborted:"\u062A\u0645 \u0625\u0644\u063A\u0627\u0621 \u0627\u0644\u0631\u0641\u0639",labelFileProcessingError:"\u062D\u062F\u062B \u062E\u0637\u0623 \u0623\u062B\u0646\u0627\u0621 \u0627\u0644\u0631\u0641\u0639",labelFileProcessingRevertError:"\u062D\u062F\u062B \u062E\u0637\u0623 \u0623\u062B\u0646\u0627\u0621 \u0627\u0644\u062A\u0631\u0627\u062C\u0639",labelFileRemoveError:"\u062D\u062F\u062B \u062E\u0637\u0623 \u0623\u062B\u0646\u0627\u0621 \u0627\u0644\u062D\u0630\u0641",labelTapToCancel:"\u0627\u0646\u0642\u0631 \u0644\u0644\u0625\u0644\u063A\u0627\u0621",labelTapToRetry:"\u0627\u0646\u0642\u0631 \u0644\u0625\u0639\u0627\u062F\u0629 \u0627\u0644\u0645\u062D\u0627\u0648\u0644\u0629",labelTapToUndo:"\u0627\u0646\u0642\u0631 \u0644\u0644\u062A\u0631\u0627\u062C\u0639",labelButtonRemoveItem:"\u0645\u0633\u062D",labelButtonAbortItemLoad:"\u0625\u0644\u063A\u0627\u0621",labelButtonRetryItemLoad:"\u0625\u0639\u0627\u062F\u0629",labelButtonAbortItemProcessing:"\u0625\u0644\u063A\u0627\u0621",labelButtonUndoItemProcessing:"\u062A\u0631\u0627\u062C\u0639",labelButtonRetryItemProcessing:"\u0625\u0639\u0627\u062F\u0629",labelButtonProcessItem:"\u0631\u0641\u0639",labelMaxFileSizeExceeded:"\u0627\u0644\u0645\u0644\u0641 \u0643\u0628\u064A\u0631 \u062C\u062F\u0627",labelMaxFileSize:"\u062D\u062C\u0645 \u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u0623\u0642\u0635\u0649: {filesize}",labelMaxTotalFileSizeExceeded:"\u062A\u0645 \u062A\u062C\u0627\u0648\u0632 \u0627\u0644\u062D\u062F \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0644\u062D\u062C\u0645 \u0627\u0644\u0625\u062C\u0645\u0627\u0644\u064A",labelMaxTotalFileSize:"\u0627\u0644\u062D\u062F \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u062D\u062C\u0645 \u0627\u0644\u0645\u0644\u0641: {filesize}",labelFileTypeNotAllowed:"\u0645\u0644\u0641 \u0645\u0646 \u0646\u0648\u0639 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D",fileValidateTypeLabelExpectedTypes:"\u062A\u062A\u0648\u0642\u0639 {allButLastType} \u0645\u0646 {lastType}",imageValidateSizeLabelFormatError:"\u0646\u0648\u0639 \u0627\u0644\u0635\u0648\u0631\u0629 \u063A\u064A\u0631 \u0645\u062F\u0639\u0648\u0645",imageValidateSizeLabelImageSizeTooSmall:"\u0627\u0644\u0635\u0648\u0631\u0629 \u0635\u063A\u064A\u0631 \u062C\u062F\u0627",imageValidateSizeLabelImageSizeTooBig:"\u0627\u0644\u0635\u0648\u0631\u0629 \u0643\u0628\u064A\u0631\u0629 \u062C\u062F\u0627",imageValidateSizeLabelExpectedMinSize:"\u0627\u0644\u062D\u062F \u0627\u0644\u0623\u062F\u0646\u0649 \u0644\u0644\u0623\u0628\u0639\u0627\u062F \u0647\u0648: {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"\u0627\u0644\u062D\u062F \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0644\u0623\u0628\u0639\u0627\u062F \u0647\u0648: {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"\u0627\u0644\u062F\u0642\u0629 \u0636\u0639\u064A\u0641\u0629 \u062C\u062F\u0627",imageValidateSizeLabelImageResolutionTooHigh:"\u0627\u0644\u062F\u0642\u0629 \u0645\u0631\u062A\u0641\u0639\u0629 \u062C\u062F\u0627",imageValidateSizeLabelExpectedMinResolution:"\u0623\u0642\u0644 \u062F\u0642\u0629: {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"\u0623\u0642\u0635\u0649 \u062F\u0642\u0629: {maxResolution}"};var Ao={labelIdle:'Fayl\u0131n\u0131z\u0131 S\xFCr\xFC\u015Fd\xFCr\xFCn & Burax\u0131n ya da Se\xE7in ',labelInvalidField:"Sah\u0259d\u0259 etibars\u0131z fayllar var",labelFileWaitingForSize:"\xD6l\xE7\xFC hesablan\u0131r",labelFileSizeNotAvailable:"\xD6l\xE7\xFC m\xF6vcud deyil",labelFileLoading:"Y\xFCkl\u0259nir",labelFileLoadError:"Y\xFCkl\u0259m\u0259 \u0259snas\u0131nda x\u0259ta ba\u015F verdi",labelFileProcessing:"Y\xFCkl\u0259nir",labelFileProcessingComplete:"Y\xFCkl\u0259m\u0259 tamamland\u0131",labelFileProcessingAborted:"Y\xFCkl\u0259m\u0259 l\u0259\u011Fv edildi",labelFileProcessingError:"Y\xFCk\u0259y\u0259rk\u0259n x\u0259ta ba\u015F verdi",labelFileProcessingRevertError:"Geri \xE7\u0259k\u0259rk\u0259n x\u0259ta ba\u015F verdi",labelFileRemoveError:"\xC7\u0131xarark\u0259n x\u0259ta ba\u015F verdi",labelTapToCancel:"\u0130mtina etm\u0259k \xFC\xE7\xFCn klikl\u0259yin",labelTapToRetry:"T\u0259krar yoxlamaq \xFC\xE7\xFCn klikl\u0259yin",labelTapToUndo:"Geri almaq \xFC\xE7\xFCn klikl\u0259yin",labelButtonRemoveItem:"\xC7\u0131xar",labelButtonAbortItemLoad:"\u0130mtina Et",labelButtonRetryItemLoad:"T\u0259krar yoxla",labelButtonAbortItemProcessing:"\u0130mtina et",labelButtonUndoItemProcessing:"Geri Al",labelButtonRetryItemProcessing:"T\u0259krar yoxla",labelButtonProcessItem:"Y\xFCkl\u0259",labelMaxFileSizeExceeded:"Fayl \xE7ox b\xF6y\xFCkd\xFCr",labelMaxFileSize:"\u018Fn b\xF6y\xFCk fayl \xF6l\xE7\xFCs\xFC: {filesize}",labelMaxTotalFileSizeExceeded:"Maksimum \xF6l\xE7\xFC ke\xE7ildi",labelMaxTotalFileSize:"Maksimum fayl \xF6l\xE7\xFCs\xFC :{filesize}",labelFileTypeNotAllowed:"Etibars\u0131z fayl tipi",fileValidateTypeLabelExpectedTypes:"Bu {allButLastType} ya da bu fayl olmas\u0131 laz\u0131md\u0131r: {lastType}",imageValidateSizeLabelFormatError:"\u015E\u0259kil tipi d\u0259st\u0259kl\u0259nmir",imageValidateSizeLabelImageSizeTooSmall:"\u015E\u0259kil \xE7ox ki\xE7ik",imageValidateSizeLabelImageSizeTooBig:"\u015E\u0259kil \xE7ox b\xF6y\xFCk",imageValidateSizeLabelExpectedMinSize:"Minimum \xF6l\xE7\xFC {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maksimum \xF6l\xE7\xFC {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"G\xF6r\xFCnt\xFC imkan\u0131 \xE7ox a\u015Fa\u011F\u0131",imageValidateSizeLabelImageResolutionTooHigh:"G\xF6r\xFCnt\xFC imkan\u0131 \xE7ox y\xFCks\u0259k",imageValidateSizeLabelExpectedMinResolution:"Minimum g\xF6r\xFCnt\xFC imkan\u0131 {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maximum g\xF6r\xFCnt\xFC imkan\u0131 {maxResolution}"};var Po={labelIdle:'Arrossega i deixa anar els teus fitxers o Navega ',labelInvalidField:"El camp cont\xE9 fitxers inv\xE0lids",labelFileWaitingForSize:"Esperant mida",labelFileSizeNotAvailable:"Mida no disponible",labelFileLoading:"Carregant",labelFileLoadError:"Error durant la c\xE0rrega",labelFileProcessing:"Pujant",labelFileProcessingComplete:"Pujada completada",labelFileProcessingAborted:"Pujada cancel\xB7lada",labelFileProcessingError:"Error durant la pujada",labelFileProcessingRevertError:"Error durant la reversi\xF3",labelFileRemoveError:"Error durant l'eliminaci\xF3",labelTapToCancel:"toca per cancel\xB7lar",labelTapToRetry:"toca per reintentar",labelTapToUndo:"toca per desfer",labelButtonRemoveItem:"Eliminar",labelButtonAbortItemLoad:"Cancel\xB7lar",labelButtonRetryItemLoad:"Reintentar",labelButtonAbortItemProcessing:"Cancel\xB7lar",labelButtonUndoItemProcessing:"Desfer",labelButtonRetryItemProcessing:"Reintentar",labelButtonProcessItem:"Pujar",labelMaxFileSizeExceeded:"El fitxer \xE9s massa gran",labelMaxFileSize:"La mida m\xE0xima del fitxer \xE9s {filesize}",labelMaxTotalFileSizeExceeded:"Mida m\xE0xima total excedida",labelMaxTotalFileSize:"La mida m\xE0xima total del fitxer \xE9s {filesize}",labelFileTypeNotAllowed:"Fitxer de tipus inv\xE0lid",fileValidateTypeLabelExpectedTypes:"Espera {allButLastType} o {lastType}",imageValidateSizeLabelFormatError:"Tipus d'imatge no suportada",imageValidateSizeLabelImageSizeTooSmall:"La imatge \xE9s massa petita",imageValidateSizeLabelImageSizeTooBig:"La imatge \xE9s massa gran",imageValidateSizeLabelExpectedMinSize:"La mida m\xEDnima \xE9s {minWidth} x {minHeight}",imageValidateSizeLabelExpectedMaxSize:"La mida m\xE0xima \xE9s {maxWidth} x {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"La resoluci\xF3 \xE9s massa baixa",imageValidateSizeLabelImageResolutionTooHigh:"La resoluci\xF3 \xE9s massa alta",imageValidateSizeLabelExpectedMinResolution:"La resoluci\xF3 m\xEDnima \xE9s {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"La resoluci\xF3 m\xE0xima \xE9s {maxResolution}"};var zo={labelIdle:'\u067E\u06D5\u0695\u06AF\u06D5\u06A9\u0627\u0646 \u0641\u0695\u06CE \u0628\u062F\u06D5 \u0626\u06CE\u0631\u06D5 \u0628\u06C6 \u0628\u0627\u0631\u06A9\u0631\u062F\u0646 \u06CC\u0627\u0646 \u0647\u06D5\u06B5\u0628\u0698\u06CE\u0631\u06D5 ',labelInvalidField:"\u067E\u06D5\u0695\u06AF\u06D5\u06CC \u0646\u0627\u062F\u0631\u0648\u0633\u062A\u06CC \u062A\u06CE\u062F\u0627\u06CC\u06D5",labelFileWaitingForSize:"\u0686\u0627\u0648\u06D5\u0695\u0648\u0627\u0646\u06CC\u06CC \u0642\u06D5\u0628\u0627\u0631\u06D5",labelFileSizeNotAvailable:"\u0642\u06D5\u0628\u0627\u0631\u06D5 \u0628\u06D5\u0631\u062F\u06D5\u0633\u062A \u0646\u06CC\u06D5",labelFileLoading:"\u0628\u0627\u0631\u06A9\u0631\u062F\u0646",labelFileLoadError:"\u0647\u06D5\u06B5\u06D5 \u0644\u06D5\u0645\u0627\u0648\u06D5\u06CC \u0628\u0627\u0631\u06A9\u0631\u062F\u0646",labelFileProcessing:"\u0628\u0627\u0631\u06A9\u0631\u062F\u0646",labelFileProcessingComplete:"\u0628\u0627\u0631\u06A9\u0631\u062F\u0646 \u062A\u06D5\u0648\u0627\u0648 \u0628\u0648\u0648",labelFileProcessingAborted:"\u0628\u0627\u0631\u06A9\u0631\u062F\u0646 \u0647\u06D5\u06B5\u0648\u06D5\u0634\u0627\u06CC\u06D5\u0648\u06D5",labelFileProcessingError:"\u0647\u06D5\u06B5\u06D5 \u0644\u06D5\u06A9\u0627\u062A\u06CC \u0628\u0627\u0631\u06A9\u0631\u062F\u0646\u062F\u0627",labelFileProcessingRevertError:"\u0647\u06D5\u06B5\u06D5 \u0644\u06D5 \u06A9\u0627\u062A\u06CC \u06AF\u06D5\u0695\u0627\u0646\u06D5\u0648\u06D5",labelFileRemoveError:"\u0647\u06D5\u06B5\u06D5 \u0644\u06D5 \u06A9\u0627\u062A\u06CC \u0633\u0695\u06CC\u0646\u06D5\u0648\u06D5",labelTapToCancel:"\u0628\u06C6 \u0647\u06D5\u06B5\u0648\u06D5\u0634\u0627\u0646\u062F\u0646\u06D5\u0648\u06D5 Tab \u062F\u0627\u0628\u06AF\u0631\u06D5",labelTapToRetry:"tap \u062F\u0627\u0628\u06AF\u0631\u06D5 \u0628\u06C6 \u062F\u0648\u0648\u0628\u0627\u0631\u06D5\u06A9\u0631\u062F\u0646\u06D5\u0648\u06D5",labelTapToUndo:"tap \u062F\u0627\u0628\u06AF\u0631\u06D5 \u0628\u06C6 \u06AF\u06D5\u0695\u0627\u0646\u062F\u0646\u06D5\u0648\u06D5",labelButtonRemoveItem:"\u0633\u0695\u06CC\u0646\u06D5\u0648\u06D5",labelButtonAbortItemLoad:"\u0647\u06D5\u06B5\u0648\u06D5\u0634\u0627\u0646\u062F\u0646\u06D5\u0648\u06D5",labelButtonRetryItemLoad:"\u0647\u06D5\u0648\u06B5\u062F\u0627\u0646\u06D5\u0648\u06D5",labelButtonAbortItemProcessing:"\u067E\u06D5\u0634\u06CC\u0645\u0627\u0646\u0628\u0648\u0648\u0646\u06D5\u0648\u06D5",labelButtonUndoItemProcessing:"\u06AF\u06D5\u0695\u0627\u0646\u062F\u0646\u06D5\u0648\u06D5",labelButtonRetryItemProcessing:"\u0647\u06D5\u0648\u06B5\u062F\u0627\u0646\u06D5\u0648\u06D5",labelButtonProcessItem:"\u0628\u0627\u0631\u06A9\u0631\u062F\u0646",labelMaxFileSizeExceeded:"\u067E\u06D5\u0695\u06AF\u06D5 \u0632\u06C6\u0631 \u06AF\u06D5\u0648\u0631\u06D5\u06CC\u06D5",labelMaxFileSize:"\u0632\u06C6\u0631\u062A\u0631\u06CC\u0646 \u0642\u06D5\u0628\u0627\u0631\u06D5 {filesize}",labelMaxTotalFileSizeExceeded:"\u0632\u06C6\u0631\u062A\u0631\u06CC\u0646 \u0642\u06D5\u0628\u0627\u0631\u06D5\u06CC \u06A9\u06C6\u06CC \u06AF\u0634\u062A\u06CC \u062A\u06CE\u067E\u06D5\u0695\u06CE\u0646\u062F\u0631\u0627",labelMaxTotalFileSize:"\u0632\u06C6\u0631\u062A\u0631\u06CC\u0646 \u0642\u06D5\u0628\u0627\u0631\u06D5\u06CC \u06A9\u06C6\u06CC \u067E\u06D5\u0695\u06AF\u06D5 {filesize}",labelFileTypeNotAllowed:"\u062C\u06C6\u0631\u06CC \u067E\u06D5\u0695\u06AF\u06D5\u06A9\u06D5 \u0646\u0627\u062F\u0631\u0648\u0633\u062A\u06D5",fileValidateTypeLabelExpectedTypes:"\u062C\u06AF\u06D5 \u0644\u06D5 {allButLastType} \u06CC\u0627\u0646 {lastType}",imageValidateSizeLabelFormatError:"\u062C\u06C6\u0631\u06CC \u0648\u06CE\u0646\u06D5 \u067E\u0627\u06B5\u067E\u0634\u062A\u06CC\u06CC \u0646\u06D5\u06A9\u0631\u0627\u0648\u06D5",imageValidateSizeLabelImageSizeTooSmall:"\u0648\u06CE\u0646\u06D5\u06A9\u06D5 \u0632\u06C6\u0631 \u0628\u0686\u0648\u0648\u06A9\u06D5",imageValidateSizeLabelImageSizeTooBig:"\u0648\u06CE\u0646\u06D5\u06A9\u06D5 \u0632\u06C6\u0631 \u06AF\u06D5\u0648\u0631\u06D5\u06CC\u06D5",imageValidateSizeLabelExpectedMinSize:"\u06A9\u06D5\u0645\u062A\u0631\u06CC\u0646 \u0642\u06D5\u0628\u0627\u0631\u06D5 {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"\u0632\u06C6\u0631\u062A\u0631\u06CC\u0646 \u0642\u06D5\u0628\u0627\u0631\u06D5 {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"\u0648\u0631\u062F\u0628\u06CC\u0646\u06CC\u06CC\u06D5\u06A9\u06D5\u06CC \u0632\u06C6\u0631 \u06A9\u06D5\u0645\u06D5",imageValidateSizeLabelImageResolutionTooHigh:"\u0648\u0631\u062F\u0628\u06CC\u0646\u06CC\u06CC\u06D5\u06A9\u06D5\u06CC \u0632\u06C6\u0631 \u0628\u06D5\u0631\u0632\u06D5",imageValidateSizeLabelExpectedMinResolution:"\u06A9\u06D5\u0645\u062A\u0631\u06CC\u0646 \u0648\u0631\u062F\u0628\u06CC\u0646\u06CC\u06CC {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"\u0632\u06C6\u0631\u062A\u0631\u06CC\u0646 \u0648\u0631\u062F\u0628\u06CC\u0646\u06CC {maxResolution}"};var Fo={labelIdle:'P\u0159et\xE1hn\u011Bte soubor sem (drag&drop) nebo Vyhledat ',labelInvalidField:"Pole obsahuje chybn\xE9 soubory",labelFileWaitingForSize:"Zji\u0161\u0165uje se velikost",labelFileSizeNotAvailable:"Velikost nen\xED zn\xE1m\xE1",labelFileLoading:"P\u0159en\xE1\u0161\xED se",labelFileLoadError:"Chyba p\u0159i p\u0159enosu",labelFileProcessing:"Prob\xEDh\xE1 upload",labelFileProcessingComplete:"Upload dokon\u010Den",labelFileProcessingAborted:"Upload stornov\xE1n",labelFileProcessingError:"Chyba p\u0159i uploadu",labelFileProcessingRevertError:"Chyba p\u0159i obnov\u011B",labelFileRemoveError:"Chyba p\u0159i odstran\u011Bn\xED",labelTapToCancel:"klepn\u011Bte pro storno",labelTapToRetry:"klepn\u011Bte pro opakov\xE1n\xED",labelTapToUndo:"klepn\u011Bte pro vr\xE1cen\xED",labelButtonRemoveItem:"Odstranit",labelButtonAbortItemLoad:"Storno",labelButtonRetryItemLoad:"Opakovat",labelButtonAbortItemProcessing:"Zp\u011Bt",labelButtonUndoItemProcessing:"Vr\xE1tit",labelButtonRetryItemProcessing:"Opakovat",labelButtonProcessItem:"Upload",labelMaxFileSizeExceeded:"Soubor je p\u0159\xEDli\u0161 velk\xFD",labelMaxFileSize:"Nejv\u011Bt\u0161\xED velikost souboru je {filesize}",labelMaxTotalFileSizeExceeded:"P\u0159ekro\u010Dena maxim\xE1ln\xED celkov\xE1 velikost souboru",labelMaxTotalFileSize:"Maxim\xE1ln\xED celkov\xE1 velikost souboru je {filesize}",labelFileTypeNotAllowed:"Soubor je nespr\xE1vn\xE9ho typu",fileValidateTypeLabelExpectedTypes:"O\u010Dek\xE1v\xE1 se {allButLastType} nebo {lastType}",imageValidateSizeLabelFormatError:"Obr\xE1zek tohoto typu nen\xED podporov\xE1n",imageValidateSizeLabelImageSizeTooSmall:"Obr\xE1zek je p\u0159\xEDli\u0161 mal\xFD",imageValidateSizeLabelImageSizeTooBig:"Obr\xE1zek je p\u0159\xEDli\u0161 velk\xFD",imageValidateSizeLabelExpectedMinSize:"Minim\xE1ln\xED rozm\u011Br je {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maxim\xE1ln\xED rozm\u011Br je {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Rozli\u0161en\xED je p\u0159\xEDli\u0161 mal\xE9",imageValidateSizeLabelImageResolutionTooHigh:"Rozli\u0161en\xED je p\u0159\xEDli\u0161 velk\xE9",imageValidateSizeLabelExpectedMinResolution:"Minim\xE1ln\xED rozli\u0161en\xED je {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maxim\xE1ln\xED rozli\u0161en\xED je {maxResolution}"};var Oo={labelIdle:'Tr\xE6k & slip filer eller Gennemse ',labelInvalidField:"Felt indeholder ugyldige filer",labelFileWaitingForSize:"Venter p\xE5 st\xF8rrelse",labelFileSizeNotAvailable:"St\xF8rrelse ikke tilg\xE6ngelig",labelFileLoading:"Loader",labelFileLoadError:"Load fejlede",labelFileProcessing:"Uploader",labelFileProcessingComplete:"Upload f\xE6rdig",labelFileProcessingAborted:"Upload annulleret",labelFileProcessingError:"Upload fejlede",labelFileProcessingRevertError:"Fortryd fejlede",labelFileRemoveError:"Fjern fejlede",labelTapToCancel:"tryk for at annullere",labelTapToRetry:"tryk for at pr\xF8ve igen",labelTapToUndo:"tryk for at fortryde",labelButtonRemoveItem:"Fjern",labelButtonAbortItemLoad:"Annuller",labelButtonRetryItemLoad:"Fors\xF8g igen",labelButtonAbortItemProcessing:"Annuller",labelButtonUndoItemProcessing:"Fortryd",labelButtonRetryItemProcessing:"Pr\xF8v igen",labelButtonProcessItem:"Upload",labelMaxFileSizeExceeded:"Filen er for stor",labelMaxFileSize:"Maksimal filst\xF8rrelse er {filesize}",labelMaxTotalFileSizeExceeded:"Maksimal totalst\xF8rrelse overskredet",labelMaxTotalFileSize:"Maksimal total filst\xF8rrelse er {filesize}",labelFileTypeNotAllowed:"Ugyldig filtype",fileValidateTypeLabelExpectedTypes:"Forventer {allButLastType} eller {lastType}",imageValidateSizeLabelFormatError:"Ugyldigt format",imageValidateSizeLabelImageSizeTooSmall:"Billedet er for lille",imageValidateSizeLabelImageSizeTooBig:"Billedet er for stort",imageValidateSizeLabelExpectedMinSize:"Minimum st\xF8rrelse er {minBredde} \xD7 {minH\xF8jde}",imageValidateSizeLabelExpectedMaxSize:"Maksimal st\xF8rrelse er {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"For lav opl\xF8sning",imageValidateSizeLabelImageResolutionTooHigh:"For h\xF8j opl\xF8sning",imageValidateSizeLabelExpectedMinResolution:"Minimum opl\xF8sning er {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maksimal opl\xF8sning er {maxResolution}"};var Do={labelIdle:'Dateien ablegen oder ausw\xE4hlen ',labelInvalidField:"Feld beinhaltet ung\xFCltige Dateien",labelFileWaitingForSize:"Dateigr\xF6\xDFe berechnen",labelFileSizeNotAvailable:"Dateigr\xF6\xDFe nicht verf\xFCgbar",labelFileLoading:"Laden",labelFileLoadError:"Fehler beim Laden",labelFileProcessing:"Upload l\xE4uft",labelFileProcessingComplete:"Upload abgeschlossen",labelFileProcessingAborted:"Upload abgebrochen",labelFileProcessingError:"Fehler beim Upload",labelFileProcessingRevertError:"Fehler beim Wiederherstellen",labelFileRemoveError:"Fehler beim L\xF6schen",labelTapToCancel:"abbrechen",labelTapToRetry:"erneut versuchen",labelTapToUndo:"r\xFCckg\xE4ngig",labelButtonRemoveItem:"Entfernen",labelButtonAbortItemLoad:"Verwerfen",labelButtonRetryItemLoad:"Erneut versuchen",labelButtonAbortItemProcessing:"Abbrechen",labelButtonUndoItemProcessing:"R\xFCckg\xE4ngig",labelButtonRetryItemProcessing:"Erneut versuchen",labelButtonProcessItem:"Upload",labelMaxFileSizeExceeded:"Datei ist zu gro\xDF",labelMaxFileSize:"Maximale Dateigr\xF6\xDFe: {filesize}",labelMaxTotalFileSizeExceeded:"Maximale gesamte Dateigr\xF6\xDFe \xFCberschritten",labelMaxTotalFileSize:"Maximale gesamte Dateigr\xF6\xDFe: {filesize}",labelFileTypeNotAllowed:"Dateityp ung\xFCltig",fileValidateTypeLabelExpectedTypes:"Erwartet {allButLastType} oder {lastType}",imageValidateSizeLabelFormatError:"Bildtyp nicht unterst\xFCtzt",imageValidateSizeLabelImageSizeTooSmall:"Bild ist zu klein",imageValidateSizeLabelImageSizeTooBig:"Bild ist zu gro\xDF",imageValidateSizeLabelExpectedMinSize:"Mindestgr\xF6\xDFe: {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maximale Gr\xF6\xDFe: {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Aufl\xF6sung ist zu niedrig",imageValidateSizeLabelImageResolutionTooHigh:"Aufl\xF6sung ist zu hoch",imageValidateSizeLabelExpectedMinResolution:"Mindestaufl\xF6sung: {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maximale Aufl\xF6sung: {maxResolution}"};var Co={labelIdle:'\u03A3\u03CD\u03C1\u03B5\u03C4\u03B5 \u03C4\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 \u03C3\u03B1\u03C2 \u03C3\u03C4\u03BF \u03C0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF \u03AE \u0395\u03C0\u03B9\u03BB\u03AD\u03BE\u03C4\u03B5 ',labelInvalidField:"\u03A4\u03BF \u03C0\u03B5\u03B4\u03AF\u03BF \u03C0\u03B5\u03C1\u03B9\u03AD\u03C7\u03B5\u03B9 \u03BC\u03B7 \u03AD\u03B3\u03BA\u03C5\u03C1\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1",labelFileWaitingForSize:"\u03A3\u03B5 \u03B1\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE \u03B3\u03B9\u03B1 \u03C4\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2",labelFileSizeNotAvailable:"\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03BC\u03B7 \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03BF",labelFileLoading:"\u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 \u03C3\u03B5 \u03B5\u03BE\u03AD\u03BB\u03B9\u03BE\u03B7",labelFileLoadError:"\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7 \u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7",labelFileProcessing:"\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1",labelFileProcessingComplete:"\u0397 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BF\u03BB\u03BF\u03BA\u03BB\u03B7\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5",labelFileProcessingAborted:"\u0397 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03B1\u03BA\u03C5\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5",labelFileProcessingError:"\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1",labelFileProcessingRevertError:"\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B5\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC",labelFileRemoveError:"\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B4\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE",labelTapToCancel:"\u03C0\u03B1\u03C4\u03AE\u03C3\u03C4\u03B5 \u03B3\u03B9\u03B1 \u03B1\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7",labelTapToRetry:"\u03C0\u03B1\u03C4\u03AE\u03C3\u03C4\u03B5 \u03B3\u03B9\u03B1 \u03B5\u03C0\u03B1\u03BD\u03AC\u03BB\u03B7\u03C8\u03B7",labelTapToUndo:"\u03C0\u03B1\u03C4\u03AE\u03C3\u03C4\u03B5 \u03B3\u03B9\u03B1 \u03B1\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7",labelButtonRemoveItem:"\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7",labelButtonAbortItemLoad:"\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7",labelButtonRetryItemLoad:"\u0395\u03C0\u03B1\u03BD\u03AC\u03BB\u03B7\u03C8\u03B7",labelButtonAbortItemProcessing:"\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7",labelButtonUndoItemProcessing:"\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7",labelButtonRetryItemProcessing:"\u0395\u03C0\u03B1\u03BD\u03AC\u03BB\u03B7\u03C8\u03B7",labelButtonProcessItem:"\u039C\u03B5\u03C4\u03B1\u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7",labelMaxFileSizeExceeded:"\u03A4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF",labelMaxFileSize:"\u03A4\u03BF \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 \u03B5\u03AF\u03BD\u03B1\u03B9 {filesize}",labelMaxTotalFileSizeExceeded:"\u03A5\u03C0\u03AD\u03C1\u03B2\u03B1\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF\u03C5 \u03C3\u03C5\u03BD\u03BF\u03BB\u03B9\u03BA\u03BF\u03CD \u03BC\u03B5\u03B3\u03AD\u03B8\u03BF\u03C5\u03C2",labelMaxTotalFileSize:"\u03A4\u03BF \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03C3\u03C5\u03BD\u03BF\u03BB\u03B9\u03BA\u03CC \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 {filesize}",labelFileTypeNotAllowed:"\u039C\u03B7 \u03AD\u03B3\u03BA\u03C5\u03C1\u03BF\u03C2 \u03C4\u03CD\u03C0\u03BF\u03C2 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5",fileValidateTypeLabelExpectedTypes:"\u03A4\u03B1 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AC \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 {allButLastType} \u03AE {lastType}",imageValidateSizeLabelFormatError:"\u039F \u03C4\u03CD\u03C0\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 \u03B4\u03B5\u03BD \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9",imageValidateSizeLabelImageSizeTooSmall:"\u0397 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD \u03BC\u03B9\u03BA\u03C1\u03AE",imageValidateSizeLabelImageSizeTooBig:"\u0397 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD \u03BC\u03B5\u03B3\u03AC\u03BB\u03B7",imageValidateSizeLabelExpectedMinSize:"\u03A4\u03BF \u03B5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03BF \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"\u03A4\u03BF \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"\u0397 \u03B1\u03BD\u03AC\u03BB\u03C5\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD \u03C7\u03B1\u03BC\u03B7\u03BB\u03AE",imageValidateSizeLabelImageResolutionTooHigh:"\u0397 \u03B1\u03BD\u03AC\u03BB\u03C5\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD \u03C5\u03C8\u03B7\u03BB\u03AE",imageValidateSizeLabelExpectedMinResolution:"\u0397 \u03B5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03B1\u03BD\u03AC\u03BB\u03C5\u03C3\u03B7 \u03B5\u03AF\u03BD\u03B1\u03B9 {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"\u0397 \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03B1\u03BD\u03AC\u03BB\u03C5\u03C3\u03B7 \u03B5\u03AF\u03BD\u03B1\u03B9 {maxResolution}"};var Bo={labelIdle:'Drag & Drop your files or Browse ',labelInvalidField:"Field contains invalid files",labelFileWaitingForSize:"Waiting for size",labelFileSizeNotAvailable:"Size not available",labelFileLoading:"Loading",labelFileLoadError:"Error during load",labelFileProcessing:"Uploading",labelFileProcessingComplete:"Upload complete",labelFileProcessingAborted:"Upload cancelled",labelFileProcessingError:"Error during upload",labelFileProcessingRevertError:"Error during revert",labelFileRemoveError:"Error during remove",labelTapToCancel:"tap to cancel",labelTapToRetry:"tap to retry",labelTapToUndo:"tap to undo",labelButtonRemoveItem:"Remove",labelButtonAbortItemLoad:"Abort",labelButtonRetryItemLoad:"Retry",labelButtonAbortItemProcessing:"Cancel",labelButtonUndoItemProcessing:"Undo",labelButtonRetryItemProcessing:"Retry",labelButtonProcessItem:"Upload",labelMaxFileSizeExceeded:"File is too large",labelMaxFileSize:"Maximum file size is {filesize}",labelMaxTotalFileSizeExceeded:"Maximum total size exceeded",labelMaxTotalFileSize:"Maximum total file size is {filesize}",labelFileTypeNotAllowed:"File of invalid type",fileValidateTypeLabelExpectedTypes:"Expects {allButLastType} or {lastType}",imageValidateSizeLabelFormatError:"Image type not supported",imageValidateSizeLabelImageSizeTooSmall:"Image is too small",imageValidateSizeLabelImageSizeTooBig:"Image is too big",imageValidateSizeLabelExpectedMinSize:"Minimum size is {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maximum size is {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Resolution is too low",imageValidateSizeLabelImageResolutionTooHigh:"Resolution is too high",imageValidateSizeLabelExpectedMinResolution:"Minimum resolution is {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maximum resolution is {maxResolution}"};var ko={labelIdle:'Arrastra y suelta tus archivos o Examina ',labelInvalidField:"El campo contiene archivos inv\xE1lidos",labelFileWaitingForSize:"Esperando tama\xF1o",labelFileSizeNotAvailable:"Tama\xF1o no disponible",labelFileLoading:"Cargando",labelFileLoadError:"Error durante la carga",labelFileProcessing:"Subiendo",labelFileProcessingComplete:"Subida completa",labelFileProcessingAborted:"Subida cancelada",labelFileProcessingError:"Error durante la subida",labelFileProcessingRevertError:"Error durante la reversi\xF3n",labelFileRemoveError:"Error durante la eliminaci\xF3n",labelTapToCancel:"toca para cancelar",labelTapToRetry:"tocar para reintentar",labelTapToUndo:"tocar para deshacer",labelButtonRemoveItem:"Eliminar",labelButtonAbortItemLoad:"Cancelar",labelButtonRetryItemLoad:"Reintentar",labelButtonAbortItemProcessing:"Cancelar",labelButtonUndoItemProcessing:"Deshacer",labelButtonRetryItemProcessing:"Reintentar",labelButtonProcessItem:"Subir",labelMaxFileSizeExceeded:"El archivo es demasiado grande",labelMaxFileSize:"El tama\xF1o m\xE1ximo del archivo es {filesize}",labelMaxTotalFileSizeExceeded:"Tama\xF1o total m\xE1ximo excedido",labelMaxTotalFileSize:"El tama\xF1o total m\xE1ximo del archivo es {filesize}",labelFileTypeNotAllowed:"Archivo de tipo inv\xE1lido",fileValidateTypeLabelExpectedTypes:"Espera {allButLastType} o {lastType}",imageValidateSizeLabelFormatError:"Tipo de imagen no soportada",imageValidateSizeLabelImageSizeTooSmall:"La imagen es demasiado peque\xF1a",imageValidateSizeLabelImageSizeTooBig:"La imagen es demasiado grande",imageValidateSizeLabelExpectedMinSize:"El tama\xF1o m\xEDnimo es {minWidth} x {minHeight}",imageValidateSizeLabelExpectedMaxSize:"El tama\xF1o m\xE1ximo es {maxWidth} x {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"La resoluci\xF3n es demasiado baja",imageValidateSizeLabelImageResolutionTooHigh:"La resoluci\xF3n es demasiado alta",imageValidateSizeLabelExpectedMinResolution:"La resoluci\xF3n m\xEDnima es {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"La resoluci\xF3n m\xE1xima es {maxResolution}"};var No={labelIdle:'\u0641\u0627\u06CC\u0644 \u0631\u0627 \u0627\u06CC\u0646\u062C\u0627 \u0628\u06A9\u0634\u06CC\u062F \u0648 \u0631\u0647\u0627 \u06A9\u0646\u06CC\u062F\u060C \u06CC\u0627 \u062C\u0633\u062A\u062C\u0648 \u06A9\u0646\u06CC\u062F ',labelInvalidField:"\u0641\u06CC\u0644\u062F \u062F\u0627\u0631\u0627\u06CC \u0641\u0627\u06CC\u0644 \u0647\u0627\u06CC \u0646\u0627\u0645\u0639\u062A\u0628\u0631 \u0627\u0633\u062A",labelFileWaitingForSize:"Waiting for size",labelFileSizeNotAvailable:"\u062D\u062C\u0645 \u0641\u0627\u06CC\u0644 \u0645\u062C\u0627\u0632 \u0646\u06CC\u0633\u062A",labelFileLoading:"\u062F\u0631\u062D\u0627\u0644 \u0628\u0627\u0631\u06AF\u0630\u0627\u0631\u06CC",labelFileLoadError:"\u062E\u0637\u0627 \u062F\u0631 \u0632\u0645\u0627\u0646 \u0627\u062C\u0631\u0627",labelFileProcessing:"\u062F\u0631\u062D\u0627\u0644 \u0628\u0627\u0631\u06AF\u0630\u0627\u0631\u06CC",labelFileProcessingComplete:"\u0628\u0627\u0631\u06AF\u0630\u0627\u0631\u06CC \u06A9\u0627\u0645\u0644 \u0634\u062F",labelFileProcessingAborted:"\u0628\u0627\u0631\u06AF\u0630\u0627\u0631\u06CC \u0644\u063A\u0648 \u0634\u062F",labelFileProcessingError:"\u062E\u0637\u0627 \u062F\u0631 \u0632\u0645\u0627\u0646 \u0628\u0627\u0631\u06AF\u0630\u0627\u0631\u06CC",labelFileProcessingRevertError:"\u062E\u0637\u0627 \u062F\u0631 \u0632\u0645\u0627\u0646 \u062D\u0630\u0641",labelFileRemoveError:"\u062E\u0637\u0627 \u062F\u0631 \u0632\u0645\u0627\u0646 \u062D\u0630\u0641",labelTapToCancel:"\u0628\u0631\u0627\u06CC \u0644\u063A\u0648 \u0636\u0631\u0628\u0647 \u0628\u0632\u0646\u06CC\u062F",labelTapToRetry:"\u0628\u0631\u0627\u06CC \u062A\u06A9\u0631\u0627\u0631 \u06A9\u0644\u06CC\u06A9 \u06A9\u0646\u06CC\u062F",labelTapToUndo:"\u0628\u0631\u0627\u06CC \u0628\u0631\u06AF\u0634\u062A \u06A9\u0644\u06CC\u06A9 \u06A9\u0646\u06CC\u062F",labelButtonRemoveItem:"\u062D\u0630\u0641",labelButtonAbortItemLoad:"\u0644\u063A\u0648",labelButtonRetryItemLoad:"\u062A\u06A9\u0631\u0627\u0631",labelButtonAbortItemProcessing:"\u0644\u063A\u0648",labelButtonUndoItemProcessing:"\u0628\u0631\u06AF\u0634\u062A",labelButtonRetryItemProcessing:"\u062A\u06A9\u0631\u0627\u0631",labelButtonProcessItem:"\u0628\u0627\u0631\u06AF\u0630\u0627\u0631\u06CC",labelMaxFileSizeExceeded:"\u0641\u0627\u06CC\u0644 \u0628\u0633\u06CC\u0627\u0631 \u062D\u062C\u06CC\u0645 \u0627\u0633\u062A",labelMaxFileSize:"\u062D\u062F\u0627\u06A9\u062B\u0631 \u0645\u062C\u0627\u0632 \u0641\u0627\u06CC\u0644 {filesize} \u0627\u0633\u062A",labelMaxTotalFileSizeExceeded:"\u0627\u0632 \u062D\u062F\u0627\u06A9\u062B\u0631 \u062D\u062C\u0645 \u0641\u0627\u06CC\u0644 \u0628\u06CC\u0634\u062A\u0631 \u0634\u062F",labelMaxTotalFileSize:"\u062D\u062F\u0627\u06A9\u062B\u0631 \u062D\u062C\u0645 \u0641\u0627\u06CC\u0644 {filesize} \u0627\u0633\u062A",labelFileTypeNotAllowed:"\u0646\u0648\u0639 \u0641\u0627\u06CC\u0644 \u0646\u0627\u0645\u0639\u062A\u0628\u0631 \u0627\u0633\u062A",fileValidateTypeLabelExpectedTypes:"\u062F\u0631 \u0627\u0646\u062A\u0638\u0627\u0631 {allButLastType} \u06CC\u0627 {lastType}",imageValidateSizeLabelFormatError:"\u0641\u0631\u0645\u062A \u062A\u0635\u0648\u06CC\u0631 \u067E\u0634\u062A\u06CC\u0628\u0627\u0646\u06CC \u0646\u0645\u06CC \u0634\u0648\u062F",imageValidateSizeLabelImageSizeTooSmall:"\u062A\u0635\u0648\u06CC\u0631 \u0628\u0633\u06CC\u0627\u0631 \u06A9\u0648\u0686\u06A9 \u0627\u0633\u062A",imageValidateSizeLabelImageSizeTooBig:"\u062A\u0635\u0648\u06CC\u0631 \u0628\u0633\u06CC\u0627\u0631 \u0628\u0632\u0631\u06AF \u0627\u0633\u062A",imageValidateSizeLabelExpectedMinSize:"\u062D\u062F\u0627\u0642\u0644 \u0627\u0646\u062F\u0627\u0632\u0647 {minWidth} \xD7 {minHeight} \u0627\u0633\u062A",imageValidateSizeLabelExpectedMaxSize:"\u062D\u062F\u0627\u06A9\u062B\u0631 \u0627\u0646\u062F\u0627\u0632\u0647 {maxWidth} \xD7 {maxHeight} \u0627\u0633\u062A",imageValidateSizeLabelImageResolutionTooLow:"\u0648\u0636\u0648\u062D \u062A\u0635\u0648\u06CC\u0631 \u0628\u0633\u06CC\u0627\u0631 \u06A9\u0645 \u0627\u0633\u062A",imageValidateSizeLabelImageResolutionTooHigh:"\u0648\u0636\u0648\u0639 \u062A\u0635\u0648\u06CC\u0631 \u0628\u0633\u06CC\u0627\u0631 \u0632\u06CC\u0627\u062F \u0627\u0633\u062A",imageValidateSizeLabelExpectedMinResolution:"\u062D\u062F\u0627\u0642\u0644 \u0648\u0636\u0648\u062D \u062A\u0635\u0648\u06CC\u0631 {minResolution} \u0627\u0633\u062A",imageValidateSizeLabelExpectedMaxResolution:"\u062D\u062F\u0627\u06A9\u062B\u0631 \u0648\u0636\u0648\u062D \u062A\u0635\u0648\u06CC\u0631 {maxResolution} \u0627\u0633\u062A"};var Vo={labelIdle:'Ved\xE4 ja pudota tiedostoja tai Selaa ',labelInvalidField:"Kent\xE4ss\xE4 on virheellisi\xE4 tiedostoja",labelFileWaitingForSize:"Odotetaan kokoa",labelFileSizeNotAvailable:"Kokoa ei saatavilla",labelFileLoading:"Ladataan",labelFileLoadError:"Virhe latauksessa",labelFileProcessing:"L\xE4hetet\xE4\xE4n",labelFileProcessingComplete:"L\xE4hetys valmis",labelFileProcessingAborted:"L\xE4hetys peruttu",labelFileProcessingError:"Virhe l\xE4hetyksess\xE4",labelFileProcessingRevertError:"Virhe palautuksessa",labelFileRemoveError:"Virhe poistamisessa",labelTapToCancel:"peruuta napauttamalla",labelTapToRetry:"yrit\xE4 uudelleen napauttamalla",labelTapToUndo:"kumoa napauttamalla",labelButtonRemoveItem:"Poista",labelButtonAbortItemLoad:"Keskeyt\xE4",labelButtonRetryItemLoad:"Yrit\xE4 uudelleen",labelButtonAbortItemProcessing:"Peruuta",labelButtonUndoItemProcessing:"Kumoa",labelButtonRetryItemProcessing:"Yrit\xE4 uudelleen",labelButtonProcessItem:"L\xE4het\xE4",labelMaxFileSizeExceeded:"Tiedoston koko on liian suuri",labelMaxFileSize:"Tiedoston maksimikoko on {filesize}",labelMaxTotalFileSizeExceeded:"Tiedostojen yhdistetty maksimikoko ylitetty",labelMaxTotalFileSize:"Tiedostojen yhdistetty maksimikoko on {filesize}",labelFileTypeNotAllowed:"Tiedostotyyppi\xE4 ei sallita",fileValidateTypeLabelExpectedTypes:"Sallitaan {allButLastType} tai {lastType}",imageValidateSizeLabelFormatError:"Kuvatyyppi\xE4 ei tueta",imageValidateSizeLabelImageSizeTooSmall:"Kuva on liian pieni",imageValidateSizeLabelImageSizeTooBig:"Kuva on liian suuri",imageValidateSizeLabelExpectedMinSize:"Minimikoko on {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maksimikoko on {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Resoluutio on liian pieni",imageValidateSizeLabelImageResolutionTooHigh:"Resoluutio on liian suuri",imageValidateSizeLabelExpectedMinResolution:"Minimiresoluutio on {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maksimiresoluutio on {maxResolution}"};var Go={labelIdle:'Faites glisser vos fichiers ou Parcourir ',labelInvalidField:"Le champ contient des fichiers invalides",labelFileWaitingForSize:"En attente de taille",labelFileSizeNotAvailable:"Taille non disponible",labelFileLoading:"Chargement",labelFileLoadError:"Erreur durant le chargement",labelFileProcessing:"Traitement",labelFileProcessingComplete:"Traitement effectu\xE9",labelFileProcessingAborted:"Traitement interrompu",labelFileProcessingError:"Erreur durant le traitement",labelFileProcessingRevertError:"Erreur durant la restauration",labelFileRemoveError:"Erreur durant la suppression",labelTapToCancel:"appuyer pour annuler",labelTapToRetry:"appuyer pour r\xE9essayer",labelTapToUndo:"appuyer pour revenir en arri\xE8re",labelButtonRemoveItem:"Retirer",labelButtonAbortItemLoad:"Annuler",labelButtonRetryItemLoad:"Recommencer",labelButtonAbortItemProcessing:"Annuler",labelButtonUndoItemProcessing:"Revenir en arri\xE8re",labelButtonRetryItemProcessing:"Recommencer",labelButtonProcessItem:"Transf\xE9rer",labelMaxFileSizeExceeded:"Le fichier est trop volumineux",labelMaxFileSize:"La taille maximale de fichier est {filesize}",labelMaxTotalFileSizeExceeded:"Taille totale maximale d\xE9pass\xE9e",labelMaxTotalFileSize:"La taille totale maximale des fichiers est {filesize}",labelFileTypeNotAllowed:"Fichier non valide",fileValidateTypeLabelExpectedTypes:"Attendu {allButLastType} ou {lastType}",imageValidateSizeLabelFormatError:"Type d'image non pris en charge",imageValidateSizeLabelImageSizeTooSmall:"L'image est trop petite",imageValidateSizeLabelImageSizeTooBig:"L'image est trop grande",imageValidateSizeLabelExpectedMinSize:"La taille minimale est {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"La taille maximale est {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"La r\xE9solution est trop faible",imageValidateSizeLabelImageResolutionTooHigh:"La r\xE9solution est trop \xE9lev\xE9e",imageValidateSizeLabelExpectedMinResolution:"La r\xE9solution minimale est {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"La r\xE9solution maximale est {maxResolution}"};var Uo={labelIdle:'\u05D2\u05E8\u05D5\u05E8 \u05D5\u05E9\u05D7\u05E8\u05E8 \u05D0\u05EA \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD \u05DB\u05D0\u05DF \u05D0\u05D5 \u05DC\u05D7\u05E5 \u05DB\u05D0\u05DF \u05DC\u05D1\u05D7\u05D9\u05E8\u05D4 ',labelInvalidField:"\u05E7\u05D5\u05D1\u05E5 \u05DC\u05D0 \u05D7\u05D5\u05E7\u05D9",labelFileWaitingForSize:"\u05DE\u05D7\u05E9\u05D1 \u05D0\u05EA \u05D2\u05D5\u05D3\u05DC \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD",labelFileSizeNotAvailable:"\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05E7\u05D1\u05D5\u05E2 \u05D0\u05EA \u05D2\u05D5\u05D3\u05DC \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD",labelFileLoading:"\u05D8\u05D5\u05E2\u05DF...",labelFileLoadError:"\u05E9\u05D2\u05D9\u05D0\u05D4 \u05D0\u05E8\u05E2\u05D4 \u05D1\u05E2\u05EA \u05D8\u05E2\u05D9\u05E0\u05EA \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD",labelFileProcessing:"\u05DE\u05E2\u05DC\u05D4 \u05D0\u05EA \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD",labelFileProcessingComplete:"\u05D4\u05E2\u05DC\u05D0\u05EA \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD \u05D4\u05E1\u05EA\u05D9\u05D9\u05DE\u05D4",labelFileProcessingAborted:"\u05D4\u05E2\u05DC\u05D0\u05EA \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD \u05D1\u05D5\u05D8\u05DC\u05D4",labelFileProcessingError:"\u05E9\u05D2\u05D9\u05D0\u05D4 \u05D0\u05E8\u05E2\u05D4 \u05D1\u05E2\u05EA \u05D4\u05E2\u05DC\u05D0\u05EA \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD",labelFileProcessingRevertError:"\u05E9\u05D2\u05D9\u05D0\u05D4 \u05D0\u05E8\u05E2\u05D4 \u05D1\u05E2\u05EA \u05E9\u05D7\u05D6\u05D5\u05E8 \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD",labelFileRemoveError:"\u05E9\u05D2\u05D9\u05D0\u05D4 \u05D0\u05E8\u05E2\u05D4 \u05D1\u05E2\u05EA \u05D4\u05E1\u05E8\u05EA \u05D4\u05E7\u05D5\u05D1\u05E5",labelTapToCancel:"\u05D4\u05E7\u05DC\u05E7 \u05DC\u05D1\u05D9\u05D8\u05D5\u05DC",labelTapToRetry:"\u05D4\u05E7\u05DC\u05E7 \u05DC\u05E0\u05E1\u05D5\u05EA \u05E9\u05E0\u05D9\u05EA",labelTapToUndo:"\u05D4\u05E7\u05DC\u05E7 \u05DC\u05E9\u05D7\u05D6\u05E8",labelButtonRemoveItem:"\u05D4\u05E1\u05E8",labelButtonAbortItemLoad:"\u05D1\u05D8\u05DC",labelButtonRetryItemLoad:"\u05D8\u05E2\u05DF \u05E9\u05E0\u05D9\u05EA",labelButtonAbortItemProcessing:"\u05D1\u05D8\u05DC",labelButtonUndoItemProcessing:"\u05E9\u05D7\u05D6\u05E8",labelButtonRetryItemProcessing:"\u05E0\u05E1\u05D4 \u05E9\u05E0\u05D9\u05EA",labelButtonProcessItem:"\u05D4\u05E2\u05DC\u05D4 \u05E7\u05D5\u05D1\u05E5",labelMaxFileSizeExceeded:"\u05D4\u05E7\u05D5\u05D1\u05E5 \u05D2\u05D3\u05D5\u05DC \u05DE\u05D3\u05D9",labelMaxFileSize:"\u05D2\u05D5\u05D3\u05DC \u05D4\u05DE\u05D9\u05E8\u05D1\u05D9 \u05D4\u05DE\u05D5\u05EA\u05E8 \u05D4\u05D5\u05D0: {filesize}",labelMaxTotalFileSizeExceeded:"\u05D2\u05D5\u05D3\u05DC \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD \u05D7\u05D5\u05E8\u05D2 \u05DE\u05D4\u05DB\u05DE\u05D5\u05EA \u05D4\u05DE\u05D5\u05EA\u05E8\u05EA",labelMaxTotalFileSize:"\u05D4\u05D2\u05D5\u05D3\u05DC \u05D4\u05DE\u05D9\u05E8\u05D1\u05D9 \u05E9\u05DC \u05E1\u05DA \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD: {filesize}",labelFileTypeNotAllowed:"\u05E7\u05D5\u05D1\u05E5 \u05DE\u05E1\u05D5\u05D2 \u05D6\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05DE\u05D5\u05EA\u05E8",fileValidateTypeLabelExpectedTypes:"\u05D4\u05E7\u05D1\u05E6\u05D9\u05DD \u05D4\u05DE\u05D5\u05EA\u05E8\u05D9\u05DD \u05D4\u05DD {allButLastType} \u05D0\u05D5 {lastType}",imageValidateSizeLabelFormatError:"\u05EA\u05DE\u05D5\u05E0\u05D4 \u05D1\u05E4\u05D5\u05E8\u05DE\u05D8 \u05D6\u05D4 \u05D0\u05D9\u05E0\u05D4 \u05E0\u05EA\u05DE\u05DB\u05EA",imageValidateSizeLabelImageSizeTooSmall:"\u05EA\u05DE\u05D5\u05E0\u05D4 \u05D6\u05D5 \u05E7\u05D8\u05E0\u05D4 \u05DE\u05D3\u05D9",imageValidateSizeLabelImageSizeTooBig:"\u05EA\u05DE\u05D5\u05E0\u05D4 \u05D6\u05D5 \u05D2\u05D3\u05D5\u05DC\u05D4 \u05DE\u05D3\u05D9",imageValidateSizeLabelExpectedMinSize:"\u05D4\u05D2\u05D5\u05D3\u05DC \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA \u05DC\u05E4\u05D7\u05D5\u05EA: {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"\u05D4\u05D2\u05D5\u05D3\u05DC \u05D4\u05DE\u05E8\u05D1\u05D9 \u05D4\u05DE\u05D5\u05EA\u05E8: {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"\u05D4\u05E8\u05D6\u05D5\u05DC\u05D5\u05E6\u05D9\u05D4 \u05E9\u05DC \u05EA\u05DE\u05D5\u05E0\u05D4 \u05D6\u05D5 \u05E0\u05DE\u05D5\u05DB\u05D4 \u05DE\u05D3\u05D9",imageValidateSizeLabelImageResolutionTooHigh:"\u05D4\u05E8\u05D6\u05D5\u05DC\u05D5\u05E6\u05D9\u05D4 \u05E9\u05DC \u05EA\u05DE\u05D5\u05E0\u05D4 \u05D6\u05D5 \u05D2\u05D1\u05D5\u05D4\u05D4 \u05DE\u05D3\u05D9",imageValidateSizeLabelExpectedMinResolution:"\u05D4\u05E8\u05D6\u05D5\u05DC\u05D5\u05E6\u05D9\u05D4 \u05E6\u05E8\u05D9\u05DB\u05D4 \u05DC\u05D4\u05D9\u05D5\u05EA \u05DC\u05E4\u05D7\u05D5\u05EA: {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"\u05D4\u05E8\u05D6\u05D5\u05DC\u05D5\u05E6\u05D9\u05D4 \u05D4\u05DE\u05D9\u05E8\u05D1\u05D9\u05EA \u05D4\u05DE\u05D5\u05EA\u05E8\u05EA \u05D4\u05D9\u05D0: {maxResolution}"};var Ho={labelIdle:'Ovdje "ispusti" datoteku ili Pretra\u017Ei ',labelInvalidField:"Polje sadr\u017Ei neispravne datoteke",labelFileWaitingForSize:"\u010Cekanje na veli\u010Dinu datoteke",labelFileSizeNotAvailable:"Veli\u010Dina datoteke nije dostupna",labelFileLoading:"U\u010Ditavanje",labelFileLoadError:"Gre\u0161ka tijekom u\u010Ditavanja",labelFileProcessing:"Prijenos",labelFileProcessingComplete:"Prijenos zavr\u0161en",labelFileProcessingAborted:"Prijenos otkazan",labelFileProcessingError:"Gre\u0161ka tijekom prijenosa",labelFileProcessingRevertError:"Gre\u0161ka tijekom vra\u0107anja",labelFileRemoveError:"Gre\u0161ka tijekom uklananja datoteke",labelTapToCancel:"Dodirni za prekid",labelTapToRetry:"Dodirni za ponovno",labelTapToUndo:"Dodirni za vra\u0107anje",labelButtonRemoveItem:"Ukloni",labelButtonAbortItemLoad:"Odbaci",labelButtonRetryItemLoad:"Ponovi",labelButtonAbortItemProcessing:"Prekini",labelButtonUndoItemProcessing:"Vrati",labelButtonRetryItemProcessing:"Ponovi",labelButtonProcessItem:"Prijenos",labelMaxFileSizeExceeded:"Datoteka je prevelika",labelMaxFileSize:"Maksimalna veli\u010Dina datoteke je {filesize}",labelMaxTotalFileSizeExceeded:"Maksimalna ukupna veli\u010Dina datoteke prekora\u010Dena",labelMaxTotalFileSize:"Maksimalna ukupna veli\u010Dina datoteke je {filesize}",labelFileTypeNotAllowed:"Tip datoteke nije podr\u017Ean",fileValidateTypeLabelExpectedTypes:"O\u010Dekivan {allButLastType} ili {lastType}",imageValidateSizeLabelFormatError:"Tip slike nije podr\u017Ean",imageValidateSizeLabelImageSizeTooSmall:"Slika je premala",imageValidateSizeLabelImageSizeTooBig:"Slika je prevelika",imageValidateSizeLabelExpectedMinSize:"Minimalna veli\u010Dina je {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maksimalna veli\u010Dina je {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Rezolucija je preniska",imageValidateSizeLabelImageResolutionTooHigh:"Rezolucija je previsoka",imageValidateSizeLabelExpectedMinResolution:"Minimalna rezolucija je {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maksimalna rezolucija je {maxResolution}"};var Wo={labelIdle:'Mozgasd ide a f\xE1jlt a felt\xF6lt\xE9shez, vagy tall\xF3z\xE1s ',labelInvalidField:"A mez\u0151 \xE9rv\xE9nytelen f\xE1jlokat tartalmaz",labelFileWaitingForSize:"F\xE1ljm\xE9ret kisz\xE1mol\xE1sa",labelFileSizeNotAvailable:"A f\xE1jlm\xE9ret nem el\xE9rhet\u0151",labelFileLoading:"T\xF6lt\xE9s",labelFileLoadError:"Hiba a bet\xF6lt\xE9s sor\xE1n",labelFileProcessing:"Felt\xF6lt\xE9s",labelFileProcessingComplete:"Sikeres felt\xF6lt\xE9s",labelFileProcessingAborted:"A felt\xF6lt\xE9s megszak\xEDtva",labelFileProcessingError:"Hiba t\xF6rt\xE9nt a felt\xF6lt\xE9s sor\xE1n",labelFileProcessingRevertError:"Hiba a vissza\xE1ll\xEDt\xE1s sor\xE1n",labelFileRemoveError:"Hiba t\xF6rt\xE9nt az elt\xE1vol\xEDt\xE1s sor\xE1n",labelTapToCancel:"koppints a t\xF6rl\xE9shez",labelTapToRetry:"koppints az \xFAjrakezd\xE9shez",labelTapToUndo:"koppints a visszavon\xE1shoz",labelButtonRemoveItem:"Elt\xE1vol\xEDt\xE1s",labelButtonAbortItemLoad:"Megszak\xEDt\xE1s",labelButtonRetryItemLoad:"\xDAjrapr\xF3b\xE1lkoz\xE1s",labelButtonAbortItemProcessing:"Megszak\xEDt\xE1s",labelButtonUndoItemProcessing:"Visszavon\xE1s",labelButtonRetryItemProcessing:"\xDAjrapr\xF3b\xE1lkoz\xE1s",labelButtonProcessItem:"Felt\xF6lt\xE9s",labelMaxFileSizeExceeded:"A f\xE1jl t\xFAll\xE9pte a maxim\xE1lis m\xE9retet",labelMaxFileSize:"Maxim\xE1lis f\xE1jlm\xE9ret: {filesize}",labelMaxTotalFileSizeExceeded:"T\xFAll\xE9pte a maxim\xE1lis teljes m\xE9retet",labelMaxTotalFileSize:"A maxim\xE1is teljes f\xE1jlm\xE9ret: {filesize}",labelFileTypeNotAllowed:"\xC9rv\xE9nytelen t\xEDpus\xFA f\xE1jl",fileValidateTypeLabelExpectedTypes:"Enged\xE9lyezett t\xEDpusok {allButLastType} vagy {lastType}",imageValidateSizeLabelFormatError:"A k\xE9pt\xEDpus nem t\xE1mogatott",imageValidateSizeLabelImageSizeTooSmall:"A k\xE9p t\xFAl kicsi",imageValidateSizeLabelImageSizeTooBig:"A k\xE9p t\xFAl nagy",imageValidateSizeLabelExpectedMinSize:"Minimum m\xE9ret: {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maximum m\xE9ret: {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"A felbont\xE1s t\xFAl alacsony",imageValidateSizeLabelImageResolutionTooHigh:"A felbont\xE1s t\xFAl magas",imageValidateSizeLabelExpectedMinResolution:"Minim\xE1is felbont\xE1s: {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maxim\xE1lis felbont\xE1s: {maxResolution}"};var jo={labelIdle:'Seret & Jatuhkan berkas Anda atau Jelajahi',labelInvalidField:"Isian berisi berkas yang tidak valid",labelFileWaitingForSize:"Menunggu ukuran berkas",labelFileSizeNotAvailable:"Ukuran berkas tidak tersedia",labelFileLoading:"Memuat",labelFileLoadError:"Kesalahan saat memuat",labelFileProcessing:"Mengunggah",labelFileProcessingComplete:"Pengunggahan selesai",labelFileProcessingAborted:"Pengunggahan dibatalkan",labelFileProcessingError:"Kesalahan saat pengunggahan",labelFileProcessingRevertError:"Kesalahan saat pemulihan",labelFileRemoveError:"Kesalahan saat penghapusan",labelTapToCancel:"ketuk untuk membatalkan",labelTapToRetry:"ketuk untuk mencoba lagi",labelTapToUndo:"ketuk untuk mengurungkan",labelButtonRemoveItem:"Hapus",labelButtonAbortItemLoad:"Batalkan",labelButtonRetryItemLoad:"Coba Kembali",labelButtonAbortItemProcessing:"Batalkan",labelButtonUndoItemProcessing:"Urungkan",labelButtonRetryItemProcessing:"Coba Kembali",labelButtonProcessItem:"Unggah",labelMaxFileSizeExceeded:"Berkas terlalu besar",labelMaxFileSize:"Ukuran berkas maksimum adalah {filesize}",labelMaxTotalFileSizeExceeded:"Jumlah berkas maksimum terlampaui",labelMaxTotalFileSize:"Jumlah berkas maksimum adalah {filesize}",labelFileTypeNotAllowed:"Jenis berkas tidak valid",fileValidateTypeLabelExpectedTypes:"Mengharapkan {allButLastType} atau {lastType}",imageValidateSizeLabelFormatError:"Jenis citra tidak didukung",imageValidateSizeLabelImageSizeTooSmall:"Citra terlalu kecil",imageValidateSizeLabelImageSizeTooBig:"Citra terlalu besar",imageValidateSizeLabelExpectedMinSize:"Ukuran minimum adalah {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Ukuran maksimum adalah {minWidth} \xD7 {minHeight}",imageValidateSizeLabelImageResolutionTooLow:"Resolusi terlalu rendah",imageValidateSizeLabelImageResolutionTooHigh:"Resolusi terlalu tinggi",imageValidateSizeLabelExpectedMinResolution:"Resolusi minimum adalah {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Resolusi maksimum adalah {maxResolution}"};var Yo={labelIdle:'Trascina e rilascia i tuoi file oppure Sfoglia ',labelInvalidField:"Il campo contiene dei file non validi",labelFileWaitingForSize:"In attesa della dimensione",labelFileSizeNotAvailable:"Dimensione non disponibile",labelFileLoading:"Caricamento",labelFileLoadError:"Errore durante il caricamento",labelFileProcessing:"Caricamento",labelFileProcessingComplete:"Caricamento completato",labelFileProcessingAborted:"Caricamento cancellato",labelFileProcessingError:"Errore durante il caricamento",labelFileProcessingRevertError:"Errore durante il ripristino",labelFileRemoveError:"Errore durante l'eliminazione",labelTapToCancel:"tocca per cancellare",labelTapToRetry:"tocca per riprovare",labelTapToUndo:"tocca per ripristinare",labelButtonRemoveItem:"Elimina",labelButtonAbortItemLoad:"Cancella",labelButtonRetryItemLoad:"Ritenta",labelButtonAbortItemProcessing:"Cancella",labelButtonUndoItemProcessing:"Indietro",labelButtonRetryItemProcessing:"Ritenta",labelButtonProcessItem:"Carica",labelMaxFileSizeExceeded:"La dimensione del file \xE8 eccessiva",labelMaxFileSize:"La dimensione massima del file \xE8 {filesize}",labelMaxTotalFileSizeExceeded:"Dimensione totale massima superata",labelMaxTotalFileSize:"La dimensione massima totale dei file \xE8 {filesize}",labelFileTypeNotAllowed:"File non supportato",fileValidateTypeLabelExpectedTypes:"Aspetta {allButLastType} o {lastType}",imageValidateSizeLabelFormatError:"Tipo di immagine non supportata",imageValidateSizeLabelImageSizeTooSmall:"L'immagine \xE8 troppo piccola",imageValidateSizeLabelImageSizeTooBig:"L'immagine \xE8 troppo grande",imageValidateSizeLabelExpectedMinSize:"La dimensione minima \xE8 {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"La dimensione massima \xE8 {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"La risoluzione \xE8 troppo bassa",imageValidateSizeLabelImageResolutionTooHigh:"La risoluzione \xE8 troppo alta",imageValidateSizeLabelExpectedMinResolution:"La risoluzione minima \xE8 {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"La risoluzione massima \xE8 {maxResolution}"};var qo={labelIdle:'\u30D5\u30A1\u30A4\u30EB\u3092\u30C9\u30E9\u30C3\u30B0&\u30C9\u30ED\u30C3\u30D7\u53C8\u306F\u30D5\u30A1\u30A4\u30EB\u9078\u629E',labelInvalidField:"\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3067\u304D\u306A\u3044\u30D5\u30A1\u30A4\u30EB\u304C\u542B\u307E\u308C\u3066\u3044\u307E\u3059",labelFileWaitingForSize:"\u30D5\u30A1\u30A4\u30EB\u30B5\u30A4\u30BA\u3092\u5F85\u3063\u3066\u3044\u307E\u3059",labelFileSizeNotAvailable:"\u30D5\u30A1\u30A4\u30EB\u30B5\u30A4\u30BA\u304C\u307F\u3064\u304B\u308A\u307E\u305B\u3093",labelFileLoading:"\u8AAD\u8FBC\u4E2D...",labelFileLoadError:"\u8AAD\u8FBC\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F",labelFileProcessing:"\u8AAD\u8FBC\u4E2D...",labelFileProcessingComplete:"\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u5B8C\u4E86",labelFileProcessingAborted:"\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u304C\u30AD\u30E3\u30F3\u30BB\u30EB\u3055\u308C\u307E\u3057\u305F",labelFileProcessingError:"\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F",labelFileProcessingRevertError:"\u30ED\u30FC\u30EB\u30D0\u30C3\u30AF\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F",labelFileRemoveError:"\u524A\u9664\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F",labelTapToCancel:"\u30AF\u30EA\u30C3\u30AF\u3057\u3066\u30AD\u30E3\u30F3\u30BB\u30EB",labelTapToRetry:"\u30AF\u30EA\u30C3\u30AF\u3057\u3066\u3082\u3046\u4E00\u5EA6\u304A\u8A66\u3057\u4E0B\u3055\u3044",labelTapToUndo:"\u5143\u306B\u623B\u3059\u306B\u306F\u30BF\u30C3\u30D7\u3057\u307E\u3059",labelButtonRemoveItem:"\u524A\u9664",labelButtonAbortItemLoad:"\u4E2D\u65AD",labelButtonRetryItemLoad:"\u3082\u3046\u4E00\u5EA6\u5B9F\u884C",labelButtonAbortItemProcessing:"\u30AD\u30E3\u30F3\u30BB\u30EB",labelButtonUndoItemProcessing:"\u5143\u306B\u623B\u3059",labelButtonRetryItemProcessing:"\u3082\u3046\u4E00\u5EA6\u5B9F\u884C",labelButtonProcessItem:"\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9",labelMaxFileSizeExceeded:"\u30D5\u30A1\u30A4\u30EB\u30B5\u30A4\u30BA\u304C\u5927\u304D\u3059\u304E\u307E\u3059",labelMaxFileSize:"\u6700\u5927\u30D5\u30A1\u30A4\u30EB\u30B5\u30A4\u30BA\u306F {filesize} \u3067\u3059",labelMaxTotalFileSizeExceeded:"\u6700\u5927\u5408\u8A08\u30B5\u30A4\u30BA\u3092\u8D85\u3048\u307E\u3057\u305F",labelMaxTotalFileSize:"\u6700\u5927\u5408\u8A08\u30D5\u30A1\u30A4\u30EB\u30B5\u30A4\u30BA\u306F {filesize} \u3067\u3059",labelFileTypeNotAllowed:"\u7121\u52B9\u306A\u30D5\u30A1\u30A4\u30EB\u3067\u3059",fileValidateTypeLabelExpectedTypes:"\u30B5\u30DD\u30FC\u30C8\u3057\u3066\u3044\u308B\u30D5\u30A1\u30A4\u30EB\u306F {allButLastType} \u53C8\u306F {lastType} \u3067\u3059",imageValidateSizeLabelFormatError:"\u30B5\u30DD\u30FC\u30C8\u3057\u3066\u3044\u306A\u3044\u753B\u50CF\u3067\u3059",imageValidateSizeLabelImageSizeTooSmall:"\u753B\u50CF\u304C\u5C0F\u3055\u3059\u304E\u307E\u3059",imageValidateSizeLabelImageSizeTooBig:"\u753B\u50CF\u304C\u5927\u304D\u3059\u304E\u307E\u3059",imageValidateSizeLabelExpectedMinSize:"\u753B\u50CF\u306E\u6700\u5C0F\u30B5\u30A4\u30BA\u306F{minWidth}\xD7{minHeight}\u3067\u3059",imageValidateSizeLabelExpectedMaxSize:"\u753B\u50CF\u306E\u6700\u5927\u30B5\u30A4\u30BA\u306F{maxWidth} \xD7 {maxHeight}\u3067\u3059",imageValidateSizeLabelImageResolutionTooLow:"\u753B\u50CF\u306E\u89E3\u50CF\u5EA6\u304C\u4F4E\u3059\u304E\u307E\u3059",imageValidateSizeLabelImageResolutionTooHigh:"\u753B\u50CF\u306E\u89E3\u50CF\u5EA6\u304C\u9AD8\u3059\u304E\u307E\u3059",imageValidateSizeLabelExpectedMinResolution:"\u753B\u50CF\u306E\u6700\u5C0F\u89E3\u50CF\u5EA6\u306F{minResolution}\u3067\u3059",imageValidateSizeLabelExpectedMaxResolution:"\u753B\u50CF\u306E\u6700\u5927\u89E3\u50CF\u5EA6\u306F{maxResolution}\u3067\u3059"};var $o={labelIdle:'\u1791\u17B6\u1789&\u178A\u17B6\u1780\u17CB\u17A0\u17D2\u179C\u17B6\u179B\u17CB\u17AF\u1780\u179F\u17B6\u179A\u179A\u1794\u179F\u17CB\u17A2\u17D2\u1793\u1780 \u17AC \u179F\u17D2\u179C\u17C2\u1784\u179A\u1780 ',labelInvalidField:"\u1785\u1793\u17D2\u179B\u17C4\u17C7\u1798\u17B6\u1793\u17AF\u1780\u179F\u17B6\u179A\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C",labelFileWaitingForSize:"\u1780\u17C6\u1796\u17BB\u1784\u179A\u1784\u17CB\u1785\u17B6\u17C6\u1791\u17C6\u17A0\u17C6",labelFileSizeNotAvailable:"\u1791\u17C6\u17A0\u17C6\u1798\u17B7\u1793\u17A2\u17B6\u1785\u1794\u17D2\u179A\u17BE\u1794\u17B6\u1793",labelFileLoading:"\u1780\u17C6\u1796\u17BB\u1784\u178A\u17C6\u178E\u17BE\u179A\u1780\u17B6\u179A",labelFileLoadError:"\u1798\u17B6\u1793\u1794\u1789\u17D2\u17A0\u17B6\u1780\u17C6\u17A1\u17BB\u1784\u1796\u17C1\u179B\u178A\u17C6\u178E\u17BE\u179A\u1780\u17B6\u179A",labelFileProcessing:"\u1780\u17C6\u1796\u17BB\u1784\u1795\u17D2\u1791\u17BB\u1780\u17A1\u17BE\u1784",labelFileProcessingComplete:"\u1780\u17B6\u179A\u1795\u17D2\u1791\u17BB\u1780\u17A1\u17BE\u1784\u1796\u17C1\u1789\u179B\u17C1\u1789",labelFileProcessingAborted:"\u1780\u17B6\u179A\u1794\u1784\u17D2\u17A0\u17C4\u17C7\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17C4\u17C7\u1794\u1784\u17CB",labelFileProcessingError:"\u1798\u17B6\u1793\u1794\u1789\u17D2\u17A0\u17B6\u1780\u17C6\u17A1\u17BB\u1784\u1796\u17C1\u179B\u1780\u17C6\u1796\u17BB\u1784\u1795\u17D2\u1791\u17BB\u1780\u17A1\u17BE\u1784",labelFileProcessingRevertError:"\u1798\u17B6\u1793\u1794\u1789\u17D2\u17A0\u17B6\u1780\u17C6\u17A1\u17BB\u1784\u1796\u17C1\u179B\u178F\u17D2\u179A\u17A1\u1794\u17CB",labelFileRemoveError:"\u1798\u17B6\u1793\u1794\u1789\u17D2\u17A0\u17B6\u1780\u17C6\u17A1\u17BB\u1784\u1796\u17C1\u179B\u178A\u1780\u1785\u17C1\u1789",labelTapToCancel:"\u1785\u17BB\u1785\u178A\u17BE\u1798\u17D2\u1794\u17B8\u1794\u17C4\u17C7\u1794\u1784\u17CB",labelTapToRetry:"\u1785\u17BB\u1785\u178A\u17BE\u1798\u17D2\u1794\u17B8\u1796\u17D2\u1799\u17B6\u1799\u17B6\u1798\u1798\u17D2\u178F\u1784\u1791\u17C0\u178F",labelTapToUndo:"\u1785\u17BB\u1785\u178A\u17BE\u1798\u17D2\u1794\u17B8\u1798\u17B7\u1793\u1792\u17D2\u179C\u17BE\u179C\u17B7\u1789",labelButtonRemoveItem:"\u1799\u1780\u1785\u17C1\u1789",labelButtonAbortItemLoad:"\u1794\u17C4\u17C7\u1794\u1784\u17CB",labelButtonRetryItemLoad:"\u1796\u17D2\u1799\u17B6\u1799\u17B6\u1798\u1798\u17D2\u178F\u1784\u1791\u17C0\u178F",labelButtonAbortItemProcessing:"\u1794\u17C4\u17C7\u1794\u1784\u17CB",labelButtonUndoItemProcessing:"\u1798\u17B7\u1793\u1792\u17D2\u179C\u17BE\u179C\u17B7\u1789",labelButtonRetryItemProcessing:"\u1796\u17D2\u1799\u17B6\u1799\u17B6\u1798\u1798\u17D2\u178F\u1784\u1791\u17C0\u178F",labelButtonProcessItem:"\u1795\u17D2\u1791\u17BB\u1780\u17A1\u17BE\u1784",labelMaxFileSizeExceeded:"\u17AF\u1780\u179F\u17B6\u179A\u1792\u17C6\u1796\u17C1\u1780",labelMaxFileSize:"\u1791\u17C6\u17A0\u17C6\u17AF\u1780\u179F\u17B6\u179A\u17A2\u178F\u17B7\u1794\u179A\u1798\u17B6\u1782\u17BA {filesize}",labelMaxTotalFileSizeExceeded:"\u179B\u17BE\u179F\u1791\u17C6\u17A0\u17C6\u179F\u179A\u17BB\u1794\u17A2\u178F\u17B7\u1794\u179A\u1798\u17B6",labelMaxTotalFileSize:"\u1791\u17C6\u17A0\u17C6\u17AF\u1780\u179F\u17B6\u179A\u179F\u179A\u17BB\u1794\u17A2\u178F\u17B7\u1794\u179A\u1798\u17B6\u1782\u17BA {filesize}",labelFileTypeNotAllowed:"\u1794\u17D2\u179A\u1797\u17C1\u1791\u17AF\u1780\u179F\u17B6\u179A\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C",fileValidateTypeLabelExpectedTypes:"\u179A\u17C6\u1796\u17B9\u1784\u1790\u17B6 {allButLastType} \u17AC {lastType}",imageValidateSizeLabelFormatError:"\u1794\u17D2\u179A\u1797\u17C1\u1791\u179A\u17BC\u1794\u1797\u17B6\u1796\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C",imageValidateSizeLabelImageSizeTooSmall:"\u179A\u17BC\u1794\u1797\u17B6\u1796\u178F\u17BC\u1785\u1796\u17C1\u1780",imageValidateSizeLabelImageSizeTooBig:"\u179A\u17BC\u1794\u1797\u17B6\u1796\u1792\u17C6\u1796\u17C1\u1780",imageValidateSizeLabelExpectedMinSize:"\u1791\u17C6\u17A0\u17C6\u17A2\u1794\u17D2\u1794\u1794\u179A\u1798\u17B6\u1782\u17BA {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"\u1791\u17C6\u17A0\u17C6\u17A2\u178F\u17B7\u1794\u179A\u1798\u17B6\u1782\u17BA {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"\u1782\u17BB\u178E\u1797\u17B6\u1796\u1794\u1784\u17D2\u17A0\u17B6\u1789\u1791\u17B6\u1794\u1796\u17C1\u1780",imageValidateSizeLabelImageResolutionTooHigh:"\u1782\u17BB\u178E\u1797\u17B6\u1796\u1794\u1784\u17D2\u17A0\u17B6\u1789\u1781\u17D2\u1796\u179F\u17CB\u1796\u17C1\u1780",imageValidateSizeLabelExpectedMinResolution:"\u1782\u17BB\u178E\u1797\u17B6\u1796\u1794\u1784\u17D2\u17A0\u17B6\u1789\u17A2\u1794\u17D2\u1794\u1794\u179A\u1798\u17B6\u1782\u17BA {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"\u1782\u17BB\u178E\u1797\u17B6\u1796\u1794\u1784\u17D2\u17A0\u17B6\u1789\u17A2\u178F\u17B7\u1794\u179A\u1798\u17B6\u1782\u17BA {maxResolution}"};var Xo={labelIdle:'\uD30C\uC77C\uC744 \uB4DC\uB798\uADF8 \uD558\uAC70\uB098 \uCC3E\uC544\uBCF4\uAE30 ',labelInvalidField:"\uD544\uB4DC\uC5D0 \uC720\uD6A8\uD558\uC9C0 \uC54A\uC740 \uD30C\uC77C\uC774 \uC788\uC2B5\uB2C8\uB2E4.",labelFileWaitingForSize:"\uC6A9\uB7C9 \uD655\uC778\uC911",labelFileSizeNotAvailable:"\uC0AC\uC6A9\uD560 \uC218 \uC5C6\uB294 \uC6A9\uB7C9",labelFileLoading:"\uBD88\uB7EC\uC624\uB294 \uC911",labelFileLoadError:"\uD30C\uC77C \uBD88\uB7EC\uC624\uAE30 \uC2E4\uD328",labelFileProcessing:"\uC5C5\uB85C\uB4DC \uC911",labelFileProcessingComplete:"\uC5C5\uB85C\uB4DC \uC131\uACF5",labelFileProcessingAborted:"\uC5C5\uB85C\uB4DC \uCDE8\uC18C\uB428",labelFileProcessingError:"\uD30C\uC77C \uC5C5\uB85C\uB4DC \uC2E4\uD328",labelFileProcessingRevertError:"\uB418\uB3CC\uB9AC\uAE30 \uC2E4\uD328",labelFileRemoveError:"\uC81C\uAC70 \uC2E4\uD328",labelTapToCancel:"\uD0ED\uD558\uC5EC \uCDE8\uC18C",labelTapToRetry:"\uD0ED\uD558\uC5EC \uC7AC\uC2DC\uC791",labelTapToUndo:"\uD0ED\uD558\uC5EC \uC2E4\uD589 \uCDE8\uC18C",labelButtonRemoveItem:"\uC81C\uAC70",labelButtonAbortItemLoad:"\uC911\uB2E8",labelButtonRetryItemLoad:"\uC7AC\uC2DC\uC791",labelButtonAbortItemProcessing:"\uCDE8\uC18C",labelButtonUndoItemProcessing:"\uC2E4\uD589 \uCDE8\uC18C",labelButtonRetryItemProcessing:"\uC7AC\uC2DC\uC791",labelButtonProcessItem:"\uC5C5\uB85C\uB4DC",labelMaxFileSizeExceeded:"\uD30C\uC77C\uC774 \uB108\uBB34 \uD07D\uB2C8\uB2E4.",labelMaxFileSize:"\uCD5C\uB300 \uD30C\uC77C \uC6A9\uB7C9\uC740 {filesize} \uC785\uB2C8\uB2E4.",labelMaxTotalFileSizeExceeded:"\uCD5C\uB300 \uC804\uCCB4 \uD30C\uC77C \uC6A9\uB7C9 \uCD08\uACFC\uD558\uC600\uC2B5\uB2C8\uB2E4.",labelMaxTotalFileSize:"\uCD5C\uB300 \uC804\uCCB4 \uD30C\uC77C \uC6A9\uB7C9\uC740 {filesize} \uC785\uB2C8\uB2E4.",labelFileTypeNotAllowed:"\uC798\uBABB\uB41C \uD615\uC2DD\uC758 \uD30C\uC77C",fileValidateTypeLabelExpectedTypes:"{allButLastType} \uB610\uB294 {lastType}",imageValidateSizeLabelFormatError:"\uC9C0\uC6D0\uB418\uC9C0 \uC54A\uB294 \uC774\uBBF8\uC9C0 \uC720\uD615",imageValidateSizeLabelImageSizeTooSmall:"\uC774\uBBF8\uC9C0\uAC00 \uB108\uBB34 \uC791\uC2B5\uB2C8\uB2E4.",imageValidateSizeLabelImageSizeTooBig:"\uC774\uBBF8\uC9C0\uAC00 \uB108\uBB34 \uD07D\uB2C8\uB2E4.",imageValidateSizeLabelExpectedMinSize:"\uC774\uBBF8\uC9C0 \uCD5C\uC18C \uD06C\uAE30\uB294 {minWidth} \xD7 {minHeight} \uC785\uB2C8\uB2E4",imageValidateSizeLabelExpectedMaxSize:"\uC774\uBBF8\uC9C0 \uCD5C\uB300 \uD06C\uAE30\uB294 {maxWidth} \xD7 {maxHeight} \uC785\uB2C8\uB2E4",imageValidateSizeLabelImageResolutionTooLow:"\uD574\uC0C1\uB3C4\uAC00 \uB108\uBB34 \uB0AE\uC2B5\uB2C8\uB2E4.",imageValidateSizeLabelImageResolutionTooHigh:"\uD574\uC0C1\uB3C4\uAC00 \uB108\uBB34 \uB192\uC2B5\uB2C8\uB2E4.",imageValidateSizeLabelExpectedMinResolution:"\uCD5C\uC18C \uD574\uC0C1\uB3C4\uB294 {minResolution} \uC785\uB2C8\uB2E4.",imageValidateSizeLabelExpectedMaxResolution:"\uCD5C\uB300 \uD574\uC0C1\uB3C4\uB294 {maxResolution} \uC785\uB2C8\uB2E4."};var Ko={labelIdle:'\u012Ed\u0117kite failus \u010Dia arba Ie\u0161kokite ',labelInvalidField:"Laukelis talpina netinkamus failus",labelFileWaitingForSize:"Laukiama dyd\u017Eio",labelFileSizeNotAvailable:"Dydis ne\u017Einomas",labelFileLoading:"Kraunama",labelFileLoadError:"Klaida \u012Fkeliant",labelFileProcessing:"\u012Ekeliama",labelFileProcessingComplete:"\u012Ek\u0117limas s\u0117kmingas",labelFileProcessingAborted:"\u012Ek\u0117limas at\u0161auktas",labelFileProcessingError:"\u012Ekeliant \u012Fvyko klaida",labelFileProcessingRevertError:"At\u0161aukiant \u012Fvyko klaida",labelFileRemoveError:"I\u0161trinant \u012Fvyko klaida",labelTapToCancel:"Palieskite nor\u0117dami at\u0161aukti",labelTapToRetry:"Palieskite nor\u0117dami pakartoti",labelTapToUndo:"Palieskite nor\u0117dami at\u0161aukti",labelButtonRemoveItem:"I\u0161trinti",labelButtonAbortItemLoad:"Sustabdyti",labelButtonRetryItemLoad:"Pakartoti",labelButtonAbortItemProcessing:"At\u0161aukti",labelButtonUndoItemProcessing:"At\u0161aukti",labelButtonRetryItemProcessing:"Pakartoti",labelButtonProcessItem:"\u012Ekelti",labelMaxFileSizeExceeded:"Failas per didelis",labelMaxFileSize:"Maksimalus failo dydis yra {filesize}",labelMaxTotalFileSizeExceeded:"Vir\u0161ijote maksimal\u0173 leistin\u0105 dyd\u012F",labelMaxTotalFileSize:"Maksimalus leistinas dydis yra {filesize}",labelFileTypeNotAllowed:"Netinkamas failas",fileValidateTypeLabelExpectedTypes:"Tikisi {allButLastType} arba {lastType}",imageValidateSizeLabelFormatError:"Nuotraukos formatas nepalaikomas",imageValidateSizeLabelImageSizeTooSmall:"Nuotrauka per ma\u017Ea",imageValidateSizeLabelImageSizeTooBig:"Nuotrauka per didel\u0117",imageValidateSizeLabelExpectedMinSize:"Minimalus dydis yra {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maksimalus dydis yra {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Rezoliucija per ma\u017Ea",imageValidateSizeLabelImageResolutionTooHigh:"Rezoliucija per didel\u0117",imageValidateSizeLabelExpectedMinResolution:"Minimali rezoliucija yra {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maksimali rezoliucija yra {maxResolution}"};var Zo={labelIdle:'I file hn\xFBkl\xFBt rawh, emaw Zawnna ',labelInvalidField:"Hemi hian files diklo a kengtel",labelFileWaitingForSize:"A lenzawng a ngh\xE2k mek",labelFileSizeNotAvailable:"A lenzawng a awmlo",labelFileLoading:"Loading",labelFileLoadError:"Load laiin dik lo a awm",labelFileProcessing:"Uploading",labelFileProcessingComplete:"Upload a zo",labelFileProcessingAborted:"Upload s\xFBt a ni",labelFileProcessingError:"Upload laiin dik lo a awm",labelFileProcessingRevertError:"Dahk\xEEr laiin dik lo a awm",labelFileRemoveError:"Paih laiin dik lo a awm",labelTapToCancel:"S\xFBt turin hmet rawh",labelTapToRetry:"Tinawn turin hmet rawh",labelTapToUndo:"Tilet turin hmet rawh",labelButtonRemoveItem:"Paihna",labelButtonAbortItemLoad:"Tihtlawlhna",labelButtonRetryItemLoad:"Tihnawnna",labelButtonAbortItemProcessing:"S\xFBtna",labelButtonUndoItemProcessing:"Tihletna",labelButtonRetryItemProcessing:"Tihnawnna",labelButtonProcessItem:"Upload",labelMaxFileSizeExceeded:"File a lian lutuk",labelMaxFileSize:"File lenzawng tam ber chu {filesize} ani",labelMaxTotalFileSizeExceeded:"A lenzawng belh kh\xE2wm tam ber a p\xEAl",labelMaxTotalFileSize:"File lenzawng belh kh\xE2wm tam ber chu {filesize} a ni",labelFileTypeNotAllowed:"File type dik lo a ni",fileValidateTypeLabelExpectedTypes:"{allButLastType} emaw {lastType} emaw beisei a ni",imageValidateSizeLabelFormatError:"Thlal\xE2k type a thl\xE2wplo",imageValidateSizeLabelImageSizeTooSmall:"Thlal\xE2k hi a t\xEA lutuk",imageValidateSizeLabelImageSizeTooBig:"Thlal\xE2k hi a lian lutuk",imageValidateSizeLabelExpectedMinSize:"A lenzawng tl\xEAm ber chu {minWidth} x {minHeight} a ni",imageValidateSizeLabelExpectedMaxSize:"A lenzawng tam ber chu {maxWidth} x {maxHeight} a ni",imageValidateSizeLabelImageResolutionTooLow:"Resolution a hniam lutuk",imageValidateSizeLabelImageResolutionTooHigh:"Resolution a s\xE2ng lutuk",imageValidateSizeLabelExpectedMinResolution:"Resolution hniam ber chu {minResolution} a ni",imageValidateSizeLabelExpectedMaxResolution:"Resolution s\xE2ng ber chu {maxResolution} a ni"};var Qo={labelIdle:'Ievelciet savus failus vai p\u0101rl\u016Bkojiet \u0161eit ',labelInvalidField:"Lauks satur neder\u012Bgus failus",labelFileWaitingForSize:"Gaid\u0101m faila izm\u0113ru",labelFileSizeNotAvailable:"Izm\u0113rs nav pieejams",labelFileLoading:"Notiek iel\u0101de",labelFileLoadError:"Notika k\u013C\u016Bda iel\u0101des laik\u0101",labelFileProcessing:"Notiek aug\u0161upiel\u0101de",labelFileProcessingComplete:"Aug\u0161upiel\u0101de pabeigta",labelFileProcessingAborted:"Aug\u0161upiel\u0101de atcelta",labelFileProcessingError:"Notika k\u013C\u016Bda aug\u0161upiel\u0101des laik\u0101",labelFileProcessingRevertError:"Notika k\u013C\u016Bda atgrie\u0161anas laik\u0101",labelFileRemoveError:"Notika k\u013C\u016Bda dz\u0113\u0161anas laik\u0101",labelTapToCancel:"pieskarieties, lai atceltu",labelTapToRetry:"pieskarieties, lai m\u0113\u0123in\u0101tu v\u0113lreiz",labelTapToUndo:"pieskarieties, lai atsauktu",labelButtonRemoveItem:"Dz\u0113st",labelButtonAbortItemLoad:"P\u0101rtraukt",labelButtonRetryItemLoad:"M\u0113\u0123in\u0101t v\u0113lreiz",labelButtonAbortItemProcessing:"P\u0101rtraucam",labelButtonUndoItemProcessing:"Atsaucam",labelButtonRetryItemProcessing:"M\u0113\u0123in\u0101m v\u0113lreiz",labelButtonProcessItem:"Aug\u0161upiel\u0101d\u0113t",labelMaxFileSizeExceeded:"Fails ir p\u0101r\u0101k liels",labelMaxFileSize:"Maksim\u0101lais faila izm\u0113rs ir {filesize}",labelMaxTotalFileSizeExceeded:"P\u0101rsniegts maksim\u0101lais kop\u0113jais failu izm\u0113rs",labelMaxTotalFileSize:"Maksim\u0101lais kop\u0113jais failu izm\u0113rs ir {filesize}",labelFileTypeNotAllowed:"Neder\u012Bgs faila tips",fileValidateTypeLabelExpectedTypes:"Sagaid\u0101m {allButLastType} vai {lastType}",imageValidateSizeLabelFormatError:"Neatbilsto\u0161s att\u0113la tips",imageValidateSizeLabelImageSizeTooSmall:"Att\u0113ls ir p\u0101r\u0101k mazs",imageValidateSizeLabelImageSizeTooBig:"Att\u0113ls ir p\u0101r\u0101k liels",imageValidateSizeLabelExpectedMinSize:"Minim\u0101lais izm\u0113rs ir {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maksim\u0101lais izm\u0113rs ir {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Iz\u0161\u0137irtsp\u0113ja ir p\u0101r\u0101k zema",imageValidateSizeLabelImageResolutionTooHigh:"Iz\u0161\u0137irtsp\u0113ja ir p\u0101r\u0101k augsta",imageValidateSizeLabelExpectedMinResolution:"Minim\u0101l\u0101 iz\u0161\u0137irtsp\u0113ja ir {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maksim\u0101l\u0101 iz\u0161\u0137irtsp\u0113ja ir {maxResolution}"};var Jo={labelIdle:'Dra og slipp filene dine, eller Bla gjennom... ',labelInvalidField:"Feltet inneholder ugyldige filer",labelFileWaitingForSize:"Venter p\xE5 st\xF8rrelse",labelFileSizeNotAvailable:"St\xF8rrelse ikke tilgjengelig",labelFileLoading:"Laster",labelFileLoadError:"Feil under lasting",labelFileProcessing:"Laster opp",labelFileProcessingComplete:"Opplasting ferdig",labelFileProcessingAborted:"Opplasting avbrutt",labelFileProcessingError:"Feil under opplasting",labelFileProcessingRevertError:"Feil under reversering",labelFileRemoveError:"Feil under flytting",labelTapToCancel:"klikk for \xE5 avbryte",labelTapToRetry:"klikk for \xE5 pr\xF8ve p\xE5 nytt",labelTapToUndo:"klikk for \xE5 angre",labelButtonRemoveItem:"Fjern",labelButtonAbortItemLoad:"Avbryt",labelButtonRetryItemLoad:"Pr\xF8v p\xE5 nytt",labelButtonAbortItemProcessing:"Avbryt",labelButtonUndoItemProcessing:"Angre",labelButtonRetryItemProcessing:"Pr\xF8v p\xE5 nytt",labelButtonProcessItem:"Last opp",labelMaxFileSizeExceeded:"Filen er for stor",labelMaxFileSize:"Maksimal filst\xF8rrelse er {filesize}",labelMaxTotalFileSizeExceeded:"Maksimal total st\xF8rrelse oversteget",labelMaxTotalFileSize:"Maksimal total st\xF8rrelse er {filesize}",labelFileTypeNotAllowed:"Ugyldig filtype",fileValidateTypeLabelExpectedTypes:"Forventer {allButLastType} eller {lastType}",imageValidateSizeLabelFormatError:"Bildeformat ikke st\xF8ttet",imageValidateSizeLabelImageSizeTooSmall:"Bildet er for lite",imageValidateSizeLabelImageSizeTooBig:"Bildet er for stort",imageValidateSizeLabelExpectedMinSize:"Minimumsst\xF8rrelse er {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maksimumsst\xF8rrelse er {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Oppl\xF8sningen er for lav",imageValidateSizeLabelImageResolutionTooHigh:"Oppl\xF8sningen er for h\xF8y",imageValidateSizeLabelExpectedMinResolution:"Minimum oppl\xF8sning er {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maksimal oppl\xF8sning er {maxResolution}"};var er={labelIdle:'Drag & Drop je bestanden of Bladeren ',labelInvalidField:"Veld bevat ongeldige bestanden",labelFileWaitingForSize:"Wachten op grootte",labelFileSizeNotAvailable:"Grootte niet beschikbaar",labelFileLoading:"Laden",labelFileLoadError:"Fout tijdens laden",labelFileProcessing:"Uploaden",labelFileProcessingComplete:"Upload afgerond",labelFileProcessingAborted:"Upload geannuleerd",labelFileProcessingError:"Fout tijdens upload",labelFileProcessingRevertError:"Fout bij herstellen",labelFileRemoveError:"Fout bij verwijderen",labelTapToCancel:"tik om te annuleren",labelTapToRetry:"tik om opnieuw te proberen",labelTapToUndo:"tik om ongedaan te maken",labelButtonRemoveItem:"Verwijderen",labelButtonAbortItemLoad:"Afbreken",labelButtonRetryItemLoad:"Opnieuw proberen",labelButtonAbortItemProcessing:"Annuleren",labelButtonUndoItemProcessing:"Ongedaan maken",labelButtonRetryItemProcessing:"Opnieuw proberen",labelButtonProcessItem:"Upload",labelMaxFileSizeExceeded:"Bestand is te groot",labelMaxFileSize:"Maximale bestandsgrootte is {filesize}",labelMaxTotalFileSizeExceeded:"Maximale totale grootte overschreden",labelMaxTotalFileSize:"Maximale totale bestandsgrootte is {filesize}",labelFileTypeNotAllowed:"Ongeldig bestandstype",fileValidateTypeLabelExpectedTypes:"Verwacht {allButLastType} of {lastType}",imageValidateSizeLabelFormatError:"Afbeeldingstype niet ondersteund",imageValidateSizeLabelImageSizeTooSmall:"Afbeelding is te klein",imageValidateSizeLabelImageSizeTooBig:"Afbeelding is te groot",imageValidateSizeLabelExpectedMinSize:"Minimale afmeting is {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maximale afmeting is {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Resolutie is te laag",imageValidateSizeLabelImageResolutionTooHigh:"Resolution is too high",imageValidateSizeLabelExpectedMinResolution:"Minimale resolutie is {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maximale resolutie is {maxResolution}"};var tr={labelIdle:'Przeci\u0105gnij i upu\u015B\u0107 lub wybierz pliki',labelInvalidField:"Nieprawid\u0142owe pliki",labelFileWaitingForSize:"Pobieranie rozmiaru",labelFileSizeNotAvailable:"Nieznany rozmiar",labelFileLoading:"Wczytywanie",labelFileLoadError:"B\u0142\u0105d wczytywania",labelFileProcessing:"Przesy\u0142anie",labelFileProcessingComplete:"Przes\u0142ano",labelFileProcessingAborted:"Przerwano",labelFileProcessingError:"Przesy\u0142anie nie powiod\u0142o si\u0119",labelFileProcessingRevertError:"Co\u015B posz\u0142o nie tak",labelFileRemoveError:"Nieudane usuni\u0119cie",labelTapToCancel:"Anuluj",labelTapToRetry:"Pon\xF3w",labelTapToUndo:"Cofnij",labelButtonRemoveItem:"Usu\u0144",labelButtonAbortItemLoad:"Przerwij",labelButtonRetryItemLoad:"Pon\xF3w",labelButtonAbortItemProcessing:"Anuluj",labelButtonUndoItemProcessing:"Cofnij",labelButtonRetryItemProcessing:"Pon\xF3w",labelButtonProcessItem:"Prze\u015Blij",labelMaxFileSizeExceeded:"Plik jest zbyt du\u017Cy",labelMaxFileSize:"Dopuszczalna wielko\u015B\u0107 pliku to {filesize}",labelMaxTotalFileSizeExceeded:"Przekroczono \u0142\u0105czny rozmiar plik\xF3w",labelMaxTotalFileSize:"\u0141\u0105czny rozmiar plik\xF3w nie mo\u017Ce przekroczy\u0107 {filesize}",labelFileTypeNotAllowed:"Niedozwolony rodzaj pliku",fileValidateTypeLabelExpectedTypes:"Oczekiwano {allButLastType} lub {lastType}",imageValidateSizeLabelFormatError:"Nieobs\u0142ugiwany format obrazu",imageValidateSizeLabelImageSizeTooSmall:"Obraz jest zbyt ma\u0142y",imageValidateSizeLabelImageSizeTooBig:"Obraz jest zbyt du\u017Cy",imageValidateSizeLabelExpectedMinSize:"Minimalne wymiary obrazu to {minWidth}\xD7{minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maksymalna wymiary obrazu to {maxWidth}\xD7{maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Rozdzielczo\u015B\u0107 jest zbyt niska",imageValidateSizeLabelImageResolutionTooHigh:"Rozdzielczo\u015B\u0107 jest zbyt wysoka",imageValidateSizeLabelExpectedMinResolution:"Minimalna rozdzielczo\u015B\u0107 to {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maksymalna rozdzielczo\u015B\u0107 to {maxResolution}"};var ir={labelIdle:'Arraste & Largue os ficheiros ou Seleccione ',labelInvalidField:"O campo cont\xE9m ficheiros inv\xE1lidos",labelFileWaitingForSize:"A aguardar tamanho",labelFileSizeNotAvailable:"Tamanho n\xE3o dispon\xEDvel",labelFileLoading:"A carregar",labelFileLoadError:"Erro ao carregar",labelFileProcessing:"A carregar",labelFileProcessingComplete:"Carregamento completo",labelFileProcessingAborted:"Carregamento cancelado",labelFileProcessingError:"Erro ao carregar",labelFileProcessingRevertError:"Erro ao reverter",labelFileRemoveError:"Erro ao remover",labelTapToCancel:"carregue para cancelar",labelTapToRetry:"carregue para tentar novamente",labelTapToUndo:"carregue para desfazer",labelButtonRemoveItem:"Remover",labelButtonAbortItemLoad:"Abortar",labelButtonRetryItemLoad:"Tentar novamente",labelButtonAbortItemProcessing:"Cancelar",labelButtonUndoItemProcessing:"Desfazer",labelButtonRetryItemProcessing:"Tentar novamente",labelButtonProcessItem:"Carregar",labelMaxFileSizeExceeded:"Ficheiro demasiado grande",labelMaxFileSize:"O tamanho m\xE1ximo do ficheiro \xE9 de {filesize}",labelMaxTotalFileSizeExceeded:"Tamanho m\xE1ximo total excedido",labelMaxTotalFileSize:"O tamanho m\xE1ximo total do ficheiro \xE9 de {filesize}",labelFileTypeNotAllowed:"Tipo de ficheiro inv\xE1lido",fileValidateTypeLabelExpectedTypes:"\xC9 esperado {allButLastType} ou {lastType}",imageValidateSizeLabelFormatError:"Tipo de imagem n\xE3o suportada",imageValidateSizeLabelImageSizeTooSmall:"A imagem \xE9 demasiado pequena",imageValidateSizeLabelImageSizeTooBig:"A imagem \xE9 demasiado grande",imageValidateSizeLabelExpectedMinSize:"O tamanho m\xEDnimo \xE9 de {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"O tamanho m\xE1ximo \xE9 de {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"A resolu\xE7\xE3o \xE9 demasiado baixa",imageValidateSizeLabelImageResolutionTooHigh:"A resolu\xE7\xE3o \xE9 demasiado grande",imageValidateSizeLabelExpectedMinResolution:"A resolu\xE7\xE3o m\xEDnima \xE9 de {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"A resolu\xE7\xE3o m\xE1xima \xE9 de {maxResolution}"};var ar={labelIdle:'Arraste e solte os arquivos ou Clique aqui ',labelInvalidField:"Arquivos inv\xE1lidos",labelFileWaitingForSize:"Calculando o tamanho do arquivo",labelFileSizeNotAvailable:"Tamanho do arquivo indispon\xEDvel",labelFileLoading:"Carregando",labelFileLoadError:"Erro durante o carregamento",labelFileProcessing:"Enviando",labelFileProcessingComplete:"Envio finalizado",labelFileProcessingAborted:"Envio cancelado",labelFileProcessingError:"Erro durante o envio",labelFileProcessingRevertError:"Erro ao reverter o envio",labelFileRemoveError:"Erro ao remover o arquivo",labelTapToCancel:"clique para cancelar",labelTapToRetry:"clique para reenviar",labelTapToUndo:"clique para desfazer",labelButtonRemoveItem:"Remover",labelButtonAbortItemLoad:"Abortar",labelButtonRetryItemLoad:"Reenviar",labelButtonAbortItemProcessing:"Cancelar",labelButtonUndoItemProcessing:"Desfazer",labelButtonRetryItemProcessing:"Reenviar",labelButtonProcessItem:"Enviar",labelMaxFileSizeExceeded:"Arquivo \xE9 muito grande",labelMaxFileSize:"O tamanho m\xE1ximo permitido: {filesize}",labelMaxTotalFileSizeExceeded:"Tamanho total dos arquivos excedido",labelMaxTotalFileSize:"Tamanho total permitido: {filesize}",labelFileTypeNotAllowed:"Tipo de arquivo inv\xE1lido",fileValidateTypeLabelExpectedTypes:"Tipos de arquivo suportados s\xE3o {allButLastType} ou {lastType}",imageValidateSizeLabelFormatError:"Tipo de imagem inv\xE1lida",imageValidateSizeLabelImageSizeTooSmall:"Imagem muito pequena",imageValidateSizeLabelImageSizeTooBig:"Imagem muito grande",imageValidateSizeLabelExpectedMinSize:"Tamanho m\xEDnimo permitida: {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Tamanho m\xE1ximo permitido: {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Resolu\xE7\xE3o muito baixa",imageValidateSizeLabelImageResolutionTooHigh:"Resolu\xE7\xE3o muito alta",imageValidateSizeLabelExpectedMinResolution:"Resolu\xE7\xE3o m\xEDnima permitida: {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Resolu\xE7\xE3o m\xE1xima permitida: {maxResolution}"};var nr={labelIdle:'Trage \u0219i plaseaz\u0103 fi\u0219iere sau Caut\u0103-le ',labelInvalidField:"C\xE2mpul con\u021Bine fi\u0219iere care nu sunt valide",labelFileWaitingForSize:"\xCEn a\u0219teptarea dimensiunii",labelFileSizeNotAvailable:"Dimensiunea nu este diponibil\u0103",labelFileLoading:"Se \xEEncarc\u0103",labelFileLoadError:"Eroare la \xEEnc\u0103rcare",labelFileProcessing:"Se \xEEncarc\u0103",labelFileProcessingComplete:"\xCEnc\u0103rcare finalizat\u0103",labelFileProcessingAborted:"\xCEnc\u0103rcare anulat\u0103",labelFileProcessingError:"Eroare la \xEEnc\u0103rcare",labelFileProcessingRevertError:"Eroare la anulare",labelFileRemoveError:"Eroare la \u015Ftergere",labelTapToCancel:"apas\u0103 pentru a anula",labelTapToRetry:"apas\u0103 pentru a re\xEEncerca",labelTapToUndo:"apas\u0103 pentru a anula",labelButtonRemoveItem:"\u015Eterge",labelButtonAbortItemLoad:"Anuleaz\u0103",labelButtonRetryItemLoad:"Re\xEEncearc\u0103",labelButtonAbortItemProcessing:"Anuleaz\u0103",labelButtonUndoItemProcessing:"Anuleaz\u0103",labelButtonRetryItemProcessing:"Re\xEEncearc\u0103",labelButtonProcessItem:"\xCEncarc\u0103",labelMaxFileSizeExceeded:"Fi\u0219ierul este prea mare",labelMaxFileSize:"Dimensiunea maxim\u0103 a unui fi\u0219ier este de {filesize}",labelMaxTotalFileSizeExceeded:"Dimensiunea total\u0103 maxim\u0103 a fost dep\u0103\u0219it\u0103",labelMaxTotalFileSize:"Dimensiunea total\u0103 maxim\u0103 a fi\u0219ierelor este de {filesize}",labelFileTypeNotAllowed:"Tipul fi\u0219ierului nu este valid",fileValidateTypeLabelExpectedTypes:"Se a\u0219teapt\u0103 {allButLastType} sau {lastType}",imageValidateSizeLabelFormatError:"Formatul imaginii nu este acceptat",imageValidateSizeLabelImageSizeTooSmall:"Imaginea este prea mic\u0103",imageValidateSizeLabelImageSizeTooBig:"Imaginea este prea mare",imageValidateSizeLabelExpectedMinSize:"M\u0103rimea minim\u0103 este de {maxWidth} x {maxHeight}",imageValidateSizeLabelExpectedMaxSize:"M\u0103rimea maxim\u0103 este de {maxWidth} x {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Rezolu\u021Bia este prea mic\u0103",imageValidateSizeLabelImageResolutionTooHigh:"Rezolu\u021Bia este prea mare",imageValidateSizeLabelExpectedMinResolution:"Rezolu\u021Bia minim\u0103 este de {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Rezolu\u021Bia maxim\u0103 este de {maxResolution}"};var lr={labelIdle:'\u041F\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435 \u0444\u0430\u0439\u043B\u044B \u0438\u043B\u0438 \u0432\u044B\u0431\u0435\u0440\u0438\u0442\u0435 ',labelInvalidField:"\u041F\u043E\u043B\u0435 \u0441\u043E\u0434\u0435\u0440\u0436\u0438\u0442 \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0435 \u0444\u0430\u0439\u043B\u044B",labelFileWaitingForSize:"\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0440\u0430\u0437\u043C\u0435\u0440",labelFileSizeNotAvailable:"\u0420\u0430\u0437\u043C\u0435\u0440 \u043D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044F",labelFileLoading:"\u041E\u0436\u0438\u0434\u0430\u043D\u0438\u0435",labelFileLoadError:"\u041E\u0448\u0438\u0431\u043A\u0430 \u043F\u0440\u0438 \u043E\u0436\u0438\u0434\u0430\u043D\u0438\u0438",labelFileProcessing:"\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430",labelFileProcessingComplete:"\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0430",labelFileProcessingAborted:"\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430 \u043E\u0442\u043C\u0435\u043D\u0435\u043D\u0430",labelFileProcessingError:"\u041E\u0448\u0438\u0431\u043A\u0430 \u043F\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0435",labelFileProcessingRevertError:"\u041E\u0448\u0438\u0431\u043A\u0430 \u043F\u0440\u0438 \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0435",labelFileRemoveError:"\u041E\u0448\u0438\u0431\u043A\u0430 \u043F\u0440\u0438 \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u0438",labelTapToCancel:"\u043D\u0430\u0436\u043C\u0438\u0442\u0435 \u0434\u043B\u044F \u043E\u0442\u043C\u0435\u043D\u044B",labelTapToRetry:"\u043D\u0430\u0436\u043C\u0438\u0442\u0435, \u0447\u0442\u043E\u0431\u044B \u043F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u044C \u043F\u043E\u043F\u044B\u0442\u043A\u0443",labelTapToUndo:"\u043D\u0430\u0436\u043C\u0438\u0442\u0435 \u0434\u043B\u044F \u043E\u0442\u043C\u0435\u043D\u044B \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\u0433\u043E \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044F",labelButtonRemoveItem:"\u0423\u0434\u0430\u043B\u0438\u0442\u044C",labelButtonAbortItemLoad:"\u041F\u0440\u0435\u043A\u0440\u0430\u0449\u0435\u043D\u043E",labelButtonRetryItemLoad:"\u041F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u0435 \u043F\u043E\u043F\u044B\u0442\u043A\u0443",labelButtonAbortItemProcessing:"\u041E\u0442\u043C\u0435\u043D\u0430",labelButtonUndoItemProcessing:"\u041E\u0442\u043C\u0435\u043D\u0430 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\u0433\u043E \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044F",labelButtonRetryItemProcessing:"\u041F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u0435 \u043F\u043E\u043F\u044B\u0442\u043A\u0443",labelButtonProcessItem:"\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430",labelMaxFileSizeExceeded:"\u0424\u0430\u0439\u043B \u0441\u043B\u0438\u0448\u043A\u043E\u043C \u0431\u043E\u043B\u044C\u0448\u043E\u0439",labelMaxFileSize:"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440 \u0444\u0430\u0439\u043B\u0430: {filesize}",labelMaxTotalFileSizeExceeded:"\u041F\u0440\u0435\u0432\u044B\u0448\u0435\u043D \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440",labelMaxTotalFileSize:"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440 \u0444\u0430\u0439\u043B\u0430: {filesize}",labelFileTypeNotAllowed:"\u0424\u0430\u0439\u043B \u043D\u0435\u0432\u0435\u0440\u043D\u043E\u0433\u043E \u0442\u0438\u043F\u0430",fileValidateTypeLabelExpectedTypes:"\u041E\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044F {allButLastType} \u0438\u043B\u0438 {lastType}",imageValidateSizeLabelFormatError:"\u0422\u0438\u043F \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F \u043D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044F",imageValidateSizeLabelImageSizeTooSmall:"\u0418\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435 \u0441\u043B\u0438\u0448\u043A\u043E\u043C \u043C\u0430\u043B\u0435\u043D\u044C\u043A\u043E\u0435",imageValidateSizeLabelImageSizeTooBig:"\u0418\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435 \u0441\u043B\u0438\u0448\u043A\u043E\u043C \u0431\u043E\u043B\u044C\u0448\u043E\u0435",imageValidateSizeLabelExpectedMinSize:"\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440: {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440: {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043D\u0438\u0435 \u0441\u043B\u0438\u0448\u043A\u043E\u043C \u043D\u0438\u0437\u043A\u043E\u0435",imageValidateSizeLabelImageResolutionTooHigh:"\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043D\u0438\u0435 \u0441\u043B\u0438\u0448\u043A\u043E\u043C \u0432\u044B\u0441\u043E\u043A\u043E\u0435",imageValidateSizeLabelExpectedMinResolution:"\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043D\u0438\u0435: {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043D\u0438\u0435: {maxResolution}"};var or={labelIdle:'Natiahn\xFA\u0165 s\xFAbor (drag&drop) alebo Vyh\u013Eada\u0165 ',labelInvalidField:"Pole obsahuje chybn\xE9 s\xFAbory",labelFileWaitingForSize:"Zis\u0165uje sa ve\u013Ekos\u0165",labelFileSizeNotAvailable:"Nezn\xE1ma ve\u013Ekos\u0165",labelFileLoading:"Pren\xE1\u0161a sa",labelFileLoadError:"Chyba pri prenose",labelFileProcessing:"Prebieha upload",labelFileProcessingComplete:"Upload dokon\u010Den\xFD",labelFileProcessingAborted:"Upload stornovan\xFD",labelFileProcessingError:"Chyba pri uploade",labelFileProcessingRevertError:"Chyba pri obnove",labelFileRemoveError:"Chyba pri odstr\xE1nen\xED",labelTapToCancel:"Kliknite pre storno",labelTapToRetry:"Kliknite pre opakovanie",labelTapToUndo:"Kliknite pre vr\xE1tenie",labelButtonRemoveItem:"Odstr\xE1ni\u0165",labelButtonAbortItemLoad:"Storno",labelButtonRetryItemLoad:"Opakova\u0165",labelButtonAbortItemProcessing:"Sp\xE4\u0165",labelButtonUndoItemProcessing:"Vr\xE1ti\u0165",labelButtonRetryItemProcessing:"Opakova\u0165",labelButtonProcessItem:"Upload",labelMaxFileSizeExceeded:"S\xFAbor je pr\xEDli\u0161 ve\u013Ek\xFD",labelMaxFileSize:"Najv\xE4\u010D\u0161ia ve\u013Ekos\u0165 s\xFAboru je {filesize}",labelMaxTotalFileSizeExceeded:"Prekro\u010Den\xE1 maxim\xE1lna celkov\xE1 ve\u013Ekos\u0165 s\xFAboru",labelMaxTotalFileSize:"Maxim\xE1lna celkov\xE1 ve\u013Ekos\u0165 s\xFAboru je {filesize}",labelFileTypeNotAllowed:"S\xFAbor je nespr\xE1vneho typu",fileValidateTypeLabelExpectedTypes:"O\u010Dak\xE1va sa {allButLastType} alebo {lastType}",imageValidateSizeLabelFormatError:"Obr\xE1zok tohto typu nie je podporovan\xFD",imageValidateSizeLabelImageSizeTooSmall:"Obr\xE1zok je pr\xEDli\u0161 mal\xFD",imageValidateSizeLabelImageSizeTooBig:"Obr\xE1zok je pr\xEDli\u0161 ve\u013Ek\xFD",imageValidateSizeLabelExpectedMinSize:"Minim\xE1lny rozmer je {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maxim\xE1lny rozmer je {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Rozl\xED\u0161enie je pr\xEDli\u0161 mal\xE9",imageValidateSizeLabelImageResolutionTooHigh:"Rozli\u0161enie je pr\xEDli\u0161 ve\u013Ek\xE9",imageValidateSizeLabelExpectedMinResolution:"Minim\xE1lne rozl\xED\u0161enie je {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maxim\xE1lne rozl\xED\u0161enie je {maxResolution}"};var rr={labelIdle:'Drag och sl\xE4pp dina filer eller Bl\xE4ddra ',labelInvalidField:"F\xE4ltet inneh\xE5ller felaktiga filer",labelFileWaitingForSize:"V\xE4ntar p\xE5 storlek",labelFileSizeNotAvailable:"Storleken finns inte tillg\xE4nglig",labelFileLoading:"Laddar",labelFileLoadError:"Fel under laddning",labelFileProcessing:"Laddar upp",labelFileProcessingComplete:"Uppladdning klar",labelFileProcessingAborted:"Uppladdning avbruten",labelFileProcessingError:"Fel under uppladdning",labelFileProcessingRevertError:"Fel under \xE5terst\xE4llning",labelFileRemoveError:"Fel under borttagning",labelTapToCancel:"tryck f\xF6r att avbryta",labelTapToRetry:"tryck f\xF6r att f\xF6rs\xF6ka igen",labelTapToUndo:"tryck f\xF6r att \xE5ngra",labelButtonRemoveItem:"Tabort",labelButtonAbortItemLoad:"Avbryt",labelButtonRetryItemLoad:"F\xF6rs\xF6k igen",labelButtonAbortItemProcessing:"Avbryt",labelButtonUndoItemProcessing:"\xC5ngra",labelButtonRetryItemProcessing:"F\xF6rs\xF6k igen",labelButtonProcessItem:"Ladda upp",labelMaxFileSizeExceeded:"Filen \xE4r f\xF6r stor",labelMaxFileSize:"St\xF6rsta till\xE5tna filstorlek \xE4r {filesize}",labelMaxTotalFileSizeExceeded:"Maximal uppladdningsstorlek uppn\xE5d",labelMaxTotalFileSize:"Maximal uppladdningsstorlek \xE4r {filesize}",labelFileTypeNotAllowed:"Felaktig filtyp",fileValidateTypeLabelExpectedTypes:"Godk\xE4nda filtyper {allButLastType} eller {lastType}",imageValidateSizeLabelFormatError:"Bildtypen saknar st\xF6d",imageValidateSizeLabelImageSizeTooSmall:"Bilden \xE4r f\xF6r liten",imageValidateSizeLabelImageSizeTooBig:"Bilden \xE4r f\xF6r stor",imageValidateSizeLabelExpectedMinSize:"Minimal storlek \xE4r {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maximal storlek \xE4r {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"Uppl\xF6sningen \xE4r f\xF6r l\xE5g",imageValidateSizeLabelImageResolutionTooHigh:"Uppl\xF6sningen \xE4r f\xF6r h\xF6g",imageValidateSizeLabelExpectedMinResolution:"Minsta till\xE5tna uppl\xF6sning \xE4r {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"H\xF6gsta till\xE5tna uppl\xF6sning \xE4r {maxResolution}"};var sr={labelIdle:'Dosyan\u0131z\u0131 S\xFCr\xFCkleyin & B\u0131rak\u0131n ya da Se\xE7in ',labelInvalidField:"Alan ge\xE7ersiz dosyalar i\xE7eriyor",labelFileWaitingForSize:"Boyut hesaplan\u0131yor",labelFileSizeNotAvailable:"Boyut mevcut de\u011Fil",labelFileLoading:"Y\xFCkleniyor",labelFileLoadError:"Y\xFCkleme s\u0131ras\u0131nda hata olu\u015Ftu",labelFileProcessing:"Y\xFCkleniyor",labelFileProcessingComplete:"Y\xFCkleme tamamland\u0131",labelFileProcessingAborted:"Y\xFCkleme iptal edildi",labelFileProcessingError:"Y\xFCklerken hata olu\u015Ftu",labelFileProcessingRevertError:"Geri \xE7ekerken hata olu\u015Ftu",labelFileRemoveError:"Kald\u0131r\u0131rken hata olu\u015Ftu",labelTapToCancel:"\u0130ptal etmek i\xE7in t\u0131klay\u0131n",labelTapToRetry:"Tekrar denemek i\xE7in t\u0131klay\u0131n",labelTapToUndo:"Geri almak i\xE7in t\u0131klay\u0131n",labelButtonRemoveItem:"Kald\u0131r",labelButtonAbortItemLoad:"\u0130ptal Et",labelButtonRetryItemLoad:"Tekrar dene",labelButtonAbortItemProcessing:"\u0130ptal et",labelButtonUndoItemProcessing:"Geri Al",labelButtonRetryItemProcessing:"Tekrar dene",labelButtonProcessItem:"Y\xFCkle",labelMaxFileSizeExceeded:"Dosya \xE7ok b\xFCy\xFCk",labelMaxFileSize:"En fazla dosya boyutu: {filesize}",labelMaxTotalFileSizeExceeded:"Maximum boyut a\u015F\u0131ld\u0131",labelMaxTotalFileSize:"Maximum dosya boyutu :{filesize}",labelFileTypeNotAllowed:"Ge\xE7ersiz dosya tipi",fileValidateTypeLabelExpectedTypes:"\u015Eu {allButLastType} ya da \u015Fu dosya olmas\u0131 gerekir: {lastType}",imageValidateSizeLabelFormatError:"Resim tipi desteklenmiyor",imageValidateSizeLabelImageSizeTooSmall:"Resim \xE7ok k\xFC\xE7\xFCk",imageValidateSizeLabelImageSizeTooBig:"Resim \xE7ok b\xFCy\xFCk",imageValidateSizeLabelExpectedMinSize:"Minimum boyut {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"Maximum boyut {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"\xC7\xF6z\xFCn\xFCrl\xFCk \xE7ok d\xFC\u015F\xFCk",imageValidateSizeLabelImageResolutionTooHigh:"\xC7\xF6z\xFCn\xFCrl\xFCk \xE7ok y\xFCksek",imageValidateSizeLabelExpectedMinResolution:"Minimum \xE7\xF6z\xFCn\xFCrl\xFCk {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"Maximum \xE7\xF6z\xFCn\xFCrl\xFCk {maxResolution}"};var cr={labelIdle:'\u041F\u0435\u0440\u0435\u0442\u044F\u0433\u043D\u0456\u0442\u044C \u0444\u0430\u0439\u043B\u0438 \u0430\u0431\u043E \u0432\u0438\u0431\u0435\u0440\u0456\u0442\u044C ',labelInvalidField:"\u041F\u043E\u043B\u0435 \u043C\u0456\u0441\u0442\u0438\u0442\u044C \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0456 \u0444\u0430\u0439\u043B\u0438",labelFileWaitingForSize:"\u0412\u043A\u0430\u0436\u0456\u0442\u044C \u0440\u043E\u0437\u043C\u0456\u0440",labelFileSizeNotAvailable:"\u0420\u043E\u0437\u043C\u0456\u0440 \u043D\u0435 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0438\u0439",labelFileLoading:"\u041E\u0447\u0456\u043A\u0443\u0432\u0430\u043D\u043D\u044F",labelFileLoadError:"\u041F\u043E\u043C\u0438\u043B\u043A\u0430 \u043F\u0440\u0438 \u043E\u0447\u0456\u043A\u0443\u0432\u0430\u043D\u043D\u0456",labelFileProcessing:"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F",labelFileProcessingComplete:"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u043E",labelFileProcessingAborted:"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F \u0441\u043A\u0430\u0441\u043E\u0432\u0430\u043D\u043E",labelFileProcessingError:"\u041F\u043E\u043C\u0438\u043B\u043A\u0430 \u043F\u0440\u0438 \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u0456",labelFileProcessingRevertError:"\u041F\u043E\u043C\u0438\u043B\u043A\u0430 \u043F\u0440\u0438 \u0432\u0456\u0434\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u0456",labelFileRemoveError:"\u041F\u043E\u043C\u0438\u043B\u043A\u0430 \u043F\u0440\u0438 \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u043D\u0456",labelTapToCancel:"\u0412\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438",labelTapToRetry:"\u041D\u0430\u0442\u0438\u0441\u043D\u0456\u0442\u044C, \u0449\u043E\u0431 \u043F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u0438 \u0441\u043F\u0440\u043E\u0431\u0443",labelTapToUndo:"\u041D\u0430\u0442\u0438\u0441\u043D\u0456\u0442\u044C, \u0449\u043E\u0431 \u0432\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438 \u043E\u0441\u0442\u0430\u043D\u043D\u044E \u0434\u0456\u044E",labelButtonRemoveItem:"\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438",labelButtonAbortItemLoad:"\u0412\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438",labelButtonRetryItemLoad:"\u041F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u0438 \u0441\u043F\u0440\u043E\u0431\u0443",labelButtonAbortItemProcessing:"\u0412\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438",labelButtonUndoItemProcessing:"\u0412\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438 \u043E\u0441\u0442\u0430\u043D\u043D\u044E \u0434\u0456\u044E",labelButtonRetryItemProcessing:"\u041F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u0438 \u0441\u043F\u0440\u043E\u0431\u0443",labelButtonProcessItem:"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F",labelMaxFileSizeExceeded:"\u0424\u0430\u0439\u043B \u0437\u0430\u043D\u0430\u0434\u0442\u043E \u0432\u0435\u043B\u0438\u043A\u0438\u0439",labelMaxFileSize:"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0438\u0439 \u0440\u043E\u0437\u043C\u0456\u0440 \u0444\u0430\u0439\u043B\u0443: {filesize}",labelMaxTotalFileSizeExceeded:"\u041F\u0435\u0440\u0435\u0432\u0438\u0449\u0435\u043D\u043E \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0438\u0439 \u0437\u0430\u0433\u0430\u043B\u044C\u043D\u0438\u0439 \u0440\u043E\u0437\u043C\u0456\u0440",labelMaxTotalFileSize:"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0438\u0439 \u0437\u0430\u0433\u0430\u043B\u044C\u043D\u0438\u0439 \u0440\u043E\u0437\u043C\u0456\u0440: {filesize}",labelFileTypeNotAllowed:"\u0424\u043E\u0440\u043C\u0430\u0442 \u0444\u0430\u0439\u043B\u0443 \u043D\u0435 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u0443\u0454\u0442\u044C\u0441\u044F",fileValidateTypeLabelExpectedTypes:"\u041E\u0447\u0456\u043A\u0443\u0454\u0442\u044C\u0441\u044F {allButLastType} \u0430\u0431\u043E {lastType}",imageValidateSizeLabelFormatError:"\u0424\u043E\u0440\u043C\u0430\u0442 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u043D\u0435 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u0443\u0454\u0442\u044C\u0441\u044F",imageValidateSizeLabelImageSizeTooSmall:"\u0417\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0437\u0430\u043D\u0430\u0434\u0442\u043E \u043C\u0430\u043B\u0435\u043D\u044C\u043A\u0435",imageValidateSizeLabelImageSizeTooBig:"\u0417\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0437\u0430\u043D\u0430\u0434\u0442\u043E \u0432\u0435\u043B\u0438\u043A\u0435",imageValidateSizeLabelExpectedMinSize:"\u041C\u0456\u043D\u0456\u043C\u0430\u043B\u044C\u043D\u0438\u0439 \u0440\u043E\u0437\u043C\u0456\u0440: {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0438\u0439 \u0440\u043E\u0437\u043C\u0456\u0440: {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"\u0420\u043E\u0437\u043C\u0456\u0440\u0438 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0437\u0430\u043D\u0430\u0434\u0442\u043E \u043C\u0430\u043B\u0435\u043D\u044C\u043A\u0456",imageValidateSizeLabelImageResolutionTooHigh:"\u0420\u043E\u0437\u043C\u0456\u0440\u0438 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0437\u0430\u043D\u0430\u0434\u0442\u043E \u0432\u0435\u043B\u0438\u043A\u0456",imageValidateSizeLabelExpectedMinResolution:"\u041C\u0456\u043D\u0456\u043C\u0430\u043B\u044C\u043D\u0456 \u0440\u043E\u0437\u043C\u0456\u0440\u0438: {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0456 \u0440\u043E\u0437\u043C\u0456\u0440\u0438: {maxResolution}"};var dr={labelIdle:'K\xE9o th\u1EA3 t\u1EC7p c\u1EE7a b\u1EA1n ho\u1EB7c T\xECm ki\u1EBFm ',labelInvalidField:"Tr\u01B0\u1EDDng ch\u1EE9a c\xE1c t\u1EC7p kh\xF4ng h\u1EE3p l\u1EC7",labelFileWaitingForSize:"\u0110ang ch\u1EDD k\xEDch th\u01B0\u1EDBc",labelFileSizeNotAvailable:"K\xEDch th\u01B0\u1EDBc kh\xF4ng c\xF3 s\u1EB5n",labelFileLoading:"\u0110ang t\u1EA3i",labelFileLoadError:"L\u1ED7i khi t\u1EA3i",labelFileProcessing:"\u0110ang t\u1EA3i l\xEAn",labelFileProcessingComplete:"T\u1EA3i l\xEAn th\xE0nh c\xF4ng",labelFileProcessingAborted:"\u0110\xE3 hu\u1EF7 t\u1EA3i l\xEAn",labelFileProcessingError:"L\u1ED7i khi t\u1EA3i l\xEAn",labelFileProcessingRevertError:"L\u1ED7i khi ho\xE0n nguy\xEAn",labelFileRemoveError:"L\u1ED7i khi x\xF3a",labelTapToCancel:"nh\u1EA5n \u0111\u1EC3 h\u1EE7y",labelTapToRetry:"nh\u1EA5n \u0111\u1EC3 th\u1EED l\u1EA1i",labelTapToUndo:"nh\u1EA5n \u0111\u1EC3 ho\xE0n t\xE1c",labelButtonRemoveItem:"Xo\xE1",labelButtonAbortItemLoad:"Hu\u1EF7 b\u1ECF",labelButtonRetryItemLoad:"Th\u1EED l\u1EA1i",labelButtonAbortItemProcessing:"H\u1EE7y b\u1ECF",labelButtonUndoItemProcessing:"Ho\xE0n t\xE1c",labelButtonRetryItemProcessing:"Th\u1EED l\u1EA1i",labelButtonProcessItem:"T\u1EA3i l\xEAn",labelMaxFileSizeExceeded:"T\u1EADp tin qu\xE1 l\u1EDBn",labelMaxFileSize:"K\xEDch th\u01B0\u1EDBc t\u1EC7p t\u1ED1i \u0111a l\xE0 {filesize}",labelMaxTotalFileSizeExceeded:"\u0110\xE3 v\u01B0\u1EE3t qu\xE1 t\u1ED5ng k\xEDch th\u01B0\u1EDBc t\u1ED1i \u0111a",labelMaxTotalFileSize:"T\u1ED5ng k\xEDch th\u01B0\u1EDBc t\u1EC7p t\u1ED1i \u0111a l\xE0 {filesize}",labelFileTypeNotAllowed:"T\u1EC7p thu\u1ED9c lo\u1EA1i kh\xF4ng h\u1EE3p l\u1EC7",fileValidateTypeLabelExpectedTypes:"Ki\u1EC3u t\u1EC7p h\u1EE3p l\u1EC7 l\xE0 {allButLastType} ho\u1EB7c {lastType}",imageValidateSizeLabelFormatError:"Lo\u1EA1i h\xECnh \u1EA3nh kh\xF4ng \u0111\u01B0\u1EE3c h\u1ED7 tr\u1EE3",imageValidateSizeLabelImageSizeTooSmall:"H\xECnh \u1EA3nh qu\xE1 nh\u1ECF",imageValidateSizeLabelImageSizeTooBig:"H\xECnh \u1EA3nh qu\xE1 l\u1EDBn",imageValidateSizeLabelExpectedMinSize:"K\xEDch th\u01B0\u1EDBc t\u1ED1i thi\u1EC3u l\xE0 {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"K\xEDch th\u01B0\u1EDBc t\u1ED1i \u0111a l\xE0 {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"\u0110\u1ED9 ph\xE2n gi\u1EA3i qu\xE1 th\u1EA5p",imageValidateSizeLabelImageResolutionTooHigh:"\u0110\u1ED9 ph\xE2n gi\u1EA3i qu\xE1 cao",imageValidateSizeLabelExpectedMinResolution:"\u0110\u1ED9 ph\xE2n gi\u1EA3i t\u1ED1i thi\u1EC3u l\xE0 {minResolution}",imageValidateSizeLabelExpectedMaxResolution:"\u0110\u1ED9 ph\xE2n gi\u1EA3i t\u1ED1i \u0111a l\xE0 {maxResolution}"};var pr={labelIdle:'\u62D6\u653E\u6587\u4EF6\uFF0C\u6216\u8005 \u6D4F\u89C8 ',labelInvalidField:"\u5B57\u6BB5\u5305\u542B\u65E0\u6548\u6587\u4EF6",labelFileWaitingForSize:"\u8BA1\u7B97\u6587\u4EF6\u5927\u5C0F",labelFileSizeNotAvailable:"\u6587\u4EF6\u5927\u5C0F\u4E0D\u53EF\u7528",labelFileLoading:"\u52A0\u8F7D",labelFileLoadError:"\u52A0\u8F7D\u9519\u8BEF",labelFileProcessing:"\u4E0A\u4F20",labelFileProcessingComplete:"\u5DF2\u4E0A\u4F20",labelFileProcessingAborted:"\u4E0A\u4F20\u5DF2\u53D6\u6D88",labelFileProcessingError:"\u4E0A\u4F20\u51FA\u9519",labelFileProcessingRevertError:"\u8FD8\u539F\u51FA\u9519",labelFileRemoveError:"\u5220\u9664\u51FA\u9519",labelTapToCancel:"\u70B9\u51FB\u53D6\u6D88",labelTapToRetry:"\u70B9\u51FB\u91CD\u8BD5",labelTapToUndo:"\u70B9\u51FB\u64A4\u6D88",labelButtonRemoveItem:"\u5220\u9664",labelButtonAbortItemLoad:"\u4E2D\u6B62",labelButtonRetryItemLoad:"\u91CD\u8BD5",labelButtonAbortItemProcessing:"\u53D6\u6D88",labelButtonUndoItemProcessing:"\u64A4\u6D88",labelButtonRetryItemProcessing:"\u91CD\u8BD5",labelButtonProcessItem:"\u4E0A\u4F20",labelMaxFileSizeExceeded:"\u6587\u4EF6\u592A\u5927",labelMaxFileSize:"\u6700\u5927\u503C: {filesize}",labelMaxTotalFileSizeExceeded:"\u8D85\u8FC7\u6700\u5927\u6587\u4EF6\u5927\u5C0F",labelMaxTotalFileSize:"\u6700\u5927\u6587\u4EF6\u5927\u5C0F\uFF1A{filesize}",labelFileTypeNotAllowed:"\u6587\u4EF6\u7C7B\u578B\u65E0\u6548",fileValidateTypeLabelExpectedTypes:"\u5E94\u4E3A {allButLastType} \u6216 {lastType}",imageValidateSizeLabelFormatError:"\u4E0D\u652F\u6301\u56FE\u50CF\u7C7B\u578B",imageValidateSizeLabelImageSizeTooSmall:"\u56FE\u50CF\u592A\u5C0F",imageValidateSizeLabelImageSizeTooBig:"\u56FE\u50CF\u592A\u5927",imageValidateSizeLabelExpectedMinSize:"\u6700\u5C0F\u503C: {minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"\u6700\u5927\u503C: {maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"\u5206\u8FA8\u7387\u592A\u4F4E",imageValidateSizeLabelImageResolutionTooHigh:"\u5206\u8FA8\u7387\u592A\u9AD8",imageValidateSizeLabelExpectedMinResolution:"\u6700\u5C0F\u5206\u8FA8\u7387\uFF1A{minResolution}",imageValidateSizeLabelExpectedMaxResolution:"\u6700\u5927\u5206\u8FA8\u7387\uFF1A{maxResolution}"};var mr={labelIdle:'\u62D6\u653E\u6A94\u6848\uFF0C\u6216\u8005 \u700F\u89BD ',labelInvalidField:"\u4E0D\u652F\u63F4\u6B64\u6A94\u6848",labelFileWaitingForSize:"\u6B63\u5728\u8A08\u7B97\u6A94\u6848\u5927\u5C0F",labelFileSizeNotAvailable:"\u6A94\u6848\u5927\u5C0F\u4E0D\u7B26",labelFileLoading:"\u8B80\u53D6\u4E2D",labelFileLoadError:"\u8B80\u53D6\u932F\u8AA4",labelFileProcessing:"\u4E0A\u50B3",labelFileProcessingComplete:"\u5DF2\u4E0A\u50B3",labelFileProcessingAborted:"\u4E0A\u50B3\u5DF2\u53D6\u6D88",labelFileProcessingError:"\u4E0A\u50B3\u767C\u751F\u932F\u8AA4",labelFileProcessingRevertError:"\u9084\u539F\u932F\u8AA4",labelFileRemoveError:"\u522A\u9664\u932F\u8AA4",labelTapToCancel:"\u9EDE\u64CA\u53D6\u6D88",labelTapToRetry:"\u9EDE\u64CA\u91CD\u8A66",labelTapToUndo:"\u9EDE\u64CA\u9084\u539F",labelButtonRemoveItem:"\u522A\u9664",labelButtonAbortItemLoad:"\u505C\u6B62",labelButtonRetryItemLoad:"\u91CD\u8A66",labelButtonAbortItemProcessing:"\u53D6\u6D88",labelButtonUndoItemProcessing:"\u53D6\u6D88",labelButtonRetryItemProcessing:"\u91CD\u8A66",labelButtonProcessItem:"\u4E0A\u50B3",labelMaxFileSizeExceeded:"\u6A94\u6848\u904E\u5927",labelMaxFileSize:"\u6700\u5927\u503C\uFF1A{filesize}",labelMaxTotalFileSizeExceeded:"\u8D85\u904E\u6700\u5927\u53EF\u4E0A\u50B3\u5927\u5C0F",labelMaxTotalFileSize:"\u6700\u5927\u53EF\u4E0A\u50B3\u5927\u5C0F\uFF1A{filesize}",labelFileTypeNotAllowed:"\u4E0D\u652F\u63F4\u6B64\u985E\u578B\u6A94\u6848",fileValidateTypeLabelExpectedTypes:"\u61C9\u70BA {allButLastType} \u6216 {lastType}",imageValidateSizeLabelFormatError:"\u4E0D\u652F\u6301\u6B64\u985E\u5716\u7247\u985E\u578B",imageValidateSizeLabelImageSizeTooSmall:"\u5716\u7247\u904E\u5C0F",imageValidateSizeLabelImageSizeTooBig:"\u5716\u7247\u904E\u5927",imageValidateSizeLabelExpectedMinSize:"\u6700\u5C0F\u5C3A\u5BF8\uFF1A{minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"\u6700\u5927\u5C3A\u5BF8\uFF1A{maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"\u89E3\u6790\u5EA6\u904E\u4F4E",imageValidateSizeLabelImageResolutionTooHigh:"\u89E3\u6790\u5EA6\u904E\u9AD8",imageValidateSizeLabelExpectedMinResolution:"\u6700\u4F4E\u89E3\u6790\u5EA6\uFF1A{minResolution}",imageValidateSizeLabelExpectedMaxResolution:"\u6700\u9AD8\u89E3\u6790\u5EA6\uFF1A{maxResolution}"};var ur={labelIdle:'\u62D6\u653E\u6A94\u6848\uFF0C\u6216\u8005 \u700F\u89BD ',labelInvalidField:"\u4E0D\u652F\u63F4\u6B64\u6A94\u6848",labelFileWaitingForSize:"\u6B63\u5728\u8A08\u7B97\u6A94\u6848\u5927\u5C0F",labelFileSizeNotAvailable:"\u6A94\u6848\u5927\u5C0F\u4E0D\u7B26",labelFileLoading:"\u8B80\u53D6\u4E2D",labelFileLoadError:"\u8B80\u53D6\u932F\u8AA4",labelFileProcessing:"\u4E0A\u50B3",labelFileProcessingComplete:"\u5DF2\u4E0A\u50B3",labelFileProcessingAborted:"\u4E0A\u50B3\u5DF2\u53D6\u6D88",labelFileProcessingError:"\u4E0A\u50B3\u767C\u751F\u932F\u8AA4",labelFileProcessingRevertError:"\u9084\u539F\u932F\u8AA4",labelFileRemoveError:"\u522A\u9664\u932F\u8AA4",labelTapToCancel:"\u9EDE\u64CA\u53D6\u6D88",labelTapToRetry:"\u9EDE\u64CA\u91CD\u8A66",labelTapToUndo:"\u9EDE\u64CA\u9084\u539F",labelButtonRemoveItem:"\u522A\u9664",labelButtonAbortItemLoad:"\u505C\u6B62",labelButtonRetryItemLoad:"\u91CD\u8A66",labelButtonAbortItemProcessing:"\u53D6\u6D88",labelButtonUndoItemProcessing:"\u53D6\u6D88",labelButtonRetryItemProcessing:"\u91CD\u8A66",labelButtonProcessItem:"\u4E0A\u50B3",labelMaxFileSizeExceeded:"\u6A94\u6848\u904E\u5927",labelMaxFileSize:"\u6700\u5927\u503C\uFF1A{filesize}",labelMaxTotalFileSizeExceeded:"\u8D85\u904E\u6700\u5927\u53EF\u4E0A\u50B3\u5927\u5C0F",labelMaxTotalFileSize:"\u6700\u5927\u53EF\u4E0A\u50B3\u5927\u5C0F\uFF1A{filesize}",labelFileTypeNotAllowed:"\u4E0D\u652F\u63F4\u6B64\u985E\u578B\u6A94\u6848",fileValidateTypeLabelExpectedTypes:"\u61C9\u70BA {allButLastType} \u6216 {lastType}",imageValidateSizeLabelFormatError:"\u4E0D\u652F\u6301\u6B64\u985E\u5716\u7247\u985E\u578B",imageValidateSizeLabelImageSizeTooSmall:"\u5716\u7247\u904E\u5C0F",imageValidateSizeLabelImageSizeTooBig:"\u5716\u7247\u904E\u5927",imageValidateSizeLabelExpectedMinSize:"\u6700\u5C0F\u5C3A\u5BF8\uFF1A{minWidth} \xD7 {minHeight}",imageValidateSizeLabelExpectedMaxSize:"\u6700\u5927\u5C3A\u5BF8\uFF1A{maxWidth} \xD7 {maxHeight}",imageValidateSizeLabelImageResolutionTooLow:"\u89E3\u6790\u5EA6\u904E\u4F4E",imageValidateSizeLabelImageResolutionTooHigh:"\u89E3\u6790\u5EA6\u904E\u9AD8",imageValidateSizeLabelExpectedMinResolution:"\u6700\u4F4E\u89E3\u6790\u5EA6\uFF1A{minResolution}",imageValidateSizeLabelExpectedMaxResolution:"\u6700\u9AD8\u89E3\u6790\u5EA6\uFF1A{maxResolution}"};Ie(Ul);Ie(Wl);Ie(ql);Ie(Xl);Ie(Jl);Ie(po);Ie(uo);Ie(So);Ie(wo);window.FilePond=na;function Og({acceptedFileTypes:e,automaticallyCropImagesAspectRatio:t,automaticallyOpenImageEditorForAspectRatio:i,automaticallyResizeImagesHeight:a,automaticallyResizeImagesMode:n,automaticallyResizeImagesWidth:l,cancelUploadUsing:o,canEditSvgs:r,confirmSvgEditingMessage:s,deleteUploadedFileUsing:p,disabledSvgEditingMessage:c,getUploadedFilesUsing:d,hasCircleCropper:m,hasImageEditor:u,imageEditorEmptyFillColor:g,imageEditorMode:f,imageEditorViewportHeight:b,imageEditorViewportWidth:v,imagePreviewHeight:h,isAvatar:E,isDeletable:I,isDisabled:y,isDownloadable:T,isImageEditorExplicitlyEnabled:_,isMultiple:x,isOpenable:R,isPasteable:z,isPreviewable:P,isReorderable:A,isSvgEditingConfirmed:B,itemPanelAspectRatio:w,loadingIndicatorPosition:F,locale:S,maxFiles:L,maxFilesValidationMessage:D,maxParallelUploads:O,maxSize:U,mimeTypeMap:C,minSize:X,panelAspectRatio:K,panelLayout:Z,placeholder:ce,removeUploadedFileButtonPosition:V,removeUploadedFileUsing:W,reorderUploadedFilesUsing:$,shouldAppendFiles:ie,shouldAutomaticallyUpscaleImagesWhenResizing:ee,shouldOrientImageFromExif:pt,shouldTransformImage:fr,state:hr,uploadButtonPosition:br,uploadingMessage:Er,uploadProgressIndicatorPosition:Tr,uploadUsing:vr}){return{fileKeyIndex:{},pond:null,shouldUpdateState:!0,state:hr,lastState:null,error:null,uploadedFileIndex:{},isEditorOpen:!1,isEditorOpenedForAspectRatio:!1,editingFile:{},currentRatio:"",editor:{},visibilityObserver:null,intersectionObserver:null,isInitializing:!1,async init(){if(this.pond||this.isInitializing)return;if(this.isInitializing=!0,!this.visibilityObserver){let k=()=>{this.$el.offsetParent===null||getComputedStyle(this.$el).visibility==="hidden"||(this.pond?document.dispatchEvent(new Event("visibilitychange")):this.init())};this.visibilityObserver=new ResizeObserver(()=>k()),this.visibilityObserver.observe(this.$el),this.intersectionObserver=new IntersectionObserver(j=>{j[0]?.isIntersecting&&k()},{threshold:0}),this.intersectionObserver.observe(this.$el)}if(this.$el.offsetParent===null||getComputedStyle(this.$el).visibility==="hidden"){this.isInitializing=!1;return}Dt(gr[S]??gr.en),this.pond=ft(this.$refs.input,{acceptedFileTypes:e,allowImageExifOrientation:pt,allowPaste:z,allowRemove:I,allowReorder:A,allowImagePreview:P,allowVideoPreview:P,allowAudioPreview:P,allowImageTransform:fr,credits:!1,files:await this.getFiles(),imageCropAspectRatio:t,imagePreviewHeight:h,imageResizeTargetHeight:a,imageResizeTargetWidth:l,imageResizeMode:n,imageResizeUpscale:ee,imageTransformOutputStripImageHead:!1,itemInsertLocation:ie?"after":"before",...ce&&{labelIdle:ce},maxFiles:L,maxFileSize:U,mediaPreviewHeight:h,minFileSize:X,...O&&{maxParallelUploads:O},styleButtonProcessItemPosition:br,styleButtonRemoveItemPosition:V,styleItemPanelAspectRatio:w,styleLoadIndicatorPosition:F,stylePanelAspectRatio:K,stylePanelLayout:Z,styleProgressIndicatorPosition:Tr,server:{load:async(k,j)=>{let Ne=await(await fetch(k,{cache:"no-store"})).blob();j(Ne)},process:(k,j,q,Ne,Me,$e,Ir)=>{this.shouldUpdateState=!1;let Aa=("10000000-1000-4000-8000"+-1e11).replace(/[018]/g,Zt=>(Zt^crypto.getRandomValues(new Uint8Array(1))[0]&15>>Zt/4).toString(16));return vr(Aa,j,Zt=>{this.shouldUpdateState=!0,Ne(Zt)},Me,$e),{abort:()=>{o(Aa),Ir()}}},remove:async(k,j)=>{let q=this.uploadedFileIndex[k]??null;q&&(await p(q),j())},revert:async(k,j)=>{await W(k),j()}},allowImageEdit:_,imageEditEditor:{open:k=>this.loadEditor(k),onconfirm:()=>{},oncancel:()=>this.closeEditor(),onclose:()=>this.closeEditor()},fileValidateTypeDetectType:(k,j)=>new Promise((q,Ne)=>{let Me=k.name.split(".").pop().toLowerCase(),$e=C[Me]||j||Vl.getType(Me);$e?q($e):Ne()})}),this.$watch("state",async()=>{if(this.pond&&this.shouldUpdateState&&this.state!==void 0){if(this.state!==null&&Object.values(this.state).filter(k=>k.startsWith("livewire-file:")).length){this.lastState=null;return}JSON.stringify(this.state)!==this.lastState&&(this.lastState=JSON.stringify(this.state),this.pond.files=await this.getFiles())}}),this.pond.on("reorderfiles",async k=>{let j=k.map(q=>q.source instanceof File?q.serverId:this.uploadedFileIndex[q.source]??null).filter(q=>q);await $(ie?j:j.reverse())}),this.pond.on("initfile",async k=>{T&&(E||this.insertDownloadLink(k))}),this.pond.on("initfile",async k=>{R&&(E||this.insertOpenLink(k))}),this.pond.on("addfilestart",async k=>{this.error=null,k.status===Tt.PROCESSING_QUEUED&&this.dispatchFormEvent("form-processing-started",{message:Er})});let N=async()=>{this.pond.getFiles().filter(k=>k.status===Tt.PROCESSING||k.status===Tt.PROCESSING_QUEUED).length||this.dispatchFormEvent("form-processing-finished")};this.pond.on("processfile",N),this.pond.on("processfileabort",N),this.pond.on("processfilerevert",N),this.pond.on("removefile",N),this.pond.on("warning",k=>{k.body==="Max files"&&(this.error=D)}),Z==="compact circle"&&this.pond.on("error",k=>{this.error=`${k.main}: ${k.sub}`.replace("Expects or","Expects")}),this.pond.on("removefile",()=>this.error=null),i&&this.pond.on("addfile",(k,j)=>{k||j.file instanceof File&&j.file.type.startsWith("image/")&&this.checkImageAspectRatio(j.file)}),this.isInitializing=!1},destroy(){this.visibilityObserver?.disconnect(),this.intersectionObserver?.disconnect(),this.destroyEditor(),this.pond&&(ht(this.$refs.input),this.pond=null)},dispatchFormEvent(G,N={}){this.$el.closest("form")?.dispatchEvent(new CustomEvent(G,{composed:!0,cancelable:!0,detail:N}))},async getUploadedFiles(){let G=await d();this.fileKeyIndex=G??{},this.uploadedFileIndex=Object.entries(this.fileKeyIndex).filter(([N,k])=>k?.url).reduce((N,[k,j])=>(N[j.url]=k,N),{})},async getFiles(){await this.getUploadedFiles();let G=[];for(let N of Object.values(this.fileKeyIndex))N&&G.push({source:N.url,options:{type:"local",...!N.type||P&&(/^audio/.test(N.type)||/^image/.test(N.type)||/^video/.test(N.type))?{}:{file:{name:N.name,size:N.size,type:N.type}}}});return ie?G:G.reverse()},insertDownloadLink(G){if(G.origin!==Bt.LOCAL)return;let N=this.getDownloadLink(G);N&&document.getElementById(`filepond--item-${G.id}`).querySelector(".filepond--file-info-main").prepend(N)},insertOpenLink(G){if(G.origin!==Bt.LOCAL)return;let N=this.getOpenLink(G);N&&document.getElementById(`filepond--item-${G.id}`).querySelector(".filepond--file-info-main").prepend(N)},getDownloadLink(G){let N=G.source;if(!N)return;let k=document.createElement("a");return k.className="filepond--download-icon",k.href=N,k.download=G.file.name,k},getOpenLink(G){let N=G.source;if(!N)return;let k=document.createElement("a");return k.className="filepond--open-icon",k.href=N,k.target="_blank",k},initEditor(){if(y||!u)return;let G={aspectRatio:i??v/b,autoCropArea:1,center:!0,cropBoxResizable:!0,guides:!0,highlight:!0,responsive:!0,toggleDragModeOnDblclick:!0,viewMode:f,wheelZoomRatio:.02};_&&(G.crop=N=>{this.$refs.xPositionInput.value=Math.round(N.detail.x),this.$refs.yPositionInput.value=Math.round(N.detail.y),this.$refs.heightInput.value=Math.round(N.detail.height),this.$refs.widthInput.value=Math.round(N.detail.width),this.$refs.rotationInput.value=N.detail.rotate}),this.editor=new xa(this.$refs.editor,G)},closeEditor(){if(this.isEditorOpenedForAspectRatio){let G=this.pond.getFiles().find(N=>N.filename===this.editingFile.name);G&&this.pond.removeFile(G.id,{revert:!0}),this.isEditorOpenedForAspectRatio=!1}this.editingFile={},this.isEditorOpen=!1,this.destroyEditor()},fixImageDimensions(G,N){if(G.type!=="image/svg+xml")return N(G);let k=new FileReader;k.onload=j=>{let q=new DOMParser().parseFromString(j.target.result,"image/svg+xml")?.querySelector("svg");if(!q)return N(G);let Ne=["viewBox","ViewBox","viewbox"].find($e=>q.hasAttribute($e));if(!Ne)return N(G);let Me=q.getAttribute(Ne).split(" ");return!Me||Me.length!==4?N(G):(q.setAttribute("width",parseFloat(Me[2])+"pt"),q.setAttribute("height",parseFloat(Me[3])+"pt"),N(new File([new Blob([new XMLSerializer().serializeToString(q)],{type:"image/svg+xml"})],G.name,{type:"image/svg+xml",_relativePath:""})))},k.readAsText(G)},loadEditor(G){if(y||!u||!G)return;let N=G.type==="image/svg+xml";if(!r&&N){alert(c);return}B&&N&&!confirm(s)||this.fixImageDimensions(G,k=>{this.editingFile=k,this.initEditor();let j=new FileReader;j.onload=q=>{this.isEditorOpen=!0,setTimeout(()=>this.editor.replace(q.target.result),200)},j.readAsDataURL(G)})},getRoundedCanvas(G){let N=G.width,k=G.height,j=document.createElement("canvas");j.width=N,j.height=k;let q=j.getContext("2d");return q.imageSmoothingEnabled=!0,q.drawImage(G,0,0,N,k),q.globalCompositeOperation="destination-in",q.beginPath(),q.ellipse(N/2,k/2,N/2,k/2,0,0,2*Math.PI),q.fill(),j},saveEditor(){if(y||!u)return;this.isEditorOpenedForAspectRatio=!1;let G=this.editor.getCroppedCanvas({fillColor:g??"transparent",height:a,imageSmoothingEnabled:!0,imageSmoothingQuality:"high",width:l});m&&(G=this.getRoundedCanvas(G)),G.toBlob(N=>{this.pond.removeFile(this.pond.getFiles().find(k=>k.filename===this.editingFile.name)?.id,{revert:!0}),this.$nextTick(()=>{this.shouldUpdateState=!1;let k=this.editingFile.name.slice(0,this.editingFile.name.lastIndexOf(".")),j=this.editingFile.name.split(".").pop();j==="svg"&&(j="png");let q=/-v(\d+)/;q.test(k)?k=k.replace(q,(Ne,Me)=>`-v${Number(Me)+1}`):k+="-v1",this.pond.addFile(new File([N],`${k}.${j}`,{type:this.editingFile.type==="image/svg+xml"||m?"image/png":this.editingFile.type,lastModified:new Date().getTime()})).then(()=>{this.closeEditor()}).catch(()=>{this.closeEditor()})})},m?"image/png":this.editingFile.type)},destroyEditor(){this.editor&&typeof this.editor.destroy=="function"&&this.editor.destroy(),this.editor=null},checkImageAspectRatio(G){if(!i)return;let N=new Image,k=URL.createObjectURL(G);N.onload=()=>{URL.revokeObjectURL(k);let j=N.width/N.height;Math.abs(j-i)>.01&&(this.isEditorOpenedForAspectRatio=!0,this.loadEditor(G))},N.onerror=()=>{URL.revokeObjectURL(k)},N.src=k}}}var gr={am:Lo,ar:Mo,az:Ao,ca:Po,ckb:zo,cs:Fo,da:Oo,de:Do,el:Co,en:Bo,es:ko,fa:No,fi:Vo,fr:Go,he:Uo,hr:Ho,hu:Wo,id:jo,it:Yo,ja:qo,km:$o,ko:Xo,lt:Ko,lus:Zo,lv:Qo,nb:Jo,nl:er,pl:tr,pt:ir,pt_BR:ar,ro:nr,ru:lr,sk:or,sv:rr,tr:sr,uk:cr,vi:dr,zh_CN:pr,zh_HK:mr,zh_TW:ur};export{Og as default}; +/*! Bundled license information: + +filepond/dist/filepond.esm.js: + (*! + * FilePond 4.32.10 + * Licensed under MIT, https://opensource.org/licenses/MIT/ + * Please visit https://pqina.nl/filepond/ for details. + *) + +cropperjs/dist/cropper.esm.js: + (*! + * Cropper.js v1.6.2 + * https://fengyuanchen.github.io/cropperjs + * + * Copyright 2015-present Chen Fengyuan + * Released under the MIT license + * + * Date: 2024-04-21T07:43:05.335Z + *) + +filepond-plugin-file-validate-size/dist/filepond-plugin-file-validate-size.esm.js: + (*! + * FilePondPluginFileValidateSize 2.2.8 + * Licensed under MIT, https://opensource.org/licenses/MIT/ + * Please visit https://pqina.nl/filepond/ for details. + *) + +filepond-plugin-file-validate-type/dist/filepond-plugin-file-validate-type.esm.js: + (*! + * FilePondPluginFileValidateType 1.2.9 + * Licensed under MIT, https://opensource.org/licenses/MIT/ + * Please visit https://pqina.nl/filepond/ for details. + *) + +filepond-plugin-image-crop/dist/filepond-plugin-image-crop.esm.js: + (*! + * FilePondPluginImageCrop 2.0.6 + * Licensed under MIT, https://opensource.org/licenses/MIT/ + * Please visit https://pqina.nl/filepond/ for details. + *) + +filepond-plugin-image-edit/dist/filepond-plugin-image-edit.esm.js: + (*! + * FilePondPluginImageEdit 1.6.3 + * Licensed under MIT, https://opensource.org/licenses/MIT/ + * Please visit https://pqina.nl/filepond/ for details. + *) + +filepond-plugin-image-exif-orientation/dist/filepond-plugin-image-exif-orientation.esm.js: + (*! + * FilePondPluginImageExifOrientation 1.0.11 + * Licensed under MIT, https://opensource.org/licenses/MIT/ + * Please visit https://pqina.nl/filepond/ for details. + *) + +filepond-plugin-image-preview/dist/filepond-plugin-image-preview.esm.js: + (*! + * FilePondPluginImagePreview 4.6.12 + * Licensed under MIT, https://opensource.org/licenses/MIT/ + * Please visit https://pqina.nl/filepond/ for details. + *) + +filepond-plugin-image-resize/dist/filepond-plugin-image-resize.esm.js: + (*! + * FilePondPluginImageResize 2.0.10 + * Licensed under MIT, https://opensource.org/licenses/MIT/ + * Please visit https://pqina.nl/filepond/ for details. + *) + +filepond-plugin-image-transform/dist/filepond-plugin-image-transform.esm.js: + (*! + * FilePondPluginImageTransform 3.8.7 + * Licensed under MIT, https://opensource.org/licenses/MIT/ + * Please visit https://pqina.nl/filepond/ for details. + *) +*/ diff --git a/public/js/filament/forms/components/key-value.js b/public/js/filament/forms/components/key-value.js new file mode 100644 index 0000000..293864b --- /dev/null +++ b/public/js/filament/forms/components/key-value.js @@ -0,0 +1 @@ +function a({state:r}){return{state:r,rows:[],init(){this.updateRows(),this.rows.length<=0?this.rows.push({key:"",value:""}):this.updateState(),this.$watch("state",(e,t)=>{if(!Array.isArray(e))return;let s=i=>i===null?0:Array.isArray(i)?i.length:typeof i!="object"?0:Object.keys(i).length;s(e)===0&&s(t)===0||this.updateRows()})},addRow(){this.rows.push({key:"",value:""}),this.updateState()},deleteRow(e){this.rows.splice(e,1),this.rows.length<=0&&this.addRow(),this.updateState()},reorderRows(e){let t=Alpine.raw(this.rows);this.rows=[];let s=t.splice(e.oldIndex,1)[0];t.splice(e.newIndex,0,s),this.$nextTick(()=>{this.rows=t,this.updateState()})},updateRows(){let t=Alpine.raw(this.state).map(({key:s,value:i})=>({key:s,value:i}));this.rows.forEach(s=>{(s.key===""||s.key===null)&&t.push({key:"",value:s.value})}),this.rows=t},updateState(){let e=[];this.rows.forEach(t=>{t.key===""||t.key===null||e.push({key:t.key,value:t.value})}),JSON.stringify(this.state)!==JSON.stringify(e)&&(this.state=e)}}}export{a as default}; diff --git a/public/js/filament/forms/components/markdown-editor.js b/public/js/filament/forms/components/markdown-editor.js new file mode 100644 index 0000000..0ae0a75 --- /dev/null +++ b/public/js/filament/forms/components/markdown-editor.js @@ -0,0 +1,51 @@ +var ss=Object.defineProperty;var Sd=Object.getOwnPropertyDescriptor;var Td=Object.getOwnPropertyNames;var Ld=Object.prototype.hasOwnProperty;var Cd=(o,p)=>()=>(o&&(p=o(o=0)),p);var Ke=(o,p)=>()=>(p||o((p={exports:{}}).exports,p),p.exports);var Ed=(o,p,v,C)=>{if(p&&typeof p=="object"||typeof p=="function")for(let b of Td(p))!Ld.call(o,b)&&b!==v&&ss(o,b,{get:()=>p[b],enumerable:!(C=Sd(p,b))||C.enumerable});return o};var zd=o=>Ed(ss({},"__esModule",{value:!0}),o);var We=Ke((Yo,Qo)=>{(function(o,p){typeof Yo=="object"&&typeof Qo<"u"?Qo.exports=p():typeof define=="function"&&define.amd?define(p):(o=o||self,o.CodeMirror=p())})(Yo,(function(){"use strict";var o=navigator.userAgent,p=navigator.platform,v=/gecko\/\d/i.test(o),C=/MSIE \d/.test(o),b=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(o),S=/Edge\/(\d+)/.exec(o),s=C||b||S,h=s&&(C?document.documentMode||6:+(S||b)[1]),g=!S&&/WebKit\//.test(o),T=g&&/Qt\/\d+\.\d+/.test(o),w=!S&&/Chrome\/(\d+)/.exec(o),c=w&&+w[1],d=/Opera\//.test(o),k=/Apple Computer/.test(navigator.vendor),z=/Mac OS X 1\d\D([8-9]|\d\d)\D/.test(o),M=/PhantomJS/.test(o),_=k&&(/Mobile\/\w+/.test(o)||navigator.maxTouchPoints>2),W=/Android/.test(o),E=_||W||/webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(o),O=_||/Mac/.test(p),G=/\bCrOS\b/.test(o),J=/win/i.test(p),re=d&&o.match(/Version\/(\d*\.\d*)/);re&&(re=Number(re[1])),re&&re>=15&&(d=!1,g=!0);var q=O&&(T||d&&(re==null||re<12.11)),I=v||s&&h>=9;function D(e){return new RegExp("(^|\\s)"+e+"(?:$|\\s)\\s*")}var Q=function(e,t){var n=e.className,r=D(t).exec(n);if(r){var i=n.slice(r.index+r[0].length);e.className=n.slice(0,r.index)+(i?r[1]+i:"")}};function j(e){for(var t=e.childNodes.length;t>0;--t)e.removeChild(e.firstChild);return e}function V(e,t){return j(e).appendChild(t)}function y(e,t,n,r){var i=document.createElement(e);if(n&&(i.className=n),r&&(i.style.cssText=r),typeof t=="string")i.appendChild(document.createTextNode(t));else if(t)for(var a=0;a=t)return l+(t-a);l+=u-a,l+=n-l%n,a=u+1}}var qe=function(){this.id=null,this.f=null,this.time=0,this.handler=Ee(this.onTimeout,this)};qe.prototype.onTimeout=function(e){e.id=0,e.time<=+new Date?e.f():setTimeout(e.handler,e.time-+new Date)},qe.prototype.set=function(e,t){this.f=t;var n=+new Date+e;(!this.id||n=t)return r+Math.min(l,t-i);if(i+=a-r,i+=n-i%n,r=a+1,i>=t)return r}}var U=[""];function Z(e){for(;U.length<=e;)U.push(ce(U)+" ");return U[e]}function ce(e){return e[e.length-1]}function He(e,t){for(var n=[],r=0;r"\x80"&&(e.toUpperCase()!=e.toLowerCase()||Ue.test(e))}function Me(e,t){return t?t.source.indexOf("\\w")>-1&&we(e)?!0:t.test(e):we(e)}function Le(e){for(var t in e)if(e.hasOwnProperty(t)&&e[t])return!1;return!0}var $=/[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/;function H(e){return e.charCodeAt(0)>=768&&$.test(e)}function se(e,t,n){for(;(n<0?t>0:tn?-1:1;;){if(t==n)return t;var i=(t+n)/2,a=r<0?Math.ceil(i):Math.floor(i);if(a==t)return e(a)?t:n;e(a)?n=a:t=a+r}}function nt(e,t,n,r){if(!e)return r(t,n,"ltr",0);for(var i=!1,a=0;at||t==n&&l.to==t)&&(r(Math.max(l.from,t),Math.min(l.to,n),l.level==1?"rtl":"ltr",a),i=!0)}i||r(t,n,"ltr")}var dt=null;function Pt(e,t,n){var r;dt=null;for(var i=0;it)return i;a.to==t&&(a.from!=a.to&&n=="before"?r=i:dt=i),a.from==t&&(a.from!=a.to&&n!="before"?r=i:dt=i)}return r??dt}var Ft=(function(){var e="bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN",t="nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111";function n(m){return m<=247?e.charAt(m):1424<=m&&m<=1524?"R":1536<=m&&m<=1785?t.charAt(m-1536):1774<=m&&m<=2220?"r":8192<=m&&m<=8203?"w":m==8204?"b":"L"}var r=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,i=/[stwN]/,a=/[LRr]/,l=/[Lb1n]/,u=/[1n]/;function f(m,A,B){this.level=m,this.from=A,this.to=B}return function(m,A){var B=A=="ltr"?"L":"R";if(m.length==0||A=="ltr"&&!r.test(m))return!1;for(var ee=m.length,Y=[],ie=0;ie-1&&(r[t]=i.slice(0,a).concat(i.slice(a+1)))}}}function it(e,t){var n=nr(e,t);if(n.length)for(var r=Array.prototype.slice.call(arguments,2),i=0;i0}function Wt(e){e.prototype.on=function(t,n){Ie(this,t,n)},e.prototype.off=function(t,n){_t(this,t,n)}}function kt(e){e.preventDefault?e.preventDefault():e.returnValue=!1}function Rr(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}function Ct(e){return e.defaultPrevented!=null?e.defaultPrevented:e.returnValue==!1}function dr(e){kt(e),Rr(e)}function yn(e){return e.target||e.srcElement}function Ut(e){var t=e.which;return t==null&&(e.button&1?t=1:e.button&2?t=3:e.button&4&&(t=2)),O&&e.ctrlKey&&t==1&&(t=3),t}var eo=(function(){if(s&&h<9)return!1;var e=y("div");return"draggable"in e||"dragDrop"in e})(),Hr;function ei(e){if(Hr==null){var t=y("span","\u200B");V(e,y("span",[t,document.createTextNode("x")])),e.firstChild.offsetHeight!=0&&(Hr=t.offsetWidth<=1&&t.offsetHeight>2&&!(s&&h<8))}var n=Hr?y("span","\u200B"):y("span","\xA0",null,"display: inline-block; width: 1px; margin-right: -1px");return n.setAttribute("cm-text",""),n}var xn;function pr(e){if(xn!=null)return xn;var t=V(e,document.createTextNode("A\u062EA")),n=X(t,0,1).getBoundingClientRect(),r=X(t,1,2).getBoundingClientRect();return j(e),!n||n.left==n.right?!1:xn=r.right-n.right<3}var Ht=` + +b`.split(/\n/).length!=3?function(e){for(var t=0,n=[],r=e.length;t<=r;){var i=e.indexOf(` +`,t);i==-1&&(i=e.length);var a=e.slice(t,e.charAt(i-1)=="\r"?i-1:i),l=a.indexOf("\r");l!=-1?(n.push(a.slice(0,l)),t+=l+1):(n.push(a),t=i+1)}return n}:function(e){return e.split(/\r\n?|\n/)},hr=window.getSelection?function(e){try{return e.selectionStart!=e.selectionEnd}catch{return!1}}:function(e){var t;try{t=e.ownerDocument.selection.createRange()}catch{}return!t||t.parentElement()!=e?!1:t.compareEndPoints("StartToEnd",t)!=0},ti=(function(){var e=y("div");return"oncopy"in e?!0:(e.setAttribute("oncopy","return;"),typeof e.oncopy=="function")})(),$t=null;function to(e){if($t!=null)return $t;var t=V(e,y("span","x")),n=t.getBoundingClientRect(),r=X(t,0,1).getBoundingClientRect();return $t=Math.abs(n.left-r.left)>1}var Wr={},Kt={};function Gt(e,t){arguments.length>2&&(t.dependencies=Array.prototype.slice.call(arguments,2)),Wr[e]=t}function Cr(e,t){Kt[e]=t}function Ur(e){if(typeof e=="string"&&Kt.hasOwnProperty(e))e=Kt[e];else if(e&&typeof e.name=="string"&&Kt.hasOwnProperty(e.name)){var t=Kt[e.name];typeof t=="string"&&(t={name:t}),e=oe(t,e),e.name=t.name}else{if(typeof e=="string"&&/^[\w\-]+\/[\w\-]+\+xml$/.test(e))return Ur("application/xml");if(typeof e=="string"&&/^[\w\-]+\/[\w\-]+\+json$/.test(e))return Ur("application/json")}return typeof e=="string"?{name:e}:e||{name:"null"}}function $r(e,t){t=Ur(t);var n=Wr[t.name];if(!n)return $r(e,"text/plain");var r=n(e,t);if(gr.hasOwnProperty(t.name)){var i=gr[t.name];for(var a in i)i.hasOwnProperty(a)&&(r.hasOwnProperty(a)&&(r["_"+a]=r[a]),r[a]=i[a])}if(r.name=t.name,t.helperType&&(r.helperType=t.helperType),t.modeProps)for(var l in t.modeProps)r[l]=t.modeProps[l];return r}var gr={};function Kr(e,t){var n=gr.hasOwnProperty(e)?gr[e]:gr[e]={};ge(t,n)}function Vt(e,t){if(t===!0)return t;if(e.copyState)return e.copyState(t);var n={};for(var r in t){var i=t[r];i instanceof Array&&(i=i.concat([])),n[r]=i}return n}function _n(e,t){for(var n;e.innerMode&&(n=e.innerMode(t),!(!n||n.mode==e));)t=n.state,e=n.mode;return n||{mode:e,state:t}}function Gr(e,t,n){return e.startState?e.startState(t,n):!0}var at=function(e,t,n){this.pos=this.start=0,this.string=e,this.tabSize=t||8,this.lastColumnPos=this.lastColumnValue=0,this.lineStart=0,this.lineOracle=n};at.prototype.eol=function(){return this.pos>=this.string.length},at.prototype.sol=function(){return this.pos==this.lineStart},at.prototype.peek=function(){return this.string.charAt(this.pos)||void 0},at.prototype.next=function(){if(this.post},at.prototype.eatSpace=function(){for(var e=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>e},at.prototype.skipToEnd=function(){this.pos=this.string.length},at.prototype.skipTo=function(e){var t=this.string.indexOf(e,this.pos);if(t>-1)return this.pos=t,!0},at.prototype.backUp=function(e){this.pos-=e},at.prototype.column=function(){return this.lastColumnPos0?null:(a&&t!==!1&&(this.pos+=a[0].length),a)}},at.prototype.current=function(){return this.string.slice(this.start,this.pos)},at.prototype.hideFirstChars=function(e,t){this.lineStart+=e;try{return t()}finally{this.lineStart-=e}},at.prototype.lookAhead=function(e){var t=this.lineOracle;return t&&t.lookAhead(e)},at.prototype.baseToken=function(){var e=this.lineOracle;return e&&e.baseToken(this.pos)};function Ae(e,t){if(t-=e.first,t<0||t>=e.size)throw new Error("There is no line "+(t+e.first)+" in the document.");for(var n=e;!n.lines;)for(var r=0;;++r){var i=n.children[r],a=i.chunkSize();if(t=e.first&&tn?ne(n,Ae(e,n).text.length):Sc(t,Ae(e,t.line).text.length)}function Sc(e,t){var n=e.ch;return n==null||n>t?ne(e.line,t):n<0?ne(e.line,0):e}function ca(e,t){for(var n=[],r=0;rthis.maxLookAhead&&(this.maxLookAhead=e),t},Jt.prototype.baseToken=function(e){if(!this.baseTokens)return null;for(;this.baseTokens[this.baseTokenPos]<=e;)this.baseTokenPos+=2;var t=this.baseTokens[this.baseTokenPos+1];return{type:t&&t.replace(/( |^)overlay .*/,""),size:this.baseTokens[this.baseTokenPos]-e}},Jt.prototype.nextLine=function(){this.line++,this.maxLookAhead>0&&this.maxLookAhead--},Jt.fromSaved=function(e,t,n){return t instanceof ri?new Jt(e,Vt(e.mode,t.state),n,t.lookAhead):new Jt(e,Vt(e.mode,t),n)},Jt.prototype.save=function(e){var t=e!==!1?Vt(this.doc.mode,this.state):this.state;return this.maxLookAhead>0?new ri(t,this.maxLookAhead):t};function fa(e,t,n,r){var i=[e.state.modeGen],a={};va(e,t.text,e.doc.mode,n,function(m,A){return i.push(m,A)},a,r);for(var l=n.state,u=function(m){n.baseTokens=i;var A=e.state.overlays[m],B=1,ee=0;n.state=!0,va(e,t.text,A.mode,n,function(Y,ie){for(var ue=B;eeY&&i.splice(B,1,Y,i[B+1],me),B+=2,ee=Math.min(Y,me)}if(ie)if(A.opaque)i.splice(ue,B-ue,Y,"overlay "+ie),B=ue+2;else for(;uee.options.maxHighlightLength&&Vt(e.doc.mode,r.state),a=fa(e,t,r);i&&(r.state=i),t.stateAfter=r.save(!i),t.styles=a.styles,a.classes?t.styleClasses=a.classes:t.styleClasses&&(t.styleClasses=null),n===e.doc.highlightFrontier&&(e.doc.modeFrontier=Math.max(e.doc.modeFrontier,++e.doc.highlightFrontier))}return t.styles}function wn(e,t,n){var r=e.doc,i=e.display;if(!r.mode.startState)return new Jt(r,!0,t);var a=Tc(e,t,n),l=a>r.first&&Ae(r,a-1).stateAfter,u=l?Jt.fromSaved(r,l,a):new Jt(r,Gr(r.mode),a);return r.iter(a,t,function(f){ro(e,f.text,u);var m=u.line;f.stateAfter=m==t-1||m%5==0||m>=i.viewFrom&&mt.start)return a}throw new Error("Mode "+e.name+" failed to advance stream.")}var ha=function(e,t,n){this.start=e.start,this.end=e.pos,this.string=e.current(),this.type=t||null,this.state=n};function ga(e,t,n,r){var i=e.doc,a=i.mode,l;t=je(i,t);var u=Ae(i,t.line),f=wn(e,t.line,n),m=new at(u.text,e.options.tabSize,f),A;for(r&&(A=[]);(r||m.pose.options.maxHighlightLength?(u=!1,l&&ro(e,t,r,A.pos),A.pos=t.length,B=null):B=ma(no(n,A,r.state,ee),a),ee){var Y=ee[0].name;Y&&(B="m-"+(B?Y+" "+B:Y))}if(!u||m!=B){for(;fl;--u){if(u<=a.first)return a.first;var f=Ae(a,u-1),m=f.stateAfter;if(m&&(!n||u+(m instanceof ri?m.lookAhead:0)<=a.modeFrontier))return u;var A=Oe(f.text,null,e.options.tabSize);(i==null||r>A)&&(i=u-1,r=A)}return i}function Lc(e,t){if(e.modeFrontier=Math.min(e.modeFrontier,t),!(e.highlightFrontiern;r--){var i=Ae(e,r).stateAfter;if(i&&(!(i instanceof ri)||r+i.lookAhead=t:a.to>t);(r||(r=[])).push(new ni(l,a.from,f?null:a.to))}}return r}function Dc(e,t,n){var r;if(e)for(var i=0;i=t:a.to>t);if(u||a.from==t&&l.type=="bookmark"&&(!n||a.marker.insertLeft)){var f=a.from==null||(l.inclusiveLeft?a.from<=t:a.from0&&u)for(var Ce=0;Ce0)){var A=[f,1],B=ye(m.from,u.from),ee=ye(m.to,u.to);(B<0||!l.inclusiveLeft&&!B)&&A.push({from:m.from,to:u.from}),(ee>0||!l.inclusiveRight&&!ee)&&A.push({from:u.to,to:m.to}),i.splice.apply(i,A),f+=A.length-3}}return i}function xa(e){var t=e.markedSpans;if(t){for(var n=0;nt)&&(!r||oo(r,a.marker)<0)&&(r=a.marker)}return r}function Sa(e,t,n,r,i){var a=Ae(e,t),l=or&&a.markedSpans;if(l)for(var u=0;u=0&&B<=0||A<=0&&B>=0)&&(A<=0&&(f.marker.inclusiveRight&&i.inclusiveLeft?ye(m.to,n)>=0:ye(m.to,n)>0)||A>=0&&(f.marker.inclusiveRight&&i.inclusiveLeft?ye(m.from,r)<=0:ye(m.from,r)<0)))return!0}}}function Zt(e){for(var t;t=wa(e);)e=t.find(-1,!0).line;return e}function Ic(e){for(var t;t=ai(e);)e=t.find(1,!0).line;return e}function Nc(e){for(var t,n;t=ai(e);)e=t.find(1,!0).line,(n||(n=[])).push(e);return n}function ao(e,t){var n=Ae(e,t),r=Zt(n);return n==r?t:x(r)}function Ta(e,t){if(t>e.lastLine())return t;var n=Ae(e,t),r;if(!mr(e,n))return t;for(;r=ai(n);)n=r.find(1,!0).line;return x(n)+1}function mr(e,t){var n=or&&t.markedSpans;if(n){for(var r=void 0,i=0;it.maxLineLength&&(t.maxLineLength=i,t.maxLine=r)})}var Xr=function(e,t,n){this.text=e,_a(this,t),this.height=n?n(this):1};Xr.prototype.lineNo=function(){return x(this)},Wt(Xr);function Oc(e,t,n,r){e.text=t,e.stateAfter&&(e.stateAfter=null),e.styles&&(e.styles=null),e.order!=null&&(e.order=null),xa(e),_a(e,n);var i=r?r(e):1;i!=e.height&&Bt(e,i)}function Pc(e){e.parent=null,xa(e)}var Bc={},jc={};function La(e,t){if(!e||/^\s*$/.test(e))return null;var n=t.addModeClass?jc:Bc;return n[e]||(n[e]=e.replace(/\S+/g,"cm-$&"))}function Ca(e,t){var n=K("span",null,null,g?"padding-right: .1px":null),r={pre:K("pre",[n],"CodeMirror-line"),content:n,col:0,pos:0,cm:e,trailingSpace:!1,splitSpaces:e.getOption("lineWrapping")};t.measure={};for(var i=0;i<=(t.rest?t.rest.length:0);i++){var a=i?t.rest[i-1]:t.line,l=void 0;r.pos=0,r.addToken=Hc,pr(e.display.measure)&&(l=Pe(a,e.doc.direction))&&(r.addToken=Uc(r.addToken,l)),r.map=[];var u=t!=e.display.externalMeasured&&x(a);$c(a,r,da(e,a,u)),a.styleClasses&&(a.styleClasses.bgClass&&(r.bgClass=xe(a.styleClasses.bgClass,r.bgClass||"")),a.styleClasses.textClass&&(r.textClass=xe(a.styleClasses.textClass,r.textClass||""))),r.map.length==0&&r.map.push(0,0,r.content.appendChild(ei(e.display.measure))),i==0?(t.measure.map=r.map,t.measure.cache={}):((t.measure.maps||(t.measure.maps=[])).push(r.map),(t.measure.caches||(t.measure.caches=[])).push({}))}if(g){var f=r.content.lastChild;(/\bcm-tab\b/.test(f.className)||f.querySelector&&f.querySelector(".cm-tab"))&&(r.content.className="cm-tab-wrap-hack")}return it(e,"renderLine",e,t.line,r.pre),r.pre.className&&(r.textClass=xe(r.pre.className,r.textClass||"")),r}function Rc(e){var t=y("span","\u2022","cm-invalidchar");return t.title="\\u"+e.charCodeAt(0).toString(16),t.setAttribute("aria-label",t.title),t}function Hc(e,t,n,r,i,a,l){if(t){var u=e.splitSpaces?Wc(t,e.trailingSpace):t,f=e.cm.state.specialChars,m=!1,A;if(!f.test(t))e.col+=t.length,A=document.createTextNode(u),e.map.push(e.pos,e.pos+t.length,A),s&&h<9&&(m=!0),e.pos+=t.length;else{A=document.createDocumentFragment();for(var B=0;;){f.lastIndex=B;var ee=f.exec(t),Y=ee?ee.index-B:t.length-B;if(Y){var ie=document.createTextNode(u.slice(B,B+Y));s&&h<9?A.appendChild(y("span",[ie])):A.appendChild(ie),e.map.push(e.pos,e.pos+Y,ie),e.col+=Y,e.pos+=Y}if(!ee)break;B+=Y+1;var ue=void 0;if(ee[0]==" "){var me=e.cm.options.tabSize,ve=me-e.col%me;ue=A.appendChild(y("span",Z(ve),"cm-tab")),ue.setAttribute("role","presentation"),ue.setAttribute("cm-text"," "),e.col+=ve}else ee[0]=="\r"||ee[0]==` +`?(ue=A.appendChild(y("span",ee[0]=="\r"?"\u240D":"\u2424","cm-invalidchar")),ue.setAttribute("cm-text",ee[0]),e.col+=1):(ue=e.cm.options.specialCharPlaceholder(ee[0]),ue.setAttribute("cm-text",ee[0]),s&&h<9?A.appendChild(y("span",[ue])):A.appendChild(ue),e.col+=1);e.map.push(e.pos,e.pos+1,ue),e.pos++}}if(e.trailingSpace=u.charCodeAt(t.length-1)==32,n||r||i||m||a||l){var _e=n||"";r&&(_e+=r),i&&(_e+=i);var be=y("span",[A],_e,a);if(l)for(var Ce in l)l.hasOwnProperty(Ce)&&Ce!="style"&&Ce!="class"&&be.setAttribute(Ce,l[Ce]);return e.content.appendChild(be)}e.content.appendChild(A)}}function Wc(e,t){if(e.length>1&&!/ /.test(e))return e;for(var n=t,r="",i=0;im&&B.from<=m));ee++);if(B.to>=A)return e(n,r,i,a,l,u,f);e(n,r.slice(0,B.to-m),i,a,null,u,f),a=null,r=r.slice(B.to-m),m=B.to}}}function Ea(e,t,n,r){var i=!r&&n.widgetNode;i&&e.map.push(e.pos,e.pos+t,i),!r&&e.cm.display.input.needsContentAttribute&&(i||(i=e.content.appendChild(document.createElement("span"))),i.setAttribute("cm-marker",n.id)),i&&(e.cm.display.input.setUneditable(i),e.content.appendChild(i)),e.pos+=t,e.trailingSpace=!1}function $c(e,t,n){var r=e.markedSpans,i=e.text,a=0;if(!r){for(var l=1;lf||$e.collapsed&&Fe.to==f&&Fe.from==f)){if(Fe.to!=null&&Fe.to!=f&&Y>Fe.to&&(Y=Fe.to,ue=""),$e.className&&(ie+=" "+$e.className),$e.css&&(ee=(ee?ee+";":"")+$e.css),$e.startStyle&&Fe.from==f&&(me+=" "+$e.startStyle),$e.endStyle&&Fe.to==Y&&(Ce||(Ce=[])).push($e.endStyle,Fe.to),$e.title&&((_e||(_e={})).title=$e.title),$e.attributes)for(var Ve in $e.attributes)(_e||(_e={}))[Ve]=$e.attributes[Ve];$e.collapsed&&(!ve||oo(ve.marker,$e)<0)&&(ve=Fe)}else Fe.from>f&&Y>Fe.from&&(Y=Fe.from)}if(Ce)for(var vt=0;vt=u)break;for(var Ot=Math.min(u,Y);;){if(A){var At=f+A.length;if(!ve){var ut=At>Ot?A.slice(0,Ot-f):A;t.addToken(t,ut,B?B+ie:ie,me,f+ut.length==Y?ue:"",ee,_e)}if(At>=Ot){A=A.slice(Ot-f),f=Ot;break}f=At,me=""}A=i.slice(a,a=n[m++]),B=La(n[m++],t.cm.options)}}}function za(e,t,n){this.line=t,this.rest=Nc(t),this.size=this.rest?x(ce(this.rest))-n+1:1,this.node=this.text=null,this.hidden=mr(e,t)}function si(e,t,n){for(var r=[],i,a=t;a2&&a.push((f.bottom+m.top)/2-n.top)}}a.push(n.bottom-n.top)}}function Na(e,t,n){if(e.line==t)return{map:e.measure.map,cache:e.measure.cache};if(e.rest){for(var r=0;rn)return{map:e.measure.maps[i],cache:e.measure.caches[i],before:!0}}}function rf(e,t){t=Zt(t);var n=x(t),r=e.display.externalMeasured=new za(e.doc,t,n);r.lineN=n;var i=r.built=Ca(e,r);return r.text=i.pre,V(e.display.lineMeasure,i.pre),r}function Oa(e,t,n,r){return tr(e,Qr(e,t),n,r)}function po(e,t){if(t>=e.display.viewFrom&&t=n.lineN&&tt)&&(a=f-u,i=a-1,t>=f&&(l="right")),i!=null){if(r=e[m+2],u==f&&n==(r.insertLeft?"left":"right")&&(l=n),n=="left"&&i==0)for(;m&&e[m-2]==e[m-3]&&e[m-1].insertLeft;)r=e[(m-=3)+2],l="left";if(n=="right"&&i==f-u)for(;m=0&&(n=e[i]).left==n.right;i--);return n}function of(e,t,n,r){var i=Ba(t.map,n,r),a=i.node,l=i.start,u=i.end,f=i.collapse,m;if(a.nodeType==3){for(var A=0;A<4;A++){for(;l&&H(t.line.text.charAt(i.coverStart+l));)--l;for(;i.coverStart+u0&&(f=r="right");var B;e.options.lineWrapping&&(B=a.getClientRects()).length>1?m=B[r=="right"?B.length-1:0]:m=a.getBoundingClientRect()}if(s&&h<9&&!l&&(!m||!m.left&&!m.right)){var ee=a.parentNode.getClientRects()[0];ee?m={left:ee.left,right:ee.left+Jr(e.display),top:ee.top,bottom:ee.bottom}:m=Pa}for(var Y=m.top-t.rect.top,ie=m.bottom-t.rect.top,ue=(Y+ie)/2,me=t.view.measure.heights,ve=0;ve=r.text.length?(f=r.text.length,m="before"):f<=0&&(f=0,m="after"),!u)return l(m=="before"?f-1:f,m=="before");function A(ie,ue,me){var ve=u[ue],_e=ve.level==1;return l(me?ie-1:ie,_e!=me)}var B=Pt(u,f,m),ee=dt,Y=A(f,B,m=="before");return ee!=null&&(Y.other=A(f,ee,m!="before")),Y}function $a(e,t){var n=0;t=je(e.doc,t),e.options.lineWrapping||(n=Jr(e.display)*t.ch);var r=Ae(e.doc,t.line),i=ar(r)+ui(e.display);return{left:n,right:n,top:i,bottom:i+r.height}}function go(e,t,n,r,i){var a=ne(e,t,n);return a.xRel=i,r&&(a.outside=r),a}function mo(e,t,n){var r=e.doc;if(n+=e.display.viewOffset,n<0)return go(r.first,0,null,-1,-1);var i=P(r,n),a=r.first+r.size-1;if(i>a)return go(r.first+r.size-1,Ae(r,a).text.length,null,1,1);t<0&&(t=0);for(var l=Ae(r,i);;){var u=lf(e,l,i,t,n),f=Fc(l,u.ch+(u.xRel>0||u.outside>0?1:0));if(!f)return u;var m=f.find(1);if(m.line==i)return m;l=Ae(r,i=m.line)}}function Ka(e,t,n,r){r-=ho(t);var i=t.text.length,a=De(function(l){return tr(e,n,l-1).bottom<=r},i,0);return i=De(function(l){return tr(e,n,l).top>r},a,i),{begin:a,end:i}}function Ga(e,t,n,r){n||(n=Qr(e,t));var i=ci(e,t,tr(e,n,r),"line").top;return Ka(e,t,n,i)}function vo(e,t,n,r){return e.bottom<=n?!1:e.top>n?!0:(r?e.left:e.right)>t}function lf(e,t,n,r,i){i-=ar(t);var a=Qr(e,t),l=ho(t),u=0,f=t.text.length,m=!0,A=Pe(t,e.doc.direction);if(A){var B=(e.options.lineWrapping?uf:sf)(e,t,n,a,A,r,i);m=B.level!=1,u=m?B.from:B.to-1,f=m?B.to:B.from-1}var ee=null,Y=null,ie=De(function(Ne){var Fe=tr(e,a,Ne);return Fe.top+=l,Fe.bottom+=l,vo(Fe,r,i,!1)?(Fe.top<=i&&Fe.left<=r&&(ee=Ne,Y=Fe),!0):!1},u,f),ue,me,ve=!1;if(Y){var _e=r-Y.left=Ce.bottom?1:0}return ie=se(t.text,ie,1),go(n,ie,me,ve,r-ue)}function sf(e,t,n,r,i,a,l){var u=De(function(B){var ee=i[B],Y=ee.level!=1;return vo(Xt(e,ne(n,Y?ee.to:ee.from,Y?"before":"after"),"line",t,r),a,l,!0)},0,i.length-1),f=i[u];if(u>0){var m=f.level!=1,A=Xt(e,ne(n,m?f.from:f.to,m?"after":"before"),"line",t,r);vo(A,a,l,!0)&&A.top>l&&(f=i[u-1])}return f}function uf(e,t,n,r,i,a,l){var u=Ka(e,t,r,l),f=u.begin,m=u.end;/\s/.test(t.text.charAt(m-1))&&m--;for(var A=null,B=null,ee=0;ee=m||Y.to<=f)){var ie=Y.level!=1,ue=tr(e,r,ie?Math.min(m,Y.to)-1:Math.max(f,Y.from)).right,me=ueme)&&(A=Y,B=me)}}return A||(A=i[i.length-1]),A.fromm&&(A={from:A.from,to:m,level:A.level}),A}var zr;function Vr(e){if(e.cachedTextHeight!=null)return e.cachedTextHeight;if(zr==null){zr=y("pre",null,"CodeMirror-line-like");for(var t=0;t<49;++t)zr.appendChild(document.createTextNode("x")),zr.appendChild(y("br"));zr.appendChild(document.createTextNode("x"))}V(e.measure,zr);var n=zr.offsetHeight/50;return n>3&&(e.cachedTextHeight=n),j(e.measure),n||1}function Jr(e){if(e.cachedCharWidth!=null)return e.cachedCharWidth;var t=y("span","xxxxxxxxxx"),n=y("pre",[t],"CodeMirror-line-like");V(e.measure,n);var r=t.getBoundingClientRect(),i=(r.right-r.left)/10;return i>2&&(e.cachedCharWidth=i),i||10}function bo(e){for(var t=e.display,n={},r={},i=t.gutters.clientLeft,a=t.gutters.firstChild,l=0;a;a=a.nextSibling,++l){var u=e.display.gutterSpecs[l].className;n[u]=a.offsetLeft+a.clientLeft+i,r[u]=a.clientWidth}return{fixedPos:yo(t),gutterTotalWidth:t.gutters.offsetWidth,gutterLeft:n,gutterWidth:r,wrapperWidth:t.wrapper.clientWidth}}function yo(e){return e.scroller.getBoundingClientRect().left-e.sizer.getBoundingClientRect().left}function Za(e){var t=Vr(e.display),n=e.options.lineWrapping,r=n&&Math.max(5,e.display.scroller.clientWidth/Jr(e.display)-3);return function(i){if(mr(e.doc,i))return 0;var a=0;if(i.widgets)for(var l=0;l0&&(m=Ae(e.doc,f.line).text).length==f.ch){var A=Oe(m,m.length,e.options.tabSize)-m.length;f=ne(f.line,Math.max(0,Math.round((a-Ia(e.display).left)/Jr(e.display))-A))}return f}function Ar(e,t){if(t>=e.display.viewTo||(t-=e.display.viewFrom,t<0))return null;for(var n=e.display.view,r=0;rt)&&(i.updateLineNumbers=t),e.curOp.viewChanged=!0,t>=i.viewTo)or&&ao(e.doc,t)i.viewFrom?br(e):(i.viewFrom+=r,i.viewTo+=r);else if(t<=i.viewFrom&&n>=i.viewTo)br(e);else if(t<=i.viewFrom){var a=di(e,n,n+r,1);a?(i.view=i.view.slice(a.index),i.viewFrom=a.lineN,i.viewTo+=r):br(e)}else if(n>=i.viewTo){var l=di(e,t,t,-1);l?(i.view=i.view.slice(0,l.index),i.viewTo=l.lineN):br(e)}else{var u=di(e,t,t,-1),f=di(e,n,n+r,1);u&&f?(i.view=i.view.slice(0,u.index).concat(si(e,u.lineN,f.lineN)).concat(i.view.slice(f.index)),i.viewTo+=r):br(e)}var m=i.externalMeasured;m&&(n=i.lineN&&t=r.viewTo)){var a=r.view[Ar(e,t)];if(a.node!=null){var l=a.changes||(a.changes=[]);Se(l,n)==-1&&l.push(n)}}}function br(e){e.display.viewFrom=e.display.viewTo=e.doc.first,e.display.view=[],e.display.viewOffset=0}function di(e,t,n,r){var i=Ar(e,t),a,l=e.display.view;if(!or||n==e.doc.first+e.doc.size)return{index:i,lineN:n};for(var u=e.display.viewFrom,f=0;f0){if(i==l.length-1)return null;a=u+l[i].size-t,i++}else a=u-t;t+=a,n+=a}for(;ao(e.doc,n)!=n;){if(i==(r<0?0:l.length-1))return null;n+=r*l[i-(r<0?1:0)].size,i+=r}return{index:i,lineN:n}}function cf(e,t,n){var r=e.display,i=r.view;i.length==0||t>=r.viewTo||n<=r.viewFrom?(r.view=si(e,t,n),r.viewFrom=t):(r.viewFrom>t?r.view=si(e,t,r.viewFrom).concat(r.view):r.viewFromn&&(r.view=r.view.slice(0,Ar(e,n)))),r.viewTo=n}function Xa(e){for(var t=e.display.view,n=0,r=0;r=e.display.viewTo||f.to().line0?l:e.defaultCharWidth())+"px"}if(r.other){var u=n.appendChild(y("div","\xA0","CodeMirror-cursor CodeMirror-secondarycursor"));u.style.display="",u.style.left=r.other.left+"px",u.style.top=r.other.top+"px",u.style.height=(r.other.bottom-r.other.top)*.85+"px"}}function pi(e,t){return e.top-t.top||e.left-t.left}function ff(e,t,n){var r=e.display,i=e.doc,a=document.createDocumentFragment(),l=Ia(e.display),u=l.left,f=Math.max(r.sizerWidth,Er(e)-r.sizer.offsetLeft)-l.right,m=i.direction=="ltr";function A(be,Ce,Ne,Fe){Ce<0&&(Ce=0),Ce=Math.round(Ce),Fe=Math.round(Fe),a.appendChild(y("div",null,"CodeMirror-selected","position: absolute; left: "+be+`px; + top: `+Ce+"px; width: "+(Ne??f-be)+`px; + height: `+(Fe-Ce)+"px"))}function B(be,Ce,Ne){var Fe=Ae(i,be),$e=Fe.text.length,Ve,vt;function rt(ut,Dt){return fi(e,ne(be,ut),"div",Fe,Dt)}function Ot(ut,Dt,yt){var ft=Ga(e,Fe,null,ut),ct=Dt=="ltr"==(yt=="after")?"left":"right",lt=yt=="after"?ft.begin:ft.end-(/\s/.test(Fe.text.charAt(ft.end-1))?2:1);return rt(lt,ct)[ct]}var At=Pe(Fe,i.direction);return nt(At,Ce||0,Ne??$e,function(ut,Dt,yt,ft){var ct=yt=="ltr",lt=rt(ut,ct?"left":"right"),qt=rt(Dt-1,ct?"right":"left"),pn=Ce==null&&ut==0,Sr=Ne==null&&Dt==$e,St=ft==0,rr=!At||ft==At.length-1;if(qt.top-lt.top<=3){var bt=(m?pn:Sr)&&St,Zo=(m?Sr:pn)&&rr,cr=bt?u:(ct?lt:qt).left,Nr=Zo?f:(ct?qt:lt).right;A(cr,lt.top,Nr-cr,lt.bottom)}else{var Or,Lt,hn,Xo;ct?(Or=m&&pn&&St?u:lt.left,Lt=m?f:Ot(ut,yt,"before"),hn=m?u:Ot(Dt,yt,"after"),Xo=m&&Sr&&rr?f:qt.right):(Or=m?Ot(ut,yt,"before"):u,Lt=!m&&pn&&St?f:lt.right,hn=!m&&Sr&&rr?u:qt.left,Xo=m?Ot(Dt,yt,"after"):f),A(Or,lt.top,Lt-Or,lt.bottom),lt.bottom0?t.blinker=setInterval(function(){e.hasFocus()||en(e),t.cursorDiv.style.visibility=(n=!n)?"":"hidden"},e.options.cursorBlinkRate):e.options.cursorBlinkRate<0&&(t.cursorDiv.style.visibility="hidden")}}function Qa(e){e.hasFocus()||(e.display.input.focus(),e.state.focused||So(e))}function wo(e){e.state.delayingBlurEvent=!0,setTimeout(function(){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1,e.state.focused&&en(e))},100)}function So(e,t){e.state.delayingBlurEvent&&!e.state.draggingText&&(e.state.delayingBlurEvent=!1),e.options.readOnly!="nocursor"&&(e.state.focused||(it(e,"focus",e,t),e.state.focused=!0,le(e.display.wrapper,"CodeMirror-focused"),!e.curOp&&e.display.selForContextMenu!=e.doc.sel&&(e.display.input.reset(),g&&setTimeout(function(){return e.display.input.reset(!0)},20)),e.display.input.receivedFocus()),ko(e))}function en(e,t){e.state.delayingBlurEvent||(e.state.focused&&(it(e,"blur",e,t),e.state.focused=!1,Q(e.display.wrapper,"CodeMirror-focused")),clearInterval(e.display.blinker),setTimeout(function(){e.state.focused||(e.display.shift=!1)},150))}function hi(e){for(var t=e.display,n=t.lineDiv.offsetTop,r=Math.max(0,t.scroller.getBoundingClientRect().top),i=t.lineDiv.getBoundingClientRect().top,a=0,l=0;l.005||Y<-.005)&&(ie.display.sizerWidth){var ue=Math.ceil(A/Jr(e.display));ue>e.display.maxLineLength&&(e.display.maxLineLength=ue,e.display.maxLine=u.line,e.display.maxLineChanged=!0)}}}Math.abs(a)>2&&(t.scroller.scrollTop+=a)}function Va(e){if(e.widgets)for(var t=0;t=l&&(a=P(t,ar(Ae(t,f))-e.wrapper.clientHeight),l=f)}return{from:a,to:Math.max(l,a+1)}}function df(e,t){if(!ot(e,"scrollCursorIntoView")){var n=e.display,r=n.sizer.getBoundingClientRect(),i=null,a=n.wrapper.ownerDocument;if(t.top+r.top<0?i=!0:t.bottom+r.top>(a.defaultView.innerHeight||a.documentElement.clientHeight)&&(i=!1),i!=null&&!M){var l=y("div","\u200B",null,`position: absolute; + top: `+(t.top-n.viewOffset-ui(e.display))+`px; + height: `+(t.bottom-t.top+er(e)+n.barHeight)+`px; + left: `+t.left+"px; width: "+Math.max(2,t.right-t.left)+"px;");e.display.lineSpace.appendChild(l),l.scrollIntoView(i),e.display.lineSpace.removeChild(l)}}}function pf(e,t,n,r){r==null&&(r=0);var i;!e.options.lineWrapping&&t==n&&(n=t.sticky=="before"?ne(t.line,t.ch+1,"before"):t,t=t.ch?ne(t.line,t.sticky=="before"?t.ch-1:t.ch,"after"):t);for(var a=0;a<5;a++){var l=!1,u=Xt(e,t),f=!n||n==t?u:Xt(e,n);i={left:Math.min(u.left,f.left),top:Math.min(u.top,f.top)-r,right:Math.max(u.left,f.left),bottom:Math.max(u.bottom,f.bottom)+r};var m=To(e,i),A=e.doc.scrollTop,B=e.doc.scrollLeft;if(m.scrollTop!=null&&(An(e,m.scrollTop),Math.abs(e.doc.scrollTop-A)>1&&(l=!0)),m.scrollLeft!=null&&(Dr(e,m.scrollLeft),Math.abs(e.doc.scrollLeft-B)>1&&(l=!0)),!l)break}return i}function hf(e,t){var n=To(e,t);n.scrollTop!=null&&An(e,n.scrollTop),n.scrollLeft!=null&&Dr(e,n.scrollLeft)}function To(e,t){var n=e.display,r=Vr(e.display);t.top<0&&(t.top=0);var i=e.curOp&&e.curOp.scrollTop!=null?e.curOp.scrollTop:n.scroller.scrollTop,a=fo(e),l={};t.bottom-t.top>a&&(t.bottom=t.top+a);var u=e.doc.height+co(n),f=t.topu-r;if(t.topi+a){var A=Math.min(t.top,(m?u:t.bottom)-a);A!=i&&(l.scrollTop=A)}var B=e.options.fixedGutter?0:n.gutters.offsetWidth,ee=e.curOp&&e.curOp.scrollLeft!=null?e.curOp.scrollLeft:n.scroller.scrollLeft-B,Y=Er(e)-n.gutters.offsetWidth,ie=t.right-t.left>Y;return ie&&(t.right=t.left+Y),t.left<10?l.scrollLeft=0:t.leftY+ee-3&&(l.scrollLeft=t.right+(ie?0:10)-Y),l}function Lo(e,t){t!=null&&(mi(e),e.curOp.scrollTop=(e.curOp.scrollTop==null?e.doc.scrollTop:e.curOp.scrollTop)+t)}function tn(e){mi(e);var t=e.getCursor();e.curOp.scrollToPos={from:t,to:t,margin:e.options.cursorScrollMargin}}function Mn(e,t,n){(t!=null||n!=null)&&mi(e),t!=null&&(e.curOp.scrollLeft=t),n!=null&&(e.curOp.scrollTop=n)}function gf(e,t){mi(e),e.curOp.scrollToPos=t}function mi(e){var t=e.curOp.scrollToPos;if(t){e.curOp.scrollToPos=null;var n=$a(e,t.from),r=$a(e,t.to);Ja(e,n,r,t.margin)}}function Ja(e,t,n,r){var i=To(e,{left:Math.min(t.left,n.left),top:Math.min(t.top,n.top)-r,right:Math.max(t.right,n.right),bottom:Math.max(t.bottom,n.bottom)+r});Mn(e,i.scrollLeft,i.scrollTop)}function An(e,t){Math.abs(e.doc.scrollTop-t)<2||(v||Eo(e,{top:t}),el(e,t,!0),v&&Eo(e),Fn(e,100))}function el(e,t,n){t=Math.max(0,Math.min(e.display.scroller.scrollHeight-e.display.scroller.clientHeight,t)),!(e.display.scroller.scrollTop==t&&!n)&&(e.doc.scrollTop=t,e.display.scrollbars.setScrollTop(t),e.display.scroller.scrollTop!=t&&(e.display.scroller.scrollTop=t))}function Dr(e,t,n,r){t=Math.max(0,Math.min(t,e.display.scroller.scrollWidth-e.display.scroller.clientWidth)),!((n?t==e.doc.scrollLeft:Math.abs(e.doc.scrollLeft-t)<2)&&!r)&&(e.doc.scrollLeft=t,ol(e),e.display.scroller.scrollLeft!=t&&(e.display.scroller.scrollLeft=t),e.display.scrollbars.setScrollLeft(t))}function Dn(e){var t=e.display,n=t.gutters.offsetWidth,r=Math.round(e.doc.height+co(e.display));return{clientHeight:t.scroller.clientHeight,viewHeight:t.wrapper.clientHeight,scrollWidth:t.scroller.scrollWidth,clientWidth:t.scroller.clientWidth,viewWidth:t.wrapper.clientWidth,barLeft:e.options.fixedGutter?n:0,docHeight:r,scrollHeight:r+er(e)+t.barHeight,nativeBarWidth:t.nativeBarWidth,gutterWidth:n}}var qr=function(e,t,n){this.cm=n;var r=this.vert=y("div",[y("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),i=this.horiz=y("div",[y("div",null,null,"height: 100%; min-height: 1px")],"CodeMirror-hscrollbar");r.tabIndex=i.tabIndex=-1,e(r),e(i),Ie(r,"scroll",function(){r.clientHeight&&t(r.scrollTop,"vertical")}),Ie(i,"scroll",function(){i.clientWidth&&t(i.scrollLeft,"horizontal")}),this.checkedZeroWidth=!1,s&&h<8&&(this.horiz.style.minHeight=this.vert.style.minWidth="18px")};qr.prototype.update=function(e){var t=e.scrollWidth>e.clientWidth+1,n=e.scrollHeight>e.clientHeight+1,r=e.nativeBarWidth;if(n){this.vert.style.display="block",this.vert.style.bottom=t?r+"px":"0";var i=e.viewHeight-(t?r:0);this.vert.firstChild.style.height=Math.max(0,e.scrollHeight-e.clientHeight+i)+"px"}else this.vert.scrollTop=0,this.vert.style.display="",this.vert.firstChild.style.height="0";if(t){this.horiz.style.display="block",this.horiz.style.right=n?r+"px":"0",this.horiz.style.left=e.barLeft+"px";var a=e.viewWidth-e.barLeft-(n?r:0);this.horiz.firstChild.style.width=Math.max(0,e.scrollWidth-e.clientWidth+a)+"px"}else this.horiz.style.display="",this.horiz.firstChild.style.width="0";return!this.checkedZeroWidth&&e.clientHeight>0&&(r==0&&this.zeroWidthHack(),this.checkedZeroWidth=!0),{right:n?r:0,bottom:t?r:0}},qr.prototype.setScrollLeft=function(e){this.horiz.scrollLeft!=e&&(this.horiz.scrollLeft=e),this.disableHoriz&&this.enableZeroWidthBar(this.horiz,this.disableHoriz,"horiz")},qr.prototype.setScrollTop=function(e){this.vert.scrollTop!=e&&(this.vert.scrollTop=e),this.disableVert&&this.enableZeroWidthBar(this.vert,this.disableVert,"vert")},qr.prototype.zeroWidthHack=function(){var e=O&&!z?"12px":"18px";this.horiz.style.height=this.vert.style.width=e,this.horiz.style.visibility=this.vert.style.visibility="hidden",this.disableHoriz=new qe,this.disableVert=new qe},qr.prototype.enableZeroWidthBar=function(e,t,n){e.style.visibility="";function r(){var i=e.getBoundingClientRect(),a=n=="vert"?document.elementFromPoint(i.right-1,(i.top+i.bottom)/2):document.elementFromPoint((i.right+i.left)/2,i.bottom-1);a!=e?e.style.visibility="hidden":t.set(1e3,r)}t.set(1e3,r)},qr.prototype.clear=function(){var e=this.horiz.parentNode;e.removeChild(this.horiz),e.removeChild(this.vert)};var qn=function(){};qn.prototype.update=function(){return{bottom:0,right:0}},qn.prototype.setScrollLeft=function(){},qn.prototype.setScrollTop=function(){},qn.prototype.clear=function(){};function rn(e,t){t||(t=Dn(e));var n=e.display.barWidth,r=e.display.barHeight;tl(e,t);for(var i=0;i<4&&n!=e.display.barWidth||r!=e.display.barHeight;i++)n!=e.display.barWidth&&e.options.lineWrapping&&hi(e),tl(e,Dn(e)),n=e.display.barWidth,r=e.display.barHeight}function tl(e,t){var n=e.display,r=n.scrollbars.update(t);n.sizer.style.paddingRight=(n.barWidth=r.right)+"px",n.sizer.style.paddingBottom=(n.barHeight=r.bottom)+"px",n.heightForcer.style.borderBottom=r.bottom+"px solid transparent",r.right&&r.bottom?(n.scrollbarFiller.style.display="block",n.scrollbarFiller.style.height=r.bottom+"px",n.scrollbarFiller.style.width=r.right+"px"):n.scrollbarFiller.style.display="",r.bottom&&e.options.coverGutterNextToScrollbar&&e.options.fixedGutter?(n.gutterFiller.style.display="block",n.gutterFiller.style.height=r.bottom+"px",n.gutterFiller.style.width=t.gutterWidth+"px"):n.gutterFiller.style.display=""}var rl={native:qr,null:qn};function nl(e){e.display.scrollbars&&(e.display.scrollbars.clear(),e.display.scrollbars.addClass&&Q(e.display.wrapper,e.display.scrollbars.addClass)),e.display.scrollbars=new rl[e.options.scrollbarStyle](function(t){e.display.wrapper.insertBefore(t,e.display.scrollbarFiller),Ie(t,"mousedown",function(){e.state.focused&&setTimeout(function(){return e.display.input.focus()},0)}),t.setAttribute("cm-not-content","true")},function(t,n){n=="horizontal"?Dr(e,t):An(e,t)},e),e.display.scrollbars.addClass&&le(e.display.wrapper,e.display.scrollbars.addClass)}var mf=0;function Fr(e){e.curOp={cm:e,viewChanged:!1,startHeight:e.doc.height,forceUpdate:!1,updateInput:0,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++mf,markArrays:null},Kc(e.curOp)}function Ir(e){var t=e.curOp;t&&Zc(t,function(n){for(var r=0;r=n.viewTo)||n.maxLineChanged&&t.options.lineWrapping,e.update=e.mustUpdate&&new vi(t,e.mustUpdate&&{top:e.scrollTop,ensure:e.scrollToPos},e.forceUpdate)}function yf(e){e.updatedDisplay=e.mustUpdate&&Co(e.cm,e.update)}function xf(e){var t=e.cm,n=t.display;e.updatedDisplay&&hi(t),e.barMeasure=Dn(t),n.maxLineChanged&&!t.options.lineWrapping&&(e.adjustWidthTo=Oa(t,n.maxLine,n.maxLine.text.length).left+3,t.display.sizerWidth=e.adjustWidthTo,e.barMeasure.scrollWidth=Math.max(n.scroller.clientWidth,n.sizer.offsetLeft+e.adjustWidthTo+er(t)+t.display.barWidth),e.maxScrollLeft=Math.max(0,n.sizer.offsetLeft+e.adjustWidthTo-Er(t))),(e.updatedDisplay||e.selectionChanged)&&(e.preparedSelection=n.input.prepareSelection())}function _f(e){var t=e.cm;e.adjustWidthTo!=null&&(t.display.sizer.style.minWidth=e.adjustWidthTo+"px",e.maxScrollLeft=e.display.viewTo)){var n=+new Date+e.options.workTime,r=wn(e,t.highlightFrontier),i=[];t.iter(r.line,Math.min(t.first+t.size,e.display.viewTo+500),function(a){if(r.line>=e.display.viewFrom){var l=a.styles,u=a.text.length>e.options.maxHighlightLength?Vt(t.mode,r.state):null,f=fa(e,a,r,!0);u&&(r.state=u),a.styles=f.styles;var m=a.styleClasses,A=f.classes;A?a.styleClasses=A:m&&(a.styleClasses=null);for(var B=!l||l.length!=a.styles.length||m!=A&&(!m||!A||m.bgClass!=A.bgClass||m.textClass!=A.textClass),ee=0;!B&&een)return Fn(e,e.options.workDelay),!0}),t.highlightFrontier=r.line,t.modeFrontier=Math.max(t.modeFrontier,r.line),i.length&&Nt(e,function(){for(var a=0;a=n.viewFrom&&t.visible.to<=n.viewTo&&(n.updateLineNumbers==null||n.updateLineNumbers>=n.viewTo)&&n.renderedView==n.view&&Xa(e)==0)return!1;al(e)&&(br(e),t.dims=bo(e));var i=r.first+r.size,a=Math.max(t.visible.from-e.options.viewportMargin,r.first),l=Math.min(i,t.visible.to+e.options.viewportMargin);n.viewFroml&&n.viewTo-l<20&&(l=Math.min(i,n.viewTo)),or&&(a=ao(e.doc,a),l=Ta(e.doc,l));var u=a!=n.viewFrom||l!=n.viewTo||n.lastWrapHeight!=t.wrapperHeight||n.lastWrapWidth!=t.wrapperWidth;cf(e,a,l),n.viewOffset=ar(Ae(e.doc,n.viewFrom)),e.display.mover.style.top=n.viewOffset+"px";var f=Xa(e);if(!u&&f==0&&!t.force&&n.renderedView==n.view&&(n.updateLineNumbers==null||n.updateLineNumbers>=n.viewTo))return!1;var m=Tf(e);return f>4&&(n.lineDiv.style.display="none"),Cf(e,n.updateLineNumbers,t.dims),f>4&&(n.lineDiv.style.display=""),n.renderedView=n.view,Lf(m),j(n.cursorDiv),j(n.selectionDiv),n.gutters.style.height=n.sizer.style.minHeight=0,u&&(n.lastWrapHeight=t.wrapperHeight,n.lastWrapWidth=t.wrapperWidth,Fn(e,400)),n.updateLineNumbers=null,!0}function il(e,t){for(var n=t.viewport,r=!0;;r=!1){if(!r||!e.options.lineWrapping||t.oldDisplayWidth==Er(e)){if(n&&n.top!=null&&(n={top:Math.min(e.doc.height+co(e.display)-fo(e),n.top)}),t.visible=gi(e.display,e.doc,n),t.visible.from>=e.display.viewFrom&&t.visible.to<=e.display.viewTo)break}else r&&(t.visible=gi(e.display,e.doc,n));if(!Co(e,t))break;hi(e);var i=Dn(e);zn(e),rn(e,i),Mo(e,i),t.force=!1}t.signal(e,"update",e),(e.display.viewFrom!=e.display.reportedViewFrom||e.display.viewTo!=e.display.reportedViewTo)&&(t.signal(e,"viewportChange",e,e.display.viewFrom,e.display.viewTo),e.display.reportedViewFrom=e.display.viewFrom,e.display.reportedViewTo=e.display.viewTo)}function Eo(e,t){var n=new vi(e,t);if(Co(e,n)){hi(e),il(e,n);var r=Dn(e);zn(e),rn(e,r),Mo(e,r),n.finish()}}function Cf(e,t,n){var r=e.display,i=e.options.lineNumbers,a=r.lineDiv,l=a.firstChild;function u(ie){var ue=ie.nextSibling;return g&&O&&e.display.currentWheelTarget==ie?ie.style.display="none":ie.parentNode.removeChild(ie),ue}for(var f=r.view,m=r.viewFrom,A=0;A-1&&(Y=!1),Ma(e,B,m,n)),Y&&(j(B.lineNumber),B.lineNumber.appendChild(document.createTextNode(he(e.options,m)))),l=B.node.nextSibling}m+=B.size}for(;l;)l=u(l)}function zo(e){var t=e.gutters.offsetWidth;e.sizer.style.marginLeft=t+"px",ht(e,"gutterChanged",e)}function Mo(e,t){e.display.sizer.style.minHeight=t.docHeight+"px",e.display.heightForcer.style.top=t.docHeight+"px",e.display.gutters.style.height=t.docHeight+e.display.barHeight+er(e)+"px"}function ol(e){var t=e.display,n=t.view;if(!(!t.alignWidgets&&(!t.gutters.firstChild||!e.options.fixedGutter))){for(var r=yo(t)-t.scroller.scrollLeft+e.doc.scrollLeft,i=t.gutters.offsetWidth,a=r+"px",l=0;lu.clientWidth,m=u.scrollHeight>u.clientHeight;if(r&&f||i&&m){if(i&&O&&g){e:for(var A=t.target,B=l.view;A!=u;A=A.parentNode)for(var ee=0;ee=0&&ye(e,r.to())<=0)return n}return-1};var Ye=function(e,t){this.anchor=e,this.head=t};Ye.prototype.from=function(){return Zr(this.anchor,this.head)},Ye.prototype.to=function(){return Et(this.anchor,this.head)},Ye.prototype.empty=function(){return this.head.line==this.anchor.line&&this.head.ch==this.anchor.ch};function Yt(e,t,n){var r=e&&e.options.selectionsMayTouch,i=t[n];t.sort(function(ee,Y){return ye(ee.from(),Y.from())}),n=Se(t,i);for(var a=1;a0:f>=0){var m=Zr(u.from(),l.from()),A=Et(u.to(),l.to()),B=u.empty()?l.from()==l.head:u.from()==u.head;a<=n&&--n,t.splice(--a,2,new Ye(B?A:m,B?m:A))}}return new jt(t,n)}function yr(e,t){return new jt([new Ye(e,t||e)],0)}function xr(e){return e.text?ne(e.from.line+e.text.length-1,ce(e.text).length+(e.text.length==1?e.from.ch:0)):e.to}function cl(e,t){if(ye(e,t.from)<0)return e;if(ye(e,t.to)<=0)return xr(t);var n=e.line+t.text.length-(t.to.line-t.from.line)-1,r=e.ch;return e.line==t.to.line&&(r+=xr(t).ch-t.to.ch),ne(n,r)}function Do(e,t){for(var n=[],r=0;r1&&e.remove(u.line+1,ie-1),e.insert(u.line+1,ve)}ht(e,"change",e,t)}function _r(e,t,n){function r(i,a,l){if(i.linked)for(var u=0;u1&&!e.done[e.done.length-2].ranges)return e.done.pop(),ce(e.done)}function ml(e,t,n,r){var i=e.history;i.undone.length=0;var a=+new Date,l,u;if((i.lastOp==r||i.lastOrigin==t.origin&&t.origin&&(t.origin.charAt(0)=="+"&&i.lastModTime>a-(e.cm?e.cm.options.historyEventDelay:500)||t.origin.charAt(0)=="*"))&&(l=Df(i,i.lastOp==r)))u=ce(l.changes),ye(t.from,t.to)==0&&ye(t.from,u.to)==0?u.to=xr(t):l.changes.push(Io(e,t));else{var f=ce(i.done);for((!f||!f.ranges)&&xi(e.sel,i.done),l={changes:[Io(e,t)],generation:i.generation},i.done.push(l);i.done.length>i.undoDepth;)i.done.shift(),i.done[0].ranges||i.done.shift()}i.done.push(n),i.generation=++i.maxGeneration,i.lastModTime=i.lastSelTime=a,i.lastOp=i.lastSelOp=r,i.lastOrigin=i.lastSelOrigin=t.origin,u||it(e,"historyAdded")}function qf(e,t,n,r){var i=t.charAt(0);return i=="*"||i=="+"&&n.ranges.length==r.ranges.length&&n.somethingSelected()==r.somethingSelected()&&new Date-e.history.lastSelTime<=(e.cm?e.cm.options.historyEventDelay:500)}function Ff(e,t,n,r){var i=e.history,a=r&&r.origin;n==i.lastSelOp||a&&i.lastSelOrigin==a&&(i.lastModTime==i.lastSelTime&&i.lastOrigin==a||qf(e,a,ce(i.done),t))?i.done[i.done.length-1]=t:xi(t,i.done),i.lastSelTime=+new Date,i.lastSelOrigin=a,i.lastSelOp=n,r&&r.clearRedo!==!1&&gl(i.undone)}function xi(e,t){var n=ce(t);n&&n.ranges&&n.equals(e)||t.push(e)}function vl(e,t,n,r){var i=t["spans_"+e.id],a=0;e.iter(Math.max(e.first,n),Math.min(e.first+e.size,r),function(l){l.markedSpans&&((i||(i=t["spans_"+e.id]={}))[a]=l.markedSpans),++a})}function If(e){if(!e)return null;for(var t,n=0;n-1&&(ce(u)[B]=m[B],delete m[B])}}return r}function No(e,t,n,r){if(r){var i=e.anchor;if(n){var a=ye(t,i)<0;a!=ye(n,i)<0?(i=t,t=n):a!=ye(t,n)<0&&(t=n)}return new Ye(i,t)}else return new Ye(n||t,t)}function _i(e,t,n,r,i){i==null&&(i=e.cm&&(e.cm.display.shift||e.extend)),wt(e,new jt([No(e.sel.primary(),t,n,i)],0),r)}function yl(e,t,n){for(var r=[],i=e.cm&&(e.cm.display.shift||e.extend),a=0;a=t.ch:u.to>t.ch))){if(i&&(it(f,"beforeCursorEnter"),f.explicitlyCleared))if(a.markedSpans){--l;continue}else break;if(!f.atomic)continue;if(n){var B=f.find(r<0?1:-1),ee=void 0;if((r<0?A:m)&&(B=Tl(e,B,-r,B&&B.line==t.line?a:null)),B&&B.line==t.line&&(ee=ye(B,n))&&(r<0?ee<0:ee>0))return on(e,B,t,r,i)}var Y=f.find(r<0?-1:1);return(r<0?m:A)&&(Y=Tl(e,Y,r,Y.line==t.line?a:null)),Y?on(e,Y,t,r,i):null}}return t}function wi(e,t,n,r,i){var a=r||1,l=on(e,t,n,a,i)||!i&&on(e,t,n,a,!0)||on(e,t,n,-a,i)||!i&&on(e,t,n,-a,!0);return l||(e.cantEdit=!0,ne(e.first,0))}function Tl(e,t,n,r){return n<0&&t.ch==0?t.line>e.first?je(e,ne(t.line-1)):null:n>0&&t.ch==(r||Ae(e,t.line)).text.length?t.line=0;--i)El(e,{from:r[i].from,to:r[i].to,text:i?[""]:t.text,origin:t.origin});else El(e,t)}}function El(e,t){if(!(t.text.length==1&&t.text[0]==""&&ye(t.from,t.to)==0)){var n=Do(e,t);ml(e,t,n,e.cm?e.cm.curOp.id:NaN),On(e,t,n,io(e,t));var r=[];_r(e,function(i,a){!a&&Se(r,i.history)==-1&&(Dl(i.history,t),r.push(i.history)),On(i,t,null,io(i,t))})}}function Si(e,t,n){var r=e.cm&&e.cm.state.suppressEdits;if(!(r&&!n)){for(var i=e.history,a,l=e.sel,u=t=="undo"?i.done:i.undone,f=t=="undo"?i.undone:i.done,m=0;m=0;--Y){var ie=ee(Y);if(ie)return ie.v}}}}function zl(e,t){if(t!=0&&(e.first+=t,e.sel=new jt(He(e.sel.ranges,function(i){return new Ye(ne(i.anchor.line+t,i.anchor.ch),ne(i.head.line+t,i.head.ch))}),e.sel.primIndex),e.cm)){zt(e.cm,e.first,e.first-t,t);for(var n=e.cm.display,r=n.viewFrom;re.lastLine())){if(t.from.linea&&(t={from:t.from,to:ne(a,Ae(e,a).text.length),text:[t.text[0]],origin:t.origin}),t.removed=ir(e,t.from,t.to),n||(n=Do(e,t)),e.cm?Pf(e.cm,t,r):Fo(e,t,r),ki(e,n,ke),e.cantEdit&&wi(e,ne(e.firstLine(),0))&&(e.cantEdit=!1)}}function Pf(e,t,n){var r=e.doc,i=e.display,a=t.from,l=t.to,u=!1,f=a.line;e.options.lineWrapping||(f=x(Zt(Ae(r,a.line))),r.iter(f,l.line+1,function(Y){if(Y==i.maxLine)return u=!0,!0})),r.sel.contains(t.from,t.to)>-1&&Rt(e),Fo(r,t,n,Za(e)),e.options.lineWrapping||(r.iter(f,a.line+t.text.length,function(Y){var ie=li(Y);ie>i.maxLineLength&&(i.maxLine=Y,i.maxLineLength=ie,i.maxLineChanged=!0,u=!1)}),u&&(e.curOp.updateMaxLine=!0)),Lc(r,a.line),Fn(e,400);var m=t.text.length-(l.line-a.line)-1;t.full?zt(e):a.line==l.line&&t.text.length==1&&!dl(e.doc,t)?vr(e,a.line,"text"):zt(e,a.line,l.line+1,m);var A=It(e,"changes"),B=It(e,"change");if(B||A){var ee={from:a,to:l,text:t.text,removed:t.removed,origin:t.origin};B&&ht(e,"change",e,ee),A&&(e.curOp.changeObjs||(e.curOp.changeObjs=[])).push(ee)}e.display.selForContextMenu=null}function ln(e,t,n,r,i){var a;r||(r=n),ye(r,n)<0&&(a=[r,n],n=a[0],r=a[1]),typeof t=="string"&&(t=e.splitLines(t)),an(e,{from:n,to:r,text:t,origin:i})}function Ml(e,t,n,r){n1||!(this.children[0]instanceof Bn))){var u=[];this.collapse(u),this.children=[new Bn(u)],this.children[0].parent=this}},collapse:function(e){for(var t=0;t50){for(var l=i.lines.length%25+25,u=l;u10);e.parent.maybeSpill()}},iterN:function(e,t,n){for(var r=0;re.display.maxLineLength&&(e.display.maxLine=m,e.display.maxLineLength=A,e.display.maxLineChanged=!0)}r!=null&&e&&this.collapsed&&zt(e,r,i+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,e&&wl(e.doc)),e&&ht(e,"markerCleared",e,this,r,i),t&&Ir(e),this.parent&&this.parent.clear()}},kr.prototype.find=function(e,t){e==null&&this.type=="bookmark"&&(e=1);for(var n,r,i=0;i0||l==0&&a.clearWhenEmpty!==!1)return a;if(a.replacedWith&&(a.collapsed=!0,a.widgetNode=K("span",[a.replacedWith],"CodeMirror-widget"),r.handleMouseEvents||a.widgetNode.setAttribute("cm-ignore-events","true"),r.insertLeft&&(a.widgetNode.insertLeft=!0)),a.collapsed){if(Sa(e,t.line,t,n,a)||t.line!=n.line&&Sa(e,n.line,t,n,a))throw new Error("Inserting collapsed marker partially overlapping an existing one");Ec()}a.addToHistory&&ml(e,{from:t,to:n,origin:"markText"},e.sel,NaN);var u=t.line,f=e.cm,m;if(e.iter(u,n.line+1,function(B){f&&a.collapsed&&!f.options.lineWrapping&&Zt(B)==f.display.maxLine&&(m=!0),a.collapsed&&u!=t.line&&Bt(B,0),Mc(B,new ni(a,u==t.line?t.ch:null,u==n.line?n.ch:null),e.cm&&e.cm.curOp),++u}),a.collapsed&&e.iter(t.line,n.line+1,function(B){mr(e,B)&&Bt(B,0)}),a.clearOnEnter&&Ie(a,"beforeCursorEnter",function(){return a.clear()}),a.readOnly&&(Cc(),(e.history.done.length||e.history.undone.length)&&e.clearHistory()),a.collapsed&&(a.id=++Fl,a.atomic=!0),f){if(m&&(f.curOp.updateMaxLine=!0),a.collapsed)zt(f,t.line,n.line+1);else if(a.className||a.startStyle||a.endStyle||a.css||a.attributes||a.title)for(var A=t.line;A<=n.line;A++)vr(f,A,"text");a.atomic&&wl(f.doc),ht(f,"markerAdded",f,a)}return a}var Hn=function(e,t){this.markers=e,this.primary=t;for(var n=0;n=0;f--)an(this,r[f]);u?_l(this,u):this.cm&&tn(this.cm)}),undo:mt(function(){Si(this,"undo")}),redo:mt(function(){Si(this,"redo")}),undoSelection:mt(function(){Si(this,"undo",!0)}),redoSelection:mt(function(){Si(this,"redo",!0)}),setExtending:function(e){this.extend=e},getExtending:function(){return this.extend},historySize:function(){for(var e=this.history,t=0,n=0,r=0;r=e.ch)&&t.push(i.marker.parent||i.marker)}return t},findMarks:function(e,t,n){e=je(this,e),t=je(this,t);var r=[],i=e.line;return this.iter(e.line,t.line+1,function(a){var l=a.markedSpans;if(l)for(var u=0;u=f.to||f.from==null&&i!=e.line||f.from!=null&&i==t.line&&f.from>=t.ch)&&(!n||n(f.marker))&&r.push(f.marker.parent||f.marker)}++i}),r},getAllMarks:function(){var e=[];return this.iter(function(t){var n=t.markedSpans;if(n)for(var r=0;re)return t=e,!0;e-=a,++n}),je(this,ne(n,t))},indexFromPos:function(e){e=je(this,e);var t=e.ch;if(e.linet&&(t=e.from),e.to!=null&&e.to-1){t.state.draggingText(e),setTimeout(function(){return t.display.input.focus()},20);return}try{var A=e.dataTransfer.getData("Text");if(A){var B;if(t.state.draggingText&&!t.state.draggingText.copy&&(B=t.listSelections()),ki(t.doc,yr(n,n)),B)for(var ee=0;ee=0;u--)ln(e.doc,"",r[u].from,r[u].to,"+delete");tn(e)})}function Po(e,t,n){var r=se(e.text,t+n,n);return r<0||r>e.text.length?null:r}function Bo(e,t,n){var r=Po(e,t.ch,n);return r==null?null:new ne(t.line,r,n<0?"after":"before")}function jo(e,t,n,r,i){if(e){t.doc.direction=="rtl"&&(i=-i);var a=Pe(n,t.doc.direction);if(a){var l=i<0?ce(a):a[0],u=i<0==(l.level==1),f=u?"after":"before",m;if(l.level>0||t.doc.direction=="rtl"){var A=Qr(t,n);m=i<0?n.text.length-1:0;var B=tr(t,A,m).top;m=De(function(ee){return tr(t,A,ee).top==B},i<0==(l.level==1)?l.from:l.to-1,m),f=="before"&&(m=Po(n,m,1))}else m=i<0?l.to:l.from;return new ne(r,m,f)}}return new ne(r,i<0?n.text.length:0,i<0?"before":"after")}function Vf(e,t,n,r){var i=Pe(t,e.doc.direction);if(!i)return Bo(t,n,r);n.ch>=t.text.length?(n.ch=t.text.length,n.sticky="before"):n.ch<=0&&(n.ch=0,n.sticky="after");var a=Pt(i,n.ch,n.sticky),l=i[a];if(e.doc.direction=="ltr"&&l.level%2==0&&(r>0?l.to>n.ch:l.from=l.from&&ee>=A.begin)){var Y=B?"before":"after";return new ne(n.line,ee,Y)}}var ie=function(ve,_e,be){for(var Ce=function(Ve,vt){return vt?new ne(n.line,u(Ve,1),"before"):new ne(n.line,Ve,"after")};ve>=0&&ve0==(Ne.level!=1),$e=Fe?be.begin:u(be.end,-1);if(Ne.from<=$e&&$e0?A.end:u(A.begin,-1);return me!=null&&!(r>0&&me==t.text.length)&&(ue=ie(r>0?0:i.length-1,r,m(me)),ue)?ue:null}var $n={selectAll:Ll,singleSelection:function(e){return e.setSelection(e.getCursor("anchor"),e.getCursor("head"),ke)},killLine:function(e){return cn(e,function(t){if(t.empty()){var n=Ae(e.doc,t.head.line).text.length;return t.head.ch==n&&t.head.line0)i=new ne(i.line,i.ch+1),e.replaceRange(a.charAt(i.ch-1)+a.charAt(i.ch-2),ne(i.line,i.ch-2),i,"+transpose");else if(i.line>e.doc.first){var l=Ae(e.doc,i.line-1).text;l&&(i=new ne(i.line,1),e.replaceRange(a.charAt(0)+e.doc.lineSeparator()+l.charAt(l.length-1),ne(i.line-1,l.length-1),i,"+transpose"))}}n.push(new Ye(i,i))}e.setSelections(n)})},newlineAndIndent:function(e){return Nt(e,function(){for(var t=e.listSelections(),n=t.length-1;n>=0;n--)e.replaceRange(e.doc.lineSeparator(),t[n].anchor,t[n].head,"+input");t=e.listSelections();for(var r=0;re&&ye(t,this.pos)==0&&n==this.button};var Gn,Zn;function od(e,t){var n=+new Date;return Zn&&Zn.compare(n,e,t)?(Gn=Zn=null,"triple"):Gn&&Gn.compare(n,e,t)?(Zn=new Ho(n,e,t),Gn=null,"double"):(Gn=new Ho(n,e,t),Zn=null,"single")}function Yl(e){var t=this,n=t.display;if(!(ot(t,e)||n.activeTouch&&n.input.supportsTouch())){if(n.input.ensurePolled(),n.shift=e.shiftKey,lr(n,e)){g||(n.scroller.draggable=!1,setTimeout(function(){return n.scroller.draggable=!0},100));return}if(!Wo(t,e)){var r=Mr(t,e),i=Ut(e),a=r?od(r,i):"single";pe(t).focus(),i==1&&t.state.selectingText&&t.state.selectingText(e),!(r&&ad(t,i,r,a,e))&&(i==1?r?sd(t,r,a,e):yn(e)==n.scroller&&kt(e):i==2?(r&&_i(t.doc,r),setTimeout(function(){return n.input.focus()},20)):i==3&&(I?t.display.input.onContextMenu(e):wo(t)))}}}function ad(e,t,n,r,i){var a="Click";return r=="double"?a="Double"+a:r=="triple"&&(a="Triple"+a),a=(t==1?"Left":t==2?"Middle":"Right")+a,Kn(e,Rl(a,i),i,function(l){if(typeof l=="string"&&(l=$n[l]),!l)return!1;var u=!1;try{e.isReadOnly()&&(e.state.suppressEdits=!0),u=l(e,n)!=Ze}finally{e.state.suppressEdits=!1}return u})}function ld(e,t,n){var r=e.getOption("configureMouse"),i=r?r(e,t,n):{};if(i.unit==null){var a=G?n.shiftKey&&n.metaKey:n.altKey;i.unit=a?"rectangle":t=="single"?"char":t=="double"?"word":"line"}return(i.extend==null||e.doc.extend)&&(i.extend=e.doc.extend||n.shiftKey),i.addNew==null&&(i.addNew=O?n.metaKey:n.ctrlKey),i.moveOnDrag==null&&(i.moveOnDrag=!(O?n.altKey:n.ctrlKey)),i}function sd(e,t,n,r){s?setTimeout(Ee(Qa,e),0):e.curOp.focus=R(de(e));var i=ld(e,n,r),a=e.doc.sel,l;e.options.dragDrop&&eo&&!e.isReadOnly()&&n=="single"&&(l=a.contains(t))>-1&&(ye((l=a.ranges[l]).from(),t)<0||t.xRel>0)&&(ye(l.to(),t)>0||t.xRel<0)?ud(e,r,t,i):cd(e,r,t,i)}function ud(e,t,n,r){var i=e.display,a=!1,l=gt(e,function(m){g&&(i.scroller.draggable=!1),e.state.draggingText=!1,e.state.delayingBlurEvent&&(e.hasFocus()?e.state.delayingBlurEvent=!1:wo(e)),_t(i.wrapper.ownerDocument,"mouseup",l),_t(i.wrapper.ownerDocument,"mousemove",u),_t(i.scroller,"dragstart",f),_t(i.scroller,"drop",l),a||(kt(m),r.addNew||_i(e.doc,n,null,null,r.extend),g&&!k||s&&h==9?setTimeout(function(){i.wrapper.ownerDocument.body.focus({preventScroll:!0}),i.input.focus()},20):i.input.focus())}),u=function(m){a=a||Math.abs(t.clientX-m.clientX)+Math.abs(t.clientY-m.clientY)>=10},f=function(){return a=!0};g&&(i.scroller.draggable=!0),e.state.draggingText=l,l.copy=!r.moveOnDrag,Ie(i.wrapper.ownerDocument,"mouseup",l),Ie(i.wrapper.ownerDocument,"mousemove",u),Ie(i.scroller,"dragstart",f),Ie(i.scroller,"drop",l),e.state.delayingBlurEvent=!0,setTimeout(function(){return i.input.focus()},20),i.scroller.dragDrop&&i.scroller.dragDrop()}function Ql(e,t,n){if(n=="char")return new Ye(t,t);if(n=="word")return e.findWordAt(t);if(n=="line")return new Ye(ne(t.line,0),je(e.doc,ne(t.line+1,0)));var r=n(e,t);return new Ye(r.from,r.to)}function cd(e,t,n,r){s&&wo(e);var i=e.display,a=e.doc;kt(t);var l,u,f=a.sel,m=f.ranges;if(r.addNew&&!r.extend?(u=a.sel.contains(n),u>-1?l=m[u]:l=new Ye(n,n)):(l=a.sel.primary(),u=a.sel.primIndex),r.unit=="rectangle")r.addNew||(l=new Ye(n,n)),n=Mr(e,t,!0,!0),u=-1;else{var A=Ql(e,n,r.unit);r.extend?l=No(l,A.anchor,A.head,r.extend):l=A}r.addNew?u==-1?(u=m.length,wt(a,Yt(e,m.concat([l]),u),{scroll:!1,origin:"*mouse"})):m.length>1&&m[u].empty()&&r.unit=="char"&&!r.extend?(wt(a,Yt(e,m.slice(0,u).concat(m.slice(u+1)),0),{scroll:!1,origin:"*mouse"}),f=a.sel):Oo(a,u,l,Je):(u=0,wt(a,new jt([l],0),Je),f=a.sel);var B=n;function ee(be){if(ye(B,be)!=0)if(B=be,r.unit=="rectangle"){for(var Ce=[],Ne=e.options.tabSize,Fe=Oe(Ae(a,n.line).text,n.ch,Ne),$e=Oe(Ae(a,be.line).text,be.ch,Ne),Ve=Math.min(Fe,$e),vt=Math.max(Fe,$e),rt=Math.min(n.line,be.line),Ot=Math.min(e.lastLine(),Math.max(n.line,be.line));rt<=Ot;rt++){var At=Ae(a,rt).text,ut=Ge(At,Ve,Ne);Ve==vt?Ce.push(new Ye(ne(rt,ut),ne(rt,ut))):At.length>ut&&Ce.push(new Ye(ne(rt,ut),ne(rt,Ge(At,vt,Ne))))}Ce.length||Ce.push(new Ye(n,n)),wt(a,Yt(e,f.ranges.slice(0,u).concat(Ce),u),{origin:"*mouse",scroll:!1}),e.scrollIntoView(be)}else{var Dt=l,yt=Ql(e,be,r.unit),ft=Dt.anchor,ct;ye(yt.anchor,ft)>0?(ct=yt.head,ft=Zr(Dt.from(),yt.anchor)):(ct=yt.anchor,ft=Et(Dt.to(),yt.head));var lt=f.ranges.slice(0);lt[u]=fd(e,new Ye(je(a,ft),ct)),wt(a,Yt(e,lt,u),Je)}}var Y=i.wrapper.getBoundingClientRect(),ie=0;function ue(be){var Ce=++ie,Ne=Mr(e,be,!0,r.unit=="rectangle");if(Ne)if(ye(Ne,B)!=0){e.curOp.focus=R(de(e)),ee(Ne);var Fe=gi(i,a);(Ne.line>=Fe.to||Ne.lineY.bottom?20:0;$e&&setTimeout(gt(e,function(){ie==Ce&&(i.scroller.scrollTop+=$e,ue(be))}),50)}}function me(be){e.state.selectingText=!1,ie=1/0,be&&(kt(be),i.input.focus()),_t(i.wrapper.ownerDocument,"mousemove",ve),_t(i.wrapper.ownerDocument,"mouseup",_e),a.history.lastSelOrigin=null}var ve=gt(e,function(be){be.buttons===0||!Ut(be)?me(be):ue(be)}),_e=gt(e,me);e.state.selectingText=_e,Ie(i.wrapper.ownerDocument,"mousemove",ve),Ie(i.wrapper.ownerDocument,"mouseup",_e)}function fd(e,t){var n=t.anchor,r=t.head,i=Ae(e.doc,n.line);if(ye(n,r)==0&&n.sticky==r.sticky)return t;var a=Pe(i);if(!a)return t;var l=Pt(a,n.ch,n.sticky),u=a[l];if(u.from!=n.ch&&u.to!=n.ch)return t;var f=l+(u.from==n.ch==(u.level!=1)?0:1);if(f==0||f==a.length)return t;var m;if(r.line!=n.line)m=(r.line-n.line)*(e.doc.direction=="ltr"?1:-1)>0;else{var A=Pt(a,r.ch,r.sticky),B=A-l||(r.ch-n.ch)*(u.level==1?-1:1);A==f-1||A==f?m=B<0:m=B>0}var ee=a[f+(m?-1:0)],Y=m==(ee.level==1),ie=Y?ee.from:ee.to,ue=Y?"after":"before";return n.ch==ie&&n.sticky==ue?t:new Ye(new ne(n.line,ie,ue),r)}function Vl(e,t,n,r){var i,a;if(t.touches)i=t.touches[0].clientX,a=t.touches[0].clientY;else try{i=t.clientX,a=t.clientY}catch{return!1}if(i>=Math.floor(e.display.gutters.getBoundingClientRect().right))return!1;r&&kt(t);var l=e.display,u=l.lineDiv.getBoundingClientRect();if(a>u.bottom||!It(e,n))return Ct(t);a-=u.top-l.viewOffset;for(var f=0;f=i){var A=P(e.doc,a),B=e.display.gutterSpecs[f];return it(e,n,e,A,B.className,t),Ct(t)}}}function Wo(e,t){return Vl(e,t,"gutterClick",!0)}function Jl(e,t){lr(e.display,t)||dd(e,t)||ot(e,t,"contextmenu")||I||e.display.input.onContextMenu(t)}function dd(e,t){return It(e,"gutterContextMenu")?Vl(e,t,"gutterContextMenu",!1):!1}function es(e){e.display.wrapper.className=e.display.wrapper.className.replace(/\s*cm-s-\S+/g,"")+e.options.theme.replace(/(^|\s)\s*/g," cm-s-"),En(e)}var fn={toString:function(){return"CodeMirror.Init"}},ts={},Ei={};function pd(e){var t=e.optionHandlers;function n(r,i,a,l){e.defaults[r]=i,a&&(t[r]=l?function(u,f,m){m!=fn&&a(u,f,m)}:a)}e.defineOption=n,e.Init=fn,n("value","",function(r,i){return r.setValue(i)},!0),n("mode",null,function(r,i){r.doc.modeOption=i,qo(r)},!0),n("indentUnit",2,qo,!0),n("indentWithTabs",!1),n("smartIndent",!0),n("tabSize",4,function(r){Nn(r),En(r),zt(r)},!0),n("lineSeparator",null,function(r,i){if(r.doc.lineSep=i,!!i){var a=[],l=r.doc.first;r.doc.iter(function(f){for(var m=0;;){var A=f.text.indexOf(i,m);if(A==-1)break;m=A+i.length,a.push(ne(l,A))}l++});for(var u=a.length-1;u>=0;u--)ln(r.doc,i,a[u],ne(a[u].line,a[u].ch+i.length))}}),n("specialChars",/[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b\u200e\u200f\u2028\u2029\u202d\u202e\u2066\u2067\u2069\ufeff\ufff9-\ufffc]/g,function(r,i,a){r.state.specialChars=new RegExp(i.source+(i.test(" ")?"":"| "),"g"),a!=fn&&r.refresh()}),n("specialCharPlaceholder",Rc,function(r){return r.refresh()},!0),n("electricChars",!0),n("inputStyle",E?"contenteditable":"textarea",function(){throw new Error("inputStyle can not (yet) be changed in a running editor")},!0),n("spellcheck",!1,function(r,i){return r.getInputField().spellcheck=i},!0),n("autocorrect",!1,function(r,i){return r.getInputField().autocorrect=i},!0),n("autocapitalize",!1,function(r,i){return r.getInputField().autocapitalize=i},!0),n("rtlMoveVisually",!J),n("wholeLineUpdateBefore",!0),n("theme","default",function(r){es(r),In(r)},!0),n("keyMap","default",function(r,i,a){var l=Li(i),u=a!=fn&&Li(a);u&&u.detach&&u.detach(r,l),l.attach&&l.attach(r,u||null)}),n("extraKeys",null),n("configureMouse",null),n("lineWrapping",!1,gd,!0),n("gutters",[],function(r,i){r.display.gutterSpecs=Ao(i,r.options.lineNumbers),In(r)},!0),n("fixedGutter",!0,function(r,i){r.display.gutters.style.left=i?yo(r.display)+"px":"0",r.refresh()},!0),n("coverGutterNextToScrollbar",!1,function(r){return rn(r)},!0),n("scrollbarStyle","native",function(r){nl(r),rn(r),r.display.scrollbars.setScrollTop(r.doc.scrollTop),r.display.scrollbars.setScrollLeft(r.doc.scrollLeft)},!0),n("lineNumbers",!1,function(r,i){r.display.gutterSpecs=Ao(r.options.gutters,i),In(r)},!0),n("firstLineNumber",1,In,!0),n("lineNumberFormatter",function(r){return r},In,!0),n("showCursorWhenSelecting",!1,zn,!0),n("resetSelectionOnContextMenu",!0),n("lineWiseCopyCut",!0),n("pasteLinesPerSelection",!0),n("selectionsMayTouch",!1),n("readOnly",!1,function(r,i){i=="nocursor"&&(en(r),r.display.input.blur()),r.display.input.readOnlyChanged(i)}),n("screenReaderLabel",null,function(r,i){i=i===""?null:i,r.display.input.screenReaderLabelChanged(i)}),n("disableInput",!1,function(r,i){i||r.display.input.reset()},!0),n("dragDrop",!0,hd),n("allowDropFileTypes",null),n("cursorBlinkRate",530),n("cursorScrollMargin",0),n("cursorHeight",1,zn,!0),n("singleCursorHeightPerLine",!0,zn,!0),n("workTime",100),n("workDelay",100),n("flattenSpans",!0,Nn,!0),n("addModeClass",!1,Nn,!0),n("pollInterval",100),n("undoDepth",200,function(r,i){return r.doc.history.undoDepth=i}),n("historyEventDelay",1250),n("viewportMargin",10,function(r){return r.refresh()},!0),n("maxHighlightLength",1e4,Nn,!0),n("moveInputWithCursor",!0,function(r,i){i||r.display.input.resetPosition()}),n("tabindex",null,function(r,i){return r.display.input.getField().tabIndex=i||""}),n("autofocus",null),n("direction","ltr",function(r,i){return r.doc.setDirection(i)},!0),n("phrases",null)}function hd(e,t,n){var r=n&&n!=fn;if(!t!=!r){var i=e.display.dragFunctions,a=t?Ie:_t;a(e.display.scroller,"dragstart",i.start),a(e.display.scroller,"dragenter",i.enter),a(e.display.scroller,"dragover",i.over),a(e.display.scroller,"dragleave",i.leave),a(e.display.scroller,"drop",i.drop)}}function gd(e){e.options.lineWrapping?(le(e.display.wrapper,"CodeMirror-wrap"),e.display.sizer.style.minWidth="",e.display.sizerWidth=null):(Q(e.display.wrapper,"CodeMirror-wrap"),so(e)),xo(e),zt(e),En(e),setTimeout(function(){return rn(e)},100)}function tt(e,t){var n=this;if(!(this instanceof tt))return new tt(e,t);this.options=t=t?ge(t):{},ge(ts,t,!1);var r=t.value;typeof r=="string"?r=new Mt(r,t.mode,null,t.lineSeparator,t.direction):t.mode&&(r.modeOption=t.mode),this.doc=r;var i=new tt.inputStyles[t.inputStyle](this),a=this.display=new Ef(e,r,i,t);a.wrapper.CodeMirror=this,es(this),t.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),nl(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:-1,cutIncoming:-1,selectingText:!1,draggingText:!1,highlight:new qe,keySeq:null,specialChars:null},t.autofocus&&!E&&a.input.focus(),s&&h<11&&setTimeout(function(){return n.display.input.reset(!0)},20),md(this),Gf(),Fr(this),this.curOp.forceUpdate=!0,pl(this,r),t.autofocus&&!E||this.hasFocus()?setTimeout(function(){n.hasFocus()&&!n.state.focused&&So(n)},20):en(this);for(var l in Ei)Ei.hasOwnProperty(l)&&Ei[l](this,t[l],fn);al(this),t.finishInit&&t.finishInit(this);for(var u=0;u400}Ie(t.scroller,"touchstart",function(f){if(!ot(e,f)&&!a(f)&&!Wo(e,f)){t.input.ensurePolled(),clearTimeout(n);var m=+new Date;t.activeTouch={start:m,moved:!1,prev:m-r.end<=300?r:null},f.touches.length==1&&(t.activeTouch.left=f.touches[0].pageX,t.activeTouch.top=f.touches[0].pageY)}}),Ie(t.scroller,"touchmove",function(){t.activeTouch&&(t.activeTouch.moved=!0)}),Ie(t.scroller,"touchend",function(f){var m=t.activeTouch;if(m&&!lr(t,f)&&m.left!=null&&!m.moved&&new Date-m.start<300){var A=e.coordsChar(t.activeTouch,"page"),B;!m.prev||l(m,m.prev)?B=new Ye(A,A):!m.prev.prev||l(m,m.prev.prev)?B=e.findWordAt(A):B=new Ye(ne(A.line,0),je(e.doc,ne(A.line+1,0))),e.setSelection(B.anchor,B.head),e.focus(),kt(f)}i()}),Ie(t.scroller,"touchcancel",i),Ie(t.scroller,"scroll",function(){t.scroller.clientHeight&&(An(e,t.scroller.scrollTop),Dr(e,t.scroller.scrollLeft,!0),it(e,"scroll",e))}),Ie(t.scroller,"mousewheel",function(f){return ul(e,f)}),Ie(t.scroller,"DOMMouseScroll",function(f){return ul(e,f)}),Ie(t.wrapper,"scroll",function(){return t.wrapper.scrollTop=t.wrapper.scrollLeft=0}),t.dragFunctions={enter:function(f){ot(e,f)||dr(f)},over:function(f){ot(e,f)||(Kf(e,f),dr(f))},start:function(f){return $f(e,f)},drop:gt(e,Uf),leave:function(f){ot(e,f)||Ol(e)}};var u=t.input.getField();Ie(u,"keyup",function(f){return Zl.call(e,f)}),Ie(u,"keydown",gt(e,Gl)),Ie(u,"keypress",gt(e,Xl)),Ie(u,"focus",function(f){return So(e,f)}),Ie(u,"blur",function(f){return en(e,f)})}var Uo=[];tt.defineInitHook=function(e){return Uo.push(e)};function Xn(e,t,n,r){var i=e.doc,a;n==null&&(n="add"),n=="smart"&&(i.mode.indent?a=wn(e,t).state:n="prev");var l=e.options.tabSize,u=Ae(i,t),f=Oe(u.text,null,l);u.stateAfter&&(u.stateAfter=null);var m=u.text.match(/^\s*/)[0],A;if(!r&&!/\S/.test(u.text))A=0,n="not";else if(n=="smart"&&(A=i.mode.indent(a,u.text.slice(m.length),u.text),A==Ze||A>150)){if(!r)return;n="prev"}n=="prev"?t>i.first?A=Oe(Ae(i,t-1).text,null,l):A=0:n=="add"?A=f+e.options.indentUnit:n=="subtract"?A=f-e.options.indentUnit:typeof n=="number"&&(A=f+n),A=Math.max(0,A);var B="",ee=0;if(e.options.indentWithTabs)for(var Y=Math.floor(A/l);Y;--Y)ee+=l,B+=" ";if(eel,f=Ht(t),m=null;if(u&&r.ranges.length>1)if(Qt&&Qt.text.join(` +`)==t){if(r.ranges.length%Qt.text.length==0){m=[];for(var A=0;A=0;ee--){var Y=r.ranges[ee],ie=Y.from(),ue=Y.to();Y.empty()&&(n&&n>0?ie=ne(ie.line,ie.ch-n):e.state.overwrite&&!u?ue=ne(ue.line,Math.min(Ae(a,ue.line).text.length,ue.ch+ce(f).length)):u&&Qt&&Qt.lineWise&&Qt.text.join(` +`)==f.join(` +`)&&(ie=ue=ne(ie.line,0)));var me={from:ie,to:ue,text:m?m[ee%m.length]:f,origin:i||(u?"paste":e.state.cutIncoming>l?"cut":"+input")};an(e.doc,me),ht(e,"inputRead",e,me)}t&&!u&&ns(e,t),tn(e),e.curOp.updateInput<2&&(e.curOp.updateInput=B),e.curOp.typing=!0,e.state.pasteIncoming=e.state.cutIncoming=-1}function rs(e,t){var n=e.clipboardData&&e.clipboardData.getData("Text");if(n)return e.preventDefault(),!t.isReadOnly()&&!t.options.disableInput&&t.hasFocus()&&Nt(t,function(){return $o(t,n,0,null,"paste")}),!0}function ns(e,t){if(!(!e.options.electricChars||!e.options.smartIndent))for(var n=e.doc.sel,r=n.ranges.length-1;r>=0;r--){var i=n.ranges[r];if(!(i.head.ch>100||r&&n.ranges[r-1].head.line==i.head.line)){var a=e.getModeAt(i.head),l=!1;if(a.electricChars){for(var u=0;u-1){l=Xn(e,i.head.line,"smart");break}}else a.electricInput&&a.electricInput.test(Ae(e.doc,i.head.line).text.slice(0,i.head.ch))&&(l=Xn(e,i.head.line,"smart"));l&&ht(e,"electricInput",e,i.head.line)}}}function is(e){for(var t=[],n=[],r=0;ra&&(Xn(this,u.head.line,r,!0),a=u.head.line,l==this.doc.sel.primIndex&&tn(this));else{var f=u.from(),m=u.to(),A=Math.max(a,f.line);a=Math.min(this.lastLine(),m.line-(m.ch?0:1))+1;for(var B=A;B0&&Oo(this.doc,l,new Ye(f,ee[l].to()),ke)}}}),getTokenAt:function(r,i){return ga(this,r,i)},getLineTokens:function(r,i){return ga(this,ne(r),i,!0)},getTokenTypeAt:function(r){r=je(this.doc,r);var i=da(this,Ae(this.doc,r.line)),a=0,l=(i.length-1)/2,u=r.ch,f;if(u==0)f=i[2];else for(;;){var m=a+l>>1;if((m?i[m*2-1]:0)>=u)l=m;else if(i[m*2+1]f&&(r=f,l=!0),u=Ae(this.doc,r)}else u=r;return ci(this,u,{top:0,left:0},i||"page",a||l).top+(l?this.doc.height-ar(u):0)},defaultTextHeight:function(){return Vr(this.display)},defaultCharWidth:function(){return Jr(this.display)},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(r,i,a,l,u){var f=this.display;r=Xt(this,je(this.doc,r));var m=r.bottom,A=r.left;if(i.style.position="absolute",i.setAttribute("cm-ignore-events","true"),this.display.input.setUneditable(i),f.sizer.appendChild(i),l=="over")m=r.top;else if(l=="above"||l=="near"){var B=Math.max(f.wrapper.clientHeight,this.doc.height),ee=Math.max(f.sizer.clientWidth,f.lineSpace.clientWidth);(l=="above"||r.bottom+i.offsetHeight>B)&&r.top>i.offsetHeight?m=r.top-i.offsetHeight:r.bottom+i.offsetHeight<=B&&(m=r.bottom),A+i.offsetWidth>ee&&(A=ee-i.offsetWidth)}i.style.top=m+"px",i.style.left=i.style.right="",u=="right"?(A=f.sizer.clientWidth-i.offsetWidth,i.style.right="0px"):(u=="left"?A=0:u=="middle"&&(A=(f.sizer.clientWidth-i.offsetWidth)/2),i.style.left=A+"px"),a&&hf(this,{left:A,top:m,right:A+i.offsetWidth,bottom:m+i.offsetHeight})},triggerOnKeyDown:Tt(Gl),triggerOnKeyPress:Tt(Xl),triggerOnKeyUp:Zl,triggerOnMouseDown:Tt(Yl),execCommand:function(r){if($n.hasOwnProperty(r))return $n[r].call(null,this)},triggerElectric:Tt(function(r){ns(this,r)}),findPosH:function(r,i,a,l){var u=1;i<0&&(u=-1,i=-i);for(var f=je(this.doc,r),m=0;m0&&A(a.charAt(l-1));)--l;for(;u.5||this.options.lineWrapping)&&xo(this),it(this,"refresh",this)}),swapDoc:Tt(function(r){var i=this.doc;return i.cm=null,this.state.selectingText&&this.state.selectingText(),pl(this,r),En(this),this.display.input.reset(),Mn(this,r.scrollLeft,r.scrollTop),this.curOp.forceScroll=!0,ht(this,"swapDoc",this,i),i}),phrase:function(r){var i=this.options.phrases;return i&&Object.prototype.hasOwnProperty.call(i,r)?i[r]:r},getInputField:function(){return this.display.input.getField()},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},Wt(e),e.registerHelper=function(r,i,a){n.hasOwnProperty(r)||(n[r]=e[r]={_global:[]}),n[r][i]=a},e.registerGlobalHelper=function(r,i,a,l){e.registerHelper(r,i,l),n[r]._global.push({pred:a,val:l})}}function Go(e,t,n,r,i){var a=t,l=n,u=Ae(e,t.line),f=i&&e.direction=="rtl"?-n:n;function m(){var _e=t.line+f;return _e=e.first+e.size?!1:(t=new ne(_e,t.ch,t.sticky),u=Ae(e,_e))}function A(_e){var be;if(r=="codepoint"){var Ce=u.text.charCodeAt(t.ch+(n>0?0:-1));if(isNaN(Ce))be=null;else{var Ne=n>0?Ce>=55296&&Ce<56320:Ce>=56320&&Ce<57343;be=new ne(t.line,Math.max(0,Math.min(u.text.length,t.ch+n*(Ne?2:1))),-n)}}else i?be=Vf(e.cm,u,t,n):be=Bo(u,t,n);if(be==null)if(!_e&&m())t=jo(i,e.cm,u,t.line,f);else return!1;else t=be;return!0}if(r=="char"||r=="codepoint")A();else if(r=="column")A(!0);else if(r=="word"||r=="group")for(var B=null,ee=r=="group",Y=e.cm&&e.cm.getHelper(t,"wordChars"),ie=!0;!(n<0&&!A(!ie));ie=!1){var ue=u.text.charAt(t.ch)||` +`,me=Me(ue,Y)?"w":ee&&ue==` +`?"n":!ee||/\s/.test(ue)?null:"p";if(ee&&!ie&&!me&&(me="s"),B&&B!=me){n<0&&(n=1,A(),t.sticky="after");break}if(me&&(B=me),n>0&&!A(!ie))break}var ve=wi(e,t,a,l,!0);return Xe(a,ve)&&(ve.hitSide=!0),ve}function as(e,t,n,r){var i=e.doc,a=t.left,l;if(r=="page"){var u=Math.min(e.display.wrapper.clientHeight,pe(e).innerHeight||i(e).documentElement.clientHeight),f=Math.max(u-.5*Vr(e.display),3);l=(n>0?t.bottom:t.top)+n*f}else r=="line"&&(l=n>0?t.bottom+3:t.top-3);for(var m;m=mo(e,a,l),!!m.outside;){if(n<0?l<=0:l>=i.height){m.hitSide=!0;break}l+=n*5}return m}var Qe=function(e){this.cm=e,this.lastAnchorNode=this.lastAnchorOffset=this.lastFocusNode=this.lastFocusOffset=null,this.polling=new qe,this.composing=null,this.gracePeriod=!1,this.readDOMTimeout=null};Qe.prototype.init=function(e){var t=this,n=this,r=n.cm,i=n.div=e.lineDiv;i.contentEditable=!0,Ko(i,r.options.spellcheck,r.options.autocorrect,r.options.autocapitalize);function a(u){for(var f=u.target;f;f=f.parentNode){if(f==i)return!0;if(/\bCodeMirror-(?:line)?widget\b/.test(f.className))break}return!1}Ie(i,"paste",function(u){!a(u)||ot(r,u)||rs(u,r)||h<=11&&setTimeout(gt(r,function(){return t.updateFromDOM()}),20)}),Ie(i,"compositionstart",function(u){t.composing={data:u.data,done:!1}}),Ie(i,"compositionupdate",function(u){t.composing||(t.composing={data:u.data,done:!1})}),Ie(i,"compositionend",function(u){t.composing&&(u.data!=t.composing.data&&t.readFromDOMSoon(),t.composing.done=!0)}),Ie(i,"touchstart",function(){return n.forceCompositionEnd()}),Ie(i,"input",function(){t.composing||t.readFromDOMSoon()});function l(u){if(!(!a(u)||ot(r,u))){if(r.somethingSelected())zi({lineWise:!1,text:r.getSelections()}),u.type=="cut"&&r.replaceSelection("",null,"cut");else if(r.options.lineWiseCopyCut){var f=is(r);zi({lineWise:!0,text:f.text}),u.type=="cut"&&r.operation(function(){r.setSelections(f.ranges,0,ke),r.replaceSelection("",null,"cut")})}else return;if(u.clipboardData){u.clipboardData.clearData();var m=Qt.text.join(` +`);if(u.clipboardData.setData("Text",m),u.clipboardData.getData("Text")==m){u.preventDefault();return}}var A=os(),B=A.firstChild;Ko(B),r.display.lineSpace.insertBefore(A,r.display.lineSpace.firstChild),B.value=Qt.text.join(` +`);var ee=R(ze(i));F(B),setTimeout(function(){r.display.lineSpace.removeChild(A),ee.focus(),ee==i&&n.showPrimarySelection()},50)}}Ie(i,"copy",l),Ie(i,"cut",l)},Qe.prototype.screenReaderLabelChanged=function(e){e?this.div.setAttribute("aria-label",e):this.div.removeAttribute("aria-label")},Qe.prototype.prepareSelection=function(){var e=Ya(this.cm,!1);return e.focus=R(ze(this.div))==this.div,e},Qe.prototype.showSelection=function(e,t){!e||!this.cm.display.view.length||((e.focus||t)&&this.showPrimarySelection(),this.showMultipleSelections(e))},Qe.prototype.getSelection=function(){return this.cm.display.wrapper.ownerDocument.getSelection()},Qe.prototype.showPrimarySelection=function(){var e=this.getSelection(),t=this.cm,n=t.doc.sel.primary(),r=n.from(),i=n.to();if(t.display.viewTo==t.display.viewFrom||r.line>=t.display.viewTo||i.line=t.display.viewFrom&&ls(t,r)||{node:u[0].measure.map[2],offset:0},m=i.linee.firstLine()&&(r=ne(r.line-1,Ae(e.doc,r.line-1).length)),i.ch==Ae(e.doc,i.line).text.length&&i.linet.viewTo-1)return!1;var a,l,u;r.line==t.viewFrom||(a=Ar(e,r.line))==0?(l=x(t.view[0].line),u=t.view[0].node):(l=x(t.view[a].line),u=t.view[a-1].node.nextSibling);var f=Ar(e,i.line),m,A;if(f==t.view.length-1?(m=t.viewTo-1,A=t.lineDiv.lastChild):(m=x(t.view[f+1].line)-1,A=t.view[f+1].node.previousSibling),!u)return!1;for(var B=e.doc.splitLines(yd(e,u,A,l,m)),ee=ir(e.doc,ne(l,0),ne(m,Ae(e.doc,m).text.length));B.length>1&&ee.length>1;)if(ce(B)==ce(ee))B.pop(),ee.pop(),m--;else if(B[0]==ee[0])B.shift(),ee.shift(),l++;else break;for(var Y=0,ie=0,ue=B[0],me=ee[0],ve=Math.min(ue.length,me.length);Yr.ch&&_e.charCodeAt(_e.length-ie-1)==be.charCodeAt(be.length-ie-1);)Y--,ie++;B[B.length-1]=_e.slice(0,_e.length-ie).replace(/^\u200b+/,""),B[0]=B[0].slice(Y).replace(/\u200b+$/,"");var Ne=ne(l,Y),Fe=ne(m,ee.length?ce(ee).length-ie:0);if(B.length>1||B[0]||ye(Ne,Fe))return ln(e.doc,B,Ne,Fe,"+input"),!0},Qe.prototype.ensurePolled=function(){this.forceCompositionEnd()},Qe.prototype.reset=function(){this.forceCompositionEnd()},Qe.prototype.forceCompositionEnd=function(){this.composing&&(clearTimeout(this.readDOMTimeout),this.composing=null,this.updateFromDOM(),this.div.blur(),this.div.focus())},Qe.prototype.readFromDOMSoon=function(){var e=this;this.readDOMTimeout==null&&(this.readDOMTimeout=setTimeout(function(){if(e.readDOMTimeout=null,e.composing)if(e.composing.done)e.composing=null;else return;e.updateFromDOM()},80))},Qe.prototype.updateFromDOM=function(){var e=this;(this.cm.isReadOnly()||!this.pollContent())&&Nt(this.cm,function(){return zt(e.cm)})},Qe.prototype.setUneditable=function(e){e.contentEditable="false"},Qe.prototype.onKeyPress=function(e){e.charCode==0||this.composing||(e.preventDefault(),this.cm.isReadOnly()||gt(this.cm,$o)(this.cm,String.fromCharCode(e.charCode==null?e.keyCode:e.charCode),0))},Qe.prototype.readOnlyChanged=function(e){this.div.contentEditable=String(e!="nocursor")},Qe.prototype.onContextMenu=function(){},Qe.prototype.resetPosition=function(){},Qe.prototype.needsContentAttribute=!0;function ls(e,t){var n=po(e,t.line);if(!n||n.hidden)return null;var r=Ae(e.doc,t.line),i=Na(n,r,t.line),a=Pe(r,e.doc.direction),l="left";if(a){var u=Pt(a,t.ch);l=u%2?"right":"left"}var f=Ba(i.map,t.ch,l);return f.offset=f.collapse=="right"?f.end:f.start,f}function bd(e){for(var t=e;t;t=t.parentNode)if(/CodeMirror-gutter-wrapper/.test(t.className))return!0;return!1}function dn(e,t){return t&&(e.bad=!0),e}function yd(e,t,n,r,i){var a="",l=!1,u=e.doc.lineSeparator(),f=!1;function m(Y){return function(ie){return ie.id==Y}}function A(){l&&(a+=u,f&&(a+=u),l=f=!1)}function B(Y){Y&&(A(),a+=Y)}function ee(Y){if(Y.nodeType==1){var ie=Y.getAttribute("cm-text");if(ie){B(ie);return}var ue=Y.getAttribute("cm-marker"),me;if(ue){var ve=e.findMarks(ne(r,0),ne(i+1,0),m(+ue));ve.length&&(me=ve[0].find(0))&&B(ir(e.doc,me.from,me.to).join(u));return}if(Y.getAttribute("contenteditable")=="false")return;var _e=/^(pre|div|p|li|table|br)$/i.test(Y.nodeName);if(!/^br$/i.test(Y.nodeName)&&Y.textContent.length==0)return;_e&&A();for(var be=0;be=9&&t.hasSelection&&(t.hasSelection=null),n.poll()}),Ie(i,"paste",function(l){ot(r,l)||rs(l,r)||(r.state.pasteIncoming=+new Date,n.fastPoll())});function a(l){if(!ot(r,l)){if(r.somethingSelected())zi({lineWise:!1,text:r.getSelections()});else if(r.options.lineWiseCopyCut){var u=is(r);zi({lineWise:!0,text:u.text}),l.type=="cut"?r.setSelections(u.ranges,null,ke):(n.prevInput="",i.value=u.text.join(` +`),F(i))}else return;l.type=="cut"&&(r.state.cutIncoming=+new Date)}}Ie(i,"cut",a),Ie(i,"copy",a),Ie(e.scroller,"paste",function(l){if(!(lr(e,l)||ot(r,l))){if(!i.dispatchEvent){r.state.pasteIncoming=+new Date,n.focus();return}var u=new Event("paste");u.clipboardData=l.clipboardData,i.dispatchEvent(u)}}),Ie(e.lineSpace,"selectstart",function(l){lr(e,l)||kt(l)}),Ie(i,"compositionstart",function(){var l=r.getCursor("from");n.composing&&n.composing.range.clear(),n.composing={start:l,range:r.markText(l,r.getCursor("to"),{className:"CodeMirror-composing"})}}),Ie(i,"compositionend",function(){n.composing&&(n.poll(),n.composing.range.clear(),n.composing=null)})},st.prototype.createField=function(e){this.wrapper=os(),this.textarea=this.wrapper.firstChild;var t=this.cm.options;Ko(this.textarea,t.spellcheck,t.autocorrect,t.autocapitalize)},st.prototype.screenReaderLabelChanged=function(e){e?this.textarea.setAttribute("aria-label",e):this.textarea.removeAttribute("aria-label")},st.prototype.prepareSelection=function(){var e=this.cm,t=e.display,n=e.doc,r=Ya(e);if(e.options.moveInputWithCursor){var i=Xt(e,n.sel.primary().head,"div"),a=t.wrapper.getBoundingClientRect(),l=t.lineDiv.getBoundingClientRect();r.teTop=Math.max(0,Math.min(t.wrapper.clientHeight-10,i.top+l.top-a.top)),r.teLeft=Math.max(0,Math.min(t.wrapper.clientWidth-10,i.left+l.left-a.left))}return r},st.prototype.showSelection=function(e){var t=this.cm,n=t.display;V(n.cursorDiv,e.cursors),V(n.selectionDiv,e.selection),e.teTop!=null&&(this.wrapper.style.top=e.teTop+"px",this.wrapper.style.left=e.teLeft+"px")},st.prototype.reset=function(e){if(!(this.contextMenuPending||this.composing&&e)){var t=this.cm;if(this.resetting=!0,t.somethingSelected()){this.prevInput="";var n=t.getSelection();this.textarea.value=n,t.state.focused&&F(this.textarea),s&&h>=9&&(this.hasSelection=n)}else e||(this.prevInput=this.textarea.value="",s&&h>=9&&(this.hasSelection=null));this.resetting=!1}},st.prototype.getField=function(){return this.textarea},st.prototype.supportsTouch=function(){return!1},st.prototype.focus=function(){if(this.cm.options.readOnly!="nocursor"&&(!E||R(ze(this.textarea))!=this.textarea))try{this.textarea.focus()}catch{}},st.prototype.blur=function(){this.textarea.blur()},st.prototype.resetPosition=function(){this.wrapper.style.top=this.wrapper.style.left=0},st.prototype.receivedFocus=function(){this.slowPoll()},st.prototype.slowPoll=function(){var e=this;this.pollingFast||this.polling.set(this.cm.options.pollInterval,function(){e.poll(),e.cm.state.focused&&e.slowPoll()})},st.prototype.fastPoll=function(){var e=!1,t=this;t.pollingFast=!0;function n(){var r=t.poll();!r&&!e?(e=!0,t.polling.set(60,n)):(t.pollingFast=!1,t.slowPoll())}t.polling.set(20,n)},st.prototype.poll=function(){var e=this,t=this.cm,n=this.textarea,r=this.prevInput;if(this.contextMenuPending||this.resetting||!t.state.focused||hr(n)&&!r&&!this.composing||t.isReadOnly()||t.options.disableInput||t.state.keySeq)return!1;var i=n.value;if(i==r&&!t.somethingSelected())return!1;if(s&&h>=9&&this.hasSelection===i||O&&/[\uf700-\uf7ff]/.test(i))return t.display.input.reset(),!1;if(t.doc.sel==t.display.selForContextMenu){var a=i.charCodeAt(0);if(a==8203&&!r&&(r="\u200B"),a==8666)return this.reset(),this.cm.execCommand("undo")}for(var l=0,u=Math.min(r.length,i.length);l1e3||i.indexOf(` +`)>-1?n.value=e.prevInput="":e.prevInput=i,e.composing&&(e.composing.range.clear(),e.composing.range=t.markText(e.composing.start,t.getCursor("to"),{className:"CodeMirror-composing"}))}),!0},st.prototype.ensurePolled=function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)},st.prototype.onKeyPress=function(){s&&h>=9&&(this.hasSelection=null),this.fastPoll()},st.prototype.onContextMenu=function(e){var t=this,n=t.cm,r=n.display,i=t.textarea;t.contextMenuPending&&t.contextMenuPending();var a=Mr(n,e),l=r.scroller.scrollTop;if(!a||d)return;var u=n.options.resetSelectionOnContextMenu;u&&n.doc.sel.contains(a)==-1&>(n,wt)(n.doc,yr(a),ke);var f=i.style.cssText,m=t.wrapper.style.cssText,A=t.wrapper.offsetParent.getBoundingClientRect();t.wrapper.style.cssText="position: static",i.style.cssText=`position: absolute; width: 30px; height: 30px; + top: `+(e.clientY-A.top-5)+"px; left: "+(e.clientX-A.left-5)+`px; + z-index: 1000; background: `+(s?"rgba(255, 255, 255, .05)":"transparent")+`; + outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);`;var B;g&&(B=i.ownerDocument.defaultView.scrollY),r.input.focus(),g&&i.ownerDocument.defaultView.scrollTo(null,B),r.input.reset(),n.somethingSelected()||(i.value=t.prevInput=" "),t.contextMenuPending=Y,r.selForContextMenu=n.doc.sel,clearTimeout(r.detectingSelectAll);function ee(){if(i.selectionStart!=null){var ue=n.somethingSelected(),me="\u200B"+(ue?i.value:"");i.value="\u21DA",i.value=me,t.prevInput=ue?"":"\u200B",i.selectionStart=1,i.selectionEnd=me.length,r.selForContextMenu=n.doc.sel}}function Y(){if(t.contextMenuPending==Y&&(t.contextMenuPending=!1,t.wrapper.style.cssText=m,i.style.cssText=f,s&&h<9&&r.scrollbars.setScrollTop(r.scroller.scrollTop=l),i.selectionStart!=null)){(!s||s&&h<9)&&ee();var ue=0,me=function(){r.selForContextMenu==n.doc.sel&&i.selectionStart==0&&i.selectionEnd>0&&t.prevInput=="\u200B"?gt(n,Ll)(n):ue++<10?r.detectingSelectAll=setTimeout(me,500):(r.selForContextMenu=null,r.input.reset())};r.detectingSelectAll=setTimeout(me,200)}}if(s&&h>=9&&ee(),I){dr(e);var ie=function(){_t(window,"mouseup",ie),setTimeout(Y,20)};Ie(window,"mouseup",ie)}else setTimeout(Y,50)},st.prototype.readOnlyChanged=function(e){e||this.reset(),this.textarea.disabled=e=="nocursor",this.textarea.readOnly=!!e},st.prototype.setUneditable=function(){},st.prototype.needsContentAttribute=!1;function _d(e,t){if(t=t?ge(t):{},t.value=e.value,!t.tabindex&&e.tabIndex&&(t.tabindex=e.tabIndex),!t.placeholder&&e.placeholder&&(t.placeholder=e.placeholder),t.autofocus==null){var n=R(ze(e));t.autofocus=n==e||e.getAttribute("autofocus")!=null&&n==document.body}function r(){e.value=u.getValue()}var i;if(e.form&&(Ie(e.form,"submit",r),!t.leaveSubmitMethodAlone)){var a=e.form;i=a.submit;try{var l=a.submit=function(){r(),a.submit=i,a.submit(),a.submit=l}}catch{}}t.finishInit=function(f){f.save=r,f.getTextArea=function(){return e},f.toTextArea=function(){f.toTextArea=isNaN,r(),e.parentNode.removeChild(f.getWrapperElement()),e.style.display="",e.form&&(_t(e.form,"submit",r),!t.leaveSubmitMethodAlone&&typeof e.form.submit=="function"&&(e.form.submit=i))}},e.style.display="none";var u=tt(function(f){return e.parentNode.insertBefore(f,e.nextSibling)},t);return u}function kd(e){e.off=_t,e.on=Ie,e.wheelEventPixels=zf,e.Doc=Mt,e.splitLines=Ht,e.countColumn=Oe,e.findColumn=Ge,e.isWordChar=we,e.Pass=Ze,e.signal=it,e.Line=Xr,e.changeEnd=xr,e.scrollbarModel=rl,e.Pos=ne,e.cmpPos=ye,e.modes=Wr,e.mimeModes=Kt,e.resolveMode=Ur,e.getMode=$r,e.modeExtensions=gr,e.extendMode=Kr,e.copyState=Vt,e.startState=Gr,e.innerMode=_n,e.commands=$n,e.keyMap=ur,e.keyName=Hl,e.isModifierKey=jl,e.lookupKey=un,e.normalizeKeyMap=Qf,e.StringStream=at,e.SharedTextMarker=Hn,e.TextMarker=kr,e.LineWidget=Rn,e.e_preventDefault=kt,e.e_stopPropagation=Rr,e.e_stop=dr,e.addClass=le,e.contains=N,e.rmClass=Q,e.keyNames=wr}pd(tt),vd(tt);var wd="iter insert remove copy getEditor constructor".split(" ");for(var Ai in Mt.prototype)Mt.prototype.hasOwnProperty(Ai)&&Se(wd,Ai)<0&&(tt.prototype[Ai]=(function(e){return function(){return e.apply(this.doc,arguments)}})(Mt.prototype[Ai]));return Wt(Mt),tt.inputStyles={textarea:st,contenteditable:Qe},tt.defineMode=function(e){!tt.defaults.mode&&e!="null"&&(tt.defaults.mode=e),Gt.apply(this,arguments)},tt.defineMIME=Cr,tt.defineMode("null",function(){return{token:function(e){return e.skipToEnd()}}}),tt.defineMIME("text/plain","null"),tt.defineExtension=function(e,t){tt.prototype[e]=t},tt.defineDocExtension=function(e,t){Mt.prototype[e]=t},tt.fromTextArea=_d,kd(tt),tt.version="5.65.20",tt}))});var Yn=Ke((us,cs)=>{(function(o){typeof us=="object"&&typeof cs=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.overlayMode=function(p,v,C){return{startState:function(){return{base:o.startState(p),overlay:o.startState(v),basePos:0,baseCur:null,overlayPos:0,overlayCur:null,streamSeen:null}},copyState:function(b){return{base:o.copyState(p,b.base),overlay:o.copyState(v,b.overlay),basePos:b.basePos,baseCur:null,overlayPos:b.overlayPos,overlayCur:null}},token:function(b,S){return(b!=S.streamSeen||Math.min(S.basePos,S.overlayPos){(function(o){typeof fs=="object"&&typeof ds=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";var p=/^(\s*)(>[> ]*|[*+-] \[[x ]\]\s|[*+-]\s|(\d+)([.)]))(\s*)/,v=/^(\s*)(>[> ]*|[*+-] \[[x ]\]|[*+-]|(\d+)[.)])(\s*)$/,C=/[*+-]\s/;o.commands.newlineAndIndentContinueMarkdownList=function(S){if(S.getOption("disableInput"))return o.Pass;for(var s=S.listSelections(),h=[],g=0;g\s*$/.test(z),E=!/>\s*$/.test(z);(W||E)&&S.replaceRange("",{line:T.line,ch:0},{line:T.line,ch:T.ch+1}),h[g]=` +`}else{var O=M[1],G=M[5],J=!(C.test(M[2])||M[2].indexOf(">")>=0),re=J?parseInt(M[3],10)+1+M[4]:M[2].replace("x"," ");h[g]=` +`+O+re+G,J&&b(S,T)}}S.replaceSelections(h)};function b(S,s){var h=s.line,g=0,T=0,w=p.exec(S.getLine(h)),c=w[1];do{g+=1;var d=h+g,k=S.getLine(d),z=p.exec(k);if(z){var M=z[1],_=parseInt(w[3],10)+g-T,W=parseInt(z[3],10),E=W;if(c===M&&!isNaN(W))_===W&&(E=W+1),_>W&&(E=_+1),S.replaceRange(k.replace(p,M+E+z[4]+z[5]),{line:d,ch:0},{line:d,ch:k.length});else{if(c.length>M.length||c.length{(function(o){typeof hs=="object"&&typeof gs=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){o.defineOption("placeholder","",function(h,g,T){var w=T&&T!=o.Init;if(g&&!w)h.on("blur",b),h.on("change",S),h.on("swapDoc",S),o.on(h.getInputField(),"compositionupdate",h.state.placeholderCompose=function(){C(h)}),S(h);else if(!g&&w){h.off("blur",b),h.off("change",S),h.off("swapDoc",S),o.off(h.getInputField(),"compositionupdate",h.state.placeholderCompose),p(h);var c=h.getWrapperElement();c.className=c.className.replace(" CodeMirror-empty","")}g&&!h.hasFocus()&&b(h)});function p(h){h.state.placeholder&&(h.state.placeholder.parentNode.removeChild(h.state.placeholder),h.state.placeholder=null)}function v(h){p(h);var g=h.state.placeholder=document.createElement("pre");g.style.cssText="height: 0; overflow: visible",g.style.direction=h.getOption("direction"),g.className="CodeMirror-placeholder CodeMirror-line-like";var T=h.getOption("placeholder");typeof T=="string"&&(T=document.createTextNode(T)),g.appendChild(T),h.display.lineSpace.insertBefore(g,h.display.lineSpace.firstChild)}function C(h){setTimeout(function(){var g=!1;if(h.lineCount()==1){var T=h.getInputField();g=T.nodeName=="TEXTAREA"?!h.getLine(0).length:!/[^\u200b]/.test(T.querySelector(".CodeMirror-line").textContent)}g?v(h):p(h)},20)}function b(h){s(h)&&v(h)}function S(h){var g=h.getWrapperElement(),T=s(h);g.className=g.className.replace(" CodeMirror-empty","")+(T?" CodeMirror-empty":""),T?v(h):p(h)}function s(h){return h.lineCount()===1&&h.getLine(0)===""}})});var ys=Ke((vs,bs)=>{(function(o){typeof vs=="object"&&typeof bs=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineOption("styleSelectedText",!1,function(w,c,d){var k=d&&d!=o.Init;c&&!k?(w.state.markedSelection=[],w.state.markedSelectionStyle=typeof c=="string"?c:"CodeMirror-selectedtext",g(w),w.on("cursorActivity",p),w.on("change",v)):!c&&k&&(w.off("cursorActivity",p),w.off("change",v),h(w),w.state.markedSelection=w.state.markedSelectionStyle=null)});function p(w){w.state.markedSelection&&w.operation(function(){T(w)})}function v(w){w.state.markedSelection&&w.state.markedSelection.length&&w.operation(function(){h(w)})}var C=8,b=o.Pos,S=o.cmpPos;function s(w,c,d,k){if(S(c,d)!=0)for(var z=w.state.markedSelection,M=w.state.markedSelectionStyle,_=c.line;;){var W=_==c.line?c:b(_,0),E=_+C,O=E>=d.line,G=O?d:b(E,0),J=w.markText(W,G,{className:M});if(k==null?z.push(J):z.splice(k++,0,J),O)break;_=E}}function h(w){for(var c=w.state.markedSelection,d=0;d1)return g(w);var c=w.getCursor("start"),d=w.getCursor("end"),k=w.state.markedSelection;if(!k.length)return s(w,c,d);var z=k[0].find(),M=k[k.length-1].find();if(!z||!M||d.line-c.line<=C||S(c,M.to)>=0||S(d,z.from)<=0)return g(w);for(;S(c,z.from)>0;)k.shift().clear(),z=k[0].find();for(S(c,z.from)<0&&(z.to.line-c.line0&&(d.line-M.from.line{(function(o){typeof xs=="object"&&typeof _s=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";var p=o.Pos;function v(_){var W=_.flags;return W??(_.ignoreCase?"i":"")+(_.global?"g":"")+(_.multiline?"m":"")}function C(_,W){for(var E=v(_),O=E,G=0;Gre);q++){var I=_.getLine(J++);O=O==null?I:O+` +`+I}G=G*2,W.lastIndex=E.ch;var D=W.exec(O);if(D){var Q=O.slice(0,D.index).split(` +`),j=D[0].split(` +`),V=E.line+Q.length-1,y=Q[Q.length-1].length;return{from:p(V,y),to:p(V+j.length-1,j.length==1?y+j[0].length:j[j.length-1].length),match:D}}}}function h(_,W,E){for(var O,G=0;G<=_.length;){W.lastIndex=G;var J=W.exec(_);if(!J)break;var re=J.index+J[0].length;if(re>_.length-E)break;(!O||re>O.index+O[0].length)&&(O=J),G=J.index+1}return O}function g(_,W,E){W=C(W,"g");for(var O=E.line,G=E.ch,J=_.firstLine();O>=J;O--,G=-1){var re=_.getLine(O),q=h(re,W,G<0?0:re.length-G);if(q)return{from:p(O,q.index),to:p(O,q.index+q[0].length),match:q}}}function T(_,W,E){if(!b(W))return g(_,W,E);W=C(W,"gm");for(var O,G=1,J=_.getLine(E.line).length-E.ch,re=E.line,q=_.firstLine();re>=q;){for(var I=0;I=q;I++){var D=_.getLine(re--);O=O==null?D:D+` +`+O}G*=2;var Q=h(O,W,J);if(Q){var j=O.slice(0,Q.index).split(` +`),V=Q[0].split(` +`),y=re+j.length,K=j[j.length-1].length;return{from:p(y,K),to:p(y+V.length-1,V.length==1?K+V[0].length:V[V.length-1].length),match:Q}}}}var w,c;String.prototype.normalize?(w=function(_){return _.normalize("NFD").toLowerCase()},c=function(_){return _.normalize("NFD")}):(w=function(_){return _.toLowerCase()},c=function(_){return _});function d(_,W,E,O){if(_.length==W.length)return E;for(var G=0,J=E+Math.max(0,_.length-W.length);;){if(G==J)return G;var re=G+J>>1,q=O(_.slice(0,re)).length;if(q==E)return re;q>E?J=re:G=re+1}}function k(_,W,E,O){if(!W.length)return null;var G=O?w:c,J=G(W).split(/\r|\n\r?/);e:for(var re=E.line,q=E.ch,I=_.lastLine()+1-J.length;re<=I;re++,q=0){var D=_.getLine(re).slice(q),Q=G(D);if(J.length==1){var j=Q.indexOf(J[0]);if(j==-1)continue e;var E=d(D,Q,j,G)+q;return{from:p(re,d(D,Q,j,G)+q),to:p(re,d(D,Q,j+J[0].length,G)+q)}}else{var V=Q.length-J[0].length;if(Q.slice(V)!=J[0])continue e;for(var y=1;y=I;re--,q=-1){var D=_.getLine(re);q>-1&&(D=D.slice(0,q));var Q=G(D);if(J.length==1){var j=Q.lastIndexOf(J[0]);if(j==-1)continue e;return{from:p(re,d(D,Q,j,G)),to:p(re,d(D,Q,j+J[0].length,G))}}else{var V=J[J.length-1];if(Q.slice(0,V.length)!=V)continue e;for(var y=1,E=re-J.length+1;y(this.doc.getLine(W.line)||"").length&&(W.ch=0,W.line++)),o.cmpPos(W,this.doc.clipPos(W))!=0))return this.atOccurrence=!1;var E=this.matches(_,W);if(this.afterEmptyMatch=E&&o.cmpPos(E.from,E.to)==0,E)return this.pos=E,this.atOccurrence=!0,this.pos.match||!0;var O=p(_?this.doc.firstLine():this.doc.lastLine()+1,0);return this.pos={from:O,to:O},this.atOccurrence=!1},from:function(){if(this.atOccurrence)return this.pos.from},to:function(){if(this.atOccurrence)return this.pos.to},replace:function(_,W){if(this.atOccurrence){var E=o.splitLines(_);this.doc.replaceRange(E,this.pos.from,this.pos.to,W),this.pos.to=p(this.pos.from.line+E.length-1,E[E.length-1].length+(E.length==1?this.pos.from.ch:0))}}},o.defineExtension("getSearchCursor",function(_,W,E){return new M(this.doc,_,W,E)}),o.defineDocExtension("getSearchCursor",function(_,W,E){return new M(this,_,W,E)}),o.defineExtension("selectMatches",function(_,W){for(var E=[],O=this.getSearchCursor(_,this.getCursor("from"),W);O.findNext()&&!(o.cmpPos(O.to(),this.getCursor("to"))>0);)E.push({anchor:O.from(),head:O.to()});E.length&&this.setSelections(E,0)})})});var Vo=Ke((ws,Ss)=>{(function(o){typeof ws=="object"&&typeof Ss=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";function p(N,R,le,xe,F,L){this.indented=N,this.column=R,this.type=le,this.info=xe,this.align=F,this.prev=L}function v(N,R,le,xe){var F=N.indented;return N.context&&N.context.type=="statement"&&le!="statement"&&(F=N.context.indented),N.context=new p(F,R,le,xe,null,N.context)}function C(N){var R=N.context.type;return(R==")"||R=="]"||R=="}")&&(N.indented=N.context.indented),N.context=N.context.prev}function b(N,R,le){if(R.prevToken=="variable"||R.prevToken=="type"||/\S(?:[^- ]>|[*\]])\s*$|\*$/.test(N.string.slice(0,le))||R.typeAtEndOfLine&&N.column()==N.indentation())return!0}function S(N){for(;;){if(!N||N.type=="top")return!0;if(N.type=="}"&&N.prev.info!="namespace")return!1;N=N.prev}}o.defineMode("clike",function(N,R){var le=N.indentUnit,xe=R.statementIndentUnit||le,F=R.dontAlignCalls,L=R.keywords||{},de=R.types||{},ze=R.builtin||{},pe=R.blockKeywords||{},Ee=R.defKeywords||{},ge=R.atoms||{},Oe=R.hooks||{},qe=R.multiLineStrings,Se=R.indentStatements!==!1,Be=R.indentSwitch!==!1,Ze=R.namespaceSeparator,ke=R.isPunctuationChar||/[\[\]{}\(\),;\:\.]/,Je=R.numberStart||/[\d\.]/,Re=R.number||/^(?:0x[a-f\d]+|0b[01]+|(?:\d+\.?\d*|\.\d+)(?:e[-+]?\d+)?)(u|ll?|l|f)?/i,Ge=R.isOperatorChar||/[+\-*&%=<>!?|\/]/,U=R.isIdentifierChar||/[\w\$_\xa1-\uffff]/,Z=R.isReservedIdentifier||!1,ce,He;function te(we,Me){var Le=we.next();if(Oe[Le]){var $=Oe[Le](we,Me);if($!==!1)return $}if(Le=='"'||Le=="'")return Me.tokenize=fe(Le),Me.tokenize(we,Me);if(Je.test(Le)){if(we.backUp(1),we.match(Re))return"number";we.next()}if(ke.test(Le))return ce=Le,null;if(Le=="/"){if(we.eat("*"))return Me.tokenize=oe,oe(we,Me);if(we.eat("/"))return we.skipToEnd(),"comment"}if(Ge.test(Le)){for(;!we.match(/^\/[\/*]/,!1)&&we.eat(Ge););return"operator"}if(we.eatWhile(U),Ze)for(;we.match(Ze);)we.eatWhile(U);var H=we.current();return h(L,H)?(h(pe,H)&&(ce="newstatement"),h(Ee,H)&&(He=!0),"keyword"):h(de,H)?"type":h(ze,H)||Z&&Z(H)?(h(pe,H)&&(ce="newstatement"),"builtin"):h(ge,H)?"atom":"variable"}function fe(we){return function(Me,Le){for(var $=!1,H,se=!1;(H=Me.next())!=null;){if(H==we&&!$){se=!0;break}$=!$&&H=="\\"}return(se||!($||qe))&&(Le.tokenize=null),"string"}}function oe(we,Me){for(var Le=!1,$;$=we.next();){if($=="/"&&Le){Me.tokenize=null;break}Le=$=="*"}return"comment"}function Ue(we,Me){R.typeFirstDefinitions&&we.eol()&&S(Me.context)&&(Me.typeAtEndOfLine=b(we,Me,we.pos))}return{startState:function(we){return{tokenize:null,context:new p((we||0)-le,0,"top",null,!1),indented:0,startOfLine:!0,prevToken:null}},token:function(we,Me){var Le=Me.context;if(we.sol()&&(Le.align==null&&(Le.align=!1),Me.indented=we.indentation(),Me.startOfLine=!0),we.eatSpace())return Ue(we,Me),null;ce=He=null;var $=(Me.tokenize||te)(we,Me);if($=="comment"||$=="meta")return $;if(Le.align==null&&(Le.align=!0),ce==";"||ce==":"||ce==","&&we.match(/^\s*(?:\/\/.*)?$/,!1))for(;Me.context.type=="statement";)C(Me);else if(ce=="{")v(Me,we.column(),"}");else if(ce=="[")v(Me,we.column(),"]");else if(ce=="(")v(Me,we.column(),")");else if(ce=="}"){for(;Le.type=="statement";)Le=C(Me);for(Le.type=="}"&&(Le=C(Me));Le.type=="statement";)Le=C(Me)}else ce==Le.type?C(Me):Se&&((Le.type=="}"||Le.type=="top")&&ce!=";"||Le.type=="statement"&&ce=="newstatement")&&v(Me,we.column(),"statement",we.current());if($=="variable"&&(Me.prevToken=="def"||R.typeFirstDefinitions&&b(we,Me,we.start)&&S(Me.context)&&we.match(/^\s*\(/,!1))&&($="def"),Oe.token){var H=Oe.token(we,Me,$);H!==void 0&&($=H)}return $=="def"&&R.styleDefs===!1&&($="variable"),Me.startOfLine=!1,Me.prevToken=He?"def":$||ce,Ue(we,Me),$},indent:function(we,Me){if(we.tokenize!=te&&we.tokenize!=null||we.typeAtEndOfLine&&S(we.context))return o.Pass;var Le=we.context,$=Me&&Me.charAt(0),H=$==Le.type;if(Le.type=="statement"&&$=="}"&&(Le=Le.prev),R.dontIndentStatements)for(;Le.type=="statement"&&R.dontIndentStatements.test(Le.info);)Le=Le.prev;if(Oe.indent){var se=Oe.indent(we,Le,Me,le);if(typeof se=="number")return se}var De=Le.prev&&Le.prev.info=="switch";if(R.allmanIndentation&&/[{(]/.test($)){for(;Le.type!="top"&&Le.type!="}";)Le=Le.prev;return Le.indented}return Le.type=="statement"?Le.indented+($=="{"?0:xe):Le.align&&(!F||Le.type!=")")?Le.column+(H?0:1):Le.type==")"&&!H?Le.indented+xe:Le.indented+(H?0:le)+(!H&&De&&!/^(?:case|default)\b/.test(Me)?le:0)},electricInput:Be?/^\s*(?:case .*?:|default:|\{\}?|\})$/:/^\s*[{}]$/,blockCommentStart:"/*",blockCommentEnd:"*/",blockCommentContinue:" * ",lineComment:"//",fold:"brace"}});function s(N){for(var R={},le=N.split(" "),xe=0;xe!?|\/#:@]/,hooks:{"@":function(N){return N.eatWhile(/[\w\$_]/),"meta"},'"':function(N,R){return N.match('""')?(R.tokenize=j,R.tokenize(N,R)):!1},"'":function(N){return N.match(/^(\\[^'\s]+|[^\\'])'/)?"string-2":(N.eatWhile(/[\w\$_\xa1-\uffff]/),"atom")},"=":function(N,R){var le=R.context;return le.type=="}"&&le.align&&N.eat(">")?(R.context=new p(le.indented,le.column,le.type,le.info,null,le.prev),"operator"):!1},"/":function(N,R){return N.eat("*")?(R.tokenize=V(1),R.tokenize(N,R)):!1}},modeProps:{closeBrackets:{pairs:'()[]{}""',triples:'"'}}});function y(N){return function(R,le){for(var xe=!1,F,L=!1;!R.eol();){if(!N&&!xe&&R.match('"')){L=!0;break}if(N&&R.match('"""')){L=!0;break}F=R.next(),!xe&&F=="$"&&R.match("{")&&R.skipTo("}"),xe=!xe&&F=="\\"&&!N}return(L||!N)&&(le.tokenize=null),"string"}}Q("text/x-kotlin",{name:"clike",keywords:s("package as typealias class interface this super val operator var fun for is in This throw return annotation break continue object if else while do try when !in !is as? file import where by get set abstract enum open inner override private public internal protected catch finally out final vararg reified dynamic companion constructor init sealed field property receiver param sparam lateinit data inline noinline tailrec external annotation crossinline const operator infix suspend actual expect setparam value"),types:s("Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable Compiler Double Exception Float Integer Long Math Number Object Package Pair Process Runtime Runnable SecurityManager Short StackTraceElement StrictMath String StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void Annotation Any BooleanArray ByteArray Char CharArray DeprecationLevel DoubleArray Enum FloatArray Function Int IntArray Lazy LazyThreadSafetyMode LongArray Nothing ShortArray Unit"),intendSwitch:!1,indentStatements:!1,multiLineStrings:!0,number:/^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+(\.\d+)?|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i,blockKeywords:s("catch class do else finally for if where try while enum"),defKeywords:s("class val var object interface fun"),atoms:s("true false null this"),hooks:{"@":function(N){return N.eatWhile(/[\w\$_]/),"meta"},"*":function(N,R){return R.prevToken=="."?"variable":"operator"},'"':function(N,R){return R.tokenize=y(N.match('""')),R.tokenize(N,R)},"/":function(N,R){return N.eat("*")?(R.tokenize=V(1),R.tokenize(N,R)):!1},indent:function(N,R,le,xe){var F=le&&le.charAt(0);if((N.prevToken=="}"||N.prevToken==")")&&le=="")return N.indented;if(N.prevToken=="operator"&&le!="}"&&N.context.type!="}"||N.prevToken=="variable"&&F=="."||(N.prevToken=="}"||N.prevToken==")")&&F==".")return xe*2+R.indented;if(R.align&&R.type=="}")return R.indented+(N.context.type==(le||"").charAt(0)?0:xe)}},modeProps:{closeBrackets:{triples:'"'}}}),Q(["x-shader/x-vertex","x-shader/x-fragment"],{name:"clike",keywords:s("sampler1D sampler2D sampler3D samplerCube sampler1DShadow sampler2DShadow const attribute uniform varying break continue discard return for while do if else struct in out inout"),types:s("float int bool void vec2 vec3 vec4 ivec2 ivec3 ivec4 bvec2 bvec3 bvec4 mat2 mat3 mat4"),blockKeywords:s("for while do if else struct"),builtin:s("radians degrees sin cos tan asin acos atan pow exp log exp2 sqrt inversesqrt abs sign floor ceil fract mod min max clamp mix step smoothstep length distance dot cross normalize ftransform faceforward reflect refract matrixCompMult lessThan lessThanEqual greaterThan greaterThanEqual equal notEqual any all not texture1D texture1DProj texture1DLod texture1DProjLod texture2D texture2DProj texture2DLod texture2DProjLod texture3D texture3DProj texture3DLod texture3DProjLod textureCube textureCubeLod shadow1D shadow2D shadow1DProj shadow2DProj shadow1DLod shadow2DLod shadow1DProjLod shadow2DProjLod dFdx dFdy fwidth noise1 noise2 noise3 noise4"),atoms:s("true false gl_FragColor gl_SecondaryColor gl_Normal gl_Vertex gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_FogCoord gl_PointCoord gl_Position gl_PointSize gl_ClipVertex gl_FrontColor gl_BackColor gl_FrontSecondaryColor gl_BackSecondaryColor gl_TexCoord gl_FogFragCoord gl_FragCoord gl_FrontFacing gl_FragData gl_FragDepth gl_ModelViewMatrix gl_ProjectionMatrix gl_ModelViewProjectionMatrix gl_TextureMatrix gl_NormalMatrix gl_ModelViewMatrixInverse gl_ProjectionMatrixInverse gl_ModelViewProjectionMatrixInverse gl_TextureMatrixTranspose gl_ModelViewMatrixInverseTranspose gl_ProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixInverseTranspose gl_TextureMatrixInverseTranspose gl_NormalScale gl_DepthRange gl_ClipPlane gl_Point gl_FrontMaterial gl_BackMaterial gl_LightSource gl_LightModel gl_FrontLightModelProduct gl_BackLightModelProduct gl_TextureColor gl_EyePlaneS gl_EyePlaneT gl_EyePlaneR gl_EyePlaneQ gl_FogParameters gl_MaxLights gl_MaxClipPlanes gl_MaxTextureUnits gl_MaxTextureCoords gl_MaxVertexAttribs gl_MaxVertexUniformComponents gl_MaxVaryingFloats gl_MaxVertexTextureImageUnits gl_MaxTextureImageUnits gl_MaxFragmentUniformComponents gl_MaxCombineTextureImageUnits gl_MaxDrawBuffers"),indentSwitch:!1,hooks:{"#":E},modeProps:{fold:["brace","include"]}}),Q("text/x-nesc",{name:"clike",keywords:s(g+" as atomic async call command component components configuration event generic implementation includes interface module new norace nx_struct nx_union post provides signal task uses abstract extends"),types:z,blockKeywords:s(_),atoms:s("null true false"),hooks:{"#":E},modeProps:{fold:["brace","include"]}}),Q("text/x-objectivec",{name:"clike",keywords:s(g+" "+w),types:M,builtin:s(c),blockKeywords:s(_+" @synthesize @try @catch @finally @autoreleasepool @synchronized"),defKeywords:s(W+" @interface @implementation @protocol @class"),dontIndentStatements:/^@.*$/,typeFirstDefinitions:!0,atoms:s("YES NO NULL Nil nil true false nullptr"),isReservedIdentifier:G,hooks:{"#":E,"*":O},modeProps:{fold:["brace","include"]}}),Q("text/x-objectivec++",{name:"clike",keywords:s(g+" "+w+" "+T),types:M,builtin:s(c),blockKeywords:s(_+" @synthesize @try @catch @finally @autoreleasepool @synchronized class try catch"),defKeywords:s(W+" @interface @implementation @protocol @class class namespace"),dontIndentStatements:/^@.*$|^template$/,typeFirstDefinitions:!0,atoms:s("YES NO NULL Nil nil true false nullptr"),isReservedIdentifier:G,hooks:{"#":E,"*":O,u:re,U:re,L:re,R:re,0:J,1:J,2:J,3:J,4:J,5:J,6:J,7:J,8:J,9:J,token:function(N,R,le){if(le=="variable"&&N.peek()=="("&&(R.prevToken==";"||R.prevToken==null||R.prevToken=="}")&&q(N.current()))return"def"}},namespaceSeparator:"::",modeProps:{fold:["brace","include"]}}),Q("text/x-squirrel",{name:"clike",keywords:s("base break clone continue const default delete enum extends function in class foreach local resume return this throw typeof yield constructor instanceof static"),types:z,blockKeywords:s("case catch class else for foreach if switch try while"),defKeywords:s("function local class"),typeFirstDefinitions:!0,atoms:s("true false null"),hooks:{"#":E},modeProps:{fold:["brace","include"]}});var K=null;function X(N){return function(R,le){for(var xe=!1,F,L=!1;!R.eol();){if(!xe&&R.match('"')&&(N=="single"||R.match('""'))){L=!0;break}if(!xe&&R.match("``")){K=X(N),L=!0;break}F=R.next(),xe=N=="single"&&!xe&&F=="\\"}return L&&(le.tokenize=null),"string"}}Q("text/x-ceylon",{name:"clike",keywords:s("abstracts alias assembly assert assign break case catch class continue dynamic else exists extends finally for function given if import in interface is let module new nonempty object of out outer package return satisfies super switch then this throw try value void while"),types:function(N){var R=N.charAt(0);return R===R.toUpperCase()&&R!==R.toLowerCase()},blockKeywords:s("case catch class dynamic else finally for function if interface module new object switch try while"),defKeywords:s("class dynamic function interface module object package value"),builtin:s("abstract actual aliased annotation by default deprecated doc final formal late license native optional sealed see serializable shared suppressWarnings tagged throws variable"),isPunctuationChar:/[\[\]{}\(\),;\:\.`]/,isOperatorChar:/[+\-*&%=<>!?|^~:\/]/,numberStart:/[\d#$]/,number:/^(?:#[\da-fA-F_]+|\$[01_]+|[\d_]+[kMGTPmunpf]?|[\d_]+\.[\d_]+(?:[eE][-+]?\d+|[kMGTPmunpf]|)|)/i,multiLineStrings:!0,typeFirstDefinitions:!0,atoms:s("true false null larger smaller equal empty finished"),indentSwitch:!1,styleDefs:!1,hooks:{"@":function(N){return N.eatWhile(/[\w\$_]/),"meta"},'"':function(N,R){return R.tokenize=X(N.match('""')?"triple":"single"),R.tokenize(N,R)},"`":function(N,R){return!K||!N.match("`")?!1:(R.tokenize=K,K=null,R.tokenize(N,R))},"'":function(N){return N.eatWhile(/[\w\$_\xa1-\uffff]/),"atom"},token:function(N,R,le){if((le=="variable"||le=="type")&&R.prevToken==".")return"variable-2"}},modeProps:{fold:["brace","import"],closeBrackets:{triples:'"'}}})})});var Cs=Ke((Ts,Ls)=>{(function(o){typeof Ts=="object"&&typeof Ls=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("cmake",function(){var p=/({)?[a-zA-Z0-9_]+(})?/;function v(b,S){for(var s,h,g=!1;!b.eol()&&(s=b.next())!=S.pending;){if(s==="$"&&h!="\\"&&S.pending=='"'){g=!0;break}h=s}return g&&b.backUp(1),s==S.pending?S.continueString=!1:S.continueString=!0,"string"}function C(b,S){var s=b.next();return s==="$"?b.match(p)?"variable-2":"variable":S.continueString?(b.backUp(1),v(b,S)):b.match(/(\s+)?\w+\(/)||b.match(/(\s+)?\w+\ \(/)?(b.backUp(1),"def"):s=="#"?(b.skipToEnd(),"comment"):s=="'"||s=='"'?(S.pending=s,v(b,S)):s=="("||s==")"?"bracket":s.match(/[0-9]/)?"number":(b.eatWhile(/[\w-]/),null)}return{startState:function(){var b={};return b.inDefinition=!1,b.inInclude=!1,b.continueString=!1,b.pending=!1,b},token:function(b,S){return b.eatSpace()?null:C(b,S)}}}),o.defineMIME("text/x-cmake","cmake")})});var gn=Ke((Es,zs)=>{(function(o){typeof Es=="object"&&typeof zs=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("css",function(I,D){var Q=D.inline;D.propertyKeywords||(D=o.resolveMode("text/css"));var j=I.indentUnit,V=D.tokenHooks,y=D.documentTypes||{},K=D.mediaTypes||{},X=D.mediaFeatures||{},N=D.mediaValueKeywords||{},R=D.propertyKeywords||{},le=D.nonStandardPropertyKeywords||{},xe=D.fontProperties||{},F=D.counterDescriptors||{},L=D.colorKeywords||{},de=D.valueKeywords||{},ze=D.allowNested,pe=D.lineComment,Ee=D.supportsAtComponent===!0,ge=I.highlightNonStandardPropertyKeywords!==!1,Oe,qe;function Se(te,fe){return Oe=fe,te}function Be(te,fe){var oe=te.next();if(V[oe]){var Ue=V[oe](te,fe);if(Ue!==!1)return Ue}if(oe=="@")return te.eatWhile(/[\w\\\-]/),Se("def",te.current());if(oe=="="||(oe=="~"||oe=="|")&&te.eat("="))return Se(null,"compare");if(oe=='"'||oe=="'")return fe.tokenize=Ze(oe),fe.tokenize(te,fe);if(oe=="#")return te.eatWhile(/[\w\\\-]/),Se("atom","hash");if(oe=="!")return te.match(/^\s*\w*/),Se("keyword","important");if(/\d/.test(oe)||oe=="."&&te.eat(/\d/))return te.eatWhile(/[\w.%]/),Se("number","unit");if(oe==="-"){if(/[\d.]/.test(te.peek()))return te.eatWhile(/[\w.%]/),Se("number","unit");if(te.match(/^-[\w\\\-]*/))return te.eatWhile(/[\w\\\-]/),te.match(/^\s*:/,!1)?Se("variable-2","variable-definition"):Se("variable-2","variable");if(te.match(/^\w+-/))return Se("meta","meta")}else return/[,+>*\/]/.test(oe)?Se(null,"select-op"):oe=="."&&te.match(/^-?[_a-z][_a-z0-9-]*/i)?Se("qualifier","qualifier"):/[:;{}\[\]\(\)]/.test(oe)?Se(null,oe):te.match(/^[\w-.]+(?=\()/)?(/^(url(-prefix)?|domain|regexp)$/i.test(te.current())&&(fe.tokenize=ke),Se("variable callee","variable")):/[\w\\\-]/.test(oe)?(te.eatWhile(/[\w\\\-]/),Se("property","word")):Se(null,null)}function Ze(te){return function(fe,oe){for(var Ue=!1,we;(we=fe.next())!=null;){if(we==te&&!Ue){te==")"&&fe.backUp(1);break}Ue=!Ue&&we=="\\"}return(we==te||!Ue&&te!=")")&&(oe.tokenize=null),Se("string","string")}}function ke(te,fe){return te.next(),te.match(/^\s*[\"\')]/,!1)?fe.tokenize=null:fe.tokenize=Ze(")"),Se(null,"(")}function Je(te,fe,oe){this.type=te,this.indent=fe,this.prev=oe}function Re(te,fe,oe,Ue){return te.context=new Je(oe,fe.indentation()+(Ue===!1?0:j),te.context),oe}function Ge(te){return te.context.prev&&(te.context=te.context.prev),te.context.type}function U(te,fe,oe){return He[oe.context.type](te,fe,oe)}function Z(te,fe,oe,Ue){for(var we=Ue||1;we>0;we--)oe.context=oe.context.prev;return U(te,fe,oe)}function ce(te){var fe=te.current().toLowerCase();de.hasOwnProperty(fe)?qe="atom":L.hasOwnProperty(fe)?qe="keyword":qe="variable"}var He={};return He.top=function(te,fe,oe){if(te=="{")return Re(oe,fe,"block");if(te=="}"&&oe.context.prev)return Ge(oe);if(Ee&&/@component/i.test(te))return Re(oe,fe,"atComponentBlock");if(/^@(-moz-)?document$/i.test(te))return Re(oe,fe,"documentTypes");if(/^@(media|supports|(-moz-)?document|import)$/i.test(te))return Re(oe,fe,"atBlock");if(/^@(font-face|counter-style)/i.test(te))return oe.stateArg=te,"restricted_atBlock_before";if(/^@(-(moz|ms|o|webkit)-)?keyframes$/i.test(te))return"keyframes";if(te&&te.charAt(0)=="@")return Re(oe,fe,"at");if(te=="hash")qe="builtin";else if(te=="word")qe="tag";else{if(te=="variable-definition")return"maybeprop";if(te=="interpolation")return Re(oe,fe,"interpolation");if(te==":")return"pseudo";if(ze&&te=="(")return Re(oe,fe,"parens")}return oe.context.type},He.block=function(te,fe,oe){if(te=="word"){var Ue=fe.current().toLowerCase();return R.hasOwnProperty(Ue)?(qe="property","maybeprop"):le.hasOwnProperty(Ue)?(qe=ge?"string-2":"property","maybeprop"):ze?(qe=fe.match(/^\s*:(?:\s|$)/,!1)?"property":"tag","block"):(qe+=" error","maybeprop")}else return te=="meta"?"block":!ze&&(te=="hash"||te=="qualifier")?(qe="error","block"):He.top(te,fe,oe)},He.maybeprop=function(te,fe,oe){return te==":"?Re(oe,fe,"prop"):U(te,fe,oe)},He.prop=function(te,fe,oe){if(te==";")return Ge(oe);if(te=="{"&&ze)return Re(oe,fe,"propBlock");if(te=="}"||te=="{")return Z(te,fe,oe);if(te=="(")return Re(oe,fe,"parens");if(te=="hash"&&!/^#([0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$/.test(fe.current()))qe+=" error";else if(te=="word")ce(fe);else if(te=="interpolation")return Re(oe,fe,"interpolation");return"prop"},He.propBlock=function(te,fe,oe){return te=="}"?Ge(oe):te=="word"?(qe="property","maybeprop"):oe.context.type},He.parens=function(te,fe,oe){return te=="{"||te=="}"?Z(te,fe,oe):te==")"?Ge(oe):te=="("?Re(oe,fe,"parens"):te=="interpolation"?Re(oe,fe,"interpolation"):(te=="word"&&ce(fe),"parens")},He.pseudo=function(te,fe,oe){return te=="meta"?"pseudo":te=="word"?(qe="variable-3",oe.context.type):U(te,fe,oe)},He.documentTypes=function(te,fe,oe){return te=="word"&&y.hasOwnProperty(fe.current())?(qe="tag",oe.context.type):He.atBlock(te,fe,oe)},He.atBlock=function(te,fe,oe){if(te=="(")return Re(oe,fe,"atBlock_parens");if(te=="}"||te==";")return Z(te,fe,oe);if(te=="{")return Ge(oe)&&Re(oe,fe,ze?"block":"top");if(te=="interpolation")return Re(oe,fe,"interpolation");if(te=="word"){var Ue=fe.current().toLowerCase();Ue=="only"||Ue=="not"||Ue=="and"||Ue=="or"?qe="keyword":K.hasOwnProperty(Ue)?qe="attribute":X.hasOwnProperty(Ue)?qe="property":N.hasOwnProperty(Ue)?qe="keyword":R.hasOwnProperty(Ue)?qe="property":le.hasOwnProperty(Ue)?qe=ge?"string-2":"property":de.hasOwnProperty(Ue)?qe="atom":L.hasOwnProperty(Ue)?qe="keyword":qe="error"}return oe.context.type},He.atComponentBlock=function(te,fe,oe){return te=="}"?Z(te,fe,oe):te=="{"?Ge(oe)&&Re(oe,fe,ze?"block":"top",!1):(te=="word"&&(qe="error"),oe.context.type)},He.atBlock_parens=function(te,fe,oe){return te==")"?Ge(oe):te=="{"||te=="}"?Z(te,fe,oe,2):He.atBlock(te,fe,oe)},He.restricted_atBlock_before=function(te,fe,oe){return te=="{"?Re(oe,fe,"restricted_atBlock"):te=="word"&&oe.stateArg=="@counter-style"?(qe="variable","restricted_atBlock_before"):U(te,fe,oe)},He.restricted_atBlock=function(te,fe,oe){return te=="}"?(oe.stateArg=null,Ge(oe)):te=="word"?(oe.stateArg=="@font-face"&&!xe.hasOwnProperty(fe.current().toLowerCase())||oe.stateArg=="@counter-style"&&!F.hasOwnProperty(fe.current().toLowerCase())?qe="error":qe="property","maybeprop"):"restricted_atBlock"},He.keyframes=function(te,fe,oe){return te=="word"?(qe="variable","keyframes"):te=="{"?Re(oe,fe,"top"):U(te,fe,oe)},He.at=function(te,fe,oe){return te==";"?Ge(oe):te=="{"||te=="}"?Z(te,fe,oe):(te=="word"?qe="tag":te=="hash"&&(qe="builtin"),"at")},He.interpolation=function(te,fe,oe){return te=="}"?Ge(oe):te=="{"||te==";"?Z(te,fe,oe):(te=="word"?qe="variable":te!="variable"&&te!="("&&te!=")"&&(qe="error"),"interpolation")},{startState:function(te){return{tokenize:null,state:Q?"block":"top",stateArg:null,context:new Je(Q?"block":"top",te||0,null)}},token:function(te,fe){if(!fe.tokenize&&te.eatSpace())return null;var oe=(fe.tokenize||Be)(te,fe);return oe&&typeof oe=="object"&&(Oe=oe[1],oe=oe[0]),qe=oe,Oe!="comment"&&(fe.state=He[fe.state](Oe,te,fe)),qe},indent:function(te,fe){var oe=te.context,Ue=fe&&fe.charAt(0),we=oe.indent;return oe.type=="prop"&&(Ue=="}"||Ue==")")&&(oe=oe.prev),oe.prev&&(Ue=="}"&&(oe.type=="block"||oe.type=="top"||oe.type=="interpolation"||oe.type=="restricted_atBlock")?(oe=oe.prev,we=oe.indent):(Ue==")"&&(oe.type=="parens"||oe.type=="atBlock_parens")||Ue=="{"&&(oe.type=="at"||oe.type=="atBlock"))&&(we=Math.max(0,oe.indent-j))),we},electricChars:"}",blockCommentStart:"/*",blockCommentEnd:"*/",blockCommentContinue:" * ",lineComment:pe,fold:"brace"}});function p(I){for(var D={},Q=0;Q{(function(o){typeof Ms=="object"&&typeof As=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("diff",function(){var p={"+":"positive","-":"negative","@":"meta"};return{token:function(v){var C=v.string.search(/[\t ]+?$/);if(!v.sol()||C===0)return v.skipToEnd(),("error "+(p[v.string.charAt(0)]||"")).replace(/ $/,"");var b=p[v.peek()]||v.skipToEnd();return C===-1?v.skipToEnd():v.pos=C,b}}}),o.defineMIME("text/x-diff","diff")})});var mn=Ke((qs,Fs)=>{(function(o){typeof qs=="object"&&typeof Fs=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";var p={autoSelfClosers:{area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,frame:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0,menuitem:!0},implicitlyClosed:{dd:!0,li:!0,optgroup:!0,option:!0,p:!0,rp:!0,rt:!0,tbody:!0,td:!0,tfoot:!0,th:!0,tr:!0},contextGrabbers:{dd:{dd:!0,dt:!0},dt:{dd:!0,dt:!0},li:{li:!0},option:{option:!0,optgroup:!0},optgroup:{optgroup:!0},p:{address:!0,article:!0,aside:!0,blockquote:!0,dir:!0,div:!0,dl:!0,fieldset:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,menu:!0,nav:!0,ol:!0,p:!0,pre:!0,section:!0,table:!0,ul:!0},rp:{rp:!0,rt:!0},rt:{rp:!0,rt:!0},tbody:{tbody:!0,tfoot:!0},td:{td:!0,th:!0},tfoot:{tbody:!0},th:{td:!0,th:!0},thead:{tbody:!0,tfoot:!0},tr:{tr:!0}},doNotIndent:{pre:!0},allowUnquoted:!0,allowMissing:!0,caseFold:!0},v={autoSelfClosers:{},implicitlyClosed:{},contextGrabbers:{},doNotIndent:{},allowUnquoted:!1,allowMissing:!1,allowMissingTagName:!1,caseFold:!1};o.defineMode("xml",function(C,b){var S=C.indentUnit,s={},h=b.htmlMode?p:v;for(var g in h)s[g]=h[g];for(var g in b)s[g]=b[g];var T,w;function c(y,K){function X(le){return K.tokenize=le,le(y,K)}var N=y.next();if(N=="<")return y.eat("!")?y.eat("[")?y.match("CDATA[")?X(z("atom","]]>")):null:y.match("--")?X(z("comment","-->")):y.match("DOCTYPE",!0,!0)?(y.eatWhile(/[\w\._\-]/),X(M(1))):null:y.eat("?")?(y.eatWhile(/[\w\._\-]/),K.tokenize=z("meta","?>"),"meta"):(T=y.eat("/")?"closeTag":"openTag",K.tokenize=d,"tag bracket");if(N=="&"){var R;return y.eat("#")?y.eat("x")?R=y.eatWhile(/[a-fA-F\d]/)&&y.eat(";"):R=y.eatWhile(/[\d]/)&&y.eat(";"):R=y.eatWhile(/[\w\.\-:]/)&&y.eat(";"),R?"atom":"error"}else return y.eatWhile(/[^&<]/),null}c.isInText=!0;function d(y,K){var X=y.next();if(X==">"||X=="/"&&y.eat(">"))return K.tokenize=c,T=X==">"?"endTag":"selfcloseTag","tag bracket";if(X=="=")return T="equals",null;if(X=="<"){K.tokenize=c,K.state=G,K.tagName=K.tagStart=null;var N=K.tokenize(y,K);return N?N+" tag error":"tag error"}else return/[\'\"]/.test(X)?(K.tokenize=k(X),K.stringStartCol=y.column(),K.tokenize(y,K)):(y.match(/^[^\s\u00a0=<>\"\']*[^\s\u00a0=<>\"\'\/]/),"word")}function k(y){var K=function(X,N){for(;!X.eol();)if(X.next()==y){N.tokenize=d;break}return"string"};return K.isInAttribute=!0,K}function z(y,K){return function(X,N){for(;!X.eol();){if(X.match(K)){N.tokenize=c;break}X.next()}return y}}function M(y){return function(K,X){for(var N;(N=K.next())!=null;){if(N=="<")return X.tokenize=M(y+1),X.tokenize(K,X);if(N==">")if(y==1){X.tokenize=c;break}else return X.tokenize=M(y-1),X.tokenize(K,X)}return"meta"}}function _(y){return y&&y.toLowerCase()}function W(y,K,X){this.prev=y.context,this.tagName=K||"",this.indent=y.indented,this.startOfLine=X,(s.doNotIndent.hasOwnProperty(K)||y.context&&y.context.noIndent)&&(this.noIndent=!0)}function E(y){y.context&&(y.context=y.context.prev)}function O(y,K){for(var X;;){if(!y.context||(X=y.context.tagName,!s.contextGrabbers.hasOwnProperty(_(X))||!s.contextGrabbers[_(X)].hasOwnProperty(_(K))))return;E(y)}}function G(y,K,X){return y=="openTag"?(X.tagStart=K.column(),J):y=="closeTag"?re:G}function J(y,K,X){return y=="word"?(X.tagName=K.current(),w="tag",D):s.allowMissingTagName&&y=="endTag"?(w="tag bracket",D(y,K,X)):(w="error",J)}function re(y,K,X){if(y=="word"){var N=K.current();return X.context&&X.context.tagName!=N&&s.implicitlyClosed.hasOwnProperty(_(X.context.tagName))&&E(X),X.context&&X.context.tagName==N||s.matchClosing===!1?(w="tag",q):(w="tag error",I)}else return s.allowMissingTagName&&y=="endTag"?(w="tag bracket",q(y,K,X)):(w="error",I)}function q(y,K,X){return y!="endTag"?(w="error",q):(E(X),G)}function I(y,K,X){return w="error",q(y,K,X)}function D(y,K,X){if(y=="word")return w="attribute",Q;if(y=="endTag"||y=="selfcloseTag"){var N=X.tagName,R=X.tagStart;return X.tagName=X.tagStart=null,y=="selfcloseTag"||s.autoSelfClosers.hasOwnProperty(_(N))?O(X,N):(O(X,N),X.context=new W(X,N,R==X.indented)),G}return w="error",D}function Q(y,K,X){return y=="equals"?j:(s.allowMissing||(w="error"),D(y,K,X))}function j(y,K,X){return y=="string"?V:y=="word"&&s.allowUnquoted?(w="string",D):(w="error",D(y,K,X))}function V(y,K,X){return y=="string"?V:D(y,K,X)}return{startState:function(y){var K={tokenize:c,state:G,indented:y||0,tagName:null,tagStart:null,context:null};return y!=null&&(K.baseIndent=y),K},token:function(y,K){if(!K.tagName&&y.sol()&&(K.indented=y.indentation()),y.eatSpace())return null;T=null;var X=K.tokenize(y,K);return(X||T)&&X!="comment"&&(w=null,K.state=K.state(T||X,y,K),w&&(X=w=="error"?X+" error":w)),X},indent:function(y,K,X){var N=y.context;if(y.tokenize.isInAttribute)return y.tagStart==y.indented?y.stringStartCol+1:y.indented+S;if(N&&N.noIndent)return o.Pass;if(y.tokenize!=d&&y.tokenize!=c)return X?X.match(/^(\s*)/)[0].length:0;if(y.tagName)return s.multilineTagIndentPastTag!==!1?y.tagStart+y.tagName.length+2:y.tagStart+S*(s.multilineTagIndentFactor||1);if(s.alignCDATA&&/$/,blockCommentStart:"",configuration:s.htmlMode?"html":"xml",helperType:s.htmlMode?"html":"xml",skipAttribute:function(y){y.state==j&&(y.state=D)},xmlCurrentTag:function(y){return y.tagName?{name:y.tagName,close:y.type=="closeTag"}:null},xmlCurrentContext:function(y){for(var K=[],X=y.context;X;X=X.prev)K.push(X.tagName);return K.reverse()}}}),o.defineMIME("text/xml","xml"),o.defineMIME("application/xml","xml"),o.mimeModes.hasOwnProperty("text/html")||o.defineMIME("text/html",{name:"xml",htmlMode:!0})})});var vn=Ke((Is,Ns)=>{(function(o){typeof Is=="object"&&typeof Ns=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("javascript",function(p,v){var C=p.indentUnit,b=v.statementIndent,S=v.jsonld,s=v.json||S,h=v.trackScope!==!1,g=v.typescript,T=v.wordCharacters||/[\w$\xa1-\uffff]/,w=(function(){function x(pt){return{type:pt,style:"keyword"}}var P=x("keyword a"),ae=x("keyword b"),he=x("keyword c"),ne=x("keyword d"),ye=x("operator"),Xe={type:"atom",style:"atom"};return{if:x("if"),while:P,with:P,else:ae,do:ae,try:ae,finally:ae,return:ne,break:ne,continue:ne,new:x("new"),delete:he,void:he,throw:he,debugger:x("debugger"),var:x("var"),const:x("var"),let:x("var"),function:x("function"),catch:x("catch"),for:x("for"),switch:x("switch"),case:x("case"),default:x("default"),in:ye,typeof:ye,instanceof:ye,true:Xe,false:Xe,null:Xe,undefined:Xe,NaN:Xe,Infinity:Xe,this:x("this"),class:x("class"),super:x("atom"),yield:he,export:x("export"),import:x("import"),extends:he,await:he}})(),c=/[+\-*&%=<>!?|~^@]/,d=/^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/;function k(x){for(var P=!1,ae,he=!1;(ae=x.next())!=null;){if(!P){if(ae=="/"&&!he)return;ae=="["?he=!0:he&&ae=="]"&&(he=!1)}P=!P&&ae=="\\"}}var z,M;function _(x,P,ae){return z=x,M=ae,P}function W(x,P){var ae=x.next();if(ae=='"'||ae=="'")return P.tokenize=E(ae),P.tokenize(x,P);if(ae=="."&&x.match(/^\d[\d_]*(?:[eE][+\-]?[\d_]+)?/))return _("number","number");if(ae=="."&&x.match(".."))return _("spread","meta");if(/[\[\]{}\(\),;\:\.]/.test(ae))return _(ae);if(ae=="="&&x.eat(">"))return _("=>","operator");if(ae=="0"&&x.match(/^(?:x[\dA-Fa-f_]+|o[0-7_]+|b[01_]+)n?/))return _("number","number");if(/\d/.test(ae))return x.match(/^[\d_]*(?:n|(?:\.[\d_]*)?(?:[eE][+\-]?[\d_]+)?)?/),_("number","number");if(ae=="/")return x.eat("*")?(P.tokenize=O,O(x,P)):x.eat("/")?(x.skipToEnd(),_("comment","comment")):Bt(x,P,1)?(k(x),x.match(/^\b(([gimyus])(?![gimyus]*\2))+\b/),_("regexp","string-2")):(x.eat("="),_("operator","operator",x.current()));if(ae=="`")return P.tokenize=G,G(x,P);if(ae=="#"&&x.peek()=="!")return x.skipToEnd(),_("meta","meta");if(ae=="#"&&x.eatWhile(T))return _("variable","property");if(ae=="<"&&x.match("!--")||ae=="-"&&x.match("->")&&!/\S/.test(x.string.slice(0,x.start)))return x.skipToEnd(),_("comment","comment");if(c.test(ae))return(ae!=">"||!P.lexical||P.lexical.type!=">")&&(x.eat("=")?(ae=="!"||ae=="=")&&x.eat("="):/[<>*+\-|&?]/.test(ae)&&(x.eat(ae),ae==">"&&x.eat(ae))),ae=="?"&&x.eat(".")?_("."):_("operator","operator",x.current());if(T.test(ae)){x.eatWhile(T);var he=x.current();if(P.lastType!="."){if(w.propertyIsEnumerable(he)){var ne=w[he];return _(ne.type,ne.style,he)}if(he=="async"&&x.match(/^(\s|\/\*([^*]|\*(?!\/))*?\*\/)*[\[\(\w]/,!1))return _("async","keyword",he)}return _("variable","variable",he)}}function E(x){return function(P,ae){var he=!1,ne;if(S&&P.peek()=="@"&&P.match(d))return ae.tokenize=W,_("jsonld-keyword","meta");for(;(ne=P.next())!=null&&!(ne==x&&!he);)he=!he&&ne=="\\";return he||(ae.tokenize=W),_("string","string")}}function O(x,P){for(var ae=!1,he;he=x.next();){if(he=="/"&&ae){P.tokenize=W;break}ae=he=="*"}return _("comment","comment")}function G(x,P){for(var ae=!1,he;(he=x.next())!=null;){if(!ae&&(he=="`"||he=="$"&&x.eat("{"))){P.tokenize=W;break}ae=!ae&&he=="\\"}return _("quasi","string-2",x.current())}var J="([{}])";function re(x,P){P.fatArrowAt&&(P.fatArrowAt=null);var ae=x.string.indexOf("=>",x.start);if(!(ae<0)){if(g){var he=/:\s*(?:\w+(?:<[^>]*>|\[\])?|\{[^}]*\})\s*$/.exec(x.string.slice(x.start,ae));he&&(ae=he.index)}for(var ne=0,ye=!1,Xe=ae-1;Xe>=0;--Xe){var pt=x.string.charAt(Xe),Et=J.indexOf(pt);if(Et>=0&&Et<3){if(!ne){++Xe;break}if(--ne==0){pt=="("&&(ye=!0);break}}else if(Et>=3&&Et<6)++ne;else if(T.test(pt))ye=!0;else if(/["'\/`]/.test(pt))for(;;--Xe){if(Xe==0)return;var Zr=x.string.charAt(Xe-1);if(Zr==pt&&x.string.charAt(Xe-2)!="\\"){Xe--;break}}else if(ye&&!ne){++Xe;break}}ye&&!ne&&(P.fatArrowAt=Xe)}}var q={atom:!0,number:!0,variable:!0,string:!0,regexp:!0,this:!0,import:!0,"jsonld-keyword":!0};function I(x,P,ae,he,ne,ye){this.indented=x,this.column=P,this.type=ae,this.prev=ne,this.info=ye,he!=null&&(this.align=he)}function D(x,P){if(!h)return!1;for(var ae=x.localVars;ae;ae=ae.next)if(ae.name==P)return!0;for(var he=x.context;he;he=he.prev)for(var ae=he.vars;ae;ae=ae.next)if(ae.name==P)return!0}function Q(x,P,ae,he,ne){var ye=x.cc;for(j.state=x,j.stream=ne,j.marked=null,j.cc=ye,j.style=P,x.lexical.hasOwnProperty("align")||(x.lexical.align=!0);;){var Xe=ye.length?ye.pop():s?Se:Oe;if(Xe(ae,he)){for(;ye.length&&ye[ye.length-1].lex;)ye.pop()();return j.marked?j.marked:ae=="variable"&&D(x,he)?"variable-2":P}}}var j={state:null,column:null,marked:null,cc:null};function V(){for(var x=arguments.length-1;x>=0;x--)j.cc.push(arguments[x])}function y(){return V.apply(null,arguments),!0}function K(x,P){for(var ae=P;ae;ae=ae.next)if(ae.name==x)return!0;return!1}function X(x){var P=j.state;if(j.marked="def",!!h){if(P.context){if(P.lexical.info=="var"&&P.context&&P.context.block){var ae=N(x,P.context);if(ae!=null){P.context=ae;return}}else if(!K(x,P.localVars)){P.localVars=new xe(x,P.localVars);return}}v.globalVars&&!K(x,P.globalVars)&&(P.globalVars=new xe(x,P.globalVars))}}function N(x,P){if(P)if(P.block){var ae=N(x,P.prev);return ae?ae==P.prev?P:new le(ae,P.vars,!0):null}else return K(x,P.vars)?P:new le(P.prev,new xe(x,P.vars),!1);else return null}function R(x){return x=="public"||x=="private"||x=="protected"||x=="abstract"||x=="readonly"}function le(x,P,ae){this.prev=x,this.vars=P,this.block=ae}function xe(x,P){this.name=x,this.next=P}var F=new xe("this",new xe("arguments",null));function L(){j.state.context=new le(j.state.context,j.state.localVars,!1),j.state.localVars=F}function de(){j.state.context=new le(j.state.context,j.state.localVars,!0),j.state.localVars=null}L.lex=de.lex=!0;function ze(){j.state.localVars=j.state.context.vars,j.state.context=j.state.context.prev}ze.lex=!0;function pe(x,P){var ae=function(){var he=j.state,ne=he.indented;if(he.lexical.type=="stat")ne=he.lexical.indented;else for(var ye=he.lexical;ye&&ye.type==")"&&ye.align;ye=ye.prev)ne=ye.indented;he.lexical=new I(ne,j.stream.column(),x,null,he.lexical,P)};return ae.lex=!0,ae}function Ee(){var x=j.state;x.lexical.prev&&(x.lexical.type==")"&&(x.indented=x.lexical.indented),x.lexical=x.lexical.prev)}Ee.lex=!0;function ge(x){function P(ae){return ae==x?y():x==";"||ae=="}"||ae==")"||ae=="]"?V():y(P)}return P}function Oe(x,P){return x=="var"?y(pe("vardef",P),Rr,ge(";"),Ee):x=="keyword a"?y(pe("form"),Ze,Oe,Ee):x=="keyword b"?y(pe("form"),Oe,Ee):x=="keyword d"?j.stream.match(/^\s*$/,!1)?y():y(pe("stat"),Je,ge(";"),Ee):x=="debugger"?y(ge(";")):x=="{"?y(pe("}"),de,De,Ee,ze):x==";"?y():x=="if"?(j.state.lexical.info=="else"&&j.state.cc[j.state.cc.length-1]==Ee&&j.state.cc.pop()(),y(pe("form"),Ze,Oe,Ee,Hr)):x=="function"?y(Ht):x=="for"?y(pe("form"),de,ei,Oe,ze,Ee):x=="class"||g&&P=="interface"?(j.marked="keyword",y(pe("form",x=="class"?x:P),Wr,Ee)):x=="variable"?g&&P=="declare"?(j.marked="keyword",y(Oe)):g&&(P=="module"||P=="enum"||P=="type")&&j.stream.match(/^\s*\w/,!1)?(j.marked="keyword",P=="enum"?y(Ae):P=="type"?y(ti,ge("operator"),Pe,ge(";")):y(pe("form"),Ct,ge("{"),pe("}"),De,Ee,Ee)):g&&P=="namespace"?(j.marked="keyword",y(pe("form"),Se,Oe,Ee)):g&&P=="abstract"?(j.marked="keyword",y(Oe)):y(pe("stat"),Ue):x=="switch"?y(pe("form"),Ze,ge("{"),pe("}","switch"),de,De,Ee,Ee,ze):x=="case"?y(Se,ge(":")):x=="default"?y(ge(":")):x=="catch"?y(pe("form"),L,qe,Oe,Ee,ze):x=="export"?y(pe("stat"),Ur,Ee):x=="import"?y(pe("stat"),gr,Ee):x=="async"?y(Oe):P=="@"?y(Se,Oe):V(pe("stat"),Se,ge(";"),Ee)}function qe(x){if(x=="(")return y($t,ge(")"))}function Se(x,P){return ke(x,P,!1)}function Be(x,P){return ke(x,P,!0)}function Ze(x){return x!="("?V():y(pe(")"),Je,ge(")"),Ee)}function ke(x,P,ae){if(j.state.fatArrowAt==j.stream.start){var he=ae?He:ce;if(x=="(")return y(L,pe(")"),H($t,")"),Ee,ge("=>"),he,ze);if(x=="variable")return V(L,Ct,ge("=>"),he,ze)}var ne=ae?Ge:Re;return q.hasOwnProperty(x)?y(ne):x=="function"?y(Ht,ne):x=="class"||g&&P=="interface"?(j.marked="keyword",y(pe("form"),to,Ee)):x=="keyword c"||x=="async"?y(ae?Be:Se):x=="("?y(pe(")"),Je,ge(")"),Ee,ne):x=="operator"||x=="spread"?y(ae?Be:Se):x=="["?y(pe("]"),at,Ee,ne):x=="{"?se(Me,"}",null,ne):x=="quasi"?V(U,ne):x=="new"?y(te(ae)):y()}function Je(x){return x.match(/[;\}\)\],]/)?V():V(Se)}function Re(x,P){return x==","?y(Je):Ge(x,P,!1)}function Ge(x,P,ae){var he=ae==!1?Re:Ge,ne=ae==!1?Se:Be;if(x=="=>")return y(L,ae?He:ce,ze);if(x=="operator")return/\+\+|--/.test(P)||g&&P=="!"?y(he):g&&P=="<"&&j.stream.match(/^([^<>]|<[^<>]*>)*>\s*\(/,!1)?y(pe(">"),H(Pe,">"),Ee,he):P=="?"?y(Se,ge(":"),ne):y(ne);if(x=="quasi")return V(U,he);if(x!=";"){if(x=="(")return se(Be,")","call",he);if(x==".")return y(we,he);if(x=="[")return y(pe("]"),Je,ge("]"),Ee,he);if(g&&P=="as")return j.marked="keyword",y(Pe,he);if(x=="regexp")return j.state.lastType=j.marked="operator",j.stream.backUp(j.stream.pos-j.stream.start-1),y(ne)}}function U(x,P){return x!="quasi"?V():P.slice(P.length-2)!="${"?y(U):y(Je,Z)}function Z(x){if(x=="}")return j.marked="string-2",j.state.tokenize=G,y(U)}function ce(x){return re(j.stream,j.state),V(x=="{"?Oe:Se)}function He(x){return re(j.stream,j.state),V(x=="{"?Oe:Be)}function te(x){return function(P){return P=="."?y(x?oe:fe):P=="variable"&&g?y(It,x?Ge:Re):V(x?Be:Se)}}function fe(x,P){if(P=="target")return j.marked="keyword",y(Re)}function oe(x,P){if(P=="target")return j.marked="keyword",y(Ge)}function Ue(x){return x==":"?y(Ee,Oe):V(Re,ge(";"),Ee)}function we(x){if(x=="variable")return j.marked="property",y()}function Me(x,P){if(x=="async")return j.marked="property",y(Me);if(x=="variable"||j.style=="keyword"){if(j.marked="property",P=="get"||P=="set")return y(Le);var ae;return g&&j.state.fatArrowAt==j.stream.start&&(ae=j.stream.match(/^\s*:\s*/,!1))&&(j.state.fatArrowAt=j.stream.pos+ae[0].length),y($)}else{if(x=="number"||x=="string")return j.marked=S?"property":j.style+" property",y($);if(x=="jsonld-keyword")return y($);if(g&&R(P))return j.marked="keyword",y(Me);if(x=="[")return y(Se,nt,ge("]"),$);if(x=="spread")return y(Be,$);if(P=="*")return j.marked="keyword",y(Me);if(x==":")return V($)}}function Le(x){return x!="variable"?V($):(j.marked="property",y(Ht))}function $(x){if(x==":")return y(Be);if(x=="(")return V(Ht)}function H(x,P,ae){function he(ne,ye){if(ae?ae.indexOf(ne)>-1:ne==","){var Xe=j.state.lexical;return Xe.info=="call"&&(Xe.pos=(Xe.pos||0)+1),y(function(pt,Et){return pt==P||Et==P?V():V(x)},he)}return ne==P||ye==P?y():ae&&ae.indexOf(";")>-1?V(x):y(ge(P))}return function(ne,ye){return ne==P||ye==P?y():V(x,he)}}function se(x,P,ae){for(var he=3;he"),Pe);if(x=="quasi")return V(_t,Rt)}function xt(x){if(x=="=>")return y(Pe)}function Ie(x){return x.match(/[\}\)\]]/)?y():x==","||x==";"?y(Ie):V(nr,Ie)}function nr(x,P){if(x=="variable"||j.style=="keyword")return j.marked="property",y(nr);if(P=="?"||x=="number"||x=="string")return y(nr);if(x==":")return y(Pe);if(x=="[")return y(ge("variable"),dt,ge("]"),nr);if(x=="(")return V(hr,nr);if(!x.match(/[;\}\)\],]/))return y()}function _t(x,P){return x!="quasi"?V():P.slice(P.length-2)!="${"?y(_t):y(Pe,it)}function it(x){if(x=="}")return j.marked="string-2",j.state.tokenize=G,y(_t)}function ot(x,P){return x=="variable"&&j.stream.match(/^\s*[?:]/,!1)||P=="?"?y(ot):x==":"?y(Pe):x=="spread"?y(ot):V(Pe)}function Rt(x,P){if(P=="<")return y(pe(">"),H(Pe,">"),Ee,Rt);if(P=="|"||x=="."||P=="&")return y(Pe);if(x=="[")return y(Pe,ge("]"),Rt);if(P=="extends"||P=="implements")return j.marked="keyword",y(Pe);if(P=="?")return y(Pe,ge(":"),Pe)}function It(x,P){if(P=="<")return y(pe(">"),H(Pe,">"),Ee,Rt)}function Wt(){return V(Pe,kt)}function kt(x,P){if(P=="=")return y(Pe)}function Rr(x,P){return P=="enum"?(j.marked="keyword",y(Ae)):V(Ct,nt,Ut,eo)}function Ct(x,P){if(g&&R(P))return j.marked="keyword",y(Ct);if(x=="variable")return X(P),y();if(x=="spread")return y(Ct);if(x=="[")return se(yn,"]");if(x=="{")return se(dr,"}")}function dr(x,P){return x=="variable"&&!j.stream.match(/^\s*:/,!1)?(X(P),y(Ut)):(x=="variable"&&(j.marked="property"),x=="spread"?y(Ct):x=="}"?V():x=="["?y(Se,ge("]"),ge(":"),dr):y(ge(":"),Ct,Ut))}function yn(){return V(Ct,Ut)}function Ut(x,P){if(P=="=")return y(Be)}function eo(x){if(x==",")return y(Rr)}function Hr(x,P){if(x=="keyword b"&&P=="else")return y(pe("form","else"),Oe,Ee)}function ei(x,P){if(P=="await")return y(ei);if(x=="(")return y(pe(")"),xn,Ee)}function xn(x){return x=="var"?y(Rr,pr):x=="variable"?y(pr):V(pr)}function pr(x,P){return x==")"?y():x==";"?y(pr):P=="in"||P=="of"?(j.marked="keyword",y(Se,pr)):V(Se,pr)}function Ht(x,P){if(P=="*")return j.marked="keyword",y(Ht);if(x=="variable")return X(P),y(Ht);if(x=="(")return y(L,pe(")"),H($t,")"),Ee,Pt,Oe,ze);if(g&&P=="<")return y(pe(">"),H(Wt,">"),Ee,Ht)}function hr(x,P){if(P=="*")return j.marked="keyword",y(hr);if(x=="variable")return X(P),y(hr);if(x=="(")return y(L,pe(")"),H($t,")"),Ee,Pt,ze);if(g&&P=="<")return y(pe(">"),H(Wt,">"),Ee,hr)}function ti(x,P){if(x=="keyword"||x=="variable")return j.marked="type",y(ti);if(P=="<")return y(pe(">"),H(Wt,">"),Ee)}function $t(x,P){return P=="@"&&y(Se,$t),x=="spread"?y($t):g&&R(P)?(j.marked="keyword",y($t)):g&&x=="this"?y(nt,Ut):V(Ct,nt,Ut)}function to(x,P){return x=="variable"?Wr(x,P):Kt(x,P)}function Wr(x,P){if(x=="variable")return X(P),y(Kt)}function Kt(x,P){if(P=="<")return y(pe(">"),H(Wt,">"),Ee,Kt);if(P=="extends"||P=="implements"||g&&x==",")return P=="implements"&&(j.marked="keyword"),y(g?Pe:Se,Kt);if(x=="{")return y(pe("}"),Gt,Ee)}function Gt(x,P){if(x=="async"||x=="variable"&&(P=="static"||P=="get"||P=="set"||g&&R(P))&&j.stream.match(/^\s+#?[\w$\xa1-\uffff]/,!1))return j.marked="keyword",y(Gt);if(x=="variable"||j.style=="keyword")return j.marked="property",y(Cr,Gt);if(x=="number"||x=="string")return y(Cr,Gt);if(x=="[")return y(Se,nt,ge("]"),Cr,Gt);if(P=="*")return j.marked="keyword",y(Gt);if(g&&x=="(")return V(hr,Gt);if(x==";"||x==",")return y(Gt);if(x=="}")return y();if(P=="@")return y(Se,Gt)}function Cr(x,P){if(P=="!"||P=="?")return y(Cr);if(x==":")return y(Pe,Ut);if(P=="=")return y(Be);var ae=j.state.lexical.prev,he=ae&&ae.info=="interface";return V(he?hr:Ht)}function Ur(x,P){return P=="*"?(j.marked="keyword",y(Gr,ge(";"))):P=="default"?(j.marked="keyword",y(Se,ge(";"))):x=="{"?y(H($r,"}"),Gr,ge(";")):V(Oe)}function $r(x,P){if(P=="as")return j.marked="keyword",y(ge("variable"));if(x=="variable")return V(Be,$r)}function gr(x){return x=="string"?y():x=="("?V(Se):x=="."?V(Re):V(Kr,Vt,Gr)}function Kr(x,P){return x=="{"?se(Kr,"}"):(x=="variable"&&X(P),P=="*"&&(j.marked="keyword"),y(_n))}function Vt(x){if(x==",")return y(Kr,Vt)}function _n(x,P){if(P=="as")return j.marked="keyword",y(Kr)}function Gr(x,P){if(P=="from")return j.marked="keyword",y(Se)}function at(x){return x=="]"?y():V(H(Be,"]"))}function Ae(){return V(pe("form"),Ct,ge("{"),pe("}"),H(ir,"}"),Ee,Ee)}function ir(){return V(Ct,Ut)}function kn(x,P){return x.lastType=="operator"||x.lastType==","||c.test(P.charAt(0))||/[,.]/.test(P.charAt(0))}function Bt(x,P,ae){return P.tokenize==W&&/^(?:operator|sof|keyword [bcd]|case|new|export|default|spread|[\[{}\(,;:]|=>)$/.test(P.lastType)||P.lastType=="quasi"&&/\{\s*$/.test(x.string.slice(0,x.pos-(ae||0)))}return{startState:function(x){var P={tokenize:W,lastType:"sof",cc:[],lexical:new I((x||0)-C,0,"block",!1),localVars:v.localVars,context:v.localVars&&new le(null,null,!1),indented:x||0};return v.globalVars&&typeof v.globalVars=="object"&&(P.globalVars=v.globalVars),P},token:function(x,P){if(x.sol()&&(P.lexical.hasOwnProperty("align")||(P.lexical.align=!1),P.indented=x.indentation(),re(x,P)),P.tokenize!=O&&x.eatSpace())return null;var ae=P.tokenize(x,P);return z=="comment"?ae:(P.lastType=z=="operator"&&(M=="++"||M=="--")?"incdec":z,Q(P,ae,z,M,x))},indent:function(x,P){if(x.tokenize==O||x.tokenize==G)return o.Pass;if(x.tokenize!=W)return 0;var ae=P&&P.charAt(0),he=x.lexical,ne;if(!/^\s*else\b/.test(P))for(var ye=x.cc.length-1;ye>=0;--ye){var Xe=x.cc[ye];if(Xe==Ee)he=he.prev;else if(Xe!=Hr&&Xe!=ze)break}for(;(he.type=="stat"||he.type=="form")&&(ae=="}"||(ne=x.cc[x.cc.length-1])&&(ne==Re||ne==Ge)&&!/^[,\.=+\-*:?[\(]/.test(P));)he=he.prev;b&&he.type==")"&&he.prev.type=="stat"&&(he=he.prev);var pt=he.type,Et=ae==pt;return pt=="vardef"?he.indented+(x.lastType=="operator"||x.lastType==","?he.info.length+1:0):pt=="form"&&ae=="{"?he.indented:pt=="form"?he.indented+C:pt=="stat"?he.indented+(kn(x,P)?b||C:0):he.info=="switch"&&!Et&&v.doubleIndentSwitch!=!1?he.indented+(/^(?:case|default)\b/.test(P)?C:2*C):he.align?he.column+(Et?0:1):he.indented+(Et?0:C)},electricInput:/^\s*(?:case .*?:|default:|\{|\})$/,blockCommentStart:s?null:"/*",blockCommentEnd:s?null:"*/",blockCommentContinue:s?null:" * ",lineComment:s?null:"//",fold:"brace",closeBrackets:"()[]{}''\"\"``",helperType:s?"json":"javascript",jsonldMode:S,jsonMode:s,expressionAllowed:Bt,skipExpression:function(x){Q(x,"atom","atom","true",new o.StringStream("",2,null))}}}),o.registerHelper("wordChars","javascript",/[\w$]/),o.defineMIME("text/javascript","javascript"),o.defineMIME("text/ecmascript","javascript"),o.defineMIME("application/javascript","javascript"),o.defineMIME("application/x-javascript","javascript"),o.defineMIME("application/ecmascript","javascript"),o.defineMIME("application/json",{name:"javascript",json:!0}),o.defineMIME("application/x-json",{name:"javascript",json:!0}),o.defineMIME("application/manifest+json",{name:"javascript",json:!0}),o.defineMIME("application/ld+json",{name:"javascript",jsonld:!0}),o.defineMIME("text/typescript",{name:"javascript",typescript:!0}),o.defineMIME("application/typescript",{name:"javascript",typescript:!0})})});var Qn=Ke((Os,Ps)=>{(function(o){typeof Os=="object"&&typeof Ps=="object"?o(We(),mn(),vn(),gn()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../xml/xml","../javascript/javascript","../css/css"],o):o(CodeMirror)})(function(o){"use strict";var p={script:[["lang",/(javascript|babel)/i,"javascript"],["type",/^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^module$|^$/i,"javascript"],["type",/./,"text/plain"],[null,null,"javascript"]],style:[["lang",/^css$/i,"css"],["type",/^(text\/)?(x-)?(stylesheet|css)$/i,"css"],["type",/./,"text/plain"],[null,null,"css"]]};function v(T,w,c){var d=T.current(),k=d.search(w);return k>-1?T.backUp(d.length-k):d.match(/<\/?$/)&&(T.backUp(d.length),T.match(w,!1)||T.match(d)),c}var C={};function b(T){var w=C[T];return w||(C[T]=new RegExp("\\s+"+T+`\\s*=\\s*('|")?([^'"]+)('|")?\\s*`))}function S(T,w){var c=T.match(b(w));return c?/^\s*(.*?)\s*$/.exec(c[2])[1]:""}function s(T,w){return new RegExp((w?"^":"")+"","i")}function h(T,w){for(var c in T)for(var d=w[c]||(w[c]=[]),k=T[c],z=k.length-1;z>=0;z--)d.unshift(k[z])}function g(T,w){for(var c=0;c=0;M--)d.script.unshift(["type",z[M].matches,z[M].mode]);function _(W,E){var O=c.token(W,E.htmlState),G=/\btag\b/.test(O),J;if(G&&!/[<>\s\/]/.test(W.current())&&(J=E.htmlState.tagName&&E.htmlState.tagName.toLowerCase())&&d.hasOwnProperty(J))E.inTag=J+" ";else if(E.inTag&&G&&/>$/.test(W.current())){var re=/^([\S]+) (.*)/.exec(E.inTag);E.inTag=null;var q=W.current()==">"&&g(d[re[1]],re[2]),I=o.getMode(T,q),D=s(re[1],!0),Q=s(re[1],!1);E.token=function(j,V){return j.match(D,!1)?(V.token=_,V.localState=V.localMode=null,null):v(j,Q,V.localMode.token(j,V.localState))},E.localMode=I,E.localState=o.startState(I,c.indent(E.htmlState,"",""))}else E.inTag&&(E.inTag+=W.current(),W.eol()&&(E.inTag+=" "));return O}return{startState:function(){var W=o.startState(c);return{token:_,inTag:null,localMode:null,localState:null,htmlState:W}},copyState:function(W){var E;return W.localState&&(E=o.copyState(W.localMode,W.localState)),{token:W.token,inTag:W.inTag,localMode:W.localMode,localState:E,htmlState:o.copyState(c,W.htmlState)}},token:function(W,E){return E.token(W,E)},indent:function(W,E,O){return!W.localMode||/^\s*<\//.test(E)?c.indent(W.htmlState,E,O):W.localMode.indent?W.localMode.indent(W.localState,E,O):o.Pass},innerMode:function(W){return{state:W.localState||W.htmlState,mode:W.localMode||c}}}},"xml","javascript","css"),o.defineMIME("text/html","htmlmixed")})});var Rs=Ke((Bs,js)=>{(function(o){typeof Bs=="object"&&typeof js=="object"?o(We(),Qn(),Yn()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../htmlmixed/htmlmixed","../../addon/mode/overlay"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("django:inner",function(){var p=["block","endblock","for","endfor","true","false","filter","endfilter","loop","none","self","super","if","elif","endif","as","else","import","with","endwith","without","context","ifequal","endifequal","ifnotequal","endifnotequal","extends","include","load","comment","endcomment","empty","url","static","trans","blocktrans","endblocktrans","now","regroup","lorem","ifchanged","endifchanged","firstof","debug","cycle","csrf_token","autoescape","endautoescape","spaceless","endspaceless","ssi","templatetag","verbatim","endverbatim","widthratio"],v=["add","addslashes","capfirst","center","cut","date","default","default_if_none","dictsort","dictsortreversed","divisibleby","escape","escapejs","filesizeformat","first","floatformat","force_escape","get_digit","iriencode","join","last","length","length_is","linebreaks","linebreaksbr","linenumbers","ljust","lower","make_list","phone2numeric","pluralize","pprint","random","removetags","rjust","safe","safeseq","slice","slugify","stringformat","striptags","time","timesince","timeuntil","title","truncatechars","truncatechars_html","truncatewords","truncatewords_html","unordered_list","upper","urlencode","urlize","urlizetrunc","wordcount","wordwrap","yesno"],C=["==","!=","<",">","<=",">="],b=["in","not","or","and"];p=new RegExp("^\\b("+p.join("|")+")\\b"),v=new RegExp("^\\b("+v.join("|")+")\\b"),C=new RegExp("^\\b("+C.join("|")+")\\b"),b=new RegExp("^\\b("+b.join("|")+")\\b");function S(c,d){if(c.match("{{"))return d.tokenize=h,"tag";if(c.match("{%"))return d.tokenize=g,"tag";if(c.match("{#"))return d.tokenize=T,"comment";for(;c.next()!=null&&!c.match(/\{[{%#]/,!1););return null}function s(c,d){return function(k,z){if(!z.escapeNext&&k.eat(c))z.tokenize=d;else{z.escapeNext&&(z.escapeNext=!1);var M=k.next();M=="\\"&&(z.escapeNext=!0)}return"string"}}function h(c,d){if(d.waitDot){if(d.waitDot=!1,c.peek()!=".")return"null";if(c.match(/\.\W+/))return"error";if(c.eat("."))return d.waitProperty=!0,"null";throw Error("Unexpected error while waiting for property.")}if(d.waitPipe){if(d.waitPipe=!1,c.peek()!="|")return"null";if(c.match(/\.\W+/))return"error";if(c.eat("|"))return d.waitFilter=!0,"null";throw Error("Unexpected error while waiting for filter.")}return d.waitProperty&&(d.waitProperty=!1,c.match(/\b(\w+)\b/))?(d.waitDot=!0,d.waitPipe=!0,"property"):d.waitFilter&&(d.waitFilter=!1,c.match(v))?"variable-2":c.eatSpace()?(d.waitProperty=!1,"null"):c.match(/\b\d+(\.\d+)?\b/)?"number":c.match("'")?(d.tokenize=s("'",d.tokenize),"string"):c.match('"')?(d.tokenize=s('"',d.tokenize),"string"):c.match(/\b(\w+)\b/)&&!d.foundVariable?(d.waitDot=!0,d.waitPipe=!0,"variable"):c.match("}}")?(d.waitProperty=null,d.waitFilter=null,d.waitDot=null,d.waitPipe=null,d.tokenize=S,"tag"):(c.next(),"null")}function g(c,d){if(d.waitDot){if(d.waitDot=!1,c.peek()!=".")return"null";if(c.match(/\.\W+/))return"error";if(c.eat("."))return d.waitProperty=!0,"null";throw Error("Unexpected error while waiting for property.")}if(d.waitPipe){if(d.waitPipe=!1,c.peek()!="|")return"null";if(c.match(/\.\W+/))return"error";if(c.eat("|"))return d.waitFilter=!0,"null";throw Error("Unexpected error while waiting for filter.")}if(d.waitProperty&&(d.waitProperty=!1,c.match(/\b(\w+)\b/)))return d.waitDot=!0,d.waitPipe=!0,"property";if(d.waitFilter&&(d.waitFilter=!1,c.match(v)))return"variable-2";if(c.eatSpace())return d.waitProperty=!1,"null";if(c.match(/\b\d+(\.\d+)?\b/))return"number";if(c.match("'"))return d.tokenize=s("'",d.tokenize),"string";if(c.match('"'))return d.tokenize=s('"',d.tokenize),"string";if(c.match(C))return"operator";if(c.match(b))return"keyword";var k=c.match(p);return k?(k[0]=="comment"&&(d.blockCommentTag=!0),"keyword"):c.match(/\b(\w+)\b/)?(d.waitDot=!0,d.waitPipe=!0,"variable"):c.match("%}")?(d.waitProperty=null,d.waitFilter=null,d.waitDot=null,d.waitPipe=null,d.blockCommentTag?(d.blockCommentTag=!1,d.tokenize=w):d.tokenize=S,"tag"):(c.next(),"null")}function T(c,d){return c.match(/^.*?#\}/)?d.tokenize=S:c.skipToEnd(),"comment"}function w(c,d){return c.match(/\{%\s*endcomment\s*%\}/,!1)?(d.tokenize=g,c.match("{%"),"tag"):(c.next(),"comment")}return{startState:function(){return{tokenize:S}},token:function(c,d){return d.tokenize(c,d)},blockCommentStart:"{% comment %}",blockCommentEnd:"{% endcomment %}"}}),o.defineMode("django",function(p){var v=o.getMode(p,"text/html"),C=o.getMode(p,"django:inner");return o.overlayMode(v,C)}),o.defineMIME("text/x-django","django")})});var Di=Ke((Hs,Ws)=>{(function(o){typeof Hs=="object"&&typeof Ws=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineSimpleMode=function(w,c){o.defineMode(w,function(d){return o.simpleMode(d,c)})},o.simpleMode=function(w,c){p(c,"start");var d={},k=c.meta||{},z=!1;for(var M in c)if(M!=k&&c.hasOwnProperty(M))for(var _=d[M]=[],W=c[M],E=0;E2&&O.token&&typeof O.token!="string"){for(var re=2;re-1)return o.Pass;var M=d.indent.length-1,_=w[d.state];e:for(;;){for(var W=0;W<_.length;W++){var E=_[W];if(E.data.dedent&&E.data.dedentIfLineStart!==!1){var O=E.regex.exec(k);if(O&&O[0]){M--,(E.next||E.push)&&(_=w[E.next||E.push]),k=k.slice(O[0].length);continue e}}}break}return M<0?0:d.indent[M]}}})});var Ks=Ke((Us,$s)=>{(function(o){typeof Us=="object"&&typeof $s=="object"?o(We(),Di()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../../addon/mode/simple"],o):o(CodeMirror)})(function(o){"use strict";var p="from",v=new RegExp("^(\\s*)\\b("+p+")\\b","i"),C=["run","cmd","entrypoint","shell"],b=new RegExp("^(\\s*)("+C.join("|")+")(\\s+\\[)","i"),S="expose",s=new RegExp("^(\\s*)("+S+")(\\s+)","i"),h=["arg","from","maintainer","label","env","add","copy","volume","user","workdir","onbuild","stopsignal","healthcheck","shell"],g=[p,S].concat(C).concat(h),T="("+g.join("|")+")",w=new RegExp("^(\\s*)"+T+"(\\s*)(#.*)?$","i"),c=new RegExp("^(\\s*)"+T+"(\\s+)","i");o.defineSimpleMode("dockerfile",{start:[{regex:/^\s*#.*$/,sol:!0,token:"comment"},{regex:v,token:[null,"keyword"],sol:!0,next:"from"},{regex:w,token:[null,"keyword",null,"error"],sol:!0},{regex:b,token:[null,"keyword",null],sol:!0,next:"array"},{regex:s,token:[null,"keyword",null],sol:!0,next:"expose"},{regex:c,token:[null,"keyword",null],sol:!0,next:"arguments"},{regex:/./,token:null}],from:[{regex:/\s*$/,token:null,next:"start"},{regex:/(\s*)(#.*)$/,token:[null,"error"],next:"start"},{regex:/(\s*\S+\s+)(as)/i,token:[null,"keyword"],next:"start"},{token:null,next:"start"}],single:[{regex:/(?:[^\\']|\\.)/,token:"string"},{regex:/'/,token:"string",pop:!0}],double:[{regex:/(?:[^\\"]|\\.)/,token:"string"},{regex:/"/,token:"string",pop:!0}],array:[{regex:/\]/,token:null,next:"start"},{regex:/"(?:[^\\"]|\\.)*"?/,token:"string"}],expose:[{regex:/\d+$/,token:"number",next:"start"},{regex:/[^\d]+$/,token:null,next:"start"},{regex:/\d+/,token:"number"},{regex:/[^\d]+/,token:null},{token:null,next:"start"}],arguments:[{regex:/^\s*#.*$/,sol:!0,token:"comment"},{regex:/"(?:[^\\"]|\\.)*"?$/,token:"string",next:"start"},{regex:/"/,token:"string",push:"double"},{regex:/'(?:[^\\']|\\.)*'?$/,token:"string",next:"start"},{regex:/'/,token:"string",push:"single"},{regex:/[^#"']+[\\`]$/,token:null},{regex:/[^#"']+$/,token:null,next:"start"},{regex:/[^#"']+/,token:null},{token:null,next:"start"}],meta:{lineComment:"#"}}),o.defineMIME("text/x-dockerfile","dockerfile")})});var Xs=Ke((Gs,Zs)=>{(function(o){typeof Gs=="object"&&typeof Zs=="object"?o(We()):typeof define=="function"&&define.amd?define(["../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.modeInfo=[{name:"APL",mime:"text/apl",mode:"apl",ext:["dyalog","apl"]},{name:"PGP",mimes:["application/pgp","application/pgp-encrypted","application/pgp-keys","application/pgp-signature"],mode:"asciiarmor",ext:["asc","pgp","sig"]},{name:"ASN.1",mime:"text/x-ttcn-asn",mode:"asn.1",ext:["asn","asn1"]},{name:"Asterisk",mime:"text/x-asterisk",mode:"asterisk",file:/^extensions\.conf$/i},{name:"Brainfuck",mime:"text/x-brainfuck",mode:"brainfuck",ext:["b","bf"]},{name:"C",mime:"text/x-csrc",mode:"clike",ext:["c","h","ino"]},{name:"C++",mime:"text/x-c++src",mode:"clike",ext:["cpp","c++","cc","cxx","hpp","h++","hh","hxx"],alias:["cpp"]},{name:"Cobol",mime:"text/x-cobol",mode:"cobol",ext:["cob","cpy","cbl"]},{name:"C#",mime:"text/x-csharp",mode:"clike",ext:["cs"],alias:["csharp","cs"]},{name:"Clojure",mime:"text/x-clojure",mode:"clojure",ext:["clj","cljc","cljx"]},{name:"ClojureScript",mime:"text/x-clojurescript",mode:"clojure",ext:["cljs"]},{name:"Closure Stylesheets (GSS)",mime:"text/x-gss",mode:"css",ext:["gss"]},{name:"CMake",mime:"text/x-cmake",mode:"cmake",ext:["cmake","cmake.in"],file:/^CMakeLists\.txt$/},{name:"CoffeeScript",mimes:["application/vnd.coffeescript","text/coffeescript","text/x-coffeescript"],mode:"coffeescript",ext:["coffee"],alias:["coffee","coffee-script"]},{name:"Common Lisp",mime:"text/x-common-lisp",mode:"commonlisp",ext:["cl","lisp","el"],alias:["lisp"]},{name:"Cypher",mime:"application/x-cypher-query",mode:"cypher",ext:["cyp","cypher"]},{name:"Cython",mime:"text/x-cython",mode:"python",ext:["pyx","pxd","pxi"]},{name:"Crystal",mime:"text/x-crystal",mode:"crystal",ext:["cr"]},{name:"CSS",mime:"text/css",mode:"css",ext:["css"]},{name:"CQL",mime:"text/x-cassandra",mode:"sql",ext:["cql"]},{name:"D",mime:"text/x-d",mode:"d",ext:["d"]},{name:"Dart",mimes:["application/dart","text/x-dart"],mode:"dart",ext:["dart"]},{name:"diff",mime:"text/x-diff",mode:"diff",ext:["diff","patch"]},{name:"Django",mime:"text/x-django",mode:"django"},{name:"Dockerfile",mime:"text/x-dockerfile",mode:"dockerfile",file:/^Dockerfile$/},{name:"DTD",mime:"application/xml-dtd",mode:"dtd",ext:["dtd"]},{name:"Dylan",mime:"text/x-dylan",mode:"dylan",ext:["dylan","dyl","intr"]},{name:"EBNF",mime:"text/x-ebnf",mode:"ebnf"},{name:"ECL",mime:"text/x-ecl",mode:"ecl",ext:["ecl"]},{name:"edn",mime:"application/edn",mode:"clojure",ext:["edn"]},{name:"Eiffel",mime:"text/x-eiffel",mode:"eiffel",ext:["e"]},{name:"Elm",mime:"text/x-elm",mode:"elm",ext:["elm"]},{name:"Embedded JavaScript",mime:"application/x-ejs",mode:"htmlembedded",ext:["ejs"]},{name:"Embedded Ruby",mime:"application/x-erb",mode:"htmlembedded",ext:["erb"]},{name:"Erlang",mime:"text/x-erlang",mode:"erlang",ext:["erl"]},{name:"Esper",mime:"text/x-esper",mode:"sql"},{name:"Factor",mime:"text/x-factor",mode:"factor",ext:["factor"]},{name:"FCL",mime:"text/x-fcl",mode:"fcl"},{name:"Forth",mime:"text/x-forth",mode:"forth",ext:["forth","fth","4th"]},{name:"Fortran",mime:"text/x-fortran",mode:"fortran",ext:["f","for","f77","f90","f95"]},{name:"F#",mime:"text/x-fsharp",mode:"mllike",ext:["fs"],alias:["fsharp"]},{name:"Gas",mime:"text/x-gas",mode:"gas",ext:["s"]},{name:"Gherkin",mime:"text/x-feature",mode:"gherkin",ext:["feature"]},{name:"GitHub Flavored Markdown",mime:"text/x-gfm",mode:"gfm",file:/^(readme|contributing|history)\.md$/i},{name:"Go",mime:"text/x-go",mode:"go",ext:["go"]},{name:"Groovy",mime:"text/x-groovy",mode:"groovy",ext:["groovy","gradle"],file:/^Jenkinsfile$/},{name:"HAML",mime:"text/x-haml",mode:"haml",ext:["haml"]},{name:"Haskell",mime:"text/x-haskell",mode:"haskell",ext:["hs"]},{name:"Haskell (Literate)",mime:"text/x-literate-haskell",mode:"haskell-literate",ext:["lhs"]},{name:"Haxe",mime:"text/x-haxe",mode:"haxe",ext:["hx"]},{name:"HXML",mime:"text/x-hxml",mode:"haxe",ext:["hxml"]},{name:"ASP.NET",mime:"application/x-aspx",mode:"htmlembedded",ext:["aspx"],alias:["asp","aspx"]},{name:"HTML",mime:"text/html",mode:"htmlmixed",ext:["html","htm","handlebars","hbs"],alias:["xhtml"]},{name:"HTTP",mime:"message/http",mode:"http"},{name:"IDL",mime:"text/x-idl",mode:"idl",ext:["pro"]},{name:"Pug",mime:"text/x-pug",mode:"pug",ext:["jade","pug"],alias:["jade"]},{name:"Java",mime:"text/x-java",mode:"clike",ext:["java"]},{name:"Java Server Pages",mime:"application/x-jsp",mode:"htmlembedded",ext:["jsp"],alias:["jsp"]},{name:"JavaScript",mimes:["text/javascript","text/ecmascript","application/javascript","application/x-javascript","application/ecmascript"],mode:"javascript",ext:["js"],alias:["ecmascript","js","node"]},{name:"JSON",mimes:["application/json","application/x-json"],mode:"javascript",ext:["json","map"],alias:["json5"]},{name:"JSON-LD",mime:"application/ld+json",mode:"javascript",ext:["jsonld"],alias:["jsonld"]},{name:"JSX",mime:"text/jsx",mode:"jsx",ext:["jsx"]},{name:"Jinja2",mime:"text/jinja2",mode:"jinja2",ext:["j2","jinja","jinja2"]},{name:"Julia",mime:"text/x-julia",mode:"julia",ext:["jl"],alias:["jl"]},{name:"Kotlin",mime:"text/x-kotlin",mode:"clike",ext:["kt"]},{name:"LESS",mime:"text/x-less",mode:"css",ext:["less"]},{name:"LiveScript",mime:"text/x-livescript",mode:"livescript",ext:["ls"],alias:["ls"]},{name:"Lua",mime:"text/x-lua",mode:"lua",ext:["lua"]},{name:"Markdown",mime:"text/x-markdown",mode:"markdown",ext:["markdown","md","mkd"]},{name:"mIRC",mime:"text/mirc",mode:"mirc"},{name:"MariaDB SQL",mime:"text/x-mariadb",mode:"sql"},{name:"Mathematica",mime:"text/x-mathematica",mode:"mathematica",ext:["m","nb","wl","wls"]},{name:"Modelica",mime:"text/x-modelica",mode:"modelica",ext:["mo"]},{name:"MUMPS",mime:"text/x-mumps",mode:"mumps",ext:["mps"]},{name:"MS SQL",mime:"text/x-mssql",mode:"sql"},{name:"mbox",mime:"application/mbox",mode:"mbox",ext:["mbox"]},{name:"MySQL",mime:"text/x-mysql",mode:"sql"},{name:"Nginx",mime:"text/x-nginx-conf",mode:"nginx",file:/nginx.*\.conf$/i},{name:"NSIS",mime:"text/x-nsis",mode:"nsis",ext:["nsh","nsi"]},{name:"NTriples",mimes:["application/n-triples","application/n-quads","text/n-triples"],mode:"ntriples",ext:["nt","nq"]},{name:"Objective-C",mime:"text/x-objectivec",mode:"clike",ext:["m"],alias:["objective-c","objc"]},{name:"Objective-C++",mime:"text/x-objectivec++",mode:"clike",ext:["mm"],alias:["objective-c++","objc++"]},{name:"OCaml",mime:"text/x-ocaml",mode:"mllike",ext:["ml","mli","mll","mly"]},{name:"Octave",mime:"text/x-octave",mode:"octave",ext:["m"]},{name:"Oz",mime:"text/x-oz",mode:"oz",ext:["oz"]},{name:"Pascal",mime:"text/x-pascal",mode:"pascal",ext:["p","pas"]},{name:"PEG.js",mime:"null",mode:"pegjs",ext:["jsonld"]},{name:"Perl",mime:"text/x-perl",mode:"perl",ext:["pl","pm"]},{name:"PHP",mimes:["text/x-php","application/x-httpd-php","application/x-httpd-php-open"],mode:"php",ext:["php","php3","php4","php5","php7","phtml"]},{name:"Pig",mime:"text/x-pig",mode:"pig",ext:["pig"]},{name:"Plain Text",mime:"text/plain",mode:"null",ext:["txt","text","conf","def","list","log"]},{name:"PLSQL",mime:"text/x-plsql",mode:"sql",ext:["pls"]},{name:"PostgreSQL",mime:"text/x-pgsql",mode:"sql"},{name:"PowerShell",mime:"application/x-powershell",mode:"powershell",ext:["ps1","psd1","psm1"]},{name:"Properties files",mime:"text/x-properties",mode:"properties",ext:["properties","ini","in"],alias:["ini","properties"]},{name:"ProtoBuf",mime:"text/x-protobuf",mode:"protobuf",ext:["proto"]},{name:"Python",mime:"text/x-python",mode:"python",ext:["BUILD","bzl","py","pyw"],file:/^(BUCK|BUILD)$/},{name:"Puppet",mime:"text/x-puppet",mode:"puppet",ext:["pp"]},{name:"Q",mime:"text/x-q",mode:"q",ext:["q"]},{name:"R",mime:"text/x-rsrc",mode:"r",ext:["r","R"],alias:["rscript"]},{name:"reStructuredText",mime:"text/x-rst",mode:"rst",ext:["rst"],alias:["rst"]},{name:"RPM Changes",mime:"text/x-rpm-changes",mode:"rpm"},{name:"RPM Spec",mime:"text/x-rpm-spec",mode:"rpm",ext:["spec"]},{name:"Ruby",mime:"text/x-ruby",mode:"ruby",ext:["rb"],alias:["jruby","macruby","rake","rb","rbx"]},{name:"Rust",mime:"text/x-rustsrc",mode:"rust",ext:["rs"]},{name:"SAS",mime:"text/x-sas",mode:"sas",ext:["sas"]},{name:"Sass",mime:"text/x-sass",mode:"sass",ext:["sass"]},{name:"Scala",mime:"text/x-scala",mode:"clike",ext:["scala"]},{name:"Scheme",mime:"text/x-scheme",mode:"scheme",ext:["scm","ss"]},{name:"SCSS",mime:"text/x-scss",mode:"css",ext:["scss"]},{name:"Shell",mimes:["text/x-sh","application/x-sh"],mode:"shell",ext:["sh","ksh","bash"],alias:["bash","sh","zsh"],file:/^PKGBUILD$/},{name:"Sieve",mime:"application/sieve",mode:"sieve",ext:["siv","sieve"]},{name:"Slim",mimes:["text/x-slim","application/x-slim"],mode:"slim",ext:["slim"]},{name:"Smalltalk",mime:"text/x-stsrc",mode:"smalltalk",ext:["st"]},{name:"Smarty",mime:"text/x-smarty",mode:"smarty",ext:["tpl"]},{name:"Solr",mime:"text/x-solr",mode:"solr"},{name:"SML",mime:"text/x-sml",mode:"mllike",ext:["sml","sig","fun","smackspec"]},{name:"Soy",mime:"text/x-soy",mode:"soy",ext:["soy"],alias:["closure template"]},{name:"SPARQL",mime:"application/sparql-query",mode:"sparql",ext:["rq","sparql"],alias:["sparul"]},{name:"Spreadsheet",mime:"text/x-spreadsheet",mode:"spreadsheet",alias:["excel","formula"]},{name:"SQL",mime:"text/x-sql",mode:"sql",ext:["sql"]},{name:"SQLite",mime:"text/x-sqlite",mode:"sql"},{name:"Squirrel",mime:"text/x-squirrel",mode:"clike",ext:["nut"]},{name:"Stylus",mime:"text/x-styl",mode:"stylus",ext:["styl"]},{name:"Swift",mime:"text/x-swift",mode:"swift",ext:["swift"]},{name:"sTeX",mime:"text/x-stex",mode:"stex"},{name:"LaTeX",mime:"text/x-latex",mode:"stex",ext:["text","ltx","tex"],alias:["tex"]},{name:"SystemVerilog",mime:"text/x-systemverilog",mode:"verilog",ext:["v","sv","svh"]},{name:"Tcl",mime:"text/x-tcl",mode:"tcl",ext:["tcl"]},{name:"Textile",mime:"text/x-textile",mode:"textile",ext:["textile"]},{name:"TiddlyWiki",mime:"text/x-tiddlywiki",mode:"tiddlywiki"},{name:"Tiki wiki",mime:"text/tiki",mode:"tiki"},{name:"TOML",mime:"text/x-toml",mode:"toml",ext:["toml"]},{name:"Tornado",mime:"text/x-tornado",mode:"tornado"},{name:"troff",mime:"text/troff",mode:"troff",ext:["1","2","3","4","5","6","7","8","9"]},{name:"TTCN",mime:"text/x-ttcn",mode:"ttcn",ext:["ttcn","ttcn3","ttcnpp"]},{name:"TTCN_CFG",mime:"text/x-ttcn-cfg",mode:"ttcn-cfg",ext:["cfg"]},{name:"Turtle",mime:"text/turtle",mode:"turtle",ext:["ttl"]},{name:"TypeScript",mime:"application/typescript",mode:"javascript",ext:["ts"],alias:["ts"]},{name:"TypeScript-JSX",mime:"text/typescript-jsx",mode:"jsx",ext:["tsx"],alias:["tsx"]},{name:"Twig",mime:"text/x-twig",mode:"twig"},{name:"Web IDL",mime:"text/x-webidl",mode:"webidl",ext:["webidl"]},{name:"VB.NET",mime:"text/x-vb",mode:"vb",ext:["vb"]},{name:"VBScript",mime:"text/vbscript",mode:"vbscript",ext:["vbs"]},{name:"Velocity",mime:"text/velocity",mode:"velocity",ext:["vtl"]},{name:"Verilog",mime:"text/x-verilog",mode:"verilog",ext:["v"]},{name:"VHDL",mime:"text/x-vhdl",mode:"vhdl",ext:["vhd","vhdl"]},{name:"Vue.js Component",mimes:["script/x-vue","text/x-vue"],mode:"vue",ext:["vue"]},{name:"XML",mimes:["application/xml","text/xml"],mode:"xml",ext:["xml","xsl","xsd","svg"],alias:["rss","wsdl","xsd"]},{name:"XQuery",mime:"application/xquery",mode:"xquery",ext:["xy","xquery"]},{name:"Yacas",mime:"text/x-yacas",mode:"yacas",ext:["ys"]},{name:"YAML",mimes:["text/x-yaml","text/yaml"],mode:"yaml",ext:["yaml","yml"],alias:["yml"]},{name:"Z80",mime:"text/x-z80",mode:"z80",ext:["z80"]},{name:"mscgen",mime:"text/x-mscgen",mode:"mscgen",ext:["mscgen","mscin","msc"]},{name:"xu",mime:"text/x-xu",mode:"mscgen",ext:["xu"]},{name:"msgenny",mime:"text/x-msgenny",mode:"mscgen",ext:["msgenny"]},{name:"WebAssembly",mime:"text/webassembly",mode:"wast",ext:["wat","wast"]}];for(var p=0;p-1&&C.substring(s+1,C.length);if(h)return o.findModeByExtension(h)},o.findModeByName=function(C){C=C.toLowerCase();for(var b=0;b{(function(o){typeof Ys=="object"&&typeof Qs=="object"?o(We(),mn(),Xs()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../xml/xml","../meta"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("markdown",function(p,v){var C=o.getMode(p,"text/html"),b=C.name=="null";function S(F){if(o.findModeByName){var L=o.findModeByName(F);L&&(F=L.mime||L.mimes[0])}var de=o.getMode(p,F);return de.name=="null"?null:de}v.highlightFormatting===void 0&&(v.highlightFormatting=!1),v.maxBlockquoteDepth===void 0&&(v.maxBlockquoteDepth=0),v.taskLists===void 0&&(v.taskLists=!1),v.strikethrough===void 0&&(v.strikethrough=!1),v.emoji===void 0&&(v.emoji=!1),v.fencedCodeBlockHighlighting===void 0&&(v.fencedCodeBlockHighlighting=!0),v.fencedCodeBlockDefaultMode===void 0&&(v.fencedCodeBlockDefaultMode="text/plain"),v.xml===void 0&&(v.xml=!0),v.tokenTypeOverrides===void 0&&(v.tokenTypeOverrides={});var s={header:"header",code:"comment",quote:"quote",list1:"variable-2",list2:"variable-3",list3:"keyword",hr:"hr",image:"image",imageAltText:"image-alt-text",imageMarker:"image-marker",formatting:"formatting",linkInline:"link",linkEmail:"link",linkText:"link",linkHref:"string",em:"em",strong:"strong",strikethrough:"strikethrough",emoji:"builtin"};for(var h in s)s.hasOwnProperty(h)&&v.tokenTypeOverrides[h]&&(s[h]=v.tokenTypeOverrides[h]);var g=/^([*\-_])(?:\s*\1){2,}\s*$/,T=/^(?:[*\-+]|^[0-9]+([.)]))\s+/,w=/^\[(x| )\](?=\s)/i,c=v.allowAtxHeaderWithoutSpace?/^(#+)/:/^(#+)(?: |$)/,d=/^ {0,3}(?:\={1,}|-{2,})\s*$/,k=/^[^#!\[\]*_\\<>` "'(~:]+/,z=/^(~~~+|```+)[ \t]*([\w\/+#-]*)[^\n`]*$/,M=/^\s*\[[^\]]+?\]:.*$/,_=/[!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u0AF0\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E42\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC9\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDF3C-\uDF3E]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]/,W=" ";function E(F,L,de){return L.f=L.inline=de,de(F,L)}function O(F,L,de){return L.f=L.block=de,de(F,L)}function G(F){return!F||!/\S/.test(F.string)}function J(F){if(F.linkTitle=!1,F.linkHref=!1,F.linkText=!1,F.em=!1,F.strong=!1,F.strikethrough=!1,F.quote=0,F.indentedCode=!1,F.f==q){var L=b;if(!L){var de=o.innerMode(C,F.htmlState);L=de.mode.name=="xml"&&de.state.tagStart===null&&!de.state.context&&de.state.tokenize.isInText}L&&(F.f=j,F.block=re,F.htmlState=null)}return F.trailingSpace=0,F.trailingSpaceNewLine=!1,F.prevLine=F.thisLine,F.thisLine={stream:null},null}function re(F,L){var de=F.column()===L.indentation,ze=G(L.prevLine.stream),pe=L.indentedCode,Ee=L.prevLine.hr,ge=L.list!==!1,Oe=(L.listStack[L.listStack.length-1]||0)+3;L.indentedCode=!1;var qe=L.indentation;if(L.indentationDiff===null&&(L.indentationDiff=L.indentation,ge)){for(L.list=null;qe=4&&(pe||L.prevLine.fencedCodeEnd||L.prevLine.header||ze))return F.skipToEnd(),L.indentedCode=!0,s.code;if(F.eatSpace())return null;if(de&&L.indentation<=Oe&&(Ze=F.match(c))&&Ze[1].length<=6)return L.quote=0,L.header=Ze[1].length,L.thisLine.header=!0,v.highlightFormatting&&(L.formatting="header"),L.f=L.inline,D(L);if(L.indentation<=Oe&&F.eat(">"))return L.quote=de?1:L.quote+1,v.highlightFormatting&&(L.formatting="quote"),F.eatSpace(),D(L);if(!Be&&!L.setext&&de&&L.indentation<=Oe&&(Ze=F.match(T))){var ke=Ze[1]?"ol":"ul";return L.indentation=qe+F.current().length,L.list=!0,L.quote=0,L.listStack.push(L.indentation),L.em=!1,L.strong=!1,L.code=!1,L.strikethrough=!1,v.taskLists&&F.match(w,!1)&&(L.taskList=!0),L.f=L.inline,v.highlightFormatting&&(L.formatting=["list","list-"+ke]),D(L)}else{if(de&&L.indentation<=Oe&&(Ze=F.match(z,!0)))return L.quote=0,L.fencedEndRE=new RegExp(Ze[1]+"+ *$"),L.localMode=v.fencedCodeBlockHighlighting&&S(Ze[2]||v.fencedCodeBlockDefaultMode),L.localMode&&(L.localState=o.startState(L.localMode)),L.f=L.block=I,v.highlightFormatting&&(L.formatting="code-block"),L.code=-1,D(L);if(L.setext||(!Se||!ge)&&!L.quote&&L.list===!1&&!L.code&&!Be&&!M.test(F.string)&&(Ze=F.lookAhead(1))&&(Ze=Ze.match(d)))return L.setext?(L.header=L.setext,L.setext=0,F.skipToEnd(),v.highlightFormatting&&(L.formatting="header")):(L.header=Ze[0].charAt(0)=="="?1:2,L.setext=L.header),L.thisLine.header=!0,L.f=L.inline,D(L);if(Be)return F.skipToEnd(),L.hr=!0,L.thisLine.hr=!0,s.hr;if(F.peek()==="[")return E(F,L,N)}return E(F,L,L.inline)}function q(F,L){var de=C.token(F,L.htmlState);if(!b){var ze=o.innerMode(C,L.htmlState);(ze.mode.name=="xml"&&ze.state.tagStart===null&&!ze.state.context&&ze.state.tokenize.isInText||L.md_inside&&F.current().indexOf(">")>-1)&&(L.f=j,L.block=re,L.htmlState=null)}return de}function I(F,L){var de=L.listStack[L.listStack.length-1]||0,ze=L.indentation=F.quote?L.push(s.formatting+"-"+F.formatting[de]+"-"+F.quote):L.push("error"))}if(F.taskOpen)return L.push("meta"),L.length?L.join(" "):null;if(F.taskClosed)return L.push("property"),L.length?L.join(" "):null;if(F.linkHref?L.push(s.linkHref,"url"):(F.strong&&L.push(s.strong),F.em&&L.push(s.em),F.strikethrough&&L.push(s.strikethrough),F.emoji&&L.push(s.emoji),F.linkText&&L.push(s.linkText),F.code&&L.push(s.code),F.image&&L.push(s.image),F.imageAltText&&L.push(s.imageAltText,"link"),F.imageMarker&&L.push(s.imageMarker)),F.header&&L.push(s.header,s.header+"-"+F.header),F.quote&&(L.push(s.quote),!v.maxBlockquoteDepth||v.maxBlockquoteDepth>=F.quote?L.push(s.quote+"-"+F.quote):L.push(s.quote+"-"+v.maxBlockquoteDepth)),F.list!==!1){var ze=(F.listStack.length-1)%3;ze?ze===1?L.push(s.list2):L.push(s.list3):L.push(s.list1)}return F.trailingSpaceNewLine?L.push("trailing-space-new-line"):F.trailingSpace&&L.push("trailing-space-"+(F.trailingSpace%2?"a":"b")),L.length?L.join(" "):null}function Q(F,L){if(F.match(k,!0))return D(L)}function j(F,L){var de=L.text(F,L);if(typeof de<"u")return de;if(L.list)return L.list=null,D(L);if(L.taskList){var ze=F.match(w,!0)[1]===" ";return ze?L.taskOpen=!0:L.taskClosed=!0,v.highlightFormatting&&(L.formatting="task"),L.taskList=!1,D(L)}if(L.taskOpen=!1,L.taskClosed=!1,L.header&&F.match(/^#+$/,!0))return v.highlightFormatting&&(L.formatting="header"),D(L);var pe=F.next();if(L.linkTitle){L.linkTitle=!1;var Ee=pe;pe==="("&&(Ee=")"),Ee=(Ee+"").replace(/([.?*+^\[\]\\(){}|-])/g,"\\$1");var ge="^\\s*(?:[^"+Ee+"\\\\]+|\\\\\\\\|\\\\.)"+Ee;if(F.match(new RegExp(ge),!0))return s.linkHref}if(pe==="`"){var Oe=L.formatting;v.highlightFormatting&&(L.formatting="code"),F.eatWhile("`");var qe=F.current().length;if(L.code==0&&(!L.quote||qe==1))return L.code=qe,D(L);if(qe==L.code){var Se=D(L);return L.code=0,Se}else return L.formatting=Oe,D(L)}else if(L.code)return D(L);if(pe==="\\"&&(F.next(),v.highlightFormatting)){var Be=D(L),Ze=s.formatting+"-escape";return Be?Be+" "+Ze:Ze}if(pe==="!"&&F.match(/\[[^\]]*\] ?(?:\(|\[)/,!1))return L.imageMarker=!0,L.image=!0,v.highlightFormatting&&(L.formatting="image"),D(L);if(pe==="["&&L.imageMarker&&F.match(/[^\]]*\](\(.*?\)| ?\[.*?\])/,!1))return L.imageMarker=!1,L.imageAltText=!0,v.highlightFormatting&&(L.formatting="image"),D(L);if(pe==="]"&&L.imageAltText){v.highlightFormatting&&(L.formatting="image");var Be=D(L);return L.imageAltText=!1,L.image=!1,L.inline=L.f=y,Be}if(pe==="["&&!L.image)return L.linkText&&F.match(/^.*?\]/)||(L.linkText=!0,v.highlightFormatting&&(L.formatting="link")),D(L);if(pe==="]"&&L.linkText){v.highlightFormatting&&(L.formatting="link");var Be=D(L);return L.linkText=!1,L.inline=L.f=F.match(/\(.*?\)| ?\[.*?\]/,!1)?y:j,Be}if(pe==="<"&&F.match(/^(https?|ftps?):\/\/(?:[^\\>]|\\.)+>/,!1)){L.f=L.inline=V,v.highlightFormatting&&(L.formatting="link");var Be=D(L);return Be?Be+=" ":Be="",Be+s.linkInline}if(pe==="<"&&F.match(/^[^> \\]+@(?:[^\\>]|\\.)+>/,!1)){L.f=L.inline=V,v.highlightFormatting&&(L.formatting="link");var Be=D(L);return Be?Be+=" ":Be="",Be+s.linkEmail}if(v.xml&&pe==="<"&&F.match(/^(!--|\?|!\[CDATA\[|[a-z][a-z0-9-]*(?:\s+[a-z_:.\-]+(?:\s*=\s*[^>]+)?)*\s*(?:>|$))/i,!1)){var ke=F.string.indexOf(">",F.pos);if(ke!=-1){var Je=F.string.substring(F.start,ke);/markdown\s*=\s*('|"){0,1}1('|"){0,1}/.test(Je)&&(L.md_inside=!0)}return F.backUp(1),L.htmlState=o.startState(C),O(F,L,q)}if(v.xml&&pe==="<"&&F.match(/^\/\w*?>/))return L.md_inside=!1,"tag";if(pe==="*"||pe==="_"){for(var Re=1,Ge=F.pos==1?" ":F.string.charAt(F.pos-2);Re<3&&F.eat(pe);)Re++;var U=F.peek()||" ",Z=!/\s/.test(U)&&(!_.test(U)||/\s/.test(Ge)||_.test(Ge)),ce=!/\s/.test(Ge)&&(!_.test(Ge)||/\s/.test(U)||_.test(U)),He=null,te=null;if(Re%2&&(!L.em&&Z&&(pe==="*"||!ce||_.test(Ge))?He=!0:L.em==pe&&ce&&(pe==="*"||!Z||_.test(U))&&(He=!1)),Re>1&&(!L.strong&&Z&&(pe==="*"||!ce||_.test(Ge))?te=!0:L.strong==pe&&ce&&(pe==="*"||!Z||_.test(U))&&(te=!1)),te!=null||He!=null){v.highlightFormatting&&(L.formatting=He==null?"strong":te==null?"em":"strong em"),He===!0&&(L.em=pe),te===!0&&(L.strong=pe);var Se=D(L);return He===!1&&(L.em=!1),te===!1&&(L.strong=!1),Se}}else if(pe===" "&&(F.eat("*")||F.eat("_"))){if(F.peek()===" ")return D(L);F.backUp(1)}if(v.strikethrough){if(pe==="~"&&F.eatWhile(pe)){if(L.strikethrough){v.highlightFormatting&&(L.formatting="strikethrough");var Se=D(L);return L.strikethrough=!1,Se}else if(F.match(/^[^\s]/,!1))return L.strikethrough=!0,v.highlightFormatting&&(L.formatting="strikethrough"),D(L)}else if(pe===" "&&F.match("~~",!0)){if(F.peek()===" ")return D(L);F.backUp(2)}}if(v.emoji&&pe===":"&&F.match(/^(?:[a-z_\d+][a-z_\d+-]*|\-[a-z_\d+][a-z_\d+-]*):/)){L.emoji=!0,v.highlightFormatting&&(L.formatting="emoji");var fe=D(L);return L.emoji=!1,fe}return pe===" "&&(F.match(/^ +$/,!1)?L.trailingSpace++:L.trailingSpace&&(L.trailingSpaceNewLine=!0)),D(L)}function V(F,L){var de=F.next();if(de===">"){L.f=L.inline=j,v.highlightFormatting&&(L.formatting="link");var ze=D(L);return ze?ze+=" ":ze="",ze+s.linkInline}return F.match(/^[^>]+/,!0),s.linkInline}function y(F,L){if(F.eatSpace())return null;var de=F.next();return de==="("||de==="["?(L.f=L.inline=X(de==="("?")":"]"),v.highlightFormatting&&(L.formatting="link-string"),L.linkHref=!0,D(L)):"error"}var K={")":/^(?:[^\\\(\)]|\\.|\((?:[^\\\(\)]|\\.)*\))*?(?=\))/,"]":/^(?:[^\\\[\]]|\\.|\[(?:[^\\\[\]]|\\.)*\])*?(?=\])/};function X(F){return function(L,de){var ze=L.next();if(ze===F){de.f=de.inline=j,v.highlightFormatting&&(de.formatting="link-string");var pe=D(de);return de.linkHref=!1,pe}return L.match(K[F]),de.linkHref=!0,D(de)}}function N(F,L){return F.match(/^([^\]\\]|\\.)*\]:/,!1)?(L.f=R,F.next(),v.highlightFormatting&&(L.formatting="link"),L.linkText=!0,D(L)):E(F,L,j)}function R(F,L){if(F.match("]:",!0)){L.f=L.inline=le,v.highlightFormatting&&(L.formatting="link");var de=D(L);return L.linkText=!1,de}return F.match(/^([^\]\\]|\\.)+/,!0),s.linkText}function le(F,L){return F.eatSpace()?null:(F.match(/^[^\s]+/,!0),F.peek()===void 0?L.linkTitle=!0:F.match(/^(?:\s+(?:"(?:[^"\\]|\\.)+"|'(?:[^'\\]|\\.)+'|\((?:[^)\\]|\\.)+\)))?/,!0),L.f=L.inline=j,s.linkHref+" url")}var xe={startState:function(){return{f:re,prevLine:{stream:null},thisLine:{stream:null},block:re,htmlState:null,indentation:0,inline:j,text:Q,formatting:!1,linkText:!1,linkHref:!1,linkTitle:!1,code:0,em:!1,strong:!1,header:0,setext:0,hr:!1,taskList:!1,list:!1,listStack:[],quote:0,trailingSpace:0,trailingSpaceNewLine:!1,strikethrough:!1,emoji:!1,fencedEndRE:null}},copyState:function(F){return{f:F.f,prevLine:F.prevLine,thisLine:F.thisLine,block:F.block,htmlState:F.htmlState&&o.copyState(C,F.htmlState),indentation:F.indentation,localMode:F.localMode,localState:F.localMode?o.copyState(F.localMode,F.localState):null,inline:F.inline,text:F.text,formatting:!1,linkText:F.linkText,linkTitle:F.linkTitle,linkHref:F.linkHref,code:F.code,em:F.em,strong:F.strong,strikethrough:F.strikethrough,emoji:F.emoji,header:F.header,setext:F.setext,hr:F.hr,taskList:F.taskList,list:F.list,listStack:F.listStack.slice(0),quote:F.quote,indentedCode:F.indentedCode,trailingSpace:F.trailingSpace,trailingSpaceNewLine:F.trailingSpaceNewLine,md_inside:F.md_inside,fencedEndRE:F.fencedEndRE}},token:function(F,L){if(L.formatting=!1,F!=L.thisLine.stream){if(L.header=0,L.hr=!1,F.match(/^\s*$/,!0))return J(L),null;if(L.prevLine=L.thisLine,L.thisLine={stream:F},L.taskList=!1,L.trailingSpace=0,L.trailingSpaceNewLine=!1,!L.localState&&(L.f=L.block,L.f!=q)){var de=F.match(/^\s*/,!0)[0].replace(/\t/g,W).length;if(L.indentation=de,L.indentationDiff=null,de>0)return null}}return L.f(F,L)},innerMode:function(F){return F.block==q?{state:F.htmlState,mode:C}:F.localState?{state:F.localState,mode:F.localMode}:{state:F,mode:xe}},indent:function(F,L,de){return F.block==q&&C.indent?C.indent(F.htmlState,L,de):F.localState&&F.localMode.indent?F.localMode.indent(F.localState,L,de):o.Pass},blankLine:J,getType:D,blockCommentStart:"",closeBrackets:"()[]{}''\"\"``",fold:"markdown"};return xe},"xml"),o.defineMIME("text/markdown","markdown"),o.defineMIME("text/x-markdown","markdown")})});var eu=Ke((Vs,Js)=>{(function(o){typeof Vs=="object"&&typeof Js=="object"?o(We(),Jo(),Yn()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../markdown/markdown","../../addon/mode/overlay"],o):o(CodeMirror)})(function(o){"use strict";var p=/^((?:(?:aaas?|about|acap|adiumxtra|af[ps]|aim|apt|attachment|aw|beshare|bitcoin|bolo|callto|cap|chrome(?:-extension)?|cid|coap|com-eventbrite-attendee|content|crid|cvs|data|dav|dict|dlna-(?:playcontainer|playsingle)|dns|doi|dtn|dvb|ed2k|facetime|feed|file|finger|fish|ftp|geo|gg|git|gizmoproject|go|gopher|gtalk|h323|hcp|https?|iax|icap|icon|im|imap|info|ipn|ipp|irc[6s]?|iris(?:\.beep|\.lwz|\.xpc|\.xpcs)?|itms|jar|javascript|jms|keyparc|lastfm|ldaps?|magnet|mailto|maps|market|message|mid|mms|ms-help|msnim|msrps?|mtqp|mumble|mupdate|mvn|news|nfs|nih?|nntp|notes|oid|opaquelocktoken|palm|paparazzi|platform|pop|pres|proxy|psyc|query|res(?:ource)?|rmi|rsync|rtmp|rtsp|secondlife|service|session|sftp|sgn|shttp|sieve|sips?|skype|sm[bs]|snmp|soap\.beeps?|soldat|spotify|ssh|steam|svn|tag|teamspeak|tel(?:net)?|tftp|things|thismessage|tip|tn3270|tv|udp|unreal|urn|ut2004|vemmi|ventrilo|view-source|webcal|wss?|wtai|wyciwyg|xcon(?:-userid)?|xfire|xmlrpc\.beeps?|xmpp|xri|ymsgr|z39\.50[rs]?):(?:\/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]|\([^\s()<>]*\))+(?:\([^\s()<>]*\)|[^\s`*!()\[\]{};:'".,<>?«»“”‘’]))/i;o.defineMode("gfm",function(v,C){var b=0;function S(T){return T.code=!1,null}var s={startState:function(){return{code:!1,codeBlock:!1,ateSpace:!1}},copyState:function(T){return{code:T.code,codeBlock:T.codeBlock,ateSpace:T.ateSpace}},token:function(T,w){if(w.combineTokens=null,w.codeBlock)return T.match(/^```+/)?(w.codeBlock=!1,null):(T.skipToEnd(),null);if(T.sol()&&(w.code=!1),T.sol()&&T.match(/^```+/))return T.skipToEnd(),w.codeBlock=!0,null;if(T.peek()==="`"){T.next();var c=T.pos;T.eatWhile("`");var d=1+T.pos-c;return w.code?d===b&&(w.code=!1):(b=d,w.code=!0),null}else if(w.code)return T.next(),null;if(T.eatSpace())return w.ateSpace=!0,null;if((T.sol()||w.ateSpace)&&(w.ateSpace=!1,C.gitHubSpice!==!1)){if(T.match(/^(?:[a-zA-Z0-9\-_]+\/)?(?:[a-zA-Z0-9\-_]+@)?(?=.{0,6}\d)(?:[a-f0-9]{7,40}\b)/))return w.combineTokens=!0,"link";if(T.match(/^(?:[a-zA-Z0-9\-_]+\/)?(?:[a-zA-Z0-9\-_]+)?#[0-9]+\b/))return w.combineTokens=!0,"link"}return T.match(p)&&T.string.slice(T.start-2,T.start)!="]("&&(T.start==0||/\W/.test(T.string.charAt(T.start-1)))?(w.combineTokens=!0,"link"):(T.next(),null)},blankLine:S},h={taskLists:!0,strikethrough:!0,emoji:!0};for(var g in C)h[g]=C[g];return h.name="markdown",o.overlayMode(o.getMode(v,h),s)},"markdown"),o.defineMIME("text/x-gfm","gfm")})});var nu=Ke((tu,ru)=>{(function(o){typeof tu=="object"&&typeof ru=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("go",function(p){var v=p.indentUnit,C={break:!0,case:!0,chan:!0,const:!0,continue:!0,default:!0,defer:!0,else:!0,fallthrough:!0,for:!0,func:!0,go:!0,goto:!0,if:!0,import:!0,interface:!0,map:!0,package:!0,range:!0,return:!0,select:!0,struct:!0,switch:!0,type:!0,var:!0,bool:!0,byte:!0,complex64:!0,complex128:!0,float32:!0,float64:!0,int8:!0,int16:!0,int32:!0,int64:!0,string:!0,uint8:!0,uint16:!0,uint32:!0,uint64:!0,int:!0,uint:!0,uintptr:!0,error:!0,rune:!0,any:!0,comparable:!0},b={true:!0,false:!0,iota:!0,nil:!0,append:!0,cap:!0,close:!0,complex:!0,copy:!0,delete:!0,imag:!0,len:!0,make:!0,new:!0,panic:!0,print:!0,println:!0,real:!0,recover:!0},S=/[+\-*&^%:=<>!|\/]/,s;function h(k,z){var M=k.next();if(M=='"'||M=="'"||M=="`")return z.tokenize=g(M),z.tokenize(k,z);if(/[\d\.]/.test(M))return M=="."?k.match(/^[0-9_]+([eE][\-+]?[0-9_]+)?/):M=="0"?k.match(/^[xX][0-9a-fA-F_]+/)||k.match(/^[0-7_]+/):k.match(/^[0-9_]*\.?[0-9_]*([eE][\-+]?[0-9_]+)?/),"number";if(/[\[\]{}\(\),;\:\.]/.test(M))return s=M,null;if(M=="/"){if(k.eat("*"))return z.tokenize=T,T(k,z);if(k.eat("/"))return k.skipToEnd(),"comment"}if(S.test(M))return k.eatWhile(S),"operator";k.eatWhile(/[\w\$_\xa1-\uffff]/);var _=k.current();return C.propertyIsEnumerable(_)?((_=="case"||_=="default")&&(s="case"),"keyword"):b.propertyIsEnumerable(_)?"atom":"variable"}function g(k){return function(z,M){for(var _=!1,W,E=!1;(W=z.next())!=null;){if(W==k&&!_){E=!0;break}_=!_&&k!="`"&&W=="\\"}return(E||!(_||k=="`"))&&(M.tokenize=h),"string"}}function T(k,z){for(var M=!1,_;_=k.next();){if(_=="/"&&M){z.tokenize=h;break}M=_=="*"}return"comment"}function w(k,z,M,_,W){this.indented=k,this.column=z,this.type=M,this.align=_,this.prev=W}function c(k,z,M){return k.context=new w(k.indented,z,M,null,k.context)}function d(k){if(k.context.prev){var z=k.context.type;return(z==")"||z=="]"||z=="}")&&(k.indented=k.context.indented),k.context=k.context.prev}}return{startState:function(k){return{tokenize:null,context:new w((k||0)-v,0,"top",!1),indented:0,startOfLine:!0}},token:function(k,z){var M=z.context;if(k.sol()&&(M.align==null&&(M.align=!1),z.indented=k.indentation(),z.startOfLine=!0,M.type=="case"&&(M.type="}")),k.eatSpace())return null;s=null;var _=(z.tokenize||h)(k,z);return _=="comment"||(M.align==null&&(M.align=!0),s=="{"?c(z,k.column(),"}"):s=="["?c(z,k.column(),"]"):s=="("?c(z,k.column(),")"):s=="case"?M.type="case":(s=="}"&&M.type=="}"||s==M.type)&&d(z),z.startOfLine=!1),_},indent:function(k,z){if(k.tokenize!=h&&k.tokenize!=null)return o.Pass;var M=k.context,_=z&&z.charAt(0);if(M.type=="case"&&/^(?:case|default)\b/.test(z))return k.context.type="}",M.indented;var W=_==M.type;return M.align?M.column+(W?0:1):M.indented+(W?0:v)},electricChars:"{}):",closeBrackets:"()[]{}''\"\"``",fold:"brace",blockCommentStart:"/*",blockCommentEnd:"*/",lineComment:"//"}}),o.defineMIME("text/x-go","go")})});var au=Ke((iu,ou)=>{(function(o){typeof iu=="object"&&typeof ou=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("http",function(){function p(T,w){return T.skipToEnd(),w.cur=h,"error"}function v(T,w){return T.match(/^HTTP\/\d\.\d/)?(w.cur=C,"keyword"):T.match(/^[A-Z]+/)&&/[ \t]/.test(T.peek())?(w.cur=S,"keyword"):p(T,w)}function C(T,w){var c=T.match(/^\d+/);if(!c)return p(T,w);w.cur=b;var d=Number(c[0]);return d>=100&&d<200?"positive informational":d>=200&&d<300?"positive success":d>=300&&d<400?"positive redirect":d>=400&&d<500?"negative client-error":d>=500&&d<600?"negative server-error":"error"}function b(T,w){return T.skipToEnd(),w.cur=h,null}function S(T,w){return T.eatWhile(/\S/),w.cur=s,"string-2"}function s(T,w){return T.match(/^HTTP\/\d\.\d$/)?(w.cur=h,"keyword"):p(T,w)}function h(T){return T.sol()&&!T.eat(/[ \t]/)?T.match(/^.*?:/)?"atom":(T.skipToEnd(),"error"):(T.skipToEnd(),"string")}function g(T){return T.skipToEnd(),null}return{token:function(T,w){var c=w.cur;return c!=h&&c!=g&&T.eatSpace()?null:c(T,w)},blankLine:function(T){T.cur=g},startState:function(){return{cur:v}}}}),o.defineMIME("message/http","http")})});var uu=Ke((lu,su)=>{(function(o){typeof lu=="object"&&typeof su=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("jinja2",function(){var p=["and","as","block","endblock","by","cycle","debug","else","elif","extends","filter","endfilter","firstof","do","for","endfor","if","endif","ifchanged","endifchanged","ifequal","endifequal","ifnotequal","set","raw","endraw","endifnotequal","in","include","load","not","now","or","parsed","regroup","reversed","spaceless","call","endcall","macro","endmacro","endspaceless","ssi","templatetag","openblock","closeblock","openvariable","closevariable","without","context","openbrace","closebrace","opencomment","closecomment","widthratio","url","with","endwith","get_current_language","trans","endtrans","noop","blocktrans","endblocktrans","get_available_languages","get_current_language_bidi","pluralize","autoescape","endautoescape"],v=/^[+\-*&%=<>!?|~^]/,C=/^[:\[\(\{]/,b=["true","false"],S=/^(\d[+\-\*\/])?\d+(\.\d+)?/;p=new RegExp("(("+p.join(")|(")+"))\\b"),b=new RegExp("(("+b.join(")|(")+"))\\b");function s(h,g){var T=h.peek();if(g.incomment)return h.skipTo("#}")?(h.eatWhile(/\#|}/),g.incomment=!1):h.skipToEnd(),"comment";if(g.intag){if(g.operator){if(g.operator=!1,h.match(b))return"atom";if(h.match(S))return"number"}if(g.sign){if(g.sign=!1,h.match(b))return"atom";if(h.match(S))return"number"}if(g.instring)return T==g.instring&&(g.instring=!1),h.next(),"string";if(T=="'"||T=='"')return g.instring=T,h.next(),"string";if(g.inbraces>0&&T==")")h.next(),g.inbraces--;else if(T=="(")h.next(),g.inbraces++;else if(g.inbrackets>0&&T=="]")h.next(),g.inbrackets--;else if(T=="[")h.next(),g.inbrackets++;else{if(!g.lineTag&&(h.match(g.intag+"}")||h.eat("-")&&h.match(g.intag+"}")))return g.intag=!1,"tag";if(h.match(v))return g.operator=!0,"operator";if(h.match(C))g.sign=!0;else{if(h.column()==1&&g.lineTag&&h.match(p))return"keyword";if(h.eat(" ")||h.sol()){if(h.match(p))return"keyword";if(h.match(b))return"atom";if(h.match(S))return"number";h.sol()&&h.next()}else h.next()}}return"variable"}else if(h.eat("{")){if(h.eat("#"))return g.incomment=!0,h.skipTo("#}")?(h.eatWhile(/\#|}/),g.incomment=!1):h.skipToEnd(),"comment";if(T=h.eat(/\{|%/))return g.intag=T,g.inbraces=0,g.inbrackets=0,T=="{"&&(g.intag="}"),h.eat("-"),"tag"}else if(h.eat("#")){if(h.peek()=="#")return h.skipToEnd(),"comment";if(!h.eol())return g.intag=!0,g.lineTag=!0,g.inbraces=0,g.inbrackets=0,"tag"}h.next()}return{startState:function(){return{tokenize:s,inbrackets:0,inbraces:0}},token:function(h,g){var T=g.tokenize(h,g);return h.eol()&&g.lineTag&&!g.instring&&g.inbraces==0&&g.inbrackets==0&&(g.intag=!1,g.lineTag=!1),T},blockCommentStart:"{#",blockCommentEnd:"#}",lineComment:"##"}}),o.defineMIME("text/jinja2","jinja2")})});var du=Ke((cu,fu)=>{(function(o){typeof cu=="object"&&typeof fu=="object"?o(We(),mn(),vn()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../xml/xml","../javascript/javascript"],o):o(CodeMirror)})(function(o){"use strict";function p(C,b,S,s){this.state=C,this.mode=b,this.depth=S,this.prev=s}function v(C){return new p(o.copyState(C.mode,C.state),C.mode,C.depth,C.prev&&v(C.prev))}o.defineMode("jsx",function(C,b){var S=o.getMode(C,{name:"xml",allowMissing:!0,multilineTagIndentPastTag:!1,allowMissingTagName:!0}),s=o.getMode(C,b&&b.base||"javascript");function h(c){var d=c.tagName;c.tagName=null;var k=S.indent(c,"","");return c.tagName=d,k}function g(c,d){return d.context.mode==S?T(c,d,d.context):w(c,d,d.context)}function T(c,d,k){if(k.depth==2)return c.match(/^.*?\*\//)?k.depth=1:c.skipToEnd(),"comment";if(c.peek()=="{"){S.skipAttribute(k.state);var z=h(k.state),M=k.state.context;if(M&&c.match(/^[^>]*>\s*$/,!1)){for(;M.prev&&!M.startOfLine;)M=M.prev;M.startOfLine?z-=C.indentUnit:k.prev.state.lexical&&(z=k.prev.state.lexical.indented)}else k.depth==1&&(z+=C.indentUnit);return d.context=new p(o.startState(s,z),s,0,d.context),null}if(k.depth==1){if(c.peek()=="<")return S.skipAttribute(k.state),d.context=new p(o.startState(S,h(k.state)),S,0,d.context),null;if(c.match("//"))return c.skipToEnd(),"comment";if(c.match("/*"))return k.depth=2,g(c,d)}var _=S.token(c,k.state),W=c.current(),E;return/\btag\b/.test(_)?/>$/.test(W)?k.state.context?k.depth=0:d.context=d.context.prev:/^-1&&c.backUp(W.length-E),_}function w(c,d,k){if(c.peek()=="<"&&!c.match(/^<([^<>]|<[^>]*>)+,\s*>/,!1)&&s.expressionAllowed(c,k.state))return d.context=new p(o.startState(S,s.indent(k.state,"","")),S,0,d.context),s.skipExpression(k.state),null;var z=s.token(c,k.state);if(!z&&k.depth!=null){var M=c.current();M=="{"?k.depth++:M=="}"&&--k.depth==0&&(d.context=d.context.prev)}return z}return{startState:function(){return{context:new p(o.startState(s),s)}},copyState:function(c){return{context:v(c.context)}},token:g,indent:function(c,d,k){return c.context.mode.indent(c.context.state,d,k)},innerMode:function(c){return c.context}}},"xml","javascript"),o.defineMIME("text/jsx","jsx"),o.defineMIME("text/typescript-jsx",{name:"jsx",base:{name:"javascript",typescript:!0}})})});var gu=Ke((pu,hu)=>{(function(o){typeof pu=="object"&&typeof hu=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("nginx",function(p){function v(k){for(var z={},M=k.split(" "),_=0;_*\/]/.test(_)?g(null,"select-op"):/[;{}:\[\]]/.test(_)?g(null,_):(k.eatWhile(/[\w\\\-]/),g("variable","variable"))}function w(k,z){for(var M=!1,_;(_=k.next())!=null;){if(M&&_=="/"){z.tokenize=T;break}M=_=="*"}return g("comment","comment")}function c(k,z){for(var M=0,_;(_=k.next())!=null;){if(M>=2&&_==">"){z.tokenize=T;break}M=_=="-"?M+1:0}return g("comment","comment")}function d(k){return function(z,M){for(var _=!1,W;(W=z.next())!=null&&!(W==k&&!_);)_=!_&&W=="\\";return _||(M.tokenize=T),g("string","string")}}return{startState:function(k){return{tokenize:T,baseIndent:k||0,stack:[]}},token:function(k,z){if(k.eatSpace())return null;h=null;var M=z.tokenize(k,z),_=z.stack[z.stack.length-1];return h=="hash"&&_=="rule"?M="atom":M=="variable"&&(_=="rule"?M="number":(!_||_=="@media{")&&(M="tag")),_=="rule"&&/^[\{\};]$/.test(h)&&z.stack.pop(),h=="{"?_=="@media"?z.stack[z.stack.length-1]="@media{":z.stack.push("{"):h=="}"?z.stack.pop():h=="@media"?z.stack.push("@media"):_=="{"&&h!="comment"&&z.stack.push("rule"),M},indent:function(k,z){var M=k.stack.length;return/^\}/.test(z)&&(M-=k.stack[k.stack.length-1]=="rule"?2:1),k.baseIndent+M*s},electricChars:"}"}}),o.defineMIME("text/x-nginx-conf","nginx")})});var bu=Ke((mu,vu)=>{(function(o){typeof mu=="object"&&typeof vu=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("pascal",function(){function p(T){for(var w={},c=T.split(" "),d=0;d!?|\/]/;function S(T,w){var c=T.next();if(c=="#"&&w.startOfLine)return T.skipToEnd(),"meta";if(c=='"'||c=="'")return w.tokenize=s(c),w.tokenize(T,w);if(c=="("&&T.eat("*"))return w.tokenize=h,h(T,w);if(c=="{")return w.tokenize=g,g(T,w);if(/[\[\]\(\),;\:\.]/.test(c))return null;if(/\d/.test(c))return T.eatWhile(/[\w\.]/),"number";if(c=="/"&&T.eat("/"))return T.skipToEnd(),"comment";if(b.test(c))return T.eatWhile(b),"operator";T.eatWhile(/[\w\$_]/);var d=T.current().toLowerCase();return v.propertyIsEnumerable(d)?"keyword":C.propertyIsEnumerable(d)?"atom":"variable"}function s(T){return function(w,c){for(var d=!1,k,z=!1;(k=w.next())!=null;){if(k==T&&!d){z=!0;break}d=!d&&k=="\\"}return(z||!d)&&(c.tokenize=null),"string"}}function h(T,w){for(var c=!1,d;d=T.next();){if(d==")"&&c){w.tokenize=null;break}c=d=="*"}return"comment"}function g(T,w){for(var c;c=T.next();)if(c=="}"){w.tokenize=null;break}return"comment"}return{startState:function(){return{tokenize:null}},token:function(T,w){if(T.eatSpace())return null;var c=(w.tokenize||S)(T,w);return c=="comment"||c=="meta",c},electricChars:"{}"}}),o.defineMIME("text/x-pascal","pascal")})});var _u=Ke((yu,xu)=>{(function(o){typeof yu=="object"&&typeof xu=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("perl",function(){var S={"->":4,"++":4,"--":4,"**":4,"=~":4,"!~":4,"*":4,"/":4,"%":4,x:4,"+":4,"-":4,".":4,"<<":4,">>":4,"<":4,">":4,"<=":4,">=":4,lt:4,gt:4,le:4,ge:4,"==":4,"!=":4,"<=>":4,eq:4,ne:4,cmp:4,"~~":4,"&":4,"|":4,"^":4,"&&":4,"||":4,"//":4,"..":4,"...":4,"?":4,":":4,"=":4,"+=":4,"-=":4,"*=":4,",":4,"=>":4,"::":4,not:4,and:4,or:4,xor:4,BEGIN:[5,1],END:[5,1],PRINT:[5,1],PRINTF:[5,1],GETC:[5,1],READ:[5,1],READLINE:[5,1],DESTROY:[5,1],TIE:[5,1],TIEHANDLE:[5,1],UNTIE:[5,1],STDIN:5,STDIN_TOP:5,STDOUT:5,STDOUT_TOP:5,STDERR:5,STDERR_TOP:5,$ARG:5,$_:5,"@ARG":5,"@_":5,$LIST_SEPARATOR:5,'$"':5,$PROCESS_ID:5,$PID:5,$$:5,$REAL_GROUP_ID:5,$GID:5,"$(":5,$EFFECTIVE_GROUP_ID:5,$EGID:5,"$)":5,$PROGRAM_NAME:5,$0:5,$SUBSCRIPT_SEPARATOR:5,$SUBSEP:5,"$;":5,$REAL_USER_ID:5,$UID:5,"$<":5,$EFFECTIVE_USER_ID:5,$EUID:5,"$>":5,$a:5,$b:5,$COMPILING:5,"$^C":5,$DEBUGGING:5,"$^D":5,"${^ENCODING}":5,$ENV:5,"%ENV":5,$SYSTEM_FD_MAX:5,"$^F":5,"@F":5,"${^GLOBAL_PHASE}":5,"$^H":5,"%^H":5,"@INC":5,"%INC":5,$INPLACE_EDIT:5,"$^I":5,"$^M":5,$OSNAME:5,"$^O":5,"${^OPEN}":5,$PERLDB:5,"$^P":5,$SIG:5,"%SIG":5,$BASETIME:5,"$^T":5,"${^TAINT}":5,"${^UNICODE}":5,"${^UTF8CACHE}":5,"${^UTF8LOCALE}":5,$PERL_VERSION:5,"$^V":5,"${^WIN32_SLOPPY_STAT}":5,$EXECUTABLE_NAME:5,"$^X":5,$1:5,$MATCH:5,"$&":5,"${^MATCH}":5,$PREMATCH:5,"$`":5,"${^PREMATCH}":5,$POSTMATCH:5,"$'":5,"${^POSTMATCH}":5,$LAST_PAREN_MATCH:5,"$+":5,$LAST_SUBMATCH_RESULT:5,"$^N":5,"@LAST_MATCH_END":5,"@+":5,"%LAST_PAREN_MATCH":5,"%+":5,"@LAST_MATCH_START":5,"@-":5,"%LAST_MATCH_START":5,"%-":5,$LAST_REGEXP_CODE_RESULT:5,"$^R":5,"${^RE_DEBUG_FLAGS}":5,"${^RE_TRIE_MAXBUF}":5,$ARGV:5,"@ARGV":5,ARGV:5,ARGVOUT:5,$OUTPUT_FIELD_SEPARATOR:5,$OFS:5,"$,":5,$INPUT_LINE_NUMBER:5,$NR:5,"$.":5,$INPUT_RECORD_SEPARATOR:5,$RS:5,"$/":5,$OUTPUT_RECORD_SEPARATOR:5,$ORS:5,"$\\":5,$OUTPUT_AUTOFLUSH:5,"$|":5,$ACCUMULATOR:5,"$^A":5,$FORMAT_FORMFEED:5,"$^L":5,$FORMAT_PAGE_NUMBER:5,"$%":5,$FORMAT_LINES_LEFT:5,"$-":5,$FORMAT_LINE_BREAK_CHARACTERS:5,"$:":5,$FORMAT_LINES_PER_PAGE:5,"$=":5,$FORMAT_TOP_NAME:5,"$^":5,$FORMAT_NAME:5,"$~":5,"${^CHILD_ERROR_NATIVE}":5,$EXTENDED_OS_ERROR:5,"$^E":5,$EXCEPTIONS_BEING_CAUGHT:5,"$^S":5,$WARNING:5,"$^W":5,"${^WARNING_BITS}":5,$OS_ERROR:5,$ERRNO:5,"$!":5,"%OS_ERROR":5,"%ERRNO":5,"%!":5,$CHILD_ERROR:5,"$?":5,$EVAL_ERROR:5,"$@":5,$OFMT:5,"$#":5,"$*":5,$ARRAY_BASE:5,"$[":5,$OLD_PERL_VERSION:5,"$]":5,if:[1,1],elsif:[1,1],else:[1,1],while:[1,1],unless:[1,1],for:[1,1],foreach:[1,1],abs:1,accept:1,alarm:1,atan2:1,bind:1,binmode:1,bless:1,bootstrap:1,break:1,caller:1,chdir:1,chmod:1,chomp:1,chop:1,chown:1,chr:1,chroot:1,close:1,closedir:1,connect:1,continue:[1,1],cos:1,crypt:1,dbmclose:1,dbmopen:1,default:1,defined:1,delete:1,die:1,do:1,dump:1,each:1,endgrent:1,endhostent:1,endnetent:1,endprotoent:1,endpwent:1,endservent:1,eof:1,eval:1,exec:1,exists:1,exit:1,exp:1,fcntl:1,fileno:1,flock:1,fork:1,format:1,formline:1,getc:1,getgrent:1,getgrgid:1,getgrnam:1,gethostbyaddr:1,gethostbyname:1,gethostent:1,getlogin:1,getnetbyaddr:1,getnetbyname:1,getnetent:1,getpeername:1,getpgrp:1,getppid:1,getpriority:1,getprotobyname:1,getprotobynumber:1,getprotoent:1,getpwent:1,getpwnam:1,getpwuid:1,getservbyname:1,getservbyport:1,getservent:1,getsockname:1,getsockopt:1,given:1,glob:1,gmtime:1,goto:1,grep:1,hex:1,import:1,index:1,int:1,ioctl:1,join:1,keys:1,kill:1,last:1,lc:1,lcfirst:1,length:1,link:1,listen:1,local:2,localtime:1,lock:1,log:1,lstat:1,m:null,map:1,mkdir:1,msgctl:1,msgget:1,msgrcv:1,msgsnd:1,my:2,new:1,next:1,no:1,oct:1,open:1,opendir:1,ord:1,our:2,pack:1,package:1,pipe:1,pop:1,pos:1,print:1,printf:1,prototype:1,push:1,q:null,qq:null,qr:null,quotemeta:null,qw:null,qx:null,rand:1,read:1,readdir:1,readline:1,readlink:1,readpipe:1,recv:1,redo:1,ref:1,rename:1,require:1,reset:1,return:1,reverse:1,rewinddir:1,rindex:1,rmdir:1,s:null,say:1,scalar:1,seek:1,seekdir:1,select:1,semctl:1,semget:1,semop:1,send:1,setgrent:1,sethostent:1,setnetent:1,setpgrp:1,setpriority:1,setprotoent:1,setpwent:1,setservent:1,setsockopt:1,shift:1,shmctl:1,shmget:1,shmread:1,shmwrite:1,shutdown:1,sin:1,sleep:1,socket:1,socketpair:1,sort:1,splice:1,split:1,sprintf:1,sqrt:1,srand:1,stat:1,state:1,study:1,sub:1,substr:1,symlink:1,syscall:1,sysopen:1,sysread:1,sysseek:1,system:1,syswrite:1,tell:1,telldir:1,tie:1,tied:1,time:1,times:1,tr:null,truncate:1,uc:1,ucfirst:1,umask:1,undef:1,unlink:1,unpack:1,unshift:1,untie:1,use:1,utime:1,values:1,vec:1,wait:1,waitpid:1,wantarray:1,warn:1,when:1,write:1,y:null},s="string-2",h=/[goseximacplud]/;function g(c,d,k,z,M){return d.chain=null,d.style=null,d.tail=null,d.tokenize=function(_,W){for(var E=!1,O,G=0;O=_.next();){if(O===k[G]&&!E)return k[++G]!==void 0?(W.chain=k[G],W.style=z,W.tail=M):M&&_.eatWhile(M),W.tokenize=w,z;E=!E&&O=="\\"}return z},d.tokenize(c,d)}function T(c,d,k){return d.tokenize=function(z,M){return z.string==k&&(M.tokenize=w),z.skipToEnd(),"string"},d.tokenize(c,d)}function w(c,d){if(c.eatSpace())return null;if(d.chain)return g(c,d,d.chain,d.style,d.tail);if(c.match(/^(\-?((\d[\d_]*)?\.\d+(e[+-]?\d+)?|\d+\.\d*)|0x[\da-fA-F_]+|0b[01_]+|\d[\d_]*(e[+-]?\d+)?)/))return"number";if(c.match(/^<<(?=[_a-zA-Z])/))return c.eatWhile(/\w/),T(c,d,c.current().substr(2));if(c.sol()&&c.match(/^\=item(?!\w)/))return T(c,d,"=cut");var k=c.next();if(k=='"'||k=="'"){if(v(c,3)=="<<"+k){var z=c.pos;c.eatWhile(/\w/);var M=c.current().substr(1);if(M&&c.eat(k))return T(c,d,M);c.pos=z}return g(c,d,[k],"string")}if(k=="q"){var _=p(c,-2);if(!(_&&/\w/.test(_))){if(_=p(c,0),_=="x"){if(_=p(c,1),_=="(")return b(c,2),g(c,d,[")"],s,h);if(_=="[")return b(c,2),g(c,d,["]"],s,h);if(_=="{")return b(c,2),g(c,d,["}"],s,h);if(_=="<")return b(c,2),g(c,d,[">"],s,h);if(/[\^'"!~\/]/.test(_))return b(c,1),g(c,d,[c.eat(_)],s,h)}else if(_=="q"){if(_=p(c,1),_=="(")return b(c,2),g(c,d,[")"],"string");if(_=="[")return b(c,2),g(c,d,["]"],"string");if(_=="{")return b(c,2),g(c,d,["}"],"string");if(_=="<")return b(c,2),g(c,d,[">"],"string");if(/[\^'"!~\/]/.test(_))return b(c,1),g(c,d,[c.eat(_)],"string")}else if(_=="w"){if(_=p(c,1),_=="(")return b(c,2),g(c,d,[")"],"bracket");if(_=="[")return b(c,2),g(c,d,["]"],"bracket");if(_=="{")return b(c,2),g(c,d,["}"],"bracket");if(_=="<")return b(c,2),g(c,d,[">"],"bracket");if(/[\^'"!~\/]/.test(_))return b(c,1),g(c,d,[c.eat(_)],"bracket")}else if(_=="r"){if(_=p(c,1),_=="(")return b(c,2),g(c,d,[")"],s,h);if(_=="[")return b(c,2),g(c,d,["]"],s,h);if(_=="{")return b(c,2),g(c,d,["}"],s,h);if(_=="<")return b(c,2),g(c,d,[">"],s,h);if(/[\^'"!~\/]/.test(_))return b(c,1),g(c,d,[c.eat(_)],s,h)}else if(/[\^'"!~\/(\[{<]/.test(_)){if(_=="(")return b(c,1),g(c,d,[")"],"string");if(_=="[")return b(c,1),g(c,d,["]"],"string");if(_=="{")return b(c,1),g(c,d,["}"],"string");if(_=="<")return b(c,1),g(c,d,[">"],"string");if(/[\^'"!~\/]/.test(_))return g(c,d,[c.eat(_)],"string")}}}if(k=="m"){var _=p(c,-2);if(!(_&&/\w/.test(_))&&(_=c.eat(/[(\[{<\^'"!~\/]/),_)){if(/[\^'"!~\/]/.test(_))return g(c,d,[_],s,h);if(_=="(")return g(c,d,[")"],s,h);if(_=="[")return g(c,d,["]"],s,h);if(_=="{")return g(c,d,["}"],s,h);if(_=="<")return g(c,d,[">"],s,h)}}if(k=="s"){var _=/[\/>\]})\w]/.test(p(c,-2));if(!_&&(_=c.eat(/[(\[{<\^'"!~\/]/),_))return _=="["?g(c,d,["]","]"],s,h):_=="{"?g(c,d,["}","}"],s,h):_=="<"?g(c,d,[">",">"],s,h):_=="("?g(c,d,[")",")"],s,h):g(c,d,[_,_],s,h)}if(k=="y"){var _=/[\/>\]})\w]/.test(p(c,-2));if(!_&&(_=c.eat(/[(\[{<\^'"!~\/]/),_))return _=="["?g(c,d,["]","]"],s,h):_=="{"?g(c,d,["}","}"],s,h):_=="<"?g(c,d,[">",">"],s,h):_=="("?g(c,d,[")",")"],s,h):g(c,d,[_,_],s,h)}if(k=="t"){var _=/[\/>\]})\w]/.test(p(c,-2));if(!_&&(_=c.eat("r"),_&&(_=c.eat(/[(\[{<\^'"!~\/]/),_)))return _=="["?g(c,d,["]","]"],s,h):_=="{"?g(c,d,["}","}"],s,h):_=="<"?g(c,d,[">",">"],s,h):_=="("?g(c,d,[")",")"],s,h):g(c,d,[_,_],s,h)}if(k=="`")return g(c,d,[k],"variable-2");if(k=="/")return/~\s*$/.test(v(c))?g(c,d,[k],s,h):"operator";if(k=="$"){var z=c.pos;if(c.eatWhile(/\d/)||c.eat("{")&&c.eatWhile(/\d/)&&c.eat("}"))return"variable-2";c.pos=z}if(/[$@%]/.test(k)){var z=c.pos;if(c.eat("^")&&c.eat(/[A-Z]/)||!/[@$%&]/.test(p(c,-2))&&c.eat(/[=|\\\-#?@;:&`~\^!\[\]*'"$+.,\/<>()]/)){var _=c.current();if(S[_])return"variable-2"}c.pos=z}if(/[$@%&]/.test(k)&&(c.eatWhile(/[\w$]/)||c.eat("{")&&c.eatWhile(/[\w$]/)&&c.eat("}"))){var _=c.current();return S[_]?"variable-2":"variable"}if(k=="#"&&p(c,-2)!="$")return c.skipToEnd(),"comment";if(/[:+\-\^*$&%@=<>!?|\/~\.]/.test(k)){var z=c.pos;if(c.eatWhile(/[:+\-\^*$&%@=<>!?|\/~\.]/),S[c.current()])return"operator";c.pos=z}if(k=="_"&&c.pos==1){if(C(c,6)=="_END__")return g(c,d,["\0"],"comment");if(C(c,7)=="_DATA__")return g(c,d,["\0"],"variable-2");if(C(c,7)=="_C__")return g(c,d,["\0"],"string")}if(/\w/.test(k)){var z=c.pos;if(p(c,-2)=="{"&&(p(c,0)=="}"||c.eatWhile(/\w/)&&p(c,0)=="}"))return"string";c.pos=z}if(/[A-Z]/.test(k)){var W=p(c,-2),z=c.pos;if(c.eatWhile(/[A-Z_]/),/[\da-z]/.test(p(c,0)))c.pos=z;else{var _=S[c.current()];return _?(_[1]&&(_=_[0]),W!=":"?_==1?"keyword":_==2?"def":_==3?"atom":_==4?"operator":_==5?"variable-2":"meta":"meta"):"meta"}}if(/[a-zA-Z_]/.test(k)){var W=p(c,-2);c.eatWhile(/\w/);var _=S[c.current()];return _?(_[1]&&(_=_[0]),W!=":"?_==1?"keyword":_==2?"def":_==3?"atom":_==4?"operator":_==5?"variable-2":"meta":"meta"):"meta"}return null}return{startState:function(){return{tokenize:w,chain:null,style:null,tail:null}},token:function(c,d){return(d.tokenize||w)(c,d)},lineComment:"#"}}),o.registerHelper("wordChars","perl",/[\w$]/),o.defineMIME("text/x-perl","perl");function p(S,s){return S.string.charAt(S.pos+(s||0))}function v(S,s){if(s){var h=S.pos-s;return S.string.substr(h>=0?h:0,s)}else return S.string.substr(0,S.pos-1)}function C(S,s){var h=S.string.length,g=h-S.pos+1;return S.string.substr(S.pos,s&&s=(g=S.string.length-1)?S.pos=g:S.pos=h}})});var Su=Ke((ku,wu)=>{(function(o){typeof ku=="object"&&typeof wu=="object"?o(We(),Qn(),Vo()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../htmlmixed/htmlmixed","../clike/clike"],o):o(CodeMirror)})(function(o){"use strict";function p(T){for(var w={},c=T.split(" "),d=0;d\w/,!1)&&(w.tokenize=v([[["->",null]],[[/[\w]+/,"variable"]]],c,d)),"variable-2";for(var k=!1;!T.eol()&&(k||d===!1||!T.match("{$",!1)&&!T.match(/^(\$[a-zA-Z_][a-zA-Z0-9_]*|\$\{)/,!1));){if(!k&&T.match(c)){w.tokenize=null,w.tokStack.pop(),w.tokStack.pop();break}k=T.next()=="\\"&&!k}return"string"}var S="abstract and array as break case catch class clone const continue declare default do else elseif enddeclare endfor endforeach endif endswitch endwhile enum extends final for foreach function global goto if implements interface instanceof namespace new or private protected public static switch throw trait try use var while xor die echo empty exit eval include include_once isset list require require_once return print unset __halt_compiler self static parent yield insteadof finally readonly match",s="true false null TRUE FALSE NULL __CLASS__ __DIR__ __FILE__ __LINE__ __METHOD__ __FUNCTION__ __NAMESPACE__ __TRAIT__",h="func_num_args func_get_arg func_get_args strlen strcmp strncmp strcasecmp strncasecmp each error_reporting define defined trigger_error user_error set_error_handler restore_error_handler get_declared_classes get_loaded_extensions extension_loaded get_extension_funcs debug_backtrace constant bin2hex hex2bin sleep usleep time mktime gmmktime strftime gmstrftime strtotime date gmdate getdate localtime checkdate flush wordwrap htmlspecialchars htmlentities html_entity_decode md5 md5_file crc32 getimagesize image_type_to_mime_type phpinfo phpversion phpcredits strnatcmp strnatcasecmp substr_count strspn strcspn strtok strtoupper strtolower strpos strrpos strrev hebrev hebrevc nl2br basename dirname pathinfo stripslashes stripcslashes strstr stristr strrchr str_shuffle str_word_count strcoll substr substr_replace quotemeta ucfirst ucwords strtr addslashes addcslashes rtrim str_replace str_repeat count_chars chunk_split trim ltrim strip_tags similar_text explode implode setlocale localeconv parse_str str_pad chop strchr sprintf printf vprintf vsprintf sscanf fscanf parse_url urlencode urldecode rawurlencode rawurldecode readlink linkinfo link unlink exec system escapeshellcmd escapeshellarg passthru shell_exec proc_open proc_close rand srand getrandmax mt_rand mt_srand mt_getrandmax base64_decode base64_encode abs ceil floor round is_finite is_nan is_infinite bindec hexdec octdec decbin decoct dechex base_convert number_format fmod ip2long long2ip getenv putenv getopt microtime gettimeofday getrusage uniqid quoted_printable_decode set_time_limit get_cfg_var magic_quotes_runtime set_magic_quotes_runtime get_magic_quotes_gpc get_magic_quotes_runtime import_request_variables error_log serialize unserialize memory_get_usage memory_get_peak_usage var_dump var_export debug_zval_dump print_r highlight_file show_source highlight_string ini_get ini_get_all ini_set ini_alter ini_restore get_include_path set_include_path restore_include_path setcookie header headers_sent connection_aborted connection_status ignore_user_abort parse_ini_file is_uploaded_file move_uploaded_file intval floatval doubleval strval gettype settype is_null is_resource is_bool is_long is_float is_int is_integer is_double is_real is_numeric is_string is_array is_object is_scalar ereg ereg_replace eregi eregi_replace split spliti join sql_regcase dl pclose popen readfile rewind rmdir umask fclose feof fgetc fgets fgetss fread fopen fpassthru ftruncate fstat fseek ftell fflush fwrite fputs mkdir rename copy tempnam tmpfile file file_get_contents file_put_contents stream_select stream_context_create stream_context_set_params stream_context_set_option stream_context_get_options stream_filter_prepend stream_filter_append fgetcsv flock get_meta_tags stream_set_write_buffer set_file_buffer set_socket_blocking stream_set_blocking socket_set_blocking stream_get_meta_data stream_register_wrapper stream_wrapper_register stream_set_timeout socket_set_timeout socket_get_status realpath fnmatch fsockopen pfsockopen pack unpack get_browser crypt opendir closedir chdir getcwd rewinddir readdir dir glob fileatime filectime filegroup fileinode filemtime fileowner fileperms filesize filetype file_exists is_writable is_writeable is_readable is_executable is_file is_dir is_link stat lstat chown touch clearstatcache mail ob_start ob_flush ob_clean ob_end_flush ob_end_clean ob_get_flush ob_get_clean ob_get_length ob_get_level ob_get_status ob_get_contents ob_implicit_flush ob_list_handlers ksort krsort natsort natcasesort asort arsort sort rsort usort uasort uksort shuffle array_walk count end prev next reset current key min max in_array array_search extract compact array_fill range array_multisort array_push array_pop array_shift array_unshift array_splice array_slice array_merge array_merge_recursive array_keys array_values array_count_values array_reverse array_reduce array_pad array_flip array_change_key_case array_rand array_unique array_intersect array_intersect_assoc array_diff array_diff_assoc array_sum array_filter array_map array_chunk array_key_exists array_intersect_key array_combine array_column pos sizeof key_exists assert assert_options version_compare ftok str_rot13 aggregate session_name session_module_name session_save_path session_id session_regenerate_id session_decode session_register session_unregister session_is_registered session_encode session_start session_destroy session_unset session_set_save_handler session_cache_limiter session_cache_expire session_set_cookie_params session_get_cookie_params session_write_close preg_match preg_match_all preg_replace preg_replace_callback preg_split preg_quote preg_grep overload ctype_alnum ctype_alpha ctype_cntrl ctype_digit ctype_lower ctype_graph ctype_print ctype_punct ctype_space ctype_upper ctype_xdigit virtual apache_request_headers apache_note apache_lookup_uri apache_child_terminate apache_setenv apache_response_headers apache_get_version getallheaders mysql_connect mysql_pconnect mysql_close mysql_select_db mysql_create_db mysql_drop_db mysql_query mysql_unbuffered_query mysql_db_query mysql_list_dbs mysql_list_tables mysql_list_fields mysql_list_processes mysql_error mysql_errno mysql_affected_rows mysql_insert_id mysql_result mysql_num_rows mysql_num_fields mysql_fetch_row mysql_fetch_array mysql_fetch_assoc mysql_fetch_object mysql_data_seek mysql_fetch_lengths mysql_fetch_field mysql_field_seek mysql_free_result mysql_field_name mysql_field_table mysql_field_len mysql_field_type mysql_field_flags mysql_escape_string mysql_real_escape_string mysql_stat mysql_thread_id mysql_client_encoding mysql_get_client_info mysql_get_host_info mysql_get_proto_info mysql_get_server_info mysql_info mysql mysql_fieldname mysql_fieldtable mysql_fieldlen mysql_fieldtype mysql_fieldflags mysql_selectdb mysql_createdb mysql_dropdb mysql_freeresult mysql_numfields mysql_numrows mysql_listdbs mysql_listtables mysql_listfields mysql_db_name mysql_dbname mysql_tablename mysql_table_name pg_connect pg_pconnect pg_close pg_connection_status pg_connection_busy pg_connection_reset pg_host pg_dbname pg_port pg_tty pg_options pg_ping pg_query pg_send_query pg_cancel_query pg_fetch_result pg_fetch_row pg_fetch_assoc pg_fetch_array pg_fetch_object pg_fetch_all pg_affected_rows pg_get_result pg_result_seek pg_result_status pg_free_result pg_last_oid pg_num_rows pg_num_fields pg_field_name pg_field_num pg_field_size pg_field_type pg_field_prtlen pg_field_is_null pg_get_notify pg_get_pid pg_result_error pg_last_error pg_last_notice pg_put_line pg_end_copy pg_copy_to pg_copy_from pg_trace pg_untrace pg_lo_create pg_lo_unlink pg_lo_open pg_lo_close pg_lo_read pg_lo_write pg_lo_read_all pg_lo_import pg_lo_export pg_lo_seek pg_lo_tell pg_escape_string pg_escape_bytea pg_unescape_bytea pg_client_encoding pg_set_client_encoding pg_meta_data pg_convert pg_insert pg_update pg_delete pg_select pg_exec pg_getlastoid pg_cmdtuples pg_errormessage pg_numrows pg_numfields pg_fieldname pg_fieldsize pg_fieldtype pg_fieldnum pg_fieldprtlen pg_fieldisnull pg_freeresult pg_result pg_loreadall pg_locreate pg_lounlink pg_loopen pg_loclose pg_loread pg_lowrite pg_loimport pg_loexport http_response_code get_declared_traits getimagesizefromstring socket_import_stream stream_set_chunk_size trait_exists header_register_callback class_uses session_status session_register_shutdown echo print global static exit array empty eval isset unset die include require include_once require_once json_decode json_encode json_last_error json_last_error_msg curl_close curl_copy_handle curl_errno curl_error curl_escape curl_exec curl_file_create curl_getinfo curl_init curl_multi_add_handle curl_multi_close curl_multi_exec curl_multi_getcontent curl_multi_info_read curl_multi_init curl_multi_remove_handle curl_multi_select curl_multi_setopt curl_multi_strerror curl_pause curl_reset curl_setopt_array curl_setopt curl_share_close curl_share_init curl_share_setopt curl_strerror curl_unescape curl_version mysqli_affected_rows mysqli_autocommit mysqli_change_user mysqli_character_set_name mysqli_close mysqli_commit mysqli_connect_errno mysqli_connect_error mysqli_connect mysqli_data_seek mysqli_debug mysqli_dump_debug_info mysqli_errno mysqli_error_list mysqli_error mysqli_fetch_all mysqli_fetch_array mysqli_fetch_assoc mysqli_fetch_field_direct mysqli_fetch_field mysqli_fetch_fields mysqli_fetch_lengths mysqli_fetch_object mysqli_fetch_row mysqli_field_count mysqli_field_seek mysqli_field_tell mysqli_free_result mysqli_get_charset mysqli_get_client_info mysqli_get_client_stats mysqli_get_client_version mysqli_get_connection_stats mysqli_get_host_info mysqli_get_proto_info mysqli_get_server_info mysqli_get_server_version mysqli_info mysqli_init mysqli_insert_id mysqli_kill mysqli_more_results mysqli_multi_query mysqli_next_result mysqli_num_fields mysqli_num_rows mysqli_options mysqli_ping mysqli_prepare mysqli_query mysqli_real_connect mysqli_real_escape_string mysqli_real_query mysqli_reap_async_query mysqli_refresh mysqli_rollback mysqli_select_db mysqli_set_charset mysqli_set_local_infile_default mysqli_set_local_infile_handler mysqli_sqlstate mysqli_ssl_set mysqli_stat mysqli_stmt_init mysqli_store_result mysqli_thread_id mysqli_thread_safe mysqli_use_result mysqli_warning_count";o.registerHelper("hintWords","php",[S,s,h].join(" ").split(" ")),o.registerHelper("wordChars","php",/[\w$]/);var g={name:"clike",helperType:"php",keywords:p(S),blockKeywords:p("catch do else elseif for foreach if switch try while finally"),defKeywords:p("class enum function interface namespace trait"),atoms:p(s),builtin:p(h),multiLineStrings:!0,hooks:{$:function(T){return T.eatWhile(/[\w\$_]/),"variable-2"},"<":function(T,w){var c;if(c=T.match(/^<<\s*/)){var d=T.eat(/['"]/);T.eatWhile(/[\w\.]/);var k=T.current().slice(c[0].length+(d?2:1));if(d&&T.eat(d),k)return(w.tokStack||(w.tokStack=[])).push(k,0),w.tokenize=C(k,d!="'"),"string"}return!1},"#":function(T){for(;!T.eol()&&!T.match("?>",!1);)T.next();return"comment"},"/":function(T){if(T.eat("/")){for(;!T.eol()&&!T.match("?>",!1);)T.next();return"comment"}return!1},'"':function(T,w){return(w.tokStack||(w.tokStack=[])).push('"',0),w.tokenize=C('"'),"string"},"{":function(T,w){return w.tokStack&&w.tokStack.length&&w.tokStack[w.tokStack.length-1]++,!1},"}":function(T,w){return w.tokStack&&w.tokStack.length>0&&!--w.tokStack[w.tokStack.length-1]&&(w.tokenize=C(w.tokStack[w.tokStack.length-2])),!1}}};o.defineMode("php",function(T,w){var c=o.getMode(T,w&&w.htmlMode||"text/html"),d=o.getMode(T,g);function k(z,M){var _=M.curMode==d;if(z.sol()&&M.pending&&M.pending!='"'&&M.pending!="'"&&(M.pending=null),_)return _&&M.php.tokenize==null&&z.match("?>")?(M.curMode=c,M.curState=M.html,M.php.context.prev||(M.php=null),"meta"):d.token(z,M.curState);if(z.match(/^<\?\w*/))return M.curMode=d,M.php||(M.php=o.startState(d,c.indent(M.html,"",""))),M.curState=M.php,"meta";if(M.pending=='"'||M.pending=="'"){for(;!z.eol()&&z.next()!=M.pending;);var W="string"}else if(M.pending&&z.pos/.test(E)?M.pending=G[0]:M.pending={end:z.pos,style:W},z.backUp(E.length-O)),W}return{startState:function(){var z=o.startState(c),M=w.startOpen?o.startState(d):null;return{html:z,php:M,curMode:w.startOpen?d:c,curState:w.startOpen?M:z,pending:null}},copyState:function(z){var M=z.html,_=o.copyState(c,M),W=z.php,E=W&&o.copyState(d,W),O;return z.curMode==c?O=_:O=E,{html:_,php:E,curMode:z.curMode,curState:O,pending:z.pending}},token:k,indent:function(z,M,_){return z.curMode!=d&&/^\s*<\//.test(M)||z.curMode==d&&/^\?>/.test(M)?c.indent(z.html,M,_):z.curMode.indent(z.curState,M,_)},blockCommentStart:"/*",blockCommentEnd:"*/",lineComment:"//",innerMode:function(z){return{state:z.curState,mode:z.curMode}}}},"htmlmixed","clike"),o.defineMIME("application/x-httpd-php","php"),o.defineMIME("application/x-httpd-php-open",{name:"php",startOpen:!0}),o.defineMIME("text/x-php",g)})});var Cu=Ke((Tu,Lu)=>{(function(o){typeof Tu=="object"&&typeof Lu=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";function p(s){return new RegExp("^(("+s.join(")|(")+"))\\b","i")}var v=["package","message","import","syntax","required","optional","repeated","reserved","default","extensions","packed","bool","bytes","double","enum","float","string","int32","int64","uint32","uint64","sint32","sint64","fixed32","fixed64","sfixed32","sfixed64","option","service","rpc","returns"],C=p(v);o.registerHelper("hintWords","protobuf",v);var b=new RegExp("^[_A-Za-z\xA1-\uFFFF][_A-Za-z0-9\xA1-\uFFFF]*");function S(s){return s.eatSpace()?null:s.match("//")?(s.skipToEnd(),"comment"):s.match(/^[0-9\.+-]/,!1)&&(s.match(/^[+-]?0x[0-9a-fA-F]+/)||s.match(/^[+-]?\d*\.\d+([EeDd][+-]?\d+)?/)||s.match(/^[+-]?\d+([EeDd][+-]?\d+)?/))?"number":s.match(/^"([^"]|(""))*"/)||s.match(/^'([^']|(''))*'/)?"string":s.match(C)?"keyword":s.match(b)?"variable":(s.next(),null)}o.defineMode("protobuf",function(){return{token:S,fold:"brace"}}),o.defineMIME("text/x-protobuf","protobuf")})});var Mu=Ke((Eu,zu)=>{(function(o){typeof Eu=="object"&&typeof zu=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";function p(h){return new RegExp("^(("+h.join(")|(")+"))\\b")}var v=p(["and","or","not","is"]),C=["as","assert","break","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","lambda","pass","raise","return","try","while","with","yield","in","False","True"],b=["abs","all","any","bin","bool","bytearray","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip","__import__","NotImplemented","Ellipsis","__debug__"];o.registerHelper("hintWords","python",C.concat(b).concat(["exec","print"]));function S(h){return h.scopes[h.scopes.length-1]}o.defineMode("python",function(h,g){for(var T="error",w=g.delimiters||g.singleDelimiters||/^[\(\)\[\]\{\}@,:`=;\.\\]/,c=[g.singleOperators,g.doubleOperators,g.doubleDelimiters,g.tripleDelimiters,g.operators||/^([-+*/%\/&|^]=?|[<>=]+|\/\/=?|\*\*=?|!=|[~!@]|\.\.\.)/],d=0;dR?D(X):le0&&j(K,X)&&(xe+=" "+T),xe}}return re(K,X)}function re(K,X,N){if(K.eatSpace())return null;if(!N&&K.match(/^#.*/))return"comment";if(K.match(/^[0-9\.]/,!1)){var R=!1;if(K.match(/^[\d_]*\.\d+(e[\+\-]?\d+)?/i)&&(R=!0),K.match(/^[\d_]+\.\d*/)&&(R=!0),K.match(/^\.\d+/)&&(R=!0),R)return K.eat(/J/i),"number";var le=!1;if(K.match(/^0x[0-9a-f_]+/i)&&(le=!0),K.match(/^0b[01_]+/i)&&(le=!0),K.match(/^0o[0-7_]+/i)&&(le=!0),K.match(/^[1-9][\d_]*(e[\+\-]?[\d_]+)?/)&&(K.eat(/J/i),le=!0),K.match(/^0(?![\dx])/i)&&(le=!0),le)return K.eat(/L/i),"number"}if(K.match(E)){var xe=K.current().toLowerCase().indexOf("f")!==-1;return xe?(X.tokenize=q(K.current(),X.tokenize),X.tokenize(K,X)):(X.tokenize=I(K.current(),X.tokenize),X.tokenize(K,X))}for(var F=0;F=0;)K=K.substr(1);var N=K.length==1,R="string";function le(F){return function(L,de){var ze=re(L,de,!0);return ze=="punctuation"&&(L.current()=="{"?de.tokenize=le(F+1):L.current()=="}"&&(F>1?de.tokenize=le(F-1):de.tokenize=xe)),ze}}function xe(F,L){for(;!F.eol();)if(F.eatWhile(/[^'"\{\}\\]/),F.eat("\\")){if(F.next(),N&&F.eol())return R}else{if(F.match(K))return L.tokenize=X,R;if(F.match("{{"))return R;if(F.match("{",!1))return L.tokenize=le(0),F.current()?R:L.tokenize(F,L);if(F.match("}}"))return R;if(F.match("}"))return T;F.eat(/['"]/)}if(N){if(g.singleLineStringErrors)return T;L.tokenize=X}return R}return xe.isString=!0,xe}function I(K,X){for(;"rubf".indexOf(K.charAt(0).toLowerCase())>=0;)K=K.substr(1);var N=K.length==1,R="string";function le(xe,F){for(;!xe.eol();)if(xe.eatWhile(/[^'"\\]/),xe.eat("\\")){if(xe.next(),N&&xe.eol())return R}else{if(xe.match(K))return F.tokenize=X,R;xe.eat(/['"]/)}if(N){if(g.singleLineStringErrors)return T;F.tokenize=X}return R}return le.isString=!0,le}function D(K){for(;S(K).type!="py";)K.scopes.pop();K.scopes.push({offset:S(K).offset+h.indentUnit,type:"py",align:null})}function Q(K,X,N){var R=K.match(/^[\s\[\{\(]*(?:#|$)/,!1)?null:K.column()+1;X.scopes.push({offset:X.indent+k,type:N,align:R})}function j(K,X){for(var N=K.indentation();X.scopes.length>1&&S(X).offset>N;){if(S(X).type!="py")return!0;X.scopes.pop()}return S(X).offset!=N}function V(K,X){K.sol()&&(X.beginningOfLine=!0,X.dedent=!1);var N=X.tokenize(K,X),R=K.current();if(X.beginningOfLine&&R=="@")return K.match(W,!1)?"meta":_?"operator":T;if(/\S/.test(R)&&(X.beginningOfLine=!1),(N=="variable"||N=="builtin")&&X.lastToken=="meta"&&(N="meta"),(R=="pass"||R=="return")&&(X.dedent=!0),R=="lambda"&&(X.lambda=!0),R==":"&&!X.lambda&&S(X).type=="py"&&K.match(/^\s*(?:#|$)/,!1)&&D(X),R.length==1&&!/string|comment/.test(N)){var le="[({".indexOf(R);if(le!=-1&&Q(K,X,"])}".slice(le,le+1)),le="])}".indexOf(R),le!=-1)if(S(X).type==R)X.indent=X.scopes.pop().offset-k;else return T}return X.dedent&&K.eol()&&S(X).type=="py"&&X.scopes.length>1&&X.scopes.pop(),N}var y={startState:function(K){return{tokenize:J,scopes:[{offset:K||0,type:"py",align:null}],indent:K||0,lastToken:null,lambda:!1,dedent:0}},token:function(K,X){var N=X.errorToken;N&&(X.errorToken=!1);var R=V(K,X);return R&&R!="comment"&&(X.lastToken=R=="keyword"||R=="punctuation"?K.current():R),R=="punctuation"&&(R=null),K.eol()&&X.lambda&&(X.lambda=!1),N?R+" "+T:R},indent:function(K,X){if(K.tokenize!=J)return K.tokenize.isString?o.Pass:0;var N=S(K),R=N.type==X.charAt(0)||N.type=="py"&&!K.dedent&&/^(else:|elif |except |finally:)/.test(X);return N.align!=null?N.align-(R?1:0):N.offset-(R?k:0)},electricInput:/^\s*([\}\]\)]|else:|elif |except |finally:)$/,closeBrackets:{triples:`'"`},lineComment:"#",fold:"indent"};return y}),o.defineMIME("text/x-python","python");var s=function(h){return h.split(" ")};o.defineMIME("text/x-cython",{name:"python",extra_keywords:s("by cdef cimport cpdef ctypedef enum except extern gil include nogil property public readonly struct union DEF IF ELIF ELSE")})})});var qu=Ke((Au,Du)=>{(function(o){typeof Au=="object"&&typeof Du=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";function p(g){for(var T={},w=0,c=g.length;w]/)?(E.eat(/[\<\>]/),"atom"):E.eat(/[\+\-\*\/\&\|\:\!]/)?"atom":E.eat(/[a-zA-Z$@_\xa1-\uffff]/)?(E.eatWhile(/[\w$\xa1-\uffff]/),E.eat(/[\?\!\=]/),"atom"):"operator";if(G=="@"&&E.match(/^@?[a-zA-Z_\xa1-\uffff]/))return E.eat("@"),E.eatWhile(/[\w\xa1-\uffff]/),"variable-2";if(G=="$")return E.eat(/[a-zA-Z_]/)?E.eatWhile(/[\w]/):E.eat(/\d/)?E.eat(/\d/):E.next(),"variable-3";if(/[a-zA-Z_\xa1-\uffff]/.test(G))return E.eatWhile(/[\w\xa1-\uffff]/),E.eat(/[\?\!]/),E.eat(":")?"atom":"ident";if(G=="|"&&(O.varList||O.lastTok=="{"||O.lastTok=="do"))return T="|",null;if(/[\(\)\[\]{}\\;]/.test(G))return T=G,null;if(G=="-"&&E.eat(">"))return"arrow";if(/[=+\-\/*:\.^%<>~|]/.test(G)){var D=E.eatWhile(/[=+\-\/*:\.^%<>~|]/);return G=="."&&!D&&(T="."),"operator"}else return null}}}function d(E){for(var O=E.pos,G=0,J,re=!1,q=!1;(J=E.next())!=null;)if(q)q=!1;else{if("[{(".indexOf(J)>-1)G++;else if("]})".indexOf(J)>-1){if(G--,G<0)break}else if(J=="/"&&G==0){re=!0;break}q=J=="\\"}return E.backUp(E.pos-O),re}function k(E){return E||(E=1),function(O,G){if(O.peek()=="}"){if(E==1)return G.tokenize.pop(),G.tokenize[G.tokenize.length-1](O,G);G.tokenize[G.tokenize.length-1]=k(E-1)}else O.peek()=="{"&&(G.tokenize[G.tokenize.length-1]=k(E+1));return c(O,G)}}function z(){var E=!1;return function(O,G){return E?(G.tokenize.pop(),G.tokenize[G.tokenize.length-1](O,G)):(E=!0,c(O,G))}}function M(E,O,G,J){return function(re,q){var I=!1,D;for(q.context.type==="read-quoted-paused"&&(q.context=q.context.prev,re.eat("}"));(D=re.next())!=null;){if(D==E&&(J||!I)){q.tokenize.pop();break}if(G&&D=="#"&&!I){if(re.eat("{")){E=="}"&&(q.context={prev:q.context,type:"read-quoted-paused"}),q.tokenize.push(k());break}else if(/[@\$]/.test(re.peek())){q.tokenize.push(z());break}}I=!I&&D=="\\"}return O}}function _(E,O){return function(G,J){return O&&G.eatSpace(),G.match(E)?J.tokenize.pop():G.skipToEnd(),"string"}}function W(E,O){return E.sol()&&E.match("=end")&&E.eol()&&O.tokenize.pop(),E.skipToEnd(),"comment"}return{startState:function(){return{tokenize:[c],indented:0,context:{type:"top",indented:-g.indentUnit},continuedLine:!1,lastTok:null,varList:!1}},token:function(E,O){T=null,E.sol()&&(O.indented=E.indentation());var G=O.tokenize[O.tokenize.length-1](E,O),J,re=T;if(G=="ident"){var q=E.current();G=O.lastTok=="."?"property":C.propertyIsEnumerable(E.current())?"keyword":/^[A-Z]/.test(q)?"tag":O.lastTok=="def"||O.lastTok=="class"||O.varList?"def":"variable",G=="keyword"&&(re=q,b.propertyIsEnumerable(q)?J="indent":S.propertyIsEnumerable(q)?J="dedent":((q=="if"||q=="unless")&&E.column()==E.indentation()||q=="do"&&O.context.indented{(function(o){typeof Fu=="object"&&typeof Iu=="object"?o(We(),Di()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../../addon/mode/simple"],o):o(CodeMirror)})(function(o){"use strict";o.defineSimpleMode("rust",{start:[{regex:/b?"/,token:"string",next:"string"},{regex:/b?r"/,token:"string",next:"string_raw"},{regex:/b?r#+"/,token:"string",next:"string_raw_hash"},{regex:/'(?:[^'\\]|\\(?:[nrt0'"]|x[\da-fA-F]{2}|u\{[\da-fA-F]{6}\}))'/,token:"string-2"},{regex:/b'(?:[^']|\\(?:['\\nrt0]|x[\da-fA-F]{2}))'/,token:"string-2"},{regex:/(?:(?:[0-9][0-9_]*)(?:(?:[Ee][+-]?[0-9_]+)|\.[0-9_]+(?:[Ee][+-]?[0-9_]+)?)(?:f32|f64)?)|(?:0(?:b[01_]+|(?:o[0-7_]+)|(?:x[0-9a-fA-F_]+))|(?:[0-9][0-9_]*))(?:u8|u16|u32|u64|i8|i16|i32|i64|isize|usize)?/,token:"number"},{regex:/(let(?:\s+mut)?|fn|enum|mod|struct|type|union)(\s+)([a-zA-Z_][a-zA-Z0-9_]*)/,token:["keyword",null,"def"]},{regex:/(?:abstract|alignof|as|async|await|box|break|continue|const|crate|do|dyn|else|enum|extern|fn|for|final|if|impl|in|loop|macro|match|mod|move|offsetof|override|priv|proc|pub|pure|ref|return|self|sizeof|static|struct|super|trait|type|typeof|union|unsafe|unsized|use|virtual|where|while|yield)\b/,token:"keyword"},{regex:/\b(?:Self|isize|usize|char|bool|u8|u16|u32|u64|f16|f32|f64|i8|i16|i32|i64|str|Option)\b/,token:"atom"},{regex:/\b(?:true|false|Some|None|Ok|Err)\b/,token:"builtin"},{regex:/\b(fn)(\s+)([a-zA-Z_][a-zA-Z0-9_]*)/,token:["keyword",null,"def"]},{regex:/#!?\[.*\]/,token:"meta"},{regex:/\/\/.*/,token:"comment"},{regex:/\/\*/,token:"comment",next:"comment"},{regex:/[-+\/*=<>!]+/,token:"operator"},{regex:/[a-zA-Z_]\w*!/,token:"variable-3"},{regex:/[a-zA-Z_]\w*/,token:"variable"},{regex:/[\{\[\(]/,indent:!0},{regex:/[\}\]\)]/,dedent:!0}],string:[{regex:/"/,token:"string",next:"start"},{regex:/(?:[^\\"]|\\(?:.|$))*/,token:"string"}],string_raw:[{regex:/"/,token:"string",next:"start"},{regex:/[^"]*/,token:"string"}],string_raw_hash:[{regex:/"#+/,token:"string",next:"start"},{regex:/(?:[^"]|"(?!#))*/,token:"string"}],comment:[{regex:/.*?\*\//,token:"comment",next:"start"},{regex:/.*/,token:"comment"}],meta:{dontIndentStates:["comment"],electricInput:/^\s*\}$/,blockCommentStart:"/*",blockCommentEnd:"*/",lineComment:"//",fold:"brace"}}),o.defineMIME("text/x-rustsrc","rust"),o.defineMIME("text/rust","rust")})});var ea=Ke((Ou,Pu)=>{(function(o){typeof Ou=="object"&&typeof Pu=="object"?o(We(),gn()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../css/css"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("sass",function(p){var v=o.mimeModes["text/css"],C=v.propertyKeywords||{},b=v.colorKeywords||{},S=v.valueKeywords||{},s=v.fontProperties||{};function h(q){return new RegExp("^"+q.join("|"))}var g=["true","false","null","auto"],T=new RegExp("^"+g.join("|")),w=["\\(","\\)","=",">","<","==",">=","<=","\\+","-","\\!=","/","\\*","%","and","or","not",";","\\{","\\}",":"],c=h(w),d=/^::?[a-zA-Z_][\w\-]*/,k;function z(q){return!q.peek()||q.match(/\s+$/,!1)}function M(q,I){var D=q.peek();return D===")"?(q.next(),I.tokenizer=J,"operator"):D==="("?(q.next(),q.eatSpace(),"operator"):D==="'"||D==='"'?(I.tokenizer=W(q.next()),"string"):(I.tokenizer=W(")",!1),"string")}function _(q,I){return function(D,Q){return D.sol()&&D.indentation()<=q?(Q.tokenizer=J,J(D,Q)):(I&&D.skipTo("*/")?(D.next(),D.next(),Q.tokenizer=J):D.skipToEnd(),"comment")}}function W(q,I){I==null&&(I=!0);function D(Q,j){var V=Q.next(),y=Q.peek(),K=Q.string.charAt(Q.pos-2),X=V!=="\\"&&y===q||V===q&&K!=="\\";return X?(V!==q&&I&&Q.next(),z(Q)&&(j.cursorHalf=0),j.tokenizer=J,"string"):V==="#"&&y==="{"?(j.tokenizer=E(D),Q.next(),"operator"):"string"}return D}function E(q){return function(I,D){return I.peek()==="}"?(I.next(),D.tokenizer=q,"operator"):J(I,D)}}function O(q){if(q.indentCount==0){q.indentCount++;var I=q.scopes[0].offset,D=I+p.indentUnit;q.scopes.unshift({offset:D})}}function G(q){q.scopes.length!=1&&q.scopes.shift()}function J(q,I){var D=q.peek();if(q.match("/*"))return I.tokenizer=_(q.indentation(),!0),I.tokenizer(q,I);if(q.match("//"))return I.tokenizer=_(q.indentation(),!1),I.tokenizer(q,I);if(q.match("#{"))return I.tokenizer=E(J),"operator";if(D==='"'||D==="'")return q.next(),I.tokenizer=W(D),"string";if(I.cursorHalf){if(D==="#"&&(q.next(),q.match(/[0-9a-fA-F]{6}|[0-9a-fA-F]{3}/))||q.match(/^-?[0-9\.]+/))return z(q)&&(I.cursorHalf=0),"number";if(q.match(/^(px|em|in)\b/))return z(q)&&(I.cursorHalf=0),"unit";if(q.match(T))return z(q)&&(I.cursorHalf=0),"keyword";if(q.match(/^url/)&&q.peek()==="(")return I.tokenizer=M,z(q)&&(I.cursorHalf=0),"atom";if(D==="$")return q.next(),q.eatWhile(/[\w-]/),z(q)&&(I.cursorHalf=0),"variable-2";if(D==="!")return q.next(),I.cursorHalf=0,q.match(/^[\w]+/)?"keyword":"operator";if(q.match(c))return z(q)&&(I.cursorHalf=0),"operator";if(q.eatWhile(/[\w-]/))return z(q)&&(I.cursorHalf=0),k=q.current().toLowerCase(),S.hasOwnProperty(k)?"atom":b.hasOwnProperty(k)?"keyword":C.hasOwnProperty(k)?(I.prevProp=q.current().toLowerCase(),"property"):"tag";if(z(q))return I.cursorHalf=0,null}else{if(D==="-"&&q.match(/^-\w+-/))return"meta";if(D==="."){if(q.next(),q.match(/^[\w-]+/))return O(I),"qualifier";if(q.peek()==="#")return O(I),"tag"}if(D==="#"){if(q.next(),q.match(/^[\w-]+/))return O(I),"builtin";if(q.peek()==="#")return O(I),"tag"}if(D==="$")return q.next(),q.eatWhile(/[\w-]/),"variable-2";if(q.match(/^-?[0-9\.]+/))return"number";if(q.match(/^(px|em|in)\b/))return"unit";if(q.match(T))return"keyword";if(q.match(/^url/)&&q.peek()==="(")return I.tokenizer=M,"atom";if(D==="="&&q.match(/^=[\w-]+/))return O(I),"meta";if(D==="+"&&q.match(/^\+[\w-]+/))return"variable-3";if(D==="@"&&q.match("@extend")&&(q.match(/\s*[\w]/)||G(I)),q.match(/^@(else if|if|media|else|for|each|while|mixin|function)/))return O(I),"def";if(D==="@")return q.next(),q.eatWhile(/[\w-]/),"def";if(q.eatWhile(/[\w-]/))if(q.match(/ *: *[\w-\+\$#!\("']/,!1)){k=q.current().toLowerCase();var Q=I.prevProp+"-"+k;return C.hasOwnProperty(Q)?"property":C.hasOwnProperty(k)?(I.prevProp=k,"property"):s.hasOwnProperty(k)?"property":"tag"}else return q.match(/ *:/,!1)?(O(I),I.cursorHalf=1,I.prevProp=q.current().toLowerCase(),"property"):(q.match(/ *,/,!1)||O(I),"tag");if(D===":")return q.match(d)?"variable-3":(q.next(),I.cursorHalf=1,"operator")}return q.match(c)?"operator":(q.next(),null)}function re(q,I){q.sol()&&(I.indentCount=0);var D=I.tokenizer(q,I),Q=q.current();if((Q==="@return"||Q==="}")&&G(I),D!==null){for(var j=q.pos-Q.length,V=j+p.indentUnit*I.indentCount,y=[],K=0;K{(function(o){typeof Bu=="object"&&typeof ju=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("shell",function(){var p={};function v(d,k){for(var z=0;z1&&d.eat("$");var z=d.next();return/['"({]/.test(z)?(k.tokens[0]=h(z,z=="("?"quote":z=="{"?"def":"string"),c(d,k)):(/\d/.test(z)||d.eatWhile(/\w/),k.tokens.shift(),"def")};function w(d){return function(k,z){return k.sol()&&k.string==d&&z.tokens.shift(),k.skipToEnd(),"string-2"}}function c(d,k){return(k.tokens[0]||s)(d,k)}return{startState:function(){return{tokens:[]}},token:function(d,k){return c(d,k)},closeBrackets:"()[]{}''\"\"``",lineComment:"#",fold:"brace"}}),o.defineMIME("text/x-sh","shell"),o.defineMIME("application/x-sh","shell")})});var Uu=Ke((Hu,Wu)=>{(function(o){typeof Hu=="object"&&typeof Wu=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("sql",function(g,T){var w=T.client||{},c=T.atoms||{false:!0,true:!0,null:!0},d=T.builtin||s(h),k=T.keywords||s(S),z=T.operatorChars||/^[*+\-%<>!=&|~^\/]/,M=T.support||{},_=T.hooks||{},W=T.dateSQL||{date:!0,time:!0,timestamp:!0},E=T.backslashStringEscapes!==!1,O=T.brackets||/^[\{}\(\)\[\]]/,G=T.punctuation||/^[;.,:]/;function J(Q,j){var V=Q.next();if(_[V]){var y=_[V](Q,j);if(y!==!1)return y}if(M.hexNumber&&(V=="0"&&Q.match(/^[xX][0-9a-fA-F]+/)||(V=="x"||V=="X")&&Q.match(/^'[0-9a-fA-F]*'/)))return"number";if(M.binaryNumber&&((V=="b"||V=="B")&&Q.match(/^'[01]*'/)||V=="0"&&Q.match(/^b[01]+/)))return"number";if(V.charCodeAt(0)>47&&V.charCodeAt(0)<58)return Q.match(/^[0-9]*(\.[0-9]+)?([eE][-+]?[0-9]+)?/),M.decimallessFloat&&Q.match(/^\.(?!\.)/),"number";if(V=="?"&&(Q.eatSpace()||Q.eol()||Q.eat(";")))return"variable-3";if(V=="'"||V=='"'&&M.doubleQuote)return j.tokenize=re(V),j.tokenize(Q,j);if((M.nCharCast&&(V=="n"||V=="N")||M.charsetCast&&V=="_"&&Q.match(/[a-z][a-z0-9]*/i))&&(Q.peek()=="'"||Q.peek()=='"'))return"keyword";if(M.escapeConstant&&(V=="e"||V=="E")&&(Q.peek()=="'"||Q.peek()=='"'&&M.doubleQuote))return j.tokenize=function(X,N){return(N.tokenize=re(X.next(),!0))(X,N)},"keyword";if(M.commentSlashSlash&&V=="/"&&Q.eat("/"))return Q.skipToEnd(),"comment";if(M.commentHash&&V=="#"||V=="-"&&Q.eat("-")&&(!M.commentSpaceRequired||Q.eat(" ")))return Q.skipToEnd(),"comment";if(V=="/"&&Q.eat("*"))return j.tokenize=q(1),j.tokenize(Q,j);if(V=="."){if(M.zerolessFloat&&Q.match(/^(?:\d+(?:e[+-]?\d+)?)/i))return"number";if(Q.match(/^\.+/))return null;if(Q.match(/^[\w\d_$#]+/))return"variable-2"}else{if(z.test(V))return Q.eatWhile(z),"operator";if(O.test(V))return"bracket";if(G.test(V))return Q.eatWhile(G),"punctuation";if(V=="{"&&(Q.match(/^( )*(d|D|t|T|ts|TS)( )*'[^']*'( )*}/)||Q.match(/^( )*(d|D|t|T|ts|TS)( )*"[^"]*"( )*}/)))return"number";Q.eatWhile(/^[_\w\d]/);var K=Q.current().toLowerCase();return W.hasOwnProperty(K)&&(Q.match(/^( )+'[^']*'/)||Q.match(/^( )+"[^"]*"/))?"number":c.hasOwnProperty(K)?"atom":d.hasOwnProperty(K)?"type":k.hasOwnProperty(K)?"keyword":w.hasOwnProperty(K)?"builtin":null}}function re(Q,j){return function(V,y){for(var K=!1,X;(X=V.next())!=null;){if(X==Q&&!K){y.tokenize=J;break}K=(E||j)&&!K&&X=="\\"}return"string"}}function q(Q){return function(j,V){var y=j.match(/^.*?(\/\*|\*\/)/);return y?y[1]=="/*"?V.tokenize=q(Q+1):Q>1?V.tokenize=q(Q-1):V.tokenize=J:j.skipToEnd(),"comment"}}function I(Q,j,V){j.context={prev:j.context,indent:Q.indentation(),col:Q.column(),type:V}}function D(Q){Q.indent=Q.context.indent,Q.context=Q.context.prev}return{startState:function(){return{tokenize:J,context:null}},token:function(Q,j){if(Q.sol()&&j.context&&j.context.align==null&&(j.context.align=!1),j.tokenize==J&&Q.eatSpace())return null;var V=j.tokenize(Q,j);if(V=="comment")return V;j.context&&j.context.align==null&&(j.context.align=!0);var y=Q.current();return y=="("?I(Q,j,")"):y=="["?I(Q,j,"]"):j.context&&j.context.type==y&&D(j),V},indent:function(Q,j){var V=Q.context;if(!V)return o.Pass;var y=j.charAt(0)==V.type;return V.align?V.col+(y?0:1):V.indent+(y?0:g.indentUnit)},blockCommentStart:"/*",blockCommentEnd:"*/",lineComment:M.commentSlashSlash?"//":M.commentHash?"#":"--",closeBrackets:"()[]{}''\"\"``",config:T}});function p(g){for(var T;(T=g.next())!=null;)if(T=="`"&&!g.eat("`"))return"variable-2";return g.backUp(g.current().length-1),g.eatWhile(/\w/)?"variable-2":null}function v(g){for(var T;(T=g.next())!=null;)if(T=='"'&&!g.eat('"'))return"variable-2";return g.backUp(g.current().length-1),g.eatWhile(/\w/)?"variable-2":null}function C(g){return g.eat("@")&&(g.match("session."),g.match("local."),g.match("global.")),g.eat("'")?(g.match(/^.*'/),"variable-2"):g.eat('"')?(g.match(/^.*"/),"variable-2"):g.eat("`")?(g.match(/^.*`/),"variable-2"):g.match(/^[0-9a-zA-Z$\.\_]+/)?"variable-2":null}function b(g){return g.eat("N")?"atom":g.match(/^[a-zA-Z.#!?]/)?"variable-2":null}var S="alter and as asc between by count create delete desc distinct drop from group having in insert into is join like not on or order select set table union update values where limit ";function s(g){for(var T={},w=g.split(" "),c=0;c!=^\&|\/]/,brackets:/^[\{}\(\)]/,punctuation:/^[;.,:/]/,backslashStringEscapes:!1,dateSQL:s("date datetimeoffset datetime2 smalldatetime datetime time"),hooks:{"@":C}}),o.defineMIME("text/x-mysql",{name:"sql",client:s("charset clear connect edit ego exit go help nopager notee nowarning pager print prompt quit rehash source status system tee"),keywords:s(S+"accessible action add after algorithm all analyze asensitive at authors auto_increment autocommit avg avg_row_length before binary binlog both btree cache call cascade cascaded case catalog_name chain change changed character check checkpoint checksum class_origin client_statistics close coalesce code collate collation collations column columns comment commit committed completion concurrent condition connection consistent constraint contains continue contributors convert cross current current_date current_time current_timestamp current_user cursor data database databases day_hour day_microsecond day_minute day_second deallocate dec declare default delay_key_write delayed delimiter des_key_file describe deterministic dev_pop dev_samp deviance diagnostics directory disable discard distinctrow div dual dumpfile each elseif enable enclosed end ends engine engines enum errors escape escaped even event events every execute exists exit explain extended fast fetch field fields first flush for force foreign found_rows full fulltext function general get global grant grants group group_concat handler hash help high_priority hosts hour_microsecond hour_minute hour_second if ignore ignore_server_ids import index index_statistics infile inner innodb inout insensitive insert_method install interval invoker isolation iterate key keys kill language last leading leave left level limit linear lines list load local localtime localtimestamp lock logs low_priority master master_heartbeat_period master_ssl_verify_server_cert masters match max max_rows maxvalue message_text middleint migrate min min_rows minute_microsecond minute_second mod mode modifies modify mutex mysql_errno natural next no no_write_to_binlog offline offset one online open optimize option optionally out outer outfile pack_keys parser partition partitions password phase plugin plugins prepare preserve prev primary privileges procedure processlist profile profiles purge query quick range read read_write reads real rebuild recover references regexp relaylog release remove rename reorganize repair repeatable replace require resignal restrict resume return returns revoke right rlike rollback rollup row row_format rtree savepoint schedule schema schema_name schemas second_microsecond security sensitive separator serializable server session share show signal slave slow smallint snapshot soname spatial specific sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result sqlexception sqlstate sqlwarning ssl start starting starts status std stddev stddev_pop stddev_samp storage straight_join subclass_origin sum suspend table_name table_statistics tables tablespace temporary terminated to trailing transaction trigger triggers truncate uncommitted undo uninstall unique unlock upgrade usage use use_frm user user_resources user_statistics using utc_date utc_time utc_timestamp value variables varying view views warnings when while with work write xa xor year_month zerofill begin do then else loop repeat"),builtin:s("bool boolean bit blob decimal double float long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision date datetime year unsigned signed numeric"),atoms:s("false true null unknown"),operatorChars:/^[*+\-%<>!=&|^]/,dateSQL:s("date time timestamp"),support:s("decimallessFloat zerolessFloat binaryNumber hexNumber doubleQuote nCharCast charsetCast commentHash commentSpaceRequired"),hooks:{"@":C,"`":p,"\\":b}}),o.defineMIME("text/x-mariadb",{name:"sql",client:s("charset clear connect edit ego exit go help nopager notee nowarning pager print prompt quit rehash source status system tee"),keywords:s(S+"accessible action add after algorithm all always analyze asensitive at authors auto_increment autocommit avg avg_row_length before binary binlog both btree cache call cascade cascaded case catalog_name chain change changed character check checkpoint checksum class_origin client_statistics close coalesce code collate collation collations column columns comment commit committed completion concurrent condition connection consistent constraint contains continue contributors convert cross current current_date current_time current_timestamp current_user cursor data database databases day_hour day_microsecond day_minute day_second deallocate dec declare default delay_key_write delayed delimiter des_key_file describe deterministic dev_pop dev_samp deviance diagnostics directory disable discard distinctrow div dual dumpfile each elseif enable enclosed end ends engine engines enum errors escape escaped even event events every execute exists exit explain extended fast fetch field fields first flush for force foreign found_rows full fulltext function general generated get global grant grants group group_concat handler hard hash help high_priority hosts hour_microsecond hour_minute hour_second if ignore ignore_server_ids import index index_statistics infile inner innodb inout insensitive insert_method install interval invoker isolation iterate key keys kill language last leading leave left level limit linear lines list load local localtime localtimestamp lock logs low_priority master master_heartbeat_period master_ssl_verify_server_cert masters match max max_rows maxvalue message_text middleint migrate min min_rows minute_microsecond minute_second mod mode modifies modify mutex mysql_errno natural next no no_write_to_binlog offline offset one online open optimize option optionally out outer outfile pack_keys parser partition partitions password persistent phase plugin plugins prepare preserve prev primary privileges procedure processlist profile profiles purge query quick range read read_write reads real rebuild recover references regexp relaylog release remove rename reorganize repair repeatable replace require resignal restrict resume return returns revoke right rlike rollback rollup row row_format rtree savepoint schedule schema schema_name schemas second_microsecond security sensitive separator serializable server session share show shutdown signal slave slow smallint snapshot soft soname spatial specific sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result sqlexception sqlstate sqlwarning ssl start starting starts status std stddev stddev_pop stddev_samp storage straight_join subclass_origin sum suspend table_name table_statistics tables tablespace temporary terminated to trailing transaction trigger triggers truncate uncommitted undo uninstall unique unlock upgrade usage use use_frm user user_resources user_statistics using utc_date utc_time utc_timestamp value variables varying view views virtual warnings when while with work write xa xor year_month zerofill begin do then else loop repeat"),builtin:s("bool boolean bit blob decimal double float long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision date datetime year unsigned signed numeric"),atoms:s("false true null unknown"),operatorChars:/^[*+\-%<>!=&|^]/,dateSQL:s("date time timestamp"),support:s("decimallessFloat zerolessFloat binaryNumber hexNumber doubleQuote nCharCast charsetCast commentHash commentSpaceRequired"),hooks:{"@":C,"`":p,"\\":b}}),o.defineMIME("text/x-sqlite",{name:"sql",client:s("auth backup bail binary changes check clone databases dbinfo dump echo eqp exit explain fullschema headers help import imposter indexes iotrace limit lint load log mode nullvalue once open output print prompt quit read restore save scanstats schema separator session shell show stats system tables testcase timeout timer trace vfsinfo vfslist vfsname width"),keywords:s(S+"abort action add after all analyze attach autoincrement before begin cascade case cast check collate column commit conflict constraint cross current_date current_time current_timestamp database default deferrable deferred detach each else end escape except exclusive exists explain fail for foreign full glob if ignore immediate index indexed initially inner instead intersect isnull key left limit match natural no notnull null of offset outer plan pragma primary query raise recursive references regexp reindex release rename replace restrict right rollback row savepoint temp temporary then to transaction trigger unique using vacuum view virtual when with without"),builtin:s("bool boolean bit blob decimal double float long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text clob bigint int int2 int8 integer float double char varchar date datetime year unsigned signed numeric real"),atoms:s("null current_date current_time current_timestamp"),operatorChars:/^[*+\-%<>!=&|/~]/,dateSQL:s("date time timestamp datetime"),support:s("decimallessFloat zerolessFloat"),identifierQuote:'"',hooks:{"@":C,":":C,"?":C,$:C,'"':v,"`":p}}),o.defineMIME("text/x-cassandra",{name:"sql",client:{},keywords:s("add all allow alter and any apply as asc authorize batch begin by clustering columnfamily compact consistency count create custom delete desc distinct drop each_quorum exists filtering from grant if in index insert into key keyspace keyspaces level limit local_one local_quorum modify nan norecursive nosuperuser not of on one order password permission permissions primary quorum rename revoke schema select set storage superuser table three to token truncate ttl two type unlogged update use user users using values where with writetime"),builtin:s("ascii bigint blob boolean counter decimal double float frozen inet int list map static text timestamp timeuuid tuple uuid varchar varint"),atoms:s("false true infinity NaN"),operatorChars:/^[<>=]/,dateSQL:{},support:s("commentSlashSlash decimallessFloat"),hooks:{}}),o.defineMIME("text/x-plsql",{name:"sql",client:s("appinfo arraysize autocommit autoprint autorecovery autotrace blockterminator break btitle cmdsep colsep compatibility compute concat copycommit copytypecheck define describe echo editfile embedded escape exec execute feedback flagger flush heading headsep instance linesize lno loboffset logsource long longchunksize markup native newpage numformat numwidth pagesize pause pno recsep recsepchar release repfooter repheader serveroutput shiftinout show showmode size spool sqlblanklines sqlcase sqlcode sqlcontinue sqlnumber sqlpluscompatibility sqlprefix sqlprompt sqlterminator suffix tab term termout time timing trimout trimspool ttitle underline verify version wrap"),keywords:s("abort accept access add all alter and any array arraylen as asc assert assign at attributes audit authorization avg base_table begin between binary_integer body boolean by case cast char char_base check close cluster clusters colauth column comment commit compress connect connected constant constraint crash create current currval cursor data_base database date dba deallocate debugoff debugon decimal declare default definition delay delete desc digits dispose distinct do drop else elseif elsif enable end entry escape exception exception_init exchange exclusive exists exit external fast fetch file for force form from function generic goto grant group having identified if immediate in increment index indexes indicator initial initrans insert interface intersect into is key level library like limited local lock log logging long loop master maxextents maxtrans member minextents minus mislabel mode modify multiset new next no noaudit nocompress nologging noparallel not nowait number_base object of off offline on online only open option or order out package parallel partition pctfree pctincrease pctused pls_integer positive positiven pragma primary prior private privileges procedure public raise range raw read rebuild record ref references refresh release rename replace resource restrict return returning returns reverse revoke rollback row rowid rowlabel rownum rows run savepoint schema segment select separate session set share snapshot some space split sql start statement storage subtype successful synonym tabauth table tables tablespace task terminate then to trigger truncate type union unique unlimited unrecoverable unusable update use using validate value values variable view views when whenever where while with work"),builtin:s("abs acos add_months ascii asin atan atan2 average bfile bfilename bigserial bit blob ceil character chartorowid chr clob concat convert cos cosh count dec decode deref dual dump dup_val_on_index empty error exp false float floor found glb greatest hextoraw initcap instr instrb int integer isopen last_day least length lengthb ln lower lpad ltrim lub make_ref max min mlslabel mod months_between natural naturaln nchar nclob new_time next_day nextval nls_charset_decl_len nls_charset_id nls_charset_name nls_initcap nls_lower nls_sort nls_upper nlssort no_data_found notfound null number numeric nvarchar2 nvl others power rawtohex real reftohex round rowcount rowidtochar rowtype rpad rtrim serial sign signtype sin sinh smallint soundex sqlcode sqlerrm sqrt stddev string substr substrb sum sysdate tan tanh to_char text to_date to_label to_multi_byte to_number to_single_byte translate true trunc uid unlogged upper user userenv varchar varchar2 variance varying vsize xml"),operatorChars:/^[*\/+\-%<>!=~]/,dateSQL:s("date time timestamp"),support:s("doubleQuote nCharCast zerolessFloat binaryNumber hexNumber")}),o.defineMIME("text/x-hive",{name:"sql",keywords:s("select alter $elem$ $key$ $value$ add after all analyze and archive as asc before between binary both bucket buckets by cascade case cast change cluster clustered clusterstatus collection column columns comment compute concatenate continue create cross cursor data database databases dbproperties deferred delete delimited desc describe directory disable distinct distribute drop else enable end escaped exclusive exists explain export extended external fetch fields fileformat first format formatted from full function functions grant group having hold_ddltime idxproperties if import in index indexes inpath inputdriver inputformat insert intersect into is items join keys lateral left like limit lines load local location lock locks mapjoin materialized minus msck no_drop nocompress not of offline on option or order out outer outputdriver outputformat overwrite partition partitioned partitions percent plus preserve procedure purge range rcfile read readonly reads rebuild recordreader recordwriter recover reduce regexp rename repair replace restrict revoke right rlike row schema schemas semi sequencefile serde serdeproperties set shared show show_database sort sorted ssl statistics stored streamtable table tables tablesample tblproperties temporary terminated textfile then tmp to touch transform trigger unarchive undo union uniquejoin unlock update use using utc utc_tmestamp view when where while with admin authorization char compact compactions conf cube current current_date current_timestamp day decimal defined dependency directories elem_type exchange file following for grouping hour ignore inner interval jar less logical macro minute month more none noscan over owner partialscan preceding pretty principals protection reload rewrite role roles rollup rows second server sets skewed transactions truncate unbounded unset uri user values window year"),builtin:s("bool boolean long timestamp tinyint smallint bigint int float double date datetime unsigned string array struct map uniontype key_type utctimestamp value_type varchar"),atoms:s("false true null unknown"),operatorChars:/^[*+\-%<>!=]/,dateSQL:s("date timestamp"),support:s("doubleQuote binaryNumber hexNumber")}),o.defineMIME("text/x-pgsql",{name:"sql",client:s("source"),keywords:s(S+"a abort abs absent absolute access according action ada add admin after aggregate alias all allocate also alter always analyse analyze and any are array array_agg array_max_cardinality as asc asensitive assert assertion assignment asymmetric at atomic attach attribute attributes authorization avg backward base64 before begin begin_frame begin_partition bernoulli between bigint binary bit bit_length blob blocked bom boolean both breadth by c cache call called cardinality cascade cascaded case cast catalog catalog_name ceil ceiling chain char char_length character character_length character_set_catalog character_set_name character_set_schema characteristics characters check checkpoint class class_origin clob close cluster coalesce cobol collate collation collation_catalog collation_name collation_schema collect column column_name columns command_function command_function_code comment comments commit committed concurrently condition condition_number configuration conflict connect connection connection_name constant constraint constraint_catalog constraint_name constraint_schema constraints constructor contains content continue control conversion convert copy corr corresponding cost count covar_pop covar_samp create cross csv cube cume_dist current current_catalog current_date current_default_transform_group current_path current_role current_row current_schema current_time current_timestamp current_transform_group_for_type current_user cursor cursor_name cycle data database datalink datatype date datetime_interval_code datetime_interval_precision day db deallocate debug dec decimal declare default defaults deferrable deferred defined definer degree delete delimiter delimiters dense_rank depends depth deref derived desc describe descriptor detach detail deterministic diagnostics dictionary disable discard disconnect dispatch distinct dlnewcopy dlpreviouscopy dlurlcomplete dlurlcompleteonly dlurlcompletewrite dlurlpath dlurlpathonly dlurlpathwrite dlurlscheme dlurlserver dlvalue do document domain double drop dump dynamic dynamic_function dynamic_function_code each element else elseif elsif empty enable encoding encrypted end end_frame end_partition endexec enforced enum equals errcode error escape event every except exception exclude excluding exclusive exec execute exists exit exp explain expression extension external extract false family fetch file filter final first first_value flag float floor following for force foreach foreign fortran forward found frame_row free freeze from fs full function functions fusion g general generated get global go goto grant granted greatest group grouping groups handler having header hex hierarchy hint hold hour id identity if ignore ilike immediate immediately immutable implementation implicit import in include including increment indent index indexes indicator info inherit inherits initially inline inner inout input insensitive insert instance instantiable instead int integer integrity intersect intersection interval into invoker is isnull isolation join k key key_member key_type label lag language large last last_value lateral lead leading leakproof least left length level library like like_regex limit link listen ln load local localtime localtimestamp location locator lock locked log logged loop lower m map mapping match matched materialized max max_cardinality maxvalue member merge message message_length message_octet_length message_text method min minute minvalue mod mode modifies module month more move multiset mumps name names namespace national natural nchar nclob nesting new next nfc nfd nfkc nfkd nil no none normalize normalized not nothing notice notify notnull nowait nth_value ntile null nullable nullif nulls number numeric object occurrences_regex octet_length octets of off offset oids old on only open operator option options or order ordering ordinality others out outer output over overlaps overlay overriding owned owner p pad parallel parameter parameter_mode parameter_name parameter_ordinal_position parameter_specific_catalog parameter_specific_name parameter_specific_schema parser partial partition pascal passing passthrough password path percent percent_rank percentile_cont percentile_disc perform period permission pg_context pg_datatype_name pg_exception_context pg_exception_detail pg_exception_hint placing plans pli policy portion position position_regex power precedes preceding precision prepare prepared preserve primary print_strict_params prior privileges procedural procedure procedures program public publication query quote raise range rank read reads real reassign recheck recovery recursive ref references referencing refresh regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy regr_syy reindex relative release rename repeatable replace replica requiring reset respect restart restore restrict result result_oid return returned_cardinality returned_length returned_octet_length returned_sqlstate returning returns reverse revoke right role rollback rollup routine routine_catalog routine_name routine_schema routines row row_count row_number rows rowtype rule savepoint scale schema schema_name schemas scope scope_catalog scope_name scope_schema scroll search second section security select selective self sensitive sequence sequences serializable server server_name session session_user set setof sets share show similar simple size skip slice smallint snapshot some source space specific specific_name specifictype sql sqlcode sqlerror sqlexception sqlstate sqlwarning sqrt stable stacked standalone start state statement static statistics stddev_pop stddev_samp stdin stdout storage strict strip structure style subclass_origin submultiset subscription substring substring_regex succeeds sum symmetric sysid system system_time system_user t table table_name tables tablesample tablespace temp template temporary text then ties time timestamp timezone_hour timezone_minute to token top_level_count trailing transaction transaction_active transactions_committed transactions_rolled_back transform transforms translate translate_regex translation treat trigger trigger_catalog trigger_name trigger_schema trim trim_array true truncate trusted type types uescape unbounded uncommitted under unencrypted union unique unknown unlink unlisten unlogged unnamed unnest until untyped update upper uri usage use_column use_variable user user_defined_type_catalog user_defined_type_code user_defined_type_name user_defined_type_schema using vacuum valid validate validator value value_of values var_pop var_samp varbinary varchar variable_conflict variadic varying verbose version versioning view views volatile warning when whenever where while whitespace width_bucket window with within without work wrapper write xml xmlagg xmlattributes xmlbinary xmlcast xmlcomment xmlconcat xmldeclaration xmldocument xmlelement xmlexists xmlforest xmliterate xmlnamespaces xmlparse xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltext xmlvalidate year yes zone"),builtin:s("bigint int8 bigserial serial8 bit varying varbit boolean bool box bytea character char varchar cidr circle date double precision float8 inet integer int int4 interval json jsonb line lseg macaddr macaddr8 money numeric decimal path pg_lsn point polygon real float4 smallint int2 smallserial serial2 serial serial4 text time zone timetz timestamp timestamptz tsquery tsvector txid_snapshot uuid xml"),atoms:s("false true null unknown"),operatorChars:/^[*\/+\-%<>!=&|^\/#@?~]/,backslashStringEscapes:!1,identifierQuote:'"',hooks:{'"':v},dateSQL:s("date time timestamp"),support:s("decimallessFloat zerolessFloat binaryNumber hexNumber nCharCast charsetCast escapeConstant")}),o.defineMIME("text/x-gql",{name:"sql",keywords:s("ancestor and asc by contains desc descendant distinct from group has in is limit offset on order select superset where"),atoms:s("false true"),builtin:s("blob datetime first key __key__ string integer double boolean null"),operatorChars:/^[*+\-%<>!=]/}),o.defineMIME("text/x-gpsql",{name:"sql",client:s("source"),keywords:s("abort absolute access action active add admin after aggregate all also alter always analyse analyze and any array as asc assertion assignment asymmetric at authorization backward before begin between bigint binary bit boolean both by cache called cascade cascaded case cast chain char character characteristics check checkpoint class close cluster coalesce codegen collate column comment commit committed concurrency concurrently configuration connection constraint constraints contains content continue conversion copy cost cpu_rate_limit create createdb createexttable createrole createuser cross csv cube current current_catalog current_date current_role current_schema current_time current_timestamp current_user cursor cycle data database day deallocate dec decimal declare decode default defaults deferrable deferred definer delete delimiter delimiters deny desc dictionary disable discard distinct distributed do document domain double drop dxl each else enable encoding encrypted end enum errors escape every except exchange exclude excluding exclusive execute exists explain extension external extract false family fetch fields filespace fill filter first float following for force foreign format forward freeze from full function global grant granted greatest group group_id grouping handler hash having header hold host hour identity if ignore ilike immediate immutable implicit in including inclusive increment index indexes inherit inherits initially inline inner inout input insensitive insert instead int integer intersect interval into invoker is isnull isolation join key language large last leading least left level like limit list listen load local localtime localtimestamp location lock log login mapping master match maxvalue median merge minute minvalue missing mode modifies modify month move name names national natural nchar new newline next no nocreatedb nocreateexttable nocreaterole nocreateuser noinherit nologin none noovercommit nosuperuser not nothing notify notnull nowait null nullif nulls numeric object of off offset oids old on only operator option options or order ordered others out outer over overcommit overlaps overlay owned owner parser partial partition partitions passing password percent percentile_cont percentile_disc placing plans position preceding precision prepare prepared preserve primary prior privileges procedural procedure protocol queue quote randomly range read readable reads real reassign recheck recursive ref references reindex reject relative release rename repeatable replace replica reset resource restart restrict returning returns revoke right role rollback rollup rootpartition row rows rule savepoint scatter schema scroll search second security segment select sequence serializable session session_user set setof sets share show similar simple smallint some split sql stable standalone start statement statistics stdin stdout storage strict strip subpartition subpartitions substring superuser symmetric sysid system table tablespace temp template temporary text then threshold ties time timestamp to trailing transaction treat trigger trim true truncate trusted type unbounded uncommitted unencrypted union unique unknown unlisten until update user using vacuum valid validation validator value values varchar variadic varying verbose version view volatile web when where whitespace window with within without work writable write xml xmlattributes xmlconcat xmlelement xmlexists xmlforest xmlparse xmlpi xmlroot xmlserialize year yes zone"),builtin:s("bigint int8 bigserial serial8 bit varying varbit boolean bool box bytea character char varchar cidr circle date double precision float float8 inet integer int int4 interval json jsonb line lseg macaddr macaddr8 money numeric decimal path pg_lsn point polygon real float4 smallint int2 smallserial serial2 serial serial4 text time without zone with timetz timestamp timestamptz tsquery tsvector txid_snapshot uuid xml"),atoms:s("false true null unknown"),operatorChars:/^[*+\-%<>!=&|^\/#@?~]/,dateSQL:s("date time timestamp"),support:s("decimallessFloat zerolessFloat binaryNumber hexNumber nCharCast charsetCast")}),o.defineMIME("text/x-sparksql",{name:"sql",keywords:s("add after all alter analyze and anti archive array as asc at between bucket buckets by cache cascade case cast change clear cluster clustered codegen collection column columns comment commit compact compactions compute concatenate cost create cross cube current current_date current_timestamp database databases data dbproperties defined delete delimited deny desc describe dfs directories distinct distribute drop else end escaped except exchange exists explain export extended external false fields fileformat first following for format formatted from full function functions global grant group grouping having if ignore import in index indexes inner inpath inputformat insert intersect interval into is items join keys last lateral lazy left like limit lines list load local location lock locks logical macro map minus msck natural no not null nulls of on optimize option options or order out outer outputformat over overwrite partition partitioned partitions percent preceding principals purge range recordreader recordwriter recover reduce refresh regexp rename repair replace reset restrict revoke right rlike role roles rollback rollup row rows schema schemas select semi separated serde serdeproperties set sets show skewed sort sorted start statistics stored stratify struct table tables tablesample tblproperties temp temporary terminated then to touch transaction transactions transform true truncate unarchive unbounded uncache union unlock unset use using values view when where window with"),builtin:s("abs acos acosh add_months aggregate and any approx_count_distinct approx_percentile array array_contains array_distinct array_except array_intersect array_join array_max array_min array_position array_remove array_repeat array_sort array_union arrays_overlap arrays_zip ascii asin asinh assert_true atan atan2 atanh avg base64 between bigint bin binary bit_and bit_count bit_get bit_length bit_or bit_xor bool_and bool_or boolean bround btrim cardinality case cast cbrt ceil ceiling char char_length character_length chr coalesce collect_list collect_set concat concat_ws conv corr cos cosh cot count count_if count_min_sketch covar_pop covar_samp crc32 cume_dist current_catalog current_database current_date current_timestamp current_timezone current_user date date_add date_format date_from_unix_date date_part date_sub date_trunc datediff day dayofmonth dayofweek dayofyear decimal decode degrees delimited dense_rank div double e element_at elt encode every exists exp explode explode_outer expm1 extract factorial filter find_in_set first first_value flatten float floor forall format_number format_string from_csv from_json from_unixtime from_utc_timestamp get_json_object getbit greatest grouping grouping_id hash hex hour hypot if ifnull in initcap inline inline_outer input_file_block_length input_file_block_start input_file_name inputformat instr int isnan isnotnull isnull java_method json_array_length json_object_keys json_tuple kurtosis lag last last_day last_value lcase lead least left length levenshtein like ln locate log log10 log1p log2 lower lpad ltrim make_date make_dt_interval make_interval make_timestamp make_ym_interval map map_concat map_entries map_filter map_from_arrays map_from_entries map_keys map_values map_zip_with max max_by md5 mean min min_by minute mod monotonically_increasing_id month months_between named_struct nanvl negative next_day not now nth_value ntile nullif nvl nvl2 octet_length or outputformat overlay parse_url percent_rank percentile percentile_approx pi pmod posexplode posexplode_outer position positive pow power printf quarter radians raise_error rand randn random rank rcfile reflect regexp regexp_extract regexp_extract_all regexp_like regexp_replace repeat replace reverse right rint rlike round row_number rpad rtrim schema_of_csv schema_of_json second sentences sequence sequencefile serde session_window sha sha1 sha2 shiftleft shiftright shiftrightunsigned shuffle sign signum sin sinh size skewness slice smallint some sort_array soundex space spark_partition_id split sqrt stack std stddev stddev_pop stddev_samp str_to_map string struct substr substring substring_index sum tan tanh textfile timestamp timestamp_micros timestamp_millis timestamp_seconds tinyint to_csv to_date to_json to_timestamp to_unix_timestamp to_utc_timestamp transform transform_keys transform_values translate trim trunc try_add try_divide typeof ucase unbase64 unhex uniontype unix_date unix_micros unix_millis unix_seconds unix_timestamp upper uuid var_pop var_samp variance version weekday weekofyear when width_bucket window xpath xpath_boolean xpath_double xpath_float xpath_int xpath_long xpath_number xpath_short xpath_string xxhash64 year zip_with"),atoms:s("false true null"),operatorChars:/^[*\/+\-%<>!=~&|^]/,dateSQL:s("date time timestamp"),support:s("doubleQuote zerolessFloat")}),o.defineMIME("text/x-esper",{name:"sql",client:s("source"),keywords:s("alter and as asc between by count create delete desc distinct drop from group having in insert into is join like not on or order select set table union update values where limit after all and as at asc avedev avg between by case cast coalesce count create current_timestamp day days delete define desc distinct else end escape events every exists false first from full group having hour hours in inner insert instanceof into irstream is istream join last lastweekday left limit like max match_recognize matches median measures metadatasql min minute minutes msec millisecond milliseconds not null offset on or order outer output partition pattern prev prior regexp retain-union retain-intersection right rstream sec second seconds select set some snapshot sql stddev sum then true unidirectional until update variable weekday when where window"),builtin:{},atoms:s("false true null"),operatorChars:/^[*+\-%<>!=&|^\/#@?~]/,dateSQL:s("time"),support:s("decimallessFloat zerolessFloat binaryNumber hexNumber")}),o.defineMIME("text/x-trino",{name:"sql",keywords:s("abs absent acos add admin after all all_match alter analyze and any any_match approx_distinct approx_most_frequent approx_percentile approx_set arbitrary array_agg array_distinct array_except array_intersect array_join array_max array_min array_position array_remove array_sort array_union arrays_overlap as asc asin at at_timezone atan atan2 authorization avg bar bernoulli beta_cdf between bing_tile bing_tile_at bing_tile_coordinates bing_tile_polygon bing_tile_quadkey bing_tile_zoom_level bing_tiles_around bit_count bitwise_and bitwise_and_agg bitwise_left_shift bitwise_not bitwise_or bitwise_or_agg bitwise_right_shift bitwise_right_shift_arithmetic bitwise_xor bool_and bool_or both by call cardinality cascade case cast catalogs cbrt ceil ceiling char2hexint checksum chr classify coalesce codepoint column columns combinations comment commit committed concat concat_ws conditional constraint contains contains_sequence convex_hull_agg copartition corr cos cosh cosine_similarity count count_if covar_pop covar_samp crc32 create cross cube cume_dist current current_catalog current_date current_groups current_path current_role current_schema current_time current_timestamp current_timezone current_user data date_add date_diff date_format date_parse date_trunc day day_of_month day_of_week day_of_year deallocate default define definer degrees delete dense_rank deny desc describe descriptor distinct distributed dow doy drop e element_at else empty empty_approx_set encoding end error escape evaluate_classifier_predictions every except excluding execute exists exp explain extract false features fetch filter final first first_value flatten floor following for format format_datetime format_number from from_base from_base32 from_base64 from_base64url from_big_endian_32 from_big_endian_64 from_encoded_polyline from_geojson_geometry from_hex from_ieee754_32 from_ieee754_64 from_iso8601_date from_iso8601_timestamp from_iso8601_timestamp_nanos from_unixtime from_unixtime_nanos from_utf8 full functions geometric_mean geometry_from_hadoop_shape geometry_invalid_reason geometry_nearest_points geometry_to_bing_tiles geometry_union geometry_union_agg grant granted grants graphviz great_circle_distance greatest group grouping groups hamming_distance hash_counts having histogram hmac_md5 hmac_sha1 hmac_sha256 hmac_sha512 hour human_readable_seconds if ignore in including index infinity initial inner input insert intersect intersection_cardinality into inverse_beta_cdf inverse_normal_cdf invoker io is is_finite is_infinite is_json_scalar is_nan isolation jaccard_index join json_array json_array_contains json_array_get json_array_length json_exists json_extract json_extract_scalar json_format json_object json_parse json_query json_size json_value keep key keys kurtosis lag last last_day_of_month last_value lateral lead leading learn_classifier learn_libsvm_classifier learn_libsvm_regressor learn_regressor least left length level levenshtein_distance like limit line_interpolate_point line_interpolate_points line_locate_point listagg ln local localtime localtimestamp log log10 log2 logical lower lpad ltrim luhn_check make_set_digest map_agg map_concat map_entries map_filter map_from_entries map_keys map_union map_values map_zip_with match match_recognize matched matches materialized max max_by md5 measures merge merge_set_digest millisecond min min_by minute mod month multimap_agg multimap_from_entries murmur3 nan natural next nfc nfd nfkc nfkd ngrams no none none_match normal_cdf normalize not now nth_value ntile null nullif nulls numeric_histogram object objectid_timestamp of offset omit on one only option or order ordinality outer output over overflow parse_data_size parse_datetime parse_duration partition partitions passing past path pattern per percent_rank permute pi position pow power preceding prepare privileges properties prune qdigest_agg quarter quotes radians rand random range rank read recursive reduce reduce_agg refresh regexp_count regexp_extract regexp_extract_all regexp_like regexp_position regexp_replace regexp_split regr_intercept regr_slope regress rename render repeat repeatable replace reset respect restrict returning reverse revoke rgb right role roles rollback rollup round row_number rows rpad rtrim running scalar schema schemas second security seek select sequence serializable session set sets sha1 sha256 sha512 show shuffle sign simplify_geometry sin skewness skip slice some soundex spatial_partitioning spatial_partitions split split_part split_to_map split_to_multimap spooky_hash_v2_32 spooky_hash_v2_64 sqrt st_area st_asbinary st_astext st_boundary st_buffer st_centroid st_contains st_convexhull st_coorddim st_crosses st_difference st_dimension st_disjoint st_distance st_endpoint st_envelope st_envelopeaspts st_equals st_exteriorring st_geometries st_geometryfromtext st_geometryn st_geometrytype st_geomfrombinary st_interiorringn st_interiorrings st_intersection st_intersects st_isclosed st_isempty st_isring st_issimple st_isvalid st_length st_linefromtext st_linestring st_multipoint st_numgeometries st_numinteriorring st_numpoints st_overlaps st_point st_pointn st_points st_polygon st_relate st_startpoint st_symdifference st_touches st_union st_within st_x st_xmax st_xmin st_y st_ymax st_ymin start starts_with stats stddev stddev_pop stddev_samp string strpos subset substr substring sum system table tables tablesample tan tanh tdigest_agg text then ties timestamp_objectid timezone_hour timezone_minute to to_base to_base32 to_base64 to_base64url to_big_endian_32 to_big_endian_64 to_char to_date to_encoded_polyline to_geojson_geometry to_geometry to_hex to_ieee754_32 to_ieee754_64 to_iso8601 to_milliseconds to_spherical_geography to_timestamp to_unixtime to_utf8 trailing transaction transform transform_keys transform_values translate trim trim_array true truncate try try_cast type typeof uescape unbounded uncommitted unconditional union unique unknown unmatched unnest update upper url_decode url_encode url_extract_fragment url_extract_host url_extract_parameter url_extract_path url_extract_port url_extract_protocol url_extract_query use user using utf16 utf32 utf8 validate value value_at_quantile values values_at_quantiles var_pop var_samp variance verbose version view week week_of_year when where width_bucket wilson_interval_lower wilson_interval_upper window with with_timezone within without word_stem work wrapper write xxhash64 year year_of_week yow zip zip_with"),builtin:s("array bigint bingtile boolean char codepoints color date decimal double function geometry hyperloglog int integer interval ipaddress joniregexp json json2016 jsonpath kdbtree likepattern map model objectid p4hyperloglog precision qdigest re2jregexp real regressor row setdigest smallint sphericalgeography tdigest time timestamp tinyint uuid varbinary varchar zone"),atoms:s("false true null unknown"),operatorChars:/^[[\]|<>=!\-+*/%]/,dateSQL:s("date time timestamp zone"),support:s("decimallessFloat zerolessFloat hexNumber")})})});var ta=Ke(($u,Ku)=>{(function(o){typeof $u=="object"&&typeof Ku=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("stylus",function(E){for(var O=E.indentUnit,G="",J=_(p),re=/^(a|b|i|s|col|em)$/i,q=_(S),I=_(s),D=_(T),Q=_(g),j=_(v),V=M(v),y=_(b),K=_(C),X=_(h),N=/^\s*([.]{2,3}|&&|\|\||\*\*|[?!=:]?=|[-+*\/%<>]=?|\?:|\~)/,R=M(w),le=_(c),xe=new RegExp(/^\-(moz|ms|o|webkit)-/i),F=_(d),L="",de={},ze,pe,Ee,ge;G.length|~|\/)?\s*[\w-]*([a-z0-9-]|\*|\/\*)(\(|,)?)/),H.context.line.firstWord=L?L[0].replace(/^\s*/,""):"",H.context.line.indent=$.indentation(),ze=$.peek(),$.match("//"))return $.skipToEnd(),["comment","comment"];if($.match("/*"))return H.tokenize=qe,qe($,H);if(ze=='"'||ze=="'")return $.next(),H.tokenize=Se(ze),H.tokenize($,H);if(ze=="@")return $.next(),$.eatWhile(/[\w\\-]/),["def",$.current()];if(ze=="#"){if($.next(),$.match(/^[0-9a-f]{3}([0-9a-f]([0-9a-f]{2}){0,2})?\b(?!-)/i))return["atom","atom"];if($.match(/^[a-z][\w-]*/i))return["builtin","hash"]}return $.match(xe)?["meta","vendor-prefixes"]:$.match(/^-?[0-9]?\.?[0-9]/)?($.eatWhile(/[a-z%]/i),["number","unit"]):ze=="!"?($.next(),[$.match(/^(important|optional)/i)?"keyword":"operator","important"]):ze=="."&&$.match(/^\.[a-z][\w-]*/i)?["qualifier","qualifier"]:$.match(V)?($.peek()=="("&&(H.tokenize=Be),["property","word"]):$.match(/^[a-z][\w-]*\(/i)?($.backUp(1),["keyword","mixin"]):$.match(/^(\+|-)[a-z][\w-]*\(/i)?($.backUp(1),["keyword","block-mixin"]):$.string.match(/^\s*&/)&&$.match(/^[-_]+[a-z][\w-]*/)?["qualifier","qualifier"]:$.match(/^(\/|&)(-|_|:|\.|#|[a-z])/)?($.backUp(1),["variable-3","reference"]):$.match(/^&{1}\s*$/)?["variable-3","reference"]:$.match(R)?["operator","operator"]:$.match(/^\$?[-_]*[a-z0-9]+[\w-]*/i)?$.match(/^(\.|\[)[\w-\'\"\]]+/i,!1)&&!U($.current())?($.match("."),["variable-2","variable-name"]):["variable-2","word"]:$.match(N)?["operator",$.current()]:/[:;,{}\[\]\(\)]/.test(ze)?($.next(),[null,ze]):($.next(),[null,null])}function qe($,H){for(var se=!1,De;(De=$.next())!=null;){if(se&&De=="/"){H.tokenize=null;break}se=De=="*"}return["comment","comment"]}function Se($){return function(H,se){for(var De=!1,nt;(nt=H.next())!=null;){if(nt==$&&!De){$==")"&&H.backUp(1);break}De=!De&&nt=="\\"}return(nt==$||!De&&$!=")")&&(se.tokenize=null),["string","string"]}}function Be($,H){return $.next(),$.match(/\s*[\"\')]/,!1)?H.tokenize=null:H.tokenize=Se(")"),[null,"("]}function Ze($,H,se,De){this.type=$,this.indent=H,this.prev=se,this.line=De||{firstWord:"",indent:0}}function ke($,H,se,De){return De=De>=0?De:O,$.context=new Ze(se,H.indentation()+De,$.context),se}function Je($,H){var se=$.context.indent-O;return H=H||!1,$.context=$.context.prev,H&&($.context.indent=se),$.context.type}function Re($,H,se){return de[se.context.type]($,H,se)}function Ge($,H,se,De){for(var nt=De||1;nt>0;nt--)se.context=se.context.prev;return Re($,H,se)}function U($){return $.toLowerCase()in J}function Z($){return $=$.toLowerCase(),$ in q||$ in X}function ce($){return $.toLowerCase()in le}function He($){return $.toLowerCase().match(xe)}function te($){var H=$.toLowerCase(),se="variable-2";return U($)?se="tag":ce($)?se="block-keyword":Z($)?se="property":H in D||H in F?se="atom":H=="return"||H in Q?se="keyword":$.match(/^[A-Z]/)&&(se="string"),se}function fe($,H){return Me(H)&&($=="{"||$=="]"||$=="hash"||$=="qualifier")||$=="block-mixin"}function oe($,H){return $=="{"&&H.match(/^\s*\$?[\w-]+/i,!1)}function Ue($,H){return $==":"&&H.match(/^[a-z-]+/,!1)}function we($){return $.sol()||$.string.match(new RegExp("^\\s*"+W($.current())))}function Me($){return $.eol()||$.match(/^\s*$/,!1)}function Le($){var H=/^\s*[-_]*[a-z0-9]+[\w-]*/i,se=typeof $=="string"?$.match(H):$.string.match(H);return se?se[0].replace(/^\s*/,""):""}return de.block=function($,H,se){if($=="comment"&&we(H)||$==","&&Me(H)||$=="mixin")return ke(se,H,"block",0);if(oe($,H))return ke(se,H,"interpolation");if(Me(H)&&$=="]"&&!/^\s*(\.|#|:|\[|\*|&)/.test(H.string)&&!U(Le(H)))return ke(se,H,"block",0);if(fe($,H))return ke(se,H,"block");if($=="}"&&Me(H))return ke(se,H,"block",0);if($=="variable-name")return H.string.match(/^\s?\$[\w-\.\[\]\'\"]+$/)||ce(Le(H))?ke(se,H,"variableName"):ke(se,H,"variableName",0);if($=="=")return!Me(H)&&!ce(Le(H))?ke(se,H,"block",0):ke(se,H,"block");if($=="*"&&(Me(H)||H.match(/\s*(,|\.|#|\[|:|{)/,!1)))return ge="tag",ke(se,H,"block");if(Ue($,H))return ke(se,H,"pseudo");if(/@(font-face|media|supports|(-moz-)?document)/.test($))return ke(se,H,Me(H)?"block":"atBlock");if(/@(-(moz|ms|o|webkit)-)?keyframes$/.test($))return ke(se,H,"keyframes");if(/@extends?/.test($))return ke(se,H,"extend",0);if($&&$.charAt(0)=="@")return H.indentation()>0&&Z(H.current().slice(1))?(ge="variable-2","block"):/(@import|@require|@charset)/.test($)?ke(se,H,"block",0):ke(se,H,"block");if($=="reference"&&Me(H))return ke(se,H,"block");if($=="(")return ke(se,H,"parens");if($=="vendor-prefixes")return ke(se,H,"vendorPrefixes");if($=="word"){var De=H.current();if(ge=te(De),ge=="property")return we(H)?ke(se,H,"block",0):(ge="atom","block");if(ge=="tag"){if(/embed|menu|pre|progress|sub|table/.test(De)&&Z(Le(H))||H.string.match(new RegExp("\\[\\s*"+De+"|"+De+"\\s*\\]")))return ge="atom","block";if(re.test(De)&&(we(H)&&H.string.match(/=/)||!we(H)&&!H.string.match(/^(\s*\.|#|\&|\[|\/|>|\*)/)&&!U(Le(H))))return ge="variable-2",ce(Le(H))?"block":ke(se,H,"block",0);if(Me(H))return ke(se,H,"block")}if(ge=="block-keyword")return ge="keyword",H.current(/(if|unless)/)&&!we(H)?"block":ke(se,H,"block");if(De=="return")return ke(se,H,"block",0);if(ge=="variable-2"&&H.string.match(/^\s?\$[\w-\.\[\]\'\"]+$/))return ke(se,H,"block")}return se.context.type},de.parens=function($,H,se){if($=="(")return ke(se,H,"parens");if($==")")return se.context.prev.type=="parens"?Je(se):H.string.match(/^[a-z][\w-]*\(/i)&&Me(H)||ce(Le(H))||/(\.|#|:|\[|\*|&|>|~|\+|\/)/.test(Le(H))||!H.string.match(/^-?[a-z][\w-\.\[\]\'\"]*\s*=/)&&U(Le(H))?ke(se,H,"block"):H.string.match(/^[\$-]?[a-z][\w-\.\[\]\'\"]*\s*=/)||H.string.match(/^\s*(\(|\)|[0-9])/)||H.string.match(/^\s+[a-z][\w-]*\(/i)||H.string.match(/^\s+[\$-]?[a-z]/i)?ke(se,H,"block",0):Me(H)?ke(se,H,"block"):ke(se,H,"block",0);if($&&$.charAt(0)=="@"&&Z(H.current().slice(1))&&(ge="variable-2"),$=="word"){var De=H.current();ge=te(De),ge=="tag"&&re.test(De)&&(ge="variable-2"),(ge=="property"||De=="to")&&(ge="atom")}return $=="variable-name"?ke(se,H,"variableName"):Ue($,H)?ke(se,H,"pseudo"):se.context.type},de.vendorPrefixes=function($,H,se){return $=="word"?(ge="property",ke(se,H,"block",0)):Je(se)},de.pseudo=function($,H,se){return Z(Le(H.string))?Ge($,H,se):(H.match(/^[a-z-]+/),ge="variable-3",Me(H)?ke(se,H,"block"):Je(se))},de.atBlock=function($,H,se){if($=="(")return ke(se,H,"atBlock_parens");if(fe($,H))return ke(se,H,"block");if(oe($,H))return ke(se,H,"interpolation");if($=="word"){var De=H.current().toLowerCase();if(/^(only|not|and|or)$/.test(De)?ge="keyword":j.hasOwnProperty(De)?ge="tag":K.hasOwnProperty(De)?ge="attribute":y.hasOwnProperty(De)?ge="property":I.hasOwnProperty(De)?ge="string-2":ge=te(H.current()),ge=="tag"&&Me(H))return ke(se,H,"block")}return $=="operator"&&/^(not|and|or)$/.test(H.current())&&(ge="keyword"),se.context.type},de.atBlock_parens=function($,H,se){if($=="{"||$=="}")return se.context.type;if($==")")return Me(H)?ke(se,H,"block"):ke(se,H,"atBlock");if($=="word"){var De=H.current().toLowerCase();return ge=te(De),/^(max|min)/.test(De)&&(ge="property"),ge=="tag"&&(re.test(De)?ge="variable-2":ge="atom"),se.context.type}return de.atBlock($,H,se)},de.keyframes=function($,H,se){return H.indentation()=="0"&&($=="}"&&we(H)||$=="]"||$=="hash"||$=="qualifier"||U(H.current()))?Ge($,H,se):$=="{"?ke(se,H,"keyframes"):$=="}"?we(H)?Je(se,!0):ke(se,H,"keyframes"):$=="unit"&&/^[0-9]+\%$/.test(H.current())?ke(se,H,"keyframes"):$=="word"&&(ge=te(H.current()),ge=="block-keyword")?(ge="keyword",ke(se,H,"keyframes")):/@(font-face|media|supports|(-moz-)?document)/.test($)?ke(se,H,Me(H)?"block":"atBlock"):$=="mixin"?ke(se,H,"block",0):se.context.type},de.interpolation=function($,H,se){return $=="{"&&Je(se)&&ke(se,H,"block"),$=="}"?H.string.match(/^\s*(\.|#|:|\[|\*|&|>|~|\+|\/)/i)||H.string.match(/^\s*[a-z]/i)&&U(Le(H))?ke(se,H,"block"):!H.string.match(/^(\{|\s*\&)/)||H.match(/\s*[\w-]/,!1)?ke(se,H,"block",0):ke(se,H,"block"):$=="variable-name"?ke(se,H,"variableName",0):($=="word"&&(ge=te(H.current()),ge=="tag"&&(ge="atom")),se.context.type)},de.extend=function($,H,se){return $=="["||$=="="?"extend":$=="]"?Je(se):$=="word"?(ge=te(H.current()),"extend"):Je(se)},de.variableName=function($,H,se){return $=="string"||$=="["||$=="]"||H.current().match(/^(\.|\$)/)?(H.current().match(/^\.[\w-]+/i)&&(ge="variable-2"),"variableName"):Ge($,H,se)},{startState:function($){return{tokenize:null,state:"block",context:new Ze("block",$||0,null)}},token:function($,H){return!H.tokenize&&$.eatSpace()?null:(pe=(H.tokenize||Oe)($,H),pe&&typeof pe=="object"&&(Ee=pe[1],pe=pe[0]),ge=pe,H.state=de[H.state](Ee,$,H),ge)},indent:function($,H,se){var De=$.context,nt=H&&H.charAt(0),dt=De.indent,Pt=Le(H),Ft=se.match(/^\s*/)[0].replace(/\t/g,G).length,Pe=$.context.prev?$.context.prev.line.firstWord:"",xt=$.context.prev?$.context.prev.line.indent:Ft;return De.prev&&(nt=="}"&&(De.type=="block"||De.type=="atBlock"||De.type=="keyframes")||nt==")"&&(De.type=="parens"||De.type=="atBlock_parens")||nt=="{"&&De.type=="at")?dt=De.indent-O:/(\})/.test(nt)||(/@|\$|\d/.test(nt)||/^\{/.test(H)||/^\s*\/(\/|\*)/.test(H)||/^\s*\/\*/.test(Pe)||/^\s*[\w-\.\[\]\'\"]+\s*(\?|:|\+)?=/i.test(H)||/^(\+|-)?[a-z][\w-]*\(/i.test(H)||/^return/.test(H)||ce(Pt)?dt=Ft:/(\.|#|:|\[|\*|&|>|~|\+|\/)/.test(nt)||U(Pt)?/\,\s*$/.test(Pe)?dt=xt:/^\s+/.test(se)&&(/(\.|#|:|\[|\*|&|>|~|\+|\/)/.test(Pe)||U(Pe))?dt=Ft<=xt?xt:xt+O:dt=Ft:!/,\s*$/.test(se)&&(He(Pt)||Z(Pt))&&(ce(Pe)?dt=Ft<=xt?xt:xt+O:/^\{/.test(Pe)?dt=Ft<=xt?Ft:xt+O:He(Pe)||Z(Pe)?dt=Ft>=xt?xt:Ft:/^(\.|#|:|\[|\*|&|@|\+|\-|>|~|\/)/.test(Pe)||/=\s*$/.test(Pe)||U(Pe)||/^\$[\w-\.\[\]\'\"]/.test(Pe)?dt=xt+O:dt=Ft)),dt},electricChars:"}",blockCommentStart:"/*",blockCommentEnd:"*/",blockCommentContinue:" * ",lineComment:"//",fold:"indent"}});var p=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","bgsound","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","marquee","menu","menuitem","meta","meter","nav","nobr","noframes","noscript","object","ol","optgroup","option","output","p","param","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","track","u","ul","var","video"],v=["domain","regexp","url-prefix","url"],C=["all","aural","braille","handheld","print","projection","screen","tty","tv","embossed"],b=["width","min-width","max-width","height","min-height","max-height","device-width","min-device-width","max-device-width","device-height","min-device-height","max-device-height","aspect-ratio","min-aspect-ratio","max-aspect-ratio","device-aspect-ratio","min-device-aspect-ratio","max-device-aspect-ratio","color","min-color","max-color","color-index","min-color-index","max-color-index","monochrome","min-monochrome","max-monochrome","resolution","min-resolution","max-resolution","scan","grid","dynamic-range","video-dynamic-range"],S=["align-content","align-items","align-self","alignment-adjust","alignment-baseline","anchor-point","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","appearance","azimuth","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","baseline-shift","binding","bleed","bookmark-label","bookmark-level","bookmark-state","bookmark-target","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","color","color-profile","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","crop","cue","cue-after","cue-before","cursor","direction","display","dominant-baseline","drop-initial-after-adjust","drop-initial-after-align","drop-initial-before-adjust","drop-initial-before-align","drop-initial-size","drop-initial-value","elevation","empty-cells","fit","fit-position","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","float-offset","flow-from","flow-into","font","font-feature-settings","font-family","font-kerning","font-language-override","font-size","font-size-adjust","font-stretch","font-style","font-synthesis","font-variant","font-variant-alternates","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-weight","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-position","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","inline-box-align","justify-content","left","letter-spacing","line-break","line-height","line-stacking","line-stacking-ruby","line-stacking-shift","line-stacking-strategy","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marker-offset","marks","marquee-direction","marquee-loop","marquee-play-count","marquee-speed","marquee-style","max-height","max-width","min-height","min-width","move-to","nav-down","nav-index","nav-left","nav-right","nav-up","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-style","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page","page-break-after","page-break-before","page-break-inside","page-policy","pause","pause-after","pause-before","perspective","perspective-origin","pitch","pitch-range","play-during","position","presentation-level","punctuation-trim","quotes","region-break-after","region-break-before","region-break-inside","region-fragment","rendering-intent","resize","rest","rest-after","rest-before","richness","right","rotation","rotation-point","ruby-align","ruby-overhang","ruby-position","ruby-span","shape-image-threshold","shape-inside","shape-margin","shape-outside","size","speak","speak-as","speak-header","speak-numeral","speak-punctuation","speech-rate","stress","string-set","tab-size","table-layout","target","target-name","target-new","target-position","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-skip","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-height","text-indent","text-justify","text-outline","text-overflow","text-shadow","text-size-adjust","text-space-collapse","text-transform","text-underline-position","text-wrap","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","z-index","clip-path","clip-rule","mask","enable-background","filter","flood-color","flood-opacity","lighting-color","stop-color","stop-opacity","pointer-events","color-interpolation","color-interpolation-filters","color-rendering","fill","fill-opacity","fill-rule","image-rendering","marker","marker-end","marker-mid","marker-start","shape-rendering","stroke","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","text-rendering","baseline-shift","dominant-baseline","glyph-orientation-horizontal","glyph-orientation-vertical","text-anchor","writing-mode","font-smoothing","osx-font-smoothing"],s=["scrollbar-arrow-color","scrollbar-base-color","scrollbar-dark-shadow-color","scrollbar-face-color","scrollbar-highlight-color","scrollbar-shadow-color","scrollbar-3d-light-color","scrollbar-track-color","shape-inside","searchfield-cancel-button","searchfield-decoration","searchfield-results-button","searchfield-results-decoration","zoom"],h=["font-family","src","unicode-range","font-variant","font-feature-settings","font-stretch","font-weight","font-style"],g=["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","grey","green","greenyellow","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"],T=["above","absolute","activeborder","additive","activecaption","afar","after-white-space","ahead","alias","all","all-scroll","alphabetic","alternate","always","amharic","amharic-abegede","antialiased","appworkspace","arabic-indic","armenian","asterisks","attr","auto","avoid","avoid-column","avoid-page","avoid-region","background","backwards","baseline","below","bidi-override","binary","bengali","blink","block","block-axis","bold","bolder","border","border-box","both","bottom","break","break-all","break-word","bullets","button","buttonface","buttonhighlight","buttonshadow","buttontext","calc","cambodian","capitalize","caps-lock-indicator","caption","captiontext","caret","cell","center","checkbox","circle","cjk-decimal","cjk-earthly-branch","cjk-heavenly-stem","cjk-ideographic","clear","clip","close-quote","col-resize","collapse","column","compact","condensed","conic-gradient","contain","content","contents","content-box","context-menu","continuous","copy","counter","counters","cover","crop","cross","crosshair","currentcolor","cursive","cyclic","dashed","decimal","decimal-leading-zero","default","default-button","destination-atop","destination-in","destination-out","destination-over","devanagari","disc","discard","disclosure-closed","disclosure-open","document","dot-dash","dot-dot-dash","dotted","double","down","e-resize","ease","ease-in","ease-in-out","ease-out","element","ellipse","ellipsis","embed","end","ethiopic","ethiopic-abegede","ethiopic-abegede-am-et","ethiopic-abegede-gez","ethiopic-abegede-ti-er","ethiopic-abegede-ti-et","ethiopic-halehame-aa-er","ethiopic-halehame-aa-et","ethiopic-halehame-am-et","ethiopic-halehame-gez","ethiopic-halehame-om-et","ethiopic-halehame-sid-et","ethiopic-halehame-so-et","ethiopic-halehame-ti-er","ethiopic-halehame-ti-et","ethiopic-halehame-tig","ethiopic-numeric","ew-resize","expanded","extends","extra-condensed","extra-expanded","fantasy","fast","fill","fixed","flat","flex","footnotes","forwards","from","geometricPrecision","georgian","graytext","groove","gujarati","gurmukhi","hand","hangul","hangul-consonant","hebrew","help","hidden","hide","high","higher","highlight","highlighttext","hiragana","hiragana-iroha","horizontal","hsl","hsla","icon","ignore","inactiveborder","inactivecaption","inactivecaptiontext","infinite","infobackground","infotext","inherit","initial","inline","inline-axis","inline-block","inline-flex","inline-table","inset","inside","intrinsic","invert","italic","japanese-formal","japanese-informal","justify","kannada","katakana","katakana-iroha","keep-all","khmer","korean-hangul-formal","korean-hanja-formal","korean-hanja-informal","landscape","lao","large","larger","left","level","lighter","line-through","linear","linear-gradient","lines","list-item","listbox","listitem","local","logical","loud","lower","lower-alpha","lower-armenian","lower-greek","lower-hexadecimal","lower-latin","lower-norwegian","lower-roman","lowercase","ltr","malayalam","match","matrix","matrix3d","media-play-button","media-slider","media-sliderthumb","media-volume-slider","media-volume-sliderthumb","medium","menu","menulist","menulist-button","menutext","message-box","middle","min-intrinsic","mix","mongolian","monospace","move","multiple","myanmar","n-resize","narrower","ne-resize","nesw-resize","no-close-quote","no-drop","no-open-quote","no-repeat","none","normal","not-allowed","nowrap","ns-resize","numbers","numeric","nw-resize","nwse-resize","oblique","octal","open-quote","optimizeLegibility","optimizeSpeed","oriya","oromo","outset","outside","outside-shape","overlay","overline","padding","padding-box","painted","page","paused","persian","perspective","plus-darker","plus-lighter","pointer","polygon","portrait","pre","pre-line","pre-wrap","preserve-3d","progress","push-button","radial-gradient","radio","read-only","read-write","read-write-plaintext-only","rectangle","region","relative","repeat","repeating-linear-gradient","repeating-radial-gradient","repeating-conic-gradient","repeat-x","repeat-y","reset","reverse","rgb","rgba","ridge","right","rotate","rotate3d","rotateX","rotateY","rotateZ","round","row-resize","rtl","run-in","running","s-resize","sans-serif","scale","scale3d","scaleX","scaleY","scaleZ","scroll","scrollbar","scroll-position","se-resize","searchfield","searchfield-cancel-button","searchfield-decoration","searchfield-results-button","searchfield-results-decoration","semi-condensed","semi-expanded","separate","serif","show","sidama","simp-chinese-formal","simp-chinese-informal","single","skew","skewX","skewY","skip-white-space","slide","slider-horizontal","slider-vertical","sliderthumb-horizontal","sliderthumb-vertical","slow","small","small-caps","small-caption","smaller","solid","somali","source-atop","source-in","source-out","source-over","space","spell-out","square","square-button","standard","start","static","status-bar","stretch","stroke","sub","subpixel-antialiased","super","sw-resize","symbolic","symbols","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group","tamil","telugu","text","text-bottom","text-top","textarea","textfield","thai","thick","thin","threeddarkshadow","threedface","threedhighlight","threedlightshadow","threedshadow","tibetan","tigre","tigrinya-er","tigrinya-er-abegede","tigrinya-et","tigrinya-et-abegede","to","top","trad-chinese-formal","trad-chinese-informal","translate","translate3d","translateX","translateY","translateZ","transparent","ultra-condensed","ultra-expanded","underline","up","upper-alpha","upper-armenian","upper-greek","upper-hexadecimal","upper-latin","upper-norwegian","upper-roman","uppercase","urdu","url","var","vertical","vertical-text","visible","visibleFill","visiblePainted","visibleStroke","visual","w-resize","wait","wave","wider","window","windowframe","windowtext","words","x-large","x-small","xor","xx-large","xx-small","bicubic","optimizespeed","grayscale","row","row-reverse","wrap","wrap-reverse","column-reverse","flex-start","flex-end","space-between","space-around","unset"],w=["in","and","or","not","is not","is a","is","isnt","defined","if unless"],c=["for","if","else","unless","from","to"],d=["null","true","false","href","title","type","not-allowed","readonly","disabled"],k=["@font-face","@keyframes","@media","@viewport","@page","@host","@supports","@block","@css"],z=p.concat(v,C,b,S,s,g,T,h,w,c,d,k);function M(E){return E=E.sort(function(O,G){return G>O}),new RegExp("^(("+E.join(")|(")+"))\\b")}function _(E){for(var O={},G=0;G{(function(o){typeof Gu=="object"&&typeof Zu=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";function p(q){for(var I={},D=0;D~^?!",h=":;,.(){}[]",g=/^\-?0b[01][01_]*/,T=/^\-?0o[0-7][0-7_]*/,w=/^\-?0x[\dA-Fa-f][\dA-Fa-f_]*(?:(?:\.[\dA-Fa-f][\dA-Fa-f_]*)?[Pp]\-?\d[\d_]*)?/,c=/^\-?\d[\d_]*(?:\.\d[\d_]*)?(?:[Ee]\-?\d[\d_]*)?/,d=/^\$\d+|(`?)[_A-Za-z][_A-Za-z$0-9]*\1/,k=/^\.(?:\$\d+|(`?)[_A-Za-z][_A-Za-z$0-9]*\1)/,z=/^\#[A-Za-z]+/,M=/^@(?:\$\d+|(`?)[_A-Za-z][_A-Za-z$0-9]*\1)/;function _(q,I,D){if(q.sol()&&(I.indented=q.indentation()),q.eatSpace())return null;var Q=q.peek();if(Q=="/"){if(q.match("//"))return q.skipToEnd(),"comment";if(q.match("/*"))return I.tokenize.push(O),O(q,I)}if(q.match(z))return"builtin";if(q.match(M))return"attribute";if(q.match(g)||q.match(T)||q.match(w)||q.match(c))return"number";if(q.match(k))return"property";if(s.indexOf(Q)>-1)return q.next(),"operator";if(h.indexOf(Q)>-1)return q.next(),q.match(".."),"punctuation";var j;if(j=q.match(/("""|"|')/)){var V=E.bind(null,j[0]);return I.tokenize.push(V),V(q,I)}if(q.match(d)){var y=q.current();return S.hasOwnProperty(y)?"variable-2":b.hasOwnProperty(y)?"atom":v.hasOwnProperty(y)?(C.hasOwnProperty(y)&&(I.prev="define"),"keyword"):D=="define"?"def":"variable"}return q.next(),null}function W(){var q=0;return function(I,D,Q){var j=_(I,D,Q);if(j=="punctuation"){if(I.current()=="(")++q;else if(I.current()==")"){if(q==0)return I.backUp(1),D.tokenize.pop(),D.tokenize[D.tokenize.length-1](I,D);--q}}return j}}function E(q,I,D){for(var Q=q.length==1,j,V=!1;j=I.peek();)if(V){if(I.next(),j=="(")return D.tokenize.push(W()),"string";V=!1}else{if(I.match(q))return D.tokenize.pop(),"string";I.next(),V=j=="\\"}return Q&&D.tokenize.pop(),"string"}function O(q,I){for(var D;D=q.next();)if(D==="/"&&q.eat("*"))I.tokenize.push(O);else if(D==="*"&&q.eat("/")){I.tokenize.pop();break}return"comment"}function G(q,I,D){this.prev=q,this.align=I,this.indented=D}function J(q,I){var D=I.match(/^\s*($|\/[\/\*])/,!1)?null:I.column()+1;q.context=new G(q.context,D,q.indented)}function re(q){q.context&&(q.indented=q.context.indented,q.context=q.context.prev)}o.defineMode("swift",function(q){return{startState:function(){return{prev:null,context:null,indented:0,tokenize:[]}},token:function(I,D){var Q=D.prev;D.prev=null;var j=D.tokenize[D.tokenize.length-1]||_,V=j(I,D,Q);if(!V||V=="comment"?D.prev=Q:D.prev||(D.prev=V),V=="punctuation"){var y=/[\(\[\{]|([\]\)\}])/.exec(I.current());y&&(y[1]?re:J)(D,I)}return V},indent:function(I,D){var Q=I.context;if(!Q)return 0;var j=/^[\]\}\)]/.test(D);return Q.align!=null?Q.align-(j?1:0):Q.indented+(j?0:q.indentUnit)},electricInput:/^\s*[\)\}\]]$/,lineComment:"//",blockCommentStart:"/*",blockCommentEnd:"*/",fold:"brace",closeBrackets:"()[]{}''\"\"``"}}),o.defineMIME("text/x-swift","swift")})});var Vu=Ke((Yu,Qu)=>{(function(o){typeof Yu=="object"&&typeof Qu=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("coffeescript",function(p,v){var C="error";function b(I){return new RegExp("^(("+I.join(")|(")+"))\\b")}var S=/^(?:->|=>|\+[+=]?|-[\-=]?|\*[\*=]?|\/[\/=]?|[=!]=|<[><]?=?|>>?=?|%=?|&=?|\|=?|\^=?|\~|!|\?|(or|and|\|\||&&|\?)=)/,s=/^(?:[()\[\]{},:`=;]|\.\.?\.?)/,h=/^[_A-Za-z$][_A-Za-z$0-9]*/,g=/^@[_A-Za-z$][_A-Za-z$0-9]*/,T=b(["and","or","not","is","isnt","in","instanceof","typeof"]),w=["for","while","loop","if","unless","else","switch","try","catch","finally","class"],c=["break","by","continue","debugger","delete","do","in","of","new","return","then","this","@","throw","when","until","extends"],d=b(w.concat(c));w=b(w);var k=/^('{3}|\"{3}|['\"])/,z=/^(\/{3}|\/)/,M=["Infinity","NaN","undefined","null","true","false","on","off","yes","no"],_=b(M);function W(I,D){if(I.sol()){D.scope.align===null&&(D.scope.align=!1);var Q=D.scope.offset;if(I.eatSpace()){var j=I.indentation();return j>Q&&D.scope.type=="coffee"?"indent":j0&&J(I,D)}if(I.eatSpace())return null;var V=I.peek();if(I.match("####"))return I.skipToEnd(),"comment";if(I.match("###"))return D.tokenize=O,D.tokenize(I,D);if(V==="#")return I.skipToEnd(),"comment";if(I.match(/^-?[0-9\.]/,!1)){var y=!1;if(I.match(/^-?\d*\.\d+(e[\+\-]?\d+)?/i)&&(y=!0),I.match(/^-?\d+\.\d*/)&&(y=!0),I.match(/^-?\.\d+/)&&(y=!0),y)return I.peek()=="."&&I.backUp(1),"number";var K=!1;if(I.match(/^-?0x[0-9a-f]+/i)&&(K=!0),I.match(/^-?[1-9]\d*(e[\+\-]?\d+)?/)&&(K=!0),I.match(/^-?0(?![\dx])/i)&&(K=!0),K)return"number"}if(I.match(k))return D.tokenize=E(I.current(),!1,"string"),D.tokenize(I,D);if(I.match(z)){if(I.current()!="/"||I.match(/^.*\//,!1))return D.tokenize=E(I.current(),!0,"string-2"),D.tokenize(I,D);I.backUp(1)}return I.match(S)||I.match(T)?"operator":I.match(s)?"punctuation":I.match(_)?"atom":I.match(g)||D.prop&&I.match(h)?"property":I.match(d)?"keyword":I.match(h)?"variable":(I.next(),C)}function E(I,D,Q){return function(j,V){for(;!j.eol();)if(j.eatWhile(/[^'"\/\\]/),j.eat("\\")){if(j.next(),D&&j.eol())return Q}else{if(j.match(I))return V.tokenize=W,Q;j.eat(/['"\/]/)}return D&&(v.singleLineStringErrors?Q=C:V.tokenize=W),Q}}function O(I,D){for(;!I.eol();){if(I.eatWhile(/[^#]/),I.match("###")){D.tokenize=W;break}I.eatWhile("#")}return"comment"}function G(I,D,Q){Q=Q||"coffee";for(var j=0,V=!1,y=null,K=D.scope;K;K=K.prev)if(K.type==="coffee"||K.type=="}"){j=K.offset+p.indentUnit;break}Q!=="coffee"?(V=null,y=I.column()+I.current().length):D.scope.align&&(D.scope.align=!1),D.scope={offset:j,type:Q,prev:D.scope,align:V,alignOffset:y}}function J(I,D){if(D.scope.prev)if(D.scope.type==="coffee"){for(var Q=I.indentation(),j=!1,V=D.scope;V;V=V.prev)if(Q===V.offset){j=!0;break}if(!j)return!0;for(;D.scope.prev&&D.scope.offset!==Q;)D.scope=D.scope.prev;return!1}else return D.scope=D.scope.prev,!1}function re(I,D){var Q=D.tokenize(I,D),j=I.current();j==="return"&&(D.dedent=!0),((j==="->"||j==="=>")&&I.eol()||Q==="indent")&&G(I,D);var V="[({".indexOf(j);if(V!==-1&&G(I,D,"])}".slice(V,V+1)),w.exec(j)&&G(I,D),j=="then"&&J(I,D),Q==="dedent"&&J(I,D))return C;if(V="])}".indexOf(j),V!==-1){for(;D.scope.type=="coffee"&&D.scope.prev;)D.scope=D.scope.prev;D.scope.type==j&&(D.scope=D.scope.prev)}return D.dedent&&I.eol()&&(D.scope.type=="coffee"&&D.scope.prev&&(D.scope=D.scope.prev),D.dedent=!1),Q}var q={startState:function(I){return{tokenize:W,scope:{offset:I||0,type:"coffee",prev:null,align:!1},prop:!1,dedent:0}},token:function(I,D){var Q=D.scope.align===null&&D.scope;Q&&I.sol()&&(Q.align=!1);var j=re(I,D);return j&&j!="comment"&&(Q&&(Q.align=!0),D.prop=j=="punctuation"&&I.current()=="."),j},indent:function(I,D){if(I.tokenize!=W)return 0;var Q=I.scope,j=D&&"])}".indexOf(D.charAt(0))>-1;if(j)for(;Q.type=="coffee"&&Q.prev;)Q=Q.prev;var V=j&&Q.type===D.charAt(0);return Q.align?Q.alignOffset-(V?1:0):(V?Q.prev:Q).offset},lineComment:"#",fold:"indent"};return q}),o.defineMIME("application/vnd.coffeescript","coffeescript"),o.defineMIME("text/x-coffeescript","coffeescript"),o.defineMIME("text/coffeescript","coffeescript")})});var tc=Ke((Ju,ec)=>{(function(o){typeof Ju=="object"&&typeof ec=="object"?o(We(),vn(),gn(),Qn()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../javascript/javascript","../css/css","../htmlmixed/htmlmixed"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("pug",function(p){var v="keyword",C="meta",b="builtin",S="qualifier",s={"{":"}","(":")","[":"]"},h=o.getMode(p,"javascript");function g(){this.javaScriptLine=!1,this.javaScriptLineExcludesColon=!1,this.javaScriptArguments=!1,this.javaScriptArgumentsDepth=0,this.isInterpolating=!1,this.interpolationNesting=0,this.jsState=o.startState(h),this.restOfLine="",this.isIncludeFiltered=!1,this.isEach=!1,this.lastTag="",this.scriptType="",this.isAttrs=!1,this.attrsNest=[],this.inAttributeName=!0,this.attributeIsType=!1,this.attrValue="",this.indentOf=1/0,this.indentToken="",this.innerMode=null,this.innerState=null,this.innerModeForLine=!1}g.prototype.copy=function(){var U=new g;return U.javaScriptLine=this.javaScriptLine,U.javaScriptLineExcludesColon=this.javaScriptLineExcludesColon,U.javaScriptArguments=this.javaScriptArguments,U.javaScriptArgumentsDepth=this.javaScriptArgumentsDepth,U.isInterpolating=this.isInterpolating,U.interpolationNesting=this.interpolationNesting,U.jsState=o.copyState(h,this.jsState),U.innerMode=this.innerMode,this.innerMode&&this.innerState&&(U.innerState=o.copyState(this.innerMode,this.innerState)),U.restOfLine=this.restOfLine,U.isIncludeFiltered=this.isIncludeFiltered,U.isEach=this.isEach,U.lastTag=this.lastTag,U.scriptType=this.scriptType,U.isAttrs=this.isAttrs,U.attrsNest=this.attrsNest.slice(),U.inAttributeName=this.inAttributeName,U.attributeIsType=this.attributeIsType,U.attrValue=this.attrValue,U.indentOf=this.indentOf,U.indentToken=this.indentToken,U.innerModeForLine=this.innerModeForLine,U};function T(U,Z){if(U.sol()&&(Z.javaScriptLine=!1,Z.javaScriptLineExcludesColon=!1),Z.javaScriptLine){if(Z.javaScriptLineExcludesColon&&U.peek()===":"){Z.javaScriptLine=!1,Z.javaScriptLineExcludesColon=!1;return}var ce=h.token(U,Z.jsState);return U.eol()&&(Z.javaScriptLine=!1),ce||!0}}function w(U,Z){if(Z.javaScriptArguments){if(Z.javaScriptArgumentsDepth===0&&U.peek()!=="("){Z.javaScriptArguments=!1;return}if(U.peek()==="("?Z.javaScriptArgumentsDepth++:U.peek()===")"&&Z.javaScriptArgumentsDepth--,Z.javaScriptArgumentsDepth===0){Z.javaScriptArguments=!1;return}var ce=h.token(U,Z.jsState);return ce||!0}}function c(U){if(U.match(/^yield\b/))return"keyword"}function d(U){if(U.match(/^(?:doctype) *([^\n]+)?/))return C}function k(U,Z){if(U.match("#{"))return Z.isInterpolating=!0,Z.interpolationNesting=0,"punctuation"}function z(U,Z){if(Z.isInterpolating){if(U.peek()==="}"){if(Z.interpolationNesting--,Z.interpolationNesting<0)return U.next(),Z.isInterpolating=!1,"punctuation"}else U.peek()==="{"&&Z.interpolationNesting++;return h.token(U,Z.jsState)||!0}}function M(U,Z){if(U.match(/^case\b/))return Z.javaScriptLine=!0,v}function _(U,Z){if(U.match(/^when\b/))return Z.javaScriptLine=!0,Z.javaScriptLineExcludesColon=!0,v}function W(U){if(U.match(/^default\b/))return v}function E(U,Z){if(U.match(/^extends?\b/))return Z.restOfLine="string",v}function O(U,Z){if(U.match(/^append\b/))return Z.restOfLine="variable",v}function G(U,Z){if(U.match(/^prepend\b/))return Z.restOfLine="variable",v}function J(U,Z){if(U.match(/^block\b *(?:(prepend|append)\b)?/))return Z.restOfLine="variable",v}function re(U,Z){if(U.match(/^include\b/))return Z.restOfLine="string",v}function q(U,Z){if(U.match(/^include:([a-zA-Z0-9\-]+)/,!1)&&U.match("include"))return Z.isIncludeFiltered=!0,v}function I(U,Z){if(Z.isIncludeFiltered){var ce=R(U,Z);return Z.isIncludeFiltered=!1,Z.restOfLine="string",ce}}function D(U,Z){if(U.match(/^mixin\b/))return Z.javaScriptLine=!0,v}function Q(U,Z){if(U.match(/^\+([-\w]+)/))return U.match(/^\( *[-\w]+ *=/,!1)||(Z.javaScriptArguments=!0,Z.javaScriptArgumentsDepth=0),"variable";if(U.match("+#{",!1))return U.next(),Z.mixinCallAfter=!0,k(U,Z)}function j(U,Z){if(Z.mixinCallAfter)return Z.mixinCallAfter=!1,U.match(/^\( *[-\w]+ *=/,!1)||(Z.javaScriptArguments=!0,Z.javaScriptArgumentsDepth=0),!0}function V(U,Z){if(U.match(/^(if|unless|else if|else)\b/))return Z.javaScriptLine=!0,v}function y(U,Z){if(U.match(/^(- *)?(each|for)\b/))return Z.isEach=!0,v}function K(U,Z){if(Z.isEach){if(U.match(/^ in\b/))return Z.javaScriptLine=!0,Z.isEach=!1,v;if(U.sol()||U.eol())Z.isEach=!1;else if(U.next()){for(;!U.match(/^ in\b/,!1)&&U.next(););return"variable"}}}function X(U,Z){if(U.match(/^while\b/))return Z.javaScriptLine=!0,v}function N(U,Z){var ce;if(ce=U.match(/^(\w(?:[-:\w]*\w)?)\/?/))return Z.lastTag=ce[1].toLowerCase(),Z.lastTag==="script"&&(Z.scriptType="application/javascript"),"tag"}function R(U,Z){if(U.match(/^:([\w\-]+)/)){var ce;return p&&p.innerModes&&(ce=p.innerModes(U.current().substring(1))),ce||(ce=U.current().substring(1)),typeof ce=="string"&&(ce=o.getMode(p,ce)),Be(U,Z,ce),"atom"}}function le(U,Z){if(U.match(/^(!?=|-)/))return Z.javaScriptLine=!0,"punctuation"}function xe(U){if(U.match(/^#([\w-]+)/))return b}function F(U){if(U.match(/^\.([\w-]+)/))return S}function L(U,Z){if(U.peek()=="(")return U.next(),Z.isAttrs=!0,Z.attrsNest=[],Z.inAttributeName=!0,Z.attrValue="",Z.attributeIsType=!1,"punctuation"}function de(U,Z){if(Z.isAttrs){if(s[U.peek()]&&Z.attrsNest.push(s[U.peek()]),Z.attrsNest[Z.attrsNest.length-1]===U.peek())Z.attrsNest.pop();else if(U.eat(")"))return Z.isAttrs=!1,"punctuation";if(Z.inAttributeName&&U.match(/^[^=,\)!]+/))return(U.peek()==="="||U.peek()==="!")&&(Z.inAttributeName=!1,Z.jsState=o.startState(h),Z.lastTag==="script"&&U.current().trim().toLowerCase()==="type"?Z.attributeIsType=!0:Z.attributeIsType=!1),"attribute";var ce=h.token(U,Z.jsState);if(Z.attributeIsType&&ce==="string"&&(Z.scriptType=U.current().toString()),Z.attrsNest.length===0&&(ce==="string"||ce==="variable"||ce==="keyword"))try{return Function("","var x "+Z.attrValue.replace(/,\s*$/,"").replace(/^!/,"")),Z.inAttributeName=!0,Z.attrValue="",U.backUp(U.current().length),de(U,Z)}catch{}return Z.attrValue+=U.current(),ce||!0}}function ze(U,Z){if(U.match(/^&attributes\b/))return Z.javaScriptArguments=!0,Z.javaScriptArgumentsDepth=0,"keyword"}function pe(U){if(U.sol()&&U.eatSpace())return"indent"}function Ee(U,Z){if(U.match(/^ *\/\/(-)?([^\n]*)/))return Z.indentOf=U.indentation(),Z.indentToken="comment","comment"}function ge(U){if(U.match(/^: */))return"colon"}function Oe(U,Z){if(U.match(/^(?:\| ?| )([^\n]+)/))return"string";if(U.match(/^(<[^\n]*)/,!1))return Be(U,Z,"htmlmixed"),Z.innerModeForLine=!0,Ze(U,Z,!0)}function qe(U,Z){if(U.eat(".")){var ce=null;return Z.lastTag==="script"&&Z.scriptType.toLowerCase().indexOf("javascript")!=-1?ce=Z.scriptType.toLowerCase().replace(/"|'/g,""):Z.lastTag==="style"&&(ce="css"),Be(U,Z,ce),"dot"}}function Se(U){return U.next(),null}function Be(U,Z,ce){ce=o.mimeModes[ce]||ce,ce=p.innerModes&&p.innerModes(ce)||ce,ce=o.mimeModes[ce]||ce,ce=o.getMode(p,ce),Z.indentOf=U.indentation(),ce&&ce.name!=="null"?Z.innerMode=ce:Z.indentToken="string"}function Ze(U,Z,ce){if(U.indentation()>Z.indentOf||Z.innerModeForLine&&!U.sol()||ce)return Z.innerMode?(Z.innerState||(Z.innerState=Z.innerMode.startState?o.startState(Z.innerMode,U.indentation()):{}),U.hideFirstChars(Z.indentOf+2,function(){return Z.innerMode.token(U,Z.innerState)||!0})):(U.skipToEnd(),Z.indentToken);U.sol()&&(Z.indentOf=1/0,Z.indentToken=null,Z.innerMode=null,Z.innerState=null)}function ke(U,Z){if(U.sol()&&(Z.restOfLine=""),Z.restOfLine){U.skipToEnd();var ce=Z.restOfLine;return Z.restOfLine="",ce}}function Je(){return new g}function Re(U){return U.copy()}function Ge(U,Z){var ce=Ze(U,Z)||ke(U,Z)||z(U,Z)||I(U,Z)||K(U,Z)||de(U,Z)||T(U,Z)||w(U,Z)||j(U,Z)||c(U)||d(U)||k(U,Z)||M(U,Z)||_(U,Z)||W(U)||E(U,Z)||O(U,Z)||G(U,Z)||J(U,Z)||re(U,Z)||q(U,Z)||D(U,Z)||Q(U,Z)||V(U,Z)||y(U,Z)||X(U,Z)||N(U,Z)||R(U,Z)||le(U,Z)||xe(U)||F(U)||L(U,Z)||ze(U,Z)||pe(U)||Oe(U,Z)||Ee(U,Z)||ge(U)||qe(U,Z)||Se(U);return ce===!0?null:ce}return{startState:Je,copyState:Re,token:Ge}},"javascript","css","htmlmixed"),o.defineMIME("text/x-pug","pug"),o.defineMIME("text/x-jade","pug")})});var ic=Ke((rc,nc)=>{(function(o){typeof rc=="object"&&typeof nc=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.multiplexingMode=function(p){var v=Array.prototype.slice.call(arguments,1);function C(b,S,s,h){if(typeof S=="string"){var g=b.indexOf(S,s);return h&&g>-1?g+S.length:g}var T=S.exec(s?b.slice(s):b);return T?T.index+s+(h?T[0].length:0):-1}return{startState:function(){return{outer:o.startState(p),innerActive:null,inner:null,startingInner:!1}},copyState:function(b){return{outer:o.copyState(p,b.outer),innerActive:b.innerActive,inner:b.innerActive&&o.copyState(b.innerActive.mode,b.inner),startingInner:b.startingInner}},token:function(b,S){if(S.innerActive){var z=S.innerActive,h=b.string;if(!z.close&&b.sol())return S.innerActive=S.inner=null,this.token(b,S);var w=z.close&&!S.startingInner?C(h,z.close,b.pos,z.parseDelimiters):-1;if(w==b.pos&&!z.parseDelimiters)return b.match(z.close),S.innerActive=S.inner=null,z.delimStyle&&z.delimStyle+" "+z.delimStyle+"-close";w>-1&&(b.string=h.slice(0,w));var M=z.mode.token(b,S.inner);return w>-1?b.string=h:b.pos>b.start&&(S.startingInner=!1),w==b.pos&&z.parseDelimiters&&(S.innerActive=S.inner=null),z.innerStyle&&(M?M=M+" "+z.innerStyle:M=z.innerStyle),M}else{for(var s=1/0,h=b.string,g=0;g{(function(o){typeof oc=="object"&&typeof ac=="object"?o(We(),Di(),ic()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../../addon/mode/simple","../../addon/mode/multiplex"],o):o(CodeMirror)})(function(o){"use strict";o.defineSimpleMode("handlebars-tags",{start:[{regex:/\{\{\{/,push:"handlebars_raw",token:"tag"},{regex:/\{\{!--/,push:"dash_comment",token:"comment"},{regex:/\{\{!/,push:"comment",token:"comment"},{regex:/\{\{/,push:"handlebars",token:"tag"}],handlebars_raw:[{regex:/\}\}\}/,pop:!0,token:"tag"}],handlebars:[{regex:/\}\}/,pop:!0,token:"tag"},{regex:/"(?:[^\\"]|\\.)*"?/,token:"string"},{regex:/'(?:[^\\']|\\.)*'?/,token:"string"},{regex:/>|[#\/]([A-Za-z_]\w*)/,token:"keyword"},{regex:/(?:else|this)\b/,token:"keyword"},{regex:/\d+/i,token:"number"},{regex:/=|~|@|true|false/,token:"atom"},{regex:/(?:\.\.\/)*(?:[A-Za-z_][\w\.]*)+/,token:"variable-2"}],dash_comment:[{regex:/--\}\}/,pop:!0,token:"comment"},{regex:/./,token:"comment"}],comment:[{regex:/\}\}/,pop:!0,token:"comment"},{regex:/./,token:"comment"}],meta:{blockCommentStart:"{{--",blockCommentEnd:"--}}"}}),o.defineMode("handlebars",function(p,v){var C=o.getMode(p,"handlebars-tags");return!v||!v.base?C:o.multiplexingMode(o.getMode(p,v.base),{open:"{{",close:/\}\}\}?/,mode:C,parseDelimiters:!0})}),o.defineMIME("text/x-handlebars-template","handlebars")})});var cc=Ke((sc,uc)=>{(function(o){"use strict";typeof sc=="object"&&typeof uc=="object"?o(We(),Yn(),mn(),vn(),Vu(),gn(),ea(),ta(),tc(),lc()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../../addon/mode/overlay","../xml/xml","../javascript/javascript","../coffeescript/coffeescript","../css/css","../sass/sass","../stylus/stylus","../pug/pug","../handlebars/handlebars"],o):o(CodeMirror)})(function(o){var p={script:[["lang",/coffee(script)?/,"coffeescript"],["type",/^(?:text|application)\/(?:x-)?coffee(?:script)?$/,"coffeescript"],["lang",/^babel$/,"javascript"],["type",/^text\/babel$/,"javascript"],["type",/^text\/ecmascript-\d+$/,"javascript"]],style:[["lang",/^stylus$/i,"stylus"],["lang",/^sass$/i,"sass"],["lang",/^less$/i,"text/x-less"],["lang",/^scss$/i,"text/x-scss"],["type",/^(text\/)?(x-)?styl(us)?$/i,"stylus"],["type",/^text\/sass/i,"sass"],["type",/^(text\/)?(x-)?scss$/i,"text/x-scss"],["type",/^(text\/)?(x-)?less$/i,"text/x-less"]],template:[["lang",/^vue-template$/i,"vue"],["lang",/^pug$/i,"pug"],["lang",/^handlebars$/i,"handlebars"],["type",/^(text\/)?(x-)?pug$/i,"pug"],["type",/^text\/x-handlebars-template$/i,"handlebars"],[null,null,"vue-template"]]};o.defineMode("vue-template",function(v,C){var b={token:function(S){if(S.match(/^\{\{.*?\}\}/))return"meta mustache";for(;S.next()&&!S.match("{{",!1););return null}};return o.overlayMode(o.getMode(v,C.backdrop||"text/html"),b)}),o.defineMode("vue",function(v){return o.getMode(v,{name:"htmlmixed",tags:p})},"htmlmixed","xml","javascript","coffeescript","css","sass","stylus","pug","handlebars"),o.defineMIME("script/x-vue","vue"),o.defineMIME("text/x-vue","vue")})});var pc=Ke((fc,dc)=>{(function(o){typeof fc=="object"&&typeof dc=="object"?o(We()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],o):o(CodeMirror)})(function(o){"use strict";o.defineMode("yaml",function(){var p=["true","false","on","off","yes","no"],v=new RegExp("\\b(("+p.join(")|(")+"))$","i");return{token:function(C,b){var S=C.peek(),s=b.escaped;if(b.escaped=!1,S=="#"&&(C.pos==0||/\s/.test(C.string.charAt(C.pos-1))))return C.skipToEnd(),"comment";if(C.match(/^('([^']|\\.)*'?|"([^"]|\\.)*"?)/))return"string";if(b.literal&&C.indentation()>b.keyCol)return C.skipToEnd(),"string";if(b.literal&&(b.literal=!1),C.sol()){if(b.keyCol=0,b.pair=!1,b.pairStart=!1,C.match("---")||C.match("..."))return"def";if(C.match(/\s*-\s+/))return"meta"}if(C.match(/^(\{|\}|\[|\])/))return S=="{"?b.inlinePairs++:S=="}"?b.inlinePairs--:S=="["?b.inlineList++:b.inlineList--,"meta";if(b.inlineList>0&&!s&&S==",")return C.next(),"meta";if(b.inlinePairs>0&&!s&&S==",")return b.keyCol=0,b.pair=!1,b.pairStart=!1,C.next(),"meta";if(b.pairStart){if(C.match(/^\s*(\||\>)\s*/))return b.literal=!0,"meta";if(C.match(/^\s*(\&|\*)[a-z0-9\._-]+\b/i))return"variable-2";if(b.inlinePairs==0&&C.match(/^\s*-?[0-9\.\,]+\s?$/)||b.inlinePairs>0&&C.match(/^\s*-?[0-9\.\,]+\s?(?=(,|}))/))return"number";if(C.match(v))return"keyword"}return!b.pair&&C.match(/^\s*(?:[,\[\]{}&*!|>'"%@`][^\s'":]|[^\s,\[\]{}#&*!|>'"%@`])[^#:]*(?=:($|\s))/)?(b.pair=!0,b.keyCol=C.indentation(),"atom"):b.pair&&C.match(/^:\s*/)?(b.pairStart=!0,"meta"):(b.pairStart=!1,b.escaped=S=="\\",C.next(),null)},startState:function(){return{pair:!1,pairStart:!1,keyCol:0,inlinePairs:0,inlineList:0,literal:!1,escaped:!1}},lineComment:"#",fold:"indent"}}),o.defineMIME("text/x-yaml","yaml"),o.defineMIME("text/yaml","yaml")})});var $d={};function qd(o){for(var p;(p=Md.exec(o))!==null;){var v=p[0];if(v.indexOf("target=")===-1){var C=v.replace(/>$/,' target="_blank">');o=o.replace(v,C)}}return o}function Fd(o){for(var p=new DOMParser,v=p.parseFromString(o,"text/html"),C=v.getElementsByTagName("li"),b=0;b0){for(var d=document.createElement("i"),k=0;k=0&&(w=s.getLineHandle(d),!v(w));d--);var W=s.getTokenAt({line:d,ch:1}),E=C(W).fencedChars,O,G,J,re;v(s.getLineHandle(h.line))?(O="",G=h.line):v(s.getLineHandle(h.line-1))?(O="",G=h.line-1):(O=E+` +`,G=h.line),v(s.getLineHandle(g.line))?(J="",re=g.line,g.ch===0&&(re+=1)):g.ch!==0&&v(s.getLineHandle(g.line+1))?(J="",re=g.line+1):(J=E+` +`,re=g.line+1),g.ch===0&&(re-=1),s.operation(function(){s.replaceRange(J,{line:re,ch:0},{line:re+(J?0:1),ch:0}),s.replaceRange(O,{line:G,ch:0},{line:G+(O?0:1),ch:0})}),s.setSelection({line:G+(O?1:0),ch:0},{line:re+(O?1:-1),ch:0}),s.focus()}else{var q=h.line;if(v(s.getLineHandle(h.line))&&(b(s,h.line+1)==="fenced"?(d=h.line,q=h.line+1):(k=h.line,q=h.line-1)),d===void 0)for(d=q;d>=0&&(w=s.getLineHandle(d),!v(w));d--);if(k===void 0)for(z=s.lineCount(),k=q;k=0;d--)if(w=s.getLineHandle(d),!w.text.match(/^\s*$/)&&b(s,d,w)!=="indented"){d+=1;break}for(z=s.lineCount(),k=h.line;k\s+/,"unordered-list":C,"ordered-list":C},T=function(z,M){var _={quote:">","unordered-list":v,"ordered-list":"%%i."};return _[z].replace("%%i",M)},w=function(z,M){var _={quote:">","unordered-list":"\\"+v,"ordered-list":"\\d+."},W=new RegExp(_[z]);return M&&W.test(M)},c=function(z,M,_){var W=C.exec(M),E=T(z,d);return W!==null?(w(z,W[2])&&(E=""),M=W[1]+E+W[3]+M.replace(b,"").replace(g[z],"$1")):_==!1&&(M=E+" "+M),M},d=1,k=s.line;k<=h.line;k++)(function(z){var M=o.getLine(z);S[p]?M=M.replace(g[p],"$1"):(p=="unordered-list"&&(M=c("ordered-list",M,!0)),M=c(p,M,!1),d+=1),o.replaceRange(M,{line:z,ch:0},{line:z,ch:99999999999999})})(k);o.focus()}}function xc(o,p,v,C){if(!(!o.codemirror||o.isPreviewActive())){var b=o.codemirror,S=Tr(b),s=S[p];if(!s){jr(b,s,v,C);return}var h=b.getCursor("start"),g=b.getCursor("end"),T=b.getLine(h.line),w=T.slice(0,h.ch),c=T.slice(h.ch);p=="link"?w=w.replace(/(.*)[^!]\[/,"$1"):p=="image"&&(w=w.replace(/(.*)!\[$/,"$1")),c=c.replace(/]\(.*?\)/,""),b.replaceRange(w+c,{line:h.line,ch:0},{line:h.line,ch:99999999999999}),h.ch-=v[0].length,h!==g&&(g.ch-=v[0].length),b.setSelection(h,g),b.focus()}}function sa(o,p,v,C){if(!(!o.codemirror||o.isPreviewActive())){C=typeof C>"u"?v:C;var b=o.codemirror,S=Tr(b),s,h=v,g=C,T=b.getCursor("start"),w=b.getCursor("end");S[p]?(s=b.getLine(T.line),h=s.slice(0,T.ch),g=s.slice(T.ch),p=="bold"?(h=h.replace(/(\*\*|__)(?![\s\S]*(\*\*|__))/,""),g=g.replace(/(\*\*|__)/,"")):p=="italic"?(h=h.replace(/(\*|_)(?![\s\S]*(\*|_))/,""),g=g.replace(/(\*|_)/,"")):p=="strikethrough"&&(h=h.replace(/(\*\*|~~)(?![\s\S]*(\*\*|~~))/,""),g=g.replace(/(\*\*|~~)/,"")),b.replaceRange(h+g,{line:T.line,ch:0},{line:T.line,ch:99999999999999}),p=="bold"||p=="strikethrough"?(T.ch-=2,T!==w&&(w.ch-=2)):p=="italic"&&(T.ch-=1,T!==w&&(w.ch-=1))):(s=b.getSelection(),p=="bold"?(s=s.split("**").join(""),s=s.split("__").join("")):p=="italic"?(s=s.split("*").join(""),s=s.split("_").join("")):p=="strikethrough"&&(s=s.split("~~").join("")),b.replaceSelection(h+s+g),T.ch+=v.length,w.ch=T.ch+s.length),b.setSelection(T,w),b.focus()}}function Pd(o){if(!o.getWrapperElement().lastChild.classList.contains("editor-preview-active"))for(var p=o.getCursor("start"),v=o.getCursor("end"),C,b=p.line;b<=v.line;b++)C=o.getLine(b),C=C.replace(/^[ ]*([# ]+|\*|-|[> ]+|[0-9]+(.|\)))[ ]*/,""),o.replaceRange(C,{line:b,ch:0},{line:b,ch:99999999999999})}function Fi(o,p){if(Math.abs(o)<1024)return""+o+p[0];var v=0;do o/=1024,++v;while(Math.abs(o)>=1024&&v=19968?C+=v[b].length:C+=1;return C}function Te(o){o=o||{},o.parent=this;var p=!0;if(o.autoDownloadFontAwesome===!1&&(p=!1),o.autoDownloadFontAwesome!==!0)for(var v=document.styleSheets,C=0;C-1&&(p=!1);if(p){var b=document.createElement("link");b.rel="stylesheet",b.href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css",document.getElementsByTagName("head")[0].appendChild(b)}if(o.element)this.element=o.element;else if(o.element===null){console.log("EasyMDE: Error. No element was found.");return}if(o.toolbar===void 0){o.toolbar=[];for(var S in Pr)Object.prototype.hasOwnProperty.call(Pr,S)&&(S.indexOf("separator-")!=-1&&o.toolbar.push("|"),(Pr[S].default===!0||o.showIcons&&o.showIcons.constructor===Array&&o.showIcons.indexOf(S)!=-1)&&o.toolbar.push(S))}if(Object.prototype.hasOwnProperty.call(o,"previewClass")||(o.previewClass="editor-preview"),Object.prototype.hasOwnProperty.call(o,"status")||(o.status=["autosave","lines","words","cursor"],o.uploadImage&&o.status.unshift("upload-image")),o.previewRender||(o.previewRender=function(h){return this.parent.markdown(h)}),o.parsingConfig=fr({highlightFormatting:!0},o.parsingConfig||{}),o.insertTexts=fr({},Bd,o.insertTexts||{}),o.promptTexts=fr({},jd,o.promptTexts||{}),o.blockStyles=fr({},Hd,o.blockStyles||{}),o.autosave!=null&&(o.autosave.timeFormat=fr({},Rd,o.autosave.timeFormat||{})),o.iconClassMap=fr({},et,o.iconClassMap||{}),o.shortcuts=fr({},Ad,o.shortcuts||{}),o.maxHeight=o.maxHeight||void 0,o.direction=o.direction||"ltr",typeof o.maxHeight<"u"?o.minHeight=o.maxHeight:o.minHeight=o.minHeight||"300px",o.errorCallback=o.errorCallback||function(h){alert(h)},o.uploadImage=o.uploadImage||!1,o.imageMaxSize=o.imageMaxSize||2097152,o.imageAccept=o.imageAccept||"image/png, image/jpeg, image/gif, image/avif",o.imageTexts=fr({},Wd,o.imageTexts||{}),o.errorMessages=fr({},Ud,o.errorMessages||{}),o.imagePathAbsolute=o.imagePathAbsolute||!1,o.imageCSRFName=o.imageCSRFName||"csrfmiddlewaretoken",o.imageCSRFHeader=o.imageCSRFHeader||!1,o.autosave!=null&&o.autosave.unique_id!=null&&o.autosave.unique_id!=""&&(o.autosave.uniqueId=o.autosave.unique_id),o.overlayMode&&o.overlayMode.combine===void 0&&(o.overlayMode.combine=!0),this.options=o,this.render(),o.initialValue&&(!this.options.autosave||this.options.autosave.foundSavedValue!==!0)&&this.value(o.initialValue),o.uploadImage){var s=this;this.codemirror.on("dragenter",function(h,g){s.updateStatusBar("upload-image",s.options.imageTexts.sbOnDragEnter),g.stopPropagation(),g.preventDefault()}),this.codemirror.on("dragend",function(h,g){s.updateStatusBar("upload-image",s.options.imageTexts.sbInit),g.stopPropagation(),g.preventDefault()}),this.codemirror.on("dragleave",function(h,g){s.updateStatusBar("upload-image",s.options.imageTexts.sbInit),g.stopPropagation(),g.preventDefault()}),this.codemirror.on("dragover",function(h,g){s.updateStatusBar("upload-image",s.options.imageTexts.sbOnDragEnter),g.stopPropagation(),g.preventDefault()}),this.codemirror.on("drop",function(h,g){g.stopPropagation(),g.preventDefault(),o.imageUploadFunction?s.uploadImagesUsingCustomFunction(o.imageUploadFunction,g.dataTransfer.files):s.uploadImages(g.dataTransfer.files)}),this.codemirror.on("paste",function(h,g){o.imageUploadFunction?s.uploadImagesUsingCustomFunction(o.imageUploadFunction,g.clipboardData.files):s.uploadImages(g.clipboardData.files)})}}function kc(){if(typeof localStorage=="object")try{localStorage.setItem("smde_localStorage",1),localStorage.removeItem("smde_localStorage")}catch{return!1}else return!1;return!0}var mc,Md,Vn,Ad,Dd,ra,hc,et,Pr,Bd,jd,Rd,Hd,Wd,Ud,wc=Cd(()=>{mc=/Mac/.test(navigator.platform),Md=new RegExp(/()+?/g),Vn={toggleBold:Ii,toggleItalic:Ni,drawLink:Gi,toggleHeadingSmaller:Jn,toggleHeadingBigger:ji,drawImage:Zi,toggleBlockquote:Bi,toggleOrderedList:$i,toggleUnorderedList:Ui,toggleCodeBlock:Pi,togglePreview:Ji,toggleStrikethrough:Oi,toggleHeading1:Ri,toggleHeading2:Hi,toggleHeading3:Wi,toggleHeading4:na,toggleHeading5:ia,toggleHeading6:oa,cleanBlock:Ki,drawTable:Xi,drawHorizontalRule:Yi,undo:Qi,redo:Vi,toggleSideBySide:bn,toggleFullScreen:Br},Ad={toggleBold:"Cmd-B",toggleItalic:"Cmd-I",drawLink:"Cmd-K",toggleHeadingSmaller:"Cmd-H",toggleHeadingBigger:"Shift-Cmd-H",toggleHeading1:"Ctrl+Alt+1",toggleHeading2:"Ctrl+Alt+2",toggleHeading3:"Ctrl+Alt+3",toggleHeading4:"Ctrl+Alt+4",toggleHeading5:"Ctrl+Alt+5",toggleHeading6:"Ctrl+Alt+6",cleanBlock:"Cmd-E",drawImage:"Cmd-Alt-I",toggleBlockquote:"Cmd-'",toggleOrderedList:"Cmd-Alt-L",toggleUnorderedList:"Cmd-L",toggleCodeBlock:"Cmd-Alt-C",togglePreview:"Cmd-P",toggleSideBySide:"F9",toggleFullScreen:"F11"},Dd=function(o){for(var p in Vn)if(Vn[p]===o)return p;return null},ra=function(){var o=!1;return(function(p){(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i.test(p)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55\/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk\/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i.test(p.substr(0,4)))&&(o=!0)})(navigator.userAgent||navigator.vendor||window.opera),o};hc="";et={bold:"fa fa-bold",italic:"fa fa-italic",strikethrough:"fa fa-strikethrough",heading:"fa fa-header fa-heading","heading-smaller":"fa fa-header fa-heading header-smaller","heading-bigger":"fa fa-header fa-heading header-bigger","heading-1":"fa fa-header fa-heading header-1","heading-2":"fa fa-header fa-heading header-2","heading-3":"fa fa-header fa-heading header-3",code:"fa fa-code",quote:"fa fa-quote-left","ordered-list":"fa fa-list-ol","unordered-list":"fa fa-list-ul","clean-block":"fa fa-eraser",link:"fa fa-link",image:"fa fa-image","upload-image":"fa fa-image",table:"fa fa-table","horizontal-rule":"fa fa-minus",preview:"fa fa-eye","side-by-side":"fa fa-columns",fullscreen:"fa fa-arrows-alt",guide:"fa fa-question-circle",undo:"fa fa-undo",redo:"fa fa-repeat fa-redo"},Pr={bold:{name:"bold",action:Ii,className:et.bold,title:"Bold",default:!0},italic:{name:"italic",action:Ni,className:et.italic,title:"Italic",default:!0},strikethrough:{name:"strikethrough",action:Oi,className:et.strikethrough,title:"Strikethrough"},heading:{name:"heading",action:Jn,className:et.heading,title:"Heading",default:!0},"heading-smaller":{name:"heading-smaller",action:Jn,className:et["heading-smaller"],title:"Smaller Heading"},"heading-bigger":{name:"heading-bigger",action:ji,className:et["heading-bigger"],title:"Bigger Heading"},"heading-1":{name:"heading-1",action:Ri,className:et["heading-1"],title:"Big Heading"},"heading-2":{name:"heading-2",action:Hi,className:et["heading-2"],title:"Medium Heading"},"heading-3":{name:"heading-3",action:Wi,className:et["heading-3"],title:"Small Heading"},"separator-1":{name:"separator-1"},code:{name:"code",action:Pi,className:et.code,title:"Code"},quote:{name:"quote",action:Bi,className:et.quote,title:"Quote",default:!0},"unordered-list":{name:"unordered-list",action:Ui,className:et["unordered-list"],title:"Generic List",default:!0},"ordered-list":{name:"ordered-list",action:$i,className:et["ordered-list"],title:"Numbered List",default:!0},"clean-block":{name:"clean-block",action:Ki,className:et["clean-block"],title:"Clean block"},"separator-2":{name:"separator-2"},link:{name:"link",action:Gi,className:et.link,title:"Create Link",default:!0},image:{name:"image",action:Zi,className:et.image,title:"Insert Image",default:!0},"upload-image":{name:"upload-image",action:aa,className:et["upload-image"],title:"Import an image"},table:{name:"table",action:Xi,className:et.table,title:"Insert Table"},"horizontal-rule":{name:"horizontal-rule",action:Yi,className:et["horizontal-rule"],title:"Insert Horizontal Line"},"separator-3":{name:"separator-3"},preview:{name:"preview",action:Ji,className:et.preview,noDisable:!0,title:"Toggle Preview",default:!0},"side-by-side":{name:"side-by-side",action:bn,className:et["side-by-side"],noDisable:!0,noMobile:!0,title:"Toggle Side by Side",default:!0},fullscreen:{name:"fullscreen",action:Br,className:et.fullscreen,noDisable:!0,noMobile:!0,title:"Toggle Fullscreen",default:!0},"separator-4":{name:"separator-4"},guide:{name:"guide",action:"https://www.markdownguide.org/basic-syntax/",className:et.guide,noDisable:!0,title:"Markdown Guide",default:!0},"separator-5":{name:"separator-5"},undo:{name:"undo",action:Qi,className:et.undo,noDisable:!0,title:"Undo"},redo:{name:"redo",action:Vi,className:et.redo,noDisable:!0,title:"Redo"}},Bd={link:["[","](#url#)"],image:["![","](#url#)"],uploadedImage:["![](#url#)",""],table:["",` + +| Column 1 | Column 2 | Column 3 | +| -------- | -------- | -------- | +| Text | Text | Text | + +`],horizontalRule:["",` + +----- + +`]},jd={link:"URL for the link:",image:"URL of the image:"},Rd={locale:"en-US",format:{hour:"2-digit",minute:"2-digit"}},Hd={bold:"**",code:"```",italic:"*"},Wd={sbInit:"Attach files by drag and dropping or pasting from clipboard.",sbOnDragEnter:"Drop image to upload it.",sbOnDrop:"Uploading image #images_names#...",sbProgress:"Uploading #file_name#: #progress#%",sbOnUploaded:"Uploaded #image_name#",sizeUnits:" B, KB, MB"},Ud={noFileGiven:"You must select a file.",typeNotAllowed:"This image type is not allowed.",fileTooLarge:`Image #image_name# is too big (#image_size#). +Maximum file size is #image_max_size#.`,importError:"Something went wrong when uploading the image #image_name#."};Te.prototype.uploadImages=function(o,p,v){if(o.length!==0){for(var C=[],b=0;b!(q.closest&&q.closest(".editor-toolbar")||q.offsetParent===null)),re=J.indexOf(O);re!==-1&&re+1!(q.closest&&q.closest(".editor-toolbar")||q.offsetParent===null)),re=J.indexOf(O);if(re!==-1)for(let q=re-1;q>=0;q--){let I=J[q];if(I){I.focus();break}}}}for(var s in p.shortcuts)p.shortcuts[s]!==null&&Vn[s]!==null&&(function(E){C[vc(p.shortcuts[E])]=function(){var O=Vn[E];typeof O=="function"?O(v):typeof O=="string"&&window.open(O,"_blank")}})(s);C.Enter="newlineAndIndentContinueMarkdownList",C.Tab=E=>{let O=E.getSelection();O&&O.length>0?E.execCommand("indentMore"):b(E)},C["Shift-Tab"]=E=>{let O=E.getSelection();O&&O.length>0?E.execCommand("indentLess"):S(E)},C.Esc=function(E){E.getOption("fullScreen")&&Br(v)},this.documentOnKeyDown=function(E){E=E||window.event,E.keyCode==27&&v.codemirror.getOption("fullScreen")&&Br(v)},document.addEventListener("keydown",this.documentOnKeyDown,!1);var h,g;p.overlayMode?(CodeMirror.defineMode("overlay-mode",function(E){return CodeMirror.overlayMode(CodeMirror.getMode(E,p.spellChecker!==!1?"spell-checker":"gfm"),p.overlayMode.mode,p.overlayMode.combine)}),h="overlay-mode",g=p.parsingConfig,g.gitHubSpice=!1):(h=p.parsingConfig,h.name="gfm",h.gitHubSpice=!1),p.spellChecker!==!1&&(h="spell-checker",g=p.parsingConfig,g.name="gfm",g.gitHubSpice=!1,typeof p.spellChecker=="function"?p.spellChecker({codeMirrorInstance:CodeMirror}):CodeMirrorSpellChecker({codeMirrorInstance:CodeMirror}));function T(E,O,G){return{addNew:!1}}if(CodeMirror.getMode("php").mime="text/x-php",this.codemirror=CodeMirror.fromTextArea(o,{mode:h,backdrop:g,theme:p.theme!=null?p.theme:"easymde",tabSize:p.tabSize!=null?p.tabSize:2,indentUnit:p.tabSize!=null?p.tabSize:2,indentWithTabs:p.indentWithTabs!==!1,lineNumbers:p.lineNumbers===!0,autofocus:p.autofocus===!0,extraKeys:C,direction:p.direction,lineWrapping:p.lineWrapping!==!1,allowDropFileTypes:["text/plain"],placeholder:p.placeholder||o.getAttribute("placeholder")||"",styleSelectedText:p.styleSelectedText!=null?p.styleSelectedText:!ra(),scrollbarStyle:p.scrollbarStyle!=null?p.scrollbarStyle:"native",configureMouse:T,inputStyle:p.inputStyle!=null?p.inputStyle:ra()?"contenteditable":"textarea",spellcheck:p.nativeSpellcheck!=null?p.nativeSpellcheck:!0,autoRefresh:p.autoRefresh!=null?p.autoRefresh:!1}),this.codemirror.getScrollerElement().style.minHeight=p.minHeight,typeof p.maxHeight<"u"&&(this.codemirror.getScrollerElement().style.height=p.maxHeight),p.forceSync===!0){var w=this.codemirror;w.on("change",function(){w.save()})}this.gui={};var c=document.createElement("div");c.classList.add("EasyMDEContainer"),c.setAttribute("role","application");var d=this.codemirror.getWrapperElement();d.parentNode.insertBefore(c,d),c.appendChild(d),p.toolbar!==!1&&(this.gui.toolbar=this.createToolbar()),p.status!==!1&&(this.gui.statusbar=this.createStatusbar()),p.autosave!=null&&p.autosave.enabled===!0&&(this.autosave(),this.codemirror.on("change",function(){clearTimeout(v._autosave_timeout),v._autosave_timeout=setTimeout(function(){v.autosave()},v.options.autosave.submit_delay||v.options.autosave.delay||1e3)}));function k(E,O){var G,J=window.getComputedStyle(document.querySelector(".CodeMirror-sizer")).width.replace("px","");return E=2){var J=G[1];if(p.imagesPreviewHandler){var re=p.imagesPreviewHandler(G[1]);typeof re=="string"&&(J=re)}if(window.EMDEimagesCache[J])M(O,window.EMDEimagesCache[J]);else{var q=document.createElement("img");q.onload=function(){window.EMDEimagesCache[J]={naturalWidth:q.naturalWidth,naturalHeight:q.naturalHeight,url:J},M(O,window.EMDEimagesCache[J])},q.src=J}}}})}this.codemirror.on("update",function(){_()}),this.gui.sideBySide=this.createSideBySide(),this._rendered=this.element,(p.autofocus===!0||o.autofocus)&&this.codemirror.focus();var W=this.codemirror;setTimeout(function(){W.refresh()}.bind(W),0)};Te.prototype.cleanup=function(){document.removeEventListener("keydown",this.documentOnKeyDown)};Te.prototype.autosave=function(){if(kc()){var o=this;if(this.options.autosave.uniqueId==null||this.options.autosave.uniqueId==""){console.log("EasyMDE: You must set a uniqueId to use the autosave feature");return}this.options.autosave.binded!==!0&&(o.element.form!=null&&o.element.form!=null&&o.element.form.addEventListener("submit",function(){clearTimeout(o.autosaveTimeoutId),o.autosaveTimeoutId=void 0,localStorage.removeItem("smde_"+o.options.autosave.uniqueId)}),this.options.autosave.binded=!0),this.options.autosave.loaded!==!0&&(typeof localStorage.getItem("smde_"+this.options.autosave.uniqueId)=="string"&&localStorage.getItem("smde_"+this.options.autosave.uniqueId)!=""&&(this.codemirror.setValue(localStorage.getItem("smde_"+this.options.autosave.uniqueId)),this.options.autosave.foundSavedValue=!0),this.options.autosave.loaded=!0);var p=o.value();p!==""?localStorage.setItem("smde_"+this.options.autosave.uniqueId,p):localStorage.removeItem("smde_"+this.options.autosave.uniqueId);var v=document.getElementById("autosaved");if(v!=null&&v!=null&&v!=""){var C=new Date,b=new Intl.DateTimeFormat([this.options.autosave.timeFormat.locale,"en-US"],this.options.autosave.timeFormat.format).format(C),S=this.options.autosave.text==null?"Autosaved: ":this.options.autosave.text;v.innerHTML=S+b}}else console.log("EasyMDE: localStorage not available, cannot autosave")};Te.prototype.clearAutosavedValue=function(){if(kc()){if(this.options.autosave==null||this.options.autosave.uniqueId==null||this.options.autosave.uniqueId==""){console.log("EasyMDE: You must set a uniqueId to clear the autosave value");return}localStorage.removeItem("smde_"+this.options.autosave.uniqueId)}else console.log("EasyMDE: localStorage not available, cannot autosave")};Te.prototype.openBrowseFileWindow=function(o,p){var v=this,C=this.gui.toolbar.getElementsByClassName("imageInput")[0];C.click();function b(S){v.options.imageUploadFunction?v.uploadImagesUsingCustomFunction(v.options.imageUploadFunction,S.target.files):v.uploadImages(S.target.files,o,p),C.removeEventListener("change",b)}C.addEventListener("change",b)};Te.prototype.uploadImage=function(o,p,v){var C=this;p=p||function(T){yc(C,T)};function b(g){C.updateStatusBar("upload-image",g),setTimeout(function(){C.updateStatusBar("upload-image",C.options.imageTexts.sbInit)},1e4),v&&typeof v=="function"&&v(g),C.options.errorCallback(g)}function S(g){var T=C.options.imageTexts.sizeUnits.split(",");return g.replace("#image_name#",o.name).replace("#image_size#",Fi(o.size,T)).replace("#image_max_size#",Fi(C.options.imageMaxSize,T))}if(o.size>this.options.imageMaxSize){b(S(this.options.errorMessages.fileTooLarge));return}var s=new FormData;s.append("image",o),C.options.imageCSRFToken&&!C.options.imageCSRFHeader&&s.append(C.options.imageCSRFName,C.options.imageCSRFToken);var h=new XMLHttpRequest;h.upload.onprogress=function(g){if(g.lengthComputable){var T=""+Math.round(g.loaded*100/g.total);C.updateStatusBar("upload-image",C.options.imageTexts.sbProgress.replace("#file_name#",o.name).replace("#progress#",T))}},h.open("POST",this.options.imageUploadEndpoint),C.options.imageCSRFToken&&C.options.imageCSRFHeader&&h.setRequestHeader(C.options.imageCSRFName,C.options.imageCSRFToken),h.onload=function(){try{var g=JSON.parse(this.responseText)}catch{console.error("EasyMDE: The server did not return a valid json."),b(S(C.options.errorMessages.importError));return}this.status===200&&g&&!g.error&&g.data&&g.data.filePath?p((C.options.imagePathAbsolute?"":window.location.origin+"/")+g.data.filePath):g.error&&g.error in C.options.errorMessages?b(S(C.options.errorMessages[g.error])):g.error?b(S(g.error)):(console.error("EasyMDE: Received an unexpected response after uploading the image."+this.status+" ("+this.statusText+")"),b(S(C.options.errorMessages.importError)))},h.onerror=function(g){console.error("EasyMDE: An unexpected error occurred when trying to upload the image."+g.target.status+" ("+g.target.statusText+")"),b(C.options.errorMessages.importError)},h.send(s)};Te.prototype.uploadImageUsingCustomFunction=function(o,p){var v=this;function C(s){yc(v,s)}function b(s){var h=S(s);v.updateStatusBar("upload-image",h),setTimeout(function(){v.updateStatusBar("upload-image",v.options.imageTexts.sbInit)},1e4),v.options.errorCallback(h)}function S(s){var h=v.options.imageTexts.sizeUnits.split(",");return s.replace("#image_name#",p.name).replace("#image_size#",Fi(p.size,h)).replace("#image_max_size#",Fi(v.options.imageMaxSize,h))}o.apply(this,[p,C,b])};Te.prototype.setPreviewMaxHeight=function(){var o=this.codemirror,p=o.getWrapperElement(),v=p.nextSibling,C=parseInt(window.getComputedStyle(p).paddingTop),b=parseInt(window.getComputedStyle(p).borderTopWidth),S=parseInt(this.options.maxHeight),s=S+C*2+b*2,h=s.toString()+"px";v.style.height=h};Te.prototype.createSideBySide=function(){var o=this.codemirror,p=o.getWrapperElement(),v=p.nextSibling;if(!v||!v.classList.contains("editor-preview-side")){if(v=document.createElement("div"),v.className="editor-preview-side",this.options.previewClass)if(Array.isArray(this.options.previewClass))for(var C=0;CsetTimeout(d,300)),this.$root._editor&&(this.$root._editor.toTextArea(),this.$root._editor=null),this.$root._editor=this.editor=new EasyMDE({autoDownloadFontAwesome:!1,autoRefresh:!0,autoSave:!1,element:this.$refs.editor,imageAccept:"image/png, image/jpeg, image/gif, image/avif, image/webp",imageUploadFunction:c,initialValue:this.state??"",maxHeight:b,minHeight:S,placeholder:s,previewImagesInEditor:!0,spellChecker:!1,status:[{className:"upload-image",defaultValue:""}],toolbar:this.getToolbar(),uploadImage:o}),this.editor.codemirror.setOption("direction",document.documentElement?.dir??"ltr"),this.editor.codemirror.on("changes",(d,k)=>{try{let z=k[k.length-1];if(z.origin==="+input"){let M="(https://)",_=z.text[z.text.length-1];if(_.endsWith(M)&&_!=="[]"+M){let W=z.from,E=z.to,G=z.text.length>1?0:W.ch;setTimeout(()=>{d.setSelection({line:E.line,ch:G+_.lastIndexOf("(")+1},{line:E.line,ch:G+_.lastIndexOf(")")})},25)}}}catch{}}),this.editor.codemirror.on("change",Alpine.debounce(()=>{this.editor&&(this.state=this.editor.value(),p&&this.$wire.commit())},C??300)),v&&this.editor.codemirror.on("blur",()=>this.$wire.commit()),this.$watch("state",()=>{this.editor&&(this.editor.codemirror.hasFocus()||Alpine.raw(this.editor).value(this.state??""))}),h&&h(this)},destroy(){this.editor.cleanup(),this.editor=null},getToolbar(){let d=[];return w.forEach(k=>{k.forEach(z=>d.push(this.getToolbarButton(z))),k.length>0&&d.push("|")}),d[d.length-1]==="|"&&d.pop(),d},getToolbarButton(d){if(d==="bold")return this.getBoldToolbarButton();if(d==="italic")return this.getItalicToolbarButton();if(d==="strike")return this.getStrikeToolbarButton();if(d==="link")return this.getLinkToolbarButton();if(d==="heading")return this.getHeadingToolbarButton();if(d==="blockquote")return this.getBlockquoteToolbarButton();if(d==="codeBlock")return this.getCodeBlockToolbarButton();if(d==="bulletList")return this.getBulletListToolbarButton();if(d==="orderedList")return this.getOrderedListToolbarButton();if(d==="table")return this.getTableToolbarButton();if(d==="attachFiles")return this.getAttachFilesToolbarButton();if(d==="undo")return this.getUndoToolbarButton();if(d==="redo")return this.getRedoToolbarButton();console.error(`Markdown editor toolbar button "${d}" not found.`)},getBoldToolbarButton(){return{name:"bold",action:EasyMDE.toggleBold,title:T.tools?.bold}},getItalicToolbarButton(){return{name:"italic",action:EasyMDE.toggleItalic,title:T.tools?.italic}},getStrikeToolbarButton(){return{name:"strikethrough",action:EasyMDE.toggleStrikethrough,title:T.tools?.strike}},getLinkToolbarButton(){return{name:"link",action:EasyMDE.drawLink,title:T.tools?.link}},getHeadingToolbarButton(){return{name:"heading",action:EasyMDE.toggleHeadingSmaller,title:T.tools?.heading}},getBlockquoteToolbarButton(){return{name:"quote",action:EasyMDE.toggleBlockquote,title:T.tools?.blockquote}},getCodeBlockToolbarButton(){return{name:"code",action:EasyMDE.toggleCodeBlock,title:T.tools?.code_block}},getBulletListToolbarButton(){return{name:"unordered-list",action:EasyMDE.toggleUnorderedList,title:T.tools?.bullet_list}},getOrderedListToolbarButton(){return{name:"ordered-list",action:EasyMDE.toggleOrderedList,title:T.tools?.ordered_list}},getTableToolbarButton(){return{name:"table",action:EasyMDE.drawTable,title:T.tools?.table}},getAttachFilesToolbarButton(){return{name:"upload-image",action:EasyMDE.drawUploadedImage,title:T.tools?.attach_files}},getUndoToolbarButton(){return{name:"undo",action:EasyMDE.undo,title:T.tools?.undo}},getRedoToolbarButton(){return{name:"redo",action:EasyMDE.redo,title:T.tools?.redo}}}}export{Kd as default}; diff --git a/public/js/filament/forms/components/rich-editor.js b/public/js/filament/forms/components/rich-editor.js new file mode 100644 index 0000000..b882f8f --- /dev/null +++ b/public/js/filament/forms/components/rich-editor.js @@ -0,0 +1,144 @@ +function ge(t){this.content=t}ge.prototype={constructor:ge,find:function(t){for(var e=0;e>1}};ge.from=function(t){if(t instanceof ge)return t;var e=[];if(t)for(var n in t)e.push(n,t[n]);return new ge(e)};var vi=ge;function ba(t,e,n){for(let r=0;;r++){if(r==t.childCount||r==e.childCount)return t.childCount==e.childCount?null:n;let o=t.child(r),i=e.child(r);if(o==i){n+=o.nodeSize;continue}if(!o.sameMarkup(i))return n;if(o.isText&&o.text!=i.text){for(let s=0;o.text[s]==i.text[s];s++)n++;return n}if(o.content.size||i.content.size){let s=ba(o.content,i.content,n+1);if(s!=null)return s}n+=o.nodeSize}}function wa(t,e,n,r){for(let o=t.childCount,i=e.childCount;;){if(o==0||i==0)return o==i?null:{a:n,b:r};let s=t.child(--o),l=e.child(--i),a=s.nodeSize;if(s==l){n-=a,r-=a;continue}if(!s.sameMarkup(l))return{a:n,b:r};if(s.isText&&s.text!=l.text){let c=0,d=Math.min(s.text.length,l.text.length);for(;ce&&r(a,o+l,i||null,s)!==!1&&a.content.size){let d=l+1;a.nodesBetween(Math.max(0,e-d),Math.min(a.content.size,n-d),r,o+d)}l=c}}descendants(e){this.nodesBetween(0,this.size,e)}textBetween(e,n,r,o){let i="",s=!0;return this.nodesBetween(e,n,(l,a)=>{let c=l.isText?l.text.slice(Math.max(e,a)-a,n-a):l.isLeaf?o?typeof o=="function"?o(l):o:l.type.spec.leafText?l.type.spec.leafText(l):"":"";l.isBlock&&(l.isLeaf&&c||l.isTextblock)&&r&&(s?s=!1:i+=r),i+=c},0),i}append(e){if(!e.size)return this;if(!this.size)return e;let n=this.lastChild,r=e.firstChild,o=this.content.slice(),i=0;for(n.isText&&n.sameMarkup(r)&&(o[o.length-1]=n.withText(n.text+r.text),i=1);ie)for(let i=0,s=0;se&&((sn)&&(l.isText?l=l.cut(Math.max(0,e-s),Math.min(l.text.length,n-s)):l=l.cut(Math.max(0,e-s-1),Math.min(l.content.size,n-s-1))),r.push(l),o+=l.nodeSize),s=a}return new t(r,o)}cutByIndex(e,n){return e==n?t.empty:e==0&&n==this.content.length?this:new t(this.content.slice(e,n))}replaceChild(e,n){let r=this.content[e];if(r==n)return this;let o=this.content.slice(),i=this.size+n.nodeSize-r.nodeSize;return o[e]=n,new t(o,i)}addToStart(e){return new t([e].concat(this.content),this.size+e.nodeSize)}addToEnd(e){return new t(this.content.concat(e),this.size+e.nodeSize)}eq(e){if(this.content.length!=e.content.length)return!1;for(let n=0;nthis.size||e<0)throw new RangeError(`Position ${e} outside of fragment (${this})`);for(let n=0,r=0;;n++){let o=this.child(n),i=r+o.nodeSize;if(i>=e)return i==e?Ar(n+1,i):Ar(n,r);r=i}}toString(){return"<"+this.toStringInner()+">"}toStringInner(){return this.content.join(", ")}toJSON(){return this.content.length?this.content.map(e=>e.toJSON()):null}static fromJSON(e,n){if(!n)return t.empty;if(!Array.isArray(n))throw new RangeError("Invalid input for Fragment.fromJSON");return new t(n.map(e.nodeFromJSON))}static fromArray(e){if(!e.length)return t.empty;let n,r=0;for(let o=0;othis.type.rank&&(n||(n=e.slice(0,o)),n.push(this),r=!0),n&&n.push(i)}}return n||(n=e.slice()),r||n.push(this),n}removeFromSet(e){for(let n=0;nr.type.rank-o.type.rank),n}};J.none=[];var Ft=class extends Error{},E=class t{constructor(e,n,r){this.content=e,this.openStart=n,this.openEnd=r}get size(){return this.content.size-this.openStart-this.openEnd}insertAt(e,n){let r=ka(this.content,e+this.openStart,n);return r&&new t(r,this.openStart,this.openEnd)}removeBetween(e,n){return new t(xa(this.content,e+this.openStart,n+this.openStart),this.openStart,this.openEnd)}eq(e){return this.content.eq(e.content)&&this.openStart==e.openStart&&this.openEnd==e.openEnd}toString(){return this.content+"("+this.openStart+","+this.openEnd+")"}toJSON(){if(!this.content.size)return null;let e={content:this.content.toJSON()};return this.openStart>0&&(e.openStart=this.openStart),this.openEnd>0&&(e.openEnd=this.openEnd),e}static fromJSON(e,n){if(!n)return t.empty;let r=n.openStart||0,o=n.openEnd||0;if(typeof r!="number"||typeof o!="number")throw new RangeError("Invalid input for Slice.fromJSON");return new t(v.fromJSON(e,n.content),r,o)}static maxOpen(e,n=!0){let r=0,o=0;for(let i=e.firstChild;i&&!i.isLeaf&&(n||!i.type.spec.isolating);i=i.firstChild)r++;for(let i=e.lastChild;i&&!i.isLeaf&&(n||!i.type.spec.isolating);i=i.lastChild)o++;return new t(e,r,o)}};E.empty=new E(v.empty,0,0);function xa(t,e,n){let{index:r,offset:o}=t.findIndex(e),i=t.maybeChild(r),{index:s,offset:l}=t.findIndex(n);if(o==e||i.isText){if(l!=n&&!t.child(s).isText)throw new RangeError("Removing non-flat range");return t.cut(0,e).append(t.cut(n))}if(r!=s)throw new RangeError("Removing non-flat range");return t.replaceChild(r,i.copy(xa(i.content,e-o-1,n-o-1)))}function ka(t,e,n,r){let{index:o,offset:i}=t.findIndex(e),s=t.maybeChild(o);if(i==e||s.isText)return r&&!r.canReplace(o,o,n)?null:t.cut(0,e).append(n).append(t.cut(e));let l=ka(s.content,e-i-1,n,s);return l&&t.replaceChild(o,s.copy(l))}function sp(t,e,n){if(n.openStart>t.depth)throw new Ft("Inserted content deeper than insertion position");if(t.depth-n.openStart!=e.depth-n.openEnd)throw new Ft("Inconsistent open depths");return Sa(t,e,n,0)}function Sa(t,e,n,r){let o=t.index(r),i=t.node(r);if(o==e.index(r)&&r=0&&t.isText&&t.sameMarkup(e[n])?e[n]=t.withText(e[n].text+t.text):e.push(t)}function zn(t,e,n,r){let o=(e||t).node(n),i=0,s=e?e.index(n):o.childCount;t&&(i=t.index(n),t.depth>n?i++:t.textOffset&&(Ht(t.nodeAfter,r),i++));for(let l=i;lo&&Ai(t,e,o+1),s=r.depth>o&&Ai(n,r,o+1),l=[];return zn(null,t,o,l),i&&s&&e.index(o)==n.index(o)?(Ca(i,s),Ht($t(i,va(t,e,n,r,o+1)),l)):(i&&Ht($t(i,Or(t,e,o+1)),l),zn(e,n,o,l),s&&Ht($t(s,Or(n,r,o+1)),l)),zn(r,null,o,l),new v(l)}function Or(t,e,n){let r=[];if(zn(null,t,n,r),t.depth>n){let o=Ai(t,e,n+1);Ht($t(o,Or(t,e,n+1)),r)}return zn(e,null,n,r),new v(r)}function lp(t,e){let n=e.depth-t.openStart,o=e.node(n).copy(t.content);for(let i=n-1;i>=0;i--)o=e.node(i).copy(v.from(o));return{start:o.resolveNoCache(t.openStart+n),end:o.resolveNoCache(o.content.size-t.openEnd-n)}}var Rr=class t{constructor(e,n,r){this.pos=e,this.path=n,this.parentOffset=r,this.depth=n.length/3-1}resolveDepth(e){return e==null?this.depth:e<0?this.depth+e:e}get parent(){return this.node(this.depth)}get doc(){return this.node(0)}node(e){return this.path[this.resolveDepth(e)*3]}index(e){return this.path[this.resolveDepth(e)*3+1]}indexAfter(e){return e=this.resolveDepth(e),this.index(e)+(e==this.depth&&!this.textOffset?0:1)}start(e){return e=this.resolveDepth(e),e==0?0:this.path[e*3-1]+1}end(e){return e=this.resolveDepth(e),this.start(e)+this.node(e).content.size}before(e){if(e=this.resolveDepth(e),!e)throw new RangeError("There is no position before the top-level node");return e==this.depth+1?this.pos:this.path[e*3-1]}after(e){if(e=this.resolveDepth(e),!e)throw new RangeError("There is no position after the top-level node");return e==this.depth+1?this.pos:this.path[e*3-1]+this.path[e*3].nodeSize}get textOffset(){return this.pos-this.path[this.path.length-1]}get nodeAfter(){let e=this.parent,n=this.index(this.depth);if(n==e.childCount)return null;let r=this.pos-this.path[this.path.length-1],o=e.child(n);return r?e.child(n).cut(r):o}get nodeBefore(){let e=this.index(this.depth),n=this.pos-this.path[this.path.length-1];return n?this.parent.child(e).cut(0,n):e==0?null:this.parent.child(e-1)}posAtIndex(e,n){n=this.resolveDepth(n);let r=this.path[n*3],o=n==0?0:this.path[n*3-1]+1;for(let i=0;i0;n--)if(this.start(n)<=e&&this.end(n)>=e)return n;return 0}blockRange(e=this,n){if(e.pos=0;r--)if(e.pos<=this.end(r)&&(!n||n(this.node(r))))return new Vt(this,e,r);return null}sameParent(e){return this.pos-this.parentOffset==e.pos-e.parentOffset}max(e){return e.pos>this.pos?e:this}min(e){return e.pos=0&&n<=e.content.size))throw new RangeError("Position "+n+" out of range");let r=[],o=0,i=n;for(let s=e;;){let{index:l,offset:a}=s.content.findIndex(i),c=i-a;if(r.push(s,l,o+a),!c||(s=s.child(l),s.isText))break;i=c-1,o+=a+1}return new t(n,r,i)}static resolveCached(e,n){let r=ca.get(e);if(r)for(let i=0;ie&&this.nodesBetween(e,n,i=>(r.isInSet(i.marks)&&(o=!0),!o)),o}get isBlock(){return this.type.isBlock}get isTextblock(){return this.type.isTextblock}get inlineContent(){return this.type.inlineContent}get isInline(){return this.type.isInline}get isText(){return this.type.isText}get isLeaf(){return this.type.isLeaf}get isAtom(){return this.type.isAtom}toString(){if(this.type.spec.toDebugString)return this.type.spec.toDebugString(this);let e=this.type.name;return this.content.size&&(e+="("+this.content.toStringInner()+")"),Ma(this.marks,e)}contentMatchAt(e){let n=this.type.contentMatch.matchFragment(this.content,0,e);if(!n)throw new Error("Called contentMatchAt on a node with invalid content");return n}canReplace(e,n,r=v.empty,o=0,i=r.childCount){let s=this.contentMatchAt(e).matchFragment(r,o,i),l=s&&s.matchFragment(this.content,n);if(!l||!l.validEnd)return!1;for(let a=o;an.type.name)}`);this.content.forEach(n=>n.check())}toJSON(){let e={type:this.type.name};for(let n in this.attrs){e.attrs=this.attrs;break}return this.content.size&&(e.content=this.content.toJSON()),this.marks.length&&(e.marks=this.marks.map(n=>n.toJSON())),e}static fromJSON(e,n){if(!n)throw new RangeError("Invalid input for Node.fromJSON");let r;if(n.marks){if(!Array.isArray(n.marks))throw new RangeError("Invalid mark data for Node.fromJSON");r=n.marks.map(e.markFromJSON)}if(n.type=="text"){if(typeof n.text!="string")throw new RangeError("Invalid text node in JSON");return e.text(n.text,r)}let o=v.fromJSON(e,n.content),i=e.nodeType(n.type).create(n.attrs,o,r);return i.type.checkAttrs(i.attrs),i}};ie.prototype.text=void 0;var Ni=class t extends ie{constructor(e,n,r,o){if(super(e,n,null,o),!r)throw new RangeError("Empty text nodes are not allowed");this.text=r}toString(){return this.type.spec.toDebugString?this.type.spec.toDebugString(this):Ma(this.marks,JSON.stringify(this.text))}get textContent(){return this.text}textBetween(e,n){return this.text.slice(e,n)}get nodeSize(){return this.text.length}mark(e){return e==this.marks?this:new t(this.type,this.attrs,this.text,e)}withText(e){return e==this.text?this:new t(this.type,this.attrs,e,this.marks)}cut(e=0,n=this.text.length){return e==0&&n==this.text.length?this:this.withText(this.text.slice(e,n))}eq(e){return this.sameMarkup(e)&&this.text==e.text}toJSON(){let e=super.toJSON();return e.text=this.text,e}};function Ma(t,e){for(let n=t.length-1;n>=0;n--)e=t[n].type.name+"("+e+")";return e}var _t=class t{constructor(e){this.validEnd=e,this.next=[],this.wrapCache=[]}static parse(e,n){let r=new Oi(e,n);if(r.next==null)return t.empty;let o=Ta(r);r.next&&r.err("Unexpected trailing text");let i=gp(mp(o));return yp(i,r),i}matchType(e){for(let n=0;nc.createAndFill()));for(let c=0;c=this.next.length)throw new RangeError(`There's no ${e}th edge in this content match`);return this.next[e]}toString(){let e=[];function n(r){e.push(r);for(let o=0;o{let i=o+(r.validEnd?"*":" ")+" ";for(let s=0;s"+e.indexOf(r.next[s].next);return i}).join(` +`)}};_t.empty=new _t(!0);var Oi=class{constructor(e,n){this.string=e,this.nodeTypes=n,this.inline=null,this.pos=0,this.tokens=e.split(/\s*(?=\b|\W|$)/),this.tokens[this.tokens.length-1]==""&&this.tokens.pop(),this.tokens[0]==""&&this.tokens.shift()}get next(){return this.tokens[this.pos]}eat(e){return this.next==e&&(this.pos++||!0)}err(e){throw new SyntaxError(e+" (in content expression '"+this.string+"')")}};function Ta(t){let e=[];do e.push(dp(t));while(t.eat("|"));return e.length==1?e[0]:{type:"choice",exprs:e}}function dp(t){let e=[];do e.push(up(t));while(t.next&&t.next!=")"&&t.next!="|");return e.length==1?e[0]:{type:"seq",exprs:e}}function up(t){let e=pp(t);for(;;)if(t.eat("+"))e={type:"plus",expr:e};else if(t.eat("*"))e={type:"star",expr:e};else if(t.eat("?"))e={type:"opt",expr:e};else if(t.eat("{"))e=fp(t,e);else break;return e}function da(t){/\D/.test(t.next)&&t.err("Expected number, got '"+t.next+"'");let e=Number(t.next);return t.pos++,e}function fp(t,e){let n=da(t),r=n;return t.eat(",")&&(t.next!="}"?r=da(t):r=-1),t.eat("}")||t.err("Unclosed braced range"),{type:"range",min:n,max:r,expr:e}}function hp(t,e){let n=t.nodeTypes,r=n[e];if(r)return[r];let o=[];for(let i in n){let s=n[i];s.isInGroup(e)&&o.push(s)}return o.length==0&&t.err("No node type or group '"+e+"' found"),o}function pp(t){if(t.eat("(")){let e=Ta(t);return t.eat(")")||t.err("Missing closing paren"),e}else if(/\W/.test(t.next))t.err("Unexpected token '"+t.next+"'");else{let e=hp(t,t.next).map(n=>(t.inline==null?t.inline=n.isInline:t.inline!=n.isInline&&t.err("Mixing inline and block content"),{type:"name",value:n}));return t.pos++,e.length==1?e[0]:{type:"choice",exprs:e}}}function mp(t){let e=[[]];return o(i(t,0),n()),e;function n(){return e.push([])-1}function r(s,l,a){let c={term:a,to:l};return e[s].push(c),c}function o(s,l){s.forEach(a=>a.to=l)}function i(s,l){if(s.type=="choice")return s.exprs.reduce((a,c)=>a.concat(i(c,l)),[]);if(s.type=="seq")for(let a=0;;a++){let c=i(s.exprs[a],l);if(a==s.exprs.length-1)return c;o(c,l=n())}else if(s.type=="star"){let a=n();return r(l,a),o(i(s.expr,a),a),[r(a)]}else if(s.type=="plus"){let a=n();return o(i(s.expr,l),a),o(i(s.expr,a),a),[r(a)]}else{if(s.type=="opt")return[r(l)].concat(i(s.expr,l));if(s.type=="range"){let a=l;for(let c=0;c{t[s].forEach(({term:l,to:a})=>{if(!l)return;let c;for(let d=0;d{c||o.push([l,c=[]]),c.indexOf(d)==-1&&c.push(d)})})});let i=e[r.join(",")]=new _t(r.indexOf(t.length-1)>-1);for(let s=0;s-1}get whitespace(){return this.spec.whitespace||(this.spec.code?"pre":"normal")}hasRequiredAttrs(){for(let e in this.attrs)if(this.attrs[e].isRequired)return!0;return!1}compatibleContent(e){return this==e||this.contentMatch.compatible(e.contentMatch)}computeAttrs(e){return!e&&this.defaultAttrs?this.defaultAttrs:Na(this.attrs,e)}create(e=null,n,r){if(this.isText)throw new Error("NodeType.create can't construct text nodes");return new ie(this,this.computeAttrs(e),v.from(n),J.setFrom(r))}createChecked(e=null,n,r){return n=v.from(n),this.checkContent(n),new ie(this,this.computeAttrs(e),n,J.setFrom(r))}createAndFill(e=null,n,r){if(e=this.computeAttrs(e),n=v.from(n),n.size){let s=this.contentMatch.fillBefore(n);if(!s)return null;n=s.append(n)}let o=this.contentMatch.matchFragment(n),i=o&&o.fillBefore(v.empty,!0);return i?new ie(this,e,n.append(i),J.setFrom(r)):null}validContent(e){let n=this.contentMatch.matchFragment(e);if(!n||!n.validEnd)return!1;for(let r=0;r-1}allowsMarks(e){if(this.markSet==null)return!0;for(let n=0;nr[i]=new t(i,n,s));let o=n.spec.topNode||"doc";if(!r[o])throw new RangeError("Schema is missing its top node type ('"+o+"')");if(!r.text)throw new RangeError("Every schema needs a 'text' type");for(let i in r.text.attrs)throw new RangeError("The text node type should not have attributes");return r}};function bp(t,e,n){let r=n.split("|");return o=>{let i=o===null?"null":typeof o;if(r.indexOf(i)<0)throw new RangeError(`Expected value of type ${r} for attribute ${e} on type ${t}, got ${i}`)}}var Ri=class{constructor(e,n,r){this.hasDefault=Object.prototype.hasOwnProperty.call(r,"default"),this.default=r.default,this.validate=typeof r.validate=="string"?bp(e,n,r.validate):r.validate}get isRequired(){return!this.hasDefault}},$n=class t{constructor(e,n,r,o){this.name=e,this.rank=n,this.schema=r,this.spec=o,this.attrs=Ra(e,o.attrs),this.excluded=null;let i=Ea(this.attrs);this.instance=i?new J(this,i):null}create(e=null){return!e&&this.instance?this.instance:new J(this,Na(this.attrs,e))}static compile(e,n){let r=Object.create(null),o=0;return e.forEach((i,s)=>r[i]=new t(i,o++,n,s)),r}removeFromSet(e){for(var n=0;n-1}},fn=class{constructor(e){this.linebreakReplacement=null,this.cached=Object.create(null);let n=this.spec={};for(let o in e)n[o]=e[o];n.nodes=vi.from(e.nodes),n.marks=vi.from(e.marks||{}),this.nodes=Dr.compile(this.spec.nodes,this),this.marks=$n.compile(this.spec.marks,this);let r=Object.create(null);for(let o in this.nodes){if(o in this.marks)throw new RangeError(o+" can not be both a node and a mark");let i=this.nodes[o],s=i.spec.content||"",l=i.spec.marks;if(i.contentMatch=r[s]||(r[s]=_t.parse(s,this.nodes)),i.inlineContent=i.contentMatch.inlineContent,i.spec.linebreakReplacement){if(this.linebreakReplacement)throw new RangeError("Multiple linebreak nodes defined");if(!i.isInline||!i.isLeaf)throw new RangeError("Linebreak replacement nodes must be inline leaf nodes");this.linebreakReplacement=i}i.markSet=l=="_"?null:l?fa(this,l.split(" ")):l==""||!i.inlineContent?[]:null}for(let o in this.marks){let i=this.marks[o],s=i.spec.excludes;i.excluded=s==null?[i]:s==""?[]:fa(this,s.split(" "))}this.nodeFromJSON=o=>ie.fromJSON(this,o),this.markFromJSON=o=>J.fromJSON(this,o),this.topNodeType=this.nodes[this.spec.topNode||"doc"],this.cached.wrappings=Object.create(null)}node(e,n=null,r,o){if(typeof e=="string")e=this.nodeType(e);else if(e instanceof Dr){if(e.schema!=this)throw new RangeError("Node type from different schema used ("+e.name+")")}else throw new RangeError("Invalid node type: "+e);return e.createChecked(n,r,o)}text(e,n){let r=this.nodes.text;return new Ni(r,r.defaultAttrs,e,J.setFrom(n))}mark(e,n){return typeof e=="string"&&(e=this.marks[e]),e.create(n)}nodeType(e){let n=this.nodes[e];if(!n)throw new RangeError("Unknown node type: "+e);return n}};function fa(t,e){let n=[];for(let r=0;r-1)&&n.push(s=a)}if(!s)throw new SyntaxError("Unknown mark type: '"+e[r]+"'")}return n}function wp(t){return t.tag!=null}function xp(t){return t.style!=null}var Xe=class t{constructor(e,n){this.schema=e,this.rules=n,this.tags=[],this.styles=[];let r=this.matchedStyles=[];n.forEach(o=>{if(wp(o))this.tags.push(o);else if(xp(o)){let i=/[^=]*/.exec(o.style)[0];r.indexOf(i)<0&&r.push(i),this.styles.push(o)}}),this.normalizeLists=!this.tags.some(o=>{if(!/^(ul|ol)\b/.test(o.tag)||!o.node)return!1;let i=e.nodes[o.node];return i.contentMatch.matchType(i)})}parse(e,n={}){let r=new Ir(this,n,!1);return r.addAll(e,J.none,n.from,n.to),r.finish()}parseSlice(e,n={}){let r=new Ir(this,n,!0);return r.addAll(e,J.none,n.from,n.to),E.maxOpen(r.finish())}matchTag(e,n,r){for(let o=r?this.tags.indexOf(r)+1:0;oe.length&&(l.charCodeAt(e.length)!=61||l.slice(e.length+1)!=n))){if(s.getAttrs){let a=s.getAttrs(n);if(a===!1)continue;s.attrs=a||void 0}return s}}}static schemaRules(e){let n=[];function r(o){let i=o.priority==null?50:o.priority,s=0;for(;s{r(s=pa(s)),s.mark||s.ignore||s.clearMark||(s.mark=o)})}for(let o in e.nodes){let i=e.nodes[o].spec.parseDOM;i&&i.forEach(s=>{r(s=pa(s)),s.node||s.ignore||s.mark||(s.node=o)})}return n}static fromSchema(e){return e.cached.domParser||(e.cached.domParser=new t(e,t.schemaRules(e)))}},Da={address:!0,article:!0,aside:!0,blockquote:!0,canvas:!0,dd:!0,div:!0,dl:!0,fieldset:!0,figcaption:!0,figure:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,li:!0,noscript:!0,ol:!0,output:!0,p:!0,pre:!0,section:!0,table:!0,tfoot:!0,ul:!0},kp={head:!0,noscript:!0,object:!0,script:!0,style:!0,title:!0},Ia={ol:!0,ul:!0},Fn=1,Di=2,Hn=4;function ha(t,e,n){return e!=null?(e?Fn:0)|(e==="full"?Di:0):t&&t.whitespace=="pre"?Fn|Di:n&~Hn}var un=class{constructor(e,n,r,o,i,s){this.type=e,this.attrs=n,this.marks=r,this.solid=o,this.options=s,this.content=[],this.activeMarks=J.none,this.match=i||(s&Hn?null:e.contentMatch)}findWrapping(e){if(!this.match){if(!this.type)return[];let n=this.type.contentMatch.fillBefore(v.from(e));if(n)this.match=this.type.contentMatch.matchFragment(n);else{let r=this.type.contentMatch,o;return(o=r.findWrapping(e.type))?(this.match=r,o):null}}return this.match.findWrapping(e.type)}finish(e){if(!(this.options&Fn)){let r=this.content[this.content.length-1],o;if(r&&r.isText&&(o=/[ \t\r\n\u000c]+$/.exec(r.text))){let i=r;r.text.length==o[0].length?this.content.pop():this.content[this.content.length-1]=i.withText(i.text.slice(0,i.text.length-o[0].length))}}let n=v.from(this.content);return!e&&this.match&&(n=n.append(this.match.fillBefore(v.empty,!0))),this.type?this.type.create(this.attrs,n,this.marks):n}inlineContext(e){return this.type?this.type.inlineContent:this.content.length?this.content[0].isInline:e.parentNode&&!Da.hasOwnProperty(e.parentNode.nodeName.toLowerCase())}},Ir=class{constructor(e,n,r){this.parser=e,this.options=n,this.isOpen=r,this.open=0,this.localPreserveWS=!1;let o=n.topNode,i,s=ha(null,n.preserveWhitespace,0)|(r?Hn:0);o?i=new un(o.type,o.attrs,J.none,!0,n.topMatch||o.type.contentMatch,s):r?i=new un(null,null,J.none,!0,null,s):i=new un(e.schema.topNodeType,null,J.none,!0,null,s),this.nodes=[i],this.find=n.findPositions,this.needsBlock=!1}get top(){return this.nodes[this.open]}addDOM(e,n){e.nodeType==3?this.addTextNode(e,n):e.nodeType==1&&this.addElement(e,n)}addTextNode(e,n){let r=e.nodeValue,o=this.top,i=o.options&Di?"full":this.localPreserveWS||(o.options&Fn)>0,{schema:s}=this.parser;if(i==="full"||o.inlineContext(e)||/[^ \t\r\n\u000c]/.test(r)){if(i)if(i==="full")r=r.replace(/\r\n?/g,` +`);else if(s.linebreakReplacement&&/[\r\n]/.test(r)&&this.top.findWrapping(s.linebreakReplacement.create())){let l=r.split(/\r?\n|\r/);for(let a=0;a!a.clearMark(c)):n=n.concat(this.parser.schema.marks[a.mark].create(a.attrs)),a.consuming===!1)l=a;else break}}return n}addElementByRule(e,n,r,o){let i,s;if(n.node)if(s=this.parser.schema.nodes[n.node],s.isLeaf)this.insertNode(s.create(n.attrs),r,e.nodeName=="BR")||this.leafFallback(e,r);else{let a=this.enter(s,n.attrs||null,r,n.preserveWhitespace);a&&(i=!0,r=a)}else{let a=this.parser.schema.marks[n.mark];r=r.concat(a.create(n.attrs))}let l=this.top;if(s&&s.isLeaf)this.findInside(e);else if(o)this.addElement(e,r,o);else if(n.getContent)this.findInside(e),n.getContent(e,this.parser.schema).forEach(a=>this.insertNode(a,r,!1));else{let a=e;typeof n.contentElement=="string"?a=e.querySelector(n.contentElement):typeof n.contentElement=="function"?a=n.contentElement(e):n.contentElement&&(a=n.contentElement),this.findAround(e,a,!0),this.addAll(a,r),this.findAround(e,a,!1)}i&&this.sync(l)&&this.open--}addAll(e,n,r,o){let i=r||0;for(let s=r?e.childNodes[r]:e.firstChild,l=o==null?null:e.childNodes[o];s!=l;s=s.nextSibling,++i)this.findAtPoint(e,i),this.addDOM(s,n);this.findAtPoint(e,i)}findPlace(e,n,r){let o,i;for(let s=this.open,l=0;s>=0;s--){let a=this.nodes[s],c=a.findWrapping(e);if(c&&(!o||o.length>c.length+l)&&(o=c,i=a,!c.length))break;if(a.solid){if(r)break;l+=2}}if(!o)return null;this.sync(i);for(let s=0;s(s.type?s.type.allowsMarkType(c.type):ma(c.type,e))?(a=c.addToSet(a),!1):!0),this.nodes.push(new un(e,n,a,o,null,l)),this.open++,r}closeExtra(e=!1){let n=this.nodes.length-1;if(n>this.open){for(;n>this.open;n--)this.nodes[n-1].content.push(this.nodes[n].finish(e));this.nodes.length=this.open+1}}finish(){return this.open=0,this.closeExtra(this.isOpen),this.nodes[0].finish(!!(this.isOpen||this.options.topOpen))}sync(e){for(let n=this.open;n>=0;n--){if(this.nodes[n]==e)return this.open=n,!0;this.localPreserveWS&&(this.nodes[n].options|=Fn)}return!1}get currentPos(){this.closeExtra();let e=0;for(let n=this.open;n>=0;n--){let r=this.nodes[n].content;for(let o=r.length-1;o>=0;o--)e+=r[o].nodeSize;n&&e++}return e}findAtPoint(e,n){if(this.find)for(let r=0;r-1)return e.split(/\s*\|\s*/).some(this.matchesContext,this);let n=e.split("/"),r=this.options.context,o=!this.isOpen&&(!r||r.parent.type==this.nodes[0].type),i=-(r?r.depth+1:0)+(o?0:1),s=(l,a)=>{for(;l>=0;l--){let c=n[l];if(c==""){if(l==n.length-1||l==0)continue;for(;a>=i;a--)if(s(l-1,a))return!0;return!1}else{let d=a>0||a==0&&o?this.nodes[a].type:r&&a>=i?r.node(a-i).type:null;if(!d||d.name!=c&&!d.isInGroup(c))return!1;a--}}return!0};return s(n.length-1,this.open)}textblockFromContext(){let e=this.options.context;if(e)for(let n=e.depth;n>=0;n--){let r=e.node(n).contentMatchAt(e.indexAfter(n)).defaultType;if(r&&r.isTextblock&&r.defaultAttrs)return r}for(let n in this.parser.schema.nodes){let r=this.parser.schema.nodes[n];if(r.isTextblock&&r.defaultAttrs)return r}}};function Sp(t){for(let e=t.firstChild,n=null;e;e=e.nextSibling){let r=e.nodeType==1?e.nodeName.toLowerCase():null;r&&Ia.hasOwnProperty(r)&&n?(n.appendChild(e),e=n):r=="li"?n=e:r&&(n=null)}}function Cp(t,e){return(t.matches||t.msMatchesSelector||t.webkitMatchesSelector||t.mozMatchesSelector).call(t,e)}function pa(t){let e={};for(let n in t)e[n]=t[n];return e}function ma(t,e){let n=e.schema.nodes;for(let r in n){let o=n[r];if(!o.allowsMarkType(t))continue;let i=[],s=l=>{i.push(l);for(let a=0;a{if(i.length||s.marks.length){let l=0,a=0;for(;l=0;o--){let i=this.serializeMark(e.marks[o],e.isInline,n);i&&((i.contentDOM||i.dom).appendChild(r),r=i.dom)}return r}serializeMark(e,n,r={}){let o=this.marks[e.type.name];return o&&Er(Ti(r),o(e,n),null,e.attrs)}static renderSpec(e,n,r=null,o){return Er(e,n,r,o)}static fromSchema(e){return e.cached.domSerializer||(e.cached.domSerializer=new t(this.nodesFromSchema(e),this.marksFromSchema(e)))}static nodesFromSchema(e){let n=ga(e.nodes);return n.text||(n.text=r=>r.text),n}static marksFromSchema(e){return ga(e.marks)}};function ga(t){let e={};for(let n in t){let r=t[n].spec.toDOM;r&&(e[n]=r)}return e}function Ti(t){return t.document||window.document}var ya=new WeakMap;function vp(t){let e=ya.get(t);return e===void 0&&ya.set(t,e=Mp(t)),e}function Mp(t){let e=null;function n(r){if(r&&typeof r=="object")if(Array.isArray(r))if(typeof r[0]=="string")e||(e=[]),e.push(r);else for(let o=0;o-1)throw new RangeError("Using an array from an attribute object as a DOM spec. This may be an attempted cross site scripting attack.");let s=o.indexOf(" ");s>0&&(n=o.slice(0,s),o=o.slice(s+1));let l,a=n?t.createElementNS(n,o):t.createElement(o),c=e[1],d=1;if(c&&typeof c=="object"&&c.nodeType==null&&!Array.isArray(c)){d=2;for(let u in c)if(c[u]!=null){let f=u.indexOf(" ");f>0?a.setAttributeNS(u.slice(0,f),u.slice(f+1),c[u]):u=="style"&&a.style?a.style.cssText=c[u]:a.setAttribute(u,c[u])}}for(let u=d;ud)throw new RangeError("Content hole must be the only child of its parent node");return{dom:a,contentDOM:a}}else{let{dom:h,contentDOM:p}=Er(t,f,n,r);if(a.appendChild(h),p){if(l)throw new RangeError("Multiple content holes");l=p}}}return{dom:a,contentDOM:l}}var Ba=65535,za=Math.pow(2,16);function Tp(t,e){return t+e*za}function Pa(t){return t&Ba}function Ap(t){return(t-(t&Ba))/za}var Ha=1,$a=2,Pr=4,Fa=8,Wn=class{constructor(e,n,r){this.pos=e,this.delInfo=n,this.recover=r}get deleted(){return(this.delInfo&Fa)>0}get deletedBefore(){return(this.delInfo&(Ha|Pr))>0}get deletedAfter(){return(this.delInfo&($a|Pr))>0}get deletedAcross(){return(this.delInfo&Pr)>0}},dt=class t{constructor(e,n=!1){if(this.ranges=e,this.inverted=n,!e.length&&t.empty)return t.empty}recover(e){let n=0,r=Pa(e);if(!this.inverted)for(let o=0;oe)break;let c=this.ranges[l+i],d=this.ranges[l+s],u=a+c;if(e<=u){let f=c?e==a?-1:e==u?1:n:n,h=a+o+(f<0?0:d);if(r)return h;let p=e==(n<0?a:u)?null:Tp(l/3,e-a),m=e==a?$a:e==u?Ha:Pr;return(n<0?e!=a:e!=u)&&(m|=Fa),new Wn(h,m,p)}o+=d-c}return r?e+o:new Wn(e+o,0,null)}touches(e,n){let r=0,o=Pa(n),i=this.inverted?2:1,s=this.inverted?1:2;for(let l=0;le)break;let c=this.ranges[l+i],d=a+c;if(e<=d&&l==o*3)return!0;r+=this.ranges[l+s]-c}return!1}forEach(e){let n=this.inverted?2:1,r=this.inverted?1:2;for(let o=0,i=0;o=0;n--){let o=e.getMirror(n);this.appendMap(e._maps[n].invert(),o!=null&&o>n?r-o-1:void 0)}}invert(){let e=new t;return e.appendMappingInverted(this),e}map(e,n=1){if(this.mirror)return this._map(e,n,!0);for(let r=this.from;ri&&a!s.isAtom||!l.type.allowsMarkType(this.mark.type)?s:s.mark(this.mark.addToSet(s.marks)),o),n.openStart,n.openEnd);return ue.fromReplace(e,this.from,this.to,i)}invert(){return new ut(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),r=e.mapResult(this.to,-1);return n.deleted&&r.deleted||n.pos>=r.pos?null:new t(n.pos,r.pos,this.mark)}merge(e){return e instanceof t&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new t(Math.min(this.from,e.from),Math.max(this.to,e.to),this.mark):null}toJSON(){return{stepType:"addMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number")throw new RangeError("Invalid input for AddMarkStep.fromJSON");return new t(n.from,n.to,e.markFromJSON(n.mark))}};ce.jsonID("addMark",Un);var ut=class t extends ce{constructor(e,n,r){super(),this.from=e,this.to=n,this.mark=r}apply(e){let n=e.slice(this.from,this.to),r=new E(Hi(n.content,o=>o.mark(this.mark.removeFromSet(o.marks)),e),n.openStart,n.openEnd);return ue.fromReplace(e,this.from,this.to,r)}invert(){return new Un(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),r=e.mapResult(this.to,-1);return n.deleted&&r.deleted||n.pos>=r.pos?null:new t(n.pos,r.pos,this.mark)}merge(e){return e instanceof t&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new t(Math.min(this.from,e.from),Math.max(this.to,e.to),this.mark):null}toJSON(){return{stepType:"removeMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number")throw new RangeError("Invalid input for RemoveMarkStep.fromJSON");return new t(n.from,n.to,e.markFromJSON(n.mark))}};ce.jsonID("removeMark",ut);var Kn=class t extends ce{constructor(e,n){super(),this.pos=e,this.mark=n}apply(e){let n=e.nodeAt(this.pos);if(!n)return ue.fail("No node at mark step's position");let r=n.type.create(n.attrs,null,this.mark.addToSet(n.marks));return ue.fromReplace(e,this.pos,this.pos+1,new E(v.from(r),0,n.isLeaf?0:1))}invert(e){let n=e.nodeAt(this.pos);if(n){let r=this.mark.addToSet(n.marks);if(r.length==n.marks.length){for(let o=0;or.pos?null:new t(n.pos,r.pos,o,i,this.slice,this.insert,this.structure)}toJSON(){let e={stepType:"replaceAround",from:this.from,to:this.to,gapFrom:this.gapFrom,gapTo:this.gapTo,insert:this.insert};return this.slice.size&&(e.slice=this.slice.toJSON()),this.structure&&(e.structure=!0),e}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number"||typeof n.gapFrom!="number"||typeof n.gapTo!="number"||typeof n.insert!="number")throw new RangeError("Invalid input for ReplaceAroundStep.fromJSON");return new t(n.from,n.to,n.gapFrom,n.gapTo,E.fromJSON(e,n.slice),n.insert,!!n.structure)}};ce.jsonID("replaceAround",se);function Bi(t,e,n){let r=t.resolve(e),o=n-e,i=r.depth;for(;o>0&&i>0&&r.indexAfter(i)==r.node(i).childCount;)i--,o--;if(o>0){let s=r.node(i).maybeChild(r.indexAfter(i));for(;o>0;){if(!s||s.isLeaf)return!0;s=s.firstChild,o--}}return!1}function Ep(t,e,n,r){let o=[],i=[],s,l;t.doc.nodesBetween(e,n,(a,c,d)=>{if(!a.isInline)return;let u=a.marks;if(!r.isInSet(u)&&d.type.allowsMarkType(r.type)){let f=Math.max(c,e),h=Math.min(c+a.nodeSize,n),p=r.addToSet(u);for(let m=0;mt.step(a)),i.forEach(a=>t.step(a))}function Np(t,e,n,r){let o=[],i=0;t.doc.nodesBetween(e,n,(s,l)=>{if(!s.isInline)return;i++;let a=null;if(r instanceof $n){let c=s.marks,d;for(;d=r.isInSet(c);)(a||(a=[])).push(d),c=d.removeFromSet(c)}else r?r.isInSet(s.marks)&&(a=[r]):a=s.marks;if(a&&a.length){let c=Math.min(l+s.nodeSize,n);for(let d=0;dt.step(new ut(s.from,s.to,s.style)))}function $i(t,e,n,r=n.contentMatch,o=!0){let i=t.doc.nodeAt(e),s=[],l=e+1;for(let a=0;a=0;a--)t.step(s[a])}function Op(t,e,n){return(e==0||t.canReplace(e,t.childCount))&&(n==t.childCount||t.canReplace(0,n))}function ft(t){let n=t.parent.content.cutByIndex(t.startIndex,t.endIndex);for(let r=t.depth,o=0,i=0;;--r){let s=t.$from.node(r),l=t.$from.index(r)+o,a=t.$to.indexAfter(r)-i;if(rn;p--)m||r.index(p)>0?(m=!0,d=v.from(r.node(p).copy(d)),u++):a--;let f=v.empty,h=0;for(let p=i,m=!1;p>n;p--)m||o.after(p+1)=0;s--){if(r.size){let l=n[s].type.contentMatch.matchFragment(r);if(!l||!l.validEnd)throw new RangeError("Wrapper type given to Transform.wrap does not form valid content of its parent wrapper")}r=v.from(n[s].type.create(n[s].attrs,r))}let o=e.start,i=e.end;t.step(new se(o,i,o,i,new E(r,0,0),n.length,!0))}function Lp(t,e,n,r,o){if(!r.isTextblock)throw new RangeError("Type given to setBlockType should be a textblock");let i=t.steps.length;t.doc.nodesBetween(e,n,(s,l)=>{let a=typeof o=="function"?o(s):o;if(s.isTextblock&&!s.hasMarkup(r,a)&&Bp(t.doc,t.mapping.slice(i).map(l),r)){let c=null;if(r.schema.linebreakReplacement){let h=r.whitespace=="pre",p=!!r.contentMatch.matchType(r.schema.linebreakReplacement);h&&!p?c=!1:!h&&p&&(c=!0)}c===!1&&_a(t,s,l,i),$i(t,t.mapping.slice(i).map(l,1),r,void 0,c===null);let d=t.mapping.slice(i),u=d.map(l,1),f=d.map(l+s.nodeSize,1);return t.step(new se(u,f,u+1,f-1,new E(v.from(r.create(a,null,s.marks)),0,0),1,!0)),c===!0&&Va(t,s,l,i),!1}})}function Va(t,e,n,r){e.forEach((o,i)=>{if(o.isText){let s,l=/\r?\n|\r/g;for(;s=l.exec(o.text);){let a=t.mapping.slice(r).map(n+1+i+s.index);t.replaceWith(a,a+1,e.type.schema.linebreakReplacement.create())}}})}function _a(t,e,n,r){e.forEach((o,i)=>{if(o.type==o.type.schema.linebreakReplacement){let s=t.mapping.slice(r).map(n+1+i);t.replaceWith(s,s+1,e.type.schema.text(` +`))}})}function Bp(t,e,n){let r=t.resolve(e),o=r.index();return r.parent.canReplaceWith(o,o+1,n)}function zp(t,e,n,r,o){let i=t.doc.nodeAt(e);if(!i)throw new RangeError("No node at given position");n||(n=i.type);let s=n.create(r,null,o||i.marks);if(i.isLeaf)return t.replaceWith(e,e+i.nodeSize,s);if(!n.validContent(i.content))throw new RangeError("Invalid content for node type "+n.name);t.step(new se(e,e+i.nodeSize,e+1,e+i.nodeSize-1,new E(v.from(s),0,0),1,!0))}function Ee(t,e,n=1,r){let o=t.resolve(e),i=o.depth-n,s=r&&r[r.length-1]||o.parent;if(i<0||o.parent.type.spec.isolating||!o.parent.canReplace(o.index(),o.parent.childCount)||!s.type.validContent(o.parent.content.cutByIndex(o.index(),o.parent.childCount)))return!1;for(let c=o.depth-1,d=n-2;c>i;c--,d--){let u=o.node(c),f=o.index(c);if(u.type.spec.isolating)return!1;let h=u.content.cutByIndex(f,u.childCount),p=r&&r[d+1];p&&(h=h.replaceChild(0,p.type.create(p.attrs)));let m=r&&r[d]||u;if(!u.canReplace(f+1,u.childCount)||!m.type.validContent(h))return!1}let l=o.indexAfter(i),a=r&&r[0];return o.node(i).canReplaceWith(l,l,a?a.type:o.node(i+1).type)}function Hp(t,e,n=1,r){let o=t.doc.resolve(e),i=v.empty,s=v.empty;for(let l=o.depth,a=o.depth-n,c=n-1;l>a;l--,c--){i=v.from(o.node(l).copy(i));let d=r&&r[c];s=v.from(d?d.type.create(d.attrs,s):o.node(l).copy(s))}t.step(new ye(e,e,new E(i.append(s),n,n),!0))}function Re(t,e){let n=t.resolve(e),r=n.index();return Wa(n.nodeBefore,n.nodeAfter)&&n.parent.canReplace(r,r+1)}function $p(t,e){e.content.size||t.type.compatibleContent(e.type);let n=t.contentMatchAt(t.childCount),{linebreakReplacement:r}=t.type.schema;for(let o=0;o0?(i=r.node(o+1),l++,s=r.node(o).maybeChild(l)):(i=r.node(o).maybeChild(l-1),s=r.node(o+1)),i&&!i.isTextblock&&Wa(i,s)&&r.node(o).canReplace(l,l+1))return e;if(o==0)break;e=n<0?r.before(o):r.after(o)}}function Fp(t,e,n){let r=null,{linebreakReplacement:o}=t.doc.type.schema,i=t.doc.resolve(e-n),s=i.node().type;if(o&&s.inlineContent){let d=s.whitespace=="pre",u=!!s.contentMatch.matchType(o);d&&!u?r=!1:!d&&u&&(r=!0)}let l=t.steps.length;if(r===!1){let d=t.doc.resolve(e+n);_a(t,d.node(),d.before(),l)}s.inlineContent&&$i(t,e+n-1,s,i.node().contentMatchAt(i.index()),r==null);let a=t.mapping.slice(l),c=a.map(e-n);if(t.step(new ye(c,a.map(e+n,-1),E.empty,!0)),r===!0){let d=t.doc.resolve(c);Va(t,d.node(),d.before(),t.steps.length)}return t}function Vp(t,e,n){let r=t.resolve(e);if(r.parent.canReplaceWith(r.index(),r.index(),n))return e;if(r.parentOffset==0)for(let o=r.depth-1;o>=0;o--){let i=r.index(o);if(r.node(o).canReplaceWith(i,i,n))return r.before(o+1);if(i>0)return null}if(r.parentOffset==r.parent.content.size)for(let o=r.depth-1;o>=0;o--){let i=r.indexAfter(o);if(r.node(o).canReplaceWith(i,i,n))return r.after(o+1);if(i=0;s--){let l=s==r.depth?0:r.pos<=(r.start(s+1)+r.end(s+1))/2?-1:1,a=r.index(s)+(l>0?1:0),c=r.node(s),d=!1;if(i==1)d=c.canReplace(a,a,o);else{let u=c.contentMatchAt(a).findWrapping(o.firstChild.type);d=u&&c.canReplaceWith(a,a,u[0])}if(d)return l==0?r.pos:l<0?r.before(s+1):r.after(s+1)}return null}function qn(t,e,n=e,r=E.empty){if(e==n&&!r.size)return null;let o=t.resolve(e),i=t.resolve(n);return ja(o,i,r)?new ye(e,n,r):new zi(o,i,r).fit()}function ja(t,e,n){return!n.openStart&&!n.openEnd&&t.start()==e.start()&&t.parent.canReplace(t.index(),e.index(),n.content)}var zi=class{constructor(e,n,r){this.$from=e,this.$to=n,this.unplaced=r,this.frontier=[],this.placed=v.empty;for(let o=0;o<=e.depth;o++){let i=e.node(o);this.frontier.push({type:i.type,match:i.contentMatchAt(e.indexAfter(o))})}for(let o=e.depth;o>0;o--)this.placed=v.from(e.node(o).copy(this.placed))}get depth(){return this.frontier.length-1}fit(){for(;this.unplaced.size;){let c=this.findFittable();c?this.placeNodes(c):this.openMore()||this.dropNode()}let e=this.mustMoveInline(),n=this.placed.size-this.depth-this.$from.depth,r=this.$from,o=this.close(e<0?this.$to:r.doc.resolve(e));if(!o)return null;let i=this.placed,s=r.depth,l=o.depth;for(;s&&l&&i.childCount==1;)i=i.firstChild.content,s--,l--;let a=new E(i,s,l);return e>-1?new se(r.pos,e,this.$to.pos,this.$to.end(),a,n):a.size||r.pos!=this.$to.pos?new ye(r.pos,o.pos,a):null}findFittable(){let e=this.unplaced.openStart;for(let n=this.unplaced.content,r=0,o=this.unplaced.openEnd;r1&&(o=0),i.type.spec.isolating&&o<=r){e=r;break}n=i.content}for(let n=1;n<=2;n++)for(let r=n==1?e:this.unplaced.openStart;r>=0;r--){let o,i=null;r?(i=Pi(this.unplaced.content,r-1).firstChild,o=i.content):o=this.unplaced.content;let s=o.firstChild;for(let l=this.depth;l>=0;l--){let{type:a,match:c}=this.frontier[l],d,u=null;if(n==1&&(s?c.matchType(s.type)||(u=c.fillBefore(v.from(s),!1)):i&&a.compatibleContent(i.type)))return{sliceDepth:r,frontierDepth:l,parent:i,inject:u};if(n==2&&s&&(d=c.findWrapping(s.type)))return{sliceDepth:r,frontierDepth:l,parent:i,wrap:d};if(i&&c.matchType(i.type))break}}}openMore(){let{content:e,openStart:n,openEnd:r}=this.unplaced,o=Pi(e,n);return!o.childCount||o.firstChild.isLeaf?!1:(this.unplaced=new E(e,n+1,Math.max(r,o.size+n>=e.size-r?n+1:0)),!0)}dropNode(){let{content:e,openStart:n,openEnd:r}=this.unplaced,o=Pi(e,n);if(o.childCount<=1&&n>0){let i=e.size-n<=n+o.size;this.unplaced=new E(Vn(e,n-1,1),n-1,i?n-1:r)}else this.unplaced=new E(Vn(e,n,1),n,r)}placeNodes({sliceDepth:e,frontierDepth:n,parent:r,inject:o,wrap:i}){for(;this.depth>n;)this.closeFrontierNode();if(i)for(let m=0;m1||a==0||m.content.size)&&(u=g,d.push(Ua(m.mark(f.allowedMarks(m.marks)),c==1?a:0,c==l.childCount?h:-1)))}let p=c==l.childCount;p||(h=-1),this.placed=_n(this.placed,n,v.from(d)),this.frontier[n].match=u,p&&h<0&&r&&r.type==this.frontier[this.depth].type&&this.frontier.length>1&&this.closeFrontierNode();for(let m=0,g=l;m1&&o==this.$to.end(--r);)++o;return o}findCloseLevel(e){e:for(let n=Math.min(this.depth,e.depth);n>=0;n--){let{match:r,type:o}=this.frontier[n],i=n=0;l--){let{match:a,type:c}=this.frontier[l],d=Li(e,l,c,a,!0);if(!d||d.childCount)continue e}return{depth:n,fit:s,move:i?e.doc.resolve(e.after(n+1)):e}}}}close(e){let n=this.findCloseLevel(e);if(!n)return null;for(;this.depth>n.depth;)this.closeFrontierNode();n.fit.childCount&&(this.placed=_n(this.placed,n.depth,n.fit)),e=n.move;for(let r=n.depth+1;r<=e.depth;r++){let o=e.node(r),i=o.type.contentMatch.fillBefore(o.content,!0,e.index(r));this.openFrontierNode(o.type,o.attrs,i)}return e}openFrontierNode(e,n=null,r){let o=this.frontier[this.depth];o.match=o.match.matchType(e),this.placed=_n(this.placed,this.depth,v.from(e.create(n,r))),this.frontier.push({type:e,match:e.contentMatch})}closeFrontierNode(){let n=this.frontier.pop().match.fillBefore(v.empty,!0);n.childCount&&(this.placed=_n(this.placed,this.frontier.length,n))}};function Vn(t,e,n){return e==0?t.cutByIndex(n,t.childCount):t.replaceChild(0,t.firstChild.copy(Vn(t.firstChild.content,e-1,n)))}function _n(t,e,n){return e==0?t.append(n):t.replaceChild(t.childCount-1,t.lastChild.copy(_n(t.lastChild.content,e-1,n)))}function Pi(t,e){for(let n=0;n1&&(r=r.replaceChild(0,Ua(r.firstChild,e-1,r.childCount==1?n-1:0))),e>0&&(r=t.type.contentMatch.fillBefore(r).append(r),n<=0&&(r=r.append(t.type.contentMatch.matchFragment(r).fillBefore(v.empty,!0)))),t.copy(r)}function Li(t,e,n,r,o){let i=t.node(e),s=o?t.indexAfter(e):t.index(e);if(s==i.childCount&&!n.compatibleContent(i.type))return null;let l=r.fillBefore(i.content,!0,s);return l&&!_p(n,i.content,s)?l:null}function _p(t,e,n){for(let r=n;r0;f--,h--){let p=o.node(f).type.spec;if(p.defining||p.definingAsContext||p.isolating)break;s.indexOf(f)>-1?l=f:o.before(f)==h&&s.splice(1,0,-f)}let a=s.indexOf(l),c=[],d=r.openStart;for(let f=r.content,h=0;;h++){let p=f.firstChild;if(c.push(p),h==r.openStart)break;f=p.content}for(let f=d-1;f>=0;f--){let h=c[f],p=Wp(h.type);if(p&&!h.sameMarkup(o.node(Math.abs(l)-1)))d=f;else if(p||!h.type.isTextblock)break}for(let f=r.openStart;f>=0;f--){let h=(f+d+1)%(r.openStart+1),p=c[h];if(p)for(let m=0;m=0&&(t.replace(e,n,r),!(t.steps.length>u));f--){let h=s[f];h<0||(e=o.before(h),n=i.after(h))}}function Ka(t,e,n,r,o){if(er){let i=o.contentMatchAt(0),s=i.fillBefore(t).append(t);t=s.append(i.matchFragment(s).fillBefore(v.empty,!0))}return t}function Up(t,e,n,r){if(!r.isInline&&e==n&&t.doc.resolve(e).parent.content.size){let o=Vp(t.doc,e,r.type);o!=null&&(e=n=o)}t.replaceRange(e,n,new E(v.from(r),0,0))}function Kp(t,e,n){let r=t.doc.resolve(e),o=t.doc.resolve(n),i=qa(r,o);for(let s=0;s0&&(a||r.node(l-1).canReplace(r.index(l-1),o.indexAfter(l-1))))return t.delete(r.before(l),o.after(l))}for(let s=1;s<=r.depth&&s<=o.depth;s++)if(e-r.start(s)==r.depth-s&&n>r.end(s)&&o.end(s)-n!=o.depth-s&&r.start(s-1)==o.start(s-1)&&r.node(s-1).canReplace(r.index(s-1),o.index(s-1)))return t.delete(r.before(s),n);t.delete(e,n)}function qa(t,e){let n=[],r=Math.min(t.depth,e.depth);for(let o=r;o>=0;o--){let i=t.start(o);if(ie.pos+(e.depth-o)||t.node(o).type.spec.isolating||e.node(o).type.spec.isolating)break;(i==e.start(o)||o==t.depth&&o==e.depth&&t.parent.inlineContent&&e.parent.inlineContent&&o&&e.start(o-1)==i-1)&&n.push(o)}return n}var Lr=class t extends ce{constructor(e,n,r){super(),this.pos=e,this.attr=n,this.value=r}apply(e){let n=e.nodeAt(this.pos);if(!n)return ue.fail("No node at attribute step's position");let r=Object.create(null);for(let i in n.attrs)r[i]=n.attrs[i];r[this.attr]=this.value;let o=n.type.create(r,null,n.marks);return ue.fromReplace(e,this.pos,this.pos+1,new E(v.from(o),0,n.isLeaf?0:1))}getMap(){return dt.empty}invert(e){return new t(this.pos,this.attr,e.nodeAt(this.pos).attrs[this.attr])}map(e){let n=e.mapResult(this.pos,1);return n.deletedAfter?null:new t(n.pos,this.attr,this.value)}toJSON(){return{stepType:"attr",pos:this.pos,attr:this.attr,value:this.value}}static fromJSON(e,n){if(typeof n.pos!="number"||typeof n.attr!="string")throw new RangeError("Invalid input for AttrStep.fromJSON");return new t(n.pos,n.attr,n.value)}};ce.jsonID("attr",Lr);var Br=class t extends ce{constructor(e,n){super(),this.attr=e,this.value=n}apply(e){let n=Object.create(null);for(let o in e.attrs)n[o]=e.attrs[o];n[this.attr]=this.value;let r=e.type.create(n,e.content,e.marks);return ue.ok(r)}getMap(){return dt.empty}invert(e){return new t(this.attr,e.attrs[this.attr])}map(e){return this}toJSON(){return{stepType:"docAttr",attr:this.attr,value:this.value}}static fromJSON(e,n){if(typeof n.attr!="string")throw new RangeError("Invalid input for DocAttrStep.fromJSON");return new t(n.attr,n.value)}};ce.jsonID("docAttr",Br);var pn=class extends Error{};pn=function t(e){let n=Error.call(this,e);return n.__proto__=t.prototype,n};pn.prototype=Object.create(Error.prototype);pn.prototype.constructor=pn;pn.prototype.name="TransformError";var Tt=class{constructor(e){this.doc=e,this.steps=[],this.docs=[],this.mapping=new jn}get before(){return this.docs.length?this.docs[0]:this.doc}step(e){let n=this.maybeStep(e);if(n.failed)throw new pn(n.failed);return this}maybeStep(e){let n=e.apply(this.doc);return n.failed||this.addStep(e,n.doc),n}get docChanged(){return this.steps.length>0}addStep(e,n){this.docs.push(this.doc),this.steps.push(e),this.mapping.appendMap(e.getMap()),this.doc=n}replace(e,n=e,r=E.empty){let o=qn(this.doc,e,n,r);return o&&this.step(o),this}replaceWith(e,n,r){return this.replace(e,n,new E(v.from(r),0,0))}delete(e,n){return this.replace(e,n,E.empty)}insert(e,n){return this.replaceWith(e,e,n)}replaceRange(e,n,r){return jp(this,e,n,r),this}replaceRangeWith(e,n,r){return Up(this,e,n,r),this}deleteRange(e,n){return Kp(this,e,n),this}lift(e,n){return Rp(this,e,n),this}join(e,n=1){return Fp(this,e,n),this}wrap(e,n){return Pp(this,e,n),this}setBlockType(e,n=e,r,o=null){return Lp(this,e,n,r,o),this}setNodeMarkup(e,n,r=null,o){return zp(this,e,n,r,o),this}setNodeAttribute(e,n,r){return this.step(new Lr(e,n,r)),this}setDocAttribute(e,n){return this.step(new Br(e,n)),this}addNodeMark(e,n){return this.step(new Kn(e,n)),this}removeNodeMark(e,n){let r=this.doc.nodeAt(e);if(!r)throw new RangeError("No node at position "+e);if(n instanceof J)n.isInSet(r.marks)&&this.step(new hn(e,n));else{let o=r.marks,i,s=[];for(;i=n.isInSet(o);)s.push(new hn(e,i)),o=i.removeFromSet(o);for(let l=s.length-1;l>=0;l--)this.step(s[l])}return this}split(e,n=1,r){return Hp(this,e,n,r),this}addMark(e,n,r){return Ep(this,e,n,r),this}removeMark(e,n,r){return Np(this,e,n,r),this}clearIncompatible(e,n,r){return $i(this,e,n,r),this}};var Fi=Object.create(null),I=class{constructor(e,n,r){this.$anchor=e,this.$head=n,this.ranges=r||[new yn(e.min(n),e.max(n))]}get anchor(){return this.$anchor.pos}get head(){return this.$head.pos}get from(){return this.$from.pos}get to(){return this.$to.pos}get $from(){return this.ranges[0].$from}get $to(){return this.ranges[0].$to}get empty(){let e=this.ranges;for(let n=0;n=0;i--){let s=n<0?gn(e.node(0),e.node(i),e.before(i+1),e.index(i),n,r):gn(e.node(0),e.node(i),e.after(i+1),e.index(i)+1,n,r);if(s)return s}return null}static near(e,n=1){return this.findFrom(e,n)||this.findFrom(e,-n)||new ke(e.node(0))}static atStart(e){return gn(e,e,0,0,1)||new ke(e)}static atEnd(e){return gn(e,e,e.content.size,e.childCount,-1)||new ke(e)}static fromJSON(e,n){if(!n||!n.type)throw new RangeError("Invalid input for Selection.fromJSON");let r=Fi[n.type];if(!r)throw new RangeError(`No selection type ${n.type} defined`);return r.fromJSON(e,n)}static jsonID(e,n){if(e in Fi)throw new RangeError("Duplicate use of selection JSON ID "+e);return Fi[e]=n,n.prototype.jsonID=e,n}getBookmark(){return D.between(this.$anchor,this.$head).getBookmark()}};I.prototype.visible=!0;var yn=class{constructor(e,n){this.$from=e,this.$to=n}},Ja=!1;function Ga(t){!Ja&&!t.parent.inlineContent&&(Ja=!0,console.warn("TextSelection endpoint not pointing into a node with inline content ("+t.parent.type.name+")"))}var D=class t extends I{constructor(e,n=e){Ga(e),Ga(n),super(e,n)}get $cursor(){return this.$anchor.pos==this.$head.pos?this.$head:null}map(e,n){let r=e.resolve(n.map(this.head));if(!r.parent.inlineContent)return I.near(r);let o=e.resolve(n.map(this.anchor));return new t(o.parent.inlineContent?o:r,r)}replace(e,n=E.empty){if(super.replace(e,n),n==E.empty){let r=this.$from.marksAcross(this.$to);r&&e.ensureMarks(r)}}eq(e){return e instanceof t&&e.anchor==this.anchor&&e.head==this.head}getBookmark(){return new $r(this.anchor,this.head)}toJSON(){return{type:"text",anchor:this.anchor,head:this.head}}static fromJSON(e,n){if(typeof n.anchor!="number"||typeof n.head!="number")throw new RangeError("Invalid input for TextSelection.fromJSON");return new t(e.resolve(n.anchor),e.resolve(n.head))}static create(e,n,r=n){let o=e.resolve(n);return new this(o,r==n?o:e.resolve(r))}static between(e,n,r){let o=e.pos-n.pos;if((!r||o)&&(r=o>=0?1:-1),!n.parent.inlineContent){let i=I.findFrom(n,r,!0)||I.findFrom(n,-r,!0);if(i)n=i.$head;else return I.near(n,r)}return e.parent.inlineContent||(o==0?e=n:(e=(I.findFrom(e,-r,!0)||I.findFrom(e,r,!0)).$anchor,e.pos0?0:1);o>0?s=0;s+=o){let l=e.child(s);if(l.isAtom){if(!i&&L.isSelectable(l))return L.create(t,n-(o<0?l.nodeSize:0))}else{let a=gn(t,l,n+o,o<0?l.childCount:0,o,i);if(a)return a}n+=l.nodeSize*o}return null}function Xa(t,e,n){let r=t.steps.length-1;if(r{s==null&&(s=d)}),t.setSelection(I.near(t.doc.resolve(s),n))}var Ya=1,Hr=2,Qa=4,Wi=class extends Tt{constructor(e){super(e.doc),this.curSelectionFor=0,this.updated=0,this.meta=Object.create(null),this.time=Date.now(),this.curSelection=e.selection,this.storedMarks=e.storedMarks}get selection(){return this.curSelectionFor0}setStoredMarks(e){return this.storedMarks=e,this.updated|=Hr,this}ensureMarks(e){return J.sameSet(this.storedMarks||this.selection.$from.marks(),e)||this.setStoredMarks(e),this}addStoredMark(e){return this.ensureMarks(e.addToSet(this.storedMarks||this.selection.$head.marks()))}removeStoredMark(e){return this.ensureMarks(e.removeFromSet(this.storedMarks||this.selection.$head.marks()))}get storedMarksSet(){return(this.updated&Hr)>0}addStep(e,n){super.addStep(e,n),this.updated=this.updated&~Hr,this.storedMarks=null}setTime(e){return this.time=e,this}replaceSelection(e){return this.selection.replace(this,e),this}replaceSelectionWith(e,n=!0){let r=this.selection;return n&&(e=e.mark(this.storedMarks||(r.empty?r.$from.marks():r.$from.marksAcross(r.$to)||J.none))),r.replaceWith(this,e),this}deleteSelection(){return this.selection.replace(this),this}insertText(e,n,r){let o=this.doc.type.schema;if(n==null)return e?this.replaceSelectionWith(o.text(e),!0):this.deleteSelection();{if(r==null&&(r=n),!e)return this.deleteRange(n,r);let i=this.storedMarks;if(!i){let s=this.doc.resolve(n);i=r==n?s.marks():s.marksAcross(this.doc.resolve(r))}return this.replaceRangeWith(n,r,o.text(e,i)),!this.selection.empty&&this.selection.to==n+e.length&&this.setSelection(I.near(this.selection.$to)),this}}setMeta(e,n){return this.meta[typeof e=="string"?e:e.key]=n,this}getMeta(e){return this.meta[typeof e=="string"?e:e.key]}get isGeneric(){for(let e in this.meta)return!1;return!0}scrollIntoView(){return this.updated|=Qa,this}get scrolledIntoView(){return(this.updated&Qa)>0}};function Za(t,e){return!e||!t?t:t.bind(e)}var jt=class{constructor(e,n,r){this.name=e,this.init=Za(n.init,r),this.apply=Za(n.apply,r)}},Jp=[new jt("doc",{init(t){return t.doc||t.schema.topNodeType.createAndFill()},apply(t){return t.doc}}),new jt("selection",{init(t,e){return t.selection||I.atStart(e.doc)},apply(t){return t.selection}}),new jt("storedMarks",{init(t){return t.storedMarks||null},apply(t,e,n,r){return r.selection.$cursor?t.storedMarks:null}}),new jt("scrollToSelection",{init(){return 0},apply(t,e){return t.scrolledIntoView?e+1:e}})],Jn=class{constructor(e,n){this.schema=e,this.plugins=[],this.pluginsByKey=Object.create(null),this.fields=Jp.slice(),n&&n.forEach(r=>{if(this.pluginsByKey[r.key])throw new RangeError("Adding different instances of a keyed plugin ("+r.key+")");this.plugins.push(r),this.pluginsByKey[r.key]=r,r.spec.state&&this.fields.push(new jt(r.key,r.spec.state,r))})}},Fr=class t{constructor(e){this.config=e}get schema(){return this.config.schema}get plugins(){return this.config.plugins}apply(e){return this.applyTransaction(e).state}filterTransaction(e,n=-1){for(let r=0;rr.toJSON())),e&&typeof e=="object")for(let r in e){if(r=="doc"||r=="selection")throw new RangeError("The JSON fields `doc` and `selection` are reserved");let o=e[r],i=o.spec.state;i&&i.toJSON&&(n[r]=i.toJSON.call(o,this[o.key]))}return n}static fromJSON(e,n,r){if(!n)throw new RangeError("Invalid input for EditorState.fromJSON");if(!e.schema)throw new RangeError("Required config field 'schema' missing");let o=new Jn(e.schema,e.plugins),i=new t(o);return o.fields.forEach(s=>{if(s.name=="doc")i.doc=ie.fromJSON(e.schema,n.doc);else if(s.name=="selection")i.selection=I.fromJSON(i.doc,n.selection);else if(s.name=="storedMarks")n.storedMarks&&(i.storedMarks=n.storedMarks.map(e.schema.markFromJSON));else{if(r)for(let l in r){let a=r[l],c=a.spec.state;if(a.key==s.name&&c&&c.fromJSON&&Object.prototype.hasOwnProperty.call(n,l)){i[s.name]=c.fromJSON.call(a,e,n[l],i);return}}i[s.name]=s.init(e,i)}}),i}};function ec(t,e,n){for(let r in t){let o=t[r];o instanceof Function?o=o.bind(e):r=="handleDOMEvents"&&(o=ec(o,e,{})),n[r]=o}return n}var P=class{constructor(e){this.spec=e,this.props={},e.props&&ec(e.props,this,this.props),this.key=e.key?e.key.key:tc("plugin")}getState(e){return e[this.key]}},Vi=Object.create(null);function tc(t){return t in Vi?t+"$"+ ++Vi[t]:(Vi[t]=0,t+"$")}var H=class{constructor(e="key"){this.key=tc(e)}get(e){return e.config.pluginsByKey[this.key]}getState(e){return e[this.key]}};var Vr=(t,e)=>t.selection.empty?!1:(e&&e(t.tr.deleteSelection().scrollIntoView()),!0);function rc(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("backward",t):n.parentOffset>0)?null:n}var Ui=(t,e,n)=>{let r=rc(t,n);if(!r)return!1;let o=qi(r);if(!o){let s=r.blockRange(),l=s&&ft(s);return l==null?!1:(e&&e(t.tr.lift(s,l).scrollIntoView()),!0)}let i=o.nodeBefore;if(fc(t,o,e,-1))return!0;if(r.parent.content.size==0&&(bn(i,"end")||L.isSelectable(i)))for(let s=r.depth;;s--){let l=qn(t.doc,r.before(s),r.after(s),E.empty);if(l&&l.slice.size1)break}return i.isAtom&&o.depth==r.depth-1?(e&&e(t.tr.delete(o.pos-i.nodeSize,o.pos).scrollIntoView()),!0):!1},oc=(t,e,n)=>{let r=rc(t,n);if(!r)return!1;let o=qi(r);return o?sc(t,o,e):!1},ic=(t,e,n)=>{let r=lc(t,n);if(!r)return!1;let o=Xi(r);return o?sc(t,o,e):!1};function sc(t,e,n){let r=e.nodeBefore,o=r,i=e.pos-1;for(;!o.isTextblock;i--){if(o.type.spec.isolating)return!1;let d=o.lastChild;if(!d)return!1;o=d}let s=e.nodeAfter,l=s,a=e.pos+1;for(;!l.isTextblock;a++){if(l.type.spec.isolating)return!1;let d=l.firstChild;if(!d)return!1;l=d}let c=qn(t.doc,i,a,E.empty);if(!c||c.from!=i||c instanceof ye&&c.slice.size>=a-i)return!1;if(n){let d=t.tr.step(c);d.setSelection(D.create(d.doc,i)),n(d.scrollIntoView())}return!0}function bn(t,e,n=!1){for(let r=t;r;r=e=="start"?r.firstChild:r.lastChild){if(r.isTextblock)return!0;if(n&&r.childCount!=1)return!1}return!1}var Ki=(t,e,n)=>{let{$head:r,empty:o}=t.selection,i=r;if(!o)return!1;if(r.parent.isTextblock){if(n?!n.endOfTextblock("backward",t):r.parentOffset>0)return!1;i=qi(r)}let s=i&&i.nodeBefore;return!s||!L.isSelectable(s)?!1:(e&&e(t.tr.setSelection(L.create(t.doc,i.pos-s.nodeSize)).scrollIntoView()),!0)};function qi(t){if(!t.parent.type.spec.isolating)for(let e=t.depth-1;e>=0;e--){if(t.index(e)>0)return t.doc.resolve(t.before(e+1));if(t.node(e).type.spec.isolating)break}return null}function lc(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("forward",t):n.parentOffset{let r=lc(t,n);if(!r)return!1;let o=Xi(r);if(!o)return!1;let i=o.nodeAfter;if(fc(t,o,e,1))return!0;if(r.parent.content.size==0&&(bn(i,"start")||L.isSelectable(i))){let s=qn(t.doc,r.before(),r.after(),E.empty);if(s&&s.slice.size{let{$head:r,empty:o}=t.selection,i=r;if(!o)return!1;if(r.parent.isTextblock){if(n?!n.endOfTextblock("forward",t):r.parentOffset=0;e--){let n=t.node(e);if(t.index(e)+1{let n=t.selection,r=n instanceof L,o;if(r){if(n.node.isTextblock||!Re(t.doc,n.from))return!1;o=n.from}else if(o=Wt(t.doc,n.from,-1),o==null)return!1;if(e){let i=t.tr.join(o);r&&i.setSelection(L.create(i.doc,o-t.doc.resolve(o).nodeBefore.nodeSize)),e(i.scrollIntoView())}return!0},cc=(t,e)=>{let n=t.selection,r;if(n instanceof L){if(n.node.isTextblock||!Re(t.doc,n.to))return!1;r=n.to}else if(r=Wt(t.doc,n.to,1),r==null)return!1;return e&&e(t.tr.join(r).scrollIntoView()),!0},dc=(t,e)=>{let{$from:n,$to:r}=t.selection,o=n.blockRange(r),i=o&&ft(o);return i==null?!1:(e&&e(t.tr.lift(o,i).scrollIntoView()),!0)},Yi=(t,e)=>{let{$head:n,$anchor:r}=t.selection;return!n.parent.type.spec.code||!n.sameParent(r)?!1:(e&&e(t.tr.insertText(` +`).scrollIntoView()),!0)};function Qi(t){for(let e=0;e{let{$head:n,$anchor:r}=t.selection;if(!n.parent.type.spec.code||!n.sameParent(r))return!1;let o=n.node(-1),i=n.indexAfter(-1),s=Qi(o.contentMatchAt(i));if(!s||!o.canReplaceWith(i,i,s))return!1;if(e){let l=n.after(),a=t.tr.replaceWith(l,l,s.createAndFill());a.setSelection(I.near(a.doc.resolve(l),1)),e(a.scrollIntoView())}return!0},es=(t,e)=>{let n=t.selection,{$from:r,$to:o}=n;if(n instanceof ke||r.parent.inlineContent||o.parent.inlineContent)return!1;let i=Qi(o.parent.contentMatchAt(o.indexAfter()));if(!i||!i.isTextblock)return!1;if(e){let s=(!r.parentOffset&&o.index(){let{$cursor:n}=t.selection;if(!n||n.parent.content.size)return!1;if(n.depth>1&&n.after()!=n.end(-1)){let i=n.before();if(Ee(t.doc,i))return e&&e(t.tr.split(i).scrollIntoView()),!0}let r=n.blockRange(),o=r&&ft(r);return o==null?!1:(e&&e(t.tr.lift(r,o).scrollIntoView()),!0)};function Gp(t){return(e,n)=>{let{$from:r,$to:o}=e.selection;if(e.selection instanceof L&&e.selection.node.isBlock)return!r.parentOffset||!Ee(e.doc,r.pos)?!1:(n&&n(e.tr.split(r.pos).scrollIntoView()),!0);if(!r.depth)return!1;let i=[],s,l,a=!1,c=!1;for(let h=r.depth;;h--)if(r.node(h).isBlock){a=r.end(h)==r.pos+(r.depth-h),c=r.start(h)==r.pos-(r.depth-h),l=Qi(r.node(h-1).contentMatchAt(r.indexAfter(h-1)));let m=t&&t(o.parent,a,r);i.unshift(m||(a&&l?{type:l}:null)),s=h;break}else{if(h==1)return!1;i.unshift(null)}let d=e.tr;(e.selection instanceof D||e.selection instanceof ke)&&d.deleteSelection();let u=d.mapping.map(r.pos),f=Ee(d.doc,u,i.length,i);if(f||(i[0]=l?{type:l}:null,f=Ee(d.doc,u,i.length,i)),!f)return!1;if(d.split(u,i.length,i),!a&&c&&r.node(s).type!=l){let h=d.mapping.map(r.before(s)),p=d.doc.resolve(h);l&&r.node(s-1).canReplaceWith(p.index(),p.index()+1,l)&&d.setNodeMarkup(d.mapping.map(r.before(s)),l)}return n&&n(d.scrollIntoView()),!0}}var Xp=Gp();var uc=(t,e)=>{let{$from:n,to:r}=t.selection,o,i=n.sharedDepth(r);return i==0?!1:(o=n.before(i),e&&e(t.tr.setSelection(L.create(t.doc,o))),!0)},Yp=(t,e)=>(e&&e(t.tr.setSelection(new ke(t.doc))),!0);function Qp(t,e,n){let r=e.nodeBefore,o=e.nodeAfter,i=e.index();return!r||!o||!r.type.compatibleContent(o.type)?!1:!r.content.size&&e.parent.canReplace(i-1,i)?(n&&n(t.tr.delete(e.pos-r.nodeSize,e.pos).scrollIntoView()),!0):!e.parent.canReplace(i,i+1)||!(o.isTextblock||Re(t.doc,e.pos))?!1:(n&&n(t.tr.join(e.pos).scrollIntoView()),!0)}function fc(t,e,n,r){let o=e.nodeBefore,i=e.nodeAfter,s,l,a=o.type.spec.isolating||i.type.spec.isolating;if(!a&&Qp(t,e,n))return!0;let c=!a&&e.parent.canReplace(e.index(),e.index()+1);if(c&&(s=(l=o.contentMatchAt(o.childCount)).findWrapping(i.type))&&l.matchType(s[0]||i.type).validEnd){if(n){let h=e.pos+i.nodeSize,p=v.empty;for(let y=s.length-1;y>=0;y--)p=v.from(s[y].create(null,p));p=v.from(o.copy(p));let m=t.tr.step(new se(e.pos-1,h,e.pos,h,new E(p,1,0),s.length,!0)),g=m.doc.resolve(h+2*s.length);g.nodeAfter&&g.nodeAfter.type==o.type&&Re(m.doc,g.pos)&&m.join(g.pos),n(m.scrollIntoView())}return!0}let d=i.type.spec.isolating||r>0&&a?null:I.findFrom(e,1),u=d&&d.$from.blockRange(d.$to),f=u&&ft(u);if(f!=null&&f>=e.depth)return n&&n(t.tr.lift(u,f).scrollIntoView()),!0;if(c&&bn(i,"start",!0)&&bn(o,"end")){let h=o,p=[];for(;p.push(h),!h.isTextblock;)h=h.lastChild;let m=i,g=1;for(;!m.isTextblock;m=m.firstChild)g++;if(h.canReplace(h.childCount,h.childCount,m.content)){if(n){let y=v.empty;for(let b=p.length-1;b>=0;b--)y=v.from(p[b].copy(y));let w=t.tr.step(new se(e.pos-p.length,e.pos+i.nodeSize,e.pos+g,e.pos+i.nodeSize-g,new E(y,p.length,0),0,!0));n(w.scrollIntoView())}return!0}}return!1}function hc(t){return function(e,n){let r=e.selection,o=t<0?r.$from:r.$to,i=o.depth;for(;o.node(i).isInline;){if(!i)return!1;i--}return o.node(i).isTextblock?(n&&n(e.tr.setSelection(D.create(e.doc,t<0?o.start(i):o.end(i)))),!0):!1}}var ns=hc(-1),rs=hc(1);function pc(t,e=null){return function(n,r){let{$from:o,$to:i}=n.selection,s=o.blockRange(i),l=s&&mn(s,t,e);return l?(r&&r(n.tr.wrap(s,l).scrollIntoView()),!0):!1}}function is(t,e=null){return function(n,r){let o=!1;for(let i=0;i{if(o)return!1;if(!(!a.isTextblock||a.hasMarkup(t,e)))if(a.type==t)o=!0;else{let d=n.doc.resolve(c),u=d.index();o=d.parent.canReplaceWith(u,u+1,t)}})}if(!o)return!1;if(r){let i=n.tr;for(let s=0;s=2&&e.$from.node(e.depth-1).type.compatibleContent(n)&&e.startIndex==0){if(e.$from.index(e.depth-1)==0)return!1;let a=s.resolve(e.start-2);i=new Vt(a,a,e.depth),e.endIndex=0;d--)i=v.from(n[d].type.create(n[d].attrs,i));t.step(new se(e.start-(r?2:0),e.end,e.start,e.end,new E(i,0,0),n.length,!0));let s=0;for(let d=0;ds.childCount>0&&s.firstChild.type==t);return i?n?r.node(i.depth-1).type==t?nm(e,n,t,i):rm(e,n,i):!0:!1}}function nm(t,e,n,r){let o=t.tr,i=r.end,s=r.$to.end(r.depth);im;p--)h-=o.child(p).nodeSize,r.delete(h-1,h+1);let i=r.doc.resolve(n.start),s=i.nodeAfter;if(r.mapping.map(n.end)!=n.start+i.nodeAfter.nodeSize)return!1;let l=n.startIndex==0,a=n.endIndex==o.childCount,c=i.node(-1),d=i.index(-1);if(!c.canReplace(d+(l?0:1),d+1,s.content.append(a?v.empty:v.from(o))))return!1;let u=i.pos,f=u+s.nodeSize;return r.step(new se(u-(l?1:0),f+(a?1:0),u+1,f-1,new E((l?v.empty:v.from(o.copy(v.empty))).append(a?v.empty:v.from(o.copy(v.empty))),l?0:1,a?0:1),l?0:1)),e(r.scrollIntoView()),!0}function yc(t){return function(e,n){let{$from:r,$to:o}=e.selection,i=r.blockRange(o,c=>c.childCount>0&&c.firstChild.type==t);if(!i)return!1;let s=i.startIndex;if(s==0)return!1;let l=i.parent,a=l.child(s-1);if(a.type!=t)return!1;if(n){let c=a.lastChild&&a.lastChild.type==l.type,d=v.from(c?t.create():null),u=new E(v.from(t.create(null,v.from(l.type.create(null,d)))),c?3:1,0),f=i.start,h=i.end;n(e.tr.step(new se(f-(c?3:1),h,f,h,u,1,!0)).scrollIntoView())}return!0}}var fe=function(t){for(var e=0;;e++)if(t=t.previousSibling,!t)return e},Cn=function(t){let e=t.assignedSlot||t.parentNode;return e&&e.nodeType==11?e.host:e},fs=null,pt=function(t,e,n){let r=fs||(fs=document.createRange());return r.setEnd(t,n??t.nodeValue.length),r.setStart(t,e||0),r},om=function(){fs=null},Yt=function(t,e,n,r){return n&&(bc(t,e,n,r,-1)||bc(t,e,n,r,1))},im=/^(img|br|input|textarea|hr)$/i;function bc(t,e,n,r,o){for(var i;;){if(t==n&&e==r)return!0;if(e==(o<0?0:Ie(t))){let s=t.parentNode;if(!s||s.nodeType!=1||nr(t)||im.test(t.nodeName)||t.contentEditable=="false")return!1;e=fe(t)+(o<0?0:1),t=s}else if(t.nodeType==1){let s=t.childNodes[e+(o<0?-1:0)];if(s.nodeType==1&&s.contentEditable=="false")if(!((i=s.pmViewDesc)===null||i===void 0)&&i.ignoreForSelection)e+=o;else return!1;else t=s,e=o<0?Ie(t):0}else return!1}}function Ie(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function sm(t,e){for(;;){if(t.nodeType==3&&e)return t;if(t.nodeType==1&&e>0){if(t.contentEditable=="false")return null;t=t.childNodes[e-1],e=Ie(t)}else if(t.parentNode&&!nr(t))e=fe(t),t=t.parentNode;else return null}}function lm(t,e){for(;;){if(t.nodeType==3&&e2),De=vn||(Ye?/Mac/.test(Ye.platform):!1),Zc=Ye?/Win/.test(Ye.platform):!1,mt=/Android \d/.test(It),rr=!!wc&&"webkitFontSmoothing"in wc.documentElement.style,um=rr?+(/\bAppleWebKit\/(\d+)/.exec(navigator.userAgent)||[0,0])[1]:0;function fm(t){let e=t.defaultView&&t.defaultView.visualViewport;return e?{left:0,right:e.width,top:0,bottom:e.height}:{left:0,right:t.documentElement.clientWidth,top:0,bottom:t.documentElement.clientHeight}}function ht(t,e){return typeof t=="number"?t:t[e]}function hm(t){let e=t.getBoundingClientRect(),n=e.width/t.offsetWidth||1,r=e.height/t.offsetHeight||1;return{left:e.left,right:e.left+t.clientWidth*n,top:e.top,bottom:e.top+t.clientHeight*r}}function xc(t,e,n){let r=t.someProp("scrollThreshold")||0,o=t.someProp("scrollMargin")||5,i=t.dom.ownerDocument;for(let s=n||t.dom;s;){if(s.nodeType!=1){s=Cn(s);continue}let l=s,a=l==i.body,c=a?fm(i):hm(l),d=0,u=0;if(e.topc.bottom-ht(r,"bottom")&&(u=e.bottom-e.top>c.bottom-c.top?e.top+ht(o,"top")-c.top:e.bottom-c.bottom+ht(o,"bottom")),e.leftc.right-ht(r,"right")&&(d=e.right-c.right+ht(o,"right")),d||u)if(a)i.defaultView.scrollBy(d,u);else{let h=l.scrollLeft,p=l.scrollTop;u&&(l.scrollTop+=u),d&&(l.scrollLeft+=d);let m=l.scrollLeft-h,g=l.scrollTop-p;e={left:e.left-m,top:e.top-g,right:e.right-m,bottom:e.bottom-g}}let f=a?"fixed":getComputedStyle(s).position;if(/^(fixed|sticky)$/.test(f))break;s=f=="absolute"?s.offsetParent:Cn(s)}}function pm(t){let e=t.dom.getBoundingClientRect(),n=Math.max(0,e.top),r,o;for(let i=(e.left+e.right)/2,s=n+1;s=n-20){r=l,o=a.top;break}}return{refDOM:r,refTop:o,stack:ed(t.dom)}}function ed(t){let e=[],n=t.ownerDocument;for(let r=t;r&&(e.push({dom:r,top:r.scrollTop,left:r.scrollLeft}),t!=n);r=Cn(r));return e}function mm({refDOM:t,refTop:e,stack:n}){let r=t?t.getBoundingClientRect().top:0;td(n,r==0?0:r-e)}function td(t,e){for(let n=0;n=l){s=Math.max(p.bottom,s),l=Math.min(p.top,l);let m=p.left>e.left?p.left-e.left:p.right=(p.left+p.right)/2?1:0));continue}}else p.top>e.top&&!a&&p.left<=e.left&&p.right>=e.left&&(a=d,c={left:Math.max(p.left,Math.min(p.right,e.left)),top:p.top});!n&&(e.left>=p.right&&e.top>=p.top||e.left>=p.left&&e.top>=p.bottom)&&(i=u+1)}}return!n&&a&&(n=a,o=c,r=0),n&&n.nodeType==3?ym(n,o):!n||r&&n.nodeType==1?{node:t,offset:i}:nd(n,o)}function ym(t,e){let n=t.nodeValue.length,r=document.createRange(),o;for(let i=0;i=(s.left+s.right)/2?1:0)};break}}return r.detach(),o||{node:t,offset:0}}function Os(t,e){return t.left>=e.left-1&&t.left<=e.right+1&&t.top>=e.top-1&&t.top<=e.bottom+1}function bm(t,e){let n=t.parentNode;return n&&/^li$/i.test(n.nodeName)&&e.left(s.left+s.right)/2?1:-1}return t.docView.posFromDOM(r,o,i)}function xm(t,e,n,r){let o=-1;for(let i=e,s=!1;i!=t.dom;){let l=t.docView.nearestDesc(i,!0),a;if(!l)return null;if(l.dom.nodeType==1&&(l.node.isBlock&&l.parent||!l.contentDOM)&&((a=l.dom.getBoundingClientRect()).width||a.height)&&(l.node.isBlock&&l.parent&&!/^T(R|BODY|HEAD|FOOT)$/.test(l.dom.nodeName)&&(!s&&a.left>r.left||a.top>r.top?o=l.posBefore:(!s&&a.right-1?o:t.docView.posFromDOM(e,n,-1)}function rd(t,e,n){let r=t.childNodes.length;if(r&&n.tope.top&&o++}let c;rr&&o&&r.nodeType==1&&(c=r.childNodes[o-1]).nodeType==1&&c.contentEditable=="false"&&c.getBoundingClientRect().top>=e.top&&o--,r==t.dom&&o==r.childNodes.length-1&&r.lastChild.nodeType==1&&e.top>r.lastChild.getBoundingClientRect().bottom?l=t.state.doc.content.size:(o==0||r.nodeType!=1||r.childNodes[o-1].nodeName!="BR")&&(l=xm(t,r,o,e))}l==null&&(l=wm(t,s,e));let a=t.docView.nearestDesc(s,!0);return{pos:l,inside:a?a.posAtStart-a.border:-1}}function kc(t){return t.top=0&&o==r.nodeValue.length?(a--,d=1):n<0?a--:c++,Gn(Et(pt(r,a,c),d),d<0)}if(!t.state.doc.resolve(e-(i||0)).parent.inlineContent){if(i==null&&o&&(n<0||o==Ie(r))){let a=r.childNodes[o-1];if(a.nodeType==1)return ls(a.getBoundingClientRect(),!1)}if(i==null&&o=0)}if(i==null&&o&&(n<0||o==Ie(r))){let a=r.childNodes[o-1],c=a.nodeType==3?pt(a,Ie(a)-(s?0:1)):a.nodeType==1&&(a.nodeName!="BR"||!a.nextSibling)?a:null;if(c)return Gn(Et(c,1),!1)}if(i==null&&o=0)}function Gn(t,e){if(t.width==0)return t;let n=e?t.left:t.right;return{top:t.top,bottom:t.bottom,left:n,right:n}}function ls(t,e){if(t.height==0)return t;let n=e?t.top:t.bottom;return{top:n,bottom:n,left:t.left,right:t.right}}function id(t,e,n){let r=t.state,o=t.root.activeElement;r!=e&&t.updateState(e),o!=t.dom&&t.focus();try{return n()}finally{r!=e&&t.updateState(r),o!=t.dom&&o&&o.focus()}}function Cm(t,e,n){let r=e.selection,o=n=="up"?r.$from:r.$to;return id(t,e,()=>{let{node:i}=t.docView.domFromPos(o.pos,n=="up"?-1:1);for(;;){let l=t.docView.nearestDesc(i,!0);if(!l)break;if(l.node.isBlock){i=l.contentDOM||l.dom;break}i=l.dom.parentNode}let s=od(t,o.pos,1);for(let l=i.firstChild;l;l=l.nextSibling){let a;if(l.nodeType==1)a=l.getClientRects();else if(l.nodeType==3)a=pt(l,0,l.nodeValue.length).getClientRects();else continue;for(let c=0;cd.top+1&&(n=="up"?s.top-d.top>(d.bottom-s.top)*2:d.bottom-s.bottom>(s.bottom-d.top)*2))return!1}}return!0})}var vm=/[\u0590-\u08ac]/;function Mm(t,e,n){let{$head:r}=e.selection;if(!r.parent.isTextblock)return!1;let o=r.parentOffset,i=!o,s=o==r.parent.content.size,l=t.domSelection();return l?!vm.test(r.parent.textContent)||!l.modify?n=="left"||n=="backward"?i:s:id(t,e,()=>{let{focusNode:a,focusOffset:c,anchorNode:d,anchorOffset:u}=t.domSelectionRange(),f=l.caretBidiLevel;l.modify("move",n,"character");let h=r.depth?t.docView.domAfterPos(r.before()):t.dom,{focusNode:p,focusOffset:m}=t.domSelectionRange(),g=p&&!h.contains(p.nodeType==1?p:p.parentNode)||a==p&&c==m;try{l.collapse(d,u),a&&(a!=d||c!=u)&&l.extend&&l.extend(a,c)}catch{}return f!=null&&(l.caretBidiLevel=f),g}):r.pos==r.start()||r.pos==r.end()}var Sc=null,Cc=null,vc=!1;function Tm(t,e,n){return Sc==e&&Cc==n?vc:(Sc=e,Cc=n,vc=n=="up"||n=="down"?Cm(t,e,n):Mm(t,e,n))}var Le=0,Mc=1,Kt=2,Qe=3,Qt=class{constructor(e,n,r,o){this.parent=e,this.children=n,this.dom=r,this.contentDOM=o,this.dirty=Le,r.pmViewDesc=this}matchesWidget(e){return!1}matchesMark(e){return!1}matchesNode(e,n,r){return!1}matchesHack(e){return!1}parseRule(){return null}stopEvent(e){return!1}get size(){let e=0;for(let n=0;nfe(this.contentDOM);else if(this.contentDOM&&this.contentDOM!=this.dom&&this.dom.contains(this.contentDOM))o=e.compareDocumentPosition(this.contentDOM)&2;else if(this.dom.firstChild){if(n==0)for(let i=e;;i=i.parentNode){if(i==this.dom){o=!1;break}if(i.previousSibling)break}if(o==null&&n==e.childNodes.length)for(let i=e;;i=i.parentNode){if(i==this.dom){o=!0;break}if(i.nextSibling)break}}return o??r>0?this.posAtEnd:this.posAtStart}nearestDesc(e,n=!1){for(let r=!0,o=e;o;o=o.parentNode){let i=this.getDesc(o),s;if(i&&(!n||i.node))if(r&&(s=i.nodeDOM)&&!(s.nodeType==1?s.contains(e.nodeType==1?e:e.parentNode):s==e))r=!1;else return i}}getDesc(e){let n=e.pmViewDesc;for(let r=n;r;r=r.parent)if(r==this)return n}posFromDOM(e,n,r){for(let o=e;o;o=o.parentNode){let i=this.getDesc(o);if(i)return i.localPosFromDOM(e,n,r)}return-1}descAt(e){for(let n=0,r=0;ne||s instanceof jr){o=e-i;break}i=l}if(o)return this.children[r].domFromPos(o-this.children[r].border,n);for(let i;r&&!(i=this.children[r-1]).size&&i instanceof _r&&i.side>=0;r--);if(n<=0){let i,s=!0;for(;i=r?this.children[r-1]:null,!(!i||i.dom.parentNode==this.contentDOM);r--,s=!1);return i&&n&&s&&!i.border&&!i.domAtom?i.domFromPos(i.size,n):{node:this.contentDOM,offset:i?fe(i.dom)+1:0}}else{let i,s=!0;for(;i=r=d&&n<=c-a.border&&a.node&&a.contentDOM&&this.contentDOM.contains(a.contentDOM))return a.parseRange(e,n,d);e=s;for(let u=l;u>0;u--){let f=this.children[u-1];if(f.size&&f.dom.parentNode==this.contentDOM&&!f.emptyChildAt(1)){o=fe(f.dom)+1;break}e-=f.size}o==-1&&(o=0)}if(o>-1&&(c>n||l==this.children.length-1)){n=c;for(let d=l+1;dp&&sn){let p=l;l=a,a=p}let h=document.createRange();h.setEnd(a.node,a.offset),h.setStart(l.node,l.offset),c.removeAllRanges(),c.addRange(h)}}ignoreMutation(e){return!this.contentDOM&&e.type!="selection"}get contentLost(){return this.contentDOM&&this.contentDOM!=this.dom&&!this.dom.contains(this.contentDOM)}markDirty(e,n){for(let r=0,o=0;o=r:er){let l=r+i.border,a=s-i.border;if(e>=l&&n<=a){this.dirty=e==r||n==s?Kt:Mc,e==l&&n==a&&(i.contentLost||i.dom.parentNode!=this.contentDOM)?i.dirty=Qe:i.markDirty(e-l,n-l);return}else i.dirty=i.dom==i.contentDOM&&i.dom.parentNode==this.contentDOM&&!i.children.length?Kt:Qe}r=s}this.dirty=Kt}markParentsDirty(){let e=1;for(let n=this.parent;n;n=n.parent,e++){let r=e==1?Kt:Mc;n.dirty{if(!i)return o;if(i.parent)return i.parent.posBeforeChild(i)})),!n.type.spec.raw){if(s.nodeType!=1){let l=document.createElement("span");l.appendChild(s),s=l}s.contentEditable="false",s.classList.add("ProseMirror-widget")}super(e,[],s,null),this.widget=n,this.widget=n,i=this}matchesWidget(e){return this.dirty==Le&&e.type.eq(this.widget.type)}parseRule(){return{ignore:!0}}stopEvent(e){let n=this.widget.spec.stopEvent;return n?n(e):!1}ignoreMutation(e){return e.type!="selection"||this.widget.spec.ignoreSelection}destroy(){this.widget.type.destroy(this.dom),super.destroy()}get domAtom(){return!0}get ignoreForSelection(){return!!this.widget.type.spec.relaxedSide}get side(){return this.widget.type.side}},gs=class extends Qt{constructor(e,n,r,o){super(e,[],n,null),this.textDOM=r,this.text=o}get size(){return this.text.length}localPosFromDOM(e,n){return e!=this.textDOM?this.posAtStart+(n?this.size:0):this.posAtStart+n}domFromPos(e){return{node:this.textDOM,offset:e}}ignoreMutation(e){return e.type==="characterData"&&e.target.nodeValue==e.oldValue}},Mn=class t extends Qt{constructor(e,n,r,o,i){super(e,[],r,o),this.mark=n,this.spec=i}static create(e,n,r,o){let i=o.nodeViews[n.type.name],s=i&&i(n,o,r);return(!s||!s.dom)&&(s=ct.renderSpec(document,n.type.spec.toDOM(n,r),null,n.attrs)),new t(e,n,s.dom,s.contentDOM||s.dom,s)}parseRule(){return this.dirty&Qe||this.mark.type.spec.reparseInView?null:{mark:this.mark.type.name,attrs:this.mark.attrs,contentElement:this.contentDOM}}matchesMark(e){return this.dirty!=Qe&&this.mark.eq(e)}markDirty(e,n){if(super.markDirty(e,n),this.dirty!=Le){let r=this.parent;for(;!r.node;)r=r.parent;r.dirty0&&(i=xs(i,0,e,r));for(let l=0;l{if(!a)return s;if(a.parent)return a.parent.posBeforeChild(a)},r,o),d=c&&c.dom,u=c&&c.contentDOM;if(n.isText){if(!d)d=document.createTextNode(n.text);else if(d.nodeType!=3)throw new RangeError("Text must be rendered as a DOM text node")}else d||({dom:d,contentDOM:u}=ct.renderSpec(document,n.type.spec.toDOM(n),null,n.attrs));!u&&!n.isText&&d.nodeName!="BR"&&(d.hasAttribute("contenteditable")||(d.contentEditable="false"),n.type.spec.draggable&&(d.draggable=!0));let f=d;return d=ad(d,r,n),c?a=new ys(e,n,r,o,d,u||null,f,c,i,s+1):n.isText?new Wr(e,n,r,o,d,f,i):new t(e,n,r,o,d,u||null,f,i,s+1)}parseRule(){if(this.node.type.spec.reparseInView)return null;let e={node:this.node.type.name,attrs:this.node.attrs};if(this.node.type.whitespace=="pre"&&(e.preserveWhitespace="full"),!this.contentDOM)e.getContent=()=>this.node.content;else if(!this.contentLost)e.contentElement=this.contentDOM;else{for(let n=this.children.length-1;n>=0;n--){let r=this.children[n];if(this.dom.contains(r.dom.parentNode)){e.contentElement=r.dom.parentNode;break}}e.contentElement||(e.getContent=()=>v.empty)}return e}matchesNode(e,n,r){return this.dirty==Le&&e.eq(this.node)&&Ur(n,this.outerDeco)&&r.eq(this.innerDeco)}get size(){return this.node.nodeSize}get border(){return this.node.isLeaf?0:1}updateChildren(e,n){let r=this.node.inlineContent,o=n,i=e.composing?this.localCompositionInfo(e,n):null,s=i&&i.pos>-1?i:null,l=i&&i.pos<0,a=new ws(this,s&&s.node,e);Om(this.node,this.innerDeco,(c,d,u)=>{c.spec.marks?a.syncToMarks(c.spec.marks,r,e):c.type.side>=0&&!u&&a.syncToMarks(d==this.node.childCount?J.none:this.node.child(d).marks,r,e),a.placeWidget(c,e,o)},(c,d,u,f)=>{a.syncToMarks(c.marks,r,e);let h;a.findNodeMatch(c,d,u,f)||l&&e.state.selection.from>o&&e.state.selection.to-1&&a.updateNodeAt(c,d,u,h,e)||a.updateNextNode(c,d,u,e,f,o)||a.addNode(c,d,u,e,o),o+=c.nodeSize}),a.syncToMarks([],r,e),this.node.isTextblock&&a.addTextblockHacks(),a.destroyRest(),(a.changed||this.dirty==Kt)&&(s&&this.protectLocalComposition(e,s),sd(this.contentDOM,this.children,e),vn&&Rm(this.dom))}localCompositionInfo(e,n){let{from:r,to:o}=e.state.selection;if(!(e.state.selection instanceof D)||rn+this.node.content.size)return null;let i=e.input.compositionNode;if(!i||!this.dom.contains(i.parentNode))return null;if(this.node.inlineContent){let s=i.nodeValue,l=Dm(this.node.content,s,r-n,o-n);return l<0?null:{node:i,pos:l,text:s}}else return{node:i,pos:-1,text:""}}protectLocalComposition(e,{node:n,pos:r,text:o}){if(this.getDesc(n))return;let i=n;for(;i.parentNode!=this.contentDOM;i=i.parentNode){for(;i.previousSibling;)i.parentNode.removeChild(i.previousSibling);for(;i.nextSibling;)i.parentNode.removeChild(i.nextSibling);i.pmViewDesc&&(i.pmViewDesc=void 0)}let s=new gs(this,i,n,o);e.input.compositionNodes.push(s),this.children=xs(this.children,r,r+o.length,e,s)}update(e,n,r,o){return this.dirty==Qe||!e.sameMarkup(this.node)?!1:(this.updateInner(e,n,r,o),!0)}updateInner(e,n,r,o){this.updateOuterDeco(n),this.node=e,this.innerDeco=r,this.contentDOM&&this.updateChildren(o,this.posAtStart),this.dirty=Le}updateOuterDeco(e){if(Ur(e,this.outerDeco))return;let n=this.nodeDOM.nodeType!=1,r=this.dom;this.dom=ld(this.dom,this.nodeDOM,bs(this.outerDeco,this.node,n),bs(e,this.node,n)),this.dom!=r&&(r.pmViewDesc=void 0,this.dom.pmViewDesc=this),this.outerDeco=e}selectNode(){this.nodeDOM.nodeType==1&&(this.nodeDOM.classList.add("ProseMirror-selectednode"),(this.contentDOM||!this.node.type.spec.draggable)&&(this.nodeDOM.draggable=!0))}deselectNode(){this.nodeDOM.nodeType==1&&(this.nodeDOM.classList.remove("ProseMirror-selectednode"),(this.contentDOM||!this.node.type.spec.draggable)&&this.nodeDOM.removeAttribute("draggable"))}get domAtom(){return this.node.isAtom}};function Tc(t,e,n,r,o){ad(r,e,t);let i=new Dt(void 0,t,e,n,r,r,r,o,0);return i.contentDOM&&i.updateChildren(o,0),i}var Wr=class t extends Dt{constructor(e,n,r,o,i,s,l){super(e,n,r,o,i,null,s,l,0)}parseRule(){let e=this.nodeDOM.parentNode;for(;e&&e!=this.dom&&!e.pmIsDeco;)e=e.parentNode;return{skip:e||!0}}update(e,n,r,o){return this.dirty==Qe||this.dirty!=Le&&!this.inParent()||!e.sameMarkup(this.node)?!1:(this.updateOuterDeco(n),(this.dirty!=Le||e.text!=this.node.text)&&e.text!=this.nodeDOM.nodeValue&&(this.nodeDOM.nodeValue=e.text,o.trackWrites==this.nodeDOM&&(o.trackWrites=null)),this.node=e,this.dirty=Le,!0)}inParent(){let e=this.parent.contentDOM;for(let n=this.nodeDOM;n;n=n.parentNode)if(n==e)return!0;return!1}domFromPos(e){return{node:this.nodeDOM,offset:e}}localPosFromDOM(e,n,r){return e==this.nodeDOM?this.posAtStart+Math.min(n,this.node.text.length):super.localPosFromDOM(e,n,r)}ignoreMutation(e){return e.type!="characterData"&&e.type!="selection"}slice(e,n,r){let o=this.node.cut(e,n),i=document.createTextNode(o.text);return new t(this.parent,o,this.outerDeco,this.innerDeco,i,i,r)}markDirty(e,n){super.markDirty(e,n),this.dom!=this.nodeDOM&&(e==0||n==this.nodeDOM.nodeValue.length)&&(this.dirty=Qe)}get domAtom(){return!1}isText(e){return this.node.text==e}},jr=class extends Qt{parseRule(){return{ignore:!0}}matchesHack(e){return this.dirty==Le&&this.dom.nodeName==e}get domAtom(){return!0}get ignoreForCoords(){return this.dom.nodeName=="IMG"}},ys=class extends Dt{constructor(e,n,r,o,i,s,l,a,c,d){super(e,n,r,o,i,s,l,c,d),this.spec=a}update(e,n,r,o){if(this.dirty==Qe)return!1;if(this.spec.update&&(this.node.type==e.type||this.spec.multiType)){let i=this.spec.update(e,n,r);return i&&this.updateInner(e,n,r,o),i}else return!this.contentDOM&&!e.isLeaf?!1:super.update(e,n,r,o)}selectNode(){this.spec.selectNode?this.spec.selectNode():super.selectNode()}deselectNode(){this.spec.deselectNode?this.spec.deselectNode():super.deselectNode()}setSelection(e,n,r,o){this.spec.setSelection?this.spec.setSelection(e,n,r.root):super.setSelection(e,n,r,o)}destroy(){this.spec.destroy&&this.spec.destroy(),super.destroy()}stopEvent(e){return this.spec.stopEvent?this.spec.stopEvent(e):!1}ignoreMutation(e){return this.spec.ignoreMutation?this.spec.ignoreMutation(e):super.ignoreMutation(e)}};function sd(t,e,n){let r=t.firstChild,o=!1;for(let i=0;i>1,s=Math.min(i,e.length);for(;o-1)l>this.index&&(this.changed=!0,this.destroyBetween(this.index,l)),this.top=this.top.children[this.index];else{let a=Mn.create(this.top,e[i],n,r);this.top.children.splice(this.index,0,a),this.top=a,this.changed=!0}this.index=0,i++}}findNodeMatch(e,n,r,o){let i=-1,s;if(o>=this.preMatch.index&&(s=this.preMatch.matches[o-this.preMatch.index]).parent==this.top&&s.matchesNode(e,n,r))i=this.top.children.indexOf(s,this.index);else for(let l=this.index,a=Math.min(this.top.children.length,l+5);l0;){let l;for(;;)if(r){let c=n.children[r-1];if(c instanceof Mn)n=c,r=c.children.length;else{l=c,r--;break}}else{if(n==e)break e;r=n.parent.children.indexOf(n),n=n.parent}let a=l.node;if(a){if(a!=t.child(o-1))break;--o,i.set(l,o),s.push(l)}}return{index:o,matched:i,matches:s.reverse()}}function Nm(t,e){return t.type.side-e.type.side}function Om(t,e,n,r){let o=e.locals(t),i=0;if(o.length==0){for(let c=0;ci;)l.push(o[s++]);let p=i+f.nodeSize;if(f.isText){let g=p;s!g.inline):l.slice();r(f,m,e.forChild(i,f),h),i=p}}function Rm(t){if(t.nodeName=="UL"||t.nodeName=="OL"){let e=t.style.cssText;t.style.cssText=e+"; list-style: square !important",window.getComputedStyle(t).listStyle,t.style.cssText=e}}function Dm(t,e,n,r){for(let o=0,i=0;o=n){if(i>=r&&a.slice(r-e.length-l,r-l)==e)return r-e.length;let c=l=0&&c+e.length+l>=n)return l+c;if(n==r&&a.length>=r+e.length-l&&a.slice(r-l,r-l+e.length)==e)return r}}return-1}function xs(t,e,n,r,o){let i=[];for(let s=0,l=0;s=n||d<=e?i.push(a):(cn&&i.push(a.slice(n-c,a.size,r)))}return i}function Rs(t,e=null){let n=t.domSelectionRange(),r=t.state.doc;if(!n.focusNode)return null;let o=t.docView.nearestDesc(n.focusNode),i=o&&o.size==0,s=t.docView.posFromDOM(n.focusNode,n.focusOffset,1);if(s<0)return null;let l=r.resolve(s),a,c;if(Qr(n)){for(a=s;o&&!o.node;)o=o.parent;let u=o.node;if(o&&u.isAtom&&L.isSelectable(u)&&o.parent&&!(u.isInline&&am(n.focusNode,n.focusOffset,o.dom))){let f=o.posBefore;c=new L(s==f?l:r.resolve(f))}}else{if(n instanceof t.dom.ownerDocument.defaultView.Selection&&n.rangeCount>1){let u=s,f=s;for(let h=0;h{(n.anchorNode!=r||n.anchorOffset!=o)&&(e.removeEventListener("selectionchange",t.input.hideSelectionGuard),setTimeout(()=>{(!cd(t)||t.state.selection.visible)&&t.dom.classList.remove("ProseMirror-hideselection")},20))})}function Pm(t){let e=t.domSelection();if(!e)return;let n=t.cursorWrapper.dom,r=n.nodeName=="IMG";r?e.collapse(n.parentNode,fe(n)+1):e.collapse(n,0),!r&&!t.state.selection.visible&&ve&&Rt<=11&&(n.disabled=!0,n.disabled=!1)}function dd(t,e){if(e instanceof L){let n=t.docView.descAt(e.from);n!=t.lastSelectedViewDesc&&(Rc(t),n&&n.selectNode(),t.lastSelectedViewDesc=n)}else Rc(t)}function Rc(t){t.lastSelectedViewDesc&&(t.lastSelectedViewDesc.parent&&t.lastSelectedViewDesc.deselectNode(),t.lastSelectedViewDesc=void 0)}function Ds(t,e,n,r){return t.someProp("createSelectionBetween",o=>o(t,e,n))||D.between(e,n,r)}function Dc(t){return t.editable&&!t.hasFocus()?!1:ud(t)}function ud(t){let e=t.domSelectionRange();if(!e.anchorNode)return!1;try{return t.dom.contains(e.anchorNode.nodeType==3?e.anchorNode.parentNode:e.anchorNode)&&(t.editable||t.dom.contains(e.focusNode.nodeType==3?e.focusNode.parentNode:e.focusNode))}catch{return!1}}function Lm(t){let e=t.docView.domFromPos(t.state.selection.anchor,0),n=t.domSelectionRange();return Yt(e.node,e.offset,n.anchorNode,n.anchorOffset)}function ks(t,e){let{$anchor:n,$head:r}=t.selection,o=e>0?n.max(r):n.min(r),i=o.parent.inlineContent?o.depth?t.doc.resolve(e>0?o.after():o.before()):null:o;return i&&I.findFrom(i,e)}function Nt(t,e){return t.dispatch(t.state.tr.setSelection(e).scrollIntoView()),!0}function Ic(t,e,n){let r=t.state.selection;if(r instanceof D)if(n.indexOf("s")>-1){let{$head:o}=r,i=o.textOffset?null:e<0?o.nodeBefore:o.nodeAfter;if(!i||i.isText||!i.isLeaf)return!1;let s=t.state.doc.resolve(o.pos+i.nodeSize*(e<0?-1:1));return Nt(t,new D(r.$anchor,s))}else if(r.empty){if(t.endOfTextblock(e>0?"forward":"backward")){let o=ks(t.state,e);return o&&o instanceof L?Nt(t,o):!1}else if(!(De&&n.indexOf("m")>-1)){let o=r.$head,i=o.textOffset?null:e<0?o.nodeBefore:o.nodeAfter,s;if(!i||i.isText)return!1;let l=e<0?o.pos-i.nodeSize:o.pos;return i.isAtom||(s=t.docView.descAt(l))&&!s.contentDOM?L.isSelectable(i)?Nt(t,new L(e<0?t.state.doc.resolve(o.pos-i.nodeSize):o)):rr?Nt(t,new D(t.state.doc.resolve(e<0?l:l+i.nodeSize))):!1:!1}}else return!1;else{if(r instanceof L&&r.node.isInline)return Nt(t,new D(e>0?r.$to:r.$from));{let o=ks(t.state,e);return o?Nt(t,o):!1}}}function Kr(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function Yn(t,e){let n=t.pmViewDesc;return n&&n.size==0&&(e<0||t.nextSibling||t.nodeName!="BR")}function xn(t,e){return e<0?Bm(t):zm(t)}function Bm(t){let e=t.domSelectionRange(),n=e.focusNode,r=e.focusOffset;if(!n)return;let o,i,s=!1;for(Pe&&n.nodeType==1&&r0){if(n.nodeType!=1)break;{let l=n.childNodes[r-1];if(Yn(l,-1))o=n,i=--r;else if(l.nodeType==3)n=l,r=n.nodeValue.length;else break}}else{if(fd(n))break;{let l=n.previousSibling;for(;l&&Yn(l,-1);)o=n.parentNode,i=fe(l),l=l.previousSibling;if(l)n=l,r=Kr(n);else{if(n=n.parentNode,n==t.dom)break;r=0}}}s?Ss(t,n,r):o&&Ss(t,o,i)}function zm(t){let e=t.domSelectionRange(),n=e.focusNode,r=e.focusOffset;if(!n)return;let o=Kr(n),i,s;for(;;)if(r{t.state==o&>(t)},50)}function Pc(t,e){let n=t.state.doc.resolve(e);if(!(de||Zc)&&n.parent.inlineContent){let o=t.coordsAtPos(e);if(e>n.start()){let i=t.coordsAtPos(e-1),s=(i.top+i.bottom)/2;if(s>o.top&&s1)return i.lefto.top&&s1)return i.left>o.left?"ltr":"rtl"}}return getComputedStyle(t.dom).direction=="rtl"?"rtl":"ltr"}function Lc(t,e,n){let r=t.state.selection;if(r instanceof D&&!r.empty||n.indexOf("s")>-1||De&&n.indexOf("m")>-1)return!1;let{$from:o,$to:i}=r;if(!o.parent.inlineContent||t.endOfTextblock(e<0?"up":"down")){let s=ks(t.state,e);if(s&&s instanceof L)return Nt(t,s)}if(!o.parent.inlineContent){let s=e<0?o:i,l=r instanceof ke?I.near(s,e):I.findFrom(s,e);return l?Nt(t,l):!1}return!1}function Bc(t,e){if(!(t.state.selection instanceof D))return!0;let{$head:n,$anchor:r,empty:o}=t.state.selection;if(!n.sameParent(r))return!0;if(!o)return!1;if(t.endOfTextblock(e>0?"forward":"backward"))return!0;let i=!n.textOffset&&(e<0?n.nodeBefore:n.nodeAfter);if(i&&!i.isText){let s=t.state.tr;return e<0?s.delete(n.pos-i.nodeSize,n.pos):s.delete(n.pos,n.pos+i.nodeSize),t.dispatch(s),!0}return!1}function zc(t,e,n){t.domObserver.stop(),e.contentEditable=n,t.domObserver.start()}function Fm(t){if(!we||t.state.selection.$head.parentOffset>0)return!1;let{focusNode:e,focusOffset:n}=t.domSelectionRange();if(e&&e.nodeType==1&&n==0&&e.firstChild&&e.firstChild.contentEditable=="false"){let r=e.firstChild;zc(t,r,"true"),setTimeout(()=>zc(t,r,"false"),20)}return!1}function Vm(t){let e="";return t.ctrlKey&&(e+="c"),t.metaKey&&(e+="m"),t.altKey&&(e+="a"),t.shiftKey&&(e+="s"),e}function _m(t,e){let n=e.keyCode,r=Vm(e);if(n==8||De&&n==72&&r=="c")return Bc(t,-1)||xn(t,-1);if(n==46&&!e.shiftKey||De&&n==68&&r=="c")return Bc(t,1)||xn(t,1);if(n==13||n==27)return!0;if(n==37||De&&n==66&&r=="c"){let o=n==37?Pc(t,t.state.selection.from)=="ltr"?-1:1:-1;return Ic(t,o,r)||xn(t,o)}else if(n==39||De&&n==70&&r=="c"){let o=n==39?Pc(t,t.state.selection.from)=="ltr"?1:-1:1;return Ic(t,o,r)||xn(t,o)}else{if(n==38||De&&n==80&&r=="c")return Lc(t,-1,r)||xn(t,-1);if(n==40||De&&n==78&&r=="c")return Fm(t)||Lc(t,1,r)||xn(t,1);if(r==(De?"m":"c")&&(n==66||n==73||n==89||n==90))return!0}return!1}function Is(t,e){t.someProp("transformCopied",h=>{e=h(e,t)});let n=[],{content:r,openStart:o,openEnd:i}=e;for(;o>1&&i>1&&r.childCount==1&&r.firstChild.childCount==1;){o--,i--;let h=r.firstChild;n.push(h.type.name,h.attrs!=h.type.defaultAttrs?h.attrs:null),r=h.content}let s=t.someProp("clipboardSerializer")||ct.fromSchema(t.state.schema),l=bd(),a=l.createElement("div");a.appendChild(s.serializeFragment(r,{document:l}));let c=a.firstChild,d,u=0;for(;c&&c.nodeType==1&&(d=yd[c.nodeName.toLowerCase()]);){for(let h=d.length-1;h>=0;h--){let p=l.createElement(d[h]);for(;a.firstChild;)p.appendChild(a.firstChild);a.appendChild(p),u++}c=a.firstChild}c&&c.nodeType==1&&c.setAttribute("data-pm-slice",`${o} ${i}${u?` -${u}`:""} ${JSON.stringify(n)}`);let f=t.someProp("clipboardTextSerializer",h=>h(e,t))||e.content.textBetween(0,e.content.size,` + +`);return{dom:a,text:f,slice:e}}function hd(t,e,n,r,o){let i=o.parent.type.spec.code,s,l;if(!n&&!e)return null;let a=!!e&&(r||i||!n);if(a){if(t.someProp("transformPastedText",f=>{e=f(e,i||r,t)}),i)return l=new E(v.from(t.state.schema.text(e.replace(/\r\n?/g,` +`))),0,0),t.someProp("transformPasted",f=>{l=f(l,t,!0)}),l;let u=t.someProp("clipboardTextParser",f=>f(e,o,r,t));if(u)l=u;else{let f=o.marks(),{schema:h}=t.state,p=ct.fromSchema(h);s=document.createElement("div"),e.split(/(?:\r\n?|\n)+/).forEach(m=>{let g=s.appendChild(document.createElement("p"));m&&g.appendChild(p.serializeNode(h.text(m,f)))})}}else t.someProp("transformPastedHTML",u=>{n=u(n,t)}),s=Km(n),rr&&qm(s);let c=s&&s.querySelector("[data-pm-slice]"),d=c&&/^(\d+) (\d+)(?: -(\d+))? (.*)/.exec(c.getAttribute("data-pm-slice")||"");if(d&&d[3])for(let u=+d[3];u>0;u--){let f=s.firstChild;for(;f&&f.nodeType!=1;)f=f.nextSibling;if(!f)break;s=f}if(l||(l=(t.someProp("clipboardParser")||t.someProp("domParser")||Xe.fromSchema(t.state.schema)).parseSlice(s,{preserveWhitespace:!!(a||d),context:o,ruleFromNode(f){return f.nodeName=="BR"&&!f.nextSibling&&f.parentNode&&!Wm.test(f.parentNode.nodeName)?{ignore:!0}:null}})),d)l=Jm(Hc(l,+d[1],+d[2]),d[4]);else if(l=E.maxOpen(jm(l.content,o),!0),l.openStart||l.openEnd){let u=0,f=0;for(let h=l.content.firstChild;u{l=u(l,t,a)}),l}var Wm=/^(a|abbr|acronym|b|cite|code|del|em|i|ins|kbd|label|output|q|ruby|s|samp|span|strong|sub|sup|time|u|tt|var)$/i;function jm(t,e){if(t.childCount<2)return t;for(let n=e.depth;n>=0;n--){let o=e.node(n).contentMatchAt(e.index(n)),i,s=[];if(t.forEach(l=>{if(!s)return;let a=o.findWrapping(l.type),c;if(!a)return s=null;if(c=s.length&&i.length&&md(a,i,l,s[s.length-1],0))s[s.length-1]=c;else{s.length&&(s[s.length-1]=gd(s[s.length-1],i.length));let d=pd(l,a);s.push(d),o=o.matchType(d.type),i=a}}),s)return v.from(s)}return t}function pd(t,e,n=0){for(let r=e.length-1;r>=n;r--)t=e[r].create(null,v.from(t));return t}function md(t,e,n,r,o){if(o1&&(i=0),o=n&&(l=e<0?s.contentMatchAt(0).fillBefore(l,i<=o).append(l):l.append(s.contentMatchAt(s.childCount).fillBefore(v.empty,!0))),t.replaceChild(e<0?0:t.childCount-1,s.copy(l))}function Hc(t,e,n){return en})),cs.createHTML(t)):t}function Km(t){let e=/^(\s*]*>)*/.exec(t);e&&(t=t.slice(e[0].length));let n=bd().createElement("div"),r=/<([a-z][^>\s]+)/i.exec(t),o;if((o=r&&yd[r[1].toLowerCase()])&&(t=o.map(i=>"<"+i+">").join("")+t+o.map(i=>"").reverse().join("")),n.innerHTML=Um(t),o)for(let i=0;i=0;l-=2){let a=n.nodes[r[l]];if(!a||a.hasRequiredAttrs())break;o=v.from(a.create(r[l+1],o)),i++,s++}return new E(o,i,s)}var Se={},Ce={},Gm={touchstart:!0,touchmove:!0},vs=class{constructor(){this.shiftKey=!1,this.mouseDown=null,this.lastKeyCode=null,this.lastKeyCodeTime=0,this.lastClick={time:0,x:0,y:0,type:"",button:0},this.lastSelectionOrigin=null,this.lastSelectionTime=0,this.lastIOSEnter=0,this.lastIOSEnterFallbackTimeout=-1,this.lastFocus=0,this.lastTouch=0,this.lastChromeDelete=0,this.composing=!1,this.compositionNode=null,this.composingTimeout=-1,this.compositionNodes=[],this.compositionEndedAt=-2e8,this.compositionID=1,this.compositionPendingChanges=0,this.domChangeCount=0,this.eventHandlers=Object.create(null),this.hideSelectionGuard=null}};function Xm(t){for(let e in Se){let n=Se[e];t.dom.addEventListener(e,t.input.eventHandlers[e]=r=>{Qm(t,r)&&!Ps(t,r)&&(t.editable||!(r.type in Ce))&&n(t,r)},Gm[e]?{passive:!0}:void 0)}we&&t.dom.addEventListener("input",()=>null),Ms(t)}function Ot(t,e){t.input.lastSelectionOrigin=e,t.input.lastSelectionTime=Date.now()}function Ym(t){t.domObserver.stop();for(let e in t.input.eventHandlers)t.dom.removeEventListener(e,t.input.eventHandlers[e]);clearTimeout(t.input.composingTimeout),clearTimeout(t.input.lastIOSEnterFallbackTimeout)}function Ms(t){t.someProp("handleDOMEvents",e=>{for(let n in e)t.input.eventHandlers[n]||t.dom.addEventListener(n,t.input.eventHandlers[n]=r=>Ps(t,r))})}function Ps(t,e){return t.someProp("handleDOMEvents",n=>{let r=n[e.type];return r?r(t,e)||e.defaultPrevented:!1})}function Qm(t,e){if(!e.bubbles)return!0;if(e.defaultPrevented)return!1;for(let n=e.target;n!=t.dom;n=n.parentNode)if(!n||n.nodeType==11||n.pmViewDesc&&n.pmViewDesc.stopEvent(e))return!1;return!0}function Zm(t,e){!Ps(t,e)&&Se[e.type]&&(t.editable||!(e.type in Ce))&&Se[e.type](t,e)}Ce.keydown=(t,e)=>{let n=e;if(t.input.shiftKey=n.keyCode==16||n.shiftKey,!xd(t,n)&&(t.input.lastKeyCode=n.keyCode,t.input.lastKeyCodeTime=Date.now(),!(mt&&de&&n.keyCode==13)))if(n.keyCode!=229&&t.domObserver.forceFlush(),vn&&n.keyCode==13&&!n.ctrlKey&&!n.altKey&&!n.metaKey){let r=Date.now();t.input.lastIOSEnter=r,t.input.lastIOSEnterFallbackTimeout=setTimeout(()=>{t.input.lastIOSEnter==r&&(t.someProp("handleKeyDown",o=>o(t,Ut(13,"Enter"))),t.input.lastIOSEnter=0)},200)}else t.someProp("handleKeyDown",r=>r(t,n))||_m(t,n)?n.preventDefault():Ot(t,"key")};Ce.keyup=(t,e)=>{e.keyCode==16&&(t.input.shiftKey=!1)};Ce.keypress=(t,e)=>{let n=e;if(xd(t,n)||!n.charCode||n.ctrlKey&&!n.altKey||De&&n.metaKey)return;if(t.someProp("handleKeyPress",o=>o(t,n))){n.preventDefault();return}let r=t.state.selection;if(!(r instanceof D)||!r.$from.sameParent(r.$to)){let o=String.fromCharCode(n.charCode),i=()=>t.state.tr.insertText(o).scrollIntoView();!/[\r\n]/.test(o)&&!t.someProp("handleTextInput",s=>s(t,r.$from.pos,r.$to.pos,o,i))&&t.dispatch(i()),n.preventDefault()}};function Zr(t){return{left:t.clientX,top:t.clientY}}function eg(t,e){let n=e.x-t.clientX,r=e.y-t.clientY;return n*n+r*r<100}function Ls(t,e,n,r,o){if(r==-1)return!1;let i=t.state.doc.resolve(r);for(let s=i.depth+1;s>0;s--)if(t.someProp(e,l=>s>i.depth?l(t,n,i.nodeAfter,i.before(s),o,!0):l(t,n,i.node(s),i.before(s),o,!1)))return!0;return!1}function Sn(t,e,n){if(t.focused||t.focus(),t.state.selection.eq(e))return;let r=t.state.tr.setSelection(e);n=="pointer"&&r.setMeta("pointer",!0),t.dispatch(r)}function tg(t,e){if(e==-1)return!1;let n=t.state.doc.resolve(e),r=n.nodeAfter;return r&&r.isAtom&&L.isSelectable(r)?(Sn(t,new L(n),"pointer"),!0):!1}function ng(t,e){if(e==-1)return!1;let n=t.state.selection,r,o;n instanceof L&&(r=n.node);let i=t.state.doc.resolve(e);for(let s=i.depth+1;s>0;s--){let l=s>i.depth?i.nodeAfter:i.node(s);if(L.isSelectable(l)){r&&n.$from.depth>0&&s>=n.$from.depth&&i.before(n.$from.depth+1)==n.$from.pos?o=i.before(n.$from.depth):o=i.before(s);break}}return o!=null?(Sn(t,L.create(t.state.doc,o),"pointer"),!0):!1}function rg(t,e,n,r,o){return Ls(t,"handleClickOn",e,n,r)||t.someProp("handleClick",i=>i(t,e,r))||(o?ng(t,n):tg(t,n))}function og(t,e,n,r){return Ls(t,"handleDoubleClickOn",e,n,r)||t.someProp("handleDoubleClick",o=>o(t,e,r))}function ig(t,e,n,r){return Ls(t,"handleTripleClickOn",e,n,r)||t.someProp("handleTripleClick",o=>o(t,e,r))||sg(t,n,r)}function sg(t,e,n){if(n.button!=0)return!1;let r=t.state.doc;if(e==-1)return r.inlineContent?(Sn(t,D.create(r,0,r.content.size),"pointer"),!0):!1;let o=r.resolve(e);for(let i=o.depth+1;i>0;i--){let s=i>o.depth?o.nodeAfter:o.node(i),l=o.before(i);if(s.inlineContent)Sn(t,D.create(r,l+1,l+1+s.content.size),"pointer");else if(L.isSelectable(s))Sn(t,L.create(r,l),"pointer");else continue;return!0}}function Bs(t){return qr(t)}var wd=De?"metaKey":"ctrlKey";Se.mousedown=(t,e)=>{let n=e;t.input.shiftKey=n.shiftKey;let r=Bs(t),o=Date.now(),i="singleClick";o-t.input.lastClick.time<500&&eg(n,t.input.lastClick)&&!n[wd]&&t.input.lastClick.button==n.button&&(t.input.lastClick.type=="singleClick"?i="doubleClick":t.input.lastClick.type=="doubleClick"&&(i="tripleClick")),t.input.lastClick={time:o,x:n.clientX,y:n.clientY,type:i,button:n.button};let s=t.posAtCoords(Zr(n));s&&(i=="singleClick"?(t.input.mouseDown&&t.input.mouseDown.done(),t.input.mouseDown=new Ts(t,s,n,!!r)):(i=="doubleClick"?og:ig)(t,s.pos,s.inside,n)?n.preventDefault():Ot(t,"pointer"))};var Ts=class{constructor(e,n,r,o){this.view=e,this.pos=n,this.event=r,this.flushed=o,this.delayedSelectionSync=!1,this.mightDrag=null,this.startDoc=e.state.doc,this.selectNode=!!r[wd],this.allowDefault=r.shiftKey;let i,s;if(n.inside>-1)i=e.state.doc.nodeAt(n.inside),s=n.inside;else{let d=e.state.doc.resolve(n.pos);i=d.parent,s=d.depth?d.before():0}let l=o?null:r.target,a=l?e.docView.nearestDesc(l,!0):null;this.target=a&&a.nodeDOM.nodeType==1?a.nodeDOM:null;let{selection:c}=e.state;(r.button==0&&i.type.spec.draggable&&i.type.spec.selectable!==!1||c instanceof L&&c.from<=s&&c.to>s)&&(this.mightDrag={node:i,pos:s,addAttr:!!(this.target&&!this.target.draggable),setUneditable:!!(this.target&&Pe&&!this.target.hasAttribute("contentEditable"))}),this.target&&this.mightDrag&&(this.mightDrag.addAttr||this.mightDrag.setUneditable)&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&(this.target.draggable=!0),this.mightDrag.setUneditable&&setTimeout(()=>{this.view.input.mouseDown==this&&this.target.setAttribute("contentEditable","false")},20),this.view.domObserver.start()),e.root.addEventListener("mouseup",this.up=this.up.bind(this)),e.root.addEventListener("mousemove",this.move=this.move.bind(this)),Ot(e,"pointer")}done(){this.view.root.removeEventListener("mouseup",this.up),this.view.root.removeEventListener("mousemove",this.move),this.mightDrag&&this.target&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&this.target.removeAttribute("draggable"),this.mightDrag.setUneditable&&this.target.removeAttribute("contentEditable"),this.view.domObserver.start()),this.delayedSelectionSync&&setTimeout(()=>gt(this.view)),this.view.input.mouseDown=null}up(e){if(this.done(),!this.view.dom.contains(e.target))return;let n=this.pos;this.view.state.doc!=this.startDoc&&(n=this.view.posAtCoords(Zr(e))),this.updateAllowDefault(e),this.allowDefault||!n?Ot(this.view,"pointer"):rg(this.view,n.pos,n.inside,e,this.selectNode)?e.preventDefault():e.button==0&&(this.flushed||we&&this.mightDrag&&!this.mightDrag.node.isAtom||de&&!this.view.state.selection.visible&&Math.min(Math.abs(n.pos-this.view.state.selection.from),Math.abs(n.pos-this.view.state.selection.to))<=2)?(Sn(this.view,I.near(this.view.state.doc.resolve(n.pos)),"pointer"),e.preventDefault()):Ot(this.view,"pointer")}move(e){this.updateAllowDefault(e),Ot(this.view,"pointer"),e.buttons==0&&this.done()}updateAllowDefault(e){!this.allowDefault&&(Math.abs(this.event.x-e.clientX)>4||Math.abs(this.event.y-e.clientY)>4)&&(this.allowDefault=!0)}};Se.touchstart=t=>{t.input.lastTouch=Date.now(),Bs(t),Ot(t,"pointer")};Se.touchmove=t=>{t.input.lastTouch=Date.now(),Ot(t,"pointer")};Se.contextmenu=t=>Bs(t);function xd(t,e){return t.composing?!0:we&&Math.abs(e.timeStamp-t.input.compositionEndedAt)<500?(t.input.compositionEndedAt=-2e8,!0):!1}var lg=mt?5e3:-1;Ce.compositionstart=Ce.compositionupdate=t=>{if(!t.composing){t.domObserver.flush();let{state:e}=t,n=e.selection.$to;if(e.selection instanceof D&&(e.storedMarks||!n.textOffset&&n.parentOffset&&n.nodeBefore.marks.some(r=>r.type.spec.inclusive===!1)||de&&Zc&&ag(t)))t.markCursor=t.state.storedMarks||n.marks(),qr(t,!0),t.markCursor=null;else if(qr(t,!e.selection.empty),Pe&&e.selection.empty&&n.parentOffset&&!n.textOffset&&n.nodeBefore.marks.length){let r=t.domSelectionRange();for(let o=r.focusNode,i=r.focusOffset;o&&o.nodeType==1&&i!=0;){let s=i<0?o.lastChild:o.childNodes[i-1];if(!s)break;if(s.nodeType==3){let l=t.domSelection();l&&l.collapse(s,s.nodeValue.length);break}else o=s,i=-1}}t.input.composing=!0}kd(t,lg)};function ag(t){let{focusNode:e,focusOffset:n}=t.domSelectionRange();if(!e||e.nodeType!=1||n>=e.childNodes.length)return!1;let r=e.childNodes[n];return r.nodeType==1&&r.contentEditable=="false"}Ce.compositionend=(t,e)=>{t.composing&&(t.input.composing=!1,t.input.compositionEndedAt=e.timeStamp,t.input.compositionPendingChanges=t.domObserver.pendingRecords().length?t.input.compositionID:0,t.input.compositionNode=null,t.input.compositionPendingChanges&&Promise.resolve().then(()=>t.domObserver.flush()),t.input.compositionID++,kd(t,20))};function kd(t,e){clearTimeout(t.input.composingTimeout),e>-1&&(t.input.composingTimeout=setTimeout(()=>qr(t),e))}function Sd(t){for(t.composing&&(t.input.composing=!1,t.input.compositionEndedAt=dg());t.input.compositionNodes.length>0;)t.input.compositionNodes.pop().markParentsDirty()}function cg(t){let e=t.domSelectionRange();if(!e.focusNode)return null;let n=sm(e.focusNode,e.focusOffset),r=lm(e.focusNode,e.focusOffset);if(n&&r&&n!=r){let o=r.pmViewDesc,i=t.domObserver.lastChangedTextNode;if(n==i||r==i)return i;if(!o||!o.isText(r.nodeValue))return r;if(t.input.compositionNode==r){let s=n.pmViewDesc;if(!(!s||!s.isText(n.nodeValue)))return r}}return n||r}function dg(){let t=document.createEvent("Event");return t.initEvent("event",!0,!0),t.timeStamp}function qr(t,e=!1){if(!(mt&&t.domObserver.flushingSoon>=0)){if(t.domObserver.forceFlush(),Sd(t),e||t.docView&&t.docView.dirty){let n=Rs(t),r=t.state.selection;return n&&!n.eq(r)?t.dispatch(t.state.tr.setSelection(n)):(t.markCursor||e)&&!r.$from.node(r.$from.sharedDepth(r.to)).inlineContent?t.dispatch(t.state.tr.deleteSelection()):t.updateState(t.state),!0}return!1}}function ug(t,e){if(!t.dom.parentNode)return;let n=t.dom.parentNode.appendChild(document.createElement("div"));n.appendChild(e),n.style.cssText="position: fixed; left: -10000px; top: 10px";let r=getSelection(),o=document.createRange();o.selectNodeContents(e),t.dom.blur(),r.removeAllRanges(),r.addRange(o),setTimeout(()=>{n.parentNode&&n.parentNode.removeChild(n),t.focus()},50)}var Qn=ve&&Rt<15||vn&&um<604;Se.copy=Ce.cut=(t,e)=>{let n=e,r=t.state.selection,o=n.type=="cut";if(r.empty)return;let i=Qn?null:n.clipboardData,s=r.content(),{dom:l,text:a}=Is(t,s);i?(n.preventDefault(),i.clearData(),i.setData("text/html",l.innerHTML),i.setData("text/plain",a)):ug(t,l),o&&t.dispatch(t.state.tr.deleteSelection().scrollIntoView().setMeta("uiEvent","cut"))};function fg(t){return t.openStart==0&&t.openEnd==0&&t.content.childCount==1?t.content.firstChild:null}function hg(t,e){if(!t.dom.parentNode)return;let n=t.input.shiftKey||t.state.selection.$from.parent.type.spec.code,r=t.dom.parentNode.appendChild(document.createElement(n?"textarea":"div"));n||(r.contentEditable="true"),r.style.cssText="position: fixed; left: -10000px; top: 10px",r.focus();let o=t.input.shiftKey&&t.input.lastKeyCode!=45;setTimeout(()=>{t.focus(),r.parentNode&&r.parentNode.removeChild(r),n?Zn(t,r.value,null,o,e):Zn(t,r.textContent,r.innerHTML,o,e)},50)}function Zn(t,e,n,r,o){let i=hd(t,e,n,r,t.state.selection.$from);if(t.someProp("handlePaste",a=>a(t,o,i||E.empty)))return!0;if(!i)return!1;let s=fg(i),l=s?t.state.tr.replaceSelectionWith(s,r):t.state.tr.replaceSelection(i);return t.dispatch(l.scrollIntoView().setMeta("paste",!0).setMeta("uiEvent","paste")),!0}function Cd(t){let e=t.getData("text/plain")||t.getData("Text");if(e)return e;let n=t.getData("text/uri-list");return n?n.replace(/\r?\n/g," "):""}Ce.paste=(t,e)=>{let n=e;if(t.composing&&!mt)return;let r=Qn?null:n.clipboardData,o=t.input.shiftKey&&t.input.lastKeyCode!=45;r&&Zn(t,Cd(r),r.getData("text/html"),o,n)?n.preventDefault():hg(t,n)};var Jr=class{constructor(e,n,r){this.slice=e,this.move=n,this.node=r}},pg=De?"altKey":"ctrlKey";function vd(t,e){let n=t.someProp("dragCopies",r=>!r(e));return n??!e[pg]}Se.dragstart=(t,e)=>{let n=e,r=t.input.mouseDown;if(r&&r.done(),!n.dataTransfer)return;let o=t.state.selection,i=o.empty?null:t.posAtCoords(Zr(n)),s;if(!(i&&i.pos>=o.from&&i.pos<=(o instanceof L?o.to-1:o.to))){if(r&&r.mightDrag)s=L.create(t.state.doc,r.mightDrag.pos);else if(n.target&&n.target.nodeType==1){let u=t.docView.nearestDesc(n.target,!0);u&&u.node.type.spec.draggable&&u!=t.docView&&(s=L.create(t.state.doc,u.posBefore))}}let l=(s||t.state.selection).content(),{dom:a,text:c,slice:d}=Is(t,l);(!n.dataTransfer.files.length||!de||Qc>120)&&n.dataTransfer.clearData(),n.dataTransfer.setData(Qn?"Text":"text/html",a.innerHTML),n.dataTransfer.effectAllowed="copyMove",Qn||n.dataTransfer.setData("text/plain",c),t.dragging=new Jr(d,vd(t,n),s)};Se.dragend=t=>{let e=t.dragging;window.setTimeout(()=>{t.dragging==e&&(t.dragging=null)},50)};Ce.dragover=Ce.dragenter=(t,e)=>e.preventDefault();Ce.drop=(t,e)=>{try{mg(t,e,t.dragging)}finally{t.dragging=null}};function mg(t,e,n){if(!e.dataTransfer)return;let r=t.posAtCoords(Zr(e));if(!r)return;let o=t.state.doc.resolve(r.pos),i=n&&n.slice;i?t.someProp("transformPasted",h=>{i=h(i,t,!1)}):i=hd(t,Cd(e.dataTransfer),Qn?null:e.dataTransfer.getData("text/html"),!1,o);let s=!!(n&&vd(t,e));if(t.someProp("handleDrop",h=>h(t,e,i||E.empty,s))){e.preventDefault();return}if(!i)return;e.preventDefault();let l=i?zr(t.state.doc,o.pos,i):o.pos;l==null&&(l=o.pos);let a=t.state.tr;if(s){let{node:h}=n;h?h.replace(a):a.deleteSelection()}let c=a.mapping.map(l),d=i.openStart==0&&i.openEnd==0&&i.content.childCount==1,u=a.doc;if(d?a.replaceRangeWith(c,c,i.content.firstChild):a.replaceRange(c,c,i),a.doc.eq(u))return;let f=a.doc.resolve(c);if(d&&L.isSelectable(i.content.firstChild)&&f.nodeAfter&&f.nodeAfter.sameMarkup(i.content.firstChild))a.setSelection(new L(f));else{let h=a.mapping.map(l);a.mapping.maps[a.mapping.maps.length-1].forEach((p,m,g,y)=>h=y),a.setSelection(Ds(t,f,a.doc.resolve(h)))}t.focus(),t.dispatch(a.setMeta("uiEvent","drop"))}Se.focus=t=>{t.input.lastFocus=Date.now(),t.focused||(t.domObserver.stop(),t.dom.classList.add("ProseMirror-focused"),t.domObserver.start(),t.focused=!0,setTimeout(()=>{t.docView&&t.hasFocus()&&!t.domObserver.currentSelection.eq(t.domSelectionRange())&>(t)},20))};Se.blur=(t,e)=>{let n=e;t.focused&&(t.domObserver.stop(),t.dom.classList.remove("ProseMirror-focused"),t.domObserver.start(),n.relatedTarget&&t.dom.contains(n.relatedTarget)&&t.domObserver.currentSelection.clear(),t.focused=!1)};Se.beforeinput=(t,e)=>{if(de&&mt&&e.inputType=="deleteContentBackward"){t.domObserver.flushSoon();let{domChangeCount:r}=t.input;setTimeout(()=>{if(t.input.domChangeCount!=r||(t.dom.blur(),t.focus(),t.someProp("handleKeyDown",i=>i(t,Ut(8,"Backspace")))))return;let{$cursor:o}=t.state.selection;o&&o.pos>0&&t.dispatch(t.state.tr.delete(o.pos-1,o.pos).scrollIntoView())},50)}};for(let t in Ce)Se[t]=Ce[t];function er(t,e){if(t==e)return!0;for(let n in t)if(t[n]!==e[n])return!1;for(let n in e)if(!(n in t))return!1;return!0}var Gr=class t{constructor(e,n){this.toDOM=e,this.spec=n||Gt,this.side=this.spec.side||0}map(e,n,r,o){let{pos:i,deleted:s}=e.mapResult(n.from+o,this.side<0?-1:1);return s?null:new te(i-r,i-r,this)}valid(){return!0}eq(e){return this==e||e instanceof t&&(this.spec.key&&this.spec.key==e.spec.key||this.toDOM==e.toDOM&&er(this.spec,e.spec))}destroy(e){this.spec.destroy&&this.spec.destroy(e)}},Jt=class t{constructor(e,n){this.attrs=e,this.spec=n||Gt}map(e,n,r,o){let i=e.map(n.from+o,this.spec.inclusiveStart?-1:1)-r,s=e.map(n.to+o,this.spec.inclusiveEnd?1:-1)-r;return i>=s?null:new te(i,s,this)}valid(e,n){return n.from=e&&(!i||i(l.spec))&&r.push(l.copy(l.from+o,l.to+o))}for(let s=0;se){let l=this.children[s]+1;this.children[s+2].findInner(e-l,n-l,r,o+l,i)}}map(e,n,r){return this==be||e.maps.length==0?this:this.mapInner(e,n,0,0,r||Gt)}mapInner(e,n,r,o,i){let s;for(let l=0;l{let c=a+r,d;if(d=Td(n,l,c)){for(o||(o=this.children.slice());il&&u.to=e){this.children[l]==e&&(r=this.children[l+2]);break}let i=e+1,s=i+n.content.size;for(let l=0;li&&a.type instanceof Jt){let c=Math.max(i,a.from)-i,d=Math.min(s,a.to)-i;co.map(e,n,Gt));return t.from(r)}forChild(e,n){if(n.isLeaf)return Y.empty;let r=[];for(let o=0;on instanceof Y)?e:e.reduce((n,r)=>n.concat(r instanceof Y?r:r.members),[]))}}forEachSet(e){for(let n=0;n{let g=m-p-(h-f);for(let y=0;yw+d-u)continue;let b=l[y]+d-u;h>=b?l[y+1]=f<=b?-2:-1:f>=d&&g&&(l[y]+=g,l[y+1]+=g)}u+=g}),d=n.maps[c].map(d,-1)}let a=!1;for(let c=0;c=r.content.size){a=!0;continue}let f=n.map(t[c+1]+i,-1),h=f-o,{index:p,offset:m}=r.content.findIndex(u),g=r.maybeChild(p);if(g&&m==u&&m+g.nodeSize==h){let y=l[c+2].mapInner(n,g,d+1,t[c]+i+1,s);y!=be?(l[c]=u,l[c+1]=h,l[c+2]=y):(l[c+1]=-2,a=!0)}else a=!0}if(a){let c=yg(l,t,e,n,o,i,s),d=Yr(c,r,0,s);e=d.local;for(let u=0;un&&s.to{let c=Td(t,l,a+n);if(c){i=!0;let d=Yr(c,l,n+a+1,r);d!=be&&o.push(a,a+l.nodeSize,d)}});let s=Md(i?Ad(t):t,-n).sort(Xt);for(let l=0;l0;)e++;t.splice(e,0,n)}function ds(t){let e=[];return t.someProp("decorations",n=>{let r=n(t.state);r&&r!=be&&e.push(r)}),t.cursorWrapper&&e.push(Y.create(t.state.doc,[t.cursorWrapper.deco])),Xr.from(e)}var bg={childList:!0,characterData:!0,characterDataOldValue:!0,attributes:!0,attributeOldValue:!0,subtree:!0},wg=ve&&Rt<=11,Es=class{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}set(e){this.anchorNode=e.anchorNode,this.anchorOffset=e.anchorOffset,this.focusNode=e.focusNode,this.focusOffset=e.focusOffset}clear(){this.anchorNode=this.focusNode=null}eq(e){return e.anchorNode==this.anchorNode&&e.anchorOffset==this.anchorOffset&&e.focusNode==this.focusNode&&e.focusOffset==this.focusOffset}},Ns=class{constructor(e,n){this.view=e,this.handleDOMChange=n,this.queue=[],this.flushingSoon=-1,this.observer=null,this.currentSelection=new Es,this.onCharData=null,this.suppressingSelectionUpdates=!1,this.lastChangedTextNode=null,this.observer=window.MutationObserver&&new window.MutationObserver(r=>{for(let o=0;oo.type=="childList"&&o.removedNodes.length||o.type=="characterData"&&o.oldValue.length>o.target.nodeValue.length)?this.flushSoon():this.flush()}),wg&&(this.onCharData=r=>{this.queue.push({target:r.target,type:"characterData",oldValue:r.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this)}flushSoon(){this.flushingSoon<0&&(this.flushingSoon=window.setTimeout(()=>{this.flushingSoon=-1,this.flush()},20))}forceFlush(){this.flushingSoon>-1&&(window.clearTimeout(this.flushingSoon),this.flushingSoon=-1,this.flush())}start(){this.observer&&(this.observer.takeRecords(),this.observer.observe(this.view.dom,bg)),this.onCharData&&this.view.dom.addEventListener("DOMCharacterDataModified",this.onCharData),this.connectSelection()}stop(){if(this.observer){let e=this.observer.takeRecords();if(e.length){for(let n=0;nthis.flush(),20)}this.observer.disconnect()}this.onCharData&&this.view.dom.removeEventListener("DOMCharacterDataModified",this.onCharData),this.disconnectSelection()}connectSelection(){this.view.dom.ownerDocument.addEventListener("selectionchange",this.onSelectionChange)}disconnectSelection(){this.view.dom.ownerDocument.removeEventListener("selectionchange",this.onSelectionChange)}suppressSelectionUpdates(){this.suppressingSelectionUpdates=!0,setTimeout(()=>this.suppressingSelectionUpdates=!1,50)}onSelectionChange(){if(Dc(this.view)){if(this.suppressingSelectionUpdates)return gt(this.view);if(ve&&Rt<=11&&!this.view.state.selection.empty){let e=this.view.domSelectionRange();if(e.focusNode&&Yt(e.focusNode,e.focusOffset,e.anchorNode,e.anchorOffset))return this.flushSoon()}this.flush()}}setCurSelection(){this.currentSelection.set(this.view.domSelectionRange())}ignoreSelectionChange(e){if(!e.focusNode)return!0;let n=new Set,r;for(let i=e.focusNode;i;i=Cn(i))n.add(i);for(let i=e.anchorNode;i;i=Cn(i))if(n.has(i)){r=i;break}let o=r&&this.view.docView.nearestDesc(r);if(o&&o.ignoreMutation({type:"selection",target:r.nodeType==3?r.parentNode:r}))return this.setCurSelection(),!0}pendingRecords(){if(this.observer)for(let e of this.observer.takeRecords())this.queue.push(e);return this.queue}flush(){let{view:e}=this;if(!e.docView||this.flushingSoon>-1)return;let n=this.pendingRecords();n.length&&(this.queue=[]);let r=e.domSelectionRange(),o=!this.suppressingSelectionUpdates&&!this.currentSelection.eq(r)&&Dc(e)&&!this.ignoreSelectionChange(r),i=-1,s=-1,l=!1,a=[];if(e.editable)for(let d=0;du.nodeName=="BR");if(d.length==2){let[u,f]=d;u.parentNode&&u.parentNode.parentNode==f.parentNode?f.remove():u.remove()}else{let{focusNode:u}=this.currentSelection;for(let f of d){let h=f.parentNode;h&&h.nodeName=="LI"&&(!u||Sg(e,u)!=h)&&f.remove()}}}else if((de||we)&&a.some(d=>d.nodeName=="BR")&&(e.input.lastKeyCode==8||e.input.lastKeyCode==46)){for(let d of a)if(d.nodeName=="BR"&&d.parentNode){let u=d.nextSibling;u&&u.nodeType==1&&u.contentEditable=="false"&&d.parentNode.removeChild(d)}}let c=null;i<0&&o&&e.input.lastFocus>Date.now()-200&&Math.max(e.input.lastTouch,e.input.lastClick.time)-1||o)&&(i>-1&&(e.docView.markDirty(i,s),xg(e)),this.handleDOMChange(i,s,l,a),e.docView&&e.docView.dirty?e.updateState(e.state):this.currentSelection.eq(r)||gt(e),this.currentSelection.set(r))}registerMutation(e,n){if(n.indexOf(e.target)>-1)return null;let r=this.view.docView.nearestDesc(e.target);if(e.type=="attributes"&&(r==this.view.docView||e.attributeName=="contenteditable"||e.attributeName=="style"&&!e.oldValue&&!e.target.getAttribute("style"))||!r||r.ignoreMutation(e))return null;if(e.type=="childList"){for(let d=0;do;g--){let y=r.childNodes[g-1],w=y.pmViewDesc;if(y.nodeName=="BR"&&!w){i=g;break}if(!w||w.size)break}let u=t.state.doc,f=t.someProp("domParser")||Xe.fromSchema(t.state.schema),h=u.resolve(s),p=null,m=f.parse(r,{topNode:h.parent,topMatch:h.parent.contentMatchAt(h.index()),topOpen:!0,from:o,to:i,preserveWhitespace:h.parent.type.whitespace=="pre"?"full":!0,findPositions:c,ruleFromNode:vg,context:h});if(c&&c[0].pos!=null){let g=c[0].pos,y=c[1]&&c[1].pos;y==null&&(y=g),p={anchor:g+s,head:y+s}}return{doc:m,sel:p,from:s,to:l}}function vg(t){let e=t.pmViewDesc;if(e)return e.parseRule();if(t.nodeName=="BR"&&t.parentNode){if(we&&/^(ul|ol)$/i.test(t.parentNode.nodeName)){let n=document.createElement("div");return n.appendChild(document.createElement("li")),{skip:n}}else if(t.parentNode.lastChild==t||we&&/^(tr|table)$/i.test(t.parentNode.nodeName))return{ignore:!0}}else if(t.nodeName=="IMG"&&t.getAttribute("mark-placeholder"))return{ignore:!0};return null}var Mg=/^(a|abbr|acronym|b|bd[io]|big|br|button|cite|code|data(list)?|del|dfn|em|i|img|ins|kbd|label|map|mark|meter|output|q|ruby|s|samp|small|span|strong|su[bp]|time|u|tt|var)$/i;function Tg(t,e,n,r,o){let i=t.input.compositionPendingChanges||(t.composing?t.input.compositionID:0);if(t.input.compositionPendingChanges=0,e<0){let k=t.input.lastSelectionTime>Date.now()-50?t.input.lastSelectionOrigin:null,O=Rs(t,k);if(O&&!t.state.selection.eq(O)){if(de&&mt&&t.input.lastKeyCode===13&&Date.now()-100A(t,Ut(13,"Enter"))))return;let T=t.state.tr.setSelection(O);k=="pointer"?T.setMeta("pointer",!0):k=="key"&&T.scrollIntoView(),i&&T.setMeta("composition",i),t.dispatch(T)}return}let s=t.state.doc.resolve(e),l=s.sharedDepth(n);e=s.before(l+1),n=t.state.doc.resolve(n).after(l+1);let a=t.state.selection,c=Cg(t,e,n),d=t.state.doc,u=d.slice(c.from,c.to),f,h;t.input.lastKeyCode===8&&Date.now()-100Date.now()-225||mt)&&o.some(k=>k.nodeType==1&&!Mg.test(k.nodeName))&&(!p||p.endA>=p.endB)&&t.someProp("handleKeyDown",k=>k(t,Ut(13,"Enter")))){t.input.lastIOSEnter=0;return}if(!p)if(r&&a instanceof D&&!a.empty&&a.$head.sameParent(a.$anchor)&&!t.composing&&!(c.sel&&c.sel.anchor!=c.sel.head))p={start:a.from,endA:a.to,endB:a.to};else{if(c.sel){let k=jc(t,t.state.doc,c.sel);if(k&&!k.eq(t.state.selection)){let O=t.state.tr.setSelection(k);i&&O.setMeta("composition",i),t.dispatch(O)}}return}t.state.selection.fromt.state.selection.from&&p.start<=t.state.selection.from+2&&t.state.selection.from>=c.from?p.start=t.state.selection.from:p.endA=t.state.selection.to-2&&t.state.selection.to<=c.to&&(p.endB+=t.state.selection.to-p.endA,p.endA=t.state.selection.to)),ve&&Rt<=11&&p.endB==p.start+1&&p.endA==p.start&&p.start>c.from&&c.doc.textBetween(p.start-c.from-1,p.start-c.from+1)==" \xA0"&&(p.start--,p.endA--,p.endB--);let m=c.doc.resolveNoCache(p.start-c.from),g=c.doc.resolveNoCache(p.endB-c.from),y=d.resolve(p.start),w=m.sameParent(g)&&m.parent.inlineContent&&y.end()>=p.endA;if((vn&&t.input.lastIOSEnter>Date.now()-225&&(!w||o.some(k=>k.nodeName=="DIV"||k.nodeName=="P"))||!w&&m.posk(t,Ut(13,"Enter")))){t.input.lastIOSEnter=0;return}if(t.state.selection.anchor>p.start&&Eg(d,p.start,p.endA,m,g)&&t.someProp("handleKeyDown",k=>k(t,Ut(8,"Backspace")))){mt&&de&&t.domObserver.suppressSelectionUpdates();return}de&&p.endB==p.start&&(t.input.lastChromeDelete=Date.now()),mt&&!w&&m.start()!=g.start()&&g.parentOffset==0&&m.depth==g.depth&&c.sel&&c.sel.anchor==c.sel.head&&c.sel.head==p.endA&&(p.endB-=2,g=c.doc.resolveNoCache(p.endB-c.from),setTimeout(()=>{t.someProp("handleKeyDown",function(k){return k(t,Ut(13,"Enter"))})},20));let b=p.start,C=p.endA,x=k=>{let O=k||t.state.tr.replace(b,C,c.doc.slice(p.start-c.from,p.endB-c.from));if(c.sel){let T=jc(t,O.doc,c.sel);T&&!(de&&t.composing&&T.empty&&(p.start!=p.endB||t.input.lastChromeDeletegt(t),20));let k=x(t.state.tr.delete(b,C)),O=d.resolve(p.start).marksAcross(d.resolve(p.endA));O&&k.ensureMarks(O),t.dispatch(k)}else if(p.endA==p.endB&&(S=Ag(m.parent.content.cut(m.parentOffset,g.parentOffset),y.parent.content.cut(y.parentOffset,p.endA-y.start())))){let k=x(t.state.tr);S.type=="add"?k.addMark(b,C,S.mark):k.removeMark(b,C,S.mark),t.dispatch(k)}else if(m.parent.child(m.index()).isText&&m.index()==g.index()-(g.textOffset?0:1)){let k=m.parent.textBetween(m.parentOffset,g.parentOffset),O=()=>x(t.state.tr.insertText(k,b,C));t.someProp("handleTextInput",T=>T(t,b,C,k,O))||t.dispatch(O())}else t.dispatch(x());else t.dispatch(x())}function jc(t,e,n){return Math.max(n.anchor,n.head)>e.content.size?null:Ds(t,e.resolve(n.anchor),e.resolve(n.head))}function Ag(t,e){let n=t.firstChild.marks,r=e.firstChild.marks,o=n,i=r,s,l,a;for(let d=0;dd.mark(l.addToSet(d.marks));else if(o.length==0&&i.length==1)l=i[0],s="remove",a=d=>d.mark(l.removeFromSet(d.marks));else return null;let c=[];for(let d=0;dn||us(s,!0,!1)0&&(e||t.indexAfter(r)==t.node(r).childCount);)r--,o++,e=!1;if(n){let i=t.node(r).maybeChild(t.indexAfter(r));for(;i&&!i.isLeaf;)i=i.firstChild,o++}return o}function Ng(t,e,n,r,o){let i=t.findDiffStart(e,n);if(i==null)return null;let{a:s,b:l}=t.findDiffEnd(e,n+t.size,n+e.size);if(o=="end"){let a=Math.max(0,i-Math.min(s,l));r-=s+a-i}if(s=s?i-r:0;i-=a,i&&i=l?i-r:0;i-=a,i&&i=56320&&e<=57343&&n>=55296&&n<=56319}var tr=class{constructor(e,n){this._root=null,this.focused=!1,this.trackWrites=null,this.mounted=!1,this.markCursor=null,this.cursorWrapper=null,this.lastSelectedViewDesc=void 0,this.input=new vs,this.prevDirectPlugins=[],this.pluginViews=[],this.requiresGeckoHackNode=!1,this.dragging=null,this._props=n,this.state=n.state,this.directPlugins=n.plugins||[],this.directPlugins.forEach(Xc),this.dispatch=this.dispatch.bind(this),this.dom=e&&e.mount||document.createElement("div"),e&&(e.appendChild?e.appendChild(this.dom):typeof e=="function"?e(this.dom):e.mount&&(this.mounted=!0)),this.editable=Jc(this),qc(this),this.nodeViews=Gc(this),this.docView=Tc(this.state.doc,Kc(this),ds(this),this.dom,this),this.domObserver=new Ns(this,(r,o,i,s)=>Tg(this,r,o,i,s)),this.domObserver.start(),Xm(this),this.updatePluginViews()}get composing(){return this.input.composing}get props(){if(this._props.state!=this.state){let e=this._props;this._props={};for(let n in e)this._props[n]=e[n];this._props.state=this.state}return this._props}update(e){e.handleDOMEvents!=this._props.handleDOMEvents&&Ms(this);let n=this._props;this._props=e,e.plugins&&(e.plugins.forEach(Xc),this.directPlugins=e.plugins),this.updateStateInner(e.state,n)}setProps(e){let n={};for(let r in this._props)n[r]=this._props[r];n.state=this.state;for(let r in e)n[r]=e[r];this.update(n)}updateState(e){this.updateStateInner(e,this._props)}updateStateInner(e,n){var r;let o=this.state,i=!1,s=!1;e.storedMarks&&this.composing&&(Sd(this),s=!0),this.state=e;let l=o.plugins!=e.plugins||this._props.plugins!=n.plugins;if(l||this._props.plugins!=n.plugins||this._props.nodeViews!=n.nodeViews){let h=Gc(this);Rg(h,this.nodeViews)&&(this.nodeViews=h,i=!0)}(l||n.handleDOMEvents!=this._props.handleDOMEvents)&&Ms(this),this.editable=Jc(this),qc(this);let a=ds(this),c=Kc(this),d=o.plugins!=e.plugins&&!o.doc.eq(e.doc)?"reset":e.scrollToSelection>o.scrollToSelection?"to selection":"preserve",u=i||!this.docView.matchesNode(e.doc,c,a);(u||!e.selection.eq(o.selection))&&(s=!0);let f=d=="preserve"&&s&&this.dom.style.overflowAnchor==null&&pm(this);if(s){this.domObserver.stop();let h=u&&(ve||de)&&!this.composing&&!o.selection.empty&&!e.selection.empty&&Og(o.selection,e.selection);if(u){let p=de?this.trackWrites=this.domSelectionRange().focusNode:null;this.composing&&(this.input.compositionNode=cg(this)),(i||!this.docView.update(e.doc,c,a,this))&&(this.docView.updateOuterDeco(c),this.docView.destroy(),this.docView=Tc(e.doc,c,a,this.dom,this)),p&&!this.trackWrites&&(h=!0)}h||!(this.input.mouseDown&&this.domObserver.currentSelection.eq(this.domSelectionRange())&&Lm(this))?gt(this,h):(dd(this,e.selection),this.domObserver.setCurSelection()),this.domObserver.start()}this.updatePluginViews(o),!((r=this.dragging)===null||r===void 0)&&r.node&&!o.doc.eq(e.doc)&&this.updateDraggedNode(this.dragging,o),d=="reset"?this.dom.scrollTop=0:d=="to selection"?this.scrollToSelection():f&&mm(f)}scrollToSelection(){let e=this.domSelectionRange().focusNode;if(!(!e||!this.dom.contains(e.nodeType==1?e:e.parentNode))){if(!this.someProp("handleScrollToSelection",n=>n(this)))if(this.state.selection instanceof L){let n=this.docView.domAfterPos(this.state.selection.from);n.nodeType==1&&xc(this,n.getBoundingClientRect(),e)}else xc(this,this.coordsAtPos(this.state.selection.head,1),e)}}destroyPluginViews(){let e;for(;e=this.pluginViews.pop();)e.destroy&&e.destroy()}updatePluginViews(e){if(!e||e.plugins!=this.state.plugins||this.directPlugins!=this.prevDirectPlugins){this.prevDirectPlugins=this.directPlugins,this.destroyPluginViews();for(let n=0;n0&&this.state.doc.nodeAt(i))==r.node&&(o=i)}this.dragging=new Jr(e.slice,e.move,o<0?void 0:L.create(this.state.doc,o))}someProp(e,n){let r=this._props&&this._props[e],o;if(r!=null&&(o=n?n(r):r))return o;for(let s=0;sn.ownerDocument.getSelection()),this._root=n}return e||document}updateRoot(){this._root=null}posAtCoords(e){return km(this,e)}coordsAtPos(e,n=1){return od(this,e,n)}domAtPos(e,n=0){return this.docView.domFromPos(e,n)}nodeDOM(e){let n=this.docView.descAt(e);return n?n.nodeDOM:null}posAtDOM(e,n,r=-1){let o=this.docView.posFromDOM(e,n,r);if(o==null)throw new RangeError("DOM position not inside the editor");return o}endOfTextblock(e,n){return Tm(this,n||this.state,e)}pasteHTML(e,n){return Zn(this,"",e,!1,n||new ClipboardEvent("paste"))}pasteText(e,n){return Zn(this,e,null,!0,n||new ClipboardEvent("paste"))}serializeForClipboard(e){return Is(this,e)}destroy(){this.docView&&(Ym(this),this.destroyPluginViews(),this.mounted?(this.docView.update(this.state.doc,[],ds(this),this),this.dom.textContent=""):this.dom.parentNode&&this.dom.parentNode.removeChild(this.dom),this.docView.destroy(),this.docView=null,om())}get isDestroyed(){return this.docView==null}dispatchEvent(e){return Zm(this,e)}domSelectionRange(){let e=this.domSelection();return e?we&&this.root.nodeType===11&&cm(this.dom.ownerDocument)==this.dom&&kg(this,e)||e:{focusNode:null,focusOffset:0,anchorNode:null,anchorOffset:0}}domSelection(){return this.root.getSelection()}};tr.prototype.dispatch=function(t){let e=this._props.dispatchTransaction;e?e.call(this,t):this.updateState(this.state.apply(t))};function Kc(t){let e=Object.create(null);return e.class="ProseMirror",e.contenteditable=String(t.editable),t.someProp("attributes",n=>{if(typeof n=="function"&&(n=n(t.state)),n)for(let r in n)r=="class"?e.class+=" "+n[r]:r=="style"?e.style=(e.style?e.style+";":"")+n[r]:!e[r]&&r!="contenteditable"&&r!="nodeName"&&(e[r]=String(n[r]))}),e.translate||(e.translate="no"),[te.node(0,t.state.doc.content.size,e)]}function qc(t){if(t.markCursor){let e=document.createElement("img");e.className="ProseMirror-separator",e.setAttribute("mark-placeholder","true"),e.setAttribute("alt",""),t.cursorWrapper={dom:e,deco:te.widget(t.state.selection.from,e,{raw:!0,marks:t.markCursor})}}else t.cursorWrapper=null}function Jc(t){return!t.someProp("editable",e=>e(t.state)===!1)}function Og(t,e){let n=Math.min(t.$anchor.sharedDepth(t.head),e.$anchor.sharedDepth(e.head));return t.$anchor.start(n)!=e.$anchor.start(n)}function Gc(t){let e=Object.create(null);function n(r){for(let o in r)Object.prototype.hasOwnProperty.call(e,o)||(e[o]=r[o])}return t.someProp("nodeViews",n),t.someProp("markViews",n),e}function Rg(t,e){let n=0,r=0;for(let o in t){if(t[o]!=e[o])return!0;n++}for(let o in e)r++;return n!=r}function Xc(t){if(t.spec.state||t.spec.filterTransaction||t.spec.appendTransaction)throw new RangeError("Plugins passed directly to the view must not have a state component")}var yt={8:"Backspace",9:"Tab",10:"Enter",12:"NumLock",13:"Enter",16:"Shift",17:"Control",18:"Alt",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",44:"PrintScreen",45:"Insert",46:"Delete",59:";",61:"=",91:"Meta",92:"Meta",106:"*",107:"+",108:",",109:"-",110:".",111:"/",144:"NumLock",145:"ScrollLock",160:"Shift",161:"Shift",162:"Control",163:"Control",164:"Alt",165:"Alt",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},to={48:")",49:"!",50:"@",51:"#",52:"$",53:"%",54:"^",55:"&",56:"*",57:"(",59:":",61:"+",173:"_",186:":",187:"+",188:"<",189:"_",190:">",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},Dg=typeof navigator<"u"&&/Mac/.test(navigator.platform),Ig=typeof navigator<"u"&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent);for(le=0;le<10;le++)yt[48+le]=yt[96+le]=String(le);var le;for(le=1;le<=24;le++)yt[le+111]="F"+le;var le;for(le=65;le<=90;le++)yt[le]=String.fromCharCode(le+32),to[le]=String.fromCharCode(le);var le;for(eo in yt)to.hasOwnProperty(eo)||(to[eo]=yt[eo]);var eo;function Ed(t){var e=Dg&&t.metaKey&&t.shiftKey&&!t.ctrlKey&&!t.altKey||Ig&&t.shiftKey&&t.key&&t.key.length==1||t.key=="Unidentified",n=!e&&t.key||(t.shiftKey?to:yt)[t.keyCode]||t.key||"Unidentified";return n=="Esc"&&(n="Escape"),n=="Del"&&(n="Delete"),n=="Left"&&(n="ArrowLeft"),n=="Up"&&(n="ArrowUp"),n=="Right"&&(n="ArrowRight"),n=="Down"&&(n="ArrowDown"),n}var Pg=typeof navigator<"u"&&/Mac|iP(hone|[oa]d)/.test(navigator.platform),Lg=typeof navigator<"u"&&/Win/.test(navigator.platform);function Bg(t){let e=t.split(/-(?!$)/),n=e[e.length-1];n=="Space"&&(n=" ");let r,o,i,s;for(let l=0;l{for(var n in e)Hg(t,n,{get:e[n],enumerable:!0})};function co(t){let{state:e,transaction:n}=t,{selection:r}=n,{doc:o}=n,{storedMarks:i}=n;return{...e,apply:e.apply.bind(e),applyTransaction:e.applyTransaction.bind(e),plugins:e.plugins,schema:e.schema,reconfigure:e.reconfigure.bind(e),toJSON:e.toJSON.bind(e),get storedMarks(){return i},get selection(){return r},get doc(){return o},get tr(){return r=n.selection,o=n.doc,i=n.storedMarks,n}}}var uo=class{constructor(t){this.editor=t.editor,this.rawCommands=this.editor.extensionManager.commands,this.customState=t.state}get hasCustomState(){return!!this.customState}get state(){return this.customState||this.editor.state}get commands(){let{rawCommands:t,editor:e,state:n}=this,{view:r}=e,{tr:o}=n,i=this.buildProps(o);return Object.fromEntries(Object.entries(t).map(([s,l])=>[s,(...c)=>{let d=l(...c)(i);return!o.getMeta("preventDispatch")&&!this.hasCustomState&&r.dispatch(o),d}]))}get chain(){return()=>this.createChain()}get can(){return()=>this.createCan()}createChain(t,e=!0){let{rawCommands:n,editor:r,state:o}=this,{view:i}=r,s=[],l=!!t,a=t||o.tr,c=()=>(!l&&e&&!a.getMeta("preventDispatch")&&!this.hasCustomState&&i.dispatch(a),s.every(u=>u===!0)),d={...Object.fromEntries(Object.entries(n).map(([u,f])=>[u,(...p)=>{let m=this.buildProps(a,e),g=f(...p)(m);return s.push(g),d}])),run:c};return d}createCan(t){let{rawCommands:e,state:n}=this,r=!1,o=t||n.tr,i=this.buildProps(o,r);return{...Object.fromEntries(Object.entries(e).map(([l,a])=>[l,(...c)=>a(...c)({...i,dispatch:void 0})])),chain:()=>this.createChain(o,r)}}buildProps(t,e=!0){let{rawCommands:n,editor:r,state:o}=this,{view:i}=r,s={tr:t,editor:r,view:i,state:co({state:o,transaction:t}),dispatch:e?()=>{}:void 0,chain:()=>this.createChain(t,e),can:()=>this.createCan(t),get commands(){return Object.fromEntries(Object.entries(n).map(([l,a])=>[l,(...c)=>a(...c)(s)]))}};return s}},Hd={};js(Hd,{blur:()=>$g,clearContent:()=>Fg,clearNodes:()=>Vg,command:()=>_g,createParagraphNear:()=>Wg,cut:()=>jg,deleteCurrentNode:()=>Ug,deleteNode:()=>Kg,deleteRange:()=>qg,deleteSelection:()=>Jg,enter:()=>Gg,exitCode:()=>Xg,extendMarkRange:()=>Yg,first:()=>Qg,focus:()=>ey,forEach:()=>ty,insertContent:()=>ny,insertContentAt:()=>iy,joinBackward:()=>ay,joinDown:()=>ly,joinForward:()=>cy,joinItemBackward:()=>dy,joinItemForward:()=>uy,joinTextblockBackward:()=>fy,joinTextblockForward:()=>hy,joinUp:()=>sy,keyboardShortcut:()=>my,lift:()=>gy,liftEmptyBlock:()=>yy,liftListItem:()=>by,newlineInCode:()=>wy,resetAttributes:()=>xy,scrollIntoView:()=>ky,selectAll:()=>Sy,selectNodeBackward:()=>Cy,selectNodeForward:()=>vy,selectParentNode:()=>My,selectTextblockEnd:()=>Ty,selectTextblockStart:()=>Ay,setContent:()=>Ey,setMark:()=>Vy,setMeta:()=>_y,setNode:()=>Wy,setNodeSelection:()=>jy,setTextDirection:()=>Uy,setTextSelection:()=>Ky,sinkListItem:()=>qy,splitBlock:()=>Jy,splitListItem:()=>Gy,toggleList:()=>Xy,toggleMark:()=>Yy,toggleNode:()=>Qy,toggleWrap:()=>Zy,undoInputRule:()=>eb,unsetAllMarks:()=>tb,unsetMark:()=>nb,unsetTextDirection:()=>rb,updateAttributes:()=>ob,wrapIn:()=>ib,wrapInList:()=>sb});var $g=()=>({editor:t,view:e})=>(requestAnimationFrame(()=>{var n;t.isDestroyed||(e.dom.blur(),(n=window?.getSelection())==null||n.removeAllRanges())}),!0),Fg=(t=!0)=>({commands:e})=>e.setContent("",{emitUpdate:t}),Vg=()=>({state:t,tr:e,dispatch:n})=>{let{selection:r}=e,{ranges:o}=r;return n&&o.forEach(({$from:i,$to:s})=>{t.doc.nodesBetween(i.pos,s.pos,(l,a)=>{if(l.type.isText)return;let{doc:c,mapping:d}=e,u=c.resolve(d.map(a)),f=c.resolve(d.map(a+l.nodeSize)),h=u.blockRange(f);if(!h)return;let p=ft(h);if(l.type.isTextblock){let{defaultType:m}=u.parent.contentMatchAt(u.index());e.setNodeMarkup(h.start,m)}(p||p===0)&&e.lift(h,p)})}),!0},_g=t=>e=>t(e),Wg=()=>({state:t,dispatch:e})=>es(t,e),jg=(t,e)=>({editor:n,tr:r})=>{let{state:o}=n,i=o.doc.slice(t.from,t.to);r.deleteRange(t.from,t.to);let s=r.mapping.map(e);return r.insert(s,i.content),r.setSelection(new D(r.doc.resolve(Math.max(s-1,0)))),!0},Ug=()=>({tr:t,dispatch:e})=>{let{selection:n}=t,r=n.$anchor.node();if(r.content.size>0)return!1;let o=t.selection.$anchor;for(let i=o.depth;i>0;i-=1)if(o.node(i).type===r.type){if(e){let l=o.before(i),a=o.after(i);t.delete(l,a).scrollIntoView()}return!0}return!1};function ne(t,e){if(typeof t=="string"){if(!e.nodes[t])throw Error(`There is no node type named '${t}'. Maybe you forgot to add the extension?`);return e.nodes[t]}return t}var Kg=t=>({tr:e,state:n,dispatch:r})=>{let o=ne(t,n.schema),i=e.selection.$anchor;for(let s=i.depth;s>0;s-=1)if(i.node(s).type===o){if(r){let a=i.before(s),c=i.after(s);e.delete(a,c).scrollIntoView()}return!0}return!1},qg=t=>({tr:e,dispatch:n})=>{let{from:r,to:o}=t;return n&&e.delete(r,o),!0},Jg=()=>({state:t,dispatch:e})=>Vr(t,e),Gg=()=>({commands:t})=>t.keyboardShortcut("Enter"),Xg=()=>({state:t,dispatch:e})=>Zi(t,e);function Us(t){return Object.prototype.toString.call(t)==="[object RegExp]"}function lo(t,e,n={strict:!0}){let r=Object.keys(e);return r.length?r.every(o=>n.strict?e[o]===t[o]:Us(e[o])?e[o].test(t[o]):e[o]===t[o]):!0}function $d(t,e,n={}){return t.find(r=>r.type===e&&lo(Object.fromEntries(Object.keys(n).map(o=>[o,r.attrs[o]])),n))}function Od(t,e,n={}){return!!$d(t,e,n)}function Ks(t,e,n){var r;if(!t||!e)return;let o=t.parent.childAfter(t.parentOffset);if((!o.node||!o.node.marks.some(d=>d.type===e))&&(o=t.parent.childBefore(t.parentOffset)),!o.node||!o.node.marks.some(d=>d.type===e)||(n=n||((r=o.node.marks[0])==null?void 0:r.attrs),!$d([...o.node.marks],e,n)))return;let s=o.index,l=t.start()+o.offset,a=s+1,c=l+o.node.nodeSize;for(;s>0&&Od([...t.parent.child(s-1).marks],e,n);)s-=1,l-=t.parent.child(s).nodeSize;for(;a({tr:n,state:r,dispatch:o})=>{let i=wt(t,r.schema),{doc:s,selection:l}=n,{$from:a,from:c,to:d}=l;if(o){let u=Ks(a,i,e);if(u&&u.from<=c&&u.to>=d){let f=D.create(s,u.from,u.to);n.setSelection(f)}}return!0},Qg=t=>e=>{let n=typeof t=="function"?t(e):t;for(let r=0;r({editor:n,view:r,tr:o,dispatch:i})=>{e={scrollIntoView:!0,...e};let s=()=>{(qs()||Zg())&&r.dom.focus(),requestAnimationFrame(()=>{n.isDestroyed||(r.focus(),e?.scrollIntoView&&n.commands.scrollIntoView())})};if(r.hasFocus()&&t===null||t===!1)return!0;if(i&&t===null&&!fo(n.state.selection))return s(),!0;let l=Fd(o.doc,t)||n.state.selection,a=n.state.selection.eq(l);return i&&(a||o.setSelection(l),a&&o.storedMarks&&o.setStoredMarks(o.storedMarks),s()),!0},ty=(t,e)=>n=>t.every((r,o)=>e(r,{...n,index:o})),ny=(t,e)=>({tr:n,commands:r})=>r.insertContentAt({from:n.selection.from,to:n.selection.to},t,e),Vd=t=>{let e=t.childNodes;for(let n=e.length-1;n>=0;n-=1){let r=e[n];r.nodeType===3&&r.nodeValue&&/^(\n\s\s|\n)$/.test(r.nodeValue)?t.removeChild(r):r.nodeType===1&&Vd(r)}return t};function no(t){if(typeof window>"u")throw new Error("[tiptap error]: there is no window object available, so this function cannot be used");let e=`${t}`,n=new window.DOMParser().parseFromString(e,"text/html").body;return Vd(n)}function ir(t,e,n){if(t instanceof ie||t instanceof v)return t;n={slice:!0,parseOptions:{},...n};let r=typeof t=="object"&&t!==null,o=typeof t=="string";if(r)try{if(Array.isArray(t)&&t.length>0)return v.fromArray(t.map(l=>e.nodeFromJSON(l)));let s=e.nodeFromJSON(t);return n.errorOnInvalidContent&&s.check(),s}catch(i){if(n.errorOnInvalidContent)throw new Error("[tiptap error]: Invalid JSON content",{cause:i});return console.warn("[tiptap warn]: Invalid content.","Passed value:",t,"Error:",i),ir("",e,n)}if(o){if(n.errorOnInvalidContent){let s=!1,l="",a=new fn({topNode:e.spec.topNode,marks:e.spec.marks,nodes:e.spec.nodes.append({__tiptap__private__unknown__catch__all__node:{content:"inline*",group:"block",parseDOM:[{tag:"*",getAttrs:c=>(s=!0,l=typeof c=="string"?c:c.outerHTML,null)}]}})});if(n.slice?Xe.fromSchema(a).parseSlice(no(t),n.parseOptions):Xe.fromSchema(a).parse(no(t),n.parseOptions),n.errorOnInvalidContent&&s)throw new Error("[tiptap error]: Invalid HTML content",{cause:new Error(`Invalid element found: ${l}`)})}let i=Xe.fromSchema(e);return n.slice?i.parseSlice(no(t),n.parseOptions).content:i.parse(no(t),n.parseOptions)}return ir("",e,n)}function ry(t,e,n){let r=t.steps.length-1;if(r{s===0&&(s=d)}),t.setSelection(I.near(t.doc.resolve(s),n))}var oy=t=>!("type"in t),iy=(t,e,n)=>({tr:r,dispatch:o,editor:i})=>{var s;if(o){n={parseOptions:i.options.parseOptions,updateSelection:!0,applyInputRules:!1,applyPasteRules:!1,...n};let l,a=g=>{i.emit("contentError",{editor:i,error:g,disableCollaboration:()=>{"collaboration"in i.storage&&typeof i.storage.collaboration=="object"&&i.storage.collaboration&&(i.storage.collaboration.isDisabled=!0)}})},c={preserveWhitespace:"full",...n.parseOptions};if(!n.errorOnInvalidContent&&!i.options.enableContentCheck&&i.options.emitContentError)try{ir(e,i.schema,{parseOptions:c,errorOnInvalidContent:!0})}catch(g){a(g)}try{l=ir(e,i.schema,{parseOptions:c,errorOnInvalidContent:(s=n.errorOnInvalidContent)!=null?s:i.options.enableContentCheck})}catch(g){return a(g),!1}let{from:d,to:u}=typeof t=="number"?{from:t,to:t}:{from:t.from,to:t.to},f=!0,h=!0;if((oy(l)?l:[l]).forEach(g=>{g.check(),f=f?g.isText&&g.marks.length===0:!1,h=h?g.isBlock:!1}),d===u&&h){let{parent:g}=r.doc.resolve(d);g.isTextblock&&!g.type.spec.code&&!g.childCount&&(d-=1,u+=1)}let m;if(f){if(Array.isArray(e))m=e.map(g=>g.text||"").join("");else if(e instanceof v){let g="";e.forEach(y=>{y.text&&(g+=y.text)}),m=g}else typeof e=="object"&&e&&e.text?m=e.text:m=e;r.insertText(m,d,u)}else{m=l;let g=r.doc.resolve(d),y=g.node(),w=g.parentOffset===0,b=y.isText||y.isTextblock,C=y.content.size>0;w&&b&&C&&(d=Math.max(0,d-1)),r.replaceWith(d,u,m)}n.updateSelection&&ry(r,r.steps.length-1,-1),n.applyInputRules&&r.setMeta("applyInputRules",{from:d,text:m}),n.applyPasteRules&&r.setMeta("applyPasteRules",{from:d,text:m})}return!0},sy=()=>({state:t,dispatch:e})=>ac(t,e),ly=()=>({state:t,dispatch:e})=>cc(t,e),ay=()=>({state:t,dispatch:e})=>Ui(t,e),cy=()=>({state:t,dispatch:e})=>Ji(t,e),dy=()=>({state:t,dispatch:e,tr:n})=>{try{let r=Wt(t.doc,t.selection.$from.pos,-1);return r==null?!1:(n.join(r,2),e&&e(n),!0)}catch{return!1}},uy=()=>({state:t,dispatch:e,tr:n})=>{try{let r=Wt(t.doc,t.selection.$from.pos,1);return r==null?!1:(n.join(r,2),e&&e(n),!0)}catch{return!1}},fy=()=>({state:t,dispatch:e})=>oc(t,e),hy=()=>({state:t,dispatch:e})=>ic(t,e);function _d(){return typeof navigator<"u"?/Mac/.test(navigator.platform):!1}function py(t){let e=t.split(/-(?!$)/),n=e[e.length-1];n==="Space"&&(n=" ");let r,o,i,s;for(let l=0;l({editor:e,view:n,tr:r,dispatch:o})=>{let i=py(t).split(/-(?!$)/),s=i.find(c=>!["Alt","Ctrl","Meta","Shift"].includes(c)),l=new KeyboardEvent("keydown",{key:s==="Space"?" ":s,altKey:i.includes("Alt"),ctrlKey:i.includes("Ctrl"),metaKey:i.includes("Meta"),shiftKey:i.includes("Shift"),bubbles:!0,cancelable:!0}),a=e.captureTransaction(()=>{n.someProp("handleKeyDown",c=>c(n,l))});return a?.steps.forEach(c=>{let d=c.map(r.mapping);d&&o&&r.maybeStep(d)}),!0};function Ze(t,e,n={}){let{from:r,to:o,empty:i}=t.selection,s=e?ne(e,t.schema):null,l=[];t.doc.nodesBetween(r,o,(u,f)=>{if(u.isText)return;let h=Math.max(r,f),p=Math.min(o,f+u.nodeSize);l.push({node:u,from:h,to:p})});let a=o-r,c=l.filter(u=>s?s.name===u.node.type.name:!0).filter(u=>lo(u.node.attrs,n,{strict:!1}));return i?!!c.length:c.reduce((u,f)=>u+f.to-f.from,0)>=a}var gy=(t,e={})=>({state:n,dispatch:r})=>{let o=ne(t,n.schema);return Ze(n,o,e)?dc(n,r):!1},yy=()=>({state:t,dispatch:e})=>ts(t,e),by=t=>({state:e,dispatch:n})=>{let r=ne(t,e.schema);return gc(r)(e,n)},wy=()=>({state:t,dispatch:e})=>Yi(t,e);function ho(t,e){return e.nodes[t]?"node":e.marks[t]?"mark":null}function Rd(t,e){let n=typeof e=="string"?[e]:e;return Object.keys(t).reduce((r,o)=>(n.includes(o)||(r[o]=t[o]),r),{})}var xy=(t,e)=>({tr:n,state:r,dispatch:o})=>{let i=null,s=null,l=ho(typeof t=="string"?t:t.name,r.schema);if(!l)return!1;l==="node"&&(i=ne(t,r.schema)),l==="mark"&&(s=wt(t,r.schema));let a=!1;return n.selection.ranges.forEach(c=>{r.doc.nodesBetween(c.$from.pos,c.$to.pos,(d,u)=>{i&&i===d.type&&(a=!0,o&&n.setNodeMarkup(u,void 0,Rd(d.attrs,e))),s&&d.marks.length&&d.marks.forEach(f=>{s===f.type&&(a=!0,o&&n.addMark(u,u+d.nodeSize,s.create(Rd(f.attrs,e))))})})}),a},ky=()=>({tr:t,dispatch:e})=>(e&&t.scrollIntoView(),!0),Sy=()=>({tr:t,dispatch:e})=>{if(e){let n=new ke(t.doc);t.setSelection(n)}return!0},Cy=()=>({state:t,dispatch:e})=>Ki(t,e),vy=()=>({state:t,dispatch:e})=>Gi(t,e),My=()=>({state:t,dispatch:e})=>uc(t,e),Ty=()=>({state:t,dispatch:e})=>rs(t,e),Ay=()=>({state:t,dispatch:e})=>ns(t,e);function _s(t,e,n={},r={}){return ir(t,e,{slice:!1,parseOptions:n,errorOnInvalidContent:r.errorOnInvalidContent})}var Ey=(t,{errorOnInvalidContent:e,emitUpdate:n=!0,parseOptions:r={}}={})=>({editor:o,tr:i,dispatch:s,commands:l})=>{let{doc:a}=i;if(r.preserveWhitespace!=="full"){let c=_s(t,o.schema,r,{errorOnInvalidContent:e??o.options.enableContentCheck});return s&&i.replaceWith(0,a.content.size,c).setMeta("preventUpdate",!n),!0}return s&&i.setMeta("preventUpdate",!n),l.insertContentAt({from:0,to:a.content.size},t,{parseOptions:r,errorOnInvalidContent:e??o.options.enableContentCheck})};function Wd(t,e){let n=wt(e,t.schema),{from:r,to:o,empty:i}=t.selection,s=[];i?(t.storedMarks&&s.push(...t.storedMarks),s.push(...t.selection.$head.marks())):t.doc.nodesBetween(r,o,a=>{s.push(...a.marks)});let l=s.find(a=>a.type.name===n.name);return l?{...l.attrs}:{}}function Js(t,e){let n=new Tt(t);return e.forEach(r=>{r.steps.forEach(o=>{n.step(o)})}),n}function sr(t){for(let e=0;e{e(r)&&n.push({node:r,pos:o})}),n}function jd(t,e,n){let r=[];return t.nodesBetween(e.from,e.to,(o,i)=>{n(o)&&r.push({node:o,pos:i})}),r}function Gs(t,e){for(let n=t.depth;n>0;n-=1){let r=t.node(n);if(e(r))return{pos:n>0?t.before(n):0,start:t.start(n),depth:n,node:r}}}function et(t){return e=>Gs(e.$from,t)}function B(t,e,n){return t.config[e]===void 0&&t.parent?B(t.parent,e,n):typeof t.config[e]=="function"?t.config[e].bind({...n,parent:t.parent?B(t.parent,e,n):null}):t.config[e]}function Xs(t){return t.map(e=>{let n={name:e.name,options:e.options,storage:e.storage},r=B(e,"addExtensions",n);return r?[e,...Xs(r())]:e}).flat(10)}function Ys(t,e){let n=ct.fromSchema(e).serializeFragment(t),o=document.implementation.createHTMLDocument().createElement("div");return o.appendChild(n),o.innerHTML}function Ud(t){return typeof t=="function"}function G(t,e=void 0,...n){return Ud(t)?e?t.bind(e)(...n):t(...n):t}function Ny(t={}){return Object.keys(t).length===0&&t.constructor===Object}function An(t){let e=t.filter(o=>o.type==="extension"),n=t.filter(o=>o.type==="node"),r=t.filter(o=>o.type==="mark");return{baseExtensions:e,nodeExtensions:n,markExtensions:r}}function Kd(t){let e=[],{nodeExtensions:n,markExtensions:r}=An(t),o=[...n,...r],i={default:null,validate:void 0,rendered:!0,renderHTML:null,parseHTML:null,keepOnSplit:!0,isRequired:!1};return t.forEach(s=>{let l={name:s.name,options:s.options,storage:s.storage,extensions:o},a=B(s,"addGlobalAttributes",l);if(!a)return;a().forEach(d=>{d.types.forEach(u=>{Object.entries(d.attributes).forEach(([f,h])=>{e.push({type:u,name:f,attribute:{...i,...h}})})})})}),o.forEach(s=>{let l={name:s.name,options:s.options,storage:s.storage},a=B(s,"addAttributes",l);if(!a)return;let c=a();Object.entries(c).forEach(([d,u])=>{let f={...i,...u};typeof f?.default=="function"&&(f.default=f.default()),f?.isRequired&&f?.default===void 0&&delete f.default,e.push({type:s.name,name:d,attribute:f})})}),e}function R(...t){return t.filter(e=>!!e).reduce((e,n)=>{let r={...e};return Object.entries(n).forEach(([o,i])=>{if(!r[o]){r[o]=i;return}if(o==="class"){let l=i?String(i).split(" "):[],a=r[o]?r[o].split(" "):[],c=l.filter(d=>!a.includes(d));r[o]=[...a,...c].join(" ")}else if(o==="style"){let l=i?i.split(";").map(d=>d.trim()).filter(Boolean):[],a=r[o]?r[o].split(";").map(d=>d.trim()).filter(Boolean):[],c=new Map;a.forEach(d=>{let[u,f]=d.split(":").map(h=>h.trim());c.set(u,f)}),l.forEach(d=>{let[u,f]=d.split(":").map(h=>h.trim());c.set(u,f)}),r[o]=Array.from(c.entries()).map(([d,u])=>`${d}: ${u}`).join("; ")}else r[o]=i}),r},{})}function ao(t,e){return e.filter(n=>n.type===t.type.name).filter(n=>n.attribute.rendered).map(n=>n.attribute.renderHTML?n.attribute.renderHTML(t.attrs)||{}:{[n.name]:t.attrs[n.name]}).reduce((n,r)=>R(n,r),{})}function Oy(t){return typeof t!="string"?t:t.match(/^[+-]?(?:\d*\.)?\d+$/)?Number(t):t==="true"?!0:t==="false"?!1:t}function Dd(t,e){return"style"in t?t:{...t,getAttrs:n=>{let r=t.getAttrs?t.getAttrs(n):t.attrs;if(r===!1)return!1;let o=e.reduce((i,s)=>{let l=s.attribute.parseHTML?s.attribute.parseHTML(n):Oy(n.getAttribute(s.name));return l==null?i:{...i,[s.name]:l}},{});return{...r,...o}}}}function Id(t){return Object.fromEntries(Object.entries(t).filter(([e,n])=>e==="attrs"&&Ny(n)?!1:n!=null))}function Pd(t){var e,n;let r={};return!((e=t?.attribute)!=null&&e.isRequired)&&"default"in(t?.attribute||{})&&(r.default=t.attribute.default),((n=t?.attribute)==null?void 0:n.validate)!==void 0&&(r.validate=t.attribute.validate),[t.name,r]}function Ry(t,e){var n;let r=Kd(t),{nodeExtensions:o,markExtensions:i}=An(t),s=(n=o.find(c=>B(c,"topNode")))==null?void 0:n.name,l=Object.fromEntries(o.map(c=>{let d=r.filter(y=>y.type===c.name),u={name:c.name,options:c.options,storage:c.storage,editor:e},f=t.reduce((y,w)=>{let b=B(w,"extendNodeSchema",u);return{...y,...b?b(c):{}}},{}),h=Id({...f,content:G(B(c,"content",u)),marks:G(B(c,"marks",u)),group:G(B(c,"group",u)),inline:G(B(c,"inline",u)),atom:G(B(c,"atom",u)),selectable:G(B(c,"selectable",u)),draggable:G(B(c,"draggable",u)),code:G(B(c,"code",u)),whitespace:G(B(c,"whitespace",u)),linebreakReplacement:G(B(c,"linebreakReplacement",u)),defining:G(B(c,"defining",u)),isolating:G(B(c,"isolating",u)),attrs:Object.fromEntries(d.map(Pd))}),p=G(B(c,"parseHTML",u));p&&(h.parseDOM=p.map(y=>Dd(y,d)));let m=B(c,"renderHTML",u);m&&(h.toDOM=y=>m({node:y,HTMLAttributes:ao(y,d)}));let g=B(c,"renderText",u);return g&&(h.toText=g),[c.name,h]})),a=Object.fromEntries(i.map(c=>{let d=r.filter(g=>g.type===c.name),u={name:c.name,options:c.options,storage:c.storage,editor:e},f=t.reduce((g,y)=>{let w=B(y,"extendMarkSchema",u);return{...g,...w?w(c):{}}},{}),h=Id({...f,inclusive:G(B(c,"inclusive",u)),excludes:G(B(c,"excludes",u)),group:G(B(c,"group",u)),spanning:G(B(c,"spanning",u)),code:G(B(c,"code",u)),attrs:Object.fromEntries(d.map(Pd))}),p=G(B(c,"parseHTML",u));p&&(h.parseDOM=p.map(g=>Dd(g,d)));let m=B(c,"renderHTML",u);return m&&(h.toDOM=g=>m({mark:g,HTMLAttributes:ao(g,d)})),[c.name,h]}));return new fn({topNode:s,nodes:l,marks:a})}function Dy(t){let e=t.filter((n,r)=>t.indexOf(n)!==r);return Array.from(new Set(e))}function Qs(t){return t.sort((n,r)=>{let o=B(n,"priority")||100,i=B(r,"priority")||100;return o>i?-1:or.name));return n.length&&console.warn(`[tiptap warn]: Duplicate extension names found: [${n.map(r=>`'${r}'`).join(", ")}]. This can lead to issues.`),e}function Jd(t,e,n){let{from:r,to:o}=e,{blockSeparator:i=` + +`,textSerializers:s={}}=n||{},l="";return t.nodesBetween(r,o,(a,c,d,u)=>{var f;a.isBlock&&c>r&&(l+=i);let h=s?.[a.type.name];if(h)return d&&(l+=h({node:a,pos:c,parent:d,index:u,range:e})),!1;a.isText&&(l+=(f=a?.text)==null?void 0:f.slice(Math.max(r,c)-c,o-c))}),l}function Iy(t,e){let n={from:0,to:t.content.size};return Jd(t,n,e)}function Gd(t){return Object.fromEntries(Object.entries(t.nodes).filter(([,e])=>e.spec.toText).map(([e,n])=>[e,n.spec.toText]))}function Py(t,e){let n=ne(e,t.schema),{from:r,to:o}=t.selection,i=[];t.doc.nodesBetween(r,o,l=>{i.push(l)});let s=i.reverse().find(l=>l.type.name===n.name);return s?{...s.attrs}:{}}function Zs(t,e){let n=ho(typeof e=="string"?e:e.name,t.schema);return n==="node"?Py(t,e):n==="mark"?Wd(t,e):{}}function Ly(t,e=JSON.stringify){let n={};return t.filter(r=>{let o=e(r);return Object.prototype.hasOwnProperty.call(n,o)?!1:n[o]=!0})}function By(t){let e=Ly(t);return e.length===1?e:e.filter((n,r)=>!e.filter((i,s)=>s!==r).some(i=>n.oldRange.from>=i.oldRange.from&&n.oldRange.to<=i.oldRange.to&&n.newRange.from>=i.newRange.from&&n.newRange.to<=i.newRange.to))}function el(t){let{mapping:e,steps:n}=t,r=[];return e.maps.forEach((o,i)=>{let s=[];if(o.ranges.length)o.forEach((l,a)=>{s.push({from:l,to:a})});else{let{from:l,to:a}=n[i];if(l===void 0||a===void 0)return;s.push({from:l,to:a})}s.forEach(({from:l,to:a})=>{let c=e.slice(i).map(l,-1),d=e.slice(i).map(a),u=e.invert().map(c,-1),f=e.invert().map(d);r.push({oldRange:{from:u,to:f},newRange:{from:c,to:d}})})}),By(r)}function po(t,e,n){let r=[];return t===e?n.resolve(t).marks().forEach(o=>{let i=n.resolve(t),s=Ks(i,o.type);s&&r.push({mark:o,...s})}):n.nodesBetween(t,e,(o,i)=>{!o||o?.nodeSize===void 0||r.push(...o.marks.map(s=>({from:i,to:i+o.nodeSize,mark:s})))}),r}var Xd=(t,e,n,r=20)=>{let o=t.doc.resolve(n),i=r,s=null;for(;i>0&&s===null;){let l=o.node(i);l?.type.name===e?s=l:i-=1}return[s,i]};function $s(t,e){return e.nodes[t]||e.marks[t]||null}function so(t,e,n){return Object.fromEntries(Object.entries(n).filter(([r])=>{let o=t.find(i=>i.type===e&&i.name===r);return o?o.attribute.keepOnSplit:!1}))}var zy=(t,e=500)=>{let n="",r=t.parentOffset;return t.parent.nodesBetween(Math.max(0,r-e),r,(o,i,s,l)=>{var a,c;let d=((c=(a=o.type.spec).toText)==null?void 0:c.call(a,{node:o,pos:i,parent:s,index:l}))||o.textContent||"%leaf%";n+=o.isAtom&&!o.isText?d:d.slice(0,Math.max(0,r-i))}),n};function Ws(t,e,n={}){let{empty:r,ranges:o}=t.selection,i=e?wt(e,t.schema):null;if(r)return!!(t.storedMarks||t.selection.$from.marks()).filter(u=>i?i.name===u.type.name:!0).find(u=>lo(u.attrs,n,{strict:!1}));let s=0,l=[];if(o.forEach(({$from:u,$to:f})=>{let h=u.pos,p=f.pos;t.doc.nodesBetween(h,p,(m,g)=>{if(!m.isText&&!m.marks.length)return;let y=Math.max(h,g),w=Math.min(p,g+m.nodeSize),b=w-y;s+=b,l.push(...m.marks.map(C=>({mark:C,from:y,to:w})))})}),s===0)return!1;let a=l.filter(u=>i?i.name===u.mark.type.name:!0).filter(u=>lo(u.mark.attrs,n,{strict:!1})).reduce((u,f)=>u+f.to-f.from,0),c=l.filter(u=>i?u.mark.type!==i&&u.mark.type.excludes(i):!0).reduce((u,f)=>u+f.to-f.from,0);return(a>0?a+c:a)>=s}function tl(t,e,n={}){if(!e)return Ze(t,null,n)||Ws(t,null,n);let r=ho(e,t.schema);return r==="node"?Ze(t,e,n):r==="mark"?Ws(t,e,n):!1}var Yd=(t,e)=>{let{$from:n,$to:r,$anchor:o}=t.selection;if(e){let i=et(l=>l.type.name===e)(t.selection);if(!i)return!1;let s=t.doc.resolve(i.pos+1);return o.pos+1===s.end()}return!(r.parentOffset{let{$from:e,$to:n}=t.selection;return!(e.parentOffset>0||e.pos!==n.pos)};function Ld(t,e){return Array.isArray(e)?e.some(n=>(typeof n=="string"?n:n.name)===t.name):e}function Bd(t,e){let{nodeExtensions:n}=An(e),r=n.find(s=>s.name===t);if(!r)return!1;let o={name:r.name,options:r.options,storage:r.storage},i=G(B(r,"group",o));return typeof i!="string"?!1:i.split(" ").includes("list")}function lr(t,{checkChildren:e=!0,ignoreWhitespace:n=!1}={}){var r;if(n){if(t.type.name==="hardBreak")return!0;if(t.isText)return/^\s*$/m.test((r=t.text)!=null?r:"")}if(t.isText)return!t.text;if(t.isAtom||t.isLeaf)return!1;if(t.content.childCount===0)return!0;if(e){let o=!0;return t.content.forEach(i=>{o!==!1&&(lr(i,{ignoreWhitespace:n,checkChildren:e})||(o=!1))}),o}return!1}function mo(t){return t instanceof L}var Zd=class eu{constructor(e){this.position=e}static fromJSON(e){return new eu(e.position)}toJSON(){return{position:this.position}}};function Hy(t,e){let n=e.mapping.mapResult(t.position);return{position:new Zd(n.pos),mapResult:n}}function $y(t){return new Zd(t)}function tu(t,e,n){let o=t.state.doc.content.size,i=bt(e,0,o),s=bt(n,0,o),l=t.coordsAtPos(i),a=t.coordsAtPos(s,-1),c=Math.min(l.top,a.top),d=Math.max(l.bottom,a.bottom),u=Math.min(l.left,a.left),f=Math.max(l.right,a.right),h=f-u,p=d-c,y={top:c,bottom:d,left:u,right:f,width:h,height:p,x:u,y:c};return{...y,toJSON:()=>y}}function Fy(t,e,n){var r;let{selection:o}=e,i=null;if(fo(o)&&(i=o.$cursor),i){let l=(r=t.storedMarks)!=null?r:i.marks();return i.parent.type.allowsMarkType(n)&&(!!n.isInSet(l)||!l.some(c=>c.type.excludes(n)))}let{ranges:s}=o;return s.some(({$from:l,$to:a})=>{let c=l.depth===0?t.doc.inlineContent&&t.doc.type.allowsMarkType(n):!1;return t.doc.nodesBetween(l.pos,a.pos,(d,u,f)=>{if(c)return!1;if(d.isInline){let h=!f||f.type.allowsMarkType(n),p=!!n.isInSet(d.marks)||!d.marks.some(m=>m.type.excludes(n));c=h&&p}return!c}),c})}var Vy=(t,e={})=>({tr:n,state:r,dispatch:o})=>{let{selection:i}=n,{empty:s,ranges:l}=i,a=wt(t,r.schema);if(o)if(s){let c=Wd(r,a);n.addStoredMark(a.create({...c,...e}))}else l.forEach(c=>{let d=c.$from.pos,u=c.$to.pos;r.doc.nodesBetween(d,u,(f,h)=>{let p=Math.max(h,d),m=Math.min(h+f.nodeSize,u);f.marks.find(y=>y.type===a)?f.marks.forEach(y=>{a===y.type&&n.addMark(p,m,a.create({...y.attrs,...e}))}):n.addMark(p,m,a.create(e))})});return Fy(r,n,a)},_y=(t,e)=>({tr:n})=>(n.setMeta(t,e),!0),Wy=(t,e={})=>({state:n,dispatch:r,chain:o})=>{let i=ne(t,n.schema),s;return n.selection.$anchor.sameParent(n.selection.$head)&&(s=n.selection.$anchor.parent.attrs),i.isTextblock?o().command(({commands:l})=>is(i,{...s,...e})(n)?!0:l.clearNodes()).command(({state:l})=>is(i,{...s,...e})(l,r)).run():(console.warn('[tiptap warn]: Currently "setNode()" only supports text block nodes.'),!1)},jy=t=>({tr:e,dispatch:n})=>{if(n){let{doc:r}=e,o=bt(t,0,r.content.size),i=L.create(r,o);e.setSelection(i)}return!0},Uy=(t,e)=>({tr:n,state:r,dispatch:o})=>{let{selection:i}=r,s,l;return typeof e=="number"?(s=e,l=e):e&&"from"in e&&"to"in e?(s=e.from,l=e.to):(s=i.from,l=i.to),o&&n.doc.nodesBetween(s,l,(a,c)=>{a.isText||n.setNodeMarkup(c,void 0,{...a.attrs,dir:t})}),!0},Ky=t=>({tr:e,dispatch:n})=>{if(n){let{doc:r}=e,{from:o,to:i}=typeof t=="number"?{from:t,to:t}:t,s=D.atStart(r).from,l=D.atEnd(r).to,a=bt(o,s,l),c=bt(i,s,l),d=D.create(r,a,c);e.setSelection(d)}return!0},qy=t=>({state:e,dispatch:n})=>{let r=ne(t,e.schema);return yc(r)(e,n)};function zd(t,e){let n=t.storedMarks||t.selection.$to.parentOffset&&t.selection.$from.marks();if(n){let r=n.filter(o=>e?.includes(o.type.name));t.tr.ensureMarks(r)}}var Jy=({keepMarks:t=!0}={})=>({tr:e,state:n,dispatch:r,editor:o})=>{let{selection:i,doc:s}=e,{$from:l,$to:a}=i,c=o.extensionManager.attributes,d=so(c,l.node().type.name,l.node().attrs);if(i instanceof L&&i.node.isBlock)return!l.parentOffset||!Ee(s,l.pos)?!1:(r&&(t&&zd(n,o.extensionManager.splittableMarks),e.split(l.pos).scrollIntoView()),!0);if(!l.parent.isBlock)return!1;let u=a.parentOffset===a.parent.content.size,f=l.depth===0?void 0:sr(l.node(-1).contentMatchAt(l.indexAfter(-1))),h=u&&f?[{type:f,attrs:d}]:void 0,p=Ee(e.doc,e.mapping.map(l.pos),1,h);if(!h&&!p&&Ee(e.doc,e.mapping.map(l.pos),1,f?[{type:f}]:void 0)&&(p=!0,h=f?[{type:f,attrs:d}]:void 0),r){if(p&&(i instanceof D&&e.deleteSelection(),e.split(e.mapping.map(l.pos),1,h),f&&!u&&!l.parentOffset&&l.parent.type!==f)){let m=e.mapping.map(l.before()),g=e.doc.resolve(m);l.node(-1).canReplaceWith(g.index(),g.index()+1,f)&&e.setNodeMarkup(e.mapping.map(l.before()),f)}t&&zd(n,o.extensionManager.splittableMarks),e.scrollIntoView()}return p},Gy=(t,e={})=>({tr:n,state:r,dispatch:o,editor:i})=>{var s;let l=ne(t,r.schema),{$from:a,$to:c}=r.selection,d=r.selection.node;if(d&&d.isBlock||a.depth<2||!a.sameParent(c))return!1;let u=a.node(-1);if(u.type!==l)return!1;let f=i.extensionManager.attributes;if(a.parent.content.size===0&&a.node(-1).childCount===a.indexAfter(-1)){if(a.depth===2||a.node(-3).type!==l||a.index(-2)!==a.node(-2).childCount-1)return!1;if(o){let y=v.empty,w=a.index(-1)?1:a.index(-2)?2:3;for(let O=a.depth-w;O>=a.depth-3;O-=1)y=v.from(a.node(O).copy(y));let b=a.indexAfter(-1){if(k>-1)return!1;O.isTextblock&&O.content.size===0&&(k=T+1)}),k>-1&&n.setSelection(D.near(n.doc.resolve(k))),n.scrollIntoView()}return!0}let h=c.pos===a.end()?u.contentMatchAt(0).defaultType:null,p={...so(f,u.type.name,u.attrs),...e},m={...so(f,a.node().type.name,a.node().attrs),...e};n.delete(a.pos,c.pos);let g=h?[{type:l,attrs:p},{type:h,attrs:m}]:[{type:l,attrs:p}];if(!Ee(n.doc,a.pos,2))return!1;if(o){let{selection:y,storedMarks:w}=r,{splittableMarks:b}=i.extensionManager,C=w||y.$to.parentOffset&&y.$from.marks();if(n.split(a.pos,2,g).scrollIntoView(),!C||!o)return!0;let x=C.filter(S=>b.includes(S.type.name));n.ensureMarks(x)}return!0},Fs=(t,e)=>{let n=et(s=>s.type===e)(t.selection);if(!n)return!0;let r=t.doc.resolve(Math.max(0,n.pos-1)).before(n.depth);if(r===void 0)return!0;let o=t.doc.nodeAt(r);return n.node.type===o?.type&&Re(t.doc,n.pos)&&t.join(n.pos),!0},Vs=(t,e)=>{let n=et(s=>s.type===e)(t.selection);if(!n)return!0;let r=t.doc.resolve(n.start).after(n.depth);if(r===void 0)return!0;let o=t.doc.nodeAt(r);return n.node.type===o?.type&&Re(t.doc,r)&&t.join(r),!0},Xy=(t,e,n,r={})=>({editor:o,tr:i,state:s,dispatch:l,chain:a,commands:c,can:d})=>{let{extensions:u,splittableMarks:f}=o.extensionManager,h=ne(t,s.schema),p=ne(e,s.schema),{selection:m,storedMarks:g}=s,{$from:y,$to:w}=m,b=y.blockRange(w),C=g||m.$to.parentOffset&&m.$from.marks();if(!b)return!1;let x=et(S=>Bd(S.type.name,u))(m);if(b.depth>=1&&x&&b.depth-x.depth<=1){if(x.node.type===h)return c.liftListItem(p);if(Bd(x.node.type.name,u)&&h.validContent(x.node.content)&&l)return a().command(()=>(i.setNodeMarkup(x.pos,h),!0)).command(()=>Fs(i,h)).command(()=>Vs(i,h)).run()}return!n||!C||!l?a().command(()=>d().wrapInList(h,r)?!0:c.clearNodes()).wrapInList(h,r).command(()=>Fs(i,h)).command(()=>Vs(i,h)).run():a().command(()=>{let S=d().wrapInList(h,r),k=C.filter(O=>f.includes(O.type.name));return i.ensureMarks(k),S?!0:c.clearNodes()}).wrapInList(h,r).command(()=>Fs(i,h)).command(()=>Vs(i,h)).run()},Yy=(t,e={},n={})=>({state:r,commands:o})=>{let{extendEmptyMarkRange:i=!1}=n,s=wt(t,r.schema);return Ws(r,s,e)?o.unsetMark(s,{extendEmptyMarkRange:i}):o.setMark(s,e)},Qy=(t,e,n={})=>({state:r,commands:o})=>{let i=ne(t,r.schema),s=ne(e,r.schema),l=Ze(r,i,n),a;return r.selection.$anchor.sameParent(r.selection.$head)&&(a=r.selection.$anchor.parent.attrs),l?o.setNode(s,a):o.setNode(i,{...a,...n})},Zy=(t,e={})=>({state:n,commands:r})=>{let o=ne(t,n.schema);return Ze(n,o,e)?r.lift(o):r.wrapIn(o,e)},eb=()=>({state:t,dispatch:e})=>{let n=t.plugins;for(let r=0;r=0;a-=1)s.step(l.steps[a].invert(l.docs[a]));if(i.text){let a=s.doc.resolve(i.from).marks();s.replaceWith(i.from,i.to,t.schema.text(i.text,a))}else s.delete(i.from,i.to)}return!0}}return!1},tb=()=>({tr:t,dispatch:e})=>{let{selection:n}=t,{empty:r,ranges:o}=n;return r||e&&o.forEach(i=>{t.removeMark(i.$from.pos,i.$to.pos)}),!0},nb=(t,e={})=>({tr:n,state:r,dispatch:o})=>{var i;let{extendEmptyMarkRange:s=!1}=e,{selection:l}=n,a=wt(t,r.schema),{$from:c,empty:d,ranges:u}=l;if(!o)return!0;if(d&&s){let{from:f,to:h}=l,p=(i=c.marks().find(g=>g.type===a))==null?void 0:i.attrs,m=Ks(c,a,p);m&&(f=m.from,h=m.to),n.removeMark(f,h,a)}else u.forEach(f=>{n.removeMark(f.$from.pos,f.$to.pos,a)});return n.removeStoredMark(a),!0},rb=t=>({tr:e,state:n,dispatch:r})=>{let{selection:o}=n,i,s;return typeof t=="number"?(i=t,s=t):t&&"from"in t&&"to"in t?(i=t.from,s=t.to):(i=o.from,s=o.to),r&&e.doc.nodesBetween(i,s,(l,a)=>{if(l.isText)return;let c={...l.attrs};delete c.dir,e.setNodeMarkup(a,void 0,c)}),!0},ob=(t,e={})=>({tr:n,state:r,dispatch:o})=>{let i=null,s=null,l=ho(typeof t=="string"?t:t.name,r.schema);if(!l)return!1;l==="node"&&(i=ne(t,r.schema)),l==="mark"&&(s=wt(t,r.schema));let a=!1;return n.selection.ranges.forEach(c=>{let d=c.$from.pos,u=c.$to.pos,f,h,p,m;n.selection.empty?r.doc.nodesBetween(d,u,(g,y)=>{i&&i===g.type&&(a=!0,p=Math.max(y,d),m=Math.min(y+g.nodeSize,u),f=y,h=g)}):r.doc.nodesBetween(d,u,(g,y)=>{y=d&&y<=u&&(i&&i===g.type&&(a=!0,o&&n.setNodeMarkup(y,void 0,{...g.attrs,...e})),s&&g.marks.length&&g.marks.forEach(w=>{if(s===w.type&&(a=!0,o)){let b=Math.max(y,d),C=Math.min(y+g.nodeSize,u);n.addMark(b,C,s.create({...w.attrs,...e}))}}))}),h&&(f!==void 0&&o&&n.setNodeMarkup(f,void 0,{...h.attrs,...e}),s&&h.marks.length&&h.marks.forEach(g=>{s===g.type&&o&&n.addMark(p,m,s.create({...g.attrs,...e}))}))}),a},ib=(t,e={})=>({state:n,dispatch:r})=>{let o=ne(t,n.schema);return pc(o,e)(n,r)},sb=(t,e={})=>({state:n,dispatch:r})=>{let o=ne(t,n.schema);return mc(o,e)(n,r)},lb=class{constructor(){this.callbacks={}}on(t,e){return this.callbacks[t]||(this.callbacks[t]=[]),this.callbacks[t].push(e),this}emit(t,...e){let n=this.callbacks[t];return n&&n.forEach(r=>r.apply(this,e)),this}off(t,e){let n=this.callbacks[t];return n&&(e?this.callbacks[t]=n.filter(r=>r!==e):delete this.callbacks[t]),this}once(t,e){let n=(...r)=>{this.off(t,n),e.apply(this,r)};return this.on(t,n)}removeAllListeners(){this.callbacks={}}},go=class{constructor(t){var e;this.find=t.find,this.handler=t.handler,this.undoable=(e=t.undoable)!=null?e:!0}},ab=(t,e)=>{if(Us(e))return e.exec(t);let n=e(t);if(!n)return null;let r=[n.text];return r.index=n.index,r.input=t,r.data=n.data,n.replaceWith&&(n.text.includes(n.replaceWith)||console.warn('[tiptap warn]: "inputRuleMatch.replaceWith" must be part of "inputRuleMatch.text".'),r.push(n.replaceWith)),r};function ro(t){var e;let{editor:n,from:r,to:o,text:i,rules:s,plugin:l}=t,{view:a}=n;if(a.composing)return!1;let c=a.state.doc.resolve(r);if(c.parent.type.spec.code||(e=c.nodeBefore||c.nodeAfter)!=null&&e.marks.find(f=>f.type.spec.code))return!1;let d=!1,u=zy(c)+i;return s.forEach(f=>{if(d)return;let h=ab(u,f.find);if(!h)return;let p=a.state.tr,m=co({state:a.state,transaction:p}),g={from:r-(h[0].length-i.length),to:o},{commands:y,chain:w,can:b}=new uo({editor:n,state:m});f.handler({state:m,range:g,match:h,commands:y,chain:w,can:b})===null||!p.steps.length||(f.undoable&&p.setMeta(l,{transform:p,from:r,to:o,text:i}),a.dispatch(p),d=!0)}),d}function cb(t){let{editor:e,rules:n}=t,r=new P({state:{init(){return null},apply(o,i,s){let l=o.getMeta(r);if(l)return l;let a=o.getMeta("applyInputRules");return!!a&&setTimeout(()=>{let{text:d}=a;typeof d=="string"?d=d:d=Ys(v.from(d),s.schema);let{from:u}=a,f=u+d.length;ro({editor:e,from:u,to:f,text:d,rules:n,plugin:r})}),o.selectionSet||o.docChanged?null:i}},props:{handleTextInput(o,i,s,l){return ro({editor:e,from:i,to:s,text:l,rules:n,plugin:r})},handleDOMEvents:{compositionend:o=>(setTimeout(()=>{let{$cursor:i}=o.state.selection;i&&ro({editor:e,from:i.pos,to:i.pos,text:"",rules:n,plugin:r})}),!1)},handleKeyDown(o,i){if(i.key!=="Enter")return!1;let{$cursor:s}=o.state.selection;return s?ro({editor:e,from:s.pos,to:s.pos,text:` +`,rules:n,plugin:r}):!1}},isInputRules:!0});return r}function db(t){return Object.prototype.toString.call(t).slice(8,-1)}function oo(t){return db(t)!=="Object"?!1:t.constructor===Object&&Object.getPrototypeOf(t)===Object.prototype}function nu(t,e){let n={...t};return oo(t)&&oo(e)&&Object.keys(e).forEach(r=>{oo(e[r])&&oo(t[r])?n[r]=nu(t[r],e[r]):n[r]=e[r]}),n}var nl=class{constructor(t={}){this.type="extendable",this.parent=null,this.child=null,this.name="",this.config={name:this.name},this.config={...this.config,...t},this.name=this.config.name}get options(){return{...G(B(this,"addOptions",{name:this.name}))||{}}}get storage(){return{...G(B(this,"addStorage",{name:this.name,options:this.options}))||{}}}configure(t={}){let e=this.extend({...this.config,addOptions:()=>nu(this.options,t)});return e.name=this.name,e.parent=this.parent,e}extend(t={}){let e=new this.constructor({...this.config,...t});return e.parent=this,this.child=e,e.name="name"in t?t.name:e.parent.name,e}},ee=class ru extends nl{constructor(){super(...arguments),this.type="mark"}static create(e={}){let n=typeof e=="function"?e():e;return new ru(n)}static handleExit({editor:e,mark:n}){let{tr:r}=e.state,o=e.state.selection.$from;if(o.pos===o.end()){let s=o.marks();if(!!!s.find(c=>c?.type.name===n.name))return!1;let a=s.find(c=>c?.type.name===n.name);return a&&r.removeStoredMark(a),r.insertText(" ",o.pos),e.view.dispatch(r),!0}return!1}configure(e){return super.configure(e)}extend(e){let n=typeof e=="function"?e():e;return super.extend(n)}};function ub(t){return typeof t=="number"}var fb=class{constructor(t){this.find=t.find,this.handler=t.handler}},hb=(t,e,n)=>{if(Us(e))return[...t.matchAll(e)];let r=e(t,n);return r?r.map(o=>{let i=[o.text];return i.index=o.index,i.input=t,i.data=o.data,o.replaceWith&&(o.text.includes(o.replaceWith)||console.warn('[tiptap warn]: "pasteRuleMatch.replaceWith" must be part of "pasteRuleMatch.text".'),i.push(o.replaceWith)),i}):[]};function pb(t){let{editor:e,state:n,from:r,to:o,rule:i,pasteEvent:s,dropEvent:l}=t,{commands:a,chain:c,can:d}=new uo({editor:e,state:n}),u=[];return n.doc.nodesBetween(r,o,(h,p)=>{var m,g,y,w,b;if((g=(m=h.type)==null?void 0:m.spec)!=null&&g.code||!(h.isText||h.isTextblock||h.isInline))return;let C=(b=(w=(y=h.content)==null?void 0:y.size)!=null?w:h.nodeSize)!=null?b:0,x=Math.max(r,p),S=Math.min(o,p+C);if(x>=S)return;let k=h.isText?h.text||"":h.textBetween(x-p,S-p,void 0,"\uFFFC");hb(k,i.find,s).forEach(T=>{if(T.index===void 0)return;let A=x+T.index+1,$=A+T[0].length,z={from:n.tr.mapping.map(A),to:n.tr.mapping.map($)},K=i.handler({state:n,range:z,match:T,commands:a,chain:c,can:d,pasteEvent:s,dropEvent:l});u.push(K)})}),u.every(h=>h!==null)}var io=null,mb=t=>{var e;let n=new ClipboardEvent("paste",{clipboardData:new DataTransfer});return(e=n.clipboardData)==null||e.setData("text/html",t),n};function gb(t){let{editor:e,rules:n}=t,r=null,o=!1,i=!1,s=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null,l;try{l=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{l=null}let a=({state:d,from:u,to:f,rule:h,pasteEvt:p})=>{let m=d.tr,g=co({state:d,transaction:m});if(!(!pb({editor:e,state:g,from:Math.max(u-1,0),to:f.b-1,rule:h,pasteEvent:p,dropEvent:l})||!m.steps.length)){try{l=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{l=null}return s=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null,m}};return n.map(d=>new P({view(u){let f=p=>{var m;r=(m=u.dom.parentElement)!=null&&m.contains(p.target)?u.dom.parentElement:null,r&&(io=e)},h=()=>{io&&(io=null)};return window.addEventListener("dragstart",f),window.addEventListener("dragend",h),{destroy(){window.removeEventListener("dragstart",f),window.removeEventListener("dragend",h)}}},props:{handleDOMEvents:{drop:(u,f)=>{if(i=r===u.dom.parentElement,l=f,!i){let h=io;h?.isEditable&&setTimeout(()=>{let p=h.state.selection;p&&h.commands.deleteRange({from:p.from,to:p.to})},10)}return!1},paste:(u,f)=>{var h;let p=(h=f.clipboardData)==null?void 0:h.getData("text/html");return s=f,o=!!p?.includes("data-pm-slice"),!1}}},appendTransaction:(u,f,h)=>{let p=u[0],m=p.getMeta("uiEvent")==="paste"&&!o,g=p.getMeta("uiEvent")==="drop"&&!i,y=p.getMeta("applyPasteRules"),w=!!y;if(!m&&!g&&!w)return;if(w){let{text:x}=y;typeof x=="string"?x=x:x=Ys(v.from(x),h.schema);let{from:S}=y,k=S+x.length,O=mb(x);return a({rule:d,state:h,from:S,to:{b:k},pasteEvt:O})}let b=f.doc.content.findDiffStart(h.doc.content),C=f.doc.content.findDiffEnd(h.doc.content);if(!(!ub(b)||!C||b===C.b))return a({rule:d,state:h,from:b,to:C,pasteEvt:s})}}))}var yo=class{constructor(t,e){this.splittableMarks=[],this.editor=e,this.baseExtensions=t,this.extensions=qd(t),this.schema=Ry(this.extensions,e),this.setupExtensions()}get commands(){return this.extensions.reduce((t,e)=>{let n={name:e.name,options:e.options,storage:this.editor.extensionStorage[e.name],editor:this.editor,type:$s(e.name,this.schema)},r=B(e,"addCommands",n);return r?{...t,...r()}:t},{})}get plugins(){let{editor:t}=this;return Qs([...this.extensions].reverse()).flatMap(r=>{let o={name:r.name,options:r.options,storage:this.editor.extensionStorage[r.name],editor:t,type:$s(r.name,this.schema)},i=[],s=B(r,"addKeyboardShortcuts",o),l={};if(r.type==="mark"&&B(r,"exitable",o)&&(l.ArrowRight=()=>ee.handleExit({editor:t,mark:r})),s){let f=Object.fromEntries(Object.entries(s()).map(([h,p])=>[h,()=>p({editor:t})]));l={...l,...f}}let a=Nd(l);i.push(a);let c=B(r,"addInputRules",o);if(Ld(r,t.options.enableInputRules)&&c){let f=c();if(f&&f.length){let h=cb({editor:t,rules:f}),p=Array.isArray(h)?h:[h];i.push(...p)}}let d=B(r,"addPasteRules",o);if(Ld(r,t.options.enablePasteRules)&&d){let f=d();if(f&&f.length){let h=gb({editor:t,rules:f});i.push(...h)}}let u=B(r,"addProseMirrorPlugins",o);if(u){let f=u();i.push(...f)}return i})}get attributes(){return Kd(this.extensions)}get nodeViews(){let{editor:t}=this,{nodeExtensions:e}=An(this.extensions);return Object.fromEntries(e.filter(n=>!!B(n,"addNodeView")).map(n=>{let r=this.attributes.filter(a=>a.type===n.name),o={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:ne(n.name,this.schema)},i=B(n,"addNodeView",o);if(!i)return[];let s=i();if(!s)return[];let l=(a,c,d,u,f)=>{let h=ao(a,r);return s({node:a,view:c,getPos:d,decorations:u,innerDecorations:f,editor:t,extension:n,HTMLAttributes:h})};return[n.name,l]}))}get markViews(){let{editor:t}=this,{markExtensions:e}=An(this.extensions);return Object.fromEntries(e.filter(n=>!!B(n,"addMarkView")).map(n=>{let r=this.attributes.filter(l=>l.type===n.name),o={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:wt(n.name,this.schema)},i=B(n,"addMarkView",o);if(!i)return[];let s=(l,a,c)=>{let d=ao(l,r);return i()({mark:l,view:a,inline:c,editor:t,extension:n,HTMLAttributes:d,updateAttributes:u=>{Ab(l,t,u)}})};return[n.name,s]}))}setupExtensions(){let t=this.extensions;this.editor.extensionStorage=Object.fromEntries(t.map(e=>[e.name,e.storage])),t.forEach(e=>{var n;let r={name:e.name,options:e.options,storage:this.editor.extensionStorage[e.name],editor:this.editor,type:$s(e.name,this.schema)};e.type==="mark"&&((n=G(B(e,"keepOnSplit",r)))==null||n)&&this.splittableMarks.push(e.name);let o=B(e,"onBeforeCreate",r),i=B(e,"onCreate",r),s=B(e,"onUpdate",r),l=B(e,"onSelectionUpdate",r),a=B(e,"onTransaction",r),c=B(e,"onFocus",r),d=B(e,"onBlur",r),u=B(e,"onDestroy",r);o&&this.editor.on("beforeCreate",o),i&&this.editor.on("create",i),s&&this.editor.on("update",s),l&&this.editor.on("selectionUpdate",l),a&&this.editor.on("transaction",a),c&&this.editor.on("focus",c),d&&this.editor.on("blur",d),u&&this.editor.on("destroy",u)})}};yo.resolve=qd;yo.sort=Qs;yo.flatten=Xs;var yb={};js(yb,{ClipboardTextSerializer:()=>iu,Commands:()=>su,Delete:()=>lu,Drop:()=>au,Editable:()=>cu,FocusEvents:()=>uu,Keymap:()=>fu,Paste:()=>hu,Tabindex:()=>pu,TextDirection:()=>mu,focusEventsPluginKey:()=>du});var U=class ou extends nl{constructor(){super(...arguments),this.type="extension"}static create(e={}){let n=typeof e=="function"?e():e;return new ou(n)}configure(e){return super.configure(e)}extend(e){let n=typeof e=="function"?e():e;return super.extend(n)}},iu=U.create({name:"clipboardTextSerializer",addOptions(){return{blockSeparator:void 0}},addProseMirrorPlugins(){return[new P({key:new H("clipboardTextSerializer"),props:{clipboardTextSerializer:()=>{let{editor:t}=this,{state:e,schema:n}=t,{doc:r,selection:o}=e,{ranges:i}=o,s=Math.min(...i.map(d=>d.$from.pos)),l=Math.max(...i.map(d=>d.$to.pos)),a=Gd(n);return Jd(r,{from:s,to:l},{...this.options.blockSeparator!==void 0?{blockSeparator:this.options.blockSeparator}:{},textSerializers:a})}}})]}}),su=U.create({name:"commands",addCommands(){return{...Hd}}}),lu=U.create({name:"delete",onUpdate({transaction:t,appendedTransactions:e}){var n,r,o;let i=()=>{var s,l,a,c;if((c=(a=(l=(s=this.editor.options.coreExtensionOptions)==null?void 0:s.delete)==null?void 0:l.filterTransaction)==null?void 0:a.call(l,t))!=null?c:t.getMeta("y-sync$"))return;let d=Js(t.before,[t,...e]);el(d).forEach(h=>{d.mapping.mapResult(h.oldRange.from).deletedAfter&&d.mapping.mapResult(h.oldRange.to).deletedBefore&&d.before.nodesBetween(h.oldRange.from,h.oldRange.to,(p,m)=>{let g=m+p.nodeSize-2,y=h.oldRange.from<=m&&g<=h.oldRange.to;this.editor.emit("delete",{type:"node",node:p,from:m,to:g,newFrom:d.mapping.map(m),newTo:d.mapping.map(g),deletedRange:h.oldRange,newRange:h.newRange,partial:!y,editor:this.editor,transaction:t,combinedTransform:d})})});let f=d.mapping;d.steps.forEach((h,p)=>{var m,g;if(h instanceof ut){let y=f.slice(p).map(h.from,-1),w=f.slice(p).map(h.to),b=f.invert().map(y,-1),C=f.invert().map(w),x=(m=d.doc.nodeAt(y-1))==null?void 0:m.marks.some(k=>k.eq(h.mark)),S=(g=d.doc.nodeAt(w))==null?void 0:g.marks.some(k=>k.eq(h.mark));this.editor.emit("delete",{type:"mark",mark:h.mark,from:h.from,to:h.to,deletedRange:{from:b,to:C},newRange:{from:y,to:w},partial:!!(S||x),editor:this.editor,transaction:t,combinedTransform:d})}})};(o=(r=(n=this.editor.options.coreExtensionOptions)==null?void 0:n.delete)==null?void 0:r.async)==null||o?setTimeout(i,0):i()}}),au=U.create({name:"drop",addProseMirrorPlugins(){return[new P({key:new H("tiptapDrop"),props:{handleDrop:(t,e,n,r)=>{this.editor.emit("drop",{editor:this.editor,event:e,slice:n,moved:r})}}})]}}),cu=U.create({name:"editable",addProseMirrorPlugins(){return[new P({key:new H("editable"),props:{editable:()=>this.editor.options.editable}})]}}),du=new H("focusEvents"),uu=U.create({name:"focusEvents",addProseMirrorPlugins(){let{editor:t}=this;return[new P({key:du,props:{handleDOMEvents:{focus:(e,n)=>{t.isFocused=!0;let r=t.state.tr.setMeta("focus",{event:n}).setMeta("addToHistory",!1);return e.dispatch(r),!1},blur:(e,n)=>{t.isFocused=!1;let r=t.state.tr.setMeta("blur",{event:n}).setMeta("addToHistory",!1);return e.dispatch(r),!1}}}})]}}),fu=U.create({name:"keymap",addKeyboardShortcuts(){let t=()=>this.editor.commands.first(({commands:s})=>[()=>s.undoInputRule(),()=>s.command(({tr:l})=>{let{selection:a,doc:c}=l,{empty:d,$anchor:u}=a,{pos:f,parent:h}=u,p=u.parent.isTextblock&&f>0?l.doc.resolve(f-1):u,m=p.parent.type.spec.isolating,g=u.pos-u.parentOffset,y=m&&p.parent.childCount===1?g===u.pos:I.atStart(c).from===f;return!d||!h.type.isTextblock||h.textContent.length||!y||y&&u.parent.type.name==="paragraph"?!1:s.clearNodes()}),()=>s.deleteSelection(),()=>s.joinBackward(),()=>s.selectNodeBackward()]),e=()=>this.editor.commands.first(({commands:s})=>[()=>s.deleteSelection(),()=>s.deleteCurrentNode(),()=>s.joinForward(),()=>s.selectNodeForward()]),r={Enter:()=>this.editor.commands.first(({commands:s})=>[()=>s.newlineInCode(),()=>s.createParagraphNear(),()=>s.liftEmptyBlock(),()=>s.splitBlock()]),"Mod-Enter":()=>this.editor.commands.exitCode(),Backspace:t,"Mod-Backspace":t,"Shift-Backspace":t,Delete:e,"Mod-Delete":e,"Mod-a":()=>this.editor.commands.selectAll()},o={...r},i={...r,"Ctrl-h":t,"Alt-Backspace":t,"Ctrl-d":e,"Ctrl-Alt-Backspace":e,"Alt-Delete":e,"Alt-d":e,"Ctrl-a":()=>this.editor.commands.selectTextblockStart(),"Ctrl-e":()=>this.editor.commands.selectTextblockEnd()};return qs()||_d()?i:o},addProseMirrorPlugins(){return[new P({key:new H("clearDocument"),appendTransaction:(t,e,n)=>{if(t.some(m=>m.getMeta("composition")))return;let r=t.some(m=>m.docChanged)&&!e.doc.eq(n.doc),o=t.some(m=>m.getMeta("preventClearDocument"));if(!r||o)return;let{empty:i,from:s,to:l}=e.selection,a=I.atStart(e.doc).from,c=I.atEnd(e.doc).to;if(i||!(s===a&&l===c)||!lr(n.doc))return;let f=n.tr,h=co({state:n,transaction:f}),{commands:p}=new uo({editor:this.editor,state:h});if(p.clearNodes(),!!f.steps.length)return f}})]}}),hu=U.create({name:"paste",addProseMirrorPlugins(){return[new P({key:new H("tiptapPaste"),props:{handlePaste:(t,e,n)=>{this.editor.emit("paste",{editor:this.editor,event:e,slice:n})}}})]}}),pu=U.create({name:"tabindex",addProseMirrorPlugins(){return[new P({key:new H("tabindex"),props:{attributes:()=>this.editor.isEditable?{tabindex:"0"}:{}}})]}}),mu=U.create({name:"textDirection",addOptions(){return{direction:void 0}},addGlobalAttributes(){if(!this.options.direction)return[];let{nodeExtensions:t}=An(this.extensions);return[{types:t.filter(e=>e.name!=="text").map(e=>e.name),attributes:{dir:{default:this.options.direction,parseHTML:e=>{let n=e.getAttribute("dir");return n&&(n==="ltr"||n==="rtl"||n==="auto")?n:this.options.direction},renderHTML:e=>e.dir?{dir:e.dir}:{}}}}]},addProseMirrorPlugins(){return[new P({key:new H("textDirection"),props:{attributes:()=>{let t=this.options.direction;return t?{dir:t}:{}}}})]}}),bb=class Tn{constructor(e,n,r=!1,o=null){this.currentNode=null,this.actualDepth=null,this.isBlock=r,this.resolvedPos=e,this.editor=n,this.currentNode=o}get name(){return this.node.type.name}get node(){return this.currentNode||this.resolvedPos.node()}get element(){return this.editor.view.domAtPos(this.pos).node}get depth(){var e;return(e=this.actualDepth)!=null?e:this.resolvedPos.depth}get pos(){return this.resolvedPos.pos}get content(){return this.node.content}set content(e){let n=this.from,r=this.to;if(this.isBlock){if(this.content.size===0){console.error(`You can\u2019t set content on a block node. Tried to set content on ${this.name} at ${this.pos}`);return}n=this.from+1,r=this.to-1}this.editor.commands.insertContentAt({from:n,to:r},e)}get attributes(){return this.node.attrs}get textContent(){return this.node.textContent}get size(){return this.node.nodeSize}get from(){return this.isBlock?this.pos:this.resolvedPos.start(this.resolvedPos.depth)}get range(){return{from:this.from,to:this.to}}get to(){return this.isBlock?this.pos+this.size:this.resolvedPos.end(this.resolvedPos.depth)+(this.node.isText?0:1)}get parent(){if(this.depth===0)return null;let e=this.resolvedPos.start(this.resolvedPos.depth-1),n=this.resolvedPos.doc.resolve(e);return new Tn(n,this.editor)}get before(){let e=this.resolvedPos.doc.resolve(this.from-(this.isBlock?1:2));return e.depth!==this.depth&&(e=this.resolvedPos.doc.resolve(this.from-3)),new Tn(e,this.editor)}get after(){let e=this.resolvedPos.doc.resolve(this.to+(this.isBlock?2:1));return e.depth!==this.depth&&(e=this.resolvedPos.doc.resolve(this.to+3)),new Tn(e,this.editor)}get children(){let e=[];return this.node.content.forEach((n,r)=>{let o=n.isBlock&&!n.isTextblock,i=n.isAtom&&!n.isText,s=this.pos+r+(i?0:1);if(s<0||s>this.resolvedPos.doc.nodeSize-2)return;let l=this.resolvedPos.doc.resolve(s);if(!o&&l.depth<=this.depth)return;let a=new Tn(l,this.editor,o,o?n:null);o&&(a.actualDepth=this.depth+1),e.push(new Tn(l,this.editor,o,o?n:null))}),e}get firstChild(){return this.children[0]||null}get lastChild(){let e=this.children;return e[e.length-1]||null}closest(e,n={}){let r=null,o=this.parent;for(;o&&!r;){if(o.node.type.name===e)if(Object.keys(n).length>0){let i=o.node.attrs,s=Object.keys(n);for(let l=0;l{r&&o.length>0||(s.node.type.name===e&&i.every(a=>n[a]===s.node.attrs[a])&&o.push(s),!(r&&o.length>0)&&(o=o.concat(s.querySelectorAll(e,n,r))))}),o}setAttribute(e){let{tr:n}=this.editor.state;n.setNodeMarkup(this.from,void 0,{...this.node.attrs,...e}),this.editor.view.dispatch(n)}},wb=`.ProseMirror { + position: relative; +} + +.ProseMirror { + word-wrap: break-word; + white-space: pre-wrap; + white-space: break-spaces; + -webkit-font-variant-ligatures: none; + font-variant-ligatures: none; + font-feature-settings: "liga" 0; /* the above doesn't seem to work in Edge */ +} + +.ProseMirror [contenteditable="false"] { + white-space: normal; +} + +.ProseMirror [contenteditable="false"] [contenteditable="true"] { + white-space: pre-wrap; +} + +.ProseMirror pre { + white-space: pre-wrap; +} + +img.ProseMirror-separator { + display: inline !important; + border: none !important; + margin: 0 !important; + width: 0 !important; + height: 0 !important; +} + +.ProseMirror-gapcursor { + display: none; + pointer-events: none; + position: absolute; + margin: 0; +} + +.ProseMirror-gapcursor:after { + content: ""; + display: block; + position: absolute; + top: -2px; + width: 20px; + border-top: 1px solid black; + animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite; +} + +@keyframes ProseMirror-cursor-blink { + to { + visibility: hidden; + } +} + +.ProseMirror-hideselection *::selection { + background: transparent; +} + +.ProseMirror-hideselection *::-moz-selection { + background: transparent; +} + +.ProseMirror-hideselection * { + caret-color: transparent; +} + +.ProseMirror-focused .ProseMirror-gapcursor { + display: block; +}`;function xb(t,e,n){let r=document.querySelector(`style[data-tiptap-style${n?`-${n}`:""}]`);if(r!==null)return r;let o=document.createElement("style");return e&&o.setAttribute("nonce",e),o.setAttribute(`data-tiptap-style${n?`-${n}`:""}`,""),o.innerHTML=t,document.getElementsByTagName("head")[0].appendChild(o),o}var gu=class extends lb{constructor(t={}){super(),this.css=null,this.className="tiptap",this.editorView=null,this.isFocused=!1,this.isInitialized=!1,this.extensionStorage={},this.instanceId=Math.random().toString(36).slice(2,9),this.options={element:typeof document<"u"?document.createElement("div"):null,content:"",injectCSS:!0,injectNonce:void 0,extensions:[],autofocus:!1,editable:!0,textDirection:void 0,editorProps:{},parseOptions:{},coreExtensionOptions:{},enableInputRules:!0,enablePasteRules:!0,enableCoreExtensions:!0,enableContentCheck:!1,emitContentError:!1,onBeforeCreate:()=>null,onCreate:()=>null,onMount:()=>null,onUnmount:()=>null,onUpdate:()=>null,onSelectionUpdate:()=>null,onTransaction:()=>null,onFocus:()=>null,onBlur:()=>null,onDestroy:()=>null,onContentError:({error:r})=>{throw r},onPaste:()=>null,onDrop:()=>null,onDelete:()=>null},this.isCapturingTransaction=!1,this.capturedTransaction=null,this.utils={getUpdatedPosition:Hy,createMappablePosition:$y},this.setOptions(t),this.createExtensionManager(),this.createCommandManager(),this.createSchema(),this.on("beforeCreate",this.options.onBeforeCreate),this.emit("beforeCreate",{editor:this}),this.on("mount",this.options.onMount),this.on("unmount",this.options.onUnmount),this.on("contentError",this.options.onContentError),this.on("create",this.options.onCreate),this.on("update",this.options.onUpdate),this.on("selectionUpdate",this.options.onSelectionUpdate),this.on("transaction",this.options.onTransaction),this.on("focus",this.options.onFocus),this.on("blur",this.options.onBlur),this.on("destroy",this.options.onDestroy),this.on("drop",({event:r,slice:o,moved:i})=>this.options.onDrop(r,o,i)),this.on("paste",({event:r,slice:o})=>this.options.onPaste(r,o)),this.on("delete",this.options.onDelete);let e=this.createDoc(),n=Fd(e,this.options.autofocus);this.editorState=Fr.create({doc:e,schema:this.schema,selection:n||void 0}),this.options.element&&this.mount(this.options.element)}mount(t){if(typeof document>"u")throw new Error("[tiptap error]: The editor cannot be mounted because there is no 'document' defined in this environment.");this.createView(t),this.emit("mount",{editor:this}),this.css&&!document.head.contains(this.css)&&document.head.appendChild(this.css),window.setTimeout(()=>{this.isDestroyed||(this.options.autofocus!==!1&&this.options.autofocus!==null&&this.commands.focus(this.options.autofocus),this.emit("create",{editor:this}),this.isInitialized=!0)},0)}unmount(){if(this.editorView){let t=this.editorView.dom;t?.editor&&delete t.editor,this.editorView.destroy()}if(this.editorView=null,this.isInitialized=!1,this.css&&!document.querySelectorAll(`.${this.className}`).length)try{typeof this.css.remove=="function"?this.css.remove():this.css.parentNode&&this.css.parentNode.removeChild(this.css)}catch(t){console.warn("Failed to remove CSS element:",t)}this.css=null,this.emit("unmount",{editor:this})}get storage(){return this.extensionStorage}get commands(){return this.commandManager.commands}chain(){return this.commandManager.chain()}can(){return this.commandManager.can()}injectCSS(){this.options.injectCSS&&typeof document<"u"&&(this.css=xb(wb,this.options.injectNonce))}setOptions(t={}){this.options={...this.options,...t},!(!this.editorView||!this.state||this.isDestroyed)&&(this.options.editorProps&&this.view.setProps(this.options.editorProps),this.view.updateState(this.state))}setEditable(t,e=!0){this.setOptions({editable:t}),e&&this.emit("update",{editor:this,transaction:this.state.tr,appendedTransactions:[]})}get isEditable(){return this.options.editable&&this.view&&this.view.editable}get view(){return this.editorView?this.editorView:new Proxy({state:this.editorState,updateState:t=>{this.editorState=t},dispatch:t=>{this.dispatchTransaction(t)},composing:!1,dragging:null,editable:!0,isDestroyed:!1},{get:(t,e)=>{if(this.editorView)return this.editorView[e];if(e==="state")return this.editorState;if(e in t)return Reflect.get(t,e);throw new Error(`[tiptap error]: The editor view is not available. Cannot access view['${e}']. The editor may not be mounted yet.`)}})}get state(){return this.editorView&&(this.editorState=this.view.state),this.editorState}registerPlugin(t,e){let n=Ud(e)?e(t,[...this.state.plugins]):[...this.state.plugins,t],r=this.state.reconfigure({plugins:n});return this.view.updateState(r),r}unregisterPlugin(t){if(this.isDestroyed)return;let e=this.state.plugins,n=e;if([].concat(t).forEach(o=>{let i=typeof o=="string"?`${o}$`:o.key;n=n.filter(s=>!s.key.startsWith(i))}),e.length===n.length)return;let r=this.state.reconfigure({plugins:n});return this.view.updateState(r),r}createExtensionManager(){var t,e;let r=[...this.options.enableCoreExtensions?[cu,iu.configure({blockSeparator:(e=(t=this.options.coreExtensionOptions)==null?void 0:t.clipboardTextSerializer)==null?void 0:e.blockSeparator}),su,uu,fu,pu,au,hu,lu,mu.configure({direction:this.options.textDirection})].filter(o=>typeof this.options.enableCoreExtensions=="object"?this.options.enableCoreExtensions[o.name]!==!1:!0):[],...this.options.extensions].filter(o=>["extension","node","mark"].includes(o?.type));this.extensionManager=new yo(r,this)}createCommandManager(){this.commandManager=new uo({editor:this})}createSchema(){this.schema=this.extensionManager.schema}createDoc(){let t;try{t=_s(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:this.options.enableContentCheck})}catch(e){if(!(e instanceof Error)||!["[tiptap error]: Invalid JSON content","[tiptap error]: Invalid HTML content"].includes(e.message))throw e;this.emit("contentError",{editor:this,error:e,disableCollaboration:()=>{"collaboration"in this.storage&&typeof this.storage.collaboration=="object"&&this.storage.collaboration&&(this.storage.collaboration.isDisabled=!0),this.options.extensions=this.options.extensions.filter(n=>n.name!=="collaboration"),this.createExtensionManager()}}),t=_s(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:!1})}return t}createView(t){var e;this.editorView=new tr(t,{...this.options.editorProps,attributes:{role:"textbox",...(e=this.options.editorProps)==null?void 0:e.attributes},dispatchTransaction:this.dispatchTransaction.bind(this),state:this.editorState,markViews:this.extensionManager.markViews,nodeViews:this.extensionManager.nodeViews});let n=this.state.reconfigure({plugins:this.extensionManager.plugins});this.view.updateState(n),this.prependClass(),this.injectCSS();let r=this.view.dom;r.editor=this}createNodeViews(){this.view.isDestroyed||this.view.setProps({markViews:this.extensionManager.markViews,nodeViews:this.extensionManager.nodeViews})}prependClass(){this.view.dom.className=`${this.className} ${this.view.dom.className}`}captureTransaction(t){this.isCapturingTransaction=!0,t(),this.isCapturingTransaction=!1;let e=this.capturedTransaction;return this.capturedTransaction=null,e}dispatchTransaction(t){if(this.view.isDestroyed)return;if(this.isCapturingTransaction){if(!this.capturedTransaction){this.capturedTransaction=t;return}t.steps.forEach(c=>{var d;return(d=this.capturedTransaction)==null?void 0:d.step(c)});return}let{state:e,transactions:n}=this.state.applyTransaction(t),r=!this.state.selection.eq(e.selection),o=n.includes(t),i=this.state;if(this.emit("beforeTransaction",{editor:this,transaction:t,nextState:e}),!o)return;this.view.updateState(e),this.emit("transaction",{editor:this,transaction:t,appendedTransactions:n.slice(1)}),r&&this.emit("selectionUpdate",{editor:this,transaction:t});let s=n.findLast(c=>c.getMeta("focus")||c.getMeta("blur")),l=s?.getMeta("focus"),a=s?.getMeta("blur");l&&this.emit("focus",{editor:this,event:l.event,transaction:s}),a&&this.emit("blur",{editor:this,event:a.event,transaction:s}),!(t.getMeta("preventUpdate")||!n.some(c=>c.docChanged)||i.doc.eq(e.doc))&&this.emit("update",{editor:this,transaction:t,appendedTransactions:n.slice(1)})}getAttributes(t){return Zs(this.state,t)}isActive(t,e){let n=typeof t=="string"?t:null,r=typeof t=="string"?e:t;return tl(this.state,n,r)}getJSON(){return this.state.doc.toJSON()}getHTML(){return Ys(this.state.doc.content,this.schema)}getText(t){let{blockSeparator:e=` + +`,textSerializers:n={}}=t||{};return Iy(this.state.doc,{blockSeparator:e,textSerializers:{...Gd(this.schema),...n}})}get isEmpty(){return lr(this.state.doc)}destroy(){this.emit("destroy"),this.unmount(),this.removeAllListeners()}get isDestroyed(){var t,e;return(e=(t=this.editorView)==null?void 0:t.isDestroyed)!=null?e:!0}$node(t,e){var n;return((n=this.$doc)==null?void 0:n.querySelector(t,e))||null}$nodes(t,e){var n;return((n=this.$doc)==null?void 0:n.querySelectorAll(t,e))||null}$pos(t){let e=this.state.doc.resolve(t);return new bb(e,this)}get $doc(){return this.$pos(0)}};function Be(t){return new go({find:t.find,handler:({state:e,range:n,match:r})=>{let o=G(t.getAttributes,void 0,r);if(o===!1||o===null)return null;let{tr:i}=e,s=r[r.length-1],l=r[0];if(s){let a=l.search(/\S/),c=n.from+l.indexOf(s),d=c+s.length;if(po(n.from,n.to,e.doc).filter(h=>h.mark.type.excluded.find(m=>m===t.type&&m!==h.mark.type)).filter(h=>h.to>c).length)return null;dn.from&&i.delete(n.from+a,c);let f=n.from+a+s.length;i.addMark(n.from+a,f,t.type.create(o||{})),i.removeStoredMark(t.type)}},undoable:t.undoable})}function bo(t){return new go({find:t.find,handler:({state:e,range:n,match:r})=>{let o=G(t.getAttributes,void 0,r)||{},{tr:i}=e,s=n.from,l=n.to,a=t.type.create(o);if(r[1]){let c=r[0].lastIndexOf(r[1]),d=s+c;d>l?d=l:l=d+r[1].length;let u=r[0][r[0].length-1];i.insertText(u,s+r[0].length-1),i.replaceWith(d,l,a)}else if(r[0]){let c=t.type.isInline?s:s-1;i.insert(c,t.type.create(o)).delete(i.mapping.map(s),i.mapping.map(l))}i.scrollIntoView()},undoable:t.undoable})}function ar(t){return new go({find:t.find,handler:({state:e,range:n,match:r})=>{let o=e.doc.resolve(n.from),i=G(t.getAttributes,void 0,r)||{};if(!o.node(-1).canReplaceWith(o.index(-1),o.indexAfter(-1),t.type))return null;e.tr.delete(n.from,n.to).setBlockType(n.from,n.from,t.type,i)},undoable:t.undoable})}function tt(t){return new go({find:t.find,handler:({state:e,range:n,match:r,chain:o})=>{let i=G(t.getAttributes,void 0,r)||{},s=e.tr.delete(n.from,n.to),a=s.doc.resolve(n.from).blockRange(),c=a&&mn(a,t.type,i);if(!c)return null;if(s.wrap(a,c),t.keepMarks&&t.editor){let{selection:u,storedMarks:f}=e,{splittableMarks:h}=t.editor.extensionManager,p=f||u.$to.parentOffset&&u.$from.marks();if(p){let m=p.filter(g=>h.includes(g.type.name));s.ensureMarks(m)}}if(t.keepAttributes){let u=t.type.name==="bulletList"||t.type.name==="orderedList"?"listItem":"taskList";o().updateAttributes(u,i).run()}let d=s.doc.resolve(n.from-1).nodeBefore;d&&d.type===t.type&&Re(s.doc,n.from-1)&&(!t.joinPredicate||t.joinPredicate(r,d))&&s.join(n.from-1)},undoable:t.undoable})}var kb=t=>"touches"in t,yu=class{constructor(t){this.directions=["bottom-left","bottom-right","top-left","top-right"],this.minSize={height:8,width:8},this.preserveAspectRatio=!1,this.classNames={container:"",wrapper:"",handle:"",resizing:""},this.initialWidth=0,this.initialHeight=0,this.aspectRatio=1,this.isResizing=!1,this.activeHandle=null,this.startX=0,this.startY=0,this.startWidth=0,this.startHeight=0,this.isShiftKeyPressed=!1,this.lastEditableState=void 0,this.handleMap=new Map,this.handleMouseMove=l=>{if(!this.isResizing||!this.activeHandle)return;let a=l.clientX-this.startX,c=l.clientY-this.startY;this.handleResize(a,c)},this.handleTouchMove=l=>{if(!this.isResizing||!this.activeHandle)return;let a=l.touches[0];if(!a)return;let c=a.clientX-this.startX,d=a.clientY-this.startY;this.handleResize(c,d)},this.handleMouseUp=()=>{if(!this.isResizing)return;let l=this.element.offsetWidth,a=this.element.offsetHeight;this.onCommit(l,a),this.isResizing=!1,this.activeHandle=null,this.container.dataset.resizeState="false",this.classNames.resizing&&this.container.classList.remove(this.classNames.resizing),document.removeEventListener("mousemove",this.handleMouseMove),document.removeEventListener("mouseup",this.handleMouseUp),document.removeEventListener("keydown",this.handleKeyDown),document.removeEventListener("keyup",this.handleKeyUp)},this.handleKeyDown=l=>{l.key==="Shift"&&(this.isShiftKeyPressed=!0)},this.handleKeyUp=l=>{l.key==="Shift"&&(this.isShiftKeyPressed=!1)};var e,n,r,o,i,s;this.node=t.node,this.editor=t.editor,this.element=t.element,this.contentElement=t.contentElement,this.getPos=t.getPos,this.onResize=t.onResize,this.onCommit=t.onCommit,this.onUpdate=t.onUpdate,(e=t.options)!=null&&e.min&&(this.minSize={...this.minSize,...t.options.min}),(n=t.options)!=null&&n.max&&(this.maxSize=t.options.max),(r=t?.options)!=null&&r.directions&&(this.directions=t.options.directions),(o=t.options)!=null&&o.preserveAspectRatio&&(this.preserveAspectRatio=t.options.preserveAspectRatio),(i=t.options)!=null&&i.className&&(this.classNames={container:t.options.className.container||"",wrapper:t.options.className.wrapper||"",handle:t.options.className.handle||"",resizing:t.options.className.resizing||""}),(s=t.options)!=null&&s.createCustomHandle&&(this.createCustomHandle=t.options.createCustomHandle),this.wrapper=this.createWrapper(),this.container=this.createContainer(),this.applyInitialSize(),this.attachHandles(),this.editor.on("update",this.handleEditorUpdate.bind(this))}get dom(){return this.container}get contentDOM(){return this.contentElement}handleEditorUpdate(){let t=this.editor.isEditable;t!==this.lastEditableState&&(this.lastEditableState=t,t?t&&this.handleMap.size===0&&this.attachHandles():this.removeHandles())}update(t,e,n){return t.type!==this.node.type?!1:(this.node=t,this.onUpdate?this.onUpdate(t,e,n):!0)}destroy(){this.isResizing&&(this.container.dataset.resizeState="false",this.classNames.resizing&&this.container.classList.remove(this.classNames.resizing),document.removeEventListener("mousemove",this.handleMouseMove),document.removeEventListener("mouseup",this.handleMouseUp),document.removeEventListener("keydown",this.handleKeyDown),document.removeEventListener("keyup",this.handleKeyUp),this.isResizing=!1,this.activeHandle=null),this.editor.off("update",this.handleEditorUpdate.bind(this)),this.container.remove()}createContainer(){let t=document.createElement("div");return t.dataset.resizeContainer="",t.dataset.node=this.node.type.name,t.style.display="flex",this.classNames.container&&(t.className=this.classNames.container),t.appendChild(this.wrapper),t}createWrapper(){let t=document.createElement("div");return t.style.position="relative",t.style.display="block",t.dataset.resizeWrapper="",this.classNames.wrapper&&(t.className=this.classNames.wrapper),t.appendChild(this.element),t}createHandle(t){let e=document.createElement("div");return e.dataset.resizeHandle=t,e.style.position="absolute",this.classNames.handle&&(e.className=this.classNames.handle),e}positionHandle(t,e){let n=e.includes("top"),r=e.includes("bottom"),o=e.includes("left"),i=e.includes("right");n&&(t.style.top="0"),r&&(t.style.bottom="0"),o&&(t.style.left="0"),i&&(t.style.right="0"),(e==="top"||e==="bottom")&&(t.style.left="0",t.style.right="0"),(e==="left"||e==="right")&&(t.style.top="0",t.style.bottom="0")}attachHandles(){this.directions.forEach(t=>{let e;this.createCustomHandle?e=this.createCustomHandle(t):e=this.createHandle(t),e instanceof HTMLElement||(console.warn(`[ResizableNodeView] createCustomHandle("${t}") did not return an HTMLElement. Falling back to default handle.`),e=this.createHandle(t)),this.createCustomHandle||this.positionHandle(e,t),e.addEventListener("mousedown",n=>this.handleResizeStart(n,t)),e.addEventListener("touchstart",n=>this.handleResizeStart(n,t)),this.handleMap.set(t,e),this.wrapper.appendChild(e)})}removeHandles(){this.handleMap.forEach(t=>t.remove()),this.handleMap.clear()}applyInitialSize(){let t=this.node.attrs.width,e=this.node.attrs.height;t?(this.element.style.width=`${t}px`,this.initialWidth=t):this.initialWidth=this.element.offsetWidth,e?(this.element.style.height=`${e}px`,this.initialHeight=e):this.initialHeight=this.element.offsetHeight,this.initialWidth>0&&this.initialHeight>0&&(this.aspectRatio=this.initialWidth/this.initialHeight)}handleResizeStart(t,e){t.preventDefault(),t.stopPropagation(),this.isResizing=!0,this.activeHandle=e,kb(t)?(this.startX=t.touches[0].clientX,this.startY=t.touches[0].clientY):(this.startX=t.clientX,this.startY=t.clientY),this.startWidth=this.element.offsetWidth,this.startHeight=this.element.offsetHeight,this.startWidth>0&&this.startHeight>0&&(this.aspectRatio=this.startWidth/this.startHeight);let n=this.getPos();this.container.dataset.resizeState="true",this.classNames.resizing&&this.container.classList.add(this.classNames.resizing),document.addEventListener("mousemove",this.handleMouseMove),document.addEventListener("touchmove",this.handleTouchMove),document.addEventListener("mouseup",this.handleMouseUp),document.addEventListener("keydown",this.handleKeyDown),document.addEventListener("keyup",this.handleKeyUp)}handleResize(t,e){if(!this.activeHandle)return;let n=this.preserveAspectRatio||this.isShiftKeyPressed,{width:r,height:o}=this.calculateNewDimensions(this.activeHandle,t,e),i=this.applyConstraints(r,o,n);this.element.style.width=`${i.width}px`,this.element.style.height=`${i.height}px`,this.onResize&&this.onResize(i.width,i.height)}calculateNewDimensions(t,e,n){let r=this.startWidth,o=this.startHeight,i=t.includes("right"),s=t.includes("left"),l=t.includes("bottom"),a=t.includes("top");return i?r=this.startWidth+e:s&&(r=this.startWidth-e),l?o=this.startHeight+n:a&&(o=this.startHeight-n),(t==="right"||t==="left")&&(r=this.startWidth+(i?e:-e)),(t==="top"||t==="bottom")&&(o=this.startHeight+(l?n:-n)),this.preserveAspectRatio||this.isShiftKeyPressed?this.applyAspectRatio(r,o,t):{width:r,height:o}}applyConstraints(t,e,n){var r,o,i,s;if(!n){let c=Math.max(this.minSize.width,t),d=Math.max(this.minSize.height,e);return(r=this.maxSize)!=null&&r.width&&(c=Math.min(this.maxSize.width,c)),(o=this.maxSize)!=null&&o.height&&(d=Math.min(this.maxSize.height,d)),{width:c,height:d}}let l=t,a=e;return lthis.maxSize.width&&(l=this.maxSize.width,a=l/this.aspectRatio),(s=this.maxSize)!=null&&s.height&&a>this.maxSize.height&&(a=this.maxSize.height,l=a*this.aspectRatio),{width:l,height:a}}applyAspectRatio(t,e,n){let r=n==="left"||n==="right",o=n==="top"||n==="bottom";return r?{width:t,height:t/this.aspectRatio}:o?{width:e*this.aspectRatio,height:e}:{width:t,height:t/this.aspectRatio}}};function bu(t,e){let{selection:n}=t,{$from:r}=n;if(n instanceof L){let i=r.index();return r.parent.canReplaceWith(i,i+1,e)}let o=r.depth;for(;o>=0;){let i=r.index(o);if(r.node(o).contentMatchAt(i).matchType(e))return!0;o-=1}return!1}function wu(t){return t.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&")}var Sb={};js(Sb,{createAtomBlockMarkdownSpec:()=>Cb,createBlockMarkdownSpec:()=>Zt,createInlineMarkdownSpec:()=>Tb,parseAttributes:()=>rl,parseIndentedBlocks:()=>wo,renderNestedMarkdownContent:()=>cr,serializeAttributes:()=>ol});function rl(t){if(!t?.trim())return{};let e={},n=[],r=t.replace(/["']([^"']*)["']/g,c=>(n.push(c),`__QUOTED_${n.length-1}__`)),o=r.match(/(?:^|\s)\.([a-zA-Z][\w-]*)/g);if(o){let c=o.map(d=>d.trim().slice(1));e.class=c.join(" ")}let i=r.match(/(?:^|\s)#([a-zA-Z][\w-]*)/);i&&(e.id=i[1]);let s=/([a-zA-Z][\w-]*)\s*=\s*(__QUOTED_\d+__)/g;Array.from(r.matchAll(s)).forEach(([,c,d])=>{var u;let f=parseInt(((u=d.match(/__QUOTED_(\d+)__/))==null?void 0:u[1])||"0",10),h=n[f];h&&(e[c]=h.slice(1,-1))});let a=r.replace(/(?:^|\s)\.([a-zA-Z][\w-]*)/g,"").replace(/(?:^|\s)#([a-zA-Z][\w-]*)/g,"").replace(/([a-zA-Z][\w-]*)\s*=\s*__QUOTED_\d+__/g,"").trim();return a&&a.split(/\s+/).filter(Boolean).forEach(d=>{d.match(/^[a-zA-Z][\w-]*$/)&&(e[d]=!0)}),e}function ol(t){if(!t||Object.keys(t).length===0)return"";let e=[];return t.class&&String(t.class).split(/\s+/).filter(Boolean).forEach(r=>e.push(`.${r}`)),t.id&&e.push(`#${t.id}`),Object.entries(t).forEach(([n,r])=>{n==="class"||n==="id"||(r===!0?e.push(n):r!==!1&&r!=null&&e.push(`${n}="${String(r)}"`))}),e.join(" ")}function Cb(t){let{nodeName:e,name:n,parseAttributes:r=rl,serializeAttributes:o=ol,defaultAttributes:i={},requiredAttributes:s=[],allowedAttributes:l}=t,a=n||e,c=d=>{if(!l)return d;let u={};return l.forEach(f=>{f in d&&(u[f]=d[f])}),u};return{parseMarkdown:(d,u)=>{let f={...i,...d.attributes};return u.createNode(e,f,[])},markdownTokenizer:{name:e,level:"block",start(d){var u;let f=new RegExp(`^:::${a}(?:\\s|$)`,"m"),h=(u=d.match(f))==null?void 0:u.index;return h!==void 0?h:-1},tokenize(d,u,f){let h=new RegExp(`^:::${a}(?:\\s+\\{([^}]*)\\})?\\s*:::(?:\\n|$)`),p=d.match(h);if(!p)return;let m=p[1]||"",g=r(m);if(!s.find(w=>!(w in g)))return{type:e,raw:p[0],attributes:g}}},renderMarkdown:d=>{let u=c(d.attrs||{}),f=o(u),h=f?` {${f}}`:"";return`:::${a}${h} :::`}}}function Zt(t){let{nodeName:e,name:n,getContent:r,parseAttributes:o=rl,serializeAttributes:i=ol,defaultAttributes:s={},content:l="block",allowedAttributes:a}=t,c=n||e,d=u=>{if(!a)return u;let f={};return a.forEach(h=>{h in u&&(f[h]=u[h])}),f};return{parseMarkdown:(u,f)=>{let h;if(r){let m=r(u);h=typeof m=="string"?[{type:"text",text:m}]:m}else l==="block"?h=f.parseChildren(u.tokens||[]):h=f.parseInline(u.tokens||[]);let p={...s,...u.attributes};return f.createNode(e,p,h)},markdownTokenizer:{name:e,level:"block",start(u){var f;let h=new RegExp(`^:::${c}`,"m"),p=(f=u.match(h))==null?void 0:f.index;return p!==void 0?p:-1},tokenize(u,f,h){var p;let m=new RegExp(`^:::${c}(?:\\s+\\{([^}]*)\\})?\\s*\\n`),g=u.match(m);if(!g)return;let[y,w=""]=g,b=o(w),C=1,x=y.length,S="",k=/^:::([\w-]*)(\s.*)?/gm,O=u.slice(x);for(k.lastIndex=0;;){let T=k.exec(O);if(T===null)break;let A=T.index,$=T[1];if(!((p=T[2])!=null&&p.endsWith(":::"))){if($)C+=1;else if(C-=1,C===0){let z=O.slice(0,A);S=z.trim();let K=u.slice(0,x+A+T[0].length),V=[];if(S)if(l==="block")for(V=h.blockTokens(z),V.forEach(N=>{N.text&&(!N.tokens||N.tokens.length===0)&&(N.tokens=h.inlineTokens(N.text))});V.length>0;){let N=V[V.length-1];if(N.type==="paragraph"&&(!N.text||N.text.trim()===""))V.pop();else break}else V=h.inlineTokens(S);return{type:e,raw:K,attributes:b,content:S,tokens:V}}}}}},renderMarkdown:(u,f)=>{let h=d(u.attrs||{}),p=i(h),m=p?` {${p}}`:"",g=f.renderChildren(u.content||[],` + +`);return`:::${c}${m} + +${g} + +:::`}}}function vb(t){if(!t.trim())return{};let e={},n=/(\w+)=(?:"([^"]*)"|'([^']*)')/g,r=n.exec(t);for(;r!==null;){let[,o,i,s]=r;e[o]=i||s,r=n.exec(t)}return e}function Mb(t){return Object.entries(t).filter(([,e])=>e!=null).map(([e,n])=>`${e}="${n}"`).join(" ")}function Tb(t){let{nodeName:e,name:n,getContent:r,parseAttributes:o=vb,serializeAttributes:i=Mb,defaultAttributes:s={},selfClosing:l=!1,allowedAttributes:a}=t,c=n||e,d=f=>{if(!a)return f;let h={};return a.forEach(p=>{let m=typeof p=="string"?p:p.name,g=typeof p=="string"?void 0:p.skipIfDefault;if(m in f){let y=f[m];if(g!==void 0&&y===g)return;h[m]=y}}),h},u=c.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");return{parseMarkdown:(f,h)=>{let p={...s,...f.attributes};if(l)return h.createNode(e,p);let m=r?r(f):f.content||"";return m?h.createNode(e,p,[h.createTextNode(m)]):h.createNode(e,p,[])},markdownTokenizer:{name:e,level:"inline",start(f){let h=l?new RegExp(`\\[${u}\\s*[^\\]]*\\]`):new RegExp(`\\[${u}\\s*[^\\]]*\\][\\s\\S]*?\\[\\/${u}\\]`),p=f.match(h),m=p?.index;return m!==void 0?m:-1},tokenize(f,h,p){let m=l?new RegExp(`^\\[${u}\\s*([^\\]]*)\\]`):new RegExp(`^\\[${u}\\s*([^\\]]*)\\]([\\s\\S]*?)\\[\\/${u}\\]`),g=f.match(m);if(!g)return;let y="",w="";if(l){let[,C]=g;w=C}else{let[,C,x]=g;w=C,y=x||""}let b=o(w.trim());return{type:e,raw:g[0],content:y.trim(),attributes:b}}},renderMarkdown:f=>{let h="";r?h=r(f):f.content&&f.content.length>0&&(h=f.content.filter(y=>y.type==="text").map(y=>y.text).join(""));let p=d(f.attrs||{}),m=i(p),g=m?` ${m}`:"";return l?`[${c}${g}]`:`[${c}${g}]${h}[/${c}]`}}}function wo(t,e,n){var r,o,i,s;let l=t.split(` +`),a=[],c="",d=0,u=e.baseIndentSize||2;for(;d0)break;if(f.trim()===""){d+=1,c=`${c}${f} +`;continue}else return}let p=e.extractItemData(h),{indentLevel:m,mainContent:g}=p;c=`${c}${f} +`;let y=[g];for(d+=1;dA.trim()!=="");if(k===-1)break;if((((o=(r=l[d+1+k].match(/^(\s*)/))==null?void 0:r[1])==null?void 0:o.length)||0)>m){y.push(x),c=`${c}${x} +`,d+=1;continue}else break}if((((s=(i=x.match(/^(\s*)/))==null?void 0:i[1])==null?void 0:s.length)||0)>m)y.push(x),c=`${c}${x} +`,d+=1;else break}let w,b=y.slice(1);if(b.length>0){let x=b.map(S=>S.slice(m+u)).join(` +`);x.trim()&&(e.customNestedParser?w=e.customNestedParser(x):w=n.blockTokens(x))}let C=e.createToken(p,w);a.push(C)}if(a.length!==0)return{items:a,raw:c}}function cr(t,e,n,r){if(!t||!Array.isArray(t.content))return"";let o=typeof n=="function"?n(r):n,[i,...s]=t.content,l=e.renderChildren([i]),a=[`${o}${l}`];return s&&s.length>0&&s.forEach(c=>{let d=e.renderChildren([c]);if(d){let u=d.split(` +`).map(f=>f?e.indent(f):"").join(` +`);a.push(u)}}),a.join(` +`)}function Ab(t,e,n={}){let{state:r}=e,{doc:o,tr:i}=r,s=t;o.descendants((l,a)=>{let c=i.mapping.map(a),d=i.mapping.map(a)+l.nodeSize,u=null;if(l.marks.forEach(h=>{if(h!==s)return!1;u=h}),!u)return;let f=!1;if(Object.keys(n).forEach(h=>{n[h]!==u.attrs[h]&&(f=!0)}),f){let h=t.type.create({...t.attrs,...n});i.removeMark(c,d,t.type),i.addMark(c,d,h)}}),i.docChanged&&e.view.dispatch(i)}var F=class xu extends nl{constructor(){super(...arguments),this.type="node"}static create(e={}){let n=typeof e=="function"?e():e;return new xu(n)}configure(e){return super.configure(e)}extend(e){let n=typeof e=="function"?e():e;return super.extend(n)}};function Me(t){return new fb({find:t.find,handler:({state:e,range:n,match:r,pasteEvent:o})=>{let i=G(t.getAttributes,void 0,r,o);if(i===!1||i===null)return null;let{tr:s}=e,l=r[r.length-1],a=r[0],c=n.to;if(l){let d=a.search(/\S/),u=n.from+a.indexOf(l),f=u+l.length;if(po(n.from,n.to,e.doc).filter(p=>p.mark.type.excluded.find(g=>g===t.type&&g!==p.mark.type)).filter(p=>p.to>u).length)return null;fn.from&&s.delete(n.from+d,u),c=n.from+d+l.length,s.addMark(n.from+d,c,t.type.create(i||{})),s.removeStoredMark(t.type)}}})}function ku(t={}){return new P({view(e){return new il(e,t)}})}var il=class{constructor(e,n){var r;this.editorView=e,this.cursorPos=null,this.element=null,this.timeout=-1,this.width=(r=n.width)!==null&&r!==void 0?r:1,this.color=n.color===!1?void 0:n.color||"black",this.class=n.class,this.handlers=["dragover","dragend","drop","dragleave"].map(o=>{let i=s=>{this[o](s)};return e.dom.addEventListener(o,i),{name:o,handler:i}})}destroy(){this.handlers.forEach(({name:e,handler:n})=>this.editorView.dom.removeEventListener(e,n))}update(e,n){this.cursorPos!=null&&n.doc!=e.state.doc&&(this.cursorPos>e.state.doc.content.size?this.setCursor(null):this.updateOverlay())}setCursor(e){e!=this.cursorPos&&(this.cursorPos=e,e==null?(this.element.parentNode.removeChild(this.element),this.element=null):this.updateOverlay())}updateOverlay(){let e=this.editorView.state.doc.resolve(this.cursorPos),n=!e.parent.inlineContent,r,o=this.editorView.dom,i=o.getBoundingClientRect(),s=i.width/o.offsetWidth,l=i.height/o.offsetHeight;if(n){let u=e.nodeBefore,f=e.nodeAfter;if(u||f){let h=this.editorView.nodeDOM(this.cursorPos-(u?u.nodeSize:0));if(h){let p=h.getBoundingClientRect(),m=u?p.bottom:p.top;u&&f&&(m=(m+this.editorView.nodeDOM(this.cursorPos).getBoundingClientRect().top)/2);let g=this.width/2*l;r={left:p.left,right:p.right,top:m-g,bottom:m+g}}}}if(!r){let u=this.editorView.coordsAtPos(this.cursorPos),f=this.width/2*s;r={left:u.left-f,right:u.left+f,top:u.top,bottom:u.bottom}}let a=this.editorView.dom.offsetParent;this.element||(this.element=a.appendChild(document.createElement("div")),this.class&&(this.element.className=this.class),this.element.style.cssText="position: absolute; z-index: 50; pointer-events: none;",this.color&&(this.element.style.backgroundColor=this.color)),this.element.classList.toggle("prosemirror-dropcursor-block",n),this.element.classList.toggle("prosemirror-dropcursor-inline",!n);let c,d;if(!a||a==document.body&&getComputedStyle(a).position=="static")c=-pageXOffset,d=-pageYOffset;else{let u=a.getBoundingClientRect(),f=u.width/a.offsetWidth,h=u.height/a.offsetHeight;c=u.left-a.scrollLeft*f,d=u.top-a.scrollTop*h}this.element.style.left=(r.left-c)/s+"px",this.element.style.top=(r.top-d)/l+"px",this.element.style.width=(r.right-r.left)/s+"px",this.element.style.height=(r.bottom-r.top)/l+"px"}scheduleRemoval(e){clearTimeout(this.timeout),this.timeout=setTimeout(()=>this.setCursor(null),e)}dragover(e){if(!this.editorView.editable)return;let n=this.editorView.posAtCoords({left:e.clientX,top:e.clientY}),r=n&&n.inside>=0&&this.editorView.state.doc.nodeAt(n.inside),o=r&&r.type.spec.disableDropCursor,i=typeof o=="function"?o(this.editorView,n,e):o;if(n&&!i){let s=n.pos;if(this.editorView.dragging&&this.editorView.dragging.slice){let l=zr(this.editorView.state.doc,s,this.editorView.dragging.slice);l!=null&&(s=l)}this.setCursor(s),this.scheduleRemoval(5e3)}}dragend(){this.scheduleRemoval(20)}drop(){this.scheduleRemoval(20)}dragleave(e){this.editorView.dom.contains(e.relatedTarget)||this.setCursor(null)}};var ae=class t extends I{constructor(e){super(e,e)}map(e,n){let r=e.resolve(n.map(this.head));return t.valid(r)?new t(r):I.near(r)}content(){return E.empty}eq(e){return e instanceof t&&e.head==this.head}toJSON(){return{type:"gapcursor",pos:this.head}}static fromJSON(e,n){if(typeof n.pos!="number")throw new RangeError("Invalid input for GapCursor.fromJSON");return new t(e.resolve(n.pos))}getBookmark(){return new sl(this.anchor)}static valid(e){let n=e.parent;if(n.isTextblock||!Eb(e)||!Nb(e))return!1;let r=n.type.spec.allowGapCursor;if(r!=null)return r;let o=n.contentMatchAt(e.index()).defaultType;return o&&o.isTextblock}static findGapCursorFrom(e,n,r=!1){e:for(;;){if(!r&&t.valid(e))return e;let o=e.pos,i=null;for(let s=e.depth;;s--){let l=e.node(s);if(n>0?e.indexAfter(s)0){i=l.child(n>0?e.indexAfter(s):e.index(s)-1);break}else if(s==0)return null;o+=n;let a=e.doc.resolve(o);if(t.valid(a))return a}for(;;){let s=n>0?i.firstChild:i.lastChild;if(!s){if(i.isAtom&&!i.isText&&!L.isSelectable(i)){e=e.doc.resolve(o+i.nodeSize*n),r=!1;continue e}break}i=s,o+=n;let l=e.doc.resolve(o);if(t.valid(l))return l}return null}}};ae.prototype.visible=!1;ae.findFrom=ae.findGapCursorFrom;I.jsonID("gapcursor",ae);var sl=class t{constructor(e){this.pos=e}map(e){return new t(e.map(this.pos))}resolve(e){let n=e.resolve(this.pos);return ae.valid(n)?new ae(n):I.near(n)}};function Su(t){return t.isAtom||t.spec.isolating||t.spec.createGapCursor}function Eb(t){for(let e=t.depth;e>=0;e--){let n=t.index(e),r=t.node(e);if(n==0){if(r.type.spec.isolating)return!0;continue}for(let o=r.child(n-1);;o=o.lastChild){if(o.childCount==0&&!o.inlineContent||Su(o.type))return!0;if(o.inlineContent)return!1}}return!0}function Nb(t){for(let e=t.depth;e>=0;e--){let n=t.indexAfter(e),r=t.node(e);if(n==r.childCount){if(r.type.spec.isolating)return!0;continue}for(let o=r.child(n);;o=o.firstChild){if(o.childCount==0&&!o.inlineContent||Su(o.type))return!0;if(o.inlineContent)return!1}}return!0}function Cu(){return new P({props:{decorations:Ib,createSelectionBetween(t,e,n){return e.pos==n.pos&&ae.valid(n)?new ae(n):null},handleClick:Rb,handleKeyDown:Ob,handleDOMEvents:{beforeinput:Db}}})}var Ob=or({ArrowLeft:xo("horiz",-1),ArrowRight:xo("horiz",1),ArrowUp:xo("vert",-1),ArrowDown:xo("vert",1)});function xo(t,e){let n=t=="vert"?e>0?"down":"up":e>0?"right":"left";return function(r,o,i){let s=r.selection,l=e>0?s.$to:s.$from,a=s.empty;if(s instanceof D){if(!i.endOfTextblock(n)||l.depth==0)return!1;a=!1,l=r.doc.resolve(e>0?l.after():l.before())}let c=ae.findGapCursorFrom(l,e,a);return c?(o&&o(r.tr.setSelection(new ae(c))),!0):!1}}function Rb(t,e,n){if(!t||!t.editable)return!1;let r=t.state.doc.resolve(e);if(!ae.valid(r))return!1;let o=t.posAtCoords({left:n.clientX,top:n.clientY});return o&&o.inside>-1&&L.isSelectable(t.state.doc.nodeAt(o.inside))?!1:(t.dispatch(t.state.tr.setSelection(new ae(r))),!0)}function Db(t,e){if(e.inputType!="insertCompositionText"||!(t.state.selection instanceof ae))return!1;let{$from:n}=t.state.selection,r=n.parent.contentMatchAt(n.index()).findWrapping(t.state.schema.nodes.text);if(!r)return!1;let o=v.empty;for(let s=r.length-1;s>=0;s--)o=v.from(r[s].createAndFill(null,o));let i=t.state.tr.replace(n.pos,n.pos,new E(o,0,0));return i.setSelection(D.near(i.doc.resolve(n.pos+1))),t.dispatch(i),!1}function Ib(t){if(!(t.selection instanceof ae))return null;let e=document.createElement("div");return e.className="ProseMirror-gapcursor",Y.create(t.doc,[te.widget(t.selection.head,e,{key:"gapcursor"})])}var ko=200,he=function(){};he.prototype.append=function(e){return e.length?(e=he.from(e),!this.length&&e||e.length=n?he.empty:this.sliceInner(Math.max(0,e),Math.min(this.length,n))};he.prototype.get=function(e){if(!(e<0||e>=this.length))return this.getInner(e)};he.prototype.forEach=function(e,n,r){n===void 0&&(n=0),r===void 0&&(r=this.length),n<=r?this.forEachInner(e,n,r,0):this.forEachInvertedInner(e,n,r,0)};he.prototype.map=function(e,n,r){n===void 0&&(n=0),r===void 0&&(r=this.length);var o=[];return this.forEach(function(i,s){return o.push(e(i,s))},n,r),o};he.from=function(e){return e instanceof he?e:e&&e.length?new vu(e):he.empty};var vu=(function(t){function e(r){t.call(this),this.values=r}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={length:{configurable:!0},depth:{configurable:!0}};return e.prototype.flatten=function(){return this.values},e.prototype.sliceInner=function(o,i){return o==0&&i==this.length?this:new e(this.values.slice(o,i))},e.prototype.getInner=function(o){return this.values[o]},e.prototype.forEachInner=function(o,i,s,l){for(var a=i;a=s;a--)if(o(this.values[a],l+a)===!1)return!1},e.prototype.leafAppend=function(o){if(this.length+o.length<=ko)return new e(this.values.concat(o.flatten()))},e.prototype.leafPrepend=function(o){if(this.length+o.length<=ko)return new e(o.flatten().concat(this.values))},n.length.get=function(){return this.values.length},n.depth.get=function(){return 0},Object.defineProperties(e.prototype,n),e})(he);he.empty=new vu([]);var Pb=(function(t){function e(n,r){t.call(this),this.left=n,this.right=r,this.length=n.length+r.length,this.depth=Math.max(n.depth,r.depth)+1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.flatten=function(){return this.left.flatten().concat(this.right.flatten())},e.prototype.getInner=function(r){return rl&&this.right.forEachInner(r,Math.max(o-l,0),Math.min(this.length,i)-l,s+l)===!1)return!1},e.prototype.forEachInvertedInner=function(r,o,i,s){var l=this.left.length;if(o>l&&this.right.forEachInvertedInner(r,o-l,Math.max(i,l)-l,s+l)===!1||i=i?this.right.slice(r-i,o-i):this.left.slice(r,i).append(this.right.slice(0,o-i))},e.prototype.leafAppend=function(r){var o=this.right.leafAppend(r);if(o)return new e(this.left,o)},e.prototype.leafPrepend=function(r){var o=this.left.leafPrepend(r);if(o)return new e(o,this.right)},e.prototype.appendInner=function(r){return this.left.depth>=Math.max(this.right.depth,r.depth)+1?new e(this.left,new e(this.right,r)):new e(this,r)},e})(he),ll=he;var Lb=500,tn=class t{constructor(e,n){this.items=e,this.eventCount=n}popEvent(e,n){if(this.eventCount==0)return null;let r=this.items.length;for(;;r--)if(this.items.get(r-1).selection){--r;break}let o,i;n&&(o=this.remapping(r,this.items.length),i=o.maps.length);let s=e.tr,l,a,c=[],d=[];return this.items.forEach((u,f)=>{if(!u.step){o||(o=this.remapping(r,f+1),i=o.maps.length),i--,d.push(u);return}if(o){d.push(new nt(u.map));let h=u.step.map(o.slice(i)),p;h&&s.maybeStep(h).doc&&(p=s.mapping.maps[s.mapping.maps.length-1],c.push(new nt(p,void 0,void 0,c.length+d.length))),i--,p&&o.appendMap(p,i)}else s.maybeStep(u.step);if(u.selection)return l=o?u.selection.map(o.slice(i)):u.selection,a=new t(this.items.slice(0,r).append(d.reverse().concat(c)),this.eventCount-1),!1},this.items.length,0),{remaining:a,transform:s,selection:l}}addTransform(e,n,r,o){let i=[],s=this.eventCount,l=this.items,a=!o&&l.length?l.get(l.length-1):null;for(let d=0;dzb&&(l=Bb(l,c),s-=c),new t(l.append(i),s)}remapping(e,n){let r=new jn;return this.items.forEach((o,i)=>{let s=o.mirrorOffset!=null&&i-o.mirrorOffset>=e?r.maps.length-o.mirrorOffset:void 0;r.appendMap(o.map,s)},e,n),r}addMaps(e){return this.eventCount==0?this:new t(this.items.append(e.map(n=>new nt(n))),this.eventCount)}rebased(e,n){if(!this.eventCount)return this;let r=[],o=Math.max(0,this.items.length-n),i=e.mapping,s=e.steps.length,l=this.eventCount;this.items.forEach(f=>{f.selection&&l--},o);let a=n;this.items.forEach(f=>{let h=i.getMirror(--a);if(h==null)return;s=Math.min(s,h);let p=i.maps[h];if(f.step){let m=e.steps[h].invert(e.docs[h]),g=f.selection&&f.selection.map(i.slice(a+1,h));g&&l++,r.push(new nt(p,m,g))}else r.push(new nt(p))},o);let c=[];for(let f=n;fLb&&(u=u.compress(this.items.length-r.length)),u}emptyItemCount(){let e=0;return this.items.forEach(n=>{n.step||e++}),e}compress(e=this.items.length){let n=this.remapping(0,e),r=n.maps.length,o=[],i=0;return this.items.forEach((s,l)=>{if(l>=e)o.push(s),s.selection&&i++;else if(s.step){let a=s.step.map(n.slice(r)),c=a&&a.getMap();if(r--,c&&n.appendMap(c,r),a){let d=s.selection&&s.selection.map(n.slice(r));d&&i++;let u=new nt(c.invert(),a,d),f,h=o.length-1;(f=o.length&&o[h].merge(u))?o[h]=f:o.push(u)}}else s.map&&r--},this.items.length,0),new t(ll.from(o.reverse()),i)}};tn.empty=new tn(ll.empty,0);function Bb(t,e){let n;return t.forEach((r,o)=>{if(r.selection&&e--==0)return n=o,!1}),t.slice(n)}var nt=class t{constructor(e,n,r,o){this.map=e,this.step=n,this.selection=r,this.mirrorOffset=o}merge(e){if(this.step&&e.step&&!e.selection){let n=e.step.merge(this.step);if(n)return new t(n.getMap().invert(),n,this.selection)}}},rt=class{constructor(e,n,r,o,i){this.done=e,this.undone=n,this.prevRanges=r,this.prevTime=o,this.prevComposition=i}},zb=20;function Hb(t,e,n,r){let o=n.getMeta(en),i;if(o)return o.historyState;n.getMeta(Vb)&&(t=new rt(t.done,t.undone,null,0,-1));let s=n.getMeta("appendedTransaction");if(n.steps.length==0)return t;if(s&&s.getMeta(en))return s.getMeta(en).redo?new rt(t.done.addTransform(n,void 0,r,So(e)),t.undone,Mu(n.mapping.maps),t.prevTime,t.prevComposition):new rt(t.done,t.undone.addTransform(n,void 0,r,So(e)),null,t.prevTime,t.prevComposition);if(n.getMeta("addToHistory")!==!1&&!(s&&s.getMeta("addToHistory")===!1)){let l=n.getMeta("composition"),a=t.prevTime==0||!s&&t.prevComposition!=l&&(t.prevTime<(n.time||0)-r.newGroupDelay||!$b(n,t.prevRanges)),c=s?al(t.prevRanges,n.mapping):Mu(n.mapping.maps);return new rt(t.done.addTransform(n,a?e.selection.getBookmark():void 0,r,So(e)),tn.empty,c,n.time,l??t.prevComposition)}else return(i=n.getMeta("rebased"))?new rt(t.done.rebased(n,i),t.undone.rebased(n,i),al(t.prevRanges,n.mapping),t.prevTime,t.prevComposition):new rt(t.done.addMaps(n.mapping.maps),t.undone.addMaps(n.mapping.maps),al(t.prevRanges,n.mapping),t.prevTime,t.prevComposition)}function $b(t,e){if(!e)return!1;if(!t.docChanged)return!0;let n=!1;return t.mapping.maps[0].forEach((r,o)=>{for(let i=0;i=e[i]&&(n=!0)}),n}function Mu(t){let e=[];for(let n=t.length-1;n>=0&&e.length==0;n--)t[n].forEach((r,o,i,s)=>e.push(i,s));return e}function al(t,e){if(!t)return null;let n=[];for(let r=0;r{let o=en.getState(n);if(!o||(t?o.undone:o.done).eventCount==0)return!1;if(r){let i=Fb(o,n,t);i&&r(e?i.scrollIntoView():i)}return!0}}var dl=Co(!1,!0),ul=Co(!0,!0),g1=Co(!1,!1),y1=Co(!0,!1);var C1=U.create({name:"characterCount",addOptions(){return{limit:null,mode:"textSize",textCounter:t=>t.length,wordCounter:t=>t.split(" ").filter(e=>e!=="").length}},addStorage(){return{characters:()=>0,words:()=>0}},onBeforeCreate(){this.storage.characters=t=>{let e=t?.node||this.editor.state.doc;if((t?.mode||this.options.mode)==="textSize"){let r=e.textBetween(0,e.content.size,void 0," ");return this.options.textCounter(r)}return e.nodeSize},this.storage.words=t=>{let e=t?.node||this.editor.state.doc,n=e.textBetween(0,e.content.size," "," ");return this.options.wordCounter(n)}},addProseMirrorPlugins(){let t=!1;return[new P({key:new H("characterCount"),appendTransaction:(e,n,r)=>{if(t)return;let o=this.options.limit;if(o==null||o===0){t=!0;return}let i=this.storage.characters({node:r.doc});if(i>o){let s=i-o,l=0,a=s;console.warn(`[CharacterCount] Initial content exceeded limit of ${o} characters. Content was automatically trimmed.`);let c=r.tr.deleteRange(l,a);return t=!0,c}t=!0},filterTransaction:(e,n)=>{let r=this.options.limit;if(!e.docChanged||r===0||r===null||r===void 0)return!0;let o=this.storage.characters({node:n.doc}),i=this.storage.characters({node:e.doc});if(i<=r||o>r&&i>r&&i<=o)return!0;if(o>r&&i>r&&i>o||!e.getMeta("paste"))return!1;let l=e.selection.$head.pos,a=i-r,c=l-a,d=l;return e.deleteRange(c,d),!(this.storage.characters({node:e.doc})>r)}})]}}),Nu=U.create({name:"dropCursor",addOptions(){return{color:"currentColor",width:1,class:void 0}},addProseMirrorPlugins(){return[ku(this.options)]}}),N1=U.create({name:"focus",addOptions(){return{className:"has-focus",mode:"all"}},addProseMirrorPlugins(){return[new P({key:new H("focus"),props:{decorations:({doc:t,selection:e})=>{let{isEditable:n,isFocused:r}=this.editor,{anchor:o}=e,i=[];if(!n||!r)return Y.create(t,[]);let s=0;this.options.mode==="deepest"&&t.descendants((a,c)=>{if(a.isText)return;if(!(o>=c&&o<=c+a.nodeSize-1))return!1;s+=1});let l=0;return t.descendants((a,c)=>{if(a.isText||!(o>=c&&o<=c+a.nodeSize-1))return!1;if(l+=1,this.options.mode==="deepest"&&s-l>0||this.options.mode==="shallowest"&&l>1)return this.options.mode==="deepest";i.push(te.node(c,c+a.nodeSize,{class:this.options.className}))}),Y.create(t,i)}}})]}}),Ou=U.create({name:"gapCursor",addProseMirrorPlugins(){return[Cu()]},extendNodeSchema(t){var e;let n={name:t.name,options:t.options,storage:t.storage};return{allowGapCursor:(e=G(B(t,"allowGapCursor",n)))!=null?e:null}}}),fl=U.create({name:"placeholder",addOptions(){return{emptyEditorClass:"is-editor-empty",emptyNodeClass:"is-empty",placeholder:"Write something \u2026",showOnlyWhenEditable:!0,showOnlyCurrent:!0,includeChildren:!1}},addProseMirrorPlugins(){return[new P({key:new H("placeholder"),props:{decorations:({doc:t,selection:e})=>{let n=this.editor.isEditable||!this.options.showOnlyWhenEditable,{anchor:r}=e,o=[];if(!n)return null;let i=this.editor.isEmpty;return t.descendants((s,l)=>{let a=r>=l&&r<=l+s.nodeSize,c=!s.isLeaf&&lr(s);if((a||!this.options.showOnlyCurrent)&&c){let d=[this.options.emptyNodeClass];i&&d.push(this.options.emptyEditorClass);let u=te.node(l,l+s.nodeSize,{class:d.join(" "),"data-placeholder":typeof this.options.placeholder=="function"?this.options.placeholder({editor:this.editor,node:s,pos:l,hasAnchor:a}):this.options.placeholder});o.push(u)}return this.options.includeChildren}),Y.create(t,o)}}})]}}),H1=U.create({name:"selection",addOptions(){return{className:"selection"}},addProseMirrorPlugins(){let{editor:t,options:e}=this;return[new P({key:new H("selection"),props:{decorations(n){return n.selection.empty||t.isFocused||!t.isEditable||mo(n.selection)||t.view.dragging?null:Y.create(n.doc,[te.inline(n.selection.from,n.selection.to,{class:e.className})])}}})]}});function Eu({types:t,node:e}){return e&&Array.isArray(t)&&t.includes(e.type)||e?.type===t}var V1=U.create({name:"trailingNode",addOptions(){return{node:void 0,notAfter:[]}},addProseMirrorPlugins(){var t;let e=new H(this.name),n=this.options.node||((t=this.editor.schema.topNodeType.contentMatch.defaultType)==null?void 0:t.name)||"paragraph",r=Object.entries(this.editor.schema.nodes).map(([,o])=>o).filter(o=>(this.options.notAfter||[]).concat(n).includes(o.name));return[new P({key:e,appendTransaction:(o,i,s)=>{let{doc:l,tr:a,schema:c}=s,d=e.getState(s),u=l.content.size,f=c.nodes[n];if(d)return a.insert(u,f.create())},state:{init:(o,i)=>{let s=i.tr.doc.lastChild;return!Eu({node:s,types:r})},apply:(o,i)=>{if(!o.docChanged||o.getMeta("__uniqueIDTransaction"))return i;let s=o.doc.lastChild;return!Eu({node:s,types:r})}}})]}}),Ru=U.create({name:"undoRedo",addOptions(){return{depth:100,newGroupDelay:500}},addCommands(){return{undo:()=>({state:t,dispatch:e})=>dl(t,e),redo:()=>({state:t,dispatch:e})=>ul(t,e)}},addProseMirrorPlugins(){return[Au(this.options)]},addKeyboardShortcuts(){return{"Mod-z":()=>this.editor.commands.undo(),"Shift-Mod-z":()=>this.editor.commands.redo(),"Mod-y":()=>this.editor.commands.redo(),"Mod-\u044F":()=>this.editor.commands.undo(),"Shift-Mod-\u044F":()=>this.editor.commands.redo()}}});var Nn=(t,e)=>{if(t==="slot")return 0;if(t instanceof Function)return t(e);let{children:n,...r}=e??{};if(t==="svg")throw new Error("SVG elements are not supported in the JSX syntax, use the array syntax instead");return[t,r,n]};var _b=/^\s*>\s$/,Wb=F.create({name:"blockquote",addOptions(){return{HTMLAttributes:{}}},content:"block+",group:"block",defining:!0,parseHTML(){return[{tag:"blockquote"}]},renderHTML({HTMLAttributes:t}){return Nn("blockquote",{...R(this.options.HTMLAttributes,t),children:Nn("slot",{})})},parseMarkdown:(t,e)=>e.createNode("blockquote",void 0,e.parseChildren(t.tokens||[])),renderMarkdown:(t,e)=>{if(!t.content)return"";let n=">",r=[];return t.content.forEach(o=>{let l=e.renderChildren([o]).split(` +`).map(a=>a.trim()===""?n:`${n} ${a}`);r.push(l.join(` +`))}),r.join(` +${n} +`)},addCommands(){return{setBlockquote:()=>({commands:t})=>t.wrapIn(this.name),toggleBlockquote:()=>({commands:t})=>t.toggleWrap(this.name),unsetBlockquote:()=>({commands:t})=>t.lift(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-b":()=>this.editor.commands.toggleBlockquote()}},addInputRules(){return[tt({find:_b,type:this.type})]}}),Du=Wb;var jb=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))$/,Ub=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))/g,Kb=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))$/,qb=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))/g,Jb=ee.create({name:"bold",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"strong"},{tag:"b",getAttrs:t=>t.style.fontWeight!=="normal"&&null},{style:"font-weight=400",clearMark:t=>t.type.name===this.name},{style:"font-weight",getAttrs:t=>/^(bold(er)?|[5-9]\d{2,})$/.test(t)&&null}]},renderHTML({HTMLAttributes:t}){return Nn("strong",{...R(this.options.HTMLAttributes,t),children:Nn("slot",{})})},markdownTokenName:"strong",parseMarkdown:(t,e)=>e.applyMark("bold",e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>`**${e.renderChildren(t)}**`,addCommands(){return{setBold:()=>({commands:t})=>t.setMark(this.name),toggleBold:()=>({commands:t})=>t.toggleMark(this.name),unsetBold:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-b":()=>this.editor.commands.toggleBold(),"Mod-B":()=>this.editor.commands.toggleBold()}},addInputRules(){return[Be({find:jb,type:this.type}),Be({find:Kb,type:this.type})]},addPasteRules(){return[Me({find:Ub,type:this.type}),Me({find:qb,type:this.type})]}}),Iu=Jb;var Gb=/(^|[^`])`([^`]+)`(?!`)$/,Xb=/(^|[^`])`([^`]+)`(?!`)/g,Yb=ee.create({name:"code",addOptions(){return{HTMLAttributes:{}}},excludes:"_",code:!0,exitable:!0,parseHTML(){return[{tag:"code"}]},renderHTML({HTMLAttributes:t}){return["code",R(this.options.HTMLAttributes,t),0]},markdownTokenName:"codespan",parseMarkdown:(t,e)=>e.applyMark("code",[{type:"text",text:t.text||""}]),renderMarkdown:(t,e)=>t.content?`\`${e.renderChildren(t.content)}\``:"",addCommands(){return{setCode:()=>({commands:t})=>t.setMark(this.name),toggleCode:()=>({commands:t})=>t.toggleMark(this.name),unsetCode:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-e":()=>this.editor.commands.toggleCode()}},addInputRules(){return[Be({find:Gb,type:this.type})]},addPasteRules(){return[Me({find:Xb,type:this.type})]}}),Pu=Yb;var hl=4,Qb=/^```([a-z]+)?[\s\n]$/,Zb=/^~~~([a-z]+)?[\s\n]$/,e0=F.create({name:"codeBlock",addOptions(){return{languageClassPrefix:"language-",exitOnTripleEnter:!0,exitOnArrowDown:!0,defaultLanguage:null,enableTabIndentation:!1,tabSize:hl,HTMLAttributes:{}}},content:"text*",marks:"",group:"block",code:!0,defining:!0,addAttributes(){return{language:{default:this.options.defaultLanguage,parseHTML:t=>{var e;let{languageClassPrefix:n}=this.options;if(!n)return null;let i=[...((e=t.firstElementChild)==null?void 0:e.classList)||[]].filter(s=>s.startsWith(n)).map(s=>s.replace(n,""))[0];return i||null},rendered:!1}}},parseHTML(){return[{tag:"pre",preserveWhitespace:"full"}]},renderHTML({node:t,HTMLAttributes:e}){return["pre",R(this.options.HTMLAttributes,e),["code",{class:t.attrs.language?this.options.languageClassPrefix+t.attrs.language:null},0]]},markdownTokenName:"code",parseMarkdown:(t,e)=>{var n;return((n=t.raw)==null?void 0:n.startsWith("```"))===!1&&t.codeBlockStyle!=="indented"?[]:e.createNode("codeBlock",{language:t.lang||null},t.text?[e.createTextNode(t.text)]:[])},renderMarkdown:(t,e)=>{var n;let r="",o=((n=t.attrs)==null?void 0:n.language)||"";return t.content?r=[`\`\`\`${o}`,e.renderChildren(t.content),"```"].join(` +`):r=`\`\`\`${o} + +\`\`\``,r},addCommands(){return{setCodeBlock:t=>({commands:e})=>e.setNode(this.name,t),toggleCodeBlock:t=>({commands:e})=>e.toggleNode(this.name,"paragraph",t)}},addKeyboardShortcuts(){return{"Mod-Alt-c":()=>this.editor.commands.toggleCodeBlock(),Backspace:()=>{let{empty:t,$anchor:e}=this.editor.state.selection,n=e.pos===1;return!t||e.parent.type.name!==this.name?!1:n||!e.parent.textContent.length?this.editor.commands.clearNodes():!1},Tab:({editor:t})=>{var e;if(!this.options.enableTabIndentation)return!1;let n=(e=this.options.tabSize)!=null?e:hl,{state:r}=t,{selection:o}=r,{$from:i,empty:s}=o;if(i.parent.type!==this.type)return!1;let l=" ".repeat(n);return s?t.commands.insertContent(l):t.commands.command(({tr:a})=>{let{from:c,to:d}=o,h=r.doc.textBetween(c,d,` +`,` +`).split(` +`).map(p=>l+p).join(` +`);return a.replaceWith(c,d,r.schema.text(h)),!0})},"Shift-Tab":({editor:t})=>{var e;if(!this.options.enableTabIndentation)return!1;let n=(e=this.options.tabSize)!=null?e:hl,{state:r}=t,{selection:o}=r,{$from:i,empty:s}=o;return i.parent.type!==this.type?!1:s?t.commands.command(({tr:l})=>{var a;let{pos:c}=i,d=i.start(),u=i.end(),h=r.doc.textBetween(d,u,` +`,` +`).split(` +`),p=0,m=0,g=c-d;for(let S=0;S=g){p=S;break}m+=h[S].length+1}let w=((a=h[p].match(/^ */))==null?void 0:a[0])||"",b=Math.min(w.length,n);if(b===0)return!0;let C=d;for(let S=0;S{let{from:a,to:c}=o,f=r.doc.textBetween(a,c,` +`,` +`).split(` +`).map(h=>{var p;let m=((p=h.match(/^ */))==null?void 0:p[0])||"",g=Math.min(m.length,n);return h.slice(g)}).join(` +`);return l.replaceWith(a,c,r.schema.text(f)),!0})},Enter:({editor:t})=>{if(!this.options.exitOnTripleEnter)return!1;let{state:e}=t,{selection:n}=e,{$from:r,empty:o}=n;if(!o||r.parent.type!==this.type)return!1;let i=r.parentOffset===r.parent.nodeSize-2,s=r.parent.textContent.endsWith(` + +`);return!i||!s?!1:t.chain().command(({tr:l})=>(l.delete(r.pos-2,r.pos),!0)).exitCode().run()},ArrowDown:({editor:t})=>{if(!this.options.exitOnArrowDown)return!1;let{state:e}=t,{selection:n,doc:r}=e,{$from:o,empty:i}=n;if(!i||o.parent.type!==this.type||!(o.parentOffset===o.parent.nodeSize-2))return!1;let l=o.after();return l===void 0?!1:r.nodeAt(l)?t.commands.command(({tr:c})=>(c.setSelection(I.near(r.resolve(l))),!0)):t.commands.exitCode()}}},addInputRules(){return[ar({find:Qb,type:this.type,getAttributes:t=>({language:t[1]})}),ar({find:Zb,type:this.type,getAttributes:t=>({language:t[1]})})]},addProseMirrorPlugins(){return[new P({key:new H("codeBlockVSCodeHandler"),props:{handlePaste:(t,e)=>{if(!e.clipboardData||this.editor.isActive(this.type.name))return!1;let n=e.clipboardData.getData("text/plain"),r=e.clipboardData.getData("vscode-editor-data"),o=r?JSON.parse(r):void 0,i=o?.mode;if(!n||!i)return!1;let{tr:s,schema:l}=t.state,a=l.text(n.replace(/\r\n?/g,` +`));return s.replaceSelectionWith(this.type.create({language:i},a)),s.selection.$from.parent.type!==this.type&&s.setSelection(D.near(s.doc.resolve(Math.max(0,s.selection.from-2)))),s.setMeta("paste",!0),t.dispatch(s),!0}}})]}}),Lu=e0;var Bu=F.create({name:"customBlock",group:"block",atom:!0,defining:!0,draggable:!0,selectable:!0,isolating:!0,allowGapCursor:!0,inline:!1,addNodeView(){return({editor:t,node:e,getPos:n,HTMLAttributes:r,decorations:o,extension:i})=>{let s=document.createElement("div");s.setAttribute("data-config",e.attrs.config),s.setAttribute("data-id",e.attrs.id),s.setAttribute("data-type","customBlock");let l=document.createElement("div");if(l.className="fi-fo-rich-editor-custom-block-header fi-not-prose",s.appendChild(l),t.isEditable&&typeof e.attrs.config=="object"&&e.attrs.config!==null&&Object.keys(e.attrs.config).length>0){let c=document.createElement("div");c.className="fi-fo-rich-editor-custom-block-edit-btn-ctn",l.appendChild(c);let d=document.createElement("button");d.className="fi-icon-btn",d.type="button",d.innerHTML=i.options.editCustomBlockButtonIconHtml,d.addEventListener("click",()=>i.options.editCustomBlockUsing(e.attrs.id,e.attrs.config)),c.appendChild(d)}let a=document.createElement("p");if(a.className="fi-fo-rich-editor-custom-block-heading",a.textContent=e.attrs.label,l.appendChild(a),t.isEditable){let c=document.createElement("div");c.className="fi-fo-rich-editor-custom-block-delete-btn-ctn",l.appendChild(c);let d=document.createElement("button");d.className="fi-icon-btn",d.type="button",d.innerHTML=i.options.deleteCustomBlockButtonIconHtml,d.addEventListener("click",()=>t.chain().setNodeSelection(n()).deleteSelection().run()),c.appendChild(d)}if(e.attrs.preview){let c=document.createElement("div");c.className="fi-fo-rich-editor-custom-block-preview fi-not-prose",c.innerHTML=new TextDecoder().decode(Uint8Array.from(atob(e.attrs.preview),d=>d.charCodeAt(0))),s.appendChild(c)}return{dom:s}}},addOptions(){return{deleteCustomBlockButtonIconHtml:null,editCustomBlockButtonIconHtml:null,editCustomBlockUsing:()=>{},insertCustomBlockUsing:()=>{}}},addAttributes(){return{config:{default:null,parseHTML:t=>JSON.parse(t.getAttribute("data-config"))},id:{default:null,parseHTML:t=>t.getAttribute("data-id"),renderHTML:t=>t.id?{"data-id":t.id}:{}},label:{default:null,parseHTML:t=>t.getAttribute("data-label"),rendered:!1},preview:{default:null,parseHTML:t=>t.getAttribute("data-preview"),rendered:!1}}},parseHTML(){return[{tag:`div[data-type="${this.name}"]`}]},renderHTML({HTMLAttributes:t}){return["div",R(t)]},addKeyboardShortcuts(){return{Backspace:()=>this.editor.commands.command(({tr:t,state:e})=>{let n=!1,{selection:r}=e,{empty:o,anchor:i}=r;if(!o)return!1;let s=new ie,l=0;return e.doc.nodesBetween(i-1,i,(a,c)=>{if(a.type.name===this.name)return n=!0,s=a,l=c,!1}),n})}},addProseMirrorPlugins(){let{insertCustomBlockUsing:t}=this.options;return[new P({props:{handleDrop(e,n){if(!n||(n.preventDefault(),!n.dataTransfer.getData("customBlock")))return!1;let r=n.dataTransfer.getData("customBlock");return t(r,e.posAtCoords({left:n.clientX,top:n.clientY}).pos),!1}}})]}});var vo=(t,e)=>e.view.domAtPos(t).node.offsetParent!==null,t0=(t,e,n)=>{for(let r=t.depth;r>0;r-=1){let o=t.node(r),i=e(o),s=vo(t.start(r),n);if(i&&s)return{pos:r>0?t.before(r):0,start:t.start(r),depth:r,node:o}}},zu=(t,e)=>{let{state:n,view:r,extensionManager:o}=t,{schema:i,selection:s}=n,{empty:l,$anchor:a}=s,c=!!o.extensions.find(y=>y.name==="gapCursor");if(!l||a.parent.type!==i.nodes.detailsSummary||!c||e==="right"&&a.parentOffset!==a.parent.nodeSize-2)return!1;let d=et(y=>y.type===i.nodes.details)(s);if(!d)return!1;let u=En(d.node,y=>y.type===i.nodes.detailsContent);if(!u.length||vo(d.start+u[0].pos+1,t))return!1;let h=n.doc.resolve(d.pos+d.node.nodeSize),p=ae.findFrom(h,1,!1);if(!p)return!1;let{tr:m}=n,g=new ae(p);return m.setSelection(g),m.scrollIntoView(),r.dispatch(m),!0},Hu=F.create({name:"details",content:"detailsSummary detailsContent",group:"block",defining:!0,isolating:!0,allowGapCursor:!1,addOptions(){return{persist:!1,openClassName:"is-open",HTMLAttributes:{}}},addAttributes(){return this.options.persist?{open:{default:!1,parseHTML:t=>t.hasAttribute("open"),renderHTML:({open:t})=>t?{open:""}:{}}}:[]},parseHTML(){return[{tag:"details"}]},renderHTML({HTMLAttributes:t}){return["details",R(this.options.HTMLAttributes,t),0]},...Zt({nodeName:"details",content:"block"}),addNodeView(){return({editor:t,getPos:e,node:n,HTMLAttributes:r})=>{let o=document.createElement("div"),i=R(this.options.HTMLAttributes,r,{"data-type":this.name});Object.entries(i).forEach(([c,d])=>o.setAttribute(c,d));let s=document.createElement("button");s.type="button",o.append(s);let l=document.createElement("div");o.append(l);let a=c=>{if(c!==void 0)if(c){if(o.classList.contains(this.options.openClassName))return;o.classList.add(this.options.openClassName)}else{if(!o.classList.contains(this.options.openClassName))return;o.classList.remove(this.options.openClassName)}else o.classList.toggle(this.options.openClassName);let d=new Event("toggleDetailsContent"),u=l.querySelector(':scope > div[data-type="detailsContent"]');u?.dispatchEvent(d)};return n.attrs.open&&setTimeout(()=>a()),s.addEventListener("click",()=>{if(a(),!this.options.persist){t.commands.focus(void 0,{scrollIntoView:!1});return}if(t.isEditable&&typeof e=="function"){let{from:c,to:d}=t.state.selection;t.chain().command(({tr:u})=>{let f=e();if(!f)return!1;let h=u.doc.nodeAt(f);return h?.type!==this.type?!1:(u.setNodeMarkup(f,void 0,{open:!h.attrs.open}),!0)}).setTextSelection({from:c,to:d}).focus(void 0,{scrollIntoView:!1}).run()}}),{dom:o,contentDOM:l,ignoreMutation(c){return c.type==="selection"?!1:!o.contains(c.target)||o===c.target},update:c=>c.type!==this.type?!1:(c.attrs.open!==void 0&&a(c.attrs.open),!0)}}},addCommands(){return{setDetails:()=>({state:t,chain:e})=>{var n;let{schema:r,selection:o}=t,{$from:i,$to:s}=o,l=i.blockRange(s);if(!l)return!1;let a=t.doc.slice(l.start,l.end);if(!r.nodes.detailsContent.contentMatch.matchFragment(a.content))return!1;let d=((n=a.toJSON())==null?void 0:n.content)||[];return e().insertContentAt({from:l.start,to:l.end},{type:this.name,content:[{type:"detailsSummary"},{type:"detailsContent",content:d}]}).setTextSelection(l.start+2).run()},unsetDetails:()=>({state:t,chain:e})=>{let{selection:n,schema:r}=t,o=et(y=>y.type===this.type)(n);if(!o)return!1;let i=En(o.node,y=>y.type===r.nodes.detailsSummary),s=En(o.node,y=>y.type===r.nodes.detailsContent);if(!i.length||!s.length)return!1;let l=i[0],a=s[0],c=o.pos,d=t.doc.resolve(c),u=c+o.node.nodeSize,f={from:c,to:u},h=a.node.content.toJSON()||[],p=d.parent.type.contentMatch.defaultType,g=[p?.create(null,l.node.content).toJSON(),...h];return e().insertContentAt(f,g).setTextSelection(c+1).run()}}},addKeyboardShortcuts(){return{Backspace:()=>{let{schema:t,selection:e}=this.editor.state,{empty:n,$anchor:r}=e;return!n||r.parent.type!==t.nodes.detailsSummary?!1:r.parentOffset!==0?this.editor.commands.command(({tr:o})=>{let i=r.pos-1,s=r.pos;return o.delete(i,s),!0}):this.editor.commands.unsetDetails()},Enter:({editor:t})=>{let{state:e,view:n}=t,{schema:r,selection:o}=e,{$head:i}=o;if(i.parent.type!==r.nodes.detailsSummary)return!1;let s=vo(i.after()+1,t),l=s?e.doc.nodeAt(i.after()):i.node(-2);if(!l)return!1;let a=s?0:i.indexAfter(-1),c=sr(l.contentMatchAt(a));if(!c||!l.canReplaceWith(a,a,c))return!1;let d=c.createAndFill();if(!d)return!1;let u=s?i.after()+1:i.after(-1),f=e.tr.replaceWith(u,u,d),h=f.doc.resolve(u),p=I.near(h,1);return f.setSelection(p),f.scrollIntoView(),n.dispatch(f),!0},ArrowRight:({editor:t})=>zu(t,"right"),ArrowDown:({editor:t})=>zu(t,"down")}},addProseMirrorPlugins(){return[new P({key:new H("detailsSelection"),appendTransaction:(t,e,n)=>{let{editor:r,type:o}=this;if(r.view.composing||!t.some(y=>y.selectionSet)||!e.selection.empty||!n.selection.empty||!tl(n,o.name))return;let{$from:a}=n.selection;if(vo(a.pos,r))return;let d=t0(a,y=>y.type===o,r);if(!d)return;let u=En(d.node,y=>y.type===n.schema.nodes.detailsSummary);if(!u.length)return;let f=u[0],p=(e.selection.from{let e=document.createElement("div"),n=R(this.options.HTMLAttributes,t,{"data-type":this.name,hidden:"hidden"});return Object.entries(n).forEach(([r,o])=>e.setAttribute(r,o)),e.addEventListener("toggleDetailsContent",()=>{e.toggleAttribute("hidden")}),{dom:e,contentDOM:e,ignoreMutation(r){return r.type==="selection"?!1:!e.contains(r.target)||e===r.target},update:r=>r.type===this.type}}},addKeyboardShortcuts(){return{Enter:({editor:t})=>{let{state:e,view:n}=t,{selection:r}=e,{$from:o,empty:i}=r,s=et($=>$.type===this.type)(r);if(!i||!s||!s.node.childCount)return!1;let l=o.index(s.depth),{childCount:a}=s.node;if(!(a===l+1))return!1;let d=s.node.type.contentMatch.defaultType,u=d?.createAndFill();if(!u)return!1;let f=e.doc.resolve(s.pos+1),h=a-1,p=s.node.child(h),m=f.posAtIndex(h,s.depth);if(!p.eq(u))return!1;let y=o.node(-3);if(!y)return!1;let w=o.indexAfter(-3),b=sr(y.contentMatchAt(w));if(!b||!y.canReplaceWith(w,w,b))return!1;let C=b.createAndFill();if(!C)return!1;let{tr:x}=e,S=o.after(-2);x.replaceWith(S,S,C);let k=x.doc.resolve(S),O=I.near(k,1);x.setSelection(O);let T=m,A=m+p.nodeSize;return x.delete(T,A),x.scrollIntoView(),n.dispatch(x),!0}}},...Zt({nodeName:"detailsContent"})}),Fu=F.create({name:"detailsSummary",content:"text*",defining:!0,selectable:!1,isolating:!0,addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"summary"}]},renderHTML({HTMLAttributes:t}){return["summary",R(this.options.HTMLAttributes,t),0]},...Zt({nodeName:"detailsSummary",content:"inline"})});var n0=F.create({name:"doc",topNode:!0,content:"block+",renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` + +`):""}),Vu=n0;var _u=F.create({name:"grid",group:"block",defining:!0,isolating:!0,allowGapCursor:!1,content:"gridColumn+",addOptions(){return{HTMLAttributes:{class:"grid-layout"}}},addAttributes(){return{"data-cols":{default:2,parseHTML:t=>t.getAttribute("data-cols")},"data-from-breakpoint":{default:"md",parseHTML:t=>t.getAttribute("data-from-breakpoint")},style:{default:null,parseHTML:t=>t.getAttribute("style"),renderHTML:t=>({style:`grid-template-columns: repeat(${t["data-cols"]}, 1fr)`})}}},parseHTML(){return[{tag:"div",getAttrs:t=>t.classList.contains("grid-layout")&&null}]},renderHTML({HTMLAttributes:t}){return["div",R(this.options.HTMLAttributes,t),0]},addCommands(){return{insertGrid:({columns:t=[1,1],fromBreakpoint:e,coordinates:n=null}={})=>({tr:r,dispatch:o,editor:i})=>{let s=i.schema.nodes.gridColumn,l=Array.isArray(t)&&t.length?t:[1,1],a=[];for(let u=0;uNumber(u)||1).reduce((u,f)=>u+f,0),d=i.schema.nodes.grid.createChecked({"data-cols":c,"data-from-breakpoint":e},a);if(o){let u=r.selection.anchor+1;[null,void 0].includes(n?.from)?r.replaceSelectionWith(d).scrollIntoView().setSelection(D.near(r.doc.resolve(u))):r.replaceRangeWith(n.from,n.to,d).scrollIntoView().setSelection(D.near(r.doc.resolve(n.from)))}return!0}}}});var Wu=F.create({name:"gridColumn",content:"block+",isolating:!0,addOptions(){return{HTMLAttributes:{class:"grid-layout-col"}}},addAttributes(){return{"data-col-span":{default:1,parseHTML:t=>t.getAttribute("data-col-span"),renderHTML:t=>({"data-col-span":t["data-col-span"]??1})},style:{default:null,parseHTML:t=>t.getAttribute("style"),renderHTML:t=>({style:`grid-column: span ${t["data-col-span"]??1};`})}}},parseHTML(){return[{tag:"div",getAttrs:t=>t.classList.contains("grid-layout-col")&&null}]},renderHTML({HTMLAttributes:t}){return["div",R(this.options.HTMLAttributes,t),0]}});var r0=F.create({name:"hardBreak",markdownTokenName:"br",addOptions(){return{keepMarks:!0,HTMLAttributes:{}}},inline:!0,group:"inline",selectable:!1,linebreakReplacement:!0,parseHTML(){return[{tag:"br"}]},renderHTML({HTMLAttributes:t}){return["br",R(this.options.HTMLAttributes,t)]},renderText(){return` +`},renderMarkdown:()=>` +`,parseMarkdown:()=>({type:"hardBreak"}),addCommands(){return{setHardBreak:()=>({commands:t,chain:e,state:n,editor:r})=>t.first([()=>t.exitCode(),()=>t.command(()=>{let{selection:o,storedMarks:i}=n;if(o.$from.parent.type.spec.isolating)return!1;let{keepMarks:s}=this.options,{splittableMarks:l}=r.extensionManager,a=i||o.$to.parentOffset&&o.$from.marks();return e().insertContent({type:this.name}).command(({tr:c,dispatch:d})=>{if(d&&a&&s){let u=a.filter(f=>l.includes(f.type.name));c.ensureMarks(u)}return!0}).run()})])}},addKeyboardShortcuts(){return{"Mod-Enter":()=>this.editor.commands.setHardBreak(),"Shift-Enter":()=>this.editor.commands.setHardBreak()}}}),ju=r0;var o0=F.create({name:"heading",addOptions(){return{levels:[1,2,3,4,5,6],HTMLAttributes:{}}},content:"inline*",group:"block",defining:!0,addAttributes(){return{level:{default:1,rendered:!1}}},parseHTML(){return this.options.levels.map(t=>({tag:`h${t}`,attrs:{level:t}}))},renderHTML({node:t,HTMLAttributes:e}){return[`h${this.options.levels.includes(t.attrs.level)?t.attrs.level:this.options.levels[0]}`,R(this.options.HTMLAttributes,e),0]},parseMarkdown:(t,e)=>e.createNode("heading",{level:t.depth||1},e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>{var n;let r=(n=t.attrs)!=null&&n.level?parseInt(t.attrs.level,10):1,o="#".repeat(r);return t.content?`${o} ${e.renderChildren(t.content)}`:""},addCommands(){return{setHeading:t=>({commands:e})=>this.options.levels.includes(t.level)?e.setNode(this.name,t):!1,toggleHeading:t=>({commands:e})=>this.options.levels.includes(t.level)?e.toggleNode(this.name,"paragraph",t):!1}},addKeyboardShortcuts(){return this.options.levels.reduce((t,e)=>({...t,[`Mod-Alt-${e}`]:()=>this.editor.commands.toggleHeading({level:e})}),{})},addInputRules(){return this.options.levels.map(t=>ar({find:new RegExp(`^(#{${Math.min(...this.options.levels)},${t}})\\s$`),type:this.type,getAttributes:{level:t}}))}}),Uu=o0;var i0=/(?:^|\s)(==(?!\s+==)((?:[^=]+))==(?!\s+==))$/,s0=/(?:^|\s)(==(?!\s+==)((?:[^=]+))==(?!\s+==))/g,l0=ee.create({name:"highlight",addOptions(){return{multicolor:!1,HTMLAttributes:{}}},addAttributes(){return this.options.multicolor?{color:{default:null,parseHTML:t=>t.getAttribute("data-color")||t.style.backgroundColor,renderHTML:t=>t.color?{"data-color":t.color,style:`background-color: ${t.color}; color: inherit`}:{}}}:{}},parseHTML(){return[{tag:"mark"}]},renderHTML({HTMLAttributes:t}){return["mark",R(this.options.HTMLAttributes,t),0]},renderMarkdown:(t,e)=>`==${e.renderChildren(t)}==`,parseMarkdown:(t,e)=>e.applyMark("highlight",e.parseInline(t.tokens||[])),markdownTokenizer:{name:"highlight",level:"inline",start:t=>t.indexOf("=="),tokenize(t,e,n){let o=/^(==)([^=]+)(==)/.exec(t);if(o){let i=o[2].trim(),s=n.inlineTokens(i);return{type:"highlight",raw:o[0],text:i,tokens:s}}}},addCommands(){return{setHighlight:t=>({commands:e})=>e.setMark(this.name,t),toggleHighlight:t=>({commands:e})=>e.toggleMark(this.name,t),unsetHighlight:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-h":()=>this.editor.commands.toggleHighlight()}},addInputRules(){return[Be({find:i0,type:this.type})]},addPasteRules(){return[Me({find:s0,type:this.type})]}}),Ku=l0;var a0=F.create({name:"horizontalRule",addOptions(){return{HTMLAttributes:{},nextNodeType:"paragraph"}},group:"block",parseHTML(){return[{tag:"hr"}]},renderHTML({HTMLAttributes:t}){return["hr",R(this.options.HTMLAttributes,t)]},markdownTokenName:"hr",parseMarkdown:(t,e)=>e.createNode("horizontalRule"),renderMarkdown:()=>"---",addCommands(){return{setHorizontalRule:()=>({chain:t,state:e})=>{if(!bu(e,e.schema.nodes[this.name]))return!1;let{selection:n}=e,{$to:r}=n,o=t();return mo(n)?o.insertContentAt(r.pos,{type:this.name}):o.insertContent({type:this.name}),o.command(({state:i,tr:s,dispatch:l})=>{if(l){let{$to:a}=s.selection,c=a.end();if(a.nodeAfter)a.nodeAfter.isTextblock?s.setSelection(D.create(s.doc,a.pos+1)):a.nodeAfter.isBlock?s.setSelection(L.create(s.doc,a.pos)):s.setSelection(D.create(s.doc,a.pos));else{let d=i.schema.nodes[this.options.nextNodeType]||a.parent.type.contentMatch.defaultType,u=d?.create();u&&(s.insert(c,u),s.setSelection(D.create(s.doc,c+1)))}s.scrollIntoView()}return!0}).run()}}},addInputRules(){return[bo({find:/^(?:---|—-|___\s|\*\*\*\s)$/,type:this.type})]}}),qu=a0;var c0=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))$/,d0=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))/g,u0=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))$/,f0=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))/g,h0=ee.create({name:"italic",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"em"},{tag:"i",getAttrs:t=>t.style.fontStyle!=="normal"&&null},{style:"font-style=normal",clearMark:t=>t.type.name===this.name},{style:"font-style=italic"}]},renderHTML({HTMLAttributes:t}){return["em",R(this.options.HTMLAttributes,t),0]},addCommands(){return{setItalic:()=>({commands:t})=>t.setMark(this.name),toggleItalic:()=>({commands:t})=>t.toggleMark(this.name),unsetItalic:()=>({commands:t})=>t.unsetMark(this.name)}},markdownTokenName:"em",parseMarkdown:(t,e)=>e.applyMark("italic",e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>`*${e.renderChildren(t)}*`,addKeyboardShortcuts(){return{"Mod-i":()=>this.editor.commands.toggleItalic(),"Mod-I":()=>this.editor.commands.toggleItalic()}},addInputRules(){return[Be({find:c0,type:this.type}),Be({find:u0,type:this.type})]},addPasteRules(){return[Me({find:d0,type:this.type}),Me({find:f0,type:this.type})]}}),Ju=h0;var p0=/(?:^|\s)(!\[(.+|:?)]\((\S+)(?:(?:\s+)["'](\S+)["'])?\))$/,m0=F.create({name:"image",addOptions(){return{inline:!1,allowBase64:!1,HTMLAttributes:{},resize:!1}},inline(){return this.options.inline},group(){return this.options.inline?"inline":"block"},draggable:!0,addAttributes(){return{src:{default:null},alt:{default:null},title:{default:null},width:{default:null},height:{default:null}}},parseHTML(){return[{tag:this.options.allowBase64?"img[src]":'img[src]:not([src^="data:"])'}]},renderHTML({HTMLAttributes:t}){return["img",R(this.options.HTMLAttributes,t)]},parseMarkdown:(t,e)=>e.createNode("image",{src:t.href,title:t.title,alt:t.text}),renderMarkdown:t=>{var e,n,r,o,i,s;let l=(n=(e=t.attrs)==null?void 0:e.src)!=null?n:"",a=(o=(r=t.attrs)==null?void 0:r.alt)!=null?o:"",c=(s=(i=t.attrs)==null?void 0:i.title)!=null?s:"";return c?`![${a}](${l} "${c}")`:`![${a}](${l})`},addNodeView(){if(!this.options.resize||!this.options.resize.enabled||typeof document>"u")return null;let{directions:t,minWidth:e,minHeight:n,alwaysPreserveAspectRatio:r}=this.options.resize;return({node:o,getPos:i,HTMLAttributes:s,editor:l})=>{let a=document.createElement("img");Object.entries(s).forEach(([u,f])=>{if(f!=null)switch(u){case"width":case"height":break;default:a.setAttribute(u,f);break}}),a.src=s.src;let c=new yu({element:a,editor:l,node:o,getPos:i,onResize:(u,f)=>{a.style.width=`${u}px`,a.style.height=`${f}px`},onCommit:(u,f)=>{let h=i();h!==void 0&&this.editor.chain().setNodeSelection(h).updateAttributes(this.name,{width:u,height:f}).run()},onUpdate:(u,f,h)=>u.type===o.type,options:{directions:t,min:{width:e,height:n},preserveAspectRatio:r===!0}}),d=c.dom;return d.style.visibility="hidden",d.style.pointerEvents="none",a.onload=()=>{d.style.visibility="",d.style.pointerEvents=""},c}},addCommands(){return{setImage:t=>({commands:e})=>e.insertContent({type:this.name,attrs:t})}},addInputRules(){return[bo({find:p0,type:this.type,getAttributes:t=>{let[,,e,n,r]=t;return{src:n,alt:e,title:r}}})]}}),Gu=m0;var Xu=Gu.extend({addAttributes(){return{...this.parent?.(),id:{default:null,parseHTML:t=>t.getAttribute("data-id"),renderHTML:t=>t.id?{"data-id":t.id}:{}},width:{default:null,parseHTML:t=>t.getAttribute("width")||t.style.width||null,renderHTML:t=>t.width?{width:t.width,style:`width: ${t.width}`}:{}},height:{default:null,parseHTML:t=>t.getAttribute("height")||t.style.height||null,renderHTML:t=>t.height?{height:t.height,style:`height: ${t.height}`}:{}}}}});var Yu=F.create({name:"lead",group:"block",content:"block+",addOptions(){return{HTMLAttributes:{class:"lead"}}},parseHTML(){return[{tag:"div",getAttrs:t=>t.classList.contains("lead")}]},renderHTML({HTMLAttributes:t}){return["div",R(this.options.HTMLAttributes,t),0]},addCommands(){return{toggleLead:()=>({commands:t})=>t.toggleWrap(this.name)}}});var g0="aaa1rp3bb0ott3vie4c1le2ogado5udhabi7c0ademy5centure6ountant0s9o1tor4d0s1ult4e0g1ro2tna4f0l1rica5g0akhan5ency5i0g1rbus3force5tel5kdn3l0ibaba4pay4lfinanz6state5y2sace3tom5m0azon4ericanexpress7family11x2fam3ica3sterdam8nalytics7droid5quan4z2o0l2partments8p0le4q0uarelle8r0ab1mco4chi3my2pa2t0e3s0da2ia2sociates9t0hleta5torney7u0ction5di0ble3o3spost5thor3o0s4w0s2x0a2z0ure5ba0by2idu3namex4d1k2r0celona5laycard4s5efoot5gains6seball5ketball8uhaus5yern5b0c1t1va3cg1n2d1e0ats2uty4er2rlin4st0buy5t2f1g1h0arti5i0ble3d1ke2ng0o3o1z2j1lack0friday9ockbuster8g1omberg7ue3m0s1w2n0pparibas9o0ats3ehringer8fa2m1nd2o0k0ing5sch2tik2on4t1utique6x2r0adesco6idgestone9oadway5ker3ther5ussels7s1t1uild0ers6siness6y1zz3v1w1y1z0h3ca0b1fe2l0l1vinklein9m0era3p2non3petown5ital0one8r0avan4ds2e0er0s4s2sa1e1h1ino4t0ering5holic7ba1n1re3c1d1enter4o1rn3f0a1d2g1h0anel2nel4rity4se2t2eap3intai5ristmas6ome4urch5i0priani6rcle4sco3tadel4i0c2y3k1l0aims4eaning6ick2nic1que6othing5ud3ub0med6m1n1o0ach3des3ffee4llege4ogne5m0mbank4unity6pany2re3uter5sec4ndos3struction8ulting7tact3ractors9oking4l1p2rsica5untry4pon0s4rses6pa2r0edit0card4union9icket5own3s1uise0s6u0isinella9v1w1x1y0mru3ou3z2dad1nce3ta1e1ing3sun4y2clk3ds2e0al0er2s3gree4livery5l1oitte5ta3mocrat6ntal2ist5si0gn4v2hl2iamonds6et2gital5rect0ory7scount3ver5h2y2j1k1m1np2o0cs1tor4g1mains5t1wnload7rive4tv2ubai3nlop4pont4rban5vag2r2z2earth3t2c0o2deka3u0cation8e1g1mail3erck5nergy4gineer0ing9terprises10pson4quipment8r0icsson6ni3s0q1tate5t1u0rovision8s2vents5xchange6pert3osed4ress5traspace10fage2il1rwinds6th3mily4n0s2rm0ers5shion4t3edex3edback6rrari3ero6i0delity5o2lm2nal1nce1ial7re0stone6mdale6sh0ing5t0ness6j1k1lickr3ghts4r2orist4wers5y2m1o0o0d1tball6rd1ex2sale4um3undation8x2r0ee1senius7l1ogans4ntier7tr2ujitsu5n0d2rniture7tbol5yi3ga0l0lery3o1up4me0s3p1rden4y2b0iz3d0n2e0a1nt0ing5orge5f1g0ee3h1i0ft0s3ves2ing5l0ass3e1obal2o4m0ail3bh2o1x2n1odaddy5ld0point6f2o0dyear5g0le4p1t1v2p1q1r0ainger5phics5tis4een3ipe3ocery4up4s1t1u0cci3ge2ide2tars5ru3w1y2hair2mburg5ngout5us3bo2dfc0bank7ealth0care8lp1sinki6re1mes5iphop4samitsu7tachi5v2k0t2m1n1ockey4ldings5iday5medepot5goods5s0ense7nda3rse3spital5t0ing5t0els3mail5use3w2r1sbc3t1u0ghes5yatt3undai7ibm2cbc2e1u2d1e0ee3fm2kano4l1m0amat4db2mo0bilien9n0c1dustries8finiti5o2g1k1stitute6urance4e4t0ernational10uit4vestments10o1piranga7q1r0ish4s0maili5t0anbul7t0au2v3jaguar4va3cb2e0ep2tzt3welry6io2ll2m0p2nj2o0bs1urg4t1y2p0morgan6rs3uegos4niper7kaufen5ddi3e0rryhotels6properties14fh2g1h1i0a1ds2m1ndle4tchen5wi3m1n1oeln3matsu5sher5p0mg2n2r0d1ed3uokgroup8w1y0oto4z2la0caixa5mborghini8er3nd0rover6xess5salle5t0ino3robe5w0yer5b1c1ds2ease3clerc5frak4gal2o2xus4gbt3i0dl2fe0insurance9style7ghting6ke2lly3mited4o2ncoln4k2ve1ing5k1lc1p2oan0s3cker3us3l1ndon4tte1o3ve3pl0financial11r1s1t0d0a3u0ndbeck6xe1ury5v1y2ma0drid4if1son4keup4n0agement7go3p1rket0ing3s4riott5shalls7ttel5ba2c0kinsey7d1e0d0ia3et2lbourne7me1orial6n0u2rckmsd7g1h1iami3crosoft7l1ni1t2t0subishi9k1l0b1s2m0a2n1o0bi0le4da2e1i1m1nash3ey2ster5rmon3tgage6scow4to0rcycles9v0ie4p1q1r1s0d2t0n1r2u0seum3ic4v1w1x1y1z2na0b1goya4me2vy3ba2c1e0c1t0bank4flix4work5ustar5w0s2xt0direct7us4f0l2g0o2hk2i0co2ke1on3nja3ssan1y5l1o0kia3rton4w0ruz3tv4p1r0a1w2tt2u1yc2z2obi1server7ffice5kinawa6layan0group9lo3m0ega4ne1g1l0ine5oo2pen3racle3nge4g0anic5igins6saka4tsuka4t2vh3pa0ge2nasonic7ris2s1tners4s1y3y2ccw3e0t2f0izer5g1h0armacy6d1ilips5one2to0graphy6s4ysio5ics1tet2ures6d1n0g1k2oneer5zza4k1l0ace2y0station9umbing5s3m1n0c2ohl2ker3litie5rn2st3r0axi3ess3ime3o0d0uctions8f1gressive8mo2perties3y5tection8u0dential9s1t1ub2w0c2y2qa1pon3uebec3st5racing4dio4e0ad1lestate6tor2y4cipes5d0stone5umbrella9hab3ise0n3t2liance6n0t0als5pair3ort3ublican8st0aurant8view0s5xroth6ich0ardli6oh3l1o1p2o0cks3deo3gers4om3s0vp3u0gby3hr2n2w0e2yukyu6sa0arland6fe0ty4kura4le1on3msclub4ung5ndvik0coromant12ofi4p1rl2s1ve2xo3b0i1s2c0b1haeffler7midt4olarships8ol3ule3warz5ience5ot3d1e0arch3t2cure1ity6ek2lect4ner3rvices6ven3w1x0y3fr2g1h0angrila6rp3ell3ia1ksha5oes2p0ping5uji3w3i0lk2na1gles5te3j1k0i0n2y0pe4l0ing4m0art3ile4n0cf3o0ccer3ial4ftbank4ware6hu2lar2utions7ng1y2y2pa0ce3ort2t3r0l2s1t0ada2ples4r1tebank4farm7c0group6ockholm6rage3e3ream4udio2y3yle4u0cks3pplies3y2ort5rf1gery5zuki5v1watch4iss4x1y0dney4stems6z2tab1ipei4lk2obao4rget4tamotors6r2too4x0i3c0i2d0k2eam2ch0nology8l1masek5nnis4va3f1g1h0d1eater2re6iaa2ckets5enda4ps2res2ol4j0maxx4x2k0maxx5l1m0all4n1o0day3kyo3ols3p1ray3shiba5tal3urs3wn2yota3s3r0ade1ing4ining5vel0ers0insurance16ust3v2t1ube2i1nes3shu4v0s2w1z2ua1bank3s2g1k1nicom3versity8o2ol2ps2s1y1z2va0cations7na1guard7c1e0gas3ntures6risign5m\xF6gensberater2ung14sicherung10t2g1i0ajes4deo3g1king4llas4n1p1rgin4sa1ion4va1o3laanderen9n1odka3lvo3te1ing3o2yage5u2wales2mart4ter4ng0gou5tch0es6eather0channel12bcam3er2site5d0ding5ibo2r3f1hoswho6ien2ki2lliamhill9n0dows4e1ners6me2olterskluwer11odside6rk0s2ld3w2s1tc1f3xbox3erox4ihuan4n2xx2yz3yachts4hoo3maxun5ndex5e1odobashi7ga2kohama6u0tube6t1un3za0ppos4ra3ero3ip2m1one3uerich6w2",y0="\u03B5\u03BB1\u03C52\u0431\u04331\u0435\u043B3\u0434\u0435\u0442\u04384\u0435\u044E2\u043A\u0430\u0442\u043E\u043B\u0438\u043A6\u043E\u043C3\u043C\u043A\u04342\u043E\u043D1\u0441\u043A\u0432\u04306\u043E\u043D\u043B\u0430\u0439\u043D5\u0440\u04333\u0440\u0443\u04412\u04442\u0441\u0430\u0439\u04423\u0440\u04313\u0443\u043A\u04403\u049B\u0430\u04373\u0570\u0561\u05753\u05D9\u05E9\u05E8\u05D0\u05DC5\u05E7\u05D5\u05DD3\u0627\u0628\u0648\u0638\u0628\u064A5\u0631\u0627\u0645\u0643\u06485\u0644\u0627\u0631\u062F\u06464\u0628\u062D\u0631\u064A\u06465\u062C\u0632\u0627\u0626\u06315\u0633\u0639\u0648\u062F\u064A\u06296\u0639\u0644\u064A\u0627\u06465\u0645\u063A\u0631\u06285\u0645\u0627\u0631\u0627\u062A5\u06CC\u0631\u0627\u06465\u0628\u0627\u0631\u062A2\u0632\u0627\u06314\u064A\u062A\u06433\u06BE\u0627\u0631\u062A5\u062A\u0648\u0646\u06334\u0633\u0648\u062F\u0627\u06463\u0631\u064A\u06295\u0634\u0628\u0643\u06294\u0639\u0631\u0627\u06422\u06282\u0645\u0627\u06464\u0641\u0644\u0633\u0637\u064A\u06466\u0642\u0637\u06313\u0643\u0627\u062B\u0648\u0644\u064A\u06436\u0648\u06453\u0645\u0635\u06312\u0644\u064A\u0633\u064A\u06275\u0648\u0631\u064A\u062A\u0627\u0646\u064A\u06277\u0642\u06394\u0647\u0645\u0631\u0627\u06475\u067E\u0627\u06A9\u0633\u062A\u0627\u06467\u0680\u0627\u0631\u062A4\u0915\u0949\u092E3\u0928\u0947\u091F3\u092D\u093E\u0930\u09240\u092E\u094D3\u094B\u09245\u0938\u0902\u0917\u0920\u09285\u09AC\u09BE\u0982\u09B2\u09BE5\u09AD\u09BE\u09B0\u09A42\u09F0\u09A44\u0A2D\u0A3E\u0A30\u0A244\u0AAD\u0ABE\u0AB0\u0AA44\u0B2D\u0B3E\u0B30\u0B244\u0B87\u0BA8\u0BCD\u0BA4\u0BBF\u0BAF\u0BBE6\u0BB2\u0B99\u0BCD\u0B95\u0BC86\u0B9A\u0BBF\u0B99\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0BC2\u0BB0\u0BCD11\u0C2D\u0C3E\u0C30\u0C24\u0C4D5\u0CAD\u0CBE\u0CB0\u0CA44\u0D2D\u0D3E\u0D30\u0D24\u0D025\u0DBD\u0D82\u0D9A\u0DCF4\u0E04\u0E2D\u0E213\u0E44\u0E17\u0E223\u0EA5\u0EB2\u0EA73\u10D2\u10D42\u307F\u3093\u306A3\u30A2\u30DE\u30BE\u30F34\u30AF\u30E9\u30A6\u30C94\u30B0\u30FC\u30B0\u30EB4\u30B3\u30E02\u30B9\u30C8\u30A23\u30BB\u30FC\u30EB3\u30D5\u30A1\u30C3\u30B7\u30E7\u30F36\u30DD\u30A4\u30F3\u30C84\u4E16\u754C2\u4E2D\u4FE11\u56FD1\u570B1\u6587\u7F513\u4E9A\u9A6C\u900A3\u4F01\u4E1A2\u4F5B\u5C712\u4FE1\u606F2\u5065\u5EB72\u516B\u53662\u516C\u53F81\u76CA2\u53F0\u6E7E1\u70632\u5546\u57CE1\u5E971\u68072\u5609\u91CC0\u5927\u9152\u5E975\u5728\u7EBF2\u5927\u62FF2\u5929\u4E3B\u65593\u5A31\u4E502\u5BB6\u96FB2\u5E7F\u4E1C2\u5FAE\u535A2\u6148\u55842\u6211\u7231\u4F603\u624B\u673A2\u62DB\u80582\u653F\u52A11\u5E9C2\u65B0\u52A0\u57612\u95FB2\u65F6\u5C1A2\u66F8\u7C4D2\u673A\u67842\u6DE1\u9A6C\u95213\u6E38\u620F2\u6FB3\u95802\u70B9\u770B2\u79FB\u52A82\u7EC4\u7EC7\u673A\u67844\u7F51\u57401\u5E971\u7AD91\u7EDC2\u8054\u901A2\u8C37\u6B4C2\u8D2D\u72692\u901A\u8CA92\u96C6\u56E22\u96FB\u8A0A\u76C8\u79D14\u98DE\u5229\u6D663\u98DF\u54C12\u9910\u53852\u9999\u683C\u91CC\u62C93\u6E2F2\uB2F7\uB1371\uCEF42\uC0BC\uC1312\uD55C\uAD6D2",xl="numeric",kl="ascii",Sl="alpha",fr="asciinumeric",ur="alphanumeric",Cl="domain",of="emoji",b0="scheme",w0="slashscheme",pl="whitespace";function x0(t,e){return t in e||(e[t]=[]),e[t]}function nn(t,e,n){e[xl]&&(e[fr]=!0,e[ur]=!0),e[kl]&&(e[fr]=!0,e[Sl]=!0),e[fr]&&(e[ur]=!0),e[Sl]&&(e[ur]=!0),e[ur]&&(e[Cl]=!0),e[of]&&(e[Cl]=!0);for(let r in e){let o=x0(r,n);o.indexOf(t)<0&&o.push(t)}}function k0(t,e){let n={};for(let r in e)e[r].indexOf(t)>=0&&(n[r]=!0);return n}function Te(t=null){this.j={},this.jr=[],this.jd=null,this.t=t}Te.groups={};Te.prototype={accepts(){return!!this.t},go(t){let e=this,n=e.j[t];if(n)return n;for(let r=0;rt.ta(e,n,r,o),re=(t,e,n,r,o)=>t.tr(e,n,r,o),Qu=(t,e,n,r,o)=>t.ts(e,n,r,o),M=(t,e,n,r,o)=>t.tt(e,n,r,o),St="WORD",vl="UWORD",sf="ASCIINUMERICAL",lf="ALPHANUMERICAL",br="LOCALHOST",Ml="TLD",Tl="UTLD",Eo="SCHEME",On="SLASH_SCHEME",El="NUM",Al="WS",Nl="NL",hr="OPENBRACE",pr="CLOSEBRACE",No="OPENBRACKET",Oo="CLOSEBRACKET",Ro="OPENPAREN",Do="CLOSEPAREN",Io="OPENANGLEBRACKET",Po="CLOSEANGLEBRACKET",Lo="FULLWIDTHLEFTPAREN",Bo="FULLWIDTHRIGHTPAREN",zo="LEFTCORNERBRACKET",Ho="RIGHTCORNERBRACKET",$o="LEFTWHITECORNERBRACKET",Fo="RIGHTWHITECORNERBRACKET",Vo="FULLWIDTHLESSTHAN",_o="FULLWIDTHGREATERTHAN",Wo="AMPERSAND",jo="APOSTROPHE",Uo="ASTERISK",Lt="AT",Ko="BACKSLASH",qo="BACKTICK",Jo="CARET",Bt="COLON",Ol="COMMA",Go="DOLLAR",ot="DOT",Xo="EQUALS",Rl="EXCLAMATION",He="HYPHEN",mr="PERCENT",Yo="PIPE",Qo="PLUS",Zo="POUND",gr="QUERY",Dl="QUOTE",af="FULLWIDTHMIDDLEDOT",Il="SEMI",it="SLASH",yr="TILDE",ei="UNDERSCORE",cf="EMOJI",ti="SYM",df=Object.freeze({__proto__:null,ALPHANUMERICAL:lf,AMPERSAND:Wo,APOSTROPHE:jo,ASCIINUMERICAL:sf,ASTERISK:Uo,AT:Lt,BACKSLASH:Ko,BACKTICK:qo,CARET:Jo,CLOSEANGLEBRACKET:Po,CLOSEBRACE:pr,CLOSEBRACKET:Oo,CLOSEPAREN:Do,COLON:Bt,COMMA:Ol,DOLLAR:Go,DOT:ot,EMOJI:cf,EQUALS:Xo,EXCLAMATION:Rl,FULLWIDTHGREATERTHAN:_o,FULLWIDTHLEFTPAREN:Lo,FULLWIDTHLESSTHAN:Vo,FULLWIDTHMIDDLEDOT:af,FULLWIDTHRIGHTPAREN:Bo,HYPHEN:He,LEFTCORNERBRACKET:zo,LEFTWHITECORNERBRACKET:$o,LOCALHOST:br,NL:Nl,NUM:El,OPENANGLEBRACKET:Io,OPENBRACE:hr,OPENBRACKET:No,OPENPAREN:Ro,PERCENT:mr,PIPE:Yo,PLUS:Qo,POUND:Zo,QUERY:gr,QUOTE:Dl,RIGHTCORNERBRACKET:Ho,RIGHTWHITECORNERBRACKET:Fo,SCHEME:Eo,SEMI:Il,SLASH:it,SLASH_SCHEME:On,SYM:ti,TILDE:yr,TLD:Ml,UNDERSCORE:ei,UTLD:Tl,UWORD:vl,WORD:St,WS:Al}),xt=/[a-z]/,dr=/\p{L}/u,ml=/\p{Emoji}/u;var kt=/\d/,gl=/\s/;var Zu="\r",yl=` +`,S0="\uFE0F",C0="\u200D",bl="\uFFFC",Mo=null,To=null;function v0(t=[]){let e={};Te.groups=e;let n=new Te;Mo==null&&(Mo=ef(g0)),To==null&&(To=ef(y0)),M(n,"'",jo),M(n,"{",hr),M(n,"}",pr),M(n,"[",No),M(n,"]",Oo),M(n,"(",Ro),M(n,")",Do),M(n,"<",Io),M(n,">",Po),M(n,"\uFF08",Lo),M(n,"\uFF09",Bo),M(n,"\u300C",zo),M(n,"\u300D",Ho),M(n,"\u300E",$o),M(n,"\u300F",Fo),M(n,"\uFF1C",Vo),M(n,"\uFF1E",_o),M(n,"&",Wo),M(n,"*",Uo),M(n,"@",Lt),M(n,"`",qo),M(n,"^",Jo),M(n,":",Bt),M(n,",",Ol),M(n,"$",Go),M(n,".",ot),M(n,"=",Xo),M(n,"!",Rl),M(n,"-",He),M(n,"%",mr),M(n,"|",Yo),M(n,"+",Qo),M(n,"#",Zo),M(n,"?",gr),M(n,'"',Dl),M(n,"/",it),M(n,";",Il),M(n,"~",yr),M(n,"_",ei),M(n,"\\",Ko),M(n,"\u30FB",af);let r=re(n,kt,El,{[xl]:!0});re(r,kt,r);let o=re(r,xt,sf,{[fr]:!0}),i=re(r,dr,lf,{[ur]:!0}),s=re(n,xt,St,{[kl]:!0});re(s,kt,o),re(s,xt,s),re(o,kt,o),re(o,xt,o);let l=re(n,dr,vl,{[Sl]:!0});re(l,xt),re(l,kt,i),re(l,dr,l),re(i,kt,i),re(i,xt),re(i,dr,i);let a=M(n,yl,Nl,{[pl]:!0}),c=M(n,Zu,Al,{[pl]:!0}),d=re(n,gl,Al,{[pl]:!0});M(n,bl,d),M(c,yl,a),M(c,bl,d),re(c,gl,d),M(d,Zu),M(d,yl),re(d,gl,d),M(d,bl,d);let u=re(n,ml,cf,{[of]:!0});M(u,"#"),re(u,ml,u),M(u,S0,u);let f=M(u,C0);M(f,"#"),re(f,ml,u);let h=[[xt,s],[kt,o]],p=[[xt,null],[dr,l],[kt,i]];for(let m=0;mm[0]>g[0]?1:-1);for(let m=0;m=0?w[Cl]=!0:xt.test(g)?kt.test(g)?w[fr]=!0:w[kl]=!0:w[xl]=!0,Qu(n,g,g,w)}return Qu(n,"localhost",br,{ascii:!0}),n.jd=new Te(ti),{start:n,tokens:Object.assign({groups:e},df)}}function uf(t,e){let n=M0(e.replace(/[A-Z]/g,l=>l.toLowerCase())),r=n.length,o=[],i=0,s=0;for(;s=0&&(u+=n[s].length,f++),c+=n[s].length,i+=n[s].length,s++;i-=u,s-=f,c-=u,o.push({t:d.t,v:e.slice(i-c,i),s:i-c,e:i})}return o}function M0(t){let e=[],n=t.length,r=0;for(;r56319||r+1===n||(i=t.charCodeAt(r+1))<56320||i>57343?t[r]:t.slice(r,r+2);e.push(s),r+=s.length}return e}function Pt(t,e,n,r,o){let i,s=e.length;for(let l=0;l=0;)i++;if(i>0){e.push(n.join(""));for(let s=parseInt(t.substring(r,r+i),10);s>0;s--)n.pop();r+=i}else n.push(t[r]),r++}return e}var wr={defaultProtocol:"http",events:null,format:tf,formatHref:tf,nl2br:!1,tagName:"a",target:null,rel:null,validate:!0,truncate:1/0,className:null,attributes:null,ignoreTags:[],render:null};function Pl(t,e=null){let n=Object.assign({},wr);t&&(n=Object.assign(n,t instanceof Pl?t.o:t));let r=n.ignoreTags,o=[];for(let i=0;in?r.substring(0,n)+"\u2026":r},toFormattedHref(t){return t.get("formatHref",this.toHref(t.get("defaultProtocol")),this)},startIndex(){return this.tk[0].s},endIndex(){return this.tk[this.tk.length-1].e},toObject(t=wr.defaultProtocol){return{type:this.t,value:this.toString(),isLink:this.isLink,href:this.toHref(t),start:this.startIndex(),end:this.endIndex()}},toFormattedObject(t){return{type:this.t,value:this.toFormattedString(t),isLink:this.isLink,href:this.toFormattedHref(t),start:this.startIndex(),end:this.endIndex()}},validate(t){return t.get("validate",this.toString(),this)},render(t){let e=this,n=this.toHref(t.get("defaultProtocol")),r=t.get("formatHref",n,this),o=t.get("tagName",n,e),i=this.toFormattedString(t),s={},l=t.get("className",n,e),a=t.get("target",n,e),c=t.get("rel",n,e),d=t.getObj("attributes",n,e),u=t.getObj("events",n,e);return s.href=r,l&&(s.class=l),a&&(s.target=a),c&&(s.rel=c),d&&Object.assign(s,d),{tagName:o,attributes:s,content:i,eventListeners:u}}};function ni(t,e){class n extends ff{constructor(o,i){super(o,i),this.t=t}}for(let r in e)n.prototype[r]=e[r];return n.t=t,n}var nf=ni("email",{isLink:!0,toHref(){return"mailto:"+this.toString()}}),rf=ni("text"),T0=ni("nl"),Ao=ni("url",{isLink:!0,toHref(t=wr.defaultProtocol){return this.hasProtocol()?this.v:`${t}://${this.v}`},hasProtocol(){let t=this.tk;return t.length>=2&&t[0].t!==br&&t[1].t===Bt}});var ze=t=>new Te(t);function A0({groups:t}){let e=t.domain.concat([Wo,Uo,Lt,Ko,qo,Jo,Go,Xo,He,El,mr,Yo,Qo,Zo,it,ti,yr,ei]),n=[jo,Bt,Ol,ot,Rl,mr,gr,Dl,Il,Io,Po,hr,pr,Oo,No,Ro,Do,Lo,Bo,zo,Ho,$o,Fo,Vo,_o],r=[Wo,jo,Uo,Ko,qo,Jo,Go,Xo,He,hr,pr,mr,Yo,Qo,Zo,gr,it,ti,yr,ei],o=ze(),i=M(o,yr);j(i,r,i),j(i,t.domain,i);let s=ze(),l=ze(),a=ze();j(o,t.domain,s),j(o,t.scheme,l),j(o,t.slashscheme,a),j(s,r,i),j(s,t.domain,s);let c=M(s,Lt);M(i,Lt,c),M(l,Lt,c),M(a,Lt,c);let d=M(i,ot);j(d,r,i),j(d,t.domain,i);let u=ze();j(c,t.domain,u),j(u,t.domain,u);let f=M(u,ot);j(f,t.domain,u);let h=ze(nf);j(f,t.tld,h),j(f,t.utld,h),M(c,br,h);let p=M(u,He);M(p,He,p),j(p,t.domain,u),j(h,t.domain,u),M(h,ot,f),M(h,He,p);let m=M(h,Bt);j(m,t.numeric,nf);let g=M(s,He),y=M(s,ot);M(g,He,g),j(g,t.domain,s),j(y,r,i),j(y,t.domain,s);let w=ze(Ao);j(y,t.tld,w),j(y,t.utld,w),j(w,t.domain,s),j(w,r,i),M(w,ot,y),M(w,He,g),M(w,Lt,c);let b=M(w,Bt),C=ze(Ao);j(b,t.numeric,C);let x=ze(Ao),S=ze();j(x,e,x),j(x,n,S),j(S,e,x),j(S,n,S),M(w,it,x),M(C,it,x);let k=M(l,Bt),O=M(a,Bt),T=M(O,it),A=M(T,it);j(l,t.domain,s),M(l,ot,y),M(l,He,g),j(a,t.domain,s),M(a,ot,y),M(a,He,g),j(k,t.domain,x),M(k,it,x),M(k,gr,x),j(A,t.domain,x),j(A,e,x),M(A,it,x);let $=[[hr,pr],[No,Oo],[Ro,Do],[Io,Po],[Lo,Bo],[zo,Ho],[$o,Fo],[Vo,_o]];for(let z=0;z<$.length;z++){let[K,V]=$[z],N=M(x,K);M(S,K,N),M(N,V,x);let _=ze(Ao);j(N,e,_);let W=ze();j(N,n),j(_,e,_),j(_,n,W),j(W,e,_),j(W,n,W),M(_,V,x),M(W,V,x)}return M(o,br,w),M(o,Nl,T0),{start:o,tokens:df}}function E0(t,e,n){let r=n.length,o=0,i=[],s=[];for(;o=0&&f++,o++,d++;if(f<0)o-=d,o0&&(i.push(wl(rf,e,s)),s=[]),o-=f,d-=f;let h=u.t,p=n.slice(o-d,o);i.push(wl(h,e,p))}}return s.length>0&&i.push(wl(rf,e,s)),i}function wl(t,e,n){let r=n[0].s,o=n[n.length-1].e,i=e.slice(r,o);return new t(i,n)}var N0=typeof console<"u"&&console&&console.warn||(()=>{}),O0="until manual call of linkify.init(). Register all schemes and plugins before invoking linkify the first time.",Z={scanner:null,parser:null,tokenQueue:[],pluginQueue:[],customSchemes:[],initialized:!1};function hf(){return Te.groups={},Z.scanner=null,Z.parser=null,Z.tokenQueue=[],Z.pluginQueue=[],Z.customSchemes=[],Z.initialized=!1,Z}function Ll(t,e=!1){if(Z.initialized&&N0(`linkifyjs: already initialized - will not register custom scheme "${t}" ${O0}`),!/^[0-9a-z]+(-[0-9a-z]+)*$/.test(t))throw new Error(`linkifyjs: incorrect scheme format. +1. Must only contain digits, lowercase ASCII letters or "-" +2. Cannot start or end with "-" +3. "-" cannot repeat`);Z.customSchemes.push([t,e])}function R0(){Z.scanner=v0(Z.customSchemes);for(let t=0;t{let o=e.some(c=>c.docChanged)&&!n.doc.eq(r.doc),i=e.some(c=>c.getMeta("preventAutolink"));if(!o||i)return;let{tr:s}=r,l=Js(n.doc,[...e]);if(el(l).forEach(({newRange:c})=>{let d=jd(r.doc,c,h=>h.isTextblock),u,f;if(d.length>1)u=d[0],f=r.doc.textBetween(u.pos,u.pos+u.node.nodeSize,void 0," ");else if(d.length){let h=r.doc.textBetween(c.from,c.to," "," ");if(!I0.test(h))return;u=d[0],f=r.doc.textBetween(u.pos,c.to,void 0," ")}if(u&&f){let h=f.split(D0).filter(Boolean);if(h.length<=0)return!1;let p=h[h.length-1],m=u.pos+f.lastIndexOf(p);if(!p)return!1;let g=ri(p).map(y=>y.toObject(t.defaultProtocol));if(!L0(g))return!1;g.filter(y=>y.isLink).map(y=>({...y,from:m+y.start+1,to:m+y.end+1})).filter(y=>r.schema.marks.code?!r.doc.rangeHasMark(y.from,y.to,r.schema.marks.code):!0).filter(y=>t.validate(y.value)).filter(y=>t.shouldAutoLink(y.value)).forEach(y=>{po(y.from,y.to,r.doc).some(w=>w.mark.type===t.type)||s.addMark(y.from,y.to,t.type.create({href:y.href}))})}}),!!s.steps.length)return s}})}function z0(t){return new P({key:new H("handleClickLink"),props:{handleClick:(e,n,r)=>{var o,i;if(r.button!==0||!e.editable)return!1;let s=!1;if(t.enableClickSelection&&(s=t.editor.commands.extendMarkRange(t.type.name)),t.openOnClick){let l=null;if(r.target instanceof HTMLAnchorElement)l=r.target;else{let u=r.target,f=[];for(;u.nodeName!=="DIV";)f.push(u),u=u.parentNode;l=f.find(h=>h.nodeName==="A")}if(!l)return s;let a=Zs(e.state,t.type.name),c=(o=l?.href)!=null?o:a.href,d=(i=l?.target)!=null?i:a.target;l&&c&&(window.open(c,d),s=!0)}return s}}})}function H0(t){return new P({key:new H("handlePasteLink"),props:{handlePaste:(e,n,r)=>{let{shouldAutoLink:o}=t,{state:i}=e,{selection:s}=i,{empty:l}=s;if(l)return!1;let a="";r.content.forEach(d=>{a+=d.textContent});let c=oi(a,{defaultProtocol:t.defaultProtocol}).find(d=>d.isLink&&d.value===a);return!a||!c||o!==void 0&&!o(c.href)?!1:t.editor.commands.setMark(t.type,{href:c.href})}}})}function rn(t,e){let n=["http","https","ftp","ftps","mailto","tel","callto","sms","cid","xmpp"];return e&&e.forEach(r=>{let o=typeof r=="string"?r:r.scheme;o&&n.push(o)}),!t||t.replace(P0,"").match(new RegExp(`^(?:(?:${n.join("|")}):|[^a-z]|[a-z0-9+.-]+(?:[^a-z+.-:]|$))`,"i"))}var $0=ee.create({name:"link",priority:1e3,keepOnSplit:!1,exitable:!0,onCreate(){this.options.validate&&!this.options.shouldAutoLink&&(this.options.shouldAutoLink=this.options.validate,console.warn("The `validate` option is deprecated. Rename to the `shouldAutoLink` option instead.")),this.options.protocols.forEach(t=>{if(typeof t=="string"){Ll(t);return}Ll(t.scheme,t.optionalSlashes)})},onDestroy(){hf()},inclusive(){return this.options.autolink},addOptions(){return{openOnClick:!0,enableClickSelection:!1,linkOnPaste:!0,autolink:!0,protocols:[],defaultProtocol:"http",HTMLAttributes:{target:"_blank",rel:"noopener noreferrer nofollow",class:null},isAllowedUri:(t,e)=>!!rn(t,e.protocols),validate:t=>!!t,shouldAutoLink:t=>!!t}},addAttributes(){return{href:{default:null,parseHTML(t){return t.getAttribute("href")}},target:{default:this.options.HTMLAttributes.target},rel:{default:this.options.HTMLAttributes.rel},class:{default:this.options.HTMLAttributes.class}}},parseHTML(){return[{tag:"a[href]",getAttrs:t=>{let e=t.getAttribute("href");return!e||!this.options.isAllowedUri(e,{defaultValidate:n=>!!rn(n,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?!1:null}}]},renderHTML({HTMLAttributes:t}){return this.options.isAllowedUri(t.href,{defaultValidate:e=>!!rn(e,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?["a",R(this.options.HTMLAttributes,t),0]:["a",R(this.options.HTMLAttributes,{...t,href:""}),0]},markdownTokenName:"link",parseMarkdown:(t,e)=>e.applyMark("link",e.parseInline(t.tokens||[]),{href:t.href,title:t.title||null}),renderMarkdown:(t,e)=>{var n;let r=((n=t.attrs)==null?void 0:n.href)||"";return`[${e.renderChildren(t)}](${r})`},addCommands(){return{setLink:t=>({chain:e})=>{let{href:n}=t;return this.options.isAllowedUri(n,{defaultValidate:r=>!!rn(r,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?e().setMark(this.name,t).setMeta("preventAutolink",!0).run():!1},toggleLink:t=>({chain:e})=>{let{href:n}=t||{};return n&&!this.options.isAllowedUri(n,{defaultValidate:r=>!!rn(r,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?!1:e().toggleMark(this.name,t,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()},unsetLink:()=>({chain:t})=>t().unsetMark(this.name,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()}},addPasteRules(){return[Me({find:t=>{let e=[];if(t){let{protocols:n,defaultProtocol:r}=this.options,o=oi(t).filter(i=>i.isLink&&this.options.isAllowedUri(i.value,{defaultValidate:s=>!!rn(s,n),protocols:n,defaultProtocol:r}));o.length&&o.forEach(i=>{this.options.shouldAutoLink(i.value)&&e.push({text:i.value,data:{href:i.href},index:i.start})})}return e},type:this.type,getAttributes:t=>{var e;return{href:(e=t.data)==null?void 0:e.href}}})]},addProseMirrorPlugins(){let t=[],{protocols:e,defaultProtocol:n}=this.options;return this.options.autolink&&t.push(B0({type:this.type,defaultProtocol:this.options.defaultProtocol,validate:r=>this.options.isAllowedUri(r,{defaultValidate:o=>!!rn(o,e),protocols:e,defaultProtocol:n}),shouldAutoLink:this.options.shouldAutoLink})),t.push(z0({type:this.type,editor:this.editor,openOnClick:this.options.openOnClick==="whenNotEditable"?!0:this.options.openOnClick,enableClickSelection:this.options.enableClickSelection})),this.options.linkOnPaste&&t.push(H0({editor:this.editor,defaultProtocol:this.options.defaultProtocol,type:this.type,shouldAutoLink:this.options.shouldAutoLink})),t}}),pf=$0;var F0=Object.defineProperty,V0=(t,e)=>{for(var n in e)F0(t,n,{get:e[n],enumerable:!0})},_0="listItem",mf="textStyle",gf=/^\s*([-+*])\s$/,$l=F.create({name:"bulletList",addOptions(){return{itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}},group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML(){return[{tag:"ul"}]},renderHTML({HTMLAttributes:t}){return["ul",R(this.options.HTMLAttributes,t),0]},markdownTokenName:"list",parseMarkdown:(t,e)=>t.type!=="list"||t.ordered?[]:{type:"bulletList",content:t.items?e.parseChildren(t.items):[]},renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` +`):"",markdownOptions:{indentsContent:!0},addCommands(){return{toggleBulletList:()=>({commands:t,chain:e})=>this.options.keepAttributes?e().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(_0,this.editor.getAttributes(mf)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-8":()=>this.editor.commands.toggleBulletList()}},addInputRules(){let t=tt({find:gf,type:this.type});return(this.options.keepMarks||this.options.keepAttributes)&&(t=tt({find:gf,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:()=>this.editor.getAttributes(mf),editor:this.editor})),[t]}}),Fl=F.create({name:"listItem",addOptions(){return{HTMLAttributes:{},bulletListTypeName:"bulletList",orderedListTypeName:"orderedList"}},content:"paragraph block*",defining:!0,parseHTML(){return[{tag:"li"}]},renderHTML({HTMLAttributes:t}){return["li",R(this.options.HTMLAttributes,t),0]},markdownTokenName:"list_item",parseMarkdown:(t,e)=>{if(t.type!=="list_item")return[];let n=[];if(t.tokens&&t.tokens.length>0)if(t.tokens.some(o=>o.type==="paragraph"))n=e.parseChildren(t.tokens);else{let o=t.tokens[0];if(o&&o.type==="text"&&o.tokens&&o.tokens.length>0){if(n=[{type:"paragraph",content:e.parseInline(o.tokens)}],t.tokens.length>1){let s=t.tokens.slice(1),l=e.parseChildren(s);n.push(...l)}}else n=e.parseChildren(t.tokens)}return n.length===0&&(n=[{type:"paragraph",content:[]}]),{type:"listItem",content:n}},renderMarkdown:(t,e,n)=>cr(t,e,r=>r.parentType==="bulletList"?"- ":r.parentType==="orderedList"?`${r.index+1}. `:"- ",n),addKeyboardShortcuts(){return{Enter:()=>this.editor.commands.splitListItem(this.name),Tab:()=>this.editor.commands.sinkListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)}}}),W0={};V0(W0,{findListItemPos:()=>xr,getNextListDepth:()=>Vl,handleBackspace:()=>zl,handleDelete:()=>Hl,hasListBefore:()=>xf,hasListItemAfter:()=>j0,hasListItemBefore:()=>kf,listItemHasSubList:()=>Sf,nextListIsDeeper:()=>Cf,nextListIsHigher:()=>vf});var xr=(t,e)=>{let{$from:n}=e.selection,r=ne(t,e.schema),o=null,i=n.depth,s=n.pos,l=null;for(;i>0&&l===null;)o=n.node(i),o.type===r?l=i:(i-=1,s-=1);return l===null?null:{$pos:e.doc.resolve(s),depth:l}},Vl=(t,e)=>{let n=xr(t,e);if(!n)return!1;let[,r]=Xd(e,t,n.$pos.pos+4);return r},xf=(t,e,n)=>{let{$anchor:r}=t.selection,o=Math.max(0,r.pos-2),i=t.doc.resolve(o).node();return!(!i||!n.includes(i.type.name))},kf=(t,e)=>{var n;let{$anchor:r}=e.selection,o=e.doc.resolve(r.pos-2);return!(o.index()===0||((n=o.nodeBefore)==null?void 0:n.type.name)!==t)},Sf=(t,e,n)=>{if(!n)return!1;let r=ne(t,e.schema),o=!1;return n.descendants(i=>{i.type===r&&(o=!0)}),o},zl=(t,e,n)=>{if(t.commands.undoInputRule())return!0;if(t.state.selection.from!==t.state.selection.to)return!1;if(!Ze(t.state,e)&&xf(t.state,e,n)){let{$anchor:l}=t.state.selection,a=t.state.doc.resolve(l.before()-1),c=[];a.node().descendants((f,h)=>{f.type.name===e&&c.push({node:f,pos:h})});let d=c.at(-1);if(!d)return!1;let u=t.state.doc.resolve(a.start()+d.pos+1);return t.chain().cut({from:l.start()-1,to:l.end()+1},u.end()).joinForward().run()}if(!Ze(t.state,e)||!Qd(t.state))return!1;let r=xr(e,t.state);if(!r)return!1;let i=t.state.doc.resolve(r.$pos.pos-2).node(r.depth),s=Sf(e,t.state,i);return kf(e,t.state)&&!s?t.commands.joinItemBackward():t.chain().liftListItem(e).run()},Cf=(t,e)=>{let n=Vl(t,e),r=xr(t,e);return!r||!n?!1:n>r.depth},vf=(t,e)=>{let n=Vl(t,e),r=xr(t,e);return!r||!n?!1:n{if(!Ze(t.state,e)||!Yd(t.state,e))return!1;let{selection:n}=t.state,{$from:r,$to:o}=n;return!n.empty&&r.sameParent(o)?!1:Cf(e,t.state)?t.chain().focus(t.state.selection.from+4).lift(e).joinBackward().run():vf(e,t.state)?t.chain().joinForward().joinBackward().run():t.commands.joinItemForward()},j0=(t,e)=>{var n;let{$anchor:r}=e.selection,o=e.doc.resolve(r.pos-r.parentOffset-2);return!(o.index()===o.parent.childCount-1||((n=o.nodeAfter)==null?void 0:n.type.name)!==t)},U0=U.create({name:"listKeymap",addOptions(){return{listTypes:[{itemName:"listItem",wrapperNames:["bulletList","orderedList"]},{itemName:"taskItem",wrapperNames:["taskList"]}]}},addKeyboardShortcuts(){return{Delete:({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n})=>{t.state.schema.nodes[n]!==void 0&&Hl(t,n)&&(e=!0)}),e},"Mod-Delete":({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n})=>{t.state.schema.nodes[n]!==void 0&&Hl(t,n)&&(e=!0)}),e},Backspace:({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:r})=>{t.state.schema.nodes[n]!==void 0&&zl(t,n,r)&&(e=!0)}),e},"Mod-Backspace":({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:r})=>{t.state.schema.nodes[n]!==void 0&&zl(t,n,r)&&(e=!0)}),e}}}}),yf=/^(\s*)(\d+)\.\s+(.*)$/,K0=/^\s/;function q0(t){let e=[],n=0,r=0;for(;ne;)f.push(t[u]),u+=1;if(f.length>0){let h=Math.min(...f.map(m=>m.indent)),p=Mf(f,h,n);c.push({type:"list",ordered:!0,start:f[0].number,items:p,raw:f.map(m=>m.raw).join(` +`)})}o.push({type:"list_item",raw:s.raw,tokens:c}),i=u}else i+=1}return o}function J0(t,e){return t.map(n=>{if(n.type!=="list_item")return e.parseChildren([n])[0];let r=[];return n.tokens&&n.tokens.length>0&&n.tokens.forEach(o=>{if(o.type==="paragraph"||o.type==="list"||o.type==="blockquote"||o.type==="code")r.push(...e.parseChildren([o]));else if(o.type==="text"&&o.tokens){let i=e.parseChildren([o]);r.push({type:"paragraph",content:i})}else{let i=e.parseChildren([o]);i.length>0&&r.push(...i)}}),{type:"listItem",content:r}})}var G0="listItem",bf="textStyle",wf=/^(\d+)\.\s$/,_l=F.create({name:"orderedList",addOptions(){return{itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}},group:"block list",content(){return`${this.options.itemTypeName}+`},addAttributes(){return{start:{default:1,parseHTML:t=>t.hasAttribute("start")?parseInt(t.getAttribute("start")||"",10):1},type:{default:null,parseHTML:t=>t.getAttribute("type")}}},parseHTML(){return[{tag:"ol"}]},renderHTML({HTMLAttributes:t}){let{start:e,...n}=t;return e===1?["ol",R(this.options.HTMLAttributes,n),0]:["ol",R(this.options.HTMLAttributes,t),0]},markdownTokenName:"list",parseMarkdown:(t,e)=>{if(t.type!=="list"||!t.ordered)return[];let n=t.start||1,r=t.items?J0(t.items,e):[];return n!==1?{type:"orderedList",attrs:{start:n},content:r}:{type:"orderedList",content:r}},renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` +`):"",markdownTokenizer:{name:"orderedList",level:"block",start:t=>{let e=t.match(/^(\s*)(\d+)\.\s+/),n=e?.index;return n!==void 0?n:-1},tokenize:(t,e,n)=>{var r;let o=t.split(` +`),[i,s]=q0(o);if(i.length===0)return;let l=Mf(i,0,n);return l.length===0?void 0:{type:"list",ordered:!0,start:((r=i[0])==null?void 0:r.number)||1,items:l,raw:o.slice(0,s).join(` +`)}}},markdownOptions:{indentsContent:!0},addCommands(){return{toggleOrderedList:()=>({commands:t,chain:e})=>this.options.keepAttributes?e().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(G0,this.editor.getAttributes(bf)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-7":()=>this.editor.commands.toggleOrderedList()}},addInputRules(){let t=tt({find:wf,type:this.type,getAttributes:e=>({start:+e[1]}),joinPredicate:(e,n)=>n.childCount+n.attrs.start===+e[1]});return(this.options.keepMarks||this.options.keepAttributes)&&(t=tt({find:wf,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:e=>({start:+e[1],...this.editor.getAttributes(bf)}),joinPredicate:(e,n)=>n.childCount+n.attrs.start===+e[1],editor:this.editor})),[t]}}),X0=/^\s*(\[([( |x])?\])\s$/,Y0=F.create({name:"taskItem",addOptions(){return{nested:!1,HTMLAttributes:{},taskListTypeName:"taskList",a11y:void 0}},content(){return this.options.nested?"paragraph block*":"paragraph+"},defining:!0,addAttributes(){return{checked:{default:!1,keepOnSplit:!1,parseHTML:t=>{let e=t.getAttribute("data-checked");return e===""||e==="true"},renderHTML:t=>({"data-checked":t.checked})}}},parseHTML(){return[{tag:`li[data-type="${this.name}"]`,priority:51}]},renderHTML({node:t,HTMLAttributes:e}){return["li",R(this.options.HTMLAttributes,e,{"data-type":this.name}),["label",["input",{type:"checkbox",checked:t.attrs.checked?"checked":null}],["span"]],["div",0]]},parseMarkdown:(t,e)=>{let n=[];if(t.tokens&&t.tokens.length>0?n.push(e.createNode("paragraph",{},e.parseInline(t.tokens))):t.text?n.push(e.createNode("paragraph",{},[e.createNode("text",{text:t.text})])):n.push(e.createNode("paragraph",{},[])),t.nestedTokens&&t.nestedTokens.length>0){let r=e.parseChildren(t.nestedTokens);n.push(...r)}return e.createNode("taskItem",{checked:t.checked||!1},n)},renderMarkdown:(t,e)=>{var n;let o=`- [${(n=t.attrs)!=null&&n.checked?"x":" "}] `;return cr(t,e,o)},addKeyboardShortcuts(){let t={Enter:()=>this.editor.commands.splitListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)};return this.options.nested?{...t,Tab:()=>this.editor.commands.sinkListItem(this.name)}:t},addNodeView(){return({node:t,HTMLAttributes:e,getPos:n,editor:r})=>{let o=document.createElement("li"),i=document.createElement("label"),s=document.createElement("span"),l=document.createElement("input"),a=document.createElement("div"),c=d=>{var u,f;l.ariaLabel=((f=(u=this.options.a11y)==null?void 0:u.checkboxLabel)==null?void 0:f.call(u,d,l.checked))||`Task item checkbox for ${d.textContent||"empty task item"}`};return c(t),i.contentEditable="false",l.type="checkbox",l.addEventListener("mousedown",d=>d.preventDefault()),l.addEventListener("change",d=>{if(!r.isEditable&&!this.options.onReadOnlyChecked){l.checked=!l.checked;return}let{checked:u}=d.target;r.isEditable&&typeof n=="function"&&r.chain().focus(void 0,{scrollIntoView:!1}).command(({tr:f})=>{let h=n();if(typeof h!="number")return!1;let p=f.doc.nodeAt(h);return f.setNodeMarkup(h,void 0,{...p?.attrs,checked:u}),!0}).run(),!r.isEditable&&this.options.onReadOnlyChecked&&(this.options.onReadOnlyChecked(t,u)||(l.checked=!l.checked))}),Object.entries(this.options.HTMLAttributes).forEach(([d,u])=>{o.setAttribute(d,u)}),o.dataset.checked=t.attrs.checked,l.checked=t.attrs.checked,i.append(l,s),o.append(i,a),Object.entries(e).forEach(([d,u])=>{o.setAttribute(d,u)}),{dom:o,contentDOM:a,update:d=>d.type!==this.type?!1:(o.dataset.checked=d.attrs.checked,l.checked=d.attrs.checked,c(d),!0)}}},addInputRules(){return[tt({find:X0,type:this.type,getAttributes:t=>({checked:t[t.length-1]==="x"})})]}}),Q0=F.create({name:"taskList",addOptions(){return{itemTypeName:"taskItem",HTMLAttributes:{}}},group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML(){return[{tag:`ul[data-type="${this.name}"]`,priority:51}]},renderHTML({HTMLAttributes:t}){return["ul",R(this.options.HTMLAttributes,t,{"data-type":this.name}),0]},parseMarkdown:(t,e)=>e.createNode("taskList",{},e.parseChildren(t.items||[])),renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` +`):"",markdownTokenizer:{name:"taskList",level:"block",start(t){var e;let n=(e=t.match(/^\s*[-+*]\s+\[([ xX])\]\s+/))==null?void 0:e.index;return n!==void 0?n:-1},tokenize(t,e,n){let r=i=>{let s=wo(i,{itemPattern:/^(\s*)([-+*])\s+\[([ xX])\]\s+(.*)$/,extractItemData:l=>({indentLevel:l[1].length,mainContent:l[4],checked:l[3].toLowerCase()==="x"}),createToken:(l,a)=>({type:"taskItem",raw:"",mainContent:l.mainContent,indentLevel:l.indentLevel,checked:l.checked,text:l.mainContent,tokens:n.inlineTokens(l.mainContent),nestedTokens:a}),customNestedParser:r},n);return s?[{type:"taskList",raw:s.raw,items:s.items}]:n.blockTokens(i)},o=wo(t,{itemPattern:/^(\s*)([-+*])\s+\[([ xX])\]\s+(.*)$/,extractItemData:i=>({indentLevel:i[1].length,mainContent:i[4],checked:i[3].toLowerCase()==="x"}),createToken:(i,s)=>({type:"taskItem",raw:"",mainContent:i.mainContent,indentLevel:i.indentLevel,checked:i.checked,text:i.mainContent,tokens:n.inlineTokens(i.mainContent),nestedTokens:s}),customNestedParser:r},n);if(o)return{type:"taskList",raw:o.raw,items:o.items}}},markdownOptions:{indentsContent:!0},addCommands(){return{toggleTaskList:()=>({commands:t})=>t.toggleList(this.name,this.options.itemTypeName)}},addKeyboardShortcuts(){return{"Mod-Shift-9":()=>this.editor.commands.toggleTaskList()}}}),dv=U.create({name:"listKit",addExtensions(){let t=[];return this.options.bulletList!==!1&&t.push($l.configure(this.options.bulletList)),this.options.listItem!==!1&&t.push(Fl.configure(this.options.listItem)),this.options.listKeymap!==!1&&t.push(U0.configure(this.options.listKeymap)),this.options.orderedList!==!1&&t.push(_l.configure(this.options.orderedList)),this.options.taskItem!==!1&&t.push(Y0.configure(this.options.taskItem)),this.options.taskList!==!1&&t.push(Q0.configure(this.options.taskList)),t}});var ii=(t,e,n={})=>{t.dom.closest("form")?.dispatchEvent(new CustomEvent(e,{composed:!0,cancelable:!0,detail:n}))},Tf=({files:t,acceptedTypes:e,acceptedTypesValidationMessage:n,maxSize:r,maxSizeValidationMessage:o})=>{for(let i of t){if(e&&!e.includes(i.type))return n;if(r&&i.size>+r*1024)return o}return null},Z0=({editor:t,acceptedTypes:e,acceptedTypesValidationMessage:n,get$WireUsing:r,key:o,maxSize:i,maxSizeValidationMessage:s,statePath:l,uploadingMessage:a})=>{let c=d=>Livewire.fireAction(r().__instance,"callSchemaComponentMethod",[o,"getUploadedFileAttachmentTemporaryUrl",{attachment:d}],{async:!0});return new P({key:new H("localFiles"),props:{handleDrop(d,u){if(!u.dataTransfer?.files.length)return!1;let f=Array.from(u.dataTransfer.files),h=Tf({files:f,acceptedTypes:e,acceptedTypesValidationMessage:n,maxSize:i,maxSizeValidationMessage:s});if(h)return d.dom.dispatchEvent(new CustomEvent("rich-editor-file-validation-message",{bubbles:!0,detail:{key:o,livewireId:r().id,validationMessage:h}})),!1;if(!f.length)return!1;ii(d,"form-processing-started",{message:a}),u.preventDefault(),u.stopPropagation();let p=d.posAtCoords({left:u.clientX,top:u.clientY});return f.forEach((m,g)=>{t.setEditable(!1),d.dom.dispatchEvent(new CustomEvent("rich-editor-uploading-file",{bubbles:!0,detail:{key:o,livewireId:r().id}}));let y=("10000000-1000-4000-8000"+-1e11).replace(/[018]/g,w=>(w^crypto.getRandomValues(new Uint8Array(1))[0]&15>>w/4).toString(16));r().upload(`componentFileAttachments.${l}.${y}`,m,()=>{c(y).then(w=>{w&&(t.chain().insertContentAt(p?.pos??0,{type:"image",attrs:{id:y,src:w}}).run(),t.setEditable(!0),d.dom.dispatchEvent(new CustomEvent("rich-editor-uploaded-file",{bubbles:!0,detail:{key:o,livewireId:r().id}})),g===f.length-1&&ii(d,"form-processing-finished"))})})}),!0},handlePaste(d,u){if(!u.clipboardData?.files.length||u.clipboardData?.getData("text").length)return!1;let f=Array.from(u.clipboardData.files),h=Tf({files:f,acceptedTypes:e,acceptedTypesValidationMessage:n,maxSize:i,maxSizeValidationMessage:s});return h?(d.dom.dispatchEvent(new CustomEvent("rich-editor-file-validation-message",{bubbles:!0,detail:{key:o,livewireId:r().id,validationMessage:h}})),!1):f.length?(u.preventDefault(),u.stopPropagation(),ii(d,"form-processing-started",{message:a}),f.forEach((p,m)=>{t.setEditable(!1),d.dom.dispatchEvent(new CustomEvent("rich-editor-uploading-file",{bubbles:!0,detail:{key:o,livewireId:r().id}}));let g=("10000000-1000-4000-8000"+-1e11).replace(/[018]/g,y=>(y^crypto.getRandomValues(new Uint8Array(1))[0]&15>>y/4).toString(16));r().upload(`componentFileAttachments.${l}.${g}`,p,()=>{c(g).then(y=>{y&&(t.chain().insertContentAt(t.state.selection.anchor,{type:"image",attrs:{id:g,src:y}}).run(),t.setEditable(!0),d.dom.dispatchEvent(new CustomEvent("rich-editor-uploaded-file",{bubbles:!0,detail:{key:o,livewireId:r().id}})),m===f.length-1&&ii(d,"form-processing-finished"))})})}),!0):!1}}})},Af=U.create({name:"localFiles",addOptions(){return{acceptedTypes:[],acceptedTypesValidationMessage:null,key:null,maxSize:null,maxSizeValidationMessage:null,statePath:null,uploadingMessage:null,get$WireUsing:null}},addProseMirrorPlugins(){return[Z0({editor:this.editor,...this.options})]}});function ew(t){var e;let{char:n,allowSpaces:r,allowToIncludeChar:o,allowedPrefixes:i,startOfLine:s,$position:l}=t,a=r&&!o,c=wu(n),d=new RegExp(`\\s${c}$`),u=s?"^":"",f=o?"":c,h=a?new RegExp(`${u}${c}.*?(?=\\s${f}|$)`,"gm"):new RegExp(`${u}(?:^)?${c}[^\\s${f}]*`,"gm"),p=((e=l.nodeBefore)==null?void 0:e.isText)&&l.nodeBefore.text;if(!p)return null;let m=l.pos-p.length,g=Array.from(p.matchAll(h)).pop();if(!g||g.input===void 0||g.index===void 0)return null;let y=g.input.slice(Math.max(0,g.index-1),g.index),w=new RegExp(`^[${i?.join("")}\0]?$`).test(y);if(i!==null&&!w)return null;let b=m+g.index,C=b+g[0].length;return a&&d.test(p.slice(C-1,C+1))&&(g[0]+=" ",C+=1),b=l.pos?{range:{from:b,to:C},query:g[0].slice(n.length),text:g[0]}:null}var tw=new H("suggestion");function nw({pluginKey:t=tw,editor:e,char:n="@",allowSpaces:r=!1,allowToIncludeChar:o=!1,allowedPrefixes:i=[" "],startOfLine:s=!1,decorationTag:l="span",decorationClass:a="suggestion",decorationContent:c="",decorationEmptyClass:d="is-empty",command:u=()=>null,items:f=()=>[],render:h=()=>({}),allow:p=()=>!0,findSuggestionMatch:m=ew}){let g,y=h?.(),w=()=>{let S=e.state.selection.$anchor.pos,k=e.view.coordsAtPos(S),{top:O,right:T,bottom:A,left:$}=k;try{return new DOMRect($,O,T-$,A-O)}catch{return null}},b=(S,k)=>k?()=>{let O=t.getState(e.state),T=O?.decorationId,A=S.dom.querySelector(`[data-decoration-id="${T}"]`);return A?.getBoundingClientRect()||null}:w;function C(S,k){var O;try{let A=t.getState(S.state),$=A?.decorationId?S.dom.querySelector(`[data-decoration-id="${A.decorationId}"]`):null,z={editor:e,range:A?.range||{from:0,to:0},query:A?.query||null,text:A?.text||null,items:[],command:K=>u({editor:e,range:A?.range||{from:0,to:0},props:K}),decorationNode:$,clientRect:b(S,$)};(O=y?.onExit)==null||O.call(y,z)}catch{}let T=S.state.tr.setMeta(k,{exit:!0});S.dispatch(T)}let x=new P({key:t,view(){return{update:async(S,k)=>{var O,T,A,$,z,K,V;let N=(O=this.key)==null?void 0:O.getState(k),_=(T=this.key)==null?void 0:T.getState(S.state),W=N.active&&_.active&&N.range.from!==_.range.from,Q=!N.active&&_.active,me=N.active&&!_.active,Ge=!Q&&!me&&N.query!==_.query,q=Q||W&&Ge,We=Ge||W,je=me||W&&Ge;if(!q&&!We&&!je)return;let dn=je&&!q?N:_,aa=S.dom.querySelector(`[data-decoration-id="${dn.decorationId}"]`);g={editor:e,range:dn.range,query:dn.query,text:dn.text,items:[],command:ip=>u({editor:e,range:dn.range,props:ip}),decorationNode:aa,clientRect:b(S,aa)},q&&((A=y?.onBeforeStart)==null||A.call(y,g)),We&&(($=y?.onBeforeUpdate)==null||$.call(y,g)),(We||q)&&(g.items=await f({editor:e,query:dn.query})),je&&((z=y?.onExit)==null||z.call(y,g)),We&&((K=y?.onUpdate)==null||K.call(y,g)),q&&((V=y?.onStart)==null||V.call(y,g))},destroy:()=>{var S;g&&((S=y?.onExit)==null||S.call(y,g))}}},state:{init(){return{active:!1,range:{from:0,to:0},query:null,text:null,composing:!1}},apply(S,k,O,T){let{isEditable:A}=e,{composing:$}=e.view,{selection:z}=S,{empty:K,from:V}=z,N={...k},_=S.getMeta(t);if(_&&_.exit)return N.active=!1,N.decorationId=null,N.range={from:0,to:0},N.query=null,N.text=null,N;if(N.composing=$,A&&(K||e.view.composing)){(Vk.range.to)&&!$&&!k.composing&&(N.active=!1);let W=m({char:n,allowSpaces:r,allowToIncludeChar:o,allowedPrefixes:i,startOfLine:s,$position:z.$from}),Q=`id_${Math.floor(Math.random()*4294967295)}`;W&&p({editor:e,state:T,range:W.range,isActive:k.active})?(N.active=!0,N.decorationId=k.decorationId?k.decorationId:Q,N.range=W.range,N.query=W.query,N.text=W.text):N.active=!1}else N.active=!1;return N.active||(N.decorationId=null,N.range={from:0,to:0},N.query=null,N.text=null),N}},props:{handleKeyDown(S,k){var O,T,A,$;let{active:z,range:K}=x.getState(S.state);if(!z)return!1;if(k.key==="Escape"||k.key==="Esc"){let N=x.getState(S.state),_=(O=g?.decorationNode)!=null?O:null,W=_??(N?.decorationId?S.dom.querySelector(`[data-decoration-id="${N.decorationId}"]`):null);if(((T=y?.onKeyDown)==null?void 0:T.call(y,{view:S,event:k,range:N.range}))||!1)return!0;let me={editor:e,range:N.range,query:N.query,text:N.text,items:[],command:Ge=>u({editor:e,range:N.range,props:Ge}),decorationNode:W,clientRect:W?()=>W.getBoundingClientRect()||null:null};return(A=y?.onExit)==null||A.call(y,me),C(S,t),!0}return(($=y?.onKeyDown)==null?void 0:$.call(y,{view:S,event:k,range:K}))||!1},decorations(S){let{active:k,range:O,decorationId:T,query:A}=x.getState(S);if(!k)return null;let $=!A?.length,z=[a];return $&&z.push(d),Y.create(S.doc,[te.inline(O.from,O.to,{nodeName:l,class:z.join(" "),"data-decoration-id":T,"data-decoration-content":c})])}}});return x}var si=nw;var rw=function({editor:t,overrideSuggestionOptions:e,extensionName:n}){let r=new H;return{editor:t,char:"{{",pluginKey:r,command:({editor:o,range:i,props:s})=>{o.view.state.selection.$to.nodeAfter?.text?.startsWith(" ")&&(i.to+=1),o.chain().focus().insertContentAt(i,[{type:n,attrs:{...s}},{type:"text",text:" "}]).run(),o.view.dom.ownerDocument.defaultView?.getSelection()?.collapseToEnd()},allow:({state:o,range:i})=>{let s=o.doc.resolve(i.from),l=o.schema.nodes[n];return!!s.parent.type.contentMatch.matchType(l)},...e}},Ef=F.create({name:"mergeTag",priority:101,addStorage(){return{mergeTags:[],suggestions:[],getSuggestionFromChar:()=>null}},addOptions(){return{HTMLAttributes:{},renderText({node:t}){return`{{ ${this.mergeTags[t.attrs.id]} }}`},deleteTriggerWithBackspace:!1,renderHTML({options:t,node:e}){return["span",R(this.HTMLAttributes,t.HTMLAttributes),`${this.mergeTags[e.attrs.id]}`]},suggestions:[],suggestion:{}}},group:"inline",inline:!0,selectable:!1,atom:!0,addAttributes(){return{id:{default:null,parseHTML:t=>t.getAttribute("data-id"),renderHTML:t=>t.id?{"data-id":t.id}:{}}}},parseHTML(){return[{tag:`span[data-type="${this.name}"]`}]},renderHTML({node:t,HTMLAttributes:e}){let n=this.editor?.extensionStorage?.[this.name]?.getSuggestionFromChar("{{"),r={...this.options};r.HTMLAttributes=R({"data-type":this.name},this.options.HTMLAttributes,e);let o=this.options.renderHTML({options:r,node:t,suggestion:n});return typeof o=="string"?["span",R({"data-type":this.name},this.options.HTMLAttributes,e),o]:o},renderText({node:t}){let e={options:this.options,node:t,suggestion:this.editor?.extensionStorage?.[this.name]?.getSuggestionFromChar("{{")};return this.options.renderText(e)},addKeyboardShortcuts(){return{Backspace:()=>this.editor.commands.command(({tr:t,state:e})=>{let n=!1,{selection:r}=e,{empty:o,anchor:i}=r;if(!o)return!1;let s=new ie,l=0;return e.doc.nodesBetween(i-1,i,(a,c)=>{if(a.type.name===this.name)return n=!0,s=a,l=c,!1}),n&&t.insertText(this.options.deleteTriggerWithBackspace?"":"{{",l,l+s.nodeSize),n})}},addProseMirrorPlugins(){return[...this.storage.suggestions.map(si),new P({props:{handleDrop(t,e){if(!e||(e.preventDefault(),!e.dataTransfer.getData("mergeTag")))return!1;let n=e.dataTransfer.getData("mergeTag");return t.dispatch(t.state.tr.insert(t.posAtCoords({left:e.clientX,top:e.clientY}).pos,t.state.schema.nodes.mergeTag.create({id:n}))),!1}}})]},onBeforeCreate(){this.storage.suggestions=(this.options.suggestions.length?this.options.suggestions:[this.options.suggestion]).map(t=>rw({editor:this.editor,overrideSuggestionOptions:t,extensionName:this.name})),this.storage.getSuggestionFromChar=t=>{let e=this.storage.suggestions.find(n=>n.char===t);return e||(this.storage.suggestions.length?this.storage.suggestions[0]:null)}}});var Wl=["top","right","bottom","left"],Nf=["start","end"],jl=Wl.reduce((t,e)=>t.concat(e,e+"-"+Nf[0],e+"-"+Nf[1]),[]),$e=Math.min,pe=Math.max,Cr=Math.round;var Ue=t=>({x:t,y:t}),ow={left:"right",right:"left",bottom:"top",top:"bottom"},iw={start:"end",end:"start"};function li(t,e,n){return pe(t,$e(e,n))}function st(t,e){return typeof t=="function"?t(e):t}function Ne(t){return t.split("-")[0]}function Fe(t){return t.split("-")[1]}function Ul(t){return t==="x"?"y":"x"}function ai(t){return t==="y"?"height":"width"}var sw=new Set(["top","bottom"]);function Ke(t){return sw.has(Ne(t))?"y":"x"}function ci(t){return Ul(Ke(t))}function Kl(t,e,n){n===void 0&&(n=!1);let r=Fe(t),o=ci(t),i=ai(o),s=o==="x"?r===(n?"end":"start")?"right":"left":r==="start"?"bottom":"top";return e.reference[i]>e.floating[i]&&(s=Sr(s)),[s,Sr(s)]}function Df(t){let e=Sr(t);return[kr(t),e,kr(e)]}function kr(t){return t.replace(/start|end/g,e=>iw[e])}var Of=["left","right"],Rf=["right","left"],lw=["top","bottom"],aw=["bottom","top"];function cw(t,e,n){switch(t){case"top":case"bottom":return n?e?Rf:Of:e?Of:Rf;case"left":case"right":return e?lw:aw;default:return[]}}function If(t,e,n,r){let o=Fe(t),i=cw(Ne(t),n==="start",r);return o&&(i=i.map(s=>s+"-"+o),e&&(i=i.concat(i.map(kr)))),i}function Sr(t){return t.replace(/left|right|bottom|top/g,e=>ow[e])}function dw(t){return{top:0,right:0,bottom:0,left:0,...t}}function di(t){return typeof t!="number"?dw(t):{top:t,right:t,bottom:t,left:t}}function Ct(t){let{x:e,y:n,width:r,height:o}=t;return{width:r,height:o,top:n,left:e,right:e+r,bottom:n+o,x:e,y:n}}function Pf(t,e,n){let{reference:r,floating:o}=t,i=Ke(e),s=ci(e),l=ai(s),a=Ne(e),c=i==="y",d=r.x+r.width/2-o.width/2,u=r.y+r.height/2-o.height/2,f=r[l]/2-o[l]/2,h;switch(a){case"top":h={x:d,y:r.y-o.height};break;case"bottom":h={x:d,y:r.y+r.height};break;case"right":h={x:r.x+r.width,y:u};break;case"left":h={x:r.x-o.width,y:u};break;default:h={x:r.x,y:r.y}}switch(Fe(e)){case"start":h[s]-=f*(n&&c?-1:1);break;case"end":h[s]+=f*(n&&c?-1:1);break}return h}var zf=async(t,e,n)=>{let{placement:r="bottom",strategy:o="absolute",middleware:i=[],platform:s}=n,l=i.filter(Boolean),a=await(s.isRTL==null?void 0:s.isRTL(e)),c=await s.getElementRects({reference:t,floating:e,strategy:o}),{x:d,y:u}=Pf(c,r,a),f=r,h={},p=0;for(let m=0;m({name:"arrow",options:t,async fn(e){let{x:n,y:r,placement:o,rects:i,platform:s,elements:l,middlewareData:a}=e,{element:c,padding:d=0}=st(t,e)||{};if(c==null)return{};let u=di(d),f={x:n,y:r},h=ci(o),p=ai(h),m=await s.getDimensions(c),g=h==="y",y=g?"top":"left",w=g?"bottom":"right",b=g?"clientHeight":"clientWidth",C=i.reference[p]+i.reference[h]-f[h]-i.floating[p],x=f[h]-i.reference[h],S=await(s.getOffsetParent==null?void 0:s.getOffsetParent(c)),k=S?S[b]:0;(!k||!await(s.isElement==null?void 0:s.isElement(S)))&&(k=l.floating[b]||i.floating[p]);let O=C/2-x/2,T=k/2-m[p]/2-1,A=$e(u[y],T),$=$e(u[w],T),z=A,K=k-m[p]-$,V=k/2-m[p]/2+O,N=li(z,V,K),_=!a.arrow&&Fe(o)!=null&&V!==N&&i.reference[p]/2-(VFe(o)===t),...n.filter(o=>Fe(o)!==t)]:n.filter(o=>Ne(o)===o)).filter(o=>t?Fe(o)===t||(e?kr(o)!==o:!1):!0)}var $f=function(t){return t===void 0&&(t={}),{name:"autoPlacement",options:t,async fn(e){var n,r,o;let{rects:i,middlewareData:s,placement:l,platform:a,elements:c}=e,{crossAxis:d=!1,alignment:u,allowedPlacements:f=jl,autoAlignment:h=!0,...p}=st(t,e),m=u!==void 0||f===jl?uw(u||null,h,f):f,g=await on(e,p),y=((n=s.autoPlacement)==null?void 0:n.index)||0,w=m[y];if(w==null)return{};let b=Kl(w,i,await(a.isRTL==null?void 0:a.isRTL(c.floating)));if(l!==w)return{reset:{placement:m[0]}};let C=[g[Ne(w)],g[b[0]],g[b[1]]],x=[...((r=s.autoPlacement)==null?void 0:r.overflows)||[],{placement:w,overflows:C}],S=m[y+1];if(S)return{data:{index:y+1,overflows:x},reset:{placement:S}};let k=x.map(A=>{let $=Fe(A.placement);return[A.placement,$&&d?A.overflows.slice(0,2).reduce((z,K)=>z+K,0):A.overflows[0],A.overflows]}).sort((A,$)=>A[1]-$[1]),T=((o=k.filter(A=>A[2].slice(0,Fe(A[0])?2:3).every($=>$<=0))[0])==null?void 0:o[0])||k[0][0];return T!==l?{data:{index:y+1,overflows:x},reset:{placement:T}}:{}}}},Ff=function(t){return t===void 0&&(t={}),{name:"flip",options:t,async fn(e){var n,r;let{placement:o,middlewareData:i,rects:s,initialPlacement:l,platform:a,elements:c}=e,{mainAxis:d=!0,crossAxis:u=!0,fallbackPlacements:f,fallbackStrategy:h="bestFit",fallbackAxisSideDirection:p="none",flipAlignment:m=!0,...g}=st(t,e);if((n=i.arrow)!=null&&n.alignmentOffset)return{};let y=Ne(o),w=Ke(l),b=Ne(l)===l,C=await(a.isRTL==null?void 0:a.isRTL(c.floating)),x=f||(b||!m?[Sr(l)]:Df(l)),S=p!=="none";!f&&S&&x.push(...If(l,m,p,C));let k=[l,...x],O=await on(e,g),T=[],A=((r=i.flip)==null?void 0:r.overflows)||[];if(d&&T.push(O[y]),u){let V=Kl(o,s,C);T.push(O[V[0]],O[V[1]])}if(A=[...A,{placement:o,overflows:T}],!T.every(V=>V<=0)){var $,z;let V=((($=i.flip)==null?void 0:$.index)||0)+1,N=k[V];if(N&&(!(u==="alignment"?w!==Ke(N):!1)||A.every(Q=>Ke(Q.placement)===w?Q.overflows[0]>0:!0)))return{data:{index:V,overflows:A},reset:{placement:N}};let _=(z=A.filter(W=>W.overflows[0]<=0).sort((W,Q)=>W.overflows[1]-Q.overflows[1])[0])==null?void 0:z.placement;if(!_)switch(h){case"bestFit":{var K;let W=(K=A.filter(Q=>{if(S){let me=Ke(Q.placement);return me===w||me==="y"}return!0}).map(Q=>[Q.placement,Q.overflows.filter(me=>me>0).reduce((me,Ge)=>me+Ge,0)]).sort((Q,me)=>Q[1]-me[1])[0])==null?void 0:K[0];W&&(_=W);break}case"initialPlacement":_=l;break}if(o!==_)return{reset:{placement:_}}}return{}}}};function Lf(t,e){return{top:t.top-e.height,right:t.right-e.width,bottom:t.bottom-e.height,left:t.left-e.width}}function Bf(t){return Wl.some(e=>t[e]>=0)}var Vf=function(t){return t===void 0&&(t={}),{name:"hide",options:t,async fn(e){let{rects:n}=e,{strategy:r="referenceHidden",...o}=st(t,e);switch(r){case"referenceHidden":{let i=await on(e,{...o,elementContext:"reference"}),s=Lf(i,n.reference);return{data:{referenceHiddenOffsets:s,referenceHidden:Bf(s)}}}case"escaped":{let i=await on(e,{...o,altBoundary:!0}),s=Lf(i,n.floating);return{data:{escapedOffsets:s,escaped:Bf(s)}}}default:return{}}}}};function _f(t){let e=$e(...t.map(i=>i.left)),n=$e(...t.map(i=>i.top)),r=pe(...t.map(i=>i.right)),o=pe(...t.map(i=>i.bottom));return{x:e,y:n,width:r-e,height:o-n}}function fw(t){let e=t.slice().sort((o,i)=>o.y-i.y),n=[],r=null;for(let o=0;or.height/2?n.push([i]):n[n.length-1].push(i),r=i}return n.map(o=>Ct(_f(o)))}var Wf=function(t){return t===void 0&&(t={}),{name:"inline",options:t,async fn(e){let{placement:n,elements:r,rects:o,platform:i,strategy:s}=e,{padding:l=2,x:a,y:c}=st(t,e),d=Array.from(await(i.getClientRects==null?void 0:i.getClientRects(r.reference))||[]),u=fw(d),f=Ct(_f(d)),h=di(l);function p(){if(u.length===2&&u[0].left>u[1].right&&a!=null&&c!=null)return u.find(g=>a>g.left-h.left&&ag.top-h.top&&c=2){if(Ke(n)==="y"){let A=u[0],$=u[u.length-1],z=Ne(n)==="top",K=A.top,V=$.bottom,N=z?A.left:$.left,_=z?A.right:$.right,W=_-N,Q=V-K;return{top:K,bottom:V,left:N,right:_,width:W,height:Q,x:N,y:K}}let g=Ne(n)==="left",y=pe(...u.map(A=>A.right)),w=$e(...u.map(A=>A.left)),b=u.filter(A=>g?A.left===w:A.right===y),C=b[0].top,x=b[b.length-1].bottom,S=w,k=y,O=k-S,T=x-C;return{top:C,bottom:x,left:S,right:k,width:O,height:T,x:S,y:C}}return f}let m=await i.getElementRects({reference:{getBoundingClientRect:p},floating:r.floating,strategy:s});return o.reference.x!==m.reference.x||o.reference.y!==m.reference.y||o.reference.width!==m.reference.width||o.reference.height!==m.reference.height?{reset:{rects:m}}:{}}}},hw=new Set(["left","top"]);async function pw(t,e){let{placement:n,platform:r,elements:o}=t,i=await(r.isRTL==null?void 0:r.isRTL(o.floating)),s=Ne(n),l=Fe(n),a=Ke(n)==="y",c=hw.has(s)?-1:1,d=i&&a?-1:1,u=st(e,t),{mainAxis:f,crossAxis:h,alignmentAxis:p}=typeof u=="number"?{mainAxis:u,crossAxis:0,alignmentAxis:null}:{mainAxis:u.mainAxis||0,crossAxis:u.crossAxis||0,alignmentAxis:u.alignmentAxis};return l&&typeof p=="number"&&(h=l==="end"?p*-1:p),a?{x:h*d,y:f*c}:{x:f*c,y:h*d}}var jf=function(t){return t===void 0&&(t=0),{name:"offset",options:t,async fn(e){var n,r;let{x:o,y:i,placement:s,middlewareData:l}=e,a=await pw(e,t);return s===((n=l.offset)==null?void 0:n.placement)&&(r=l.arrow)!=null&&r.alignmentOffset?{}:{x:o+a.x,y:i+a.y,data:{...a,placement:s}}}}},Uf=function(t){return t===void 0&&(t={}),{name:"shift",options:t,async fn(e){let{x:n,y:r,placement:o}=e,{mainAxis:i=!0,crossAxis:s=!1,limiter:l={fn:g=>{let{x:y,y:w}=g;return{x:y,y:w}}},...a}=st(t,e),c={x:n,y:r},d=await on(e,a),u=Ke(Ne(o)),f=Ul(u),h=c[f],p=c[u];if(i){let g=f==="y"?"top":"left",y=f==="y"?"bottom":"right",w=h+d[g],b=h-d[y];h=li(w,h,b)}if(s){let g=u==="y"?"top":"left",y=u==="y"?"bottom":"right",w=p+d[g],b=p-d[y];p=li(w,p,b)}let m=l.fn({...e,[f]:h,[u]:p});return{...m,data:{x:m.x-n,y:m.y-r,enabled:{[f]:i,[u]:s}}}}}};var Kf=function(t){return t===void 0&&(t={}),{name:"size",options:t,async fn(e){var n,r;let{placement:o,rects:i,platform:s,elements:l}=e,{apply:a=()=>{},...c}=st(t,e),d=await on(e,c),u=Ne(o),f=Fe(o),h=Ke(o)==="y",{width:p,height:m}=i.floating,g,y;u==="top"||u==="bottom"?(g=u,y=f===(await(s.isRTL==null?void 0:s.isRTL(l.floating))?"start":"end")?"left":"right"):(y=u,g=f==="end"?"top":"bottom");let w=m-d.top-d.bottom,b=p-d.left-d.right,C=$e(m-d[g],w),x=$e(p-d[y],b),S=!e.middlewareData.shift,k=C,O=x;if((n=e.middlewareData.shift)!=null&&n.enabled.x&&(O=b),(r=e.middlewareData.shift)!=null&&r.enabled.y&&(k=w),S&&!f){let A=pe(d.left,0),$=pe(d.right,0),z=pe(d.top,0),K=pe(d.bottom,0);h?O=p-2*(A!==0||$!==0?A+$:pe(d.left,d.right)):k=m-2*(z!==0||K!==0?z+K:pe(d.top,d.bottom))}await a({...e,availableWidth:O,availableHeight:k});let T=await s.getDimensions(l.floating);return p!==T.width||m!==T.height?{reset:{rects:!0}}:{}}}};function fi(){return typeof window<"u"}function sn(t){return Jf(t)?(t.nodeName||"").toLowerCase():"#document"}function Ae(t){var e;return(t==null||(e=t.ownerDocument)==null?void 0:e.defaultView)||window}function lt(t){var e;return(e=(Jf(t)?t.ownerDocument:t.document)||window.document)==null?void 0:e.documentElement}function Jf(t){return fi()?t instanceof Node||t instanceof Ae(t).Node:!1}function Ve(t){return fi()?t instanceof Element||t instanceof Ae(t).Element:!1}function qe(t){return fi()?t instanceof HTMLElement||t instanceof Ae(t).HTMLElement:!1}function qf(t){return!fi()||typeof ShadowRoot>"u"?!1:t instanceof ShadowRoot||t instanceof Ae(t).ShadowRoot}var mw=new Set(["inline","contents"]);function Rn(t){let{overflow:e,overflowX:n,overflowY:r,display:o}=_e(t);return/auto|scroll|overlay|hidden|clip/.test(e+r+n)&&!mw.has(o)}var gw=new Set(["table","td","th"]);function Gf(t){return gw.has(sn(t))}var yw=[":popover-open",":modal"];function vr(t){return yw.some(e=>{try{return t.matches(e)}catch{return!1}})}var bw=["transform","translate","scale","rotate","perspective"],ww=["transform","translate","scale","rotate","perspective","filter"],xw=["paint","layout","strict","content"];function hi(t){let e=pi(),n=Ve(t)?_e(t):t;return bw.some(r=>n[r]?n[r]!=="none":!1)||(n.containerType?n.containerType!=="normal":!1)||!e&&(n.backdropFilter?n.backdropFilter!=="none":!1)||!e&&(n.filter?n.filter!=="none":!1)||ww.some(r=>(n.willChange||"").includes(r))||xw.some(r=>(n.contain||"").includes(r))}function Xf(t){let e=vt(t);for(;qe(e)&&!ln(e);){if(hi(e))return e;if(vr(e))return null;e=vt(e)}return null}function pi(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}var kw=new Set(["html","body","#document"]);function ln(t){return kw.has(sn(t))}function _e(t){return Ae(t).getComputedStyle(t)}function Mr(t){return Ve(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.scrollX,scrollTop:t.scrollY}}function vt(t){if(sn(t)==="html")return t;let e=t.assignedSlot||t.parentNode||qf(t)&&t.host||lt(t);return qf(e)?e.host:e}function Yf(t){let e=vt(t);return ln(e)?t.ownerDocument?t.ownerDocument.body:t.body:qe(e)&&Rn(e)?e:Yf(e)}function ui(t,e,n){var r;e===void 0&&(e=[]),n===void 0&&(n=!0);let o=Yf(t),i=o===((r=t.ownerDocument)==null?void 0:r.body),s=Ae(o);if(i){let l=mi(s);return e.concat(s,s.visualViewport||[],Rn(o)?o:[],l&&n?ui(l):[])}return e.concat(o,ui(o,[],n))}function mi(t){return t.parent&&Object.getPrototypeOf(t.parent)?t.frameElement:null}function th(t){let e=_e(t),n=parseFloat(e.width)||0,r=parseFloat(e.height)||0,o=qe(t),i=o?t.offsetWidth:n,s=o?t.offsetHeight:r,l=Cr(n)!==i||Cr(r)!==s;return l&&(n=i,r=s),{width:n,height:r,$:l}}function nh(t){return Ve(t)?t:t.contextElement}function Dn(t){let e=nh(t);if(!qe(e))return Ue(1);let n=e.getBoundingClientRect(),{width:r,height:o,$:i}=th(e),s=(i?Cr(n.width):n.width)/r,l=(i?Cr(n.height):n.height)/o;return(!s||!Number.isFinite(s))&&(s=1),(!l||!Number.isFinite(l))&&(l=1),{x:s,y:l}}var Sw=Ue(0);function rh(t){let e=Ae(t);return!pi()||!e.visualViewport?Sw:{x:e.visualViewport.offsetLeft,y:e.visualViewport.offsetTop}}function Cw(t,e,n){return e===void 0&&(e=!1),!n||e&&n!==Ae(t)?!1:e}function Tr(t,e,n,r){e===void 0&&(e=!1),n===void 0&&(n=!1);let o=t.getBoundingClientRect(),i=nh(t),s=Ue(1);e&&(r?Ve(r)&&(s=Dn(r)):s=Dn(t));let l=Cw(i,n,r)?rh(i):Ue(0),a=(o.left+l.x)/s.x,c=(o.top+l.y)/s.y,d=o.width/s.x,u=o.height/s.y;if(i){let f=Ae(i),h=r&&Ve(r)?Ae(r):r,p=f,m=mi(p);for(;m&&r&&h!==p;){let g=Dn(m),y=m.getBoundingClientRect(),w=_e(m),b=y.left+(m.clientLeft+parseFloat(w.paddingLeft))*g.x,C=y.top+(m.clientTop+parseFloat(w.paddingTop))*g.y;a*=g.x,c*=g.y,d*=g.x,u*=g.y,a+=b,c+=C,p=Ae(m),m=mi(p)}}return Ct({width:d,height:u,x:a,y:c})}function gi(t,e){let n=Mr(t).scrollLeft;return e?e.left+n:Tr(lt(t)).left+n}function oh(t,e){let n=t.getBoundingClientRect(),r=n.left+e.scrollLeft-gi(t,n),o=n.top+e.scrollTop;return{x:r,y:o}}function vw(t){let{elements:e,rect:n,offsetParent:r,strategy:o}=t,i=o==="fixed",s=lt(r),l=e?vr(e.floating):!1;if(r===s||l&&i)return n;let a={scrollLeft:0,scrollTop:0},c=Ue(1),d=Ue(0),u=qe(r);if((u||!u&&!i)&&((sn(r)!=="body"||Rn(s))&&(a=Mr(r)),qe(r))){let h=Tr(r);c=Dn(r),d.x=h.x+r.clientLeft,d.y=h.y+r.clientTop}let f=s&&!u&&!i?oh(s,a):Ue(0);return{width:n.width*c.x,height:n.height*c.y,x:n.x*c.x-a.scrollLeft*c.x+d.x+f.x,y:n.y*c.y-a.scrollTop*c.y+d.y+f.y}}function Mw(t){return Array.from(t.getClientRects())}function Tw(t){let e=lt(t),n=Mr(t),r=t.ownerDocument.body,o=pe(e.scrollWidth,e.clientWidth,r.scrollWidth,r.clientWidth),i=pe(e.scrollHeight,e.clientHeight,r.scrollHeight,r.clientHeight),s=-n.scrollLeft+gi(t),l=-n.scrollTop;return _e(r).direction==="rtl"&&(s+=pe(e.clientWidth,r.clientWidth)-o),{width:o,height:i,x:s,y:l}}var Qf=25;function Aw(t,e){let n=Ae(t),r=lt(t),o=n.visualViewport,i=r.clientWidth,s=r.clientHeight,l=0,a=0;if(o){i=o.width,s=o.height;let d=pi();(!d||d&&e==="fixed")&&(l=o.offsetLeft,a=o.offsetTop)}let c=gi(r);if(c<=0){let d=r.ownerDocument,u=d.body,f=getComputedStyle(u),h=d.compatMode==="CSS1Compat"&&parseFloat(f.marginLeft)+parseFloat(f.marginRight)||0,p=Math.abs(r.clientWidth-u.clientWidth-h);p<=Qf&&(i-=p)}else c<=Qf&&(i+=c);return{width:i,height:s,x:l,y:a}}var Ew=new Set(["absolute","fixed"]);function Nw(t,e){let n=Tr(t,!0,e==="fixed"),r=n.top+t.clientTop,o=n.left+t.clientLeft,i=qe(t)?Dn(t):Ue(1),s=t.clientWidth*i.x,l=t.clientHeight*i.y,a=o*i.x,c=r*i.y;return{width:s,height:l,x:a,y:c}}function Zf(t,e,n){let r;if(e==="viewport")r=Aw(t,n);else if(e==="document")r=Tw(lt(t));else if(Ve(e))r=Nw(e,n);else{let o=rh(t);r={x:e.x-o.x,y:e.y-o.y,width:e.width,height:e.height}}return Ct(r)}function ih(t,e){let n=vt(t);return n===e||!Ve(n)||ln(n)?!1:_e(n).position==="fixed"||ih(n,e)}function Ow(t,e){let n=e.get(t);if(n)return n;let r=ui(t,[],!1).filter(l=>Ve(l)&&sn(l)!=="body"),o=null,i=_e(t).position==="fixed",s=i?vt(t):t;for(;Ve(s)&&!ln(s);){let l=_e(s),a=hi(s);!a&&l.position==="fixed"&&(o=null),(i?!a&&!o:!a&&l.position==="static"&&!!o&&Ew.has(o.position)||Rn(s)&&!a&&ih(t,s))?r=r.filter(d=>d!==s):o=l,s=vt(s)}return e.set(t,r),r}function Rw(t){let{element:e,boundary:n,rootBoundary:r,strategy:o}=t,s=[...n==="clippingAncestors"?vr(e)?[]:Ow(e,this._c):[].concat(n),r],l=s[0],a=s.reduce((c,d)=>{let u=Zf(e,d,o);return c.top=pe(u.top,c.top),c.right=$e(u.right,c.right),c.bottom=$e(u.bottom,c.bottom),c.left=pe(u.left,c.left),c},Zf(e,l,o));return{width:a.right-a.left,height:a.bottom-a.top,x:a.left,y:a.top}}function Dw(t){let{width:e,height:n}=th(t);return{width:e,height:n}}function Iw(t,e,n){let r=qe(e),o=lt(e),i=n==="fixed",s=Tr(t,!0,i,e),l={scrollLeft:0,scrollTop:0},a=Ue(0);function c(){a.x=gi(o)}if(r||!r&&!i)if((sn(e)!=="body"||Rn(o))&&(l=Mr(e)),r){let h=Tr(e,!0,i,e);a.x=h.x+e.clientLeft,a.y=h.y+e.clientTop}else o&&c();i&&!r&&o&&c();let d=o&&!r&&!i?oh(o,l):Ue(0),u=s.left+l.scrollLeft-a.x-d.x,f=s.top+l.scrollTop-a.y-d.y;return{x:u,y:f,width:s.width,height:s.height}}function ql(t){return _e(t).position==="static"}function eh(t,e){if(!qe(t)||_e(t).position==="fixed")return null;if(e)return e(t);let n=t.offsetParent;return lt(t)===n&&(n=n.ownerDocument.body),n}function sh(t,e){let n=Ae(t);if(vr(t))return n;if(!qe(t)){let o=vt(t);for(;o&&!ln(o);){if(Ve(o)&&!ql(o))return o;o=vt(o)}return n}let r=eh(t,e);for(;r&&Gf(r)&&ql(r);)r=eh(r,e);return r&&ln(r)&&ql(r)&&!hi(r)?n:r||Xf(t)||n}var Pw=async function(t){let e=this.getOffsetParent||sh,n=this.getDimensions,r=await n(t.floating);return{reference:Iw(t.reference,await e(t.floating),t.strategy),floating:{x:0,y:0,width:r.width,height:r.height}}};function Lw(t){return _e(t).direction==="rtl"}var Bw={convertOffsetParentRelativeRectToViewportRelativeRect:vw,getDocumentElement:lt,getClippingRect:Rw,getOffsetParent:sh,getElementRects:Pw,getClientRects:Mw,getDimensions:Dw,getScale:Dn,isElement:Ve,isRTL:Lw};var lh=jf,ah=$f,In=Uf,Pn=Ff,ch=Kf,dh=Vf,uh=Hf,fh=Wf;var Ln=(t,e,n)=>{let r=new Map,o={platform:Bw,...n},i={...o.platform,_c:r};return zf(t,e,{...o,platform:i})};var hh=(t,e)=>{Ln({getBoundingClientRect:()=>{let{from:r,to:o}=t.state.selection,i=t.view.coordsAtPos(r),s=t.view.coordsAtPos(o);return{top:Math.min(i.top,s.top),bottom:Math.max(i.bottom,s.bottom),left:Math.min(i.left,s.left),right:Math.max(i.right,s.right),width:Math.abs(s.right-i.left),height:Math.abs(s.bottom-i.top),x:Math.min(i.left,s.left),y:Math.min(i.top,s.top)}}},e,{placement:"bottom-start",strategy:"absolute",middleware:[In(),Pn()]}).then(({x:r,y:o,strategy:i})=>{e.style.width="max-content",e.style.position=i,e.style.left=`${r}px`,e.style.top=`${o}px`})},ph=({items:t=[],noOptionsMessage:e=null,noSearchResultsMessage:n=null,searchPrompt:r=null,searchingMessage:o=null,isSearchable:i=!1})=>{let s=null;return{items:async({query:l})=>{if(typeof t=="function"){s&&i&&s.setLoading(!0);try{let c=t({query:l}),d=Array.isArray(c)?c:await c;return s&&s.setLoading(!1),d}catch{return s&&s.setLoading(!1),[]}}if(!l)return t;let a=String(l).toLowerCase();return t.filter(c=>{let d=typeof c=="string"?c:c?.label??c?.name??"";return String(d).toLowerCase().includes(a)})},render:()=>{let l,a=0,c=null,d=!1;s={setLoading:b=>{d=b,f()}};let u=()=>{let b=document.createElement("div");return b.className="fi-dropdown-panel fi-dropdown-list fi-scrollable",b.style.maxHeight="15rem",b.style.minWidth="12rem",b},f=()=>{if(!l||!c)return;let b=Array.isArray(c.items)?c.items:[],C=c.query??"";if(l.innerHTML="",d){let x=o??"Searching...",S=document.createElement("div");S.className="fi-dropdown-header";let k=document.createElement("span");k.style.whiteSpace="normal",k.textContent=x,S.appendChild(k),l.appendChild(S);return}if(b.length)b.forEach((x,S)=>{let k=typeof x=="string"?x:x?.label??x?.name??String(x?.id??""),O=typeof x=="object"?x?.id??k:k,T=document.createElement("button");T.className=`fi-dropdown-list-item ${S===a?"fi-selected":""}`,T.type="button",T.addEventListener("click",()=>p(O,k));let A=document.createElement("span");A.className="fi-dropdown-list-item-label",A.textContent=k,T.appendChild(A),l.appendChild(T)});else{let x=h(C);if(x){let S=document.createElement("div");S.className="fi-dropdown-header";let k=document.createElement("span");k.style.whiteSpace="normal",k.textContent=x,S.appendChild(k),l.appendChild(S)}}},h=b=>b?n:i?r:e,p=(b,C)=>{c&&c.command({id:b,label:C})},m=()=>{if(!l||!c||(c.items||[]).length===0)return;let C=l.children[a];if(C){let x=C.getBoundingClientRect(),S=l.getBoundingClientRect();(x.topS.bottom)&&C.scrollIntoView({block:"nearest"})}},g=()=>{if(!c)return;let b=Array.isArray(c.items)?c.items:[];b.length!==0&&(a=(a+b.length-1)%b.length,f(),m())},y=()=>{if(!c)return;let b=c.items||[];b.length!==0&&(a=(a+1)%b.length,f(),m())},w=()=>{let b=c?.items||[];if(b.length===0)return;let C=b[a],x=typeof C=="string"?C:C?.label??C?.name??String(C?.id??""),S=typeof C=="object"?C?.id??x:x;p(S,x)};return{onStart:b=>{c=b,a=0,l=u(),l.style.position="absolute",l.style.zIndex="50",f(),document.body.appendChild(l),b.clientRect&&hh(b.editor,l)},onUpdate:b=>{c=b,a=0,f(),m(),b.clientRect&&hh(b.editor,l)},onKeyDown:b=>b.event.key==="Escape"?(l&&l.parentNode&&l.parentNode.removeChild(l),!0):b.event.key==="ArrowUp"?(g(),!0):b.event.key==="ArrowDown"?(y(),!0):b.event.key==="Enter"?(w(),!0):!1,onExit:()=>{l&&l.parentNode&&l.parentNode.removeChild(l),s=null}}}}};var zw=function({editor:t,overrideSuggestionOptions:e,extensionName:n}){let r=new H,o=e?.char??"@",i=e?.extraAttributes??{};return{editor:t,char:o,pluginKey:r,command:({editor:s,range:l,props:a})=>{s.view.state.selection.$to.nodeAfter?.text?.startsWith(" ")&&(l.to+=1);let u={...a,char:o,extra:i};s.chain().focus().insertContentAt(l,[{type:n,attrs:u},{type:"text",text:" "}]).run(),s.view.dom.ownerDocument.defaultView?.getSelection()?.collapseToEnd()},allow:({state:s,range:l})=>{let a=s.doc.resolve(l.from),c=s.schema.nodes[n];return!!a.parent.type.contentMatch.matchType(c)},...e}},mh=F.create({name:"mention",priority:101,addStorage(){return{suggestions:[],getSuggestionFromChar:()=>null}},addOptions(){return{HTMLAttributes:{},renderText({node:t}){return`${t.attrs.char??"@"}`},deleteTriggerWithBackspace:!0,renderHTML({options:t,node:e}){return["span",R(this.HTMLAttributes,t.HTMLAttributes),`${e.attrs.char??"@"}${e.attrs.label??""}`]},suggestions:[],suggestion:{},getMentionLabelsUsing:null}},group:"inline",inline:!0,selectable:!1,atom:!0,addAttributes(){return{id:{default:null,parseHTML:t=>t.getAttribute("data-id"),renderHTML:t=>t.id?{"data-id":t.id}:{}},label:{default:null,keepOnSplit:!1,parseHTML:t=>t.getAttribute("data-label"),renderHTML:t=>t.label?{"data-label":t.label}:{}},char:{default:"@",parseHTML:t=>t.getAttribute("data-char")??"@",renderHTML:t=>t.char?{"data-char":t.char}:{}},extra:{default:null,renderHTML:t=>{let e=t?.extra;return!e||typeof e!="object"?{}:e}}}},parseHTML(){return[{tag:`span[data-type="${this.name}"]`}]},renderHTML({node:t,HTMLAttributes:e}){let n=this.editor?.extensionStorage?.[this.name]?.getSuggestionFromChar(t?.attrs?.char??"@"),r={...this.options};r.HTMLAttributes=R({"data-type":this.name},this.options.HTMLAttributes,e);let o=this.options.renderHTML({options:r,node:t,suggestion:n});return typeof o=="string"?["span",R({"data-type":this.name},this.options.HTMLAttributes,e),o]:o},renderText({node:t}){let e={options:this.options,node:t,suggestion:this.editor?.extensionStorage?.[this.name]?.getSuggestionFromChar(t?.attrs?.char??"@")};return this.options.renderText(e)},addKeyboardShortcuts(){return{Backspace:()=>this.editor.commands.command(({tr:t,state:e})=>{let n=!1,{selection:r}=e,{empty:o,anchor:i}=r;if(!o)return!1;let s=new ie,l=0;if(e.doc.nodesBetween(i-1,i,(a,c)=>{if(a.type.name===this.name)return n=!0,s=a,l=c,!1}),n){let a=s?.attrs?.char??"@";t.insertText(this.options.deleteTriggerWithBackspace?"":a,l,l+s.nodeSize)}return n})}},addProseMirrorPlugins(){let t=async e=>{let{state:n,dispatch:r}=e,o=[];if(n.doc.descendants((s,l)=>{if(s.type.name!==this.name||s.attrs?.label)return;let a=s.attrs?.id,c=s.attrs?.char??"@";a&&o.push({id:a,char:c,pos:l})}),o.length===0)return;let i=this.options.getMentionLabelsUsing;if(typeof i=="function")try{let s=o.map(({id:a,char:c})=>({id:a,char:c})),l=await i(s);o.forEach(({id:a,pos:c})=>{let d=l[a];if(!d)return;let u=e.state.doc.nodeAt(c);if(!u||u.type.name!==this.name)return;let f={...u.attrs,label:d},h=e.state.tr.setNodeMarkup(c,void 0,f);r(h)})}catch{}};return[...this.storage.suggestions.map(si),new P({view:e=>(setTimeout(()=>t(e),0),{update:n=>t(n)})})]},onBeforeCreate(){let t=n=>Array.isArray(n)?n:n&&typeof n=="object"?Object.entries(n).map(([r,o])=>({id:r,label:o})):[],e=this.options.suggestions.length?this.options.suggestions:[this.options.suggestion];this.storage.suggestions=e.map(n=>{let r=n?.char??"@",o=n?.items??[],i=n?.noOptionsMessage??null,s=n?.noSearchResultsMessage??null,l=n?.isSearchable??!1,a=this.options.getMentionSearchResultsUsing,c=n;if(typeof n?.items=="function"){let d=n.items;c={...n,items:async u=>{if(u?.query&&typeof a=="function")try{let f=await a(u?.query,r);return t(f)}catch{}return await d(u)}}}else{let d=n?.extraAttributes,u=n?.searchPrompt??null,f=n?.searchingMessage??null;c={...ph({items:async({query:h})=>{if(!(Array.isArray(o)?o.length>0:o&&typeof o=="object"&&Object.keys(o).length>0)&&!h)return[];let m=t(o);if(h&&typeof a=="function")try{let y=await a(h,r);return t(y)}catch{}if(!h)return m;let g=String(h).toLowerCase();return m.filter(y=>{let w=typeof y=="string"?y:y?.label??y?.name??"";return String(w).toLowerCase().includes(g)})},isSearchable:l,noOptionsMessage:i,noSearchResultsMessage:s,searchPrompt:u,searchingMessage:f}),char:r,...d?{extraAttributes:d}:{}}}return zw({editor:this.editor,overrideSuggestionOptions:c,extensionName:this.name})}),this.storage.getSuggestionFromChar=n=>this.storage.suggestions.find(r=>r.char===n)??this.storage.suggestions[0]??null}});var Hw=F.create({name:"paragraph",priority:1e3,addOptions(){return{HTMLAttributes:{}}},group:"block",content:"inline*",parseHTML(){return[{tag:"p"}]},renderHTML({HTMLAttributes:t}){return["p",R(this.options.HTMLAttributes,t),0]},parseMarkdown:(t,e)=>{let n=t.tokens||[];return n.length===1&&n[0].type==="image"?e.parseChildren([n[0]]):e.createNode("paragraph",void 0,e.parseInline(n))},renderMarkdown:(t,e)=>!t||!Array.isArray(t.content)?"":e.renderChildren(t.content),addCommands(){return{setParagraph:()=>({commands:t})=>t.setNode(this.name)}},addKeyboardShortcuts(){return{"Mod-Alt-0":()=>this.editor.commands.setParagraph()}}}),gh=Hw;var Jl=fl;var yh=ee.create({name:"small",parseHTML(){return[{tag:"small"}]},renderHTML({HTMLAttributes:t}){return["small",t,0]},addCommands(){return{setSmall:()=>({commands:t})=>t.setMark(this.name),toggleSmall:()=>({commands:t})=>t.toggleMark(this.name),unsetSmall:()=>({commands:t})=>t.unsetMark(this.name)}}});var bh=ee.create({name:"textColor",addOptions(){return{textColors:{}}},parseHTML(){return[{tag:"span",getAttrs:t=>t.classList?.contains("color")}]},renderHTML({HTMLAttributes:t}){let e={...t},n=t.class;e.class=["color",n].filter(Boolean).join(" ");let r=t["data-color"],i=(this.options.textColors||{})[r],s=typeof r=="string"&&r.length>0,l=i?`--color: ${i.color}; --dark-color: ${i.darkColor}`:s?`--color: ${r}; --dark-color: ${r}`:null;if(l){let a=typeof t.style=="string"?t.style:"";e.style=a?`${l}; ${a}`:l}return["span",e,0]},addAttributes(){return{"data-color":{default:null,parseHTML:t=>t.getAttribute("data-color"),renderHTML:t=>t["data-color"]?{"data-color":t["data-color"]}:{}}}},addCommands(){return{setTextColor:({color:t})=>({commands:e})=>e.setMark(this.name,{"data-color":t}),unsetTextColor:()=>({commands:t})=>t.unsetMark(this.name)}}});var $w=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))$/,Fw=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))/g,Vw=ee.create({name:"strike",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"s"},{tag:"del"},{tag:"strike"},{style:"text-decoration",consuming:!1,getAttrs:t=>t.includes("line-through")?{}:!1}]},renderHTML({HTMLAttributes:t}){return["s",R(this.options.HTMLAttributes,t),0]},markdownTokenName:"del",parseMarkdown:(t,e)=>e.applyMark("strike",e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>`~~${e.renderChildren(t)}~~`,addCommands(){return{setStrike:()=>({commands:t})=>t.setMark(this.name),toggleStrike:()=>({commands:t})=>t.toggleMark(this.name),unsetStrike:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-s":()=>this.editor.commands.toggleStrike()}},addInputRules(){return[Be({find:$w,type:this.type})]},addPasteRules(){return[Me({find:Fw,type:this.type})]}}),wh=Vw;var _w=ee.create({name:"subscript",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"sub"},{style:"vertical-align",getAttrs(t){return t!=="sub"?!1:null}}]},renderHTML({HTMLAttributes:t}){return["sub",R(this.options.HTMLAttributes,t),0]},addCommands(){return{setSubscript:()=>({commands:t})=>t.setMark(this.name),toggleSubscript:()=>({commands:t})=>t.toggleMark(this.name),unsetSubscript:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-,":()=>this.editor.commands.toggleSubscript()}}}),xh=_w;var Ww=ee.create({name:"superscript",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"sup"},{style:"vertical-align",getAttrs(t){return t!=="super"?!1:null}}]},renderHTML({HTMLAttributes:t}){return["sup",R(this.options.HTMLAttributes,t),0]},addCommands(){return{setSuperscript:()=>({commands:t})=>t.setMark(this.name),toggleSuperscript:()=>({commands:t})=>t.toggleMark(this.name),unsetSuperscript:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-.":()=>this.editor.commands.toggleSuperscript()}}}),kh=Ww;var Xl,Yl;if(typeof WeakMap<"u"){let t=new WeakMap;Xl=e=>t.get(e),Yl=(e,n)=>(t.set(e,n),n)}else{let t=[],n=0;Xl=r=>{for(let o=0;o(n==10&&(n=0),t[n++]=r,t[n++]=o)}var oe=class{constructor(t,e,n,r){this.width=t,this.height=e,this.map=n,this.problems=r}findCell(t){for(let e=0;e=n){(i||(i=[])).push({type:"overlong_rowspan",pos:d,n:y-b});break}let C=o+b*e;for(let x=0;xr&&(i+=c.attrs.colspan)}}for(let s=0;s1&&(n=!0)}e==-1?e=i:e!=i&&(e=Math.max(e,i))}return e}function Kw(t,e,n){t.problems||(t.problems=[]);let r={};for(let o=0;o0;e--)if(t.node(e).type.spec.tableRole=="row")return t.node(0).resolve(t.before(e+1));return null}function Jw(t){for(let e=t.depth;e>0;e--){let n=t.node(e).type.spec.tableRole;if(n==="cell"||n==="header_cell")return t.node(e)}return null}function Je(t){let e=t.selection.$head;for(let n=e.depth;n>0;n--)if(e.node(n).type.spec.tableRole=="row")return!0;return!1}function Si(t){let e=t.selection;if("$anchorCell"in e&&e.$anchorCell)return e.$anchorCell.pos>e.$headCell.pos?e.$anchorCell:e.$headCell;if("node"in e&&e.node&&e.node.type.spec.tableRole=="cell")return e.$anchor;let n=an(e.$head)||Gw(e.$head);if(n)return n;throw new RangeError(`No cell found around position ${e.head}`)}function Gw(t){for(let e=t.nodeAfter,n=t.pos;e;e=e.firstChild,n++){let r=e.type.spec.tableRole;if(r=="cell"||r=="header_cell")return t.doc.resolve(n)}for(let e=t.nodeBefore,n=t.pos;e;e=e.lastChild,n--){let r=e.type.spec.tableRole;if(r=="cell"||r=="header_cell")return t.doc.resolve(n-e.nodeSize)}}function Ql(t){return t.parent.type.spec.tableRole=="row"&&!!t.nodeAfter}function Xw(t){return t.node(0).resolve(t.pos+t.nodeAfter.nodeSize)}function ta(t,e){return t.depth==e.depth&&t.pos>=e.start(-1)&&t.pos<=e.end(-1)}function Rh(t,e,n){let r=t.node(-1),o=oe.get(r),i=t.start(-1),s=o.nextCell(t.pos-i,e,n);return s==null?null:t.node(0).resolve(i+s)}function cn(t,e,n=1){let r={...t,colspan:t.colspan-n};return r.colwidth&&(r.colwidth=r.colwidth.slice(),r.colwidth.splice(e,n),r.colwidth.some(o=>o>0)||(r.colwidth=null)),r}function Dh(t,e,n=1){let r={...t,colspan:t.colspan+n};if(r.colwidth){r.colwidth=r.colwidth.slice();for(let o=0;od!=n.pos-i);a.unshift(n.pos-i);let c=a.map(d=>{let u=r.nodeAt(d);if(!u)throw new RangeError(`No cell with offset ${d} found`);let f=i+d+1;return new yn(l.resolve(f),l.resolve(f+u.content.size))});super(c[0].$from,c[0].$to,c),this.$anchorCell=e,this.$headCell=n}map(e,n){let r=e.resolve(n.map(this.$anchorCell.pos)),o=e.resolve(n.map(this.$headCell.pos));if(Ql(r)&&Ql(o)&&ta(r,o)){let i=this.$anchorCell.node(-1)!=r.node(-1);return i&&this.isRowSelection()?Mt.rowSelection(r,o):i&&this.isColSelection()?Mt.colSelection(r,o):new Mt(r,o)}return D.between(r,o)}content(){let e=this.$anchorCell.node(-1),n=oe.get(e),r=this.$anchorCell.start(-1),o=n.rectBetween(this.$anchorCell.pos-r,this.$headCell.pos-r),i={},s=[];for(let a=o.top;a0||g>0){let y=p.attrs;if(m>0&&(y=cn(y,0,m)),g>0&&(y=cn(y,y.colspan-g,g)),h.lefto.bottom){let y={...p.attrs,rowspan:Math.min(h.bottom,o.bottom)-Math.max(h.top,o.top)};h.top0)return!1;let r=e+this.$anchorCell.nodeAfter.attrs.rowspan,o=n+this.$headCell.nodeAfter.attrs.rowspan;return Math.max(r,o)==this.$headCell.node(-1).childCount}static colSelection(e,n=e){let r=e.node(-1),o=oe.get(r),i=e.start(-1),s=o.findCell(e.pos-i),l=o.findCell(n.pos-i),a=e.node(0);return s.top<=l.top?(s.top>0&&(e=a.resolve(i+o.map[s.left])),l.bottom0&&(n=a.resolve(i+o.map[l.left])),s.bottom0)return!1;let s=o+this.$anchorCell.nodeAfter.attrs.colspan,l=i+this.$headCell.nodeAfter.attrs.colspan;return Math.max(s,l)==n.width}eq(e){return e instanceof Mt&&e.$anchorCell.pos==this.$anchorCell.pos&&e.$headCell.pos==this.$headCell.pos}static rowSelection(e,n=e){let r=e.node(-1),o=oe.get(r),i=e.start(-1),s=o.findCell(e.pos-i),l=o.findCell(n.pos-i),a=e.node(0);return s.left<=l.left?(s.left>0&&(e=a.resolve(i+o.map[s.top*o.width])),l.right0&&(n=a.resolve(i+o.map[l.top*o.width])),s.right{e.push(te.node(r,r+n.nodeSize,{class:"selectedCell"}))}),Y.create(t.doc,e)}function ex({$from:t,$to:e}){if(t.pos==e.pos||t.pos=0&&!(t.after(o+1)=0&&!(e.before(i+1)>e.start(i));i--,r--);return n==r&&/row|table/.test(t.node(o).type.spec.tableRole)}function tx({$from:t,$to:e}){let n,r;for(let o=t.depth;o>0;o--){let i=t.node(o);if(i.type.spec.tableRole==="cell"||i.type.spec.tableRole==="header_cell"){n=i;break}}for(let o=e.depth;o>0;o--){let i=e.node(o);if(i.type.spec.tableRole==="cell"||i.type.spec.tableRole==="header_cell"){r=i;break}}return n!==r&&e.parentOffset===0}function nx(t,e,n){let r=(e||t).selection,o=(e||t).doc,i,s;if(r instanceof L&&(s=r.node.type.spec.tableRole)){if(s=="cell"||s=="header_cell")i=X.create(o,r.from);else if(s=="row"){let l=o.resolve(r.from+1);i=X.rowSelection(l,l)}else if(!n){let l=oe.get(r.node),a=r.from+1,c=a+l.map[l.width*l.height-1];i=X.create(o,a+1,c)}}else r instanceof D&&ex(r)?i=D.create(o,r.from):r instanceof D&&tx(r)&&(i=D.create(o,r.$from.start(),r.$from.end()));return i&&(e||(e=t.tr)).setSelection(i),e}var rx=new H("fix-tables");function Ph(t,e,n,r){let o=t.childCount,i=e.childCount;e:for(let s=0,l=0;s{o.type.spec.tableRole=="table"&&(n=ox(t,o,i,n))};return e?e.doc!=t.doc&&Ph(e.doc,t.doc,0,r):t.doc.descendants(r),n}function ox(t,e,n,r){let o=oe.get(e);if(!o.problems)return r;r||(r=t.tr);let i=[];for(let a=0;a0){let h="cell";d.firstChild&&(h=d.firstChild.type.spec.tableRole);let p=[];for(let g=0;g0?-1:0;Yw(e,r,o+i)&&(i=o==0||o==e.width?null:0);for(let s=0;s0&&o0&&e.map[l-1]==a||o0?-1:0;sx(e,r,o+l)&&(l=o==0||o==e.height?null:0);for(let c=0,d=e.width*o;c0&&o0&&u==e.map[d-e.width]){let f=n.nodeAt(u).attrs;t.setNodeMarkup(t.mapping.slice(l).map(u+r),null,{...f,rowspan:f.rowspan-1}),c+=f.colspan-1}else if(o0&&n[i]==n[i-1]||r.right0&&n[o]==n[o-t]||r.bottom0){let d=a+1+c.content.size,u=Sh(c)?a+1:d;i.replaceWith(u+r.tableStart,d+r.tableStart,l)}i.setSelection(new X(i.doc.resolve(a+r.tableStart))),e(i)}return!0}function oa(t,e){let n=xe(t.schema);return cx(({node:r})=>n[r.type.spec.tableRole])(t,e)}function cx(t){return(e,n)=>{let r=e.selection,o,i;if(r instanceof X){if(r.$anchorCell.pos!=r.$headCell.pos)return!1;o=r.$anchorCell.nodeAfter,i=r.$anchorCell.pos}else{var s;if(o=Jw(r.$from),!o)return!1;i=(s=an(r.$from))===null||s===void 0?void 0:s.pos}if(o==null||i==null||o.attrs.colspan==1&&o.attrs.rowspan==1)return!1;if(n){let l=o.attrs,a=[],c=l.colwidth;l.rowspan>1&&(l={...l,rowspan:1}),l.colspan>1&&(l={...l,colspan:1});let d=at(e),u=e.tr;for(let h=0;h{s.attrs[t]!==e&&i.setNodeMarkup(l,null,{...s.attrs,[t]:e})}):i.setNodeMarkup(o.pos,null,{...o.nodeAfter.attrs,[t]:e}),r(i)}return!0}}function dx(t){return function(e,n){if(!Je(e))return!1;if(n){let r=xe(e.schema),o=at(e),i=e.tr,s=o.map.cellsInRect(t=="column"?{left:o.left,top:0,right:o.right,bottom:o.map.height}:t=="row"?{left:0,top:o.top,right:o.map.width,bottom:o.bottom}:o),l=s.map(a=>o.table.nodeAt(a));for(let a=0;a{let h=f+i.tableStart,p=s.doc.nodeAt(h);p&&s.setNodeMarkup(h,u,p.attrs)}),r(s)}return!0}}var cM=Bn("row",{useDeprecatedLogic:!0}),dM=Bn("column",{useDeprecatedLogic:!0}),jh=Bn("cell",{useDeprecatedLogic:!0});function ux(t,e){if(e<0){let n=t.nodeBefore;if(n)return t.pos-n.nodeSize;for(let r=t.index(-1)-1,o=t.before();r>=0;r--){let i=t.node(-1).child(r),s=i.lastChild;if(s)return o-1-s.nodeSize;o-=i.nodeSize}}else{if(t.index()0;r--)if(n.node(r).type.spec.tableRole=="table")return e&&e(t.tr.delete(n.before(r),n.after(r)).scrollIntoView()),!0;return!1}function yi(t,e){let n=t.selection;if(!(n instanceof X))return!1;if(e){let r=t.tr,o=xe(t.schema).cell.createAndFill().content;n.forEachCell((i,s)=>{i.content.eq(o)||r.replace(r.mapping.map(s+1),r.mapping.map(s+i.nodeSize-1),new E(o,0,0))}),r.docChanged&&e(r)}return!0}function fx(t){if(t.size===0)return null;let{content:e,openStart:n,openEnd:r}=t;for(;e.childCount==1&&(n>0&&r>0||e.child(0).type.spec.tableRole=="table");)n--,r--,e=e.child(0).content;let o=e.child(0),i=o.type.spec.tableRole,s=o.type.schema,l=[];if(i=="row")for(let a=0;a=0;s--){let{rowspan:l,colspan:a}=i.child(s).attrs;for(let c=o;c=e.length&&e.push(v.empty),n[o]r&&(f=f.type.createChecked(cn(f.attrs,f.attrs.colspan,d+f.attrs.colspan-r),f.content)),c.push(f),d+=f.attrs.colspan;for(let h=1;ho&&(u=u.type.create({...u.attrs,rowspan:Math.max(1,o-u.attrs.rowspan)},u.content)),a.push(u)}i.push(v.from(a))}n=i,e=o}return{width:t,height:e,rows:n}}function mx(t,e,n,r,o,i,s){let l=t.doc.type.schema,a=xe(l),c,d;if(o>e.width)for(let u=0,f=0;ue.height){let u=[];for(let p=0,m=(e.height-1)*e.width;p=e.width?!1:n.nodeAt(e.map[m+p]).type==a.header_cell;u.push(g?d||(d=a.header_cell.createAndFill()):c||(c=a.cell.createAndFill()))}let f=a.row.create(null,v.from(u)),h=[];for(let p=e.height;p{if(!o)return!1;let i=n.selection;if(i instanceof X)return xi(n,r,I.near(i.$headCell,e));if(t!="horiz"&&!i.empty)return!1;let s=Kh(o,t,e);if(s==null)return!1;if(t=="horiz")return xi(n,r,I.near(n.doc.resolve(i.head+e),e));{let l=n.doc.resolve(s),a=Rh(l,t,e),c;return a?c=I.near(a,1):e<0?c=I.near(n.doc.resolve(l.before(-1)),-1):c=I.near(n.doc.resolve(l.after(-1)),1),xi(n,r,c)}}}function wi(t,e){return(n,r,o)=>{if(!o)return!1;let i=n.selection,s;if(i instanceof X)s=i;else{let a=Kh(o,t,e);if(a==null)return!1;s=new X(n.doc.resolve(a))}let l=Rh(s.$headCell,t,e);return l?xi(n,r,new X(s.$anchorCell,l)):!1}}function yx(t,e){let n=t.state.doc,r=an(n.resolve(e));return r?(t.dispatch(t.state.tr.setSelection(new X(r))),!0):!1}function bx(t,e,n){if(!Je(t.state))return!1;let r=fx(n),o=t.state.selection;if(o instanceof X){r||(r={width:1,height:1,rows:[v.from(Zl(xe(t.state.schema).cell,n))]});let i=o.$anchorCell.node(-1),s=o.$anchorCell.start(-1),l=oe.get(i).rectBetween(o.$anchorCell.pos-s,o.$headCell.pos-s);return r=px(r,l.right-l.left,l.bottom-l.top),Th(t.state,t.dispatch,s,l,r),!0}else if(r){let i=Si(t.state),s=i.start(-1);return Th(t.state,t.dispatch,s,oe.get(i.node(-1)).findCell(i.pos-s),r),!0}else return!1}function wx(t,e){var n;if(e.button!=0||e.ctrlKey||e.metaKey)return;let r=Ah(t,e.target),o;if(e.shiftKey&&t.state.selection instanceof X)i(t.state.selection.$anchorCell,e),e.preventDefault();else if(e.shiftKey&&r&&(o=an(t.state.selection.$anchor))!=null&&((n=Gl(t,e))===null||n===void 0?void 0:n.pos)!=o.pos)i(o,e),e.preventDefault();else if(!r)return;function i(a,c){let d=Gl(t,c),u=zt.getState(t.state)==null;if(!d||!ta(a,d))if(u)d=a;else return;let f=new X(a,d);if(u||!t.state.selection.eq(f)){let h=t.state.tr.setSelection(f);u&&h.setMeta(zt,a.pos),t.dispatch(h)}}function s(){t.root.removeEventListener("mouseup",s),t.root.removeEventListener("dragstart",s),t.root.removeEventListener("mousemove",l),zt.getState(t.state)!=null&&t.dispatch(t.state.tr.setMeta(zt,-1))}function l(a){let c=a,d=zt.getState(t.state),u;if(d!=null)u=t.state.doc.resolve(d);else if(Ah(t,c.target)!=r&&(u=Gl(t,e),!u))return s();u&&i(u,c)}t.root.addEventListener("mouseup",s),t.root.addEventListener("dragstart",s),t.root.addEventListener("mousemove",l)}function Kh(t,e,n){if(!(t.state.selection instanceof D))return null;let{$head:r}=t.state.selection;for(let o=r.depth-1;o>=0;o--){let i=r.node(o);if((n<0?r.index(o):r.indexAfter(o))!=(n<0?0:i.childCount))return null;if(i.type.spec.tableRole=="cell"||i.type.spec.tableRole=="header_cell"){let s=r.before(o),l=e=="vert"?n>0?"down":"up":n>0?"right":"left";return t.endOfTextblock(l)?s:null}}return null}function Ah(t,e){for(;e&&e!=t.dom;e=e.parentNode)if(e.nodeName=="TD"||e.nodeName=="TH")return e;return null}function Gl(t,e){let n=t.posAtCoords({left:e.clientX,top:e.clientY});if(!n)return null;let{inside:r,pos:o}=n;return r>=0&&an(t.state.doc.resolve(r))||an(t.state.doc.resolve(o))}var xx=class{constructor(t,e){this.node=t,this.defaultCellMinWidth=e,this.dom=document.createElement("div"),this.dom.className="tableWrapper",this.table=this.dom.appendChild(document.createElement("table")),this.table.style.setProperty("--default-cell-min-width",`${e}px`),this.colgroup=this.table.appendChild(document.createElement("colgroup")),ea(t,this.colgroup,this.table,e),this.contentDOM=this.table.appendChild(document.createElement("tbody"))}update(t){return t.type!=this.node.type?!1:(this.node=t,ea(t,this.colgroup,this.table,this.defaultCellMinWidth),!0)}ignoreMutation(t){return t.type=="attributes"&&(t.target==this.table||this.colgroup.contains(t.target))}};function ea(t,e,n,r,o,i){let s=0,l=!0,a=e.firstChild,c=t.firstChild;if(c){for(let u=0,f=0;unew r(u,n,f)),new kx(-1,!1)},apply(s,l){return l.apply(s)}},props:{attributes:s=>{let l=Oe.getState(s);return l&&l.activeHandle>-1?{class:"resize-cursor"}:{}},handleDOMEvents:{mousemove:(s,l)=>{Sx(s,l,t,o)},mouseleave:s=>{Cx(s)},mousedown:(s,l)=>{vx(s,l,e,n)}},decorations:s=>{let l=Oe.getState(s);if(l&&l.activeHandle>-1)return Nx(s,l.activeHandle)},nodeViews:{}}});return i}var kx=class ki{constructor(e,n){this.activeHandle=e,this.dragging=n}apply(e){let n=this,r=e.getMeta(Oe);if(r&&r.setHandle!=null)return new ki(r.setHandle,!1);if(r&&r.setDragging!==void 0)return new ki(n.activeHandle,r.setDragging);if(n.activeHandle>-1&&e.docChanged){let o=e.mapping.map(n.activeHandle,-1);return Ql(e.doc.resolve(o))||(o=-1),new ki(o,n.dragging)}return n}};function Sx(t,e,n,r){if(!t.editable)return;let o=Oe.getState(t.state);if(o&&!o.dragging){let i=Tx(e.target),s=-1;if(i){let{left:l,right:a}=i.getBoundingClientRect();e.clientX-l<=n?s=Eh(t,e,"left",n):a-e.clientX<=n&&(s=Eh(t,e,"right",n))}if(s!=o.activeHandle){if(!r&&s!==-1){let l=t.state.doc.resolve(s),a=l.node(-1),c=oe.get(a),d=l.start(-1);if(c.colCount(l.pos-d)+l.nodeAfter.attrs.colspan-1==c.width-1)return}Jh(t,s)}}}function Cx(t){if(!t.editable)return;let e=Oe.getState(t.state);e&&e.activeHandle>-1&&!e.dragging&&Jh(t,-1)}function vx(t,e,n,r){var o;if(!t.editable)return!1;let i=(o=t.dom.ownerDocument.defaultView)!==null&&o!==void 0?o:window,s=Oe.getState(t.state);if(!s||s.activeHandle==-1||s.dragging)return!1;let l=t.state.doc.nodeAt(s.activeHandle),a=Mx(t,s.activeHandle,l.attrs);t.dispatch(t.state.tr.setMeta(Oe,{setDragging:{startX:e.clientX,startWidth:a}}));function c(u){i.removeEventListener("mouseup",c),i.removeEventListener("mousemove",d);let f=Oe.getState(t.state);f?.dragging&&(Ax(t,f.activeHandle,Nh(f.dragging,u,n)),t.dispatch(t.state.tr.setMeta(Oe,{setDragging:null})))}function d(u){if(!u.which)return c(u);let f=Oe.getState(t.state);if(f&&f.dragging){let h=Nh(f.dragging,u,n);Oh(t,f.activeHandle,h,r)}}return Oh(t,s.activeHandle,a,r),i.addEventListener("mouseup",c),i.addEventListener("mousemove",d),e.preventDefault(),!0}function Mx(t,e,{colspan:n,colwidth:r}){let o=r&&r[r.length-1];if(o)return o;let i=t.domAtPos(e),s=i.node.childNodes[i.offset].offsetWidth,l=n;if(r)for(let a=0;a{var e,n;let r=t.getAttribute("colwidth"),o=r?r.split(",").map(i=>parseInt(i,10)):null;if(!o){let i=(e=t.closest("table"))==null?void 0:e.querySelectorAll("colgroup > col"),s=Array.from(((n=t.parentElement)==null?void 0:n.children)||[]).indexOf(t);if(s&&s>-1&&i&&i[s]){let l=i[s].getAttribute("width");return l?[parseInt(l,10)]:null}}return o}}}},tableRole:"cell",isolating:!0,parseHTML(){return[{tag:"td"}]},renderHTML({HTMLAttributes:t}){return["td",R(this.options.HTMLAttributes,t),0]}}),Rx=F.create({name:"tableHeader",addOptions(){return{HTMLAttributes:{}}},content:"block+",addAttributes(){return{colspan:{default:1},rowspan:{default:1},colwidth:{default:null,parseHTML:t=>{let e=t.getAttribute("colwidth");return e?e.split(",").map(r=>parseInt(r,10)):null}}}},tableRole:"header_cell",isolating:!0,parseHTML(){return[{tag:"th"}]},renderHTML({HTMLAttributes:t}){return["th",R(this.options.HTMLAttributes,t),0]}}),Dx=F.create({name:"tableRow",addOptions(){return{HTMLAttributes:{}}},content:"(tableCell | tableHeader)*",tableRole:"row",parseHTML(){return[{tag:"tr"}]},renderHTML({HTMLAttributes:t}){return["tr",R(this.options.HTMLAttributes,t),0]}});function sa(t,e){return e?["width",`${Math.max(e,t)}px`]:["min-width",`${t}px`]}function Xh(t,e,n,r,o,i){var s;let l=0,a=!0,c=e.firstChild,d=t.firstChild;if(d!==null)for(let f=0,h=0;f{let r=t.nodes[n];r.spec.tableRole&&(e[r.spec.tableRole]=r)}),t.cached.tableNodeTypes=e,e}function Bx(t,e,n,r,o){let i=Lx(t),s=[],l=[];for(let c=0;c{let{selection:e}=t.state;if(!zx(e))return!1;let n=0,r=Gs(e.ranges[0].$from,i=>i.type.name==="table");return r?.node.descendants(i=>{if(i.type.name==="table")return!1;["tableCell","tableHeader"].includes(i.type.name)&&(n+=1)}),n===e.ranges.length?(t.commands.deleteTable(),!0):!1},Hx="";function $x(t){return(t||"").replace(/\s+/g," ").trim()}function Fx(t,e,n={}){var r;let o=(r=n.cellLineSeparator)!=null?r:Hx;if(!t||!t.content||t.content.length===0)return"";let i=[];t.content.forEach(p=>{let m=[];p.content&&p.content.forEach(g=>{let y="";g.content&&Array.isArray(g.content)&&g.content.length>1?y=g.content.map(x=>e.renderChildren(x)).join(o):y=g.content?e.renderChildren(g.content):"";let w=$x(y),b=g.type==="tableHeader";m.push({text:w,isHeader:b})}),i.push(m)});let s=i.reduce((p,m)=>Math.max(p,m.length),0);if(s===0)return"";let l=new Array(s).fill(0);i.forEach(p=>{var m;for(let g=0;gl[g]&&(l[g]=w),l[g]<3&&(l[g]=3)}});let a=(p,m)=>p+" ".repeat(Math.max(0,m-p.length)),c=i[0],d=c.some(p=>p.isHeader),u=` +`,f=new Array(s).fill(0).map((p,m)=>d&&c[m]&&c[m].text||"");return u+=`| ${f.map((p,m)=>a(p,l[m])).join(" | ")} | +`,u+=`| ${l.map(p=>"-".repeat(Math.max(3,p))).join(" | ")} | +`,(d?i.slice(1):i).forEach(p=>{u+=`| ${new Array(s).fill(0).map((m,g)=>a(p[g]&&p[g].text||"",l[g])).join(" | ")} | +`}),u}var Vx=Fx,_x=F.create({name:"table",addOptions(){return{HTMLAttributes:{},resizable:!1,renderWrapper:!1,handleWidth:5,cellMinWidth:25,View:Ix,lastColumnResizable:!0,allowTableNodeSelection:!1}},content:"tableRow+",tableRole:"table",isolating:!0,group:"block",parseHTML(){return[{tag:"table"}]},renderHTML({node:t,HTMLAttributes:e}){let{colgroup:n,tableWidth:r,tableMinWidth:o}=Px(t,this.options.cellMinWidth),i=e.style;function s(){return i||(r?`width: ${r}`:`min-width: ${o}`)}let l=["table",R(this.options.HTMLAttributes,e,{style:s()}),n,["tbody",0]];return this.options.renderWrapper?["div",{class:"tableWrapper"},l]:l},parseMarkdown:(t,e)=>{let n=[];if(t.header){let r=[];t.header.forEach(o=>{r.push(e.createNode("tableHeader",{},[{type:"paragraph",content:e.parseInline(o.tokens)}]))}),n.push(e.createNode("tableRow",{},r))}return t.rows&&t.rows.forEach(r=>{let o=[];r.forEach(i=>{o.push(e.createNode("tableCell",{},[{type:"paragraph",content:e.parseInline(i.tokens)}]))}),n.push(e.createNode("tableRow",{},o))}),e.createNode("table",void 0,n)},renderMarkdown:(t,e)=>Vx(t,e),addCommands(){return{insertTable:({rows:t=3,cols:e=3,withHeaderRow:n=!0}={})=>({tr:r,dispatch:o,editor:i})=>{let s=Bx(i.schema,t,e,n);if(o){let l=r.selection.from+1;r.replaceSelectionWith(s).scrollIntoView().setSelection(D.near(r.doc.resolve(l)))}return!0},addColumnBefore:()=>({state:t,dispatch:e})=>Bh(t,e),addColumnAfter:()=>({state:t,dispatch:e})=>zh(t,e),deleteColumn:()=>({state:t,dispatch:e})=>Hh(t,e),addRowBefore:()=>({state:t,dispatch:e})=>Fh(t,e),addRowAfter:()=>({state:t,dispatch:e})=>Vh(t,e),deleteRow:()=>({state:t,dispatch:e})=>_h(t,e),deleteTable:()=>({state:t,dispatch:e})=>Uh(t,e),mergeCells:()=>({state:t,dispatch:e})=>ra(t,e),splitCell:()=>({state:t,dispatch:e})=>oa(t,e),toggleHeaderColumn:()=>({state:t,dispatch:e})=>Bn("column")(t,e),toggleHeaderRow:()=>({state:t,dispatch:e})=>Bn("row")(t,e),toggleHeaderCell:()=>({state:t,dispatch:e})=>jh(t,e),mergeOrSplit:()=>({state:t,dispatch:e})=>ra(t,e)?!0:oa(t,e),setCellAttribute:(t,e)=>({state:n,dispatch:r})=>Wh(t,e)(n,r),goToNextCell:()=>({state:t,dispatch:e})=>ia(1)(t,e),goToPreviousCell:()=>({state:t,dispatch:e})=>ia(-1)(t,e),fixTables:()=>({state:t,dispatch:e})=>(e&&na(t),!0),setCellSelection:t=>({tr:e,dispatch:n})=>{if(n){let r=X.create(e.doc,t.anchorCell,t.headCell);e.setSelection(r)}return!0}}},addKeyboardShortcuts(){return{Tab:()=>this.editor.commands.goToNextCell()?!0:this.editor.can().addRowAfter()?this.editor.chain().addRowAfter().goToNextCell().run():!1,"Shift-Tab":()=>this.editor.commands.goToPreviousCell(),Backspace:Ci,"Mod-Backspace":Ci,Delete:Ci,"Mod-Delete":Ci}},addProseMirrorPlugins(){return[...this.options.resizable&&this.editor.isEditable?[qh({handleWidth:this.options.handleWidth,cellMinWidth:this.options.cellMinWidth,defaultCellMinWidth:this.options.cellMinWidth,View:this.options.View,lastColumnResizable:this.options.lastColumnResizable})]:[],Gh({allowTableNodeSelection:this.options.allowTableNodeSelection})]},extendNodeSchema(t){let e={name:t.name,options:t.options,storage:t.storage};return{tableRole:G(B(t,"tableRole",e))}}}),Qh=U.create({name:"tableKit",addExtensions(){let t=[];return this.options.table!==!1&&t.push(_x.configure(this.options.table)),this.options.tableCell!==!1&&t.push(Ox.configure(this.options.tableCell)),this.options.tableHeader!==!1&&t.push(Rx.configure(this.options.tableHeader)),this.options.tableRow!==!1&&t.push(Dx.configure(this.options.tableRow)),t}});var Wx=F.create({name:"text",group:"inline",parseMarkdown:t=>({type:"text",text:t.text||""}),renderMarkdown:t=>t.text||""}),Zh=Wx;var jx=U.create({name:"textAlign",addOptions(){return{types:[],alignments:["left","center","right","justify"],defaultAlignment:null}},addGlobalAttributes(){return[{types:this.options.types,attributes:{textAlign:{default:this.options.defaultAlignment,parseHTML:t=>{let e=t.style.textAlign;return this.options.alignments.includes(e)?e:this.options.defaultAlignment},renderHTML:t=>t.textAlign?{style:`text-align: ${t.textAlign}`}:{}}}}]},addCommands(){return{setTextAlign:t=>({commands:e})=>this.options.alignments.includes(t)?this.options.types.map(n=>e.updateAttributes(n,{textAlign:t})).some(n=>n):!1,unsetTextAlign:()=>({commands:t})=>this.options.types.map(e=>t.resetAttributes(e,"textAlign")).some(e=>e),toggleTextAlign:t=>({editor:e,commands:n})=>this.options.alignments.includes(t)?e.isActive({textAlign:t})?n.unsetTextAlign():n.setTextAlign(t):!1}},addKeyboardShortcuts(){return{"Mod-Shift-l":()=>this.editor.commands.setTextAlign("left"),"Mod-Shift-e":()=>this.editor.commands.setTextAlign("center"),"Mod-Shift-r":()=>this.editor.commands.setTextAlign("right"),"Mod-Shift-j":()=>this.editor.commands.setTextAlign("justify")}}}),ep=jx;var Ux=ee.create({name:"underline",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"u"},{style:"text-decoration",consuming:!1,getAttrs:t=>t.includes("underline")?{}:!1}]},renderHTML({HTMLAttributes:t}){return["u",R(this.options.HTMLAttributes,t),0]},parseMarkdown(t,e){return e.applyMark(this.name||"underline",e.parseInline(t.tokens||[]))},renderMarkdown(t,e){return`++${e.renderChildren(t)}++`},markdownTokenizer:{name:"underline",level:"inline",start(t){return t.indexOf("++")},tokenize(t,e,n){let o=/^(\+\+)([\s\S]+?)(\+\+)/.exec(t);if(!o)return;let i=o[2].trim();return{type:"underline",raw:o[0],text:i,tokens:n.inlineTokens(i)}}},addCommands(){return{setUnderline:()=>({commands:t})=>t.setMark(this.name),toggleUnderline:()=>({commands:t})=>t.toggleMark(this.name),unsetUnderline:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-u":()=>this.editor.commands.toggleUnderline(),"Mod-U":()=>this.editor.commands.toggleUnderline()}}}),tp=Ux;var np=(t,e)=>{Ln({getBoundingClientRect:()=>{let{from:r,to:o}=t.state.selection,i=t.view.coordsAtPos(r),s=t.view.coordsAtPos(o);return{top:Math.min(i.top,s.top),bottom:Math.max(i.bottom,s.bottom),left:Math.min(i.left,s.left),right:Math.max(i.right,s.right),width:Math.abs(s.right-i.left),height:Math.abs(s.bottom-i.top),x:Math.min(i.left,s.left),y:Math.min(i.top,s.top)}}},e,{placement:"bottom-start",strategy:"absolute",middleware:[In(),Pn()]}).then(({x:r,y:o,strategy:i})=>{e.style.width="max-content",e.style.position=i,e.style.left=`${r}px`,e.style.top=`${o}px`})},rp=({mergeTags:t,noMergeTagSearchResultsMessage:e})=>({items:({query:n})=>Object.entries(t).filter(([r,o])=>r.toLowerCase().replace(/\s/g,"").includes(n.toLowerCase())||o.toLowerCase().replace(/\s/g,"").includes(n.toLowerCase())).map(([r,o])=>({id:r,label:o})),render:()=>{let n,r=0,o=null,i=()=>{let f=document.createElement("div");return f.className="fi-dropdown-panel fi-dropdown-list",f.style.minWidth="12rem",f},s=()=>{if(!n||!o)return;let f=o.items||[];if(n.innerHTML="",f.length)f.forEach((h,p)=>{let m=document.createElement("button");m.className=`fi-dropdown-list-item fi-dropdown-list-item-label ${p===r?"fi-selected":""}`,m.textContent=h.label,m.type="button",m.addEventListener("click",()=>l(p)),n.appendChild(m)});else{let h=document.createElement("div");h.className="fi-dropdown-header";let p=document.createElement("span");p.style.whiteSpace="normal",p.textContent=e,h.appendChild(p),n.appendChild(h)}},l=f=>{if(!o)return;let p=(o.items||[])[f];p&&o.command({id:p.id})},a=()=>{if(!n||!o||o.items.length===0)return;let f=n.children[r];if(f){let h=f.getBoundingClientRect(),p=n.getBoundingClientRect();(h.topp.bottom)&&f.scrollIntoView({block:"nearest"})}},c=()=>{if(!o)return;let f=o.items||[];f.length!==0&&(r=(r+f.length-1)%f.length,s(),a())},d=()=>{if(!o)return;let f=o.items||[];f.length!==0&&(r=(r+1)%f.length,s(),a())},u=()=>{l(r)};return{onStart:f=>{o=f,r=0,n=i(),n.style.position="absolute",n.style.zIndex="50",s(),document.body.appendChild(n),f.clientRect&&np(f.editor,n)},onUpdate:f=>{o=f,r=0,s(),a(),f.clientRect&&np(f.editor,n)},onKeyDown:f=>f.event.key==="Escape"?(n&&n.parentNode&&n.parentNode.removeChild(n),!0):f.event.key==="ArrowUp"?(c(),!0):f.event.key==="ArrowDown"?(d(),!0):f.event.key==="Enter"?(u(),!0):!1,onExit:()=>{n&&n.parentNode&&n.parentNode.removeChild(n)}}}});var op=async({$wire:t,acceptedFileTypes:e,acceptedFileTypesValidationMessage:n,canAttachFiles:r,customExtensionUrls:o,deleteCustomBlockButtonIconHtml:i,editCustomBlockButtonIconHtml:s,editCustomBlockUsing:l,getMentionLabelsUsing:a,getMentionSearchResultsUsing:c,hasResizableImages:d,insertCustomBlockUsing:u,key:f,linkProtocols:h,maxFileSize:p,maxFileSizeValidationMessage:m,mentions:g,mergeTags:y,noMergeTagSearchResultsMessage:w,placeholder:b,statePath:C,textColors:x,uploadingFileMessage:S})=>{let k=[Du,Iu,$l,Pu,Lu,Bu.configure({deleteCustomBlockButtonIconHtml:i,editCustomBlockButtonIconHtml:s,editCustomBlockUsing:l,insertCustomBlockUsing:u}),Hu,Fu,$u,Vu,Nu.configure({class:"fi-not-prose"}),Ou,_u,Wu,ju,Uu,Ku,qu,Ju,Xu.configure({inline:!0,resize:{enabled:d,alwaysPreserveAspectRatio:!0,allowBase64:!0}}),Yu,pf.configure({autolink:!0,openOnClick:!1,protocols:h}),Fl,...r?[Af.configure({acceptedTypes:e,acceptedTypesValidationMessage:n,get$WireUsing:()=>t,key:f,maxSize:p,maxSizeValidationMessage:m,statePath:C,uploadingMessage:S})]:[],...Object.keys(y).length?[Ef.configure({deleteTriggerWithBackspace:!0,suggestion:rp({mergeTags:y,noMergeTagSearchResultsMessage:w}),mergeTags:y})]:[],...g.length?[mh.configure({HTMLAttributes:{class:"fi-fo-rich-editor-mention"},suggestions:g,getMentionSearchResultsUsing:c,getMentionLabelsUsing:a})]:[],_l,gh,Jl.configure({placeholder:b}),bh.configure({textColors:x}),yh,wh,xh,kh,Qh.configure({table:{resizable:!0}}),Zh,ep.configure({types:["heading","paragraph"],alignments:["start","center","end","justify"],defaultAlignment:"start"}),tp,Ru],O=await Promise.all(o.map(async T=>{new RegExp("^(?:[a-z+]+:)?//","i").test(T)||(T=new URL(T,document.baseURI).href);try{let $=(await import(T)).default;return typeof $=="function"?$():$}catch($){return console.error(`Failed to load rich editor custom extension from [${T}]:`,$),null}}));for(let T of O){if(!T||!T.name)continue;let A=k.findIndex($=>$.name===T.name);T.name==="placeholder"&&T.parent===null&&(T=Jl.configure(T.options)),A!==-1?k[A]=T:k.push(T)}return k};function Kx(t,e){let n=Math.min(t.top,e.top),r=Math.max(t.bottom,e.bottom),o=Math.min(t.left,e.left),s=Math.max(t.right,e.right)-o,l=r-n,a=o,c=n;return new DOMRect(a,c,s,l)}var qx=class{constructor({editor:t,element:e,view:n,updateDelay:r=250,resizeDelay:o=60,shouldShow:i,appendTo:s,getReferencedVirtualElement:l,options:a}){this.preventHide=!1,this.isVisible=!1,this.scrollTarget=window,this.floatingUIOptions={strategy:"absolute",placement:"top",offset:8,flip:{},shift:{},arrow:!1,size:!1,autoPlacement:!1,hide:!1,inline:!1,onShow:void 0,onHide:void 0,onUpdate:void 0,onDestroy:void 0},this.shouldShow=({view:d,state:u,from:f,to:h})=>{let{doc:p,selection:m}=u,{empty:g}=m,y=!p.textBetween(f,h).length&&fo(u.selection),w=this.element.contains(document.activeElement);return!(!(d.hasFocus()||w)||g||y||!this.editor.isEditable)},this.mousedownHandler=()=>{this.preventHide=!0},this.dragstartHandler=()=>{this.hide()},this.resizeHandler=()=>{this.resizeDebounceTimer&&clearTimeout(this.resizeDebounceTimer),this.resizeDebounceTimer=window.setTimeout(()=>{this.updatePosition()},this.resizeDelay)},this.focusHandler=()=>{setTimeout(()=>this.update(this.editor.view))},this.blurHandler=({event:d})=>{var u;if(this.editor.isDestroyed){this.destroy();return}if(this.preventHide){this.preventHide=!1;return}d?.relatedTarget&&((u=this.element.parentNode)!=null&&u.contains(d.relatedTarget))||d?.relatedTarget!==this.editor.view.dom&&this.hide()},this.handleDebouncedUpdate=(d,u)=>{let f=!u?.selection.eq(d.state.selection),h=!u?.doc.eq(d.state.doc);!f&&!h||(this.updateDebounceTimer&&clearTimeout(this.updateDebounceTimer),this.updateDebounceTimer=window.setTimeout(()=>{this.updateHandler(d,f,h,u)},this.updateDelay))},this.updateHandler=(d,u,f,h)=>{let{composing:p}=d;if(p||!u&&!f)return;if(!this.getShouldShow(h)){this.hide();return}this.updatePosition(),this.show()},this.transactionHandler=({transaction:d})=>{d.getMeta("bubbleMenu")==="updatePosition"&&this.updatePosition()};var c;this.editor=t,this.element=e,this.view=n,this.updateDelay=r,this.resizeDelay=o,this.appendTo=s,this.scrollTarget=(c=a?.scrollTarget)!=null?c:window,this.getReferencedVirtualElement=l,this.floatingUIOptions={...this.floatingUIOptions,...a},this.element.tabIndex=0,i&&(this.shouldShow=i),this.element.addEventListener("mousedown",this.mousedownHandler,{capture:!0}),this.view.dom.addEventListener("dragstart",this.dragstartHandler),this.editor.on("focus",this.focusHandler),this.editor.on("blur",this.blurHandler),this.editor.on("transaction",this.transactionHandler),window.addEventListener("resize",this.resizeHandler),this.scrollTarget.addEventListener("scroll",this.resizeHandler),this.update(n,n.state),this.getShouldShow()&&(this.show(),this.updatePosition())}get middlewares(){let t=[];return this.floatingUIOptions.flip&&t.push(Pn(typeof this.floatingUIOptions.flip!="boolean"?this.floatingUIOptions.flip:void 0)),this.floatingUIOptions.shift&&t.push(In(typeof this.floatingUIOptions.shift!="boolean"?this.floatingUIOptions.shift:void 0)),this.floatingUIOptions.offset&&t.push(lh(typeof this.floatingUIOptions.offset!="boolean"?this.floatingUIOptions.offset:void 0)),this.floatingUIOptions.arrow&&t.push(uh(this.floatingUIOptions.arrow)),this.floatingUIOptions.size&&t.push(ch(typeof this.floatingUIOptions.size!="boolean"?this.floatingUIOptions.size:void 0)),this.floatingUIOptions.autoPlacement&&t.push(ah(typeof this.floatingUIOptions.autoPlacement!="boolean"?this.floatingUIOptions.autoPlacement:void 0)),this.floatingUIOptions.hide&&t.push(dh(typeof this.floatingUIOptions.hide!="boolean"?this.floatingUIOptions.hide:void 0)),this.floatingUIOptions.inline&&t.push(fh(typeof this.floatingUIOptions.inline!="boolean"?this.floatingUIOptions.inline:void 0)),t}get virtualElement(){var t;let{selection:e}=this.editor.state,n=(t=this.getReferencedVirtualElement)==null?void 0:t.call(this);if(n)return n;let r=tu(this.view,e.from,e.to),o={getBoundingClientRect:()=>r,getClientRects:()=>[r]};if(e instanceof L){let i=this.view.nodeDOM(e.from),s=i.dataset.nodeViewWrapper?i:i.querySelector("[data-node-view-wrapper]");s&&(i=s),i&&(o={getBoundingClientRect:()=>i.getBoundingClientRect(),getClientRects:()=>[i.getBoundingClientRect()]})}if(e instanceof X){let{$anchorCell:i,$headCell:s}=e,l=i?i.pos:s.pos,a=s?s.pos:i.pos,c=this.view.nodeDOM(l),d=this.view.nodeDOM(a);if(!c||!d)return;let u=c===d?c.getBoundingClientRect():Kx(c.getBoundingClientRect(),d.getBoundingClientRect());o={getBoundingClientRect:()=>u,getClientRects:()=>[u]}}return o}updatePosition(){let t=this.virtualElement;t&&Ln(t,this.element,{placement:this.floatingUIOptions.placement,strategy:this.floatingUIOptions.strategy,middleware:this.middlewares}).then(({x:e,y:n,strategy:r})=>{this.element.style.width="max-content",this.element.style.position=r,this.element.style.left=`${e}px`,this.element.style.top=`${n}px`,this.isVisible&&this.floatingUIOptions.onUpdate&&this.floatingUIOptions.onUpdate()})}update(t,e){let{state:n}=t,r=n.selection.from!==n.selection.to;if(this.updateDelay>0&&r){this.handleDebouncedUpdate(t,e);return}let o=!e?.selection.eq(t.state.selection),i=!e?.doc.eq(t.state.doc);this.updateHandler(t,o,i,e)}getShouldShow(t){var e;let{state:n}=this.view,{selection:r}=n,{ranges:o}=r,i=Math.min(...o.map(a=>a.$from.pos)),s=Math.max(...o.map(a=>a.$to.pos));return((e=this.shouldShow)==null?void 0:e.call(this,{editor:this.editor,element:this.element,view:this.view,state:n,oldState:t,from:i,to:s}))||!1}show(){var t;if(this.isVisible)return;this.element.style.visibility="visible",this.element.style.opacity="1";let e=typeof this.appendTo=="function"?this.appendTo():this.appendTo;(t=e??this.view.dom.parentElement)==null||t.appendChild(this.element),this.floatingUIOptions.onShow&&this.floatingUIOptions.onShow(),this.isVisible=!0}hide(){this.isVisible&&(this.element.style.visibility="hidden",this.element.style.opacity="0",this.element.remove(),this.floatingUIOptions.onHide&&this.floatingUIOptions.onHide(),this.isVisible=!1)}destroy(){this.hide(),this.element.removeEventListener("mousedown",this.mousedownHandler,{capture:!0}),this.view.dom.removeEventListener("dragstart",this.dragstartHandler),window.removeEventListener("resize",this.resizeHandler),this.scrollTarget.removeEventListener("scroll",this.resizeHandler),this.editor.off("focus",this.focusHandler),this.editor.off("blur",this.blurHandler),this.editor.off("transaction",this.transactionHandler),this.floatingUIOptions.onDestroy&&this.floatingUIOptions.onDestroy()}},la=t=>new P({key:typeof t.pluginKey=="string"?new H(t.pluginKey):t.pluginKey,view:e=>new qx({view:e,...t})}),kT=U.create({name:"bubbleMenu",addOptions(){return{element:null,pluginKey:"bubbleMenu",updateDelay:void 0,appendTo:void 0,shouldShow:null}},addProseMirrorPlugins(){return this.options.element?[la({pluginKey:this.options.pluginKey,editor:this.editor,element:this.options.element,updateDelay:this.options.updateDelay,options:this.options.options,appendTo:this.options.appendTo,getReferencedVirtualElement:this.options.getReferencedVirtualElement,shouldShow:this.options.shouldShow})]:[]}});function Jx({acceptedFileTypes:t,acceptedFileTypesValidationMessage:e,activePanel:n,canAttachFiles:r,deleteCustomBlockButtonIconHtml:o,editCustomBlockButtonIconHtml:i,extensions:s,floatingToolbars:l,hasResizableImages:a,isDisabled:c,isLiveDebounced:d,isLiveOnBlur:u,key:f,linkProtocols:h,liveDebounce:p,livewireId:m,maxFileSize:g,maxFileSizeValidationMessage:y,mergeTags:w,mentions:b,getMentionSearchResultsUsing:C,getMentionLabelsUsing:x,noMergeTagSearchResultsMessage:S,placeholder:k,state:O,statePath:T,textColors:A,uploadingFileMessage:$}){let z,K=[],V=!1;return{state:O,activePanel:n,editorSelection:{type:"text",anchor:1,head:1},isUploadingFile:!1,fileValidationMessage:null,shouldUpdateState:!0,editorUpdatedAt:Date.now(),async init(){z=new gu({editable:!c,element:this.$refs.editor,extensions:await op({acceptedFileTypes:t,acceptedFileTypesValidationMessage:e,canAttachFiles:r,customExtensionUrls:s,deleteCustomBlockButtonIconHtml:o,editCustomBlockButtonIconHtml:i,editCustomBlockUsing:(q,We)=>this.$wire.mountAction("customBlock",{editorSelection:this.editorSelection,id:q,config:We,mode:"edit"},{schemaComponent:f}),floatingToolbars:l,hasResizableImages:a,insertCustomBlockUsing:(q,We=null)=>this.$wire.mountAction("customBlock",{id:q,dragPosition:We,mode:"insert"},{schemaComponent:f}),key:f,linkProtocols:h,maxFileSize:g,maxFileSizeValidationMessage:y,mergeTags:w,mentions:b,getMentionSearchResultsUsing:C,getMentionLabelsUsing:x,noMergeTagSearchResultsMessage:S,placeholder:k,statePath:T,textColors:A,uploadingFileMessage:$,$wire:this.$wire}),content:this.state});let N="paragraph"in l;Object.keys(l).forEach(q=>{let We=this.$refs[`floatingToolbar::${q}`];if(!We){console.warn(`Floating toolbar [${q}] not found.`);return}z.registerPlugin(la({editor:z,element:We,pluginKey:`floatingToolbar::${q}`,shouldShow:({editor:je})=>q==="paragraph"?je.isFocused&&je.isActive(q)&&!je.state.selection.empty:N&&!je.state.selection.empty&&je.isActive("paragraph")?!1:je.isFocused&&je.isActive(q),options:{placement:"bottom",offset:15}}))}),z.on("create",()=>{this.editorUpdatedAt=Date.now()});let _=Alpine.debounce(()=>{V||this.$wire.commit()},p??300);z.on("update",({editor:q})=>this.$nextTick(()=>{V||(this.editorUpdatedAt=Date.now(),this.state=q.getJSON(),this.shouldUpdateState=!1,this.fileValidationMessage=null,d&&_())})),z.on("selectionUpdate",({transaction:q})=>{V||(this.editorUpdatedAt=Date.now(),this.editorSelection=q.selection.toJSON())}),z.on("transaction",()=>{V||(this.editorUpdatedAt=Date.now())}),u&&z.on("blur",()=>{V||this.$wire.commit()}),this.$watch("state",()=>{if(!V){if(!this.shouldUpdateState){this.shouldUpdateState=!0;return}z.commands.setContent(this.state)}});let W=q=>{q.detail.livewireId===m&&q.detail.key===f&&this.runEditorCommands(q.detail)};window.addEventListener("run-rich-editor-commands",W),K.push(["run-rich-editor-commands",W]);let Q=q=>{q.detail.livewireId===m&&q.detail.key===f&&(this.isUploadingFile=!0,this.fileValidationMessage=null,q.stopPropagation())};window.addEventListener("rich-editor-uploading-file",Q),K.push(["rich-editor-uploading-file",Q]);let me=q=>{q.detail.livewireId===m&&q.detail.key===f&&(this.isUploadingFile=!1,q.stopPropagation())};window.addEventListener("rich-editor-uploaded-file",me),K.push(["rich-editor-uploaded-file",me]);let Ge=q=>{q.detail.livewireId===m&&q.detail.key===f&&(this.isUploadingFile=!1,this.fileValidationMessage=q.detail.validationMessage,q.stopPropagation())};window.addEventListener("rich-editor-file-validation-message",Ge),K.push(["rich-editor-file-validation-message",Ge]),window.dispatchEvent(new CustomEvent(`schema-component-${m}-${f}-loaded`))},getEditor(){return z},$getEditor(){return this.getEditor()},setEditorSelection(N){N&&(this.editorSelection=N,z.chain().command(({tr:_})=>(_.setSelection(I.fromJSON(z.state.doc,this.editorSelection)),!0)).run())},runEditorCommands({commands:N,editorSelection:_}){this.setEditorSelection(_);let W=z.chain();N.forEach(Q=>W=W[Q.name](...Q.arguments??[])),W.run()},togglePanel(N=null){if(this.isPanelActive(N)){this.activePanel=null;return}this.activePanel=N},isPanelActive(N=null){return N===null?this.activePanel!==null:this.activePanel===N},insertMergeTag(N){z.chain().focus().insertContent([{type:"mergeTag",attrs:{id:N}},{type:"text",text:" "}]).run()},destroy(){V=!0,K.forEach(([N,_])=>{window.removeEventListener(N,_)}),K=[],z&&(z.destroy(),z=null),this.shouldUpdateState=!0}}}export{Jx as default}; diff --git a/public/js/filament/forms/components/select.js b/public/js/filament/forms/components/select.js new file mode 100644 index 0000000..df50c93 --- /dev/null +++ b/public/js/filament/forms/components/select.js @@ -0,0 +1,11 @@ +var Ft=Math.min,vt=Math.max,Ht=Math.round;var st=n=>({x:n,y:n}),ji={left:"right",right:"left",bottom:"top",top:"bottom"},qi={start:"end",end:"start"};function De(n,t,e){return vt(n,Ft(t,e))}function Vt(n,t){return typeof n=="function"?n(t):n}function yt(n){return n.split("-")[0]}function Wt(n){return n.split("-")[1]}function Ae(n){return n==="x"?"y":"x"}function Ce(n){return n==="y"?"height":"width"}var Ji=new Set(["top","bottom"]);function ht(n){return Ji.has(yt(n))?"y":"x"}function Le(n){return Ae(ht(n))}function Je(n,t,e){e===void 0&&(e=!1);let i=Wt(n),o=Le(n),s=Ce(o),r=o==="x"?i===(e?"end":"start")?"right":"left":i==="start"?"bottom":"top";return t.reference[s]>t.floating[s]&&(r=Bt(r)),[r,Bt(r)]}function Qe(n){let t=Bt(n);return[ie(n),t,ie(t)]}function ie(n){return n.replace(/start|end/g,t=>qi[t])}var je=["left","right"],qe=["right","left"],Qi=["top","bottom"],Zi=["bottom","top"];function tn(n,t,e){switch(n){case"top":case"bottom":return e?t?qe:je:t?je:qe;case"left":case"right":return t?Qi:Zi;default:return[]}}function Ze(n,t,e,i){let o=Wt(n),s=tn(yt(n),e==="start",i);return o&&(s=s.map(r=>r+"-"+o),t&&(s=s.concat(s.map(ie)))),s}function Bt(n){return n.replace(/left|right|bottom|top/g,t=>ji[t])}function en(n){return{top:0,right:0,bottom:0,left:0,...n}}function ti(n){return typeof n!="number"?en(n):{top:n,right:n,bottom:n,left:n}}function Ot(n){let{x:t,y:e,width:i,height:o}=n;return{width:i,height:o,top:e,left:t,right:t+i,bottom:e+o,x:t,y:e}}function ei(n,t,e){let{reference:i,floating:o}=n,s=ht(t),r=Le(t),a=Ce(r),l=yt(t),c=s==="y",f=i.x+i.width/2-o.width/2,d=i.y+i.height/2-o.height/2,p=i[a]/2-o[a]/2,u;switch(l){case"top":u={x:f,y:i.y-o.height};break;case"bottom":u={x:f,y:i.y+i.height};break;case"right":u={x:i.x+i.width,y:d};break;case"left":u={x:i.x-o.width,y:d};break;default:u={x:i.x,y:i.y}}switch(Wt(t)){case"start":u[r]-=p*(e&&c?-1:1);break;case"end":u[r]+=p*(e&&c?-1:1);break}return u}var ii=async(n,t,e)=>{let{placement:i="bottom",strategy:o="absolute",middleware:s=[],platform:r}=e,a=s.filter(Boolean),l=await(r.isRTL==null?void 0:r.isRTL(t)),c=await r.getElementRects({reference:n,floating:t,strategy:o}),{x:f,y:d}=ei(c,i,l),p=i,u={},g=0;for(let m=0;mk<=0)){var W,tt;let k=(((W=s.flip)==null?void 0:W.index)||0)+1,Y=q[k];if(Y&&(!(d==="alignment"?w!==ht(Y):!1)||V.every(L=>ht(L.placement)===w?L.overflows[0]>0:!0)))return{data:{index:k,overflows:V},reset:{placement:Y}};let B=(tt=V.filter(X=>X.overflows[0]<=0).sort((X,L)=>X.overflows[1]-L.overflows[1])[0])==null?void 0:tt.placement;if(!B)switch(u){case"bestFit":{var z;let X=(z=V.filter(L=>{if(F){let et=ht(L.placement);return et===w||et==="y"}return!0}).map(L=>[L.placement,L.overflows.filter(et=>et>0).reduce((et,ee)=>et+ee,0)]).sort((L,et)=>L[1]-et[1])[0])==null?void 0:z[0];X&&(B=X);break}case"initialPlacement":B=a;break}if(o!==B)return{reset:{placement:B}}}return{}}}};var nn=new Set(["left","top"]);async function on(n,t){let{placement:e,platform:i,elements:o}=n,s=await(i.isRTL==null?void 0:i.isRTL(o.floating)),r=yt(e),a=Wt(e),l=ht(e)==="y",c=nn.has(r)?-1:1,f=s&&l?-1:1,d=Vt(t,n),{mainAxis:p,crossAxis:u,alignmentAxis:g}=typeof d=="number"?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:d.mainAxis||0,crossAxis:d.crossAxis||0,alignmentAxis:d.alignmentAxis};return a&&typeof g=="number"&&(u=a==="end"?g*-1:g),l?{x:u*f,y:p*c}:{x:p*c,y:u*f}}var oi=function(n){return n===void 0&&(n=0),{name:"offset",options:n,async fn(t){var e,i;let{x:o,y:s,placement:r,middlewareData:a}=t,l=await on(t,n);return r===((e=a.offset)==null?void 0:e.placement)&&(i=a.arrow)!=null&&i.alignmentOffset?{}:{x:o+l.x,y:s+l.y,data:{...l,placement:r}}}}},si=function(n){return n===void 0&&(n={}),{name:"shift",options:n,async fn(t){let{x:e,y:i,placement:o}=t,{mainAxis:s=!0,crossAxis:r=!1,limiter:a={fn:S=>{let{x:E,y:w}=S;return{x:E,y:w}}},...l}=Vt(n,t),c={x:e,y:i},f=await Ie(t,l),d=ht(yt(o)),p=Ae(d),u=c[p],g=c[d];if(s){let S=p==="y"?"top":"left",E=p==="y"?"bottom":"right",w=u+f[S],D=u-f[E];u=De(w,u,D)}if(r){let S=d==="y"?"top":"left",E=d==="y"?"bottom":"right",w=g+f[S],D=g-f[E];g=De(w,g,D)}let m=a.fn({...t,[p]:u,[d]:g});return{...m,data:{x:m.x-e,y:m.y-i,enabled:{[p]:s,[d]:r}}}}}};function oe(){return typeof window<"u"}function Et(n){return ai(n)?(n.nodeName||"").toLowerCase():"#document"}function U(n){var t;return(n==null||(t=n.ownerDocument)==null?void 0:t.defaultView)||window}function ct(n){var t;return(t=(ai(n)?n.ownerDocument:n.document)||window.document)==null?void 0:t.documentElement}function ai(n){return oe()?n instanceof Node||n instanceof U(n).Node:!1}function it(n){return oe()?n instanceof Element||n instanceof U(n).Element:!1}function rt(n){return oe()?n instanceof HTMLElement||n instanceof U(n).HTMLElement:!1}function ri(n){return!oe()||typeof ShadowRoot>"u"?!1:n instanceof ShadowRoot||n instanceof U(n).ShadowRoot}var sn=new Set(["inline","contents"]);function It(n){let{overflow:t,overflowX:e,overflowY:i,display:o}=nt(n);return/auto|scroll|overlay|hidden|clip/.test(t+i+e)&&!sn.has(o)}var rn=new Set(["table","td","th"]);function li(n){return rn.has(Et(n))}var an=[":popover-open",":modal"];function zt(n){return an.some(t=>{try{return n.matches(t)}catch{return!1}})}var ln=["transform","translate","scale","rotate","perspective"],cn=["transform","translate","scale","rotate","perspective","filter"],dn=["paint","layout","strict","content"];function se(n){let t=re(),e=it(n)?nt(n):n;return ln.some(i=>e[i]?e[i]!=="none":!1)||(e.containerType?e.containerType!=="normal":!1)||!t&&(e.backdropFilter?e.backdropFilter!=="none":!1)||!t&&(e.filter?e.filter!=="none":!1)||cn.some(i=>(e.willChange||"").includes(i))||dn.some(i=>(e.contain||"").includes(i))}function ci(n){let t=ut(n);for(;rt(t)&&!Dt(t);){if(se(t))return t;if(zt(t))return null;t=ut(t)}return null}function re(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}var fn=new Set(["html","body","#document"]);function Dt(n){return fn.has(Et(n))}function nt(n){return U(n).getComputedStyle(n)}function Xt(n){return it(n)?{scrollLeft:n.scrollLeft,scrollTop:n.scrollTop}:{scrollLeft:n.scrollX,scrollTop:n.scrollY}}function ut(n){if(Et(n)==="html")return n;let t=n.assignedSlot||n.parentNode||ri(n)&&n.host||ct(n);return ri(t)?t.host:t}function di(n){let t=ut(n);return Dt(t)?n.ownerDocument?n.ownerDocument.body:n.body:rt(t)&&It(t)?t:di(t)}function ne(n,t,e){var i;t===void 0&&(t=[]),e===void 0&&(e=!0);let o=di(n),s=o===((i=n.ownerDocument)==null?void 0:i.body),r=U(o);if(s){let a=ae(r);return t.concat(r,r.visualViewport||[],It(o)?o:[],a&&e?ne(a):[])}return t.concat(o,ne(o,[],e))}function ae(n){return n.parent&&Object.getPrototypeOf(n.parent)?n.frameElement:null}function pi(n){let t=nt(n),e=parseFloat(t.width)||0,i=parseFloat(t.height)||0,o=rt(n),s=o?n.offsetWidth:e,r=o?n.offsetHeight:i,a=Ht(e)!==s||Ht(i)!==r;return a&&(e=s,i=r),{width:e,height:i,$:a}}function gi(n){return it(n)?n:n.contextElement}function Tt(n){let t=gi(n);if(!rt(t))return st(1);let e=t.getBoundingClientRect(),{width:i,height:o,$:s}=pi(t),r=(s?Ht(e.width):e.width)/i,a=(s?Ht(e.height):e.height)/o;return(!r||!Number.isFinite(r))&&(r=1),(!a||!Number.isFinite(a))&&(a=1),{x:r,y:a}}var hn=st(0);function mi(n){let t=U(n);return!re()||!t.visualViewport?hn:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function un(n,t,e){return t===void 0&&(t=!1),!e||t&&e!==U(n)?!1:t}function $t(n,t,e,i){t===void 0&&(t=!1),e===void 0&&(e=!1);let o=n.getBoundingClientRect(),s=gi(n),r=st(1);t&&(i?it(i)&&(r=Tt(i)):r=Tt(n));let a=un(s,e,i)?mi(s):st(0),l=(o.left+a.x)/r.x,c=(o.top+a.y)/r.y,f=o.width/r.x,d=o.height/r.y;if(s){let p=U(s),u=i&&it(i)?U(i):i,g=p,m=ae(g);for(;m&&i&&u!==g;){let S=Tt(m),E=m.getBoundingClientRect(),w=nt(m),D=E.left+(m.clientLeft+parseFloat(w.paddingLeft))*S.x,A=E.top+(m.clientTop+parseFloat(w.paddingTop))*S.y;l*=S.x,c*=S.y,f*=S.x,d*=S.y,l+=D,c+=A,g=U(m),m=ae(g)}}return Ot({width:f,height:d,x:l,y:c})}function le(n,t){let e=Xt(n).scrollLeft;return t?t.left+e:$t(ct(n)).left+e}function bi(n,t){let e=n.getBoundingClientRect(),i=e.left+t.scrollLeft-le(n,e),o=e.top+t.scrollTop;return{x:i,y:o}}function pn(n){let{elements:t,rect:e,offsetParent:i,strategy:o}=n,s=o==="fixed",r=ct(i),a=t?zt(t.floating):!1;if(i===r||a&&s)return e;let l={scrollLeft:0,scrollTop:0},c=st(1),f=st(0),d=rt(i);if((d||!d&&!s)&&((Et(i)!=="body"||It(r))&&(l=Xt(i)),rt(i))){let u=$t(i);c=Tt(i),f.x=u.x+i.clientLeft,f.y=u.y+i.clientTop}let p=r&&!d&&!s?bi(r,l):st(0);return{width:e.width*c.x,height:e.height*c.y,x:e.x*c.x-l.scrollLeft*c.x+f.x+p.x,y:e.y*c.y-l.scrollTop*c.y+f.y+p.y}}function gn(n){return Array.from(n.getClientRects())}function mn(n){let t=ct(n),e=Xt(n),i=n.ownerDocument.body,o=vt(t.scrollWidth,t.clientWidth,i.scrollWidth,i.clientWidth),s=vt(t.scrollHeight,t.clientHeight,i.scrollHeight,i.clientHeight),r=-e.scrollLeft+le(n),a=-e.scrollTop;return nt(i).direction==="rtl"&&(r+=vt(t.clientWidth,i.clientWidth)-o),{width:o,height:s,x:r,y:a}}var fi=25;function bn(n,t){let e=U(n),i=ct(n),o=e.visualViewport,s=i.clientWidth,r=i.clientHeight,a=0,l=0;if(o){s=o.width,r=o.height;let f=re();(!f||f&&t==="fixed")&&(a=o.offsetLeft,l=o.offsetTop)}let c=le(i);if(c<=0){let f=i.ownerDocument,d=f.body,p=getComputedStyle(d),u=f.compatMode==="CSS1Compat"&&parseFloat(p.marginLeft)+parseFloat(p.marginRight)||0,g=Math.abs(i.clientWidth-d.clientWidth-u);g<=fi&&(s-=g)}else c<=fi&&(s+=c);return{width:s,height:r,x:a,y:l}}var vn=new Set(["absolute","fixed"]);function yn(n,t){let e=$t(n,!0,t==="fixed"),i=e.top+n.clientTop,o=e.left+n.clientLeft,s=rt(n)?Tt(n):st(1),r=n.clientWidth*s.x,a=n.clientHeight*s.y,l=o*s.x,c=i*s.y;return{width:r,height:a,x:l,y:c}}function hi(n,t,e){let i;if(t==="viewport")i=bn(n,e);else if(t==="document")i=mn(ct(n));else if(it(t))i=yn(t,e);else{let o=mi(n);i={x:t.x-o.x,y:t.y-o.y,width:t.width,height:t.height}}return Ot(i)}function vi(n,t){let e=ut(n);return e===t||!it(e)||Dt(e)?!1:nt(e).position==="fixed"||vi(e,t)}function wn(n,t){let e=t.get(n);if(e)return e;let i=ne(n,[],!1).filter(a=>it(a)&&Et(a)!=="body"),o=null,s=nt(n).position==="fixed",r=s?ut(n):n;for(;it(r)&&!Dt(r);){let a=nt(r),l=se(r);!l&&a.position==="fixed"&&(o=null),(s?!l&&!o:!l&&a.position==="static"&&!!o&&vn.has(o.position)||It(r)&&!l&&vi(n,r))?i=i.filter(f=>f!==r):o=a,r=ut(r)}return t.set(n,i),i}function Sn(n){let{element:t,boundary:e,rootBoundary:i,strategy:o}=n,r=[...e==="clippingAncestors"?zt(t)?[]:wn(t,this._c):[].concat(e),i],a=r[0],l=r.reduce((c,f)=>{let d=hi(t,f,o);return c.top=vt(d.top,c.top),c.right=Ft(d.right,c.right),c.bottom=Ft(d.bottom,c.bottom),c.left=vt(d.left,c.left),c},hi(t,a,o));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}}function xn(n){let{width:t,height:e}=pi(n);return{width:t,height:e}}function On(n,t,e){let i=rt(t),o=ct(t),s=e==="fixed",r=$t(n,!0,s,t),a={scrollLeft:0,scrollTop:0},l=st(0);function c(){l.x=le(o)}if(i||!i&&!s)if((Et(t)!=="body"||It(o))&&(a=Xt(t)),i){let u=$t(t,!0,s,t);l.x=u.x+t.clientLeft,l.y=u.y+t.clientTop}else o&&c();s&&!i&&o&&c();let f=o&&!i&&!s?bi(o,a):st(0),d=r.left+a.scrollLeft-l.x-f.x,p=r.top+a.scrollTop-l.y-f.y;return{x:d,y:p,width:r.width,height:r.height}}function Te(n){return nt(n).position==="static"}function ui(n,t){if(!rt(n)||nt(n).position==="fixed")return null;if(t)return t(n);let e=n.offsetParent;return ct(n)===e&&(e=e.ownerDocument.body),e}function yi(n,t){let e=U(n);if(zt(n))return e;if(!rt(n)){let o=ut(n);for(;o&&!Dt(o);){if(it(o)&&!Te(o))return o;o=ut(o)}return e}let i=ui(n,t);for(;i&&li(i)&&Te(i);)i=ui(i,t);return i&&Dt(i)&&Te(i)&&!se(i)?e:i||ci(n)||e}var En=async function(n){let t=this.getOffsetParent||yi,e=this.getDimensions,i=await e(n.floating);return{reference:On(n.reference,await t(n.floating),n.strategy),floating:{x:0,y:0,width:i.width,height:i.height}}};function Dn(n){return nt(n).direction==="rtl"}var An={convertOffsetParentRelativeRectToViewportRelativeRect:pn,getDocumentElement:ct,getClippingRect:Sn,getOffsetParent:yi,getElementRects:En,getClientRects:gn,getDimensions:xn,getScale:Tt,isElement:it,isRTL:Dn};var wi=oi;var Si=si,xi=ni;var Oi=(n,t,e)=>{let i=new Map,o={platform:An,...e},s={...o.platform,_c:i};return ii(n,t,{...o,platform:s})};function Ei(n,t){var e=Object.keys(n);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(n);t&&(i=i.filter(function(o){return Object.getOwnPropertyDescriptor(n,o).enumerable})),e.push.apply(e,i)}return e}function ft(n){for(var t=1;t=0)&&(e[o]=n[o]);return e}function In(n,t){if(n==null)return{};var e=Ln(n,t),i,o;if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(n);for(o=0;o=0)&&Object.prototype.propertyIsEnumerable.call(n,i)&&(e[i]=n[i])}return e}var Tn="1.15.6";function pt(n){if(typeof window<"u"&&window.navigator)return!!navigator.userAgent.match(n)}var mt=pt(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i),Zt=pt(/Edge/i),Di=pt(/firefox/i),Gt=pt(/safari/i)&&!pt(/chrome/i)&&!pt(/android/i),$e=pt(/iP(ad|od|hone)/i),Pi=pt(/chrome/i)&&pt(/android/i),Mi={capture:!1,passive:!1};function O(n,t,e){n.addEventListener(t,e,!mt&&Mi)}function x(n,t,e){n.removeEventListener(t,e,!mt&&Mi)}function ve(n,t){if(t){if(t[0]===">"&&(t=t.substring(1)),n)try{if(n.matches)return n.matches(t);if(n.msMatchesSelector)return n.msMatchesSelector(t);if(n.webkitMatchesSelector)return n.webkitMatchesSelector(t)}catch{return!1}return!1}}function Ni(n){return n.host&&n!==document&&n.host.nodeType?n.host:n.parentNode}function lt(n,t,e,i){if(n){e=e||document;do{if(t!=null&&(t[0]===">"?n.parentNode===e&&ve(n,t):ve(n,t))||i&&n===e)return n;if(n===e)break}while(n=Ni(n))}return null}var Ai=/\s+/g;function Q(n,t,e){if(n&&t)if(n.classList)n.classList[e?"add":"remove"](t);else{var i=(" "+n.className+" ").replace(Ai," ").replace(" "+t+" "," ");n.className=(i+(e?" "+t:"")).replace(Ai," ")}}function b(n,t,e){var i=n&&n.style;if(i){if(e===void 0)return document.defaultView&&document.defaultView.getComputedStyle?e=document.defaultView.getComputedStyle(n,""):n.currentStyle&&(e=n.currentStyle),t===void 0?e:e[t];!(t in i)&&t.indexOf("webkit")===-1&&(t="-webkit-"+t),i[t]=e+(typeof e=="string"?"":"px")}}function Nt(n,t){var e="";if(typeof n=="string")e=n;else do{var i=b(n,"transform");i&&i!=="none"&&(e=i+" "+e)}while(!t&&(n=n.parentNode));var o=window.DOMMatrix||window.WebKitCSSMatrix||window.CSSMatrix||window.MSCSSMatrix;return o&&new o(e)}function ki(n,t,e){if(n){var i=n.getElementsByTagName(t),o=0,s=i.length;if(e)for(;o=s:r=o<=s,!r)return i;if(i===dt())break;i=xt(i,!1)}return!1}function kt(n,t,e,i){for(var o=0,s=0,r=n.children;s2&&arguments[2]!==void 0?arguments[2]:{},o=i.evt,s=In(i,Fn);te.pluginEvent.bind(v)(t,e,ft({dragEl:h,parentEl:R,ghostEl:y,rootEl:I,nextEl:Lt,lastDownEl:pe,cloneEl:T,cloneHidden:St,dragStarted:Kt,putSortable:H,activeSortable:v.active,originalEvent:o,oldIndex:Mt,oldDraggableIndex:qt,newIndex:Z,newDraggableIndex:wt,hideGhostForTarget:$i,unhideGhostForTarget:Ki,cloneNowHidden:function(){St=!0},cloneNowShown:function(){St=!1},dispatchSortableEvent:function(a){K({sortable:e,name:a,originalEvent:o})}},s))};function K(n){Bn(ft({putSortable:H,cloneEl:T,targetEl:h,rootEl:I,oldIndex:Mt,oldDraggableIndex:qt,newIndex:Z,newDraggableIndex:wt},n))}var h,R,y,I,Lt,pe,T,St,Mt,Z,qt,wt,ce,H,Pt=!1,ye=!1,we=[],At,at,Pe,Me,Ii,Ti,Kt,Rt,Jt,Qt=!1,de=!1,ge,$,Ne=[],Ve=!1,Se=[],Oe=typeof document<"u",fe=$e,_i=Zt||mt?"cssFloat":"float",Hn=Oe&&!Pi&&!$e&&"draggable"in document.createElement("div"),Wi=(function(){if(Oe){if(mt)return!1;var n=document.createElement("x");return n.style.cssText="pointer-events:auto",n.style.pointerEvents==="auto"}})(),zi=function(t,e){var i=b(t),o=parseInt(i.width)-parseInt(i.paddingLeft)-parseInt(i.paddingRight)-parseInt(i.borderLeftWidth)-parseInt(i.borderRightWidth),s=kt(t,0,e),r=kt(t,1,e),a=s&&b(s),l=r&&b(r),c=a&&parseInt(a.marginLeft)+parseInt(a.marginRight)+N(s).width,f=l&&parseInt(l.marginLeft)+parseInt(l.marginRight)+N(r).width;if(i.display==="flex")return i.flexDirection==="column"||i.flexDirection==="column-reverse"?"vertical":"horizontal";if(i.display==="grid")return i.gridTemplateColumns.split(" ").length<=1?"vertical":"horizontal";if(s&&a.float&&a.float!=="none"){var d=a.float==="left"?"left":"right";return r&&(l.clear==="both"||l.clear===d)?"vertical":"horizontal"}return s&&(a.display==="block"||a.display==="flex"||a.display==="table"||a.display==="grid"||c>=o&&i[_i]==="none"||r&&i[_i]==="none"&&c+f>o)?"vertical":"horizontal"},Vn=function(t,e,i){var o=i?t.left:t.top,s=i?t.right:t.bottom,r=i?t.width:t.height,a=i?e.left:e.top,l=i?e.right:e.bottom,c=i?e.width:e.height;return o===a||s===l||o+r/2===a+c/2},Wn=function(t,e){var i;return we.some(function(o){var s=o[j].options.emptyInsertThreshold;if(!(!s||Ke(o))){var r=N(o),a=t>=r.left-s&&t<=r.right+s,l=e>=r.top-s&&e<=r.bottom+s;if(a&&l)return i=o}}),i},Xi=function(t){function e(s,r){return function(a,l,c,f){var d=a.options.group.name&&l.options.group.name&&a.options.group.name===l.options.group.name;if(s==null&&(r||d))return!0;if(s==null||s===!1)return!1;if(r&&s==="clone")return s;if(typeof s=="function")return e(s(a,l,c,f),r)(a,l,c,f);var p=(r?a:l).options.group.name;return s===!0||typeof s=="string"&&s===p||s.join&&s.indexOf(p)>-1}}var i={},o=t.group;(!o||ue(o)!="object")&&(o={name:o}),i.name=o.name,i.checkPull=e(o.pull,!0),i.checkPut=e(o.put),i.revertClone=o.revertClone,t.group=i},$i=function(){!Wi&&y&&b(y,"display","none")},Ki=function(){!Wi&&y&&b(y,"display","")};Oe&&!Pi&&document.addEventListener("click",function(n){if(ye)return n.preventDefault(),n.stopPropagation&&n.stopPropagation(),n.stopImmediatePropagation&&n.stopImmediatePropagation(),ye=!1,!1},!0);var Ct=function(t){if(h){t=t.touches?t.touches[0]:t;var e=Wn(t.clientX,t.clientY);if(e){var i={};for(var o in t)t.hasOwnProperty(o)&&(i[o]=t[o]);i.target=i.rootEl=e,i.preventDefault=void 0,i.stopPropagation=void 0,e[j]._onDragOver(i)}}},zn=function(t){h&&h.parentNode[j]._isOutsideThisEl(t.target)};function v(n,t){if(!(n&&n.nodeType&&n.nodeType===1))throw"Sortable: `el` must be an HTMLElement, not ".concat({}.toString.call(n));this.el=n,this.options=t=gt({},t),n[j]=this;var e={group:null,sort:!0,disabled:!1,store:null,handle:null,draggable:/^[uo]l$/i.test(n.nodeName)?">li":">*",swapThreshold:1,invertSwap:!1,invertedSwapThreshold:null,removeCloneOnHide:!0,direction:function(){return zi(n,this.options)},ghostClass:"sortable-ghost",chosenClass:"sortable-chosen",dragClass:"sortable-drag",ignore:"a, img",filter:null,preventOnFilter:!0,animation:0,easing:null,setData:function(r,a){r.setData("Text",a.textContent)},dropBubble:!1,dragoverBubble:!1,dataIdAttr:"data-id",delay:0,delayOnTouchOnly:!1,touchStartThreshold:(Number.parseInt?Number:window).parseInt(window.devicePixelRatio,10)||1,forceFallback:!1,fallbackClass:"sortable-fallback",fallbackOnBody:!1,fallbackTolerance:0,fallbackOffset:{x:0,y:0},supportPointer:v.supportPointer!==!1&&"PointerEvent"in window&&(!Gt||$e),emptyInsertThreshold:5};te.initializePlugins(this,n,e);for(var i in e)!(i in t)&&(t[i]=e[i]);Xi(t);for(var o in this)o.charAt(0)==="_"&&typeof this[o]=="function"&&(this[o]=this[o].bind(this));this.nativeDraggable=t.forceFallback?!1:Hn,this.nativeDraggable&&(this.options.touchStartThreshold=1),t.supportPointer?O(n,"pointerdown",this._onTapStart):(O(n,"mousedown",this._onTapStart),O(n,"touchstart",this._onTapStart)),this.nativeDraggable&&(O(n,"dragover",this),O(n,"dragenter",this)),we.push(this.el),t.store&&t.store.get&&this.sort(t.store.get(this)||[]),gt(this,Mn())}v.prototype={constructor:v,_isOutsideThisEl:function(t){!this.el.contains(t)&&t!==this.el&&(Rt=null)},_getDirection:function(t,e){return typeof this.options.direction=="function"?this.options.direction.call(this,t,e,h):this.options.direction},_onTapStart:function(t){if(t.cancelable){var e=this,i=this.el,o=this.options,s=o.preventOnFilter,r=t.type,a=t.touches&&t.touches[0]||t.pointerType&&t.pointerType==="touch"&&t,l=(a||t).target,c=t.target.shadowRoot&&(t.path&&t.path[0]||t.composedPath&&t.composedPath()[0])||l,f=o.filter;if(qn(i),!h&&!(/mousedown|pointerdown/.test(r)&&t.button!==0||o.disabled)&&!c.isContentEditable&&!(!this.nativeDraggable&&Gt&&l&&l.tagName.toUpperCase()==="SELECT")&&(l=lt(l,o.draggable,i,!1),!(l&&l.animated)&&pe!==l)){if(Mt=ot(l),qt=ot(l,o.draggable),typeof f=="function"){if(f.call(this,t,l,this)){K({sortable:e,rootEl:c,name:"filter",targetEl:l,toEl:i,fromEl:i}),G("filter",e,{evt:t}),s&&t.preventDefault();return}}else if(f&&(f=f.split(",").some(function(d){if(d=lt(c,d.trim(),i,!1),d)return K({sortable:e,rootEl:d,name:"filter",targetEl:l,fromEl:i,toEl:i}),G("filter",e,{evt:t}),!0}),f)){s&&t.preventDefault();return}o.handle&&!lt(c,o.handle,i,!1)||this._prepareDragStart(t,a,l)}}},_prepareDragStart:function(t,e,i){var o=this,s=o.el,r=o.options,a=s.ownerDocument,l;if(i&&!h&&i.parentNode===s){var c=N(i);if(I=s,h=i,R=h.parentNode,Lt=h.nextSibling,pe=i,ce=r.group,v.dragged=h,At={target:h,clientX:(e||t).clientX,clientY:(e||t).clientY},Ii=At.clientX-c.left,Ti=At.clientY-c.top,this._lastX=(e||t).clientX,this._lastY=(e||t).clientY,h.style["will-change"]="all",l=function(){if(G("delayEnded",o,{evt:t}),v.eventCanceled){o._onDrop();return}o._disableDelayedDragEvents(),!Di&&o.nativeDraggable&&(h.draggable=!0),o._triggerDragStart(t,e),K({sortable:o,name:"choose",originalEvent:t}),Q(h,r.chosenClass,!0)},r.ignore.split(",").forEach(function(f){ki(h,f.trim(),ke)}),O(a,"dragover",Ct),O(a,"mousemove",Ct),O(a,"touchmove",Ct),r.supportPointer?(O(a,"pointerup",o._onDrop),!this.nativeDraggable&&O(a,"pointercancel",o._onDrop)):(O(a,"mouseup",o._onDrop),O(a,"touchend",o._onDrop),O(a,"touchcancel",o._onDrop)),Di&&this.nativeDraggable&&(this.options.touchStartThreshold=4,h.draggable=!0),G("delayStart",this,{evt:t}),r.delay&&(!r.delayOnTouchOnly||e)&&(!this.nativeDraggable||!(Zt||mt))){if(v.eventCanceled){this._onDrop();return}r.supportPointer?(O(a,"pointerup",o._disableDelayedDrag),O(a,"pointercancel",o._disableDelayedDrag)):(O(a,"mouseup",o._disableDelayedDrag),O(a,"touchend",o._disableDelayedDrag),O(a,"touchcancel",o._disableDelayedDrag)),O(a,"mousemove",o._delayedDragTouchMoveHandler),O(a,"touchmove",o._delayedDragTouchMoveHandler),r.supportPointer&&O(a,"pointermove",o._delayedDragTouchMoveHandler),o._dragStartTimer=setTimeout(l,r.delay)}else l()}},_delayedDragTouchMoveHandler:function(t){var e=t.touches?t.touches[0]:t;Math.max(Math.abs(e.clientX-this._lastX),Math.abs(e.clientY-this._lastY))>=Math.floor(this.options.touchStartThreshold/(this.nativeDraggable&&window.devicePixelRatio||1))&&this._disableDelayedDrag()},_disableDelayedDrag:function(){h&&ke(h),clearTimeout(this._dragStartTimer),this._disableDelayedDragEvents()},_disableDelayedDragEvents:function(){var t=this.el.ownerDocument;x(t,"mouseup",this._disableDelayedDrag),x(t,"touchend",this._disableDelayedDrag),x(t,"touchcancel",this._disableDelayedDrag),x(t,"pointerup",this._disableDelayedDrag),x(t,"pointercancel",this._disableDelayedDrag),x(t,"mousemove",this._delayedDragTouchMoveHandler),x(t,"touchmove",this._delayedDragTouchMoveHandler),x(t,"pointermove",this._delayedDragTouchMoveHandler)},_triggerDragStart:function(t,e){e=e||t.pointerType=="touch"&&t,!this.nativeDraggable||e?this.options.supportPointer?O(document,"pointermove",this._onTouchMove):e?O(document,"touchmove",this._onTouchMove):O(document,"mousemove",this._onTouchMove):(O(h,"dragend",this),O(I,"dragstart",this._onDragStart));try{document.selection?me(function(){document.selection.empty()}):window.getSelection().removeAllRanges()}catch{}},_dragStarted:function(t,e){if(Pt=!1,I&&h){G("dragStarted",this,{evt:e}),this.nativeDraggable&&O(document,"dragover",zn);var i=this.options;!t&&Q(h,i.dragClass,!1),Q(h,i.ghostClass,!0),v.active=this,t&&this._appendGhost(),K({sortable:this,name:"start",originalEvent:e})}else this._nulling()},_emulateDragOver:function(){if(at){this._lastX=at.clientX,this._lastY=at.clientY,$i();for(var t=document.elementFromPoint(at.clientX,at.clientY),e=t;t&&t.shadowRoot&&(t=t.shadowRoot.elementFromPoint(at.clientX,at.clientY),t!==e);)e=t;if(h.parentNode[j]._isOutsideThisEl(t),e)do{if(e[j]){var i=void 0;if(i=e[j]._onDragOver({clientX:at.clientX,clientY:at.clientY,target:t,rootEl:e}),i&&!this.options.dragoverBubble)break}t=e}while(e=Ni(e));Ki()}},_onTouchMove:function(t){if(At){var e=this.options,i=e.fallbackTolerance,o=e.fallbackOffset,s=t.touches?t.touches[0]:t,r=y&&Nt(y,!0),a=y&&r&&r.a,l=y&&r&&r.d,c=fe&&$&&Li($),f=(s.clientX-At.clientX+o.x)/(a||1)+(c?c[0]-Ne[0]:0)/(a||1),d=(s.clientY-At.clientY+o.y)/(l||1)+(c?c[1]-Ne[1]:0)/(l||1);if(!v.active&&!Pt){if(i&&Math.max(Math.abs(s.clientX-this._lastX),Math.abs(s.clientY-this._lastY))=0&&(K({rootEl:R,name:"add",toEl:R,fromEl:I,originalEvent:t}),K({sortable:this,name:"remove",toEl:R,originalEvent:t}),K({rootEl:R,name:"sort",toEl:R,fromEl:I,originalEvent:t}),K({sortable:this,name:"sort",toEl:R,originalEvent:t})),H&&H.save()):Z!==Mt&&Z>=0&&(K({sortable:this,name:"update",toEl:R,originalEvent:t}),K({sortable:this,name:"sort",toEl:R,originalEvent:t})),v.active&&((Z==null||Z===-1)&&(Z=Mt,wt=qt),K({sortable:this,name:"end",toEl:R,originalEvent:t}),this.save()))),this._nulling()},_nulling:function(){G("nulling",this),I=h=R=y=Lt=T=pe=St=At=at=Kt=Z=wt=Mt=qt=Rt=Jt=H=ce=v.dragged=v.ghost=v.clone=v.active=null,Se.forEach(function(t){t.checked=!0}),Se.length=Pe=Me=0},handleEvent:function(t){switch(t.type){case"drop":case"dragend":this._onDrop(t);break;case"dragenter":case"dragover":h&&(this._onDragOver(t),Xn(t));break;case"selectstart":t.preventDefault();break}},toArray:function(){for(var t=[],e,i=this.el.children,o=0,s=i.length,r=this.options;oo.right+s||n.clientY>i.bottom&&n.clientX>i.left:n.clientY>o.bottom+s||n.clientX>i.right&&n.clientY>i.top}function Un(n,t,e,i,o,s,r,a){var l=i?n.clientY:n.clientX,c=i?e.height:e.width,f=i?e.top:e.left,d=i?e.bottom:e.right,p=!1;if(!r){if(a&&gef+c*s/2:ld-ge)return-Jt}else if(l>f+c*(1-o)/2&&ld-c*s/2)?l>f+c/2?1:-1:0}function Gn(n){return ot(h){},options:W,optionsLimit:tt=null,placeholder:z,position:k=null,searchableOptionFields:Y=["label"],searchDebounce:B=1e3,searchingMessage:X="Searching...",searchPrompt:L="Search...",state:et,statePath:ee=null}){this.canOptionLabelsWrap=t,this.canSelectPlaceholder=e,this.element=i,this.getOptionLabelUsing=o,this.getOptionLabelsUsing=s,this.getOptionsUsing=r,this.getSearchResultsUsing=a,this.hasDynamicOptions=l,this.hasDynamicSearchResults=c,this.hasInitialNoOptionsMessage=f,this.initialOptionLabel=d,this.initialOptionLabels=p,this.initialState=u,this.isAutofocused=g,this.isDisabled=m,this.isHtmlAllowed=S,this.isMultiple=E,this.isReorderable=w,this.isSearchable=D,this.livewireId=A,this.loadingMessage=C,this.maxItems=F,this.maxItemsMessage=q,this.noOptionsMessage=J,this.noSearchResultsMessage=_,this.onStateChange=V,this.options=W,this.optionsLimit=tt,this.originalOptions=JSON.parse(JSON.stringify(W)),this.placeholder=z,this.position=k,this.searchableOptionFields=Array.isArray(Y)?Y:["label"],this.searchDebounce=B,this.searchingMessage=X,this.searchPrompt=L,this.state=et,this.statePath=ee,this.activeSearchId=0,this.labelRepository={},this.isOpen=!1,this.selectedIndex=-1,this.searchQuery="",this.searchTimeout=null,this.isSearching=!1,this.selectedDisplayVersion=0,this.render(),this.setUpEventListeners(),this.isAutofocused&&this.selectButton.focus()}populateLabelRepositoryFromOptions(t){if(!(!t||!Array.isArray(t)))for(let e of t)e.options&&Array.isArray(e.options)?this.populateLabelRepositoryFromOptions(e.options):e.value!==void 0&&e.label!==void 0&&(this.labelRepository[e.value]=e.label)}render(){this.populateLabelRepositoryFromOptions(this.options),this.container=document.createElement("div"),this.container.className="fi-select-input-ctn",this.canOptionLabelsWrap||this.container.classList.add("fi-select-input-ctn-option-labels-not-wrapped"),this.container.setAttribute("aria-haspopup","listbox"),this.selectButton=document.createElement("button"),this.selectButton.className="fi-select-input-btn",this.selectButton.type="button",this.selectButton.setAttribute("aria-expanded","false"),this.selectedDisplay=document.createElement("div"),this.selectedDisplay.className="fi-select-input-value-ctn",this.updateSelectedDisplay(),this.selectButton.appendChild(this.selectedDisplay),this.dropdown=document.createElement("div"),this.dropdown.className="fi-dropdown-panel fi-scrollable",this.dropdown.setAttribute("role","listbox"),this.dropdown.setAttribute("tabindex","-1"),this.dropdown.style.display="none",this.dropdownId=`fi-select-input-dropdown-${Math.random().toString(36).substring(2,11)}`,this.dropdown.id=this.dropdownId,this.isMultiple&&this.dropdown.setAttribute("aria-multiselectable","true"),this.isSearchable&&(this.searchContainer=document.createElement("div"),this.searchContainer.className="fi-select-input-search-ctn",this.searchInput=document.createElement("input"),this.searchInput.className="fi-input",this.searchInput.type="text",this.searchInput.placeholder=this.searchPrompt,this.searchInput.setAttribute("aria-label","Search"),this.searchContainer.appendChild(this.searchInput),this.dropdown.appendChild(this.searchContainer),this.searchInput.addEventListener("input",t=>{this.isDisabled||this.handleSearch(t)}),this.searchInput.addEventListener("keydown",t=>{if(!this.isDisabled){if(t.key==="Tab"){t.preventDefault();let e=this.getVisibleOptions();if(e.length===0)return;t.shiftKey?this.selectedIndex=e.length-1:this.selectedIndex=0,e.forEach(i=>{i.classList.remove("fi-selected")}),e[this.selectedIndex].classList.add("fi-selected"),e[this.selectedIndex].focus()}else if(t.key==="ArrowDown"){if(t.preventDefault(),t.stopPropagation(),this.getVisibleOptions().length===0)return;this.selectedIndex=-1,this.searchInput.blur(),this.focusNextOption()}else if(t.key==="ArrowUp"){t.preventDefault(),t.stopPropagation();let e=this.getVisibleOptions();if(e.length===0)return;this.selectedIndex=e.length-1,this.searchInput.blur(),e[this.selectedIndex].classList.add("fi-selected"),e[this.selectedIndex].focus(),e[this.selectedIndex].id&&this.dropdown.setAttribute("aria-activedescendant",e[this.selectedIndex].id),this.scrollOptionIntoView(e[this.selectedIndex])}else if(t.key==="Enter"){if(t.preventDefault(),t.stopPropagation(),this.isSearching)return;let e=this.getVisibleOptions();if(e.length===0)return;let i=e.find(s=>{let r=s.getAttribute("aria-disabled")==="true",a=s.classList.contains("fi-disabled"),l=s.offsetParent===null;return!(r||a||l)});if(!i)return;let o=i.getAttribute("data-value");if(o===null)return;this.selectOption(o)}}})),this.optionsList=document.createElement("ul"),this.renderOptions(),this.container.appendChild(this.selectButton),this.container.appendChild(this.dropdown),this.element.appendChild(this.container),this.applyDisabledState()}renderOptions(){this.optionsList.innerHTML="";let t=0,e=this.options,i=0,o=!1;this.options.forEach(a=>{a.options&&Array.isArray(a.options)?(i+=a.options.length,o=!0):i++}),o?this.optionsList.className="fi-select-input-options-ctn":i>0&&(this.optionsList.className="fi-dropdown-list");let s=o?null:this.optionsList,r=0;for(let a of e){if(this.optionsLimit>0&&r>=this.optionsLimit)break;if(a.options&&Array.isArray(a.options)){let l=a.options;if(this.isMultiple&&Array.isArray(this.state)&&this.state.length>0&&(l=a.options.filter(c=>!this.state.includes(c.value))),l.length>0){if(this.optionsLimit>0){let c=this.optionsLimit-r;c{let a=this.createOptionElement(r.value,r);s.appendChild(a)}),i.appendChild(o),i.appendChild(s),this.optionsList.appendChild(i)}createOptionElement(t,e){let i=t,o=e,s=!1;typeof e=="object"&&e!==null&&"label"in e&&"value"in e&&(i=e.value,o=e.label,s=e.isDisabled||!1);let r=document.createElement("li");r.className="fi-dropdown-list-item fi-select-input-option",s&&r.classList.add("fi-disabled");let a=`fi-select-input-option-${Math.random().toString(36).substring(2,11)}`;if(r.id=a,r.setAttribute("role","option"),r.setAttribute("data-value",i),r.setAttribute("tabindex","0"),s&&r.setAttribute("aria-disabled","true"),this.isHtmlAllowed&&typeof o=="string"){let f=document.createElement("div");f.innerHTML=o;let d=f.textContent||f.innerText||o;r.setAttribute("aria-label",d)}let l=this.isMultiple?Array.isArray(this.state)&&this.state.includes(i):this.state===i;r.setAttribute("aria-selected",l?"true":"false"),l&&r.classList.add("fi-selected");let c=document.createElement("span");return this.isHtmlAllowed?c.innerHTML=o:c.textContent=o,r.appendChild(c),s||r.addEventListener("click",f=>{f.preventDefault(),f.stopPropagation(),this.selectOption(i),this.isMultiple&&(this.isSearchable&&this.searchInput?setTimeout(()=>{this.searchInput.focus()},0):setTimeout(()=>{r.focus()},0))}),r}async updateSelectedDisplay(){this.selectedDisplayVersion=this.selectedDisplayVersion+1;let t=this.selectedDisplayVersion,e=document.createDocumentFragment();if(this.isMultiple){if(!Array.isArray(this.state)||this.state.length===0){let o=document.createElement("span");o.textContent=this.placeholder,o.classList.add("fi-select-input-placeholder"),e.appendChild(o)}else{let o=await this.getLabelsForMultipleSelection();if(t!==this.selectedDisplayVersion)return;this.addBadgesForSelectedOptions(o,e)}t===this.selectedDisplayVersion&&(this.selectedDisplay.replaceChildren(e),this.isOpen&&this.deferPositionDropdown());return}if(this.state===null||this.state===""){let o=document.createElement("span");if(o.textContent=this.placeholder,o.classList.add("fi-select-input-placeholder"),e.appendChild(o),t===this.selectedDisplayVersion){this.selectedDisplay.replaceChildren(e);let s=this.container.querySelector(".fi-select-input-value-remove-btn");s&&s.remove(),this.container.classList.remove("fi-select-input-ctn-clearable")}return}let i=await this.getLabelForSingleSelection();t===this.selectedDisplayVersion&&(this.addSingleSelectionDisplay(i,e),t===this.selectedDisplayVersion&&this.selectedDisplay.replaceChildren(e))}async getLabelsForMultipleSelection(){let t=this.getSelectedOptionLabels(),e=[];if(Array.isArray(this.state)){for(let o of this.state)if(!P(this.labelRepository[o])){if(P(t[o])){this.labelRepository[o]=t[o];continue}e.push(o.toString())}}if(e.length>0&&P(this.initialOptionLabels)&&JSON.stringify(this.state)===JSON.stringify(this.initialState)){if(Array.isArray(this.initialOptionLabels))for(let o of this.initialOptionLabels)P(o)&&o.value!==void 0&&o.label!==void 0&&e.includes(o.value)&&(this.labelRepository[o.value]=o.label)}else if(e.length>0&&this.getOptionLabelsUsing)try{let o=await this.getOptionLabelsUsing();for(let s of o)P(s)&&s.value!==void 0&&s.label!==void 0&&(this.labelRepository[s.value]=s.label)}catch(o){console.error("Error fetching option labels:",o)}let i=[];if(Array.isArray(this.state))for(let o of this.state)P(this.labelRepository[o])?i.push(this.labelRepository[o]):P(t[o])?i.push(t[o]):i.push(o);return i}createBadgeElement(t,e){let i=document.createElement("span");i.className="fi-badge fi-size-md fi-color fi-color-primary fi-text-color-600 dark:fi-text-color-200",P(t)&&i.setAttribute("data-value",t);let o=document.createElement("span");o.className="fi-badge-label-ctn";let s=document.createElement("span");s.className="fi-badge-label",this.canOptionLabelsWrap&&s.classList.add("fi-wrapped"),this.isHtmlAllowed?s.innerHTML=e:s.textContent=e,o.appendChild(s),i.appendChild(o);let r=this.createRemoveButton(t,e);return i.appendChild(r),i}createRemoveButton(t,e){let i=document.createElement("button");return i.type="button",i.className="fi-badge-delete-btn",i.innerHTML='',i.setAttribute("aria-label","Remove "+(this.isHtmlAllowed?e.replace(/<[^>]*>/g,""):e)),i.addEventListener("click",o=>{o.stopPropagation(),P(t)&&this.selectOption(t)}),i.addEventListener("keydown",o=>{(o.key===" "||o.key==="Enter")&&(o.preventDefault(),o.stopPropagation(),P(t)&&this.selectOption(t))}),i}addBadgesForSelectedOptions(t,e=this.selectedDisplay){let i=document.createElement("div");i.className="fi-select-input-value-badges-ctn",t.forEach((o,s)=>{let r=Array.isArray(this.state)?this.state[s]:null,a=this.createBadgeElement(r,o);i.appendChild(a)}),e.appendChild(i),this.isReorderable&&(i.addEventListener("click",o=>{o.stopPropagation()}),i.addEventListener("mousedown",o=>{o.stopPropagation()}),new Ui(i,{animation:150,onEnd:()=>{let o=[];i.querySelectorAll("[data-value]").forEach(s=>{o.push(s.getAttribute("data-value"))}),this.state=o,this.onStateChange(this.state)}}))}async getLabelForSingleSelection(){let t=this.labelRepository[this.state];if(bt(t)&&(t=this.getSelectedOptionLabel(this.state)),bt(t)&&P(this.initialOptionLabel)&&this.state===this.initialState)t=this.initialOptionLabel,P(this.state)&&(this.labelRepository[this.state]=t);else if(bt(t)&&this.getOptionLabelUsing)try{t=await this.getOptionLabelUsing(),P(t)&&P(this.state)&&(this.labelRepository[this.state]=t)}catch(e){console.error("Error fetching option label:",e),t=this.state}else bt(t)&&(t=this.state);return t}addSingleSelectionDisplay(t,e=this.selectedDisplay){let i=document.createElement("span");if(i.className="fi-select-input-value-label",this.isHtmlAllowed?i.innerHTML=t:i.textContent=t,e.appendChild(i),!this.canSelectPlaceholder||this.container.querySelector(".fi-select-input-value-remove-btn"))return;let o=document.createElement("button");o.type="button",o.className="fi-select-input-value-remove-btn",o.innerHTML='',o.setAttribute("aria-label","Clear selection"),o.addEventListener("click",s=>{s.stopPropagation(),this.selectOption("")}),o.addEventListener("keydown",s=>{(s.key===" "||s.key==="Enter")&&(s.preventDefault(),s.stopPropagation(),this.selectOption(""))}),this.container.appendChild(o),this.container.classList.add("fi-select-input-ctn-clearable")}getSelectedOptionLabel(t){if(P(this.labelRepository[t]))return this.labelRepository[t];let e="";for(let i of this.options)if(i.options&&Array.isArray(i.options)){for(let o of i.options)if(o.value===t){e=o.label,this.labelRepository[t]=e;break}}else if(i.value===t){e=i.label,this.labelRepository[t]=e;break}return e}setUpEventListeners(){this.buttonClickListener=()=>{this.toggleDropdown()},this.documentClickListener=t=>{!this.container.contains(t.target)&&this.isOpen&&this.closeDropdown()},this.buttonKeydownListener=t=>{this.isDisabled||this.handleSelectButtonKeydown(t)},this.dropdownKeydownListener=t=>{this.isDisabled||this.isSearchable&&document.activeElement===this.searchInput&&!["Tab","Escape"].includes(t.key)||this.handleDropdownKeydown(t)},this.selectButton.addEventListener("click",this.buttonClickListener),document.addEventListener("click",this.documentClickListener),this.selectButton.addEventListener("keydown",this.buttonKeydownListener),this.dropdown.addEventListener("keydown",this.dropdownKeydownListener),!this.isMultiple&&this.livewireId&&this.statePath&&this.getOptionLabelUsing&&(this.refreshOptionLabelListener=async t=>{if(t.detail.livewireId===this.livewireId&&t.detail.statePath===this.statePath&&P(this.state))try{delete this.labelRepository[this.state];let e=await this.getOptionLabelUsing();P(e)&&(this.labelRepository[this.state]=e);let i=this.selectedDisplay.querySelector(".fi-select-input-value-label");P(i)&&(this.isHtmlAllowed?i.innerHTML=e:i.textContent=e),this.updateOptionLabelInList(this.state,e)}catch(e){console.error("Error refreshing option label:",e)}},window.addEventListener("filament-forms::select.refreshSelectedOptionLabel",this.refreshOptionLabelListener))}updateOptionLabelInList(t,e){this.labelRepository[t]=e;let i=this.getVisibleOptions();for(let o of i)if(o.getAttribute("data-value")===String(t)){if(o.innerHTML="",this.isHtmlAllowed){let s=document.createElement("span");s.innerHTML=e,o.appendChild(s)}else o.appendChild(document.createTextNode(e));break}for(let o of this.options)if(o.options&&Array.isArray(o.options)){for(let s of o.options)if(s.value===t){s.label=e;break}}else if(o.value===t){o.label=e;break}for(let o of this.originalOptions)if(o.options&&Array.isArray(o.options)){for(let s of o.options)if(s.value===t){s.label=e;break}}else if(o.value===t){o.label=e;break}}handleSelectButtonKeydown(t){switch(t.key){case"ArrowDown":t.preventDefault(),t.stopPropagation(),this.isOpen?this.focusNextOption():this.openDropdown();break;case"ArrowUp":t.preventDefault(),t.stopPropagation(),this.isOpen?this.focusPreviousOption():this.openDropdown();break;case" ":if(t.preventDefault(),this.isOpen){if(this.selectedIndex>=0){let e=this.getVisibleOptions()[this.selectedIndex];e&&e.click()}}else this.openDropdown();break;case"Enter":break;case"Escape":this.isOpen&&(t.preventDefault(),this.closeDropdown());break;case"Tab":this.isOpen&&this.closeDropdown();break;default:if(this.isSearchable&&!t.ctrlKey&&!t.metaKey&&!t.altKey&&typeof t.key=="string"&&t.key.length===1){t.preventDefault();let e=t.key;this.isOpen||this.openDropdown(),this.searchInput&&(this.searchInput.focus(),this.searchInput.value=(this.searchInput.value||"")+e,this.searchInput.dispatchEvent(new Event("input",{bubbles:!0})))}break}}handleDropdownKeydown(t){switch(t.key){case"ArrowDown":t.preventDefault(),t.stopPropagation(),this.focusNextOption();break;case"ArrowUp":t.preventDefault(),t.stopPropagation(),this.focusPreviousOption();break;case" ":if(t.preventDefault(),this.selectedIndex>=0){let e=this.getVisibleOptions()[this.selectedIndex];e&&e.click()}break;case"Enter":if(t.preventDefault(),this.selectedIndex>=0){let e=this.getVisibleOptions()[this.selectedIndex];e&&e.click()}else{let e=this.element.closest("form");e&&e.submit()}break;case"Escape":t.preventDefault(),this.closeDropdown(),this.selectButton.focus();break;case"Tab":this.closeDropdown();break;default:if(this.isSearchable&&!t.ctrlKey&&!t.metaKey&&!t.altKey&&typeof t.key=="string"&&t.key.length===1){t.preventDefault();let e=t.key;this.searchInput&&(this.searchInput.focus(),this.searchInput.value=(this.searchInput.value||"")+e,this.searchInput.dispatchEvent(new Event("input",{bubbles:!0})))}break}}toggleDropdown(){if(!this.isDisabled){if(this.isOpen){this.closeDropdown();return}this.isMultiple&&!this.isSearchable&&!this.hasAvailableOptions()||this.openDropdown()}}hasAvailableOptions(){for(let t of this.options)if(t.options&&Array.isArray(t.options)){for(let e of t.options)if(!Array.isArray(this.state)||!this.state.includes(e.value))return!0}else if(!Array.isArray(this.state)||!this.state.includes(t.value))return!0;return!1}async openDropdown(){this.dropdown.style.display="block",this.dropdown.style.opacity="0";let t=this.selectButton.closest(".fi-fixed-positioning-context")!==null&&this.selectButton.closest(".fi-absolute-positioning-context")===null;if(this.dropdown.style.position=t?"fixed":"absolute",this.dropdown.style.width=`${this.selectButton.offsetWidth}px`,this.selectButton.setAttribute("aria-expanded","true"),this.isOpen=!0,this.positionDropdown(),this.resizeListener||(this.resizeListener=()=>{this.dropdown.style.width=`${this.selectButton.offsetWidth}px`,this.positionDropdown()},window.addEventListener("resize",this.resizeListener)),this.scrollListener||(this.scrollListener=()=>this.positionDropdown(),window.addEventListener("scroll",this.scrollListener,!0)),this.dropdown.style.opacity="1",this.isSearchable&&this.searchInput&&(this.searchInput.value="",this.searchQuery="",this.hasDynamicOptions||(this.options=JSON.parse(JSON.stringify(this.originalOptions)),this.renderOptions())),this.hasDynamicOptions&&this.getOptionsUsing){this.showLoadingState(!1);try{let e=await this.getOptionsUsing(),i=Array.isArray(e)?e:e&&Array.isArray(e.options)?e.options:[];if(this.options=i,this.originalOptions=JSON.parse(JSON.stringify(i)),this.populateLabelRepositoryFromOptions(i),this.isSearchable&&this.searchInput&&(this.searchInput.value&&this.searchInput.value.trim()!==""||this.searchQuery&&this.searchQuery.trim()!=="")){let o=(this.searchInput.value||this.searchQuery||"").trim().toLowerCase();this.hideLoadingState(),this.filterOptions(o)}else this.renderOptions()}catch(e){console.error("Error fetching options:",e),this.hideLoadingState()}}else(!this.hasInitialNoOptionsMessage||this.searchQuery)&&this.hideLoadingState();if(this.isSearchable&&this.searchInput)this.searchInput.focus();else{this.selectedIndex=-1;let e=this.getVisibleOptions();if(this.isMultiple){if(Array.isArray(this.state)&&this.state.length>0){for(let i=0;i0&&(this.selectedIndex=0),this.selectedIndex>=0&&(e[this.selectedIndex].classList.add("fi-selected"),e[this.selectedIndex].focus())}}positionDropdown(){let t=this.position==="top"?"top-start":"bottom-start",e=[wi(4),Si({padding:5})];this.position!=="top"&&this.position!=="bottom"&&e.push(xi());let i=this.selectButton.closest(".fi-fixed-positioning-context")!==null&&this.selectButton.closest(".fi-absolute-positioning-context")===null;Oi(this.selectButton,this.dropdown,{placement:t,middleware:e,strategy:i?"fixed":"absolute"}).then(({x:o,y:s})=>{Object.assign(this.dropdown.style,{left:`${o}px`,top:`${s}px`})})}deferPositionDropdown(){this.isOpen&&(this.positioningRequestAnimationFrame&&(cancelAnimationFrame(this.positioningRequestAnimationFrame),this.positioningRequestAnimationFrame=null),this.positioningRequestAnimationFrame=requestAnimationFrame(()=>{this.positionDropdown(),this.positioningRequestAnimationFrame=null}))}closeDropdown(){this.dropdown.style.display="none",this.selectButton.setAttribute("aria-expanded","false"),this.isOpen=!1,this.searchTimeout&&(clearTimeout(this.searchTimeout),this.searchTimeout=null),this.activeSearchId++,this.isSearching=!1,this.hideLoadingState(),this.resizeListener&&(window.removeEventListener("resize",this.resizeListener),this.resizeListener=null),this.scrollListener&&(window.removeEventListener("scroll",this.scrollListener,!0),this.scrollListener=null),this.getVisibleOptions().forEach(e=>{e.classList.remove("fi-selected")}),this.dropdown.removeAttribute("aria-activedescendant")}focusNextOption(){let t=this.getVisibleOptions();if(t.length!==0){if(this.selectedIndex>=0&&this.selectedIndex=0&&this.selectedIndexe.bottom?this.dropdown.scrollTop+=i.bottom-e.bottom:i.top li[role="option"]')):t=Array.from(this.optionsList.querySelectorAll(':scope > ul.fi-dropdown-list > li[role="option"]'));let e=Array.from(this.optionsList.querySelectorAll('li.fi-select-input-option-group > ul > li[role="option"]'));return[...t,...e]}getSelectedOptionLabels(){if(!Array.isArray(this.state)||this.state.length===0)return{};let t={};for(let e of this.state){let i=!1;for(let o of this.options)if(o.options&&Array.isArray(o.options)){for(let s of o.options)if(s.value===e){t[e]=s.label,i=!0;break}if(i)break}else if(o.value===e){t[e]=o.label,i=!0;break}}return t}handleSearch(t){let e=t.target.value.trim();if(this.searchQuery=e,this.searchTimeout&&clearTimeout(this.searchTimeout),e===""){this.options=JSON.parse(JSON.stringify(this.originalOptions)),this.renderOptions();return}if(!this.getSearchResultsUsing||typeof this.getSearchResultsUsing!="function"||!this.hasDynamicSearchResults){this.filterOptions(e);return}this.searchTimeout=setTimeout(async()=>{this.searchTimeout=null;let i=++this.activeSearchId;this.isSearching=!0;try{this.showLoadingState(!0);let o=await this.getSearchResultsUsing(e);if(i!==this.activeSearchId||!this.isOpen)return;let s=Array.isArray(o)?o:o&&Array.isArray(o.options)?o.options:[];this.options=s,this.populateLabelRepositoryFromOptions(s),this.hideLoadingState(),this.renderOptions(),this.isOpen&&this.deferPositionDropdown(),this.options.length===0&&this.showNoResultsMessage()}catch(o){i===this.activeSearchId&&(console.error("Error fetching search results:",o),this.hideLoadingState(),this.options=JSON.parse(JSON.stringify(this.originalOptions)),this.renderOptions())}finally{i===this.activeSearchId&&(this.isSearching=!1)}},this.searchDebounce)}showLoadingState(t=!1){this.optionsList.parentNode===this.dropdown&&this.dropdown.removeChild(this.optionsList),this.hideLoadingState();let e=document.createElement("div");e.className="fi-select-input-message",e.textContent=t?this.searchingMessage:this.loadingMessage,this.dropdown.appendChild(e),this.isOpen&&this.deferPositionDropdown()}hideLoadingState(){let t=this.dropdown.querySelector(".fi-select-input-message");t&&t.remove()}showNoOptionsMessage(){this.optionsList.parentNode===this.dropdown&&this.dropdown.removeChild(this.optionsList),this.hideLoadingState();let t=document.createElement("div");t.className="fi-select-input-message",t.textContent=this.noOptionsMessage,this.dropdown.appendChild(t),this.isOpen&&this.deferPositionDropdown()}showNoResultsMessage(){this.optionsList.parentNode===this.dropdown&&this.dropdown.removeChild(this.optionsList),this.hideLoadingState();let t=document.createElement("div");t.className="fi-select-input-message",t.textContent=this.noSearchResultsMessage,this.dropdown.appendChild(t),this.isOpen&&this.deferPositionDropdown()}filterOptions(t){let e=this.searchableOptionFields.includes("label"),i=this.searchableOptionFields.includes("value");t=t.toLowerCase();let o=[];for(let s of this.originalOptions)if(s.options&&Array.isArray(s.options)){let r=s.options.filter(a=>e&&a.label.toLowerCase().includes(t)||i&&String(a.value).toLowerCase().includes(t));r.length>0&&o.push({label:s.label,options:r})}else(e&&s.label.toLowerCase().includes(t)||i&&String(s.value).toLowerCase().includes(t))&&o.push(s);this.options=o,this.renderOptions(),this.options.length===0&&this.showNoResultsMessage(),this.isOpen&&this.positionDropdown()}selectOption(t){if(this.isDisabled)return;if(!this.isMultiple){this.state=t,this.updateSelectedDisplay(),this.renderOptions(),this.closeDropdown(),this.selectButton.focus(),this.onStateChange(this.state);return}let e=Array.isArray(this.state)?[...this.state]:[];if(e.includes(t)){let o=this.selectedDisplay.querySelector(`[data-value="${t}"]`);if(P(o)){let s=o.parentElement;P(s)&&s.children.length===1?(e=e.filter(r=>r!==t),this.state=e,this.updateSelectedDisplay()):(o.remove(),e=e.filter(r=>r!==t),this.state=e)}else e=e.filter(s=>s!==t),this.state=e,this.updateSelectedDisplay();this.renderOptions(),this.isOpen&&this.deferPositionDropdown(),this.maintainFocusInMultipleMode(),this.onStateChange(this.state);return}if(this.maxItems&&e.length>=this.maxItems){this.maxItemsMessage&&alert(this.maxItemsMessage);return}e.push(t),this.state=e;let i=this.selectedDisplay.querySelector(".fi-select-input-value-badges-ctn");bt(i)?this.updateSelectedDisplay():this.addSingleBadge(t,i),this.renderOptions(),this.isOpen&&this.deferPositionDropdown(),this.maintainFocusInMultipleMode(),this.onStateChange(this.state)}async addSingleBadge(t,e){let i=this.labelRepository[t];if(bt(i)&&(i=this.getSelectedOptionLabel(t),P(i)&&(this.labelRepository[t]=i)),bt(i)&&this.getOptionLabelsUsing)try{let s=await this.getOptionLabelsUsing();for(let r of s)if(P(r)&&r.value===t&&r.label!==void 0){i=r.label,this.labelRepository[t]=i;break}}catch(s){console.error("Error fetching option label:",s)}bt(i)&&(i=t);let o=this.createBadgeElement(t,i);e.appendChild(o)}maintainFocusInMultipleMode(){if(this.isSearchable&&this.searchInput){this.searchInput.focus();return}let t=this.getVisibleOptions();if(t.length!==0){if(this.selectedIndex=-1,Array.isArray(this.state)&&this.state.length>0){for(let e=0;e{e.setAttribute("disabled","disabled"),e.classList.add("fi-disabled")}),!this.isMultiple&&this.canSelectPlaceholder){let t=this.container.querySelector(".fi-select-input-value-remove-btn");t&&(t.setAttribute("disabled","disabled"),t.classList.add("fi-disabled"))}this.isSearchable&&this.searchInput&&(this.searchInput.setAttribute("disabled","disabled"),this.searchInput.classList.add("fi-disabled"))}else{if(this.selectButton.removeAttribute("disabled"),this.selectButton.removeAttribute("aria-disabled"),this.selectButton.classList.remove("fi-disabled"),this.isMultiple&&this.container.querySelectorAll(".fi-select-input-badge-remove").forEach(e=>{e.removeAttribute("disabled"),e.classList.remove("fi-disabled")}),!this.isMultiple&&this.canSelectPlaceholder){let t=this.container.querySelector(".fi-select-input-value-remove-btn");t&&(t.removeAttribute("disabled"),t.classList.add("fi-disabled"))}this.isSearchable&&this.searchInput&&(this.searchInput.removeAttribute("disabled"),this.searchInput.classList.remove("fi-disabled"))}}destroy(){this.selectButton&&this.buttonClickListener&&this.selectButton.removeEventListener("click",this.buttonClickListener),this.documentClickListener&&document.removeEventListener("click",this.documentClickListener),this.selectButton&&this.buttonKeydownListener&&this.selectButton.removeEventListener("keydown",this.buttonKeydownListener),this.dropdown&&this.dropdownKeydownListener&&this.dropdown.removeEventListener("keydown",this.dropdownKeydownListener),this.resizeListener&&(window.removeEventListener("resize",this.resizeListener),this.resizeListener=null),this.scrollListener&&(window.removeEventListener("scroll",this.scrollListener,!0),this.scrollListener=null),this.refreshOptionLabelListener&&window.removeEventListener("filament-forms::select.refreshSelectedOptionLabel",this.refreshOptionLabelListener),this.isOpen&&this.closeDropdown(),this.searchTimeout&&(clearTimeout(this.searchTimeout),this.searchTimeout=null),this.container&&this.container.remove()}};function Qn({canOptionLabelsWrap:n,canSelectPlaceholder:t,getOptionLabelUsing:e,getOptionLabelsUsing:i,getOptionsUsing:o,getSearchResultsUsing:s,hasDynamicOptions:r,hasDynamicSearchResults:a,hasInitialNoOptionsMessage:l,initialOptionLabel:c,initialOptionLabels:f,initialState:d,isAutofocused:p,isDisabled:u,isHtmlAllowed:g,isMultiple:m,isReorderable:S,isSearchable:E,livewireId:w,loadingMessage:D,maxItems:A,maxItemsMessage:C,noOptionsMessage:F,noSearchResultsMessage:q,options:J,optionsLimit:_,placeholder:V,position:W,searchDebounce:tt,searchingMessage:z,searchPrompt:k,searchableOptionFields:Y,state:B,statePath:X}){return{select:null,state:B,init(){this.select=new Ee({canOptionLabelsWrap:n,canSelectPlaceholder:t,element:this.$refs.select,getOptionLabelUsing:e,getOptionLabelsUsing:i,getOptionsUsing:o,getSearchResultsUsing:s,hasDynamicOptions:r,hasDynamicSearchResults:a,hasInitialNoOptionsMessage:l,initialOptionLabel:c,initialOptionLabels:f,initialState:d,isAutofocused:p,isDisabled:u,isHtmlAllowed:g,isMultiple:m,isReorderable:S,isSearchable:E,livewireId:w,loadingMessage:D,maxItems:A,maxItemsMessage:C,noOptionsMessage:F,noSearchResultsMessage:q,onStateChange:L=>{this.state=L},options:J,optionsLimit:_,placeholder:V,position:W,searchableOptionFields:Y,searchDebounce:tt,searchingMessage:z,searchPrompt:k,state:this.state,statePath:X}),this.$watch("state",L=>{this.$nextTick(()=>{this.select&&this.select.state!==L&&(this.select.state=L,this.select.updateSelectedDisplay(),this.select.renderOptions())})})},destroy(){this.select&&(this.select.destroy(),this.select=null)}}}export{Qn as default}; +/*! Bundled license information: + +sortablejs/modular/sortable.esm.js: + (**! + * Sortable 1.15.6 + * @author RubaXa + * @author owenm + * @license MIT + *) +*/ diff --git a/public/js/filament/forms/components/slider.js b/public/js/filament/forms/components/slider.js new file mode 100644 index 0000000..c79171c --- /dev/null +++ b/public/js/filament/forms/components/slider.js @@ -0,0 +1 @@ +var I;(function(r){r.Range="range",r.Steps="steps",r.Positions="positions",r.Count="count",r.Values="values"})(I||(I={}));var O;(function(r){r[r.None=-1]="None",r[r.NoValue=0]="NoValue",r[r.LargeValue=1]="LargeValue",r[r.SmallValue=2]="SmallValue"})(O||(O={}));function we(r){return rt(r)&&typeof r.from=="function"}function rt(r){return typeof r=="object"&&typeof r.to=="function"}function zt(r){r.parentElement.removeChild(r)}function St(r){return r!=null}function Ft(r){r.preventDefault()}function Ce(r){return r.filter(function(t){return this[t]?!1:this[t]=!0},{})}function Ee(r,t){return Math.round(r/t)*t}function Ae(r,t){var s=r.getBoundingClientRect(),f=r.ownerDocument,u=f.documentElement,d=Bt(f);return/webkit.*Chrome.*Mobile/i.test(navigator.userAgent)&&(d.x=0),t?s.top+d.y-u.clientTop:s.left+d.x-u.clientLeft}function R(r){return typeof r=="number"&&!isNaN(r)&&isFinite(r)}function Rt(r,t,s){s>0&&(L(r,t),setTimeout(function(){et(r,t)},s))}function jt(r){return Math.max(Math.min(r,100),0)}function it(r){return Array.isArray(r)?r:[r]}function Pe(r){r=String(r);var t=r.split(".");return t.length>1?t[1].length:0}function L(r,t){r.classList&&!/\s/.test(t)?r.classList.add(t):r.className+=" "+t}function et(r,t){r.classList&&!/\s/.test(t)?r.classList.remove(t):r.className=r.className.replace(new RegExp("(^|\\b)"+t.split(" ").join("|")+"(\\b|$)","gi")," ")}function Ve(r,t){return r.classList?r.classList.contains(t):new RegExp("\\b"+t+"\\b").test(r.className)}function Bt(r){var t=window.pageXOffset!==void 0,s=(r.compatMode||"")==="CSS1Compat",f=t?window.pageXOffset:s?r.documentElement.scrollLeft:r.body.scrollLeft,u=t?window.pageYOffset:s?r.documentElement.scrollTop:r.body.scrollTop;return{x:f,y:u}}function De(){return window.navigator.pointerEnabled?{start:"pointerdown",move:"pointermove",end:"pointerup"}:window.navigator.msPointerEnabled?{start:"MSPointerDown",move:"MSPointerMove",end:"MSPointerUp"}:{start:"mousedown touchstart",move:"mousemove touchmove",end:"mouseup touchend"}}function ye(){var r=!1;try{var t=Object.defineProperty({},"passive",{get:function(){r=!0}});window.addEventListener("test",null,t)}catch{}return r}function ke(){return window.CSS&&CSS.supports&&CSS.supports("touch-action","none")}function bt(r,t){return 100/(t-r)}function xt(r,t,s){return t*100/(r[s+1]-r[s])}function Ue(r,t){return xt(r,r[0]<0?t+Math.abs(r[0]):t-r[0],0)}function Me(r,t){return t*(r[1]-r[0])/100+r[0]}function G(r,t){for(var s=1;r>=t[s];)s+=1;return s}function _e(r,t,s){if(s>=r.slice(-1)[0])return 100;var f=G(s,r),u=r[f-1],d=r[f],v=t[f-1],w=t[f];return v+Ue([u,d],s)/bt(v,w)}function Le(r,t,s){if(s>=100)return r.slice(-1)[0];var f=G(s,t),u=r[f-1],d=r[f],v=t[f-1],w=t[f];return Me([u,d],(s-v)*bt(v,w))}function Oe(r,t,s,f){if(f===100)return f;var u=G(f,r),d=r[u-1],v=r[u];return s?f-d>(v-d)/2?v:d:t[u-1]?r[u-1]+Ee(f-r[u-1],t[u-1]):f}var Kt=(function(){function r(t,s,f){this.xPct=[],this.xVal=[],this.xSteps=[],this.xNumSteps=[],this.xHighestCompleteStep=[],this.xSteps=[f||!1],this.xNumSteps=[!1],this.snap=s;var u,d=[];for(Object.keys(t).forEach(function(v){d.push([it(t[v]),v])}),d.sort(function(v,w){return v[0][0]-w[0][0]}),u=0;uthis.xPct[u+1];)u++;else t===this.xPct[this.xPct.length-1]&&(u=this.xPct.length-2);!f&&t===this.xPct[u+1]&&u++,s===null&&(s=[]);var d,v=1,w=s[u],C=0,p=0,D=0,y=0;for(f?d=(t-this.xPct[u])/(this.xPct[u+1]-this.xPct[u]):d=(this.xPct[u+1]-t)/(this.xPct[u+1]-this.xPct[u]);w>0;)C=this.xPct[u+1+y]-this.xPct[u+y],s[u+y]*v+100-d*100>100?(p=C*d,v=(w-100*d)/s[u+y],d=1):(p=s[u+y]*C/100*v,v=0),f?(D=D-p,this.xPct.length+y>=1&&y--):(D=D+p,this.xPct.length-y>=1&&y++),w=s[u+y]*v;return t+D},r.prototype.toStepping=function(t){return t=_e(this.xVal,this.xPct,t),t},r.prototype.fromStepping=function(t){return Le(this.xVal,this.xPct,t)},r.prototype.getStep=function(t){return t=Oe(this.xPct,this.xSteps,this.snap,t),t},r.prototype.getDefaultStep=function(t,s,f){var u=G(t,this.xPct);return(t===100||s&&t===this.xPct[u-1])&&(u=Math.max(u-1,1)),(this.xVal[u]-this.xVal[u-1])/f},r.prototype.getNearbySteps=function(t){var s=G(t,this.xPct);return{stepBefore:{startValue:this.xVal[s-2],step:this.xNumSteps[s-2],highestStep:this.xHighestCompleteStep[s-2]},thisStep:{startValue:this.xVal[s-1],step:this.xNumSteps[s-1],highestStep:this.xHighestCompleteStep[s-1]},stepAfter:{startValue:this.xVal[s],step:this.xNumSteps[s],highestStep:this.xHighestCompleteStep[s]}}},r.prototype.countStepDecimals=function(){var t=this.xNumSteps.map(Pe);return Math.max.apply(null,t)},r.prototype.hasNoSize=function(){return this.xVal[0]===this.xVal[this.xVal.length-1]},r.prototype.convert=function(t){return this.getStep(this.toStepping(t))},r.prototype.handleEntryPoint=function(t,s){var f;if(t==="min"?f=0:t==="max"?f=100:f=parseFloat(t),!R(f)||!R(s[0]))throw new Error("noUiSlider: 'range' value isn't numeric.");this.xPct.push(f),this.xVal.push(s[0]);var u=Number(s[1]);f?this.xSteps.push(isNaN(u)?!1:u):isNaN(u)||(this.xSteps[0]=u),this.xHighestCompleteStep.push(0)},r.prototype.handleStepPoint=function(t,s){if(s){if(this.xVal[t]===this.xVal[t+1]){this.xSteps[t]=this.xHighestCompleteStep[t]=this.xVal[t];return}this.xSteps[t]=xt([this.xVal[t],this.xVal[t+1]],s,0)/bt(this.xPct[t],this.xPct[t+1]);var f=(this.xVal[t+1]-this.xVal[t])/this.xNumSteps[t],u=Math.ceil(Number(f.toFixed(3))-1),d=this.xVal[t]+this.xNumSteps[t]*u;this.xHighestCompleteStep[t]=d}},r})(),Nt={to:function(r){return r===void 0?"":r.toFixed(2)},from:Number},It={target:"target",base:"base",origin:"origin",handle:"handle",handleLower:"handle-lower",handleUpper:"handle-upper",touchArea:"touch-area",horizontal:"horizontal",vertical:"vertical",background:"background",connect:"connect",connects:"connects",ltr:"ltr",rtl:"rtl",textDirectionLtr:"txt-dir-ltr",textDirectionRtl:"txt-dir-rtl",draggable:"draggable",drag:"state-drag",tap:"state-tap",active:"active",tooltip:"tooltip",pips:"pips",pipsHorizontal:"pips-horizontal",pipsVertical:"pips-vertical",marker:"marker",markerHorizontal:"marker-horizontal",markerVertical:"marker-vertical",markerNormal:"marker-normal",markerLarge:"marker-large",markerSub:"marker-sub",value:"value",valueHorizontal:"value-horizontal",valueVertical:"value-vertical",valueNormal:"value-normal",valueLarge:"value-large",valueSub:"value-sub"},K={tooltips:".__tooltips",aria:".__aria"};function He(r,t){if(!R(t))throw new Error("noUiSlider: 'step' is not numeric.");r.singleStep=t}function ze(r,t){if(!R(t))throw new Error("noUiSlider: 'keyboardPageMultiplier' is not numeric.");r.keyboardPageMultiplier=t}function Fe(r,t){if(!R(t))throw new Error("noUiSlider: 'keyboardMultiplier' is not numeric.");r.keyboardMultiplier=t}function Re(r,t){if(!R(t))throw new Error("noUiSlider: 'keyboardDefaultStep' is not numeric.");r.keyboardDefaultStep=t}function je(r,t){if(typeof t!="object"||Array.isArray(t))throw new Error("noUiSlider: 'range' is not an object.");if(t.min===void 0||t.max===void 0)throw new Error("noUiSlider: Missing 'min' or 'max' in 'range'.");r.spectrum=new Kt(t,r.snap||!1,r.singleStep)}function Ne(r,t){if(t=it(t),!Array.isArray(t)||!t.length)throw new Error("noUiSlider: 'start' option is incorrect.");r.handles=t.length,r.start=t}function Be(r,t){if(typeof t!="boolean")throw new Error("noUiSlider: 'snap' option must be a boolean.");r.snap=t}function Ke(r,t){if(typeof t!="boolean")throw new Error("noUiSlider: 'animate' option must be a boolean.");r.animate=t}function Ie(r,t){if(typeof t!="number")throw new Error("noUiSlider: 'animationDuration' option must be a number.");r.animationDuration=t}function qt(r,t){var s=[!1],f;if(t==="lower"?t=[!0,!1]:t==="upper"&&(t=[!1,!0]),t===!0||t===!1){for(f=1;f1)throw new Error("noUiSlider: 'padding' option must not exceed 100% of the range.")}}function Ye(r,t){switch(t){case"ltr":r.dir=0;break;case"rtl":r.dir=1;break;default:throw new Error("noUiSlider: 'direction' option was not recognized.")}}function We(r,t){if(typeof t!="string")throw new Error("noUiSlider: 'behaviour' must be a string containing options.");var s=t.indexOf("tap")>=0,f=t.indexOf("drag")>=0,u=t.indexOf("fixed")>=0,d=t.indexOf("snap")>=0,v=t.indexOf("hover")>=0,w=t.indexOf("unconstrained")>=0,C=t.indexOf("invert-connects")>=0,p=t.indexOf("drag-all")>=0,D=t.indexOf("smooth-steps")>=0;if(u){if(r.handles!==2)throw new Error("noUiSlider: 'fixed' behaviour must be used with 2 handles");Tt(r,r.start[1]-r.start[0])}if(C&&r.handles!==2)throw new Error("noUiSlider: 'invert-connects' behaviour must be used with 2 handles");if(w&&(r.margin||r.limit))throw new Error("noUiSlider: 'unconstrained' behaviour cannot be used with margin or limit");r.events={tap:s||d,drag:f,dragAll:p,smoothSteps:D,fixed:u,snap:d,hover:v,unconstrained:w,invertConnects:C}}function $e(r,t){if(t!==!1)if(t===!0||rt(t)){r.tooltips=[];for(var s=0;s= 2) required for mode 'count'.");for(var i=e.values-1,a=100/i,n=[];i--;)n[i]=i*a;return n.push(100),Et(n,e.stepped)}return e.mode===I.Positions?Et(e.values,e.stepped):e.mode===I.Values?e.stepped?e.values.map(function(o){return m.fromStepping(m.getStep(m.toStepping(o)))}):e.values:[]}function Et(e,i){return e.map(function(a){return m.fromStepping(i?m.getStep(a):a)})}function ie(e){function i(x,E){return Number((x+E).toFixed(7))}var a=re(e),n={},o=m.xVal[0],l=m.xVal[m.xVal.length-1],h=!1,c=!1,S=0;return a=Ce(a.slice().sort(function(x,E){return x-E})),a[0]!==o&&(a.unshift(o),h=!0),a[a.length-1]!==l&&(a.push(l),c=!0),a.forEach(function(x,E){var A,g,V,_=x,k=a[E+1],U,dt,pt,mt,Lt,gt,Ot,Ht=e.mode===I.Steps;for(Ht&&(A=m.xNumSteps[E]),A||(A=k-_),k===void 0&&(k=_),A=Math.max(A,1e-7),g=_;g<=k;g=i(g,A)){for(U=m.toStepping(g),dt=U-S,Lt=dt/(e.density||1),gt=Math.round(Lt),Ot=dt/gt,V=1;V<=gt;V+=1)pt=S+V*Ot,n[pt.toFixed(5)]=[m.fromStepping(pt),0];mt=a.indexOf(g)>-1?O.LargeValue:Ht?O.SmallValue:O.NoValue,!E&&h&&g!==k&&(mt=0),g===k&&c||(n[U.toFixed(5)]=[g,mt]),S=U}}),n}function ae(e,i,a){var n,o,l=B.createElement("div"),h=(n={},n[O.None]="",n[O.NoValue]=t.cssClasses.valueNormal,n[O.LargeValue]=t.cssClasses.valueLarge,n[O.SmallValue]=t.cssClasses.valueSub,n),c=(o={},o[O.None]="",o[O.NoValue]=t.cssClasses.markerNormal,o[O.LargeValue]=t.cssClasses.markerLarge,o[O.SmallValue]=t.cssClasses.markerSub,o),S=[t.cssClasses.valueHorizontal,t.cssClasses.valueVertical],x=[t.cssClasses.markerHorizontal,t.cssClasses.markerVertical];L(l,t.cssClasses.pips),L(l,t.ort===0?t.cssClasses.pipsHorizontal:t.cssClasses.pipsVertical);function E(g,V){var _=V===t.cssClasses.value,k=_?S:x,U=_?h:c;return V+" "+k[t.ort]+" "+U[g]}function A(g,V,_){if(_=i?i(V,_):_,_!==O.None){var k=N(l,!1);k.className=E(_,t.cssClasses.marker),k.style[t.style]=g+"%",_>O.NoValue&&(k=N(l,!1),k.className=E(_,t.cssClasses.value),k.setAttribute("data-value",String(V)),k.style[t.style]=g+"%",k.innerHTML=String(a.to(V)))}}return Object.keys(e).forEach(function(g){A(g,e[g][0],e[g][1])}),l}function ot(){y&&(zt(y),y=null)}function lt(e){ot();var i=ie(e),a=e.filter,n=e.format||{to:function(o){return String(Math.round(o))}};return y=v.appendChild(ae(i,a,n)),y}function At(){var e=w.getBoundingClientRect(),i="offset"+["Width","Height"][t.ort];return t.ort===0?e.width||w[i]:e.height||w[i]}function T(e,i,a,n){var o=function(h){var c=ne(h,n.pageOffset,n.target||i);if(!c||wt()&&!n.doNotReject||Ve(v,t.cssClasses.tap)&&!n.doNotReject||e===f.start&&c.buttons!==void 0&&c.buttons>1||n.hover&&c.buttons)return!1;d||c.preventDefault(),c.calcPoint=c.points[t.ort],a(c,n)},l=[];return e.split(" ").forEach(function(h){i.addEventListener(h,o,d?{passive:!0}:!1),l.push([h,o])}),l}function ne(e,i,a){var n=e.type.indexOf("touch")===0,o=e.type.indexOf("mouse")===0,l=e.type.indexOf("pointer")===0,h=0,c=0;if(e.type.indexOf("MSPointer")===0&&(l=!0),e.type==="mousedown"&&!e.buttons&&!e.touches)return!1;if(n){var S=function(A){var g=A.target;return g===a||a.contains(g)||e.composed&&e.composedPath().shift()===a};if(e.type==="touchstart"){var x=Array.prototype.filter.call(e.touches,S);if(x.length>1)return!1;h=x[0].pageX,c=x[0].pageY}else{var E=Array.prototype.find.call(e.changedTouches,S);if(!E)return!1;h=E.pageX,c=E.pageY}}return i=i||Bt(B),(o||l)&&(h=e.clientX+i.x,c=e.clientY+i.y),e.pageOffset=i,e.points=[h,c],e.cursor=o||l,e}function Pt(e){var i=e-Ae(w,t.ort),a=i*100/At();return a=jt(a),t.dir?100-a:a}function se(e){var i=100,a=!1;return p.forEach(function(n,o){if(!nt(o)){var l=b[o],h=Math.abs(l-e),c=h===100&&i===100,S=hl;(S||x||c)&&(a=o,i=h)}}),a}function oe(e,i){e.type==="mouseout"&&e.target.nodeName==="HTML"&&e.relatedTarget===null&&ft(e,i)}function le(e,i){if(navigator.appVersion.indexOf("MSIE 9")===-1&&e.buttons===0&&i.buttonsProperty!==0)return ft(e,i);var a=(t.dir?-1:1)*(e.calcPoint-i.startCalcPoint),n=a*100/i.baseSize;Dt(a>0,n,i.locations,i.handleNumbers,i.connect)}function ft(e,i){i.handle&&(et(i.handle,t.cssClasses.active),Y-=1),i.listeners.forEach(function(a){H.removeEventListener(a[0],a[1])}),Y===0&&(et(v,t.cssClasses.drag),vt(),e.cursor&&(J.style.cursor="",J.removeEventListener("selectstart",Ft))),t.events.smoothSteps&&(i.handleNumbers.forEach(function(a){X(a,b[a],!0,!0,!1,!1)}),i.handleNumbers.forEach(function(a){P("update",a)})),i.handleNumbers.forEach(function(a){P("change",a),P("set",a),P("end",a)})}function ut(e,i){if(!i.handleNumbers.some(nt)){var a;if(i.handleNumbers.length===1){var n=p[i.handleNumbers[0]];a=n.children[0],Y+=1,L(a,t.cssClasses.active)}e.stopPropagation();var o=[],l=T(f.move,H,le,{target:e.target,handle:a,connect:i.connect,listeners:o,startCalcPoint:e.calcPoint,baseSize:At(),pageOffset:e.pageOffset,handleNumbers:i.handleNumbers,buttonsProperty:e.buttons,locations:b.slice()}),h=T(f.end,H,ft,{target:e.target,handle:a,listeners:o,doNotReject:!0,handleNumbers:i.handleNumbers}),c=T("mouseout",H,oe,{target:e.target,handle:a,listeners:o,doNotReject:!0,handleNumbers:i.handleNumbers});o.push.apply(o,l.concat(h,c)),e.cursor&&(J.style.cursor=getComputedStyle(e.target).cursor,p.length>1&&L(v,t.cssClasses.drag),J.addEventListener("selectstart",Ft,!1)),i.handleNumbers.forEach(function(S){P("start",S)})}}function fe(e){e.stopPropagation();var i=Pt(e.calcPoint),a=se(i);a!==!1&&(t.events.snap||Rt(v,t.cssClasses.tap,t.animationDuration),X(a,i,!0,!0),vt(),P("slide",a,!0),P("update",a,!0),t.events.snap?ut(e,{handleNumbers:[a]}):(P("change",a,!0),P("set",a,!0)))}function ue(e){var i=Pt(e.calcPoint),a=m.getStep(i),n=m.fromStepping(a);Object.keys(F).forEach(function(o){o.split(".")[0]==="hover"&&F[o].forEach(function(l){l.call(tt,n)})})}function ce(e,i){if(wt()||nt(i))return!1;var a=["Left","Right"],n=["Down","Up"],o=["PageDown","PageUp"],l=["Home","End"];t.dir&&!t.ort?a.reverse():t.ort&&!t.dir&&(n.reverse(),o.reverse());var h=e.key.replace("Arrow",""),c=h===o[0],S=h===o[1],x=h===n[0]||h===a[0]||c,E=h===n[1]||h===a[1]||S,A=h===l[0],g=h===l[1];if(!x&&!E&&!A&&!g)return!0;e.preventDefault();var V;if(E||x){var _=x?0:1,k=Mt(i),U=k[_];if(U===null)return!1;U===!1&&(U=m.getDefaultStep(b[i],x,t.keyboardDefaultStep)),S||c?U*=t.keyboardPageMultiplier:U*=t.keyboardMultiplier,U=Math.max(U,1e-7),U=(x?-1:1)*U,V=z[i]+U}else g?V=t.spectrum.xVal[t.spectrum.xVal.length-1]:V=t.spectrum.xVal[0];return X(i,m.toStepping(V),!0,!0),P("slide",i),P("update",i),P("change",i),P("set",i),!1}function Vt(e){e.fixed||p.forEach(function(i,a){T(f.start,i.children[0],ut,{handleNumbers:[a]})}),e.tap&&T(f.start,w,fe,{}),e.hover&&T(f.move,w,ue,{hover:!0}),e.drag&&D.forEach(function(i,a){if(!(i===!1||a===0||a===D.length-1)){var n=p[a-1],o=p[a],l=[i],h=[n,o],c=[a-1,a];L(i,t.cssClasses.draggable),e.fixed&&(l.push(n.children[0]),l.push(o.children[0])),e.dragAll&&(h=p,c=M),l.forEach(function(S){T(f.start,S,ut,{handles:h,handleNumbers:c,connect:i})})}})}function ct(e,i){F[e]=F[e]||[],F[e].push(i),e.split(".")[0]==="update"&&p.forEach(function(a,n){P("update",n)})}function he(e){return e===K.aria||e===K.tooltips}function W(e){var i=e&&e.split(".")[0],a=i?e.substring(i.length):e;Object.keys(F).forEach(function(n){var o=n.split(".")[0],l=n.substring(o.length);(!i||i===o)&&(!a||a===l)&&(!he(l)||a===l)&&delete F[n]})}function P(e,i,a){Object.keys(F).forEach(function(n){var o=n.split(".")[0];e===o&&F[n].forEach(function(l){l.call(tt,z.map(t.format.to),i,z.slice(),a||!1,b.slice(),tt)})})}function Z(e,i,a,n,o,l,h){var c;return p.length>1&&!t.events.unconstrained&&(n&&i>0&&(c=m.getAbsoluteDistance(e[i-1],t.margin,!1),a=Math.max(a,c)),o&&i1&&t.limit&&(n&&i>0&&(c=m.getAbsoluteDistance(e[i-1],t.limit,!1),a=Math.min(a,c)),o&&i1?n.forEach(function(A,g){var V=Z(l,A,l[A]+i,S[g],x[g],!1,c);V===!1?i=0:(i=V-l[A],l[A]=V)}):S=x=[!0];var E=!1;n.forEach(function(A,g){E=X(A,a[A]+i,S[g],x[g],!1,c)||E}),E&&(n.forEach(function(A){P("update",A),P("slide",A)}),o!=null&&P("drag",h))}function yt(e,i){return t.dir?100-e-i:e}function ve(e,i){b[e]=i,z[e]=m.fromStepping(i);var a=yt(i,0)-Wt,n="translate("+ht(a+"%","0")+")";if(p[e].style[t.transformRule]=n,t.events.invertConnects&&b.length>1){var o=b.every(function(l,h,c){return h===0||l>=c[h-1]});if(q!==!o){xe();return}}$(e),$(e+1),q&&($(e-1),$(e+2))}function vt(){M.forEach(function(e){var i=b[e]>50?-1:1,a=3+(p.length+i*e);p[e].style.zIndex=String(a)})}function X(e,i,a,n,o,l){return o||(i=Z(b,e,i,a,n,!1,l)),i===!1?!1:(ve(e,i),!0)}function $(e){if(D[e]){var i=b.slice();q&&i.sort(function(c,S){return c-S});var a=0,n=100;e!==0&&(a=i[e-1]),e!==D.length-1&&(n=i[e]);var o=n-a,l="translate("+ht(yt(a,o)+"%","0")+")",h="scale("+ht(o/100,"1")+")";D[e].style[t.transformRule]=l+" "+h}}function kt(e,i){return e===null||e===!1||e===void 0||(typeof e=="number"&&(e=String(e)),e=t.format.from(e),e!==!1&&(e=m.toStepping(e)),e===!1||isNaN(e))?b[i]:e}function Q(e,i,a){var n=it(e),o=b[0]===void 0;i=i===void 0?!0:i,t.animate&&!o&&Rt(v,t.cssClasses.tap,t.animationDuration),M.forEach(function(c){X(c,kt(n[c],c),!0,!1,a)});var l=M.length===1?0:1;if(o&&m.hasNoSize()&&(a=!0,b[0]=0,M.length>1)){var h=100/(M.length-1);M.forEach(function(c){b[c]=c*h})}for(;l=0&&ea.stepAfter.startValue&&(o=a.stepAfter.startValue-n),n>a.thisStep.startValue?l=a.thisStep.step:a.stepBefore.step===!1?l=!1:l=n-a.stepBefore.highestStep,i===100?o=null:i===0&&(l=null);var h=m.countStepDecimals();return o!==null&&o!==!1&&(o=Number(o.toFixed(h))),l!==null&&l!==!1&&(l=Number(l.toFixed(h))),[l,o]}function ge(){return M.map(Mt)}function Se(e,i){var a=Ut(),n=["margin","limit","padding","range","animate","snap","step","format","pips","tooltips","connect"];n.forEach(function(l){e[l]!==void 0&&(s[l]=e[l])});var o=Xt(s);n.forEach(function(l){e[l]!==void 0&&(t[l]=o[l])}),m=o.spectrum,t.margin=o.margin,t.limit=o.limit,t.padding=o.padding,t.pips?lt(t.pips):ot(),t.tooltips?Ct():st(),b=[],Q(St(e.start)?e.start:a,i),e.connect&&_t()}function _t(){for(;C.firstChild;)C.removeChild(C.firstChild);for(var e=0;e<=t.handles;e++)D[e]=at(C,t.connect[e]),$(e);Vt({drag:t.events.drag,fixed:!0})}function xe(){q=!q,qt(t,t.connect.map(function(e){return!e})),_t()}function be(){w=Jt(v),Gt(t.connect,w),Vt(t.events),Q(t.start),t.pips&<(t.pips),t.tooltips&&Ct(),ee()}be();var tt={destroy:me,steps:ge,on:ct,off:W,get:Ut,set:Q,setHandle:pe,reset:de,disable:Qt,enable:te,__moveHandles:function(e,i,a){Dt(e,i,b,a)},options:s,updateOptions:Se,target:v,removePips:ot,removeTooltips:st,getPositions:function(){return b.slice()},getTooltips:function(){return j},getOrigins:function(){return p},pips:lt};return tt}function ar(r,t){if(!r||!r.nodeName)throw new Error("noUiSlider: create requires a single element, got: "+r);if(r.noUiSlider)throw new Error("noUiSlider: Slider was already initialized.");var s=Xt(t),f=ir(r,s,t);return r.noUiSlider=f,f}var Yt={__spectrum:Kt,cssClasses:It,create:ar};function nr({arePipsStepped:r,behavior:t,decimalPlaces:s,fillTrack:f,isDisabled:u,isRtl:d,isVertical:v,maxDifference:w,minDifference:C,maxValue:p,minValue:D,nonLinearPoints:y,pipsDensity:j,pipsFilter:m,pipsFormatter:z,pipsMode:b,pipsValues:M,rangePadding:Y,state:F,step:q,tooltips:B}){return{state:F,slider:null,init(){this.slider=Yt.create(this.$el,{behaviour:t,direction:d?"rtl":"ltr",connect:f,format:{from:H=>+H,to:H=>s!==null?+H.toFixed(s):H},limit:w,margin:C,orientation:v?"vertical":"horizontal",padding:Y,pips:b?{density:j??10,filter:m,format:z,mode:b,stepped:r,values:M}:null,range:{min:D,...y??{},max:p},start:Alpine.raw(this.state),step:q,tooltips:B}),u&&this.slider.disable(),this.slider.on("change",H=>{this.state=H.length>1?H:H[0]}),this.$watch("state",()=>{this.slider.set(Alpine.raw(this.state))})},destroy(){this.slider.destroy(),this.slider=null}}}export{nr as default}; diff --git a/public/js/filament/forms/components/tags-input.js b/public/js/filament/forms/components/tags-input.js new file mode 100644 index 0000000..2266d49 --- /dev/null +++ b/public/js/filament/forms/components/tags-input.js @@ -0,0 +1 @@ +function s({state:n,splitKeys:a}){return{newTag:"",state:n,createTag(){if(this.newTag=this.newTag.trim(),this.newTag!==""){if(this.state.includes(this.newTag)){this.newTag="";return}this.state.push(this.newTag),this.newTag=""}},deleteTag(t){this.state=this.state.filter(e=>e!==t)},reorderTags(t){let e=this.state.splice(t.oldIndex,1)[0];this.state.splice(t.newIndex,0,e),this.state=[...this.state]},input:{"x-on:blur":"createTag()","x-model":"newTag","x-on:keydown"(t){["Enter",...a].includes(t.key)&&(t.preventDefault(),t.stopPropagation(),this.createTag())},"x-on:paste"(){this.$nextTick(()=>{if(a.length===0){this.createTag();return}let t=a.map(e=>e.replace(/[/\-\\^$*+?.()|[\]{}]/g,"\\$&")).join("|");this.newTag.split(new RegExp(t,"g")).forEach(e=>{this.newTag=e,this.createTag()})})}}}}export{s as default}; diff --git a/public/js/filament/forms/components/textarea.js b/public/js/filament/forms/components/textarea.js new file mode 100644 index 0000000..d3491c3 --- /dev/null +++ b/public/js/filament/forms/components/textarea.js @@ -0,0 +1 @@ +function n({initialHeight:e,shouldAutosize:i,state:h}){return{state:h,wrapperEl:null,init(){this.wrapperEl=this.$el.parentNode,this.setInitialHeight(),i?this.$watch("state",()=>{this.resize()}):this.setUpResizeObserver()},setInitialHeight(){this.$el.scrollHeight<=0||(this.wrapperEl.style.height=e+"rem")},resize(){if(this.$el.scrollHeight<=0)return;let t=this.$el.style.height;this.$el.style.height="0px";let r=this.$el.scrollHeight;this.$el.style.height=t;let l=parseFloat(e)*parseFloat(getComputedStyle(document.documentElement).fontSize),s=Math.max(r,l)+"px";this.wrapperEl.style.height!==s&&(this.wrapperEl.style.height=s)},setUpResizeObserver(){new ResizeObserver(()=>{this.wrapperEl.style.height=this.$el.style.height}).observe(this.$el)}}}export{n as default}; diff --git a/public/js/filament/notifications/notifications.js b/public/js/filament/notifications/notifications.js new file mode 100644 index 0000000..efd74b8 --- /dev/null +++ b/public/js/filament/notifications/notifications.js @@ -0,0 +1 @@ +(()=>{function c(s,t=()=>{}){let i=!1;return function(){i?t.apply(this,arguments):(i=!0,s.apply(this,arguments))}}var d=s=>{s.data("notificationComponent",({notification:t})=>({isShown:!1,computedStyle:null,transitionDuration:null,transitionEasing:null,unsubscribeLivewireHook:null,init(){this.computedStyle=window.getComputedStyle(this.$el),this.transitionDuration=parseFloat(this.computedStyle.transitionDuration)*1e3,this.transitionEasing=this.computedStyle.transitionTimingFunction,this.configureTransitions(),this.configureAnimations(),t.duration&&t.duration!=="persistent"&&setTimeout(()=>{if(!this.$el.matches(":hover")){this.close();return}this.$el.addEventListener("mouseleave",()=>this.close())},t.duration),this.isShown=!0},configureTransitions(){let i=this.computedStyle.display,e=()=>{s.mutateDom(()=>{this.$el.style.setProperty("display",i),this.$el.style.setProperty("visibility","visible")}),this.$el._x_isShown=!0},o=()=>{s.mutateDom(()=>{this.$el._x_isShown?this.$el.style.setProperty("visibility","hidden"):this.$el.style.setProperty("display","none")})},r=c(n=>n?e():o(),n=>{this.$el._x_toggleAndCascadeWithTransitions(this.$el,n,e,o)});s.effect(()=>r(this.isShown))},configureAnimations(){let i;this.unsubscribeLivewireHook=Livewire.interceptMessage(({onFinish:e,onSuccess:o})=>{requestAnimationFrame(()=>{let r=()=>this.$el.getBoundingClientRect().top,n=r();e(()=>{i=()=>{this.isShown&&this.$el.animate([{transform:`translateY(${n-r()}px)`},{transform:"translateY(0px)"}],{duration:this.transitionDuration,easing:this.transitionEasing})},this.$el.getAnimations().forEach(l=>l.finish())}),o(({payload:l})=>{l?.snapshot?.data?.isFilamentNotificationsComponent&&typeof i=="function"&&i()})})})},close(){this.isShown=!1,setTimeout(()=>window.dispatchEvent(new CustomEvent("notificationClosed",{detail:{id:t.id}})),this.transitionDuration)},markAsRead(){window.dispatchEvent(new CustomEvent("markedNotificationAsRead",{detail:{id:t.id}}))},markAsUnread(){window.dispatchEvent(new CustomEvent("markedNotificationAsUnread",{detail:{id:t.id}}))},destroy(){this.unsubscribeLivewireHook?.()}}))};var h=class{constructor(){return this.id(crypto.randomUUID?.()??"10000000-1000-4000-8000-100000000000".replace(/[018]/g,t=>(+t^crypto.getRandomValues(new Uint8Array(1))[0]&15>>+t/4).toString(16))),this}id(t){return this.id=t,this}title(t){return this.title=t,this}body(t){return this.body=t,this}actions(t){return this.actions=t,this}status(t){return this.status=t,this}color(t){return this.color=t,this}icon(t){return this.icon=t,this}iconColor(t){return this.iconColor=t,this}duration(t){return this.duration=t,this}seconds(t){return this.duration(t*1e3),this}persistent(){return this.duration("persistent"),this}danger(){return this.status("danger"),this}info(){return this.status("info"),this}success(){return this.status("success"),this}warning(){return this.status("warning"),this}view(t){return this.view=t,this}viewData(t){return this.viewData=t,this}send(){return window.dispatchEvent(new CustomEvent("notificationSent",{detail:{notification:this}})),this}},a=class{constructor(t){return this.name(t),this}name(t){return this.name=t,this}color(t){return this.color=t,this}dispatch(t,i){return this.event(t),this.eventData(i),this}dispatchSelf(t,i){return this.dispatch(t,i),this.dispatchDirection="self",this}dispatchTo(t,i,e){return this.dispatch(i,e),this.dispatchDirection="to",this.dispatchToComponent=t,this}emit(t,i){return this.dispatch(t,i),this}emitSelf(t,i){return this.dispatchSelf(t,i),this}emitTo(t,i,e){return this.dispatchTo(t,i,e),this}dispatchDirection(t){return this.dispatchDirection=t,this}dispatchToComponent(t){return this.dispatchToComponent=t,this}event(t){return this.event=t,this}eventData(t){return this.eventData=t,this}extraAttributes(t){return this.extraAttributes=t,this}icon(t){return this.icon=t,this}iconPosition(t){return this.iconPosition=t,this}outlined(t=!0){return this.isOutlined=t,this}disabled(t=!0){return this.isDisabled=t,this}label(t){return this.label=t,this}close(t=!0){return this.shouldClose=t,this}openUrlInNewTab(t=!0){return this.shouldOpenUrlInNewTab=t,this}size(t){return this.size=t,this}url(t){return this.url=t,this}view(t){return this.view=t,this}button(){return this.view("filament::components.button.index"),this}grouped(){return this.view("filament::components.dropdown.list.item"),this}iconButton(){return this.view("filament::components.icon-button"),this}link(){return this.view("filament::components.link"),this}},u=class{constructor(t){return this.actions(t),this}actions(t){return this.actions=t.map(i=>i.grouped()),this}color(t){return this.color=t,this}icon(t){return this.icon=t,this}iconPosition(t){return this.iconPosition=t,this}label(t){return this.label=t,this}tooltip(t){return this.tooltip=t,this}};window.FilamentNotificationAction=a;window.FilamentNotificationActionGroup=u;window.FilamentNotification=h;document.addEventListener("alpine:init",()=>{window.Alpine.plugin(d)});})(); diff --git a/public/js/filament/schemas/components/actions.js b/public/js/filament/schemas/components/actions.js new file mode 100644 index 0000000..703b92d --- /dev/null +++ b/public/js/filament/schemas/components/actions.js @@ -0,0 +1 @@ +var i=()=>({isSticky:!1,width:0,resizeObserver:null,boundUpdateWidth:null,init(){let e=this.$el.parentElement;e&&(this.updateWidth(),this.resizeObserver=new ResizeObserver(()=>this.updateWidth()),this.resizeObserver.observe(e),this.boundUpdateWidth=this.updateWidth.bind(this),window.addEventListener("resize",this.boundUpdateWidth))},enableSticky(){this.isSticky=this.$el.getBoundingClientRect().top>0},disableSticky(){this.isSticky=!1},updateWidth(){let e=this.$el.parentElement;if(!e)return;let t=getComputedStyle(this.$root.querySelector(".fi-ac"));this.width=e.offsetWidth+parseInt(t.marginInlineStart,10)*-1+parseInt(t.marginInlineEnd,10)*-1},destroy(){this.resizeObserver&&(this.resizeObserver.disconnect(),this.resizeObserver=null),this.boundUpdateWidth&&(window.removeEventListener("resize",this.boundUpdateWidth),this.boundUpdateWidth=null)}});export{i as default}; diff --git a/public/js/filament/schemas/components/tabs.js b/public/js/filament/schemas/components/tabs.js new file mode 100644 index 0000000..0fbab11 --- /dev/null +++ b/public/js/filament/schemas/components/tabs.js @@ -0,0 +1 @@ +function v({activeTab:w,isScrollable:f,isTabPersistedInQueryString:m,livewireId:g,tab:T,tabQueryStringKey:r}){return{boundResizeHandler:null,isScrollable:f,resizeDebounceTimer:null,tab:T,unsubscribeLivewireHook:null,withinDropdownIndex:null,withinDropdownMounted:!1,init(){let t=this.getTabs(),e=new URLSearchParams(window.location.search);m&&e.has(r)&&t.includes(e.get(r))&&(this.tab=e.get(r)),(!this.tab||!t.includes(this.tab))&&(this.tab=t[w-1]),this.$watch("tab",()=>{this.updateQueryString(),this.autofocusFields()}),this.autofocusFields(!0),this.unsubscribeLivewireHook=Livewire.interceptMessage(({message:i,onSuccess:a})=>{a(()=>{this.$nextTick(()=>{if(i.component.id!==g)return;let l=this.getTabs();l.includes(this.tab)||(this.tab=l[w-1]??this.tab)})})}),f||(this.boundResizeHandler=this.debouncedUpdateTabsWithinDropdown.bind(this),window.addEventListener("resize",this.boundResizeHandler),this.updateTabsWithinDropdown())},calculateAvailableWidth(t){let e=window.getComputedStyle(t);return Math.floor(t.clientWidth)-Math.ceil(parseFloat(e.paddingLeft))*2},calculateContainerGap(t){let e=window.getComputedStyle(t);return Math.ceil(parseFloat(e.columnGap))},calculateDropdownIconWidth(t){let e=t.querySelector(".fi-icon");return Math.ceil(e.clientWidth)},calculateTabItemGap(t){let e=window.getComputedStyle(t);return Math.ceil(parseFloat(e.columnGap)||8)},calculateTabItemPadding(t){let e=window.getComputedStyle(t);return Math.ceil(parseFloat(e.paddingLeft))+Math.ceil(parseFloat(e.paddingRight))},findOverflowIndex(t,e,i,a,l,h){let u=t.map(n=>Math.ceil(n.clientWidth)),b=t.map(n=>{let c=n.querySelector(".fi-tabs-item-label"),s=n.querySelector(".fi-badge"),o=Math.ceil(c.clientWidth),d=s?Math.ceil(s.clientWidth):0;return{label:o,badge:d,total:o+(d>0?a+d:0)}});for(let n=0;np+y,0),s=n*i,o=b.slice(n+1),d=o.length>0,D=d?Math.max(...o.map(p=>p.total)):0,W=d?l+D+a+h+i:0;if(c+s+W>e)return n}return-1},get isDropdownButtonVisible(){return this.withinDropdownMounted?this.withinDropdownIndex===null?!1:this.getTabs().findIndex(e=>e===this.tab){if(t&&document.activeElement&&document.activeElement!==document.body&&this.$el.compareDocumentPosition(document.activeElement)&Node.DOCUMENT_POSITION_PRECEDING)return;let e=this.$el.querySelectorAll(".fi-sc-tabs-tab.fi-active [autofocus]");for(let i of e)if(i.focus(),document.activeElement===i)break})},debouncedUpdateTabsWithinDropdown(){clearTimeout(this.resizeDebounceTimer),this.resizeDebounceTimer=setTimeout(()=>this.updateTabsWithinDropdown(),150)},async updateTabsWithinDropdown(){this.withinDropdownIndex=null,this.withinDropdownMounted=!1,await this.$nextTick();let t=this.$el.querySelector(".fi-tabs"),e=t.querySelector(".fi-tabs-item:last-child"),i=Array.from(t.children).slice(0,-1),a=i.map(s=>s.style.display);i.forEach(s=>s.style.display=""),t.offsetHeight;let l=this.calculateAvailableWidth(t),h=this.calculateContainerGap(t),u=this.calculateDropdownIconWidth(e),b=this.calculateTabItemGap(i[0]),n=this.calculateTabItemPadding(i[0]),c=this.findOverflowIndex(i,l,h,b,n,u);i.forEach((s,o)=>s.style.display=a[o]),c!==-1&&(this.withinDropdownIndex=c),this.withinDropdownMounted=!0},destroy(){this.unsubscribeLivewireHook?.(),this.boundResizeHandler&&window.removeEventListener("resize",this.boundResizeHandler),clearTimeout(this.resizeDebounceTimer)}}}export{v as default}; diff --git a/public/js/filament/schemas/components/wizard.js b/public/js/filament/schemas/components/wizard.js new file mode 100644 index 0000000..56035dd --- /dev/null +++ b/public/js/filament/schemas/components/wizard.js @@ -0,0 +1 @@ +function p({isSkippable:i,isStepPersistedInQueryString:n,key:r,startStep:o,stepQueryStringKey:h}){return{step:null,init(){this.step=this.getSteps().at(o-1),this.$watch("step",()=>{this.updateQueryString(),this.autofocusFields()}),this.autofocusFields(!0)},async requestNextStep(){await this.$wire.callSchemaComponentMethod(r,"nextStep",{currentStepIndex:this.getStepIndex(this.step)})},goToNextStep(){let t=this.getStepIndex(this.step)+1;t>=this.getSteps().length||(this.step=this.getSteps()[t],this.scroll())},goToPreviousStep(){let t=this.getStepIndex(this.step)-1;t<0||(this.step=this.getSteps()[t],this.scroll())},goToStep(t){let e=this.getStepIndex(t);e<=-1||!i&&e>this.getStepIndex(this.step)||(this.step=t,this.scroll())},scroll(){this.$nextTick(()=>{this.$refs.header?.children[this.getStepIndex(this.step)].scrollIntoView({behavior:"smooth",block:"start"})})},autofocusFields(t=!1){this.$nextTick(()=>{if(t&&document.activeElement&&document.activeElement!==document.body&&this.$el.compareDocumentPosition(document.activeElement)&Node.DOCUMENT_POSITION_PRECEDING)return;let e=this.$refs[`step-${this.step}`]?.querySelectorAll("[autofocus]")??[];for(let s of e)if(s.focus(),document.activeElement===s)break})},getStepIndex(t){let e=this.getSteps().findIndex(s=>s===t);return e===-1?0:e},getSteps(){return JSON.parse(this.$refs.stepsData.value)},isFirstStep(){return this.getStepIndex(this.step)<=0},isLastStep(){return this.getStepIndex(this.step)+1>=this.getSteps().length},isStepAccessible(t){return i||this.getStepIndex(this.step)>this.getStepIndex(t)},updateQueryString(){if(!n)return;let t=new URL(window.location.href);t.searchParams.set(h,this.step),history.replaceState(null,document.title,t.toString())}}}export{p as default}; diff --git a/public/js/filament/schemas/schemas.js b/public/js/filament/schemas/schemas.js new file mode 100644 index 0000000..53dd538 --- /dev/null +++ b/public/js/filament/schemas/schemas.js @@ -0,0 +1 @@ +(()=>{var o=()=>({isSticky:!1,width:0,resizeObserver:null,boundUpdateWidth:null,init(){let i=this.$el.parentElement;i&&(this.updateWidth(),this.resizeObserver=new ResizeObserver(()=>this.updateWidth()),this.resizeObserver.observe(i),this.boundUpdateWidth=this.updateWidth.bind(this),window.addEventListener("resize",this.boundUpdateWidth))},enableSticky(){this.isSticky=this.$el.getBoundingClientRect().top>0},disableSticky(){this.isSticky=!1},updateWidth(){let i=this.$el.parentElement;if(!i)return;let e=getComputedStyle(this.$root.querySelector(".fi-ac"));this.width=i.offsetWidth+parseInt(e.marginInlineStart,10)*-1+parseInt(e.marginInlineEnd,10)*-1},destroy(){this.resizeObserver&&(this.resizeObserver.disconnect(),this.resizeObserver=null),this.boundUpdateWidth&&(window.removeEventListener("resize",this.boundUpdateWidth),this.boundUpdateWidth=null)}});var a=function(i,e,n){let t=i;if(e.startsWith("/")&&(n=!0,e=e.slice(1)),n)return e;for(;e.startsWith("../");)t=t.includes(".")?t.slice(0,t.lastIndexOf(".")):null,e=e.slice(3);return["",null,void 0].includes(t)?e:["",null,void 0].includes(e)?t:`${t}.${e}`},d=i=>{let e=Alpine.findClosest(i,n=>n.__livewire);if(!e)throw"Could not find Livewire component in DOM tree.";return e.__livewire};document.addEventListener("alpine:init",()=>{window.Alpine.data("filamentSchema",({livewireId:i})=>({handleFormValidationError(e){e.detail.livewireId===i&&this.$nextTick(()=>{let n=this.$el.querySelector("[data-validation-error]");if(!n)return;let t=n;for(;t;)t.dispatchEvent(new CustomEvent("expand")),t=t.parentNode;setTimeout(()=>n.closest("[data-field-wrapper]").scrollIntoView({behavior:"smooth",block:"start",inline:"start"}),200)})},isStateChanged(e,n){if(e===void 0)return!1;try{return JSON.stringify(e)!==JSON.stringify(n)}catch{return e!==n}}})),window.Alpine.data("filamentSchemaComponent",({path:i,containerPath:e,$wire:n})=>({$statePath:i,$get:(t,r)=>n.$get(a(e,t,r)),$set:(t,r,s,l=!1)=>n.$set(a(e,t,s),r,l),get $state(){return n.$get(i)}})),window.Alpine.data("filamentActionsSchemaComponent",o),Livewire.interceptMessage(({message:i,onSuccess:e})=>{e(({payload:n})=>{n.effects?.dispatches?.forEach(t=>{if(!t.params?.awaitSchemaComponent)return;let r=Array.from(i.component.el.querySelectorAll(`[wire\\:partial="schema-component::${t.params.awaitSchemaComponent}"]`)).filter(s=>d(s)===i.component);if(r.length!==1){if(r.length>1)throw`Multiple schema components found with key [${t.params.awaitSchemaComponent}].`;window.addEventListener(`schema-component-${component.id}-${t.params.awaitSchemaComponent}-loaded`,()=>{window.dispatchEvent(new CustomEvent(t.name,{detail:t.params}))},{once:!0})}})})})});})(); diff --git a/public/js/filament/support/support.js b/public/js/filament/support/support.js new file mode 100644 index 0000000..1847b59 --- /dev/null +++ b/public/js/filament/support/support.js @@ -0,0 +1,46 @@ +(()=>{var qo=Object.create;var Ti=Object.defineProperty;var Go=Object.getOwnPropertyDescriptor;var Ko=Object.getOwnPropertyNames;var Jo=Object.getPrototypeOf,Qo=Object.prototype.hasOwnProperty;var Kr=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var Zo=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of Ko(t))!Qo.call(e,i)&&i!==r&&Ti(e,i,{get:()=>t[i],enumerable:!(n=Go(t,i))||n.enumerable});return e};var ea=(e,t,r)=>(r=e!=null?qo(Jo(e)):{},Zo(t||!e||!e.__esModule?Ti(r,"default",{value:e,enumerable:!0}):r,e));var uo=Kr(()=>{});var po=Kr(()=>{});var ho=Kr((Hs,yr)=>{(function(){"use strict";var e="input is invalid type",t="finalize already called",r=typeof window=="object",n=r?window:{};n.JS_MD5_NO_WINDOW&&(r=!1);var i=!r&&typeof self=="object",o=!n.JS_MD5_NO_NODE_JS&&typeof process=="object"&&process.versions&&process.versions.node;o?n=global:i&&(n=self);var a=!n.JS_MD5_NO_COMMON_JS&&typeof yr=="object"&&yr.exports,c=typeof define=="function"&&define.amd,f=!n.JS_MD5_NO_ARRAY_BUFFER&&typeof ArrayBuffer<"u",u="0123456789abcdef".split(""),y=[128,32768,8388608,-2147483648],m=[0,8,16,24],O=["hex","array","digest","buffer","arrayBuffer","base64"],S="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""),x=[],M;if(f){var I=new ArrayBuffer(68);M=new Uint8Array(I),x=new Uint32Array(I)}var $=Array.isArray;(n.JS_MD5_NO_NODE_JS||!$)&&($=function(l){return Object.prototype.toString.call(l)==="[object Array]"});var A=ArrayBuffer.isView;f&&(n.JS_MD5_NO_ARRAY_BUFFER_IS_VIEW||!A)&&(A=function(l){return typeof l=="object"&&l.buffer&&l.buffer.constructor===ArrayBuffer});var N=function(l){var h=typeof l;if(h==="string")return[l,!0];if(h!=="object"||l===null)throw new Error(e);if(f&&l.constructor===ArrayBuffer)return[new Uint8Array(l),!1];if(!$(l)&&!A(l))throw new Error(e);return[l,!1]},Y=function(l){return function(h){return new X(!0).update(h)[l]()}},ne=function(){var l=Y("hex");o&&(l=J(l)),l.create=function(){return new X},l.update=function(p){return l.create().update(p)};for(var h=0;h>>6,ze[P++]=128|p&63):p<55296||p>=57344?(ze[P++]=224|p>>>12,ze[P++]=128|p>>>6&63,ze[P++]=128|p&63):(p=65536+((p&1023)<<10|l.charCodeAt(++j)&1023),ze[P++]=240|p>>>18,ze[P++]=128|p>>>12&63,ze[P++]=128|p>>>6&63,ze[P++]=128|p&63);else for(P=this.start;j>>2]|=p<>>2]|=(192|p>>>6)<>>2]|=(128|p&63)<=57344?(Z[P>>>2]|=(224|p>>>12)<>>2]|=(128|p>>>6&63)<>>2]|=(128|p&63)<>>2]|=(240|p>>>18)<>>2]|=(128|p>>>12&63)<>>2]|=(128|p>>>6&63)<>>2]|=(128|p&63)<>>2]|=l[j]<=64?(this.start=P-64,this.hash(),this.hashed=!0):this.start=P}return this.bytes>4294967295&&(this.hBytes+=this.bytes/4294967296<<0,this.bytes=this.bytes%4294967296),this},X.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var l=this.blocks,h=this.lastByteIndex;l[h>>>2]|=y[h&3],h>=56&&(this.hashed||this.hash(),l[0]=l[16],l[16]=l[1]=l[2]=l[3]=l[4]=l[5]=l[6]=l[7]=l[8]=l[9]=l[10]=l[11]=l[12]=l[13]=l[14]=l[15]=0),l[14]=this.bytes<<3,l[15]=this.hBytes<<3|this.bytes>>>29,this.hash()}},X.prototype.hash=function(){var l,h,v,p,j,P,R=this.blocks;this.first?(l=R[0]-680876937,l=(l<<7|l>>>25)-271733879<<0,p=(-1732584194^l&2004318071)+R[1]-117830708,p=(p<<12|p>>>20)+l<<0,v=(-271733879^p&(l^-271733879))+R[2]-1126478375,v=(v<<17|v>>>15)+p<<0,h=(l^v&(p^l))+R[3]-1316259209,h=(h<<22|h>>>10)+v<<0):(l=this.h0,h=this.h1,v=this.h2,p=this.h3,l+=(p^h&(v^p))+R[0]-680876936,l=(l<<7|l>>>25)+h<<0,p+=(v^l&(h^v))+R[1]-389564586,p=(p<<12|p>>>20)+l<<0,v+=(h^p&(l^h))+R[2]+606105819,v=(v<<17|v>>>15)+p<<0,h+=(l^v&(p^l))+R[3]-1044525330,h=(h<<22|h>>>10)+v<<0),l+=(p^h&(v^p))+R[4]-176418897,l=(l<<7|l>>>25)+h<<0,p+=(v^l&(h^v))+R[5]+1200080426,p=(p<<12|p>>>20)+l<<0,v+=(h^p&(l^h))+R[6]-1473231341,v=(v<<17|v>>>15)+p<<0,h+=(l^v&(p^l))+R[7]-45705983,h=(h<<22|h>>>10)+v<<0,l+=(p^h&(v^p))+R[8]+1770035416,l=(l<<7|l>>>25)+h<<0,p+=(v^l&(h^v))+R[9]-1958414417,p=(p<<12|p>>>20)+l<<0,v+=(h^p&(l^h))+R[10]-42063,v=(v<<17|v>>>15)+p<<0,h+=(l^v&(p^l))+R[11]-1990404162,h=(h<<22|h>>>10)+v<<0,l+=(p^h&(v^p))+R[12]+1804603682,l=(l<<7|l>>>25)+h<<0,p+=(v^l&(h^v))+R[13]-40341101,p=(p<<12|p>>>20)+l<<0,v+=(h^p&(l^h))+R[14]-1502002290,v=(v<<17|v>>>15)+p<<0,h+=(l^v&(p^l))+R[15]+1236535329,h=(h<<22|h>>>10)+v<<0,l+=(v^p&(h^v))+R[1]-165796510,l=(l<<5|l>>>27)+h<<0,p+=(h^v&(l^h))+R[6]-1069501632,p=(p<<9|p>>>23)+l<<0,v+=(l^h&(p^l))+R[11]+643717713,v=(v<<14|v>>>18)+p<<0,h+=(p^l&(v^p))+R[0]-373897302,h=(h<<20|h>>>12)+v<<0,l+=(v^p&(h^v))+R[5]-701558691,l=(l<<5|l>>>27)+h<<0,p+=(h^v&(l^h))+R[10]+38016083,p=(p<<9|p>>>23)+l<<0,v+=(l^h&(p^l))+R[15]-660478335,v=(v<<14|v>>>18)+p<<0,h+=(p^l&(v^p))+R[4]-405537848,h=(h<<20|h>>>12)+v<<0,l+=(v^p&(h^v))+R[9]+568446438,l=(l<<5|l>>>27)+h<<0,p+=(h^v&(l^h))+R[14]-1019803690,p=(p<<9|p>>>23)+l<<0,v+=(l^h&(p^l))+R[3]-187363961,v=(v<<14|v>>>18)+p<<0,h+=(p^l&(v^p))+R[8]+1163531501,h=(h<<20|h>>>12)+v<<0,l+=(v^p&(h^v))+R[13]-1444681467,l=(l<<5|l>>>27)+h<<0,p+=(h^v&(l^h))+R[2]-51403784,p=(p<<9|p>>>23)+l<<0,v+=(l^h&(p^l))+R[7]+1735328473,v=(v<<14|v>>>18)+p<<0,h+=(p^l&(v^p))+R[12]-1926607734,h=(h<<20|h>>>12)+v<<0,j=h^v,l+=(j^p)+R[5]-378558,l=(l<<4|l>>>28)+h<<0,p+=(j^l)+R[8]-2022574463,p=(p<<11|p>>>21)+l<<0,P=p^l,v+=(P^h)+R[11]+1839030562,v=(v<<16|v>>>16)+p<<0,h+=(P^v)+R[14]-35309556,h=(h<<23|h>>>9)+v<<0,j=h^v,l+=(j^p)+R[1]-1530992060,l=(l<<4|l>>>28)+h<<0,p+=(j^l)+R[4]+1272893353,p=(p<<11|p>>>21)+l<<0,P=p^l,v+=(P^h)+R[7]-155497632,v=(v<<16|v>>>16)+p<<0,h+=(P^v)+R[10]-1094730640,h=(h<<23|h>>>9)+v<<0,j=h^v,l+=(j^p)+R[13]+681279174,l=(l<<4|l>>>28)+h<<0,p+=(j^l)+R[0]-358537222,p=(p<<11|p>>>21)+l<<0,P=p^l,v+=(P^h)+R[3]-722521979,v=(v<<16|v>>>16)+p<<0,h+=(P^v)+R[6]+76029189,h=(h<<23|h>>>9)+v<<0,j=h^v,l+=(j^p)+R[9]-640364487,l=(l<<4|l>>>28)+h<<0,p+=(j^l)+R[12]-421815835,p=(p<<11|p>>>21)+l<<0,P=p^l,v+=(P^h)+R[15]+530742520,v=(v<<16|v>>>16)+p<<0,h+=(P^v)+R[2]-995338651,h=(h<<23|h>>>9)+v<<0,l+=(v^(h|~p))+R[0]-198630844,l=(l<<6|l>>>26)+h<<0,p+=(h^(l|~v))+R[7]+1126891415,p=(p<<10|p>>>22)+l<<0,v+=(l^(p|~h))+R[14]-1416354905,v=(v<<15|v>>>17)+p<<0,h+=(p^(v|~l))+R[5]-57434055,h=(h<<21|h>>>11)+v<<0,l+=(v^(h|~p))+R[12]+1700485571,l=(l<<6|l>>>26)+h<<0,p+=(h^(l|~v))+R[3]-1894986606,p=(p<<10|p>>>22)+l<<0,v+=(l^(p|~h))+R[10]-1051523,v=(v<<15|v>>>17)+p<<0,h+=(p^(v|~l))+R[1]-2054922799,h=(h<<21|h>>>11)+v<<0,l+=(v^(h|~p))+R[8]+1873313359,l=(l<<6|l>>>26)+h<<0,p+=(h^(l|~v))+R[15]-30611744,p=(p<<10|p>>>22)+l<<0,v+=(l^(p|~h))+R[6]-1560198380,v=(v<<15|v>>>17)+p<<0,h+=(p^(v|~l))+R[13]+1309151649,h=(h<<21|h>>>11)+v<<0,l+=(v^(h|~p))+R[4]-145523070,l=(l<<6|l>>>26)+h<<0,p+=(h^(l|~v))+R[11]-1120210379,p=(p<<10|p>>>22)+l<<0,v+=(l^(p|~h))+R[2]+718787259,v=(v<<15|v>>>17)+p<<0,h+=(p^(v|~l))+R[9]-343485551,h=(h<<21|h>>>11)+v<<0,this.first?(this.h0=l+1732584193<<0,this.h1=h-271733879<<0,this.h2=v-1732584194<<0,this.h3=p+271733878<<0,this.first=!1):(this.h0=this.h0+l<<0,this.h1=this.h1+h<<0,this.h2=this.h2+v<<0,this.h3=this.h3+p<<0)},X.prototype.hex=function(){this.finalize();var l=this.h0,h=this.h1,v=this.h2,p=this.h3;return u[l>>>4&15]+u[l&15]+u[l>>>12&15]+u[l>>>8&15]+u[l>>>20&15]+u[l>>>16&15]+u[l>>>28&15]+u[l>>>24&15]+u[h>>>4&15]+u[h&15]+u[h>>>12&15]+u[h>>>8&15]+u[h>>>20&15]+u[h>>>16&15]+u[h>>>28&15]+u[h>>>24&15]+u[v>>>4&15]+u[v&15]+u[v>>>12&15]+u[v>>>8&15]+u[v>>>20&15]+u[v>>>16&15]+u[v>>>28&15]+u[v>>>24&15]+u[p>>>4&15]+u[p&15]+u[p>>>12&15]+u[p>>>8&15]+u[p>>>20&15]+u[p>>>16&15]+u[p>>>28&15]+u[p>>>24&15]},X.prototype.toString=X.prototype.hex,X.prototype.digest=function(){this.finalize();var l=this.h0,h=this.h1,v=this.h2,p=this.h3;return[l&255,l>>>8&255,l>>>16&255,l>>>24&255,h&255,h>>>8&255,h>>>16&255,h>>>24&255,v&255,v>>>8&255,v>>>16&255,v>>>24&255,p&255,p>>>8&255,p>>>16&255,p>>>24&255]},X.prototype.array=X.prototype.digest,X.prototype.arrayBuffer=function(){this.finalize();var l=new ArrayBuffer(16),h=new Uint32Array(l);return h[0]=this.h0,h[1]=this.h1,h[2]=this.h2,h[3]=this.h3,l},X.prototype.buffer=X.prototype.arrayBuffer,X.prototype.base64=function(){for(var l,h,v,p="",j=this.array(),P=0;P<15;)l=j[P++],h=j[P++],v=j[P++],p+=S[l>>>2]+S[(l<<4|h>>>4)&63]+S[(h<<2|v>>>6)&63]+S[v&63];return l=j[P],p+=S[l>>>2]+S[l<<4&63]+"==",p};function Q(l,h){var v,p=N(l);if(l=p[0],p[1]){var j=[],P=l.length,R=0,Z;for(v=0;v>>6,j[R++]=128|Z&63):Z<55296||Z>=57344?(j[R++]=224|Z>>>12,j[R++]=128|Z>>>6&63,j[R++]=128|Z&63):(Z=65536+((Z&1023)<<10|l.charCodeAt(++v)&1023),j[R++]=240|Z>>>18,j[R++]=128|Z>>>12&63,j[R++]=128|Z>>>6&63,j[R++]=128|Z&63);l=j}l.length>64&&(l=new X(!0).update(l).array());var ze=[],Rt=[];for(v=0;v<64;++v){var Ut=l[v]||0;ze[v]=92^Ut,Rt[v]=54^Ut}X.call(this,h),this.update(Rt),this.oKeyPad=ze,this.inner=!0,this.sharedMemory=h}Q.prototype=new X,Q.prototype.finalize=function(){if(X.prototype.finalize.call(this),this.inner){this.inner=!1;var l=this.array();X.call(this,this.sharedMemory),this.update(this.oKeyPad),this.update(l),X.prototype.finalize.call(this)}};var me=ne();me.md5=me,me.md5.hmac=de(),a?yr.exports=me:(n.md5=me,c&&define(function(){return me}))})()});var Hi=["top","right","bottom","left"],Pi=["start","end"],Mi=Hi.reduce((e,t)=>e.concat(t,t+"-"+Pi[0],t+"-"+Pi[1]),[]),Et=Math.min,tt=Math.max,hr=Math.round,pr=Math.floor,nn=e=>({x:e,y:e}),ta={left:"right",right:"left",bottom:"top",top:"bottom"},na={start:"end",end:"start"};function Jr(e,t,r){return tt(e,Et(t,r))}function jt(e,t){return typeof e=="function"?e(t):e}function pt(e){return e.split("-")[0]}function xt(e){return e.split("-")[1]}function $i(e){return e==="x"?"y":"x"}function Qr(e){return e==="y"?"height":"width"}function Pn(e){return["top","bottom"].includes(pt(e))?"y":"x"}function Zr(e){return $i(Pn(e))}function Wi(e,t,r){r===void 0&&(r=!1);let n=xt(e),i=Zr(e),o=Qr(i),a=i==="x"?n===(r?"end":"start")?"right":"left":n==="start"?"bottom":"top";return t.reference[o]>t.floating[o]&&(a=mr(a)),[a,mr(a)]}function ra(e){let t=mr(e);return[vr(e),t,vr(t)]}function vr(e){return e.replace(/start|end/g,t=>na[t])}function ia(e,t,r){let n=["left","right"],i=["right","left"],o=["top","bottom"],a=["bottom","top"];switch(e){case"top":case"bottom":return r?t?i:n:t?n:i;case"left":case"right":return t?o:a;default:return[]}}function oa(e,t,r,n){let i=xt(e),o=ia(pt(e),r==="start",n);return i&&(o=o.map(a=>a+"-"+i),t&&(o=o.concat(o.map(vr)))),o}function mr(e){return e.replace(/left|right|bottom|top/g,t=>ta[t])}function aa(e){return{top:0,right:0,bottom:0,left:0,...e}}function ei(e){return typeof e!="number"?aa(e):{top:e,right:e,bottom:e,left:e}}function Dn(e){return{...e,top:e.y,left:e.x,right:e.x+e.width,bottom:e.y+e.height}}function Ri(e,t,r){let{reference:n,floating:i}=e,o=Pn(t),a=Zr(t),c=Qr(a),f=pt(t),u=o==="y",y=n.x+n.width/2-i.width/2,m=n.y+n.height/2-i.height/2,O=n[c]/2-i[c]/2,S;switch(f){case"top":S={x:y,y:n.y-i.height};break;case"bottom":S={x:y,y:n.y+n.height};break;case"right":S={x:n.x+n.width,y:m};break;case"left":S={x:n.x-i.width,y:m};break;default:S={x:n.x,y:n.y}}switch(xt(t)){case"start":S[a]-=O*(r&&u?-1:1);break;case"end":S[a]+=O*(r&&u?-1:1);break}return S}var sa=async(e,t,r)=>{let{placement:n="bottom",strategy:i="absolute",middleware:o=[],platform:a}=r,c=o.filter(Boolean),f=await(a.isRTL==null?void 0:a.isRTL(t)),u=await a.getElementRects({reference:e,floating:t,strategy:i}),{x:y,y:m}=Ri(u,n,f),O=n,S={},x=0;for(let M=0;M({name:"arrow",options:e,async fn(t){let{x:r,y:n,placement:i,rects:o,platform:a,elements:c,middlewareData:f}=t,{element:u,padding:y=0}=jt(e,t)||{};if(u==null)return{};let m=ei(y),O={x:r,y:n},S=Zr(i),x=Qr(S),M=await a.getDimensions(u),I=S==="y",$=I?"top":"left",A=I?"bottom":"right",N=I?"clientHeight":"clientWidth",Y=o.reference[x]+o.reference[S]-O[S]-o.floating[x],ne=O[S]-o.reference[S],J=await(a.getOffsetParent==null?void 0:a.getOffsetParent(u)),V=J?J[N]:0;(!V||!await(a.isElement==null?void 0:a.isElement(J)))&&(V=c.floating[N]||o.floating[x]);let de=Y/2-ne/2,X=V/2-M[x]/2-1,Q=Et(m[$],X),me=Et(m[A],X),l=Q,h=V-M[x]-me,v=V/2-M[x]/2+de,p=Jr(l,v,h),j=!f.arrow&&xt(i)!=null&&v!==p&&o.reference[x]/2-(vxt(i)===e),...r.filter(i=>xt(i)!==e)]:r.filter(i=>pt(i)===i)).filter(i=>e?xt(i)===e||(t?vr(i)!==i:!1):!0)}var fa=function(e){return e===void 0&&(e={}),{name:"autoPlacement",options:e,async fn(t){var r,n,i;let{rects:o,middlewareData:a,placement:c,platform:f,elements:u}=t,{crossAxis:y=!1,alignment:m,allowedPlacements:O=Mi,autoAlignment:S=!0,...x}=jt(e,t),M=m!==void 0||O===Mi?ca(m||null,S,O):O,I=await _n(t,x),$=((r=a.autoPlacement)==null?void 0:r.index)||0,A=M[$];if(A==null)return{};let N=Wi(A,o,await(f.isRTL==null?void 0:f.isRTL(u.floating)));if(c!==A)return{reset:{placement:M[0]}};let Y=[I[pt(A)],I[N[0]],I[N[1]]],ne=[...((n=a.autoPlacement)==null?void 0:n.overflows)||[],{placement:A,overflows:Y}],J=M[$+1];if(J)return{data:{index:$+1,overflows:ne},reset:{placement:J}};let V=ne.map(Q=>{let me=xt(Q.placement);return[Q.placement,me&&y?Q.overflows.slice(0,2).reduce((l,h)=>l+h,0):Q.overflows[0],Q.overflows]}).sort((Q,me)=>Q[1]-me[1]),X=((i=V.filter(Q=>Q[2].slice(0,xt(Q[0])?2:3).every(me=>me<=0))[0])==null?void 0:i[0])||V[0][0];return X!==c?{data:{index:$+1,overflows:ne},reset:{placement:X}}:{}}}},ua=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var r,n;let{placement:i,middlewareData:o,rects:a,initialPlacement:c,platform:f,elements:u}=t,{mainAxis:y=!0,crossAxis:m=!0,fallbackPlacements:O,fallbackStrategy:S="bestFit",fallbackAxisSideDirection:x="none",flipAlignment:M=!0,...I}=jt(e,t);if((r=o.arrow)!=null&&r.alignmentOffset)return{};let $=pt(i),A=pt(c)===c,N=await(f.isRTL==null?void 0:f.isRTL(u.floating)),Y=O||(A||!M?[mr(c)]:ra(c));!O&&x!=="none"&&Y.push(...oa(c,M,x,N));let ne=[c,...Y],J=await _n(t,I),V=[],de=((n=o.flip)==null?void 0:n.overflows)||[];if(y&&V.push(J[$]),m){let l=Wi(i,a,N);V.push(J[l[0]],J[l[1]])}if(de=[...de,{placement:i,overflows:V}],!V.every(l=>l<=0)){var X,Q;let l=(((X=o.flip)==null?void 0:X.index)||0)+1,h=ne[l];if(h)return{data:{index:l,overflows:de},reset:{placement:h}};let v=(Q=de.filter(p=>p.overflows[0]<=0).sort((p,j)=>p.overflows[1]-j.overflows[1])[0])==null?void 0:Q.placement;if(!v)switch(S){case"bestFit":{var me;let p=(me=de.map(j=>[j.placement,j.overflows.filter(P=>P>0).reduce((P,R)=>P+R,0)]).sort((j,P)=>j[1]-P[1])[0])==null?void 0:me[0];p&&(v=p);break}case"initialPlacement":v=c;break}if(i!==v)return{reset:{placement:v}}}return{}}}};function Ii(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function Li(e){return Hi.some(t=>e[t]>=0)}var da=function(e){return e===void 0&&(e={}),{name:"hide",options:e,async fn(t){let{rects:r}=t,{strategy:n="referenceHidden",...i}=jt(e,t);switch(n){case"referenceHidden":{let o=await _n(t,{...i,elementContext:"reference"}),a=Ii(o,r.reference);return{data:{referenceHiddenOffsets:a,referenceHidden:Li(a)}}}case"escaped":{let o=await _n(t,{...i,altBoundary:!0}),a=Ii(o,r.floating);return{data:{escapedOffsets:a,escaped:Li(a)}}}default:return{}}}}};function Ui(e){let t=Et(...e.map(o=>o.left)),r=Et(...e.map(o=>o.top)),n=tt(...e.map(o=>o.right)),i=tt(...e.map(o=>o.bottom));return{x:t,y:r,width:n-t,height:i-r}}function pa(e){let t=e.slice().sort((i,o)=>i.y-o.y),r=[],n=null;for(let i=0;in.height/2?r.push([o]):r[r.length-1].push(o),n=o}return r.map(i=>Dn(Ui(i)))}var ha=function(e){return e===void 0&&(e={}),{name:"inline",options:e,async fn(t){let{placement:r,elements:n,rects:i,platform:o,strategy:a}=t,{padding:c=2,x:f,y:u}=jt(e,t),y=Array.from(await(o.getClientRects==null?void 0:o.getClientRects(n.reference))||[]),m=pa(y),O=Dn(Ui(y)),S=ei(c);function x(){if(m.length===2&&m[0].left>m[1].right&&f!=null&&u!=null)return m.find(I=>f>I.left-S.left&&fI.top-S.top&&u=2){if(Pn(r)==="y"){let Q=m[0],me=m[m.length-1],l=pt(r)==="top",h=Q.top,v=me.bottom,p=l?Q.left:me.left,j=l?Q.right:me.right,P=j-p,R=v-h;return{top:h,bottom:v,left:p,right:j,width:P,height:R,x:p,y:h}}let I=pt(r)==="left",$=tt(...m.map(Q=>Q.right)),A=Et(...m.map(Q=>Q.left)),N=m.filter(Q=>I?Q.left===A:Q.right===$),Y=N[0].top,ne=N[N.length-1].bottom,J=A,V=$,de=V-J,X=ne-Y;return{top:Y,bottom:ne,left:J,right:V,width:de,height:X,x:J,y:Y}}return O}let M=await o.getElementRects({reference:{getBoundingClientRect:x},floating:n.floating,strategy:a});return i.reference.x!==M.reference.x||i.reference.y!==M.reference.y||i.reference.width!==M.reference.width||i.reference.height!==M.reference.height?{reset:{rects:M}}:{}}}};async function va(e,t){let{placement:r,platform:n,elements:i}=e,o=await(n.isRTL==null?void 0:n.isRTL(i.floating)),a=pt(r),c=xt(r),f=Pn(r)==="y",u=["left","top"].includes(a)?-1:1,y=o&&f?-1:1,m=jt(t,e),{mainAxis:O,crossAxis:S,alignmentAxis:x}=typeof m=="number"?{mainAxis:m,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...m};return c&&typeof x=="number"&&(S=c==="end"?x*-1:x),f?{x:S*y,y:O*u}:{x:O*u,y:S*y}}var Vi=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var r,n;let{x:i,y:o,placement:a,middlewareData:c}=t,f=await va(t,e);return a===((r=c.offset)==null?void 0:r.placement)&&(n=c.arrow)!=null&&n.alignmentOffset?{}:{x:i+f.x,y:o+f.y,data:{...f,placement:a}}}}},ma=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){let{x:r,y:n,placement:i}=t,{mainAxis:o=!0,crossAxis:a=!1,limiter:c={fn:I=>{let{x:$,y:A}=I;return{x:$,y:A}}},...f}=jt(e,t),u={x:r,y:n},y=await _n(t,f),m=Pn(pt(i)),O=$i(m),S=u[O],x=u[m];if(o){let I=O==="y"?"top":"left",$=O==="y"?"bottom":"right",A=S+y[I],N=S-y[$];S=Jr(A,S,N)}if(a){let I=m==="y"?"top":"left",$=m==="y"?"bottom":"right",A=x+y[I],N=x-y[$];x=Jr(A,x,N)}let M=c.fn({...t,[O]:S,[m]:x});return{...M,data:{x:M.x-r,y:M.y-n}}}}},ga=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){let{placement:r,rects:n,platform:i,elements:o}=t,{apply:a=()=>{},...c}=jt(e,t),f=await _n(t,c),u=pt(r),y=xt(r),m=Pn(r)==="y",{width:O,height:S}=n.floating,x,M;u==="top"||u==="bottom"?(x=u,M=y===(await(i.isRTL==null?void 0:i.isRTL(o.floating))?"start":"end")?"left":"right"):(M=u,x=y==="end"?"top":"bottom");let I=S-f[x],$=O-f[M],A=!t.middlewareData.shift,N=I,Y=$;if(m){let J=O-f.left-f.right;Y=y||A?Et($,J):J}else{let J=S-f.top-f.bottom;N=y||A?Et(I,J):J}if(A&&!y){let J=tt(f.left,0),V=tt(f.right,0),de=tt(f.top,0),X=tt(f.bottom,0);m?Y=O-2*(J!==0||V!==0?J+V:tt(f.left,f.right)):N=S-2*(de!==0||X!==0?de+X:tt(f.top,f.bottom))}await a({...t,availableWidth:Y,availableHeight:N});let ne=await i.getDimensions(o.floating);return O!==ne.width||S!==ne.height?{reset:{rects:!0}}:{}}}};function rn(e){return zi(e)?(e.nodeName||"").toLowerCase():"#document"}function ct(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function Bt(e){var t;return(t=(zi(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function zi(e){return e instanceof Node||e instanceof ct(e).Node}function Nt(e){return e instanceof Element||e instanceof ct(e).Element}function Tt(e){return e instanceof HTMLElement||e instanceof ct(e).HTMLElement}function Fi(e){return typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof ct(e).ShadowRoot}function zn(e){let{overflow:t,overflowX:r,overflowY:n,display:i}=ht(e);return/auto|scroll|overlay|hidden|clip/.test(t+n+r)&&!["inline","contents"].includes(i)}function ba(e){return["table","td","th"].includes(rn(e))}function ti(e){let t=ni(),r=ht(e);return r.transform!=="none"||r.perspective!=="none"||(r.containerType?r.containerType!=="normal":!1)||!t&&(r.backdropFilter?r.backdropFilter!=="none":!1)||!t&&(r.filter?r.filter!=="none":!1)||["transform","perspective","filter"].some(n=>(r.willChange||"").includes(n))||["paint","layout","strict","content"].some(n=>(r.contain||"").includes(n))}function ya(e){let t=Tn(e);for(;Tt(t)&&!gr(t);){if(ti(t))return t;t=Tn(t)}return null}function ni(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function gr(e){return["html","body","#document"].includes(rn(e))}function ht(e){return ct(e).getComputedStyle(e)}function br(e){return Nt(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Tn(e){if(rn(e)==="html")return e;let t=e.assignedSlot||e.parentNode||Fi(e)&&e.host||Bt(e);return Fi(t)?t.host:t}function Yi(e){let t=Tn(e);return gr(t)?e.ownerDocument?e.ownerDocument.body:e.body:Tt(t)&&zn(t)?t:Yi(t)}function Vn(e,t,r){var n;t===void 0&&(t=[]),r===void 0&&(r=!0);let i=Yi(e),o=i===((n=e.ownerDocument)==null?void 0:n.body),a=ct(i);return o?t.concat(a,a.visualViewport||[],zn(i)?i:[],a.frameElement&&r?Vn(a.frameElement):[]):t.concat(i,Vn(i,[],r))}function Xi(e){let t=ht(e),r=parseFloat(t.width)||0,n=parseFloat(t.height)||0,i=Tt(e),o=i?e.offsetWidth:r,a=i?e.offsetHeight:n,c=hr(r)!==o||hr(n)!==a;return c&&(r=o,n=a),{width:r,height:n,$:c}}function ri(e){return Nt(e)?e:e.contextElement}function Cn(e){let t=ri(e);if(!Tt(t))return nn(1);let r=t.getBoundingClientRect(),{width:n,height:i,$:o}=Xi(t),a=(o?hr(r.width):r.width)/n,c=(o?hr(r.height):r.height)/i;return(!a||!Number.isFinite(a))&&(a=1),(!c||!Number.isFinite(c))&&(c=1),{x:a,y:c}}var wa=nn(0);function qi(e){let t=ct(e);return!ni()||!t.visualViewport?wa:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function xa(e,t,r){return t===void 0&&(t=!1),!r||t&&r!==ct(e)?!1:t}function vn(e,t,r,n){t===void 0&&(t=!1),r===void 0&&(r=!1);let i=e.getBoundingClientRect(),o=ri(e),a=nn(1);t&&(n?Nt(n)&&(a=Cn(n)):a=Cn(e));let c=xa(o,r,n)?qi(o):nn(0),f=(i.left+c.x)/a.x,u=(i.top+c.y)/a.y,y=i.width/a.x,m=i.height/a.y;if(o){let O=ct(o),S=n&&Nt(n)?ct(n):n,x=O,M=x.frameElement;for(;M&&n&&S!==x;){let I=Cn(M),$=M.getBoundingClientRect(),A=ht(M),N=$.left+(M.clientLeft+parseFloat(A.paddingLeft))*I.x,Y=$.top+(M.clientTop+parseFloat(A.paddingTop))*I.y;f*=I.x,u*=I.y,y*=I.x,m*=I.y,f+=N,u+=Y,x=ct(M),M=x.frameElement}}return Dn({width:y,height:m,x:f,y:u})}var Ea=[":popover-open",":modal"];function Gi(e){return Ea.some(t=>{try{return e.matches(t)}catch{return!1}})}function Oa(e){let{elements:t,rect:r,offsetParent:n,strategy:i}=e,o=i==="fixed",a=Bt(n),c=t?Gi(t.floating):!1;if(n===a||c&&o)return r;let f={scrollLeft:0,scrollTop:0},u=nn(1),y=nn(0),m=Tt(n);if((m||!m&&!o)&&((rn(n)!=="body"||zn(a))&&(f=br(n)),Tt(n))){let O=vn(n);u=Cn(n),y.x=O.x+n.clientLeft,y.y=O.y+n.clientTop}return{width:r.width*u.x,height:r.height*u.y,x:r.x*u.x-f.scrollLeft*u.x+y.x,y:r.y*u.y-f.scrollTop*u.y+y.y}}function Sa(e){return Array.from(e.getClientRects())}function Ki(e){return vn(Bt(e)).left+br(e).scrollLeft}function Aa(e){let t=Bt(e),r=br(e),n=e.ownerDocument.body,i=tt(t.scrollWidth,t.clientWidth,n.scrollWidth,n.clientWidth),o=tt(t.scrollHeight,t.clientHeight,n.scrollHeight,n.clientHeight),a=-r.scrollLeft+Ki(e),c=-r.scrollTop;return ht(n).direction==="rtl"&&(a+=tt(t.clientWidth,n.clientWidth)-i),{width:i,height:o,x:a,y:c}}function Ca(e,t){let r=ct(e),n=Bt(e),i=r.visualViewport,o=n.clientWidth,a=n.clientHeight,c=0,f=0;if(i){o=i.width,a=i.height;let u=ni();(!u||u&&t==="fixed")&&(c=i.offsetLeft,f=i.offsetTop)}return{width:o,height:a,x:c,y:f}}function Da(e,t){let r=vn(e,!0,t==="fixed"),n=r.top+e.clientTop,i=r.left+e.clientLeft,o=Tt(e)?Cn(e):nn(1),a=e.clientWidth*o.x,c=e.clientHeight*o.y,f=i*o.x,u=n*o.y;return{width:a,height:c,x:f,y:u}}function ki(e,t,r){let n;if(t==="viewport")n=Ca(e,r);else if(t==="document")n=Aa(Bt(e));else if(Nt(t))n=Da(t,r);else{let i=qi(e);n={...t,x:t.x-i.x,y:t.y-i.y}}return Dn(n)}function Ji(e,t){let r=Tn(e);return r===t||!Nt(r)||gr(r)?!1:ht(r).position==="fixed"||Ji(r,t)}function _a(e,t){let r=t.get(e);if(r)return r;let n=Vn(e,[],!1).filter(c=>Nt(c)&&rn(c)!=="body"),i=null,o=ht(e).position==="fixed",a=o?Tn(e):e;for(;Nt(a)&&!gr(a);){let c=ht(a),f=ti(a);!f&&c.position==="fixed"&&(i=null),(o?!f&&!i:!f&&c.position==="static"&&!!i&&["absolute","fixed"].includes(i.position)||zn(a)&&!f&&Ji(e,a))?n=n.filter(y=>y!==a):i=c,a=Tn(a)}return t.set(e,n),n}function Ta(e){let{element:t,boundary:r,rootBoundary:n,strategy:i}=e,a=[...r==="clippingAncestors"?_a(t,this._c):[].concat(r),n],c=a[0],f=a.reduce((u,y)=>{let m=ki(t,y,i);return u.top=tt(m.top,u.top),u.right=Et(m.right,u.right),u.bottom=Et(m.bottom,u.bottom),u.left=tt(m.left,u.left),u},ki(t,c,i));return{width:f.right-f.left,height:f.bottom-f.top,x:f.left,y:f.top}}function Pa(e){let{width:t,height:r}=Xi(e);return{width:t,height:r}}function Ma(e,t,r){let n=Tt(t),i=Bt(t),o=r==="fixed",a=vn(e,!0,o,t),c={scrollLeft:0,scrollTop:0},f=nn(0);if(n||!n&&!o)if((rn(t)!=="body"||zn(i))&&(c=br(t)),n){let m=vn(t,!0,o,t);f.x=m.x+t.clientLeft,f.y=m.y+t.clientTop}else i&&(f.x=Ki(i));let u=a.left+c.scrollLeft-f.x,y=a.top+c.scrollTop-f.y;return{x:u,y,width:a.width,height:a.height}}function Ni(e,t){return!Tt(e)||ht(e).position==="fixed"?null:t?t(e):e.offsetParent}function Qi(e,t){let r=ct(e);if(!Tt(e)||Gi(e))return r;let n=Ni(e,t);for(;n&&ba(n)&&ht(n).position==="static";)n=Ni(n,t);return n&&(rn(n)==="html"||rn(n)==="body"&&ht(n).position==="static"&&!ti(n))?r:n||ya(e)||r}var Ra=async function(e){let t=this.getOffsetParent||Qi,r=this.getDimensions;return{reference:Ma(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,...await r(e.floating)}}};function Ia(e){return ht(e).direction==="rtl"}var La={convertOffsetParentRelativeRectToViewportRelativeRect:Oa,getDocumentElement:Bt,getClippingRect:Ta,getOffsetParent:Qi,getElementRects:Ra,getClientRects:Sa,getDimensions:Pa,getScale:Cn,isElement:Nt,isRTL:Ia};function Fa(e,t){let r=null,n,i=Bt(e);function o(){var c;clearTimeout(n),(c=r)==null||c.disconnect(),r=null}function a(c,f){c===void 0&&(c=!1),f===void 0&&(f=1),o();let{left:u,top:y,width:m,height:O}=e.getBoundingClientRect();if(c||t(),!m||!O)return;let S=pr(y),x=pr(i.clientWidth-(u+m)),M=pr(i.clientHeight-(y+O)),I=pr(u),A={rootMargin:-S+"px "+-x+"px "+-M+"px "+-I+"px",threshold:tt(0,Et(1,f))||1},N=!0;function Y(ne){let J=ne[0].intersectionRatio;if(J!==f){if(!N)return a();J?a(!1,J):n=setTimeout(()=>{a(!1,1e-7)},100)}N=!1}try{r=new IntersectionObserver(Y,{...A,root:i.ownerDocument})}catch{r=new IntersectionObserver(Y,A)}r.observe(e)}return a(!0),o}function ji(e,t,r,n){n===void 0&&(n={});let{ancestorScroll:i=!0,ancestorResize:o=!0,elementResize:a=typeof ResizeObserver=="function",layoutShift:c=typeof IntersectionObserver=="function",animationFrame:f=!1}=n,u=ri(e),y=i||o?[...u?Vn(u):[],...Vn(t)]:[];y.forEach($=>{i&&$.addEventListener("scroll",r,{passive:!0}),o&&$.addEventListener("resize",r)});let m=u&&c?Fa(u,r):null,O=-1,S=null;a&&(S=new ResizeObserver($=>{let[A]=$;A&&A.target===u&&S&&(S.unobserve(t),cancelAnimationFrame(O),O=requestAnimationFrame(()=>{var N;(N=S)==null||N.observe(t)})),r()}),u&&!f&&S.observe(u),S.observe(t));let x,M=f?vn(e):null;f&&I();function I(){let $=vn(e);M&&($.x!==M.x||$.y!==M.y||$.width!==M.width||$.height!==M.height)&&r(),M=$,x=requestAnimationFrame(I)}return r(),()=>{var $;y.forEach(A=>{i&&A.removeEventListener("scroll",r),o&&A.removeEventListener("resize",r)}),m?.(),($=S)==null||$.disconnect(),S=null,f&&cancelAnimationFrame(x)}}var ii=fa,Zi=ma,eo=ua,to=ga,no=da,ro=la,io=ha,Bi=(e,t,r)=>{let n=new Map,i={platform:La,...r},o={...i.platform,_c:n};return sa(e,t,{...i,platform:o})},ka=e=>{let t={placement:"bottom",strategy:"absolute",middleware:[]},r=Object.keys(e),n=i=>e[i];return r.includes("offset")&&t.middleware.push(Vi(n("offset"))),r.includes("teleport")&&(t.strategy="fixed"),r.includes("placement")&&(t.placement=n("placement")),r.some(i=>/^auto-?placement$/i.test(i))&&!r.includes("flip")&&t.middleware.push(ii(n("autoPlacement"))),r.includes("flip")&&t.middleware.push(eo(n("flip"))),r.includes("shift")&&t.middleware.push(Zi(n("shift"))),r.includes("inline")&&t.middleware.push(io(n("inline"))),r.includes("arrow")&&t.middleware.push(ro(n("arrow"))),r.includes("hide")&&t.middleware.push(no(n("hide"))),r.includes("size")&&t.middleware.push(to(n("size"))),t},Na=(e,t)=>{let r={component:{trap:!1},float:{placement:"bottom",strategy:"absolute",middleware:[]}},n=i=>e[e.indexOf(i)+1];if(e.includes("trap")&&(r.component.trap=!0),e.includes("teleport")&&(r.float.strategy="fixed"),e.includes("offset")&&r.float.middleware.push(Vi(t.offset||10)),e.includes("placement")&&(r.float.placement=n("placement")),e.some(i=>/^auto-?placement$/i.test(i))&&!e.includes("flip")&&r.float.middleware.push(ii(t.autoPlacement)),e.includes("flip")&&r.float.middleware.push(eo(t.flip)),e.includes("shift")&&r.float.middleware.push(Zi(t.shift)),e.includes("inline")&&r.float.middleware.push(io(t.inline)),e.includes("arrow")&&r.float.middleware.push(ro(t.arrow)),e.includes("hide")&&r.float.middleware.push(no(t.hide)),e.includes("size")){let i=t.size?.availableWidth??null,o=t.size?.availableHeight??null;i&&delete t.size.availableWidth,o&&delete t.size.availableHeight,r.float.middleware.push(to({...t.size,apply({availableWidth:a,availableHeight:c,elements:f}){Object.assign(f.floating.style,{maxWidth:`${i??a}px`,maxHeight:`${o??c}px`})}}))}return r},ja=e=>{var t="0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz".split(""),r="";e||(e=Math.floor(Math.random()*t.length));for(var n=0;n{}){let r=!1;return function(){r?t.apply(this,arguments):(r=!0,e.apply(this,arguments))}}function Ha(e){let t={dismissable:!0,trap:!1};function r(n,i=null){if(n){if(n.hasAttribute("aria-expanded")||n.setAttribute("aria-expanded",!1),i.hasAttribute("id"))n.setAttribute("aria-controls",i.getAttribute("id"));else{let o=`panel-${ja(8)}`;n.setAttribute("aria-controls",o),i.setAttribute("id",o)}i.setAttribute("aria-modal",!0),i.setAttribute("role","dialog")}}e.magic("float",n=>(i={},o={})=>{let a={...t,...o},c=Object.keys(i).length>0?ka(i):{middleware:[ii()]},f=n,u=n.parentElement.closest("[x-data]"),y=u.querySelector('[x-ref="panel"]');r(f,y);function m(){return y.style.display=="block"}function O(){y.style.display="none",f.setAttribute("aria-expanded","false"),a.trap&&y.setAttribute("x-trap","false"),ji(n,y,M)}function S(){y.style.display="block",f.setAttribute("aria-expanded","true"),a.trap&&y.setAttribute("x-trap","true"),M()}function x(){m()?O():S()}async function M(){return await Bi(n,y,c).then(({middlewareData:I,placement:$,x:A,y:N})=>{if(I.arrow){let Y=I.arrow?.x,ne=I.arrow?.y,J=c.middleware.filter(de=>de.name=="arrow")[0].options.element,V={top:"bottom",right:"left",bottom:"top",left:"right"}[$.split("-")[0]];Object.assign(J.style,{left:Y!=null?`${Y}px`:"",top:ne!=null?`${ne}px`:"",right:"",bottom:"",[V]:"-4px"})}if(I.hide){let{referenceHidden:Y}=I.hide;Object.assign(y.style,{visibility:Y?"hidden":"visible"})}Object.assign(y.style,{left:`${A}px`,top:`${N}px`})})}a.dismissable&&(window.addEventListener("click",I=>{!u.contains(I.target)&&m()&&x()}),window.addEventListener("keydown",I=>{I.key==="Escape"&&m()&&x()},!0)),x()}),e.directive("float",(n,{modifiers:i,expression:o},{evaluate:a,effect:c})=>{let f=o?a(o):{},u=i.length>0?Na(i,f):{},y=null;u.float.strategy=="fixed"&&(n.style.position="fixed");let m=V=>n.parentElement&&!n.parentElement.closest("[x-data]").contains(V.target)?n.close():null,O=V=>V.key==="Escape"?n.close():null,S=n.getAttribute("x-ref"),x=n.parentElement.closest("[x-data]"),M=x.querySelectorAll(`[\\@click^="$refs.${S}"]`),I=x.querySelectorAll(`[x-on\\:click^="$refs.${S}"]`);n.style.setProperty("display","none"),r([...M,...I][0],n),n._x_isShown=!1,n.trigger=null,n._x_doHide||(n._x_doHide=()=>{n.style.setProperty("display","none",i.includes("important")?"important":void 0)}),n._x_doShow||(n._x_doShow=()=>{n.style.setProperty("display","block",i.includes("important")?"important":void 0)});let $=()=>{n._x_doHide(),n._x_isShown=!1},A=()=>{n._x_doShow(),n._x_isShown=!0},N=()=>setTimeout(A),Y=Ba(V=>V?A():$(),V=>{typeof n._x_toggleAndCascadeWithTransitions=="function"?n._x_toggleAndCascadeWithTransitions(n,V,A,$):V?N():$()}),ne,J=!0;c(()=>a(V=>{!J&&V===ne||(i.includes("immediate")&&(V?N():$()),Y(V),ne=V,J=!1)})),n.open=async function(V){n.trigger=V.currentTarget?V.currentTarget:V,Y(!0),n.trigger.setAttribute("aria-expanded","true"),u.component.trap&&n.setAttribute("x-trap","true"),y=ji(n.trigger,n,()=>{Bi(n.trigger,n,u.float).then(({middlewareData:de,placement:X,x:Q,y:me})=>{if(de.arrow){let l=de.arrow?.x,h=de.arrow?.y,v=u.float.middleware.filter(j=>j.name=="arrow")[0].options.element,p={top:"bottom",right:"left",bottom:"top",left:"right"}[X.split("-")[0]];Object.assign(v.style,{left:l!=null?`${l}px`:"",top:h!=null?`${h}px`:"",right:"",bottom:"",[p]:"-4px"})}if(de.hide){let{referenceHidden:l}=de.hide;Object.assign(n.style,{visibility:l?"hidden":"visible"})}Object.assign(n.style,{left:`${Q}px`,top:`${me}px`})})}),window.addEventListener("click",m),window.addEventListener("keydown",O,!0)},n.close=function(){if(!n._x_isShown)return!1;Y(!1),n.trigger.setAttribute("aria-expanded","false"),u.component.trap&&n.setAttribute("x-trap","false"),y(),window.removeEventListener("click",m),window.removeEventListener("keydown",O,!1)},n.toggle=function(V){n._x_isShown?n.close():n.open(V)}})}var oo=Ha;function $a(e){e.store("lazyLoadedAssets",{loaded:new Set,check(a){return Array.isArray(a)?a.every(c=>this.loaded.has(c)):this.loaded.has(a)},markLoaded(a){Array.isArray(a)?a.forEach(c=>this.loaded.add(c)):this.loaded.add(a)}});let t=a=>new CustomEvent(a,{bubbles:!0,composed:!0,cancelable:!0}),r=(a,c={},f,u)=>{let y=document.createElement(a);return Object.entries(c).forEach(([m,O])=>y[m]=O),f&&(u?f.insertBefore(y,u):f.appendChild(y)),y},n=(a,c,f={},u=null,y=null)=>{let m=a==="link"?`link[href="${c}"]`:`script[src="${c}"]`;if(document.querySelector(m)||e.store("lazyLoadedAssets").check(c))return Promise.resolve();let O=a==="link"?{...f,href:c}:{...f,src:c},S=r(a,O,u,y);return new Promise((x,M)=>{S.onload=()=>{e.store("lazyLoadedAssets").markLoaded(c),x()},S.onerror=()=>{M(new Error(`Failed to load ${a}: ${c}`))}})},i=async(a,c,f=null,u=null)=>{let y={type:"text/css",rel:"stylesheet"};c&&(y.media=c);let m=document.head,O=null;if(f&&u){let S=document.querySelector(`link[href*="${u}"]`);S?(m=S.parentElement,O=f==="before"?S:S.nextSibling):(console.warn(`Target (${u}) not found for ${a}. Appending to head.`),m=document.head,O=null)}await n("link",a,y,m,O)},o=async(a,c,f=null,u=null,y=null)=>{let m=document.head,O=null;if(f&&u){let x=document.querySelector(`script[src*="${u}"]`);x?(m=x.parentElement,O=f==="before"?x:x.nextSibling):(console.warn(`Target (${u}) not found for ${a}. Falling back to head or body.`),m=document.head,O=null)}else(c.has("body-start")||c.has("body-end"))&&(m=document.body,c.has("body-start")&&(O=document.body.firstChild));let S={};y&&(S.type="module"),await n("script",a,S,m,O)};e.directive("load-css",(a,{expression:c},{evaluate:f})=>{let u=f(c),y=a.media,m=a.getAttribute("data-dispatch"),O=a.getAttribute("data-css-before")?"before":a.getAttribute("data-css-after")?"after":null,S=a.getAttribute("data-css-before")||a.getAttribute("data-css-after")||null;Promise.all(u.map(x=>i(x,y,O,S))).then(()=>{m&&window.dispatchEvent(t(`${m}-css`))}).catch(console.error)}),e.directive("load-js",(a,{expression:c,modifiers:f},{evaluate:u})=>{let y=u(c),m=new Set(f),O=a.getAttribute("data-js-before")?"before":a.getAttribute("data-js-after")?"after":null,S=a.getAttribute("data-js-before")||a.getAttribute("data-js-after")||null,x=a.getAttribute("data-js-as-module")||a.getAttribute("data-as-module")||!1,M=a.getAttribute("data-dispatch");Promise.all(y.map(I=>o(I,m,O,S,x))).then(()=>{M&&window.dispatchEvent(t(`${M}-js`))}).catch(console.error)})}var ao=$a;function Wa(){return!0}function Ua({component:e,argument:t}){return new Promise(r=>{if(t)window.addEventListener(t,()=>r(),{once:!0});else{let n=i=>{i.detail.id===e.id&&(window.removeEventListener("async-alpine:load",n),r())};window.addEventListener("async-alpine:load",n)}})}function Va(){return new Promise(e=>{"requestIdleCallback"in window?window.requestIdleCallback(e):setTimeout(e,200)})}function za({argument:e}){return new Promise(t=>{if(!e)return console.log("Async Alpine: media strategy requires a media query. Treating as 'eager'"),t();let r=window.matchMedia(`(${e})`);r.matches?t():r.addEventListener("change",t,{once:!0})})}function Ya({component:e,argument:t}){return new Promise(r=>{let n=t||"0px 0px 0px 0px",i=new IntersectionObserver(o=>{o[0].isIntersecting&&(i.disconnect(),r())},{rootMargin:n});i.observe(e.el)})}var so={eager:Wa,event:Ua,idle:Va,media:za,visible:Ya};async function Xa(e){let t=qa(e.strategy);await oi(e,t)}async function oi(e,t){if(t.type==="expression"){if(t.operator==="&&")return Promise.all(t.parameters.map(r=>oi(e,r)));if(t.operator==="||")return Promise.any(t.parameters.map(r=>oi(e,r)))}return so[t.method]?so[t.method]({component:e,argument:t.argument}):!1}function qa(e){let t=Ga(e),r=co(t);return r.type==="method"?{type:"expression",operator:"&&",parameters:[r]}:r}function Ga(e){let t=/\s*([()])\s*|\s*(\|\||&&|\|)\s*|\s*((?:[^()&|]+\([^()]+\))|[^()&|]+)\s*/g,r=[],n;for(;(n=t.exec(e))!==null;){let[i,o,a,c]=n;if(o!==void 0)r.push({type:"parenthesis",value:o});else if(a!==void 0)r.push({type:"operator",value:a==="|"?"&&":a});else{let f={type:"method",method:c.trim()};c.includes("(")&&(f.method=c.substring(0,c.indexOf("(")).trim(),f.argument=c.substring(c.indexOf("(")+1,c.indexOf(")"))),c.method==="immediate"&&(c.method="eager"),r.push(f)}}return r}function co(e){let t=lo(e);for(;e.length>0&&(e[0].value==="&&"||e[0].value==="|"||e[0].value==="||");){let r=e.shift().value,n=lo(e);t.type==="expression"&&t.operator===r?t.parameters.push(n):t={type:"expression",operator:r,parameters:[t,n]}}return t}function lo(e){if(e[0].value==="("){e.shift();let t=co(e);return e[0].value===")"&&e.shift(),t}else return e.shift()}function fo(e){let t="load",r=e.prefixed("load-src"),n=e.prefixed("ignore"),i={defaultStrategy:"eager",keepRelativeURLs:!1},o=!1,a={},c=0;function f(){return c++}e.asyncOptions=A=>{i={...i,...A}},e.asyncData=(A,N=!1)=>{a[A]={loaded:!1,download:N}},e.asyncUrl=(A,N)=>{!A||!N||a[A]||(a[A]={loaded:!1,download:()=>import($(N))})},e.asyncAlias=A=>{o=A};let u=A=>{e.skipDuringClone(()=>{A._x_async||(A._x_async="init",A._x_ignore=!0,A.setAttribute(n,""))})()},y=async A=>{e.skipDuringClone(async()=>{if(A._x_async!=="init")return;A._x_async="await";let{name:N,strategy:Y}=m(A);await Xa({name:N,strategy:Y,el:A,id:A.id||f()}),A.isConnected&&(await O(N),A.isConnected&&(x(A),A._x_async="loaded"))})()};y.inline=u,e.directive(t,y).before("ignore");function m(A){let N=I(A.getAttribute(e.prefixed("data"))),Y=A.getAttribute(e.prefixed(t))||i.defaultStrategy,ne=A.getAttribute(r);return ne&&e.asyncUrl(N,ne),{name:N,strategy:Y}}async function O(A){if(A.startsWith("_x_async_")||(M(A),!a[A]||a[A].loaded))return;let N=await S(A);e.data(A,N),a[A].loaded=!0}async function S(A){if(!a[A])return;let N=await a[A].download(A);return typeof N=="function"?N:N[A]||N.default||Object.values(N)[0]||!1}function x(A){e.destroyTree(A),A._x_ignore=!1,A.removeAttribute(n),!A.closest(`[${n}]`)&&e.initTree(A)}function M(A){if(!(!o||a[A])){if(typeof o=="function"){e.asyncData(A,o);return}e.asyncUrl(A,o.replaceAll("[name]",A))}}function I(A){return(A||"").trim().split(/[({]/g)[0]||`_x_async_${f()}`}function $(A){return i.keepRelativeURLs||new RegExp("^(?:[a-z+]+:)?//","i").test(A)?A:new URL(A,document.baseURI).href}}var Xo=ea(ho(),1);function vo(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),r.push.apply(r,n)}return r}function Mt(e){for(var t=1;t=0)&&(r[i]=e[i]);return r}function Qa(e,t){if(e==null)return{};var r=Ja(e,t),n,i;if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}var Za="1.15.6";function Ht(e){if(typeof window<"u"&&window.navigator)return!!navigator.userAgent.match(e)}var Wt=Ht(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i),er=Ht(/Edge/i),mo=Ht(/firefox/i),Gn=Ht(/safari/i)&&!Ht(/chrome/i)&&!Ht(/android/i),yi=Ht(/iP(ad|od|hone)/i),So=Ht(/chrome/i)&&Ht(/android/i),Ao={capture:!1,passive:!1};function Oe(e,t,r){e.addEventListener(t,r,!Wt&&Ao)}function Ee(e,t,r){e.removeEventListener(t,r,!Wt&&Ao)}function Tr(e,t){if(t){if(t[0]===">"&&(t=t.substring(1)),e)try{if(e.matches)return e.matches(t);if(e.msMatchesSelector)return e.msMatchesSelector(t);if(e.webkitMatchesSelector)return e.webkitMatchesSelector(t)}catch{return!1}return!1}}function Co(e){return e.host&&e!==document&&e.host.nodeType?e.host:e.parentNode}function St(e,t,r,n){if(e){r=r||document;do{if(t!=null&&(t[0]===">"?e.parentNode===r&&Tr(e,t):Tr(e,t))||n&&e===r)return e;if(e===r)break}while(e=Co(e))}return null}var go=/\s+/g;function ft(e,t,r){if(e&&t)if(e.classList)e.classList[r?"add":"remove"](t);else{var n=(" "+e.className+" ").replace(go," ").replace(" "+t+" "," ");e.className=(n+(r?" "+t:"")).replace(go," ")}}function ae(e,t,r){var n=e&&e.style;if(n){if(r===void 0)return document.defaultView&&document.defaultView.getComputedStyle?r=document.defaultView.getComputedStyle(e,""):e.currentStyle&&(r=e.currentStyle),t===void 0?r:r[t];!(t in n)&&t.indexOf("webkit")===-1&&(t="-webkit-"+t),n[t]=r+(typeof r=="string"?"":"px")}}function Fn(e,t){var r="";if(typeof e=="string")r=e;else do{var n=ae(e,"transform");n&&n!=="none"&&(r=n+" "+r)}while(!t&&(e=e.parentNode));var i=window.DOMMatrix||window.WebKitCSSMatrix||window.CSSMatrix||window.MSCSSMatrix;return i&&new i(r)}function Do(e,t,r){if(e){var n=e.getElementsByTagName(t),i=0,o=n.length;if(r)for(;i=o:a=i<=o,!a)return n;if(n===Pt())break;n=sn(n,!1)}return!1}function kn(e,t,r,n){for(var i=0,o=0,a=e.children;o2&&arguments[2]!==void 0?arguments[2]:{},i=n.evt,o=Qa(n,ss);tr.pluginEvent.bind(se)(t,r,Mt({dragEl:k,parentEl:Ve,ghostEl:ue,rootEl:Ne,nextEl:bn,lastDownEl:Ar,cloneEl:We,cloneHidden:an,dragStarted:Yn,putSortable:Qe,activeSortable:se.active,originalEvent:i,oldIndex:Ln,oldDraggableIndex:Jn,newIndex:ut,newDraggableIndex:on,hideGhostForTarget:Fo,unhideGhostForTarget:ko,cloneNowHidden:function(){an=!0},cloneNowShown:function(){an=!1},dispatchSortableEvent:function(c){it({sortable:r,name:c,originalEvent:i})}},o))};function it(e){as(Mt({putSortable:Qe,cloneEl:We,targetEl:k,rootEl:Ne,oldIndex:Ln,oldDraggableIndex:Jn,newIndex:ut,newDraggableIndex:on},e))}var k,Ve,ue,Ne,bn,Ar,We,an,Ln,ut,Jn,on,wr,Qe,In=!1,Pr=!1,Mr=[],mn,Ot,li,ci,wo,xo,Yn,Rn,Qn,Zn=!1,xr=!1,Cr,nt,fi=[],vi=!1,Rr=[],Lr=typeof document<"u",Er=yi,Eo=er||Wt?"cssFloat":"float",ls=Lr&&!So&&!yi&&"draggable"in document.createElement("div"),Ro=(function(){if(Lr){if(Wt)return!1;var e=document.createElement("x");return e.style.cssText="pointer-events:auto",e.style.pointerEvents==="auto"}})(),Io=function(t,r){var n=ae(t),i=parseInt(n.width)-parseInt(n.paddingLeft)-parseInt(n.paddingRight)-parseInt(n.borderLeftWidth)-parseInt(n.borderRightWidth),o=kn(t,0,r),a=kn(t,1,r),c=o&&ae(o),f=a&&ae(a),u=c&&parseInt(c.marginLeft)+parseInt(c.marginRight)+qe(o).width,y=f&&parseInt(f.marginLeft)+parseInt(f.marginRight)+qe(a).width;if(n.display==="flex")return n.flexDirection==="column"||n.flexDirection==="column-reverse"?"vertical":"horizontal";if(n.display==="grid")return n.gridTemplateColumns.split(" ").length<=1?"vertical":"horizontal";if(o&&c.float&&c.float!=="none"){var m=c.float==="left"?"left":"right";return a&&(f.clear==="both"||f.clear===m)?"vertical":"horizontal"}return o&&(c.display==="block"||c.display==="flex"||c.display==="table"||c.display==="grid"||u>=i&&n[Eo]==="none"||a&&n[Eo]==="none"&&u+y>i)?"vertical":"horizontal"},cs=function(t,r,n){var i=n?t.left:t.top,o=n?t.right:t.bottom,a=n?t.width:t.height,c=n?r.left:r.top,f=n?r.right:r.bottom,u=n?r.width:r.height;return i===c||o===f||i+a/2===c+u/2},fs=function(t,r){var n;return Mr.some(function(i){var o=i[st].options.emptyInsertThreshold;if(!(!o||wi(i))){var a=qe(i),c=t>=a.left-o&&t<=a.right+o,f=r>=a.top-o&&r<=a.bottom+o;if(c&&f)return n=i}}),n},Lo=function(t){function r(o,a){return function(c,f,u,y){var m=c.options.group.name&&f.options.group.name&&c.options.group.name===f.options.group.name;if(o==null&&(a||m))return!0;if(o==null||o===!1)return!1;if(a&&o==="clone")return o;if(typeof o=="function")return r(o(c,f,u,y),a)(c,f,u,y);var O=(a?c:f).options.group.name;return o===!0||typeof o=="string"&&o===O||o.join&&o.indexOf(O)>-1}}var n={},i=t.group;(!i||Sr(i)!="object")&&(i={name:i}),n.name=i.name,n.checkPull=r(i.pull,!0),n.checkPut=r(i.put),n.revertClone=i.revertClone,t.group=n},Fo=function(){!Ro&&ue&&ae(ue,"display","none")},ko=function(){!Ro&&ue&&ae(ue,"display","")};Lr&&!So&&document.addEventListener("click",function(e){if(Pr)return e.preventDefault(),e.stopPropagation&&e.stopPropagation(),e.stopImmediatePropagation&&e.stopImmediatePropagation(),Pr=!1,!1},!0);var gn=function(t){if(k){t=t.touches?t.touches[0]:t;var r=fs(t.clientX,t.clientY);if(r){var n={};for(var i in t)t.hasOwnProperty(i)&&(n[i]=t[i]);n.target=n.rootEl=r,n.preventDefault=void 0,n.stopPropagation=void 0,r[st]._onDragOver(n)}}},us=function(t){k&&k.parentNode[st]._isOutsideThisEl(t.target)};function se(e,t){if(!(e&&e.nodeType&&e.nodeType===1))throw"Sortable: `el` must be an HTMLElement, not ".concat({}.toString.call(e));this.el=e,this.options=t=$t({},t),e[st]=this;var r={group:null,sort:!0,disabled:!1,store:null,handle:null,draggable:/^[uo]l$/i.test(e.nodeName)?">li":">*",swapThreshold:1,invertSwap:!1,invertedSwapThreshold:null,removeCloneOnHide:!0,direction:function(){return Io(e,this.options)},ghostClass:"sortable-ghost",chosenClass:"sortable-chosen",dragClass:"sortable-drag",ignore:"a, img",filter:null,preventOnFilter:!0,animation:0,easing:null,setData:function(a,c){a.setData("Text",c.textContent)},dropBubble:!1,dragoverBubble:!1,dataIdAttr:"data-id",delay:0,delayOnTouchOnly:!1,touchStartThreshold:(Number.parseInt?Number:window).parseInt(window.devicePixelRatio,10)||1,forceFallback:!1,fallbackClass:"sortable-fallback",fallbackOnBody:!1,fallbackTolerance:0,fallbackOffset:{x:0,y:0},supportPointer:se.supportPointer!==!1&&"PointerEvent"in window&&(!Gn||yi),emptyInsertThreshold:5};tr.initializePlugins(this,e,r);for(var n in r)!(n in t)&&(t[n]=r[n]);Lo(t);for(var i in this)i.charAt(0)==="_"&&typeof this[i]=="function"&&(this[i]=this[i].bind(this));this.nativeDraggable=t.forceFallback?!1:ls,this.nativeDraggable&&(this.options.touchStartThreshold=1),t.supportPointer?Oe(e,"pointerdown",this._onTapStart):(Oe(e,"mousedown",this._onTapStart),Oe(e,"touchstart",this._onTapStart)),this.nativeDraggable&&(Oe(e,"dragover",this),Oe(e,"dragenter",this)),Mr.push(this.el),t.store&&t.store.get&&this.sort(t.store.get(this)||[]),$t(this,rs())}se.prototype={constructor:se,_isOutsideThisEl:function(t){!this.el.contains(t)&&t!==this.el&&(Rn=null)},_getDirection:function(t,r){return typeof this.options.direction=="function"?this.options.direction.call(this,t,r,k):this.options.direction},_onTapStart:function(t){if(t.cancelable){var r=this,n=this.el,i=this.options,o=i.preventOnFilter,a=t.type,c=t.touches&&t.touches[0]||t.pointerType&&t.pointerType==="touch"&&t,f=(c||t).target,u=t.target.shadowRoot&&(t.path&&t.path[0]||t.composedPath&&t.composedPath()[0])||f,y=i.filter;if(ys(n),!k&&!(/mousedown|pointerdown/.test(a)&&t.button!==0||i.disabled)&&!u.isContentEditable&&!(!this.nativeDraggable&&Gn&&f&&f.tagName.toUpperCase()==="SELECT")&&(f=St(f,i.draggable,n,!1),!(f&&f.animated)&&Ar!==f)){if(Ln=vt(f),Jn=vt(f,i.draggable),typeof y=="function"){if(y.call(this,t,f,this)){it({sortable:r,rootEl:u,name:"filter",targetEl:f,toEl:n,fromEl:n}),at("filter",r,{evt:t}),o&&t.preventDefault();return}}else if(y&&(y=y.split(",").some(function(m){if(m=St(u,m.trim(),n,!1),m)return it({sortable:r,rootEl:m,name:"filter",targetEl:f,fromEl:n,toEl:n}),at("filter",r,{evt:t}),!0}),y)){o&&t.preventDefault();return}i.handle&&!St(u,i.handle,n,!1)||this._prepareDragStart(t,c,f)}}},_prepareDragStart:function(t,r,n){var i=this,o=i.el,a=i.options,c=o.ownerDocument,f;if(n&&!k&&n.parentNode===o){var u=qe(n);if(Ne=o,k=n,Ve=k.parentNode,bn=k.nextSibling,Ar=n,wr=a.group,se.dragged=k,mn={target:k,clientX:(r||t).clientX,clientY:(r||t).clientY},wo=mn.clientX-u.left,xo=mn.clientY-u.top,this._lastX=(r||t).clientX,this._lastY=(r||t).clientY,k.style["will-change"]="all",f=function(){if(at("delayEnded",i,{evt:t}),se.eventCanceled){i._onDrop();return}i._disableDelayedDragEvents(),!mo&&i.nativeDraggable&&(k.draggable=!0),i._triggerDragStart(t,r),it({sortable:i,name:"choose",originalEvent:t}),ft(k,a.chosenClass,!0)},a.ignore.split(",").forEach(function(y){Do(k,y.trim(),ui)}),Oe(c,"dragover",gn),Oe(c,"mousemove",gn),Oe(c,"touchmove",gn),a.supportPointer?(Oe(c,"pointerup",i._onDrop),!this.nativeDraggable&&Oe(c,"pointercancel",i._onDrop)):(Oe(c,"mouseup",i._onDrop),Oe(c,"touchend",i._onDrop),Oe(c,"touchcancel",i._onDrop)),mo&&this.nativeDraggable&&(this.options.touchStartThreshold=4,k.draggable=!0),at("delayStart",this,{evt:t}),a.delay&&(!a.delayOnTouchOnly||r)&&(!this.nativeDraggable||!(er||Wt))){if(se.eventCanceled){this._onDrop();return}a.supportPointer?(Oe(c,"pointerup",i._disableDelayedDrag),Oe(c,"pointercancel",i._disableDelayedDrag)):(Oe(c,"mouseup",i._disableDelayedDrag),Oe(c,"touchend",i._disableDelayedDrag),Oe(c,"touchcancel",i._disableDelayedDrag)),Oe(c,"mousemove",i._delayedDragTouchMoveHandler),Oe(c,"touchmove",i._delayedDragTouchMoveHandler),a.supportPointer&&Oe(c,"pointermove",i._delayedDragTouchMoveHandler),i._dragStartTimer=setTimeout(f,a.delay)}else f()}},_delayedDragTouchMoveHandler:function(t){var r=t.touches?t.touches[0]:t;Math.max(Math.abs(r.clientX-this._lastX),Math.abs(r.clientY-this._lastY))>=Math.floor(this.options.touchStartThreshold/(this.nativeDraggable&&window.devicePixelRatio||1))&&this._disableDelayedDrag()},_disableDelayedDrag:function(){k&&ui(k),clearTimeout(this._dragStartTimer),this._disableDelayedDragEvents()},_disableDelayedDragEvents:function(){var t=this.el.ownerDocument;Ee(t,"mouseup",this._disableDelayedDrag),Ee(t,"touchend",this._disableDelayedDrag),Ee(t,"touchcancel",this._disableDelayedDrag),Ee(t,"pointerup",this._disableDelayedDrag),Ee(t,"pointercancel",this._disableDelayedDrag),Ee(t,"mousemove",this._delayedDragTouchMoveHandler),Ee(t,"touchmove",this._delayedDragTouchMoveHandler),Ee(t,"pointermove",this._delayedDragTouchMoveHandler)},_triggerDragStart:function(t,r){r=r||t.pointerType=="touch"&&t,!this.nativeDraggable||r?this.options.supportPointer?Oe(document,"pointermove",this._onTouchMove):r?Oe(document,"touchmove",this._onTouchMove):Oe(document,"mousemove",this._onTouchMove):(Oe(k,"dragend",this),Oe(Ne,"dragstart",this._onDragStart));try{document.selection?Dr(function(){document.selection.empty()}):window.getSelection().removeAllRanges()}catch{}},_dragStarted:function(t,r){if(In=!1,Ne&&k){at("dragStarted",this,{evt:r}),this.nativeDraggable&&Oe(document,"dragover",us);var n=this.options;!t&&ft(k,n.dragClass,!1),ft(k,n.ghostClass,!0),se.active=this,t&&this._appendGhost(),it({sortable:this,name:"start",originalEvent:r})}else this._nulling()},_emulateDragOver:function(){if(Ot){this._lastX=Ot.clientX,this._lastY=Ot.clientY,Fo();for(var t=document.elementFromPoint(Ot.clientX,Ot.clientY),r=t;t&&t.shadowRoot&&(t=t.shadowRoot.elementFromPoint(Ot.clientX,Ot.clientY),t!==r);)r=t;if(k.parentNode[st]._isOutsideThisEl(t),r)do{if(r[st]){var n=void 0;if(n=r[st]._onDragOver({clientX:Ot.clientX,clientY:Ot.clientY,target:t,rootEl:r}),n&&!this.options.dragoverBubble)break}t=r}while(r=Co(r));ko()}},_onTouchMove:function(t){if(mn){var r=this.options,n=r.fallbackTolerance,i=r.fallbackOffset,o=t.touches?t.touches[0]:t,a=ue&&Fn(ue,!0),c=ue&&a&&a.a,f=ue&&a&&a.d,u=Er&&nt&&yo(nt),y=(o.clientX-mn.clientX+i.x)/(c||1)+(u?u[0]-fi[0]:0)/(c||1),m=(o.clientY-mn.clientY+i.y)/(f||1)+(u?u[1]-fi[1]:0)/(f||1);if(!se.active&&!In){if(n&&Math.max(Math.abs(o.clientX-this._lastX),Math.abs(o.clientY-this._lastY))=0&&(it({rootEl:Ve,name:"add",toEl:Ve,fromEl:Ne,originalEvent:t}),it({sortable:this,name:"remove",toEl:Ve,originalEvent:t}),it({rootEl:Ve,name:"sort",toEl:Ve,fromEl:Ne,originalEvent:t}),it({sortable:this,name:"sort",toEl:Ve,originalEvent:t})),Qe&&Qe.save()):ut!==Ln&&ut>=0&&(it({sortable:this,name:"update",toEl:Ve,originalEvent:t}),it({sortable:this,name:"sort",toEl:Ve,originalEvent:t})),se.active&&((ut==null||ut===-1)&&(ut=Ln,on=Jn),it({sortable:this,name:"end",toEl:Ve,originalEvent:t}),this.save()))),this._nulling()},_nulling:function(){at("nulling",this),Ne=k=Ve=ue=bn=We=Ar=an=mn=Ot=Yn=ut=on=Ln=Jn=Rn=Qn=Qe=wr=se.dragged=se.ghost=se.clone=se.active=null,Rr.forEach(function(t){t.checked=!0}),Rr.length=li=ci=0},handleEvent:function(t){switch(t.type){case"drop":case"dragend":this._onDrop(t);break;case"dragenter":case"dragover":k&&(this._onDragOver(t),ds(t));break;case"selectstart":t.preventDefault();break}},toArray:function(){for(var t=[],r,n=this.el.children,i=0,o=n.length,a=this.options;ii.right+o||e.clientY>n.bottom&&e.clientX>n.left:e.clientY>i.bottom+o||e.clientX>n.right&&e.clientY>n.top}function ms(e,t,r,n,i,o,a,c){var f=n?e.clientY:e.clientX,u=n?r.height:r.width,y=n?r.top:r.left,m=n?r.bottom:r.right,O=!1;if(!a){if(c&&Cry+u*o/2:fm-Cr)return-Qn}else if(f>y+u*(1-i)/2&&fm-u*o/2)?f>y+u/2?1:-1:0}function gs(e){return vt(k){e.directive("sortable",t=>{let r=parseInt(t.dataset?.sortableAnimationDuration);r!==0&&!r&&(r=300),t.sortable=Oi.create(t,{group:t.getAttribute("x-sortable-group"),draggable:"[x-sortable-item]",handle:"[x-sortable-handle]",dataIdAttr:"x-sortable-item",animation:r,ghostClass:"fi-sortable-ghost",onEnd(n){let{item:i,to:o,oldDraggableIndex:a,newDraggableIndex:c}=n;if(a===c)return;let f=this.options.draggable,u=o.querySelectorAll(`:scope > ${f}`)[c-1];u&&o.insertBefore(i,u.nextSibling)}})})};var xs=Object.create,Ci=Object.defineProperty,Es=Object.getPrototypeOf,Os=Object.prototype.hasOwnProperty,Ss=Object.getOwnPropertyNames,As=Object.getOwnPropertyDescriptor,Cs=e=>Ci(e,"__esModule",{value:!0}),Bo=(e,t)=>()=>(t||(t={exports:{}},e(t.exports,t)),t.exports),Ds=(e,t,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of Ss(t))!Os.call(e,n)&&n!=="default"&&Ci(e,n,{get:()=>t[n],enumerable:!(r=As(t,n))||r.enumerable});return e},Ho=e=>Ds(Cs(Ci(e!=null?xs(Es(e)):{},"default",e&&e.__esModule&&"default"in e?{get:()=>e.default,enumerable:!0}:{value:e,enumerable:!0})),e),_s=Bo(e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});function t(d){var s=d.getBoundingClientRect();return{width:s.width,height:s.height,top:s.top,right:s.right,bottom:s.bottom,left:s.left,x:s.left,y:s.top}}function r(d){if(d==null)return window;if(d.toString()!=="[object Window]"){var s=d.ownerDocument;return s&&s.defaultView||window}return d}function n(d){var s=r(d),b=s.pageXOffset,_=s.pageYOffset;return{scrollLeft:b,scrollTop:_}}function i(d){var s=r(d).Element;return d instanceof s||d instanceof Element}function o(d){var s=r(d).HTMLElement;return d instanceof s||d instanceof HTMLElement}function a(d){if(typeof ShadowRoot>"u")return!1;var s=r(d).ShadowRoot;return d instanceof s||d instanceof ShadowRoot}function c(d){return{scrollLeft:d.scrollLeft,scrollTop:d.scrollTop}}function f(d){return d===r(d)||!o(d)?n(d):c(d)}function u(d){return d?(d.nodeName||"").toLowerCase():null}function y(d){return((i(d)?d.ownerDocument:d.document)||window.document).documentElement}function m(d){return t(y(d)).left+n(d).scrollLeft}function O(d){return r(d).getComputedStyle(d)}function S(d){var s=O(d),b=s.overflow,_=s.overflowX,T=s.overflowY;return/auto|scroll|overlay|hidden/.test(b+T+_)}function x(d,s,b){b===void 0&&(b=!1);var _=y(s),T=t(d),F=o(s),U={scrollLeft:0,scrollTop:0},H={x:0,y:0};return(F||!F&&!b)&&((u(s)!=="body"||S(_))&&(U=f(s)),o(s)?(H=t(s),H.x+=s.clientLeft,H.y+=s.clientTop):_&&(H.x=m(_))),{x:T.left+U.scrollLeft-H.x,y:T.top+U.scrollTop-H.y,width:T.width,height:T.height}}function M(d){var s=t(d),b=d.offsetWidth,_=d.offsetHeight;return Math.abs(s.width-b)<=1&&(b=s.width),Math.abs(s.height-_)<=1&&(_=s.height),{x:d.offsetLeft,y:d.offsetTop,width:b,height:_}}function I(d){return u(d)==="html"?d:d.assignedSlot||d.parentNode||(a(d)?d.host:null)||y(d)}function $(d){return["html","body","#document"].indexOf(u(d))>=0?d.ownerDocument.body:o(d)&&S(d)?d:$(I(d))}function A(d,s){var b;s===void 0&&(s=[]);var _=$(d),T=_===((b=d.ownerDocument)==null?void 0:b.body),F=r(_),U=T?[F].concat(F.visualViewport||[],S(_)?_:[]):_,H=s.concat(U);return T?H:H.concat(A(I(U)))}function N(d){return["table","td","th"].indexOf(u(d))>=0}function Y(d){return!o(d)||O(d).position==="fixed"?null:d.offsetParent}function ne(d){var s=navigator.userAgent.toLowerCase().indexOf("firefox")!==-1,b=navigator.userAgent.indexOf("Trident")!==-1;if(b&&o(d)){var _=O(d);if(_.position==="fixed")return null}for(var T=I(d);o(T)&&["html","body"].indexOf(u(T))<0;){var F=O(T);if(F.transform!=="none"||F.perspective!=="none"||F.contain==="paint"||["transform","perspective"].indexOf(F.willChange)!==-1||s&&F.willChange==="filter"||s&&F.filter&&F.filter!=="none")return T;T=T.parentNode}return null}function J(d){for(var s=r(d),b=Y(d);b&&N(b)&&O(b).position==="static";)b=Y(b);return b&&(u(b)==="html"||u(b)==="body"&&O(b).position==="static")?s:b||ne(d)||s}var V="top",de="bottom",X="right",Q="left",me="auto",l=[V,de,X,Q],h="start",v="end",p="clippingParents",j="viewport",P="popper",R="reference",Z=l.reduce(function(d,s){return d.concat([s+"-"+h,s+"-"+v])},[]),ze=[].concat(l,[me]).reduce(function(d,s){return d.concat([s,s+"-"+h,s+"-"+v])},[]),Rt="beforeRead",Ut="read",Fr="afterRead",kr="beforeMain",Nr="main",Vt="afterMain",nr="beforeWrite",jr="write",rr="afterWrite",It=[Rt,Ut,Fr,kr,Nr,Vt,nr,jr,rr];function Br(d){var s=new Map,b=new Set,_=[];d.forEach(function(F){s.set(F.name,F)});function T(F){b.add(F.name);var U=[].concat(F.requires||[],F.requiresIfExists||[]);U.forEach(function(H){if(!b.has(H)){var G=s.get(H);G&&T(G)}}),_.push(F)}return d.forEach(function(F){b.has(F.name)||T(F)}),_}function mt(d){var s=Br(d);return It.reduce(function(b,_){return b.concat(s.filter(function(T){return T.phase===_}))},[])}function zt(d){var s;return function(){return s||(s=new Promise(function(b){Promise.resolve().then(function(){s=void 0,b(d())})})),s}}function At(d){for(var s=arguments.length,b=new Array(s>1?s-1:0),_=1;_=0,_=b&&o(d)?J(d):d;return i(_)?s.filter(function(T){return i(T)&&Nn(T,_)&&u(T)!=="body"}):[]}function wn(d,s,b){var _=s==="clippingParents"?yn(d):[].concat(s),T=[].concat(_,[b]),F=T[0],U=T.reduce(function(H,G){var oe=sr(d,G);return H.top=gt(oe.top,H.top),H.right=ln(oe.right,H.right),H.bottom=ln(oe.bottom,H.bottom),H.left=gt(oe.left,H.left),H},sr(d,F));return U.width=U.right-U.left,U.height=U.bottom-U.top,U.x=U.left,U.y=U.top,U}function cn(d){return d.split("-")[1]}function dt(d){return["top","bottom"].indexOf(d)>=0?"x":"y"}function lr(d){var s=d.reference,b=d.element,_=d.placement,T=_?ot(_):null,F=_?cn(_):null,U=s.x+s.width/2-b.width/2,H=s.y+s.height/2-b.height/2,G;switch(T){case V:G={x:U,y:s.y-b.height};break;case de:G={x:U,y:s.y+s.height};break;case X:G={x:s.x+s.width,y:H};break;case Q:G={x:s.x-b.width,y:H};break;default:G={x:s.x,y:s.y}}var oe=T?dt(T):null;if(oe!=null){var z=oe==="y"?"height":"width";switch(F){case h:G[oe]=G[oe]-(s[z]/2-b[z]/2);break;case v:G[oe]=G[oe]+(s[z]/2-b[z]/2);break}}return G}function cr(){return{top:0,right:0,bottom:0,left:0}}function fr(d){return Object.assign({},cr(),d)}function ur(d,s){return s.reduce(function(b,_){return b[_]=d,b},{})}function qt(d,s){s===void 0&&(s={});var b=s,_=b.placement,T=_===void 0?d.placement:_,F=b.boundary,U=F===void 0?p:F,H=b.rootBoundary,G=H===void 0?j:H,oe=b.elementContext,z=oe===void 0?P:oe,De=b.altBoundary,Fe=De===void 0?!1:De,Ce=b.padding,xe=Ce===void 0?0:Ce,Me=fr(typeof xe!="number"?xe:ur(xe,l)),Se=z===P?R:P,Be=d.elements.reference,Re=d.rects.popper,He=d.elements[Fe?Se:z],ce=wn(i(He)?He:He.contextElement||y(d.elements.popper),U,G),Pe=t(Be),_e=lr({reference:Pe,element:Re,strategy:"absolute",placement:T}),ke=Xt(Object.assign({},Re,_e)),Le=z===P?ke:Pe,Ye={top:ce.top-Le.top+Me.top,bottom:Le.bottom-ce.bottom+Me.bottom,left:ce.left-Le.left+Me.left,right:Le.right-ce.right+Me.right},$e=d.modifiersData.offset;if(z===P&&$e){var Ue=$e[T];Object.keys(Ye).forEach(function(wt){var et=[X,de].indexOf(wt)>=0?1:-1,Ft=[V,de].indexOf(wt)>=0?"y":"x";Ye[wt]+=Ue[Ft]*et})}return Ye}var dr="Popper: Invalid reference or popper argument provided. They must be either a DOM element or virtual element.",Vr="Popper: An infinite loop in the modifiers cycle has been detected! The cycle has been interrupted to prevent a browser crash.",xn={placement:"bottom",modifiers:[],strategy:"absolute"};function fn(){for(var d=arguments.length,s=new Array(d),b=0;b100){console.error(Vr);break}if(z.reset===!0){z.reset=!1,Pe=-1;continue}var _e=z.orderedModifiers[Pe],ke=_e.fn,Le=_e.options,Ye=Le===void 0?{}:Le,$e=_e.name;typeof ke=="function"&&(z=ke({state:z,options:Ye,name:$e,instance:Ce})||z)}}},update:zt(function(){return new Promise(function(Se){Ce.forceUpdate(),Se(z)})}),destroy:function(){Me(),Fe=!0}};if(!fn(H,G))return console.error(dr),Ce;Ce.setOptions(oe).then(function(Se){!Fe&&oe.onFirstUpdate&&oe.onFirstUpdate(Se)});function xe(){z.orderedModifiers.forEach(function(Se){var Be=Se.name,Re=Se.options,He=Re===void 0?{}:Re,ce=Se.effect;if(typeof ce=="function"){var Pe=ce({state:z,name:Be,instance:Ce,options:He}),_e=function(){};De.push(Pe||_e)}})}function Me(){De.forEach(function(Se){return Se()}),De=[]}return Ce}}var On={passive:!0};function zr(d){var s=d.state,b=d.instance,_=d.options,T=_.scroll,F=T===void 0?!0:T,U=_.resize,H=U===void 0?!0:U,G=r(s.elements.popper),oe=[].concat(s.scrollParents.reference,s.scrollParents.popper);return F&&oe.forEach(function(z){z.addEventListener("scroll",b.update,On)}),H&&G.addEventListener("resize",b.update,On),function(){F&&oe.forEach(function(z){z.removeEventListener("scroll",b.update,On)}),H&&G.removeEventListener("resize",b.update,On)}}var jn={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:zr,data:{}};function Yr(d){var s=d.state,b=d.name;s.modifiersData[b]=lr({reference:s.rects.reference,element:s.rects.popper,strategy:"absolute",placement:s.placement})}var Bn={name:"popperOffsets",enabled:!0,phase:"read",fn:Yr,data:{}},Xr={top:"auto",right:"auto",bottom:"auto",left:"auto"};function qr(d){var s=d.x,b=d.y,_=window,T=_.devicePixelRatio||1;return{x:Yt(Yt(s*T)/T)||0,y:Yt(Yt(b*T)/T)||0}}function Hn(d){var s,b=d.popper,_=d.popperRect,T=d.placement,F=d.offsets,U=d.position,H=d.gpuAcceleration,G=d.adaptive,oe=d.roundOffsets,z=oe===!0?qr(F):typeof oe=="function"?oe(F):F,De=z.x,Fe=De===void 0?0:De,Ce=z.y,xe=Ce===void 0?0:Ce,Me=F.hasOwnProperty("x"),Se=F.hasOwnProperty("y"),Be=Q,Re=V,He=window;if(G){var ce=J(b),Pe="clientHeight",_e="clientWidth";ce===r(b)&&(ce=y(b),O(ce).position!=="static"&&(Pe="scrollHeight",_e="scrollWidth")),ce=ce,T===V&&(Re=de,xe-=ce[Pe]-_.height,xe*=H?1:-1),T===Q&&(Be=X,Fe-=ce[_e]-_.width,Fe*=H?1:-1)}var ke=Object.assign({position:U},G&&Xr);if(H){var Le;return Object.assign({},ke,(Le={},Le[Re]=Se?"0":"",Le[Be]=Me?"0":"",Le.transform=(He.devicePixelRatio||1)<2?"translate("+Fe+"px, "+xe+"px)":"translate3d("+Fe+"px, "+xe+"px, 0)",Le))}return Object.assign({},ke,(s={},s[Re]=Se?xe+"px":"",s[Be]=Me?Fe+"px":"",s.transform="",s))}function g(d){var s=d.state,b=d.options,_=b.gpuAcceleration,T=_===void 0?!0:_,F=b.adaptive,U=F===void 0?!0:F,H=b.roundOffsets,G=H===void 0?!0:H,oe=O(s.elements.popper).transitionProperty||"";U&&["transform","top","right","bottom","left"].some(function(De){return oe.indexOf(De)>=0})&&console.warn(["Popper: Detected CSS transitions on at least one of the following",'CSS properties: "transform", "top", "right", "bottom", "left".',` + +`,'Disable the "computeStyles" modifier\'s `adaptive` option to allow',"for smooth transitions, or remove these properties from the CSS","transition declaration on the popper element if only transitioning","opacity or background-color for example.",` + +`,"We recommend using the popper element as a wrapper around an inner","element that can have any CSS property transitioned for animations."].join(" "));var z={placement:ot(s.placement),popper:s.elements.popper,popperRect:s.rects.popper,gpuAcceleration:T};s.modifiersData.popperOffsets!=null&&(s.styles.popper=Object.assign({},s.styles.popper,Hn(Object.assign({},z,{offsets:s.modifiersData.popperOffsets,position:s.options.strategy,adaptive:U,roundOffsets:G})))),s.modifiersData.arrow!=null&&(s.styles.arrow=Object.assign({},s.styles.arrow,Hn(Object.assign({},z,{offsets:s.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:G})))),s.attributes.popper=Object.assign({},s.attributes.popper,{"data-popper-placement":s.placement})}var w={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:g,data:{}};function C(d){var s=d.state;Object.keys(s.elements).forEach(function(b){var _=s.styles[b]||{},T=s.attributes[b]||{},F=s.elements[b];!o(F)||!u(F)||(Object.assign(F.style,_),Object.keys(T).forEach(function(U){var H=T[U];H===!1?F.removeAttribute(U):F.setAttribute(U,H===!0?"":H)}))})}function L(d){var s=d.state,b={popper:{position:s.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(s.elements.popper.style,b.popper),s.styles=b,s.elements.arrow&&Object.assign(s.elements.arrow.style,b.arrow),function(){Object.keys(s.elements).forEach(function(_){var T=s.elements[_],F=s.attributes[_]||{},U=Object.keys(s.styles.hasOwnProperty(_)?s.styles[_]:b[_]),H=U.reduce(function(G,oe){return G[oe]="",G},{});!o(T)||!u(T)||(Object.assign(T.style,H),Object.keys(F).forEach(function(G){T.removeAttribute(G)}))})}}var q={name:"applyStyles",enabled:!0,phase:"write",fn:C,effect:L,requires:["computeStyles"]};function W(d,s,b){var _=ot(d),T=[Q,V].indexOf(_)>=0?-1:1,F=typeof b=="function"?b(Object.assign({},s,{placement:d})):b,U=F[0],H=F[1];return U=U||0,H=(H||0)*T,[Q,X].indexOf(_)>=0?{x:H,y:U}:{x:U,y:H}}function B(d){var s=d.state,b=d.options,_=d.name,T=b.offset,F=T===void 0?[0,0]:T,U=ze.reduce(function(z,De){return z[De]=W(De,s.rects,F),z},{}),H=U[s.placement],G=H.x,oe=H.y;s.modifiersData.popperOffsets!=null&&(s.modifiersData.popperOffsets.x+=G,s.modifiersData.popperOffsets.y+=oe),s.modifiersData[_]=U}var be={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:B},le={left:"right",right:"left",bottom:"top",top:"bottom"};function pe(d){return d.replace(/left|right|bottom|top/g,function(s){return le[s]})}var ye={start:"end",end:"start"};function Te(d){return d.replace(/start|end/g,function(s){return ye[s]})}function je(d,s){s===void 0&&(s={});var b=s,_=b.placement,T=b.boundary,F=b.rootBoundary,U=b.padding,H=b.flipVariations,G=b.allowedAutoPlacements,oe=G===void 0?ze:G,z=cn(_),De=z?H?Z:Z.filter(function(xe){return cn(xe)===z}):l,Fe=De.filter(function(xe){return oe.indexOf(xe)>=0});Fe.length===0&&(Fe=De,console.error(["Popper: The `allowedAutoPlacements` option did not allow any","placements. Ensure the `placement` option matches the variation","of the allowed placements.",'For example, "auto" cannot be used to allow "bottom-start".','Use "auto-start" instead.'].join(" ")));var Ce=Fe.reduce(function(xe,Me){return xe[Me]=qt(d,{placement:Me,boundary:T,rootBoundary:F,padding:U})[ot(Me)],xe},{});return Object.keys(Ce).sort(function(xe,Me){return Ce[xe]-Ce[Me]})}function Ae(d){if(ot(d)===me)return[];var s=pe(d);return[Te(d),s,Te(s)]}function Ie(d){var s=d.state,b=d.options,_=d.name;if(!s.modifiersData[_]._skip){for(var T=b.mainAxis,F=T===void 0?!0:T,U=b.altAxis,H=U===void 0?!0:U,G=b.fallbackPlacements,oe=b.padding,z=b.boundary,De=b.rootBoundary,Fe=b.altBoundary,Ce=b.flipVariations,xe=Ce===void 0?!0:Ce,Me=b.allowedAutoPlacements,Se=s.options.placement,Be=ot(Se),Re=Be===Se,He=G||(Re||!xe?[pe(Se)]:Ae(Se)),ce=[Se].concat(He).reduce(function(te,ge){return te.concat(ot(ge)===me?je(s,{placement:ge,boundary:z,rootBoundary:De,padding:oe,flipVariations:xe,allowedAutoPlacements:Me}):ge)},[]),Pe=s.rects.reference,_e=s.rects.popper,ke=new Map,Le=!0,Ye=ce[0],$e=0;$e=0,dn=Ft?"width":"height",Qt=qt(s,{placement:Ue,boundary:z,rootBoundary:De,altBoundary:Fe,padding:oe}),kt=Ft?et?X:Q:et?de:V;Pe[dn]>_e[dn]&&(kt=pe(kt));var $n=pe(kt),Zt=[];if(F&&Zt.push(Qt[wt]<=0),H&&Zt.push(Qt[kt]<=0,Qt[$n]<=0),Zt.every(function(te){return te})){Ye=Ue,Le=!1;break}ke.set(Ue,Zt)}if(Le)for(var Sn=xe?3:1,Wn=function(ge){var we=ce.find(function(Ke){var Je=ke.get(Ke);if(Je)return Je.slice(0,ge).every(function(Dt){return Dt})});if(we)return Ye=we,"break"},D=Sn;D>0;D--){var K=Wn(D);if(K==="break")break}s.placement!==Ye&&(s.modifiersData[_]._skip=!0,s.placement=Ye,s.reset=!0)}}var re={name:"flip",enabled:!0,phase:"main",fn:Ie,requiresIfExists:["offset"],data:{_skip:!1}};function he(d){return d==="x"?"y":"x"}function ve(d,s,b){return gt(d,ln(s,b))}function ee(d){var s=d.state,b=d.options,_=d.name,T=b.mainAxis,F=T===void 0?!0:T,U=b.altAxis,H=U===void 0?!1:U,G=b.boundary,oe=b.rootBoundary,z=b.altBoundary,De=b.padding,Fe=b.tether,Ce=Fe===void 0?!0:Fe,xe=b.tetherOffset,Me=xe===void 0?0:xe,Se=qt(s,{boundary:G,rootBoundary:oe,padding:De,altBoundary:z}),Be=ot(s.placement),Re=cn(s.placement),He=!Re,ce=dt(Be),Pe=he(ce),_e=s.modifiersData.popperOffsets,ke=s.rects.reference,Le=s.rects.popper,Ye=typeof Me=="function"?Me(Object.assign({},s.rects,{placement:s.placement})):Me,$e={x:0,y:0};if(_e){if(F||H){var Ue=ce==="y"?V:Q,wt=ce==="y"?de:X,et=ce==="y"?"height":"width",Ft=_e[ce],dn=_e[ce]+Se[Ue],Qt=_e[ce]-Se[wt],kt=Ce?-Le[et]/2:0,$n=Re===h?ke[et]:Le[et],Zt=Re===h?-Le[et]:-ke[et],Sn=s.elements.arrow,Wn=Ce&&Sn?M(Sn):{width:0,height:0},D=s.modifiersData["arrow#persistent"]?s.modifiersData["arrow#persistent"].padding:cr(),K=D[Ue],te=D[wt],ge=ve(0,ke[et],Wn[et]),we=He?ke[et]/2-kt-ge-K-Ye:$n-ge-K-Ye,Ke=He?-ke[et]/2+kt+ge+te+Ye:Zt+ge+te+Ye,Je=s.elements.arrow&&J(s.elements.arrow),Dt=Je?ce==="y"?Je.clientTop||0:Je.clientLeft||0:0,Un=s.modifiersData.offset?s.modifiersData.offset[s.placement][ce]:0,_t=_e[ce]+we-Un-Dt,An=_e[ce]+Ke-Un;if(F){var pn=ve(Ce?ln(dn,_t):dn,Ft,Ce?gt(Qt,An):Qt);_e[ce]=pn,$e[ce]=pn-Ft}if(H){var en=ce==="x"?V:Q,Gr=ce==="x"?de:X,tn=_e[Pe],hn=tn+Se[en],Di=tn-Se[Gr],_i=ve(Ce?ln(hn,_t):hn,tn,Ce?gt(Di,An):Di);_e[Pe]=_i,$e[Pe]=_i-tn}}s.modifiersData[_]=$e}}var ie={name:"preventOverflow",enabled:!0,phase:"main",fn:ee,requiresIfExists:["offset"]},E=function(s,b){return s=typeof s=="function"?s(Object.assign({},b.rects,{placement:b.placement})):s,fr(typeof s!="number"?s:ur(s,l))};function Ge(d){var s,b=d.state,_=d.name,T=d.options,F=b.elements.arrow,U=b.modifiersData.popperOffsets,H=ot(b.placement),G=dt(H),oe=[Q,X].indexOf(H)>=0,z=oe?"height":"width";if(!(!F||!U)){var De=E(T.padding,b),Fe=M(F),Ce=G==="y"?V:Q,xe=G==="y"?de:X,Me=b.rects.reference[z]+b.rects.reference[G]-U[G]-b.rects.popper[z],Se=U[G]-b.rects.reference[G],Be=J(F),Re=Be?G==="y"?Be.clientHeight||0:Be.clientWidth||0:0,He=Me/2-Se/2,ce=De[Ce],Pe=Re-Fe[z]-De[xe],_e=Re/2-Fe[z]/2+He,ke=ve(ce,_e,Pe),Le=G;b.modifiersData[_]=(s={},s[Le]=ke,s.centerOffset=ke-_e,s)}}function fe(d){var s=d.state,b=d.options,_=b.element,T=_===void 0?"[data-popper-arrow]":_;if(T!=null&&!(typeof T=="string"&&(T=s.elements.popper.querySelector(T),!T))){if(o(T)||console.error(['Popper: "arrow" element must be an HTMLElement (not an SVGElement).',"To use an SVG arrow, wrap it in an HTMLElement that will be used as","the arrow."].join(" ")),!Nn(s.elements.popper,T)){console.error(['Popper: "arrow" modifier\'s `element` must be a child of the popper',"element."].join(" "));return}s.elements.arrow=T}}var Lt={name:"arrow",enabled:!0,phase:"main",fn:Ge,effect:fe,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function bt(d,s,b){return b===void 0&&(b={x:0,y:0}),{top:d.top-s.height-b.y,right:d.right-s.width+b.x,bottom:d.bottom-s.height+b.y,left:d.left-s.width-b.x}}function Gt(d){return[V,X,de,Q].some(function(s){return d[s]>=0})}function Kt(d){var s=d.state,b=d.name,_=s.rects.reference,T=s.rects.popper,F=s.modifiersData.preventOverflow,U=qt(s,{elementContext:"reference"}),H=qt(s,{altBoundary:!0}),G=bt(U,_),oe=bt(H,T,F),z=Gt(G),De=Gt(oe);s.modifiersData[b]={referenceClippingOffsets:G,popperEscapeOffsets:oe,isReferenceHidden:z,hasPopperEscaped:De},s.attributes.popper=Object.assign({},s.attributes.popper,{"data-popper-reference-hidden":z,"data-popper-escaped":De})}var Jt={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:Kt},rt=[jn,Bn,w,q],lt=En({defaultModifiers:rt}),yt=[jn,Bn,w,q,be,re,ie,Lt,Jt],un=En({defaultModifiers:yt});e.applyStyles=q,e.arrow=Lt,e.computeStyles=w,e.createPopper=un,e.createPopperLite=lt,e.defaultModifiers=yt,e.detectOverflow=qt,e.eventListeners=jn,e.flip=re,e.hide=Jt,e.offset=be,e.popperGenerator=En,e.popperOffsets=Bn,e.preventOverflow=ie}),$o=Bo(e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=_s(),r='',n="tippy-box",i="tippy-content",o="tippy-backdrop",a="tippy-arrow",c="tippy-svg-arrow",f={passive:!0,capture:!0};function u(g,w){return{}.hasOwnProperty.call(g,w)}function y(g,w,C){if(Array.isArray(g)){var L=g[w];return L??(Array.isArray(C)?C[w]:C)}return g}function m(g,w){var C={}.toString.call(g);return C.indexOf("[object")===0&&C.indexOf(w+"]")>-1}function O(g,w){return typeof g=="function"?g.apply(void 0,w):g}function S(g,w){if(w===0)return g;var C;return function(L){clearTimeout(C),C=setTimeout(function(){g(L)},w)}}function x(g,w){var C=Object.assign({},g);return w.forEach(function(L){delete C[L]}),C}function M(g){return g.split(/\s+/).filter(Boolean)}function I(g){return[].concat(g)}function $(g,w){g.indexOf(w)===-1&&g.push(w)}function A(g){return g.filter(function(w,C){return g.indexOf(w)===C})}function N(g){return g.split("-")[0]}function Y(g){return[].slice.call(g)}function ne(g){return Object.keys(g).reduce(function(w,C){return g[C]!==void 0&&(w[C]=g[C]),w},{})}function J(){return document.createElement("div")}function V(g){return["Element","Fragment"].some(function(w){return m(g,w)})}function de(g){return m(g,"NodeList")}function X(g){return m(g,"MouseEvent")}function Q(g){return!!(g&&g._tippy&&g._tippy.reference===g)}function me(g){return V(g)?[g]:de(g)?Y(g):Array.isArray(g)?g:Y(document.querySelectorAll(g))}function l(g,w){g.forEach(function(C){C&&(C.style.transitionDuration=w+"ms")})}function h(g,w){g.forEach(function(C){C&&C.setAttribute("data-state",w)})}function v(g){var w,C=I(g),L=C[0];return!(L==null||(w=L.ownerDocument)==null)&&w.body?L.ownerDocument:document}function p(g,w){var C=w.clientX,L=w.clientY;return g.every(function(q){var W=q.popperRect,B=q.popperState,be=q.props,le=be.interactiveBorder,pe=N(B.placement),ye=B.modifiersData.offset;if(!ye)return!0;var Te=pe==="bottom"?ye.top.y:0,je=pe==="top"?ye.bottom.y:0,Ae=pe==="right"?ye.left.x:0,Ie=pe==="left"?ye.right.x:0,re=W.top-L+Te>le,he=L-W.bottom-je>le,ve=W.left-C+Ae>le,ee=C-W.right-Ie>le;return re||he||ve||ee})}function j(g,w,C){var L=w+"EventListener";["transitionend","webkitTransitionEnd"].forEach(function(q){g[L](q,C)})}var P={isTouch:!1},R=0;function Z(){P.isTouch||(P.isTouch=!0,window.performance&&document.addEventListener("mousemove",ze))}function ze(){var g=performance.now();g-R<20&&(P.isTouch=!1,document.removeEventListener("mousemove",ze)),R=g}function Rt(){var g=document.activeElement;if(Q(g)){var w=g._tippy;g.blur&&!w.state.isVisible&&g.blur()}}function Ut(){document.addEventListener("touchstart",Z,f),window.addEventListener("blur",Rt)}var Fr=typeof window<"u"&&typeof document<"u",kr=Fr?navigator.userAgent:"",Nr=/MSIE |Trident\//.test(kr);function Vt(g){var w=g==="destroy"?"n already-":" ";return[g+"() was called on a"+w+"destroyed instance. This is a no-op but","indicates a potential memory leak."].join(" ")}function nr(g){var w=/[ \t]{2,}/g,C=/^[ \t]*/gm;return g.replace(w," ").replace(C,"").trim()}function jr(g){return nr(` + %ctippy.js + + %c`+nr(g)+` + + %c\u{1F477}\u200D This is a development-only message. It will be removed in production. + `)}function rr(g){return[jr(g),"color: #00C584; font-size: 1.3em; font-weight: bold;","line-height: 1.5","color: #a6a095;"]}var It;Br();function Br(){It=new Set}function mt(g,w){if(g&&!It.has(w)){var C;It.add(w),(C=console).warn.apply(C,rr(w))}}function zt(g,w){if(g&&!It.has(w)){var C;It.add(w),(C=console).error.apply(C,rr(w))}}function At(g){var w=!g,C=Object.prototype.toString.call(g)==="[object Object]"&&!g.addEventListener;zt(w,["tippy() was passed","`"+String(g)+"`","as its targets (first) argument. Valid types are: String, Element,","Element[], or NodeList."].join(" ")),zt(C,["tippy() was passed a plain object which is not supported as an argument","for virtual positioning. Use props.getReferenceClientRect instead."].join(" "))}var Ct={animateFill:!1,followCursor:!1,inlinePositioning:!1,sticky:!1},Hr={allowHTML:!1,animation:"fade",arrow:!0,content:"",inertia:!1,maxWidth:350,role:"tooltip",theme:"",zIndex:9999},Ze=Object.assign({appendTo:function(){return document.body},aria:{content:"auto",expanded:"auto"},delay:0,duration:[300,250],getReferenceClientRect:null,hideOnClick:!0,ignoreAttributes:!1,interactive:!1,interactiveBorder:2,interactiveDebounce:0,moveTransition:"",offset:[0,10],onAfterUpdate:function(){},onBeforeUpdate:function(){},onCreate:function(){},onDestroy:function(){},onHidden:function(){},onHide:function(){},onMount:function(){},onShow:function(){},onShown:function(){},onTrigger:function(){},onUntrigger:function(){},onClickOutside:function(){},placement:"top",plugins:[],popperOptions:{},render:null,showOnCreate:!1,touch:!0,trigger:"mouseenter focus",triggerTarget:null},Ct,{},Hr),$r=Object.keys(Ze),Wr=function(w){gt(w,[]);var C=Object.keys(w);C.forEach(function(L){Ze[L]=w[L]})};function ot(g){var w=g.plugins||[],C=w.reduce(function(L,q){var W=q.name,B=q.defaultValue;return W&&(L[W]=g[W]!==void 0?g[W]:B),L},{});return Object.assign({},g,{},C)}function Ur(g,w){var C=w?Object.keys(ot(Object.assign({},Ze,{plugins:w}))):$r,L=C.reduce(function(q,W){var B=(g.getAttribute("data-tippy-"+W)||"").trim();if(!B)return q;if(W==="content")q[W]=B;else try{q[W]=JSON.parse(B)}catch{q[W]=B}return q},{});return L}function ir(g,w){var C=Object.assign({},w,{content:O(w.content,[g])},w.ignoreAttributes?{}:Ur(g,w.plugins));return C.aria=Object.assign({},Ze.aria,{},C.aria),C.aria={expanded:C.aria.expanded==="auto"?w.interactive:C.aria.expanded,content:C.aria.content==="auto"?w.interactive?null:"describedby":C.aria.content},C}function gt(g,w){g===void 0&&(g={}),w===void 0&&(w=[]);var C=Object.keys(g);C.forEach(function(L){var q=x(Ze,Object.keys(Ct)),W=!u(q,L);W&&(W=w.filter(function(B){return B.name===L}).length===0),mt(W,["`"+L+"`","is not a valid prop. You may have spelled it incorrectly, or if it's","a plugin, forgot to pass it in an array as props.plugins.",` + +`,`All props: https://atomiks.github.io/tippyjs/v6/all-props/ +`,"Plugins: https://atomiks.github.io/tippyjs/v6/plugins/"].join(" "))})}var ln=function(){return"innerHTML"};function Yt(g,w){g[ln()]=w}function or(g){var w=J();return g===!0?w.className=a:(w.className=c,V(g)?w.appendChild(g):Yt(w,g)),w}function Nn(g,w){V(w.content)?(Yt(g,""),g.appendChild(w.content)):typeof w.content!="function"&&(w.allowHTML?Yt(g,w.content):g.textContent=w.content)}function Xt(g){var w=g.firstElementChild,C=Y(w.children);return{box:w,content:C.find(function(L){return L.classList.contains(i)}),arrow:C.find(function(L){return L.classList.contains(a)||L.classList.contains(c)}),backdrop:C.find(function(L){return L.classList.contains(o)})}}function ar(g){var w=J(),C=J();C.className=n,C.setAttribute("data-state","hidden"),C.setAttribute("tabindex","-1");var L=J();L.className=i,L.setAttribute("data-state","hidden"),Nn(L,g.props),w.appendChild(C),C.appendChild(L),q(g.props,g.props);function q(W,B){var be=Xt(w),le=be.box,pe=be.content,ye=be.arrow;B.theme?le.setAttribute("data-theme",B.theme):le.removeAttribute("data-theme"),typeof B.animation=="string"?le.setAttribute("data-animation",B.animation):le.removeAttribute("data-animation"),B.inertia?le.setAttribute("data-inertia",""):le.removeAttribute("data-inertia"),le.style.maxWidth=typeof B.maxWidth=="number"?B.maxWidth+"px":B.maxWidth,B.role?le.setAttribute("role",B.role):le.removeAttribute("role"),(W.content!==B.content||W.allowHTML!==B.allowHTML)&&Nn(pe,g.props),B.arrow?ye?W.arrow!==B.arrow&&(le.removeChild(ye),le.appendChild(or(B.arrow))):le.appendChild(or(B.arrow)):ye&&le.removeChild(ye)}return{popper:w,onUpdate:q}}ar.$$tippy=!0;var sr=1,yn=[],wn=[];function cn(g,w){var C=ir(g,Object.assign({},Ze,{},ot(ne(w)))),L,q,W,B=!1,be=!1,le=!1,pe=!1,ye,Te,je,Ae=[],Ie=S(Re,C.interactiveDebounce),re,he=sr++,ve=null,ee=A(C.plugins),ie={isEnabled:!0,isVisible:!1,isDestroyed:!1,isMounted:!1,isShown:!1},E={id:he,reference:g,popper:J(),popperInstance:ve,props:C,state:ie,plugins:ee,clearDelayTimeouts:Ft,setProps:dn,setContent:Qt,show:kt,hide:$n,hideWithInteractivity:Zt,enable:wt,disable:et,unmount:Sn,destroy:Wn};if(!C.render)return zt(!0,"render() function has not been supplied."),E;var Ge=C.render(E),fe=Ge.popper,Lt=Ge.onUpdate;fe.setAttribute("data-tippy-root",""),fe.id="tippy-"+E.id,E.popper=fe,g._tippy=E,fe._tippy=E;var bt=ee.map(function(D){return D.fn(E)}),Gt=g.hasAttribute("aria-expanded");return Me(),T(),s(),b("onCreate",[E]),C.showOnCreate&&$e(),fe.addEventListener("mouseenter",function(){E.props.interactive&&E.state.isVisible&&E.clearDelayTimeouts()}),fe.addEventListener("mouseleave",function(D){E.props.interactive&&E.props.trigger.indexOf("mouseenter")>=0&&(yt().addEventListener("mousemove",Ie),Ie(D))}),E;function Kt(){var D=E.props.touch;return Array.isArray(D)?D:[D,0]}function Jt(){return Kt()[0]==="hold"}function rt(){var D;return!!((D=E.props.render)!=null&&D.$$tippy)}function lt(){return re||g}function yt(){var D=lt().parentNode;return D?v(D):document}function un(){return Xt(fe)}function d(D){return E.state.isMounted&&!E.state.isVisible||P.isTouch||ye&&ye.type==="focus"?0:y(E.props.delay,D?0:1,Ze.delay)}function s(){fe.style.pointerEvents=E.props.interactive&&E.state.isVisible?"":"none",fe.style.zIndex=""+E.props.zIndex}function b(D,K,te){if(te===void 0&&(te=!0),bt.forEach(function(we){we[D]&&we[D].apply(void 0,K)}),te){var ge;(ge=E.props)[D].apply(ge,K)}}function _(){var D=E.props.aria;if(D.content){var K="aria-"+D.content,te=fe.id,ge=I(E.props.triggerTarget||g);ge.forEach(function(we){var Ke=we.getAttribute(K);if(E.state.isVisible)we.setAttribute(K,Ke?Ke+" "+te:te);else{var Je=Ke&&Ke.replace(te,"").trim();Je?we.setAttribute(K,Je):we.removeAttribute(K)}})}}function T(){if(!(Gt||!E.props.aria.expanded)){var D=I(E.props.triggerTarget||g);D.forEach(function(K){E.props.interactive?K.setAttribute("aria-expanded",E.state.isVisible&&K===lt()?"true":"false"):K.removeAttribute("aria-expanded")})}}function F(){yt().removeEventListener("mousemove",Ie),yn=yn.filter(function(D){return D!==Ie})}function U(D){if(!(P.isTouch&&(le||D.type==="mousedown"))&&!(E.props.interactive&&fe.contains(D.target))){if(lt().contains(D.target)){if(P.isTouch||E.state.isVisible&&E.props.trigger.indexOf("click")>=0)return}else b("onClickOutside",[E,D]);E.props.hideOnClick===!0&&(E.clearDelayTimeouts(),E.hide(),be=!0,setTimeout(function(){be=!1}),E.state.isMounted||z())}}function H(){le=!0}function G(){le=!1}function oe(){var D=yt();D.addEventListener("mousedown",U,!0),D.addEventListener("touchend",U,f),D.addEventListener("touchstart",G,f),D.addEventListener("touchmove",H,f)}function z(){var D=yt();D.removeEventListener("mousedown",U,!0),D.removeEventListener("touchend",U,f),D.removeEventListener("touchstart",G,f),D.removeEventListener("touchmove",H,f)}function De(D,K){Ce(D,function(){!E.state.isVisible&&fe.parentNode&&fe.parentNode.contains(fe)&&K()})}function Fe(D,K){Ce(D,K)}function Ce(D,K){var te=un().box;function ge(we){we.target===te&&(j(te,"remove",ge),K())}if(D===0)return K();j(te,"remove",Te),j(te,"add",ge),Te=ge}function xe(D,K,te){te===void 0&&(te=!1);var ge=I(E.props.triggerTarget||g);ge.forEach(function(we){we.addEventListener(D,K,te),Ae.push({node:we,eventType:D,handler:K,options:te})})}function Me(){Jt()&&(xe("touchstart",Be,{passive:!0}),xe("touchend",He,{passive:!0})),M(E.props.trigger).forEach(function(D){if(D!=="manual")switch(xe(D,Be),D){case"mouseenter":xe("mouseleave",He);break;case"focus":xe(Nr?"focusout":"blur",ce);break;case"focusin":xe("focusout",ce);break}})}function Se(){Ae.forEach(function(D){var K=D.node,te=D.eventType,ge=D.handler,we=D.options;K.removeEventListener(te,ge,we)}),Ae=[]}function Be(D){var K,te=!1;if(!(!E.state.isEnabled||Pe(D)||be)){var ge=((K=ye)==null?void 0:K.type)==="focus";ye=D,re=D.currentTarget,T(),!E.state.isVisible&&X(D)&&yn.forEach(function(we){return we(D)}),D.type==="click"&&(E.props.trigger.indexOf("mouseenter")<0||B)&&E.props.hideOnClick!==!1&&E.state.isVisible?te=!0:$e(D),D.type==="click"&&(B=!te),te&&!ge&&Ue(D)}}function Re(D){var K=D.target,te=lt().contains(K)||fe.contains(K);if(!(D.type==="mousemove"&&te)){var ge=Ye().concat(fe).map(function(we){var Ke,Je=we._tippy,Dt=(Ke=Je.popperInstance)==null?void 0:Ke.state;return Dt?{popperRect:we.getBoundingClientRect(),popperState:Dt,props:C}:null}).filter(Boolean);p(ge,D)&&(F(),Ue(D))}}function He(D){var K=Pe(D)||E.props.trigger.indexOf("click")>=0&&B;if(!K){if(E.props.interactive){E.hideWithInteractivity(D);return}Ue(D)}}function ce(D){E.props.trigger.indexOf("focusin")<0&&D.target!==lt()||E.props.interactive&&D.relatedTarget&&fe.contains(D.relatedTarget)||Ue(D)}function Pe(D){return P.isTouch?Jt()!==D.type.indexOf("touch")>=0:!1}function _e(){ke();var D=E.props,K=D.popperOptions,te=D.placement,ge=D.offset,we=D.getReferenceClientRect,Ke=D.moveTransition,Je=rt()?Xt(fe).arrow:null,Dt=we?{getBoundingClientRect:we,contextElement:we.contextElement||lt()}:g,Un={name:"$$tippy",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(pn){var en=pn.state;if(rt()){var Gr=un(),tn=Gr.box;["placement","reference-hidden","escaped"].forEach(function(hn){hn==="placement"?tn.setAttribute("data-placement",en.placement):en.attributes.popper["data-popper-"+hn]?tn.setAttribute("data-"+hn,""):tn.removeAttribute("data-"+hn)}),en.attributes.popper={}}}},_t=[{name:"offset",options:{offset:ge}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5}},{name:"computeStyles",options:{adaptive:!Ke}},Un];rt()&&Je&&_t.push({name:"arrow",options:{element:Je,padding:3}}),_t.push.apply(_t,K?.modifiers||[]),E.popperInstance=t.createPopper(Dt,fe,Object.assign({},K,{placement:te,onFirstUpdate:je,modifiers:_t}))}function ke(){E.popperInstance&&(E.popperInstance.destroy(),E.popperInstance=null)}function Le(){var D=E.props.appendTo,K,te=lt();E.props.interactive&&D===Ze.appendTo||D==="parent"?K=te.parentNode:K=O(D,[te]),K.contains(fe)||K.appendChild(fe),_e(),mt(E.props.interactive&&D===Ze.appendTo&&te.nextElementSibling!==fe,["Interactive tippy element may not be accessible via keyboard","navigation because it is not directly after the reference element","in the DOM source order.",` + +`,"Using a wrapper
or tag around the reference element","solves this by creating a new parentNode context.",` + +`,"Specifying `appendTo: document.body` silences this warning, but it","assumes you are using a focus management solution to handle","keyboard navigation.",` + +`,"See: https://atomiks.github.io/tippyjs/v6/accessibility/#interactivity"].join(" "))}function Ye(){return Y(fe.querySelectorAll("[data-tippy-root]"))}function $e(D){E.clearDelayTimeouts(),D&&b("onTrigger",[E,D]),oe();var K=d(!0),te=Kt(),ge=te[0],we=te[1];P.isTouch&&ge==="hold"&&we&&(K=we),K?L=setTimeout(function(){E.show()},K):E.show()}function Ue(D){if(E.clearDelayTimeouts(),b("onUntrigger",[E,D]),!E.state.isVisible){z();return}if(!(E.props.trigger.indexOf("mouseenter")>=0&&E.props.trigger.indexOf("click")>=0&&["mouseleave","mousemove"].indexOf(D.type)>=0&&B)){var K=d(!1);K?q=setTimeout(function(){E.state.isVisible&&E.hide()},K):W=requestAnimationFrame(function(){E.hide()})}}function wt(){E.state.isEnabled=!0}function et(){E.hide(),E.state.isEnabled=!1}function Ft(){clearTimeout(L),clearTimeout(q),cancelAnimationFrame(W)}function dn(D){if(mt(E.state.isDestroyed,Vt("setProps")),!E.state.isDestroyed){b("onBeforeUpdate",[E,D]),Se();var K=E.props,te=ir(g,Object.assign({},E.props,{},D,{ignoreAttributes:!0}));E.props=te,Me(),K.interactiveDebounce!==te.interactiveDebounce&&(F(),Ie=S(Re,te.interactiveDebounce)),K.triggerTarget&&!te.triggerTarget?I(K.triggerTarget).forEach(function(ge){ge.removeAttribute("aria-expanded")}):te.triggerTarget&&g.removeAttribute("aria-expanded"),T(),s(),Lt&&Lt(K,te),E.popperInstance&&(_e(),Ye().forEach(function(ge){requestAnimationFrame(ge._tippy.popperInstance.forceUpdate)})),b("onAfterUpdate",[E,D])}}function Qt(D){E.setProps({content:D})}function kt(){mt(E.state.isDestroyed,Vt("show"));var D=E.state.isVisible,K=E.state.isDestroyed,te=!E.state.isEnabled,ge=P.isTouch&&!E.props.touch,we=y(E.props.duration,0,Ze.duration);if(!(D||K||te||ge)&&!lt().hasAttribute("disabled")&&(b("onShow",[E],!1),E.props.onShow(E)!==!1)){if(E.state.isVisible=!0,rt()&&(fe.style.visibility="visible"),s(),oe(),E.state.isMounted||(fe.style.transition="none"),rt()){var Ke=un(),Je=Ke.box,Dt=Ke.content;l([Je,Dt],0)}je=function(){var _t;if(!(!E.state.isVisible||pe)){if(pe=!0,fe.offsetHeight,fe.style.transition=E.props.moveTransition,rt()&&E.props.animation){var An=un(),pn=An.box,en=An.content;l([pn,en],we),h([pn,en],"visible")}_(),T(),$(wn,E),(_t=E.popperInstance)==null||_t.forceUpdate(),E.state.isMounted=!0,b("onMount",[E]),E.props.animation&&rt()&&Fe(we,function(){E.state.isShown=!0,b("onShown",[E])})}},Le()}}function $n(){mt(E.state.isDestroyed,Vt("hide"));var D=!E.state.isVisible,K=E.state.isDestroyed,te=!E.state.isEnabled,ge=y(E.props.duration,1,Ze.duration);if(!(D||K||te)&&(b("onHide",[E],!1),E.props.onHide(E)!==!1)){if(E.state.isVisible=!1,E.state.isShown=!1,pe=!1,B=!1,rt()&&(fe.style.visibility="hidden"),F(),z(),s(),rt()){var we=un(),Ke=we.box,Je=we.content;E.props.animation&&(l([Ke,Je],ge),h([Ke,Je],"hidden"))}_(),T(),E.props.animation?rt()&&De(ge,E.unmount):E.unmount()}}function Zt(D){mt(E.state.isDestroyed,Vt("hideWithInteractivity")),yt().addEventListener("mousemove",Ie),$(yn,Ie),Ie(D)}function Sn(){mt(E.state.isDestroyed,Vt("unmount")),E.state.isVisible&&E.hide(),E.state.isMounted&&(ke(),Ye().forEach(function(D){D._tippy.unmount()}),fe.parentNode&&fe.parentNode.removeChild(fe),wn=wn.filter(function(D){return D!==E}),E.state.isMounted=!1,b("onHidden",[E]))}function Wn(){mt(E.state.isDestroyed,Vt("destroy")),!E.state.isDestroyed&&(E.clearDelayTimeouts(),E.unmount(),Se(),delete g._tippy,E.state.isDestroyed=!0,b("onDestroy",[E]))}}function dt(g,w){w===void 0&&(w={});var C=Ze.plugins.concat(w.plugins||[]);At(g),gt(w,C),Ut();var L=Object.assign({},w,{plugins:C}),q=me(g),W=V(L.content),B=q.length>1;mt(W&&B,["tippy() was passed an Element as the `content` prop, but more than","one tippy instance was created by this invocation. This means the","content element will only be appended to the last tippy instance.",` + +`,"Instead, pass the .innerHTML of the element, or use a function that","returns a cloned version of the element instead.",` + +`,`1) content: element.innerHTML +`,"2) content: () => element.cloneNode(true)"].join(" "));var be=q.reduce(function(le,pe){var ye=pe&&cn(pe,L);return ye&&le.push(ye),le},[]);return V(g)?be[0]:be}dt.defaultProps=Ze,dt.setDefaultProps=Wr,dt.currentInput=P;var lr=function(w){var C=w===void 0?{}:w,L=C.exclude,q=C.duration;wn.forEach(function(W){var B=!1;if(L&&(B=Q(L)?W.reference===L:W.popper===L.popper),!B){var be=W.props.duration;W.setProps({duration:q}),W.hide(),W.state.isDestroyed||W.setProps({duration:be})}})},cr=Object.assign({},t.applyStyles,{effect:function(w){var C=w.state,L={popper:{position:C.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};Object.assign(C.elements.popper.style,L.popper),C.styles=L,C.elements.arrow&&Object.assign(C.elements.arrow.style,L.arrow)}}),fr=function(w,C){var L;C===void 0&&(C={}),zt(!Array.isArray(w),["The first argument passed to createSingleton() must be an array of","tippy instances. The passed value was",String(w)].join(" "));var q=w,W=[],B,be=C.overrides,le=[],pe=!1;function ye(){W=q.map(function(ee){return ee.reference})}function Te(ee){q.forEach(function(ie){ee?ie.enable():ie.disable()})}function je(ee){return q.map(function(ie){var E=ie.setProps;return ie.setProps=function(Ge){E(Ge),ie.reference===B&&ee.setProps(Ge)},function(){ie.setProps=E}})}function Ae(ee,ie){var E=W.indexOf(ie);if(ie!==B){B=ie;var Ge=(be||[]).concat("content").reduce(function(fe,Lt){return fe[Lt]=q[E].props[Lt],fe},{});ee.setProps(Object.assign({},Ge,{getReferenceClientRect:typeof Ge.getReferenceClientRect=="function"?Ge.getReferenceClientRect:function(){return ie.getBoundingClientRect()}}))}}Te(!1),ye();var Ie={fn:function(){return{onDestroy:function(){Te(!0)},onHidden:function(){B=null},onClickOutside:function(E){E.props.showOnCreate&&!pe&&(pe=!0,B=null)},onShow:function(E){E.props.showOnCreate&&!pe&&(pe=!0,Ae(E,W[0]))},onTrigger:function(E,Ge){Ae(E,Ge.currentTarget)}}}},re=dt(J(),Object.assign({},x(C,["overrides"]),{plugins:[Ie].concat(C.plugins||[]),triggerTarget:W,popperOptions:Object.assign({},C.popperOptions,{modifiers:[].concat(((L=C.popperOptions)==null?void 0:L.modifiers)||[],[cr])})})),he=re.show;re.show=function(ee){if(he(),!B&&ee==null)return Ae(re,W[0]);if(!(B&&ee==null)){if(typeof ee=="number")return W[ee]&&Ae(re,W[ee]);if(q.includes(ee)){var ie=ee.reference;return Ae(re,ie)}if(W.includes(ee))return Ae(re,ee)}},re.showNext=function(){var ee=W[0];if(!B)return re.show(0);var ie=W.indexOf(B);re.show(W[ie+1]||ee)},re.showPrevious=function(){var ee=W[W.length-1];if(!B)return re.show(ee);var ie=W.indexOf(B),E=W[ie-1]||ee;re.show(E)};var ve=re.setProps;return re.setProps=function(ee){be=ee.overrides||be,ve(ee)},re.setInstances=function(ee){Te(!0),le.forEach(function(ie){return ie()}),q=ee,Te(!1),ye(),je(re),re.setProps({triggerTarget:W})},le=je(re),re},ur={mouseover:"mouseenter",focusin:"focus",click:"click"};function qt(g,w){zt(!(w&&w.target),["You must specity a `target` prop indicating a CSS selector string matching","the target elements that should receive a tippy."].join(" "));var C=[],L=[],q=!1,W=w.target,B=x(w,["target"]),be=Object.assign({},B,{trigger:"manual",touch:!1}),le=Object.assign({},B,{showOnCreate:!0}),pe=dt(g,be),ye=I(pe);function Te(he){if(!(!he.target||q)){var ve=he.target.closest(W);if(ve){var ee=ve.getAttribute("data-tippy-trigger")||w.trigger||Ze.trigger;if(!ve._tippy&&!(he.type==="touchstart"&&typeof le.touch=="boolean")&&!(he.type!=="touchstart"&&ee.indexOf(ur[he.type])<0)){var ie=dt(ve,le);ie&&(L=L.concat(ie))}}}}function je(he,ve,ee,ie){ie===void 0&&(ie=!1),he.addEventListener(ve,ee,ie),C.push({node:he,eventType:ve,handler:ee,options:ie})}function Ae(he){var ve=he.reference;je(ve,"touchstart",Te,f),je(ve,"mouseover",Te),je(ve,"focusin",Te),je(ve,"click",Te)}function Ie(){C.forEach(function(he){var ve=he.node,ee=he.eventType,ie=he.handler,E=he.options;ve.removeEventListener(ee,ie,E)}),C=[]}function re(he){var ve=he.destroy,ee=he.enable,ie=he.disable;he.destroy=function(E){E===void 0&&(E=!0),E&&L.forEach(function(Ge){Ge.destroy()}),L=[],Ie(),ve()},he.enable=function(){ee(),L.forEach(function(E){return E.enable()}),q=!1},he.disable=function(){ie(),L.forEach(function(E){return E.disable()}),q=!0},Ae(he)}return ye.forEach(re),pe}var dr={name:"animateFill",defaultValue:!1,fn:function(w){var C;if(!((C=w.props.render)!=null&&C.$$tippy))return zt(w.props.animateFill,"The `animateFill` plugin requires the default render function."),{};var L=Xt(w.popper),q=L.box,W=L.content,B=w.props.animateFill?Vr():null;return{onCreate:function(){B&&(q.insertBefore(B,q.firstElementChild),q.setAttribute("data-animatefill",""),q.style.overflow="hidden",w.setProps({arrow:!1,animation:"shift-away"}))},onMount:function(){if(B){var le=q.style.transitionDuration,pe=Number(le.replace("ms",""));W.style.transitionDelay=Math.round(pe/10)+"ms",B.style.transitionDuration=le,h([B],"visible")}},onShow:function(){B&&(B.style.transitionDuration="0ms")},onHide:function(){B&&h([B],"hidden")}}}};function Vr(){var g=J();return g.className=o,h([g],"hidden"),g}var xn={clientX:0,clientY:0},fn=[];function En(g){var w=g.clientX,C=g.clientY;xn={clientX:w,clientY:C}}function On(g){g.addEventListener("mousemove",En)}function zr(g){g.removeEventListener("mousemove",En)}var jn={name:"followCursor",defaultValue:!1,fn:function(w){var C=w.reference,L=v(w.props.triggerTarget||C),q=!1,W=!1,B=!0,be=w.props;function le(){return w.props.followCursor==="initial"&&w.state.isVisible}function pe(){L.addEventListener("mousemove",je)}function ye(){L.removeEventListener("mousemove",je)}function Te(){q=!0,w.setProps({getReferenceClientRect:null}),q=!1}function je(re){var he=re.target?C.contains(re.target):!0,ve=w.props.followCursor,ee=re.clientX,ie=re.clientY,E=C.getBoundingClientRect(),Ge=ee-E.left,fe=ie-E.top;(he||!w.props.interactive)&&w.setProps({getReferenceClientRect:function(){var bt=C.getBoundingClientRect(),Gt=ee,Kt=ie;ve==="initial"&&(Gt=bt.left+Ge,Kt=bt.top+fe);var Jt=ve==="horizontal"?bt.top:Kt,rt=ve==="vertical"?bt.right:Gt,lt=ve==="horizontal"?bt.bottom:Kt,yt=ve==="vertical"?bt.left:Gt;return{width:rt-yt,height:lt-Jt,top:Jt,right:rt,bottom:lt,left:yt}}})}function Ae(){w.props.followCursor&&(fn.push({instance:w,doc:L}),On(L))}function Ie(){fn=fn.filter(function(re){return re.instance!==w}),fn.filter(function(re){return re.doc===L}).length===0&&zr(L)}return{onCreate:Ae,onDestroy:Ie,onBeforeUpdate:function(){be=w.props},onAfterUpdate:function(he,ve){var ee=ve.followCursor;q||ee!==void 0&&be.followCursor!==ee&&(Ie(),ee?(Ae(),w.state.isMounted&&!W&&!le()&&pe()):(ye(),Te()))},onMount:function(){w.props.followCursor&&!W&&(B&&(je(xn),B=!1),le()||pe())},onTrigger:function(he,ve){X(ve)&&(xn={clientX:ve.clientX,clientY:ve.clientY}),W=ve.type==="focus"},onHidden:function(){w.props.followCursor&&(Te(),ye(),B=!0)}}}};function Yr(g,w){var C;return{popperOptions:Object.assign({},g.popperOptions,{modifiers:[].concat((((C=g.popperOptions)==null?void 0:C.modifiers)||[]).filter(function(L){var q=L.name;return q!==w.name}),[w])})}}var Bn={name:"inlinePositioning",defaultValue:!1,fn:function(w){var C=w.reference;function L(){return!!w.props.inlinePositioning}var q,W=-1,B=!1,be={name:"tippyInlinePositioning",enabled:!0,phase:"afterWrite",fn:function(je){var Ae=je.state;L()&&(q!==Ae.placement&&w.setProps({getReferenceClientRect:function(){return le(Ae.placement)}}),q=Ae.placement)}};function le(Te){return Xr(N(Te),C.getBoundingClientRect(),Y(C.getClientRects()),W)}function pe(Te){B=!0,w.setProps(Te),B=!1}function ye(){B||pe(Yr(w.props,be))}return{onCreate:ye,onAfterUpdate:ye,onTrigger:function(je,Ae){if(X(Ae)){var Ie=Y(w.reference.getClientRects()),re=Ie.find(function(he){return he.left-2<=Ae.clientX&&he.right+2>=Ae.clientX&&he.top-2<=Ae.clientY&&he.bottom+2>=Ae.clientY});W=Ie.indexOf(re)}},onUntrigger:function(){W=-1}}}};function Xr(g,w,C,L){if(C.length<2||g===null)return w;if(C.length===2&&L>=0&&C[0].left>C[1].right)return C[L]||w;switch(g){case"top":case"bottom":{var q=C[0],W=C[C.length-1],B=g==="top",be=q.top,le=W.bottom,pe=B?q.left:W.left,ye=B?q.right:W.right,Te=ye-pe,je=le-be;return{top:be,bottom:le,left:pe,right:ye,width:Te,height:je}}case"left":case"right":{var Ae=Math.min.apply(Math,C.map(function(fe){return fe.left})),Ie=Math.max.apply(Math,C.map(function(fe){return fe.right})),re=C.filter(function(fe){return g==="left"?fe.left===Ae:fe.right===Ie}),he=re[0].top,ve=re[re.length-1].bottom,ee=Ae,ie=Ie,E=ie-ee,Ge=ve-he;return{top:he,bottom:ve,left:ee,right:ie,width:E,height:Ge}}default:return w}}var qr={name:"sticky",defaultValue:!1,fn:function(w){var C=w.reference,L=w.popper;function q(){return w.popperInstance?w.popperInstance.state.elements.reference:C}function W(pe){return w.props.sticky===!0||w.props.sticky===pe}var B=null,be=null;function le(){var pe=W("reference")?q().getBoundingClientRect():null,ye=W("popper")?L.getBoundingClientRect():null;(pe&&Hn(B,pe)||ye&&Hn(be,ye))&&w.popperInstance&&w.popperInstance.update(),B=pe,be=ye,w.state.isMounted&&requestAnimationFrame(le)}return{onMount:function(){w.props.sticky&&le()}}}};function Hn(g,w){return g&&w?g.top!==w.top||g.right!==w.right||g.bottom!==w.bottom||g.left!==w.left:!0}dt.setDefaultProps({render:ar}),e.animateFill=dr,e.createSingleton=fr,e.default=dt,e.delegate=qt,e.followCursor=jn,e.hideAll=lr,e.inlinePositioning=Bn,e.roundArrow=r,e.sticky=qr}),Si=Ho($o()),Ts=Ho($o()),Ps=e=>{let t={plugins:[]},r=i=>e[e.indexOf(i)+1];if(e.includes("animation")&&(t.animation=r("animation")),e.includes("duration")&&(t.duration=parseInt(r("duration"))),e.includes("delay")){let i=r("delay");t.delay=i.includes("-")?i.split("-").map(o=>parseInt(o)):parseInt(i)}if(e.includes("cursor")){t.plugins.push(Ts.followCursor);let i=r("cursor");["x","initial"].includes(i)?t.followCursor=i==="x"?"horizontal":"initial":t.followCursor=!0}e.includes("on")&&(t.trigger=r("on")),e.includes("arrowless")&&(t.arrow=!1),e.includes("html")&&(t.allowHTML=!0),e.includes("interactive")&&(t.interactive=!0),e.includes("border")&&t.interactive&&(t.interactiveBorder=parseInt(r("border"))),e.includes("debounce")&&t.interactive&&(t.interactiveDebounce=parseInt(r("debounce"))),e.includes("max-width")&&(t.maxWidth=parseInt(r("max-width"))),e.includes("theme")&&(t.theme=r("theme")),e.includes("placement")&&(t.placement=r("placement"));let n={};return e.includes("no-flip")&&(n.modifiers||(n.modifiers=[]),n.modifiers.push({name:"flip",enabled:!1})),t.popperOptions=n,t};function Ai(e){e.magic("tooltip",t=>(r,n={})=>{let i=n.timeout;delete n.timeout;let o=(0,Si.default)(t,{content:r,trigger:"manual",...n});o.show(),setTimeout(()=>{o.hide(),setTimeout(()=>o.destroy(),n.duration||300)},i||2e3)}),e.directive("tooltip",(t,{modifiers:r,expression:n},{evaluateLater:i,effect:o,cleanup:a})=>{let c=r.length>0?Ps(r):{};t.__x_tippy||(t.__x_tippy=(0,Si.default)(t,c)),a(()=>{t.__x_tippy&&(t.__x_tippy.destroy(),delete t.__x_tippy)});let f=()=>t.__x_tippy.enable(),u=()=>t.__x_tippy.disable(),y=m=>{m?(f(),t.__x_tippy.setContent(m)):u()};if(r.includes("raw"))y(n);else{let m=i(n);o(()=>{m(O=>{typeof O=="object"?(t.__x_tippy.setProps(O),f()):y(O)})})}})}Ai.defaultProps=e=>(Si.default.setDefaultProps(e),Ai);var Ms=Ai,Wo=Ms;var Uo=()=>({toggle(e){this.$refs.panel?.toggle(e)},open(e){this.$refs.panel?.open(e)},close(e){this.$refs.panel?.close(e)}});var Vo=()=>({form:null,isProcessing:!1,processingMessage:null,init(){let e=this.$el.closest("form");e?.addEventListener("form-processing-started",t=>{this.isProcessing=!0,this.processingMessage=t.detail.message}),e?.addEventListener("form-processing-finished",()=>{this.isProcessing=!1})}});var zo=({id:e})=>({isOpen:!1,isWindowVisible:!1,livewire:null,textSelectionClosePreventionMouseDownHandler:null,textSelectionClosePreventionMouseUpHandler:null,textSelectionClosePreventionClickHandler:null,init(){this.$nextTick(()=>{this.isWindowVisible=this.isOpen,this.setUpTextSelectionClosePrevention(),this.$watch("isOpen",()=>this.isWindowVisible=this.isOpen)})},setUpTextSelectionClosePrevention(){let t=".fi-modal-window",r=".fi-modal-close-overlay",i=!1,o=0;this.textSelectionClosePreventionClickHandler=c=>{c.stopPropagation(),c.preventDefault(),document.removeEventListener("click",this.textSelectionClosePreventionClickHandler,!0)};let a=c=>!c.target.closest(t)&&(c.target.closest(r)||c.target.closest("body"));this.textSelectionClosePreventionMouseDownHandler=c=>{o=Date.now(),i=!!c.target.closest(t)},this.textSelectionClosePreventionMouseUpHandler=c=>{let f=Date.now()-o<75;i&&a(c)&&!f?document.addEventListener("click",this.textSelectionClosePreventionClickHandler,!0):document.removeEventListener("click",this.textSelectionClosePreventionClickHandler,!0),i=!1},document.addEventListener("mousedown",this.textSelectionClosePreventionMouseDownHandler,!0),document.addEventListener("mouseup",this.textSelectionClosePreventionMouseUpHandler,!0)},isTopmost(){if(!e)return!0;let t=document.querySelectorAll(".fi-modal-open");return t.length===0?!1:t[t.length-1].id===e},close(){this.closeQuietly(),this.$dispatch("modal-closed",{id:e})},closeQuietly(){this.isOpen=!1},open(){this.$nextTick(()=>{this.isOpen=!0,document.dispatchEvent(new CustomEvent("x-modal-opened",{bubbles:!0,composed:!0,detail:{id:e}}))})},destroy(){this.textSelectionClosePreventionMouseDownHandler&&(document.removeEventListener("mousedown",this.textSelectionClosePreventionMouseDownHandler,!0),this.textSelectionClosePreventionMouseDownHandler=null),this.textSelectionClosePreventionMouseUpHandler&&(document.removeEventListener("mouseup",this.textSelectionClosePreventionMouseUpHandler,!0),this.textSelectionClosePreventionMouseUpHandler=null),this.textSelectionClosePreventionClickHandler&&(document.removeEventListener("click",this.textSelectionClosePreventionClickHandler,!0),this.textSelectionClosePreventionClickHandler=null)}});document.addEventListener("livewire:init",()=>{let e=t=>{let r=Alpine.findClosest(t,n=>n.__livewire);if(!r)throw"Could not find Livewire component in DOM tree.";return r.__livewire};Livewire.interceptMessage(({message:t,onSuccess:r})=>{r(({payload:o})=>{queueMicrotask(()=>{if(!o.effects?.html)for(let[a,c]of Object.entries(o.effects?.partials??{})){let f=Array.from(t.component.el.querySelectorAll(`[wire\\:partial="${a}"]`)).filter(x=>e(x)===t.component);if(!f.length)continue;if(f.length>1)throw`Multiple elements found for partial [${a}].`;let u=f[0],y=u.parentElement?u.parentElement.tagName.toLowerCase():"div",m=document.createElement(y);m.innerHTML=c,m.__livewire=t.component;let O=m.firstElementChild;O.__livewire=t.component;let S={};u.querySelectorAll("[wire\\:id]").forEach(x=>{S[x.getAttribute("wire:id")]=x}),O.querySelectorAll("[wire\\:id]").forEach(x=>{if(x.hasAttribute("wire:snapshot"))return;let M=x.getAttribute("wire:id"),I=S[M];I&&x.replaceWith(I.cloneNode(!0))}),window.Alpine.morph(u,O,{updating:(x,M,I,$)=>{if(!n(x)){if(x.__livewire_replace===!0&&(x.innerHTML=M.innerHTML),x.__livewire_replace_self===!0)return x.outerHTML=M.outerHTML,$();if(x.__livewire_ignore===!0||(x.__livewire_ignore_self===!0&&I(),i(x)&&x.getAttribute("wire:id")!==t.component.id))return $();i(x)&&(M.__livewire=t.component)}},key:x=>{if(!n(x))return x.hasAttribute("wire:key")?x.getAttribute("wire:key"):x.hasAttribute("wire:id")?x.getAttribute("wire:id"):x.id},lookahead:!1})}})});function n(o){return typeof o.hasAttribute!="function"}function i(o){return o.hasAttribute("wire:id")}})});var Yo=(e,t,r)=>{let n=(y,m)=>{for(let O of y){let S=i(O,m);if(S!==null)return S}},i=(y,m)=>{let O=y.match(/^[\{\[]([^\[\]\{\}]*)[\}\]](.*)/s);if(O===null||O.length!==3)return null;let S=O[1],x=O[2];if(S.includes(",")){let[M,I]=S.split(",",2);if(I==="*"&&m>=M)return x;if(M==="*"&&m<=I)return x;if(m>=M&&m<=I)return x}return S==m?x:null},o=y=>y.toString().charAt(0).toUpperCase()+y.toString().slice(1),a=(y,m)=>{if(m.length===0)return y;let O={};for(let[S,x]of Object.entries(m))O[":"+o(S??"")]=o(x??""),O[":"+S.toUpperCase()]=x.toString().toUpperCase(),O[":"+S]=x;return Object.entries(O).forEach(([S,x])=>{y=y.replaceAll(S,x)}),y},c=y=>y.map(m=>m.replace(/^[\{\[]([^\[\]\{\}]*)[\}\]]/,"")),f=e.split("|"),u=n(f,t);return u!=null?a(u.trim(),r):(f=c(f),a(f.length>1&&t>1?f[1]:f[0],r))};document.addEventListener("alpine:init",()=>{window.Alpine.plugin(oo),window.Alpine.plugin(ao),window.Alpine.plugin(fo),window.Alpine.plugin(jo),window.Alpine.plugin(Wo),window.Alpine.data("filamentDropdown",Uo),window.Alpine.data("filamentFormButton",Vo),window.Alpine.data("filamentModal",zo)});window.jsMd5=Xo.md5;window.pluralize=Yo;})(); +/*! Bundled license information: + +js-md5/src/md5.js: + (** + * [js-md5]{@link https://github.com/emn178/js-md5} + * + * @namespace md5 + * @version 0.8.3 + * @author Chen, Yi-Cyuan [emn178@gmail.com] + * @copyright Chen, Yi-Cyuan 2014-2023 + * @license MIT + *) + +sortablejs/modular/sortable.esm.js: + (**! + * Sortable 1.15.6 + * @author RubaXa + * @author owenm + * @license MIT + *) +*/ diff --git a/public/js/filament/tables/components/columns/checkbox.js b/public/js/filament/tables/components/columns/checkbox.js new file mode 100644 index 0000000..b26a426 --- /dev/null +++ b/public/js/filament/tables/components/columns/checkbox.js @@ -0,0 +1 @@ +function a({name:r,recordKey:s,state:n}){return{error:void 0,isLoading:!1,state:n,unsubscribeLivewireHook:null,init(){this.unsubscribeLivewireHook=Livewire.interceptMessage(({message:e,onSuccess:t})=>{t(()=>{this.$nextTick(()=>{if(this.isLoading||e.component.id!==this.$root.closest("[wire\\:id]")?.attributes["wire:id"].value)return;let i=this.getServerState();i===void 0||Alpine.raw(this.state)===i||(this.state=i)})})}),this.$watch("state",async()=>{let e=this.getServerState();if(e===void 0||Alpine.raw(this.state)===e)return;this.isLoading=!0;let t=await this.$wire.updateTableColumnState(r,s,this.state);this.error=t?.error??void 0,!this.error&&this.$refs.serverState&&(this.$refs.serverState.value=this.state?"1":"0"),this.isLoading=!1})},getServerState(){if(this.$refs.serverState)return[1,"1"].includes(this.$refs.serverState.value)},destroy(){this.unsubscribeLivewireHook?.()}}}export{a as default}; diff --git a/public/js/filament/tables/components/columns/select.js b/public/js/filament/tables/components/columns/select.js new file mode 100644 index 0000000..a75f759 --- /dev/null +++ b/public/js/filament/tables/components/columns/select.js @@ -0,0 +1,11 @@ +var Ft=Math.min,vt=Math.max,Ht=Math.round;var st=n=>({x:n,y:n}),ji={left:"right",right:"left",bottom:"top",top:"bottom"},qi={start:"end",end:"start"};function De(n,t,e){return vt(n,Ft(t,e))}function Vt(n,t){return typeof n=="function"?n(t):n}function wt(n){return n.split("-")[0]}function Wt(n){return n.split("-")[1]}function Ae(n){return n==="x"?"y":"x"}function Ce(n){return n==="y"?"height":"width"}var Ji=new Set(["top","bottom"]);function ht(n){return Ji.has(wt(n))?"y":"x"}function Le(n){return Ae(ht(n))}function Je(n,t,e){e===void 0&&(e=!1);let i=Wt(n),o=Le(n),s=Ce(o),r=o==="x"?i===(e?"end":"start")?"right":"left":i==="start"?"bottom":"top";return t.reference[s]>t.floating[s]&&(r=Bt(r)),[r,Bt(r)]}function Qe(n){let t=Bt(n);return[ie(n),t,ie(t)]}function ie(n){return n.replace(/start|end/g,t=>qi[t])}var je=["left","right"],qe=["right","left"],Qi=["top","bottom"],Zi=["bottom","top"];function tn(n,t,e){switch(n){case"top":case"bottom":return e?t?qe:je:t?je:qe;case"left":case"right":return t?Qi:Zi;default:return[]}}function Ze(n,t,e,i){let o=Wt(n),s=tn(wt(n),e==="start",i);return o&&(s=s.map(r=>r+"-"+o),t&&(s=s.concat(s.map(ie)))),s}function Bt(n){return n.replace(/left|right|bottom|top/g,t=>ji[t])}function en(n){return{top:0,right:0,bottom:0,left:0,...n}}function ti(n){return typeof n!="number"?en(n):{top:n,right:n,bottom:n,left:n}}function Ot(n){let{x:t,y:e,width:i,height:o}=n;return{width:i,height:o,top:e,left:t,right:t+i,bottom:e+o,x:t,y:e}}function ei(n,t,e){let{reference:i,floating:o}=n,s=ht(t),r=Le(t),a=Ce(r),l=wt(t),c=s==="y",f=i.x+i.width/2-o.width/2,d=i.y+i.height/2-o.height/2,p=i[a]/2-o[a]/2,u;switch(l){case"top":u={x:f,y:i.y-o.height};break;case"bottom":u={x:f,y:i.y+i.height};break;case"right":u={x:i.x+i.width,y:d};break;case"left":u={x:i.x-o.width,y:d};break;default:u={x:i.x,y:i.y}}switch(Wt(t)){case"start":u[r]-=p*(e&&c?-1:1);break;case"end":u[r]+=p*(e&&c?-1:1);break}return u}var ii=async(n,t,e)=>{let{placement:i="bottom",strategy:o="absolute",middleware:s=[],platform:r}=e,a=s.filter(Boolean),l=await(r.isRTL==null?void 0:r.isRTL(t)),c=await r.getElementRects({reference:n,floating:t,strategy:o}),{x:f,y:d}=ei(c,i,l),p=i,u={},g=0;for(let m=0;mH<=0)){var L,X;let H=(((L=s.flip)==null?void 0:L.index)||0)+1,tt=q[H];if(tt&&(!(d==="alignment"?y!==ht(tt):!1)||W.every(B=>ht(B.placement)===y?B.overflows[0]>0:!0)))return{data:{index:H,overflows:W},reset:{placement:tt}};let z=(X=W.filter(Y=>Y.overflows[0]<=0).sort((Y,B)=>Y.overflows[1]-B.overflows[1])[0])==null?void 0:X.placement;if(!z)switch(u){case"bestFit":{var M;let Y=(M=W.filter(B=>{if(F){let et=ht(B.placement);return et===y||et==="y"}return!0}).map(B=>[B.placement,B.overflows.filter(et=>et>0).reduce((et,ee)=>et+ee,0)]).sort((B,et)=>B[1]-et[1])[0])==null?void 0:M[0];Y&&(z=Y);break}case"initialPlacement":z=a;break}if(o!==z)return{reset:{placement:z}}}return{}}}};var nn=new Set(["left","top"]);async function on(n,t){let{placement:e,platform:i,elements:o}=n,s=await(i.isRTL==null?void 0:i.isRTL(o.floating)),r=wt(e),a=Wt(e),l=ht(e)==="y",c=nn.has(r)?-1:1,f=s&&l?-1:1,d=Vt(t,n),{mainAxis:p,crossAxis:u,alignmentAxis:g}=typeof d=="number"?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:d.mainAxis||0,crossAxis:d.crossAxis||0,alignmentAxis:d.alignmentAxis};return a&&typeof g=="number"&&(u=a==="end"?g*-1:g),l?{x:u*f,y:p*c}:{x:p*c,y:u*f}}var oi=function(n){return n===void 0&&(n=0),{name:"offset",options:n,async fn(t){var e,i;let{x:o,y:s,placement:r,middlewareData:a}=t,l=await on(t,n);return r===((e=a.offset)==null?void 0:e.placement)&&(i=a.arrow)!=null&&i.alignmentOffset?{}:{x:o+l.x,y:s+l.y,data:{...l,placement:r}}}}},si=function(n){return n===void 0&&(n={}),{name:"shift",options:n,async fn(t){let{x:e,y:i,placement:o}=t,{mainAxis:s=!0,crossAxis:r=!1,limiter:a={fn:S=>{let{x:E,y}=S;return{x:E,y}}},...l}=Vt(n,t),c={x:e,y:i},f=await Ie(t,l),d=ht(wt(o)),p=Ae(d),u=c[p],g=c[d];if(s){let S=p==="y"?"top":"left",E=p==="y"?"bottom":"right",y=u+f[S],D=u-f[E];u=De(y,u,D)}if(r){let S=d==="y"?"top":"left",E=d==="y"?"bottom":"right",y=g+f[S],D=g-f[E];g=De(y,g,D)}let m=a.fn({...t,[p]:u,[d]:g});return{...m,data:{x:m.x-e,y:m.y-i,enabled:{[p]:s,[d]:r}}}}}};function oe(){return typeof window<"u"}function Et(n){return ai(n)?(n.nodeName||"").toLowerCase():"#document"}function U(n){var t;return(n==null||(t=n.ownerDocument)==null?void 0:t.defaultView)||window}function ct(n){var t;return(t=(ai(n)?n.ownerDocument:n.document)||window.document)==null?void 0:t.documentElement}function ai(n){return oe()?n instanceof Node||n instanceof U(n).Node:!1}function it(n){return oe()?n instanceof Element||n instanceof U(n).Element:!1}function rt(n){return oe()?n instanceof HTMLElement||n instanceof U(n).HTMLElement:!1}function ri(n){return!oe()||typeof ShadowRoot>"u"?!1:n instanceof ShadowRoot||n instanceof U(n).ShadowRoot}var sn=new Set(["inline","contents"]);function It(n){let{overflow:t,overflowX:e,overflowY:i,display:o}=nt(n);return/auto|scroll|overlay|hidden|clip/.test(t+i+e)&&!sn.has(o)}var rn=new Set(["table","td","th"]);function li(n){return rn.has(Et(n))}var an=[":popover-open",":modal"];function zt(n){return an.some(t=>{try{return n.matches(t)}catch{return!1}})}var ln=["transform","translate","scale","rotate","perspective"],cn=["transform","translate","scale","rotate","perspective","filter"],dn=["paint","layout","strict","content"];function se(n){let t=re(),e=it(n)?nt(n):n;return ln.some(i=>e[i]?e[i]!=="none":!1)||(e.containerType?e.containerType!=="normal":!1)||!t&&(e.backdropFilter?e.backdropFilter!=="none":!1)||!t&&(e.filter?e.filter!=="none":!1)||cn.some(i=>(e.willChange||"").includes(i))||dn.some(i=>(e.contain||"").includes(i))}function ci(n){let t=ut(n);for(;rt(t)&&!Dt(t);){if(se(t))return t;if(zt(t))return null;t=ut(t)}return null}function re(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}var fn=new Set(["html","body","#document"]);function Dt(n){return fn.has(Et(n))}function nt(n){return U(n).getComputedStyle(n)}function $t(n){return it(n)?{scrollLeft:n.scrollLeft,scrollTop:n.scrollTop}:{scrollLeft:n.scrollX,scrollTop:n.scrollY}}function ut(n){if(Et(n)==="html")return n;let t=n.assignedSlot||n.parentNode||ri(n)&&n.host||ct(n);return ri(t)?t.host:t}function di(n){let t=ut(n);return Dt(t)?n.ownerDocument?n.ownerDocument.body:n.body:rt(t)&&It(t)?t:di(t)}function ne(n,t,e){var i;t===void 0&&(t=[]),e===void 0&&(e=!0);let o=di(n),s=o===((i=n.ownerDocument)==null?void 0:i.body),r=U(o);if(s){let a=ae(r);return t.concat(r,r.visualViewport||[],It(o)?o:[],a&&e?ne(a):[])}return t.concat(o,ne(o,[],e))}function ae(n){return n.parent&&Object.getPrototypeOf(n.parent)?n.frameElement:null}function pi(n){let t=nt(n),e=parseFloat(t.width)||0,i=parseFloat(t.height)||0,o=rt(n),s=o?n.offsetWidth:e,r=o?n.offsetHeight:i,a=Ht(e)!==s||Ht(i)!==r;return a&&(e=s,i=r),{width:e,height:i,$:a}}function gi(n){return it(n)?n:n.contextElement}function Tt(n){let t=gi(n);if(!rt(t))return st(1);let e=t.getBoundingClientRect(),{width:i,height:o,$:s}=pi(t),r=(s?Ht(e.width):e.width)/i,a=(s?Ht(e.height):e.height)/o;return(!r||!Number.isFinite(r))&&(r=1),(!a||!Number.isFinite(a))&&(a=1),{x:r,y:a}}var hn=st(0);function mi(n){let t=U(n);return!re()||!t.visualViewport?hn:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function un(n,t,e){return t===void 0&&(t=!1),!e||t&&e!==U(n)?!1:t}function Xt(n,t,e,i){t===void 0&&(t=!1),e===void 0&&(e=!1);let o=n.getBoundingClientRect(),s=gi(n),r=st(1);t&&(i?it(i)&&(r=Tt(i)):r=Tt(n));let a=un(s,e,i)?mi(s):st(0),l=(o.left+a.x)/r.x,c=(o.top+a.y)/r.y,f=o.width/r.x,d=o.height/r.y;if(s){let p=U(s),u=i&&it(i)?U(i):i,g=p,m=ae(g);for(;m&&i&&u!==g;){let S=Tt(m),E=m.getBoundingClientRect(),y=nt(m),D=E.left+(m.clientLeft+parseFloat(y.paddingLeft))*S.x,A=E.top+(m.clientTop+parseFloat(y.paddingTop))*S.y;l*=S.x,c*=S.y,f*=S.x,d*=S.y,l+=D,c+=A,g=U(m),m=ae(g)}}return Ot({width:f,height:d,x:l,y:c})}function le(n,t){let e=$t(n).scrollLeft;return t?t.left+e:Xt(ct(n)).left+e}function bi(n,t){let e=n.getBoundingClientRect(),i=e.left+t.scrollLeft-le(n,e),o=e.top+t.scrollTop;return{x:i,y:o}}function pn(n){let{elements:t,rect:e,offsetParent:i,strategy:o}=n,s=o==="fixed",r=ct(i),a=t?zt(t.floating):!1;if(i===r||a&&s)return e;let l={scrollLeft:0,scrollTop:0},c=st(1),f=st(0),d=rt(i);if((d||!d&&!s)&&((Et(i)!=="body"||It(r))&&(l=$t(i)),rt(i))){let u=Xt(i);c=Tt(i),f.x=u.x+i.clientLeft,f.y=u.y+i.clientTop}let p=r&&!d&&!s?bi(r,l):st(0);return{width:e.width*c.x,height:e.height*c.y,x:e.x*c.x-l.scrollLeft*c.x+f.x+p.x,y:e.y*c.y-l.scrollTop*c.y+f.y+p.y}}function gn(n){return Array.from(n.getClientRects())}function mn(n){let t=ct(n),e=$t(n),i=n.ownerDocument.body,o=vt(t.scrollWidth,t.clientWidth,i.scrollWidth,i.clientWidth),s=vt(t.scrollHeight,t.clientHeight,i.scrollHeight,i.clientHeight),r=-e.scrollLeft+le(n),a=-e.scrollTop;return nt(i).direction==="rtl"&&(r+=vt(t.clientWidth,i.clientWidth)-o),{width:o,height:s,x:r,y:a}}var fi=25;function bn(n,t){let e=U(n),i=ct(n),o=e.visualViewport,s=i.clientWidth,r=i.clientHeight,a=0,l=0;if(o){s=o.width,r=o.height;let f=re();(!f||f&&t==="fixed")&&(a=o.offsetLeft,l=o.offsetTop)}let c=le(i);if(c<=0){let f=i.ownerDocument,d=f.body,p=getComputedStyle(d),u=f.compatMode==="CSS1Compat"&&parseFloat(p.marginLeft)+parseFloat(p.marginRight)||0,g=Math.abs(i.clientWidth-d.clientWidth-u);g<=fi&&(s-=g)}else c<=fi&&(s+=c);return{width:s,height:r,x:a,y:l}}var vn=new Set(["absolute","fixed"]);function wn(n,t){let e=Xt(n,!0,t==="fixed"),i=e.top+n.clientTop,o=e.left+n.clientLeft,s=rt(n)?Tt(n):st(1),r=n.clientWidth*s.x,a=n.clientHeight*s.y,l=o*s.x,c=i*s.y;return{width:r,height:a,x:l,y:c}}function hi(n,t,e){let i;if(t==="viewport")i=bn(n,e);else if(t==="document")i=mn(ct(n));else if(it(t))i=wn(t,e);else{let o=mi(n);i={x:t.x-o.x,y:t.y-o.y,width:t.width,height:t.height}}return Ot(i)}function vi(n,t){let e=ut(n);return e===t||!it(e)||Dt(e)?!1:nt(e).position==="fixed"||vi(e,t)}function yn(n,t){let e=t.get(n);if(e)return e;let i=ne(n,[],!1).filter(a=>it(a)&&Et(a)!=="body"),o=null,s=nt(n).position==="fixed",r=s?ut(n):n;for(;it(r)&&!Dt(r);){let a=nt(r),l=se(r);!l&&a.position==="fixed"&&(o=null),(s?!l&&!o:!l&&a.position==="static"&&!!o&&vn.has(o.position)||It(r)&&!l&&vi(n,r))?i=i.filter(f=>f!==r):o=a,r=ut(r)}return t.set(n,i),i}function Sn(n){let{element:t,boundary:e,rootBoundary:i,strategy:o}=n,r=[...e==="clippingAncestors"?zt(t)?[]:yn(t,this._c):[].concat(e),i],a=r[0],l=r.reduce((c,f)=>{let d=hi(t,f,o);return c.top=vt(d.top,c.top),c.right=Ft(d.right,c.right),c.bottom=Ft(d.bottom,c.bottom),c.left=vt(d.left,c.left),c},hi(t,a,o));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}}function xn(n){let{width:t,height:e}=pi(n);return{width:t,height:e}}function On(n,t,e){let i=rt(t),o=ct(t),s=e==="fixed",r=Xt(n,!0,s,t),a={scrollLeft:0,scrollTop:0},l=st(0);function c(){l.x=le(o)}if(i||!i&&!s)if((Et(t)!=="body"||It(o))&&(a=$t(t)),i){let u=Xt(t,!0,s,t);l.x=u.x+t.clientLeft,l.y=u.y+t.clientTop}else o&&c();s&&!i&&o&&c();let f=o&&!i&&!s?bi(o,a):st(0),d=r.left+a.scrollLeft-l.x-f.x,p=r.top+a.scrollTop-l.y-f.y;return{x:d,y:p,width:r.width,height:r.height}}function Te(n){return nt(n).position==="static"}function ui(n,t){if(!rt(n)||nt(n).position==="fixed")return null;if(t)return t(n);let e=n.offsetParent;return ct(n)===e&&(e=e.ownerDocument.body),e}function wi(n,t){let e=U(n);if(zt(n))return e;if(!rt(n)){let o=ut(n);for(;o&&!Dt(o);){if(it(o)&&!Te(o))return o;o=ut(o)}return e}let i=ui(n,t);for(;i&&li(i)&&Te(i);)i=ui(i,t);return i&&Dt(i)&&Te(i)&&!se(i)?e:i||ci(n)||e}var En=async function(n){let t=this.getOffsetParent||wi,e=this.getDimensions,i=await e(n.floating);return{reference:On(n.reference,await t(n.floating),n.strategy),floating:{x:0,y:0,width:i.width,height:i.height}}};function Dn(n){return nt(n).direction==="rtl"}var An={convertOffsetParentRelativeRectToViewportRelativeRect:pn,getDocumentElement:ct,getClippingRect:Sn,getOffsetParent:wi,getElementRects:En,getClientRects:gn,getDimensions:xn,getScale:Tt,isElement:it,isRTL:Dn};var yi=oi;var Si=si,xi=ni;var Oi=(n,t,e)=>{let i=new Map,o={platform:An,...e},s={...o.platform,_c:i};return ii(n,t,{...o,platform:s})};function Ei(n,t){var e=Object.keys(n);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(n);t&&(i=i.filter(function(o){return Object.getOwnPropertyDescriptor(n,o).enumerable})),e.push.apply(e,i)}return e}function ft(n){for(var t=1;t=0)&&(e[o]=n[o]);return e}function In(n,t){if(n==null)return{};var e=Ln(n,t),i,o;if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(n);for(o=0;o=0)&&Object.prototype.propertyIsEnumerable.call(n,i)&&(e[i]=n[i])}return e}var Tn="1.15.6";function pt(n){if(typeof window<"u"&&window.navigator)return!!navigator.userAgent.match(n)}var mt=pt(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i),Zt=pt(/Edge/i),Di=pt(/firefox/i),Gt=pt(/safari/i)&&!pt(/chrome/i)&&!pt(/android/i),Xe=pt(/iP(ad|od|hone)/i),Pi=pt(/chrome/i)&&pt(/android/i),Mi={capture:!1,passive:!1};function O(n,t,e){n.addEventListener(t,e,!mt&&Mi)}function x(n,t,e){n.removeEventListener(t,e,!mt&&Mi)}function ve(n,t){if(t){if(t[0]===">"&&(t=t.substring(1)),n)try{if(n.matches)return n.matches(t);if(n.msMatchesSelector)return n.msMatchesSelector(t);if(n.webkitMatchesSelector)return n.webkitMatchesSelector(t)}catch{return!1}return!1}}function Ni(n){return n.host&&n!==document&&n.host.nodeType?n.host:n.parentNode}function lt(n,t,e,i){if(n){e=e||document;do{if(t!=null&&(t[0]===">"?n.parentNode===e&&ve(n,t):ve(n,t))||i&&n===e)return n;if(n===e)break}while(n=Ni(n))}return null}var Ai=/\s+/g;function Q(n,t,e){if(n&&t)if(n.classList)n.classList[e?"add":"remove"](t);else{var i=(" "+n.className+" ").replace(Ai," ").replace(" "+t+" "," ");n.className=(i+(e?" "+t:"")).replace(Ai," ")}}function b(n,t,e){var i=n&&n.style;if(i){if(e===void 0)return document.defaultView&&document.defaultView.getComputedStyle?e=document.defaultView.getComputedStyle(n,""):n.currentStyle&&(e=n.currentStyle),t===void 0?e:e[t];!(t in i)&&t.indexOf("webkit")===-1&&(t="-webkit-"+t),i[t]=e+(typeof e=="string"?"":"px")}}function Nt(n,t){var e="";if(typeof n=="string")e=n;else do{var i=b(n,"transform");i&&i!=="none"&&(e=i+" "+e)}while(!t&&(n=n.parentNode));var o=window.DOMMatrix||window.WebKitCSSMatrix||window.CSSMatrix||window.MSCSSMatrix;return o&&new o(e)}function ki(n,t,e){if(n){var i=n.getElementsByTagName(t),o=0,s=i.length;if(e)for(;o=s:r=o<=s,!r)return i;if(i===dt())break;i=xt(i,!1)}return!1}function kt(n,t,e,i){for(var o=0,s=0,r=n.children;s2&&arguments[2]!==void 0?arguments[2]:{},o=i.evt,s=In(i,Fn);te.pluginEvent.bind(v)(t,e,ft({dragEl:h,parentEl:R,ghostEl:w,rootEl:I,nextEl:Lt,lastDownEl:pe,cloneEl:T,cloneHidden:St,dragStarted:Kt,putSortable:V,activeSortable:v.active,originalEvent:o,oldIndex:Mt,oldDraggableIndex:qt,newIndex:Z,newDraggableIndex:yt,hideGhostForTarget:Xi,unhideGhostForTarget:Ki,cloneNowHidden:function(){St=!0},cloneNowShown:function(){St=!1},dispatchSortableEvent:function(a){K({sortable:e,name:a,originalEvent:o})}},s))};function K(n){Bn(ft({putSortable:V,cloneEl:T,targetEl:h,rootEl:I,oldIndex:Mt,oldDraggableIndex:qt,newIndex:Z,newDraggableIndex:yt},n))}var h,R,w,I,Lt,pe,T,St,Mt,Z,qt,yt,ce,V,Pt=!1,we=!1,ye=[],At,at,Pe,Me,Ii,Ti,Kt,Rt,Jt,Qt=!1,de=!1,ge,$,Ne=[],Ve=!1,Se=[],Oe=typeof document<"u",fe=Xe,_i=Zt||mt?"cssFloat":"float",Hn=Oe&&!Pi&&!Xe&&"draggable"in document.createElement("div"),Wi=(function(){if(Oe){if(mt)return!1;var n=document.createElement("x");return n.style.cssText="pointer-events:auto",n.style.pointerEvents==="auto"}})(),zi=function(t,e){var i=b(t),o=parseInt(i.width)-parseInt(i.paddingLeft)-parseInt(i.paddingRight)-parseInt(i.borderLeftWidth)-parseInt(i.borderRightWidth),s=kt(t,0,e),r=kt(t,1,e),a=s&&b(s),l=r&&b(r),c=a&&parseInt(a.marginLeft)+parseInt(a.marginRight)+k(s).width,f=l&&parseInt(l.marginLeft)+parseInt(l.marginRight)+k(r).width;if(i.display==="flex")return i.flexDirection==="column"||i.flexDirection==="column-reverse"?"vertical":"horizontal";if(i.display==="grid")return i.gridTemplateColumns.split(" ").length<=1?"vertical":"horizontal";if(s&&a.float&&a.float!=="none"){var d=a.float==="left"?"left":"right";return r&&(l.clear==="both"||l.clear===d)?"vertical":"horizontal"}return s&&(a.display==="block"||a.display==="flex"||a.display==="table"||a.display==="grid"||c>=o&&i[_i]==="none"||r&&i[_i]==="none"&&c+f>o)?"vertical":"horizontal"},Vn=function(t,e,i){var o=i?t.left:t.top,s=i?t.right:t.bottom,r=i?t.width:t.height,a=i?e.left:e.top,l=i?e.right:e.bottom,c=i?e.width:e.height;return o===a||s===l||o+r/2===a+c/2},Wn=function(t,e){var i;return ye.some(function(o){var s=o[j].options.emptyInsertThreshold;if(!(!s||Ke(o))){var r=k(o),a=t>=r.left-s&&t<=r.right+s,l=e>=r.top-s&&e<=r.bottom+s;if(a&&l)return i=o}}),i},$i=function(t){function e(s,r){return function(a,l,c,f){var d=a.options.group.name&&l.options.group.name&&a.options.group.name===l.options.group.name;if(s==null&&(r||d))return!0;if(s==null||s===!1)return!1;if(r&&s==="clone")return s;if(typeof s=="function")return e(s(a,l,c,f),r)(a,l,c,f);var p=(r?a:l).options.group.name;return s===!0||typeof s=="string"&&s===p||s.join&&s.indexOf(p)>-1}}var i={},o=t.group;(!o||ue(o)!="object")&&(o={name:o}),i.name=o.name,i.checkPull=e(o.pull,!0),i.checkPut=e(o.put),i.revertClone=o.revertClone,t.group=i},Xi=function(){!Wi&&w&&b(w,"display","none")},Ki=function(){!Wi&&w&&b(w,"display","")};Oe&&!Pi&&document.addEventListener("click",function(n){if(we)return n.preventDefault(),n.stopPropagation&&n.stopPropagation(),n.stopImmediatePropagation&&n.stopImmediatePropagation(),we=!1,!1},!0);var Ct=function(t){if(h){t=t.touches?t.touches[0]:t;var e=Wn(t.clientX,t.clientY);if(e){var i={};for(var o in t)t.hasOwnProperty(o)&&(i[o]=t[o]);i.target=i.rootEl=e,i.preventDefault=void 0,i.stopPropagation=void 0,e[j]._onDragOver(i)}}},zn=function(t){h&&h.parentNode[j]._isOutsideThisEl(t.target)};function v(n,t){if(!(n&&n.nodeType&&n.nodeType===1))throw"Sortable: `el` must be an HTMLElement, not ".concat({}.toString.call(n));this.el=n,this.options=t=gt({},t),n[j]=this;var e={group:null,sort:!0,disabled:!1,store:null,handle:null,draggable:/^[uo]l$/i.test(n.nodeName)?">li":">*",swapThreshold:1,invertSwap:!1,invertedSwapThreshold:null,removeCloneOnHide:!0,direction:function(){return zi(n,this.options)},ghostClass:"sortable-ghost",chosenClass:"sortable-chosen",dragClass:"sortable-drag",ignore:"a, img",filter:null,preventOnFilter:!0,animation:0,easing:null,setData:function(r,a){r.setData("Text",a.textContent)},dropBubble:!1,dragoverBubble:!1,dataIdAttr:"data-id",delay:0,delayOnTouchOnly:!1,touchStartThreshold:(Number.parseInt?Number:window).parseInt(window.devicePixelRatio,10)||1,forceFallback:!1,fallbackClass:"sortable-fallback",fallbackOnBody:!1,fallbackTolerance:0,fallbackOffset:{x:0,y:0},supportPointer:v.supportPointer!==!1&&"PointerEvent"in window&&(!Gt||Xe),emptyInsertThreshold:5};te.initializePlugins(this,n,e);for(var i in e)!(i in t)&&(t[i]=e[i]);$i(t);for(var o in this)o.charAt(0)==="_"&&typeof this[o]=="function"&&(this[o]=this[o].bind(this));this.nativeDraggable=t.forceFallback?!1:Hn,this.nativeDraggable&&(this.options.touchStartThreshold=1),t.supportPointer?O(n,"pointerdown",this._onTapStart):(O(n,"mousedown",this._onTapStart),O(n,"touchstart",this._onTapStart)),this.nativeDraggable&&(O(n,"dragover",this),O(n,"dragenter",this)),ye.push(this.el),t.store&&t.store.get&&this.sort(t.store.get(this)||[]),gt(this,Mn())}v.prototype={constructor:v,_isOutsideThisEl:function(t){!this.el.contains(t)&&t!==this.el&&(Rt=null)},_getDirection:function(t,e){return typeof this.options.direction=="function"?this.options.direction.call(this,t,e,h):this.options.direction},_onTapStart:function(t){if(t.cancelable){var e=this,i=this.el,o=this.options,s=o.preventOnFilter,r=t.type,a=t.touches&&t.touches[0]||t.pointerType&&t.pointerType==="touch"&&t,l=(a||t).target,c=t.target.shadowRoot&&(t.path&&t.path[0]||t.composedPath&&t.composedPath()[0])||l,f=o.filter;if(qn(i),!h&&!(/mousedown|pointerdown/.test(r)&&t.button!==0||o.disabled)&&!c.isContentEditable&&!(!this.nativeDraggable&&Gt&&l&&l.tagName.toUpperCase()==="SELECT")&&(l=lt(l,o.draggable,i,!1),!(l&&l.animated)&&pe!==l)){if(Mt=ot(l),qt=ot(l,o.draggable),typeof f=="function"){if(f.call(this,t,l,this)){K({sortable:e,rootEl:c,name:"filter",targetEl:l,toEl:i,fromEl:i}),G("filter",e,{evt:t}),s&&t.preventDefault();return}}else if(f&&(f=f.split(",").some(function(d){if(d=lt(c,d.trim(),i,!1),d)return K({sortable:e,rootEl:d,name:"filter",targetEl:l,fromEl:i,toEl:i}),G("filter",e,{evt:t}),!0}),f)){s&&t.preventDefault();return}o.handle&&!lt(c,o.handle,i,!1)||this._prepareDragStart(t,a,l)}}},_prepareDragStart:function(t,e,i){var o=this,s=o.el,r=o.options,a=s.ownerDocument,l;if(i&&!h&&i.parentNode===s){var c=k(i);if(I=s,h=i,R=h.parentNode,Lt=h.nextSibling,pe=i,ce=r.group,v.dragged=h,At={target:h,clientX:(e||t).clientX,clientY:(e||t).clientY},Ii=At.clientX-c.left,Ti=At.clientY-c.top,this._lastX=(e||t).clientX,this._lastY=(e||t).clientY,h.style["will-change"]="all",l=function(){if(G("delayEnded",o,{evt:t}),v.eventCanceled){o._onDrop();return}o._disableDelayedDragEvents(),!Di&&o.nativeDraggable&&(h.draggable=!0),o._triggerDragStart(t,e),K({sortable:o,name:"choose",originalEvent:t}),Q(h,r.chosenClass,!0)},r.ignore.split(",").forEach(function(f){ki(h,f.trim(),ke)}),O(a,"dragover",Ct),O(a,"mousemove",Ct),O(a,"touchmove",Ct),r.supportPointer?(O(a,"pointerup",o._onDrop),!this.nativeDraggable&&O(a,"pointercancel",o._onDrop)):(O(a,"mouseup",o._onDrop),O(a,"touchend",o._onDrop),O(a,"touchcancel",o._onDrop)),Di&&this.nativeDraggable&&(this.options.touchStartThreshold=4,h.draggable=!0),G("delayStart",this,{evt:t}),r.delay&&(!r.delayOnTouchOnly||e)&&(!this.nativeDraggable||!(Zt||mt))){if(v.eventCanceled){this._onDrop();return}r.supportPointer?(O(a,"pointerup",o._disableDelayedDrag),O(a,"pointercancel",o._disableDelayedDrag)):(O(a,"mouseup",o._disableDelayedDrag),O(a,"touchend",o._disableDelayedDrag),O(a,"touchcancel",o._disableDelayedDrag)),O(a,"mousemove",o._delayedDragTouchMoveHandler),O(a,"touchmove",o._delayedDragTouchMoveHandler),r.supportPointer&&O(a,"pointermove",o._delayedDragTouchMoveHandler),o._dragStartTimer=setTimeout(l,r.delay)}else l()}},_delayedDragTouchMoveHandler:function(t){var e=t.touches?t.touches[0]:t;Math.max(Math.abs(e.clientX-this._lastX),Math.abs(e.clientY-this._lastY))>=Math.floor(this.options.touchStartThreshold/(this.nativeDraggable&&window.devicePixelRatio||1))&&this._disableDelayedDrag()},_disableDelayedDrag:function(){h&&ke(h),clearTimeout(this._dragStartTimer),this._disableDelayedDragEvents()},_disableDelayedDragEvents:function(){var t=this.el.ownerDocument;x(t,"mouseup",this._disableDelayedDrag),x(t,"touchend",this._disableDelayedDrag),x(t,"touchcancel",this._disableDelayedDrag),x(t,"pointerup",this._disableDelayedDrag),x(t,"pointercancel",this._disableDelayedDrag),x(t,"mousemove",this._delayedDragTouchMoveHandler),x(t,"touchmove",this._delayedDragTouchMoveHandler),x(t,"pointermove",this._delayedDragTouchMoveHandler)},_triggerDragStart:function(t,e){e=e||t.pointerType=="touch"&&t,!this.nativeDraggable||e?this.options.supportPointer?O(document,"pointermove",this._onTouchMove):e?O(document,"touchmove",this._onTouchMove):O(document,"mousemove",this._onTouchMove):(O(h,"dragend",this),O(I,"dragstart",this._onDragStart));try{document.selection?me(function(){document.selection.empty()}):window.getSelection().removeAllRanges()}catch{}},_dragStarted:function(t,e){if(Pt=!1,I&&h){G("dragStarted",this,{evt:e}),this.nativeDraggable&&O(document,"dragover",zn);var i=this.options;!t&&Q(h,i.dragClass,!1),Q(h,i.ghostClass,!0),v.active=this,t&&this._appendGhost(),K({sortable:this,name:"start",originalEvent:e})}else this._nulling()},_emulateDragOver:function(){if(at){this._lastX=at.clientX,this._lastY=at.clientY,Xi();for(var t=document.elementFromPoint(at.clientX,at.clientY),e=t;t&&t.shadowRoot&&(t=t.shadowRoot.elementFromPoint(at.clientX,at.clientY),t!==e);)e=t;if(h.parentNode[j]._isOutsideThisEl(t),e)do{if(e[j]){var i=void 0;if(i=e[j]._onDragOver({clientX:at.clientX,clientY:at.clientY,target:t,rootEl:e}),i&&!this.options.dragoverBubble)break}t=e}while(e=Ni(e));Ki()}},_onTouchMove:function(t){if(At){var e=this.options,i=e.fallbackTolerance,o=e.fallbackOffset,s=t.touches?t.touches[0]:t,r=w&&Nt(w,!0),a=w&&r&&r.a,l=w&&r&&r.d,c=fe&&$&&Li($),f=(s.clientX-At.clientX+o.x)/(a||1)+(c?c[0]-Ne[0]:0)/(a||1),d=(s.clientY-At.clientY+o.y)/(l||1)+(c?c[1]-Ne[1]:0)/(l||1);if(!v.active&&!Pt){if(i&&Math.max(Math.abs(s.clientX-this._lastX),Math.abs(s.clientY-this._lastY))=0&&(K({rootEl:R,name:"add",toEl:R,fromEl:I,originalEvent:t}),K({sortable:this,name:"remove",toEl:R,originalEvent:t}),K({rootEl:R,name:"sort",toEl:R,fromEl:I,originalEvent:t}),K({sortable:this,name:"sort",toEl:R,originalEvent:t})),V&&V.save()):Z!==Mt&&Z>=0&&(K({sortable:this,name:"update",toEl:R,originalEvent:t}),K({sortable:this,name:"sort",toEl:R,originalEvent:t})),v.active&&((Z==null||Z===-1)&&(Z=Mt,yt=qt),K({sortable:this,name:"end",toEl:R,originalEvent:t}),this.save()))),this._nulling()},_nulling:function(){G("nulling",this),I=h=R=w=Lt=T=pe=St=At=at=Kt=Z=yt=Mt=qt=Rt=Jt=V=ce=v.dragged=v.ghost=v.clone=v.active=null,Se.forEach(function(t){t.checked=!0}),Se.length=Pe=Me=0},handleEvent:function(t){switch(t.type){case"drop":case"dragend":this._onDrop(t);break;case"dragenter":case"dragover":h&&(this._onDragOver(t),$n(t));break;case"selectstart":t.preventDefault();break}},toArray:function(){for(var t=[],e,i=this.el.children,o=0,s=i.length,r=this.options;oo.right+s||n.clientY>i.bottom&&n.clientX>i.left:n.clientY>o.bottom+s||n.clientX>i.right&&n.clientY>i.top}function Un(n,t,e,i,o,s,r,a){var l=i?n.clientY:n.clientX,c=i?e.height:e.width,f=i?e.top:e.left,d=i?e.bottom:e.right,p=!1;if(!r){if(a&&gef+c*s/2:ld-ge)return-Jt}else if(l>f+c*(1-o)/2&&ld-c*s/2)?l>f+c/2?1:-1:0}function Gn(n){return ot(h){},options:L,optionsLimit:X=null,placeholder:M,position:H=null,searchableOptionFields:tt=["label"],searchDebounce:z=1e3,searchingMessage:Y="Searching...",searchPrompt:B="Search...",state:et,statePath:ee=null}){this.canOptionLabelsWrap=t,this.canSelectPlaceholder=e,this.element=i,this.getOptionLabelUsing=o,this.getOptionLabelsUsing=s,this.getOptionsUsing=r,this.getSearchResultsUsing=a,this.hasDynamicOptions=l,this.hasDynamicSearchResults=c,this.hasInitialNoOptionsMessage=f,this.initialOptionLabel=d,this.initialOptionLabels=p,this.initialState=u,this.isAutofocused=g,this.isDisabled=m,this.isHtmlAllowed=S,this.isMultiple=E,this.isReorderable=y,this.isSearchable=D,this.livewireId=A,this.loadingMessage=C,this.maxItems=F,this.maxItemsMessage=q,this.noOptionsMessage=J,this.noSearchResultsMessage=_,this.onStateChange=W,this.options=L,this.optionsLimit=X,this.originalOptions=JSON.parse(JSON.stringify(L)),this.placeholder=M,this.position=H,this.searchableOptionFields=Array.isArray(tt)?tt:["label"],this.searchDebounce=z,this.searchingMessage=Y,this.searchPrompt=B,this.state=et,this.statePath=ee,this.activeSearchId=0,this.labelRepository={},this.isOpen=!1,this.selectedIndex=-1,this.searchQuery="",this.searchTimeout=null,this.isSearching=!1,this.selectedDisplayVersion=0,this.render(),this.setUpEventListeners(),this.isAutofocused&&this.selectButton.focus()}populateLabelRepositoryFromOptions(t){if(!(!t||!Array.isArray(t)))for(let e of t)e.options&&Array.isArray(e.options)?this.populateLabelRepositoryFromOptions(e.options):e.value!==void 0&&e.label!==void 0&&(this.labelRepository[e.value]=e.label)}render(){this.populateLabelRepositoryFromOptions(this.options),this.container=document.createElement("div"),this.container.className="fi-select-input-ctn",this.canOptionLabelsWrap||this.container.classList.add("fi-select-input-ctn-option-labels-not-wrapped"),this.container.setAttribute("aria-haspopup","listbox"),this.selectButton=document.createElement("button"),this.selectButton.className="fi-select-input-btn",this.selectButton.type="button",this.selectButton.setAttribute("aria-expanded","false"),this.selectedDisplay=document.createElement("div"),this.selectedDisplay.className="fi-select-input-value-ctn",this.updateSelectedDisplay(),this.selectButton.appendChild(this.selectedDisplay),this.dropdown=document.createElement("div"),this.dropdown.className="fi-dropdown-panel fi-scrollable",this.dropdown.setAttribute("role","listbox"),this.dropdown.setAttribute("tabindex","-1"),this.dropdown.style.display="none",this.dropdownId=`fi-select-input-dropdown-${Math.random().toString(36).substring(2,11)}`,this.dropdown.id=this.dropdownId,this.isMultiple&&this.dropdown.setAttribute("aria-multiselectable","true"),this.isSearchable&&(this.searchContainer=document.createElement("div"),this.searchContainer.className="fi-select-input-search-ctn",this.searchInput=document.createElement("input"),this.searchInput.className="fi-input",this.searchInput.type="text",this.searchInput.placeholder=this.searchPrompt,this.searchInput.setAttribute("aria-label","Search"),this.searchContainer.appendChild(this.searchInput),this.dropdown.appendChild(this.searchContainer),this.searchInput.addEventListener("input",t=>{this.isDisabled||this.handleSearch(t)}),this.searchInput.addEventListener("keydown",t=>{if(!this.isDisabled){if(t.key==="Tab"){t.preventDefault();let e=this.getVisibleOptions();if(e.length===0)return;t.shiftKey?this.selectedIndex=e.length-1:this.selectedIndex=0,e.forEach(i=>{i.classList.remove("fi-selected")}),e[this.selectedIndex].classList.add("fi-selected"),e[this.selectedIndex].focus()}else if(t.key==="ArrowDown"){if(t.preventDefault(),t.stopPropagation(),this.getVisibleOptions().length===0)return;this.selectedIndex=-1,this.searchInput.blur(),this.focusNextOption()}else if(t.key==="ArrowUp"){t.preventDefault(),t.stopPropagation();let e=this.getVisibleOptions();if(e.length===0)return;this.selectedIndex=e.length-1,this.searchInput.blur(),e[this.selectedIndex].classList.add("fi-selected"),e[this.selectedIndex].focus(),e[this.selectedIndex].id&&this.dropdown.setAttribute("aria-activedescendant",e[this.selectedIndex].id),this.scrollOptionIntoView(e[this.selectedIndex])}else if(t.key==="Enter"){if(t.preventDefault(),t.stopPropagation(),this.isSearching)return;let e=this.getVisibleOptions();if(e.length===0)return;let i=e.find(s=>{let r=s.getAttribute("aria-disabled")==="true",a=s.classList.contains("fi-disabled"),l=s.offsetParent===null;return!(r||a||l)});if(!i)return;let o=i.getAttribute("data-value");if(o===null)return;this.selectOption(o)}}})),this.optionsList=document.createElement("ul"),this.renderOptions(),this.container.appendChild(this.selectButton),this.container.appendChild(this.dropdown),this.element.appendChild(this.container),this.applyDisabledState()}renderOptions(){this.optionsList.innerHTML="";let t=0,e=this.options,i=0,o=!1;this.options.forEach(a=>{a.options&&Array.isArray(a.options)?(i+=a.options.length,o=!0):i++}),o?this.optionsList.className="fi-select-input-options-ctn":i>0&&(this.optionsList.className="fi-dropdown-list");let s=o?null:this.optionsList,r=0;for(let a of e){if(this.optionsLimit>0&&r>=this.optionsLimit)break;if(a.options&&Array.isArray(a.options)){let l=a.options;if(this.isMultiple&&Array.isArray(this.state)&&this.state.length>0&&(l=a.options.filter(c=>!this.state.includes(c.value))),l.length>0){if(this.optionsLimit>0){let c=this.optionsLimit-r;c{let a=this.createOptionElement(r.value,r);s.appendChild(a)}),i.appendChild(o),i.appendChild(s),this.optionsList.appendChild(i)}createOptionElement(t,e){let i=t,o=e,s=!1;typeof e=="object"&&e!==null&&"label"in e&&"value"in e&&(i=e.value,o=e.label,s=e.isDisabled||!1);let r=document.createElement("li");r.className="fi-dropdown-list-item fi-select-input-option",s&&r.classList.add("fi-disabled");let a=`fi-select-input-option-${Math.random().toString(36).substring(2,11)}`;if(r.id=a,r.setAttribute("role","option"),r.setAttribute("data-value",i),r.setAttribute("tabindex","0"),s&&r.setAttribute("aria-disabled","true"),this.isHtmlAllowed&&typeof o=="string"){let f=document.createElement("div");f.innerHTML=o;let d=f.textContent||f.innerText||o;r.setAttribute("aria-label",d)}let l=this.isMultiple?Array.isArray(this.state)&&this.state.includes(i):this.state===i;r.setAttribute("aria-selected",l?"true":"false"),l&&r.classList.add("fi-selected");let c=document.createElement("span");return this.isHtmlAllowed?c.innerHTML=o:c.textContent=o,r.appendChild(c),s||r.addEventListener("click",f=>{f.preventDefault(),f.stopPropagation(),this.selectOption(i),this.isMultiple&&(this.isSearchable&&this.searchInput?setTimeout(()=>{this.searchInput.focus()},0):setTimeout(()=>{r.focus()},0))}),r}async updateSelectedDisplay(){this.selectedDisplayVersion=this.selectedDisplayVersion+1;let t=this.selectedDisplayVersion,e=document.createDocumentFragment();if(this.isMultiple){if(!Array.isArray(this.state)||this.state.length===0){let o=document.createElement("span");o.textContent=this.placeholder,o.classList.add("fi-select-input-placeholder"),e.appendChild(o)}else{let o=await this.getLabelsForMultipleSelection();if(t!==this.selectedDisplayVersion)return;this.addBadgesForSelectedOptions(o,e)}t===this.selectedDisplayVersion&&(this.selectedDisplay.replaceChildren(e),this.isOpen&&this.deferPositionDropdown());return}if(this.state===null||this.state===""){let o=document.createElement("span");if(o.textContent=this.placeholder,o.classList.add("fi-select-input-placeholder"),e.appendChild(o),t===this.selectedDisplayVersion){this.selectedDisplay.replaceChildren(e);let s=this.container.querySelector(".fi-select-input-value-remove-btn");s&&s.remove(),this.container.classList.remove("fi-select-input-ctn-clearable")}return}let i=await this.getLabelForSingleSelection();t===this.selectedDisplayVersion&&(this.addSingleSelectionDisplay(i,e),t===this.selectedDisplayVersion&&this.selectedDisplay.replaceChildren(e))}async getLabelsForMultipleSelection(){let t=this.getSelectedOptionLabels(),e=[];if(Array.isArray(this.state)){for(let o of this.state)if(!P(this.labelRepository[o])){if(P(t[o])){this.labelRepository[o]=t[o];continue}e.push(o.toString())}}if(e.length>0&&P(this.initialOptionLabels)&&JSON.stringify(this.state)===JSON.stringify(this.initialState)){if(Array.isArray(this.initialOptionLabels))for(let o of this.initialOptionLabels)P(o)&&o.value!==void 0&&o.label!==void 0&&e.includes(o.value)&&(this.labelRepository[o.value]=o.label)}else if(e.length>0&&this.getOptionLabelsUsing)try{let o=await this.getOptionLabelsUsing();for(let s of o)P(s)&&s.value!==void 0&&s.label!==void 0&&(this.labelRepository[s.value]=s.label)}catch(o){console.error("Error fetching option labels:",o)}let i=[];if(Array.isArray(this.state))for(let o of this.state)P(this.labelRepository[o])?i.push(this.labelRepository[o]):P(t[o])?i.push(t[o]):i.push(o);return i}createBadgeElement(t,e){let i=document.createElement("span");i.className="fi-badge fi-size-md fi-color fi-color-primary fi-text-color-600 dark:fi-text-color-200",P(t)&&i.setAttribute("data-value",t);let o=document.createElement("span");o.className="fi-badge-label-ctn";let s=document.createElement("span");s.className="fi-badge-label",this.canOptionLabelsWrap&&s.classList.add("fi-wrapped"),this.isHtmlAllowed?s.innerHTML=e:s.textContent=e,o.appendChild(s),i.appendChild(o);let r=this.createRemoveButton(t,e);return i.appendChild(r),i}createRemoveButton(t,e){let i=document.createElement("button");return i.type="button",i.className="fi-badge-delete-btn",i.innerHTML='',i.setAttribute("aria-label","Remove "+(this.isHtmlAllowed?e.replace(/<[^>]*>/g,""):e)),i.addEventListener("click",o=>{o.stopPropagation(),P(t)&&this.selectOption(t)}),i.addEventListener("keydown",o=>{(o.key===" "||o.key==="Enter")&&(o.preventDefault(),o.stopPropagation(),P(t)&&this.selectOption(t))}),i}addBadgesForSelectedOptions(t,e=this.selectedDisplay){let i=document.createElement("div");i.className="fi-select-input-value-badges-ctn",t.forEach((o,s)=>{let r=Array.isArray(this.state)?this.state[s]:null,a=this.createBadgeElement(r,o);i.appendChild(a)}),e.appendChild(i),this.isReorderable&&(i.addEventListener("click",o=>{o.stopPropagation()}),i.addEventListener("mousedown",o=>{o.stopPropagation()}),new Ui(i,{animation:150,onEnd:()=>{let o=[];i.querySelectorAll("[data-value]").forEach(s=>{o.push(s.getAttribute("data-value"))}),this.state=o,this.onStateChange(this.state)}}))}async getLabelForSingleSelection(){let t=this.labelRepository[this.state];if(bt(t)&&(t=this.getSelectedOptionLabel(this.state)),bt(t)&&P(this.initialOptionLabel)&&this.state===this.initialState)t=this.initialOptionLabel,P(this.state)&&(this.labelRepository[this.state]=t);else if(bt(t)&&this.getOptionLabelUsing)try{t=await this.getOptionLabelUsing(),P(t)&&P(this.state)&&(this.labelRepository[this.state]=t)}catch(e){console.error("Error fetching option label:",e),t=this.state}else bt(t)&&(t=this.state);return t}addSingleSelectionDisplay(t,e=this.selectedDisplay){let i=document.createElement("span");if(i.className="fi-select-input-value-label",this.isHtmlAllowed?i.innerHTML=t:i.textContent=t,e.appendChild(i),!this.canSelectPlaceholder||this.container.querySelector(".fi-select-input-value-remove-btn"))return;let o=document.createElement("button");o.type="button",o.className="fi-select-input-value-remove-btn",o.innerHTML='',o.setAttribute("aria-label","Clear selection"),o.addEventListener("click",s=>{s.stopPropagation(),this.selectOption("")}),o.addEventListener("keydown",s=>{(s.key===" "||s.key==="Enter")&&(s.preventDefault(),s.stopPropagation(),this.selectOption(""))}),this.container.appendChild(o),this.container.classList.add("fi-select-input-ctn-clearable")}getSelectedOptionLabel(t){if(P(this.labelRepository[t]))return this.labelRepository[t];let e="";for(let i of this.options)if(i.options&&Array.isArray(i.options)){for(let o of i.options)if(o.value===t){e=o.label,this.labelRepository[t]=e;break}}else if(i.value===t){e=i.label,this.labelRepository[t]=e;break}return e}setUpEventListeners(){this.buttonClickListener=()=>{this.toggleDropdown()},this.documentClickListener=t=>{!this.container.contains(t.target)&&this.isOpen&&this.closeDropdown()},this.buttonKeydownListener=t=>{this.isDisabled||this.handleSelectButtonKeydown(t)},this.dropdownKeydownListener=t=>{this.isDisabled||this.isSearchable&&document.activeElement===this.searchInput&&!["Tab","Escape"].includes(t.key)||this.handleDropdownKeydown(t)},this.selectButton.addEventListener("click",this.buttonClickListener),document.addEventListener("click",this.documentClickListener),this.selectButton.addEventListener("keydown",this.buttonKeydownListener),this.dropdown.addEventListener("keydown",this.dropdownKeydownListener),!this.isMultiple&&this.livewireId&&this.statePath&&this.getOptionLabelUsing&&(this.refreshOptionLabelListener=async t=>{if(t.detail.livewireId===this.livewireId&&t.detail.statePath===this.statePath&&P(this.state))try{delete this.labelRepository[this.state];let e=await this.getOptionLabelUsing();P(e)&&(this.labelRepository[this.state]=e);let i=this.selectedDisplay.querySelector(".fi-select-input-value-label");P(i)&&(this.isHtmlAllowed?i.innerHTML=e:i.textContent=e),this.updateOptionLabelInList(this.state,e)}catch(e){console.error("Error refreshing option label:",e)}},window.addEventListener("filament-forms::select.refreshSelectedOptionLabel",this.refreshOptionLabelListener))}updateOptionLabelInList(t,e){this.labelRepository[t]=e;let i=this.getVisibleOptions();for(let o of i)if(o.getAttribute("data-value")===String(t)){if(o.innerHTML="",this.isHtmlAllowed){let s=document.createElement("span");s.innerHTML=e,o.appendChild(s)}else o.appendChild(document.createTextNode(e));break}for(let o of this.options)if(o.options&&Array.isArray(o.options)){for(let s of o.options)if(s.value===t){s.label=e;break}}else if(o.value===t){o.label=e;break}for(let o of this.originalOptions)if(o.options&&Array.isArray(o.options)){for(let s of o.options)if(s.value===t){s.label=e;break}}else if(o.value===t){o.label=e;break}}handleSelectButtonKeydown(t){switch(t.key){case"ArrowDown":t.preventDefault(),t.stopPropagation(),this.isOpen?this.focusNextOption():this.openDropdown();break;case"ArrowUp":t.preventDefault(),t.stopPropagation(),this.isOpen?this.focusPreviousOption():this.openDropdown();break;case" ":if(t.preventDefault(),this.isOpen){if(this.selectedIndex>=0){let e=this.getVisibleOptions()[this.selectedIndex];e&&e.click()}}else this.openDropdown();break;case"Enter":break;case"Escape":this.isOpen&&(t.preventDefault(),this.closeDropdown());break;case"Tab":this.isOpen&&this.closeDropdown();break;default:if(this.isSearchable&&!t.ctrlKey&&!t.metaKey&&!t.altKey&&typeof t.key=="string"&&t.key.length===1){t.preventDefault();let e=t.key;this.isOpen||this.openDropdown(),this.searchInput&&(this.searchInput.focus(),this.searchInput.value=(this.searchInput.value||"")+e,this.searchInput.dispatchEvent(new Event("input",{bubbles:!0})))}break}}handleDropdownKeydown(t){switch(t.key){case"ArrowDown":t.preventDefault(),t.stopPropagation(),this.focusNextOption();break;case"ArrowUp":t.preventDefault(),t.stopPropagation(),this.focusPreviousOption();break;case" ":if(t.preventDefault(),this.selectedIndex>=0){let e=this.getVisibleOptions()[this.selectedIndex];e&&e.click()}break;case"Enter":if(t.preventDefault(),this.selectedIndex>=0){let e=this.getVisibleOptions()[this.selectedIndex];e&&e.click()}else{let e=this.element.closest("form");e&&e.submit()}break;case"Escape":t.preventDefault(),this.closeDropdown(),this.selectButton.focus();break;case"Tab":this.closeDropdown();break;default:if(this.isSearchable&&!t.ctrlKey&&!t.metaKey&&!t.altKey&&typeof t.key=="string"&&t.key.length===1){t.preventDefault();let e=t.key;this.searchInput&&(this.searchInput.focus(),this.searchInput.value=(this.searchInput.value||"")+e,this.searchInput.dispatchEvent(new Event("input",{bubbles:!0})))}break}}toggleDropdown(){if(!this.isDisabled){if(this.isOpen){this.closeDropdown();return}this.isMultiple&&!this.isSearchable&&!this.hasAvailableOptions()||this.openDropdown()}}hasAvailableOptions(){for(let t of this.options)if(t.options&&Array.isArray(t.options)){for(let e of t.options)if(!Array.isArray(this.state)||!this.state.includes(e.value))return!0}else if(!Array.isArray(this.state)||!this.state.includes(t.value))return!0;return!1}async openDropdown(){this.dropdown.style.display="block",this.dropdown.style.opacity="0";let t=this.selectButton.closest(".fi-fixed-positioning-context")!==null&&this.selectButton.closest(".fi-absolute-positioning-context")===null;if(this.dropdown.style.position=t?"fixed":"absolute",this.dropdown.style.width=`${this.selectButton.offsetWidth}px`,this.selectButton.setAttribute("aria-expanded","true"),this.isOpen=!0,this.positionDropdown(),this.resizeListener||(this.resizeListener=()=>{this.dropdown.style.width=`${this.selectButton.offsetWidth}px`,this.positionDropdown()},window.addEventListener("resize",this.resizeListener)),this.scrollListener||(this.scrollListener=()=>this.positionDropdown(),window.addEventListener("scroll",this.scrollListener,!0)),this.dropdown.style.opacity="1",this.isSearchable&&this.searchInput&&(this.searchInput.value="",this.searchQuery="",this.hasDynamicOptions||(this.options=JSON.parse(JSON.stringify(this.originalOptions)),this.renderOptions())),this.hasDynamicOptions&&this.getOptionsUsing){this.showLoadingState(!1);try{let e=await this.getOptionsUsing(),i=Array.isArray(e)?e:e&&Array.isArray(e.options)?e.options:[];if(this.options=i,this.originalOptions=JSON.parse(JSON.stringify(i)),this.populateLabelRepositoryFromOptions(i),this.isSearchable&&this.searchInput&&(this.searchInput.value&&this.searchInput.value.trim()!==""||this.searchQuery&&this.searchQuery.trim()!=="")){let o=(this.searchInput.value||this.searchQuery||"").trim().toLowerCase();this.hideLoadingState(),this.filterOptions(o)}else this.renderOptions()}catch(e){console.error("Error fetching options:",e),this.hideLoadingState()}}else(!this.hasInitialNoOptionsMessage||this.searchQuery)&&this.hideLoadingState();if(this.isSearchable&&this.searchInput)this.searchInput.focus();else{this.selectedIndex=-1;let e=this.getVisibleOptions();if(this.isMultiple){if(Array.isArray(this.state)&&this.state.length>0){for(let i=0;i0&&(this.selectedIndex=0),this.selectedIndex>=0&&(e[this.selectedIndex].classList.add("fi-selected"),e[this.selectedIndex].focus())}}positionDropdown(){let t=this.position==="top"?"top-start":"bottom-start",e=[yi(4),Si({padding:5})];this.position!=="top"&&this.position!=="bottom"&&e.push(xi());let i=this.selectButton.closest(".fi-fixed-positioning-context")!==null&&this.selectButton.closest(".fi-absolute-positioning-context")===null;Oi(this.selectButton,this.dropdown,{placement:t,middleware:e,strategy:i?"fixed":"absolute"}).then(({x:o,y:s})=>{Object.assign(this.dropdown.style,{left:`${o}px`,top:`${s}px`})})}deferPositionDropdown(){this.isOpen&&(this.positioningRequestAnimationFrame&&(cancelAnimationFrame(this.positioningRequestAnimationFrame),this.positioningRequestAnimationFrame=null),this.positioningRequestAnimationFrame=requestAnimationFrame(()=>{this.positionDropdown(),this.positioningRequestAnimationFrame=null}))}closeDropdown(){this.dropdown.style.display="none",this.selectButton.setAttribute("aria-expanded","false"),this.isOpen=!1,this.searchTimeout&&(clearTimeout(this.searchTimeout),this.searchTimeout=null),this.activeSearchId++,this.isSearching=!1,this.hideLoadingState(),this.resizeListener&&(window.removeEventListener("resize",this.resizeListener),this.resizeListener=null),this.scrollListener&&(window.removeEventListener("scroll",this.scrollListener,!0),this.scrollListener=null),this.getVisibleOptions().forEach(e=>{e.classList.remove("fi-selected")}),this.dropdown.removeAttribute("aria-activedescendant")}focusNextOption(){let t=this.getVisibleOptions();if(t.length!==0){if(this.selectedIndex>=0&&this.selectedIndex=0&&this.selectedIndexe.bottom?this.dropdown.scrollTop+=i.bottom-e.bottom:i.top li[role="option"]')):t=Array.from(this.optionsList.querySelectorAll(':scope > ul.fi-dropdown-list > li[role="option"]'));let e=Array.from(this.optionsList.querySelectorAll('li.fi-select-input-option-group > ul > li[role="option"]'));return[...t,...e]}getSelectedOptionLabels(){if(!Array.isArray(this.state)||this.state.length===0)return{};let t={};for(let e of this.state){let i=!1;for(let o of this.options)if(o.options&&Array.isArray(o.options)){for(let s of o.options)if(s.value===e){t[e]=s.label,i=!0;break}if(i)break}else if(o.value===e){t[e]=o.label,i=!0;break}}return t}handleSearch(t){let e=t.target.value.trim();if(this.searchQuery=e,this.searchTimeout&&clearTimeout(this.searchTimeout),e===""){this.options=JSON.parse(JSON.stringify(this.originalOptions)),this.renderOptions();return}if(!this.getSearchResultsUsing||typeof this.getSearchResultsUsing!="function"||!this.hasDynamicSearchResults){this.filterOptions(e);return}this.searchTimeout=setTimeout(async()=>{this.searchTimeout=null;let i=++this.activeSearchId;this.isSearching=!0;try{this.showLoadingState(!0);let o=await this.getSearchResultsUsing(e);if(i!==this.activeSearchId||!this.isOpen)return;let s=Array.isArray(o)?o:o&&Array.isArray(o.options)?o.options:[];this.options=s,this.populateLabelRepositoryFromOptions(s),this.hideLoadingState(),this.renderOptions(),this.isOpen&&this.deferPositionDropdown(),this.options.length===0&&this.showNoResultsMessage()}catch(o){i===this.activeSearchId&&(console.error("Error fetching search results:",o),this.hideLoadingState(),this.options=JSON.parse(JSON.stringify(this.originalOptions)),this.renderOptions())}finally{i===this.activeSearchId&&(this.isSearching=!1)}},this.searchDebounce)}showLoadingState(t=!1){this.optionsList.parentNode===this.dropdown&&this.dropdown.removeChild(this.optionsList),this.hideLoadingState();let e=document.createElement("div");e.className="fi-select-input-message",e.textContent=t?this.searchingMessage:this.loadingMessage,this.dropdown.appendChild(e),this.isOpen&&this.deferPositionDropdown()}hideLoadingState(){let t=this.dropdown.querySelector(".fi-select-input-message");t&&t.remove()}showNoOptionsMessage(){this.optionsList.parentNode===this.dropdown&&this.dropdown.removeChild(this.optionsList),this.hideLoadingState();let t=document.createElement("div");t.className="fi-select-input-message",t.textContent=this.noOptionsMessage,this.dropdown.appendChild(t),this.isOpen&&this.deferPositionDropdown()}showNoResultsMessage(){this.optionsList.parentNode===this.dropdown&&this.dropdown.removeChild(this.optionsList),this.hideLoadingState();let t=document.createElement("div");t.className="fi-select-input-message",t.textContent=this.noSearchResultsMessage,this.dropdown.appendChild(t),this.isOpen&&this.deferPositionDropdown()}filterOptions(t){let e=this.searchableOptionFields.includes("label"),i=this.searchableOptionFields.includes("value");t=t.toLowerCase();let o=[];for(let s of this.originalOptions)if(s.options&&Array.isArray(s.options)){let r=s.options.filter(a=>e&&a.label.toLowerCase().includes(t)||i&&String(a.value).toLowerCase().includes(t));r.length>0&&o.push({label:s.label,options:r})}else(e&&s.label.toLowerCase().includes(t)||i&&String(s.value).toLowerCase().includes(t))&&o.push(s);this.options=o,this.renderOptions(),this.options.length===0&&this.showNoResultsMessage(),this.isOpen&&this.positionDropdown()}selectOption(t){if(this.isDisabled)return;if(!this.isMultiple){this.state=t,this.updateSelectedDisplay(),this.renderOptions(),this.closeDropdown(),this.selectButton.focus(),this.onStateChange(this.state);return}let e=Array.isArray(this.state)?[...this.state]:[];if(e.includes(t)){let o=this.selectedDisplay.querySelector(`[data-value="${t}"]`);if(P(o)){let s=o.parentElement;P(s)&&s.children.length===1?(e=e.filter(r=>r!==t),this.state=e,this.updateSelectedDisplay()):(o.remove(),e=e.filter(r=>r!==t),this.state=e)}else e=e.filter(s=>s!==t),this.state=e,this.updateSelectedDisplay();this.renderOptions(),this.isOpen&&this.deferPositionDropdown(),this.maintainFocusInMultipleMode(),this.onStateChange(this.state);return}if(this.maxItems&&e.length>=this.maxItems){this.maxItemsMessage&&alert(this.maxItemsMessage);return}e.push(t),this.state=e;let i=this.selectedDisplay.querySelector(".fi-select-input-value-badges-ctn");bt(i)?this.updateSelectedDisplay():this.addSingleBadge(t,i),this.renderOptions(),this.isOpen&&this.deferPositionDropdown(),this.maintainFocusInMultipleMode(),this.onStateChange(this.state)}async addSingleBadge(t,e){let i=this.labelRepository[t];if(bt(i)&&(i=this.getSelectedOptionLabel(t),P(i)&&(this.labelRepository[t]=i)),bt(i)&&this.getOptionLabelsUsing)try{let s=await this.getOptionLabelsUsing();for(let r of s)if(P(r)&&r.value===t&&r.label!==void 0){i=r.label,this.labelRepository[t]=i;break}}catch(s){console.error("Error fetching option label:",s)}bt(i)&&(i=t);let o=this.createBadgeElement(t,i);e.appendChild(o)}maintainFocusInMultipleMode(){if(this.isSearchable&&this.searchInput){this.searchInput.focus();return}let t=this.getVisibleOptions();if(t.length!==0){if(this.selectedIndex=-1,Array.isArray(this.state)&&this.state.length>0){for(let e=0;e{e.setAttribute("disabled","disabled"),e.classList.add("fi-disabled")}),!this.isMultiple&&this.canSelectPlaceholder){let t=this.container.querySelector(".fi-select-input-value-remove-btn");t&&(t.setAttribute("disabled","disabled"),t.classList.add("fi-disabled"))}this.isSearchable&&this.searchInput&&(this.searchInput.setAttribute("disabled","disabled"),this.searchInput.classList.add("fi-disabled"))}else{if(this.selectButton.removeAttribute("disabled"),this.selectButton.removeAttribute("aria-disabled"),this.selectButton.classList.remove("fi-disabled"),this.isMultiple&&this.container.querySelectorAll(".fi-select-input-badge-remove").forEach(e=>{e.removeAttribute("disabled"),e.classList.remove("fi-disabled")}),!this.isMultiple&&this.canSelectPlaceholder){let t=this.container.querySelector(".fi-select-input-value-remove-btn");t&&(t.removeAttribute("disabled"),t.classList.add("fi-disabled"))}this.isSearchable&&this.searchInput&&(this.searchInput.removeAttribute("disabled"),this.searchInput.classList.remove("fi-disabled"))}}destroy(){this.selectButton&&this.buttonClickListener&&this.selectButton.removeEventListener("click",this.buttonClickListener),this.documentClickListener&&document.removeEventListener("click",this.documentClickListener),this.selectButton&&this.buttonKeydownListener&&this.selectButton.removeEventListener("keydown",this.buttonKeydownListener),this.dropdown&&this.dropdownKeydownListener&&this.dropdown.removeEventListener("keydown",this.dropdownKeydownListener),this.resizeListener&&(window.removeEventListener("resize",this.resizeListener),this.resizeListener=null),this.scrollListener&&(window.removeEventListener("scroll",this.scrollListener,!0),this.scrollListener=null),this.refreshOptionLabelListener&&window.removeEventListener("filament-forms::select.refreshSelectedOptionLabel",this.refreshOptionLabelListener),this.isOpen&&this.closeDropdown(),this.searchTimeout&&(clearTimeout(this.searchTimeout),this.searchTimeout=null),this.container&&this.container.remove()}};function Qn({canOptionLabelsWrap:n,canSelectPlaceholder:t,getOptionLabelUsing:e,getOptionsUsing:i,getSearchResultsUsing:o,hasDynamicOptions:s,hasDynamicSearchResults:r,hasInitialNoOptionsMessage:a,initialOptionLabel:l,isDisabled:c,isHtmlAllowed:f,isNative:d,isSearchable:p,loadingMessage:u,name:g,noOptionsMessage:m,noSearchResultsMessage:S,options:E,optionsLimit:y,placeholder:D,position:A,recordKey:C,searchableOptionFields:F,searchDebounce:q,searchingMessage:J,searchPrompt:_,state:W}){return{error:void 0,isLoading:!1,select:null,state:W,unsubscribeLivewireHook:null,init(){d||(this.select=new Ee({canOptionLabelsWrap:n,canSelectPlaceholder:t,element:this.$refs.select,getOptionLabelUsing:e,getOptionsUsing:i,getSearchResultsUsing:o,hasDynamicOptions:s,hasDynamicSearchResults:r,hasInitialNoOptionsMessage:a,initialOptionLabel:l,isDisabled:c,isHtmlAllowed:f,isSearchable:p,loadingMessage:u,noOptionsMessage:m,noSearchResultsMessage:S,onStateChange:L=>{this.state=L},options:E,optionsLimit:y,placeholder:D,position:A,searchableOptionFields:F,searchDebounce:q,searchingMessage:J,searchPrompt:_,state:this.state})),this.unsubscribeLivewireHook=Livewire.interceptMessage(({message:L,onSuccess:X})=>{X(()=>{this.$nextTick(()=>{if(this.isLoading||L.component.id!==this.$root.closest("[wire\\:id]")?.attributes["wire:id"].value)return;let M=this.getServerState();M===void 0||this.getNormalizedState()===M||(this.state=M)})})}),this.$watch("state",async L=>{!d&&this.select&&this.select.state!==L&&(this.select.state=L,this.select.updateSelectedDisplay(),this.select.renderOptions());let X=this.getServerState();if(X===void 0||this.getNormalizedState()===X)return;this.isLoading=!0;let M=await this.$wire.updateTableColumnState(g,C,this.state);this.error=M?.error??void 0,!this.error&&this.$refs.serverState&&(this.$refs.serverState.value=this.getNormalizedState()),this.isLoading=!1})},getServerState(){if(this.$refs.serverState)return[null,void 0].includes(this.$refs.serverState.value)?"":this.$refs.serverState.value.replaceAll('\\"','"')},getNormalizedState(){let L=Alpine.raw(this.state);return[null,void 0].includes(L)?"":L},destroy(){this.unsubscribeLivewireHook?.(),this.select&&(this.select.destroy(),this.select=null)}}}export{Qn as default}; +/*! Bundled license information: + +sortablejs/modular/sortable.esm.js: + (**! + * Sortable 1.15.6 + * @author RubaXa + * @author owenm + * @license MIT + *) +*/ diff --git a/public/js/filament/tables/components/columns/text-input.js b/public/js/filament/tables/components/columns/text-input.js new file mode 100644 index 0000000..9f5b1ac --- /dev/null +++ b/public/js/filament/tables/components/columns/text-input.js @@ -0,0 +1 @@ +function a({name:i,recordKey:s,state:n}){return{error:void 0,isLoading:!1,state:n,unsubscribeLivewireHook:null,init(){this.unsubscribeLivewireHook=Livewire.interceptMessage(({message:e,onSuccess:t})=>{t(()=>{this.$nextTick(()=>{if(this.isLoading||e.component.id!==this.$root.closest("[wire\\:id]")?.attributes["wire:id"].value)return;let r=this.getServerState();r===void 0||this.getNormalizedState()===r||(this.state=r)})})}),this.$watch("state",async()=>{let e=this.getServerState();if(e===void 0||this.getNormalizedState()===e)return;this.isLoading=!0;let t=await this.$wire.updateTableColumnState(i,s,this.state);this.error=t?.error??void 0,!this.error&&this.$refs.serverState&&(this.$refs.serverState.value=this.getNormalizedState()),this.isLoading=!1})},getServerState(){if(this.$refs.serverState)return[null,void 0].includes(this.$refs.serverState.value)?"":this.$refs.serverState.value.replaceAll('\\"','"')},getNormalizedState(){let e=Alpine.raw(this.state);return[null,void 0].includes(e)?"":e},destroy(){this.unsubscribeLivewireHook?.()}}}export{a as default}; diff --git a/public/js/filament/tables/components/columns/toggle.js b/public/js/filament/tables/components/columns/toggle.js new file mode 100644 index 0000000..b26a426 --- /dev/null +++ b/public/js/filament/tables/components/columns/toggle.js @@ -0,0 +1 @@ +function a({name:r,recordKey:s,state:n}){return{error:void 0,isLoading:!1,state:n,unsubscribeLivewireHook:null,init(){this.unsubscribeLivewireHook=Livewire.interceptMessage(({message:e,onSuccess:t})=>{t(()=>{this.$nextTick(()=>{if(this.isLoading||e.component.id!==this.$root.closest("[wire\\:id]")?.attributes["wire:id"].value)return;let i=this.getServerState();i===void 0||Alpine.raw(this.state)===i||(this.state=i)})})}),this.$watch("state",async()=>{let e=this.getServerState();if(e===void 0||Alpine.raw(this.state)===e)return;this.isLoading=!0;let t=await this.$wire.updateTableColumnState(r,s,this.state);this.error=t?.error??void 0,!this.error&&this.$refs.serverState&&(this.$refs.serverState.value=this.state?"1":"0"),this.isLoading=!1})},getServerState(){if(this.$refs.serverState)return[1,"1"].includes(this.$refs.serverState.value)},destroy(){this.unsubscribeLivewireHook?.()}}}export{a as default}; diff --git a/public/js/filament/tables/tables.js b/public/js/filament/tables/tables.js new file mode 100644 index 0000000..ed077fa --- /dev/null +++ b/public/js/filament/tables/tables.js @@ -0,0 +1 @@ +(()=>{var M=Math.min,L=Math.max,B=Math.round,H=Math.floor,S=e=>({x:e,y:e});function q(e,t,i){return L(e,M(t,i))}function j(e,t){return typeof e=="function"?e(t):e}function W(e){return e.split("-")[0]}function Q(e){return e.split("-")[1]}function Z(e){return e==="x"?"y":"x"}function oe(e){return e==="y"?"height":"width"}var Pe=new Set(["top","bottom"]);function z(e){return Pe.has(W(e))?"y":"x"}function se(e){return Z(z(e))}function De(e){return{top:0,right:0,bottom:0,left:0,...e}}function re(e){return typeof e!="number"?De(e):{top:e,right:e,bottom:e,left:e}}function E(e){let{x:t,y:i,width:n,height:s}=e;return{width:n,height:s,top:i,left:t,right:t+n,bottom:i+s,x:t,y:i}}function le(e,t,i){let{reference:n,floating:s}=e,l=z(t),o=se(t),r=oe(o),c=W(t),a=l==="y",f=n.x+n.width/2-s.width/2,d=n.y+n.height/2-s.height/2,h=n[r]/2-s[r]/2,u;switch(c){case"top":u={x:f,y:n.y-s.height};break;case"bottom":u={x:f,y:n.y+n.height};break;case"right":u={x:n.x+n.width,y:d};break;case"left":u={x:n.x-s.width,y:d};break;default:u={x:n.x,y:n.y}}switch(Q(t)){case"start":u[o]-=h*(i&&a?-1:1);break;case"end":u[o]+=h*(i&&a?-1:1);break}return u}var ce=async(e,t,i)=>{let{placement:n="bottom",strategy:s="absolute",middleware:l=[],platform:o}=i,r=l.filter(Boolean),c=await(o.isRTL==null?void 0:o.isRTL(t)),a=await o.getElementRects({reference:e,floating:t,strategy:s}),{x:f,y:d}=le(a,n,c),h=n,u={},m=0;for(let p=0;p{let{x:g,y:x}=w;return{x:g,y:x}}},...c}=j(e,t),a={x:i,y:n},f=await ae(t,c),d=z(W(s)),h=Z(d),u=a[h],m=a[d];if(l){let w=h==="y"?"top":"left",g=h==="y"?"bottom":"right",x=u+f[w],y=u-f[g];u=q(x,u,y)}if(o){let w=d==="y"?"top":"left",g=d==="y"?"bottom":"right",x=m+f[w],y=m-f[g];m=q(x,m,y)}let p=r.fn({...t,[h]:u,[d]:m});return{...p,data:{x:p.x-i,y:p.y-n,enabled:{[h]:l,[d]:o}}}}}};function X(){return typeof window<"u"}function P(e){return he(e)?(e.nodeName||"").toLowerCase():"#document"}function v(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function O(e){var t;return(t=(he(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function he(e){return X()?e instanceof Node||e instanceof v(e).Node:!1}function R(e){return X()?e instanceof Element||e instanceof v(e).Element:!1}function T(e){return X()?e instanceof HTMLElement||e instanceof v(e).HTMLElement:!1}function ue(e){return!X()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof v(e).ShadowRoot}var $e=new Set(["inline","contents"]);function N(e){let{overflow:t,overflowX:i,overflowY:n,display:s}=C(e);return/auto|scroll|overlay|hidden|clip/.test(t+n+i)&&!$e.has(s)}var Ne=new Set(["table","td","th"]);function me(e){return Ne.has(P(e))}var Ve=[":popover-open",":modal"];function _(e){return Ve.some(t=>{try{return e.matches(t)}catch{return!1}})}var Be=["transform","translate","scale","rotate","perspective"],He=["transform","translate","scale","rotate","perspective","filter"],We=["paint","layout","strict","content"];function Y(e){let t=G(),i=R(e)?C(e):e;return Be.some(n=>i[n]?i[n]!=="none":!1)||(i.containerType?i.containerType!=="normal":!1)||!t&&(i.backdropFilter?i.backdropFilter!=="none":!1)||!t&&(i.filter?i.filter!=="none":!1)||He.some(n=>(i.willChange||"").includes(n))||We.some(n=>(i.contain||"").includes(n))}function ge(e){let t=k(e);for(;T(t)&&!D(t);){if(Y(t))return t;if(_(t))return null;t=k(t)}return null}function G(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}var ze=new Set(["html","body","#document"]);function D(e){return ze.has(P(e))}function C(e){return v(e).getComputedStyle(e)}function I(e){return R(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function k(e){if(P(e)==="html")return e;let t=e.assignedSlot||e.parentNode||ue(e)&&e.host||O(e);return ue(t)?t.host:t}function pe(e){let t=k(e);return D(t)?e.ownerDocument?e.ownerDocument.body:e.body:T(t)&&N(t)?t:pe(t)}function $(e,t,i){var n;t===void 0&&(t=[]),i===void 0&&(i=!0);let s=pe(e),l=s===((n=e.ownerDocument)==null?void 0:n.body),o=v(s);if(l){let r=J(o);return t.concat(o,o.visualViewport||[],N(s)?s:[],r&&i?$(r):[])}return t.concat(s,$(s,[],i))}function J(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function be(e){let t=C(e),i=parseFloat(t.width)||0,n=parseFloat(t.height)||0,s=T(e),l=s?e.offsetWidth:i,o=s?e.offsetHeight:n,r=B(i)!==l||B(n)!==o;return r&&(i=l,n=o),{width:i,height:n,$:r}}function te(e){return R(e)?e:e.contextElement}function V(e){let t=te(e);if(!T(t))return S(1);let i=t.getBoundingClientRect(),{width:n,height:s,$:l}=be(t),o=(l?B(i.width):i.width)/n,r=(l?B(i.height):i.height)/s;return(!o||!Number.isFinite(o))&&(o=1),(!r||!Number.isFinite(r))&&(r=1),{x:o,y:r}}var _e=S(0);function ve(e){let t=v(e);return!G()||!t.visualViewport?_e:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function Ie(e,t,i){return t===void 0&&(t=!1),!i||t&&i!==v(e)?!1:t}function F(e,t,i,n){t===void 0&&(t=!1),i===void 0&&(i=!1);let s=e.getBoundingClientRect(),l=te(e),o=S(1);t&&(n?R(n)&&(o=V(n)):o=V(e));let r=Ie(l,i,n)?ve(l):S(0),c=(s.left+r.x)/o.x,a=(s.top+r.y)/o.y,f=s.width/o.x,d=s.height/o.y;if(l){let h=v(l),u=n&&R(n)?v(n):n,m=h,p=J(m);for(;p&&n&&u!==m;){let w=V(p),g=p.getBoundingClientRect(),x=C(p),y=g.left+(p.clientLeft+parseFloat(x.paddingLeft))*w.x,A=g.top+(p.clientTop+parseFloat(x.paddingTop))*w.y;c*=w.x,a*=w.y,f*=w.x,d*=w.y,c+=y,a+=A,m=v(p),p=J(m)}}return E({width:f,height:d,x:c,y:a})}function K(e,t){let i=I(e).scrollLeft;return t?t.left+i:F(O(e)).left+i}function Re(e,t){let i=e.getBoundingClientRect(),n=i.left+t.scrollLeft-K(e,i),s=i.top+t.scrollTop;return{x:n,y:s}}function Ue(e){let{elements:t,rect:i,offsetParent:n,strategy:s}=e,l=s==="fixed",o=O(n),r=t?_(t.floating):!1;if(n===o||r&&l)return i;let c={scrollLeft:0,scrollTop:0},a=S(1),f=S(0),d=T(n);if((d||!d&&!l)&&((P(n)!=="body"||N(o))&&(c=I(n)),T(n))){let u=F(n);a=V(n),f.x=u.x+n.clientLeft,f.y=u.y+n.clientTop}let h=o&&!d&&!l?Re(o,c):S(0);return{width:i.width*a.x,height:i.height*a.y,x:i.x*a.x-c.scrollLeft*a.x+f.x+h.x,y:i.y*a.y-c.scrollTop*a.y+f.y+h.y}}function je(e){return Array.from(e.getClientRects())}function Xe(e){let t=O(e),i=I(e),n=e.ownerDocument.body,s=L(t.scrollWidth,t.clientWidth,n.scrollWidth,n.clientWidth),l=L(t.scrollHeight,t.clientHeight,n.scrollHeight,n.clientHeight),o=-i.scrollLeft+K(e),r=-i.scrollTop;return C(n).direction==="rtl"&&(o+=L(t.clientWidth,n.clientWidth)-s),{width:s,height:l,x:o,y:r}}var we=25;function Ye(e,t){let i=v(e),n=O(e),s=i.visualViewport,l=n.clientWidth,o=n.clientHeight,r=0,c=0;if(s){l=s.width,o=s.height;let f=G();(!f||f&&t==="fixed")&&(r=s.offsetLeft,c=s.offsetTop)}let a=K(n);if(a<=0){let f=n.ownerDocument,d=f.body,h=getComputedStyle(d),u=f.compatMode==="CSS1Compat"&&parseFloat(h.marginLeft)+parseFloat(h.marginRight)||0,m=Math.abs(n.clientWidth-d.clientWidth-u);m<=we&&(l-=m)}else a<=we&&(l+=a);return{width:l,height:o,x:r,y:c}}var Ge=new Set(["absolute","fixed"]);function Je(e,t){let i=F(e,!0,t==="fixed"),n=i.top+e.clientTop,s=i.left+e.clientLeft,l=T(e)?V(e):S(1),o=e.clientWidth*l.x,r=e.clientHeight*l.y,c=s*l.x,a=n*l.y;return{width:o,height:r,x:c,y:a}}function xe(e,t,i){let n;if(t==="viewport")n=Ye(e,i);else if(t==="document")n=Xe(O(e));else if(R(t))n=Je(t,i);else{let s=ve(e);n={x:t.x-s.x,y:t.y-s.y,width:t.width,height:t.height}}return E(n)}function Ce(e,t){let i=k(e);return i===t||!R(i)||D(i)?!1:C(i).position==="fixed"||Ce(i,t)}function Ke(e,t){let i=t.get(e);if(i)return i;let n=$(e,[],!1).filter(r=>R(r)&&P(r)!=="body"),s=null,l=C(e).position==="fixed",o=l?k(e):e;for(;R(o)&&!D(o);){let r=C(o),c=Y(o);!c&&r.position==="fixed"&&(s=null),(l?!c&&!s:!c&&r.position==="static"&&!!s&&Ge.has(s.position)||N(o)&&!c&&Ce(e,o))?n=n.filter(f=>f!==o):s=r,o=k(o)}return t.set(e,n),n}function qe(e){let{element:t,boundary:i,rootBoundary:n,strategy:s}=e,o=[...i==="clippingAncestors"?_(t)?[]:Ke(t,this._c):[].concat(i),n],r=o[0],c=o.reduce((a,f)=>{let d=xe(t,f,s);return a.top=L(d.top,a.top),a.right=M(d.right,a.right),a.bottom=M(d.bottom,a.bottom),a.left=L(d.left,a.left),a},xe(t,r,s));return{width:c.right-c.left,height:c.bottom-c.top,x:c.left,y:c.top}}function Qe(e){let{width:t,height:i}=be(e);return{width:t,height:i}}function Ze(e,t,i){let n=T(t),s=O(t),l=i==="fixed",o=F(e,!0,l,t),r={scrollLeft:0,scrollTop:0},c=S(0);function a(){c.x=K(s)}if(n||!n&&!l)if((P(t)!=="body"||N(s))&&(r=I(t)),n){let u=F(t,!0,l,t);c.x=u.x+t.clientLeft,c.y=u.y+t.clientTop}else s&&a();l&&!n&&s&&a();let f=s&&!n&&!l?Re(s,r):S(0),d=o.left+r.scrollLeft-c.x-f.x,h=o.top+r.scrollTop-c.y-f.y;return{x:d,y:h,width:o.width,height:o.height}}function ee(e){return C(e).position==="static"}function ye(e,t){if(!T(e)||C(e).position==="fixed")return null;if(t)return t(e);let i=e.offsetParent;return O(e)===i&&(i=i.ownerDocument.body),i}function Ae(e,t){let i=v(e);if(_(e))return i;if(!T(e)){let s=k(e);for(;s&&!D(s);){if(R(s)&&!ee(s))return s;s=k(s)}return i}let n=ye(e,t);for(;n&&me(n)&&ee(n);)n=ye(n,t);return n&&D(n)&&ee(n)&&!Y(n)?i:n||ge(e)||i}var et=async function(e){let t=this.getOffsetParent||Ae,i=this.getDimensions,n=await i(e.floating);return{reference:Ze(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:n.width,height:n.height}}};function tt(e){return C(e).direction==="rtl"}var nt={convertOffsetParentRelativeRectToViewportRelativeRect:Ue,getDocumentElement:O,getClippingRect:qe,getOffsetParent:Ae,getElementRects:et,getClientRects:je,getDimensions:Qe,getScale:V,isElement:R,isRTL:tt};function Se(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function it(e,t){let i=null,n,s=O(e);function l(){var r;clearTimeout(n),(r=i)==null||r.disconnect(),i=null}function o(r,c){r===void 0&&(r=!1),c===void 0&&(c=1),l();let a=e.getBoundingClientRect(),{left:f,top:d,width:h,height:u}=a;if(r||t(),!h||!u)return;let m=H(d),p=H(s.clientWidth-(f+h)),w=H(s.clientHeight-(d+u)),g=H(f),y={rootMargin:-m+"px "+-p+"px "+-w+"px "+-g+"px",threshold:L(0,M(1,c))||1},A=!0;function b(ie){let U=ie[0].intersectionRatio;if(U!==c){if(!A)return o();U?o(!1,U):n=setTimeout(()=>{o(!1,1e-7)},1e3)}U===1&&!Se(a,e.getBoundingClientRect())&&o(),A=!1}try{i=new IntersectionObserver(b,{...y,root:s.ownerDocument})}catch{i=new IntersectionObserver(b,y)}i.observe(e)}return o(!0),l}function Oe(e,t,i,n){n===void 0&&(n={});let{ancestorScroll:s=!0,ancestorResize:l=!0,elementResize:o=typeof ResizeObserver=="function",layoutShift:r=typeof IntersectionObserver=="function",animationFrame:c=!1}=n,a=te(e),f=s||l?[...a?$(a):[],...$(t)]:[];f.forEach(g=>{s&&g.addEventListener("scroll",i,{passive:!0}),l&&g.addEventListener("resize",i)});let d=a&&r?it(a,i):null,h=-1,u=null;o&&(u=new ResizeObserver(g=>{let[x]=g;x&&x.target===a&&u&&(u.unobserve(t),cancelAnimationFrame(h),h=requestAnimationFrame(()=>{var y;(y=u)==null||y.observe(t)})),i()}),a&&!c&&u.observe(a),u.observe(t));let m,p=c?F(e):null;c&&w();function w(){let g=F(e);p&&!Se(p,g)&&i(),p=g,m=requestAnimationFrame(w)}return i(),()=>{var g;f.forEach(x=>{s&&x.removeEventListener("scroll",i),l&&x.removeEventListener("resize",i)}),d?.(),(g=u)==null||g.disconnect(),u=null,c&&cancelAnimationFrame(m)}}var Te=fe;var Le=de;var ke=(e,t,i)=>{let n=new Map,s={platform:nt,...i},l={...s.platform,_c:n};return ce(e,t,{...s,platform:l})};var Ee=({areGroupsCollapsedByDefault:e,canTrackDeselectedRecords:t,currentSelectionLivewireProperty:i,maxSelectableRecords:n,selectsCurrentPageOnly:s,$wire:l})=>({areFiltersOpen:!1,checkboxClickController:null,groupVisibility:[],isLoading:!1,selectedRecords:new Set,deselectedRecords:new Set,isTrackingDeselectedRecords:!1,shouldCheckUniqueSelection:!0,lastCheckedRecord:null,livewireId:null,entangledSelectedRecords:i?l.$entangle(i):null,cleanUpFiltersDropdown:null,unsubscribeLivewireHook:null,init(){this.livewireId=this.$root.closest("[wire\\:id]")?.attributes["wire:id"].value,l.$on("deselectAllTableRecords",()=>this.deselectAllRecords()),l.$on("scrollToTopOfTable",()=>this.$root.scrollIntoView({block:"start",inline:"nearest"})),i&&(n!==1?this.selectedRecords=new Set(this.entangledSelectedRecords):this.selectedRecords=new Set(this.entangledSelectedRecords?[this.entangledSelectedRecords]:[])),this.$nextTick(()=>this.watchForCheckboxClicks()),this.unsubscribeLivewireHook=Livewire.hook("element.init",({component:o})=>{o.id===this.livewireId&&this.watchForCheckboxClicks()})},mountAction(...o){l.set("isTrackingDeselectedTableRecords",this.isTrackingDeselectedRecords,!1),l.set("selectedTableRecords",[...this.selectedRecords],!1),l.set("deselectedTableRecords",[...this.deselectedRecords],!1),l.mountAction(...o)},toggleSelectRecordsOnPage(){let o=this.getRecordsOnPage();if(this.areRecordsSelected(o)){this.deselectRecords(o);return}this.selectRecords(o)},toggleSelectRecords(o){this.areRecordsSelected(o)?this.deselectRecords(o):this.selectRecords(o)},getSelectedRecordsCount(){return this.isTrackingDeselectedRecords?(this.$refs.allSelectableRecordsCount?.value??this.deselectedRecords.size)-this.deselectedRecords.size:this.selectedRecords.size},getRecordsOnPage(){let o=[];for(let r of this.$root?.getElementsByClassName("fi-ta-record-checkbox")??[])o.push(r.value);return o},selectRecords(o){n===1&&(this.deselectAllRecords(),o=o.slice(0,1));for(let r of o)if(!this.isRecordSelected(r)){if(this.isTrackingDeselectedRecords){this.deselectedRecords.delete(r);continue}this.selectedRecords.add(r)}this.updatedSelectedRecords()},deselectRecords(o){for(let r of o){if(this.isTrackingDeselectedRecords){this.deselectedRecords.add(r);continue}this.selectedRecords.delete(r)}this.updatedSelectedRecords()},updatedSelectedRecords(){if(n!==1){this.entangledSelectedRecords=[...this.selectedRecords];return}this.entangledSelectedRecords=[...this.selectedRecords][0]??null},toggleSelectedRecord(o){if(this.isRecordSelected(o)){this.deselectRecords([o]);return}this.selectRecords([o])},async selectAllRecords(){if(!t||s){this.isLoading=!0,this.selectedRecords=new Set(await l.getAllSelectableTableRecordKeys()),this.updatedSelectedRecords(),this.isLoading=!1;return}this.isTrackingDeselectedRecords=!0,this.selectedRecords=new Set,this.deselectedRecords=new Set,this.updatedSelectedRecords()},canSelectAllRecords(){if(s){let c=this.getRecordsOnPage();return!this.areRecordsSelected(c)&&this.areRecordsToggleable(c)}let o=parseInt(this.$refs.allSelectableRecordsCount?.value);if(!o)return!1;let r=this.getSelectedRecordsCount();return o===r?!1:n===null||o<=n},deselectAllRecords(){this.isTrackingDeselectedRecords=!1,this.selectedRecords=new Set,this.deselectedRecords=new Set,this.updatedSelectedRecords()},isRecordSelected(o){return this.isTrackingDeselectedRecords?!this.deselectedRecords.has(o):this.selectedRecords.has(o)},areRecordsSelected(o){return o.every(r=>this.isRecordSelected(r))},areRecordsToggleable(o){if(n===null||n===1)return!0;let r=o.filter(c=>this.isRecordSelected(c));return r.length===o.length?!0:this.getSelectedRecordsCount()+(o.length-r.length)<=n},toggleCollapseGroup(o){this.isGroupCollapsed(o)?e?this.groupVisibility.push(o):this.groupVisibility.splice(this.groupVisibility.indexOf(o),1):e?this.groupVisibility.splice(this.groupVisibility.indexOf(o),1):this.groupVisibility.push(o)},isGroupCollapsed(o){return e?!this.groupVisibility.includes(o):this.groupVisibility.includes(o)},resetCollapsedGroups(){this.groupVisibility=[]},watchForCheckboxClicks(){this.checkboxClickController&&this.checkboxClickController.abort(),this.checkboxClickController=new AbortController;let{signal:o}=this.checkboxClickController;this.$root?.addEventListener("click",r=>r.target?.matches(".fi-ta-record-checkbox")&&this.handleCheckboxClick(r,r.target),{signal:o})},handleCheckboxClick(o,r){if(!this.lastChecked){this.lastChecked=r;return}if(o.shiftKey){let c=Array.from(this.$root?.getElementsByClassName("fi-ta-record-checkbox")??[]);if(!c.includes(this.lastChecked)){this.lastChecked=r;return}let a=c.indexOf(this.lastChecked),f=c.indexOf(r),d=[a,f].sort((u,m)=>u-m),h=[];for(let u=d[0];u<=d[1];u++)h.push(c[u].value);if(r.checked){if(!this.areRecordsToggleable(h)){r.checked=!1,this.deselectRecords([r.value]);return}this.selectRecords(h)}else this.deselectRecords(h)}this.lastChecked=r},toggleFiltersDropdown(){if(this.areFiltersOpen=!this.areFiltersOpen,this.areFiltersOpen){let o=Oe(this.$refs.filtersTriggerActionContainer,this.$refs.filtersContentContainer,async()=>{let{x:a,y:f}=await ke(this.$refs.filtersTriggerActionContainer,this.$refs.filtersContentContainer,{placement:"bottom-end",middleware:[Te(8),Le({padding:8})]});Object.assign(this.$refs.filtersContentContainer.style,{left:`${a}px`,top:`${f}px`})}),r=a=>{let f=this.$refs.filtersTriggerActionContainer,d=this.$refs.filtersContentContainer;d&&d.contains(a.target)||f&&f.contains(a.target)||(this.areFiltersOpen=!1,this.cleanUpFiltersDropdown&&(this.cleanUpFiltersDropdown(),this.cleanUpFiltersDropdown=null))};document.addEventListener("mousedown",r),document.addEventListener("touchstart",r,{passive:!0});let c=a=>{a.key==="Escape"&&r(a)};document.addEventListener("keydown",c),this.cleanUpFiltersDropdown=()=>{o(),document.removeEventListener("mousedown",r),document.removeEventListener("touchstart",r,{passive:!0}),document.removeEventListener("keydown",c)}}else this.cleanUpFiltersDropdown&&(this.cleanUpFiltersDropdown(),this.cleanUpFiltersDropdown=null)},destroy(){this.unsubscribeLivewireHook?.()}});function ne({columns:e,isLive:t}){return{error:void 0,isLoading:!1,deferredColumns:[],columns:e,isLive:t,hasReordered:!1,init(){if(!this.columns||this.columns.length===0){this.columns=[];return}this.deferredColumns=JSON.parse(JSON.stringify(this.columns)),this.$watch("columns",()=>{this.resetDeferredColumns()})},get groupedColumns(){let i={};return this.deferredColumns.filter(n=>n.type==="group").forEach(n=>{i[n.name]=this.calculateGroupedColumns(n)}),i},calculateGroupedColumns(i){if((i?.columns?.filter(r=>!r.isHidden)??[]).length===0)return{hidden:!0,checked:!1,disabled:!1,indeterminate:!1};let s=i.columns.filter(r=>!r.isHidden&&r.isToggleable!==!1);if(s.length===0)return{checked:!0,disabled:!0,indeterminate:!1};let l=s.filter(r=>r.isToggled).length,o=i.columns.filter(r=>!r.isHidden&&r.isToggleable===!1);return l===0&&o.length>0?{checked:!0,disabled:!1,indeterminate:!0}:l===0?{checked:!1,disabled:!1,indeterminate:!1}:l===s.length?{checked:!0,disabled:!1,indeterminate:!1}:{checked:!0,disabled:!1,indeterminate:!0}},getColumn(i,n=null){return n?this.deferredColumns.find(l=>l.type==="group"&&l.name===n)?.columns?.find(l=>l.name===i):this.deferredColumns.find(s=>s.name===i)},toggleGroup(i){let n=this.deferredColumns.find(c=>c.type==="group"&&c.name===i);if(!n?.columns)return;let s=this.calculateGroupedColumns(n);if(s.disabled)return;let o=n.columns.filter(c=>c.isToggleable!==!1).some(c=>c.isToggled),r=s.indeterminate?!0:!o;n.columns.filter(c=>c.isToggleable!==!1).forEach(c=>{c.isToggled=r}),this.deferredColumns=[...this.deferredColumns],this.isLive&&this.applyTableColumnManager()},toggleColumn(i,n=null){let s=this.getColumn(i,n);!s||s.isToggleable===!1||(s.isToggled=!s.isToggled,this.deferredColumns=[...this.deferredColumns],this.isLive&&this.applyTableColumnManager())},reorderColumns(i){let n=i.map(s=>s.split("::"));this.reorderTopLevel(n),this.hasReordered=!0,this.isLive&&this.applyTableColumnManager()},reorderGroupColumns(i,n){let s=this.deferredColumns.find(r=>r.type==="group"&&r.name===n);if(!s)return;let l=i.map(r=>r.split("::")),o=[];l.forEach(([r,c])=>{let a=s.columns.find(f=>f.name===c);a&&o.push(a)}),s.columns=o,this.deferredColumns=[...this.deferredColumns],this.hasReordered=!0,this.isLive&&this.applyTableColumnManager()},reorderTopLevel(i){let n=this.deferredColumns,s=[];i.forEach(([l,o])=>{let r=n.find(c=>l==="group"?c.type==="group"&&c.name===o:l==="column"?c.type!=="group"&&c.name===o:!1);r&&s.push(r)}),this.deferredColumns=s},async applyTableColumnManager(){this.isLoading=!0;try{this.columns=JSON.parse(JSON.stringify(this.deferredColumns)),await this.$wire.call("applyTableColumnManager",this.columns,this.hasReordered),this.hasReordered=!1,this.error=void 0}catch(i){this.error="Failed to update column visibility",console.error("Table toggle columns error:",i)}finally{this.isLoading=!1}},resetDeferredColumns(){this.deferredColumns=JSON.parse(JSON.stringify(this.columns)),this.hasReordered=!1}}}document.addEventListener("alpine:init",()=>{window.Alpine.data("filamentTable",Ee),window.Alpine.data("filamentTableColumnManager",ne)});})(); diff --git a/public/js/filament/widgets/components/chart.js b/public/js/filament/widgets/components/chart.js new file mode 100644 index 0000000..c04dfb8 --- /dev/null +++ b/public/js/filament/widgets/components/chart.js @@ -0,0 +1,30 @@ +var Sc=Object.defineProperty;var Mc=(s,t,e)=>t in s?Sc(s,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):s[t]=e;var v=(s,t,e)=>Mc(s,typeof t!="symbol"?t+"":t,e);function us(s){return s+.5|0}var Zt=(s,t,e)=>Math.max(Math.min(s,e),t);function cs(s){return Zt(us(s*2.55),0,255)}function qt(s){return Zt(us(s*255),0,255)}function Nt(s){return Zt(us(s/2.55)/100,0,1)}function No(s){return Zt(us(s*100),0,100)}var pt={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,A:10,B:11,C:12,D:13,E:14,F:15,a:10,b:11,c:12,d:13,e:14,f:15},Zi=[..."0123456789ABCDEF"],Oc=s=>Zi[s&15],Tc=s=>Zi[(s&240)>>4]+Zi[s&15],Us=s=>(s&240)>>4===(s&15),Dc=s=>Us(s.r)&&Us(s.g)&&Us(s.b)&&Us(s.a);function Cc(s){var t=s.length,e;return s[0]==="#"&&(t===4||t===5?e={r:255&pt[s[1]]*17,g:255&pt[s[2]]*17,b:255&pt[s[3]]*17,a:t===5?pt[s[4]]*17:255}:(t===7||t===9)&&(e={r:pt[s[1]]<<4|pt[s[2]],g:pt[s[3]]<<4|pt[s[4]],b:pt[s[5]]<<4|pt[s[6]],a:t===9?pt[s[7]]<<4|pt[s[8]]:255})),e}var Pc=(s,t)=>s<255?t(s):"";function Ac(s){var t=Dc(s)?Oc:Tc;return s?"#"+t(s.r)+t(s.g)+t(s.b)+Pc(s.a,t):void 0}var Ic=/^(hsla?|hwb|hsv)\(\s*([-+.e\d]+)(?:deg)?[\s,]+([-+.e\d]+)%[\s,]+([-+.e\d]+)%(?:[\s,]+([-+.e\d]+)(%)?)?\s*\)$/;function Bo(s,t,e){let i=t*Math.min(e,1-e),n=(o,r=(o+s/30)%12)=>e-i*Math.max(Math.min(r-3,9-r,1),-1);return[n(0),n(8),n(4)]}function Ec(s,t,e){let i=(n,o=(n+s/60)%6)=>e-e*t*Math.max(Math.min(o,4-o,1),0);return[i(5),i(3),i(1)]}function Lc(s,t,e){let i=Bo(s,1,.5),n;for(t+e>1&&(n=1/(t+e),t*=n,e*=n),n=0;n<3;n++)i[n]*=1-t-e,i[n]+=t;return i}function Fc(s,t,e,i,n){return s===n?(t-e)/i+(t.5?h/(2-o-r):h/(o+r),l=Fc(e,i,n,h,o),l=l*60+.5),[l|0,c||0,a]}function Gi(s,t,e,i){return(Array.isArray(t)?s(t[0],t[1],t[2]):s(t,e,i)).map(qt)}function Xi(s,t,e){return Gi(Bo,s,t,e)}function Rc(s,t,e){return Gi(Lc,s,t,e)}function Nc(s,t,e){return Gi(Ec,s,t,e)}function Ho(s){return(s%360+360)%360}function zc(s){let t=Ic.exec(s),e=255,i;if(!t)return;t[5]!==i&&(e=t[6]?cs(+t[5]):qt(+t[5]));let n=Ho(+t[2]),o=+t[3]/100,r=+t[4]/100;return t[1]==="hwb"?i=Rc(n,o,r):t[1]==="hsv"?i=Nc(n,o,r):i=Xi(n,o,r),{r:i[0],g:i[1],b:i[2],a:e}}function Vc(s,t){var e=qi(s);e[0]=Ho(e[0]+t),e=Xi(e),s.r=e[0],s.g=e[1],s.b=e[2]}function Wc(s){if(!s)return;let t=qi(s),e=t[0],i=No(t[1]),n=No(t[2]);return s.a<255?`hsla(${e}, ${i}%, ${n}%, ${Nt(s.a)})`:`hsl(${e}, ${i}%, ${n}%)`}var zo={x:"dark",Z:"light",Y:"re",X:"blu",W:"gr",V:"medium",U:"slate",A:"ee",T:"ol",S:"or",B:"ra",C:"lateg",D:"ights",R:"in",Q:"turquois",E:"hi",P:"ro",O:"al",N:"le",M:"de",L:"yello",F:"en",K:"ch",G:"arks",H:"ea",I:"ightg",J:"wh"},Vo={OiceXe:"f0f8ff",antiquewEte:"faebd7",aqua:"ffff",aquamarRe:"7fffd4",azuY:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"0",blanKedOmond:"ffebcd",Xe:"ff",XeviTet:"8a2be2",bPwn:"a52a2a",burlywood:"deb887",caMtXe:"5f9ea0",KartYuse:"7fff00",KocTate:"d2691e",cSO:"ff7f50",cSnflowerXe:"6495ed",cSnsilk:"fff8dc",crimson:"dc143c",cyan:"ffff",xXe:"8b",xcyan:"8b8b",xgTMnPd:"b8860b",xWay:"a9a9a9",xgYF:"6400",xgYy:"a9a9a9",xkhaki:"bdb76b",xmagFta:"8b008b",xTivegYF:"556b2f",xSange:"ff8c00",xScEd:"9932cc",xYd:"8b0000",xsOmon:"e9967a",xsHgYF:"8fbc8f",xUXe:"483d8b",xUWay:"2f4f4f",xUgYy:"2f4f4f",xQe:"ced1",xviTet:"9400d3",dAppRk:"ff1493",dApskyXe:"bfff",dimWay:"696969",dimgYy:"696969",dodgerXe:"1e90ff",fiYbrick:"b22222",flSOwEte:"fffaf0",foYstWAn:"228b22",fuKsia:"ff00ff",gaRsbSo:"dcdcdc",ghostwEte:"f8f8ff",gTd:"ffd700",gTMnPd:"daa520",Way:"808080",gYF:"8000",gYFLw:"adff2f",gYy:"808080",honeyMw:"f0fff0",hotpRk:"ff69b4",RdianYd:"cd5c5c",Rdigo:"4b0082",ivSy:"fffff0",khaki:"f0e68c",lavFMr:"e6e6fa",lavFMrXsh:"fff0f5",lawngYF:"7cfc00",NmoncEffon:"fffacd",ZXe:"add8e6",ZcSO:"f08080",Zcyan:"e0ffff",ZgTMnPdLw:"fafad2",ZWay:"d3d3d3",ZgYF:"90ee90",ZgYy:"d3d3d3",ZpRk:"ffb6c1",ZsOmon:"ffa07a",ZsHgYF:"20b2aa",ZskyXe:"87cefa",ZUWay:"778899",ZUgYy:"778899",ZstAlXe:"b0c4de",ZLw:"ffffe0",lime:"ff00",limegYF:"32cd32",lRF:"faf0e6",magFta:"ff00ff",maPon:"800000",VaquamarRe:"66cdaa",VXe:"cd",VScEd:"ba55d3",VpurpN:"9370db",VsHgYF:"3cb371",VUXe:"7b68ee",VsprRggYF:"fa9a",VQe:"48d1cc",VviTetYd:"c71585",midnightXe:"191970",mRtcYam:"f5fffa",mistyPse:"ffe4e1",moccasR:"ffe4b5",navajowEte:"ffdead",navy:"80",Tdlace:"fdf5e6",Tive:"808000",TivedBb:"6b8e23",Sange:"ffa500",SangeYd:"ff4500",ScEd:"da70d6",pOegTMnPd:"eee8aa",pOegYF:"98fb98",pOeQe:"afeeee",pOeviTetYd:"db7093",papayawEp:"ffefd5",pHKpuff:"ffdab9",peru:"cd853f",pRk:"ffc0cb",plum:"dda0dd",powMrXe:"b0e0e6",purpN:"800080",YbeccapurpN:"663399",Yd:"ff0000",Psybrown:"bc8f8f",PyOXe:"4169e1",saddNbPwn:"8b4513",sOmon:"fa8072",sandybPwn:"f4a460",sHgYF:"2e8b57",sHshell:"fff5ee",siFna:"a0522d",silver:"c0c0c0",skyXe:"87ceeb",UXe:"6a5acd",UWay:"708090",UgYy:"708090",snow:"fffafa",sprRggYF:"ff7f",stAlXe:"4682b4",tan:"d2b48c",teO:"8080",tEstN:"d8bfd8",tomato:"ff6347",Qe:"40e0d0",viTet:"ee82ee",JHt:"f5deb3",wEte:"ffffff",wEtesmoke:"f5f5f5",Lw:"ffff00",LwgYF:"9acd32"};function Bc(){let s={},t=Object.keys(Vo),e=Object.keys(zo),i,n,o,r,a;for(i=0;i>16&255,o>>8&255,o&255]}return s}var Ys;function Hc(s){Ys||(Ys=Bc(),Ys.transparent=[0,0,0,0]);let t=Ys[s.toLowerCase()];return t&&{r:t[0],g:t[1],b:t[2],a:t.length===4?t[3]:255}}var $c=/^rgba?\(\s*([-+.\d]+)(%)?[\s,]+([-+.e\d]+)(%)?[\s,]+([-+.e\d]+)(%)?(?:[\s,/]+([-+.e\d]+)(%)?)?\s*\)$/;function jc(s){let t=$c.exec(s),e=255,i,n,o;if(t){if(t[7]!==i){let r=+t[7];e=t[8]?cs(r):Zt(r*255,0,255)}return i=+t[1],n=+t[3],o=+t[5],i=255&(t[2]?cs(i):Zt(i,0,255)),n=255&(t[4]?cs(n):Zt(n,0,255)),o=255&(t[6]?cs(o):Zt(o,0,255)),{r:i,g:n,b:o,a:e}}}function Uc(s){return s&&(s.a<255?`rgba(${s.r}, ${s.g}, ${s.b}, ${Nt(s.a)})`:`rgb(${s.r}, ${s.g}, ${s.b})`)}var Yi=s=>s<=.0031308?s*12.92:Math.pow(s,1/2.4)*1.055-.055,De=s=>s<=.04045?s/12.92:Math.pow((s+.055)/1.055,2.4);function Yc(s,t,e){let i=De(Nt(s.r)),n=De(Nt(s.g)),o=De(Nt(s.b));return{r:qt(Yi(i+e*(De(Nt(t.r))-i))),g:qt(Yi(n+e*(De(Nt(t.g))-n))),b:qt(Yi(o+e*(De(Nt(t.b))-o))),a:s.a+e*(t.a-s.a)}}function Zs(s,t,e){if(s){let i=qi(s);i[t]=Math.max(0,Math.min(i[t]+i[t]*e,t===0?360:1)),i=Xi(i),s.r=i[0],s.g=i[1],s.b=i[2]}}function $o(s,t){return s&&Object.assign(t||{},s)}function Wo(s){var t={r:0,g:0,b:0,a:255};return Array.isArray(s)?s.length>=3&&(t={r:s[0],g:s[1],b:s[2],a:255},s.length>3&&(t.a=qt(s[3]))):(t=$o(s,{r:0,g:0,b:0,a:1}),t.a=qt(t.a)),t}function Zc(s){return s.charAt(0)==="r"?jc(s):zc(s)}var hs=class s{constructor(t){if(t instanceof s)return t;let e=typeof t,i;e==="object"?i=Wo(t):e==="string"&&(i=Cc(t)||Hc(t)||Zc(t)),this._rgb=i,this._valid=!!i}get valid(){return this._valid}get rgb(){var t=$o(this._rgb);return t&&(t.a=Nt(t.a)),t}set rgb(t){this._rgb=Wo(t)}rgbString(){return this._valid?Uc(this._rgb):void 0}hexString(){return this._valid?Ac(this._rgb):void 0}hslString(){return this._valid?Wc(this._rgb):void 0}mix(t,e){if(t){let i=this.rgb,n=t.rgb,o,r=e===o?.5:e,a=2*r-1,l=i.a-n.a,c=((a*l===-1?a:(a+l)/(1+a*l))+1)/2;o=1-c,i.r=255&c*i.r+o*n.r+.5,i.g=255&c*i.g+o*n.g+.5,i.b=255&c*i.b+o*n.b+.5,i.a=r*i.a+(1-r)*n.a,this.rgb=i}return this}interpolate(t,e){return t&&(this._rgb=Yc(this._rgb,t._rgb,e)),this}clone(){return new s(this.rgb)}alpha(t){return this._rgb.a=qt(t),this}clearer(t){let e=this._rgb;return e.a*=1-t,this}greyscale(){let t=this._rgb,e=us(t.r*.3+t.g*.59+t.b*.11);return t.r=t.g=t.b=e,this}opaquer(t){let e=this._rgb;return e.a*=1+t,this}negate(){let t=this._rgb;return t.r=255-t.r,t.g=255-t.g,t.b=255-t.b,this}lighten(t){return Zs(this._rgb,2,t),this}darken(t){return Zs(this._rgb,2,-t),this}saturate(t){return Zs(this._rgb,1,t),this}desaturate(t){return Zs(this._rgb,1,-t),this}rotate(t){return Vc(this._rgb,t),this}};function At(){}var tr=(()=>{let s=0;return()=>s++})();function I(s){return s==null}function H(s){if(Array.isArray&&Array.isArray(s))return!0;let t=Object.prototype.toString.call(s);return t.slice(0,7)==="[object"&&t.slice(-6)==="Array]"}function E(s){return s!==null&&Object.prototype.toString.call(s)==="[object Object]"}function Z(s){return(typeof s=="number"||s instanceof Number)&&isFinite(+s)}function at(s,t){return Z(s)?s:t}function P(s,t){return typeof s>"u"?t:s}var er=(s,t)=>typeof s=="string"&&s.endsWith("%")?parseFloat(s)/100:+s/t,tn=(s,t)=>typeof s=="string"&&s.endsWith("%")?parseFloat(s)/100*t:+s;function W(s,t,e){if(s&&typeof s.call=="function")return s.apply(e,t)}function z(s,t,e,i){let n,o,r;if(H(s))if(o=s.length,i)for(n=o-1;n>=0;n--)t.call(e,s[n],n);else for(n=0;ns,x:s=>s.x,y:s=>s.y};function Xc(s){let t=s.split("."),e=[],i="";for(let n of t)i+=n,i.endsWith("\\")?i=i.slice(0,-1)+".":(e.push(i),i="");return e}function Jc(s){let t=Xc(s);return e=>{for(let i of t){if(i==="")break;e=e&&e[i]}return e}}function Wt(s,t){return(jo[t]||(jo[t]=Jc(t)))(s)}function ei(s){return s.charAt(0).toUpperCase()+s.slice(1)}var Ee=s=>typeof s<"u",zt=s=>typeof s=="function",en=(s,t)=>{if(s.size!==t.size)return!1;for(let e of s)if(!t.has(e))return!1;return!0};function ir(s){return s.type==="mouseup"||s.type==="click"||s.type==="contextmenu"}var F=Math.PI,$=2*F,Kc=$+F,Ks=Number.POSITIVE_INFINITY,Qc=F/180,q=F/2,he=F/4,Uo=F*2/3,Vt=Math.log10,St=Math.sign;function Le(s,t,e){return Math.abs(s-t)n-o).pop(),t}function th(s){return typeof s=="symbol"||typeof s=="object"&&s!==null&&!(Symbol.toPrimitive in s||"toString"in s||"valueOf"in s)}function fe(s){return!th(s)&&!isNaN(parseFloat(s))&&isFinite(s)}function or(s,t){let e=Math.round(s);return e-t<=s&&e+t>=s}function nn(s,t,e){let i,n,o;for(i=0,n=s.length;il&&c=Math.min(t,e)-i&&s<=Math.max(t,e)+i}function ii(s,t,e){e=e||(r=>s[r]1;)o=n+i>>1,e(o)?n=o:i=o;return{lo:n,hi:i}}var Ct=(s,t,e,i)=>ii(s,e,i?n=>{let o=s[n][t];return os[n][t]ii(s,e,i=>s[i][t]>=e);function lr(s,t,e){let i=0,n=s.length;for(;ii&&s[n-1]>e;)n--;return i>0||n{let i="_onData"+ei(e),n=s[e];Object.defineProperty(s,e,{configurable:!0,enumerable:!1,value(...o){let r=n.apply(this,o);return s._chartjs.listeners.forEach(a=>{typeof a[i]=="function"&&a[i](...o)}),r}})})}function an(s,t){let e=s._chartjs;if(!e)return;let i=e.listeners,n=i.indexOf(t);n!==-1&&i.splice(n,1),!(i.length>0)&&(cr.forEach(o=>{delete s[o]}),delete s._chartjs)}function ln(s){let t=new Set(s);return t.size===s.length?s:Array.from(t)}var cn=(function(){return typeof window>"u"?function(s){return s()}:window.requestAnimationFrame})();function hn(s,t){let e=[],i=!1;return function(...n){e=n,i||(i=!0,cn.call(window,()=>{i=!1,s.apply(t,e)}))}}function ur(s,t){let e;return function(...i){return t?(clearTimeout(e),e=setTimeout(s,t,i)):s.apply(this,i),t}}var ni=s=>s==="start"?"left":s==="end"?"right":"center",it=(s,t,e)=>s==="start"?t:s==="end"?e:(t+e)/2,dr=(s,t,e,i)=>s===(i?"left":"right")?e:s==="center"?(t+e)/2:t;function un(s,t,e){let i=t.length,n=0,o=i;if(s._sorted){let{iScale:r,vScale:a,_parsed:l}=s,c=s.dataset&&s.dataset.options?s.dataset.options.spanGaps:null,h=r.axis,{min:u,max:d,minDefined:f,maxDefined:g}=r.getUserBounds();if(f){if(n=Math.min(Ct(l,h,u).lo,e?i:Ct(t,h,r.getPixelForValue(u)).lo),c){let m=l.slice(0,n+1).reverse().findIndex(p=>!I(p[a.axis]));n-=Math.max(0,m)}n=K(n,0,i-1)}if(g){let m=Math.max(Ct(l,r.axis,d,!0).hi+1,e?0:Ct(t,h,r.getPixelForValue(d),!0).hi+1);if(c){let p=l.slice(m-1).findIndex(b=>!I(b[a.axis]));m+=Math.max(0,p)}o=K(m,n,i)-n}else o=i-n}return{start:n,count:o}}function dn(s){let{xScale:t,yScale:e,_scaleRanges:i}=s,n={xmin:t.min,xmax:t.max,ymin:e.min,ymax:e.max};if(!i)return s._scaleRanges=n,!0;let o=i.xmin!==t.min||i.xmax!==t.max||i.ymin!==e.min||i.ymax!==e.max;return Object.assign(i,n),o}var qs=s=>s===0||s===1,Yo=(s,t,e)=>-(Math.pow(2,10*(s-=1))*Math.sin((s-t)*$/e)),Zo=(s,t,e)=>Math.pow(2,-10*s)*Math.sin((s-t)*$/e)+1,Ce={linear:s=>s,easeInQuad:s=>s*s,easeOutQuad:s=>-s*(s-2),easeInOutQuad:s=>(s/=.5)<1?.5*s*s:-.5*(--s*(s-2)-1),easeInCubic:s=>s*s*s,easeOutCubic:s=>(s-=1)*s*s+1,easeInOutCubic:s=>(s/=.5)<1?.5*s*s*s:.5*((s-=2)*s*s+2),easeInQuart:s=>s*s*s*s,easeOutQuart:s=>-((s-=1)*s*s*s-1),easeInOutQuart:s=>(s/=.5)<1?.5*s*s*s*s:-.5*((s-=2)*s*s*s-2),easeInQuint:s=>s*s*s*s*s,easeOutQuint:s=>(s-=1)*s*s*s*s+1,easeInOutQuint:s=>(s/=.5)<1?.5*s*s*s*s*s:.5*((s-=2)*s*s*s*s+2),easeInSine:s=>-Math.cos(s*q)+1,easeOutSine:s=>Math.sin(s*q),easeInOutSine:s=>-.5*(Math.cos(F*s)-1),easeInExpo:s=>s===0?0:Math.pow(2,10*(s-1)),easeOutExpo:s=>s===1?1:-Math.pow(2,-10*s)+1,easeInOutExpo:s=>qs(s)?s:s<.5?.5*Math.pow(2,10*(s*2-1)):.5*(-Math.pow(2,-10*(s*2-1))+2),easeInCirc:s=>s>=1?s:-(Math.sqrt(1-s*s)-1),easeOutCirc:s=>Math.sqrt(1-(s-=1)*s),easeInOutCirc:s=>(s/=.5)<1?-.5*(Math.sqrt(1-s*s)-1):.5*(Math.sqrt(1-(s-=2)*s)+1),easeInElastic:s=>qs(s)?s:Yo(s,.075,.3),easeOutElastic:s=>qs(s)?s:Zo(s,.075,.3),easeInOutElastic(s){return qs(s)?s:s<.5?.5*Yo(s*2,.1125,.45):.5+.5*Zo(s*2-1,.1125,.45)},easeInBack(s){return s*s*((1.70158+1)*s-1.70158)},easeOutBack(s){return(s-=1)*s*((1.70158+1)*s+1.70158)+1},easeInOutBack(s){let t=1.70158;return(s/=.5)<1?.5*(s*s*(((t*=1.525)+1)*s-t)):.5*((s-=2)*s*(((t*=1.525)+1)*s+t)+2)},easeInBounce:s=>1-Ce.easeOutBounce(1-s),easeOutBounce(s){return s<1/2.75?7.5625*s*s:s<2/2.75?7.5625*(s-=1.5/2.75)*s+.75:s<2.5/2.75?7.5625*(s-=2.25/2.75)*s+.9375:7.5625*(s-=2.625/2.75)*s+.984375},easeInOutBounce:s=>s<.5?Ce.easeInBounce(s*2)*.5:Ce.easeOutBounce(s*2-1)*.5+.5};function fn(s){if(s&&typeof s=="object"){let t=s.toString();return t==="[object CanvasPattern]"||t==="[object CanvasGradient]"}return!1}function gn(s){return fn(s)?s:new hs(s)}function Ji(s){return fn(s)?s:new hs(s).saturate(.5).darken(.1).hexString()}var sh=["x","y","borderWidth","radius","tension"],ih=["color","borderColor","backgroundColor"];function nh(s){s.set("animation",{delay:void 0,duration:1e3,easing:"easeOutQuart",fn:void 0,from:void 0,loop:void 0,to:void 0,type:void 0}),s.describe("animation",{_fallback:!1,_indexable:!1,_scriptable:t=>t!=="onProgress"&&t!=="onComplete"&&t!=="fn"}),s.set("animations",{colors:{type:"color",properties:ih},numbers:{type:"number",properties:sh}}),s.describe("animations",{_fallback:"animation"}),s.set("transitions",{active:{animation:{duration:400}},resize:{animation:{duration:0}},show:{animations:{colors:{from:"transparent"},visible:{type:"boolean",duration:0}}},hide:{animations:{colors:{to:"transparent"},visible:{type:"boolean",easing:"linear",fn:t=>t|0}}}})}function oh(s){s.set("layout",{autoPadding:!0,padding:{top:0,right:0,bottom:0,left:0}})}var qo=new Map;function rh(s,t){t=t||{};let e=s+JSON.stringify(t),i=qo.get(e);return i||(i=new Intl.NumberFormat(s,t),qo.set(e,i)),i}function Re(s,t,e){return rh(t,e).format(s)}var fr={values(s){return H(s)?s:""+s},numeric(s,t,e){if(s===0)return"0";let i=this.chart.options.locale,n,o=s;if(e.length>1){let c=Math.max(Math.abs(e[0].value),Math.abs(e[e.length-1].value));(c<1e-4||c>1e15)&&(n="scientific"),o=ah(s,e)}let r=Vt(Math.abs(o)),a=isNaN(r)?1:Math.max(Math.min(-1*Math.floor(r),20),0),l={notation:n,minimumFractionDigits:a,maximumFractionDigits:a};return Object.assign(l,this.options.ticks.format),Re(s,i,l)},logarithmic(s,t,e){if(s===0)return"0";let i=e[t].significand||s/Math.pow(10,Math.floor(Vt(s)));return[1,2,3,5,10,15].includes(i)||t>.8*e.length?fr.numeric.call(this,s,t,e):""}};function ah(s,t){let e=t.length>3?t[2].value-t[1].value:t[1].value-t[0].value;return Math.abs(e)>=1&&s!==Math.floor(s)&&(e=s-Math.floor(s)),e}var ms={formatters:fr};function lh(s){s.set("scale",{display:!0,offset:!1,reverse:!1,beginAtZero:!1,bounds:"ticks",clip:!0,grace:0,grid:{display:!0,lineWidth:1,drawOnChartArea:!0,drawTicks:!0,tickLength:8,tickWidth:(t,e)=>e.lineWidth,tickColor:(t,e)=>e.color,offset:!1},border:{display:!0,dash:[],dashOffset:0,width:1},title:{display:!1,text:"",padding:{top:4,bottom:4}},ticks:{minRotation:0,maxRotation:50,mirror:!1,textStrokeWidth:0,textStrokeColor:"",padding:3,display:!0,autoSkip:!0,autoSkipPadding:3,labelOffset:0,callback:ms.formatters.values,minor:{},major:{},align:"center",crossAlign:"near",showLabelBackdrop:!1,backdropColor:"rgba(255, 255, 255, 0.75)",backdropPadding:2}}),s.route("scale.ticks","color","","color"),s.route("scale.grid","color","","borderColor"),s.route("scale.border","color","","borderColor"),s.route("scale.title","color","","color"),s.describe("scale",{_fallback:!1,_scriptable:t=>!t.startsWith("before")&&!t.startsWith("after")&&t!=="callback"&&t!=="parser",_indexable:t=>t!=="borderDash"&&t!=="tickBorderDash"&&t!=="dash"}),s.describe("scales",{_fallback:"scale"}),s.describe("scale.ticks",{_scriptable:t=>t!=="backdropPadding"&&t!=="callback",_indexable:t=>t!=="backdropPadding"})}var Jt=Object.create(null),oi=Object.create(null);function ds(s,t){if(!t)return s;let e=t.split(".");for(let i=0,n=e.length;ii.chart.platform.getDevicePixelRatio(),this.elements={},this.events=["mousemove","mouseout","click","touchstart","touchmove"],this.font={family:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",size:12,style:"normal",lineHeight:1.2,weight:null},this.hover={},this.hoverBackgroundColor=(i,n)=>Ji(n.backgroundColor),this.hoverBorderColor=(i,n)=>Ji(n.borderColor),this.hoverColor=(i,n)=>Ji(n.color),this.indexAxis="x",this.interaction={mode:"nearest",intersect:!0,includeInvisible:!1},this.maintainAspectRatio=!0,this.onHover=null,this.onClick=null,this.parsing=!0,this.plugins={},this.responsive=!0,this.scale=void 0,this.scales={},this.showLine=!0,this.drawActiveElementsOnTop=!0,this.describe(t),this.apply(e)}set(t,e){return Ki(this,t,e)}get(t){return ds(this,t)}describe(t,e){return Ki(oi,t,e)}override(t,e){return Ki(Jt,t,e)}route(t,e,i,n){let o=ds(this,t),r=ds(this,i),a="_"+e;Object.defineProperties(o,{[a]:{value:o[e],writable:!0},[e]:{enumerable:!0,get(){let l=this[a],c=r[n];return E(l)?Object.assign({},c,l):P(l,c)},set(l){this[a]=l}}})}apply(t){t.forEach(e=>e(this))}},j=new Qi({_scriptable:s=>!s.startsWith("on"),_indexable:s=>s!=="events",hover:{_fallback:"interaction"},interaction:{_scriptable:!1,_indexable:!1}},[nh,oh,lh]);function ch(s){return!s||I(s.size)||I(s.family)?null:(s.style?s.style+" ":"")+(s.weight?s.weight+" ":"")+s.size+"px "+s.family}function fs(s,t,e,i,n){let o=t[n];return o||(o=t[n]=s.measureText(n).width,e.push(n)),o>i&&(i=o),i}function gr(s,t,e,i){i=i||{};let n=i.data=i.data||{},o=i.garbageCollect=i.garbageCollect||[];i.font!==t&&(n=i.data={},o=i.garbageCollect=[],i.font=t),s.save(),s.font=t;let r=0,a=e.length,l,c,h,u,d;for(l=0;le.length){for(l=0;l0&&s.stroke()}}function Pt(s,t,e){return e=e||.5,!t||s&&s.x>t.left-e&&s.xt.top-e&&s.y0&&o.strokeColor!=="",l,c;for(s.save(),s.font=n.string,hh(s,o),l=0;l+s||0;function ai(s,t){let e={},i=E(t),n=i?Object.keys(t):t,o=E(s)?i?r=>P(s[r],s[t[r]]):r=>s[r]:()=>s;for(let r of n)e[r]=ph(o(r));return e}function bn(s){return ai(s,{top:"y",right:"x",bottom:"y",left:"x"})}function te(s){return ai(s,["topLeft","topRight","bottomLeft","bottomRight"])}function nt(s){let t=bn(s);return t.width=t.left+t.right,t.height=t.top+t.bottom,t}function X(s,t){s=s||{},t=t||j.font;let e=P(s.size,t.size);typeof e=="string"&&(e=parseInt(e,10));let i=P(s.style,t.style);i&&!(""+i).match(gh)&&(console.warn('Invalid font style specified: "'+i+'"'),i=void 0);let n={family:P(s.family,t.family),lineHeight:mh(P(s.lineHeight,t.lineHeight),e),size:e,style:i,weight:P(s.weight,t.weight),string:""};return n.string=ch(n),n}function ze(s,t,e,i){let n=!0,o,r,a;for(o=0,r=s.length;oe&&a===0?0:a+l;return{min:r(i,-Math.abs(o)),max:r(n,o)}}function Bt(s,t){return Object.assign(Object.create(s),t)}function li(s,t=[""],e,i,n=()=>s[0]){let o=e||s;typeof i>"u"&&(i=_r("_fallback",s));let r={[Symbol.toStringTag]:"Object",_cacheable:!0,_scopes:s,_rootScopes:o,_fallback:i,_getTarget:n,override:a=>li([a,...s],t,o,i)};return new Proxy(r,{deleteProperty(a,l){return delete a[l],delete a._keys,delete s[0][l],!0},get(a,l){return yr(a,l,()=>Sh(l,t,s,a))},getOwnPropertyDescriptor(a,l){return Reflect.getOwnPropertyDescriptor(a._scopes[0],l)},getPrototypeOf(){return Reflect.getPrototypeOf(s[0])},has(a,l){return Xo(a).includes(l)},ownKeys(a){return Xo(a)},set(a,l,c){let h=a._storage||(a._storage=n());return a[l]=h[l]=c,delete a._keys,!0}})}function de(s,t,e,i){let n={_cacheable:!1,_proxy:s,_context:t,_subProxy:e,_stack:new Set,_descriptors:yn(s,i),setContext:o=>de(s,o,e,i),override:o=>de(s.override(o),t,e,i)};return new Proxy(n,{deleteProperty(o,r){return delete o[r],delete s[r],!0},get(o,r,a){return yr(o,r,()=>yh(o,r,a))},getOwnPropertyDescriptor(o,r){return o._descriptors.allKeys?Reflect.has(s,r)?{enumerable:!0,configurable:!0}:void 0:Reflect.getOwnPropertyDescriptor(s,r)},getPrototypeOf(){return Reflect.getPrototypeOf(s)},has(o,r){return Reflect.has(s,r)},ownKeys(){return Reflect.ownKeys(s)},set(o,r,a){return s[r]=a,delete o[r],!0}})}function yn(s,t={scriptable:!0,indexable:!0}){let{_scriptable:e=t.scriptable,_indexable:i=t.indexable,_allKeys:n=t.allKeys}=s;return{allKeys:n,scriptable:e,indexable:i,isScriptable:zt(e)?e:()=>e,isIndexable:zt(i)?i:()=>i}}var bh=(s,t)=>s?s+ei(t):t,xn=(s,t)=>E(t)&&s!=="adapters"&&(Object.getPrototypeOf(t)===null||t.constructor===Object);function yr(s,t,e){if(Object.prototype.hasOwnProperty.call(s,t)||t==="constructor")return s[t];let i=e();return s[t]=i,i}function yh(s,t,e){let{_proxy:i,_context:n,_subProxy:o,_descriptors:r}=s,a=i[t];return zt(a)&&r.isScriptable(t)&&(a=xh(t,a,s,e)),H(a)&&a.length&&(a=_h(t,a,s,r.isIndexable)),xn(t,a)&&(a=de(a,n,o&&o[t],r)),a}function xh(s,t,e,i){let{_proxy:n,_context:o,_subProxy:r,_stack:a}=e;if(a.has(s))throw new Error("Recursion detected: "+Array.from(a).join("->")+"->"+s);a.add(s);let l=t(o,r||i);return a.delete(s),xn(s,l)&&(l=_n(n._scopes,n,s,l)),l}function _h(s,t,e,i){let{_proxy:n,_context:o,_subProxy:r,_descriptors:a}=e;if(typeof o.index<"u"&&i(s))return t[o.index%t.length];if(E(t[0])){let l=t,c=n._scopes.filter(h=>h!==l);t=[];for(let h of l){let u=_n(c,n,s,h);t.push(de(u,o,r&&r[s],a))}}return t}function xr(s,t,e){return zt(s)?s(t,e):s}var wh=(s,t)=>s===!0?t:typeof s=="string"?Wt(t,s):void 0;function kh(s,t,e,i,n){for(let o of t){let r=wh(e,o);if(r){s.add(r);let a=xr(r._fallback,e,n);if(typeof a<"u"&&a!==e&&a!==i)return a}else if(r===!1&&typeof i<"u"&&e!==i)return null}return!1}function _n(s,t,e,i){let n=t._rootScopes,o=xr(t._fallback,e,i),r=[...s,...n],a=new Set;a.add(i);let l=Go(a,r,e,o||e,i);return l===null||typeof o<"u"&&o!==e&&(l=Go(a,r,o,l,i),l===null)?!1:li(Array.from(a),[""],n,o,()=>vh(t,e,i))}function Go(s,t,e,i,n){for(;e;)e=kh(s,t,e,i,n);return e}function vh(s,t,e){let i=s._getTarget();t in i||(i[t]={});let n=i[t];return H(n)&&E(e)?e:n||{}}function Sh(s,t,e,i){let n;for(let o of t)if(n=_r(bh(o,s),e),typeof n<"u")return xn(s,n)?_n(e,i,s,n):n}function _r(s,t){for(let e of t){if(!e)continue;let i=e[s];if(typeof i<"u")return i}}function Xo(s){let t=s._keys;return t||(t=s._keys=Mh(s._scopes)),t}function Mh(s){let t=new Set;for(let e of s)for(let i of Object.keys(e).filter(n=>!n.startsWith("_")))t.add(i);return Array.from(t)}function wn(s,t,e,i){let{iScale:n}=s,{key:o="r"}=this._parsing,r=new Array(i),a,l,c,h;for(a=0,l=i;ats==="x"?"y":"x";function Th(s,t,e,i){let n=s.skip?t:s,o=t,r=e.skip?t:e,a=Qs(o,n),l=Qs(r,o),c=a/(a+l),h=l/(a+l);c=isNaN(c)?0:c,h=isNaN(h)?0:h;let u=i*c,d=i*h;return{previous:{x:o.x-u*(r.x-n.x),y:o.y-u*(r.y-n.y)},next:{x:o.x+d*(r.x-n.x),y:o.y+d*(r.y-n.y)}}}function Dh(s,t,e){let i=s.length,n,o,r,a,l,c=Ae(s,0);for(let h=0;h!c.skip)),t.cubicInterpolationMode==="monotone")Ph(s,n);else{let c=i?s[s.length-1]:s[0];for(o=0,r=s.length;os.ownerDocument.defaultView.getComputedStyle(s,null);function Ih(s,t){return ui(s).getPropertyValue(t)}var Eh=["top","right","bottom","left"];function ue(s,t,e){let i={};e=e?"-"+e:"";for(let n=0;n<4;n++){let o=Eh[n];i[o]=parseFloat(s[t+"-"+o+e])||0}return i.width=i.left+i.right,i.height=i.top+i.bottom,i}var Lh=(s,t,e)=>(s>0||t>0)&&(!e||!e.shadowRoot);function Fh(s,t){let e=s.touches,i=e&&e.length?e[0]:s,{offsetX:n,offsetY:o}=i,r=!1,a,l;if(Lh(n,o,s.target))a=n,l=o;else{let c=t.getBoundingClientRect();a=i.clientX-c.left,l=i.clientY-c.top,r=!0}return{x:a,y:l,box:r}}function ee(s,t){if("native"in s)return s;let{canvas:e,currentDevicePixelRatio:i}=t,n=ui(e),o=n.boxSizing==="border-box",r=ue(n,"padding"),a=ue(n,"border","width"),{x:l,y:c,box:h}=Fh(s,e),u=r.left+(h&&a.left),d=r.top+(h&&a.top),{width:f,height:g}=t;return o&&(f-=r.width+a.width,g-=r.height+a.height),{x:Math.round((l-u)/f*e.width/i),y:Math.round((c-d)/g*e.height/i)}}function Rh(s,t,e){let i,n;if(t===void 0||e===void 0){let o=s&&hi(s);if(!o)t=s.clientWidth,e=s.clientHeight;else{let r=o.getBoundingClientRect(),a=ui(o),l=ue(a,"border","width"),c=ue(a,"padding");t=r.width-c.width-l.width,e=r.height-c.height-l.height,i=ti(a.maxWidth,o,"clientWidth"),n=ti(a.maxHeight,o,"clientHeight")}}return{width:t,height:e,maxWidth:i||Ks,maxHeight:n||Ks}}var Xt=s=>Math.round(s*10)/10;function vr(s,t,e,i){let n=ui(s),o=ue(n,"margin"),r=ti(n.maxWidth,s,"clientWidth")||Ks,a=ti(n.maxHeight,s,"clientHeight")||Ks,l=Rh(s,t,e),{width:c,height:h}=l;if(n.boxSizing==="content-box"){let d=ue(n,"border","width"),f=ue(n,"padding");c-=f.width+d.width,h-=f.height+d.height}return c=Math.max(0,c-o.width),h=Math.max(0,i?c/i:h-o.height),c=Xt(Math.min(c,r,l.maxWidth)),h=Xt(Math.min(h,a,l.maxHeight)),c&&!h&&(h=Xt(c/2)),(t!==void 0||e!==void 0)&&i&&l.height&&h>l.height&&(h=l.height,c=Xt(Math.floor(h*i))),{width:c,height:h}}function kn(s,t,e){let i=t||1,n=Xt(s.height*i),o=Xt(s.width*i);s.height=Xt(s.height),s.width=Xt(s.width);let r=s.canvas;return r.style&&(e||!r.style.height&&!r.style.width)&&(r.style.height=`${s.height}px`,r.style.width=`${s.width}px`),s.currentDevicePixelRatio!==i||r.height!==n||r.width!==o?(s.currentDevicePixelRatio=i,r.height=n,r.width=o,s.ctx.setTransform(i,0,0,i,0,0),!0):!1}var Sr=(function(){let s=!1;try{let t={get passive(){return s=!0,!1}};ci()&&(window.addEventListener("test",null,t),window.removeEventListener("test",null,t))}catch{}return s})();function vn(s,t){let e=Ih(s,t),i=e&&e.match(/^(\d+)(\.\d+)?px$/);return i?+i[1]:void 0}function Gt(s,t,e,i){return{x:s.x+e*(t.x-s.x),y:s.y+e*(t.y-s.y)}}function Mr(s,t,e,i){return{x:s.x+e*(t.x-s.x),y:i==="middle"?e<.5?s.y:t.y:i==="after"?e<1?s.y:t.y:e>0?t.y:s.y}}function Or(s,t,e,i){let n={x:s.cp2x,y:s.cp2y},o={x:t.cp1x,y:t.cp1y},r=Gt(s,n,e),a=Gt(n,o,e),l=Gt(o,t,e),c=Gt(r,a,e),h=Gt(a,l,e);return Gt(c,h,e)}var Nh=function(s,t){return{x(e){return s+s+t-e},setWidth(e){t=e},textAlign(e){return e==="center"?e:e==="right"?"left":"right"},xPlus(e,i){return e-i},leftForLtr(e,i){return e-i}}},zh=function(){return{x(s){return s},setWidth(s){},textAlign(s){return s},xPlus(s,t){return s+t},leftForLtr(s,t){return s}}};function ge(s,t,e){return s?Nh(t,e):zh()}function Sn(s,t){let e,i;(t==="ltr"||t==="rtl")&&(e=s.canvas.style,i=[e.getPropertyValue("direction"),e.getPropertyPriority("direction")],e.setProperty("direction",t,"important"),s.prevTextDirection=i)}function Mn(s,t){t!==void 0&&(delete s.prevTextDirection,s.canvas.style.setProperty("direction",t[0],t[1]))}function Tr(s){return s==="angle"?{between:Fe,compare:eh,normalize:st}:{between:It,compare:(t,e)=>t-e,normalize:t=>t}}function Jo({start:s,end:t,count:e,loop:i,style:n}){return{start:s%e,end:t%e,loop:i&&(t-s+1)%e===0,style:n}}function Vh(s,t,e){let{property:i,start:n,end:o}=e,{between:r,normalize:a}=Tr(i),l=t.length,{start:c,end:h,loop:u}=s,d,f;if(u){for(c+=l,h+=l,d=0,f=l;dl(n,_,b)&&a(n,_)!==0,x=()=>a(o,b)===0||l(o,_,b),k=()=>m||w(),S=()=>!m||x();for(let M=h,T=h;M<=u;++M)y=t[M%r],!y.skip&&(b=c(y[i]),b!==_&&(m=l(b,n,o),p===null&&k()&&(p=a(b,n)===0?M:T),p!==null&&S()&&(g.push(Jo({start:p,end:M,loop:d,count:r,style:f})),p=null),T=M,_=b));return p!==null&&g.push(Jo({start:p,end:u,loop:d,count:r,style:f})),g}function Tn(s,t){let e=[],i=s.segments;for(let n=0;nn&&s[o%t].skip;)o--;return o%=t,{start:n,end:o}}function Bh(s,t,e,i){let n=s.length,o=[],r=t,a=s[t],l;for(l=t+1;l<=e;++l){let c=s[l%n];c.skip||c.stop?a.skip||(i=!1,o.push({start:t%n,end:(l-1)%n,loop:i}),t=r=c.stop?l:null):(r=l,a.skip&&(t=l)),a=c}return r!==null&&o.push({start:t%n,end:r%n,loop:i}),o}function Dr(s,t){let e=s.points,i=s.options.spanGaps,n=e.length;if(!n)return[];let o=!!s._loop,{start:r,end:a}=Wh(e,n,o,i);if(i===!0)return Ko(s,[{start:r,end:a,loop:o}],e,t);let l=aa({chart:t,initial:e.initial,numSteps:r,currentStep:Math.min(i-e.start,r)}))}_refresh(){this._request||(this._running=!0,this._request=cn.call(window,()=>{this._update(),this._request=null,this._running&&this._refresh()}))}_update(t=Date.now()){let e=0;this._charts.forEach((i,n)=>{if(!i.running||!i.items.length)return;let o=i.items,r=o.length-1,a=!1,l;for(;r>=0;--r)l=o[r],l._active?(l._total>i.duration&&(i.duration=l._total),l.tick(t),a=!0):(o[r]=o[o.length-1],o.pop());a&&(n.draw(),this._notify(n,i,t,"progress")),o.length||(i.running=!1,this._notify(n,i,t,"complete"),i.initial=!1),e+=o.length}),this._lastDate=t,e===0&&(this._running=!1)}_getAnims(t){let e=this._charts,i=e.get(t);return i||(i={running:!1,initial:!0,items:[],listeners:{complete:[],progress:[]}},e.set(t,i)),i}listen(t,e,i){this._getAnims(t).listeners[e].push(i)}add(t,e){!e||!e.length||this._getAnims(t).items.push(...e)}has(t){return this._getAnims(t).items.length>0}start(t){let e=this._charts.get(t);e&&(e.running=!0,e.start=Date.now(),e.duration=e.items.reduce((i,n)=>Math.max(i,n._duration),0),this._refresh())}running(t){if(!this._running)return!1;let e=this._charts.get(t);return!(!e||!e.running||!e.items.length)}stop(t){let e=this._charts.get(t);if(!e||!e.items.length)return;let i=e.items,n=i.length-1;for(;n>=0;--n)i[n].cancel();e.items=[],this._notify(t,e,Date.now(),"complete")}remove(t){return this._charts.delete(t)}},Ht=new Wn,Cr="transparent",Uh={boolean(s,t,e){return e>.5?t:s},color(s,t,e){let i=gn(s||Cr),n=i.valid&&gn(t||Cr);return n&&n.valid?n.mix(i,e).hexString():t},number(s,t,e){return s+(t-s)*e}},Bn=class{constructor(t,e,i,n){let o=e[i];n=ze([t.to,n,o,t.from]);let r=ze([t.from,o,n]);this._active=!0,this._fn=t.fn||Uh[t.type||typeof r],this._easing=Ce[t.easing]||Ce.linear,this._start=Math.floor(Date.now()+(t.delay||0)),this._duration=this._total=Math.floor(t.duration),this._loop=!!t.loop,this._target=e,this._prop=i,this._from=r,this._to=n,this._promises=void 0}active(){return this._active}update(t,e,i){if(this._active){this._notify(!1);let n=this._target[this._prop],o=i-this._start,r=this._duration-o;this._start=i,this._duration=Math.floor(Math.max(r,t.duration)),this._total+=o,this._loop=!!t.loop,this._to=ze([t.to,e,n,t.from]),this._from=ze([t.from,n,e])}}cancel(){this._active&&(this.tick(Date.now()),this._active=!1,this._notify(!1))}tick(t){let e=t-this._start,i=this._duration,n=this._prop,o=this._from,r=this._loop,a=this._to,l;if(this._active=o!==a&&(r||e1?2-l:l,l=this._easing(Math.min(1,Math.max(0,l))),this._target[n]=this._fn(o,a,l)}wait(){let t=this._promises||(this._promises=[]);return new Promise((e,i)=>{t.push({res:e,rej:i})})}_notify(t){let e=t?"res":"rej",i=this._promises||[];for(let n=0;n{let o=t[n];if(!E(o))return;let r={};for(let a of e)r[a]=o[a];(H(o.properties)&&o.properties||[n]).forEach(a=>{(a===n||!i.has(a))&&i.set(a,r)})})}_animateOptions(t,e){let i=e.options,n=Zh(t,i);if(!n)return[];let o=this._createAnimations(n,i);return i.$shared&&Yh(t.options.$animations,i).then(()=>{t.options=i},()=>{}),o}_createAnimations(t,e){let i=this._properties,n=[],o=t.$animations||(t.$animations={}),r=Object.keys(e),a=Date.now(),l;for(l=r.length-1;l>=0;--l){let c=r[l];if(c.charAt(0)==="$")continue;if(c==="options"){n.push(...this._animateOptions(t,e));continue}let h=e[c],u=o[c],d=i.get(c);if(u)if(d&&u.active()){u.update(d,h,a);continue}else u.cancel();if(!d||!d.duration){t[c]=h;continue}o[c]=u=new Bn(d,t,c,h),n.push(u)}return n}update(t,e){if(this._properties.size===0){Object.assign(t,e);return}let i=this._createAnimations(t,e);if(i.length)return Ht.add(this._chart,i),!0}};function Yh(s,t){let e=[],i=Object.keys(t);for(let n=0;n0||!e&&o<0)return n.index}return null}function Er(s,t){let{chart:e,_cachedMeta:i}=s,n=e._stacks||(e._stacks={}),{iScale:o,vScale:r,index:a}=i,l=o.axis,c=r.axis,h=Jh(o,r,i),u=t.length,d;for(let f=0;fe[i].axis===t).shift()}function tu(s,t){return Bt(s,{active:!1,dataset:void 0,datasetIndex:t,index:t,mode:"default",type:"dataset"})}function eu(s,t,e){return Bt(s,{active:!1,dataIndex:t,parsed:void 0,raw:void 0,element:e,index:t,mode:"default",type:"data"})}function ys(s,t){let e=s.controller.index,i=s.vScale&&s.vScale.axis;if(i){t=t||s._parsed;for(let n of t){let o=n._stacks;if(!o||o[i]===void 0||o[i][e]===void 0)return;delete o[i][e],o[i]._visualValues!==void 0&&o[i]._visualValues[e]!==void 0&&delete o[i]._visualValues[e]}}}var An=s=>s==="reset"||s==="none",Lr=(s,t)=>t?s:Object.assign({},s),su=(s,t,e)=>s&&!t.hidden&&t._stacked&&{keys:Da(e,!0),values:null},ut=class{constructor(t,e){this.chart=t,this._ctx=t.ctx,this.index=e,this._cachedDataOpts={},this._cachedMeta=this.getMeta(),this._type=this._cachedMeta.type,this.options=void 0,this._parsing=!1,this._data=void 0,this._objectData=void 0,this._sharedOptions=void 0,this._drawStart=void 0,this._drawCount=void 0,this.enableOptionSharing=!1,this.supportsDecimation=!1,this.$context=void 0,this._syncList=[],this.datasetElementType=new.target.datasetElementType,this.dataElementType=new.target.dataElementType,this.initialize()}initialize(){let t=this._cachedMeta;this.configure(),this.linkScales(),t._stacked=Cn(t.vScale,t),this.addElements(),this.options.fill&&!this.chart.isPluginEnabled("filler")&&console.warn("Tried to use the 'fill' option without the 'Filler' plugin enabled. Please import and register the 'Filler' plugin and make sure it is not disabled in the options")}updateIndex(t){this.index!==t&&ys(this._cachedMeta),this.index=t}linkScales(){let t=this.chart,e=this._cachedMeta,i=this.getDataset(),n=(u,d,f,g)=>u==="x"?d:u==="r"?g:f,o=e.xAxisID=P(i.xAxisID,Pn(t,"x")),r=e.yAxisID=P(i.yAxisID,Pn(t,"y")),a=e.rAxisID=P(i.rAxisID,Pn(t,"r")),l=e.indexAxis,c=e.iAxisID=n(l,o,r,a),h=e.vAxisID=n(l,r,o,a);e.xScale=this.getScaleForId(o),e.yScale=this.getScaleForId(r),e.rScale=this.getScaleForId(a),e.iScale=this.getScaleForId(c),e.vScale=this.getScaleForId(h)}getDataset(){return this.chart.data.datasets[this.index]}getMeta(){return this.chart.getDatasetMeta(this.index)}getScaleForId(t){return this.chart.scales[t]}_getOtherScale(t){let e=this._cachedMeta;return t===e.iScale?e.vScale:e.iScale}reset(){this._update("reset")}_destroy(){let t=this._cachedMeta;this._data&&an(this._data,this),t._stacked&&ys(t)}_dataCheck(){let t=this.getDataset(),e=t.data||(t.data=[]),i=this._data;if(E(e)){let n=this._cachedMeta;this._data=Xh(e,n)}else if(i!==e){if(i){an(i,this);let n=this._cachedMeta;ys(n),n._parsed=[]}e&&Object.isExtensible(e)&&hr(e,this),this._syncList=[],this._data=e}}addElements(){let t=this._cachedMeta;this._dataCheck(),this.datasetElementType&&(t.dataset=new this.datasetElementType)}buildOrUpdateElements(t){let e=this._cachedMeta,i=this.getDataset(),n=!1;this._dataCheck();let o=e._stacked;e._stacked=Cn(e.vScale,e),e.stack!==i.stack&&(n=!0,ys(e),e.stack=i.stack),this._resyncElements(t),(n||o!==e._stacked)&&(Er(this,e._parsed),e._stacked=Cn(e.vScale,e))}configure(){let t=this.chart.config,e=t.datasetScopeKeys(this._type),i=t.getOptionScopes(this.getDataset(),e,!0);this.options=t.createResolver(i,this.getContext()),this._parsing=this.options.parsing,this._cachedDataOpts={}}parse(t,e){let{_cachedMeta:i,_data:n}=this,{iScale:o,_stacked:r}=i,a=o.axis,l=t===0&&e===n.length?!0:i._sorted,c=t>0&&i._parsed[t-1],h,u,d;if(this._parsing===!1)i._parsed=n,i._sorted=!0,d=n;else{H(n[t])?d=this.parseArrayData(i,n,t,e):E(n[t])?d=this.parseObjectData(i,n,t,e):d=this.parsePrimitiveData(i,n,t,e);let f=()=>u[a]===null||c&&u[a]m||u=0;--d)if(!g()){this.updateRangeFromParsed(c,t,f,l);break}}return c}getAllParsedValues(t){let e=this._cachedMeta._parsed,i=[],n,o,r;for(n=0,o=e.length;n=0&&tthis.getContext(i,n,e),m=c.resolveNamedOptions(d,f,g,u);return m.$shared&&(m.$shared=l,o[r]=Object.freeze(Lr(m,l))),m}_resolveAnimations(t,e,i){let n=this.chart,o=this._cachedDataOpts,r=`animation-${e}`,a=o[r];if(a)return a;let l;if(n.options.animation!==!1){let h=this.chart.config,u=h.datasetAnimationScopeKeys(this._type,e),d=h.getOptionScopes(this.getDataset(),u);l=h.createResolver(d,this.getContext(t,i,e))}let c=new _i(n,l&&l.animations);return l&&l._cacheable&&(o[r]=Object.freeze(c)),c}getSharedOptions(t){if(t.$shared)return this._sharedOptions||(this._sharedOptions=Object.assign({},t))}includeOptions(t,e){return!e||An(t)||this.chart._animationsDisabled}_getSharedOptions(t,e){let i=this.resolveDataElementOptions(t,e),n=this._sharedOptions,o=this.getSharedOptions(i),r=this.includeOptions(e,o)||o!==n;return this.updateSharedOptions(o,e,i),{sharedOptions:o,includeOptions:r}}updateElement(t,e,i,n){An(n)?Object.assign(t,i):this._resolveAnimations(e,n).update(t,i)}updateSharedOptions(t,e,i){t&&!An(e)&&this._resolveAnimations(void 0,e).update(t,i)}_setStyle(t,e,i,n){t.active=n;let o=this.getStyle(e,n);this._resolveAnimations(e,i,n).update(t,{options:!n&&this.getSharedOptions(o)||o})}removeHoverStyle(t,e,i){this._setStyle(t,i,"active",!1)}setHoverStyle(t,e,i){this._setStyle(t,i,"active",!0)}_removeDatasetHoverStyle(){let t=this._cachedMeta.dataset;t&&this._setStyle(t,void 0,"active",!1)}_setDatasetHoverStyle(){let t=this._cachedMeta.dataset;t&&this._setStyle(t,void 0,"active",!0)}_resyncElements(t){let e=this._data,i=this._cachedMeta.data;for(let[a,l,c]of this._syncList)this[a](l,c);this._syncList=[];let n=i.length,o=e.length,r=Math.min(o,n);r&&this.parse(0,r),o>n?this._insertElements(n,o-n,t):o{for(c.length+=e,a=c.length-1;a>=r;a--)c[a]=c[a-e]};for(l(o),a=t;an-o))}return s._cache.$bar}function nu(s){let t=s.iScale,e=iu(t,s.type),i=t._length,n,o,r,a,l=()=>{r===32767||r===-32768||(Ee(a)&&(i=Math.min(i,Math.abs(r-a)||i)),a=r)};for(n=0,o=e.length;n0?n[s-1]:null,a=sMath.abs(a)&&(l=a,c=r),t[e.axis]=c,t._custom={barStart:l,barEnd:c,start:n,end:o,min:r,max:a}}function Ca(s,t,e,i){return H(s)?au(s,t,e,i):t[e.axis]=e.parse(s,i),t}function Fr(s,t,e,i){let n=s.iScale,o=s.vScale,r=n.getLabels(),a=n===o,l=[],c,h,u,d;for(c=e,h=e+i;c=e?1:-1)}function cu(s){let t,e,i,n,o;return s.horizontal?(t=s.base>s.x,e="left",i="right"):(t=s.baseh.controller.options.grouped),o=i.options.stacked,r=[],a=this._cachedMeta.controller.getParsed(e),l=a&&a[i.axis],c=h=>{let u=h._parsed.find(f=>f[i.axis]===l),d=u&&u[h.vScale.axis];if(I(d)||isNaN(d))return!0};for(let h of n)if(!(e!==void 0&&c(h))&&((o===!1||r.indexOf(h.stack)===-1||o===void 0&&h.stack===void 0)&&r.push(h.stack),h.index===t))break;return r.length||r.push(void 0),r}_getStackCount(t){return this._getStacks(void 0,t).length}_getAxisCount(){return this._getAxis().length}getFirstScaleIdForIndexAxis(){let t=this.chart.scales,e=this.chart.options.indexAxis;return Object.keys(t).filter(i=>t[i].axis===e).shift()}_getAxis(){let t={},e=this.getFirstScaleIdForIndexAxis();for(let i of this.chart.data.datasets)t[P(this.chart.options.indexAxis==="x"?i.xAxisID:i.yAxisID,e)]=!0;return Object.keys(t)}_getStackIndex(t,e,i){let n=this._getStacks(t,i),o=e!==void 0?n.indexOf(e):-1;return o===-1?n.length-1:o}_getRuler(){let t=this.options,e=this._cachedMeta,i=e.iScale,n=[],o,r;for(o=0,r=e.data.length;o=0;--i)e=Math.max(e,t[i].size(this.resolveDataElementOptions(i))/2);return e>0&&e}getLabelAndValue(t){let e=this._cachedMeta,i=this.chart.data.labels||[],{xScale:n,yScale:o}=e,r=this.getParsed(t),a=n.getLabelForValue(r.x),l=o.getLabelForValue(r.y),c=r._custom;return{label:i[t]||"",value:"("+a+", "+l+(c?", "+c:"")+")"}}update(t){let e=this._cachedMeta.data;this.updateElements(e,0,e.length,t)}updateElements(t,e,i,n){let o=n==="reset",{iScale:r,vScale:a}=this._cachedMeta,{sharedOptions:l,includeOptions:c}=this._getSharedOptions(e,n),h=r.axis,u=a.axis;for(let d=e;dFe(_,a,l,!0)?1:Math.max(w,w*e,x,x*e),g=(_,w,x)=>Fe(_,a,l,!0)?-1:Math.min(w,w*e,x,x*e),m=f(0,c,u),p=f(q,h,d),b=g(F,c,u),y=g(F+q,h,d);i=(m-b)/2,n=(p-y)/2,o=-(m+b)/2,r=-(p+y)/2}return{ratioX:i,ratioY:n,offsetX:o,offsetY:r}}var jt=class extends ut{constructor(t,e){super(t,e),this.enableOptionSharing=!0,this.innerRadius=void 0,this.outerRadius=void 0,this.offsetX=void 0,this.offsetY=void 0}linkScales(){}parse(t,e){let i=this.getDataset().data,n=this._cachedMeta;if(this._parsing===!1)n._parsed=i;else{let o=l=>+i[l];if(E(i[t])){let{key:l="value"}=this._parsing;o=c=>+Wt(i[c],l)}let r,a;for(r=t,a=t+e;r0&&!isNaN(t)?$*(Math.abs(t)/e):0}getLabelAndValue(t){let e=this._cachedMeta,i=this.chart,n=i.data.labels||[],o=Re(e._parsed[t],i.options.locale);return{label:n[t]||"",value:o}}getMaxBorderWidth(t){let e=0,i=this.chart,n,o,r,a,l;if(!t){for(n=0,o=i.data.datasets.length;nt!=="spacing",_indexable:t=>t!=="spacing"&&!t.startsWith("borderDash")&&!t.startsWith("hoverBorderDash")}),v(jt,"overrides",{aspectRatio:1,plugins:{legend:{labels:{generateLabels(t){let e=t.data,{labels:{pointStyle:i,textAlign:n,color:o,useBorderRadius:r,borderRadius:a}}=t.legend.options;return e.labels.length&&e.datasets.length?e.labels.map((l,c)=>{let u=t.getDatasetMeta(0).controller.getStyle(c);return{text:l,fillStyle:u.backgroundColor,fontColor:o,hidden:!t.getDataVisibility(c),lineDash:u.borderDash,lineDashOffset:u.borderDashOffset,lineJoin:u.borderJoinStyle,lineWidth:u.borderWidth,strokeStyle:u.borderColor,textAlign:n,pointStyle:i,borderRadius:r&&(a||u.borderRadius),index:c}}):[]}},onClick(t,e,i){i.chart.toggleDataVisibility(e.index),i.chart.update()}}}});var He=class extends ut{initialize(){this.enableOptionSharing=!0,this.supportsDecimation=!0,super.initialize()}update(t){let e=this._cachedMeta,{dataset:i,data:n=[],_dataset:o}=e,r=this.chart._animationsDisabled,{start:a,count:l}=un(e,n,r);this._drawStart=a,this._drawCount=l,dn(e)&&(a=0,l=n.length),i._chart=this.chart,i._datasetIndex=this.index,i._decimated=!!o._decimated,i.points=n;let c=this.resolveDatasetElementOptions(t);this.options.showLine||(c.borderWidth=0),c.segment=this.options.segment,this.updateElement(i,void 0,{animated:!r,options:c},t),this.updateElements(n,a,l,t)}updateElements(t,e,i,n){let o=n==="reset",{iScale:r,vScale:a,_stacked:l,_dataset:c}=this._cachedMeta,{sharedOptions:h,includeOptions:u}=this._getSharedOptions(e,n),d=r.axis,f=a.axis,{spanGaps:g,segment:m}=this.options,p=fe(g)?g:Number.POSITIVE_INFINITY,b=this.chart._animationsDisabled||o||n==="none",y=e+i,_=t.length,w=e>0&&this.getParsed(e-1);for(let x=0;x<_;++x){let k=t[x],S=b?k:{};if(x=y){S.skip=!0;continue}let M=this.getParsed(x),T=I(M[f]),C=S[d]=r.getPixelForValue(M[d],x),A=S[f]=o||T?a.getBasePixel():a.getPixelForValue(l?this.applyStack(a,M,l):M[f],x);S.skip=isNaN(C)||isNaN(A)||T,S.stop=x>0&&Math.abs(M[d]-w[d])>p,m&&(S.parsed=M,S.raw=c.data[x]),u&&(S.options=h||this.resolveDataElementOptions(x,k.active?"active":n)),b||this.updateElement(k,x,S,n),w=M}}getMaxOverflow(){let t=this._cachedMeta,e=t.dataset,i=e.options&&e.options.borderWidth||0,n=t.data||[];if(!n.length)return i;let o=n[0].size(this.resolveDataElementOptions(0)),r=n[n.length-1].size(this.resolveDataElementOptions(n.length-1));return Math.max(i,o,r)/2}draw(){let t=this._cachedMeta;t.dataset.updateControlPoints(this.chart.chartArea,t.iScale.axis),super.draw()}};v(He,"id","line"),v(He,"defaults",{datasetElementType:"line",dataElementType:"point",showLine:!0,spanGaps:!1}),v(He,"overrides",{scales:{_index_:{type:"category"},_value_:{type:"linear"}}});var xe=class extends ut{constructor(t,e){super(t,e),this.innerRadius=void 0,this.outerRadius=void 0}getLabelAndValue(t){let e=this._cachedMeta,i=this.chart,n=i.data.labels||[],o=Re(e._parsed[t].r,i.options.locale);return{label:n[t]||"",value:o}}parseObjectData(t,e,i,n){return wn.bind(this)(t,e,i,n)}update(t){let e=this._cachedMeta.data;this._updateRadius(),this.updateElements(e,0,e.length,t)}getMinMax(){let t=this._cachedMeta,e={min:Number.POSITIVE_INFINITY,max:Number.NEGATIVE_INFINITY};return t.data.forEach((i,n)=>{let o=this.getParsed(n).r;!isNaN(o)&&this.chart.getDataVisibility(n)&&(oe.max&&(e.max=o))}),e}_updateRadius(){let t=this.chart,e=t.chartArea,i=t.options,n=Math.min(e.right-e.left,e.bottom-e.top),o=Math.max(n/2,0),r=Math.max(i.cutoutPercentage?o/100*i.cutoutPercentage:1,0),a=(o-r)/t.getVisibleDatasetCount();this.outerRadius=o-a*this.index,this.innerRadius=this.outerRadius-a}updateElements(t,e,i,n){let o=n==="reset",r=this.chart,l=r.options.animation,c=this._cachedMeta.rScale,h=c.xCenter,u=c.yCenter,d=c.getIndexAngle(0)-.5*F,f=d,g,m=360/this.countVisibleElements();for(g=0;g{!isNaN(this.getParsed(n).r)&&this.chart.getDataVisibility(n)&&e++}),e}_computeAngle(t,e,i){return this.chart.getDataVisibility(t)?bt(this.resolveDataElementOptions(t,e).angle||i):0}};v(xe,"id","polarArea"),v(xe,"defaults",{dataElementType:"arc",animation:{animateRotate:!0,animateScale:!0},animations:{numbers:{type:"number",properties:["x","y","startAngle","endAngle","innerRadius","outerRadius"]}},indexAxis:"r",startAngle:0}),v(xe,"overrides",{aspectRatio:1,plugins:{legend:{labels:{generateLabels(t){let e=t.data;if(e.labels.length&&e.datasets.length){let{labels:{pointStyle:i,color:n}}=t.legend.options;return e.labels.map((o,r)=>{let l=t.getDatasetMeta(0).controller.getStyle(r);return{text:o,fillStyle:l.backgroundColor,strokeStyle:l.borderColor,fontColor:n,lineWidth:l.borderWidth,pointStyle:i,hidden:!t.getDataVisibility(r),index:r}})}return[]}},onClick(t,e,i){i.chart.toggleDataVisibility(e.index),i.chart.update()}}},scales:{r:{type:"radialLinear",angleLines:{display:!1},beginAtZero:!0,grid:{circular:!0},pointLabels:{display:!1},startAngle:0}}});var vs=class extends jt{};v(vs,"id","pie"),v(vs,"defaults",{cutout:0,rotation:0,circumference:360,radius:"100%"});var $e=class extends ut{getLabelAndValue(t){let e=this._cachedMeta.vScale,i=this.getParsed(t);return{label:e.getLabels()[t],value:""+e.getLabelForValue(i[e.axis])}}parseObjectData(t,e,i,n){return wn.bind(this)(t,e,i,n)}update(t){let e=this._cachedMeta,i=e.dataset,n=e.data||[],o=e.iScale.getLabels();if(i.points=n,t!=="resize"){let r=this.resolveDatasetElementOptions(t);this.options.showLine||(r.borderWidth=0);let a={_loop:!0,_fullLoop:o.length===n.length,options:r};this.updateElement(i,void 0,a,t)}this.updateElements(n,0,n.length,t)}updateElements(t,e,i,n){let o=this._cachedMeta.rScale,r=n==="reset";for(let a=e;a0&&this.getParsed(e-1);for(let w=e;w0&&Math.abs(k[f]-_[f])>b,p&&(S.parsed=k,S.raw=c.data[w]),d&&(S.options=u||this.resolveDataElementOptions(w,x.active?"active":n)),y||this.updateElement(x,w,S,n),_=k}this.updateSharedOptions(u,n,h)}getMaxOverflow(){let t=this._cachedMeta,e=t.data||[];if(!this.options.showLine){let a=0;for(let l=e.length-1;l>=0;--l)a=Math.max(a,e[l].size(this.resolveDataElementOptions(l))/2);return a>0&&a}let i=t.dataset,n=i.options&&i.options.borderWidth||0;if(!e.length)return n;let o=e[0].size(this.resolveDataElementOptions(0)),r=e[e.length-1].size(this.resolveDataElementOptions(e.length-1));return Math.max(n,o,r)/2}};v(je,"id","scatter"),v(je,"defaults",{datasetElementType:!1,dataElementType:"point",showLine:!1,fill:!1}),v(je,"overrides",{interaction:{mode:"point"},scales:{x:{type:"linear"},y:{type:"linear"}}});var gu=Object.freeze({__proto__:null,BarController:We,BubbleController:Be,DoughnutController:jt,LineController:He,PieController:vs,PolarAreaController:xe,RadarController:$e,ScatterController:je});function me(){throw new Error("This method is not implemented: Check that a complete date adapter is provided.")}var Hn=class s{constructor(t){v(this,"options");this.options=t||{}}static override(t){Object.assign(s.prototype,t)}init(){}formats(){return me()}parse(){return me()}format(){return me()}add(){return me()}diff(){return me()}startOf(){return me()}endOf(){return me()}},to={_date:Hn};function mu(s,t,e,i){let{controller:n,data:o,_sorted:r}=s,a=n._cachedMeta.iScale,l=s.dataset&&s.dataset.options?s.dataset.options.spanGaps:null;if(a&&t===a.axis&&t!=="r"&&r&&o.length){let c=a._reversePixels?ar:Ct;if(i){if(n._sharedOptions){let h=o[0],u=typeof h.getRange=="function"&&h.getRange(t);if(u){let d=c(o,t,e-u),f=c(o,t,e+u);return{lo:d.lo,hi:f.hi}}}}else{let h=c(o,t,e);if(l){let{vScale:u}=n._cachedMeta,{_parsed:d}=s,f=d.slice(0,h.lo+1).reverse().findIndex(m=>!I(m[u.axis]));h.lo-=Math.max(0,f);let g=d.slice(h.hi).findIndex(m=>!I(m[u.axis]));h.hi+=Math.max(0,g)}return h}}return{lo:0,hi:o.length-1}}function Ls(s,t,e,i,n){let o=s.getSortedVisibleDatasetMetas(),r=e[t];for(let a=0,l=o.length;a{l[r]&&l[r](t[e],n)&&(o.push({element:l,datasetIndex:c,index:h}),a=a||l.inRange(t.x,t.y,n))}),i&&!a?[]:o}var xu={evaluateInteractionItems:Ls,modes:{index(s,t,e,i){let n=ee(t,s),o=e.axis||"x",r=e.includeInvisible||!1,a=e.intersect?En(s,n,o,i,r):Ln(s,n,o,!1,i,r),l=[];return a.length?(s.getSortedVisibleDatasetMetas().forEach(c=>{let h=a[0].index,u=c.data[h];u&&!u.skip&&l.push({element:u,datasetIndex:c.index,index:h})}),l):[]},dataset(s,t,e,i){let n=ee(t,s),o=e.axis||"xy",r=e.includeInvisible||!1,a=e.intersect?En(s,n,o,i,r):Ln(s,n,o,!1,i,r);if(a.length>0){let l=a[0].datasetIndex,c=s.getDatasetMeta(l).data;a=[];for(let h=0;he.pos===t)}function Vr(s,t){return s.filter(e=>Pa.indexOf(e.pos)===-1&&e.box.axis===t)}function _s(s,t){return s.sort((e,i)=>{let n=t?i:e,o=t?e:i;return n.weight===o.weight?n.index-o.index:n.weight-o.weight})}function _u(s){let t=[],e,i,n,o,r,a;for(e=0,i=(s||[]).length;ec.box.fullSize),!0),i=_s(xs(t,"left"),!0),n=_s(xs(t,"right")),o=_s(xs(t,"top"),!0),r=_s(xs(t,"bottom")),a=Vr(t,"x"),l=Vr(t,"y");return{fullSize:e,leftAndTop:i.concat(o),rightAndBottom:n.concat(l).concat(r).concat(a),chartArea:xs(t,"chartArea"),vertical:i.concat(n).concat(l),horizontal:o.concat(r).concat(a)}}function Wr(s,t,e,i){return Math.max(s[e],t[e])+Math.max(s[i],t[i])}function Aa(s,t){s.top=Math.max(s.top,t.top),s.left=Math.max(s.left,t.left),s.bottom=Math.max(s.bottom,t.bottom),s.right=Math.max(s.right,t.right)}function Su(s,t,e,i){let{pos:n,box:o}=e,r=s.maxPadding;if(!E(n)){e.size&&(s[n]-=e.size);let u=i[e.stack]||{size:0,count:1};u.size=Math.max(u.size,e.horizontal?o.height:o.width),e.size=u.size/u.count,s[n]+=e.size}o.getPadding&&Aa(r,o.getPadding());let a=Math.max(0,t.outerWidth-Wr(r,s,"left","right")),l=Math.max(0,t.outerHeight-Wr(r,s,"top","bottom")),c=a!==s.w,h=l!==s.h;return s.w=a,s.h=l,e.horizontal?{same:c,other:h}:{same:h,other:c}}function Mu(s){let t=s.maxPadding;function e(i){let n=Math.max(t[i]-s[i],0);return s[i]+=n,n}s.y+=e("top"),s.x+=e("left"),e("right"),e("bottom")}function Ou(s,t){let e=t.maxPadding;function i(n){let o={left:0,top:0,right:0,bottom:0};return n.forEach(r=>{o[r]=Math.max(t[r],e[r])}),o}return i(s?["left","right"]:["top","bottom"])}function Ss(s,t,e,i){let n=[],o,r,a,l,c,h;for(o=0,r=s.length,c=0;o{typeof m.beforeLayout=="function"&&m.beforeLayout()});let h=l.reduce((m,p)=>p.box.options&&p.box.options.display===!1?m:m+1,0)||1,u=Object.freeze({outerWidth:t,outerHeight:e,padding:n,availableWidth:o,availableHeight:r,vBoxMaxWidth:o/2/h,hBoxMaxHeight:r/2}),d=Object.assign({},n);Aa(d,nt(i));let f=Object.assign({maxPadding:d,w:o,h:r,x:n.left,y:n.top},n),g=ku(l.concat(c),u);Ss(a.fullSize,f,u,g),Ss(l,f,u,g),Ss(c,f,u,g)&&Ss(l,f,u,g),Mu(f),Br(a.leftAndTop,f,u,g),f.x+=f.w,f.y+=f.h,Br(a.rightAndBottom,f,u,g),s.chartArea={left:f.left,top:f.top,right:f.left+f.w,bottom:f.top+f.h,height:f.h,width:f.w},z(a.chartArea,m=>{let p=m.box;Object.assign(p,s.chartArea),p.update(f.w,f.h,{left:0,top:0,right:0,bottom:0})})}},wi=class{acquireContext(t,e){}releaseContext(t){return!1}addEventListener(t,e,i){}removeEventListener(t,e,i){}getDevicePixelRatio(){return 1}getMaximumSize(t,e,i,n){return e=Math.max(0,e||t.width),i=i||t.height,{width:e,height:Math.max(0,n?Math.floor(e/n):i)}}isAttached(t){return!0}updateConfig(t){}},$n=class extends wi{acquireContext(t){return t&&t.getContext&&t.getContext("2d")||null}updateConfig(t){t.options.animation=!1}},yi="$chartjs",Tu={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"},Hr=s=>s===null||s==="";function Du(s,t){let e=s.style,i=s.getAttribute("height"),n=s.getAttribute("width");if(s[yi]={initial:{height:i,width:n,style:{display:e.display,height:e.height,width:e.width}}},e.display=e.display||"block",e.boxSizing=e.boxSizing||"border-box",Hr(n)){let o=vn(s,"width");o!==void 0&&(s.width=o)}if(Hr(i))if(s.style.height==="")s.height=s.width/(t||2);else{let o=vn(s,"height");o!==void 0&&(s.height=o)}return s}var Ia=Sr?{passive:!0}:!1;function Cu(s,t,e){s&&s.addEventListener(t,e,Ia)}function Pu(s,t,e){s&&s.canvas&&s.canvas.removeEventListener(t,e,Ia)}function Au(s,t){let e=Tu[s.type]||s.type,{x:i,y:n}=ee(s,t);return{type:e,chart:t,native:s,x:i!==void 0?i:null,y:n!==void 0?n:null}}function ki(s,t){for(let e of s)if(e===t||e.contains(t))return!0}function Iu(s,t,e){let i=s.canvas,n=new MutationObserver(o=>{let r=!1;for(let a of o)r=r||ki(a.addedNodes,i),r=r&&!ki(a.removedNodes,i);r&&e()});return n.observe(document,{childList:!0,subtree:!0}),n}function Eu(s,t,e){let i=s.canvas,n=new MutationObserver(o=>{let r=!1;for(let a of o)r=r||ki(a.removedNodes,i),r=r&&!ki(a.addedNodes,i);r&&e()});return n.observe(document,{childList:!0,subtree:!0}),n}var As=new Map,$r=0;function Ea(){let s=window.devicePixelRatio;s!==$r&&($r=s,As.forEach((t,e)=>{e.currentDevicePixelRatio!==s&&t()}))}function Lu(s,t){As.size||window.addEventListener("resize",Ea),As.set(s,t)}function Fu(s){As.delete(s),As.size||window.removeEventListener("resize",Ea)}function Ru(s,t,e){let i=s.canvas,n=i&&hi(i);if(!n)return;let o=hn((a,l)=>{let c=n.clientWidth;e(a,l),c{let l=a[0],c=l.contentRect.width,h=l.contentRect.height;c===0&&h===0||o(c,h)});return r.observe(n),Lu(s,o),r}function Fn(s,t,e){e&&e.disconnect(),t==="resize"&&Fu(s)}function Nu(s,t,e){let i=s.canvas,n=hn(o=>{s.ctx!==null&&e(Au(o,s))},s);return Cu(i,t,n),n}var jn=class extends wi{acquireContext(t,e){let i=t&&t.getContext&&t.getContext("2d");return i&&i.canvas===t?(Du(t,e),i):null}releaseContext(t){let e=t.canvas;if(!e[yi])return!1;let i=e[yi].initial;["height","width"].forEach(o=>{let r=i[o];I(r)?e.removeAttribute(o):e.setAttribute(o,r)});let n=i.style||{};return Object.keys(n).forEach(o=>{e.style[o]=n[o]}),e.width=e.width,delete e[yi],!0}addEventListener(t,e,i){this.removeEventListener(t,e);let n=t.$proxies||(t.$proxies={}),r={attach:Iu,detach:Eu,resize:Ru}[e]||Nu;n[e]=r(t,e,i)}removeEventListener(t,e){let i=t.$proxies||(t.$proxies={}),n=i[e];if(!n)return;({attach:Fn,detach:Fn,resize:Fn}[e]||Pu)(t,e,n),i[e]=void 0}getDevicePixelRatio(){return window.devicePixelRatio}getMaximumSize(t,e,i,n){return vr(t,e,i,n)}isAttached(t){let e=t&&hi(t);return!!(e&&e.isConnected)}};function zu(s){return!ci()||typeof OffscreenCanvas<"u"&&s instanceof OffscreenCanvas?$n:jn}var dt=class{constructor(){v(this,"x");v(this,"y");v(this,"active",!1);v(this,"options");v(this,"$animations")}tooltipPosition(t){let{x:e,y:i}=this.getProps(["x","y"],t);return{x:e,y:i}}hasValue(){return fe(this.x)&&fe(this.y)}getProps(t,e){let i=this.$animations;if(!e||!i)return this;let n={};return t.forEach(o=>{n[o]=i[o]&&i[o].active()?i[o]._to:this[o]}),n}};v(dt,"defaults",{}),v(dt,"defaultRoutes");function Vu(s,t){let e=s.options.ticks,i=Wu(s),n=Math.min(e.maxTicksLimit||i,i),o=e.major.enabled?Hu(t):[],r=o.length,a=o[0],l=o[r-1],c=[];if(r>n)return $u(t,c,o,r/n),c;let h=Bu(o,t,n);if(r>0){let u,d,f=r>1?Math.round((l-a)/(r-1)):null;for(fi(t,c,h,I(f)?0:a-f,a),u=0,d=r-1;un)return l}return Math.max(n,1)}function Hu(s){let t=[],e,i;for(e=0,i=s.length;es==="left"?"right":s==="right"?"left":s,jr=(s,t,e)=>t==="top"||t==="left"?s[t]+e:s[t]-e,Ur=(s,t)=>Math.min(t||s,s);function Yr(s,t){let e=[],i=s.length/t,n=s.length,o=0;for(;or+a)))return l}function Zu(s,t){z(s,e=>{let i=e.gc,n=i.length/2,o;if(n>t){for(o=0;oi?i:e,i=n&&e>i?e:i,{min:at(e,at(i,e)),max:at(i,at(e,i))}}getPadding(){return{left:this.paddingLeft||0,top:this.paddingTop||0,right:this.paddingRight||0,bottom:this.paddingBottom||0}}getTicks(){return this.ticks}getLabels(){let t=this.chart.data;return this.options.labels||(this.isHorizontal()?t.xLabels:t.yLabels)||t.labels||[]}getLabelItems(t=this.chart.chartArea){return this._labelItems||(this._labelItems=this._computeLabelItems(t))}beforeLayout(){this._cache={},this._dataLimitsCached=!1}beforeUpdate(){W(this.options.beforeUpdate,[this])}update(t,e,i){let{beginAtZero:n,grace:o,ticks:r}=this.options,a=r.sampleSize;this.beforeUpdate(),this.maxWidth=t,this.maxHeight=e,this._margins=i=Object.assign({left:0,right:0,top:0,bottom:0},i),this.ticks=null,this._labelSizes=null,this._gridLineItems=null,this._labelItems=null,this.beforeSetDimensions(),this.setDimensions(),this.afterSetDimensions(),this._maxLength=this.isHorizontal()?this.width+i.left+i.right:this.height+i.top+i.bottom,this._dataLimitsCached||(this.beforeDataLimits(),this.determineDataLimits(),this.afterDataLimits(),this._range=br(this,o,n),this._dataLimitsCached=!0),this.beforeBuildTicks(),this.ticks=this.buildTicks()||[],this.afterBuildTicks();let l=a=o||i<=1||!this.isHorizontal()){this.labelRotation=n;return}let h=this._getLabelSizes(),u=h.widest.width,d=h.highest.height,f=K(this.chart.width-u,0,this.maxWidth);a=t.offset?this.maxWidth/i:f/(i-1),u+6>a&&(a=f/(i-(t.offset?.5:1)),l=this.maxHeight-ws(t.grid)-e.padding-Zr(t.title,this.chart.options.font),c=Math.sqrt(u*u+d*d),r=si(Math.min(Math.asin(K((h.highest.height+6)/a,-1,1)),Math.asin(K(l/c,-1,1))-Math.asin(K(d/c,-1,1)))),r=Math.max(n,Math.min(o,r))),this.labelRotation=r}afterCalculateLabelRotation(){W(this.options.afterCalculateLabelRotation,[this])}afterAutoSkip(){}beforeFit(){W(this.options.beforeFit,[this])}fit(){let t={width:0,height:0},{chart:e,options:{ticks:i,title:n,grid:o}}=this,r=this._isVisible(),a=this.isHorizontal();if(r){let l=Zr(n,e.options.font);if(a?(t.width=this.maxWidth,t.height=ws(o)+l):(t.height=this.maxHeight,t.width=ws(o)+l),i.display&&this.ticks.length){let{first:c,last:h,widest:u,highest:d}=this._getLabelSizes(),f=i.padding*2,g=bt(this.labelRotation),m=Math.cos(g),p=Math.sin(g);if(a){let b=i.mirror?0:p*u.width+m*d.height;t.height=Math.min(this.maxHeight,t.height+b+f)}else{let b=i.mirror?0:m*u.width+p*d.height;t.width=Math.min(this.maxWidth,t.width+b+f)}this._calculatePadding(c,h,p,m)}}this._handleMargins(),a?(this.width=this._length=e.width-this._margins.left-this._margins.right,this.height=t.height):(this.width=t.width,this.height=this._length=e.height-this._margins.top-this._margins.bottom)}_calculatePadding(t,e,i,n){let{ticks:{align:o,padding:r},position:a}=this.options,l=this.labelRotation!==0,c=a!=="top"&&this.axis==="x";if(this.isHorizontal()){let h=this.getPixelForTick(0)-this.left,u=this.right-this.getPixelForTick(this.ticks.length-1),d=0,f=0;l?c?(d=n*t.width,f=i*e.height):(d=i*t.height,f=n*e.width):o==="start"?f=e.width:o==="end"?d=t.width:o!=="inner"&&(d=t.width/2,f=e.width/2),this.paddingLeft=Math.max((d-h+r)*this.width/(this.width-h),0),this.paddingRight=Math.max((f-u+r)*this.width/(this.width-u),0)}else{let h=e.height/2,u=t.height/2;o==="start"?(h=0,u=t.height):o==="end"&&(h=e.height,u=0),this.paddingTop=h+r,this.paddingBottom=u+r}}_handleMargins(){this._margins&&(this._margins.left=Math.max(this.paddingLeft,this._margins.left),this._margins.top=Math.max(this.paddingTop,this._margins.top),this._margins.right=Math.max(this.paddingRight,this._margins.right),this._margins.bottom=Math.max(this.paddingBottom,this._margins.bottom))}afterFit(){W(this.options.afterFit,[this])}isHorizontal(){let{axis:t,position:e}=this.options;return e==="top"||e==="bottom"||t==="x"}isFullSize(){return this.options.fullSize}_convertTicksToLabels(t){this.beforeTickToLabelConversion(),this.generateTickLabels(t);let e,i;for(e=0,i=t.length;e({width:r[T]||0,height:a[T]||0});return{first:M(0),last:M(e-1),widest:M(k),highest:M(S),widths:r,heights:a}}getLabelForValue(t){return t}getPixelForValue(t,e){return NaN}getValueForPixel(t){}getPixelForTick(t){let e=this.ticks;return t<0||t>e.length-1?null:this.getPixelForValue(e[t].value)}getPixelForDecimal(t){this._reversePixels&&(t=1-t);let e=this._startPixel+t*this._length;return rr(this._alignToPixels?Kt(this.chart,e,0):e)}getDecimalForPixel(t){let e=(t-this._startPixel)/this._length;return this._reversePixels?1-e:e}getBasePixel(){return this.getPixelForValue(this.getBaseValue())}getBaseValue(){let{min:t,max:e}=this;return t<0&&e<0?e:t>0&&e>0?t:0}getContext(t){let e=this.ticks||[];if(t>=0&&ta*n?a/i:l/n:l*n0}_computeGridLineItems(t){let e=this.axis,i=this.chart,n=this.options,{grid:o,position:r,border:a}=n,l=o.offset,c=this.isHorizontal(),u=this.ticks.length+(l?1:0),d=ws(o),f=[],g=a.setContext(this.getContext()),m=g.display?g.width:0,p=m/2,b=function(U){return Kt(i,U,m)},y,_,w,x,k,S,M,T,C,A,L,et;if(r==="top")y=b(this.bottom),S=this.bottom-d,T=y-p,A=b(t.top)+p,et=t.bottom;else if(r==="bottom")y=b(this.top),A=t.top,et=b(t.bottom)-p,S=y+p,T=this.top+d;else if(r==="left")y=b(this.right),k=this.right-d,M=y-p,C=b(t.left)+p,L=t.right;else if(r==="right")y=b(this.left),C=t.left,L=b(t.right)-p,k=y+p,M=this.left+d;else if(e==="x"){if(r==="center")y=b((t.top+t.bottom)/2+.5);else if(E(r)){let U=Object.keys(r)[0],G=r[U];y=b(this.chart.scales[U].getPixelForValue(G))}A=t.top,et=t.bottom,S=y+p,T=S+d}else if(e==="y"){if(r==="center")y=b((t.left+t.right)/2);else if(E(r)){let U=Object.keys(r)[0],G=r[U];y=b(this.chart.scales[U].getPixelForValue(G))}k=y-p,M=k-d,C=t.left,L=t.right}let ht=P(n.ticks.maxTicksLimit,u),V=Math.max(1,Math.ceil(u/ht));for(_=0;_0&&(ce-=le/2);break}js={left:ce,top:ls,width:le+Te.width,height:as+Te.height,color:V.backdropColor}}p.push({label:w,font:T,textOffset:L,options:{rotation:m,color:G,strokeColor:vt,strokeWidth:ot,textAlign:Oe,textBaseline:et,translation:[x,k],backdrop:js}})}return p}_getXAxisLabelAlignment(){let{position:t,ticks:e}=this.options;if(-bt(this.labelRotation))return t==="top"?"left":"right";let n="center";return e.align==="start"?n="left":e.align==="end"?n="right":e.align==="inner"&&(n="inner"),n}_getYAxisLabelAlignment(t){let{position:e,ticks:{crossAlign:i,mirror:n,padding:o}}=this.options,r=this._getLabelSizes(),a=t+o,l=r.widest.width,c,h;return e==="left"?n?(h=this.right+o,i==="near"?c="left":i==="center"?(c="center",h+=l/2):(c="right",h+=l)):(h=this.right-a,i==="near"?c="right":i==="center"?(c="center",h-=l/2):(c="left",h=this.left)):e==="right"?n?(h=this.left+o,i==="near"?c="right":i==="center"?(c="center",h-=l/2):(c="left",h-=l)):(h=this.left+a,i==="near"?c="left":i==="center"?(c="center",h+=l/2):(c="right",h=this.right)):c="right",{textAlign:c,x:h}}_computeLabelArea(){if(this.options.ticks.mirror)return;let t=this.chart,e=this.options.position;if(e==="left"||e==="right")return{top:0,left:this.left,bottom:t.height,right:this.right};if(e==="top"||e==="bottom")return{top:this.top,left:0,bottom:this.bottom,right:t.width}}drawBackground(){let{ctx:t,options:{backgroundColor:e},left:i,top:n,width:o,height:r}=this;e&&(t.save(),t.fillStyle=e,t.fillRect(i,n,o,r),t.restore())}getLineWidthForValue(t){let e=this.options.grid;if(!this._isVisible()||!e.display)return 0;let n=this.ticks.findIndex(o=>o.value===t);return n>=0?e.setContext(this.getContext(n)).lineWidth:0}drawGrid(t){let e=this.options.grid,i=this.ctx,n=this._gridLineItems||(this._gridLineItems=this._computeGridLineItems(t)),o,r,a=(l,c,h)=>{!h.width||!h.color||(i.save(),i.lineWidth=h.width,i.strokeStyle=h.color,i.setLineDash(h.borderDash||[]),i.lineDashOffset=h.borderDashOffset,i.beginPath(),i.moveTo(l.x,l.y),i.lineTo(c.x,c.y),i.stroke(),i.restore())};if(e.display)for(o=0,r=n.length;o{this.draw(o)}}]:[{z:i,draw:o=>{this.drawBackground(),this.drawGrid(o),this.drawTitle()}},{z:n,draw:()=>{this.drawBorder()}},{z:e,draw:o=>{this.drawLabels(o)}}]}getMatchingVisibleMetas(t){let e=this.chart.getSortedVisibleDatasetMetas(),i=this.axis+"AxisID",n=[],o,r;for(o=0,r=e.length;o{let i=e.split("."),n=i.pop(),o=[s].concat(i).join("."),r=t[e].split("."),a=r.pop(),l=r.join(".");j.route(o,n,l,a)})}function td(s){return"id"in s&&"defaults"in s}var Un=class{constructor(){this.controllers=new Ze(ut,"datasets",!0),this.elements=new Ze(dt,"elements"),this.plugins=new Ze(Object,"plugins"),this.scales=new Ze(we,"scales"),this._typedRegistries=[this.controllers,this.scales,this.elements]}add(...t){this._each("register",t)}remove(...t){this._each("unregister",t)}addControllers(...t){this._each("register",t,this.controllers)}addElements(...t){this._each("register",t,this.elements)}addPlugins(...t){this._each("register",t,this.plugins)}addScales(...t){this._each("register",t,this.scales)}getController(t){return this._get(t,this.controllers,"controller")}getElement(t){return this._get(t,this.elements,"element")}getPlugin(t){return this._get(t,this.plugins,"plugin")}getScale(t){return this._get(t,this.scales,"scale")}removeControllers(...t){this._each("unregister",t,this.controllers)}removeElements(...t){this._each("unregister",t,this.elements)}removePlugins(...t){this._each("unregister",t,this.plugins)}removeScales(...t){this._each("unregister",t,this.scales)}_each(t,e,i){[...e].forEach(n=>{let o=i||this._getRegistryForType(n);i||o.isForType(n)||o===this.plugins&&n.id?this._exec(t,o,n):z(n,r=>{let a=i||this._getRegistryForType(r);this._exec(t,a,r)})})}_exec(t,e,i){let n=ei(t);W(i["before"+n],[],i),e[t](i),W(i["after"+n],[],i)}_getRegistryForType(t){for(let e=0;eo.filter(a=>!r.some(l=>a.plugin.id===l.plugin.id));this._notify(n(e,i),t,"stop"),this._notify(n(i,e),t,"start")}};function ed(s){let t={},e=[],i=Object.keys(Lt.plugins.items);for(let o=0;o1&&qr(s[0].toLowerCase());if(i)return i}throw new Error(`Cannot determine type of '${s}' axis. Please provide 'axis' or 'position' option.`)}function Gr(s,t,e){if(e[t+"AxisID"]===s)return{axis:t}}function ld(s,t){if(t.data&&t.data.datasets){let e=t.data.datasets.filter(i=>i.xAxisID===s||i.yAxisID===s);if(e.length)return Gr(s,"x",e[0])||Gr(s,"y",e[0])}return{}}function cd(s,t){let e=Jt[s.type]||{scales:{}},i=t.scales||{},n=Zn(s.type,t),o=Object.create(null);return Object.keys(i).forEach(r=>{let a=i[r];if(!E(a))return console.error(`Invalid scale configuration for scale: ${r}`);if(a._proxy)return console.warn(`Ignoring resolver passed as options for scale: ${r}`);let l=qn(r,a,ld(r,s),j.scales[a.type]),c=rd(l,n),h=e.scales||{};o[r]=Ie(Object.create(null),[{axis:l},a,h[l],h[c]])}),s.data.datasets.forEach(r=>{let a=r.type||s.type,l=r.indexAxis||Zn(a,t),h=(Jt[a]||{}).scales||{};Object.keys(h).forEach(u=>{let d=od(u,l),f=r[d+"AxisID"]||d;o[f]=o[f]||Object.create(null),Ie(o[f],[{axis:d},i[f],h[u]])})}),Object.keys(o).forEach(r=>{let a=o[r];Ie(a,[j.scales[a.type],j.scale])}),o}function La(s){let t=s.options||(s.options={});t.plugins=P(t.plugins,{}),t.scales=cd(s,t)}function Fa(s){return s=s||{},s.datasets=s.datasets||[],s.labels=s.labels||[],s}function hd(s){return s=s||{},s.data=Fa(s.data),La(s),s}var Xr=new Map,Ra=new Set;function gi(s,t){let e=Xr.get(s);return e||(e=t(),Xr.set(s,e),Ra.add(e)),e}var ks=(s,t,e)=>{let i=Wt(t,e);i!==void 0&&s.add(i)},Gn=class{constructor(t){this._config=hd(t),this._scopeCache=new Map,this._resolverCache=new Map}get platform(){return this._config.platform}get type(){return this._config.type}set type(t){this._config.type=t}get data(){return this._config.data}set data(t){this._config.data=Fa(t)}get options(){return this._config.options}set options(t){this._config.options=t}get plugins(){return this._config.plugins}update(){let t=this._config;this.clearCache(),La(t)}clearCache(){this._scopeCache.clear(),this._resolverCache.clear()}datasetScopeKeys(t){return gi(t,()=>[[`datasets.${t}`,""]])}datasetAnimationScopeKeys(t,e){return gi(`${t}.transition.${e}`,()=>[[`datasets.${t}.transitions.${e}`,`transitions.${e}`],[`datasets.${t}`,""]])}datasetElementScopeKeys(t,e){return gi(`${t}-${e}`,()=>[[`datasets.${t}.elements.${e}`,`datasets.${t}`,`elements.${e}`,""]])}pluginScopeKeys(t){let e=t.id,i=this.type;return gi(`${i}-plugin-${e}`,()=>[[`plugins.${e}`,...t.additionalOptionScopes||[]]])}_cachedScopes(t,e){let i=this._scopeCache,n=i.get(t);return(!n||e)&&(n=new Map,i.set(t,n)),n}getOptionScopes(t,e,i){let{options:n,type:o}=this,r=this._cachedScopes(t,i),a=r.get(e);if(a)return a;let l=new Set;e.forEach(h=>{t&&(l.add(t),h.forEach(u=>ks(l,t,u))),h.forEach(u=>ks(l,n,u)),h.forEach(u=>ks(l,Jt[o]||{},u)),h.forEach(u=>ks(l,j,u)),h.forEach(u=>ks(l,oi,u))});let c=Array.from(l);return c.length===0&&c.push(Object.create(null)),Ra.has(e)&&r.set(e,c),c}chartOptionScopes(){let{options:t,type:e}=this;return[t,Jt[e]||{},j.datasets[e]||{},{type:e},j,oi]}resolveNamedOptions(t,e,i,n=[""]){let o={$shared:!0},{resolver:r,subPrefixes:a}=Jr(this._resolverCache,t,n),l=r;if(dd(r,e)){o.$shared=!1,i=zt(i)?i():i;let c=this.createResolver(t,i,a);l=de(r,i,c)}for(let c of e)o[c]=l[c];return o}createResolver(t,e,i=[""],n){let{resolver:o}=Jr(this._resolverCache,t,i);return E(e)?de(o,e,void 0,n):o}};function Jr(s,t,e){let i=s.get(t);i||(i=new Map,s.set(t,i));let n=e.join(),o=i.get(n);return o||(o={resolver:li(t,e),subPrefixes:e.filter(a=>!a.toLowerCase().includes("hover"))},i.set(n,o)),o}var ud=s=>E(s)&&Object.getOwnPropertyNames(s).some(t=>zt(s[t]));function dd(s,t){let{isScriptable:e,isIndexable:i}=yn(s);for(let n of t){let o=e(n),r=i(n),a=(r||o)&&s[n];if(o&&(zt(a)||ud(a))||r&&H(a))return!0}return!1}var fd="4.5.1",gd=["top","bottom","left","right","chartArea"];function Kr(s,t){return s==="top"||s==="bottom"||gd.indexOf(s)===-1&&t==="x"}function Qr(s,t){return function(e,i){return e[s]===i[s]?e[t]-i[t]:e[s]-i[s]}}function ta(s){let t=s.chart,e=t.options.animation;t.notifyPlugins("afterRender"),W(e&&e.onComplete,[s],t)}function md(s){let t=s.chart,e=t.options.animation;W(e&&e.onProgress,[s],t)}function Na(s){return ci()&&typeof s=="string"?s=document.getElementById(s):s&&s.length&&(s=s[0]),s&&s.canvas&&(s=s.canvas),s}var xi={},ea=s=>{let t=Na(s);return Object.values(xi).filter(e=>e.canvas===t).pop()};function pd(s,t,e){let i=Object.keys(s);for(let n of i){let o=+n;if(o>=t){let r=s[n];delete s[n],(e>0||o>t)&&(s[o+e]=r)}}}function bd(s,t,e,i){return!e||s.type==="mouseout"?null:i?t:s}var yt=class{static register(...t){Lt.add(...t),sa()}static unregister(...t){Lt.remove(...t),sa()}constructor(t,e){let i=this.config=new Gn(e),n=Na(t),o=ea(n);if(o)throw new Error("Canvas is already in use. Chart with ID '"+o.id+"' must be destroyed before the canvas with ID '"+o.canvas.id+"' can be reused.");let r=i.createResolver(i.chartOptionScopes(),this.getContext());this.platform=new(i.platform||zu(n)),this.platform.updateConfig(i);let a=this.platform.acquireContext(n,r.aspectRatio),l=a&&a.canvas,c=l&&l.height,h=l&&l.width;if(this.id=tr(),this.ctx=a,this.canvas=l,this.width=h,this.height=c,this._options=r,this._aspectRatio=this.aspectRatio,this._layers=[],this._metasets=[],this._stacks=void 0,this.boxes=[],this.currentDevicePixelRatio=void 0,this.chartArea=void 0,this._active=[],this._lastEvent=void 0,this._listeners={},this._responsiveListeners=void 0,this._sortedMetasets=[],this.scales={},this._plugins=new Yn,this.$proxies={},this._hiddenIndices={},this.attached=!1,this._animationsDisabled=void 0,this.$context=void 0,this._doResize=ur(u=>this.update(u),r.resizeDelay||0),this._dataChanges=[],xi[this.id]=this,!a||!l){console.error("Failed to create chart: can't acquire context from the given item");return}Ht.listen(this,"complete",ta),Ht.listen(this,"progress",md),this._initialize(),this.attached&&this.update()}get aspectRatio(){let{options:{aspectRatio:t,maintainAspectRatio:e},width:i,height:n,_aspectRatio:o}=this;return I(t)?e&&o?o:n?i/n:null:t}get data(){return this.config.data}set data(t){this.config.data=t}get options(){return this._options}set options(t){this.config.options=t}get registry(){return Lt}_initialize(){return this.notifyPlugins("beforeInit"),this.options.responsive?this.resize():kn(this,this.options.devicePixelRatio),this.bindEvents(),this.notifyPlugins("afterInit"),this}clear(){return mn(this.canvas,this.ctx),this}stop(){return Ht.stop(this),this}resize(t,e){Ht.running(this)?this._resizeBeforeDraw={width:t,height:e}:this._resize(t,e)}_resize(t,e){let i=this.options,n=this.canvas,o=i.maintainAspectRatio&&this.aspectRatio,r=this.platform.getMaximumSize(n,t,e,o),a=i.devicePixelRatio||this.platform.getDevicePixelRatio(),l=this.width?"resize":"attach";this.width=r.width,this.height=r.height,this._aspectRatio=this.aspectRatio,kn(this,a,!0)&&(this.notifyPlugins("resize",{size:r}),W(i.onResize,[this,r],this),this.attached&&this._doResize(l)&&this.render())}ensureScalesHaveIDs(){let e=this.options.scales||{};z(e,(i,n)=>{i.id=n})}buildOrUpdateScales(){let t=this.options,e=t.scales,i=this.scales,n=Object.keys(i).reduce((r,a)=>(r[a]=!1,r),{}),o=[];e&&(o=o.concat(Object.keys(e).map(r=>{let a=e[r],l=qn(r,a),c=l==="r",h=l==="x";return{options:a,dposition:c?"chartArea":h?"bottom":"left",dtype:c?"radialLinear":h?"category":"linear"}}))),z(o,r=>{let a=r.options,l=a.id,c=qn(l,a),h=P(a.type,r.dtype);(a.position===void 0||Kr(a.position,c)!==Kr(r.dposition))&&(a.position=r.dposition),n[l]=!0;let u=null;if(l in i&&i[l].type===h)u=i[l];else{let d=Lt.getScale(h);u=new d({id:l,type:h,ctx:this.ctx,chart:this}),i[u.id]=u}u.init(a,t)}),z(n,(r,a)=>{r||delete i[a]}),z(i,r=>{rt.configure(this,r,r.options),rt.addBox(this,r)})}_updateMetasets(){let t=this._metasets,e=this.data.datasets.length,i=t.length;if(t.sort((n,o)=>n.index-o.index),i>e){for(let n=e;ne.length&&delete this._stacks,t.forEach((i,n)=>{e.filter(o=>o===i._dataset).length===0&&this._destroyDatasetMeta(n)})}buildOrUpdateControllers(){let t=[],e=this.data.datasets,i,n;for(this._removeUnreferencedMetasets(),i=0,n=e.length;i{this.getDatasetMeta(e).controller.reset()},this)}reset(){this._resetElements(),this.notifyPlugins("reset")}update(t){let e=this.config;e.update();let i=this._options=e.createResolver(e.chartOptionScopes(),this.getContext()),n=this._animationsDisabled=!i.animation;if(this._updateScales(),this._checkEventBindings(),this._updateHiddenIndices(),this._plugins.invalidate(),this.notifyPlugins("beforeUpdate",{mode:t,cancelable:!0})===!1)return;let o=this.buildOrUpdateControllers();this.notifyPlugins("beforeElementsUpdate");let r=0;for(let c=0,h=this.data.datasets.length;c{c.reset()}),this._updateDatasets(t),this.notifyPlugins("afterUpdate",{mode:t}),this._layers.sort(Qr("z","_idx"));let{_active:a,_lastEvent:l}=this;l?this._eventHandler(l,!0):a.length&&this._updateHoverStyles(a,a,!0),this.render()}_updateScales(){z(this.scales,t=>{rt.removeBox(this,t)}),this.ensureScalesHaveIDs(),this.buildOrUpdateScales()}_checkEventBindings(){let t=this.options,e=new Set(Object.keys(this._listeners)),i=new Set(t.events);(!en(e,i)||!!this._responsiveListeners!==t.responsive)&&(this.unbindEvents(),this.bindEvents())}_updateHiddenIndices(){let{_hiddenIndices:t}=this,e=this._getUniformDataChanges()||[];for(let{method:i,start:n,count:o}of e){let r=i==="_removeElements"?-o:o;pd(t,n,r)}}_getUniformDataChanges(){let t=this._dataChanges;if(!t||!t.length)return;this._dataChanges=[];let e=this.data.datasets.length,i=o=>new Set(t.filter(r=>r[0]===o).map((r,a)=>a+","+r.splice(1).join(","))),n=i(0);for(let o=1;oo.split(",")).map(o=>({method:o[1],start:+o[2],count:+o[3]}))}_updateLayout(t){if(this.notifyPlugins("beforeLayout",{cancelable:!0})===!1)return;rt.update(this,this.width,this.height,t);let e=this.chartArea,i=e.width<=0||e.height<=0;this._layers=[],z(this.boxes,n=>{i&&n.position==="chartArea"||(n.configure&&n.configure(),this._layers.push(...n._layers()))},this),this._layers.forEach((n,o)=>{n._idx=o}),this.notifyPlugins("afterLayout")}_updateDatasets(t){if(this.notifyPlugins("beforeDatasetsUpdate",{mode:t,cancelable:!0})!==!1){for(let e=0,i=this.data.datasets.length;e=0;--e)this._drawDataset(t[e]);this.notifyPlugins("afterDatasetsDraw")}_drawDataset(t){let e=this.ctx,i={meta:t,index:t.index,cancelable:!0},n=Dn(this,t);this.notifyPlugins("beforeDatasetDraw",i)!==!1&&(n&&ps(e,n),t.controller.draw(),n&&bs(e),i.cancelable=!1,this.notifyPlugins("afterDatasetDraw",i))}isPointInArea(t){return Pt(t,this.chartArea,this._minPadding)}getElementsAtEventForMode(t,e,i,n){let o=xu.modes[e];return typeof o=="function"?o(this,t,i,n):[]}getDatasetMeta(t){let e=this.data.datasets[t],i=this._metasets,n=i.filter(o=>o&&o._dataset===e).pop();return n||(n={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null,order:e&&e.order||0,index:t,_dataset:e,_parsed:[],_sorted:!1},i.push(n)),n}getContext(){return this.$context||(this.$context=Bt(null,{chart:this,type:"chart"}))}getVisibleDatasetCount(){return this.getSortedVisibleDatasetMetas().length}isDatasetVisible(t){let e=this.data.datasets[t];if(!e)return!1;let i=this.getDatasetMeta(t);return typeof i.hidden=="boolean"?!i.hidden:!e.hidden}setDatasetVisibility(t,e){let i=this.getDatasetMeta(t);i.hidden=!e}toggleDataVisibility(t){this._hiddenIndices[t]=!this._hiddenIndices[t]}getDataVisibility(t){return!this._hiddenIndices[t]}_updateVisibility(t,e,i){let n=i?"show":"hide",o=this.getDatasetMeta(t),r=o.controller._resolveAnimations(void 0,n);Ee(e)?(o.data[e].hidden=!i,this.update()):(this.setDatasetVisibility(t,i),r.update(o,{visible:i}),this.update(a=>a.datasetIndex===t?n:void 0))}hide(t,e){this._updateVisibility(t,e,!1)}show(t,e){this._updateVisibility(t,e,!0)}_destroyDatasetMeta(t){let e=this._metasets[t];e&&e.controller&&e.controller._destroy(),delete this._metasets[t]}_stop(){let t,e;for(this.stop(),Ht.remove(this),t=0,e=this.data.datasets.length;t{e.addEventListener(this,o,r),t[o]=r},n=(o,r,a)=>{o.offsetX=r,o.offsetY=a,this._eventHandler(o)};z(this.options.events,o=>i(o,n))}bindResponsiveEvents(){this._responsiveListeners||(this._responsiveListeners={});let t=this._responsiveListeners,e=this.platform,i=(l,c)=>{e.addEventListener(this,l,c),t[l]=c},n=(l,c)=>{t[l]&&(e.removeEventListener(this,l,c),delete t[l])},o=(l,c)=>{this.canvas&&this.resize(l,c)},r,a=()=>{n("attach",a),this.attached=!0,this.resize(),i("resize",o),i("detach",r)};r=()=>{this.attached=!1,n("resize",o),this._stop(),this._resize(0,0),i("attach",a)},e.isAttached(this.canvas)?a():r()}unbindEvents(){z(this._listeners,(t,e)=>{this.platform.removeEventListener(this,e,t)}),this._listeners={},z(this._responsiveListeners,(t,e)=>{this.platform.removeEventListener(this,e,t)}),this._responsiveListeners=void 0}updateHoverStyle(t,e,i){let n=i?"set":"remove",o,r,a,l;for(e==="dataset"&&(o=this.getDatasetMeta(t[0].datasetIndex),o.controller["_"+n+"DatasetHoverStyle"]()),a=0,l=t.length;a{let a=this.getDatasetMeta(o);if(!a)throw new Error("No dataset found at index "+o);return{datasetIndex:o,element:a.data[r],index:r}});!gs(i,e)&&(this._active=i,this._lastEvent=null,this._updateHoverStyles(i,e))}notifyPlugins(t,e,i){return this._plugins.notify(this,t,e,i)}isPluginEnabled(t){return this._plugins._cache.filter(e=>e.plugin.id===t).length===1}_updateHoverStyles(t,e,i){let n=this.options.hover,o=(l,c)=>l.filter(h=>!c.some(u=>h.datasetIndex===u.datasetIndex&&h.index===u.index)),r=o(e,t),a=i?t:o(t,e);r.length&&this.updateHoverStyle(r,n.mode,!1),a.length&&n.mode&&this.updateHoverStyle(a,n.mode,!0)}_eventHandler(t,e){let i={event:t,replay:e,cancelable:!0,inChartArea:this.isPointInArea(t)},n=r=>(r.options.events||this.options.events).includes(t.native.type);if(this.notifyPlugins("beforeEvent",i,n)===!1)return;let o=this._handleEvent(t,e,i.inChartArea);return i.cancelable=!1,this.notifyPlugins("afterEvent",i,n),(o||i.changed)&&this.render(),this}_handleEvent(t,e,i){let{_active:n=[],options:o}=this,r=e,a=this._getActiveElements(t,n,i,r),l=ir(t),c=bd(t,this._lastEvent,i,l);i&&(this._lastEvent=null,W(o.onHover,[t,a,this],this),l&&W(o.onClick,[t,a,this],this));let h=!gs(a,n);return(h||e)&&(this._active=a,this._updateHoverStyles(a,n,e)),this._lastEvent=c,h}_getActiveElements(t,e,i,n){if(t.type==="mouseout")return[];if(!i)return e;let o=this.options.hover;return this.getElementsAtEventForMode(t,o.mode,o,n)}};v(yt,"defaults",j),v(yt,"instances",xi),v(yt,"overrides",Jt),v(yt,"registry",Lt),v(yt,"version",fd),v(yt,"getChart",ea);function sa(){return z(yt.instances,s=>s._plugins.invalidate())}function yd(s,t,e){let{startAngle:i,x:n,y:o,outerRadius:r,innerRadius:a,options:l}=t,{borderWidth:c,borderJoinStyle:h}=l,u=Math.min(c/r,st(i-e));if(s.beginPath(),s.arc(n,o,r-c/2,i+u/2,e-u/2),a>0){let d=Math.min(c/a,st(i-e));s.arc(n,o,a+c/2,e-d/2,i+d/2,!0)}else{let d=Math.min(c/2,r*st(i-e));if(h==="round")s.arc(n,o,d,e-F/2,i+F/2,!0);else if(h==="bevel"){let f=2*d*d,g=-f*Math.cos(e+F/2)+n,m=-f*Math.sin(e+F/2)+o,p=f*Math.cos(i+F/2)+n,b=f*Math.sin(i+F/2)+o;s.lineTo(g,m),s.lineTo(p,b)}}s.closePath(),s.moveTo(0,0),s.rect(0,0,s.canvas.width,s.canvas.height),s.clip("evenodd")}function xd(s,t,e){let{startAngle:i,pixelMargin:n,x:o,y:r,outerRadius:a,innerRadius:l}=t,c=n/a;s.beginPath(),s.arc(o,r,a,i-c,e+c),l>n?(c=n/l,s.arc(o,r,l,e+c,i-c,!0)):s.arc(o,r,n,e+q,i-q),s.closePath(),s.clip()}function _d(s){return ai(s,["outerStart","outerEnd","innerStart","innerEnd"])}function wd(s,t,e,i){let n=_d(s.options.borderRadius),o=(e-t)/2,r=Math.min(o,i*t/2),a=l=>{let c=(e-Math.min(o,l))*i/2;return K(l,0,Math.min(o,c))};return{outerStart:a(n.outerStart),outerEnd:a(n.outerEnd),innerStart:K(n.innerStart,0,r),innerEnd:K(n.innerEnd,0,r)}}function Ve(s,t,e,i){return{x:e+s*Math.cos(t),y:i+s*Math.sin(t)}}function vi(s,t,e,i,n,o){let{x:r,y:a,startAngle:l,pixelMargin:c,innerRadius:h}=t,u=Math.max(t.outerRadius+i+e-c,0),d=h>0?h+i+e+c:0,f=0,g=n-l;if(i){let V=h>0?h-i:0,U=u>0?u-i:0,G=(V+U)/2,vt=G!==0?g*G/(G+i):g;f=(g-vt)/2}let m=Math.max(.001,g*u-e/F)/u,p=(g-m)/2,b=l+p+f,y=n-p-f,{outerStart:_,outerEnd:w,innerStart:x,innerEnd:k}=wd(t,d,u,y-b),S=u-_,M=u-w,T=b+_/S,C=y-w/M,A=d+x,L=d+k,et=b+x/A,ht=y-k/L;if(s.beginPath(),o){let V=(T+C)/2;if(s.arc(r,a,u,T,V),s.arc(r,a,u,V,C),w>0){let ot=Ve(M,C,r,a);s.arc(ot.x,ot.y,w,C,y+q)}let U=Ve(L,y,r,a);if(s.lineTo(U.x,U.y),k>0){let ot=Ve(L,ht,r,a);s.arc(ot.x,ot.y,k,y+q,ht+Math.PI)}let G=(y-k/d+(b+x/d))/2;if(s.arc(r,a,d,y-k/d,G,!0),s.arc(r,a,d,G,b+x/d,!0),x>0){let ot=Ve(A,et,r,a);s.arc(ot.x,ot.y,x,et+Math.PI,b-q)}let vt=Ve(S,b,r,a);if(s.lineTo(vt.x,vt.y),_>0){let ot=Ve(S,T,r,a);s.arc(ot.x,ot.y,_,b-q,T)}}else{s.moveTo(r,a);let V=Math.cos(T)*u+r,U=Math.sin(T)*u+a;s.lineTo(V,U);let G=Math.cos(C)*u+r,vt=Math.sin(C)*u+a;s.lineTo(G,vt)}s.closePath()}function kd(s,t,e,i,n){let{fullCircles:o,startAngle:r,circumference:a}=t,l=t.endAngle;if(o){vi(s,t,e,i,l,n);for(let c=0;c=F&&f===0&&h!=="miter"&&yd(s,t,m),o||(vi(s,t,e,i,m,n),s.stroke())}var be=class extends dt{constructor(e){super();v(this,"circumference");v(this,"endAngle");v(this,"fullCircles");v(this,"innerRadius");v(this,"outerRadius");v(this,"pixelMargin");v(this,"startAngle");this.options=void 0,this.circumference=void 0,this.startAngle=void 0,this.endAngle=void 0,this.innerRadius=void 0,this.outerRadius=void 0,this.pixelMargin=0,this.fullCircles=0,e&&Object.assign(this,e)}inRange(e,i,n){let o=this.getProps(["x","y"],n),{angle:r,distance:a}=rn(o,{x:e,y:i}),{startAngle:l,endAngle:c,innerRadius:h,outerRadius:u,circumference:d}=this.getProps(["startAngle","endAngle","innerRadius","outerRadius","circumference"],n),f=(this.options.spacing+this.options.borderWidth)/2,g=P(d,c-l),m=Fe(r,l,c)&&l!==c,p=g>=$||m,b=It(a,h+f,u+f);return p&&b}getCenterPoint(e){let{x:i,y:n,startAngle:o,endAngle:r,innerRadius:a,outerRadius:l}=this.getProps(["x","y","startAngle","endAngle","innerRadius","outerRadius"],e),{offset:c,spacing:h}=this.options,u=(o+r)/2,d=(a+l+h+c)/2;return{x:i+Math.cos(u)*d,y:n+Math.sin(u)*d}}tooltipPosition(e){return this.getCenterPoint(e)}draw(e){let{options:i,circumference:n}=this,o=(i.offset||0)/4,r=(i.spacing||0)/2,a=i.circular;if(this.pixelMargin=i.borderAlign==="inner"?.33:0,this.fullCircles=n>$?Math.floor(n/$):0,n===0||this.innerRadius<0||this.outerRadius<0)return;e.save();let l=(this.startAngle+this.endAngle)/2;e.translate(Math.cos(l)*o,Math.sin(l)*o);let c=1-Math.sin(Math.min(F,n||0)),h=o*c;e.fillStyle=i.backgroundColor,e.strokeStyle=i.borderColor,kd(e,this,h,r,a),vd(e,this,h,r,a),e.restore()}};v(be,"id","arc"),v(be,"defaults",{borderAlign:"center",borderColor:"#fff",borderDash:[],borderDashOffset:0,borderJoinStyle:void 0,borderRadius:0,borderWidth:2,offset:0,spacing:0,angle:void 0,circular:!0,selfJoin:!1}),v(be,"defaultRoutes",{backgroundColor:"backgroundColor"}),v(be,"descriptors",{_scriptable:!0,_indexable:e=>e!=="borderDash"});function za(s,t,e=t){s.lineCap=P(e.borderCapStyle,t.borderCapStyle),s.setLineDash(P(e.borderDash,t.borderDash)),s.lineDashOffset=P(e.borderDashOffset,t.borderDashOffset),s.lineJoin=P(e.borderJoinStyle,t.borderJoinStyle),s.lineWidth=P(e.borderWidth,t.borderWidth),s.strokeStyle=P(e.borderColor,t.borderColor)}function Sd(s,t,e){s.lineTo(e.x,e.y)}function Md(s){return s.stepped?mr:s.tension||s.cubicInterpolationMode==="monotone"?pr:Sd}function Va(s,t,e={}){let i=s.length,{start:n=0,end:o=i-1}=e,{start:r,end:a}=t,l=Math.max(n,r),c=Math.min(o,a),h=na&&o>a;return{count:i,start:l,loop:t.loop,ilen:c(r+(c?a-w:w))%o,_=()=>{m!==p&&(s.lineTo(h,p),s.lineTo(h,m),s.lineTo(h,b))};for(l&&(f=n[y(0)],s.moveTo(f.x,f.y)),d=0;d<=a;++d){if(f=n[y(d)],f.skip)continue;let w=f.x,x=f.y,k=w|0;k===g?(xp&&(p=x),h=(u*h+w)/++u):(_(),s.lineTo(w,x),g=k,u=0,m=p=x),b=x}_()}function Xn(s){let t=s.options,e=t.borderDash&&t.borderDash.length;return!s._decimated&&!s._loop&&!t.tension&&t.cubicInterpolationMode!=="monotone"&&!t.stepped&&!e?Td:Od}function Dd(s){return s.stepped?Mr:s.tension||s.cubicInterpolationMode==="monotone"?Or:Gt}function Cd(s,t,e,i){let n=t._path;n||(n=t._path=new Path2D,t.path(n,e,i)&&n.closePath()),za(s,t.options),s.stroke(n)}function Pd(s,t,e,i){let{segments:n,options:o}=t,r=Xn(t);for(let a of n)za(s,o,a.style),s.beginPath(),r(s,t,a,{start:e,end:e+i-1})&&s.closePath(),s.stroke()}var Ad=typeof Path2D=="function";function Id(s,t,e,i){Ad&&!t.options.segment?Cd(s,t,e,i):Pd(s,t,e,i)}var Ft=class extends dt{constructor(t){super(),this.animated=!0,this.options=void 0,this._chart=void 0,this._loop=void 0,this._fullLoop=void 0,this._path=void 0,this._points=void 0,this._segments=void 0,this._decimated=!1,this._pointsUpdated=!1,this._datasetIndex=void 0,t&&Object.assign(this,t)}updateControlPoints(t,e){let i=this.options;if((i.tension||i.cubicInterpolationMode==="monotone")&&!i.stepped&&!this._pointsUpdated){let n=i.spanGaps?this._loop:this._fullLoop;kr(this._points,i,t,n,e),this._pointsUpdated=!0}}set points(t){this._points=t,delete this._segments,delete this._path,this._pointsUpdated=!1}get points(){return this._points}get segments(){return this._segments||(this._segments=Dr(this,this.options.segment))}first(){let t=this.segments,e=this.points;return t.length&&e[t[0].start]}last(){let t=this.segments,e=this.points,i=t.length;return i&&e[t[i-1].end]}interpolate(t,e){let i=this.options,n=t[e],o=this.points,r=Tn(this,{property:e,start:n,end:n});if(!r.length)return;let a=[],l=Dd(i),c,h;for(c=0,h=r.length;ct!=="borderDash"&&t!=="fill"});function ia(s,t,e,i){let n=s.options,{[e]:o}=s.getProps([e],i);return Math.abs(t-o)s.replace("rgb(","rgba(").replace(")",", 0.5)"));function Ba(s){return Jn[s%Jn.length]}function Ha(s){return na[s%na.length]}function Vd(s,t){return s.borderColor=Ba(t),s.backgroundColor=Ha(t),++t}function Wd(s,t){return s.backgroundColor=s.data.map(()=>Ba(t++)),t}function Bd(s,t){return s.backgroundColor=s.data.map(()=>Ha(t++)),t}function Hd(s){let t=0;return(e,i)=>{let n=s.getDatasetMeta(i).controller;n instanceof jt?t=Wd(e,t):n instanceof xe?t=Bd(e,t):n&&(t=Vd(e,t))}}function oa(s){let t;for(t in s)if(s[t].borderColor||s[t].backgroundColor)return!0;return!1}function $d(s){return s&&(s.borderColor||s.backgroundColor)}function jd(){return j.borderColor!=="rgba(0,0,0,0.1)"||j.backgroundColor!=="rgba(0,0,0,0.1)"}var Ud={id:"colors",defaults:{enabled:!0,forceOverride:!1},beforeLayout(s,t,e){if(!e.enabled)return;let{data:{datasets:i},options:n}=s.config,{elements:o}=n,r=oa(i)||$d(n)||o&&oa(o)||jd();if(!e.forceOverride&&r)return;let a=Hd(s);i.forEach(a)}};function Yd(s,t,e,i,n){let o=n.samples||i;if(o>=e)return s.slice(t,t+e);let r=[],a=(e-2)/(o-2),l=0,c=t+e-1,h=t,u,d,f,g,m;for(r[l++]=s[h],u=0;uf&&(f=g,d=s[y],m=y);r[l++]=d,h=m}return r[l++]=s[c],r}function Zd(s,t,e,i){let n=0,o=0,r,a,l,c,h,u,d,f,g,m,p=[],b=t+e-1,y=s[t].x,w=s[b].x-y;for(r=t;rm&&(m=c,d=r),n=(o*n+a.x)/++o;else{let k=r-1;if(!I(u)&&!I(d)){let S=Math.min(u,d),M=Math.max(u,d);S!==f&&S!==k&&p.push({...s[S],x:n}),M!==f&&M!==k&&p.push({...s[M],x:n})}r>0&&k!==f&&p.push(s[k]),p.push(a),h=x,o=0,g=m=c,u=d=f=r}}return p}function $a(s){if(s._decimated){let t=s._data;delete s._decimated,delete s._data,Object.defineProperty(s,"data",{configurable:!0,enumerable:!0,writable:!0,value:t})}}function ra(s){s.data.datasets.forEach(t=>{$a(t)})}function qd(s,t){let e=t.length,i=0,n,{iScale:o}=s,{min:r,max:a,minDefined:l,maxDefined:c}=o.getUserBounds();return l&&(i=K(Ct(t,o.axis,r).lo,0,e-1)),c?n=K(Ct(t,o.axis,a).hi+1,i,e)-i:n=e-i,{start:i,count:n}}var Gd={id:"decimation",defaults:{algorithm:"min-max",enabled:!1},beforeElementsUpdate:(s,t,e)=>{if(!e.enabled){ra(s);return}let i=s.width;s.data.datasets.forEach((n,o)=>{let{_data:r,indexAxis:a}=n,l=s.getDatasetMeta(o),c=r||n.data;if(ze([a,s.options.indexAxis])==="y"||!l.controller.supportsDecimation)return;let h=s.scales[l.xAxisID];if(h.type!=="linear"&&h.type!=="time"||s.options.parsing)return;let{start:u,count:d}=qd(l,c),f=e.threshold||4*i;if(d<=f){$a(n);return}I(r)&&(n._data=c,delete n.data,Object.defineProperty(n,"data",{configurable:!0,enumerable:!0,get:function(){return this._decimated},set:function(m){this._data=m}}));let g;switch(e.algorithm){case"lttb":g=Yd(c,u,d,i,e);break;case"min-max":g=Zd(c,u,d,i);break;default:throw new Error(`Unsupported decimation algorithm '${e.algorithm}'`)}n._decimated=g})},destroy(s){ra(s)}};function Xd(s,t,e){let i=s.segments,n=s.points,o=t.points,r=[];for(let a of i){let{start:l,end:c}=a;c=Oi(l,c,n);let h=Kn(e,n[l],n[c],a.loop);if(!t.segments){r.push({source:a,target:h,start:n[l],end:n[c]});continue}let u=Tn(t,h);for(let d of u){let f=Kn(e,o[d.start],o[d.end],d.loop),g=On(a,n,f);for(let m of g)r.push({source:m,target:d,start:{[e]:aa(h,f,"start",Math.max)},end:{[e]:aa(h,f,"end",Math.min)}})}}return r}function Kn(s,t,e,i){if(i)return;let n=t[s],o=e[s];return s==="angle"&&(n=st(n),o=st(o)),{property:s,start:n,end:o}}function Jd(s,t){let{x:e=null,y:i=null}=s||{},n=t.points,o=[];return t.segments.forEach(({start:r,end:a})=>{a=Oi(r,a,n);let l=n[r],c=n[a];i!==null?(o.push({x:l.x,y:i}),o.push({x:c.x,y:i})):e!==null&&(o.push({x:e,y:l.y}),o.push({x:e,y:c.y}))}),o}function Oi(s,t,e){for(;t>s;t--){let i=e[t];if(!isNaN(i.x)&&!isNaN(i.y))break}return t}function aa(s,t,e,i){return s&&t?i(s[e],t[e]):s?s[e]:t?t[e]:0}function ja(s,t){let e=[],i=!1;return H(s)?(i=!0,e=s):e=Jd(s,t),e.length?new Ft({points:e,options:{tension:0},_loop:i,_fullLoop:i}):null}function la(s){return s&&s.fill!==!1}function Kd(s,t,e){let n=s[t].fill,o=[t],r;if(!e)return n;for(;n!==!1&&o.indexOf(n)===-1;){if(!Z(n))return n;if(r=s[n],!r)return!1;if(r.visible)return n;o.push(n),n=r.fill}return!1}function Qd(s,t,e){let i=nf(s);if(E(i))return isNaN(i.value)?!1:i;let n=parseFloat(i);return Z(n)&&Math.floor(n)===n?tf(i[0],t,n,e):["origin","start","end","stack","shape"].indexOf(i)>=0&&i}function tf(s,t,e,i){return(s==="-"||s==="+")&&(e=t+e),e===t||e<0||e>=i?!1:e}function ef(s,t){let e=null;return s==="start"?e=t.bottom:s==="end"?e=t.top:E(s)?e=t.getPixelForValue(s.value):t.getBasePixel&&(e=t.getBasePixel()),e}function sf(s,t,e){let i;return s==="start"?i=e:s==="end"?i=t.options.reverse?t.min:t.max:E(s)?i=s.value:i=t.getBaseValue(),i}function nf(s){let t=s.options,e=t.fill,i=P(e&&e.target,e);return i===void 0&&(i=!!t.backgroundColor),i===!1||i===null?!1:i===!0?"origin":i}function of(s){let{scale:t,index:e,line:i}=s,n=[],o=i.segments,r=i.points,a=rf(t,e);a.push(ja({x:null,y:t.bottom},i));for(let l=0;l=0;--r){let a=n[r].$filler;a&&(a.line.updateControlPoints(o,a.axis),i&&a.fill&&zn(s.ctx,a,o))}},beforeDatasetsDraw(s,t,e){if(e.drawTime!=="beforeDatasetsDraw")return;let i=s.getSortedVisibleDatasetMetas();for(let n=i.length-1;n>=0;--n){let o=i[n].$filler;la(o)&&zn(s.ctx,o,s.chartArea)}},beforeDatasetDraw(s,t,e){let i=t.meta.$filler;!la(i)||e.drawTime!=="beforeDatasetDraw"||zn(s.ctx,i,s.chartArea)},defaults:{propagate:!0,drawTime:"beforeDatasetDraw"}},da=(s,t)=>{let{boxHeight:e=t,boxWidth:i=t}=s;return s.usePointStyle&&(e=Math.min(e,t),i=s.pointStyleWidth||Math.min(i,t)),{boxWidth:i,boxHeight:e,itemHeight:Math.max(t,e)}},bf=(s,t)=>s!==null&&t!==null&&s.datasetIndex===t.datasetIndex&&s.index===t.index,Mi=class extends dt{constructor(t){super(),this._added=!1,this.legendHitBoxes=[],this._hoveredItem=null,this.doughnutMode=!1,this.chart=t.chart,this.options=t.options,this.ctx=t.ctx,this.legendItems=void 0,this.columnSizes=void 0,this.lineWidths=void 0,this.maxHeight=void 0,this.maxWidth=void 0,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.height=void 0,this.width=void 0,this._margins=void 0,this.position=void 0,this.weight=void 0,this.fullSize=void 0}update(t,e,i){this.maxWidth=t,this.maxHeight=e,this._margins=i,this.setDimensions(),this.buildLabels(),this.fit()}setDimensions(){this.isHorizontal()?(this.width=this.maxWidth,this.left=this._margins.left,this.right=this.width):(this.height=this.maxHeight,this.top=this._margins.top,this.bottom=this.height)}buildLabels(){let t=this.options.labels||{},e=W(t.generateLabels,[this.chart],this)||[];t.filter&&(e=e.filter(i=>t.filter(i,this.chart.data))),t.sort&&(e=e.sort((i,n)=>t.sort(i,n,this.chart.data))),this.options.reverse&&e.reverse(),this.legendItems=e}fit(){let{options:t,ctx:e}=this;if(!t.display){this.width=this.height=0;return}let i=t.labels,n=X(i.font),o=n.size,r=this._computeTitleHeight(),{boxWidth:a,itemHeight:l}=da(i,o),c,h;e.font=n.string,this.isHorizontal()?(c=this.maxWidth,h=this._fitRows(r,o,a,l)+10):(h=this.maxHeight,c=this._fitCols(r,n,a,l)+10),this.width=Math.min(c,t.maxWidth||this.maxWidth),this.height=Math.min(h,t.maxHeight||this.maxHeight)}_fitRows(t,e,i,n){let{ctx:o,maxWidth:r,options:{labels:{padding:a}}}=this,l=this.legendHitBoxes=[],c=this.lineWidths=[0],h=n+a,u=t;o.textAlign="left",o.textBaseline="middle";let d=-1,f=-h;return this.legendItems.forEach((g,m)=>{let p=i+e/2+o.measureText(g.text).width;(m===0||c[c.length-1]+p+2*a>r)&&(u+=h,c[c.length-(m>0?0:1)]=0,f+=h,d++),l[m]={left:0,top:f,row:d,width:p,height:n},c[c.length-1]+=p+a}),u}_fitCols(t,e,i,n){let{ctx:o,maxHeight:r,options:{labels:{padding:a}}}=this,l=this.legendHitBoxes=[],c=this.columnSizes=[],h=r-t,u=a,d=0,f=0,g=0,m=0;return this.legendItems.forEach((p,b)=>{let{itemWidth:y,itemHeight:_}=yf(i,e,o,p,n);b>0&&f+_+2*a>h&&(u+=d+a,c.push({width:d,height:f}),g+=d+a,m++,d=f=0),l[b]={left:g,top:f,col:m,width:y,height:_},d=Math.max(d,y),f+=_+a}),u+=d,c.push({width:d,height:f}),u}adjustHitBoxes(){if(!this.options.display)return;let t=this._computeTitleHeight(),{legendHitBoxes:e,options:{align:i,labels:{padding:n},rtl:o}}=this,r=ge(o,this.left,this.width);if(this.isHorizontal()){let a=0,l=it(i,this.left+n,this.right-this.lineWidths[a]);for(let c of e)a!==c.row&&(a=c.row,l=it(i,this.left+n,this.right-this.lineWidths[a])),c.top+=this.top+t+n,c.left=r.leftForLtr(r.x(l),c.width),l+=c.width+n}else{let a=0,l=it(i,this.top+t+n,this.bottom-this.columnSizes[a].height);for(let c of e)c.col!==a&&(a=c.col,l=it(i,this.top+t+n,this.bottom-this.columnSizes[a].height)),c.top=l,c.left+=this.left+n,c.left=r.leftForLtr(r.x(c.left),c.width),l+=c.height+n}}isHorizontal(){return this.options.position==="top"||this.options.position==="bottom"}draw(){if(this.options.display){let t=this.ctx;ps(t,this),this._draw(),bs(t)}}_draw(){let{options:t,columnSizes:e,lineWidths:i,ctx:n}=this,{align:o,labels:r}=t,a=j.color,l=ge(t.rtl,this.left,this.width),c=X(r.font),{padding:h}=r,u=c.size,d=u/2,f;this.drawTitle(),n.textAlign=l.textAlign("left"),n.textBaseline="middle",n.lineWidth=.5,n.font=c.string;let{boxWidth:g,boxHeight:m,itemHeight:p}=da(r,u),b=function(k,S,M){if(isNaN(g)||g<=0||isNaN(m)||m<0)return;n.save();let T=P(M.lineWidth,1);if(n.fillStyle=P(M.fillStyle,a),n.lineCap=P(M.lineCap,"butt"),n.lineDashOffset=P(M.lineDashOffset,0),n.lineJoin=P(M.lineJoin,"miter"),n.lineWidth=T,n.strokeStyle=P(M.strokeStyle,a),n.setLineDash(P(M.lineDash,[])),r.usePointStyle){let C={radius:m*Math.SQRT2/2,pointStyle:M.pointStyle,rotation:M.rotation,borderWidth:T},A=l.xPlus(k,g/2),L=S+d;pn(n,C,A,L,r.pointStyleWidth&&g)}else{let C=S+Math.max((u-m)/2,0),A=l.leftForLtr(k,g),L=te(M.borderRadius);n.beginPath(),Object.values(L).some(et=>et!==0)?Ne(n,{x:A,y:C,w:g,h:m,radius:L}):n.rect(A,C,g,m),n.fill(),T!==0&&n.stroke()}n.restore()},y=function(k,S,M){Qt(n,M.text,k,S+p/2,c,{strikethrough:M.hidden,textAlign:l.textAlign(M.textAlign)})},_=this.isHorizontal(),w=this._computeTitleHeight();_?f={x:it(o,this.left+h,this.right-i[0]),y:this.top+h+w,line:0}:f={x:this.left+h,y:it(o,this.top+w+h,this.bottom-e[0].height),line:0},Sn(this.ctx,t.textDirection);let x=p+h;this.legendItems.forEach((k,S)=>{n.strokeStyle=k.fontColor,n.fillStyle=k.fontColor;let M=n.measureText(k.text).width,T=l.textAlign(k.textAlign||(k.textAlign=r.textAlign)),C=g+d+M,A=f.x,L=f.y;l.setWidth(this.width),_?S>0&&A+C+h>this.right&&(L=f.y+=x,f.line++,A=f.x=it(o,this.left+h,this.right-i[f.line])):S>0&&L+x>this.bottom&&(A=f.x=A+e[f.line].width+h,f.line++,L=f.y=it(o,this.top+w+h,this.bottom-e[f.line].height));let et=l.x(A);if(b(et,L,k),A=dr(T,A+g+d,_?A+C:this.right,t.rtl),y(l.x(A),L,k),_)f.x+=C+h;else if(typeof k.text!="string"){let ht=c.lineHeight;f.y+=Ua(k,ht)+h}else f.y+=x}),Mn(this.ctx,t.textDirection)}drawTitle(){let t=this.options,e=t.title,i=X(e.font),n=nt(e.padding);if(!e.display)return;let o=ge(t.rtl,this.left,this.width),r=this.ctx,a=e.position,l=i.size/2,c=n.top+l,h,u=this.left,d=this.width;if(this.isHorizontal())d=Math.max(...this.lineWidths),h=this.top+c,u=it(t.align,u,this.right-d);else{let g=this.columnSizes.reduce((m,p)=>Math.max(m,p.height),0);h=c+it(t.align,this.top,this.bottom-g-t.labels.padding-this._computeTitleHeight())}let f=it(a,u,u+d);r.textAlign=o.textAlign(ni(a)),r.textBaseline="middle",r.strokeStyle=e.color,r.fillStyle=e.color,r.font=i.string,Qt(r,e.text,f,h,i)}_computeTitleHeight(){let t=this.options.title,e=X(t.font),i=nt(t.padding);return t.display?e.lineHeight+i.height:0}_getLegendItemAt(t,e){let i,n,o;if(It(t,this.left,this.right)&&It(e,this.top,this.bottom)){for(o=this.legendHitBoxes,i=0;io.length>r.length?o:r)),t+e.size/2+i.measureText(n).width}function _f(s,t,e){let i=s;return typeof t.text!="string"&&(i=Ua(t,e)),i}function Ua(s,t){let e=s.text?s.text.length:0;return t*e}function wf(s,t){return!!((s==="mousemove"||s==="mouseout")&&(t.onHover||t.onLeave)||t.onClick&&(s==="click"||s==="mouseup"))}var kf={id:"legend",_element:Mi,start(s,t,e){let i=s.legend=new Mi({ctx:s.ctx,options:e,chart:s});rt.configure(s,i,e),rt.addBox(s,i)},stop(s){rt.removeBox(s,s.legend),delete s.legend},beforeUpdate(s,t,e){let i=s.legend;rt.configure(s,i,e),i.options=e},afterUpdate(s){let t=s.legend;t.buildLabels(),t.adjustHitBoxes()},afterEvent(s,t){t.replay||s.legend.handleEvent(t.event)},defaults:{display:!0,position:"top",align:"center",fullSize:!0,reverse:!1,weight:1e3,onClick(s,t,e){let i=t.datasetIndex,n=e.chart;n.isDatasetVisible(i)?(n.hide(i),t.hidden=!0):(n.show(i),t.hidden=!1)},onHover:null,onLeave:null,labels:{color:s=>s.chart.options.color,boxWidth:40,padding:10,generateLabels(s){let t=s.data.datasets,{labels:{usePointStyle:e,pointStyle:i,textAlign:n,color:o,useBorderRadius:r,borderRadius:a}}=s.legend.options;return s._getSortedDatasetMetas().map(l=>{let c=l.controller.getStyle(e?0:void 0),h=nt(c.borderWidth);return{text:t[l.index].label,fillStyle:c.backgroundColor,fontColor:o,hidden:!l.visible,lineCap:c.borderCapStyle,lineDash:c.borderDash,lineDashOffset:c.borderDashOffset,lineJoin:c.borderJoinStyle,lineWidth:(h.width+h.height)/4,strokeStyle:c.borderColor,pointStyle:i||c.pointStyle,rotation:c.rotation,textAlign:n||c.textAlign,borderRadius:r&&(a||c.borderRadius),datasetIndex:l.index}},this)}},title:{color:s=>s.chart.options.color,display:!1,position:"center",text:""}},descriptors:{_scriptable:s=>!s.startsWith("on"),labels:{_scriptable:s=>!["generateLabels","filter","sort"].includes(s)}}},Is=class extends dt{constructor(t){super(),this.chart=t.chart,this.options=t.options,this.ctx=t.ctx,this._padding=void 0,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.width=void 0,this.height=void 0,this.position=void 0,this.weight=void 0,this.fullSize=void 0}update(t,e){let i=this.options;if(this.left=0,this.top=0,!i.display){this.width=this.height=this.right=this.bottom=0;return}this.width=this.right=t,this.height=this.bottom=e;let n=H(i.text)?i.text.length:1;this._padding=nt(i.padding);let o=n*X(i.font).lineHeight+this._padding.height;this.isHorizontal()?this.height=o:this.width=o}isHorizontal(){let t=this.options.position;return t==="top"||t==="bottom"}_drawArgs(t){let{top:e,left:i,bottom:n,right:o,options:r}=this,a=r.align,l=0,c,h,u;return this.isHorizontal()?(h=it(a,i,o),u=e+t,c=o-i):(r.position==="left"?(h=i+t,u=it(a,n,e),l=F*-.5):(h=o-t,u=it(a,e,n),l=F*.5),c=n-e),{titleX:h,titleY:u,maxWidth:c,rotation:l}}draw(){let t=this.ctx,e=this.options;if(!e.display)return;let i=X(e.font),o=i.lineHeight/2+this._padding.top,{titleX:r,titleY:a,maxWidth:l,rotation:c}=this._drawArgs(o);Qt(t,e.text,0,0,i,{color:e.color,maxWidth:l,rotation:c,textAlign:ni(e.align),textBaseline:"middle",translation:[r,a]})}};function vf(s,t){let e=new Is({ctx:s.ctx,options:t,chart:s});rt.configure(s,e,t),rt.addBox(s,e),s.titleBlock=e}var Sf={id:"title",_element:Is,start(s,t,e){vf(s,e)},stop(s){let t=s.titleBlock;rt.removeBox(s,t),delete s.titleBlock},beforeUpdate(s,t,e){let i=s.titleBlock;rt.configure(s,i,e),i.options=e},defaults:{align:"center",display:!1,font:{weight:"bold"},fullSize:!0,padding:10,position:"top",text:"",weight:2e3},defaultRoutes:{color:"color"},descriptors:{_scriptable:!0,_indexable:!1}},mi=new WeakMap,Mf={id:"subtitle",start(s,t,e){let i=new Is({ctx:s.ctx,options:e,chart:s});rt.configure(s,i,e),rt.addBox(s,i),mi.set(s,i)},stop(s){rt.removeBox(s,mi.get(s)),mi.delete(s)},beforeUpdate(s,t,e){let i=mi.get(s);rt.configure(s,i,e),i.options=e},defaults:{align:"center",display:!1,font:{weight:"normal"},fullSize:!0,padding:0,position:"top",text:"",weight:1500},defaultRoutes:{color:"color"},descriptors:{_scriptable:!0,_indexable:!1}},Ms={average(s){if(!s.length)return!1;let t,e,i=new Set,n=0,o=0;for(t=0,e=s.length;ta+l)/i.size,y:n/o}},nearest(s,t){if(!s.length)return!1;let e=t.x,i=t.y,n=Number.POSITIVE_INFINITY,o,r,a;for(o=0,r=s.length;o-1?s.split(` +`):s}function Of(s,t){let{element:e,datasetIndex:i,index:n}=t,o=s.getDatasetMeta(i).controller,{label:r,value:a}=o.getLabelAndValue(n);return{chart:s,label:r,parsed:o.getParsed(n),raw:s.data.datasets[i].data[n],formattedValue:a,dataset:o.getDataset(),dataIndex:n,datasetIndex:i,element:e}}function fa(s,t){let e=s.chart.ctx,{body:i,footer:n,title:o}=s,{boxWidth:r,boxHeight:a}=t,l=X(t.bodyFont),c=X(t.titleFont),h=X(t.footerFont),u=o.length,d=n.length,f=i.length,g=nt(t.padding),m=g.height,p=0,b=i.reduce((w,x)=>w+x.before.length+x.lines.length+x.after.length,0);if(b+=s.beforeBody.length+s.afterBody.length,u&&(m+=u*c.lineHeight+(u-1)*t.titleSpacing+t.titleMarginBottom),b){let w=t.displayColors?Math.max(a,l.lineHeight):l.lineHeight;m+=f*w+(b-f)*l.lineHeight+(b-1)*t.bodySpacing}d&&(m+=t.footerMarginTop+d*h.lineHeight+(d-1)*t.footerSpacing);let y=0,_=function(w){p=Math.max(p,e.measureText(w).width+y)};return e.save(),e.font=c.string,z(s.title,_),e.font=l.string,z(s.beforeBody.concat(s.afterBody),_),y=t.displayColors?r+2+t.boxPadding:0,z(i,w=>{z(w.before,_),z(w.lines,_),z(w.after,_)}),y=0,e.font=h.string,z(s.footer,_),e.restore(),p+=g.width,{width:p,height:m}}function Tf(s,t){let{y:e,height:i}=t;return es.height-i/2?"bottom":"center"}function Df(s,t,e,i){let{x:n,width:o}=i,r=e.caretSize+e.caretPadding;if(s==="left"&&n+o+r>t.width||s==="right"&&n-o-r<0)return!0}function Cf(s,t,e,i){let{x:n,width:o}=e,{width:r,chartArea:{left:a,right:l}}=s,c="center";return i==="center"?c=n<=(a+l)/2?"left":"right":n<=o/2?c="left":n>=r-o/2&&(c="right"),Df(c,s,t,e)&&(c="center"),c}function ga(s,t,e){let i=e.yAlign||t.yAlign||Tf(s,e);return{xAlign:e.xAlign||t.xAlign||Cf(s,t,e,i),yAlign:i}}function Pf(s,t){let{x:e,width:i}=s;return t==="right"?e-=i:t==="center"&&(e-=i/2),e}function Af(s,t,e){let{y:i,height:n}=s;return t==="top"?i+=e:t==="bottom"?i-=n+e:i-=n/2,i}function ma(s,t,e,i){let{caretSize:n,caretPadding:o,cornerRadius:r}=s,{xAlign:a,yAlign:l}=e,c=n+o,{topLeft:h,topRight:u,bottomLeft:d,bottomRight:f}=te(r),g=Pf(t,a),m=Af(t,l,c);return l==="center"?a==="left"?g+=c:a==="right"&&(g-=c):a==="left"?g-=Math.max(h,d)+n:a==="right"&&(g+=Math.max(u,f)+n),{x:K(g,0,i.width-t.width),y:K(m,0,i.height-t.height)}}function pi(s,t,e){let i=nt(e.padding);return t==="center"?s.x+s.width/2:t==="right"?s.x+s.width-i.right:s.x+i.left}function pa(s){return Et([],$t(s))}function If(s,t,e){return Bt(s,{tooltip:t,tooltipItems:e,type:"tooltip"})}function ba(s,t){let e=t&&t.dataset&&t.dataset.tooltip&&t.dataset.tooltip.callbacks;return e?s.override(e):s}var Ya={beforeTitle:At,title(s){if(s.length>0){let t=s[0],e=t.chart.data.labels,i=e?e.length:0;if(this&&this.options&&this.options.mode==="dataset")return t.dataset.label||"";if(t.label)return t.label;if(i>0&&t.dataIndex"u"?Ya[t].call(e,i):n}var Ps=class extends dt{constructor(t){super(),this.opacity=0,this._active=[],this._eventPosition=void 0,this._size=void 0,this._cachedAnimations=void 0,this._tooltipItems=[],this.$animations=void 0,this.$context=void 0,this.chart=t.chart,this.options=t.options,this.dataPoints=void 0,this.title=void 0,this.beforeBody=void 0,this.body=void 0,this.afterBody=void 0,this.footer=void 0,this.xAlign=void 0,this.yAlign=void 0,this.x=void 0,this.y=void 0,this.height=void 0,this.width=void 0,this.caretX=void 0,this.caretY=void 0,this.labelColors=void 0,this.labelPointStyles=void 0,this.labelTextColors=void 0}initialize(t){this.options=t,this._cachedAnimations=void 0,this.$context=void 0}_resolveAnimations(){let t=this._cachedAnimations;if(t)return t;let e=this.chart,i=this.options.setContext(this.getContext()),n=i.enabled&&e.options.animation&&i.animations,o=new _i(this.chart,n);return n._cacheable&&(this._cachedAnimations=Object.freeze(o)),o}getContext(){return this.$context||(this.$context=If(this.chart.getContext(),this,this._tooltipItems))}getTitle(t,e){let{callbacks:i}=e,n=lt(i,"beforeTitle",this,t),o=lt(i,"title",this,t),r=lt(i,"afterTitle",this,t),a=[];return a=Et(a,$t(n)),a=Et(a,$t(o)),a=Et(a,$t(r)),a}getBeforeBody(t,e){return pa(lt(e.callbacks,"beforeBody",this,t))}getBody(t,e){let{callbacks:i}=e,n=[];return z(t,o=>{let r={before:[],lines:[],after:[]},a=ba(i,o);Et(r.before,$t(lt(a,"beforeLabel",this,o))),Et(r.lines,lt(a,"label",this,o)),Et(r.after,$t(lt(a,"afterLabel",this,o))),n.push(r)}),n}getAfterBody(t,e){return pa(lt(e.callbacks,"afterBody",this,t))}getFooter(t,e){let{callbacks:i}=e,n=lt(i,"beforeFooter",this,t),o=lt(i,"footer",this,t),r=lt(i,"afterFooter",this,t),a=[];return a=Et(a,$t(n)),a=Et(a,$t(o)),a=Et(a,$t(r)),a}_createItems(t){let e=this._active,i=this.chart.data,n=[],o=[],r=[],a=[],l,c;for(l=0,c=e.length;lt.filter(h,u,d,i))),t.itemSort&&(a=a.sort((h,u)=>t.itemSort(h,u,i))),z(a,h=>{let u=ba(t.callbacks,h);n.push(lt(u,"labelColor",this,h)),o.push(lt(u,"labelPointStyle",this,h)),r.push(lt(u,"labelTextColor",this,h))}),this.labelColors=n,this.labelPointStyles=o,this.labelTextColors=r,this.dataPoints=a,a}update(t,e){let i=this.options.setContext(this.getContext()),n=this._active,o,r=[];if(!n.length)this.opacity!==0&&(o={opacity:0});else{let a=Ms[i.position].call(this,n,this._eventPosition);r=this._createItems(i),this.title=this.getTitle(r,i),this.beforeBody=this.getBeforeBody(r,i),this.body=this.getBody(r,i),this.afterBody=this.getAfterBody(r,i),this.footer=this.getFooter(r,i);let l=this._size=fa(this,i),c=Object.assign({},a,l),h=ga(this.chart,i,c),u=ma(i,c,h,this.chart);this.xAlign=h.xAlign,this.yAlign=h.yAlign,o={opacity:1,x:u.x,y:u.y,width:l.width,height:l.height,caretX:a.x,caretY:a.y}}this._tooltipItems=r,this.$context=void 0,o&&this._resolveAnimations().update(this,o),t&&i.external&&i.external.call(this,{chart:this.chart,tooltip:this,replay:e})}drawCaret(t,e,i,n){let o=this.getCaretPosition(t,i,n);e.lineTo(o.x1,o.y1),e.lineTo(o.x2,o.y2),e.lineTo(o.x3,o.y3)}getCaretPosition(t,e,i){let{xAlign:n,yAlign:o}=this,{caretSize:r,cornerRadius:a}=i,{topLeft:l,topRight:c,bottomLeft:h,bottomRight:u}=te(a),{x:d,y:f}=t,{width:g,height:m}=e,p,b,y,_,w,x;return o==="center"?(w=f+m/2,n==="left"?(p=d,b=p-r,_=w+r,x=w-r):(p=d+g,b=p+r,_=w-r,x=w+r),y=p):(n==="left"?b=d+Math.max(l,h)+r:n==="right"?b=d+g-Math.max(c,u)-r:b=this.caretX,o==="top"?(_=f,w=_-r,p=b-r,y=b+r):(_=f+m,w=_+r,p=b+r,y=b-r),x=_),{x1:p,x2:b,x3:y,y1:_,y2:w,y3:x}}drawTitle(t,e,i){let n=this.title,o=n.length,r,a,l;if(o){let c=ge(i.rtl,this.x,this.width);for(t.x=pi(this,i.titleAlign,i),e.textAlign=c.textAlign(i.titleAlign),e.textBaseline="middle",r=X(i.titleFont),a=i.titleSpacing,e.fillStyle=i.titleColor,e.font=r.string,l=0;ly!==0)?(t.beginPath(),t.fillStyle=o.multiKeyBackground,Ne(t,{x:m,y:g,w:c,h:l,radius:b}),t.fill(),t.stroke(),t.fillStyle=r.backgroundColor,t.beginPath(),Ne(t,{x:p,y:g+1,w:c-2,h:l-2,radius:b}),t.fill()):(t.fillStyle=o.multiKeyBackground,t.fillRect(m,g,c,l),t.strokeRect(m,g,c,l),t.fillStyle=r.backgroundColor,t.fillRect(p,g+1,c-2,l-2))}t.fillStyle=this.labelTextColors[i]}drawBody(t,e,i){let{body:n}=this,{bodySpacing:o,bodyAlign:r,displayColors:a,boxHeight:l,boxWidth:c,boxPadding:h}=i,u=X(i.bodyFont),d=u.lineHeight,f=0,g=ge(i.rtl,this.x,this.width),m=function(M){e.fillText(M,g.x(t.x+f),t.y+d/2),t.y+=d+o},p=g.textAlign(r),b,y,_,w,x,k,S;for(e.textAlign=r,e.textBaseline="middle",e.font=u.string,t.x=pi(this,p,i),e.fillStyle=i.bodyColor,z(this.beforeBody,m),f=a&&p!=="right"?r==="center"?c/2+h:c+2+h:0,w=0,k=n.length;w0&&e.stroke()}_updateAnimationTarget(t){let e=this.chart,i=this.$animations,n=i&&i.x,o=i&&i.y;if(n||o){let r=Ms[t.position].call(this,this._active,this._eventPosition);if(!r)return;let a=this._size=fa(this,t),l=Object.assign({},r,this._size),c=ga(e,t,l),h=ma(t,l,c,e);(n._to!==h.x||o._to!==h.y)&&(this.xAlign=c.xAlign,this.yAlign=c.yAlign,this.width=a.width,this.height=a.height,this.caretX=r.x,this.caretY=r.y,this._resolveAnimations().update(this,h))}}_willRender(){return!!this.opacity}draw(t){let e=this.options.setContext(this.getContext()),i=this.opacity;if(!i)return;this._updateAnimationTarget(e);let n={width:this.width,height:this.height},o={x:this.x,y:this.y};i=Math.abs(i)<.001?0:i;let r=nt(e.padding),a=this.title.length||this.beforeBody.length||this.body.length||this.afterBody.length||this.footer.length;e.enabled&&a&&(t.save(),t.globalAlpha=i,this.drawBackground(o,t,n,e),Sn(t,e.textDirection),o.y+=r.top,this.drawTitle(o,t,e),this.drawBody(o,t,e),this.drawFooter(o,t,e),Mn(t,e.textDirection),t.restore())}getActiveElements(){return this._active||[]}setActiveElements(t,e){let i=this._active,n=t.map(({datasetIndex:a,index:l})=>{let c=this.chart.getDatasetMeta(a);if(!c)throw new Error("Cannot find a dataset at index "+a);return{datasetIndex:a,element:c.data[l],index:l}}),o=!gs(i,n),r=this._positionChanged(n,e);(o||r)&&(this._active=n,this._eventPosition=e,this._ignoreReplayEvents=!0,this.update(!0))}handleEvent(t,e,i=!0){if(e&&this._ignoreReplayEvents)return!1;this._ignoreReplayEvents=!1;let n=this.options,o=this._active||[],r=this._getActiveElements(t,o,e,i),a=this._positionChanged(r,t),l=e||!gs(r,o)||a;return l&&(this._active=r,(n.enabled||n.external)&&(this._eventPosition={x:t.x,y:t.y},this.update(!0,e))),l}_getActiveElements(t,e,i,n){let o=this.options;if(t.type==="mouseout")return[];if(!n)return e.filter(a=>this.chart.data.datasets[a.datasetIndex]&&this.chart.getDatasetMeta(a.datasetIndex).controller.getParsed(a.index)!==void 0);let r=this.chart.getElementsAtEventForMode(t,o.mode,o,i);return o.reverse&&r.reverse(),r}_positionChanged(t,e){let{caretX:i,caretY:n,options:o}=this,r=Ms[o.position].call(this,t,e);return r!==!1&&(i!==r.x||n!==r.y)}};v(Ps,"positioners",Ms);var Ef={id:"tooltip",_element:Ps,positioners:Ms,afterInit(s,t,e){e&&(s.tooltip=new Ps({chart:s,options:e}))},beforeUpdate(s,t,e){s.tooltip&&s.tooltip.initialize(e)},reset(s,t,e){s.tooltip&&s.tooltip.initialize(e)},afterDraw(s){let t=s.tooltip;if(t&&t._willRender()){let e={tooltip:t};if(s.notifyPlugins("beforeTooltipDraw",{...e,cancelable:!0})===!1)return;t.draw(s.ctx),s.notifyPlugins("afterTooltipDraw",e)}},afterEvent(s,t){if(s.tooltip){let e=t.replay;s.tooltip.handleEvent(t.event,e,t.inChartArea)&&(t.changed=!0)}},defaults:{enabled:!0,external:null,position:"average",backgroundColor:"rgba(0,0,0,0.8)",titleColor:"#fff",titleFont:{weight:"bold"},titleSpacing:2,titleMarginBottom:6,titleAlign:"left",bodyColor:"#fff",bodySpacing:2,bodyFont:{},bodyAlign:"left",footerColor:"#fff",footerSpacing:2,footerMarginTop:6,footerFont:{weight:"bold"},footerAlign:"left",padding:6,caretPadding:2,caretSize:5,cornerRadius:6,boxHeight:(s,t)=>t.bodyFont.size,boxWidth:(s,t)=>t.bodyFont.size,multiKeyBackground:"#fff",displayColors:!0,boxPadding:0,borderColor:"rgba(0,0,0,0)",borderWidth:0,animation:{duration:400,easing:"easeOutQuart"},animations:{numbers:{type:"number",properties:["x","y","width","height","caretX","caretY"]},opacity:{easing:"linear",duration:200}},callbacks:Ya},defaultRoutes:{bodyFont:"font",footerFont:"font",titleFont:"font"},descriptors:{_scriptable:s=>s!=="filter"&&s!=="itemSort"&&s!=="external",_indexable:!1,callbacks:{_scriptable:!1,_indexable:!1},animation:{_fallback:!1},animations:{_fallback:"animation"}},additionalOptionScopes:["interaction"]},Lf=Object.freeze({__proto__:null,Colors:Ud,Decimation:Gd,Filler:pf,Legend:kf,SubTitle:Mf,Title:Sf,Tooltip:Ef}),Ff=(s,t,e,i)=>(typeof t=="string"?(e=s.push(t)-1,i.unshift({index:e,label:t})):isNaN(t)&&(e=null),e);function Rf(s,t,e,i){let n=s.indexOf(t);if(n===-1)return Ff(s,t,e,i);let o=s.lastIndexOf(t);return n!==o?e:n}var Nf=(s,t)=>s===null?null:K(Math.round(s),0,t);function ya(s){let t=this.getLabels();return s>=0&&se.length-1?null:this.getPixelForValue(e[t].value)}getValueForPixel(t){return Math.round(this._startValue+this.getDecimalForPixel(t)*this._valueRange)}getBasePixel(){return this.bottom}};v(Os,"id","category"),v(Os,"defaults",{ticks:{callback:ya}});function zf(s,t){let e=[],{bounds:n,step:o,min:r,max:a,precision:l,count:c,maxTicks:h,maxDigits:u,includeBounds:d}=s,f=o||1,g=h-1,{min:m,max:p}=t,b=!I(r),y=!I(a),_=!I(c),w=(p-m)/(u+1),x=sn((p-m)/g/f)*f,k,S,M,T;if(x<1e-14&&!b&&!y)return[{value:m},{value:p}];T=Math.ceil(p/x)-Math.floor(m/x),T>g&&(x=sn(T*x/g/f)*f),I(l)||(k=Math.pow(10,l),x=Math.ceil(x*k)/k),n==="ticks"?(S=Math.floor(m/x)*x,M=Math.ceil(p/x)*x):(S=m,M=p),b&&y&&o&&or((a-r)/o,x/1e3)?(T=Math.round(Math.min((a-r)/x,h)),x=(a-r)/T,S=r,M=a):_?(S=b?r:S,M=y?a:M,T=c-1,x=(M-S)/T):(T=(M-S)/x,Le(T,Math.round(T),x/1e3)?T=Math.round(T):T=Math.ceil(T));let C=Math.max(on(x),on(S));k=Math.pow(10,I(l)?C:l),S=Math.round(S*k)/k,M=Math.round(M*k)/k;let A=0;for(b&&(d&&S!==r?(e.push({value:r}),Sa)break;e.push({value:L})}return y&&d&&M!==a?e.length&&Le(e[e.length-1].value,a,xa(a,w,s))?e[e.length-1].value=a:e.push({value:a}):(!y||M===a)&&e.push({value:M}),e}function xa(s,t,{horizontal:e,minRotation:i}){let n=bt(i),o=(e?Math.sin(n):Math.cos(n))||.001,r=.75*t*(""+s).length;return Math.min(t/o,r)}var qe=class extends we{constructor(t){super(t),this.start=void 0,this.end=void 0,this._startValue=void 0,this._endValue=void 0,this._valueRange=0}parse(t,e){return I(t)||(typeof t=="number"||t instanceof Number)&&!isFinite(+t)?null:+t}handleTickRangeOptions(){let{beginAtZero:t}=this.options,{minDefined:e,maxDefined:i}=this.getUserBounds(),{min:n,max:o}=this,r=l=>n=e?n:l,a=l=>o=i?o:l;if(t){let l=St(n),c=St(o);l<0&&c<0?a(0):l>0&&c>0&&r(0)}if(n===o){let l=o===0?1:Math.abs(o*.05);a(o+l),t||r(n-l)}this.min=n,this.max=o}getTickLimit(){let t=this.options.ticks,{maxTicksLimit:e,stepSize:i}=t,n;return i?(n=Math.ceil(this.max/i)-Math.floor(this.min/i)+1,n>1e3&&(console.warn(`scales.${this.id}.ticks.stepSize: ${i} would result generating up to ${n} ticks. Limiting to 1000.`),n=1e3)):(n=this.computeTickLimit(),e=e||11),e&&(n=Math.min(e,n)),n}computeTickLimit(){return Number.POSITIVE_INFINITY}buildTicks(){let t=this.options,e=t.ticks,i=this.getTickLimit();i=Math.max(2,i);let n={maxTicks:i,bounds:t.bounds,min:t.min,max:t.max,precision:e.precision,step:e.stepSize,count:e.count,maxDigits:this._maxDigits(),horizontal:this.isHorizontal(),minRotation:e.minRotation||0,includeBounds:e.includeBounds!==!1},o=this._range||this,r=zf(n,o);return t.bounds==="ticks"&&nn(r,this,"value"),t.reverse?(r.reverse(),this.start=this.max,this.end=this.min):(this.start=this.min,this.end=this.max),r}configure(){let t=this.ticks,e=this.min,i=this.max;if(super.configure(),this.options.offset&&t.length){let n=(i-e)/Math.max(t.length-1,1)/2;e-=n,i+=n}this._startValue=e,this._endValue=i,this._valueRange=i-e}getLabelForValue(t){return Re(t,this.chart.options.locale,this.options.ticks.format)}},Ts=class extends qe{determineDataLimits(){let{min:t,max:e}=this.getMinMax(!0);this.min=Z(t)?t:0,this.max=Z(e)?e:1,this.handleTickRangeOptions()}computeTickLimit(){let t=this.isHorizontal(),e=t?this.width:this.height,i=bt(this.options.ticks.minRotation),n=(t?Math.sin(i):Math.cos(i))||.001,o=this._resolveTickFontOptions(0);return Math.ceil(e/Math.min(40,o.lineHeight/n))}getPixelForValue(t){return t===null?NaN:this.getPixelForDecimal((t-this._startValue)/this._valueRange)}getValueForPixel(t){return this._startValue+this.getDecimalForPixel(t)*this._valueRange}};v(Ts,"id","linear"),v(Ts,"defaults",{ticks:{callback:ms.formatters.numeric}});var Es=s=>Math.floor(Vt(s)),pe=(s,t)=>Math.pow(10,Es(s)+t);function _a(s){return s/Math.pow(10,Es(s))===1}function wa(s,t,e){let i=Math.pow(10,e),n=Math.floor(s/i);return Math.ceil(t/i)-n}function Vf(s,t){let e=t-s,i=Es(e);for(;wa(s,t,i)>10;)i++;for(;wa(s,t,i)<10;)i--;return Math.min(i,Es(s))}function Wf(s,{min:t,max:e}){t=at(s.min,t);let i=[],n=Es(t),o=Vf(t,e),r=o<0?Math.pow(10,Math.abs(o)):1,a=Math.pow(10,o),l=n>o?Math.pow(10,n):0,c=Math.round((t-l)*r)/r,h=Math.floor((t-l)/a/10)*a*10,u=Math.floor((c-h)/Math.pow(10,o)),d=at(s.min,Math.round((l+h+u*Math.pow(10,o))*r)/r);for(;d=10?u=u<15?15:20:u++,u>=20&&(o++,u=2,r=o>=0?1:r),d=Math.round((l+h+u*Math.pow(10,o))*r)/r;let f=at(s.max,d);return i.push({value:f,major:_a(f),significand:u}),i}var Ds=class extends we{constructor(t){super(t),this.start=void 0,this.end=void 0,this._startValue=void 0,this._valueRange=0}parse(t,e){let i=qe.prototype.parse.apply(this,[t,e]);if(i===0){this._zero=!0;return}return Z(i)&&i>0?i:null}determineDataLimits(){let{min:t,max:e}=this.getMinMax(!0);this.min=Z(t)?Math.max(0,t):null,this.max=Z(e)?Math.max(0,e):null,this.options.beginAtZero&&(this._zero=!0),this._zero&&this.min!==this._suggestedMin&&!Z(this._userMin)&&(this.min=t===pe(this.min,0)?pe(this.min,-1):pe(this.min,0)),this.handleTickRangeOptions()}handleTickRangeOptions(){let{minDefined:t,maxDefined:e}=this.getUserBounds(),i=this.min,n=this.max,o=a=>i=t?i:a,r=a=>n=e?n:a;i===n&&(i<=0?(o(1),r(10)):(o(pe(i,-1)),r(pe(n,1)))),i<=0&&o(pe(n,-1)),n<=0&&r(pe(i,1)),this.min=i,this.max=n}buildTicks(){let t=this.options,e={min:this._userMin,max:this._userMax},i=Wf(e,this);return t.bounds==="ticks"&&nn(i,this,"value"),t.reverse?(i.reverse(),this.start=this.max,this.end=this.min):(this.start=this.min,this.end=this.max),i}getLabelForValue(t){return t===void 0?"0":Re(t,this.chart.options.locale,this.options.ticks.format)}configure(){let t=this.min;super.configure(),this._startValue=Vt(t),this._valueRange=Vt(this.max)-Vt(t)}getPixelForValue(t){return(t===void 0||t===0)&&(t=this.min),t===null||isNaN(t)?NaN:this.getPixelForDecimal(t===this.min?0:(Vt(t)-this._startValue)/this._valueRange)}getValueForPixel(t){let e=this.getDecimalForPixel(t);return Math.pow(10,this._startValue+e*this._valueRange)}};v(Ds,"id","logarithmic"),v(Ds,"defaults",{ticks:{callback:ms.formatters.logarithmic,major:{enabled:!0}}});function Qn(s){let t=s.ticks;if(t.display&&s.display){let e=nt(t.backdropPadding);return P(t.font&&t.font.size,j.font.size)+e.height}return 0}function Bf(s,t,e){return e=H(e)?e:[e],{w:gr(s,t.string,e),h:e.length*t.lineHeight}}function ka(s,t,e,i,n){return s===i||s===n?{start:t-e/2,end:t+e/2}:sn?{start:t-e,end:t}:{start:t,end:t+e}}function Hf(s){let t={l:s.left+s._padding.left,r:s.right-s._padding.right,t:s.top+s._padding.top,b:s.bottom-s._padding.bottom},e=Object.assign({},t),i=[],n=[],o=s._pointLabels.length,r=s.options.pointLabels,a=r.centerPointLabels?F/o:0;for(let l=0;lt.r&&(a=(i.end-t.r)/o,s.r=Math.max(s.r,t.r+a)),n.startt.b&&(l=(n.end-t.b)/r,s.b=Math.max(s.b,t.b+l))}function jf(s,t,e){let i=s.drawingArea,{extra:n,additionalAngle:o,padding:r,size:a}=e,l=s.getPointPosition(t,i+n+r,o),c=Math.round(si(st(l.angle+q))),h=Gf(l.y,a.h,c),u=Zf(c),d=qf(l.x,a.w,u);return{visible:!0,x:l.x,y:h,textAlign:u,left:d,top:h,right:d+a.w,bottom:h+a.h}}function Uf(s,t){if(!t)return!0;let{left:e,top:i,right:n,bottom:o}=s;return!(Pt({x:e,y:i},t)||Pt({x:e,y:o},t)||Pt({x:n,y:i},t)||Pt({x:n,y:o},t))}function Yf(s,t,e){let i=[],n=s._pointLabels.length,o=s.options,{centerPointLabels:r,display:a}=o.pointLabels,l={extra:Qn(o)/2,additionalAngle:r?F/n:0},c;for(let h=0;h270||e<90)&&(s-=t),s}function Xf(s,t,e){let{left:i,top:n,right:o,bottom:r}=e,{backdropColor:a}=t;if(!I(a)){let l=te(t.borderRadius),c=nt(t.backdropPadding);s.fillStyle=a;let h=i-c.left,u=n-c.top,d=o-i+c.width,f=r-n+c.height;Object.values(l).some(g=>g!==0)?(s.beginPath(),Ne(s,{x:h,y:u,w:d,h:f,radius:l}),s.fill()):s.fillRect(h,u,d,f)}}function Jf(s,t){let{ctx:e,options:{pointLabels:i}}=s;for(let n=t-1;n>=0;n--){let o=s._pointLabelItems[n];if(!o.visible)continue;let r=i.setContext(s.getPointLabelContext(n));Xf(e,r,o);let a=X(r.font),{x:l,y:c,textAlign:h}=o;Qt(e,s._pointLabels[n],l,c+a.lineHeight/2,a,{color:r.color,textAlign:h,textBaseline:"middle"})}}function Za(s,t,e,i){let{ctx:n}=s;if(e)n.arc(s.xCenter,s.yCenter,t,0,$);else{let o=s.getPointPosition(0,t);n.moveTo(o.x,o.y);for(let r=1;r{let n=W(this.options.pointLabels.callback,[e,i],this);return n||n===0?n:""}).filter((e,i)=>this.chart.getDataVisibility(i))}fit(){let t=this.options;t.display&&t.pointLabels.display?Hf(this):this.setCenterPoint(0,0,0,0)}setCenterPoint(t,e,i,n){this.xCenter+=Math.floor((t-e)/2),this.yCenter+=Math.floor((i-n)/2),this.drawingArea-=Math.min(this.drawingArea/2,Math.max(t,e,i,n))}getIndexAngle(t){let e=$/(this._pointLabels.length||1),i=this.options.startAngle||0;return st(t*e+bt(i))}getDistanceFromCenterForValue(t){if(I(t))return NaN;let e=this.drawingArea/(this.max-this.min);return this.options.reverse?(this.max-t)*e:(t-this.min)*e}getValueForDistanceFromCenter(t){if(I(t))return NaN;let e=t/(this.drawingArea/(this.max-this.min));return this.options.reverse?this.max-e:this.min+e}getPointLabelContext(t){let e=this._pointLabels||[];if(t>=0&&t{if(u!==0||u===0&&this.min<0){l=this.getDistanceFromCenterForValue(h.value);let d=this.getContext(u),f=n.setContext(d),g=o.setContext(d);Kf(this,f,l,r,g)}}),i.display){for(t.save(),a=r-1;a>=0;a--){let h=i.setContext(this.getPointLabelContext(a)),{color:u,lineWidth:d}=h;!d||!u||(t.lineWidth=d,t.strokeStyle=u,t.setLineDash(h.borderDash),t.lineDashOffset=h.borderDashOffset,l=this.getDistanceFromCenterForValue(e.reverse?this.min:this.max),c=this.getPointPosition(a,l),t.beginPath(),t.moveTo(this.xCenter,this.yCenter),t.lineTo(c.x,c.y),t.stroke())}t.restore()}}drawBorder(){}drawLabels(){let t=this.ctx,e=this.options,i=e.ticks;if(!i.display)return;let n=this.getIndexAngle(0),o,r;t.save(),t.translate(this.xCenter,this.yCenter),t.rotate(n),t.textAlign="center",t.textBaseline="middle",this.ticks.forEach((a,l)=>{if(l===0&&this.min>=0&&!e.reverse)return;let c=i.setContext(this.getContext(l)),h=X(c.font);if(o=this.getDistanceFromCenterForValue(this.ticks[l].value),c.showLabelBackdrop){t.font=h.string,r=t.measureText(a.label).width,t.fillStyle=c.backdropColor;let u=nt(c.backdropPadding);t.fillRect(-r/2-u.left,-o-h.size/2-u.top,r+u.width,h.size+u.height)}Qt(t,a.label,0,-o,h,{color:c.color,strokeColor:c.textStrokeColor,strokeWidth:c.textStrokeWidth})}),t.restore()}drawTitle(){}};v(ye,"id","radialLinear"),v(ye,"defaults",{display:!0,animate:!0,position:"chartArea",angleLines:{display:!0,lineWidth:1,borderDash:[],borderDashOffset:0},grid:{circular:!1},startAngle:0,ticks:{showLabelBackdrop:!0,callback:ms.formatters.numeric},pointLabels:{backdropColor:void 0,backdropPadding:2,display:!0,font:{size:10},callback(t){return t},padding:5,centerPointLabels:!1}}),v(ye,"defaultRoutes",{"angleLines.color":"borderColor","pointLabels.color":"color","ticks.color":"color"}),v(ye,"descriptors",{angleLines:{_fallback:"grid"}});var Ti={millisecond:{common:!0,size:1,steps:1e3},second:{common:!0,size:1e3,steps:60},minute:{common:!0,size:6e4,steps:60},hour:{common:!0,size:36e5,steps:24},day:{common:!0,size:864e5,steps:30},week:{common:!1,size:6048e5,steps:4},month:{common:!0,size:2628e6,steps:12},quarter:{common:!1,size:7884e6,steps:4},year:{common:!0,size:3154e7}},ct=Object.keys(Ti);function va(s,t){return s-t}function Sa(s,t){if(I(t))return null;let e=s._adapter,{parser:i,round:n,isoWeekday:o}=s._parseOpts,r=t;return typeof i=="function"&&(r=i(r)),Z(r)||(r=typeof i=="string"?e.parse(r,i):e.parse(r)),r===null?null:(n&&(r=n==="week"&&(fe(o)||o===!0)?e.startOf(r,"isoWeek",o):e.startOf(r,n)),+r)}function Ma(s,t,e,i){let n=ct.length;for(let o=ct.indexOf(s);o=ct.indexOf(e);o--){let r=ct[o];if(Ti[r].common&&s._adapter.diff(n,i,r)>=t-1)return r}return ct[e?ct.indexOf(e):0]}function eg(s){for(let t=ct.indexOf(s)+1,e=ct.length;t=t?e[i]:e[n];s[o]=!0}}function sg(s,t,e,i){let n=s._adapter,o=+n.startOf(t[0].value,i),r=t[t.length-1].value,a,l;for(a=o;a<=r;a=+n.add(a,1,i))l=e[a],l>=0&&(t[l].major=!0);return t}function Ta(s,t,e){let i=[],n={},o=t.length,r,a;for(r=0;r+t.value))}initOffsets(t=[]){let e=0,i=0,n,o;this.options.offset&&t.length&&(n=this.getDecimalForValue(t[0]),t.length===1?e=1-n:e=(this.getDecimalForValue(t[1])-n)/2,o=this.getDecimalForValue(t[t.length-1]),t.length===1?i=o:i=(o-this.getDecimalForValue(t[t.length-2]))/2);let r=t.length<3?.5:.25;e=K(e,0,r),i=K(i,0,r),this._offsets={start:e,end:i,factor:1/(e+1+i)}}_generate(){let t=this._adapter,e=this.min,i=this.max,n=this.options,o=n.time,r=o.unit||Ma(o.minUnit,e,i,this._getLabelCapacity(e)),a=P(n.ticks.stepSize,1),l=r==="week"?o.isoWeekday:!1,c=fe(l)||l===!0,h={},u=e,d,f;if(c&&(u=+t.startOf(u,"isoWeek",l)),u=+t.startOf(u,c?"day":r),t.diff(i,e,r)>1e5*a)throw new Error(e+" and "+i+" are too far apart with stepSize of "+a+" "+r);let g=n.ticks.source==="data"&&this.getDataTimestamps();for(d=u,f=0;d+m)}getLabelForValue(t){let e=this._adapter,i=this.options.time;return i.tooltipFormat?e.format(t,i.tooltipFormat):e.format(t,i.displayFormats.datetime)}format(t,e){let n=this.options.time.displayFormats,o=this._unit,r=e||n[o];return this._adapter.format(t,r)}_tickFormatFunction(t,e,i,n){let o=this.options,r=o.ticks.callback;if(r)return W(r,[t,e,i],this);let a=o.time.displayFormats,l=this._unit,c=this._majorUnit,h=l&&a[l],u=c&&a[c],d=i[e],f=c&&u&&d&&d.major;return this._adapter.format(t,n||(f?u:h))}generateTickLabels(t){let e,i,n;for(e=0,i=t.length;e0?a:1}getDataTimestamps(){let t=this._cache.data||[],e,i;if(t.length)return t;let n=this.getMatchingVisibleMetas();if(this._normalized&&n.length)return this._cache.data=n[0].controller.getAllParsedValues(this);for(e=0,i=n.length;e=s[i].pos&&t<=s[n].pos&&({lo:i,hi:n}=Ct(s,"pos",t)),{pos:o,time:a}=s[i],{pos:r,time:l}=s[n]):(t>=s[i].time&&t<=s[n].time&&({lo:i,hi:n}=Ct(s,"time",t)),{time:o,pos:a}=s[i],{time:r,pos:l}=s[n]);let c=r-o;return c?a+(l-a)*(t-o)/c:a}var Cs=class extends _e{constructor(t){super(t),this._table=[],this._minPos=void 0,this._tableRange=void 0}initOffsets(){let t=this._getTimestampsForTable(),e=this._table=this.buildLookupTable(t);this._minPos=bi(e,this.min),this._tableRange=bi(e,this.max)-this._minPos,super.initOffsets(t)}buildLookupTable(t){let{min:e,max:i}=this,n=[],o=[],r,a,l,c,h;for(r=0,a=t.length;r=e&&c<=i&&n.push(c);if(n.length<2)return[{time:e,pos:0},{time:i,pos:1}];for(r=0,a=n.length;rn-o)}_getTimestampsForTable(){let t=this._cache.all||[];if(t.length)return t;let e=this.getDataTimestamps(),i=this.getLabelTimestamps();return e.length&&i.length?t=this.normalize(e.concat(i)):t=e.length?e:i,t=this._cache.all=t,t}getDecimalForValue(t){return(bi(this._table,t)-this._minPos)/this._tableRange}getValueForPixel(t){let e=this._offsets,i=this.getDecimalForPixel(t)/e.factor-e.end;return bi(this._table,i*this._tableRange+this._minPos,!0)}};v(Cs,"id","timeseries"),v(Cs,"defaults",_e.defaults);var ig=Object.freeze({__proto__:null,CategoryScale:Os,LinearScale:Ts,LogarithmicScale:Ds,RadialLinearScale:ye,TimeScale:_e,TimeSeriesScale:Cs}),qa=[gu,zd,Lf,ig];yt.register(...qa);var Mt=yt;var Yt=class extends Error{},ho=class extends Yt{constructor(t){super(`Invalid DateTime: ${t.toMessage()}`)}},uo=class extends Yt{constructor(t){super(`Invalid Interval: ${t.toMessage()}`)}},fo=class extends Yt{constructor(t){super(`Invalid Duration: ${t.toMessage()}`)}},oe=class extends Yt{},Fi=class extends Yt{constructor(t){super(`Invalid unit ${t}`)}},Q=class extends Yt{},Rt=class extends Yt{constructor(){super("Zone is an abstract class")}},O="numeric",Dt="short",mt="long",Ri={year:O,month:O,day:O},Ml={year:O,month:Dt,day:O},ng={year:O,month:Dt,day:O,weekday:Dt},Ol={year:O,month:mt,day:O},Tl={year:O,month:mt,day:O,weekday:mt},Dl={hour:O,minute:O},Cl={hour:O,minute:O,second:O},Pl={hour:O,minute:O,second:O,timeZoneName:Dt},Al={hour:O,minute:O,second:O,timeZoneName:mt},Il={hour:O,minute:O,hourCycle:"h23"},El={hour:O,minute:O,second:O,hourCycle:"h23"},Ll={hour:O,minute:O,second:O,hourCycle:"h23",timeZoneName:Dt},Fl={hour:O,minute:O,second:O,hourCycle:"h23",timeZoneName:mt},Rl={year:O,month:O,day:O,hour:O,minute:O},Nl={year:O,month:O,day:O,hour:O,minute:O,second:O},zl={year:O,month:Dt,day:O,hour:O,minute:O},Vl={year:O,month:Dt,day:O,hour:O,minute:O,second:O},og={year:O,month:Dt,day:O,weekday:Dt,hour:O,minute:O},Wl={year:O,month:mt,day:O,hour:O,minute:O,timeZoneName:Dt},Bl={year:O,month:mt,day:O,hour:O,minute:O,second:O,timeZoneName:Dt},Hl={year:O,month:mt,day:O,weekday:mt,hour:O,minute:O,timeZoneName:mt},$l={year:O,month:mt,day:O,weekday:mt,hour:O,minute:O,second:O,timeZoneName:mt},Me=class{get type(){throw new Rt}get name(){throw new Rt}get ianaName(){return this.name}get isUniversal(){throw new Rt}offsetName(t,e){throw new Rt}formatOffset(t,e){throw new Rt}offset(t){throw new Rt}equals(t){throw new Rt}get isValid(){throw new Rt}},eo=null,Ni=class s extends Me{static get instance(){return eo===null&&(eo=new s),eo}get type(){return"system"}get name(){return new Intl.DateTimeFormat().resolvedOptions().timeZone}get isUniversal(){return!1}offsetName(t,{format:e,locale:i}){return tc(t,e,i)}formatOffset(t,e){return Vs(this.offset(t),e)}offset(t){return-new Date(t).getTimezoneOffset()}equals(t){return t.type==="system"}get isValid(){return!0}},go=new Map;function rg(s){let t=go.get(s);return t===void 0&&(t=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:s,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",era:"short"}),go.set(s,t)),t}var ag={year:0,month:1,day:2,era:3,hour:4,minute:5,second:6};function lg(s,t){let e=s.format(t).replace(/\u200E/g,""),i=/(\d+)\/(\d+)\/(\d+) (AD|BC),? (\d+):(\d+):(\d+)/.exec(e),[,n,o,r,a,l,c,h]=i;return[r,n,o,a,l,c,h]}function cg(s,t){let e=s.formatToParts(t),i=[];for(let n=0;n=0?g:1e3+g,(d-f)/(60*1e3)}equals(t){return t.type==="iana"&&t.name===this.name}get isValid(){return this.valid}},Ga={};function hg(s,t={}){let e=JSON.stringify([s,t]),i=Ga[e];return i||(i=new Intl.ListFormat(s,t),Ga[e]=i),i}var mo=new Map;function po(s,t={}){let e=JSON.stringify([s,t]),i=mo.get(e);return i===void 0&&(i=new Intl.DateTimeFormat(s,t),mo.set(e,i)),i}var bo=new Map;function ug(s,t={}){let e=JSON.stringify([s,t]),i=bo.get(e);return i===void 0&&(i=new Intl.NumberFormat(s,t),bo.set(e,i)),i}var yo=new Map;function dg(s,t={}){let{base:e,...i}=t,n=JSON.stringify([s,i]),o=yo.get(n);return o===void 0&&(o=new Intl.RelativeTimeFormat(s,t),yo.set(n,o)),o}var Rs=null;function fg(){return Rs||(Rs=new Intl.DateTimeFormat().resolvedOptions().locale,Rs)}var xo=new Map;function jl(s){let t=xo.get(s);return t===void 0&&(t=new Intl.DateTimeFormat(s).resolvedOptions(),xo.set(s,t)),t}var _o=new Map;function gg(s){let t=_o.get(s);if(!t){let e=new Intl.Locale(s);t="getWeekInfo"in e?e.getWeekInfo():e.weekInfo,"minimalDays"in t||(t={...Ul,...t}),_o.set(s,t)}return t}function mg(s){let t=s.indexOf("-x-");t!==-1&&(s=s.substring(0,t));let e=s.indexOf("-u-");if(e===-1)return[s];{let i,n;try{i=po(s).resolvedOptions(),n=s}catch{let l=s.substring(0,e);i=po(l).resolvedOptions(),n=l}let{numberingSystem:o,calendar:r}=i;return[n,o,r]}}function pg(s,t,e){return(e||t)&&(s.includes("-u-")||(s+="-u"),e&&(s+=`-ca-${e}`),t&&(s+=`-nu-${t}`)),s}function bg(s){let t=[];for(let e=1;e<=12;e++){let i=R.utc(2009,e,1);t.push(s(i))}return t}function yg(s){let t=[];for(let e=1;e<=7;e++){let i=R.utc(2016,11,13+e);t.push(s(i))}return t}function Di(s,t,e,i){let n=s.listingMode();return n==="error"?null:n==="en"?e(t):i(t)}function xg(s){return s.numberingSystem&&s.numberingSystem!=="latn"?!1:s.numberingSystem==="latn"||!s.locale||s.locale.startsWith("en")||jl(s.locale).numberingSystem==="latn"}var wo=class{constructor(t,e,i){this.padTo=i.padTo||0,this.floor=i.floor||!1;let{padTo:n,floor:o,...r}=i;if(!e||Object.keys(r).length>0){let a={useGrouping:!1,...i};i.padTo>0&&(a.minimumIntegerDigits=i.padTo),this.inf=ug(t,a)}}format(t){if(this.inf){let e=this.floor?Math.floor(t):t;return this.inf.format(e)}else{let e=this.floor?Math.floor(t):Eo(t,3);return J(e,this.padTo)}}},ko=class{constructor(t,e,i){this.opts=i,this.originalZone=void 0;let n;if(this.opts.timeZone)this.dt=t;else if(t.zone.type==="fixed"){let r=-1*(t.offset/60),a=r>=0?`Etc/GMT+${r}`:`Etc/GMT${r}`;t.offset!==0&&ae.create(a).valid?(n=a,this.dt=t):(n="UTC",this.dt=t.offset===0?t:t.setZone("UTC").plus({minutes:t.offset}),this.originalZone=t.zone)}else t.zone.type==="system"?this.dt=t:t.zone.type==="iana"?(this.dt=t,n=t.zone.name):(n="UTC",this.dt=t.setZone("UTC").plus({minutes:t.offset}),this.originalZone=t.zone);let o={...this.opts};o.timeZone=o.timeZone||n,this.dtf=po(e,o)}format(){return this.originalZone?this.formatToParts().map(({value:t})=>t).join(""):this.dtf.format(this.dt.toJSDate())}formatToParts(){let t=this.dtf.formatToParts(this.dt.toJSDate());return this.originalZone?t.map(e=>{if(e.type==="timeZoneName"){let i=this.originalZone.offsetName(this.dt.ts,{locale:this.dt.locale,format:this.opts.timeZoneName});return{...e,value:i}}else return e}):t}resolvedOptions(){return this.dtf.resolvedOptions()}},vo=class{constructor(t,e,i){this.opts={style:"long",...i},!e&&Kl()&&(this.rtf=dg(t,i))}format(t,e){return this.rtf?this.rtf.format(t,e):Wg(e,t,this.opts.numeric,this.opts.style!=="long")}formatToParts(t,e){return this.rtf?this.rtf.formatToParts(t,e):[]}},Ul={firstDay:1,minimalDays:4,weekend:[6,7]},B=class s{static fromOpts(t){return s.create(t.locale,t.numberingSystem,t.outputCalendar,t.weekSettings,t.defaultToEN)}static create(t,e,i,n,o=!1){let r=t||Y.defaultLocale,a=r||(o?"en-US":fg()),l=e||Y.defaultNumberingSystem,c=i||Y.defaultOutputCalendar,h=Oo(n)||Y.defaultWeekSettings;return new s(a,l,c,h,r)}static resetCache(){Rs=null,mo.clear(),bo.clear(),yo.clear(),xo.clear(),_o.clear()}static fromObject({locale:t,numberingSystem:e,outputCalendar:i,weekSettings:n}={}){return s.create(t,e,i,n)}constructor(t,e,i,n,o){let[r,a,l]=mg(t);this.locale=r,this.numberingSystem=e||a||null,this.outputCalendar=i||l||null,this.weekSettings=n,this.intl=pg(this.locale,this.numberingSystem,this.outputCalendar),this.weekdaysCache={format:{},standalone:{}},this.monthsCache={format:{},standalone:{}},this.meridiemCache=null,this.eraCache={},this.specifiedLocale=o,this.fastNumbersCached=null}get fastNumbers(){return this.fastNumbersCached==null&&(this.fastNumbersCached=xg(this)),this.fastNumbersCached}listingMode(){let t=this.isEnglish(),e=(this.numberingSystem===null||this.numberingSystem==="latn")&&(this.outputCalendar===null||this.outputCalendar==="gregory");return t&&e?"en":"intl"}clone(t){return!t||Object.getOwnPropertyNames(t).length===0?this:s.create(t.locale||this.specifiedLocale,t.numberingSystem||this.numberingSystem,t.outputCalendar||this.outputCalendar,Oo(t.weekSettings)||this.weekSettings,t.defaultToEN||!1)}redefaultToEN(t={}){return this.clone({...t,defaultToEN:!0})}redefaultToSystem(t={}){return this.clone({...t,defaultToEN:!1})}months(t,e=!1){return Di(this,t,ic,()=>{let i=this.intl==="ja"||this.intl.startsWith("ja-");e&=!i;let n=e?{month:t,day:"numeric"}:{month:t},o=e?"format":"standalone";if(!this.monthsCache[o][t]){let r=i?a=>this.dtFormatter(a,n).format():a=>this.extract(a,n,"month");this.monthsCache[o][t]=bg(r)}return this.monthsCache[o][t]})}weekdays(t,e=!1){return Di(this,t,rc,()=>{let i=e?{weekday:t,year:"numeric",month:"long",day:"numeric"}:{weekday:t},n=e?"format":"standalone";return this.weekdaysCache[n][t]||(this.weekdaysCache[n][t]=yg(o=>this.extract(o,i,"weekday"))),this.weekdaysCache[n][t]})}meridiems(){return Di(this,void 0,()=>ac,()=>{if(!this.meridiemCache){let t={hour:"numeric",hourCycle:"h12"};this.meridiemCache=[R.utc(2016,11,13,9),R.utc(2016,11,13,19)].map(e=>this.extract(e,t,"dayperiod"))}return this.meridiemCache})}eras(t){return Di(this,t,lc,()=>{let e={era:t};return this.eraCache[t]||(this.eraCache[t]=[R.utc(-40,1,1),R.utc(2017,1,1)].map(i=>this.extract(i,e,"era"))),this.eraCache[t]})}extract(t,e,i){let n=this.dtFormatter(t,e),o=n.formatToParts(),r=o.find(a=>a.type.toLowerCase()===i);return r?r.value:null}numberFormatter(t={}){return new wo(this.intl,t.forceSimple||this.fastNumbers,t)}dtFormatter(t,e={}){return new ko(t,this.intl,e)}relFormatter(t={}){return new vo(this.intl,this.isEnglish(),t)}listFormatter(t={}){return hg(this.intl,t)}isEnglish(){return this.locale==="en"||this.locale.toLowerCase()==="en-us"||jl(this.intl).locale.startsWith("en-us")}getWeekSettings(){return this.weekSettings?this.weekSettings:Ql()?gg(this.locale):Ul}getStartOfWeek(){return this.getWeekSettings().firstDay}getMinDaysInFirstWeek(){return this.getWeekSettings().minimalDays}getWeekendDays(){return this.getWeekSettings().weekend}equals(t){return this.locale===t.locale&&this.numberingSystem===t.numberingSystem&&this.outputCalendar===t.outputCalendar}toString(){return`Locale(${this.locale}, ${this.numberingSystem}, ${this.outputCalendar})`}},io=null,kt=class s extends Me{static get utcInstance(){return io===null&&(io=new s(0)),io}static instance(t){return t===0?s.utcInstance:new s(t)}static parseSpecifier(t){if(t){let e=t.match(/^utc(?:([+-]\d{1,2})(?::(\d{2}))?)?$/i);if(e)return new s(ji(e[1],e[2]))}return null}constructor(t){super(),this.fixed=t}get type(){return"fixed"}get name(){return this.fixed===0?"UTC":`UTC${Vs(this.fixed,"narrow")}`}get ianaName(){return this.fixed===0?"Etc/UTC":`Etc/GMT${Vs(-this.fixed,"narrow")}`}offsetName(){return this.name}formatOffset(t,e){return Vs(this.fixed,e)}get isUniversal(){return!0}offset(){return this.fixed}equals(t){return t.type==="fixed"&&t.fixed===this.fixed}get isValid(){return!0}},So=class extends Me{constructor(t){super(),this.zoneName=t}get type(){return"invalid"}get name(){return this.zoneName}get isUniversal(){return!1}offsetName(){return null}formatOffset(){return""}offset(){return NaN}equals(){return!1}get isValid(){return!1}};function ne(s,t){if(D(s)||s===null)return t;if(s instanceof Me)return s;if(Mg(s)){let e=s.toLowerCase();return e==="default"?t:e==="local"||e==="system"?Ni.instance:e==="utc"||e==="gmt"?kt.utcInstance:kt.parseSpecifier(e)||ae.create(s)}else return re(s)?kt.instance(s):typeof s=="object"&&"offset"in s&&typeof s.offset=="function"?s:new So(s)}var Co={arab:"[\u0660-\u0669]",arabext:"[\u06F0-\u06F9]",bali:"[\u1B50-\u1B59]",beng:"[\u09E6-\u09EF]",deva:"[\u0966-\u096F]",fullwide:"[\uFF10-\uFF19]",gujr:"[\u0AE6-\u0AEF]",hanidec:"[\u3007|\u4E00|\u4E8C|\u4E09|\u56DB|\u4E94|\u516D|\u4E03|\u516B|\u4E5D]",khmr:"[\u17E0-\u17E9]",knda:"[\u0CE6-\u0CEF]",laoo:"[\u0ED0-\u0ED9]",limb:"[\u1946-\u194F]",mlym:"[\u0D66-\u0D6F]",mong:"[\u1810-\u1819]",mymr:"[\u1040-\u1049]",orya:"[\u0B66-\u0B6F]",tamldec:"[\u0BE6-\u0BEF]",telu:"[\u0C66-\u0C6F]",thai:"[\u0E50-\u0E59]",tibt:"[\u0F20-\u0F29]",latn:"\\d"},Xa={arab:[1632,1641],arabext:[1776,1785],bali:[6992,7001],beng:[2534,2543],deva:[2406,2415],fullwide:[65296,65303],gujr:[2790,2799],khmr:[6112,6121],knda:[3302,3311],laoo:[3792,3801],limb:[6470,6479],mlym:[3430,3439],mong:[6160,6169],mymr:[4160,4169],orya:[2918,2927],tamldec:[3046,3055],telu:[3174,3183],thai:[3664,3673],tibt:[3872,3881]},_g=Co.hanidec.replace(/[\[|\]]/g,"").split("");function wg(s){let t=parseInt(s,10);if(isNaN(t)){t="";for(let e=0;e=o&&i<=r&&(t+=i-o)}}return parseInt(t,10)}else return t}var Mo=new Map;function kg(){Mo.clear()}function Ot({numberingSystem:s},t=""){let e=s||"latn",i=Mo.get(e);i===void 0&&(i=new Map,Mo.set(e,i));let n=i.get(t);return n===void 0&&(n=new RegExp(`${Co[e]}${t}`),i.set(t,n)),n}var Ja=()=>Date.now(),Ka="system",Qa=null,tl=null,el=null,sl=60,il,nl=null,Y=class{static get now(){return Ja}static set now(t){Ja=t}static set defaultZone(t){Ka=t}static get defaultZone(){return ne(Ka,Ni.instance)}static get defaultLocale(){return Qa}static set defaultLocale(t){Qa=t}static get defaultNumberingSystem(){return tl}static set defaultNumberingSystem(t){tl=t}static get defaultOutputCalendar(){return el}static set defaultOutputCalendar(t){el=t}static get defaultWeekSettings(){return nl}static set defaultWeekSettings(t){nl=Oo(t)}static get twoDigitCutoffYear(){return sl}static set twoDigitCutoffYear(t){sl=t%100}static get throwOnInvalid(){return il}static set throwOnInvalid(t){il=t}static resetCaches(){B.resetCache(),ae.resetCache(),R.resetCache(),kg()}},gt=class{constructor(t,e){this.reason=t,this.explanation=e}toMessage(){return this.explanation?`${this.reason}: ${this.explanation}`:this.reason}},Yl=[0,31,59,90,120,151,181,212,243,273,304,334],Zl=[0,31,60,91,121,152,182,213,244,274,305,335];function _t(s,t){return new gt("unit out of range",`you specified ${t} (of type ${typeof t}) as a ${s}, which is invalid`)}function Po(s,t,e){let i=new Date(Date.UTC(s,t-1,e));s<100&&s>=0&&i.setUTCFullYear(i.getUTCFullYear()-1900);let n=i.getUTCDay();return n===0?7:n}function ql(s,t,e){return e+(Bs(s)?Zl:Yl)[t-1]}function Gl(s,t){let e=Bs(s)?Zl:Yl,i=e.findIndex(o=>oWs(i,t,e)?(c=i+1,l=1):c=i,{weekYear:c,weekNumber:l,weekday:a,...Ui(s)}}function ol(s,t=4,e=1){let{weekYear:i,weekNumber:n,weekday:o}=s,r=Ao(Po(i,1,t),e),a=Qe(i),l=n*7+o-r-7+t,c;l<1?(c=i-1,l+=Qe(c)):l>a?(c=i+1,l-=Qe(i)):c=i;let{month:h,day:u}=Gl(c,l);return{year:c,month:h,day:u,...Ui(s)}}function no(s){let{year:t,month:e,day:i}=s,n=ql(t,e,i);return{year:t,ordinal:n,...Ui(s)}}function rl(s){let{year:t,ordinal:e}=s,{month:i,day:n}=Gl(t,e);return{year:t,month:i,day:n,...Ui(s)}}function al(s,t){if(!D(s.localWeekday)||!D(s.localWeekNumber)||!D(s.localWeekYear)){if(!D(s.weekday)||!D(s.weekNumber)||!D(s.weekYear))throw new oe("Cannot mix locale-based week fields with ISO-based week fields");return D(s.localWeekday)||(s.weekday=s.localWeekday),D(s.localWeekNumber)||(s.weekNumber=s.localWeekNumber),D(s.localWeekYear)||(s.weekYear=s.localWeekYear),delete s.localWeekday,delete s.localWeekNumber,delete s.localWeekYear,{minDaysInFirstWeek:t.getMinDaysInFirstWeek(),startOfWeek:t.getStartOfWeek()}}else return{minDaysInFirstWeek:4,startOfWeek:1}}function vg(s,t=4,e=1){let i=Hi(s.weekYear),n=wt(s.weekNumber,1,Ws(s.weekYear,t,e)),o=wt(s.weekday,1,7);return i?n?o?!1:_t("weekday",s.weekday):_t("week",s.weekNumber):_t("weekYear",s.weekYear)}function Sg(s){let t=Hi(s.year),e=wt(s.ordinal,1,Qe(s.year));return t?e?!1:_t("ordinal",s.ordinal):_t("year",s.year)}function Xl(s){let t=Hi(s.year),e=wt(s.month,1,12),i=wt(s.day,1,Vi(s.year,s.month));return t?e?i?!1:_t("day",s.day):_t("month",s.month):_t("year",s.year)}function Jl(s){let{hour:t,minute:e,second:i,millisecond:n}=s,o=wt(t,0,23)||t===24&&e===0&&i===0&&n===0,r=wt(e,0,59),a=wt(i,0,59),l=wt(n,0,999);return o?r?a?l?!1:_t("millisecond",n):_t("second",i):_t("minute",e):_t("hour",t)}function D(s){return typeof s>"u"}function re(s){return typeof s=="number"}function Hi(s){return typeof s=="number"&&s%1===0}function Mg(s){return typeof s=="string"}function Og(s){return Object.prototype.toString.call(s)==="[object Date]"}function Kl(){try{return typeof Intl<"u"&&!!Intl.RelativeTimeFormat}catch{return!1}}function Ql(){try{return typeof Intl<"u"&&!!Intl.Locale&&("weekInfo"in Intl.Locale.prototype||"getWeekInfo"in Intl.Locale.prototype)}catch{return!1}}function Tg(s){return Array.isArray(s)?s:[s]}function ll(s,t,e){if(s.length!==0)return s.reduce((i,n)=>{let o=[t(n),n];return i&&e(i[0],o[0])===i[0]?i:o},null)[1]}function Dg(s,t){return t.reduce((e,i)=>(e[i]=s[i],e),{})}function ss(s,t){return Object.prototype.hasOwnProperty.call(s,t)}function Oo(s){if(s==null)return null;if(typeof s!="object")throw new Q("Week settings must be an object");if(!wt(s.firstDay,1,7)||!wt(s.minimalDays,1,7)||!Array.isArray(s.weekend)||s.weekend.some(t=>!wt(t,1,7)))throw new Q("Invalid week settings");return{firstDay:s.firstDay,minimalDays:s.minimalDays,weekend:Array.from(s.weekend)}}function wt(s,t,e){return Hi(s)&&s>=t&&s<=e}function Cg(s,t){return s-t*Math.floor(s/t)}function J(s,t=2){let e=s<0,i;return e?i="-"+(""+-s).padStart(t,"0"):i=(""+s).padStart(t,"0"),i}function ie(s){if(!(D(s)||s===null||s===""))return parseInt(s,10)}function ke(s){if(!(D(s)||s===null||s===""))return parseFloat(s)}function Io(s){if(!(D(s)||s===null||s==="")){let t=parseFloat("0."+s)*1e3;return Math.floor(t)}}function Eo(s,t,e="round"){let i=10**t;switch(e){case"expand":return s>0?Math.ceil(s*i)/i:Math.floor(s*i)/i;case"trunc":return Math.trunc(s*i)/i;case"round":return Math.round(s*i)/i;case"floor":return Math.floor(s*i)/i;case"ceil":return Math.ceil(s*i)/i;default:throw new RangeError(`Value rounding ${e} is out of range`)}}function Bs(s){return s%4===0&&(s%100!==0||s%400===0)}function Qe(s){return Bs(s)?366:365}function Vi(s,t){let e=Cg(t-1,12)+1,i=s+(t-e)/12;return e===2?Bs(i)?29:28:[31,null,31,30,31,30,31,31,30,31,30,31][e-1]}function $i(s){let t=Date.UTC(s.year,s.month-1,s.day,s.hour,s.minute,s.second,s.millisecond);return s.year<100&&s.year>=0&&(t=new Date(t),t.setUTCFullYear(s.year,s.month-1,s.day)),+t}function cl(s,t,e){return-Ao(Po(s,1,t),e)+t-1}function Ws(s,t=4,e=1){let i=cl(s,t,e),n=cl(s+1,t,e);return(Qe(s)-i+n)/7}function To(s){return s>99?s:s>Y.twoDigitCutoffYear?1900+s:2e3+s}function tc(s,t,e,i=null){let n=new Date(s),o={hourCycle:"h23",year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"};i&&(o.timeZone=i);let r={timeZoneName:t,...o},a=new Intl.DateTimeFormat(e,r).formatToParts(n).find(l=>l.type.toLowerCase()==="timezonename");return a?a.value:null}function ji(s,t){let e=parseInt(s,10);Number.isNaN(e)&&(e=0);let i=parseInt(t,10)||0,n=e<0||Object.is(e,-0)?-i:i;return e*60+n}function ec(s){let t=Number(s);if(typeof s=="boolean"||s===""||!Number.isFinite(t))throw new Q(`Invalid unit value ${s}`);return t}function Wi(s,t){let e={};for(let i in s)if(ss(s,i)){let n=s[i];if(n==null)continue;e[t(i)]=ec(n)}return e}function Vs(s,t){let e=Math.trunc(Math.abs(s/60)),i=Math.trunc(Math.abs(s%60)),n=s>=0?"+":"-";switch(t){case"short":return`${n}${J(e,2)}:${J(i,2)}`;case"narrow":return`${n}${e}${i>0?`:${i}`:""}`;case"techie":return`${n}${J(e,2)}${J(i,2)}`;default:throw new RangeError(`Value format ${t} is out of range for property format`)}}function Ui(s){return Dg(s,["hour","minute","second","millisecond"])}var Pg=["January","February","March","April","May","June","July","August","September","October","November","December"],sc=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],Ag=["J","F","M","A","M","J","J","A","S","O","N","D"];function ic(s){switch(s){case"narrow":return[...Ag];case"short":return[...sc];case"long":return[...Pg];case"numeric":return["1","2","3","4","5","6","7","8","9","10","11","12"];case"2-digit":return["01","02","03","04","05","06","07","08","09","10","11","12"];default:return null}}var nc=["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],oc=["Mon","Tue","Wed","Thu","Fri","Sat","Sun"],Ig=["M","T","W","T","F","S","S"];function rc(s){switch(s){case"narrow":return[...Ig];case"short":return[...oc];case"long":return[...nc];case"numeric":return["1","2","3","4","5","6","7"];default:return null}}var ac=["AM","PM"],Eg=["Before Christ","Anno Domini"],Lg=["BC","AD"],Fg=["B","A"];function lc(s){switch(s){case"narrow":return[...Fg];case"short":return[...Lg];case"long":return[...Eg];default:return null}}function Rg(s){return ac[s.hour<12?0:1]}function Ng(s,t){return rc(t)[s.weekday-1]}function zg(s,t){return ic(t)[s.month-1]}function Vg(s,t){return lc(t)[s.year<0?0:1]}function Wg(s,t,e="always",i=!1){let n={years:["year","yr."],quarters:["quarter","qtr."],months:["month","mo."],weeks:["week","wk."],days:["day","day","days"],hours:["hour","hr."],minutes:["minute","min."],seconds:["second","sec."]},o=["hours","minutes","seconds"].indexOf(s)===-1;if(e==="auto"&&o){let u=s==="days";switch(t){case 1:return u?"tomorrow":`next ${n[s][0]}`;case-1:return u?"yesterday":`last ${n[s][0]}`;case 0:return u?"today":`this ${n[s][0]}`}}let r=Object.is(t,-0)||t<0,a=Math.abs(t),l=a===1,c=n[s],h=i?l?c[1]:c[2]||c[1]:l?n[s][0]:s;return r?`${a} ${h} ago`:`in ${a} ${h}`}function hl(s,t){let e="";for(let i of s)i.literal?e+=i.val:e+=t(i.val);return e}var Bg={D:Ri,DD:Ml,DDD:Ol,DDDD:Tl,t:Dl,tt:Cl,ttt:Pl,tttt:Al,T:Il,TT:El,TTT:Ll,TTTT:Fl,f:Rl,ff:zl,fff:Wl,ffff:Hl,F:Nl,FF:Vl,FFF:Bl,FFFF:$l},ft=class s{static create(t,e={}){return new s(t,e)}static parseFormat(t){let e=null,i="",n=!1,o=[];for(let r=0;r0||n)&&o.push({literal:n||/^\s+$/.test(i),val:i===""?"'":i}),e=null,i="",n=!n):n||a===e?i+=a:(i.length>0&&o.push({literal:/^\s+$/.test(i),val:i}),i=a,e=a)}return i.length>0&&o.push({literal:n||/^\s+$/.test(i),val:i}),o}static macroTokenToFormatOpts(t){return Bg[t]}constructor(t,e){this.opts=e,this.loc=t,this.systemLoc=null}formatWithSystemDefault(t,e){return this.systemLoc===null&&(this.systemLoc=this.loc.redefaultToSystem()),this.systemLoc.dtFormatter(t,{...this.opts,...e}).format()}dtFormatter(t,e={}){return this.loc.dtFormatter(t,{...this.opts,...e})}formatDateTime(t,e){return this.dtFormatter(t,e).format()}formatDateTimeParts(t,e){return this.dtFormatter(t,e).formatToParts()}formatInterval(t,e){return this.dtFormatter(t.start,e).dtf.formatRange(t.start.toJSDate(),t.end.toJSDate())}resolvedOptions(t,e){return this.dtFormatter(t,e).resolvedOptions()}num(t,e=0,i=void 0){if(this.opts.forceSimple)return J(t,e);let n={...this.opts};return e>0&&(n.padTo=e),i&&(n.signDisplay=i),this.loc.numberFormatter(n).format(t)}formatDateTimeFromString(t,e){let i=this.loc.listingMode()==="en",n=this.loc.outputCalendar&&this.loc.outputCalendar!=="gregory",o=(f,g)=>this.loc.extract(t,f,g),r=f=>t.isOffsetFixed&&t.offset===0&&f.allowZ?"Z":t.isValid?t.zone.formatOffset(t.ts,f.format):"",a=()=>i?Rg(t):o({hour:"numeric",hourCycle:"h12"},"dayperiod"),l=(f,g)=>i?zg(t,f):o(g?{month:f}:{month:f,day:"numeric"},"month"),c=(f,g)=>i?Ng(t,f):o(g?{weekday:f}:{weekday:f,month:"long",day:"numeric"},"weekday"),h=f=>{let g=s.macroTokenToFormatOpts(f);return g?this.formatWithSystemDefault(t,g):f},u=f=>i?Vg(t,f):o({era:f},"era"),d=f=>{switch(f){case"S":return this.num(t.millisecond);case"u":case"SSS":return this.num(t.millisecond,3);case"s":return this.num(t.second);case"ss":return this.num(t.second,2);case"uu":return this.num(Math.floor(t.millisecond/10),2);case"uuu":return this.num(Math.floor(t.millisecond/100));case"m":return this.num(t.minute);case"mm":return this.num(t.minute,2);case"h":return this.num(t.hour%12===0?12:t.hour%12);case"hh":return this.num(t.hour%12===0?12:t.hour%12,2);case"H":return this.num(t.hour);case"HH":return this.num(t.hour,2);case"Z":return r({format:"narrow",allowZ:this.opts.allowZ});case"ZZ":return r({format:"short",allowZ:this.opts.allowZ});case"ZZZ":return r({format:"techie",allowZ:this.opts.allowZ});case"ZZZZ":return t.zone.offsetName(t.ts,{format:"short",locale:this.loc.locale});case"ZZZZZ":return t.zone.offsetName(t.ts,{format:"long",locale:this.loc.locale});case"z":return t.zoneName;case"a":return a();case"d":return n?o({day:"numeric"},"day"):this.num(t.day);case"dd":return n?o({day:"2-digit"},"day"):this.num(t.day,2);case"c":return this.num(t.weekday);case"ccc":return c("short",!0);case"cccc":return c("long",!0);case"ccccc":return c("narrow",!0);case"E":return this.num(t.weekday);case"EEE":return c("short",!1);case"EEEE":return c("long",!1);case"EEEEE":return c("narrow",!1);case"L":return n?o({month:"numeric",day:"numeric"},"month"):this.num(t.month);case"LL":return n?o({month:"2-digit",day:"numeric"},"month"):this.num(t.month,2);case"LLL":return l("short",!0);case"LLLL":return l("long",!0);case"LLLLL":return l("narrow",!0);case"M":return n?o({month:"numeric"},"month"):this.num(t.month);case"MM":return n?o({month:"2-digit"},"month"):this.num(t.month,2);case"MMM":return l("short",!1);case"MMMM":return l("long",!1);case"MMMMM":return l("narrow",!1);case"y":return n?o({year:"numeric"},"year"):this.num(t.year);case"yy":return n?o({year:"2-digit"},"year"):this.num(t.year.toString().slice(-2),2);case"yyyy":return n?o({year:"numeric"},"year"):this.num(t.year,4);case"yyyyyy":return n?o({year:"numeric"},"year"):this.num(t.year,6);case"G":return u("short");case"GG":return u("long");case"GGGGG":return u("narrow");case"kk":return this.num(t.weekYear.toString().slice(-2),2);case"kkkk":return this.num(t.weekYear,4);case"W":return this.num(t.weekNumber);case"WW":return this.num(t.weekNumber,2);case"n":return this.num(t.localWeekNumber);case"nn":return this.num(t.localWeekNumber,2);case"ii":return this.num(t.localWeekYear.toString().slice(-2),2);case"iiii":return this.num(t.localWeekYear,4);case"o":return this.num(t.ordinal);case"ooo":return this.num(t.ordinal,3);case"q":return this.num(t.quarter);case"qq":return this.num(t.quarter,2);case"X":return this.num(Math.floor(t.ts/1e3));case"x":return this.num(t.ts);default:return h(f)}};return hl(s.parseFormat(e),d)}formatDurationFromString(t,e){let i=this.opts.signMode==="negativeLargestOnly"?-1:1,n=h=>{switch(h[0]){case"S":return"milliseconds";case"s":return"seconds";case"m":return"minutes";case"h":return"hours";case"d":return"days";case"w":return"weeks";case"M":return"months";case"y":return"years";default:return null}},o=(h,u)=>d=>{let f=n(d);if(f){let g=u.isNegativeDuration&&f!==u.largestUnit?i:1,m;return this.opts.signMode==="negativeLargestOnly"&&f!==u.largestUnit?m="never":this.opts.signMode==="all"?m="always":m="auto",this.num(h.get(f)*g,d.length,m)}else return d},r=s.parseFormat(e),a=r.reduce((h,{literal:u,val:d})=>u?h:h.concat(d),[]),l=t.shiftTo(...a.map(n).filter(h=>h)),c={isNegativeDuration:l<0,largestUnit:Object.keys(l.values)[0]};return hl(r,o(l,c))}},cc=/[A-Za-z_+-]{1,256}(?::?\/[A-Za-z0-9_+-]{1,256}(?:\/[A-Za-z0-9_+-]{1,256})?)?/;function is(...s){let t=s.reduce((e,i)=>e+i.source,"");return RegExp(`^${t}$`)}function ns(...s){return t=>s.reduce(([e,i,n],o)=>{let[r,a,l]=o(t,n);return[{...e,...r},a||i,l]},[{},null,1]).slice(0,2)}function os(s,...t){if(s==null)return[null,null];for(let[e,i]of t){let n=e.exec(s);if(n)return i(n)}return[null,null]}function hc(...s){return(t,e)=>{let i={},n;for(n=0;nf!==void 0&&(g||f&&h)?-f:f;return[{years:d(ke(e)),months:d(ke(i)),weeks:d(ke(n)),days:d(ke(o)),hours:d(ke(r)),minutes:d(ke(a)),seconds:d(ke(l),l==="-0"),milliseconds:d(Io(c),u)}]}var tm={GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function Ro(s,t,e,i,n,o,r){let a={year:t.length===2?To(ie(t)):ie(t),month:sc.indexOf(e)+1,day:ie(i),hour:ie(n),minute:ie(o)};return r&&(a.second=ie(r)),s&&(a.weekday=s.length>3?nc.indexOf(s)+1:oc.indexOf(s)+1),a}var em=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|(?:([+-]\d\d)(\d\d)))$/;function sm(s){let[,t,e,i,n,o,r,a,l,c,h,u]=s,d=Ro(t,n,i,e,o,r,a),f;return l?f=tm[l]:c?f=0:f=ji(h,u),[d,new kt(f)]}function im(s){return s.replace(/\([^()]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").trim()}var nm=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d\d) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d\d):(\d\d):(\d\d) GMT$/,om=/^(Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d) (\d\d):(\d\d):(\d\d) GMT$/,rm=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( \d|\d\d) (\d\d):(\d\d):(\d\d) (\d{4})$/;function ul(s){let[,t,e,i,n,o,r,a]=s;return[Ro(t,n,i,e,o,r,a),kt.utcInstance]}function am(s){let[,t,e,i,n,o,r,a]=s;return[Ro(t,a,e,i,n,o,r),kt.utcInstance]}var lm=is($g,Fo),cm=is(jg,Fo),hm=is(Ug,Fo),um=is(dc),gc=ns(Xg,rs,Hs,$s),dm=ns(Yg,rs,Hs,$s),fm=ns(Zg,rs,Hs,$s),gm=ns(rs,Hs,$s);function mm(s){return os(s,[lm,gc],[cm,dm],[hm,fm],[um,gm])}function pm(s){return os(im(s),[em,sm])}function bm(s){return os(s,[nm,ul],[om,ul],[rm,am])}function ym(s){return os(s,[Kg,Qg])}var xm=ns(rs);function _m(s){return os(s,[Jg,xm])}var wm=is(qg,Gg),km=is(fc),vm=ns(rs,Hs,$s);function Sm(s){return os(s,[wm,gc],[km,vm])}var dl="Invalid Duration",mc={weeks:{days:7,hours:168,minutes:10080,seconds:10080*60,milliseconds:10080*60*1e3},days:{hours:24,minutes:1440,seconds:1440*60,milliseconds:1440*60*1e3},hours:{minutes:60,seconds:3600,milliseconds:3600*1e3},minutes:{seconds:60,milliseconds:60*1e3},seconds:{milliseconds:1e3}},Mm={years:{quarters:4,months:12,weeks:52,days:365,hours:365*24,minutes:365*24*60,seconds:365*24*60*60,milliseconds:365*24*60*60*1e3},quarters:{months:3,weeks:13,days:91,hours:2184,minutes:2184*60,seconds:2184*60*60,milliseconds:2184*60*60*1e3},months:{weeks:4,days:30,hours:720,minutes:720*60,seconds:720*60*60,milliseconds:720*60*60*1e3},...mc},xt=146097/400,Ge=146097/4800,Om={years:{quarters:4,months:12,weeks:xt/7,days:xt,hours:xt*24,minutes:xt*24*60,seconds:xt*24*60*60,milliseconds:xt*24*60*60*1e3},quarters:{months:3,weeks:xt/28,days:xt/4,hours:xt*24/4,minutes:xt*24*60/4,seconds:xt*24*60*60/4,milliseconds:xt*24*60*60*1e3/4},months:{weeks:Ge/7,days:Ge,hours:Ge*24,minutes:Ge*24*60,seconds:Ge*24*60*60,milliseconds:Ge*24*60*60*1e3},...mc},Se=["years","quarters","months","weeks","days","hours","minutes","seconds","milliseconds"],Tm=Se.slice(0).reverse();function Ut(s,t,e=!1){let i={values:e?t.values:{...s.values,...t.values||{}},loc:s.loc.clone(t.loc),conversionAccuracy:t.conversionAccuracy||s.conversionAccuracy,matrix:t.matrix||s.matrix};return new tt(i)}function pc(s,t){let e=t.milliseconds??0;for(let i of Tm.slice(1))t[i]&&(e+=t[i]*s[i].milliseconds);return e}function fl(s,t){let e=pc(s,t)<0?-1:1;Se.reduceRight((i,n)=>{if(D(t[n]))return i;if(i){let o=t[i]*e,r=s[n][i],a=Math.floor(o/r);t[n]+=a*e,t[i]-=a*r*e}return n},null),Se.reduce((i,n)=>{if(D(t[n]))return i;if(i){let o=t[i]%1;t[i]-=o,t[n]+=o*s[i][n]}return n},null)}function gl(s){let t={};for(let[e,i]of Object.entries(s))i!==0&&(t[e]=i);return t}var tt=class s{constructor(t){let e=t.conversionAccuracy==="longterm"||!1,i=e?Om:Mm;t.matrix&&(i=t.matrix),this.values=t.values,this.loc=t.loc||B.create(),this.conversionAccuracy=e?"longterm":"casual",this.invalid=t.invalid||null,this.matrix=i,this.isLuxonDuration=!0}static fromMillis(t,e){return s.fromObject({milliseconds:t},e)}static fromObject(t,e={}){if(t==null||typeof t!="object")throw new Q(`Duration.fromObject: argument expected to be an object, got ${t===null?"null":typeof t}`);return new s({values:Wi(t,s.normalizeUnit),loc:B.fromObject(e),conversionAccuracy:e.conversionAccuracy,matrix:e.matrix})}static fromDurationLike(t){if(re(t))return s.fromMillis(t);if(s.isDuration(t))return t;if(typeof t=="object")return s.fromObject(t);throw new Q(`Unknown duration argument ${t} of type ${typeof t}`)}static fromISO(t,e){let[i]=ym(t);return i?s.fromObject(i,e):s.invalid("unparsable",`the input "${t}" can't be parsed as ISO 8601`)}static fromISOTime(t,e){let[i]=_m(t);return i?s.fromObject(i,e):s.invalid("unparsable",`the input "${t}" can't be parsed as ISO 8601`)}static invalid(t,e=null){if(!t)throw new Q("need to specify a reason the Duration is invalid");let i=t instanceof gt?t:new gt(t,e);if(Y.throwOnInvalid)throw new fo(i);return new s({invalid:i})}static normalizeUnit(t){let e={year:"years",years:"years",quarter:"quarters",quarters:"quarters",month:"months",months:"months",week:"weeks",weeks:"weeks",day:"days",days:"days",hour:"hours",hours:"hours",minute:"minutes",minutes:"minutes",second:"seconds",seconds:"seconds",millisecond:"milliseconds",milliseconds:"milliseconds"}[t&&t.toLowerCase()];if(!e)throw new Fi(t);return e}static isDuration(t){return t&&t.isLuxonDuration||!1}get locale(){return this.isValid?this.loc.locale:null}get numberingSystem(){return this.isValid?this.loc.numberingSystem:null}toFormat(t,e={}){let i={...e,floor:e.round!==!1&&e.floor!==!1};return this.isValid?ft.create(this.loc,i).formatDurationFromString(this,t):dl}toHuman(t={}){if(!this.isValid)return dl;let e=t.showZeros!==!1,i=Se.map(n=>{let o=this.values[n];return D(o)||o===0&&!e?null:this.loc.numberFormatter({style:"unit",unitDisplay:"long",...t,unit:n.slice(0,-1)}).format(o)}).filter(n=>n);return this.loc.listFormatter({type:"conjunction",style:t.listStyle||"narrow",...t}).format(i)}toObject(){return this.isValid?{...this.values}:{}}toISO(){if(!this.isValid)return null;let t="P";return this.years!==0&&(t+=this.years+"Y"),(this.months!==0||this.quarters!==0)&&(t+=this.months+this.quarters*3+"M"),this.weeks!==0&&(t+=this.weeks+"W"),this.days!==0&&(t+=this.days+"D"),(this.hours!==0||this.minutes!==0||this.seconds!==0||this.milliseconds!==0)&&(t+="T"),this.hours!==0&&(t+=this.hours+"H"),this.minutes!==0&&(t+=this.minutes+"M"),(this.seconds!==0||this.milliseconds!==0)&&(t+=Eo(this.seconds+this.milliseconds/1e3,3)+"S"),t==="P"&&(t+="T0S"),t}toISOTime(t={}){if(!this.isValid)return null;let e=this.toMillis();return e<0||e>=864e5?null:(t={suppressMilliseconds:!1,suppressSeconds:!1,includePrefix:!1,format:"extended",...t,includeOffset:!1},R.fromMillis(e,{zone:"UTC"}).toISOTime(t))}toJSON(){return this.toISO()}toString(){return this.toISO()}[Symbol.for("nodejs.util.inspect.custom")](){return this.isValid?`Duration { values: ${JSON.stringify(this.values)} }`:`Duration { Invalid, reason: ${this.invalidReason} }`}toMillis(){return this.isValid?pc(this.matrix,this.values):NaN}valueOf(){return this.toMillis()}plus(t){if(!this.isValid)return this;let e=s.fromDurationLike(t),i={};for(let n of Se)(ss(e.values,n)||ss(this.values,n))&&(i[n]=e.get(n)+this.get(n));return Ut(this,{values:i},!0)}minus(t){if(!this.isValid)return this;let e=s.fromDurationLike(t);return this.plus(e.negate())}mapUnits(t){if(!this.isValid)return this;let e={};for(let i of Object.keys(this.values))e[i]=ec(t(this.values[i],i));return Ut(this,{values:e},!0)}get(t){return this[s.normalizeUnit(t)]}set(t){if(!this.isValid)return this;let e={...this.values,...Wi(t,s.normalizeUnit)};return Ut(this,{values:e})}reconfigure({locale:t,numberingSystem:e,conversionAccuracy:i,matrix:n}={}){let r={loc:this.loc.clone({locale:t,numberingSystem:e}),matrix:n,conversionAccuracy:i};return Ut(this,r)}as(t){return this.isValid?this.shiftTo(t).get(t):NaN}normalize(){if(!this.isValid)return this;let t=this.toObject();return fl(this.matrix,t),Ut(this,{values:t},!0)}rescale(){if(!this.isValid)return this;let t=gl(this.normalize().shiftToAll().toObject());return Ut(this,{values:t},!0)}shiftTo(...t){if(!this.isValid)return this;if(t.length===0)return this;t=t.map(r=>s.normalizeUnit(r));let e={},i={},n=this.toObject(),o;for(let r of Se)if(t.indexOf(r)>=0){o=r;let a=0;for(let c in i)a+=this.matrix[c][r]*i[c],i[c]=0;re(n[r])&&(a+=n[r]);let l=Math.trunc(a);e[r]=l,i[r]=(a*1e3-l*1e3)/1e3}else re(n[r])&&(i[r]=n[r]);for(let r in i)i[r]!==0&&(e[o]+=r===o?i[r]:i[r]/this.matrix[o][r]);return fl(this.matrix,e),Ut(this,{values:e},!0)}shiftToAll(){return this.isValid?this.shiftTo("years","months","weeks","days","hours","minutes","seconds","milliseconds"):this}negate(){if(!this.isValid)return this;let t={};for(let e of Object.keys(this.values))t[e]=this.values[e]===0?0:-this.values[e];return Ut(this,{values:t},!0)}removeZeros(){if(!this.isValid)return this;let t=gl(this.values);return Ut(this,{values:t},!0)}get years(){return this.isValid?this.values.years||0:NaN}get quarters(){return this.isValid?this.values.quarters||0:NaN}get months(){return this.isValid?this.values.months||0:NaN}get weeks(){return this.isValid?this.values.weeks||0:NaN}get days(){return this.isValid?this.values.days||0:NaN}get hours(){return this.isValid?this.values.hours||0:NaN}get minutes(){return this.isValid?this.values.minutes||0:NaN}get seconds(){return this.isValid?this.values.seconds||0:NaN}get milliseconds(){return this.isValid?this.values.milliseconds||0:NaN}get isValid(){return this.invalid===null}get invalidReason(){return this.invalid?this.invalid.reason:null}get invalidExplanation(){return this.invalid?this.invalid.explanation:null}equals(t){if(!this.isValid||!t.isValid||!this.loc.equals(t.loc))return!1;function e(i,n){return i===void 0||i===0?n===void 0||n===0:i===n}for(let i of Se)if(!e(this.values[i],t.values[i]))return!1;return!0}},Xe="Invalid Interval";function Dm(s,t){return!s||!s.isValid?es.invalid("missing or invalid start"):!t||!t.isValid?es.invalid("missing or invalid end"):tt:!1}isBefore(t){return this.isValid?this.e<=t:!1}contains(t){return this.isValid?this.s<=t&&this.e>t:!1}set({start:t,end:e}={}){return this.isValid?s.fromDateTimes(t||this.s,e||this.e):this}splitAt(...t){if(!this.isValid)return[];let e=t.map(Fs).filter(r=>this.contains(r)).sort((r,a)=>r.toMillis()-a.toMillis()),i=[],{s:n}=this,o=0;for(;n+this.e?this.e:r;i.push(s.fromDateTimes(n,a)),n=a,o+=1}return i}splitBy(t){let e=tt.fromDurationLike(t);if(!this.isValid||!e.isValid||e.as("milliseconds")===0)return[];let{s:i}=this,n=1,o,r=[];for(;il*n));o=+a>+this.e?this.e:a,r.push(s.fromDateTimes(i,o)),i=o,n+=1}return r}divideEqually(t){return this.isValid?this.splitBy(this.length()/t).slice(0,t):[]}overlaps(t){return this.e>t.s&&this.s=t.e:!1}equals(t){return!this.isValid||!t.isValid?!1:this.s.equals(t.s)&&this.e.equals(t.e)}intersection(t){if(!this.isValid)return this;let e=this.s>t.s?this.s:t.s,i=this.e=i?null:s.fromDateTimes(e,i)}union(t){if(!this.isValid)return this;let e=this.st.e?this.e:t.e;return s.fromDateTimes(e,i)}static merge(t){let[e,i]=t.sort((n,o)=>n.s-o.s).reduce(([n,o],r)=>o?o.overlaps(r)||o.abutsStart(r)?[n,o.union(r)]:[n.concat([o]),r]:[n,r],[[],null]);return i&&e.push(i),e}static xor(t){let e=null,i=0,n=[],o=t.map(l=>[{time:l.s,type:"s"},{time:l.e,type:"e"}]),r=Array.prototype.concat(...o),a=r.sort((l,c)=>l.time-c.time);for(let l of a)i+=l.type==="s"?1:-1,i===1?e=l.time:(e&&+e!=+l.time&&n.push(s.fromDateTimes(e,l.time)),e=null);return s.merge(n)}difference(...t){return s.xor([this].concat(t)).map(e=>this.intersection(e)).filter(e=>e&&!e.isEmpty())}toString(){return this.isValid?`[${this.s.toISO()} \u2013 ${this.e.toISO()})`:Xe}[Symbol.for("nodejs.util.inspect.custom")](){return this.isValid?`Interval { start: ${this.s.toISO()}, end: ${this.e.toISO()} }`:`Interval { Invalid, reason: ${this.invalidReason} }`}toLocaleString(t=Ri,e={}){return this.isValid?ft.create(this.s.loc.clone(e),t).formatInterval(this):Xe}toISO(t){return this.isValid?`${this.s.toISO(t)}/${this.e.toISO(t)}`:Xe}toISODate(){return this.isValid?`${this.s.toISODate()}/${this.e.toISODate()}`:Xe}toISOTime(t){return this.isValid?`${this.s.toISOTime(t)}/${this.e.toISOTime(t)}`:Xe}toFormat(t,{separator:e=" \u2013 "}={}){return this.isValid?`${this.s.toFormat(t)}${e}${this.e.toFormat(t)}`:Xe}toDuration(t,e){return this.isValid?this.e.diff(this.s,t,e):tt.invalid(this.invalidReason)}mapEndpoints(t){return s.fromDateTimes(t(this.s),t(this.e))}},Ke=class{static hasDST(t=Y.defaultZone){let e=R.now().setZone(t).set({month:12});return!t.isUniversal&&e.offset!==e.set({month:6}).offset}static isValidIANAZone(t){return ae.isValidZone(t)}static normalizeZone(t){return ne(t,Y.defaultZone)}static getStartOfWeek({locale:t=null,locObj:e=null}={}){return(e||B.create(t)).getStartOfWeek()}static getMinimumDaysInFirstWeek({locale:t=null,locObj:e=null}={}){return(e||B.create(t)).getMinDaysInFirstWeek()}static getWeekendWeekdays({locale:t=null,locObj:e=null}={}){return(e||B.create(t)).getWeekendDays().slice()}static months(t="long",{locale:e=null,numberingSystem:i=null,locObj:n=null,outputCalendar:o="gregory"}={}){return(n||B.create(e,i,o)).months(t)}static monthsFormat(t="long",{locale:e=null,numberingSystem:i=null,locObj:n=null,outputCalendar:o="gregory"}={}){return(n||B.create(e,i,o)).months(t,!0)}static weekdays(t="long",{locale:e=null,numberingSystem:i=null,locObj:n=null}={}){return(n||B.create(e,i,null)).weekdays(t)}static weekdaysFormat(t="long",{locale:e=null,numberingSystem:i=null,locObj:n=null}={}){return(n||B.create(e,i,null)).weekdays(t,!0)}static meridiems({locale:t=null}={}){return B.create(t).meridiems()}static eras(t="short",{locale:e=null}={}){return B.create(e,null,"gregory").eras(t)}static features(){return{relative:Kl(),localeWeek:Ql()}}};function ml(s,t){let e=n=>n.toUTC(0,{keepLocalTime:!0}).startOf("day").valueOf(),i=e(t)-e(s);return Math.floor(tt.fromMillis(i).as("days"))}function Cm(s,t,e){let i=[["years",(l,c)=>c.year-l.year],["quarters",(l,c)=>c.quarter-l.quarter+(c.year-l.year)*4],["months",(l,c)=>c.month-l.month+(c.year-l.year)*12],["weeks",(l,c)=>{let h=ml(l,c);return(h-h%7)/7}],["days",ml]],n={},o=s,r,a;for(let[l,c]of i)e.indexOf(l)>=0&&(r=l,n[l]=c(s,t),a=o.plus(n),a>t?(n[l]--,s=o.plus(n),s>t&&(a=s,n[l]--,s=o.plus(n))):s=a);return[s,n,a,r]}function Pm(s,t,e,i){let[n,o,r,a]=Cm(s,t,e),l=t-n,c=e.filter(u=>["hours","minutes","seconds","milliseconds"].indexOf(u)>=0);c.length===0&&(r0?tt.fromMillis(l,i).shiftTo(...c).plus(h):h}var Am="missing Intl.DateTimeFormat.formatToParts support";function N(s,t=e=>e){return{regex:s,deser:([e])=>t(wg(e))}}var Im="\xA0",bc=`[ ${Im}]`,yc=new RegExp(bc,"g");function Em(s){return s.replace(/\./g,"\\.?").replace(yc,bc)}function pl(s){return s.replace(/\./g,"").replace(yc," ").toLowerCase()}function Tt(s,t){return s===null?null:{regex:RegExp(s.map(Em).join("|")),deser:([e])=>s.findIndex(i=>pl(e)===pl(i))+t}}function bl(s,t){return{regex:s,deser:([,e,i])=>ji(e,i),groups:t}}function Ci(s){return{regex:s,deser:([t])=>t}}function Lm(s){return s.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")}function Fm(s,t){let e=Ot(t),i=Ot(t,"{2}"),n=Ot(t,"{3}"),o=Ot(t,"{4}"),r=Ot(t,"{6}"),a=Ot(t,"{1,2}"),l=Ot(t,"{1,3}"),c=Ot(t,"{1,6}"),h=Ot(t,"{1,9}"),u=Ot(t,"{2,4}"),d=Ot(t,"{4,6}"),f=p=>({regex:RegExp(Lm(p.val)),deser:([b])=>b,literal:!0}),m=(p=>{if(s.literal)return f(p);switch(p.val){case"G":return Tt(t.eras("short"),0);case"GG":return Tt(t.eras("long"),0);case"y":return N(c);case"yy":return N(u,To);case"yyyy":return N(o);case"yyyyy":return N(d);case"yyyyyy":return N(r);case"M":return N(a);case"MM":return N(i);case"MMM":return Tt(t.months("short",!0),1);case"MMMM":return Tt(t.months("long",!0),1);case"L":return N(a);case"LL":return N(i);case"LLL":return Tt(t.months("short",!1),1);case"LLLL":return Tt(t.months("long",!1),1);case"d":return N(a);case"dd":return N(i);case"o":return N(l);case"ooo":return N(n);case"HH":return N(i);case"H":return N(a);case"hh":return N(i);case"h":return N(a);case"mm":return N(i);case"m":return N(a);case"q":return N(a);case"qq":return N(i);case"s":return N(a);case"ss":return N(i);case"S":return N(l);case"SSS":return N(n);case"u":return Ci(h);case"uu":return Ci(a);case"uuu":return N(e);case"a":return Tt(t.meridiems(),0);case"kkkk":return N(o);case"kk":return N(u,To);case"W":return N(a);case"WW":return N(i);case"E":case"c":return N(e);case"EEE":return Tt(t.weekdays("short",!1),1);case"EEEE":return Tt(t.weekdays("long",!1),1);case"ccc":return Tt(t.weekdays("short",!0),1);case"cccc":return Tt(t.weekdays("long",!0),1);case"Z":case"ZZ":return bl(new RegExp(`([+-]${a.source})(?::(${i.source}))?`),2);case"ZZZ":return bl(new RegExp(`([+-]${a.source})(${i.source})?`),2);case"z":return Ci(/[a-z_+-/]{1,256}?/i);case" ":return Ci(/[^\S\n\r]/);default:return f(p)}})(s)||{invalidReason:Am};return m.token=s,m}var Rm={year:{"2-digit":"yy",numeric:"yyyyy"},month:{numeric:"M","2-digit":"MM",short:"MMM",long:"MMMM"},day:{numeric:"d","2-digit":"dd"},weekday:{short:"EEE",long:"EEEE"},dayperiod:"a",dayPeriod:"a",hour12:{numeric:"h","2-digit":"hh"},hour24:{numeric:"H","2-digit":"HH"},minute:{numeric:"m","2-digit":"mm"},second:{numeric:"s","2-digit":"ss"},timeZoneName:{long:"ZZZZZ",short:"ZZZ"}};function Nm(s,t,e){let{type:i,value:n}=s;if(i==="literal"){let l=/^\s+$/.test(n);return{literal:!l,val:l?" ":n}}let o=t[i],r=i;i==="hour"&&(t.hour12!=null?r=t.hour12?"hour12":"hour24":t.hourCycle!=null?t.hourCycle==="h11"||t.hourCycle==="h12"?r="hour12":r="hour24":r=e.hour12?"hour12":"hour24");let a=Rm[r];if(typeof a=="object"&&(a=a[o]),a)return{literal:!1,val:a}}function zm(s){return[`^${s.map(e=>e.regex).reduce((e,i)=>`${e}(${i.source})`,"")}$`,s]}function Vm(s,t,e){let i=s.match(t);if(i){let n={},o=1;for(let r in e)if(ss(e,r)){let a=e[r],l=a.groups?a.groups+1:1;!a.literal&&a.token&&(n[a.token.val[0]]=a.deser(i.slice(o,o+l))),o+=l}return[i,n]}else return[i,{}]}function Wm(s){let t=o=>{switch(o){case"S":return"millisecond";case"s":return"second";case"m":return"minute";case"h":case"H":return"hour";case"d":return"day";case"o":return"ordinal";case"L":case"M":return"month";case"y":return"year";case"E":case"c":return"weekday";case"W":return"weekNumber";case"k":return"weekYear";case"q":return"quarter";default:return null}},e=null,i;return D(s.z)||(e=ae.create(s.z)),D(s.Z)||(e||(e=new kt(s.Z)),i=s.Z),D(s.q)||(s.M=(s.q-1)*3+1),D(s.h)||(s.h<12&&s.a===1?s.h+=12:s.h===12&&s.a===0&&(s.h=0)),s.G===0&&s.y&&(s.y=-s.y),D(s.u)||(s.S=Io(s.u)),[Object.keys(s).reduce((o,r)=>{let a=t(r);return a&&(o[a]=s[r]),o},{}),e,i]}var oo=null;function Bm(){return oo||(oo=R.fromMillis(1555555555555)),oo}function Hm(s,t){if(s.literal)return s;let e=ft.macroTokenToFormatOpts(s.val),i=wc(e,t);return i==null||i.includes(void 0)?s:i}function xc(s,t){return Array.prototype.concat(...s.map(e=>Hm(e,t)))}var Bi=class{constructor(t,e){if(this.locale=t,this.format=e,this.tokens=xc(ft.parseFormat(e),t),this.units=this.tokens.map(i=>Fm(i,t)),this.disqualifyingUnit=this.units.find(i=>i.invalidReason),!this.disqualifyingUnit){let[i,n]=zm(this.units);this.regex=RegExp(i,"i"),this.handlers=n}}explainFromTokens(t){if(this.isValid){let[e,i]=Vm(t,this.regex,this.handlers),[n,o,r]=i?Wm(i):[null,null,void 0];if(ss(i,"a")&&ss(i,"H"))throw new oe("Can't include meridiem when specifying 24-hour format");return{input:t,tokens:this.tokens,regex:this.regex,rawMatches:e,matches:i,result:n,zone:o,specificOffset:r}}else return{input:t,tokens:this.tokens,invalidReason:this.invalidReason}}get isValid(){return!this.disqualifyingUnit}get invalidReason(){return this.disqualifyingUnit?this.disqualifyingUnit.invalidReason:null}};function _c(s,t,e){return new Bi(s,e).explainFromTokens(t)}function $m(s,t,e){let{result:i,zone:n,specificOffset:o,invalidReason:r}=_c(s,t,e);return[i,n,o,r]}function wc(s,t){if(!s)return null;let i=ft.create(t,s).dtFormatter(Bm()),n=i.formatToParts(),o=i.resolvedOptions();return n.map(r=>Nm(r,s,o))}var ro="Invalid DateTime",yl=864e13;function Ns(s){return new gt("unsupported zone",`the zone "${s.name}" is not supported`)}function ao(s){return s.weekData===null&&(s.weekData=zi(s.c)),s.weekData}function lo(s){return s.localWeekData===null&&(s.localWeekData=zi(s.c,s.loc.getMinDaysInFirstWeek(),s.loc.getStartOfWeek())),s.localWeekData}function ve(s,t){let e={ts:s.ts,zone:s.zone,c:s.c,o:s.o,loc:s.loc,invalid:s.invalid};return new R({...e,...t,old:e})}function kc(s,t,e){let i=s-t*60*1e3,n=e.offset(i);if(t===n)return[i,t];i-=(n-t)*60*1e3;let o=e.offset(i);return n===o?[i,n]:[s-Math.min(n,o)*60*1e3,Math.max(n,o)]}function Pi(s,t){s+=t*60*1e3;let e=new Date(s);return{year:e.getUTCFullYear(),month:e.getUTCMonth()+1,day:e.getUTCDate(),hour:e.getUTCHours(),minute:e.getUTCMinutes(),second:e.getUTCSeconds(),millisecond:e.getUTCMilliseconds()}}function Ii(s,t,e){return kc($i(s),t,e)}function xl(s,t){let e=s.o,i=s.c.year+Math.trunc(t.years),n=s.c.month+Math.trunc(t.months)+Math.trunc(t.quarters)*3,o={...s.c,year:i,month:n,day:Math.min(s.c.day,Vi(i,n))+Math.trunc(t.days)+Math.trunc(t.weeks)*7},r=tt.fromObject({years:t.years-Math.trunc(t.years),quarters:t.quarters-Math.trunc(t.quarters),months:t.months-Math.trunc(t.months),weeks:t.weeks-Math.trunc(t.weeks),days:t.days-Math.trunc(t.days),hours:t.hours,minutes:t.minutes,seconds:t.seconds,milliseconds:t.milliseconds}).as("milliseconds"),a=$i(o),[l,c]=kc(a,e,s.zone);return r!==0&&(l+=r,c=s.zone.offset(l)),{ts:l,o:c}}function Je(s,t,e,i,n,o){let{setZone:r,zone:a}=e;if(s&&Object.keys(s).length!==0||t){let l=t||a,c=R.fromObject(s,{...e,zone:l,specificOffset:o});return r?c:c.setZone(a)}else return R.invalid(new gt("unparsable",`the input "${n}" can't be parsed as ${i}`))}function Ai(s,t,e=!0){return s.isValid?ft.create(B.create("en-US"),{allowZ:e,forceSimple:!0}).formatDateTimeFromString(s,t):null}function co(s,t,e){let i=s.c.year>9999||s.c.year<0,n="";if(i&&s.c.year>=0&&(n+="+"),n+=J(s.c.year,i?6:4),e==="year")return n;if(t){if(n+="-",n+=J(s.c.month),e==="month")return n;n+="-"}else if(n+=J(s.c.month),e==="month")return n;return n+=J(s.c.day),n}function _l(s,t,e,i,n,o,r){let a=!e||s.c.millisecond!==0||s.c.second!==0,l="";switch(r){case"day":case"month":case"year":break;default:if(l+=J(s.c.hour),r==="hour")break;if(t){if(l+=":",l+=J(s.c.minute),r==="minute")break;a&&(l+=":",l+=J(s.c.second))}else{if(l+=J(s.c.minute),r==="minute")break;a&&(l+=J(s.c.second))}if(r==="second")break;a&&(!i||s.c.millisecond!==0)&&(l+=".",l+=J(s.c.millisecond,3))}return n&&(s.isOffsetFixed&&s.offset===0&&!o?l+="Z":s.o<0?(l+="-",l+=J(Math.trunc(-s.o/60)),l+=":",l+=J(Math.trunc(-s.o%60))):(l+="+",l+=J(Math.trunc(s.o/60)),l+=":",l+=J(Math.trunc(s.o%60)))),o&&(l+="["+s.zone.ianaName+"]"),l}var vc={month:1,day:1,hour:0,minute:0,second:0,millisecond:0},jm={weekNumber:1,weekday:1,hour:0,minute:0,second:0,millisecond:0},Um={ordinal:1,hour:0,minute:0,second:0,millisecond:0},Ei=["year","month","day","hour","minute","second","millisecond"],Ym=["weekYear","weekNumber","weekday","hour","minute","second","millisecond"],Zm=["year","ordinal","hour","minute","second","millisecond"];function Li(s){let t={year:"year",years:"year",month:"month",months:"month",day:"day",days:"day",hour:"hour",hours:"hour",minute:"minute",minutes:"minute",quarter:"quarter",quarters:"quarter",second:"second",seconds:"second",millisecond:"millisecond",milliseconds:"millisecond",weekday:"weekday",weekdays:"weekday",weeknumber:"weekNumber",weeksnumber:"weekNumber",weeknumbers:"weekNumber",weekyear:"weekYear",weekyears:"weekYear",ordinal:"ordinal"}[s.toLowerCase()];if(!t)throw new Fi(s);return t}function wl(s){switch(s.toLowerCase()){case"localweekday":case"localweekdays":return"localWeekday";case"localweeknumber":case"localweeknumbers":return"localWeekNumber";case"localweekyear":case"localweekyears":return"localWeekYear";default:return Li(s)}}function qm(s){if(zs===void 0&&(zs=Y.now()),s.type!=="iana")return s.offset(zs);let t=s.name,e=Do.get(t);return e===void 0&&(e=s.offset(zs),Do.set(t,e)),e}function kl(s,t){let e=ne(t.zone,Y.defaultZone);if(!e.isValid)return R.invalid(Ns(e));let i=B.fromObject(t),n,o;if(D(s.year))n=Y.now();else{for(let l of Ei)D(s[l])&&(s[l]=vc[l]);let r=Xl(s)||Jl(s);if(r)return R.invalid(r);let a=qm(e);[n,o]=Ii(s,a,e)}return new R({ts:n,zone:e,loc:i,o})}function vl(s,t,e){let i=D(e.round)?!0:e.round,n=D(e.rounding)?"trunc":e.rounding,o=(a,l)=>(a=Eo(a,i||e.calendary?0:2,e.calendary?"round":n),t.loc.clone(e).relFormatter(e).format(a,l)),r=a=>e.calendary?t.hasSame(s,a)?0:t.startOf(a).diff(s.startOf(a),a).get(a):t.diff(s,a).get(a);if(e.unit)return o(r(e.unit),e.unit);for(let a of e.units){let l=r(a);if(Math.abs(l)>=1)return o(l,a)}return o(s>t?-0:0,e.units[e.units.length-1])}function Sl(s){let t={},e;return s.length>0&&typeof s[s.length-1]=="object"?(t=s[s.length-1],e=Array.from(s).slice(0,s.length-1)):e=Array.from(s),[t,e]}var zs,Do=new Map,R=class s{constructor(t){let e=t.zone||Y.defaultZone,i=t.invalid||(Number.isNaN(t.ts)?new gt("invalid input"):null)||(e.isValid?null:Ns(e));this.ts=D(t.ts)?Y.now():t.ts;let n=null,o=null;if(!i)if(t.old&&t.old.ts===this.ts&&t.old.zone.equals(e))[n,o]=[t.old.c,t.old.o];else{let a=re(t.o)&&!t.old?t.o:e.offset(this.ts);n=Pi(this.ts,a),i=Number.isNaN(n.year)?new gt("invalid input"):null,n=i?null:n,o=i?null:a}this._zone=e,this.loc=t.loc||B.create(),this.invalid=i,this.weekData=null,this.localWeekData=null,this.c=n,this.o=o,this.isLuxonDateTime=!0}static now(){return new s({})}static local(){let[t,e]=Sl(arguments),[i,n,o,r,a,l,c]=e;return kl({year:i,month:n,day:o,hour:r,minute:a,second:l,millisecond:c},t)}static utc(){let[t,e]=Sl(arguments),[i,n,o,r,a,l,c]=e;return t.zone=kt.utcInstance,kl({year:i,month:n,day:o,hour:r,minute:a,second:l,millisecond:c},t)}static fromJSDate(t,e={}){let i=Og(t)?t.valueOf():NaN;if(Number.isNaN(i))return s.invalid("invalid input");let n=ne(e.zone,Y.defaultZone);return n.isValid?new s({ts:i,zone:n,loc:B.fromObject(e)}):s.invalid(Ns(n))}static fromMillis(t,e={}){if(re(t))return t<-yl||t>yl?s.invalid("Timestamp out of range"):new s({ts:t,zone:ne(e.zone,Y.defaultZone),loc:B.fromObject(e)});throw new Q(`fromMillis requires a numerical input, but received a ${typeof t} with value ${t}`)}static fromSeconds(t,e={}){if(re(t))return new s({ts:t*1e3,zone:ne(e.zone,Y.defaultZone),loc:B.fromObject(e)});throw new Q("fromSeconds requires a numerical input")}static fromObject(t,e={}){t=t||{};let i=ne(e.zone,Y.defaultZone);if(!i.isValid)return s.invalid(Ns(i));let n=B.fromObject(e),o=Wi(t,wl),{minDaysInFirstWeek:r,startOfWeek:a}=al(o,n),l=Y.now(),c=D(e.specificOffset)?i.offset(l):e.specificOffset,h=!D(o.ordinal),u=!D(o.year),d=!D(o.month)||!D(o.day),f=u||d,g=o.weekYear||o.weekNumber;if((f||h)&&g)throw new oe("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(d&&h)throw new oe("Can't mix ordinal dates with month/day");let m=g||o.weekday&&!f,p,b,y=Pi(l,c);m?(p=Ym,b=jm,y=zi(y,r,a)):h?(p=Zm,b=Um,y=no(y)):(p=Ei,b=vc);let _=!1;for(let C of p){let A=o[C];D(A)?_?o[C]=b[C]:o[C]=y[C]:_=!0}let w=m?vg(o,r,a):h?Sg(o):Xl(o),x=w||Jl(o);if(x)return s.invalid(x);let k=m?ol(o,r,a):h?rl(o):o,[S,M]=Ii(k,c,i),T=new s({ts:S,zone:i,o:M,loc:n});return o.weekday&&f&&t.weekday!==T.weekday?s.invalid("mismatched weekday",`you can't specify both a weekday of ${o.weekday} and a date of ${T.toISO()}`):T.isValid?T:s.invalid(T.invalid)}static fromISO(t,e={}){let[i,n]=mm(t);return Je(i,n,e,"ISO 8601",t)}static fromRFC2822(t,e={}){let[i,n]=pm(t);return Je(i,n,e,"RFC 2822",t)}static fromHTTP(t,e={}){let[i,n]=bm(t);return Je(i,n,e,"HTTP",e)}static fromFormat(t,e,i={}){if(D(t)||D(e))throw new Q("fromFormat requires an input string and a format");let{locale:n=null,numberingSystem:o=null}=i,r=B.fromOpts({locale:n,numberingSystem:o,defaultToEN:!0}),[a,l,c,h]=$m(r,t,e);return h?s.invalid(h):Je(a,l,i,`format ${e}`,t,c)}static fromString(t,e,i={}){return s.fromFormat(t,e,i)}static fromSQL(t,e={}){let[i,n]=Sm(t);return Je(i,n,e,"SQL",t)}static invalid(t,e=null){if(!t)throw new Q("need to specify a reason the DateTime is invalid");let i=t instanceof gt?t:new gt(t,e);if(Y.throwOnInvalid)throw new ho(i);return new s({invalid:i})}static isDateTime(t){return t&&t.isLuxonDateTime||!1}static parseFormatForOpts(t,e={}){let i=wc(t,B.fromObject(e));return i?i.map(n=>n?n.val:null).join(""):null}static expandFormat(t,e={}){return xc(ft.parseFormat(t),B.fromObject(e)).map(n=>n.val).join("")}static resetCache(){zs=void 0,Do.clear()}get(t){return this[t]}get isValid(){return this.invalid===null}get invalidReason(){return this.invalid?this.invalid.reason:null}get invalidExplanation(){return this.invalid?this.invalid.explanation:null}get locale(){return this.isValid?this.loc.locale:null}get numberingSystem(){return this.isValid?this.loc.numberingSystem:null}get outputCalendar(){return this.isValid?this.loc.outputCalendar:null}get zone(){return this._zone}get zoneName(){return this.isValid?this.zone.name:null}get year(){return this.isValid?this.c.year:NaN}get quarter(){return this.isValid?Math.ceil(this.c.month/3):NaN}get month(){return this.isValid?this.c.month:NaN}get day(){return this.isValid?this.c.day:NaN}get hour(){return this.isValid?this.c.hour:NaN}get minute(){return this.isValid?this.c.minute:NaN}get second(){return this.isValid?this.c.second:NaN}get millisecond(){return this.isValid?this.c.millisecond:NaN}get weekYear(){return this.isValid?ao(this).weekYear:NaN}get weekNumber(){return this.isValid?ao(this).weekNumber:NaN}get weekday(){return this.isValid?ao(this).weekday:NaN}get isWeekend(){return this.isValid&&this.loc.getWeekendDays().includes(this.weekday)}get localWeekday(){return this.isValid?lo(this).weekday:NaN}get localWeekNumber(){return this.isValid?lo(this).weekNumber:NaN}get localWeekYear(){return this.isValid?lo(this).weekYear:NaN}get ordinal(){return this.isValid?no(this.c).ordinal:NaN}get monthShort(){return this.isValid?Ke.months("short",{locObj:this.loc})[this.month-1]:null}get monthLong(){return this.isValid?Ke.months("long",{locObj:this.loc})[this.month-1]:null}get weekdayShort(){return this.isValid?Ke.weekdays("short",{locObj:this.loc})[this.weekday-1]:null}get weekdayLong(){return this.isValid?Ke.weekdays("long",{locObj:this.loc})[this.weekday-1]:null}get offset(){return this.isValid?+this.o:NaN}get offsetNameShort(){return this.isValid?this.zone.offsetName(this.ts,{format:"short",locale:this.locale}):null}get offsetNameLong(){return this.isValid?this.zone.offsetName(this.ts,{format:"long",locale:this.locale}):null}get isOffsetFixed(){return this.isValid?this.zone.isUniversal:null}get isInDST(){return this.isOffsetFixed?!1:this.offset>this.set({month:1,day:1}).offset||this.offset>this.set({month:5}).offset}getPossibleOffsets(){if(!this.isValid||this.isOffsetFixed)return[this];let t=864e5,e=6e4,i=$i(this.c),n=this.zone.offset(i-t),o=this.zone.offset(i+t),r=this.zone.offset(i-n*e),a=this.zone.offset(i-o*e);if(r===a)return[this];let l=i-r*e,c=i-a*e,h=Pi(l,r),u=Pi(c,a);return h.hour===u.hour&&h.minute===u.minute&&h.second===u.second&&h.millisecond===u.millisecond?[ve(this,{ts:l}),ve(this,{ts:c})]:[this]}get isInLeapYear(){return Bs(this.year)}get daysInMonth(){return Vi(this.year,this.month)}get daysInYear(){return this.isValid?Qe(this.year):NaN}get weeksInWeekYear(){return this.isValid?Ws(this.weekYear):NaN}get weeksInLocalWeekYear(){return this.isValid?Ws(this.localWeekYear,this.loc.getMinDaysInFirstWeek(),this.loc.getStartOfWeek()):NaN}resolvedLocaleOptions(t={}){let{locale:e,numberingSystem:i,calendar:n}=ft.create(this.loc.clone(t),t).resolvedOptions(this);return{locale:e,numberingSystem:i,outputCalendar:n}}toUTC(t=0,e={}){return this.setZone(kt.instance(t),e)}toLocal(){return this.setZone(Y.defaultZone)}setZone(t,{keepLocalTime:e=!1,keepCalendarTime:i=!1}={}){if(t=ne(t,Y.defaultZone),t.equals(this.zone))return this;if(t.isValid){let n=this.ts;if(e||i){let o=t.offset(this.ts),r=this.toObject();[n]=Ii(r,o,t)}return ve(this,{ts:n,zone:t})}else return s.invalid(Ns(t))}reconfigure({locale:t,numberingSystem:e,outputCalendar:i}={}){let n=this.loc.clone({locale:t,numberingSystem:e,outputCalendar:i});return ve(this,{loc:n})}setLocale(t){return this.reconfigure({locale:t})}set(t){if(!this.isValid)return this;let e=Wi(t,wl),{minDaysInFirstWeek:i,startOfWeek:n}=al(e,this.loc),o=!D(e.weekYear)||!D(e.weekNumber)||!D(e.weekday),r=!D(e.ordinal),a=!D(e.year),l=!D(e.month)||!D(e.day),c=a||l,h=e.weekYear||e.weekNumber;if((c||r)&&h)throw new oe("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(l&&r)throw new oe("Can't mix ordinal dates with month/day");let u;o?u=ol({...zi(this.c,i,n),...e},i,n):D(e.ordinal)?(u={...this.toObject(),...e},D(e.day)&&(u.day=Math.min(Vi(u.year,u.month),u.day))):u=rl({...no(this.c),...e});let[d,f]=Ii(u,this.o,this.zone);return ve(this,{ts:d,o:f})}plus(t){if(!this.isValid)return this;let e=tt.fromDurationLike(t);return ve(this,xl(this,e))}minus(t){if(!this.isValid)return this;let e=tt.fromDurationLike(t).negate();return ve(this,xl(this,e))}startOf(t,{useLocaleWeeks:e=!1}={}){if(!this.isValid)return this;let i={},n=tt.normalizeUnit(t);switch(n){case"years":i.month=1;case"quarters":case"months":i.day=1;case"weeks":case"days":i.hour=0;case"hours":i.minute=0;case"minutes":i.second=0;case"seconds":i.millisecond=0;break}if(n==="weeks")if(e){let o=this.loc.getStartOfWeek(),{weekday:r}=this;r=3&&(l+="T"),l+=_l(this,a,e,i,n,o,r),l}toISODate({format:t="extended",precision:e="day"}={}){return this.isValid?co(this,t==="extended",Li(e)):null}toISOWeekDate(){return Ai(this,"kkkk-'W'WW-c")}toISOTime({suppressMilliseconds:t=!1,suppressSeconds:e=!1,includeOffset:i=!0,includePrefix:n=!1,extendedZone:o=!1,format:r="extended",precision:a="milliseconds"}={}){return this.isValid?(a=Li(a),(n&&Ei.indexOf(a)>=3?"T":"")+_l(this,r==="extended",e,t,i,o,a)):null}toRFC2822(){return Ai(this,"EEE, dd LLL yyyy HH:mm:ss ZZZ",!1)}toHTTP(){return Ai(this.toUTC(),"EEE, dd LLL yyyy HH:mm:ss 'GMT'")}toSQLDate(){return this.isValid?co(this,!0):null}toSQLTime({includeOffset:t=!0,includeZone:e=!1,includeOffsetSpace:i=!0}={}){let n="HH:mm:ss.SSS";return(e||t)&&(i&&(n+=" "),e?n+="z":t&&(n+="ZZ")),Ai(this,n,!0)}toSQL(t={}){return this.isValid?`${this.toSQLDate()} ${this.toSQLTime(t)}`:null}toString(){return this.isValid?this.toISO():ro}[Symbol.for("nodejs.util.inspect.custom")](){return this.isValid?`DateTime { ts: ${this.toISO()}, zone: ${this.zone.name}, locale: ${this.locale} }`:`DateTime { Invalid, reason: ${this.invalidReason} }`}valueOf(){return this.toMillis()}toMillis(){return this.isValid?this.ts:NaN}toSeconds(){return this.isValid?this.ts/1e3:NaN}toUnixInteger(){return this.isValid?Math.floor(this.ts/1e3):NaN}toJSON(){return this.toISO()}toBSON(){return this.toJSDate()}toObject(t={}){if(!this.isValid)return{};let e={...this.c};return t.includeConfig&&(e.outputCalendar=this.outputCalendar,e.numberingSystem=this.loc.numberingSystem,e.locale=this.loc.locale),e}toJSDate(){return new Date(this.isValid?this.ts:NaN)}diff(t,e="milliseconds",i={}){if(!this.isValid||!t.isValid)return tt.invalid("created by diffing an invalid DateTime");let n={locale:this.locale,numberingSystem:this.numberingSystem,...i},o=Tg(e).map(tt.normalizeUnit),r=t.valueOf()>this.valueOf(),a=r?this:t,l=r?t:this,c=Pm(a,l,o,n);return r?c.negate():c}diffNow(t="milliseconds",e={}){return this.diff(s.now(),t,e)}until(t){return this.isValid?es.fromDateTimes(this,t):this}hasSame(t,e,i){if(!this.isValid)return!1;let n=t.valueOf(),o=this.setZone(t.zone,{keepLocalTime:!0});return o.startOf(e,i)<=n&&n<=o.endOf(e,i)}equals(t){return this.isValid&&t.isValid&&this.valueOf()===t.valueOf()&&this.zone.equals(t.zone)&&this.loc.equals(t.loc)}toRelative(t={}){if(!this.isValid)return null;let e=t.base||s.fromObject({},{zone:this.zone}),i=t.padding?thise.valueOf(),Math.min)}static max(...t){if(!t.every(s.isDateTime))throw new Q("max requires all arguments be DateTimes");return ll(t,e=>e.valueOf(),Math.max)}static fromFormatExplain(t,e,i={}){let{locale:n=null,numberingSystem:o=null}=i,r=B.fromOpts({locale:n,numberingSystem:o,defaultToEN:!0});return _c(r,t,e)}static fromStringExplain(t,e,i={}){return s.fromFormatExplain(t,e,i)}static buildFormatParser(t,e={}){let{locale:i=null,numberingSystem:n=null}=e,o=B.fromOpts({locale:i,numberingSystem:n,defaultToEN:!0});return new Bi(o,t)}static fromFormatParser(t,e,i={}){if(D(t)||D(e))throw new Q("fromFormatParser requires an input string and a format parser");let{locale:n=null,numberingSystem:o=null}=i,r=B.fromOpts({locale:n,numberingSystem:o,defaultToEN:!0});if(!r.equals(e.locale))throw new Q(`fromFormatParser called with a locale of ${r}, but the format parser was created for ${e.locale}`);let{result:a,zone:l,specificOffset:c,invalidReason:h}=e.explainFromTokens(t);return h?s.invalid(h):Je(a,l,i,`format ${e.format}`,t,c)}static get DATE_SHORT(){return Ri}static get DATE_MED(){return Ml}static get DATE_MED_WITH_WEEKDAY(){return ng}static get DATE_FULL(){return Ol}static get DATE_HUGE(){return Tl}static get TIME_SIMPLE(){return Dl}static get TIME_WITH_SECONDS(){return Cl}static get TIME_WITH_SHORT_OFFSET(){return Pl}static get TIME_WITH_LONG_OFFSET(){return Al}static get TIME_24_SIMPLE(){return Il}static get TIME_24_WITH_SECONDS(){return El}static get TIME_24_WITH_SHORT_OFFSET(){return Ll}static get TIME_24_WITH_LONG_OFFSET(){return Fl}static get DATETIME_SHORT(){return Rl}static get DATETIME_SHORT_WITH_SECONDS(){return Nl}static get DATETIME_MED(){return zl}static get DATETIME_MED_WITH_SECONDS(){return Vl}static get DATETIME_MED_WITH_WEEKDAY(){return og}static get DATETIME_FULL(){return Wl}static get DATETIME_FULL_WITH_SECONDS(){return Bl}static get DATETIME_HUGE(){return Hl}static get DATETIME_HUGE_WITH_SECONDS(){return $l}};function Fs(s){if(R.isDateTime(s))return s;if(s&&s.valueOf&&re(s.valueOf()))return R.fromJSDate(s);if(s&&typeof s=="object")return R.fromObject(s);throw new Q(`Unknown datetime argument: ${s}, of type ${typeof s}`)}var Gm={datetime:R.DATETIME_MED_WITH_SECONDS,millisecond:"h:mm:ss.SSS a",second:R.TIME_WITH_SECONDS,minute:R.TIME_SIMPLE,hour:{hour:"numeric"},day:{day:"numeric",month:"short"},week:"DD",month:{month:"short",year:"numeric"},quarter:"'Q'q - yyyy",year:{year:"numeric"}};to._date.override({_id:"luxon",_create:function(s){return R.fromMillis(s,this.options)},init(s){this.options.locale||(this.options.locale=s.locale)},formats:function(){return Gm},parse:function(s,t){let e=this.options,i=typeof s;return s===null||i==="undefined"?null:(i==="number"?s=this._create(s):i==="string"?typeof t=="string"?s=R.fromFormat(s,t,e):s=R.fromISO(s,e):s instanceof Date?s=R.fromJSDate(s,e):i==="object"&&!(s instanceof R)&&(s=R.fromObject(s,e)),s.isValid?s.valueOf():null)},format:function(s,t){let e=this._create(s);return typeof t=="string"?e.toFormat(t):e.toLocaleString(t)},add:function(s,t,e){let i={};return i[e]=t,this._create(s).plus(i).valueOf()},diff:function(s,t,e){return this._create(s).diff(this._create(t)).as(e).valueOf()},startOf:function(s,t,e){if(t==="isoWeek"){e=Math.trunc(Math.min(Math.max(0,e),6));let i=this._create(s);return i.minus({days:(i.weekday-e+7)%7}).startOf("day").valueOf()}return t?this._create(s).startOf(t).valueOf():s},endOf:function(s,t){return this._create(s).endOf(t).valueOf()}});window.filamentChartJsGlobalPlugins&&Array.isArray(window.filamentChartJsGlobalPlugins)&&window.filamentChartJsGlobalPlugins.length>0&&Mt.register(...window.filamentChartJsGlobalPlugins);function Xm({cachedData:s,maxHeight:t,options:e,type:i}){return{userPointBackgroundColor:e?.pointBackgroundColor,userXGridColor:e?.scales?.x?.grid?.color,userYGridColor:e?.scales?.y?.grid?.color,userRadialGridColor:e?.scales?.r?.grid?.color,userRadialTicksColor:e?.scales?.r?.ticks?.color,init(){this.initChart(),this.$wire.$on("updateChartData",({data:n})=>{let o=this.getChart();o&&(s=n,o.data=n,o.update("resize"))}),Alpine.effect(()=>{Alpine.store("theme"),this.$nextTick(()=>{let n=this.getChart();n&&(n.destroy(),this.initChart())})}),window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change",()=>{Alpine.store("theme")==="system"&&this.$nextTick(()=>{let n=this.getChart();n&&(n.destroy(),this.initChart())})}),this.resizeObserver=new ResizeObserver(Alpine.debounce(()=>{let n=this.getChart();n&&(n.destroy(),this.initChart())},250)),this.resizeObserver.observe(this.$el)},initChart(n=null){var a,l,c,h,u,d,f,g,m,p,b,y,_,w,x,k;if(!this.$refs.canvas||!this.$refs.backgroundColorElement||!this.$refs.borderColorElement||!this.$refs.textColorElement||!this.$refs.gridColorElement)return;Mt.defaults.animation.duration=0,Mt.defaults.backgroundColor=getComputedStyle(this.$refs.backgroundColorElement).color;let o=getComputedStyle(this.$refs.borderColorElement).color;Mt.defaults.borderColor=o,Mt.defaults.color=getComputedStyle(this.$refs.textColorElement).color,Mt.defaults.font.family=getComputedStyle(this.$el).fontFamily,Mt.defaults.plugins.legend.labels.boxWidth=12,Mt.defaults.plugins.legend.position="bottom";let r=getComputedStyle(this.$refs.gridColorElement).color;if(e??(e={}),e.borderWidth??(e.borderWidth=2),e.maintainAspectRatio??(e.maintainAspectRatio=!!t),e.pointBackgroundColor=this.userPointBackgroundColor??o,e.pointHitRadius??(e.pointHitRadius=4),e.pointRadius??(e.pointRadius=2),e.scales??(e.scales={}),(a=e.scales).x??(a.x={}),(l=e.scales.x).border??(l.border={}),(c=e.scales.x.border).display??(c.display=!1),(h=e.scales.x).grid??(h.grid={}),e.scales.x.grid.color=this.userXGridColor??r,(u=e.scales.x.grid).display??(u.display=!1),(d=e.scales).y??(d.y={}),(f=e.scales.y).border??(f.border={}),(g=e.scales.y.border).display??(g.display=!1),(m=e.scales.y).grid??(m.grid={}),e.scales.y.grid.color=this.userYGridColor??r,["doughnut","pie","polarArea"].includes(i)&&((p=e.scales.x).display??(p.display=!1),(b=e.scales.y).display??(b.display=!1),(y=e.scales.y.grid).display??(y.display=!1)),i==="polarArea"){let S=getComputedStyle(this.$refs.textColorElement).color;(_=e.scales).r??(_.r={}),(w=e.scales.r).grid??(w.grid={}),e.scales.r.grid.color=this.userRadialGridColor??r,(x=e.scales.r).ticks??(x.ticks={}),e.scales.r.ticks.color=this.userRadialTicksColor??S,(k=e.scales.r.ticks).backdropColor??(k.backdropColor="transparent")}return new Mt(this.$refs.canvas,{type:i,data:n??s,options:e,plugins:window.filamentChartJsPlugins??[]})},getChart(){return this.$refs.canvas?Mt.getChart(this.$refs.canvas):null},destroy(){this.resizeObserver&&this.resizeObserver.disconnect(),this.getChart()?.destroy()}}}export{Xm as default}; +/*! Bundled license information: + +@kurkle/color/dist/color.esm.js: + (*! + * @kurkle/color v0.3.4 + * https://github.com/kurkle/color#readme + * (c) 2024 Jukka Kurkela + * Released under the MIT License + *) + +chart.js/dist/chunks/helpers.dataset.js: +chart.js/dist/chart.js: + (*! + * Chart.js v4.5.1 + * https://www.chartjs.org + * (c) 2025 Chart.js Contributors + * Released under the MIT License + *) + +chartjs-adapter-luxon/dist/chartjs-adapter-luxon.esm.js: + (*! + * chartjs-adapter-luxon v1.3.1 + * https://www.chartjs.org + * (c) 2023 chartjs-adapter-luxon Contributors + * Released under the MIT license + *) +*/ diff --git a/public/js/filament/widgets/components/stats-overview/stat/chart.js b/public/js/filament/widgets/components/stats-overview/stat/chart.js new file mode 100644 index 0000000..dd83e71 --- /dev/null +++ b/public/js/filament/widgets/components/stats-overview/stat/chart.js @@ -0,0 +1,22 @@ +var Jo=Object.defineProperty;var Zo=(i,t,e)=>t in i?Jo(i,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):i[t]=e;var M=(i,t,e)=>Zo(i,typeof t!="symbol"?t+"":t,e);function ve(i){return i+.5|0}var wt=(i,t,e)=>Math.max(Math.min(i,e),t);function _e(i){return wt(ve(i*2.55),0,255)}function St(i){return wt(ve(i*255),0,255)}function mt(i){return wt(ve(i/2.55)/100,0,1)}function zs(i){return wt(ve(i*100),0,100)}var nt={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,A:10,B:11,C:12,D:13,E:14,F:15,a:10,b:11,c:12,d:13,e:14,f:15},Ai=[..."0123456789ABCDEF"],Qo=i=>Ai[i&15],ta=i=>Ai[(i&240)>>4]+Ai[i&15],Ue=i=>(i&240)>>4===(i&15),ea=i=>Ue(i.r)&&Ue(i.g)&&Ue(i.b)&&Ue(i.a);function ia(i){var t=i.length,e;return i[0]==="#"&&(t===4||t===5?e={r:255&nt[i[1]]*17,g:255&nt[i[2]]*17,b:255&nt[i[3]]*17,a:t===5?nt[i[4]]*17:255}:(t===7||t===9)&&(e={r:nt[i[1]]<<4|nt[i[2]],g:nt[i[3]]<<4|nt[i[4]],b:nt[i[5]]<<4|nt[i[6]],a:t===9?nt[i[7]]<<4|nt[i[8]]:255})),e}var sa=(i,t)=>i<255?t(i):"";function na(i){var t=ea(i)?Qo:ta;return i?"#"+t(i.r)+t(i.g)+t(i.b)+sa(i.a,t):void 0}var oa=/^(hsla?|hwb|hsv)\(\s*([-+.e\d]+)(?:deg)?[\s,]+([-+.e\d]+)%[\s,]+([-+.e\d]+)%(?:[\s,]+([-+.e\d]+)(%)?)?\s*\)$/;function Ns(i,t,e){let s=t*Math.min(e,1-e),n=(o,a=(o+i/30)%12)=>e-s*Math.max(Math.min(a-3,9-a,1),-1);return[n(0),n(8),n(4)]}function aa(i,t,e){let s=(n,o=(n+i/60)%6)=>e-e*t*Math.max(Math.min(o,4-o,1),0);return[s(5),s(3),s(1)]}function ra(i,t,e){let s=Ns(i,1,.5),n;for(t+e>1&&(n=1/(t+e),t*=n,e*=n),n=0;n<3;n++)s[n]*=1-t-e,s[n]+=t;return s}function la(i,t,e,s,n){return i===n?(t-e)/s+(t.5?h/(2-o-a):h/(o+a),l=la(e,s,n,h,o),l=l*60+.5),[l|0,c||0,r]}function Li(i,t,e,s){return(Array.isArray(t)?i(t[0],t[1],t[2]):i(t,e,s)).map(St)}function Ri(i,t,e){return Li(Ns,i,t,e)}function ca(i,t,e){return Li(ra,i,t,e)}function ha(i,t,e){return Li(aa,i,t,e)}function Hs(i){return(i%360+360)%360}function da(i){let t=oa.exec(i),e=255,s;if(!t)return;t[5]!==s&&(e=t[6]?_e(+t[5]):St(+t[5]));let n=Hs(+t[2]),o=+t[3]/100,a=+t[4]/100;return t[1]==="hwb"?s=ca(n,o,a):t[1]==="hsv"?s=ha(n,o,a):s=Ri(n,o,a),{r:s[0],g:s[1],b:s[2],a:e}}function ua(i,t){var e=Ti(i);e[0]=Hs(e[0]+t),e=Ri(e),i.r=e[0],i.g=e[1],i.b=e[2]}function fa(i){if(!i)return;let t=Ti(i),e=t[0],s=zs(t[1]),n=zs(t[2]);return i.a<255?`hsla(${e}, ${s}%, ${n}%, ${mt(i.a)})`:`hsl(${e}, ${s}%, ${n}%)`}var Bs={x:"dark",Z:"light",Y:"re",X:"blu",W:"gr",V:"medium",U:"slate",A:"ee",T:"ol",S:"or",B:"ra",C:"lateg",D:"ights",R:"in",Q:"turquois",E:"hi",P:"ro",O:"al",N:"le",M:"de",L:"yello",F:"en",K:"ch",G:"arks",H:"ea",I:"ightg",J:"wh"},Vs={OiceXe:"f0f8ff",antiquewEte:"faebd7",aqua:"ffff",aquamarRe:"7fffd4",azuY:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"0",blanKedOmond:"ffebcd",Xe:"ff",XeviTet:"8a2be2",bPwn:"a52a2a",burlywood:"deb887",caMtXe:"5f9ea0",KartYuse:"7fff00",KocTate:"d2691e",cSO:"ff7f50",cSnflowerXe:"6495ed",cSnsilk:"fff8dc",crimson:"dc143c",cyan:"ffff",xXe:"8b",xcyan:"8b8b",xgTMnPd:"b8860b",xWay:"a9a9a9",xgYF:"6400",xgYy:"a9a9a9",xkhaki:"bdb76b",xmagFta:"8b008b",xTivegYF:"556b2f",xSange:"ff8c00",xScEd:"9932cc",xYd:"8b0000",xsOmon:"e9967a",xsHgYF:"8fbc8f",xUXe:"483d8b",xUWay:"2f4f4f",xUgYy:"2f4f4f",xQe:"ced1",xviTet:"9400d3",dAppRk:"ff1493",dApskyXe:"bfff",dimWay:"696969",dimgYy:"696969",dodgerXe:"1e90ff",fiYbrick:"b22222",flSOwEte:"fffaf0",foYstWAn:"228b22",fuKsia:"ff00ff",gaRsbSo:"dcdcdc",ghostwEte:"f8f8ff",gTd:"ffd700",gTMnPd:"daa520",Way:"808080",gYF:"8000",gYFLw:"adff2f",gYy:"808080",honeyMw:"f0fff0",hotpRk:"ff69b4",RdianYd:"cd5c5c",Rdigo:"4b0082",ivSy:"fffff0",khaki:"f0e68c",lavFMr:"e6e6fa",lavFMrXsh:"fff0f5",lawngYF:"7cfc00",NmoncEffon:"fffacd",ZXe:"add8e6",ZcSO:"f08080",Zcyan:"e0ffff",ZgTMnPdLw:"fafad2",ZWay:"d3d3d3",ZgYF:"90ee90",ZgYy:"d3d3d3",ZpRk:"ffb6c1",ZsOmon:"ffa07a",ZsHgYF:"20b2aa",ZskyXe:"87cefa",ZUWay:"778899",ZUgYy:"778899",ZstAlXe:"b0c4de",ZLw:"ffffe0",lime:"ff00",limegYF:"32cd32",lRF:"faf0e6",magFta:"ff00ff",maPon:"800000",VaquamarRe:"66cdaa",VXe:"cd",VScEd:"ba55d3",VpurpN:"9370db",VsHgYF:"3cb371",VUXe:"7b68ee",VsprRggYF:"fa9a",VQe:"48d1cc",VviTetYd:"c71585",midnightXe:"191970",mRtcYam:"f5fffa",mistyPse:"ffe4e1",moccasR:"ffe4b5",navajowEte:"ffdead",navy:"80",Tdlace:"fdf5e6",Tive:"808000",TivedBb:"6b8e23",Sange:"ffa500",SangeYd:"ff4500",ScEd:"da70d6",pOegTMnPd:"eee8aa",pOegYF:"98fb98",pOeQe:"afeeee",pOeviTetYd:"db7093",papayawEp:"ffefd5",pHKpuff:"ffdab9",peru:"cd853f",pRk:"ffc0cb",plum:"dda0dd",powMrXe:"b0e0e6",purpN:"800080",YbeccapurpN:"663399",Yd:"ff0000",Psybrown:"bc8f8f",PyOXe:"4169e1",saddNbPwn:"8b4513",sOmon:"fa8072",sandybPwn:"f4a460",sHgYF:"2e8b57",sHshell:"fff5ee",siFna:"a0522d",silver:"c0c0c0",skyXe:"87ceeb",UXe:"6a5acd",UWay:"708090",UgYy:"708090",snow:"fffafa",sprRggYF:"ff7f",stAlXe:"4682b4",tan:"d2b48c",teO:"8080",tEstN:"d8bfd8",tomato:"ff6347",Qe:"40e0d0",viTet:"ee82ee",JHt:"f5deb3",wEte:"ffffff",wEtesmoke:"f5f5f5",Lw:"ffff00",LwgYF:"9acd32"};function ga(){let i={},t=Object.keys(Vs),e=Object.keys(Bs),s,n,o,a,r;for(s=0;s>16&255,o>>8&255,o&255]}return i}var Xe;function pa(i){Xe||(Xe=ga(),Xe.transparent=[0,0,0,0]);let t=Xe[i.toLowerCase()];return t&&{r:t[0],g:t[1],b:t[2],a:t.length===4?t[3]:255}}var ma=/^rgba?\(\s*([-+.\d]+)(%)?[\s,]+([-+.e\d]+)(%)?[\s,]+([-+.e\d]+)(%)?(?:[\s,/]+([-+.e\d]+)(%)?)?\s*\)$/;function ba(i){let t=ma.exec(i),e=255,s,n,o;if(t){if(t[7]!==s){let a=+t[7];e=t[8]?_e(a):wt(a*255,0,255)}return s=+t[1],n=+t[3],o=+t[5],s=255&(t[2]?_e(s):wt(s,0,255)),n=255&(t[4]?_e(n):wt(n,0,255)),o=255&(t[6]?_e(o):wt(o,0,255)),{r:s,g:n,b:o,a:e}}}function xa(i){return i&&(i.a<255?`rgba(${i.r}, ${i.g}, ${i.b}, ${mt(i.a)})`:`rgb(${i.r}, ${i.g}, ${i.b})`)}var Ci=i=>i<=.0031308?i*12.92:Math.pow(i,1/2.4)*1.055-.055,Gt=i=>i<=.04045?i/12.92:Math.pow((i+.055)/1.055,2.4);function _a(i,t,e){let s=Gt(mt(i.r)),n=Gt(mt(i.g)),o=Gt(mt(i.b));return{r:St(Ci(s+e*(Gt(mt(t.r))-s))),g:St(Ci(n+e*(Gt(mt(t.g))-n))),b:St(Ci(o+e*(Gt(mt(t.b))-o))),a:i.a+e*(t.a-i.a)}}function Ke(i,t,e){if(i){let s=Ti(i);s[t]=Math.max(0,Math.min(s[t]+s[t]*e,t===0?360:1)),s=Ri(s),i.r=s[0],i.g=s[1],i.b=s[2]}}function js(i,t){return i&&Object.assign(t||{},i)}function Ws(i){var t={r:0,g:0,b:0,a:255};return Array.isArray(i)?i.length>=3&&(t={r:i[0],g:i[1],b:i[2],a:255},i.length>3&&(t.a=St(i[3]))):(t=js(i,{r:0,g:0,b:0,a:1}),t.a=St(t.a)),t}function ya(i){return i.charAt(0)==="r"?ba(i):da(i)}var ye=class i{constructor(t){if(t instanceof i)return t;let e=typeof t,s;e==="object"?s=Ws(t):e==="string"&&(s=ia(t)||pa(t)||ya(t)),this._rgb=s,this._valid=!!s}get valid(){return this._valid}get rgb(){var t=js(this._rgb);return t&&(t.a=mt(t.a)),t}set rgb(t){this._rgb=Ws(t)}rgbString(){return this._valid?xa(this._rgb):void 0}hexString(){return this._valid?na(this._rgb):void 0}hslString(){return this._valid?fa(this._rgb):void 0}mix(t,e){if(t){let s=this.rgb,n=t.rgb,o,a=e===o?.5:e,r=2*a-1,l=s.a-n.a,c=((r*l===-1?r:(r+l)/(1+r*l))+1)/2;o=1-c,s.r=255&c*s.r+o*n.r+.5,s.g=255&c*s.g+o*n.g+.5,s.b=255&c*s.b+o*n.b+.5,s.a=a*s.a+(1-a)*n.a,this.rgb=s}return this}interpolate(t,e){return t&&(this._rgb=_a(this._rgb,t._rgb,e)),this}clone(){return new i(this.rgb)}alpha(t){return this._rgb.a=St(t),this}clearer(t){let e=this._rgb;return e.a*=1-t,this}greyscale(){let t=this._rgb,e=ve(t.r*.3+t.g*.59+t.b*.11);return t.r=t.g=t.b=e,this}opaquer(t){let e=this._rgb;return e.a*=1+t,this}negate(){let t=this._rgb;return t.r=255-t.r,t.g=255-t.g,t.b=255-t.b,this}lighten(t){return Ke(this._rgb,2,t),this}darken(t){return Ke(this._rgb,2,-t),this}saturate(t){return Ke(this._rgb,1,t),this}desaturate(t){return Ke(this._rgb,1,-t),this}rotate(t){return ua(this._rgb,t),this}};function dt(){}var tn=(()=>{let i=0;return()=>i++})();function A(i){return i==null}function z(i){if(Array.isArray&&Array.isArray(i))return!0;let t=Object.prototype.toString.call(i);return t.slice(0,7)==="[object"&&t.slice(-6)==="Array]"}function T(i){return i!==null&&Object.prototype.toString.call(i)==="[object Object]"}function N(i){return(typeof i=="number"||i instanceof Number)&&isFinite(+i)}function Z(i,t){return N(i)?i:t}function D(i,t){return typeof i>"u"?t:i}var en=(i,t)=>typeof i=="string"&&i.endsWith("%")?parseFloat(i)/100:+i/t,zi=(i,t)=>typeof i=="string"&&i.endsWith("%")?parseFloat(i)/100*t:+i;function F(i,t,e){if(i&&typeof i.call=="function")return i.apply(e,t)}function E(i,t,e,s){let n,o,a;if(z(i))if(o=i.length,s)for(n=o-1;n>=0;n--)t.call(e,i[n],n);else for(n=0;ni,x:i=>i.x,y:i=>i.y};function ka(i){let t=i.split("."),e=[],s="";for(let n of t)s+=n,s.endsWith("\\")?s=s.slice(0,-1)+".":(e.push(s),s="");return e}function wa(i){let t=ka(i);return e=>{for(let s of t){if(s==="")break;e=e&&e[s]}return e}}function _t(i,t){return($s[t]||($s[t]=wa(t)))(i)}function ii(i){return i.charAt(0).toUpperCase()+i.slice(1)}var ee=i=>typeof i<"u",bt=i=>typeof i=="function",Bi=(i,t)=>{if(i.size!==t.size)return!1;for(let e of i)if(!t.has(e))return!1;return!0};function nn(i){return i.type==="mouseup"||i.type==="click"||i.type==="contextmenu"}var R=Math.PI,B=2*R,Sa=B+R,Qe=Number.POSITIVE_INFINITY,Pa=R/180,H=R/2,Ft=R/4,Ys=R*2/3,xt=Math.log10,lt=Math.sign;function ie(i,t,e){return Math.abs(i-t)n-o).pop(),t}function Da(i){return typeof i=="symbol"||typeof i=="object"&&i!==null&&!(Symbol.toPrimitive in i||"toString"in i||"valueOf"in i)}function Vt(i){return!Da(i)&&!isNaN(parseFloat(i))&&isFinite(i)}function an(i,t){let e=Math.round(i);return e-t<=i&&e+t>=i}function Wi(i,t,e){let s,n,o;for(s=0,n=i.length;sl&&c=Math.min(t,e)-s&&i<=Math.max(t,e)+s}function ni(i,t,e){e=e||(a=>i[a]1;)o=n+s>>1,e(o)?n=o:s=o;return{lo:n,hi:s}}var ct=(i,t,e,s)=>ni(i,e,s?n=>{let o=i[n][t];return oi[n][t]ni(i,e,s=>i[s][t]>=e);function cn(i,t,e){let s=0,n=i.length;for(;ss&&i[n-1]>e;)n--;return s>0||n{let s="_onData"+ii(e),n=i[e];Object.defineProperty(i,e,{configurable:!0,enumerable:!1,value(...o){let a=n.apply(this,o);return i._chartjs.listeners.forEach(r=>{typeof r[s]=="function"&&r[s](...o)}),a}})})}function ji(i,t){let e=i._chartjs;if(!e)return;let s=e.listeners,n=s.indexOf(t);n!==-1&&s.splice(n,1),!(s.length>0)&&(hn.forEach(o=>{delete i[o]}),delete i._chartjs)}function $i(i){let t=new Set(i);return t.size===i.length?i:Array.from(t)}var Yi=(function(){return typeof window>"u"?function(i){return i()}:window.requestAnimationFrame})();function Ui(i,t){let e=[],s=!1;return function(...n){e=n,s||(s=!0,Yi.call(window,()=>{s=!1,i.apply(t,e)}))}}function un(i,t){let e;return function(...s){return t?(clearTimeout(e),e=setTimeout(i,t,s)):i.apply(this,s),t}}var oi=i=>i==="start"?"left":i==="end"?"right":"center",K=(i,t,e)=>i==="start"?t:i==="end"?e:(t+e)/2,fn=(i,t,e,s)=>i===(s?"left":"right")?e:i==="center"?(t+e)/2:t;function Xi(i,t,e){let s=t.length,n=0,o=s;if(i._sorted){let{iScale:a,vScale:r,_parsed:l}=i,c=i.dataset&&i.dataset.options?i.dataset.options.spanGaps:null,h=a.axis,{min:d,max:u,minDefined:f,maxDefined:g}=a.getUserBounds();if(f){if(n=Math.min(ct(l,h,d).lo,e?s:ct(t,h,a.getPixelForValue(d)).lo),c){let p=l.slice(0,n+1).reverse().findIndex(m=>!A(m[r.axis]));n-=Math.max(0,p)}n=Y(n,0,s-1)}if(g){let p=Math.max(ct(l,a.axis,u,!0).hi+1,e?0:ct(t,h,a.getPixelForValue(u),!0).hi+1);if(c){let m=l.slice(p-1).findIndex(b=>!A(b[r.axis]));p+=Math.max(0,m)}o=Y(p,n,s)-n}else o=s-n}return{start:n,count:o}}function Ki(i){let{xScale:t,yScale:e,_scaleRanges:s}=i,n={xmin:t.min,xmax:t.max,ymin:e.min,ymax:e.max};if(!s)return i._scaleRanges=n,!0;let o=s.xmin!==t.min||s.xmax!==t.max||s.ymin!==e.min||s.ymax!==e.max;return Object.assign(s,n),o}var qe=i=>i===0||i===1,Us=(i,t,e)=>-(Math.pow(2,10*(i-=1))*Math.sin((i-t)*B/e)),Xs=(i,t,e)=>Math.pow(2,-10*i)*Math.sin((i-t)*B/e)+1,Jt={linear:i=>i,easeInQuad:i=>i*i,easeOutQuad:i=>-i*(i-2),easeInOutQuad:i=>(i/=.5)<1?.5*i*i:-.5*(--i*(i-2)-1),easeInCubic:i=>i*i*i,easeOutCubic:i=>(i-=1)*i*i+1,easeInOutCubic:i=>(i/=.5)<1?.5*i*i*i:.5*((i-=2)*i*i+2),easeInQuart:i=>i*i*i*i,easeOutQuart:i=>-((i-=1)*i*i*i-1),easeInOutQuart:i=>(i/=.5)<1?.5*i*i*i*i:-.5*((i-=2)*i*i*i-2),easeInQuint:i=>i*i*i*i*i,easeOutQuint:i=>(i-=1)*i*i*i*i+1,easeInOutQuint:i=>(i/=.5)<1?.5*i*i*i*i*i:.5*((i-=2)*i*i*i*i+2),easeInSine:i=>-Math.cos(i*H)+1,easeOutSine:i=>Math.sin(i*H),easeInOutSine:i=>-.5*(Math.cos(R*i)-1),easeInExpo:i=>i===0?0:Math.pow(2,10*(i-1)),easeOutExpo:i=>i===1?1:-Math.pow(2,-10*i)+1,easeInOutExpo:i=>qe(i)?i:i<.5?.5*Math.pow(2,10*(i*2-1)):.5*(-Math.pow(2,-10*(i*2-1))+2),easeInCirc:i=>i>=1?i:-(Math.sqrt(1-i*i)-1),easeOutCirc:i=>Math.sqrt(1-(i-=1)*i),easeInOutCirc:i=>(i/=.5)<1?-.5*(Math.sqrt(1-i*i)-1):.5*(Math.sqrt(1-(i-=2)*i)+1),easeInElastic:i=>qe(i)?i:Us(i,.075,.3),easeOutElastic:i=>qe(i)?i:Xs(i,.075,.3),easeInOutElastic(i){return qe(i)?i:i<.5?.5*Us(i*2,.1125,.45):.5+.5*Xs(i*2-1,.1125,.45)},easeInBack(i){return i*i*((1.70158+1)*i-1.70158)},easeOutBack(i){return(i-=1)*i*((1.70158+1)*i+1.70158)+1},easeInOutBack(i){let t=1.70158;return(i/=.5)<1?.5*(i*i*(((t*=1.525)+1)*i-t)):.5*((i-=2)*i*(((t*=1.525)+1)*i+t)+2)},easeInBounce:i=>1-Jt.easeOutBounce(1-i),easeOutBounce(i){return i<1/2.75?7.5625*i*i:i<2/2.75?7.5625*(i-=1.5/2.75)*i+.75:i<2.5/2.75?7.5625*(i-=2.25/2.75)*i+.9375:7.5625*(i-=2.625/2.75)*i+.984375},easeInOutBounce:i=>i<.5?Jt.easeInBounce(i*2)*.5:Jt.easeOutBounce(i*2-1)*.5+.5};function qi(i){if(i&&typeof i=="object"){let t=i.toString();return t==="[object CanvasPattern]"||t==="[object CanvasGradient]"}return!1}function Gi(i){return qi(i)?i:new ye(i)}function Ei(i){return qi(i)?i:new ye(i).saturate(.5).darken(.1).hexString()}var Ca=["x","y","borderWidth","radius","tension"],Aa=["color","borderColor","backgroundColor"];function Ta(i){i.set("animation",{delay:void 0,duration:1e3,easing:"easeOutQuart",fn:void 0,from:void 0,loop:void 0,to:void 0,type:void 0}),i.describe("animation",{_fallback:!1,_indexable:!1,_scriptable:t=>t!=="onProgress"&&t!=="onComplete"&&t!=="fn"}),i.set("animations",{colors:{type:"color",properties:Aa},numbers:{type:"number",properties:Ca}}),i.describe("animations",{_fallback:"animation"}),i.set("transitions",{active:{animation:{duration:400}},resize:{animation:{duration:0}},show:{animations:{colors:{from:"transparent"},visible:{type:"boolean",duration:0}}},hide:{animations:{colors:{to:"transparent"},visible:{type:"boolean",easing:"linear",fn:t=>t|0}}}})}function La(i){i.set("layout",{autoPadding:!0,padding:{top:0,right:0,bottom:0,left:0}})}var Ks=new Map;function Ra(i,t){t=t||{};let e=i+JSON.stringify(t),s=Ks.get(e);return s||(s=new Intl.NumberFormat(i,t),Ks.set(e,s)),s}function ne(i,t,e){return Ra(t,e).format(i)}var gn={values(i){return z(i)?i:""+i},numeric(i,t,e){if(i===0)return"0";let s=this.chart.options.locale,n,o=i;if(e.length>1){let c=Math.max(Math.abs(e[0].value),Math.abs(e[e.length-1].value));(c<1e-4||c>1e15)&&(n="scientific"),o=Ea(i,e)}let a=xt(Math.abs(o)),r=isNaN(a)?1:Math.max(Math.min(-1*Math.floor(a),20),0),l={notation:n,minimumFractionDigits:r,maximumFractionDigits:r};return Object.assign(l,this.options.ticks.format),ne(i,s,l)},logarithmic(i,t,e){if(i===0)return"0";let s=e[t].significand||i/Math.pow(10,Math.floor(xt(i)));return[1,2,3,5,10,15].includes(s)||t>.8*e.length?gn.numeric.call(this,i,t,e):""}};function Ea(i,t){let e=t.length>3?t[2].value-t[1].value:t[1].value-t[0].value;return Math.abs(e)>=1&&i!==Math.floor(i)&&(e=i-Math.floor(i)),e}var Se={formatters:gn};function Ia(i){i.set("scale",{display:!0,offset:!1,reverse:!1,beginAtZero:!1,bounds:"ticks",clip:!0,grace:0,grid:{display:!0,lineWidth:1,drawOnChartArea:!0,drawTicks:!0,tickLength:8,tickWidth:(t,e)=>e.lineWidth,tickColor:(t,e)=>e.color,offset:!1},border:{display:!0,dash:[],dashOffset:0,width:1},title:{display:!1,text:"",padding:{top:4,bottom:4}},ticks:{minRotation:0,maxRotation:50,mirror:!1,textStrokeWidth:0,textStrokeColor:"",padding:3,display:!0,autoSkip:!0,autoSkipPadding:3,labelOffset:0,callback:Se.formatters.values,minor:{},major:{},align:"center",crossAlign:"near",showLabelBackdrop:!1,backdropColor:"rgba(255, 255, 255, 0.75)",backdropPadding:2}}),i.route("scale.ticks","color","","color"),i.route("scale.grid","color","","borderColor"),i.route("scale.border","color","","borderColor"),i.route("scale.title","color","","color"),i.describe("scale",{_fallback:!1,_scriptable:t=>!t.startsWith("before")&&!t.startsWith("after")&&t!=="callback"&&t!=="parser",_indexable:t=>t!=="borderDash"&&t!=="tickBorderDash"&&t!=="dash"}),i.describe("scales",{_fallback:"scale"}),i.describe("scale.ticks",{_scriptable:t=>t!=="backdropPadding"&&t!=="callback",_indexable:t=>t!=="backdropPadding"})}var Ot=Object.create(null),ai=Object.create(null);function Me(i,t){if(!t)return i;let e=t.split(".");for(let s=0,n=e.length;ss.chart.platform.getDevicePixelRatio(),this.elements={},this.events=["mousemove","mouseout","click","touchstart","touchmove"],this.font={family:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",size:12,style:"normal",lineHeight:1.2,weight:null},this.hover={},this.hoverBackgroundColor=(s,n)=>Ei(n.backgroundColor),this.hoverBorderColor=(s,n)=>Ei(n.borderColor),this.hoverColor=(s,n)=>Ei(n.color),this.indexAxis="x",this.interaction={mode:"nearest",intersect:!0,includeInvisible:!1},this.maintainAspectRatio=!0,this.onHover=null,this.onClick=null,this.parsing=!0,this.plugins={},this.responsive=!0,this.scale=void 0,this.scales={},this.showLine=!0,this.drawActiveElementsOnTop=!0,this.describe(t),this.apply(e)}set(t,e){return Ii(this,t,e)}get(t){return Me(this,t)}describe(t,e){return Ii(ai,t,e)}override(t,e){return Ii(Ot,t,e)}route(t,e,s,n){let o=Me(this,t),a=Me(this,s),r="_"+e;Object.defineProperties(o,{[r]:{value:o[e],writable:!0},[e]:{enumerable:!0,get(){let l=this[r],c=a[n];return T(l)?Object.assign({},c,l):D(l,c)},set(l){this[r]=l}}})}apply(t){t.forEach(e=>e(this))}},V=new Fi({_scriptable:i=>!i.startsWith("on"),_indexable:i=>i!=="events",hover:{_fallback:"interaction"},interaction:{_scriptable:!1,_indexable:!1}},[Ta,La,Ia]);function Fa(i){return!i||A(i.size)||A(i.family)?null:(i.style?i.style+" ":"")+(i.weight?i.weight+" ":"")+i.size+"px "+i.family}function ke(i,t,e,s,n){let o=t[n];return o||(o=t[n]=i.measureText(n).width,e.push(n)),o>s&&(s=o),s}function pn(i,t,e,s){s=s||{};let n=s.data=s.data||{},o=s.garbageCollect=s.garbageCollect||[];s.font!==t&&(n=s.data={},o=s.garbageCollect=[],s.font=t),i.save(),i.font=t;let a=0,r=e.length,l,c,h,d,u;for(l=0;le.length){for(l=0;l0&&i.stroke()}}function ht(i,t,e){return e=e||.5,!t||i&&i.x>t.left-e&&i.xt.top-e&&i.y0&&o.strokeColor!=="",l,c;for(i.save(),i.font=n.string,za(i,o),l=0;l+i||0;function li(i,t){let e={},s=T(t),n=s?Object.keys(t):t,o=T(i)?s?a=>D(i[a],i[t[a]]):a=>i[a]:()=>i;for(let a of n)e[a]=ja(o(a));return e}function Qi(i){return li(i,{top:"y",right:"x",bottom:"y",left:"x"})}function Tt(i){return li(i,["topLeft","topRight","bottomLeft","bottomRight"])}function q(i){let t=Qi(i);return t.width=t.left+t.right,t.height=t.top+t.bottom,t}function $(i,t){i=i||{},t=t||V.font;let e=D(i.size,t.size);typeof e=="string"&&(e=parseInt(e,10));let s=D(i.style,t.style);s&&!(""+s).match(Na)&&(console.warn('Invalid font style specified: "'+s+'"'),s=void 0);let n={family:D(i.family,t.family),lineHeight:Ha(D(i.lineHeight,t.lineHeight),e),size:e,style:s,weight:D(i.weight,t.weight),string:""};return n.string=Fa(n),n}function ae(i,t,e,s){let n=!0,o,a,r;for(o=0,a=i.length;oe&&r===0?0:r+l;return{min:a(s,-Math.abs(o)),max:a(n,o)}}function yt(i,t){return Object.assign(Object.create(i),t)}function ci(i,t=[""],e,s,n=()=>i[0]){let o=e||i;typeof s>"u"&&(s=vn("_fallback",i));let a={[Symbol.toStringTag]:"Object",_cacheable:!0,_scopes:i,_rootScopes:o,_fallback:s,_getTarget:n,override:r=>ci([r,...i],t,o,s)};return new Proxy(a,{deleteProperty(r,l){return delete r[l],delete r._keys,delete i[0][l],!0},get(r,l){return _n(r,l,()=>Ja(l,t,i,r))},getOwnPropertyDescriptor(r,l){return Reflect.getOwnPropertyDescriptor(r._scopes[0],l)},getPrototypeOf(){return Reflect.getPrototypeOf(i[0])},has(r,l){return Gs(r).includes(l)},ownKeys(r){return Gs(r)},set(r,l,c){let h=r._storage||(r._storage=n());return r[l]=h[l]=c,delete r._keys,!0}})}function Bt(i,t,e,s){let n={_cacheable:!1,_proxy:i,_context:t,_subProxy:e,_stack:new Set,_descriptors:ts(i,s),setContext:o=>Bt(i,o,e,s),override:o=>Bt(i.override(o),t,e,s)};return new Proxy(n,{deleteProperty(o,a){return delete o[a],delete i[a],!0},get(o,a,r){return _n(o,a,()=>Ya(o,a,r))},getOwnPropertyDescriptor(o,a){return o._descriptors.allKeys?Reflect.has(i,a)?{enumerable:!0,configurable:!0}:void 0:Reflect.getOwnPropertyDescriptor(i,a)},getPrototypeOf(){return Reflect.getPrototypeOf(i)},has(o,a){return Reflect.has(i,a)},ownKeys(){return Reflect.ownKeys(i)},set(o,a,r){return i[a]=r,delete o[a],!0}})}function ts(i,t={scriptable:!0,indexable:!0}){let{_scriptable:e=t.scriptable,_indexable:s=t.indexable,_allKeys:n=t.allKeys}=i;return{allKeys:n,scriptable:e,indexable:s,isScriptable:bt(e)?e:()=>e,isIndexable:bt(s)?s:()=>s}}var $a=(i,t)=>i?i+ii(t):t,es=(i,t)=>T(t)&&i!=="adapters"&&(Object.getPrototypeOf(t)===null||t.constructor===Object);function _n(i,t,e){if(Object.prototype.hasOwnProperty.call(i,t)||t==="constructor")return i[t];let s=e();return i[t]=s,s}function Ya(i,t,e){let{_proxy:s,_context:n,_subProxy:o,_descriptors:a}=i,r=s[t];return bt(r)&&a.isScriptable(t)&&(r=Ua(t,r,i,e)),z(r)&&r.length&&(r=Xa(t,r,i,a.isIndexable)),es(t,r)&&(r=Bt(r,n,o&&o[t],a)),r}function Ua(i,t,e,s){let{_proxy:n,_context:o,_subProxy:a,_stack:r}=e;if(r.has(i))throw new Error("Recursion detected: "+Array.from(r).join("->")+"->"+i);r.add(i);let l=t(o,a||s);return r.delete(i),es(i,l)&&(l=is(n._scopes,n,i,l)),l}function Xa(i,t,e,s){let{_proxy:n,_context:o,_subProxy:a,_descriptors:r}=e;if(typeof o.index<"u"&&s(i))return t[o.index%t.length];if(T(t[0])){let l=t,c=n._scopes.filter(h=>h!==l);t=[];for(let h of l){let d=is(c,n,i,h);t.push(Bt(d,o,a&&a[i],r))}}return t}function yn(i,t,e){return bt(i)?i(t,e):i}var Ka=(i,t)=>i===!0?t:typeof i=="string"?_t(t,i):void 0;function qa(i,t,e,s,n){for(let o of t){let a=Ka(e,o);if(a){i.add(a);let r=yn(a._fallback,e,n);if(typeof r<"u"&&r!==e&&r!==s)return r}else if(a===!1&&typeof s<"u"&&e!==s)return null}return!1}function is(i,t,e,s){let n=t._rootScopes,o=yn(t._fallback,e,s),a=[...i,...n],r=new Set;r.add(s);let l=qs(r,a,e,o||e,s);return l===null||typeof o<"u"&&o!==e&&(l=qs(r,a,o,l,s),l===null)?!1:ci(Array.from(r),[""],n,o,()=>Ga(t,e,s))}function qs(i,t,e,s,n){for(;e;)e=qa(i,t,e,s,n);return e}function Ga(i,t,e){let s=i._getTarget();t in s||(s[t]={});let n=s[t];return z(n)&&T(e)?e:n||{}}function Ja(i,t,e,s){let n;for(let o of t)if(n=vn($a(o,i),e),typeof n<"u")return es(i,n)?is(e,s,i,n):n}function vn(i,t){for(let e of t){if(!e)continue;let s=e[i];if(typeof s<"u")return s}}function Gs(i){let t=i._keys;return t||(t=i._keys=Za(i._scopes)),t}function Za(i){let t=new Set;for(let e of i)for(let s of Object.keys(e).filter(n=>!n.startsWith("_")))t.add(s);return Array.from(t)}function ss(i,t,e,s){let{iScale:n}=i,{key:o="r"}=this._parsing,a=new Array(s),r,l,c,h;for(r=0,l=s;rti==="x"?"y":"x";function tr(i,t,e,s){let n=i.skip?t:i,o=t,a=e.skip?t:e,r=ti(o,n),l=ti(a,o),c=r/(r+l),h=l/(r+l);c=isNaN(c)?0:c,h=isNaN(h)?0:h;let d=s*c,u=s*h;return{previous:{x:o.x-d*(a.x-n.x),y:o.y-d*(a.y-n.y)},next:{x:o.x+u*(a.x-n.x),y:o.y+u*(a.y-n.y)}}}function er(i,t,e){let s=i.length,n,o,a,r,l,c=Qt(i,0);for(let h=0;h!c.skip)),t.cubicInterpolationMode==="monotone")sr(i,n);else{let c=s?i[i.length-1]:i[0];for(o=0,a=i.length;oi.ownerDocument.defaultView.getComputedStyle(i,null);function or(i,t){return ui(i).getPropertyValue(t)}var ar=["top","right","bottom","left"];function zt(i,t,e){let s={};e=e?"-"+e:"";for(let n=0;n<4;n++){let o=ar[n];s[o]=parseFloat(i[t+"-"+o+e])||0}return s.width=s.left+s.right,s.height=s.top+s.bottom,s}var rr=(i,t,e)=>(i>0||t>0)&&(!e||!e.shadowRoot);function lr(i,t){let e=i.touches,s=e&&e.length?e[0]:i,{offsetX:n,offsetY:o}=s,a=!1,r,l;if(rr(n,o,i.target))r=n,l=o;else{let c=t.getBoundingClientRect();r=s.clientX-c.left,l=s.clientY-c.top,a=!0}return{x:r,y:l,box:a}}function Lt(i,t){if("native"in i)return i;let{canvas:e,currentDevicePixelRatio:s}=t,n=ui(e),o=n.boxSizing==="border-box",a=zt(n,"padding"),r=zt(n,"border","width"),{x:l,y:c,box:h}=lr(i,e),d=a.left+(h&&r.left),u=a.top+(h&&r.top),{width:f,height:g}=t;return o&&(f-=a.width+r.width,g-=a.height+r.height),{x:Math.round((l-d)/f*e.width/s),y:Math.round((c-u)/g*e.height/s)}}function cr(i,t,e){let s,n;if(t===void 0||e===void 0){let o=i&&di(i);if(!o)t=i.clientWidth,e=i.clientHeight;else{let a=o.getBoundingClientRect(),r=ui(o),l=zt(r,"border","width"),c=zt(r,"padding");t=a.width-c.width-l.width,e=a.height-c.height-l.height,s=ei(r.maxWidth,o,"clientWidth"),n=ei(r.maxHeight,o,"clientHeight")}}return{width:t,height:e,maxWidth:s||Qe,maxHeight:n||Qe}}var Dt=i=>Math.round(i*10)/10;function wn(i,t,e,s){let n=ui(i),o=zt(n,"margin"),a=ei(n.maxWidth,i,"clientWidth")||Qe,r=ei(n.maxHeight,i,"clientHeight")||Qe,l=cr(i,t,e),{width:c,height:h}=l;if(n.boxSizing==="content-box"){let u=zt(n,"border","width"),f=zt(n,"padding");c-=f.width+u.width,h-=f.height+u.height}return c=Math.max(0,c-o.width),h=Math.max(0,s?c/s:h-o.height),c=Dt(Math.min(c,a,l.maxWidth)),h=Dt(Math.min(h,r,l.maxHeight)),c&&!h&&(h=Dt(c/2)),(t!==void 0||e!==void 0)&&s&&l.height&&h>l.height&&(h=l.height,c=Dt(Math.floor(h*s))),{width:c,height:h}}function ns(i,t,e){let s=t||1,n=Dt(i.height*s),o=Dt(i.width*s);i.height=Dt(i.height),i.width=Dt(i.width);let a=i.canvas;return a.style&&(e||!a.style.height&&!a.style.width)&&(a.style.height=`${i.height}px`,a.style.width=`${i.width}px`),i.currentDevicePixelRatio!==s||a.height!==n||a.width!==o?(i.currentDevicePixelRatio=s,a.height=n,a.width=o,i.ctx.setTransform(s,0,0,s,0,0),!0):!1}var Sn=(function(){let i=!1;try{let t={get passive(){return i=!0,!1}};hi()&&(window.addEventListener("test",null,t),window.removeEventListener("test",null,t))}catch{}return i})();function os(i,t){let e=or(i,t),s=e&&e.match(/^(\d+)(\.\d+)?px$/);return s?+s[1]:void 0}function Pt(i,t,e,s){return{x:i.x+e*(t.x-i.x),y:i.y+e*(t.y-i.y)}}function Pn(i,t,e,s){return{x:i.x+e*(t.x-i.x),y:s==="middle"?e<.5?i.y:t.y:s==="after"?e<1?i.y:t.y:e>0?t.y:i.y}}function Dn(i,t,e,s){let n={x:i.cp2x,y:i.cp2y},o={x:t.cp1x,y:t.cp1y},a=Pt(i,n,e),r=Pt(n,o,e),l=Pt(o,t,e),c=Pt(a,r,e),h=Pt(r,l,e);return Pt(c,h,e)}var hr=function(i,t){return{x(e){return i+i+t-e},setWidth(e){t=e},textAlign(e){return e==="center"?e:e==="right"?"left":"right"},xPlus(e,s){return e-s},leftForLtr(e,s){return e-s}}},dr=function(){return{x(i){return i},setWidth(i){},textAlign(i){return i},xPlus(i,t){return i+t},leftForLtr(i,t){return i}}};function Wt(i,t,e){return i?hr(t,e):dr()}function as(i,t){let e,s;(t==="ltr"||t==="rtl")&&(e=i.canvas.style,s=[e.getPropertyValue("direction"),e.getPropertyPriority("direction")],e.setProperty("direction",t,"important"),i.prevTextDirection=s)}function rs(i,t){t!==void 0&&(delete i.prevTextDirection,i.canvas.style.setProperty("direction",t[0],t[1]))}function On(i){return i==="angle"?{between:se,compare:Oa,normalize:X}:{between:ut,compare:(t,e)=>t-e,normalize:t=>t}}function Js({start:i,end:t,count:e,loop:s,style:n}){return{start:i%e,end:t%e,loop:s&&(t-i+1)%e===0,style:n}}function ur(i,t,e){let{property:s,start:n,end:o}=e,{between:a,normalize:r}=On(s),l=t.length,{start:c,end:h,loop:d}=i,u,f;if(d){for(c+=l,h+=l,u=0,f=l;ul(n,v,b)&&r(n,v)!==0,_=()=>r(o,b)===0||l(o,v,b),k=()=>p||y(),w=()=>!p||_();for(let S=h,P=h;S<=d;++S)x=t[S%a],!x.skip&&(b=c(x[s]),b!==v&&(p=l(b,n,o),m===null&&k()&&(m=r(b,n)===0?S:P),m!==null&&w()&&(g.push(Js({start:m,end:S,loop:u,count:a,style:f})),m=null),P=S,v=b));return m!==null&&g.push(Js({start:m,end:d,loop:u,count:a,style:f})),g}function cs(i,t){let e=[],s=i.segments;for(let n=0;nn&&i[o%t].skip;)o--;return o%=t,{start:n,end:o}}function gr(i,t,e,s){let n=i.length,o=[],a=t,r=i[t],l;for(l=t+1;l<=e;++l){let c=i[l%n];c.skip||c.stop?r.skip||(s=!1,o.push({start:t%n,end:(l-1)%n,loop:s}),t=a=c.stop?l:null):(a=l,r.skip&&(t=l)),r=c}return a!==null&&o.push({start:t%n,end:a%n,loop:s}),o}function Cn(i,t){let e=i.points,s=i.options.spanGaps,n=e.length;if(!n)return[];let o=!!i._loop,{start:a,end:r}=fr(e,n,o,s);if(s===!0)return Zs(i,[{start:a,end:r,loop:o}],e,t);let l=rr({chart:t,initial:e.initial,numSteps:a,currentStep:Math.min(s-e.start,a)}))}_refresh(){this._request||(this._running=!0,this._request=Yi.call(window,()=>{this._update(),this._request=null,this._running&&this._refresh()}))}_update(t=Date.now()){let e=0;this._charts.forEach((s,n)=>{if(!s.running||!s.items.length)return;let o=s.items,a=o.length-1,r=!1,l;for(;a>=0;--a)l=o[a],l._active?(l._total>s.duration&&(s.duration=l._total),l.tick(t),r=!0):(o[a]=o[o.length-1],o.pop());r&&(n.draw(),this._notify(n,s,t,"progress")),o.length||(s.running=!1,this._notify(n,s,t,"complete"),s.initial=!1),e+=o.length}),this._lastDate=t,e===0&&(this._running=!1)}_getAnims(t){let e=this._charts,s=e.get(t);return s||(s={running:!1,initial:!0,items:[],listeners:{complete:[],progress:[]}},e.set(t,s)),s}listen(t,e,s){this._getAnims(t).listeners[e].push(s)}add(t,e){!e||!e.length||this._getAnims(t).items.push(...e)}has(t){return this._getAnims(t).items.length>0}start(t){let e=this._charts.get(t);e&&(e.running=!0,e.start=Date.now(),e.duration=e.items.reduce((s,n)=>Math.max(s,n._duration),0),this._refresh())}running(t){if(!this._running)return!1;let e=this._charts.get(t);return!(!e||!e.running||!e.items.length)}stop(t){let e=this._charts.get(t);if(!e||!e.items.length)return;let s=e.items,n=s.length-1;for(;n>=0;--n)s[n].cancel();e.items=[],this._notify(t,e,Date.now(),"complete")}remove(t){return this._charts.delete(t)}},vt=new Ms,An="transparent",xr={boolean(i,t,e){return e>.5?t:i},color(i,t,e){let s=Gi(i||An),n=s.valid&&Gi(t||An);return n&&n.valid?n.mix(s,e).hexString():t},number(i,t,e){return i+(t-i)*e}},ks=class{constructor(t,e,s,n){let o=e[s];n=ae([t.to,n,o,t.from]);let a=ae([t.from,o,n]);this._active=!0,this._fn=t.fn||xr[t.type||typeof a],this._easing=Jt[t.easing]||Jt.linear,this._start=Math.floor(Date.now()+(t.delay||0)),this._duration=this._total=Math.floor(t.duration),this._loop=!!t.loop,this._target=e,this._prop=s,this._from=a,this._to=n,this._promises=void 0}active(){return this._active}update(t,e,s){if(this._active){this._notify(!1);let n=this._target[this._prop],o=s-this._start,a=this._duration-o;this._start=s,this._duration=Math.floor(Math.max(a,t.duration)),this._total+=o,this._loop=!!t.loop,this._to=ae([t.to,e,n,t.from]),this._from=ae([t.from,n,e])}}cancel(){this._active&&(this.tick(Date.now()),this._active=!1,this._notify(!1))}tick(t){let e=t-this._start,s=this._duration,n=this._prop,o=this._from,a=this._loop,r=this._to,l;if(this._active=o!==r&&(a||e1?2-l:l,l=this._easing(Math.min(1,Math.max(0,l))),this._target[n]=this._fn(o,r,l)}wait(){let t=this._promises||(this._promises=[]);return new Promise((e,s)=>{t.push({res:e,rej:s})})}_notify(t){let e=t?"res":"rej",s=this._promises||[];for(let n=0;n{let o=t[n];if(!T(o))return;let a={};for(let r of e)a[r]=o[r];(z(o.properties)&&o.properties||[n]).forEach(r=>{(r===n||!s.has(r))&&s.set(r,a)})})}_animateOptions(t,e){let s=e.options,n=yr(t,s);if(!n)return[];let o=this._createAnimations(n,s);return s.$shared&&_r(t.options.$animations,s).then(()=>{t.options=s},()=>{}),o}_createAnimations(t,e){let s=this._properties,n=[],o=t.$animations||(t.$animations={}),a=Object.keys(e),r=Date.now(),l;for(l=a.length-1;l>=0;--l){let c=a[l];if(c.charAt(0)==="$")continue;if(c==="options"){n.push(...this._animateOptions(t,e));continue}let h=e[c],d=o[c],u=s.get(c);if(d)if(u&&d.active()){d.update(u,h,r);continue}else d.cancel();if(!u||!u.duration){t[c]=h;continue}o[c]=d=new ks(u,t,c,h),n.push(d)}return n}update(t,e){if(this._properties.size===0){Object.assign(t,e);return}let s=this._createAnimations(t,e);if(s.length)return vt.add(this._chart,s),!0}};function _r(i,t){let e=[],s=Object.keys(t);for(let n=0;n0||!e&&o<0)return n.index}return null}function En(i,t){let{chart:e,_cachedMeta:s}=i,n=e._stacks||(e._stacks={}),{iScale:o,vScale:a,index:r}=s,l=o.axis,c=a.axis,h=wr(o,a,s),d=t.length,u;for(let f=0;fe[s].axis===t).shift()}function Dr(i,t){return yt(i,{active:!1,dataset:void 0,datasetIndex:t,index:t,mode:"default",type:"dataset"})}function Or(i,t,e){return yt(i,{active:!1,dataIndex:t,parsed:void 0,raw:void 0,element:e,index:t,mode:"default",type:"data"})}function Oe(i,t){let e=i.controller.index,s=i.vScale&&i.vScale.axis;if(s){t=t||i._parsed;for(let n of t){let o=n._stacks;if(!o||o[s]===void 0||o[s][e]===void 0)return;delete o[s][e],o[s]._visualValues!==void 0&&o[s]._visualValues[e]!==void 0&&delete o[s]._visualValues[e]}}}var fs=i=>i==="reset"||i==="none",In=(i,t)=>t?i:Object.assign({},i),Cr=(i,t,e)=>i&&!t.hidden&&t._stacked&&{keys:Ao(e,!0),values:null},it=class{constructor(t,e){this.chart=t,this._ctx=t.ctx,this.index=e,this._cachedDataOpts={},this._cachedMeta=this.getMeta(),this._type=this._cachedMeta.type,this.options=void 0,this._parsing=!1,this._data=void 0,this._objectData=void 0,this._sharedOptions=void 0,this._drawStart=void 0,this._drawCount=void 0,this.enableOptionSharing=!1,this.supportsDecimation=!1,this.$context=void 0,this._syncList=[],this.datasetElementType=new.target.datasetElementType,this.dataElementType=new.target.dataElementType,this.initialize()}initialize(){let t=this._cachedMeta;this.configure(),this.linkScales(),t._stacked=ds(t.vScale,t),this.addElements(),this.options.fill&&!this.chart.isPluginEnabled("filler")&&console.warn("Tried to use the 'fill' option without the 'Filler' plugin enabled. Please import and register the 'Filler' plugin and make sure it is not disabled in the options")}updateIndex(t){this.index!==t&&Oe(this._cachedMeta),this.index=t}linkScales(){let t=this.chart,e=this._cachedMeta,s=this.getDataset(),n=(d,u,f,g)=>d==="x"?u:d==="r"?g:f,o=e.xAxisID=D(s.xAxisID,us(t,"x")),a=e.yAxisID=D(s.yAxisID,us(t,"y")),r=e.rAxisID=D(s.rAxisID,us(t,"r")),l=e.indexAxis,c=e.iAxisID=n(l,o,a,r),h=e.vAxisID=n(l,a,o,r);e.xScale=this.getScaleForId(o),e.yScale=this.getScaleForId(a),e.rScale=this.getScaleForId(r),e.iScale=this.getScaleForId(c),e.vScale=this.getScaleForId(h)}getDataset(){return this.chart.data.datasets[this.index]}getMeta(){return this.chart.getDatasetMeta(this.index)}getScaleForId(t){return this.chart.scales[t]}_getOtherScale(t){let e=this._cachedMeta;return t===e.iScale?e.vScale:e.iScale}reset(){this._update("reset")}_destroy(){let t=this._cachedMeta;this._data&&ji(this._data,this),t._stacked&&Oe(t)}_dataCheck(){let t=this.getDataset(),e=t.data||(t.data=[]),s=this._data;if(T(e)){let n=this._cachedMeta;this._data=kr(e,n)}else if(s!==e){if(s){ji(s,this);let n=this._cachedMeta;Oe(n),n._parsed=[]}e&&Object.isExtensible(e)&&dn(e,this),this._syncList=[],this._data=e}}addElements(){let t=this._cachedMeta;this._dataCheck(),this.datasetElementType&&(t.dataset=new this.datasetElementType)}buildOrUpdateElements(t){let e=this._cachedMeta,s=this.getDataset(),n=!1;this._dataCheck();let o=e._stacked;e._stacked=ds(e.vScale,e),e.stack!==s.stack&&(n=!0,Oe(e),e.stack=s.stack),this._resyncElements(t),(n||o!==e._stacked)&&(En(this,e._parsed),e._stacked=ds(e.vScale,e))}configure(){let t=this.chart.config,e=t.datasetScopeKeys(this._type),s=t.getOptionScopes(this.getDataset(),e,!0);this.options=t.createResolver(s,this.getContext()),this._parsing=this.options.parsing,this._cachedDataOpts={}}parse(t,e){let{_cachedMeta:s,_data:n}=this,{iScale:o,_stacked:a}=s,r=o.axis,l=t===0&&e===n.length?!0:s._sorted,c=t>0&&s._parsed[t-1],h,d,u;if(this._parsing===!1)s._parsed=n,s._sorted=!0,u=n;else{z(n[t])?u=this.parseArrayData(s,n,t,e):T(n[t])?u=this.parseObjectData(s,n,t,e):u=this.parsePrimitiveData(s,n,t,e);let f=()=>d[r]===null||c&&d[r]p||d=0;--u)if(!g()){this.updateRangeFromParsed(c,t,f,l);break}}return c}getAllParsedValues(t){let e=this._cachedMeta._parsed,s=[],n,o,a;for(n=0,o=e.length;n=0&&tthis.getContext(s,n,e),p=c.resolveNamedOptions(u,f,g,d);return p.$shared&&(p.$shared=l,o[a]=Object.freeze(In(p,l))),p}_resolveAnimations(t,e,s){let n=this.chart,o=this._cachedDataOpts,a=`animation-${e}`,r=o[a];if(r)return r;let l;if(n.options.animation!==!1){let h=this.chart.config,d=h.datasetAnimationScopeKeys(this._type,e),u=h.getOptionScopes(this.getDataset(),d);l=h.createResolver(u,this.getContext(t,s,e))}let c=new vi(n,l&&l.animations);return l&&l._cacheable&&(o[a]=Object.freeze(c)),c}getSharedOptions(t){if(t.$shared)return this._sharedOptions||(this._sharedOptions=Object.assign({},t))}includeOptions(t,e){return!e||fs(t)||this.chart._animationsDisabled}_getSharedOptions(t,e){let s=this.resolveDataElementOptions(t,e),n=this._sharedOptions,o=this.getSharedOptions(s),a=this.includeOptions(e,o)||o!==n;return this.updateSharedOptions(o,e,s),{sharedOptions:o,includeOptions:a}}updateElement(t,e,s,n){fs(n)?Object.assign(t,s):this._resolveAnimations(e,n).update(t,s)}updateSharedOptions(t,e,s){t&&!fs(e)&&this._resolveAnimations(void 0,e).update(t,s)}_setStyle(t,e,s,n){t.active=n;let o=this.getStyle(e,n);this._resolveAnimations(e,s,n).update(t,{options:!n&&this.getSharedOptions(o)||o})}removeHoverStyle(t,e,s){this._setStyle(t,s,"active",!1)}setHoverStyle(t,e,s){this._setStyle(t,s,"active",!0)}_removeDatasetHoverStyle(){let t=this._cachedMeta.dataset;t&&this._setStyle(t,void 0,"active",!1)}_setDatasetHoverStyle(){let t=this._cachedMeta.dataset;t&&this._setStyle(t,void 0,"active",!0)}_resyncElements(t){let e=this._data,s=this._cachedMeta.data;for(let[r,l,c]of this._syncList)this[r](l,c);this._syncList=[];let n=s.length,o=e.length,a=Math.min(o,n);a&&this.parse(0,a),o>n?this._insertElements(n,o-n,t):o{for(c.length+=e,r=c.length-1;r>=a;r--)c[r]=c[r-e]};for(l(o),r=t;rn-o))}return i._cache.$bar}function Tr(i){let t=i.iScale,e=Ar(t,i.type),s=t._length,n,o,a,r,l=()=>{a===32767||a===-32768||(ee(r)&&(s=Math.min(s,Math.abs(a-r)||s)),r=a)};for(n=0,o=e.length;n0?n[i-1]:null,r=iMath.abs(r)&&(l=r,c=a),t[e.axis]=c,t._custom={barStart:l,barEnd:c,start:n,end:o,min:a,max:r}}function To(i,t,e,s){return z(i)?Er(i,t,e,s):t[e.axis]=e.parse(i,s),t}function Fn(i,t,e,s){let n=i.iScale,o=i.vScale,a=n.getLabels(),r=n===o,l=[],c,h,d,u;for(c=e,h=e+s;c=e?1:-1)}function Fr(i){let t,e,s,n,o;return i.horizontal?(t=i.base>i.x,e="left",s="right"):(t=i.baseh.controller.options.grouped),o=s.options.stacked,a=[],r=this._cachedMeta.controller.getParsed(e),l=r&&r[s.axis],c=h=>{let d=h._parsed.find(f=>f[s.axis]===l),u=d&&d[h.vScale.axis];if(A(u)||isNaN(u))return!0};for(let h of n)if(!(e!==void 0&&c(h))&&((o===!1||a.indexOf(h.stack)===-1||o===void 0&&h.stack===void 0)&&a.push(h.stack),h.index===t))break;return a.length||a.push(void 0),a}_getStackCount(t){return this._getStacks(void 0,t).length}_getAxisCount(){return this._getAxis().length}getFirstScaleIdForIndexAxis(){let t=this.chart.scales,e=this.chart.options.indexAxis;return Object.keys(t).filter(s=>t[s].axis===e).shift()}_getAxis(){let t={},e=this.getFirstScaleIdForIndexAxis();for(let s of this.chart.data.datasets)t[D(this.chart.options.indexAxis==="x"?s.xAxisID:s.yAxisID,e)]=!0;return Object.keys(t)}_getStackIndex(t,e,s){let n=this._getStacks(t,s),o=e!==void 0?n.indexOf(e):-1;return o===-1?n.length-1:o}_getRuler(){let t=this.options,e=this._cachedMeta,s=e.iScale,n=[],o,a;for(o=0,a=e.data.length;o=0;--s)e=Math.max(e,t[s].size(this.resolveDataElementOptions(s))/2);return e>0&&e}getLabelAndValue(t){let e=this._cachedMeta,s=this.chart.data.labels||[],{xScale:n,yScale:o}=e,a=this.getParsed(t),r=n.getLabelForValue(a.x),l=o.getLabelForValue(a.y),c=a._custom;return{label:s[t]||"",value:"("+r+", "+l+(c?", "+c:"")+")"}}update(t){let e=this._cachedMeta.data;this.updateElements(e,0,e.length,t)}updateElements(t,e,s,n){let o=n==="reset",{iScale:a,vScale:r}=this._cachedMeta,{sharedOptions:l,includeOptions:c}=this._getSharedOptions(e,n),h=a.axis,d=r.axis;for(let u=e;use(v,r,l,!0)?1:Math.max(y,y*e,_,_*e),g=(v,y,_)=>se(v,r,l,!0)?-1:Math.min(y,y*e,_,_*e),p=f(0,c,d),m=f(H,h,u),b=g(R,c,d),x=g(R+H,h,u);s=(p-b)/2,n=(m-x)/2,o=-(p+b)/2,a=-(m+x)/2}return{ratioX:s,ratioY:n,offsetX:o,offsetY:a}}var kt=class extends it{constructor(t,e){super(t,e),this.enableOptionSharing=!0,this.innerRadius=void 0,this.outerRadius=void 0,this.offsetX=void 0,this.offsetY=void 0}linkScales(){}parse(t,e){let s=this.getDataset().data,n=this._cachedMeta;if(this._parsing===!1)n._parsed=s;else{let o=l=>+s[l];if(T(s[t])){let{key:l="value"}=this._parsing;o=c=>+_t(s[c],l)}let a,r;for(a=t,r=t+e;a0&&!isNaN(t)?B*(Math.abs(t)/e):0}getLabelAndValue(t){let e=this._cachedMeta,s=this.chart,n=s.data.labels||[],o=ne(e._parsed[t],s.options.locale);return{label:n[t]||"",value:o}}getMaxBorderWidth(t){let e=0,s=this.chart,n,o,a,r,l;if(!t){for(n=0,o=s.data.datasets.length;nt!=="spacing",_indexable:t=>t!=="spacing"&&!t.startsWith("borderDash")&&!t.startsWith("hoverBorderDash")}),M(kt,"overrides",{aspectRatio:1,plugins:{legend:{labels:{generateLabels(t){let e=t.data,{labels:{pointStyle:s,textAlign:n,color:o,useBorderRadius:a,borderRadius:r}}=t.legend.options;return e.labels.length&&e.datasets.length?e.labels.map((l,c)=>{let d=t.getDatasetMeta(0).controller.getStyle(c);return{text:l,fillStyle:d.backgroundColor,fontColor:o,hidden:!t.getDataVisibility(c),lineDash:d.borderDash,lineDashOffset:d.borderDashOffset,lineJoin:d.borderJoinStyle,lineWidth:d.borderWidth,strokeStyle:d.borderColor,textAlign:n,pointStyle:s,borderRadius:a&&(r||d.borderRadius),index:c}}):[]}},onClick(t,e,s){s.chart.toggleDataVisibility(e.index),s.chart.update()}}}});var he=class extends it{initialize(){this.enableOptionSharing=!0,this.supportsDecimation=!0,super.initialize()}update(t){let e=this._cachedMeta,{dataset:s,data:n=[],_dataset:o}=e,a=this.chart._animationsDisabled,{start:r,count:l}=Xi(e,n,a);this._drawStart=r,this._drawCount=l,Ki(e)&&(r=0,l=n.length),s._chart=this.chart,s._datasetIndex=this.index,s._decimated=!!o._decimated,s.points=n;let c=this.resolveDatasetElementOptions(t);this.options.showLine||(c.borderWidth=0),c.segment=this.options.segment,this.updateElement(s,void 0,{animated:!a,options:c},t),this.updateElements(n,r,l,t)}updateElements(t,e,s,n){let o=n==="reset",{iScale:a,vScale:r,_stacked:l,_dataset:c}=this._cachedMeta,{sharedOptions:h,includeOptions:d}=this._getSharedOptions(e,n),u=a.axis,f=r.axis,{spanGaps:g,segment:p}=this.options,m=Vt(g)?g:Number.POSITIVE_INFINITY,b=this.chart._animationsDisabled||o||n==="none",x=e+s,v=t.length,y=e>0&&this.getParsed(e-1);for(let _=0;_=x){w.skip=!0;continue}let S=this.getParsed(_),P=A(S[f]),O=w[u]=a.getPixelForValue(S[u],_),C=w[f]=o||P?r.getBasePixel():r.getPixelForValue(l?this.applyStack(r,S,l):S[f],_);w.skip=isNaN(O)||isNaN(C)||P,w.stop=_>0&&Math.abs(S[u]-y[u])>m,p&&(w.parsed=S,w.raw=c.data[_]),d&&(w.options=h||this.resolveDataElementOptions(_,k.active?"active":n)),b||this.updateElement(k,_,w,n),y=S}}getMaxOverflow(){let t=this._cachedMeta,e=t.dataset,s=e.options&&e.options.borderWidth||0,n=t.data||[];if(!n.length)return s;let o=n[0].size(this.resolveDataElementOptions(0)),a=n[n.length-1].size(this.resolveDataElementOptions(n.length-1));return Math.max(s,o,a)/2}draw(){let t=this._cachedMeta;t.dataset.updateControlPoints(this.chart.chartArea,t.iScale.axis),super.draw()}};M(he,"id","line"),M(he,"defaults",{datasetElementType:"line",dataElementType:"point",showLine:!0,spanGaps:!1}),M(he,"overrides",{scales:{_index_:{type:"category"},_value_:{type:"linear"}}});var Yt=class extends it{constructor(t,e){super(t,e),this.innerRadius=void 0,this.outerRadius=void 0}getLabelAndValue(t){let e=this._cachedMeta,s=this.chart,n=s.data.labels||[],o=ne(e._parsed[t].r,s.options.locale);return{label:n[t]||"",value:o}}parseObjectData(t,e,s,n){return ss.bind(this)(t,e,s,n)}update(t){let e=this._cachedMeta.data;this._updateRadius(),this.updateElements(e,0,e.length,t)}getMinMax(){let t=this._cachedMeta,e={min:Number.POSITIVE_INFINITY,max:Number.NEGATIVE_INFINITY};return t.data.forEach((s,n)=>{let o=this.getParsed(n).r;!isNaN(o)&&this.chart.getDataVisibility(n)&&(oe.max&&(e.max=o))}),e}_updateRadius(){let t=this.chart,e=t.chartArea,s=t.options,n=Math.min(e.right-e.left,e.bottom-e.top),o=Math.max(n/2,0),a=Math.max(s.cutoutPercentage?o/100*s.cutoutPercentage:1,0),r=(o-a)/t.getVisibleDatasetCount();this.outerRadius=o-r*this.index,this.innerRadius=this.outerRadius-r}updateElements(t,e,s,n){let o=n==="reset",a=this.chart,l=a.options.animation,c=this._cachedMeta.rScale,h=c.xCenter,d=c.yCenter,u=c.getIndexAngle(0)-.5*R,f=u,g,p=360/this.countVisibleElements();for(g=0;g{!isNaN(this.getParsed(n).r)&&this.chart.getDataVisibility(n)&&e++}),e}_computeAngle(t,e,s){return this.chart.getDataVisibility(t)?ot(this.resolveDataElementOptions(t,e).angle||s):0}};M(Yt,"id","polarArea"),M(Yt,"defaults",{dataElementType:"arc",animation:{animateRotate:!0,animateScale:!0},animations:{numbers:{type:"number",properties:["x","y","startAngle","endAngle","innerRadius","outerRadius"]}},indexAxis:"r",startAngle:0}),M(Yt,"overrides",{aspectRatio:1,plugins:{legend:{labels:{generateLabels(t){let e=t.data;if(e.labels.length&&e.datasets.length){let{labels:{pointStyle:s,color:n}}=t.legend.options;return e.labels.map((o,a)=>{let l=t.getDatasetMeta(0).controller.getStyle(a);return{text:o,fillStyle:l.backgroundColor,strokeStyle:l.borderColor,fontColor:n,lineWidth:l.borderWidth,pointStyle:s,hidden:!t.getDataVisibility(a),index:a}})}return[]}},onClick(t,e,s){s.chart.toggleDataVisibility(e.index),s.chart.update()}}},scales:{r:{type:"radialLinear",angleLines:{display:!1},beginAtZero:!0,grid:{circular:!0},pointLabels:{display:!1},startAngle:0}}});var Re=class extends kt{};M(Re,"id","pie"),M(Re,"defaults",{cutout:0,rotation:0,circumference:360,radius:"100%"});var de=class extends it{getLabelAndValue(t){let e=this._cachedMeta.vScale,s=this.getParsed(t);return{label:e.getLabels()[t],value:""+e.getLabelForValue(s[e.axis])}}parseObjectData(t,e,s,n){return ss.bind(this)(t,e,s,n)}update(t){let e=this._cachedMeta,s=e.dataset,n=e.data||[],o=e.iScale.getLabels();if(s.points=n,t!=="resize"){let a=this.resolveDatasetElementOptions(t);this.options.showLine||(a.borderWidth=0);let r={_loop:!0,_fullLoop:o.length===n.length,options:a};this.updateElement(s,void 0,r,t)}this.updateElements(n,0,n.length,t)}updateElements(t,e,s,n){let o=this._cachedMeta.rScale,a=n==="reset";for(let r=e;r0&&this.getParsed(e-1);for(let y=e;y0&&Math.abs(k[f]-v[f])>b,m&&(w.parsed=k,w.raw=c.data[y]),u&&(w.options=d||this.resolveDataElementOptions(y,_.active?"active":n)),x||this.updateElement(_,y,w,n),v=k}this.updateSharedOptions(d,n,h)}getMaxOverflow(){let t=this._cachedMeta,e=t.data||[];if(!this.options.showLine){let r=0;for(let l=e.length-1;l>=0;--l)r=Math.max(r,e[l].size(this.resolveDataElementOptions(l))/2);return r>0&&r}let s=t.dataset,n=s.options&&s.options.borderWidth||0;if(!e.length)return n;let o=e[0].size(this.resolveDataElementOptions(0)),a=e[e.length-1].size(this.resolveDataElementOptions(e.length-1));return Math.max(n,o,a)/2}};M(ue,"id","scatter"),M(ue,"defaults",{datasetElementType:!1,dataElementType:"point",showLine:!1,fill:!1}),M(ue,"overrides",{interaction:{mode:"point"},scales:{x:{type:"linear"},y:{type:"linear"}}});var Nr=Object.freeze({__proto__:null,BarController:le,BubbleController:ce,DoughnutController:kt,LineController:he,PieController:Re,PolarAreaController:Yt,RadarController:de,ScatterController:ue});function Nt(){throw new Error("This method is not implemented: Check that a complete date adapter is provided.")}var ws=class i{constructor(t){M(this,"options");this.options=t||{}}static override(t){Object.assign(i.prototype,t)}init(){}formats(){return Nt()}parse(){return Nt()}format(){return Nt()}add(){return Nt()}diff(){return Nt()}startOf(){return Nt()}endOf(){return Nt()}},Hr={_date:ws};function jr(i,t,e,s){let{controller:n,data:o,_sorted:a}=i,r=n._cachedMeta.iScale,l=i.dataset&&i.dataset.options?i.dataset.options.spanGaps:null;if(r&&t===r.axis&&t!=="r"&&a&&o.length){let c=r._reversePixels?ln:ct;if(s){if(n._sharedOptions){let h=o[0],d=typeof h.getRange=="function"&&h.getRange(t);if(d){let u=c(o,t,e-d),f=c(o,t,e+d);return{lo:u.lo,hi:f.hi}}}}else{let h=c(o,t,e);if(l){let{vScale:d}=n._cachedMeta,{_parsed:u}=i,f=u.slice(0,h.lo+1).reverse().findIndex(p=>!A(p[d.axis]));h.lo-=Math.max(0,f);let g=u.slice(h.hi).findIndex(p=>!A(p[d.axis]));h.hi+=Math.max(0,g)}return h}}return{lo:0,hi:o.length-1}}function $e(i,t,e,s,n){let o=i.getSortedVisibleDatasetMetas(),a=e[t];for(let r=0,l=o.length;r{l[a]&&l[a](t[e],n)&&(o.push({element:l,datasetIndex:c,index:h}),r=r||l.inRange(t.x,t.y,n))}),s&&!r?[]:o}var Xr={evaluateInteractionItems:$e,modes:{index(i,t,e,s){let n=Lt(t,i),o=e.axis||"x",a=e.includeInvisible||!1,r=e.intersect?ps(i,n,o,s,a):ms(i,n,o,!1,s,a),l=[];return r.length?(i.getSortedVisibleDatasetMetas().forEach(c=>{let h=r[0].index,d=c.data[h];d&&!d.skip&&l.push({element:d,datasetIndex:c.index,index:h})}),l):[]},dataset(i,t,e,s){let n=Lt(t,i),o=e.axis||"xy",a=e.includeInvisible||!1,r=e.intersect?ps(i,n,o,s,a):ms(i,n,o,!1,s,a);if(r.length>0){let l=r[0].datasetIndex,c=i.getDatasetMeta(l).data;r=[];for(let h=0;he.pos===t)}function Wn(i,t){return i.filter(e=>Lo.indexOf(e.pos)===-1&&e.box.axis===t)}function Ae(i,t){return i.sort((e,s)=>{let n=t?s:e,o=t?e:s;return n.weight===o.weight?n.index-o.index:n.weight-o.weight})}function Kr(i){let t=[],e,s,n,o,a,r;for(e=0,s=(i||[]).length;ec.box.fullSize),!0),s=Ae(Ce(t,"left"),!0),n=Ae(Ce(t,"right")),o=Ae(Ce(t,"top"),!0),a=Ae(Ce(t,"bottom")),r=Wn(t,"x"),l=Wn(t,"y");return{fullSize:e,leftAndTop:s.concat(o),rightAndBottom:n.concat(l).concat(a).concat(r),chartArea:Ce(t,"chartArea"),vertical:s.concat(n).concat(l),horizontal:o.concat(a).concat(r)}}function Nn(i,t,e,s){return Math.max(i[e],t[e])+Math.max(i[s],t[s])}function Ro(i,t){i.top=Math.max(i.top,t.top),i.left=Math.max(i.left,t.left),i.bottom=Math.max(i.bottom,t.bottom),i.right=Math.max(i.right,t.right)}function Zr(i,t,e,s){let{pos:n,box:o}=e,a=i.maxPadding;if(!T(n)){e.size&&(i[n]-=e.size);let d=s[e.stack]||{size:0,count:1};d.size=Math.max(d.size,e.horizontal?o.height:o.width),e.size=d.size/d.count,i[n]+=e.size}o.getPadding&&Ro(a,o.getPadding());let r=Math.max(0,t.outerWidth-Nn(a,i,"left","right")),l=Math.max(0,t.outerHeight-Nn(a,i,"top","bottom")),c=r!==i.w,h=l!==i.h;return i.w=r,i.h=l,e.horizontal?{same:c,other:h}:{same:h,other:c}}function Qr(i){let t=i.maxPadding;function e(s){let n=Math.max(t[s]-i[s],0);return i[s]+=n,n}i.y+=e("top"),i.x+=e("left"),e("right"),e("bottom")}function tl(i,t){let e=t.maxPadding;function s(n){let o={left:0,top:0,right:0,bottom:0};return n.forEach(a=>{o[a]=Math.max(t[a],e[a])}),o}return s(i?["left","right"]:["top","bottom"])}function Ee(i,t,e,s){let n=[],o,a,r,l,c,h;for(o=0,a=i.length,c=0;o{typeof p.beforeLayout=="function"&&p.beforeLayout()});let h=l.reduce((p,m)=>m.box.options&&m.box.options.display===!1?p:p+1,0)||1,d=Object.freeze({outerWidth:t,outerHeight:e,padding:n,availableWidth:o,availableHeight:a,vBoxMaxWidth:o/2/h,hBoxMaxHeight:a/2}),u=Object.assign({},n);Ro(u,q(s));let f=Object.assign({maxPadding:u,w:o,h:a,x:n.left,y:n.top},n),g=Gr(l.concat(c),d);Ee(r.fullSize,f,d,g),Ee(l,f,d,g),Ee(c,f,d,g)&&Ee(l,f,d,g),Qr(f),Hn(r.leftAndTop,f,d,g),f.x+=f.w,f.y+=f.h,Hn(r.rightAndBottom,f,d,g),i.chartArea={left:f.left,top:f.top,right:f.left+f.w,bottom:f.top+f.h,height:f.h,width:f.w},E(r.chartArea,p=>{let m=p.box;Object.assign(m,i.chartArea),m.update(f.w,f.h,{left:0,top:0,right:0,bottom:0})})}},Mi=class{acquireContext(t,e){}releaseContext(t){return!1}addEventListener(t,e,s){}removeEventListener(t,e,s){}getDevicePixelRatio(){return 1}getMaximumSize(t,e,s,n){return e=Math.max(0,e||t.width),s=s||t.height,{width:e,height:Math.max(0,n?Math.floor(e/n):s)}}isAttached(t){return!0}updateConfig(t){}},Ss=class extends Mi{acquireContext(t){return t&&t.getContext&&t.getContext("2d")||null}updateConfig(t){t.options.animation=!1}},_i="$chartjs",el={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"},jn=i=>i===null||i==="";function il(i,t){let e=i.style,s=i.getAttribute("height"),n=i.getAttribute("width");if(i[_i]={initial:{height:s,width:n,style:{display:e.display,height:e.height,width:e.width}}},e.display=e.display||"block",e.boxSizing=e.boxSizing||"border-box",jn(n)){let o=os(i,"width");o!==void 0&&(i.width=o)}if(jn(s))if(i.style.height==="")i.height=i.width/(t||2);else{let o=os(i,"height");o!==void 0&&(i.height=o)}return i}var Eo=Sn?{passive:!0}:!1;function sl(i,t,e){i&&i.addEventListener(t,e,Eo)}function nl(i,t,e){i&&i.canvas&&i.canvas.removeEventListener(t,e,Eo)}function ol(i,t){let e=el[i.type]||i.type,{x:s,y:n}=Lt(i,t);return{type:e,chart:t,native:i,x:s!==void 0?s:null,y:n!==void 0?n:null}}function ki(i,t){for(let e of i)if(e===t||e.contains(t))return!0}function al(i,t,e){let s=i.canvas,n=new MutationObserver(o=>{let a=!1;for(let r of o)a=a||ki(r.addedNodes,s),a=a&&!ki(r.removedNodes,s);a&&e()});return n.observe(document,{childList:!0,subtree:!0}),n}function rl(i,t,e){let s=i.canvas,n=new MutationObserver(o=>{let a=!1;for(let r of o)a=a||ki(r.removedNodes,s),a=a&&!ki(r.addedNodes,s);a&&e()});return n.observe(document,{childList:!0,subtree:!0}),n}var Ne=new Map,$n=0;function Io(){let i=window.devicePixelRatio;i!==$n&&($n=i,Ne.forEach((t,e)=>{e.currentDevicePixelRatio!==i&&t()}))}function ll(i,t){Ne.size||window.addEventListener("resize",Io),Ne.set(i,t)}function cl(i){Ne.delete(i),Ne.size||window.removeEventListener("resize",Io)}function hl(i,t,e){let s=i.canvas,n=s&&di(s);if(!n)return;let o=Ui((r,l)=>{let c=n.clientWidth;e(r,l),c{let l=r[0],c=l.contentRect.width,h=l.contentRect.height;c===0&&h===0||o(c,h)});return a.observe(n),ll(i,o),a}function bs(i,t,e){e&&e.disconnect(),t==="resize"&&cl(i)}function dl(i,t,e){let s=i.canvas,n=Ui(o=>{i.ctx!==null&&e(ol(o,i))},i);return sl(s,t,n),n}var Ps=class extends Mi{acquireContext(t,e){let s=t&&t.getContext&&t.getContext("2d");return s&&s.canvas===t?(il(t,e),s):null}releaseContext(t){let e=t.canvas;if(!e[_i])return!1;let s=e[_i].initial;["height","width"].forEach(o=>{let a=s[o];A(a)?e.removeAttribute(o):e.setAttribute(o,a)});let n=s.style||{};return Object.keys(n).forEach(o=>{e.style[o]=n[o]}),e.width=e.width,delete e[_i],!0}addEventListener(t,e,s){this.removeEventListener(t,e);let n=t.$proxies||(t.$proxies={}),a={attach:al,detach:rl,resize:hl}[e]||dl;n[e]=a(t,e,s)}removeEventListener(t,e){let s=t.$proxies||(t.$proxies={}),n=s[e];if(!n)return;({attach:bs,detach:bs,resize:bs}[e]||nl)(t,e,n),s[e]=void 0}getDevicePixelRatio(){return window.devicePixelRatio}getMaximumSize(t,e,s,n){return wn(t,e,s,n)}isAttached(t){let e=t&&di(t);return!!(e&&e.isConnected)}};function ul(i){return!hi()||typeof OffscreenCanvas<"u"&&i instanceof OffscreenCanvas?Ss:Ps}var st=class{constructor(){M(this,"x");M(this,"y");M(this,"active",!1);M(this,"options");M(this,"$animations")}tooltipPosition(t){let{x:e,y:s}=this.getProps(["x","y"],t);return{x:e,y:s}}hasValue(){return Vt(this.x)&&Vt(this.y)}getProps(t,e){let s=this.$animations;if(!e||!s)return this;let n={};return t.forEach(o=>{n[o]=s[o]&&s[o].active()?s[o]._to:this[o]}),n}};M(st,"defaults",{}),M(st,"defaultRoutes");function fl(i,t){let e=i.options.ticks,s=gl(i),n=Math.min(e.maxTicksLimit||s,s),o=e.major.enabled?ml(t):[],a=o.length,r=o[0],l=o[a-1],c=[];if(a>n)return bl(t,c,o,a/n),c;let h=pl(o,t,n);if(a>0){let d,u,f=a>1?Math.round((l-r)/(a-1)):null;for(gi(t,c,h,A(f)?0:r-f,r),d=0,u=a-1;dn)return l}return Math.max(n,1)}function ml(i){let t=[],e,s;for(e=0,s=i.length;ei==="left"?"right":i==="right"?"left":i,Yn=(i,t,e)=>t==="top"||t==="left"?i[t]+e:i[t]-e,Un=(i,t)=>Math.min(t||i,i);function Xn(i,t){let e=[],s=i.length/t,n=i.length,o=0;for(;oa+r)))return l}function vl(i,t){E(i,e=>{let s=e.gc,n=s.length/2,o;if(n>t){for(o=0;os?s:e,s=n&&e>s?e:s,{min:Z(e,Z(s,e)),max:Z(s,Z(e,s))}}getPadding(){return{left:this.paddingLeft||0,top:this.paddingTop||0,right:this.paddingRight||0,bottom:this.paddingBottom||0}}getTicks(){return this.ticks}getLabels(){let t=this.chart.data;return this.options.labels||(this.isHorizontal()?t.xLabels:t.yLabels)||t.labels||[]}getLabelItems(t=this.chart.chartArea){return this._labelItems||(this._labelItems=this._computeLabelItems(t))}beforeLayout(){this._cache={},this._dataLimitsCached=!1}beforeUpdate(){F(this.options.beforeUpdate,[this])}update(t,e,s){let{beginAtZero:n,grace:o,ticks:a}=this.options,r=a.sampleSize;this.beforeUpdate(),this.maxWidth=t,this.maxHeight=e,this._margins=s=Object.assign({left:0,right:0,top:0,bottom:0},s),this.ticks=null,this._labelSizes=null,this._gridLineItems=null,this._labelItems=null,this.beforeSetDimensions(),this.setDimensions(),this.afterSetDimensions(),this._maxLength=this.isHorizontal()?this.width+s.left+s.right:this.height+s.top+s.bottom,this._dataLimitsCached||(this.beforeDataLimits(),this.determineDataLimits(),this.afterDataLimits(),this._range=xn(this,o,n),this._dataLimitsCached=!0),this.beforeBuildTicks(),this.ticks=this.buildTicks()||[],this.afterBuildTicks();let l=r=o||s<=1||!this.isHorizontal()){this.labelRotation=n;return}let h=this._getLabelSizes(),d=h.widest.width,u=h.highest.height,f=Y(this.chart.width-d,0,this.maxWidth);r=t.offset?this.maxWidth/s:f/(s-1),d+6>r&&(r=f/(s-(t.offset?.5:1)),l=this.maxHeight-Te(t.grid)-e.padding-Kn(t.title,this.chart.options.font),c=Math.sqrt(d*d+u*u),a=si(Math.min(Math.asin(Y((h.highest.height+6)/r,-1,1)),Math.asin(Y(l/c,-1,1))-Math.asin(Y(u/c,-1,1)))),a=Math.max(n,Math.min(o,a))),this.labelRotation=a}afterCalculateLabelRotation(){F(this.options.afterCalculateLabelRotation,[this])}afterAutoSkip(){}beforeFit(){F(this.options.beforeFit,[this])}fit(){let t={width:0,height:0},{chart:e,options:{ticks:s,title:n,grid:o}}=this,a=this._isVisible(),r=this.isHorizontal();if(a){let l=Kn(n,e.options.font);if(r?(t.width=this.maxWidth,t.height=Te(o)+l):(t.height=this.maxHeight,t.width=Te(o)+l),s.display&&this.ticks.length){let{first:c,last:h,widest:d,highest:u}=this._getLabelSizes(),f=s.padding*2,g=ot(this.labelRotation),p=Math.cos(g),m=Math.sin(g);if(r){let b=s.mirror?0:m*d.width+p*u.height;t.height=Math.min(this.maxHeight,t.height+b+f)}else{let b=s.mirror?0:p*d.width+m*u.height;t.width=Math.min(this.maxWidth,t.width+b+f)}this._calculatePadding(c,h,m,p)}}this._handleMargins(),r?(this.width=this._length=e.width-this._margins.left-this._margins.right,this.height=t.height):(this.width=t.width,this.height=this._length=e.height-this._margins.top-this._margins.bottom)}_calculatePadding(t,e,s,n){let{ticks:{align:o,padding:a},position:r}=this.options,l=this.labelRotation!==0,c=r!=="top"&&this.axis==="x";if(this.isHorizontal()){let h=this.getPixelForTick(0)-this.left,d=this.right-this.getPixelForTick(this.ticks.length-1),u=0,f=0;l?c?(u=n*t.width,f=s*e.height):(u=s*t.height,f=n*e.width):o==="start"?f=e.width:o==="end"?u=t.width:o!=="inner"&&(u=t.width/2,f=e.width/2),this.paddingLeft=Math.max((u-h+a)*this.width/(this.width-h),0),this.paddingRight=Math.max((f-d+a)*this.width/(this.width-d),0)}else{let h=e.height/2,d=t.height/2;o==="start"?(h=0,d=t.height):o==="end"&&(h=e.height,d=0),this.paddingTop=h+a,this.paddingBottom=d+a}}_handleMargins(){this._margins&&(this._margins.left=Math.max(this.paddingLeft,this._margins.left),this._margins.top=Math.max(this.paddingTop,this._margins.top),this._margins.right=Math.max(this.paddingRight,this._margins.right),this._margins.bottom=Math.max(this.paddingBottom,this._margins.bottom))}afterFit(){F(this.options.afterFit,[this])}isHorizontal(){let{axis:t,position:e}=this.options;return e==="top"||e==="bottom"||t==="x"}isFullSize(){return this.options.fullSize}_convertTicksToLabels(t){this.beforeTickToLabelConversion(),this.generateTickLabels(t);let e,s;for(e=0,s=t.length;e({width:a[P]||0,height:r[P]||0});return{first:S(0),last:S(e-1),widest:S(k),highest:S(w),widths:a,heights:r}}getLabelForValue(t){return t}getPixelForValue(t,e){return NaN}getValueForPixel(t){}getPixelForTick(t){let e=this.ticks;return t<0||t>e.length-1?null:this.getPixelForValue(e[t].value)}getPixelForDecimal(t){this._reversePixels&&(t=1-t);let e=this._startPixel+t*this._length;return rn(this._alignToPixels?Ct(this.chart,e,0):e)}getDecimalForPixel(t){let e=(t-this._startPixel)/this._length;return this._reversePixels?1-e:e}getBasePixel(){return this.getPixelForValue(this.getBaseValue())}getBaseValue(){let{min:t,max:e}=this;return t<0&&e<0?e:t>0&&e>0?t:0}getContext(t){let e=this.ticks||[];if(t>=0&&tr*n?r/s:l/n:l*n0}_computeGridLineItems(t){let e=this.axis,s=this.chart,n=this.options,{grid:o,position:a,border:r}=n,l=o.offset,c=this.isHorizontal(),d=this.ticks.length+(l?1:0),u=Te(o),f=[],g=r.setContext(this.getContext()),p=g.display?g.width:0,m=p/2,b=function(W){return Ct(s,W,p)},x,v,y,_,k,w,S,P,O,C,L,U;if(a==="top")x=b(this.bottom),w=this.bottom-u,P=x-m,C=b(t.top)+m,U=t.bottom;else if(a==="bottom")x=b(this.top),C=t.top,U=b(t.bottom)-m,w=x+m,P=this.top+u;else if(a==="left")x=b(this.right),k=this.right-u,S=x-m,O=b(t.left)+m,L=t.right;else if(a==="right")x=b(this.left),O=t.left,L=b(t.right)-m,k=x+m,S=this.left+u;else if(e==="x"){if(a==="center")x=b((t.top+t.bottom)/2+.5);else if(T(a)){let W=Object.keys(a)[0],j=a[W];x=b(this.chart.scales[W].getPixelForValue(j))}C=t.top,U=t.bottom,w=x+m,P=w+u}else if(e==="y"){if(a==="center")x=b((t.left+t.right)/2);else if(T(a)){let W=Object.keys(a)[0],j=a[W];x=b(this.chart.scales[W].getPixelForValue(j))}k=x-m,S=k-u,O=t.left,L=t.right}let et=D(n.ticks.maxTicksLimit,d),I=Math.max(1,Math.ceil(d/et));for(v=0;v0&&(It-=Et/2);break}Ye={left:It,top:xe,width:Et+qt.width,height:be+qt.height,color:I.backdropColor}}m.push({label:y,font:P,textOffset:L,options:{rotation:p,color:j,strokeColor:rt,strokeWidth:G,textAlign:Kt,textBaseline:U,translation:[_,k],backdrop:Ye}})}return m}_getXAxisLabelAlignment(){let{position:t,ticks:e}=this.options;if(-ot(this.labelRotation))return t==="top"?"left":"right";let n="center";return e.align==="start"?n="left":e.align==="end"?n="right":e.align==="inner"&&(n="inner"),n}_getYAxisLabelAlignment(t){let{position:e,ticks:{crossAlign:s,mirror:n,padding:o}}=this.options,a=this._getLabelSizes(),r=t+o,l=a.widest.width,c,h;return e==="left"?n?(h=this.right+o,s==="near"?c="left":s==="center"?(c="center",h+=l/2):(c="right",h+=l)):(h=this.right-r,s==="near"?c="right":s==="center"?(c="center",h-=l/2):(c="left",h=this.left)):e==="right"?n?(h=this.left+o,s==="near"?c="right":s==="center"?(c="center",h-=l/2):(c="left",h-=l)):(h=this.left+r,s==="near"?c="left":s==="center"?(c="center",h+=l/2):(c="right",h=this.right)):c="right",{textAlign:c,x:h}}_computeLabelArea(){if(this.options.ticks.mirror)return;let t=this.chart,e=this.options.position;if(e==="left"||e==="right")return{top:0,left:this.left,bottom:t.height,right:this.right};if(e==="top"||e==="bottom")return{top:this.top,left:0,bottom:this.bottom,right:t.width}}drawBackground(){let{ctx:t,options:{backgroundColor:e},left:s,top:n,width:o,height:a}=this;e&&(t.save(),t.fillStyle=e,t.fillRect(s,n,o,a),t.restore())}getLineWidthForValue(t){let e=this.options.grid;if(!this._isVisible()||!e.display)return 0;let n=this.ticks.findIndex(o=>o.value===t);return n>=0?e.setContext(this.getContext(n)).lineWidth:0}drawGrid(t){let e=this.options.grid,s=this.ctx,n=this._gridLineItems||(this._gridLineItems=this._computeGridLineItems(t)),o,a,r=(l,c,h)=>{!h.width||!h.color||(s.save(),s.lineWidth=h.width,s.strokeStyle=h.color,s.setLineDash(h.borderDash||[]),s.lineDashOffset=h.borderDashOffset,s.beginPath(),s.moveTo(l.x,l.y),s.lineTo(c.x,c.y),s.stroke(),s.restore())};if(e.display)for(o=0,a=n.length;o{this.draw(o)}}]:[{z:s,draw:o=>{this.drawBackground(),this.drawGrid(o),this.drawTitle()}},{z:n,draw:()=>{this.drawBorder()}},{z:e,draw:o=>{this.drawLabels(o)}}]}getMatchingVisibleMetas(t){let e=this.chart.getSortedVisibleDatasetMetas(),s=this.axis+"AxisID",n=[],o,a;for(o=0,a=e.length;o{let s=e.split("."),n=s.pop(),o=[i].concat(s).join("."),a=t[e].split("."),r=a.pop(),l=a.join(".");V.route(o,n,l,r)})}function Ol(i){return"id"in i&&"defaults"in i}var Ds=class{constructor(){this.controllers=new pe(it,"datasets",!0),this.elements=new pe(st,"elements"),this.plugins=new pe(Object,"plugins"),this.scales=new pe(Xt,"scales"),this._typedRegistries=[this.controllers,this.scales,this.elements]}add(...t){this._each("register",t)}remove(...t){this._each("unregister",t)}addControllers(...t){this._each("register",t,this.controllers)}addElements(...t){this._each("register",t,this.elements)}addPlugins(...t){this._each("register",t,this.plugins)}addScales(...t){this._each("register",t,this.scales)}getController(t){return this._get(t,this.controllers,"controller")}getElement(t){return this._get(t,this.elements,"element")}getPlugin(t){return this._get(t,this.plugins,"plugin")}getScale(t){return this._get(t,this.scales,"scale")}removeControllers(...t){this._each("unregister",t,this.controllers)}removeElements(...t){this._each("unregister",t,this.elements)}removePlugins(...t){this._each("unregister",t,this.plugins)}removeScales(...t){this._each("unregister",t,this.scales)}_each(t,e,s){[...e].forEach(n=>{let o=s||this._getRegistryForType(n);s||o.isForType(n)||o===this.plugins&&n.id?this._exec(t,o,n):E(n,a=>{let r=s||this._getRegistryForType(a);this._exec(t,r,a)})})}_exec(t,e,s){let n=ii(t);F(s["before"+n],[],s),e[t](s),F(s["after"+n],[],s)}_getRegistryForType(t){for(let e=0;eo.filter(r=>!a.some(l=>r.plugin.id===l.plugin.id));this._notify(n(e,s),t,"stop"),this._notify(n(s,e),t,"start")}};function Cl(i){let t={},e=[],s=Object.keys(gt.plugins.items);for(let o=0;o1&&qn(i[0].toLowerCase());if(s)return s}throw new Error(`Cannot determine type of '${i}' axis. Please provide 'axis' or 'position' option.`)}function Gn(i,t,e){if(e[t+"AxisID"]===i)return{axis:t}}function Fl(i,t){if(t.data&&t.data.datasets){let e=t.data.datasets.filter(s=>s.xAxisID===i||s.yAxisID===i);if(e.length)return Gn(i,"x",e[0])||Gn(i,"y",e[0])}return{}}function zl(i,t){let e=Ot[i.type]||{scales:{}},s=t.scales||{},n=Cs(i.type,t),o=Object.create(null);return Object.keys(s).forEach(a=>{let r=s[a];if(!T(r))return console.error(`Invalid scale configuration for scale: ${a}`);if(r._proxy)return console.warn(`Ignoring resolver passed as options for scale: ${a}`);let l=As(a,r,Fl(a,i),V.scales[r.type]),c=El(l,n),h=e.scales||{};o[a]=te(Object.create(null),[{axis:l},r,h[l],h[c]])}),i.data.datasets.forEach(a=>{let r=a.type||i.type,l=a.indexAxis||Cs(r,t),h=(Ot[r]||{}).scales||{};Object.keys(h).forEach(d=>{let u=Rl(d,l),f=a[u+"AxisID"]||u;o[f]=o[f]||Object.create(null),te(o[f],[{axis:u},s[f],h[d]])})}),Object.keys(o).forEach(a=>{let r=o[a];te(r,[V.scales[r.type],V.scale])}),o}function Fo(i){let t=i.options||(i.options={});t.plugins=D(t.plugins,{}),t.scales=zl(i,t)}function zo(i){return i=i||{},i.datasets=i.datasets||[],i.labels=i.labels||[],i}function Bl(i){return i=i||{},i.data=zo(i.data),Fo(i),i}var Jn=new Map,Bo=new Set;function pi(i,t){let e=Jn.get(i);return e||(e=t(),Jn.set(i,e),Bo.add(e)),e}var Le=(i,t,e)=>{let s=_t(t,e);s!==void 0&&i.add(s)},Ts=class{constructor(t){this._config=Bl(t),this._scopeCache=new Map,this._resolverCache=new Map}get platform(){return this._config.platform}get type(){return this._config.type}set type(t){this._config.type=t}get data(){return this._config.data}set data(t){this._config.data=zo(t)}get options(){return this._config.options}set options(t){this._config.options=t}get plugins(){return this._config.plugins}update(){let t=this._config;this.clearCache(),Fo(t)}clearCache(){this._scopeCache.clear(),this._resolverCache.clear()}datasetScopeKeys(t){return pi(t,()=>[[`datasets.${t}`,""]])}datasetAnimationScopeKeys(t,e){return pi(`${t}.transition.${e}`,()=>[[`datasets.${t}.transitions.${e}`,`transitions.${e}`],[`datasets.${t}`,""]])}datasetElementScopeKeys(t,e){return pi(`${t}-${e}`,()=>[[`datasets.${t}.elements.${e}`,`datasets.${t}`,`elements.${e}`,""]])}pluginScopeKeys(t){let e=t.id,s=this.type;return pi(`${s}-plugin-${e}`,()=>[[`plugins.${e}`,...t.additionalOptionScopes||[]]])}_cachedScopes(t,e){let s=this._scopeCache,n=s.get(t);return(!n||e)&&(n=new Map,s.set(t,n)),n}getOptionScopes(t,e,s){let{options:n,type:o}=this,a=this._cachedScopes(t,s),r=a.get(e);if(r)return r;let l=new Set;e.forEach(h=>{t&&(l.add(t),h.forEach(d=>Le(l,t,d))),h.forEach(d=>Le(l,n,d)),h.forEach(d=>Le(l,Ot[o]||{},d)),h.forEach(d=>Le(l,V,d)),h.forEach(d=>Le(l,ai,d))});let c=Array.from(l);return c.length===0&&c.push(Object.create(null)),Bo.has(e)&&a.set(e,c),c}chartOptionScopes(){let{options:t,type:e}=this;return[t,Ot[e]||{},V.datasets[e]||{},{type:e},V,ai]}resolveNamedOptions(t,e,s,n=[""]){let o={$shared:!0},{resolver:a,subPrefixes:r}=Zn(this._resolverCache,t,n),l=a;if(Wl(a,e)){o.$shared=!1,s=bt(s)?s():s;let c=this.createResolver(t,s,r);l=Bt(a,s,c)}for(let c of e)o[c]=l[c];return o}createResolver(t,e,s=[""],n){let{resolver:o}=Zn(this._resolverCache,t,s);return T(e)?Bt(o,e,void 0,n):o}};function Zn(i,t,e){let s=i.get(t);s||(s=new Map,i.set(t,s));let n=e.join(),o=s.get(n);return o||(o={resolver:ci(t,e),subPrefixes:e.filter(r=>!r.toLowerCase().includes("hover"))},s.set(n,o)),o}var Vl=i=>T(i)&&Object.getOwnPropertyNames(i).some(t=>bt(i[t]));function Wl(i,t){let{isScriptable:e,isIndexable:s}=ts(i);for(let n of t){let o=e(n),a=s(n),r=(a||o)&&i[n];if(o&&(bt(r)||Vl(r))||a&&z(r))return!0}return!1}var Nl="4.5.1",Hl=["top","bottom","left","right","chartArea"];function Qn(i,t){return i==="top"||i==="bottom"||Hl.indexOf(i)===-1&&t==="x"}function to(i,t){return function(e,s){return e[i]===s[i]?e[t]-s[t]:e[i]-s[i]}}function eo(i){let t=i.chart,e=t.options.animation;t.notifyPlugins("afterRender"),F(e&&e.onComplete,[i],t)}function jl(i){let t=i.chart,e=t.options.animation;F(e&&e.onProgress,[i],t)}function Vo(i){return hi()&&typeof i=="string"?i=document.getElementById(i):i&&i.length&&(i=i[0]),i&&i.canvas&&(i=i.canvas),i}var yi={},io=i=>{let t=Vo(i);return Object.values(yi).filter(e=>e.canvas===t).pop()};function $l(i,t,e){let s=Object.keys(i);for(let n of s){let o=+n;if(o>=t){let a=i[n];delete i[n],(e>0||o>t)&&(i[o+e]=a)}}}function Yl(i,t,e,s){return!e||i.type==="mouseout"?null:s?t:i}var at=class{static register(...t){gt.add(...t),so()}static unregister(...t){gt.remove(...t),so()}constructor(t,e){let s=this.config=new Ts(e),n=Vo(t),o=io(n);if(o)throw new Error("Canvas is already in use. Chart with ID '"+o.id+"' must be destroyed before the canvas with ID '"+o.canvas.id+"' can be reused.");let a=s.createResolver(s.chartOptionScopes(),this.getContext());this.platform=new(s.platform||ul(n)),this.platform.updateConfig(s);let r=this.platform.acquireContext(n,a.aspectRatio),l=r&&r.canvas,c=l&&l.height,h=l&&l.width;if(this.id=tn(),this.ctx=r,this.canvas=l,this.width=h,this.height=c,this._options=a,this._aspectRatio=this.aspectRatio,this._layers=[],this._metasets=[],this._stacks=void 0,this.boxes=[],this.currentDevicePixelRatio=void 0,this.chartArea=void 0,this._active=[],this._lastEvent=void 0,this._listeners={},this._responsiveListeners=void 0,this._sortedMetasets=[],this.scales={},this._plugins=new Os,this.$proxies={},this._hiddenIndices={},this.attached=!1,this._animationsDisabled=void 0,this.$context=void 0,this._doResize=un(d=>this.update(d),a.resizeDelay||0),this._dataChanges=[],yi[this.id]=this,!r||!l){console.error("Failed to create chart: can't acquire context from the given item");return}vt.listen(this,"complete",eo),vt.listen(this,"progress",jl),this._initialize(),this.attached&&this.update()}get aspectRatio(){let{options:{aspectRatio:t,maintainAspectRatio:e},width:s,height:n,_aspectRatio:o}=this;return A(t)?e&&o?o:n?s/n:null:t}get data(){return this.config.data}set data(t){this.config.data=t}get options(){return this._options}set options(t){this.config.options=t}get registry(){return gt}_initialize(){return this.notifyPlugins("beforeInit"),this.options.responsive?this.resize():ns(this,this.options.devicePixelRatio),this.bindEvents(),this.notifyPlugins("afterInit"),this}clear(){return Ji(this.canvas,this.ctx),this}stop(){return vt.stop(this),this}resize(t,e){vt.running(this)?this._resizeBeforeDraw={width:t,height:e}:this._resize(t,e)}_resize(t,e){let s=this.options,n=this.canvas,o=s.maintainAspectRatio&&this.aspectRatio,a=this.platform.getMaximumSize(n,t,e,o),r=s.devicePixelRatio||this.platform.getDevicePixelRatio(),l=this.width?"resize":"attach";this.width=a.width,this.height=a.height,this._aspectRatio=this.aspectRatio,ns(this,r,!0)&&(this.notifyPlugins("resize",{size:a}),F(s.onResize,[this,a],this),this.attached&&this._doResize(l)&&this.render())}ensureScalesHaveIDs(){let e=this.options.scales||{};E(e,(s,n)=>{s.id=n})}buildOrUpdateScales(){let t=this.options,e=t.scales,s=this.scales,n=Object.keys(s).reduce((a,r)=>(a[r]=!1,a),{}),o=[];e&&(o=o.concat(Object.keys(e).map(a=>{let r=e[a],l=As(a,r),c=l==="r",h=l==="x";return{options:r,dposition:c?"chartArea":h?"bottom":"left",dtype:c?"radialLinear":h?"category":"linear"}}))),E(o,a=>{let r=a.options,l=r.id,c=As(l,r),h=D(r.type,a.dtype);(r.position===void 0||Qn(r.position,c)!==Qn(a.dposition))&&(r.position=a.dposition),n[l]=!0;let d=null;if(l in s&&s[l].type===h)d=s[l];else{let u=gt.getScale(h);d=new u({id:l,type:h,ctx:this.ctx,chart:this}),s[d.id]=d}d.init(r,t)}),E(n,(a,r)=>{a||delete s[r]}),E(s,a=>{J.configure(this,a,a.options),J.addBox(this,a)})}_updateMetasets(){let t=this._metasets,e=this.data.datasets.length,s=t.length;if(t.sort((n,o)=>n.index-o.index),s>e){for(let n=e;ne.length&&delete this._stacks,t.forEach((s,n)=>{e.filter(o=>o===s._dataset).length===0&&this._destroyDatasetMeta(n)})}buildOrUpdateControllers(){let t=[],e=this.data.datasets,s,n;for(this._removeUnreferencedMetasets(),s=0,n=e.length;s{this.getDatasetMeta(e).controller.reset()},this)}reset(){this._resetElements(),this.notifyPlugins("reset")}update(t){let e=this.config;e.update();let s=this._options=e.createResolver(e.chartOptionScopes(),this.getContext()),n=this._animationsDisabled=!s.animation;if(this._updateScales(),this._checkEventBindings(),this._updateHiddenIndices(),this._plugins.invalidate(),this.notifyPlugins("beforeUpdate",{mode:t,cancelable:!0})===!1)return;let o=this.buildOrUpdateControllers();this.notifyPlugins("beforeElementsUpdate");let a=0;for(let c=0,h=this.data.datasets.length;c{c.reset()}),this._updateDatasets(t),this.notifyPlugins("afterUpdate",{mode:t}),this._layers.sort(to("z","_idx"));let{_active:r,_lastEvent:l}=this;l?this._eventHandler(l,!0):r.length&&this._updateHoverStyles(r,r,!0),this.render()}_updateScales(){E(this.scales,t=>{J.removeBox(this,t)}),this.ensureScalesHaveIDs(),this.buildOrUpdateScales()}_checkEventBindings(){let t=this.options,e=new Set(Object.keys(this._listeners)),s=new Set(t.events);(!Bi(e,s)||!!this._responsiveListeners!==t.responsive)&&(this.unbindEvents(),this.bindEvents())}_updateHiddenIndices(){let{_hiddenIndices:t}=this,e=this._getUniformDataChanges()||[];for(let{method:s,start:n,count:o}of e){let a=s==="_removeElements"?-o:o;$l(t,n,a)}}_getUniformDataChanges(){let t=this._dataChanges;if(!t||!t.length)return;this._dataChanges=[];let e=this.data.datasets.length,s=o=>new Set(t.filter(a=>a[0]===o).map((a,r)=>r+","+a.splice(1).join(","))),n=s(0);for(let o=1;oo.split(",")).map(o=>({method:o[1],start:+o[2],count:+o[3]}))}_updateLayout(t){if(this.notifyPlugins("beforeLayout",{cancelable:!0})===!1)return;J.update(this,this.width,this.height,t);let e=this.chartArea,s=e.width<=0||e.height<=0;this._layers=[],E(this.boxes,n=>{s&&n.position==="chartArea"||(n.configure&&n.configure(),this._layers.push(...n._layers()))},this),this._layers.forEach((n,o)=>{n._idx=o}),this.notifyPlugins("afterLayout")}_updateDatasets(t){if(this.notifyPlugins("beforeDatasetsUpdate",{mode:t,cancelable:!0})!==!1){for(let e=0,s=this.data.datasets.length;e=0;--e)this._drawDataset(t[e]);this.notifyPlugins("afterDatasetsDraw")}_drawDataset(t){let e=this.ctx,s={meta:t,index:t.index,cancelable:!0},n=hs(this,t);this.notifyPlugins("beforeDatasetDraw",s)!==!1&&(n&&Pe(e,n),t.controller.draw(),n&&De(e),s.cancelable=!1,this.notifyPlugins("afterDatasetDraw",s))}isPointInArea(t){return ht(t,this.chartArea,this._minPadding)}getElementsAtEventForMode(t,e,s,n){let o=Xr.modes[e];return typeof o=="function"?o(this,t,s,n):[]}getDatasetMeta(t){let e=this.data.datasets[t],s=this._metasets,n=s.filter(o=>o&&o._dataset===e).pop();return n||(n={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null,order:e&&e.order||0,index:t,_dataset:e,_parsed:[],_sorted:!1},s.push(n)),n}getContext(){return this.$context||(this.$context=yt(null,{chart:this,type:"chart"}))}getVisibleDatasetCount(){return this.getSortedVisibleDatasetMetas().length}isDatasetVisible(t){let e=this.data.datasets[t];if(!e)return!1;let s=this.getDatasetMeta(t);return typeof s.hidden=="boolean"?!s.hidden:!e.hidden}setDatasetVisibility(t,e){let s=this.getDatasetMeta(t);s.hidden=!e}toggleDataVisibility(t){this._hiddenIndices[t]=!this._hiddenIndices[t]}getDataVisibility(t){return!this._hiddenIndices[t]}_updateVisibility(t,e,s){let n=s?"show":"hide",o=this.getDatasetMeta(t),a=o.controller._resolveAnimations(void 0,n);ee(e)?(o.data[e].hidden=!s,this.update()):(this.setDatasetVisibility(t,s),a.update(o,{visible:s}),this.update(r=>r.datasetIndex===t?n:void 0))}hide(t,e){this._updateVisibility(t,e,!1)}show(t,e){this._updateVisibility(t,e,!0)}_destroyDatasetMeta(t){let e=this._metasets[t];e&&e.controller&&e.controller._destroy(),delete this._metasets[t]}_stop(){let t,e;for(this.stop(),vt.remove(this),t=0,e=this.data.datasets.length;t{e.addEventListener(this,o,a),t[o]=a},n=(o,a,r)=>{o.offsetX=a,o.offsetY=r,this._eventHandler(o)};E(this.options.events,o=>s(o,n))}bindResponsiveEvents(){this._responsiveListeners||(this._responsiveListeners={});let t=this._responsiveListeners,e=this.platform,s=(l,c)=>{e.addEventListener(this,l,c),t[l]=c},n=(l,c)=>{t[l]&&(e.removeEventListener(this,l,c),delete t[l])},o=(l,c)=>{this.canvas&&this.resize(l,c)},a,r=()=>{n("attach",r),this.attached=!0,this.resize(),s("resize",o),s("detach",a)};a=()=>{this.attached=!1,n("resize",o),this._stop(),this._resize(0,0),s("attach",r)},e.isAttached(this.canvas)?r():a()}unbindEvents(){E(this._listeners,(t,e)=>{this.platform.removeEventListener(this,e,t)}),this._listeners={},E(this._responsiveListeners,(t,e)=>{this.platform.removeEventListener(this,e,t)}),this._responsiveListeners=void 0}updateHoverStyle(t,e,s){let n=s?"set":"remove",o,a,r,l;for(e==="dataset"&&(o=this.getDatasetMeta(t[0].datasetIndex),o.controller["_"+n+"DatasetHoverStyle"]()),r=0,l=t.length;r{let r=this.getDatasetMeta(o);if(!r)throw new Error("No dataset found at index "+o);return{datasetIndex:o,element:r.data[a],index:a}});!we(s,e)&&(this._active=s,this._lastEvent=null,this._updateHoverStyles(s,e))}notifyPlugins(t,e,s){return this._plugins.notify(this,t,e,s)}isPluginEnabled(t){return this._plugins._cache.filter(e=>e.plugin.id===t).length===1}_updateHoverStyles(t,e,s){let n=this.options.hover,o=(l,c)=>l.filter(h=>!c.some(d=>h.datasetIndex===d.datasetIndex&&h.index===d.index)),a=o(e,t),r=s?t:o(t,e);a.length&&this.updateHoverStyle(a,n.mode,!1),r.length&&n.mode&&this.updateHoverStyle(r,n.mode,!0)}_eventHandler(t,e){let s={event:t,replay:e,cancelable:!0,inChartArea:this.isPointInArea(t)},n=a=>(a.options.events||this.options.events).includes(t.native.type);if(this.notifyPlugins("beforeEvent",s,n)===!1)return;let o=this._handleEvent(t,e,s.inChartArea);return s.cancelable=!1,this.notifyPlugins("afterEvent",s,n),(o||s.changed)&&this.render(),this}_handleEvent(t,e,s){let{_active:n=[],options:o}=this,a=e,r=this._getActiveElements(t,n,s,a),l=nn(t),c=Yl(t,this._lastEvent,s,l);s&&(this._lastEvent=null,F(o.onHover,[t,r,this],this),l&&F(o.onClick,[t,r,this],this));let h=!we(r,n);return(h||e)&&(this._active=r,this._updateHoverStyles(r,n,e)),this._lastEvent=c,h}_getActiveElements(t,e,s,n){if(t.type==="mouseout")return[];if(!s)return e;let o=this.options.hover;return this.getElementsAtEventForMode(t,o.mode,o,n)}};M(at,"defaults",V),M(at,"instances",yi),M(at,"overrides",Ot),M(at,"registry",gt),M(at,"version",Nl),M(at,"getChart",io);function so(){return E(at.instances,i=>i._plugins.invalidate())}function Ul(i,t,e){let{startAngle:s,x:n,y:o,outerRadius:a,innerRadius:r,options:l}=t,{borderWidth:c,borderJoinStyle:h}=l,d=Math.min(c/a,X(s-e));if(i.beginPath(),i.arc(n,o,a-c/2,s+d/2,e-d/2),r>0){let u=Math.min(c/r,X(s-e));i.arc(n,o,r+c/2,e-u/2,s+u/2,!0)}else{let u=Math.min(c/2,a*X(s-e));if(h==="round")i.arc(n,o,u,e-R/2,s+R/2,!0);else if(h==="bevel"){let f=2*u*u,g=-f*Math.cos(e+R/2)+n,p=-f*Math.sin(e+R/2)+o,m=f*Math.cos(s+R/2)+n,b=f*Math.sin(s+R/2)+o;i.lineTo(g,p),i.lineTo(m,b)}}i.closePath(),i.moveTo(0,0),i.rect(0,0,i.canvas.width,i.canvas.height),i.clip("evenodd")}function Xl(i,t,e){let{startAngle:s,pixelMargin:n,x:o,y:a,outerRadius:r,innerRadius:l}=t,c=n/r;i.beginPath(),i.arc(o,a,r,s-c,e+c),l>n?(c=n/l,i.arc(o,a,l,e+c,s-c,!0)):i.arc(o,a,n,e+H,s-H),i.closePath(),i.clip()}function Kl(i){return li(i,["outerStart","outerEnd","innerStart","innerEnd"])}function ql(i,t,e,s){let n=Kl(i.options.borderRadius),o=(e-t)/2,a=Math.min(o,s*t/2),r=l=>{let c=(e-Math.min(o,l))*s/2;return Y(l,0,Math.min(o,c))};return{outerStart:r(n.outerStart),outerEnd:r(n.outerEnd),innerStart:Y(n.innerStart,0,a),innerEnd:Y(n.innerEnd,0,a)}}function re(i,t,e,s){return{x:e+i*Math.cos(t),y:s+i*Math.sin(t)}}function wi(i,t,e,s,n,o){let{x:a,y:r,startAngle:l,pixelMargin:c,innerRadius:h}=t,d=Math.max(t.outerRadius+s+e-c,0),u=h>0?h+s+e+c:0,f=0,g=n-l;if(s){let I=h>0?h-s:0,W=d>0?d-s:0,j=(I+W)/2,rt=j!==0?g*j/(j+s):g;f=(g-rt)/2}let p=Math.max(.001,g*d-e/R)/d,m=(g-p)/2,b=l+m+f,x=n-m-f,{outerStart:v,outerEnd:y,innerStart:_,innerEnd:k}=ql(t,u,d,x-b),w=d-v,S=d-y,P=b+v/w,O=x-y/S,C=u+_,L=u+k,U=b+_/C,et=x-k/L;if(i.beginPath(),o){let I=(P+O)/2;if(i.arc(a,r,d,P,I),i.arc(a,r,d,I,O),y>0){let G=re(S,O,a,r);i.arc(G.x,G.y,y,O,x+H)}let W=re(L,x,a,r);if(i.lineTo(W.x,W.y),k>0){let G=re(L,et,a,r);i.arc(G.x,G.y,k,x+H,et+Math.PI)}let j=(x-k/u+(b+_/u))/2;if(i.arc(a,r,u,x-k/u,j,!0),i.arc(a,r,u,j,b+_/u,!0),_>0){let G=re(C,U,a,r);i.arc(G.x,G.y,_,U+Math.PI,b-H)}let rt=re(w,b,a,r);if(i.lineTo(rt.x,rt.y),v>0){let G=re(w,P,a,r);i.arc(G.x,G.y,v,b-H,P)}}else{i.moveTo(a,r);let I=Math.cos(P)*d+a,W=Math.sin(P)*d+r;i.lineTo(I,W);let j=Math.cos(O)*d+a,rt=Math.sin(O)*d+r;i.lineTo(j,rt)}i.closePath()}function Gl(i,t,e,s,n){let{fullCircles:o,startAngle:a,circumference:r}=t,l=t.endAngle;if(o){wi(i,t,e,s,l,n);for(let c=0;c=R&&f===0&&h!=="miter"&&Ul(i,t,p),o||(wi(i,t,e,s,p,n),i.stroke())}var jt=class extends st{constructor(e){super();M(this,"circumference");M(this,"endAngle");M(this,"fullCircles");M(this,"innerRadius");M(this,"outerRadius");M(this,"pixelMargin");M(this,"startAngle");this.options=void 0,this.circumference=void 0,this.startAngle=void 0,this.endAngle=void 0,this.innerRadius=void 0,this.outerRadius=void 0,this.pixelMargin=0,this.fullCircles=0,e&&Object.assign(this,e)}inRange(e,s,n){let o=this.getProps(["x","y"],n),{angle:a,distance:r}=Hi(o,{x:e,y:s}),{startAngle:l,endAngle:c,innerRadius:h,outerRadius:d,circumference:u}=this.getProps(["startAngle","endAngle","innerRadius","outerRadius","circumference"],n),f=(this.options.spacing+this.options.borderWidth)/2,g=D(u,c-l),p=se(a,l,c)&&l!==c,m=g>=B||p,b=ut(r,h+f,d+f);return m&&b}getCenterPoint(e){let{x:s,y:n,startAngle:o,endAngle:a,innerRadius:r,outerRadius:l}=this.getProps(["x","y","startAngle","endAngle","innerRadius","outerRadius"],e),{offset:c,spacing:h}=this.options,d=(o+a)/2,u=(r+l+h+c)/2;return{x:s+Math.cos(d)*u,y:n+Math.sin(d)*u}}tooltipPosition(e){return this.getCenterPoint(e)}draw(e){let{options:s,circumference:n}=this,o=(s.offset||0)/4,a=(s.spacing||0)/2,r=s.circular;if(this.pixelMargin=s.borderAlign==="inner"?.33:0,this.fullCircles=n>B?Math.floor(n/B):0,n===0||this.innerRadius<0||this.outerRadius<0)return;e.save();let l=(this.startAngle+this.endAngle)/2;e.translate(Math.cos(l)*o,Math.sin(l)*o);let c=1-Math.sin(Math.min(R,n||0)),h=o*c;e.fillStyle=s.backgroundColor,e.strokeStyle=s.borderColor,Gl(e,this,h,a,r),Jl(e,this,h,a,r),e.restore()}};M(jt,"id","arc"),M(jt,"defaults",{borderAlign:"center",borderColor:"#fff",borderDash:[],borderDashOffset:0,borderJoinStyle:void 0,borderRadius:0,borderWidth:2,offset:0,spacing:0,angle:void 0,circular:!0,selfJoin:!1}),M(jt,"defaultRoutes",{backgroundColor:"backgroundColor"}),M(jt,"descriptors",{_scriptable:!0,_indexable:e=>e!=="borderDash"});function Wo(i,t,e=t){i.lineCap=D(e.borderCapStyle,t.borderCapStyle),i.setLineDash(D(e.borderDash,t.borderDash)),i.lineDashOffset=D(e.borderDashOffset,t.borderDashOffset),i.lineJoin=D(e.borderJoinStyle,t.borderJoinStyle),i.lineWidth=D(e.borderWidth,t.borderWidth),i.strokeStyle=D(e.borderColor,t.borderColor)}function Zl(i,t,e){i.lineTo(e.x,e.y)}function Ql(i){return i.stepped?mn:i.tension||i.cubicInterpolationMode==="monotone"?bn:Zl}function No(i,t,e={}){let s=i.length,{start:n=0,end:o=s-1}=e,{start:a,end:r}=t,l=Math.max(n,a),c=Math.min(o,r),h=nr&&o>r;return{count:s,start:l,loop:t.loop,ilen:c(a+(c?r-y:y))%o,v=()=>{p!==m&&(i.lineTo(h,m),i.lineTo(h,p),i.lineTo(h,b))};for(l&&(f=n[x(0)],i.moveTo(f.x,f.y)),u=0;u<=r;++u){if(f=n[x(u)],f.skip)continue;let y=f.x,_=f.y,k=y|0;k===g?(_m&&(m=_),h=(d*h+y)/++d):(v(),i.lineTo(y,_),g=k,d=0,p=m=_),b=_}v()}function Ls(i){let t=i.options,e=t.borderDash&&t.borderDash.length;return!i._decimated&&!i._loop&&!t.tension&&t.cubicInterpolationMode!=="monotone"&&!t.stepped&&!e?ec:tc}function ic(i){return i.stepped?Pn:i.tension||i.cubicInterpolationMode==="monotone"?Dn:Pt}function sc(i,t,e,s){let n=t._path;n||(n=t._path=new Path2D,t.path(n,e,s)&&n.closePath()),Wo(i,t.options),i.stroke(n)}function nc(i,t,e,s){let{segments:n,options:o}=t,a=Ls(t);for(let r of n)Wo(i,o,r.style),i.beginPath(),a(i,t,r,{start:e,end:e+s-1})&&i.closePath(),i.stroke()}var oc=typeof Path2D=="function";function ac(i,t,e,s){oc&&!t.options.segment?sc(i,t,e,s):nc(i,t,e,s)}var pt=class extends st{constructor(t){super(),this.animated=!0,this.options=void 0,this._chart=void 0,this._loop=void 0,this._fullLoop=void 0,this._path=void 0,this._points=void 0,this._segments=void 0,this._decimated=!1,this._pointsUpdated=!1,this._datasetIndex=void 0,t&&Object.assign(this,t)}updateControlPoints(t,e){let s=this.options;if((s.tension||s.cubicInterpolationMode==="monotone")&&!s.stepped&&!this._pointsUpdated){let n=s.spanGaps?this._loop:this._fullLoop;kn(this._points,s,t,n,e),this._pointsUpdated=!0}}set points(t){this._points=t,delete this._segments,delete this._path,this._pointsUpdated=!1}get points(){return this._points}get segments(){return this._segments||(this._segments=Cn(this,this.options.segment))}first(){let t=this.segments,e=this.points;return t.length&&e[t[0].start]}last(){let t=this.segments,e=this.points,s=t.length;return s&&e[t[s-1].end]}interpolate(t,e){let s=this.options,n=t[e],o=this.points,a=cs(this,{property:e,start:n,end:n});if(!a.length)return;let r=[],l=ic(s),c,h;for(c=0,h=a.length;ct!=="borderDash"&&t!=="fill"});function no(i,t,e,s){let n=i.options,{[e]:o}=i.getProps([e],s);return Math.abs(t-o)i.replace("rgb(","rgba(").replace(")",", 0.5)"));function jo(i){return Rs[i%Rs.length]}function $o(i){return oo[i%oo.length]}function fc(i,t){return i.borderColor=jo(t),i.backgroundColor=$o(t),++t}function gc(i,t){return i.backgroundColor=i.data.map(()=>jo(t++)),t}function pc(i,t){return i.backgroundColor=i.data.map(()=>$o(t++)),t}function mc(i){let t=0;return(e,s)=>{let n=i.getDatasetMeta(s).controller;n instanceof kt?t=gc(e,t):n instanceof Yt?t=pc(e,t):n&&(t=fc(e,t))}}function ao(i){let t;for(t in i)if(i[t].borderColor||i[t].backgroundColor)return!0;return!1}function bc(i){return i&&(i.borderColor||i.backgroundColor)}function xc(){return V.borderColor!=="rgba(0,0,0,0.1)"||V.backgroundColor!=="rgba(0,0,0,0.1)"}var _c={id:"colors",defaults:{enabled:!0,forceOverride:!1},beforeLayout(i,t,e){if(!e.enabled)return;let{data:{datasets:s},options:n}=i.config,{elements:o}=n,a=ao(s)||bc(n)||o&&ao(o)||xc();if(!e.forceOverride&&a)return;let r=mc(i);s.forEach(r)}};function yc(i,t,e,s,n){let o=n.samples||s;if(o>=e)return i.slice(t,t+e);let a=[],r=(e-2)/(o-2),l=0,c=t+e-1,h=t,d,u,f,g,p;for(a[l++]=i[h],d=0;df&&(f=g,u=i[x],p=x);a[l++]=u,h=p}return a[l++]=i[c],a}function vc(i,t,e,s){let n=0,o=0,a,r,l,c,h,d,u,f,g,p,m=[],b=t+e-1,x=i[t].x,y=i[b].x-x;for(a=t;ap&&(p=c,u=a),n=(o*n+r.x)/++o;else{let k=a-1;if(!A(d)&&!A(u)){let w=Math.min(d,u),S=Math.max(d,u);w!==f&&w!==k&&m.push({...i[w],x:n}),S!==f&&S!==k&&m.push({...i[S],x:n})}a>0&&k!==f&&m.push(i[k]),m.push(r),h=_,o=0,g=p=c,d=u=f=a}}return m}function Yo(i){if(i._decimated){let t=i._data;delete i._decimated,delete i._data,Object.defineProperty(i,"data",{configurable:!0,enumerable:!0,writable:!0,value:t})}}function ro(i){i.data.datasets.forEach(t=>{Yo(t)})}function Mc(i,t){let e=t.length,s=0,n,{iScale:o}=i,{min:a,max:r,minDefined:l,maxDefined:c}=o.getUserBounds();return l&&(s=Y(ct(t,o.axis,a).lo,0,e-1)),c?n=Y(ct(t,o.axis,r).hi+1,s,e)-s:n=e-s,{start:s,count:n}}var kc={id:"decimation",defaults:{algorithm:"min-max",enabled:!1},beforeElementsUpdate:(i,t,e)=>{if(!e.enabled){ro(i);return}let s=i.width;i.data.datasets.forEach((n,o)=>{let{_data:a,indexAxis:r}=n,l=i.getDatasetMeta(o),c=a||n.data;if(ae([r,i.options.indexAxis])==="y"||!l.controller.supportsDecimation)return;let h=i.scales[l.xAxisID];if(h.type!=="linear"&&h.type!=="time"||i.options.parsing)return;let{start:d,count:u}=Mc(l,c),f=e.threshold||4*s;if(u<=f){Yo(n);return}A(a)&&(n._data=c,delete n.data,Object.defineProperty(n,"data",{configurable:!0,enumerable:!0,get:function(){return this._decimated},set:function(p){this._data=p}}));let g;switch(e.algorithm){case"lttb":g=yc(c,d,u,s,e);break;case"min-max":g=vc(c,d,u,s);break;default:throw new Error(`Unsupported decimation algorithm '${e.algorithm}'`)}n._decimated=g})},destroy(i){ro(i)}};function wc(i,t,e){let s=i.segments,n=i.points,o=t.points,a=[];for(let r of s){let{start:l,end:c}=r;c=Di(l,c,n);let h=Es(e,n[l],n[c],r.loop);if(!t.segments){a.push({source:r,target:h,start:n[l],end:n[c]});continue}let d=cs(t,h);for(let u of d){let f=Es(e,o[u.start],o[u.end],u.loop),g=ls(r,n,f);for(let p of g)a.push({source:p,target:u,start:{[e]:lo(h,f,"start",Math.max)},end:{[e]:lo(h,f,"end",Math.min)}})}}return a}function Es(i,t,e,s){if(s)return;let n=t[i],o=e[i];return i==="angle"&&(n=X(n),o=X(o)),{property:i,start:n,end:o}}function Sc(i,t){let{x:e=null,y:s=null}=i||{},n=t.points,o=[];return t.segments.forEach(({start:a,end:r})=>{r=Di(a,r,n);let l=n[a],c=n[r];s!==null?(o.push({x:l.x,y:s}),o.push({x:c.x,y:s})):e!==null&&(o.push({x:e,y:l.y}),o.push({x:e,y:c.y}))}),o}function Di(i,t,e){for(;t>i;t--){let s=e[t];if(!isNaN(s.x)&&!isNaN(s.y))break}return t}function lo(i,t,e,s){return i&&t?s(i[e],t[e]):i?i[e]:t?t[e]:0}function Uo(i,t){let e=[],s=!1;return z(i)?(s=!0,e=i):e=Sc(i,t),e.length?new pt({points:e,options:{tension:0},_loop:s,_fullLoop:s}):null}function co(i){return i&&i.fill!==!1}function Pc(i,t,e){let n=i[t].fill,o=[t],a;if(!e)return n;for(;n!==!1&&o.indexOf(n)===-1;){if(!N(n))return n;if(a=i[n],!a)return!1;if(a.visible)return n;o.push(n),n=a.fill}return!1}function Dc(i,t,e){let s=Tc(i);if(T(s))return isNaN(s.value)?!1:s;let n=parseFloat(s);return N(n)&&Math.floor(n)===n?Oc(s[0],t,n,e):["origin","start","end","stack","shape"].indexOf(s)>=0&&s}function Oc(i,t,e,s){return(i==="-"||i==="+")&&(e=t+e),e===t||e<0||e>=s?!1:e}function Cc(i,t){let e=null;return i==="start"?e=t.bottom:i==="end"?e=t.top:T(i)?e=t.getPixelForValue(i.value):t.getBasePixel&&(e=t.getBasePixel()),e}function Ac(i,t,e){let s;return i==="start"?s=e:i==="end"?s=t.options.reverse?t.min:t.max:T(i)?s=i.value:s=t.getBaseValue(),s}function Tc(i){let t=i.options,e=t.fill,s=D(e&&e.target,e);return s===void 0&&(s=!!t.backgroundColor),s===!1||s===null?!1:s===!0?"origin":s}function Lc(i){let{scale:t,index:e,line:s}=i,n=[],o=s.segments,a=s.points,r=Rc(t,e);r.push(Uo({x:null,y:t.bottom},s));for(let l=0;l=0;--a){let r=n[a].$filler;r&&(r.line.updateControlPoints(o,r.axis),s&&r.fill&&ys(i.ctx,r,o))}},beforeDatasetsDraw(i,t,e){if(e.drawTime!=="beforeDatasetsDraw")return;let s=i.getSortedVisibleDatasetMetas();for(let n=s.length-1;n>=0;--n){let o=s[n].$filler;co(o)&&ys(i.ctx,o,i.chartArea)}},beforeDatasetDraw(i,t,e){let s=t.meta.$filler;!co(s)||e.drawTime!=="beforeDatasetDraw"||ys(i.ctx,s,i.chartArea)},defaults:{propagate:!0,drawTime:"beforeDatasetDraw"}},go=(i,t)=>{let{boxHeight:e=t,boxWidth:s=t}=i;return i.usePointStyle&&(e=Math.min(e,t),s=i.pointStyleWidth||Math.min(s,t)),{boxWidth:s,boxHeight:e,itemHeight:Math.max(t,e)}},$c=(i,t)=>i!==null&&t!==null&&i.datasetIndex===t.datasetIndex&&i.index===t.index,Pi=class extends st{constructor(t){super(),this._added=!1,this.legendHitBoxes=[],this._hoveredItem=null,this.doughnutMode=!1,this.chart=t.chart,this.options=t.options,this.ctx=t.ctx,this.legendItems=void 0,this.columnSizes=void 0,this.lineWidths=void 0,this.maxHeight=void 0,this.maxWidth=void 0,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.height=void 0,this.width=void 0,this._margins=void 0,this.position=void 0,this.weight=void 0,this.fullSize=void 0}update(t,e,s){this.maxWidth=t,this.maxHeight=e,this._margins=s,this.setDimensions(),this.buildLabels(),this.fit()}setDimensions(){this.isHorizontal()?(this.width=this.maxWidth,this.left=this._margins.left,this.right=this.width):(this.height=this.maxHeight,this.top=this._margins.top,this.bottom=this.height)}buildLabels(){let t=this.options.labels||{},e=F(t.generateLabels,[this.chart],this)||[];t.filter&&(e=e.filter(s=>t.filter(s,this.chart.data))),t.sort&&(e=e.sort((s,n)=>t.sort(s,n,this.chart.data))),this.options.reverse&&e.reverse(),this.legendItems=e}fit(){let{options:t,ctx:e}=this;if(!t.display){this.width=this.height=0;return}let s=t.labels,n=$(s.font),o=n.size,a=this._computeTitleHeight(),{boxWidth:r,itemHeight:l}=go(s,o),c,h;e.font=n.string,this.isHorizontal()?(c=this.maxWidth,h=this._fitRows(a,o,r,l)+10):(h=this.maxHeight,c=this._fitCols(a,n,r,l)+10),this.width=Math.min(c,t.maxWidth||this.maxWidth),this.height=Math.min(h,t.maxHeight||this.maxHeight)}_fitRows(t,e,s,n){let{ctx:o,maxWidth:a,options:{labels:{padding:r}}}=this,l=this.legendHitBoxes=[],c=this.lineWidths=[0],h=n+r,d=t;o.textAlign="left",o.textBaseline="middle";let u=-1,f=-h;return this.legendItems.forEach((g,p)=>{let m=s+e/2+o.measureText(g.text).width;(p===0||c[c.length-1]+m+2*r>a)&&(d+=h,c[c.length-(p>0?0:1)]=0,f+=h,u++),l[p]={left:0,top:f,row:u,width:m,height:n},c[c.length-1]+=m+r}),d}_fitCols(t,e,s,n){let{ctx:o,maxHeight:a,options:{labels:{padding:r}}}=this,l=this.legendHitBoxes=[],c=this.columnSizes=[],h=a-t,d=r,u=0,f=0,g=0,p=0;return this.legendItems.forEach((m,b)=>{let{itemWidth:x,itemHeight:v}=Yc(s,e,o,m,n);b>0&&f+v+2*r>h&&(d+=u+r,c.push({width:u,height:f}),g+=u+r,p++,u=f=0),l[b]={left:g,top:f,col:p,width:x,height:v},u=Math.max(u,x),f+=v+r}),d+=u,c.push({width:u,height:f}),d}adjustHitBoxes(){if(!this.options.display)return;let t=this._computeTitleHeight(),{legendHitBoxes:e,options:{align:s,labels:{padding:n},rtl:o}}=this,a=Wt(o,this.left,this.width);if(this.isHorizontal()){let r=0,l=K(s,this.left+n,this.right-this.lineWidths[r]);for(let c of e)r!==c.row&&(r=c.row,l=K(s,this.left+n,this.right-this.lineWidths[r])),c.top+=this.top+t+n,c.left=a.leftForLtr(a.x(l),c.width),l+=c.width+n}else{let r=0,l=K(s,this.top+t+n,this.bottom-this.columnSizes[r].height);for(let c of e)c.col!==r&&(r=c.col,l=K(s,this.top+t+n,this.bottom-this.columnSizes[r].height)),c.top=l,c.left+=this.left+n,c.left=a.leftForLtr(a.x(c.left),c.width),l+=c.height+n}}isHorizontal(){return this.options.position==="top"||this.options.position==="bottom"}draw(){if(this.options.display){let t=this.ctx;Pe(t,this),this._draw(),De(t)}}_draw(){let{options:t,columnSizes:e,lineWidths:s,ctx:n}=this,{align:o,labels:a}=t,r=V.color,l=Wt(t.rtl,this.left,this.width),c=$(a.font),{padding:h}=a,d=c.size,u=d/2,f;this.drawTitle(),n.textAlign=l.textAlign("left"),n.textBaseline="middle",n.lineWidth=.5,n.font=c.string;let{boxWidth:g,boxHeight:p,itemHeight:m}=go(a,d),b=function(k,w,S){if(isNaN(g)||g<=0||isNaN(p)||p<0)return;n.save();let P=D(S.lineWidth,1);if(n.fillStyle=D(S.fillStyle,r),n.lineCap=D(S.lineCap,"butt"),n.lineDashOffset=D(S.lineDashOffset,0),n.lineJoin=D(S.lineJoin,"miter"),n.lineWidth=P,n.strokeStyle=D(S.strokeStyle,r),n.setLineDash(D(S.lineDash,[])),a.usePointStyle){let O={radius:p*Math.SQRT2/2,pointStyle:S.pointStyle,rotation:S.rotation,borderWidth:P},C=l.xPlus(k,g/2),L=w+u;Zi(n,O,C,L,a.pointStyleWidth&&g)}else{let O=w+Math.max((d-p)/2,0),C=l.leftForLtr(k,g),L=Tt(S.borderRadius);n.beginPath(),Object.values(L).some(U=>U!==0)?oe(n,{x:C,y:O,w:g,h:p,radius:L}):n.rect(C,O,g,p),n.fill(),P!==0&&n.stroke()}n.restore()},x=function(k,w,S){At(n,S.text,k,w+m/2,c,{strikethrough:S.hidden,textAlign:l.textAlign(S.textAlign)})},v=this.isHorizontal(),y=this._computeTitleHeight();v?f={x:K(o,this.left+h,this.right-s[0]),y:this.top+h+y,line:0}:f={x:this.left+h,y:K(o,this.top+y+h,this.bottom-e[0].height),line:0},as(this.ctx,t.textDirection);let _=m+h;this.legendItems.forEach((k,w)=>{n.strokeStyle=k.fontColor,n.fillStyle=k.fontColor;let S=n.measureText(k.text).width,P=l.textAlign(k.textAlign||(k.textAlign=a.textAlign)),O=g+u+S,C=f.x,L=f.y;l.setWidth(this.width),v?w>0&&C+O+h>this.right&&(L=f.y+=_,f.line++,C=f.x=K(o,this.left+h,this.right-s[f.line])):w>0&&L+_>this.bottom&&(C=f.x=C+e[f.line].width+h,f.line++,L=f.y=K(o,this.top+y+h,this.bottom-e[f.line].height));let U=l.x(C);if(b(U,L,k),C=fn(P,C+g+u,v?C+O:this.right,t.rtl),x(l.x(C),L,k),v)f.x+=O+h;else if(typeof k.text!="string"){let et=c.lineHeight;f.y+=Xo(k,et)+h}else f.y+=_}),rs(this.ctx,t.textDirection)}drawTitle(){let t=this.options,e=t.title,s=$(e.font),n=q(e.padding);if(!e.display)return;let o=Wt(t.rtl,this.left,this.width),a=this.ctx,r=e.position,l=s.size/2,c=n.top+l,h,d=this.left,u=this.width;if(this.isHorizontal())u=Math.max(...this.lineWidths),h=this.top+c,d=K(t.align,d,this.right-u);else{let g=this.columnSizes.reduce((p,m)=>Math.max(p,m.height),0);h=c+K(t.align,this.top,this.bottom-g-t.labels.padding-this._computeTitleHeight())}let f=K(r,d,d+u);a.textAlign=o.textAlign(oi(r)),a.textBaseline="middle",a.strokeStyle=e.color,a.fillStyle=e.color,a.font=s.string,At(a,e.text,f,h,s)}_computeTitleHeight(){let t=this.options.title,e=$(t.font),s=q(t.padding);return t.display?e.lineHeight+s.height:0}_getLegendItemAt(t,e){let s,n,o;if(ut(t,this.left,this.right)&&ut(e,this.top,this.bottom)){for(o=this.legendHitBoxes,s=0;so.length>a.length?o:a)),t+e.size/2+s.measureText(n).width}function Xc(i,t,e){let s=i;return typeof t.text!="string"&&(s=Xo(t,e)),s}function Xo(i,t){let e=i.text?i.text.length:0;return t*e}function Kc(i,t){return!!((i==="mousemove"||i==="mouseout")&&(t.onHover||t.onLeave)||t.onClick&&(i==="click"||i==="mouseup"))}var qc={id:"legend",_element:Pi,start(i,t,e){let s=i.legend=new Pi({ctx:i.ctx,options:e,chart:i});J.configure(i,s,e),J.addBox(i,s)},stop(i){J.removeBox(i,i.legend),delete i.legend},beforeUpdate(i,t,e){let s=i.legend;J.configure(i,s,e),s.options=e},afterUpdate(i){let t=i.legend;t.buildLabels(),t.adjustHitBoxes()},afterEvent(i,t){t.replay||i.legend.handleEvent(t.event)},defaults:{display:!0,position:"top",align:"center",fullSize:!0,reverse:!1,weight:1e3,onClick(i,t,e){let s=t.datasetIndex,n=e.chart;n.isDatasetVisible(s)?(n.hide(s),t.hidden=!0):(n.show(s),t.hidden=!1)},onHover:null,onLeave:null,labels:{color:i=>i.chart.options.color,boxWidth:40,padding:10,generateLabels(i){let t=i.data.datasets,{labels:{usePointStyle:e,pointStyle:s,textAlign:n,color:o,useBorderRadius:a,borderRadius:r}}=i.legend.options;return i._getSortedDatasetMetas().map(l=>{let c=l.controller.getStyle(e?0:void 0),h=q(c.borderWidth);return{text:t[l.index].label,fillStyle:c.backgroundColor,fontColor:o,hidden:!l.visible,lineCap:c.borderCapStyle,lineDash:c.borderDash,lineDashOffset:c.borderDashOffset,lineJoin:c.borderJoinStyle,lineWidth:(h.width+h.height)/4,strokeStyle:c.borderColor,pointStyle:s||c.pointStyle,rotation:c.rotation,textAlign:n||c.textAlign,borderRadius:a&&(r||c.borderRadius),datasetIndex:l.index}},this)}},title:{color:i=>i.chart.options.color,display:!1,position:"center",text:""}},descriptors:{_scriptable:i=>!i.startsWith("on"),labels:{_scriptable:i=>!["generateLabels","filter","sort"].includes(i)}}},He=class extends st{constructor(t){super(),this.chart=t.chart,this.options=t.options,this.ctx=t.ctx,this._padding=void 0,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.width=void 0,this.height=void 0,this.position=void 0,this.weight=void 0,this.fullSize=void 0}update(t,e){let s=this.options;if(this.left=0,this.top=0,!s.display){this.width=this.height=this.right=this.bottom=0;return}this.width=this.right=t,this.height=this.bottom=e;let n=z(s.text)?s.text.length:1;this._padding=q(s.padding);let o=n*$(s.font).lineHeight+this._padding.height;this.isHorizontal()?this.height=o:this.width=o}isHorizontal(){let t=this.options.position;return t==="top"||t==="bottom"}_drawArgs(t){let{top:e,left:s,bottom:n,right:o,options:a}=this,r=a.align,l=0,c,h,d;return this.isHorizontal()?(h=K(r,s,o),d=e+t,c=o-s):(a.position==="left"?(h=s+t,d=K(r,n,e),l=R*-.5):(h=o-t,d=K(r,e,n),l=R*.5),c=n-e),{titleX:h,titleY:d,maxWidth:c,rotation:l}}draw(){let t=this.ctx,e=this.options;if(!e.display)return;let s=$(e.font),o=s.lineHeight/2+this._padding.top,{titleX:a,titleY:r,maxWidth:l,rotation:c}=this._drawArgs(o);At(t,e.text,0,0,s,{color:e.color,maxWidth:l,rotation:c,textAlign:oi(e.align),textBaseline:"middle",translation:[a,r]})}};function Gc(i,t){let e=new He({ctx:i.ctx,options:t,chart:i});J.configure(i,e,t),J.addBox(i,e),i.titleBlock=e}var Jc={id:"title",_element:He,start(i,t,e){Gc(i,e)},stop(i){let t=i.titleBlock;J.removeBox(i,t),delete i.titleBlock},beforeUpdate(i,t,e){let s=i.titleBlock;J.configure(i,s,e),s.options=e},defaults:{align:"center",display:!1,font:{weight:"bold"},fullSize:!0,padding:10,position:"top",text:"",weight:2e3},defaultRoutes:{color:"color"},descriptors:{_scriptable:!0,_indexable:!1}},mi=new WeakMap,Zc={id:"subtitle",start(i,t,e){let s=new He({ctx:i.ctx,options:e,chart:i});J.configure(i,s,e),J.addBox(i,s),mi.set(i,s)},stop(i){J.removeBox(i,mi.get(i)),mi.delete(i)},beforeUpdate(i,t,e){let s=mi.get(i);J.configure(i,s,e),s.options=e},defaults:{align:"center",display:!1,font:{weight:"normal"},fullSize:!0,padding:0,position:"top",text:"",weight:1500},defaultRoutes:{color:"color"},descriptors:{_scriptable:!0,_indexable:!1}},Ie={average(i){if(!i.length)return!1;let t,e,s=new Set,n=0,o=0;for(t=0,e=i.length;tr+l)/s.size,y:n/o}},nearest(i,t){if(!i.length)return!1;let e=t.x,s=t.y,n=Number.POSITIVE_INFINITY,o,a,r;for(o=0,a=i.length;o-1?i.split(` +`):i}function Qc(i,t){let{element:e,datasetIndex:s,index:n}=t,o=i.getDatasetMeta(s).controller,{label:a,value:r}=o.getLabelAndValue(n);return{chart:i,label:a,parsed:o.getParsed(n),raw:i.data.datasets[s].data[n],formattedValue:r,dataset:o.getDataset(),dataIndex:n,datasetIndex:s,element:e}}function po(i,t){let e=i.chart.ctx,{body:s,footer:n,title:o}=i,{boxWidth:a,boxHeight:r}=t,l=$(t.bodyFont),c=$(t.titleFont),h=$(t.footerFont),d=o.length,u=n.length,f=s.length,g=q(t.padding),p=g.height,m=0,b=s.reduce((y,_)=>y+_.before.length+_.lines.length+_.after.length,0);if(b+=i.beforeBody.length+i.afterBody.length,d&&(p+=d*c.lineHeight+(d-1)*t.titleSpacing+t.titleMarginBottom),b){let y=t.displayColors?Math.max(r,l.lineHeight):l.lineHeight;p+=f*y+(b-f)*l.lineHeight+(b-1)*t.bodySpacing}u&&(p+=t.footerMarginTop+u*h.lineHeight+(u-1)*t.footerSpacing);let x=0,v=function(y){m=Math.max(m,e.measureText(y).width+x)};return e.save(),e.font=c.string,E(i.title,v),e.font=l.string,E(i.beforeBody.concat(i.afterBody),v),x=t.displayColors?a+2+t.boxPadding:0,E(s,y=>{E(y.before,v),E(y.lines,v),E(y.after,v)}),x=0,e.font=h.string,E(i.footer,v),e.restore(),m+=g.width,{width:m,height:p}}function th(i,t){let{y:e,height:s}=t;return ei.height-s/2?"bottom":"center"}function eh(i,t,e,s){let{x:n,width:o}=s,a=e.caretSize+e.caretPadding;if(i==="left"&&n+o+a>t.width||i==="right"&&n-o-a<0)return!0}function ih(i,t,e,s){let{x:n,width:o}=e,{width:a,chartArea:{left:r,right:l}}=i,c="center";return s==="center"?c=n<=(r+l)/2?"left":"right":n<=o/2?c="left":n>=a-o/2&&(c="right"),eh(c,i,t,e)&&(c="center"),c}function mo(i,t,e){let s=e.yAlign||t.yAlign||th(i,e);return{xAlign:e.xAlign||t.xAlign||ih(i,t,e,s),yAlign:s}}function sh(i,t){let{x:e,width:s}=i;return t==="right"?e-=s:t==="center"&&(e-=s/2),e}function nh(i,t,e){let{y:s,height:n}=i;return t==="top"?s+=e:t==="bottom"?s-=n+e:s-=n/2,s}function bo(i,t,e,s){let{caretSize:n,caretPadding:o,cornerRadius:a}=i,{xAlign:r,yAlign:l}=e,c=n+o,{topLeft:h,topRight:d,bottomLeft:u,bottomRight:f}=Tt(a),g=sh(t,r),p=nh(t,l,c);return l==="center"?r==="left"?g+=c:r==="right"&&(g-=c):r==="left"?g-=Math.max(h,u)+n:r==="right"&&(g+=Math.max(d,f)+n),{x:Y(g,0,s.width-t.width),y:Y(p,0,s.height-t.height)}}function bi(i,t,e){let s=q(e.padding);return t==="center"?i.x+i.width/2:t==="right"?i.x+i.width-s.right:i.x+s.left}function xo(i){return ft([],Mt(i))}function oh(i,t,e){return yt(i,{tooltip:t,tooltipItems:e,type:"tooltip"})}function _o(i,t){let e=t&&t.dataset&&t.dataset.tooltip&&t.dataset.tooltip.callbacks;return e?i.override(e):i}var Ko={beforeTitle:dt,title(i){if(i.length>0){let t=i[0],e=t.chart.data.labels,s=e?e.length:0;if(this&&this.options&&this.options.mode==="dataset")return t.dataset.label||"";if(t.label)return t.label;if(s>0&&t.dataIndex"u"?Ko[t].call(e,s):n}var We=class extends st{constructor(t){super(),this.opacity=0,this._active=[],this._eventPosition=void 0,this._size=void 0,this._cachedAnimations=void 0,this._tooltipItems=[],this.$animations=void 0,this.$context=void 0,this.chart=t.chart,this.options=t.options,this.dataPoints=void 0,this.title=void 0,this.beforeBody=void 0,this.body=void 0,this.afterBody=void 0,this.footer=void 0,this.xAlign=void 0,this.yAlign=void 0,this.x=void 0,this.y=void 0,this.height=void 0,this.width=void 0,this.caretX=void 0,this.caretY=void 0,this.labelColors=void 0,this.labelPointStyles=void 0,this.labelTextColors=void 0}initialize(t){this.options=t,this._cachedAnimations=void 0,this.$context=void 0}_resolveAnimations(){let t=this._cachedAnimations;if(t)return t;let e=this.chart,s=this.options.setContext(this.getContext()),n=s.enabled&&e.options.animation&&s.animations,o=new vi(this.chart,n);return n._cacheable&&(this._cachedAnimations=Object.freeze(o)),o}getContext(){return this.$context||(this.$context=oh(this.chart.getContext(),this,this._tooltipItems))}getTitle(t,e){let{callbacks:s}=e,n=Q(s,"beforeTitle",this,t),o=Q(s,"title",this,t),a=Q(s,"afterTitle",this,t),r=[];return r=ft(r,Mt(n)),r=ft(r,Mt(o)),r=ft(r,Mt(a)),r}getBeforeBody(t,e){return xo(Q(e.callbacks,"beforeBody",this,t))}getBody(t,e){let{callbacks:s}=e,n=[];return E(t,o=>{let a={before:[],lines:[],after:[]},r=_o(s,o);ft(a.before,Mt(Q(r,"beforeLabel",this,o))),ft(a.lines,Q(r,"label",this,o)),ft(a.after,Mt(Q(r,"afterLabel",this,o))),n.push(a)}),n}getAfterBody(t,e){return xo(Q(e.callbacks,"afterBody",this,t))}getFooter(t,e){let{callbacks:s}=e,n=Q(s,"beforeFooter",this,t),o=Q(s,"footer",this,t),a=Q(s,"afterFooter",this,t),r=[];return r=ft(r,Mt(n)),r=ft(r,Mt(o)),r=ft(r,Mt(a)),r}_createItems(t){let e=this._active,s=this.chart.data,n=[],o=[],a=[],r=[],l,c;for(l=0,c=e.length;lt.filter(h,d,u,s))),t.itemSort&&(r=r.sort((h,d)=>t.itemSort(h,d,s))),E(r,h=>{let d=_o(t.callbacks,h);n.push(Q(d,"labelColor",this,h)),o.push(Q(d,"labelPointStyle",this,h)),a.push(Q(d,"labelTextColor",this,h))}),this.labelColors=n,this.labelPointStyles=o,this.labelTextColors=a,this.dataPoints=r,r}update(t,e){let s=this.options.setContext(this.getContext()),n=this._active,o,a=[];if(!n.length)this.opacity!==0&&(o={opacity:0});else{let r=Ie[s.position].call(this,n,this._eventPosition);a=this._createItems(s),this.title=this.getTitle(a,s),this.beforeBody=this.getBeforeBody(a,s),this.body=this.getBody(a,s),this.afterBody=this.getAfterBody(a,s),this.footer=this.getFooter(a,s);let l=this._size=po(this,s),c=Object.assign({},r,l),h=mo(this.chart,s,c),d=bo(s,c,h,this.chart);this.xAlign=h.xAlign,this.yAlign=h.yAlign,o={opacity:1,x:d.x,y:d.y,width:l.width,height:l.height,caretX:r.x,caretY:r.y}}this._tooltipItems=a,this.$context=void 0,o&&this._resolveAnimations().update(this,o),t&&s.external&&s.external.call(this,{chart:this.chart,tooltip:this,replay:e})}drawCaret(t,e,s,n){let o=this.getCaretPosition(t,s,n);e.lineTo(o.x1,o.y1),e.lineTo(o.x2,o.y2),e.lineTo(o.x3,o.y3)}getCaretPosition(t,e,s){let{xAlign:n,yAlign:o}=this,{caretSize:a,cornerRadius:r}=s,{topLeft:l,topRight:c,bottomLeft:h,bottomRight:d}=Tt(r),{x:u,y:f}=t,{width:g,height:p}=e,m,b,x,v,y,_;return o==="center"?(y=f+p/2,n==="left"?(m=u,b=m-a,v=y+a,_=y-a):(m=u+g,b=m+a,v=y-a,_=y+a),x=m):(n==="left"?b=u+Math.max(l,h)+a:n==="right"?b=u+g-Math.max(c,d)-a:b=this.caretX,o==="top"?(v=f,y=v-a,m=b-a,x=b+a):(v=f+p,y=v+a,m=b+a,x=b-a),_=v),{x1:m,x2:b,x3:x,y1:v,y2:y,y3:_}}drawTitle(t,e,s){let n=this.title,o=n.length,a,r,l;if(o){let c=Wt(s.rtl,this.x,this.width);for(t.x=bi(this,s.titleAlign,s),e.textAlign=c.textAlign(s.titleAlign),e.textBaseline="middle",a=$(s.titleFont),r=s.titleSpacing,e.fillStyle=s.titleColor,e.font=a.string,l=0;lx!==0)?(t.beginPath(),t.fillStyle=o.multiKeyBackground,oe(t,{x:p,y:g,w:c,h:l,radius:b}),t.fill(),t.stroke(),t.fillStyle=a.backgroundColor,t.beginPath(),oe(t,{x:m,y:g+1,w:c-2,h:l-2,radius:b}),t.fill()):(t.fillStyle=o.multiKeyBackground,t.fillRect(p,g,c,l),t.strokeRect(p,g,c,l),t.fillStyle=a.backgroundColor,t.fillRect(m,g+1,c-2,l-2))}t.fillStyle=this.labelTextColors[s]}drawBody(t,e,s){let{body:n}=this,{bodySpacing:o,bodyAlign:a,displayColors:r,boxHeight:l,boxWidth:c,boxPadding:h}=s,d=$(s.bodyFont),u=d.lineHeight,f=0,g=Wt(s.rtl,this.x,this.width),p=function(S){e.fillText(S,g.x(t.x+f),t.y+u/2),t.y+=u+o},m=g.textAlign(a),b,x,v,y,_,k,w;for(e.textAlign=a,e.textBaseline="middle",e.font=d.string,t.x=bi(this,m,s),e.fillStyle=s.bodyColor,E(this.beforeBody,p),f=r&&m!=="right"?a==="center"?c/2+h:c+2+h:0,y=0,k=n.length;y0&&e.stroke()}_updateAnimationTarget(t){let e=this.chart,s=this.$animations,n=s&&s.x,o=s&&s.y;if(n||o){let a=Ie[t.position].call(this,this._active,this._eventPosition);if(!a)return;let r=this._size=po(this,t),l=Object.assign({},a,this._size),c=mo(e,t,l),h=bo(t,l,c,e);(n._to!==h.x||o._to!==h.y)&&(this.xAlign=c.xAlign,this.yAlign=c.yAlign,this.width=r.width,this.height=r.height,this.caretX=a.x,this.caretY=a.y,this._resolveAnimations().update(this,h))}}_willRender(){return!!this.opacity}draw(t){let e=this.options.setContext(this.getContext()),s=this.opacity;if(!s)return;this._updateAnimationTarget(e);let n={width:this.width,height:this.height},o={x:this.x,y:this.y};s=Math.abs(s)<.001?0:s;let a=q(e.padding),r=this.title.length||this.beforeBody.length||this.body.length||this.afterBody.length||this.footer.length;e.enabled&&r&&(t.save(),t.globalAlpha=s,this.drawBackground(o,t,n,e),as(t,e.textDirection),o.y+=a.top,this.drawTitle(o,t,e),this.drawBody(o,t,e),this.drawFooter(o,t,e),rs(t,e.textDirection),t.restore())}getActiveElements(){return this._active||[]}setActiveElements(t,e){let s=this._active,n=t.map(({datasetIndex:r,index:l})=>{let c=this.chart.getDatasetMeta(r);if(!c)throw new Error("Cannot find a dataset at index "+r);return{datasetIndex:r,element:c.data[l],index:l}}),o=!we(s,n),a=this._positionChanged(n,e);(o||a)&&(this._active=n,this._eventPosition=e,this._ignoreReplayEvents=!0,this.update(!0))}handleEvent(t,e,s=!0){if(e&&this._ignoreReplayEvents)return!1;this._ignoreReplayEvents=!1;let n=this.options,o=this._active||[],a=this._getActiveElements(t,o,e,s),r=this._positionChanged(a,t),l=e||!we(a,o)||r;return l&&(this._active=a,(n.enabled||n.external)&&(this._eventPosition={x:t.x,y:t.y},this.update(!0,e))),l}_getActiveElements(t,e,s,n){let o=this.options;if(t.type==="mouseout")return[];if(!n)return e.filter(r=>this.chart.data.datasets[r.datasetIndex]&&this.chart.getDatasetMeta(r.datasetIndex).controller.getParsed(r.index)!==void 0);let a=this.chart.getElementsAtEventForMode(t,o.mode,o,s);return o.reverse&&a.reverse(),a}_positionChanged(t,e){let{caretX:s,caretY:n,options:o}=this,a=Ie[o.position].call(this,t,e);return a!==!1&&(s!==a.x||n!==a.y)}};M(We,"positioners",Ie);var ah={id:"tooltip",_element:We,positioners:Ie,afterInit(i,t,e){e&&(i.tooltip=new We({chart:i,options:e}))},beforeUpdate(i,t,e){i.tooltip&&i.tooltip.initialize(e)},reset(i,t,e){i.tooltip&&i.tooltip.initialize(e)},afterDraw(i){let t=i.tooltip;if(t&&t._willRender()){let e={tooltip:t};if(i.notifyPlugins("beforeTooltipDraw",{...e,cancelable:!0})===!1)return;t.draw(i.ctx),i.notifyPlugins("afterTooltipDraw",e)}},afterEvent(i,t){if(i.tooltip){let e=t.replay;i.tooltip.handleEvent(t.event,e,t.inChartArea)&&(t.changed=!0)}},defaults:{enabled:!0,external:null,position:"average",backgroundColor:"rgba(0,0,0,0.8)",titleColor:"#fff",titleFont:{weight:"bold"},titleSpacing:2,titleMarginBottom:6,titleAlign:"left",bodyColor:"#fff",bodySpacing:2,bodyFont:{},bodyAlign:"left",footerColor:"#fff",footerSpacing:2,footerMarginTop:6,footerFont:{weight:"bold"},footerAlign:"left",padding:6,caretPadding:2,caretSize:5,cornerRadius:6,boxHeight:(i,t)=>t.bodyFont.size,boxWidth:(i,t)=>t.bodyFont.size,multiKeyBackground:"#fff",displayColors:!0,boxPadding:0,borderColor:"rgba(0,0,0,0)",borderWidth:0,animation:{duration:400,easing:"easeOutQuart"},animations:{numbers:{type:"number",properties:["x","y","width","height","caretX","caretY"]},opacity:{easing:"linear",duration:200}},callbacks:Ko},defaultRoutes:{bodyFont:"font",footerFont:"font",titleFont:"font"},descriptors:{_scriptable:i=>i!=="filter"&&i!=="itemSort"&&i!=="external",_indexable:!1,callbacks:{_scriptable:!1,_indexable:!1},animation:{_fallback:!1},animations:{_fallback:"animation"}},additionalOptionScopes:["interaction"]},rh=Object.freeze({__proto__:null,Colors:_c,Decimation:kc,Filler:jc,Legend:qc,SubTitle:Zc,Title:Jc,Tooltip:ah}),lh=(i,t,e,s)=>(typeof t=="string"?(e=i.push(t)-1,s.unshift({index:e,label:t})):isNaN(t)&&(e=null),e);function ch(i,t,e,s){let n=i.indexOf(t);if(n===-1)return lh(i,t,e,s);let o=i.lastIndexOf(t);return n!==o?e:n}var hh=(i,t)=>i===null?null:Y(Math.round(i),0,t);function yo(i){let t=this.getLabels();return i>=0&&ie.length-1?null:this.getPixelForValue(e[t].value)}getValueForPixel(t){return Math.round(this._startValue+this.getDecimalForPixel(t)*this._valueRange)}getBasePixel(){return this.bottom}};M(Fe,"id","category"),M(Fe,"defaults",{ticks:{callback:yo}});function dh(i,t){let e=[],{bounds:n,step:o,min:a,max:r,precision:l,count:c,maxTicks:h,maxDigits:d,includeBounds:u}=i,f=o||1,g=h-1,{min:p,max:m}=t,b=!A(a),x=!A(r),v=!A(c),y=(m-p)/(d+1),_=Vi((m-p)/g/f)*f,k,w,S,P;if(_<1e-14&&!b&&!x)return[{value:p},{value:m}];P=Math.ceil(m/_)-Math.floor(p/_),P>g&&(_=Vi(P*_/g/f)*f),A(l)||(k=Math.pow(10,l),_=Math.ceil(_*k)/k),n==="ticks"?(w=Math.floor(p/_)*_,S=Math.ceil(m/_)*_):(w=p,S=m),b&&x&&o&&an((r-a)/o,_/1e3)?(P=Math.round(Math.min((r-a)/_,h)),_=(r-a)/P,w=a,S=r):v?(w=b?a:w,S=x?r:S,P=c-1,_=(S-w)/P):(P=(S-w)/_,ie(P,Math.round(P),_/1e3)?P=Math.round(P):P=Math.ceil(P));let O=Math.max(Ni(_),Ni(w));k=Math.pow(10,A(l)?O:l),w=Math.round(w*k)/k,S=Math.round(S*k)/k;let C=0;for(b&&(u&&w!==a?(e.push({value:a}),wr)break;e.push({value:L})}return x&&u&&S!==r?e.length&&ie(e[e.length-1].value,r,vo(r,y,i))?e[e.length-1].value=r:e.push({value:r}):(!x||S===r)&&e.push({value:S}),e}function vo(i,t,{horizontal:e,minRotation:s}){let n=ot(s),o=(e?Math.sin(n):Math.cos(n))||.001,a=.75*t*(""+i).length;return Math.min(t/o,a)}var me=class extends Xt{constructor(t){super(t),this.start=void 0,this.end=void 0,this._startValue=void 0,this._endValue=void 0,this._valueRange=0}parse(t,e){return A(t)||(typeof t=="number"||t instanceof Number)&&!isFinite(+t)?null:+t}handleTickRangeOptions(){let{beginAtZero:t}=this.options,{minDefined:e,maxDefined:s}=this.getUserBounds(),{min:n,max:o}=this,a=l=>n=e?n:l,r=l=>o=s?o:l;if(t){let l=lt(n),c=lt(o);l<0&&c<0?r(0):l>0&&c>0&&a(0)}if(n===o){let l=o===0?1:Math.abs(o*.05);r(o+l),t||a(n-l)}this.min=n,this.max=o}getTickLimit(){let t=this.options.ticks,{maxTicksLimit:e,stepSize:s}=t,n;return s?(n=Math.ceil(this.max/s)-Math.floor(this.min/s)+1,n>1e3&&(console.warn(`scales.${this.id}.ticks.stepSize: ${s} would result generating up to ${n} ticks. Limiting to 1000.`),n=1e3)):(n=this.computeTickLimit(),e=e||11),e&&(n=Math.min(e,n)),n}computeTickLimit(){return Number.POSITIVE_INFINITY}buildTicks(){let t=this.options,e=t.ticks,s=this.getTickLimit();s=Math.max(2,s);let n={maxTicks:s,bounds:t.bounds,min:t.min,max:t.max,precision:e.precision,step:e.stepSize,count:e.count,maxDigits:this._maxDigits(),horizontal:this.isHorizontal(),minRotation:e.minRotation||0,includeBounds:e.includeBounds!==!1},o=this._range||this,a=dh(n,o);return t.bounds==="ticks"&&Wi(a,this,"value"),t.reverse?(a.reverse(),this.start=this.max,this.end=this.min):(this.start=this.min,this.end=this.max),a}configure(){let t=this.ticks,e=this.min,s=this.max;if(super.configure(),this.options.offset&&t.length){let n=(s-e)/Math.max(t.length-1,1)/2;e-=n,s+=n}this._startValue=e,this._endValue=s,this._valueRange=s-e}getLabelForValue(t){return ne(t,this.chart.options.locale,this.options.ticks.format)}},ze=class extends me{determineDataLimits(){let{min:t,max:e}=this.getMinMax(!0);this.min=N(t)?t:0,this.max=N(e)?e:1,this.handleTickRangeOptions()}computeTickLimit(){let t=this.isHorizontal(),e=t?this.width:this.height,s=ot(this.options.ticks.minRotation),n=(t?Math.sin(s):Math.cos(s))||.001,o=this._resolveTickFontOptions(0);return Math.ceil(e/Math.min(40,o.lineHeight/n))}getPixelForValue(t){return t===null?NaN:this.getPixelForDecimal((t-this._startValue)/this._valueRange)}getValueForPixel(t){return this._startValue+this.getDecimalForPixel(t)*this._valueRange}};M(ze,"id","linear"),M(ze,"defaults",{ticks:{callback:Se.formatters.numeric}});var je=i=>Math.floor(xt(i)),Ht=(i,t)=>Math.pow(10,je(i)+t);function Mo(i){return i/Math.pow(10,je(i))===1}function ko(i,t,e){let s=Math.pow(10,e),n=Math.floor(i/s);return Math.ceil(t/s)-n}function uh(i,t){let e=t-i,s=je(e);for(;ko(i,t,s)>10;)s++;for(;ko(i,t,s)<10;)s--;return Math.min(s,je(i))}function fh(i,{min:t,max:e}){t=Z(i.min,t);let s=[],n=je(t),o=uh(t,e),a=o<0?Math.pow(10,Math.abs(o)):1,r=Math.pow(10,o),l=n>o?Math.pow(10,n):0,c=Math.round((t-l)*a)/a,h=Math.floor((t-l)/r/10)*r*10,d=Math.floor((c-h)/Math.pow(10,o)),u=Z(i.min,Math.round((l+h+d*Math.pow(10,o))*a)/a);for(;u=10?d=d<15?15:20:d++,d>=20&&(o++,d=2,a=o>=0?1:a),u=Math.round((l+h+d*Math.pow(10,o))*a)/a;let f=Z(i.max,u);return s.push({value:f,major:Mo(f),significand:d}),s}var Be=class extends Xt{constructor(t){super(t),this.start=void 0,this.end=void 0,this._startValue=void 0,this._valueRange=0}parse(t,e){let s=me.prototype.parse.apply(this,[t,e]);if(s===0){this._zero=!0;return}return N(s)&&s>0?s:null}determineDataLimits(){let{min:t,max:e}=this.getMinMax(!0);this.min=N(t)?Math.max(0,t):null,this.max=N(e)?Math.max(0,e):null,this.options.beginAtZero&&(this._zero=!0),this._zero&&this.min!==this._suggestedMin&&!N(this._userMin)&&(this.min=t===Ht(this.min,0)?Ht(this.min,-1):Ht(this.min,0)),this.handleTickRangeOptions()}handleTickRangeOptions(){let{minDefined:t,maxDefined:e}=this.getUserBounds(),s=this.min,n=this.max,o=r=>s=t?s:r,a=r=>n=e?n:r;s===n&&(s<=0?(o(1),a(10)):(o(Ht(s,-1)),a(Ht(n,1)))),s<=0&&o(Ht(n,-1)),n<=0&&a(Ht(s,1)),this.min=s,this.max=n}buildTicks(){let t=this.options,e={min:this._userMin,max:this._userMax},s=fh(e,this);return t.bounds==="ticks"&&Wi(s,this,"value"),t.reverse?(s.reverse(),this.start=this.max,this.end=this.min):(this.start=this.min,this.end=this.max),s}getLabelForValue(t){return t===void 0?"0":ne(t,this.chart.options.locale,this.options.ticks.format)}configure(){let t=this.min;super.configure(),this._startValue=xt(t),this._valueRange=xt(this.max)-xt(t)}getPixelForValue(t){return(t===void 0||t===0)&&(t=this.min),t===null||isNaN(t)?NaN:this.getPixelForDecimal(t===this.min?0:(xt(t)-this._startValue)/this._valueRange)}getValueForPixel(t){let e=this.getDecimalForPixel(t);return Math.pow(10,this._startValue+e*this._valueRange)}};M(Be,"id","logarithmic"),M(Be,"defaults",{ticks:{callback:Se.formatters.logarithmic,major:{enabled:!0}}});function Is(i){let t=i.ticks;if(t.display&&i.display){let e=q(t.backdropPadding);return D(t.font&&t.font.size,V.font.size)+e.height}return 0}function gh(i,t,e){return e=z(e)?e:[e],{w:pn(i,t.string,e),h:e.length*t.lineHeight}}function wo(i,t,e,s,n){return i===s||i===n?{start:t-e/2,end:t+e/2}:in?{start:t-e,end:t}:{start:t,end:t+e}}function ph(i){let t={l:i.left+i._padding.left,r:i.right-i._padding.right,t:i.top+i._padding.top,b:i.bottom-i._padding.bottom},e=Object.assign({},t),s=[],n=[],o=i._pointLabels.length,a=i.options.pointLabels,r=a.centerPointLabels?R/o:0;for(let l=0;lt.r&&(r=(s.end-t.r)/o,i.r=Math.max(i.r,t.r+r)),n.startt.b&&(l=(n.end-t.b)/a,i.b=Math.max(i.b,t.b+l))}function bh(i,t,e){let s=i.drawingArea,{extra:n,additionalAngle:o,padding:a,size:r}=e,l=i.getPointPosition(t,s+n+a,o),c=Math.round(si(X(l.angle+H))),h=Mh(l.y,r.h,c),d=yh(c),u=vh(l.x,r.w,d);return{visible:!0,x:l.x,y:h,textAlign:d,left:u,top:h,right:u+r.w,bottom:h+r.h}}function xh(i,t){if(!t)return!0;let{left:e,top:s,right:n,bottom:o}=i;return!(ht({x:e,y:s},t)||ht({x:e,y:o},t)||ht({x:n,y:s},t)||ht({x:n,y:o},t))}function _h(i,t,e){let s=[],n=i._pointLabels.length,o=i.options,{centerPointLabels:a,display:r}=o.pointLabels,l={extra:Is(o)/2,additionalAngle:a?R/n:0},c;for(let h=0;h270||e<90)&&(i-=t),i}function kh(i,t,e){let{left:s,top:n,right:o,bottom:a}=e,{backdropColor:r}=t;if(!A(r)){let l=Tt(t.borderRadius),c=q(t.backdropPadding);i.fillStyle=r;let h=s-c.left,d=n-c.top,u=o-s+c.width,f=a-n+c.height;Object.values(l).some(g=>g!==0)?(i.beginPath(),oe(i,{x:h,y:d,w:u,h:f,radius:l}),i.fill()):i.fillRect(h,d,u,f)}}function wh(i,t){let{ctx:e,options:{pointLabels:s}}=i;for(let n=t-1;n>=0;n--){let o=i._pointLabelItems[n];if(!o.visible)continue;let a=s.setContext(i.getPointLabelContext(n));kh(e,a,o);let r=$(a.font),{x:l,y:c,textAlign:h}=o;At(e,i._pointLabels[n],l,c+r.lineHeight/2,r,{color:a.color,textAlign:h,textBaseline:"middle"})}}function qo(i,t,e,s){let{ctx:n}=i;if(e)n.arc(i.xCenter,i.yCenter,t,0,B);else{let o=i.getPointPosition(0,t);n.moveTo(o.x,o.y);for(let a=1;a{let n=F(this.options.pointLabels.callback,[e,s],this);return n||n===0?n:""}).filter((e,s)=>this.chart.getDataVisibility(s))}fit(){let t=this.options;t.display&&t.pointLabels.display?ph(this):this.setCenterPoint(0,0,0,0)}setCenterPoint(t,e,s,n){this.xCenter+=Math.floor((t-e)/2),this.yCenter+=Math.floor((s-n)/2),this.drawingArea-=Math.min(this.drawingArea/2,Math.max(t,e,s,n))}getIndexAngle(t){let e=B/(this._pointLabels.length||1),s=this.options.startAngle||0;return X(t*e+ot(s))}getDistanceFromCenterForValue(t){if(A(t))return NaN;let e=this.drawingArea/(this.max-this.min);return this.options.reverse?(this.max-t)*e:(t-this.min)*e}getValueForDistanceFromCenter(t){if(A(t))return NaN;let e=t/(this.drawingArea/(this.max-this.min));return this.options.reverse?this.max-e:this.min+e}getPointLabelContext(t){let e=this._pointLabels||[];if(t>=0&&t{if(d!==0||d===0&&this.min<0){l=this.getDistanceFromCenterForValue(h.value);let u=this.getContext(d),f=n.setContext(u),g=o.setContext(u);Sh(this,f,l,a,g)}}),s.display){for(t.save(),r=a-1;r>=0;r--){let h=s.setContext(this.getPointLabelContext(r)),{color:d,lineWidth:u}=h;!u||!d||(t.lineWidth=u,t.strokeStyle=d,t.setLineDash(h.borderDash),t.lineDashOffset=h.borderDashOffset,l=this.getDistanceFromCenterForValue(e.reverse?this.min:this.max),c=this.getPointPosition(r,l),t.beginPath(),t.moveTo(this.xCenter,this.yCenter),t.lineTo(c.x,c.y),t.stroke())}t.restore()}}drawBorder(){}drawLabels(){let t=this.ctx,e=this.options,s=e.ticks;if(!s.display)return;let n=this.getIndexAngle(0),o,a;t.save(),t.translate(this.xCenter,this.yCenter),t.rotate(n),t.textAlign="center",t.textBaseline="middle",this.ticks.forEach((r,l)=>{if(l===0&&this.min>=0&&!e.reverse)return;let c=s.setContext(this.getContext(l)),h=$(c.font);if(o=this.getDistanceFromCenterForValue(this.ticks[l].value),c.showLabelBackdrop){t.font=h.string,a=t.measureText(r.label).width,t.fillStyle=c.backdropColor;let d=q(c.backdropPadding);t.fillRect(-a/2-d.left,-o-h.size/2-d.top,a+d.width,h.size+d.height)}At(t,r.label,0,-o,h,{color:c.color,strokeColor:c.textStrokeColor,strokeWidth:c.textStrokeWidth})}),t.restore()}drawTitle(){}};M($t,"id","radialLinear"),M($t,"defaults",{display:!0,animate:!0,position:"chartArea",angleLines:{display:!0,lineWidth:1,borderDash:[],borderDashOffset:0},grid:{circular:!1},startAngle:0,ticks:{showLabelBackdrop:!0,callback:Se.formatters.numeric},pointLabels:{backdropColor:void 0,backdropPadding:2,display:!0,font:{size:10},callback(t){return t},padding:5,centerPointLabels:!1}}),M($t,"defaultRoutes",{"angleLines.color":"borderColor","pointLabels.color":"color","ticks.color":"color"}),M($t,"descriptors",{angleLines:{_fallback:"grid"}});var Oi={millisecond:{common:!0,size:1,steps:1e3},second:{common:!0,size:1e3,steps:60},minute:{common:!0,size:6e4,steps:60},hour:{common:!0,size:36e5,steps:24},day:{common:!0,size:864e5,steps:30},week:{common:!1,size:6048e5,steps:4},month:{common:!0,size:2628e6,steps:12},quarter:{common:!1,size:7884e6,steps:4},year:{common:!0,size:3154e7}},tt=Object.keys(Oi);function So(i,t){return i-t}function Po(i,t){if(A(t))return null;let e=i._adapter,{parser:s,round:n,isoWeekday:o}=i._parseOpts,a=t;return typeof s=="function"&&(a=s(a)),N(a)||(a=typeof s=="string"?e.parse(a,s):e.parse(a)),a===null?null:(n&&(a=n==="week"&&(Vt(o)||o===!0)?e.startOf(a,"isoWeek",o):e.startOf(a,n)),+a)}function Do(i,t,e,s){let n=tt.length;for(let o=tt.indexOf(i);o=tt.indexOf(e);o--){let a=tt[o];if(Oi[a].common&&i._adapter.diff(n,s,a)>=t-1)return a}return tt[e?tt.indexOf(e):0]}function Oh(i){for(let t=tt.indexOf(i)+1,e=tt.length;t=t?e[s]:e[n];i[o]=!0}}function Ch(i,t,e,s){let n=i._adapter,o=+n.startOf(t[0].value,s),a=t[t.length-1].value,r,l;for(r=o;r<=a;r=+n.add(r,1,s))l=e[r],l>=0&&(t[l].major=!0);return t}function Co(i,t,e){let s=[],n={},o=t.length,a,r;for(a=0;a+t.value))}initOffsets(t=[]){let e=0,s=0,n,o;this.options.offset&&t.length&&(n=this.getDecimalForValue(t[0]),t.length===1?e=1-n:e=(this.getDecimalForValue(t[1])-n)/2,o=this.getDecimalForValue(t[t.length-1]),t.length===1?s=o:s=(o-this.getDecimalForValue(t[t.length-2]))/2);let a=t.length<3?.5:.25;e=Y(e,0,a),s=Y(s,0,a),this._offsets={start:e,end:s,factor:1/(e+1+s)}}_generate(){let t=this._adapter,e=this.min,s=this.max,n=this.options,o=n.time,a=o.unit||Do(o.minUnit,e,s,this._getLabelCapacity(e)),r=D(n.ticks.stepSize,1),l=a==="week"?o.isoWeekday:!1,c=Vt(l)||l===!0,h={},d=e,u,f;if(c&&(d=+t.startOf(d,"isoWeek",l)),d=+t.startOf(d,c?"day":a),t.diff(s,e,a)>1e5*r)throw new Error(e+" and "+s+" are too far apart with stepSize of "+r+" "+a);let g=n.ticks.source==="data"&&this.getDataTimestamps();for(u=d,f=0;u+p)}getLabelForValue(t){let e=this._adapter,s=this.options.time;return s.tooltipFormat?e.format(t,s.tooltipFormat):e.format(t,s.displayFormats.datetime)}format(t,e){let n=this.options.time.displayFormats,o=this._unit,a=e||n[o];return this._adapter.format(t,a)}_tickFormatFunction(t,e,s,n){let o=this.options,a=o.ticks.callback;if(a)return F(a,[t,e,s],this);let r=o.time.displayFormats,l=this._unit,c=this._majorUnit,h=l&&r[l],d=c&&r[c],u=s[e],f=c&&d&&u&&u.major;return this._adapter.format(t,n||(f?d:h))}generateTickLabels(t){let e,s,n;for(e=0,s=t.length;e0?r:1}getDataTimestamps(){let t=this._cache.data||[],e,s;if(t.length)return t;let n=this.getMatchingVisibleMetas();if(this._normalized&&n.length)return this._cache.data=n[0].controller.getAllParsedValues(this);for(e=0,s=n.length;e=i[s].pos&&t<=i[n].pos&&({lo:s,hi:n}=ct(i,"pos",t)),{pos:o,time:r}=i[s],{pos:a,time:l}=i[n]):(t>=i[s].time&&t<=i[n].time&&({lo:s,hi:n}=ct(i,"time",t)),{time:o,pos:r}=i[s],{time:a,pos:l}=i[n]);let c=a-o;return c?r+(l-r)*(t-o)/c:r}var Ve=class extends Ut{constructor(t){super(t),this._table=[],this._minPos=void 0,this._tableRange=void 0}initOffsets(){let t=this._getTimestampsForTable(),e=this._table=this.buildLookupTable(t);this._minPos=xi(e,this.min),this._tableRange=xi(e,this.max)-this._minPos,super.initOffsets(t)}buildLookupTable(t){let{min:e,max:s}=this,n=[],o=[],a,r,l,c,h;for(a=0,r=t.length;a=e&&c<=s&&n.push(c);if(n.length<2)return[{time:e,pos:0},{time:s,pos:1}];for(a=0,r=n.length;an-o)}_getTimestampsForTable(){let t=this._cache.all||[];if(t.length)return t;let e=this.getDataTimestamps(),s=this.getLabelTimestamps();return e.length&&s.length?t=this.normalize(e.concat(s)):t=e.length?e:s,t=this._cache.all=t,t}getDecimalForValue(t){return(xi(this._table,t)-this._minPos)/this._tableRange}getValueForPixel(t){let e=this._offsets,s=this.getDecimalForPixel(t)/e.factor-e.end;return xi(this._table,s*this._tableRange+this._minPos,!0)}};M(Ve,"id","timeseries"),M(Ve,"defaults",Ut.defaults);var Ah=Object.freeze({__proto__:null,CategoryScale:Fe,LinearScale:ze,LogarithmicScale:Be,RadialLinearScale:$t,TimeScale:Ut,TimeSeriesScale:Ve}),Go=[Nr,uc,rh,Ah];at.register(...Go);var Fs=at;function Th({dataChecksum:i,labels:t,values:e}){return{dataChecksum:i,init(){Alpine.effect(()=>{Alpine.store("theme");let s=this.getChart();s&&s.destroy(),this.initChart()}),window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change",()=>{Alpine.store("theme")==="system"&&this.$nextTick(()=>{let s=this.getChart();s&&s.destroy(),this.initChart()})})},initChart(){if(!(!this.$refs.canvas||!this.$refs.backgroundColorElement||!this.$refs.borderColorElement))return new Fs(this.$refs.canvas,{type:"line",data:{labels:t,datasets:[{data:e,borderWidth:2,fill:"start",tension:.5,backgroundColor:getComputedStyle(this.$refs.backgroundColorElement).color,borderColor:getComputedStyle(this.$refs.borderColorElement).color}]},options:{animation:{duration:0},elements:{point:{radius:0}},maintainAspectRatio:!1,plugins:{legend:{display:!1}},scales:{x:{display:!1},y:{display:!1}},tooltips:{enabled:!1}}})},getChart(){return this.$refs.canvas?Fs.getChart(this.$refs.canvas):null}}}export{Th as default}; +/*! Bundled license information: + +@kurkle/color/dist/color.esm.js: + (*! + * @kurkle/color v0.3.4 + * https://github.com/kurkle/color#readme + * (c) 2024 Jukka Kurkela + * Released under the MIT License + *) + +chart.js/dist/chunks/helpers.dataset.js: +chart.js/dist/chart.js: + (*! + * Chart.js v4.5.1 + * https://www.chartjs.org + * (c) 2025 Chart.js Contributors + * Released under the MIT License + *) +*/ diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..eb05362 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/public/vendor/filament-leaflet/maps/brazil.json b/public/vendor/filament-leaflet/maps/brazil.json new file mode 100644 index 0000000..2caa51e --- /dev/null +++ b/public/vendor/filament-leaflet/maps/brazil.json @@ -0,0 +1,129991 @@ +{ + "AC": { + "name": "Acre", + "coordinates": [ + [ + [-66.80619273559516, -9.814462991904888], + [-66.64484784925106, -9.88338609230922], + [-66.61981896813647, -9.894077096213199], + [-66.62664963527251, -9.899697534251452], + [-66.62445891852116, -9.907380371353499], + [-66.63571308805447, -9.913351976934425], + [-66.6263740066112, -9.921544380320737], + [-66.6326834782703, -9.922560092996138], + [-66.6357664944535, -9.926601171054191], + [-66.62706891127188, -9.932005899650195], + [-66.6274580337192, -9.935784807992885], + [-66.6333475672657, -9.937325599276205], + [-66.63584862147779, -9.941760930612888], + [-66.63807074736349, -9.95217981647926], + [-66.65046033473645, -9.945553655031505], + [-66.65190288104053, -9.936721511226034], + [-66.65587533771645, -9.942115675434595], + [-66.65753930319877, -9.936358753567879], + [-66.66373598827454, -9.939844852184404], + [-66.66698585944823, -9.946377880276454], + [-66.6641862464543, -9.949017593734231], + [-66.67006851651513, -9.960276958996543], + [-66.67659912031843, -9.957410524506907], + [-66.67623246584786, -9.968251416450064], + [-66.6957334025316, -9.967790821719683], + [-66.6945131080172, -9.97140850150864], + [-66.71540231347744, -9.978885603310573], + [-66.71793367409377, -9.974685618890348], + [-66.72271151626553, -9.97979632411539], + [-66.7205984121623, -9.983537211059076], + [-66.7316526384822, -9.980867734408235], + [-66.7339863030481, -9.98303618199608], + [-66.73451394758108, -9.988672442749108], + [-66.74154839326278, -9.99688377253696], + [-66.7508780113939, -9.994935925403867], + [-66.75607364734452, -10.000514591070852], + [-66.76440521439352, -10.000097489131353], + [-66.76440502994876, -10.006600016256577], + [-66.77287458397058, -10.011625861378473], + [-66.77209677653049, -10.020963817307505], + [-66.77984836489618, -10.017498841445642], + [-66.79045850406115, -10.022253295112842], + [-66.79256539693218, -10.027291830642092], + [-66.80676495469734, -10.03776331522541], + [-66.80246253013699, -10.043403525900679], + [-66.80762782278981, -10.048586745539716], + [-66.81715766611939, -10.051526547678757], + [-66.82329820780525, -10.059342149941452], + [-66.8364592330432, -10.06379848171288], + [-66.83504769069799, -10.067840324148293], + [-66.84026637859473, -10.071477129533232], + [-66.8385421907305, -10.083513675296187], + [-66.85190822612033, -10.086943789389093], + [-66.85238225391666, -10.081285334928788], + [-66.86670988742534, -10.08471887083388], + [-66.87321028596169, -10.080956960293623], + [-66.8755752353571, -10.083269701153032], + [-66.8709899533477, -10.0954511064351], + [-66.8732945461657, -10.101029811729706], + [-66.88048846658246, -10.097279873337047], + [-66.88363215325904, -10.108240944716002], + [-66.88759860912498, -10.09951639577928], + [-66.88907155254861, -10.114707814971101], + [-66.89582722399382, -10.110532649916237], + [-66.89879209182601, -10.112041320135097], + [-66.8973103988099, -10.118505723195032], + [-66.9026293252324, -10.126888088683739], + [-66.9106017022941, -10.126116442370462], + [-66.9100139649482, -10.132297452114173], + [-66.91485224083219, -10.129456071537247], + [-66.9183230462276, -10.131471963043362], + [-66.91801901584331, -10.135240418974645], + [-66.91126611406337, -10.139188419244384], + [-66.91157224964027, -10.147800299411198], + [-66.92418313789494, -10.143532558581187], + [-66.93379574231176, -10.1479225902396], + [-66.93365905341616, -10.155999894500301], + [-66.93937305196005, -10.15449974598783], + [-66.9450719181391, -10.1578998548214], + [-66.95418954304654, -10.189630399897965], + [-66.95882037689628, -10.191124153298732], + [-66.95651736634707, -10.188178194876755], + [-66.96090383921768, -10.18323527770606], + [-66.96860188991357, -10.19229034609961], + [-66.97249229252112, -10.192345335812666], + [-66.97579597289071, -10.190438615949368], + [-66.97229445471572, -10.187402535088047], + [-66.97530034462707, -10.186050294121914], + [-66.98129717073046, -10.190374624771254], + [-66.97507060761113, -10.196559405742727], + [-66.9816016739146, -10.196083739816055], + [-66.99210087634334, -10.204058450901393], + [-66.99268627492582, -10.199782925411853], + [-66.99615880446522, -10.199735474200581], + [-66.99379316324286, -10.210603150694007], + [-66.99982141868622, -10.217626089936223], + [-66.99023930514362, -10.217797551992946], + [-66.98871344531128, -10.221347092265738], + [-66.9946023874193, -10.224130619257693], + [-66.99829551091625, -10.232763309240056], + [-67.00138654040033, -10.230332046372103], + [-67.00538264674522, -10.231603582296067], + [-67.0049879078517, -10.244628434715633], + [-67.01157080897556, -10.254468858380758], + [-67.01618710062269, -10.258254061812178], + [-67.02270958941361, -10.255500290133767], + [-67.0247089315497, -10.258390255078739], + [-67.03065976100653, -10.257795492485315], + [-67.03601554945662, -10.264675414534125], + [-67.0404027782432, -10.262707487704075], + [-67.04391305744606, -10.266880208081963], + [-67.04849012024066, -10.265697256502472], + [-67.05268609655641, -10.271453398449411], + [-67.04821578150478, -10.276005307538949], + [-67.05510455435484, -10.279573664988272], + [-67.07607733638484, -10.285217203955854], + [-67.07968635000415, -10.289843709693146], + [-67.08840700570053, -10.29088446953004], + [-67.08835387277796, -10.286195735026432], + [-67.09857725844019, -10.282745839804448], + [-67.10012641602785, -10.28674448726579], + [-67.10499302331831, -10.285972766436496], + [-67.11468273926201, -10.292920528884721], + [-67.13107852427113, -10.29330982855644], + [-67.13671665489393, -10.298057282356824], + [-67.13940945735297, -10.309028006140762], + [-67.12846152198608, -10.316360373219254], + [-67.13609870397111, -10.31932893626019], + [-67.13927140632066, -10.316302245428593], + [-67.14335536359832, -10.326629893233681], + [-67.14729790120437, -10.324523573056275], + [-67.15183886868796, -10.327602007362012], + [-67.16374056580129, -10.33009809319618], + [-67.16935490509269, -10.33745051131942], + [-67.18748986737562, -10.340707622895605], + [-67.1953479995877, -10.325325745651458], + [-67.2010126821982, -10.323284635091122], + [-67.21926735124717, -10.324493116982342], + [-67.22418824649063, -10.316243369018038], + [-67.23590628082131, -10.317468754788681], + [-67.24829693270709, -10.32684445226305], + [-67.26607454911975, -10.333604244465443], + [-67.27001734865239, -10.326128802041424], + [-67.27893522171928, -10.322046572065085], + [-67.28613139473104, -10.320510288240596], + [-67.29493498594049, -10.325261440312092], + [-67.29665932970043, -10.322056776005395], + [-67.30293793398782, -10.324513276857598], + [-67.31590967729365, -10.31974497401035], + [-67.32179853725738, -10.322678643479954], + [-67.32743639399443, -10.334946289476065], + [-67.3159613806347, -10.347382280888919], + [-67.31863232066817, -10.360371754173848], + [-67.31130039160102, -10.376721353095023], + [-67.32849064023968, -10.383690698835697], + [-67.33862868251407, -10.37685430306186], + [-67.34383010748485, -10.37692058419977], + [-67.35179767831511, -10.380131223948263], + [-67.35407898362409, -10.387070051600872], + [-67.35088345291462, -10.392414085627188], + [-67.3563227700505, -10.393536007776277], + [-67.36774290272037, -10.377091485473484], + [-67.37810435774934, -10.383551921198263], + [-67.39388103615904, -10.375800485363898], + [-67.39604761145632, -10.378048209126709], + [-67.39843663807372, -10.372688238816648], + [-67.40762981062109, -10.374285393157141], + [-67.42318610267213, -10.394352269586896], + [-67.41379486606426, -10.401885592645856], + [-67.41371718174413, -10.427621967797858], + [-67.41974658055548, -10.430825053680294], + [-67.4302674149419, -10.430304641381484], + [-67.43674385225447, -10.439712551827643], + [-67.43524116711328, -10.447491691879865], + [-67.44407598307842, -10.45534270422735], + [-67.46868801919196, -10.461644112175746], + [-67.47527275574039, -10.467788822629851], + [-67.49127204023003, -10.473578132735778], + [-67.50277038753003, -10.471350006518112], + [-67.51432806480237, -10.478775484433474], + [-67.51799039948231, -10.490994624184843], + [-67.54707255812073, -10.489945750740201], + [-67.55741109204952, -10.496937338587658], + [-67.5797125635509, -10.50321867443873], + [-67.5879356335211, -10.510367427427152], + [-67.60733240517483, -10.545394120171059], + [-67.6124962219307, -10.564014175941505], + [-67.63404977564123, -10.579491185784835], + [-67.64074135666941, -10.598493138192673], + [-67.66057683112597, -10.616695138297457], + [-67.67677500939627, -10.605263311708361], + [-67.7053152831158, -10.698421507574384], + [-67.70757567214946, -10.71087493190959], + [-67.71422066424358, -10.708080271891788], + [-67.72135425492421, -10.7122094033627], + [-67.72622128264948, -10.707242238669371], + [-67.72916030769647, -10.713699836265743], + [-67.7332717231331, -10.713841314695784], + [-67.74422016092772, -10.70810355076067], + [-67.74457833078804, -10.696953704345109], + [-67.75337822216363, -10.696363351857784], + [-67.76199683659536, -10.685033319644152], + [-67.76891538643869, -10.68839056072975], + [-67.77599528906514, -10.684524460664814], + [-67.77646844926252, -10.680663745771456], + [-67.7872722936469, -10.678078003794706], + [-67.78777591276878, -10.675080490318733], + [-67.79205700652756, -10.678127866065845], + [-67.79863966561527, -10.670379795965953], + [-67.80394493585426, -10.668939225291354], + [-67.80822193325228, -10.667959074778759], + [-67.8106853027497, -10.661362529534477], + [-67.81535527264029, -10.665726175218207], + [-67.81849956847854, -10.664169778064398], + [-67.82363275370216, -10.652547214548287], + [-67.82566298751603, -10.654241274439096], + [-67.83699337314188, -10.649879882718057], + [-67.84246984848221, -10.652982397598796], + [-67.85227417186604, -10.648068642379863], + [-67.85502901274555, -10.650396445161384], + [-67.8585503673861, -10.646247418494339], + [-67.864328094956, -10.641094247151203], + [-67.87699280033237, -10.64471735923407], + [-67.87627681436103, -10.640042615569914], + [-67.879244761205, -10.6398488909463], + [-67.89207748963307, -10.64092574451973], + [-67.89019163281031, -10.644326578267128], + [-67.89532577313176, -10.647772356059827], + [-67.89908013394052, -10.643529946030734], + [-67.90852529073614, -10.641832864656957], + [-67.91732905571978, -10.652690754847999], + [-67.92332690108363, -10.651009074532253], + [-67.92938381030277, -10.656407248369133], + [-67.94172080768777, -10.656418808603387], + [-67.94707614903706, -10.650809718485986], + [-67.946970237711, -10.65294390331928], + [-67.96135898448546, -10.65044894467989], + [-67.97660236852181, -10.663027009636643], + [-68.00241255469484, -10.648386588481765], + [-68.00571748154266, -10.651477583990895], + [-68.01241412298944, -10.648113830729246], + [-68.01541325148737, -10.65233562595532], + [-68.01669531157444, -10.649634636547324], + [-68.0216917728239, -10.650895580239341], + [-68.02704792402585, -10.657468810082472], + [-68.03335831256479, -10.655280525288635], + [-68.03129743972174, -10.665294634184102], + [-68.04099473613786, -10.670121366243585], + [-68.05511089432335, -10.67043892727801], + [-68.0636080565084, -10.677266065899195], + [-68.0645651797103, -10.682882135520478], + [-68.0705823900129, -10.685632786821921], + [-68.07583125457188, -10.68408325595594], + [-68.07944020242557, -10.693758099906379], + [-68.08819065665196, -10.697819435683211], + [-68.09199768854054, -10.704547561847754], + [-68.09679789560275, -10.704852763066935], + [-68.09530136630895, -10.709249174099147], + [-68.10044331020569, -10.709580529351602], + [-68.10581921334077, -10.717307121603575], + [-68.10505253455743, -10.722423901433757], + [-68.10866308016209, -10.725257385739654], + [-68.10451699880122, -10.72739515328398], + [-68.10725804597628, -10.729701631909277], + [-68.1052846913481, -10.74118282515034], + [-68.10206022203798, -10.741041936430273], + [-68.09716443759382, -10.748978450030185], + [-68.0987432773944, -10.75280605432939], + [-68.10211628807038, -10.752293231853807], + [-68.10295813228156, -10.761285638003182], + [-68.10751539806013, -10.764588459953172], + [-68.10380174257055, -10.77583844964269], + [-68.10661843556339, -10.7797938656845], + [-68.1182957276204, -10.783924595875387], + [-68.12567208063638, -10.796810883912945], + [-68.14091271167263, -10.808824495764993], + [-68.14388226844613, -10.815717438913717], + [-68.15409278672425, -10.82060874669399], + [-68.16782533863615, -10.83805065810126], + [-68.17315536014944, -10.838811860580416], + [-68.18262887882786, -10.856641916198285], + [-68.19682305275273, -10.859493167566548], + [-68.20021834523497, -10.876993056520554], + [-68.20629945985175, -10.87935013165764], + [-68.20390510985244, -10.887420727002079], + [-68.20649222191697, -10.898308001925747], + [-68.20927549721621, -10.904725401144711], + [-68.21605816681215, -10.90530819770588], + [-68.2247750184101, -10.911950474321578], + [-68.23115227286858, -10.92933928059981], + [-68.23109699125365, -10.9437250195406], + [-68.23789834204152, -10.956556558908945], + [-68.24941315312401, -10.962108581774823], + [-68.25768594476432, -10.973197624958583], + [-68.27164402966721, -10.97956697525642], + [-68.27866523717898, -10.989689231123265], + [-68.28500322967041, -10.991257470238496], + [-68.2893698886955, -10.98860968660461], + [-68.30813847948662, -10.992564337344659], + [-68.32049584254922, -10.999799157531283], + [-68.32614921608774, -11.009927848214566], + [-68.33273351201323, -11.013737926467629], + [-68.34229588914141, -11.005489644982575], + [-68.3543011413705, -11.004638576982934], + [-68.38531784186252, -11.018390657016111], + [-68.39136601722484, -11.02955175975344], + [-68.38897395004477, -11.040963864663977], + [-68.3961446300119, -11.051061609079671], + [-68.40548787314667, -11.053901042805856], + [-68.4161040060071, -11.040108097367607], + [-68.42318463057381, -11.041969045216806], + [-68.43215919479421, -11.031868790379633], + [-68.44527926250522, -11.046358820215895], + [-68.48784278237697, -11.051005418029604], + [-68.50442513788512, -11.063543100535163], + [-68.50726281014674, -11.072800079275709], + [-68.51934405799338, -11.088470318170113], + [-68.53921379521287, -11.096180800914697], + [-68.5423572958644, -11.099684891033371], + [-68.54303951053498, -11.110455728951179], + [-68.61220292732213, -11.124131132506472], + [-68.71622993077922, -11.145262275940404], + [-68.71136852005765, -11.129806081600018], + [-68.7226322755757, -11.114666172173155], + [-68.72134163541354, -11.103984970950373], + [-68.73499688317371, -11.093756051717081], + [-68.74180841319797, -11.097327042677282], + [-68.74596883421975, -11.095660748605281], + [-68.75155674043842, -11.086087566312854], + [-68.75781756250157, -11.084245508764548], + [-68.75625228977097, -11.076749965647407], + [-68.76552530334816, -11.066647779976273], + [-68.75985609345788, -11.056513362602313], + [-68.76664524885157, -11.049512737263056], + [-68.75966509458841, -11.039486470339194], + [-68.75144644616569, -11.037369238029283], + [-68.75094814085988, -11.027093029786052], + [-68.7500786012262, -11.020581498291591], + [-68.7483688788534, -11.011003360263631], + [-68.75507944971146, -11.011970197550102], + [-68.7625792084608, -11.019650006858036], + [-68.76325011159945, -11.013200344773132], + [-68.7572543410754, -11.01002530718332], + [-68.75813907245065, -11.001216250232261], + [-68.77041490424074, -11.008389541763218], + [-68.77977603533508, -11.005584080093092], + [-68.77872252815408, -11.000532326789704], + [-68.78144533248164, -10.999922573765005], + [-68.78730519402768, -11.006686120624753], + [-68.78839021858377, -11.015903628452264], + [-68.78969425795208, -11.001219625274691], + [-68.79871825411755, -10.999013049256591], + [-68.79202856377286, -10.991369243860756], + [-68.79927545115184, -10.99179379353046], + [-68.80247187303587, -10.996090758063241], + [-68.81236230332435, -10.99551773838529], + [-68.80433535740916, -11.002467045135104], + [-68.81252900115403, -11.002049289698409], + [-68.8164193557581, -11.006254221076075], + [-68.82360655398034, -11.004068049682573], + [-68.82891667079598, -11.008620972723843], + [-68.83150318132837, -11.00210514102965], + [-68.82713917356908, -10.997471508449113], + [-68.83457621219401, -10.994872137859257], + [-68.84124632097637, -11.003358730053096], + [-68.84493842341844, -10.99929619187746], + [-68.84146604427232, -10.997464502587704], + [-68.84252832018741, -10.994572272896926], + [-68.8481123887884, -10.993773324392203], + [-68.85999744625899, -11.005744407557428], + [-68.86091365576134, -11.018321490655843], + [-68.87013856922177, -11.01567558364125], + [-68.87444181613343, -11.010302526802972], + [-68.88233162332142, -11.010208372920866], + [-68.8856106210969, -11.016841672943357], + [-68.88080402493493, -11.017674873804257], + [-68.88046896024049, -11.0129718401091], + [-68.87647101878653, -11.020557564115778], + [-68.88169792759497, -11.02271331880594], + [-68.89583471767688, -11.007099675721292], + [-68.90871906305142, -11.022093656647572], + [-68.91227606011104, -11.022347531427046], + [-68.92155280371286, -11.015042098542922], + [-68.92513862528045, -11.018380933878769], + [-68.93472038880373, -11.005764894136162], + [-68.94766891769795, -11.013035743957612], + [-68.94785896562917, -11.005424478397229], + [-68.95677785446769, -11.001979815736814], + [-68.95322249590568, -10.989915689374577], + [-68.96097265707986, -10.993590971116463], + [-68.96844244446359, -10.988770876546392], + [-68.97380741305903, -10.989662858850387], + [-68.98174891708437, -10.997747278913533], + [-68.98811334257591, -10.998721590740498], + [-68.98463992861218, -11.009384892136847], + [-68.99503236412156, -11.011246376387874], + [-68.99505470814601, -11.004118539870289], + [-69.00066940758738, -11.007702032139223], + [-69.01344098990525, -11.005332715262572], + [-69.01594398128142, -11.00243251934184], + [-69.01103065426854, -10.995974115752784], + [-69.01219796043387, -10.992046391061695], + [-69.02505308854342, -10.991851169105477], + [-69.02605252285913, -10.983762186589104], + [-69.03366571768213, -10.985679844189086], + [-69.03913661071232, -10.97729150109972], + [-69.04722384948528, -10.981713119862892], + [-69.05072478027557, -10.9751097624888], + [-69.061857473627, -10.984746788196786], + [-69.07280482540837, -10.966358886482405], + [-69.07839064562295, -10.975059923394296], + [-69.08642049695013, -10.970690405149943], + [-69.1018352306043, -10.98047132704426], + [-69.11150005426857, -10.971892570630613], + [-69.12108486149266, -10.98072487070101], + [-69.12266185871886, -10.967337470544118], + [-69.13705133099482, -10.973737832697713], + [-69.1382730465701, -10.965059472050397], + [-69.14294238620715, -10.970461900165073], + [-69.14908459604202, -10.971602168839846], + [-69.15041092235568, -10.96910360424851], + [-69.14458329022266, -10.963607417099302], + [-69.15463949919337, -10.964621667388169], + [-69.15294427447715, -10.955502011101155], + [-69.16402164839879, -10.965654837031684], + [-69.18138699160971, -10.956307068258111], + [-69.18613969139795, -10.948867885679066], + [-69.19919387168554, -10.948482491006969], + [-69.21532901086722, -10.957356880535027], + [-69.2196413595306, -10.949641888801805], + [-69.23235821699816, -10.940300839893847], + [-69.24122345885023, -10.951489695874681], + [-69.25688704794257, -10.947336283197595], + [-69.2574130555492, -10.944612961762907], + [-69.25102763768875, -10.94370516508017], + [-69.25118811824535, -10.940069216596461], + [-69.27100162961993, -10.942315167181652], + [-69.27449460539536, -10.945987547078293], + [-69.27149737082566, -10.953477631840993], + [-69.27441907148435, -10.95475982599496], + [-69.28341498525164, -10.943809257960892], + [-69.28886202079833, -10.950533029867598], + [-69.2981918194874, -10.947220651792103], + [-69.3048309969752, -10.948401887585126], + [-69.31975183857708, -10.944355291995794], + [-69.32424574089039, -10.936848936273178], + [-69.32763437732818, -10.949473646474583], + [-69.33482792336024, -10.9472460077294], + [-69.33688808961628, -10.941228824305727], + [-69.3431362741911, -10.952544063160264], + [-69.34694458192354, -10.947668411307209], + [-69.34630267693676, -10.938756096926456], + [-69.35649635609035, -10.937581121896992], + [-69.35722166333638, -10.944856750399167], + [-69.37274696044638, -10.939607346671915], + [-69.37469217797121, -10.953976840587282], + [-69.37741624848185, -10.952619594560984], + [-69.37900235071818, -10.941444897109944], + [-69.38574687014713, -10.942465128728188], + [-69.38802785156975, -10.934264826530718], + [-69.39477215835653, -10.934989432494966], + [-69.39214111694898, -10.943460248231917], + [-69.39521465271783, -10.94426199431053], + [-69.40199751107015, -10.93010030227633], + [-69.40649869535895, -10.929840817429664], + [-69.41338800801415, -10.9388833318304], + [-69.41608111602898, -10.927594270133183], + [-69.42183776773824, -10.927207859707888], + [-69.42805216682227, -10.937423622288952], + [-69.4501390999391, -10.93650746010721], + [-69.45452573450245, -10.950221544156575], + [-69.46069128767954, -10.944351073924045], + [-69.4624995826462, -10.950540253008786], + [-69.47302769835227, -10.945179220221446], + [-69.47755198851752, -10.94598749020341], + [-69.476582632941, -10.953095644229323], + [-69.48039027344431, -10.954996705208627], + [-69.4839681050563, -10.951479835214524], + [-69.49610624112246, -10.949850218135264], + [-69.50066809138065, -10.937256632333531], + [-69.50788531025064, -10.941983325711105], + [-69.51743891770622, -10.93605728510054], + [-69.53908257827709, -10.936191128740138], + [-69.5429729162153, -10.938678842589544], + [-69.54166197977148, -10.950922930942212], + [-69.54652181970452, -10.95260310614731], + [-69.55161002639787, -10.951614935230157], + [-69.5545018119757, -10.945956808831758], + [-69.56554628772219, -10.944252404814364], + [-69.57560009237804, -10.942815939853116], + [-69.5890246854261, -10.940896765822837], + [-69.58450151192172, -10.946016050143822], + [-69.58672001960988, -10.947961102524612], + [-69.6021932450284, -10.94232082053969], + [-69.61205836139112, -10.947221527911621], + [-69.61275077133585, -10.955952978554057], + [-69.62047251733561, -10.950615292148857], + [-69.6355875166125, -10.95758848224947], + [-69.65944370837107, -10.952430798751271], + [-69.66963737303097, -10.962388059177846], + [-69.67896639968498, -10.960284429836348], + [-69.68816934583788, -10.964972227689094], + [-69.691830686749, -10.963878333152643], + [-69.69816266340892, -10.97211903224759], + [-69.70158084977184, -10.965921304441586], + [-69.71671749908415, -10.97488446199547], + [-69.72330123905378, -10.965181705164515], + [-69.73699865726668, -10.974876793511742], + [-69.74155918527983, -10.972745477802214], + [-69.73999532696635, -10.964234618642408], + [-69.74655588503065, -10.962326029612445], + [-69.7483342727494, -10.954117765287164], + [-69.76030530862518, -10.940229014379776], + [-69.76457626457896, -10.939522921794648], + [-69.76105226606317, -10.945222364563755], + [-69.77363936225206, -10.939428462213534], + [-69.76949785905597, -10.930147822579242], + [-69.78155105798079, -10.934792396331742], + [-69.78917544447212, -10.931212386298114], + [-69.79597070943593, -10.932866801778596], + [-69.80096875974756, -10.926571589306548], + [-69.81094061650873, -10.925691830778923], + [-69.81438161165993, -10.930573073486821], + [-69.83144079312497, -10.934016784484873], + [-69.83405740983157, -10.932979006491545], + [-69.8328283176251, -10.928503817997091], + [-69.8396349047686, -10.92926787805159], + [-69.85199439530892, -10.924760364478532], + [-69.85844184320746, -10.93393171255769], + [-69.86338434520542, -10.92659172758589], + [-69.87516406483053, -10.929486086408135], + [-69.87949801722628, -10.924314329061232], + [-69.90030308722152, -10.92052017640832], + [-69.91460776992787, -10.923435517258001], + [-69.91708025579871, -10.931411872643693], + [-69.92232934334774, -10.932751142859031], + [-69.92597066277843, -10.924093687508451], + [-69.93488706265852, -10.922328255210235], + [-69.95391539955018, -10.92759861032838], + [-69.95502854019912, -10.935536143768925], + [-69.96252804293863, -10.934925479804262], + [-69.95905711460053, -10.940286181480065], + [-69.96441343617094, -10.940266632296034], + [-69.97394373137982, -10.94810010899195], + [-69.98269263163728, -10.942783689039613], + [-69.985721580243, -10.9545908153942], + [-69.99435882405773, -10.95122587807799], + [-69.99847121063968, -10.963587141488102], + [-70.00397175710722, -10.960227798927825], + [-70.00677905801554, -10.964895473005816], + [-70.00866316637567, -10.962197195209816], + [-70.01380651140381, -10.967686652143053], + [-70.02655372614534, -10.971564668162733], + [-70.02833205989646, -10.977658378544657], + [-70.03693784957306, -10.970664499112221], + [-70.0376098252349, -10.978185982400534], + [-70.04791722440663, -10.978923458354979], + [-70.04413995847028, -10.983246752139694], + [-70.05025162983476, -10.979994388812425], + [-70.05260865131424, -10.985818021294886], + [-70.06572399930101, -10.98696980684209], + [-70.06452746431285, -10.991328279098852], + [-70.06769241935734, -10.992929524278395], + [-70.07744292588166, -10.98902571433815], + [-70.07977654672925, -10.991215019719382], + [-70.08091407664577, -10.984446949869877], + [-70.08672079988204, -10.989462352653897], + [-70.09238927677738, -10.986387404127822], + [-70.09838526217511, -10.998103977719104], + [-70.10554861610785, -10.99778353197827], + [-70.09877481641237, -10.992494949289723], + [-70.10886134535198, -10.994975948453733], + [-70.10747291088704, -11.00739832480919], + [-70.11163763444786, -11.003092718398465], + [-70.11694007675271, -11.005811303833811], + [-70.1145228533465, -11.009097245082291], + [-70.12302856865689, -11.010574925130975], + [-70.13244431134945, -11.021867681350763], + [-70.13938592958087, -11.02186486916909], + [-70.14230251802064, -11.030024277929439], + [-70.15630088230756, -11.034334578628378], + [-70.1591617785062, -11.041383646627136], + [-70.16518903366382, -11.03853699246186], + [-70.16775269192924, -11.042539572075963], + [-70.16997229769679, -11.040025607692174], + [-70.17291773443552, -11.042143886756579], + [-70.17715955375871, -11.039247812069133], + [-70.18030323108772, -11.043684794286484], + [-70.19052559737393, -11.045050481332781], + [-70.19016621638924, -11.048891005149146], + [-70.20039142890357, -11.05402634912347], + [-70.21224693263844, -11.049805392766048], + [-70.2152453800362, -11.05249609404684], + [-70.22883293351404, -11.049185899430313], + [-70.23088576769203, -11.052916839868134], + [-70.24183391837917, -11.04644785752691], + [-70.25922163247895, -11.052893193631673], + [-70.26452400407766, -11.051245437913272], + [-70.27199986567632, -11.060190706754184], + [-70.28077382639276, -11.056596583919275], + [-70.28630604754497, -11.058131450434969], + [-70.29396594723046, -11.065905116345398], + [-70.30719486338772, -11.070258420820736], + [-70.326999654924, -11.065713381317208], + [-70.33627807615993, -11.068206023406868], + [-70.3501324857977, -11.065054315808219], + [-70.35383252313339, -11.059065173953794], + [-70.37450084169315, -11.060876118958006], + [-70.38588452650542, -11.047745527450047], + [-70.39944190546385, -11.044998365828887], + [-70.40658257497283, -11.047920900240577], + [-70.41069565877766, -11.042247500244844], + [-70.42463396260904, -11.038570157237906], + [-70.43189262738066, -11.040333061284398], + [-70.43722211448389, -11.039658551862352], + [-70.44102121706966, -11.033920263887984], + [-70.43780226661127, -11.027802329666486], + [-70.4499936971143, -11.001249463819514], + [-70.46963870811285, -10.989061257685272], + [-70.47996917479048, -10.971609070470564], + [-70.48685659868171, -10.964717098119076], + [-70.49491443717706, -10.963866814492564], + [-70.50493877809602, -10.952260043812732], + [-70.51513173422886, -10.948702553430847], + [-70.51991565823293, -10.94109874379539], + [-70.53080162220128, -10.935076646211526], + [-70.62149383877113, -11.000245572476581], + [-70.62332223079984, -10.711665469245954], + [-70.62589459787932, -10.49902409591377], + [-70.62560614355051, -10.425359903258933], + [-70.62456988205726, -10.075357858076103], + [-70.62127022754821, -9.961723296455315], + [-70.62210081588447, -9.821965024495176], + [-70.61580735613911, -9.816030426128215], + [-70.60922418125922, -9.801700196654318], + [-70.5989202325826, -9.799498921618506], + [-70.59114570645065, -9.803198265822633], + [-70.58530398384401, -9.783551632144066], + [-70.57895828254411, -9.777075910846385], + [-70.56014600726434, -9.787923527154934], + [-70.54601105348212, -9.777788780324544], + [-70.53526048065224, -9.763664553554868], + [-70.53834230600447, -9.747235384570526], + [-70.5322331636559, -9.7444559034787], + [-70.53337749048258, -9.73267985203547], + [-70.5262949785552, -9.723099831913405], + [-70.52840594858657, -9.718864170278657], + [-70.52497663057545, -9.713950840797516], + [-70.5304352682179, -9.712376191587667], + [-70.54158158634134, -9.681689602634936], + [-70.54858607389724, -9.676904463849173], + [-70.55153272964662, -9.669179211591354], + [-70.56062959499778, -9.664826409525316], + [-70.56430082431962, -9.667700106441766], + [-70.5706393751242, -9.661215854519703], + [-70.57498507660466, -9.648894525555873], + [-70.58474234338482, -9.638721748575872], + [-70.59748213621998, -9.604830121263012], + [-70.59045699352005, -9.600246585886312], + [-70.58545824994182, -9.589522787871273], + [-70.58581369599659, -9.585629315372184], + [-70.59188072119552, -9.585600652943539], + [-70.58767134854351, -9.583582293763286], + [-70.58588519838015, -9.571145364709363], + [-70.60087467998117, -9.563277787295926], + [-70.59894537797598, -9.55226971574512], + [-70.58799481594849, -9.547405434725416], + [-70.58442636267952, -9.551488612887528], + [-70.59063742395433, -9.565018995018688], + [-70.58449383175424, -9.566065282117995], + [-70.57525387192933, -9.561868543456452], + [-70.56199008608945, -9.573965595056606], + [-70.55634386614865, -9.571615733229216], + [-70.55461685109837, -9.567386803450264], + [-70.55781742229347, -9.557881403582595], + [-70.56839223188324, -9.554951830668422], + [-70.56956222184273, -9.549522638788433], + [-70.5642192981063, -9.538868829187306], + [-70.57067129619546, -9.530703538763937], + [-70.56434271980046, -9.528359638057253], + [-70.55754664813145, -9.535677186121193], + [-70.54235183340828, -9.53625372618542], + [-70.53840977783597, -9.532881914690545], + [-70.5385577890737, -9.528135442115735], + [-70.54623219168582, -9.525897396520039], + [-70.54516853883638, -9.511361136071587], + [-70.53157654510149, -9.514036776591213], + [-70.5313099404391, -9.501579235851954], + [-70.52098441665117, -9.50361493217534], + [-70.51185621284087, -9.490252545606857], + [-70.50516689637656, -9.503996005875313], + [-70.50280364076274, -9.49395703058963], + [-70.51854135495029, -9.476193490782896], + [-70.52321234387128, -9.460224351880022], + [-70.51678067923945, -9.455334333811868], + [-70.51118938806744, -9.46480739921296], + [-70.50331014126276, -9.461853376480056], + [-70.51072153067925, -9.446392296973414], + [-70.50258064259607, -9.444335730431497], + [-70.49506468143248, -9.439788199422924], + [-70.4932589924798, -9.426634417897487], + [-70.50026972876037, -9.426804947573313], + [-70.50278253524489, -9.422150648669207], + [-70.5070045991809, -9.422391067180794], + [-70.51839068196311, -9.427113835328178], + [-70.51919656203782, -9.433172467178018], + [-70.52496791403436, -9.436064688768505], + [-70.52487727046237, -9.426761323899242], + [-70.53703726943024, -9.436255382474105], + [-70.53725932749151, -9.431335338531149], + [-70.54400556932708, -9.426288658909156], + [-70.54655734799202, -9.426277799584678], + [-70.54894269913936, -9.433232077103254], + [-70.5573401311661, -9.433643807774853], + [-70.56076329651782, -9.427756951113572], + [-70.56398721473775, -9.432472806710692], + [-70.56447103388983, -9.43035013036036], + [-70.56981848298462, -9.432120353992305], + [-70.56902565546683, -9.438568041583999], + [-70.57409990908613, -9.434549047423301], + [-70.587130378495, -9.445663567682558], + [-70.5879330654456, -9.441745099573428], + [-70.59425427165895, -9.44106467260922], + [-70.59572907524318, -9.457941831012628], + [-70.60674261147305, -9.459033236057543], + [-70.60869851553619, -9.45567898478956], + [-70.61149533812863, -9.456564668280862], + [-70.61104948107801, -9.466517348001918], + [-70.61533049048823, -9.46861759478152], + [-70.61519332562148, -9.474326739591802], + [-70.62223732187516, -9.469890489348463], + [-70.62449177460809, -9.477628089805833], + [-70.6309080111544, -9.479555688815575], + [-70.63203647223979, -9.484832904615072], + [-70.63578269341471, -9.485623316936778], + [-70.63017234347419, -9.492380839096477], + [-70.63484408222271, -9.493759089412228], + [-70.63557585368825, -9.49946545436214], + [-70.64467372035699, -9.495653322572046], + [-70.64089532863584, -9.499764639731428], + [-70.65255814810351, -9.49927891660183], + [-70.65121173229973, -9.512210945387583], + [-70.65369032127506, -9.513389884203868], + [-70.65509810953226, -9.510183213319797], + [-70.65736215385296, -9.513444975685287], + [-70.65415486725256, -9.51658551565355], + [-70.65880018735385, -9.516340368042691], + [-70.66325972968141, -9.524131331533749], + [-70.66555397192214, -9.518316504473423], + [-70.67279252786463, -9.527284027147363], + [-70.67976750663063, -9.528440136506138], + [-70.67945912709288, -9.532945855143643], + [-70.68758248591158, -9.531551062581185], + [-70.69548994046747, -9.538747933104263], + [-70.70188619791766, -9.54419928053958], + [-70.70480304432809, -9.541990495393621], + [-70.71463910445458, -9.54536396321841], + [-70.71777377370525, -9.553152935502682], + [-70.72598818982097, -9.555110086795453], + [-70.72268672707486, -9.561694535334764], + [-70.72946735394913, -9.56801085643495], + [-70.73797944521331, -9.558090443332686], + [-70.742503144584, -9.557356399779154], + [-70.74543870008623, -9.561924550184672], + [-70.75080603051778, -9.559361510949687], + [-70.7556920107475, -9.567034536000836], + [-70.74993118505216, -9.567778434793897], + [-70.75519583291474, -9.575500676332263], + [-70.75352929052723, -9.578369494163622], + [-70.75833047274844, -9.577690637762691], + [-70.75612739059314, -9.581456635594597], + [-70.76034169420522, -9.583640681783823], + [-70.75587042311531, -9.590691933942699], + [-70.75704587048627, -9.602435002367743], + [-70.759949392345, -9.604209597091092], + [-70.76757452506358, -9.599725489350032], + [-70.76699990236226, -9.604771157700217], + [-70.77455277027389, -9.608262901605233], + [-70.78753214692561, -9.613340291605311], + [-70.78825944715727, -9.61843342723651], + [-70.78460578684994, -9.621997097464668], + [-70.79193597145695, -9.625701277251606], + [-70.79318442474752, -9.636728236795923], + [-70.79729023260124, -9.63621047655609], + [-70.79909640234335, -9.641766226192585], + [-70.80197396168968, -9.639823885046182], + [-70.80476264377616, -9.642673677403636], + [-70.81351415841742, -9.63871647739413], + [-70.82440226320922, -9.644069320235042], + [-70.82873470292849, -9.641967578532459], + [-70.83069379336557, -9.645268240798126], + [-70.83525276352736, -9.641779236215072], + [-70.8392050961793, -9.65507739694021], + [-70.84682132598182, -9.657270346411847], + [-70.85208279787497, -9.654393375861087], + [-70.86944477744895, -9.66484873282082], + [-70.87106825331948, -9.668381272347695], + [-70.86823848476776, -9.669895315580307], + [-70.88049254434821, -9.680787837065584], + [-70.88168019576564, -9.688147446056925], + [-70.88892958923626, -9.689281137169619], + [-70.89877617147532, -9.713443653072865], + [-70.90278901304946, -9.712985160253055], + [-70.91095248325146, -9.726910165158348], + [-70.91447226520373, -9.726724772443019], + [-70.92539063305055, -9.74108934570294], + [-70.94981227835193, -9.741957702393304], + [-70.9499535970538, -9.744537001717601], + [-70.95209456708379, -9.741819410348945], + [-70.96075124728253, -9.750955205825319], + [-70.96342059454697, -9.747925079858849], + [-70.96592378147476, -9.754694268928706], + [-70.97434357914719, -9.758314331948784], + [-70.98572527839647, -9.789030354656932], + [-70.99098294337234, -9.787999548894497], + [-70.99361902787967, -9.80344197956236], + [-70.99111395237422, -9.809591114750852], + [-70.99576773906166, -9.817135263982514], + [-71.01943343845075, -9.815891350827512], + [-71.02135253885643, -9.818088188509984], + [-71.03292968443482, -9.81454914591354], + [-71.03787725378093, -9.818304840835953], + [-71.04906749053241, -9.81655519104214], + [-71.06007821204203, -9.824367057565537], + [-71.07783748954866, -9.82845445853303], + [-71.10410569426118, -9.852143526186277], + [-71.14519722153308, -9.863331276957709], + [-71.16394882946584, -9.87612824645721], + [-71.1671144412662, -9.884818684730236], + [-71.17264622846663, -9.888885156677432], + [-71.18231292031236, -9.91830604666669], + [-71.19047659245409, -9.924322187880305], + [-71.19484044782118, -9.93900891122702], + [-71.20664418633726, -9.947983202383233], + [-71.21178622128829, -9.967196853337414], + [-71.22839475575998, -9.970148322527569], + [-71.247590103109, -9.962852182452886], + [-71.25403694111293, -9.96429470013043], + [-71.26006354254174, -9.978900105264689], + [-71.27203589186212, -9.97907679649507], + [-71.30890039390368, -9.992803940791411], + [-71.31867429943837, -9.992045040889737], + [-71.33981425543234, -9.972805440108708], + [-71.3493964995644, -9.973918455440428], + [-71.35384440358249, -9.977372665359677], + [-71.35559218119532, -9.988806728206374], + [-71.35836784165146, -9.990296390997713], + [-71.36495291377845, -9.985838921198045], + [-71.37603045389572, -10.00124218163515], + [-71.65765994269383, -10.000982986182997], + [-72.19938797605535, -10.000562812936131], + [-72.19854325856767, -9.988478961304168], + [-72.1803217516308, -9.980127946670017], + [-72.17076718908599, -9.966743296287271], + [-72.17642285591482, -9.953404916892252], + [-72.17548997547335, -9.943699339149333], + [-72.19037966359276, -9.93760396547095], + [-72.1922588452337, -9.929189460602284], + [-72.1858840526999, -9.916615492382611], + [-72.17288537690763, -9.907919264969767], + [-72.1655041130125, -9.892768813946812], + [-72.15486510738272, -9.884767154139762], + [-72.15510332316038, -9.88049814406871], + [-72.17174074861501, -9.861945878264585], + [-72.17115375655541, -9.839724334936097], + [-72.17340465278531, -9.83580570841927], + [-72.18005818455363, -9.834221027072651], + [-72.18114886834559, -9.829658759112816], + [-72.17832743182086, -9.822292138769432], + [-72.16247439000264, -9.806663925112089], + [-72.14931083358891, -9.799778311049817], + [-72.15359764451702, -9.797344091319514], + [-72.17624543945837, -9.782691324892532], + [-72.20229929158228, -9.7748359774292], + [-72.21543655373073, -9.774814145469259], + [-72.22794122687854, -9.76272447476307], + [-72.23766168464049, -9.762395614008867], + [-72.24413048671994, -9.76651653855301], + [-72.2525474292796, -9.754626564609447], + [-72.26960461348749, -9.750157669485652], + [-72.27166524006927, -9.743034920171443], + [-72.26283027612355, -9.726888543404238], + [-72.26485849455604, -9.713932488634313], + [-72.25180400085202, -9.690962476401477], + [-72.25268906248863, -9.676356401730802], + [-72.24766297474041, -9.663394362475175], + [-72.246463752927, -9.65490327126571], + [-72.25326897821057, -9.651780110093618], + [-72.25974636347378, -9.641062647856726], + [-72.25279571086332, -9.61733976960152], + [-72.25407594445574, -9.612705544885884], + [-72.25890589687411, -9.611377303486767], + [-72.27096750234195, -9.61542283617888], + [-72.28843909049408, -9.6013257919891], + [-72.28363182700873, -9.54029574725442], + [-72.29907952424351, -9.534731288630267], + [-72.31340926611325, -9.544397751681931], + [-72.32082337193178, -9.542409234377438], + [-72.3304370516386, -9.533975978149254], + [-72.34526246874175, -9.545692528989505], + [-72.35470946760411, -9.540819594694407], + [-72.36232617822057, -9.531404533207295], + [-72.36602039241077, -9.521348996537142], + [-72.37354337608971, -9.520449220202885], + [-72.36883756797535, -9.514100502799472], + [-72.37159426176274, -9.514886348297798], + [-72.37166602125994, -9.509283306394032], + [-72.37033180335565, -9.50498851134187], + [-72.37919930091675, -9.503305656203683], + [-72.38377040466989, -9.49660097456271], + [-72.38744666369391, -9.494487050599394], + [-72.39261652498202, -9.49702925860661], + [-72.39576771003607, -9.48988074250987], + [-72.39926989495349, -9.489224449637462], + [-72.4027846042046, -9.494543505257447], + [-72.40728868243828, -9.494804692208891], + [-72.41101802549406, -9.490699120778817], + [-72.41594680240749, -9.491500874892125], + [-72.41973580866319, -9.486479008091532], + [-72.42605252175034, -9.486983635014749], + [-72.43741765496394, -9.47664311247108], + [-72.4418869793228, -9.48184071331304], + [-72.44770759375838, -9.482643075814496], + [-72.45029761172357, -9.47959395613233], + [-72.45547075814099, -9.48362783369573], + [-72.45768108723607, -9.480475471570772], + [-72.4636663605414, -9.479457420658413], + [-72.46403802096765, -9.483272732119099], + [-72.46899612797414, -9.480832003602686], + [-72.46998092385765, -9.475788225532774], + [-72.47283252948726, -9.48145523721179], + [-72.4772887600466, -9.479355924312715], + [-72.48141733293045, -9.481269551632424], + [-72.48292274942779, -9.48692622615827], + [-72.48650757676015, -9.487993399491389], + [-72.5038777966957, -9.482866016682237], + [-72.50878341403683, -9.485975115901768], + [-72.5153922443486, -9.480617376928919], + [-72.51696794357828, -9.483423548448599], + [-72.51689847004884, -9.480069570567451], + [-72.52425828504579, -9.48360687515076], + [-72.53079142971414, -9.482603458900819], + [-72.53241265786609, -9.486192511259405], + [-72.54277817559172, -9.485095631172843], + [-72.54651773634811, -9.491905255771721], + [-72.55039365232153, -9.489742723718475], + [-72.54987829243682, -9.485464496894238], + [-72.55704643839235, -9.483270407833169], + [-72.55430706805195, -9.480355723102328], + [-72.55765392219975, -9.481043826976528], + [-72.56041836019216, -9.474918638442949], + [-72.56442676471373, -9.476434525671802], + [-72.56624528314887, -9.470222913890023], + [-72.56799508769629, -9.473679035235888], + [-72.57232478079389, -9.466609959373102], + [-72.57533193712544, -9.469095878422532], + [-72.58071976115336, -9.467115941248952], + [-72.58195837337429, -9.470577736758385], + [-72.58469180804815, -9.467143859685502], + [-72.58857075194872, -9.474163540230142], + [-72.58845139450527, -9.465107413977776], + [-72.59476409742787, -9.46654032142641], + [-72.59489270118533, -9.46093745933186], + [-72.60390118491793, -9.466190390250361], + [-72.60465101968043, -9.457252186467494], + [-72.61096431334789, -9.461629222225245], + [-72.62001016409818, -9.456124576844086], + [-72.62422249472606, -9.458388701113906], + [-72.63784552334921, -9.454384288655913], + [-72.63920630363181, -9.450543649993838], + [-72.64833114832926, -9.454707787672998], + [-72.6511811645087, -9.446962745066553], + [-72.6555616879732, -9.447811451668668], + [-72.65730123074123, -9.444289430296044], + [-72.66376802109794, -9.446919327673742], + [-72.67224441093892, -9.443693194068521], + [-72.67051530130662, -9.445765166198921], + [-72.67451495835076, -9.448725863657579], + [-72.68120717208932, -9.4473367667886], + [-72.68405883126793, -9.452662436780372], + [-72.6855358022, -9.447629951443389], + [-72.69022784454236, -9.449465732167583], + [-72.69775166869677, -9.443409939738054], + [-72.69628207075695, -9.439366666335577], + [-72.70677588471432, -9.440692118307188], + [-72.71165840751777, -9.434433142079216], + [-72.71549915817059, -9.435087314160194], + [-72.71493043110274, -9.439171317119387], + [-72.71897916249722, -9.4360083310262], + [-72.72491931703445, -9.440809057925907], + [-72.72378633396221, -9.434375575893977], + [-72.72893262221149, -9.436297093758709], + [-72.72747485583334, -9.430805079779478], + [-72.73265046501766, -9.434882891990561], + [-72.74100625803436, -9.430295932463727], + [-72.74721013154722, -9.420833590014709], + [-72.74519196378947, -9.413449388881403], + [-72.75087150616366, -9.410674446488674], + [-72.81903718357692, -9.411112542304792], + [-72.94330342056426, -9.411342977127983], + [-73.20814308606867, -9.41211525853105], + [-73.21275557417108, -9.411755991437557], + [-73.21298637172274, -9.408018673740553], + [-73.1953851898181, -9.395806995716518], + [-73.19370284071677, -9.371367964411775], + [-73.18850989032332, -9.360999923730171], + [-73.17958742650382, -9.356356879276587], + [-73.15939794146283, -9.35288268039485], + [-73.1511533073855, -9.337120763593527], + [-73.14007275132802, -9.329860237212463], + [-73.12996941353653, -9.313966104600624], + [-73.10253888472757, -9.306632863383157], + [-73.10260333117508, -9.300945403518867], + [-73.11332473904126, -9.28779824210383], + [-73.11384341459006, -9.280324606949526], + [-73.09873938153264, -9.268979374875537], + [-73.07856047909449, -9.237273778298137], + [-73.05890943763804, -9.22685227786908], + [-73.04798818864465, -9.237204548574173], + [-73.04241150001052, -9.237460340104201], + [-73.02394069209103, -9.228428218108828], + [-73.02189789812165, -9.220905796968827], + [-73.0079407574631, -9.215564600898096], + [-73.00470406229373, -9.20389104230833], + [-72.99665385420693, -9.198925657502318], + [-72.99554745949243, -9.194605740871681], + [-73.01651964425164, -9.184629544238248], + [-73.0183965642931, -9.177722433007665], + [-73.00467114187171, -9.165505429417609], + [-72.97413355486796, -9.152935219510443], + [-72.95333832061056, -9.129092950472074], + [-72.94890766969247, -9.110796533952211], + [-72.94426662897325, -9.097132572175392], + [-72.94840144380647, -9.083333643008187], + [-72.94138509234443, -9.064797203671105], + [-72.94656180626436, -9.049779307215367], + [-72.94663794125974, -9.036535802801776], + [-72.95706593807061, -9.016353613964869], + [-72.95559659201504, -9.009608045565212], + [-72.9465905683113, -9.004692254534511], + [-72.94217181123783, -8.987325080855436], + [-72.96743723505267, -8.97923136148485], + [-72.9760112890489, -8.952322262846788], + [-72.99198075113111, -8.91982218447411], + [-73.01064061253408, -8.913538801954505], + [-73.02198941879733, -8.913600125812081], + [-73.02255012000332, -8.893333992035629], + [-73.02753284182226, -8.9097307778043], + [-73.03393625882464, -8.916439376125503], + [-73.04582155938006, -8.903161946026625], + [-73.05536047918164, -8.877589542356347], + [-73.0570468160788, -8.86398585695082], + [-73.06354036457458, -8.85468023362985], + [-73.06415612094897, -8.840535002506225], + [-73.07328475447127, -8.839785994026577], + [-73.09020448101444, -8.81835052654168], + [-73.09211067946704, -8.789305389141127], + [-73.10794039590851, -8.770515773163492], + [-73.11109711248328, -8.75873609954323], + [-73.11565055654468, -8.729333849554681], + [-73.12523079973828, -8.711502689648157], + [-73.13600967179862, -8.702867679400784], + [-73.15033332147122, -8.684302132056487], + [-73.1622905544565, -8.688837972094499], + [-73.18180657304045, -8.679493355260748], + [-73.19873640259154, -8.68753436732899], + [-73.20947550662746, -8.686097374943271], + [-73.21750286950167, -8.678433328831611], + [-73.22299308564232, -8.678460178355401], + [-73.2314937383731, -8.66640644555733], + [-73.24084734906798, -8.666705319249413], + [-73.25203408941384, -8.65418004729377], + [-73.25188394247469, -8.633544228059792], + [-73.25646037829873, -8.628285238635664], + [-73.2645233023458, -8.633860145093209], + [-73.26332732620415, -8.620015427399634], + [-73.27245253273544, -8.615026156352885], + [-73.28785164915367, -8.619882061585205], + [-73.29200919292902, -8.596501036368373], + [-73.2850174703987, -8.578602917572296], + [-73.28282757526344, -8.560979029099682], + [-73.29369644606528, -8.509245500805816], + [-73.30590585164441, -8.472366247913296], + [-73.3295965780273, -8.477308784777984], + [-73.33107704174576, -8.474629933329226], + [-73.33626377641643, -8.467937050130747], + [-73.34806692638718, -8.471357195126041], + [-73.36595785961994, -8.464164733279482], + [-73.3755398685736, -8.467603206323435], + [-73.37767654334007, -8.463155271271674], + [-73.38271109719098, -8.46901883953186], + [-73.3899592072842, -8.469183767386768], + [-73.40259980022421, -8.448172406609537], + [-73.40761897973611, -8.41995558192319], + [-73.41326618130701, -8.41139053331604], + [-73.42245914368699, -8.407787219565407], + [-73.42965355808478, -8.410505963593216], + [-73.44340172620588, -8.408058505154665], + [-73.45892656463239, -8.398947399073798], + [-73.48289739203243, -8.392542722697149], + [-73.48695590106621, -8.386599068625413], + [-73.48678825245923, -8.378878210151418], + [-73.50512251304657, -8.379507796399546], + [-73.51711355393756, -8.370428172094574], + [-73.53784201070567, -8.346268214942114], + [-73.53056329617374, -8.312934687129333], + [-73.54100798123378, -8.295799259371378], + [-73.53729235582227, -8.27066886747413], + [-73.55134510272256, -8.251227220343536], + [-73.55898078636888, -8.246047256768604], + [-73.56113920946714, -8.23608589096575], + [-73.57253039754795, -8.230584621051605], + [-73.57845306840179, -8.21490332065754], + [-73.58025803866181, -8.209720476599166], + [-73.59464743403018, -8.206182528796765], + [-73.58736085094695, -8.187163055533496], + [-73.58622424074034, -8.173538640985075], + [-73.59214363608444, -8.143092743664166], + [-73.58381223154271, -8.1280592068294], + [-73.59483795163246, -8.098189393727226], + [-73.60794356341553, -8.087275889500066], + [-73.61681705703515, -8.070070910488454], + [-73.63196700660569, -8.061940891840527], + [-73.62997142538698, -8.051257781113103], + [-73.62432948791657, -8.040141092238379], + [-73.6246421218132, -8.029233469141175], + [-73.64075488851527, -8.008516523686067], + [-73.65036055110667, -8.003314315196299], + [-73.66427539393479, -8.008977125304053], + [-73.67888665184249, -8.005202911590528], + [-73.68955105528451, -7.972150500123398], + [-73.69849204434206, -7.960981464526644], + [-73.7182757952753, -7.960527587338896], + [-73.72964350821849, -7.969837304554013], + [-73.73213669094086, -7.968793018677014], + [-73.73519663638949, -7.9621358990609075], + [-73.74737926438797, -7.953341795505821], + [-73.74735639705996, -7.936020302899983], + [-73.75179690931277, -7.924158597312537], + [-73.77288437604132, -7.902770042627045], + [-73.77096847423552, -7.897626996166967], + [-73.75352759853033, -7.892719367079], + [-73.76700152251973, -7.870991761141097], + [-73.76202724223144, -7.8584257328683496], + [-73.75724264567981, -7.8589282011742405], + [-73.74290811852545, -7.873485945547874], + [-73.71388558059597, -7.876247338558862], + [-73.70043665521915, -7.869577944832556], + [-73.68999066173134, -7.854317011980927], + [-73.68455138467486, -7.845039958935508], + [-73.68777025283762, -7.821400350742802], + [-73.68277222577655, -7.790441664404079], + [-73.68468701307607, -7.776837317201996], + [-73.69196340516481, -7.768177963136333], + [-73.71410575620058, -7.756254159174799], + [-73.7409142781675, -7.734491351453711], + [-73.7870248254603, -7.723226721252712], + [-73.8099662193001, -7.723442275691154], + [-73.82254621535898, -7.718279790201724], + [-73.84499106526684, -7.676514416207559], + [-73.85804427117753, -7.67851266887522], + [-73.8693205862076, -7.67231420529631], + [-73.8859825044694, -7.656076807189202], + [-73.88917812195618, -7.632046608879909], + [-73.90940333573622, -7.625172400664981], + [-73.921434858454, -7.617384717001155], + [-73.94323860575321, -7.599350242848267], + [-73.95033339042232, -7.588407543923846], + [-73.96920799037107, -7.568127969699527], + [-73.9842067321125, -7.566974708569419], + [-73.99131678839517, -7.5367429588468955], + [-73.98598387768887, -7.531218529463027], + [-73.96968028822455, -7.532412174539763], + [-73.94837894556443, -7.5270103432741], + [-73.93367734012052, -7.49494088803785], + [-73.93006860950791, -7.478361982866639], + [-73.92018103993709, -7.466073914451936], + [-73.92829082539737, -7.452437062941072], + [-73.93222610307242, -7.423585047287758], + [-73.9451192966475, -7.406556915978729], + [-73.96800720009618, -7.360586283162955], + [-73.96703651425483, -7.3523899790378575], + [-73.95948414476723, -7.345921307084392], + [-73.95164900616642, -7.347862163471572], + [-73.9444852492666, -7.361735099650518], + [-73.9342851550395, -7.351940592611743], + [-73.91037502565409, -7.378470651982739], + [-73.87051300590062, -7.379218367967994], + [-73.86076124539217, -7.369601959303313], + [-73.8531270796452, -7.34768168827743], + [-73.83045807881365, -7.337311785793894], + [-73.81798410724716, -7.335776621138951], + [-73.79382345404083, -7.342703882014449], + [-73.7668161349142, -7.332212478035578], + [-73.76001126138479, -7.3356405361083805], + [-73.76476234447232, -7.348251159049389], + [-73.75625683387568, -7.347281078835011], + [-73.71815627092248, -7.3286762773902545], + [-73.70067695958271, -7.304690163846814], + [-73.70028901055373, -7.29355427153457], + [-73.71656783087597, -7.267997374403947], + [-73.71467722549657, -7.234638987287299], + [-73.7247695529981, -7.221716039754992], + [-73.74556635315759, -7.210773220664737], + [-73.75417168962966, -7.201811439888524], + [-73.75948972533891, -7.171669379401826], + [-73.77612088197135, -7.157023319215512], + [-73.77854000638344, -7.146268509145538], + [-73.79395636293675, -7.133479732852014], + [-73.79295743733668, -7.124664076799118], + [-73.80135235378388, -7.111852056859138], + [-73.7379963411737, -7.134711628568582], + [-73.72680045254178, -7.138752212304011], + [-73.18232479635891, -7.335500127549971], + [-73.1199499943405, -7.358070685544891], + [-72.90100440203322, -7.437343045037613], + [-72.6004817072123, -7.546268206903246], + [-72.59282945961229, -7.549043114655765], + [-72.58841021229388, -7.550646432899418], + [-72.58459431229305, -7.552030097282082], + [-72.36470764658553, -7.577785259948407], + [-72.16936892071688, -7.600624928140837], + [-72.07749935094165, -7.611353683265092], + [-71.95784663473518, -7.625312993898752], + [-71.79224259405517, -7.644607974084803], + [-71.72241403159735, -7.6527358861778865], + [-71.64553982784906, -7.66167740229022], + [-71.39505985388428, -7.690765812446013], + [-71.38152573579137, -7.692335262335797], + [-71.0883500336188, -7.726288625039484], + [-70.79238828562991, -7.760464131429408], + [-70.77423859906746, -7.762556861210423], + [-70.77239461765973, -7.762769034539517], + [-70.72448617809435, -7.7682906484369285], + [-70.70725607493758, -7.770275158951408], + [-70.67880176167837, -7.773552902425314], + [-70.6589551175209, -7.775838339537898], + [-70.51865232769767, -7.791980197839557], + [-70.5156855606927, -7.792321664710807], + [-70.3331286173747, -7.813288523862352], + [-70.23582710796309, -7.824446414705473], + [-70.05223704884855, -7.847393687974117], + [-70.05132225403294, -7.84817381653556], + [-69.98931298478729, -7.901023492932491], + [-69.80165035912403, -8.061089114163023], + [-69.80158186666263, -8.061147476264802], + [-69.58682528937865, -8.244538655404954], + [-69.44424650200412, -8.366415686366391], + [-69.28615305611052, -8.501663715408604], + [-69.2128651221328, -8.564398483507537], + [-69.06206995500563, -8.693549691783222], + [-68.99516924994384, -8.750878730417318], + [-68.96890452055331, -8.773390600304285], + [-68.9227902644949, -8.812921175286382], + [-68.70660995468779, -8.998350484893015], + [-68.64707839960914, -9.049443392361846], + [-68.63762516373677, -9.053720018415103], + [-68.63748399030531, -9.053784232047054], + [-68.22024174582408, -9.24256180140227], + [-67.97708886130647, -9.352600546202922], + [-67.97491149232198, -9.35358594967927], + [-67.65133121218093, -9.500038933875073], + [-67.5172976761602, -9.560704301602076], + [-67.32595286253606, -9.592373033774424], + [-67.32481684696779, -9.592806112240169], + [-67.22296859837138, -9.637392238224347], + [-67.2227463399279, -9.637489610306108], + [-67.13350834650305, -9.676553375719225], + [-67.06001444115604, -9.708723329074989], + [-66.84774292057378, -9.801629463153352], + [-66.81016074991015, -9.818076285848187], + [-66.80619273559516, -9.814462991904888] + ] + ] + }, + "AL": { + "name": "Alagoas", + "coordinates": [ + [ + [-35.15263036076017, -8.913733478048355], + [-35.15628232624838, -8.922723084056127], + [-35.16870176248361, -8.936948470155903], + [-35.17531183290355, -8.963918772760422], + [-35.18614681795217, -8.980664314857083], + [-35.18866839367308, -8.982843088678115], + [-35.21031842399951, -9.00169996401081], + [-35.22367376062493, -9.019851191084598], + [-35.22652922580125, -9.029908043124216], + [-35.23889260635897, -9.04904452520078], + [-35.237446058578456, -9.060851353488399], + [-35.24061077655545, -9.064754614831484], + [-35.2391185975842, -9.068536647865], + [-35.24398247057871, -9.076610951664097], + [-35.25485357879537, -9.085882128625814], + [-35.257731075496636, -9.090989148354849], + [-35.2589756448726, -9.10068546596665], + [-35.26589406401116, -9.11031211209902], + [-35.26775720857722, -9.112467772966212], + [-35.270475937800754, -9.122549281413066], + [-35.282958177478434, -9.128265471617171], + [-35.28654895411817, -9.146236703153091], + [-35.28579147898243, -9.147607848561687], + [-35.288420392794706, -9.154581545840522], + [-35.29511471211546, -9.155744792733689], + [-35.29477752374631, -9.17008919969013], + [-35.299508198582984, -9.182478937117947], + [-35.30669547033643, -9.19341493701384], + [-35.320139301459626, -9.199545438388226], + [-35.32992175525745, -9.222055090456593], + [-35.34237955942783, -9.231076109300743], + [-35.342562888250804, -9.2312237172831], + [-35.343240337321134, -9.23822714732233], + [-35.354134735056284, -9.2554654332131], + [-35.37425643331863, -9.278057631237838], + [-35.38684138971609, -9.286276800321586], + [-35.39660927109645, -9.30303104614186], + [-35.414359094763974, -9.312931602002044], + [-35.42153068735934, -9.315631057615473], + [-35.41439355244028, -9.318297883629839], + [-35.41576119789583, -9.321154433728903], + [-35.42853083557897, -9.322281871295477], + [-35.43759970372557, -9.327459190204651], + [-35.44078288093187, -9.339078104486646], + [-35.45730744788483, -9.342594491617847], + [-35.463807721933954, -9.347758066443397], + [-35.487464230439215, -9.374687294997907], + [-35.49578283094898, -9.39137278018685], + [-35.496074007991545, -9.401039523788954], + [-35.49769816589769, -9.419738806701611], + [-35.502833478168625, -9.418477667622463], + [-35.513470152629054, -9.440326904404802], + [-35.52531071835959, -9.443000677240317], + [-35.53075381201903, -9.457394160597392], + [-35.53597917901529, -9.458133165924524], + [-35.553809803402935, -9.474550641768083], + [-35.558570770231654, -9.48747800989813], + [-35.58689225506078, -9.510705766314553], + [-35.59128509597981, -9.52904351493171], + [-35.595586354107795, -9.530428536082752], + [-35.605284181495385, -9.53152303541708], + [-35.614149413464936, -9.540106176899714], + [-35.61655801135662, -9.548320952906545], + [-35.63048140723857, -9.552030937392194], + [-35.64677970923343, -9.56785882383472], + [-35.65000739224026, -9.567556712989033], + [-35.659756155845685, -9.583713524042592], + [-35.68678337344356, -9.613963103839735], + [-35.69760465515443, -9.639918890945731], + [-35.6993970517141, -9.649596292547967], + [-35.69486915343348, -9.664812143713515], + [-35.70894810212296, -9.665474544], + [-35.724105709099085, -9.6846729520861], + [-35.72936572178206, -9.682726799020138], + [-35.7233632878746, -9.682169467204064], + [-35.722838205426704, -9.676201308091509], + [-35.72985277832142, -9.67137782505394], + [-35.741424352271274, -9.671993510490303], + [-35.7556094302984, -9.678170447115324], + [-35.78838962501723, -9.711263316340267], + [-35.794548290118854, -9.713166743102063], + [-35.812871180243796, -9.732239574557987], + [-35.81992586204446, -9.744644868208939], + [-35.81450354821622, -9.737811281687023], + [-35.81638012366791, -9.741789650982694], + [-35.85509010057265, -9.788213963129625], + [-35.873769283995195, -9.816966431211076], + [-35.87939545134086, -9.826337129155977], + [-35.88970005223548, -9.83999611136957], + [-35.902833400253115, -9.870103155703788], + [-35.93530885433857, -9.899214244049146], + [-35.96235628918099, -9.941285550834834], + [-35.97464872049111, -9.965864824557926], + [-36.00409308501321, -10.003746952464848], + [-36.03150707812474, -10.05088559763732], + [-36.04314192181714, -10.06473442817758], + [-36.046368953015666, -10.07569261368825], + [-36.05917291299084, -10.085595755151488], + [-36.06942155128537, -10.084528152033965], + [-36.08394967496603, -10.0907623713113], + [-36.102309084904896, -10.113767365050547], + [-36.10871075692533, -10.125916757936062], + [-36.109999160374386, -10.128361490455832], + [-36.11098498429253, -10.130233024245783], + [-36.1213688242236, -10.137737977042125], + [-36.13539744074779, -10.159266697759616], + [-36.13906199344824, -10.1547721262227], + [-36.14586589435718, -10.15490053764822], + [-36.170863982227715, -10.171281567974013], + [-36.18661918364405, -10.197450898019609], + [-36.223102363540285, -10.223174005672096], + [-36.23453770421907, -10.238974339121278], + [-36.24966338856092, -10.252262480185063], + [-36.272200495241975, -10.275102072218276], + [-36.292207564584416, -10.300494209349749], + [-36.29914349178248, -10.314528348179378], + [-36.30272997710606, -10.32616146988213], + [-36.302283306667746, -10.34266913553533], + [-36.29376341019771, -10.354947757793202], + [-36.300422881806206, -10.362496803867678], + [-36.3074648484892, -10.364247454376574], + [-36.335847050427994, -10.40379125128001], + [-36.385399447193166, -10.499356245772631], + [-36.39391857764863, -10.500373496970136], + [-36.4051396647103, -10.482286085005443], + [-36.40528836555916, -10.481727769594434], + [-36.41742207277067, -10.45407199011291], + [-36.43049955198683, -10.425341335856286], + [-36.43796961401282, -10.418459282558006], + [-36.44364675628887, -10.418051767345142], + [-36.45689626672917, -10.407383041009625], + [-36.463570176018266, -10.406767319231255], + [-36.487433285832424, -10.422938036103904], + [-36.48745452553054, -10.422950407893882], + [-36.4896534600731, -10.424029570435724], + [-36.51006942463966, -10.43284584506848], + [-36.52227005343731, -10.433128082046835], + [-36.51934839987112, -10.424734254548868], + [-36.51058057785073, -10.421436966369987], + [-36.53861612681036, -10.422394066954588], + [-36.54468453031258, -10.430063353933457], + [-36.56306709316009, -10.419730313447184], + [-36.56562204351863, -10.411902623440572], + [-36.5620090214446, -10.404447292450522], + [-36.56164002955871, -10.385728130502384], + [-36.564415410967364, -10.380160709435074], + [-36.568532245489266, -10.362610085954337], + [-36.56594161273938, -10.329551396677859], + [-36.56596493707686, -10.329511019886], + [-36.57416976043501, -10.315262848554765], + [-36.588988112418825, -10.301860424850572], + [-36.591221722116465, -10.287416267699781], + [-36.595544717873125, -10.28415311984269], + [-36.59959625283698, -10.281906900632446], + [-36.61227355147693, -10.271040306150631], + [-36.62197952462003, -10.25924066157445], + [-36.625446966428925, -10.256408871740048], + [-36.631012794872746, -10.254038839916852], + [-36.63262351822694, -10.253598776642713], + [-36.644508001382974, -10.252573535123494], + [-36.65797940944219, -10.265365767175696], + [-36.67941124857845, -10.269843582431852], + [-36.681702164377704, -10.27349463986284], + [-36.68514478569463, -10.275290813487212], + [-36.70202940402439, -10.271006023490624], + [-36.72043340905058, -10.26497580465887], + [-36.73661415234246, -10.252098878815278], + [-36.74459812777524, -10.252194031714751], + [-36.75619489208721, -10.24637719861375], + [-36.75078243592113, -10.237499103307522], + [-36.75621533050547, -10.23176886382663], + [-36.77690702205392, -10.225962983017823], + [-36.80845180000004, -10.220908387347423], + [-36.818937836139504, -10.2158737812072], + [-36.819690835585206, -10.21538014938366], + [-36.835694518637396, -10.204108965574672], + [-36.84568935086579, -10.189432793409638], + [-36.846623075007734, -10.186549610562375], + [-36.84715680274785, -10.180172244828816], + [-36.847302806645665, -10.176304794580645], + [-36.84864513712212, -10.162819561629318], + [-36.86741128464145, -10.157584337585586], + [-36.880634619650806, -10.145100759434232], + [-36.88764261081876, -10.143054101375252], + [-36.91093150643292, -10.137975584619912], + [-36.918459385953575, -10.132283347122826], + [-36.9185634118404, -10.132185277137236], + [-36.92159960641296, -10.128346032149166], + [-36.930612092339054, -10.105803313809467], + [-36.94713640578546, -10.086582318661748], + [-36.95085524485312, -10.077573896991604], + [-36.952297679167124, -10.074821441285764], + [-36.95394187082236, -10.071681466540085], + [-36.95913790791544, -10.050562829939034], + [-36.95644970740854, -10.0237309272513], + [-36.95644948185974, -10.02365020981579], + [-36.9575503405654, -10.01555825415794], + [-36.95788045775514, -10.01463291861814], + [-36.957911525251134, -10.014547665674547], + [-36.95847707122715, -10.01296308668761], + [-36.95912204654809, -10.01115764101624], + [-36.96764175711828, -9.992915173908914], + [-36.99491814013946, -9.975404994776133], + [-37.00555532496499, -9.976260158376448], + [-37.02995424899043, -9.986324095413186], + [-37.04424822477241, -9.98872568305704], + [-37.06184226679473, -9.978492196467455], + [-37.06258220486056, -9.97790401172007], + [-37.06528260633403, -9.97575650825326], + [-37.07511459711814, -9.966720915786494], + [-37.080711384053544, -9.961317165083322], + [-37.13268125157411, -9.913833444638973], + [-37.15300170100624, -9.900886094332698], + [-37.19533179658688, -9.898088142210598], + [-37.226627623011744, -9.899509759305174], + [-37.235577803313916, -9.896071295666063], + [-37.24722893176085, -9.884678724630179], + [-37.25697309177673, -9.86030240260467], + [-37.26423619240992, -9.850468367104934], + [-37.28545616742687, -9.830996713987975], + [-37.297234370767285, -9.827633301292831], + [-37.31171795049345, -9.824527665543197], + [-37.32115683575601, -9.820495620101271], + [-37.34010335727701, -9.800567295380539], + [-37.34834673189003, -9.793154965674777], + [-37.362849907268156, -9.786918916690174], + [-37.37302430455189, -9.784192103258901], + [-37.3976377863996, -9.777575374107926], + [-37.40892546140158, -9.768563390595062], + [-37.41779235248069, -9.762990841301242], + [-37.4503250633048, -9.753379205565277], + [-37.466891379865004, -9.7495588916467], + [-37.47373771843512, -9.746871973324911], + [-37.52425029892752, -9.744932148409786], + [-37.527646472635645, -9.744153741858822], + [-37.5535685092257, -9.740687558319252], + [-37.57193429971479, -9.73875903516963], + [-37.58172503673606, -9.734117016980743], + [-37.60195785725043, -9.719250213440551], + [-37.60381640191163, -9.71826459287864], + [-37.64511960559783, -9.691724954120357], + [-37.65686860039044, -9.683672935128351], + [-37.660361459393584, -9.677300632821137], + [-37.66651080913581, -9.666078874647713], + [-37.6708842068746, -9.656677505494729], + [-37.68084646616329, -9.64807209646065], + [-37.68691051940106, -9.64461712709945], + [-37.71180049728359, -9.631334265018927], + [-37.737082258495825, -9.627024990329167], + [-37.746907170296964, -9.625781924720416], + [-37.77870854525794, -9.638754492044916], + [-37.78512009892186, -9.63865555262054], + [-37.787717526530656, -9.633077692919155], + [-37.793131969407995, -9.620643250202976], + [-37.80709967772943, -9.6101400746159], + [-37.81827992792873, -9.592929252418246], + [-37.82380673578377, -9.59133194856597], + [-37.83314217504554, -9.594921812356745], + [-37.83756845861332, -9.583318048552844], + [-37.84225753378364, -9.579452220851767], + [-37.886201089334534, -9.550202362178906], + [-37.89417283984187, -9.539562838851667], + [-37.917174701617334, -9.548989812137872], + [-37.95632599229841, -9.534118424225612], + [-37.98936083854769, -9.52739448520072], + [-38.00332047433408, -9.515065718648888], + [-37.99797911068145, -9.499319079123719], + [-38.0109550857436, -9.47876689072416], + [-38.019972442042736, -9.475953215352558], + [-38.02218435544179, -9.470026710518958], + [-38.0303523211371, -9.46696749224291], + [-38.0431924879692, -9.468634590132522], + [-38.05758505724554, -9.459237533964266], + [-38.067875927542815, -9.45853854606338], + [-38.070279346241726, -9.448016952008256], + [-38.07973783680591, -9.440422692659983], + [-38.10897236394214, -9.435657403626179], + [-38.12139559738382, -9.441607728001797], + [-38.14195736316945, -9.437798819013286], + [-38.15497845560516, -9.4434522198026], + [-38.17772863626177, -9.425422489783331], + [-38.1948752710064, -9.421976820429725], + [-38.197004179789666, -9.421395320859947], + [-38.20504224385957, -9.416757995488773], + [-38.20189726105525, -9.400419913596483], + [-38.194205277826136, -9.394421918032846], + [-38.19560479374908, -9.392155304877742], + [-38.194505076077895, -9.384970795194173], + [-38.20032159879451, -9.3794662504079], + [-38.20955739465379, -9.35862405190715], + [-38.223626636423674, -9.346942552735328], + [-38.237618977979025, -9.329830541849974], + [-38.20206169707012, -9.296841361529323], + [-38.180708441610925, -9.291712957132964], + [-38.17703745154306, -9.288689407693031], + [-38.15801122722451, -9.263865538704474], + [-38.15639969026254, -9.249680132288093], + [-38.15639519342754, -9.249162659362929], + [-38.15633552496061, -9.24239970580638], + [-38.14393779550208, -9.218240693857503], + [-38.11927615246305, -9.201838921869323], + [-38.10260841255443, -9.18024343278906], + [-38.092317019438646, -9.17276073042472], + [-38.079292188712756, -9.170568876676914], + [-38.06612780557387, -9.174255607952285], + [-38.05277486823522, -9.1678544318724], + [-38.0445706513211, -9.168851098676047], + [-38.030321504423306, -9.164983805593732], + [-38.025817019677994, -9.155541815685302], + [-38.01104297336043, -9.156063577313168], + [-37.999512808353245, -9.15227898704432], + [-37.99101680141756, -9.155411860100962], + [-37.97938190989367, -9.148398553603334], + [-37.97148962063416, -9.125727965250125], + [-37.95759803349639, -9.115665168011766], + [-37.9543343858844, -9.109560352414158], + [-37.95162610130835, -9.097345016355815], + [-37.94271405512658, -9.09225425014901], + [-37.93916936353188, -9.083288677354112], + [-37.90790504997078, -9.052253551725716], + [-37.90496265879461, -9.040271100817527], + [-37.889798229015575, -9.034829537914412], + [-37.88273783293415, -9.040698890952656], + [-37.87829120567735, -9.0369911873702], + [-37.875257677084356, -9.02465720182789], + [-37.87962815941257, -9.015449092660543], + [-37.874516477005265, -9.011550100884618], + [-37.86718194163812, -9.01166640754387], + [-37.85312339571266, -9.000174800335007], + [-37.852306977069816, -8.997731901752125], + [-37.84603858528152, -8.984806222345323], + [-37.83912880390434, -8.978416215851768], + [-37.82602895570015, -8.934272325757552], + [-37.82626432253691, -8.932751999939082], + [-37.83366766347557, -8.926446936219644], + [-37.82852795867123, -8.921821067321138], + [-37.82131422501395, -8.91562268947821], + [-37.82284993690575, -8.900069225410313], + [-37.82903722980726, -8.897145650251652], + [-37.82912116208372, -8.893808313957111], + [-37.81183317652999, -8.884782063831183], + [-37.801263033784046, -8.884747800180536], + [-37.79320222850665, -8.875479198462864], + [-37.7879216395477, -8.873921906214296], + [-37.78269619470064, -8.865223484039468], + [-37.77606649693097, -8.862549510115471], + [-37.769372781049654, -8.86414529707169], + [-37.75887217807114, -8.856586327534256], + [-37.748788237117125, -8.870316318902539], + [-37.74614262439113, -8.88316678898912], + [-37.741625960773064, -8.887695841462936], + [-37.7352247198601, -8.887636959980934], + [-37.73432335563224, -8.897686955829402], + [-37.724596430348015, -8.904127169770302], + [-37.72669384716332, -8.90609835430956], + [-37.7217062140122, -8.915557898793413], + [-37.70791037187433, -8.927835402533674], + [-37.703303444777994, -8.93816520619407], + [-37.70221753037726, -8.948230199015995], + [-37.690123507323925, -8.95619118991244], + [-37.684049004492195, -8.968438954038886], + [-37.68853670254452, -8.978793910723626], + [-37.70338854573351, -8.986182332532431], + [-37.70218442357943, -8.989310877585632], + [-37.6988764898198, -8.992498721443171], + [-37.68950045008839, -8.990334512857599], + [-37.68601651916181, -8.998789943823892], + [-37.66167876655921, -8.987282733573192], + [-37.66409560330815, -8.99957942048102], + [-37.65912456372427, -9.006520980916182], + [-37.64391530211629, -9.018377935891525], + [-37.62617052848512, -9.014409833777066], + [-37.61154516953206, -9.005914150213345], + [-37.616801888218, -9.000671460495612], + [-37.61460029433553, -8.989192903952787], + [-37.6008675334984, -8.9761564053877], + [-37.583639564003086, -8.970201327307295], + [-37.562446257755596, -8.973988357100133], + [-37.54672917430404, -8.96149643259335], + [-37.54109436742292, -8.958432905675373], + [-37.532436841888554, -8.961368462014956], + [-37.53013276005572, -8.96310412375717], + [-37.52435048777999, -8.96499775024198], + [-37.50006965816632, -8.968008429266822], + [-37.490371089146144, -8.965940755585155], + [-37.48703723381539, -8.975590805040847], + [-37.4890931596363, -8.986014235441386], + [-37.4895599897466, -8.988384831151148], + [-37.48960058702351, -8.988588324022814], + [-37.49251259591047, -8.99830888215879], + [-37.49378829785094, -9.000725702994322], + [-37.485580341598656, -9.009413933263799], + [-37.46940300376503, -9.027709556806983], + [-37.446009976151515, -9.026644643359482], + [-37.43365396020874, -9.029836270926364], + [-37.41848834438173, -9.043863866854515], + [-37.40085830838178, -9.0522157254541], + [-37.39233351223631, -9.055759400949146], + [-37.34057277951867, -9.079557147026572], + [-37.3368603639687, -9.08091695394501], + [-37.32773572522183, -9.093259500376714], + [-37.31555259928739, -9.09430574989176], + [-37.31073198673875, -9.100452525493386], + [-37.31109063352309, -9.107578607481875], + [-37.29683858335575, -9.12082313607838], + [-37.28796168272212, -9.136383051394803], + [-37.28231942685305, -9.148875489395966], + [-37.26259144076322, -9.158915242366767], + [-37.26243382809188, -9.160051500473527], + [-37.260076829646266, -9.165059318536201], + [-37.24326486799712, -9.186071353255215], + [-37.24681872426703, -9.190415858904844], + [-37.23920589788848, -9.20335211076956], + [-37.233590068706526, -9.206619298565236], + [-37.232389593722914, -9.22235042134431], + [-37.22881695962715, -9.225569446134188], + [-37.233926160677505, -9.232182718291016], + [-37.234362807585065, -9.240083508226766], + [-37.20756804291252, -9.21834838225655], + [-37.198348989344105, -9.215515683475523], + [-37.158981978052466, -9.239135004107409], + [-37.16831787796695, -9.251859241130642], + [-37.16911456363347, -9.265625227870519], + [-37.1691370162515, -9.265743473638368], + [-37.16942163062251, -9.27246726115081], + [-37.164369219046506, -9.275738689898413], + [-37.142429370828324, -9.268112488019272], + [-37.129954033017064, -9.260095639922612], + [-37.1165098446326, -9.240963806008839], + [-37.10630566156192, -9.23981651699549], + [-37.08093963131884, -9.254034624671414], + [-37.05723550241586, -9.28182130828331], + [-37.06170622203717, -9.304194909553466], + [-37.05762036268312, -9.317573082757175], + [-37.05537514280501, -9.30748058966308], + [-37.04556522940145, -9.31591446594201], + [-37.024325933344734, -9.315747828148886], + [-37.003400839489196, -9.35264592632849], + [-36.97698845346819, -9.36142096218391], + [-36.97620802134275, -9.362099092271718], + [-36.95246847769085, -9.382575850246047], + [-36.94404378585908, -9.382373019074528], + [-36.93688624186581, -9.377457463422022], + [-36.9304738814044, -9.370068748675699], + [-36.93680425204944, -9.361246603155836], + [-36.937913679029556, -9.352853773681527], + [-36.92230691124009, -9.339794278346957], + [-36.920980120450636, -9.33251985102172], + [-36.92735210906951, -9.325443576390855], + [-36.92171910688065, -9.313644613175398], + [-36.91585711991485, -9.299053237795915], + [-36.90086352744416, -9.282940768872654], + [-36.889828714047, -9.283671304933234], + [-36.88416948243704, -9.28094691906328], + [-36.87480755710282, -9.276992964612848], + [-36.87981834267383, -9.276406854454551], + [-36.87129715905453, -9.268116788155579], + [-36.84840608447698, -9.276727390492765], + [-36.844237102951396, -9.282374565624647], + [-36.83974765313298, -9.288246035782501], + [-36.83607737718018, -9.288660577588292], + [-36.79718263385481, -9.29305485420399], + [-36.773438516090664, -9.279609309591416], + [-36.75882113713363, -9.271432217411398], + [-36.728321343476075, -9.27328017256002], + [-36.693881824936, -9.275363685918338], + [-36.68493275333198, -9.283024685695022], + [-36.679670132914005, -9.287530881842311], + [-36.65719667673674, -9.311127769586793], + [-36.649774452669575, -9.315437189495471], + [-36.64472359806128, -9.314402953832092], + [-36.64067693812988, -9.32038953878119], + [-36.63549331845604, -9.320816258418834], + [-36.634654767253096, -9.32693495385298], + [-36.62876647271895, -9.32830986171669], + [-36.62791701846723, -9.332366313862963], + [-36.62489321914916, -9.331862829396488], + [-36.62346892640723, -9.326625232765362], + [-36.61966701564859, -9.328833699763281], + [-36.61503313356194, -9.323699094493838], + [-36.614787900154425, -9.331057469546044], + [-36.61288342862531, -9.333959916617413], + [-36.607757790230814, -9.33349562415843], + [-36.60508539251262, -9.341539413511429], + [-36.59311042111524, -9.33485772396595], + [-36.58630413600452, -9.338116167237462], + [-36.57611612279077, -9.33190990007831], + [-36.5675076841871, -9.332165976607131], + [-36.56394450647644, -9.322813221057729], + [-36.568244330621006, -9.318305003016983], + [-36.572796606468266, -9.320032773143454], + [-36.57187802883828, -9.29261407229379], + [-36.54933839578338, -9.285506721621537], + [-36.50335704945457, -9.271008106301167], + [-36.50040916584726, -9.262817355749277], + [-36.49869054232906, -9.264943462640394], + [-36.49137565307603, -9.262439167385073], + [-36.492728714355295, -9.25420928220255], + [-36.489847639339324, -9.252671585751402], + [-36.48792648698939, -9.241652418195642], + [-36.48137113481585, -9.239500268456872], + [-36.47616139098329, -9.243803586460922], + [-36.46255623931728, -9.239282045965666], + [-36.45773501696562, -9.233109563177102], + [-36.45369923210736, -9.232420866345057], + [-36.454297398568315, -9.2256925498103], + [-36.441274377719346, -9.219110157156942], + [-36.43704272454424, -9.212131035065806], + [-36.423339473204535, -9.215682984888156], + [-36.424407361247994, -9.226053915451025], + [-36.419841076523944, -9.22959913867205], + [-36.41533931343568, -9.229704359708], + [-36.408703255303784, -9.221956437747421], + [-36.407509256564104, -9.221037985740054], + [-36.40295141410434, -9.22345500122053], + [-36.390078845620096, -9.224906394880724], + [-36.38229694912676, -9.220065039547235], + [-36.3759122057038, -9.216730519842248], + [-36.36574338107891, -9.222658141710488], + [-36.358385281880324, -9.218318618500955], + [-36.353642898355524, -9.22015237999716], + [-36.3489287357357, -9.214767505805682], + [-36.353955899948524, -9.201224044848846], + [-36.33892905572848, -9.207042040049256], + [-36.327684754611106, -9.200798241543879], + [-36.32156030134554, -9.185411242660075], + [-36.312364355428535, -9.179948607647178], + [-36.309831857837985, -9.172393024909786], + [-36.307858002278024, -9.17849937938894], + [-36.30055912747771, -9.175810875783473], + [-36.29724107347508, -9.176812581581169], + [-36.29501529578686, -9.172473019899485], + [-36.28779916190156, -9.173332861886466], + [-36.27421005761772, -9.166234267372364], + [-36.27113577985801, -9.17106875130077], + [-36.26017784518128, -9.170833669768756], + [-36.26156490535391, -9.177308603887486], + [-36.25602800489079, -9.182010532065094], + [-36.252543734869015, -9.181276384694527], + [-36.25315970923114, -9.173337740237892], + [-36.24791014590131, -9.177891273183507], + [-36.22428576913576, -9.171320479209474], + [-36.2251271771251, -9.167353438906275], + [-36.239100256697, -9.160022266175746], + [-36.242276058237145, -9.147495235609755], + [-36.246291396470596, -9.143630386046226], + [-36.257758651033754, -9.138390572004784], + [-36.263582974325296, -9.12603483410358], + [-36.260725388799365, -9.118552903136909], + [-36.26611296952799, -9.112059512327722], + [-36.26703601651829, -9.111121208706248], + [-36.26688341365783, -9.10241138147085], + [-36.245562317600196, -9.099074659558953], + [-36.236498604571224, -9.103520275529515], + [-36.22250873227524, -9.086464165123267], + [-36.22195333579586, -9.073333699710888], + [-36.210379279884364, -9.073168983467452], + [-36.204760492247686, -9.069097867072232], + [-36.19926898216261, -9.04887725735629], + [-36.19576504813416, -9.04481690600015], + [-36.18898708829379, -9.046325841337158], + [-36.17950488637205, -9.041047076305365], + [-36.17516957999473, -9.044181425631447], + [-36.16417396047376, -9.040519222731087], + [-36.1548231829799, -9.039990571880224], + [-36.15176741064492, -9.042724965335905], + [-36.14284723852683, -9.040354031140811], + [-36.138931494197905, -9.036040315330208], + [-36.1273199873148, -9.033699892273283], + [-36.12070228339827, -9.027476888849048], + [-36.111532467626404, -9.017703442145397], + [-36.11512958410631, -9.01343108650616], + [-36.113815225431814, -9.009244198765003], + [-36.10950756737698, -9.008452494103995], + [-36.104370571846054, -8.998959796473471], + [-36.11222951930548, -8.987818552852454], + [-36.12685183713805, -8.981306865639555], + [-36.12962813414757, -8.971357545862748], + [-36.12731982811441, -8.956141105431024], + [-36.12686841258921, -8.955759173416524], + [-36.086450286687636, -8.944097876155327], + [-36.08402769848882, -8.942260349672708], + [-36.06397663700745, -8.915367941990391], + [-36.0332954420746, -8.908449825520451], + [-36.033150265129336, -8.908440542398795], + [-36.00542589297013, -8.91303078688874], + [-35.98709398059595, -8.903317791151931], + [-35.98420187121974, -8.905247435350038], + [-35.9741539048423, -8.901726446297069], + [-35.96534293536841, -8.903174253776749], + [-35.96129658809928, -8.894398637882128], + [-35.95066142749144, -8.892325108301746], + [-35.942577690204274, -8.885629393841722], + [-35.92431846751726, -8.884657815090174], + [-35.916433628931046, -8.867613820637873], + [-35.91146271125845, -8.861319576305084], + [-35.90103091939177, -8.862442199877394], + [-35.89624285571078, -8.854298214077833], + [-35.886990088329945, -8.86309911915184], + [-35.86197353661133, -8.858399227864625], + [-35.85128077203804, -8.868055728171644], + [-35.84918168687352, -8.871842234762662], + [-35.84504362806973, -8.872510511206265], + [-35.83709359869574, -8.868771668628684], + [-35.82699354585003, -8.870124260724326], + [-35.823019187483766, -8.857449261453493], + [-35.81995228146482, -8.856904355733338], + [-35.807938799089406, -8.860417630139548], + [-35.795113889219046, -8.847715021343387], + [-35.790659706295386, -8.85344364941458], + [-35.78763937891086, -8.85116049402975], + [-35.781367600131325, -8.860995489429213], + [-35.7760232733965, -8.858487897271639], + [-35.77691504732654, -8.869086221637355], + [-35.78372043449167, -8.882031381478981], + [-35.779181501135234, -8.888671619479949], + [-35.783024037178514, -8.89757198324651], + [-35.778231737469, -8.898918023252193], + [-35.773285506022106, -8.90616904024672], + [-35.76096057832836, -8.908110437712786], + [-35.74844251402766, -8.917181579347734], + [-35.729065231681396, -8.910568395728546], + [-35.72335126480524, -8.909502503055139], + [-35.72036522443429, -8.907858264443593], + [-35.713744548676054, -8.904827441934229], + [-35.70031994555406, -8.906620097825577], + [-35.68754439037409, -8.898535801534868], + [-35.670035111011224, -8.89527508194655], + [-35.66476905806446, -8.891011871679035], + [-35.657559943225976, -8.880687836863299], + [-35.6520280840511, -8.882285941750991], + [-35.62917535775317, -8.879364600343065], + [-35.61382757784157, -8.864424208301486], + [-35.60553655742469, -8.865182498743405], + [-35.59623902051239, -8.861021239108897], + [-35.594154608629914, -8.854884094218203], + [-35.58256613498441, -8.846497203464185], + [-35.57021773893338, -8.842820201967847], + [-35.56752466295118, -8.835473624682104], + [-35.563724352950715, -8.831676118980521], + [-35.55701048760502, -8.831513492194592], + [-35.53985981895231, -8.82111124526504], + [-35.535220928292716, -8.819484240988498], + [-35.53149377524482, -8.828300445897732], + [-35.51781658044337, -8.816786866969798], + [-35.511568786398406, -8.817564704737395], + [-35.50430387212799, -8.822328278895162], + [-35.50042102836265, -8.820196652023665], + [-35.500395966847904, -8.824992760662447], + [-35.49579969846643, -8.828331757348307], + [-35.49351936890552, -8.825358162469806], + [-35.48216951952831, -8.82618157996481], + [-35.48062543729246, -8.819963906754927], + [-35.47625535163526, -8.818300267818422], + [-35.47017086217137, -8.813156189209213], + [-35.46238922248847, -8.818859860596827], + [-35.466803085261674, -8.828293264854459], + [-35.46188588453712, -8.830190394025776], + [-35.45986680137382, -8.837800881307126], + [-35.45085815893795, -8.841367090515908], + [-35.43591786149212, -8.84096008797586], + [-35.43196076112022, -8.836036452091625], + [-35.41673917367998, -8.838863539010992], + [-35.414375532347016, -8.836440948337701], + [-35.40905757644359, -8.838017411812373], + [-35.40755401389837, -8.842417867092074], + [-35.40003192495326, -8.85034158822266], + [-35.38301814949827, -8.852742846069871], + [-35.35079893329178, -8.860741683098768], + [-35.30637405050495, -8.871897756602088], + [-35.299336975632144, -8.873664350053632], + [-35.28769515137884, -8.876584138692792], + [-35.277624963125135, -8.875191446019922], + [-35.252828092124446, -8.88726346653472], + [-35.24422295746066, -8.88530837233009], + [-35.24446081728147, -8.884974882336063], + [-35.24365264411605, -8.885178766388407], + [-35.2350610676581, -8.883226888186675], + [-35.220154724192746, -8.88930187994156], + [-35.21149607944708, -8.888880311700289], + [-35.20913831938818, -8.891794029197209], + [-35.2006328793933, -8.8882471878218], + [-35.1708664252142, -8.891026160146547], + [-35.162857160748416, -8.897438785727529], + [-35.155208846859814, -8.903163215939546], + [-35.15263036076017, -8.913733478048355] + ] + ] + }, + "AM": { + "name": "Amazonas", + "coordinates": [ + [ + [-67.32589587626377, 2.0297569730871743], + [-67.300007492483, 1.9267129721527352], + [-67.2865692241732, 1.8886424867208425], + [-67.27789555050252, 1.875789758177363], + [-67.24375883329068, 1.8582278988129746], + [-67.22864225002107, 1.8608896623706264], + [-67.1741431422225, 1.8570634994630995], + [-67.15685981513039, 1.848886880308888], + [-67.1395363163599, 1.82663212079022], + [-67.1238638177989, 1.7989708133927735], + [-67.11538896754402, 1.7675912912354668], + [-67.09719244520353, 1.7326433298222161], + [-67.10117166847036, 1.7062750156930802], + [-67.0993588187225, 1.6817829798240755], + [-67.08608570564996, 1.6579950216558252], + [-67.08133426108006, 1.638218996476511], + [-67.07853018229875, 1.4998736458448583], + [-67.0730584155399, 1.4729712611568888], + [-67.07214372431041, 1.4426454427115054], + [-67.08022640313756, 1.4013013946119453], + [-67.08864167380544, 1.3250211688104834], + [-67.08714548175261, 1.231603138411759], + [-67.08266733606746, 1.2033845925024562], + [-67.08797436533142, 1.1669368653928434], + [-67.00963009171518, 1.1884402022657985], + [-66.85674896975601, 1.230246884497759], + [-66.595240434074, 0.996344374808094], + [-66.31834388964629, 0.7550804040325045], + [-66.31633751893197, 0.7361659792548692], + [-66.31827486550905, 0.7551336254484293], + [-66.21279659641162, 0.7806860106361112], + [-66.18796911496638, 0.7787187093813159], + [-66.18250045327726, 0.7671584343873507], + [-66.16313670363014, 0.7561533179006326], + [-66.16091551618705, 0.7463991144542264], + [-66.15091301639032, 0.7445099085154285], + [-66.12097296852647, 0.7521186059597036], + [-66.11432973141416, 0.7634156157826538], + [-66.1020488775041, 0.7637857615676654], + [-66.08835585264316, 0.7590983567474262], + [-66.07610812044562, 0.7683212614946429], + [-66.07819712878316, 0.779071227936091], + [-66.07432776332293, 0.7987690593730804], + [-66.06988149494458, 0.8050963369264914], + [-66.05580399397904, 0.8022161575805455], + [-66.03780427784436, 0.812076356118887], + [-66.01708654811107, 0.8000782290908235], + [-66.00043771535024, 0.8026179083049151], + [-65.99288630414766, 0.8070507706055886], + [-65.98316411688926, 0.8062436313394087], + [-65.9776097850837, 0.811849728860298], + [-65.97119691339675, 0.8060712082251191], + [-65.96425348709215, 0.8095125403777474], + [-65.96452591936713, 0.8198108793050918], + [-65.95168400998645, 0.8363556139734325], + [-65.94575091392367, 0.8526240772223477], + [-65.93315764301455, 0.8625733920411885], + [-65.93641136903543, 0.8821759903866667], + [-65.92521972379167, 0.8913099662570255], + [-65.90822360821184, 0.8888857243041058], + [-65.90097440374446, 0.8836508833918875], + [-65.8970231038567, 0.8922371188606352], + [-65.88138447101758, 0.9016463210432378], + [-65.87352905698789, 0.9220747129342922], + [-65.87954768040849, 0.9327325613980968], + [-65.86211292872476, 0.9309384515910484], + [-65.83149758753932, 0.9400900792189143], + [-65.81619355571533, 0.9521200552445888], + [-65.80896855974939, 0.9490533249980007], + [-65.79369552832249, 0.9541271859807473], + [-65.78758700803597, 0.9619031615633158], + [-65.7798042062375, 0.9640797217259174], + [-65.7739740694323, 0.9591129923528652], + [-65.76702842169222, 0.9640886889924656], + [-65.76091480692018, 0.9810838046134734], + [-65.75063333321123, 0.9824469455761983], + [-65.73924839179976, 0.999628481934174], + [-65.72146627856505, 1.0016298963594403], + [-65.71202665483766, 0.9974814924450551], + [-65.70564050284213, 1.002998327163894], + [-65.69535717246522, 1.0040913053926175], + [-65.68841514719175, 0.9996689066499537], + [-65.6864707943064, 0.9908138467570535], + [-65.67841279258707, 0.9888327087761047], + [-65.66925198708334, 1.0023954763294844], + [-65.65258273152183, 1.0118076884936817], + [-65.62480236866294, 0.9890561825867358], + [-65.62702259051318, 1.0092984549201571], + [-65.61733026407829, 1.009848256177173], + [-65.61010470057317, 1.0142836604375336], + [-65.60649383593429, 1.0045256019173976], + [-65.59094082544719, 1.0022769403996563], + [-65.58538803382115, 1.0089716376017264], + [-65.57205126471992, 0.9850310860369182], + [-65.56705229883902, 0.9942522852836516], + [-65.55760735519006, 0.9933561049225994], + [-65.56121887762153, 0.9858524357392796], + [-65.55788706941644, 0.9759123487771015], + [-65.54174982198488, 0.9755610306145072], + [-65.53705631282573, 0.9611045884404731], + [-65.53069562609173, 0.9561384654754254], + [-65.5362217986134, 0.9480903247473383], + [-65.52430752723609, 0.9375226710373732], + [-65.5218028667541, 0.9293897534282761], + [-65.50819165147762, 0.9155713466878569], + [-65.51375084555826, 0.895504183139857], + [-65.51208366161629, 0.885289497358956], + [-65.49596977492043, 0.8893675352547735], + [-65.49347838557578, 0.8821383919617659], + [-65.50508545760307, 0.8685749479331677], + [-65.50008526375602, 0.8424524835411249], + [-65.5086943305961, 0.8435336409521287], + [-65.51424750994319, 0.8372030085368827], + [-65.52119112656236, 0.8401814048546675], + [-65.52758546122418, 0.8333071239025237], + [-65.52397545334738, 0.8246332435579846], + [-65.53091631538474, 0.8051961361342759], + [-65.54063878271243, 0.8051903033167254], + [-65.5395281916667, 0.7968756202276491], + [-65.54841445896962, 0.7746352820001075], + [-65.55619398182141, 0.7777029113173807], + [-65.5734167070777, 0.7644080367853485], + [-65.57563695066872, 0.744702518885427], + [-65.591198123728, 0.7216469235029654], + [-65.58480189873951, 0.7146907913107665], + [-65.57619844064777, 0.7116220815564135], + [-65.56397146395275, 0.6757475700342364], + [-65.55785775844252, 0.6699677517827926], + [-65.55342117902468, 0.6583098192902592], + [-65.54564199322675, 0.6555119062031318], + [-65.54045495110283, 0.6489412819106242], + [-65.53036471885463, 0.6679921590690511], + [-65.50035997307495, 0.6721654697526869], + [-65.49480377346389, 0.6783159297265586], + [-65.48452768559825, 0.6788620850252315], + [-65.48008207113287, 0.6869091797311698], + [-65.47203163384899, 0.6827564040537719], + [-65.45258925346717, 0.6854767901162995], + [-65.44286064983285, 0.6899113203793829], + [-65.43842258887491, 0.7002178346269489], + [-65.42341906865784, 0.7079995537642053], + [-65.42119880919061, 0.7321341102584594], + [-65.41036652225142, 0.7396439666015202], + [-65.41564206560179, 0.7476850412152136], + [-65.41369429086615, 0.7551894738423501], + [-65.39730292830707, 0.7499558823419054], + [-65.39536720923323, 0.7582730021013813], + [-65.39953144626881, 0.7671293158095236], + [-65.39480737657017, 0.7743623261590903], + [-65.400082592432, 0.781590998803291], + [-65.39647761819545, 0.7905432242426442], + [-65.41286231509285, 0.8157530619618553], + [-65.39785795642909, 0.8213671051838957], + [-65.39462698814788, 0.8352570158372417], + [-65.39147266155679, 0.844150247096485], + [-65.384525569093, 0.8491263900652157], + [-65.3767569324676, 0.8494016629542352], + [-65.37341370830651, 0.864681035238729], + [-65.3517511357525, 0.8730095707470208], + [-65.35619887045854, 0.8846698682981678], + [-65.34313717285023, 0.8935364074371224], + [-65.32897182143182, 0.9316029550209506], + [-65.32175387430452, 0.9279919927610021], + [-65.30258329958308, 0.9421957598227084], + [-65.27730650082889, 0.9382367353065925], + [-65.26980306313935, 0.943304656120076], + [-65.26396935175515, 0.9340856609681024], + [-65.26924687926278, 0.9268496996306778], + [-65.26342092421076, 0.9196219346137431], + [-65.25675354786594, 0.925231683054154], + [-65.24064142441084, 0.921082963054094], + [-65.22591744344543, 0.9274210089320896], + [-65.20870069232626, 0.9287871084840907], + [-65.2050880466588, 0.9171268634757347], + [-65.20731024696653, 0.9069090369377396], + [-65.19702643306536, 0.9108047129441409], + [-65.18231088914987, 0.9224760532761418], + [-65.16480934394669, 0.9505123727062263], + [-65.16146963670117, 0.9785409705260999], + [-65.15480324950762, 0.9868640494224427], + [-65.14711014437549, 1.009381614251672], + [-65.16669333530383, 1.0113573047169333], + [-65.16930654048957, 1.0184965072971561], + [-65.16689244814155, 1.0269964315644697], + [-65.15883791753316, 1.033420834403901], + [-65.15386060304297, 1.0563885280216474], + [-65.15399638320157, 1.0885724625478659], + [-65.15022137667106, 1.107381870982232], + [-65.15488966104009, 1.1250079875858228], + [-65.13869881624979, 1.1275531067723699], + [-65.12233249504904, 1.135157218319069], + [-65.1189684018489, 1.1464615094931911], + [-65.10291730400246, 1.15669137657361], + [-65.08799745032708, 1.146031414725122], + [-65.07853388574564, 1.1474869358850581], + [-65.07108079090918, 1.1534585595390172], + [-65.06072306335084, 1.137733947308114], + [-65.0658891890819, 1.1191043205391773], + [-65.06117056537958, 1.1117839002860033], + [-65.04561212530176, 1.1169487345727929], + [-65.02208238432502, 1.1149751980730758], + [-65.01622507926488, 1.1244747594455429], + [-65.00653016980165, 1.12891122714886], + [-64.99147170909613, 1.1505318317316082], + [-64.97008516433353, 1.1729701907661094], + [-64.96063720317588, 1.1897025091141573], + [-64.96119183692599, 1.1982937561277098], + [-64.96952662026511, 1.2171859173564905], + [-64.96063983252773, 1.2302134118469739], + [-64.95147154527189, 1.2315755355535531], + [-64.9456410749832, 1.2252503463443147], + [-64.94341709119487, 1.2157586555120123], + [-64.93508065489561, 1.2113319363255566], + [-64.92619805038971, 1.2146844503325984], + [-64.9142490171015, 1.2279870433590336], + [-64.90647018359002, 1.2416449223588806], + [-64.90703156397389, 1.2513194058576083], + [-64.89814181587033, 1.2526819658790207], + [-64.89091807949572, 1.2482580131446817], + [-64.88647107688351, 1.2318934102219892], + [-64.87841922905557, 1.2285540006869504], + [-64.86841442604293, 1.2319048649074638], + [-64.86869367527987, 1.2410389744867303], + [-64.8525878103169, 1.2635659928819916], + [-64.86147256905028, 1.2693469352796525], + [-64.82494791833975, 1.2951451083259153], + [-64.81035603452675, 1.3144169958626923], + [-64.80314359473194, 1.3105340192742985], + [-64.78897608590172, 1.285765285818958], + [-64.79425090741225, 1.2797031710393636], + [-64.79341681745461, 1.269393649614405], + [-64.7803606244695, 1.2582809814404021], + [-64.76369621572833, 1.2308023249431028], + [-64.7573092368805, 1.2262842619240384], + [-64.7464770263042, 1.225477665932515], + [-64.72230559488001, 1.2385139240813121], + [-64.7211917672148, 1.2471985163409696], + [-64.71425220071063, 1.2510915531513143], + [-64.70952855986907, 1.269362072187993], + [-64.70424790271447, 1.2760565485293267], + [-64.70174948143868, 1.2913413501711106], + [-64.68453062591361, 1.283846282091229], + [-64.676478468839, 1.2854794241847332], + [-64.6684177133585, 1.2919045772987539], + [-64.66008506431305, 1.2913684383385715], + [-64.64452754210532, 1.3049438406342413], + [-64.63480671519683, 1.3202338255665593], + [-64.62396982156986, 1.3241298373989614], + [-64.61119602408704, 1.3358053568977435], + [-64.59063600205559, 1.3374453125932104], + [-64.5759181583248, 1.3540957363938424], + [-64.58203314872179, 1.3590662363520543], + [-64.57980674460826, 1.367477225762012], + [-64.58258309746121, 1.375525001124049], + [-64.57369527725204, 1.3835795457171716], + [-64.55314247169353, 1.4168754232553282], + [-64.53036014576698, 1.4260252252934327], + [-64.52786563490096, 1.444115447380224], + [-64.52175146456165, 1.437698713656103], + [-64.5003609124294, 1.4426856488101467], + [-64.48703117582144, 1.4535480171965045], + [-64.47646930563606, 1.4680254991038426], + [-64.45341461626042, 1.480250434210962], + [-64.44924815454084, 1.4732908478611035], + [-64.4384220793871, 1.4718492493039612], + [-64.42452973078841, 1.4852435847889194], + [-64.42174755658007, 1.4935660519435818], + [-64.41063819706656, 1.5060556333965103], + [-64.40897805992235, 1.513834203995811], + [-64.39730492069067, 1.5268667476500908], + [-64.38341604965872, 1.5204535318919652], + [-64.37480535551117, 1.5238059174573695], + [-64.35119961161196, 1.5183027973246621], + [-64.34869507977403, 1.5021135887972072], + [-64.35702794427736, 1.4838408620249728], + [-64.37869857184991, 1.4635649415675835], + [-64.37453183554204, 1.4566015913668582], + [-64.3773070346173, 1.4482792015985069], + [-64.39730962863997, 1.424390745033715], + [-64.3934154818372, 1.4177010222427167], + [-64.39981038635135, 1.3949024961591399], + [-64.39341957047003, 1.3885773989847932], + [-64.37730831577431, 1.3865956981047598], + [-64.35925265829003, 1.3899516595806638], + [-64.34564122963528, 1.3660825735010715], + [-64.33786038805324, 1.3635530277144998], + [-64.33508720349121, 1.3707909583128708], + [-64.34174804446766, 1.3754909066127807], + [-64.34258552957039, 1.3843540932150018], + [-64.3373075788837, 1.3915940552974522], + [-64.32953162644645, 1.3949449956030906], + [-64.32592220704174, 1.4019102847284135], + [-64.3248122511589, 1.4107752707365528], + [-64.32897513356767, 1.4193652268686554], + [-64.32592301823394, 1.4360097772802076], + [-64.31786440845384, 1.4401746925763472], + [-64.31286676791247, 1.4479567537562121], + [-64.31286122405454, 1.4563669878490537], + [-64.30425464690042, 1.4605350201645504], + [-64.30203320183871, 1.4683130668148934], + [-64.27869961320208, 1.4785479631372112], + [-64.27564079535973, 1.4855144680047574], + [-64.26730863192194, 1.4847045767242], + [-64.26147404253368, 1.4999052573113199], + [-64.24008572181621, 1.5113135913272138], + [-64.22313688945025, 1.5071626470899604], + [-64.21536029003492, 1.508524140296851], + [-64.20596649921644, 1.5158635474101938], + [-64.19480699577446, 1.524906539382276], + [-64.19369513999366, 1.542726508822659], + [-64.1748064874328, 1.5629979891505639], + [-64.17369273551436, 1.5710494868404183], + [-64.1675828562425, 1.5760279340180388], + [-64.15980962614807, 1.5744041396779884], + [-64.14397609186516, 1.5824631540209841], + [-64.13536019396633, 1.5768589952573706], + [-64.12381457232468, 1.580421808876467], + [-64.11202926561315, 1.5893543532429366], + [-64.10730937620468, 1.607177101529484], + [-64.09508394497546, 1.6171345025594883], + [-64.08730846092858, 1.6402036015650137], + [-64.07536441845134, 1.6526930833159488], + [-64.06508692376813, 1.6760371009625337], + [-64.0664742605353, 1.6838152599417837], + [-64.06119543590268, 1.7016401881547645], + [-64.06675299873463, 1.7079664976230282], + [-64.07203363508496, 1.7257864143535055], + [-64.06619140291937, 1.7307622444119044], + [-64.06508079261292, 1.7398980660457177], + [-64.06869947203316, 1.747676607602683], + [-64.07647502759926, 1.751290096326729], + [-64.0778651754139, 1.7590694398269475], + [-64.06230491218082, 1.7896525625862325], + [-64.06175516327684, 1.8054818188385517], + [-64.05786122468841, 1.8129919969191834], + [-64.06258456071807, 1.8207700705717582], + [-64.05508999843647, 1.8254780918629818], + [-64.05592181515587, 1.8410364454751709], + [-64.06508380764008, 1.8446481954291596], + [-64.07091621734595, 1.8524247427359068], + [-64.06175090801639, 1.8827324149991675], + [-64.06397310530701, 1.8985619630971453], + [-64.06036048368452, 1.9138516347321464], + [-64.06175294821767, 1.9307652776339348], + [-64.04508247886815, 1.934123304576657], + [-64.04147624798843, 1.9427184551268537], + [-64.01897572453123, 1.951325424409029], + [-64.01786025915604, 1.958835157345173], + [-64.01119547090813, 1.9624578616876072], + [-64.00147315390852, 1.9749455647659617], + [-63.995362246896114, 1.9799246917117936], + [-63.987304492247794, 1.9791149058321509], + [-63.975361596551814, 1.9913329877607915], + [-63.96758759550779, 1.9882625052571536], + [-63.96119224980275, 1.9924270610337165], + [-63.9539770723405, 1.988269785888051], + [-63.938415402046296, 1.9893656752550597], + [-63.92258466703824, 1.9829506784239235], + [-63.90647581843715, 1.9915532647135983], + [-63.89841759161823, 1.9924627618208641], + [-63.89064281851294, 1.9893912416059851], + [-63.88758897114441, 1.9824289599751492], + [-63.853975540881954, 1.9785547537102215], + [-63.845916902849126, 1.9640844034605887], + [-63.82952764649782, 1.9682534846847295], + [-63.82369650521379, 1.9910542373895252], + [-63.79981021298657, 1.9874462145640899], + [-63.78480935106046, 1.9815731425083316], + [-63.77730556878578, 1.9851956676317597], + [-63.76869246568536, 1.9996743461469384], + [-63.76008172246575, 2.004111481516193], + [-63.75175429246019, 1.9960631230273063], + [-63.743141461463935, 1.998802159013411], + [-63.74035933507437, 1.9996867389737647], + [-63.74258745491746, 2.0085521981681103], + [-63.73897650832582, 2.016332499791481], + [-63.73091527417469, 2.0179643105297567], + [-63.728142805836896, 2.02628911124987], + [-63.70314062964168, 2.04629263319893], + [-63.69369659207575, 2.0410488847183554], + [-63.68841682277062, 2.031551355323061], + [-63.692034338675576, 2.023228638978284], + [-63.674808559038006, 2.02133410681307], + [-63.667861695113544, 2.0169062778280726], + [-63.662033194415926, 2.0235118509915555], + [-63.66064265799662, 2.033282550069852], + [-63.66480555124023, 2.0574333744666253], + [-63.66203379456156, 2.065488937114801], + [-63.65369661145861, 2.068023228510037], + [-63.644807517941956, 2.0649522805882556], + [-63.63789350720209, 2.069297101208668], + [-63.63036562075242, 2.0846798282272823], + [-63.62258842877624, 2.0891151132199863], + [-63.61841879196195, 2.096354598934207], + [-63.61730159299096, 2.106578146981729], + [-63.606476351662934, 2.10739511931401], + [-63.594250488689426, 2.1202466380895264], + [-63.58536509632883, 2.119617977271807], + [-63.56869430025247, 2.1246886612893086], + [-63.56174745231124, 2.1323809930875934], + [-63.53620099597873, 2.1310322522547973], + [-63.514249787776286, 2.1209985815009804], + [-63.50925196537144, 2.1135823589967746], + [-63.49230797623297, 2.1154869653387958], + [-63.47536036382161, 2.126619607283735], + [-63.47422552636054, 2.13792961098784], + [-63.466478549741026, 2.1410066162497277], + [-63.44397945523323, 2.1251817889314903], + [-63.43397249059639, 2.12636029176057], + [-63.42758955759629, 2.1352284547350475], + [-63.420923399931915, 2.1313394467170097], + [-63.40563955049553, 2.144371050643755], + [-63.397583483257954, 2.146906917759614], + [-63.39369848035423, 2.156858517677956], + [-63.39424693892541, 2.1657230344429146], + [-63.388701041847185, 2.183005872493209], + [-63.3950823668184, 2.188521972449848], + [-63.39508945603592, 2.1996509161686384], + [-63.37215100680862, 2.21176498244846], + [-63.371931490989304, 2.2118814718255013], + [-63.35963384048477, 2.197121166377833], + [-63.31063190300726, 2.1650229070389644], + [-63.28262772079102, 2.153899819269753], + [-63.273213896969516, 2.1553803214919816], + [-63.1939780122402, 2.1812302313151366], + [-63.16530432384091, 2.180330264699864], + [-63.15844357294709, 2.174303424028102], + [-63.14136013294734, 2.172462950601611], + [-63.13743387118124, 2.1610717715640635], + [-63.13840383402658, 2.1427871499115363], + [-63.13616752889467, 2.1372568532286746], + [-63.13602885176539, 2.1346493254550927], + [-63.11967801450808, 2.0964687098428207], + [-63.10708648855549, 2.0793602608079214], + [-63.085389220458815, 2.0614527365218764], + [-63.07711374409031, 2.046081810691371], + [-63.072663065978574, 2.0428567056111686], + [-63.0707098351364, 2.040001605411059], + [-63.06303076387778, 2.0358753049241574], + [-63.053414923868196, 2.0289049995372386], + [-63.02362333353595, 2.014694199710979], + [-62.980641972947836, 2.0177998789308615], + [-62.9483305179085, 2.031055125249182], + [-62.919670413279405, 2.0249997474459778], + [-62.83868179538893, 2.01648129933635], + [-62.82872493572041, 2.013325570754233], + [-62.81309494340111, 1.9916959309049083], + [-62.81207280613676, 1.9913349141732932], + [-62.81200219513544, 1.991241445173756], + [-62.742322642504895, 1.9667023121377574], + [-62.719503828547495, 1.9534505574190468], + [-62.71024430154503, 1.9441274232405363], + [-62.70504972410659, 1.9365764661601546], + [-62.698580264106, 1.9119686290941686], + [-62.70403038077896, 1.8739569966940999], + [-62.73092374099332, 1.8182429637786717], + [-62.72358388719102, 1.712409242972535], + [-62.73334371372, 1.6951132671688016], + [-62.755999408965, 1.6757658329036882], + [-62.76573580615563, 1.671319551663589], + [-62.77334936058828, 1.6563221955289213], + [-62.79617911628009, 1.6306946740426846], + [-62.806551338466726, 1.604117756414522], + [-62.80513426194066, 1.591357383654936], + [-62.80121161571599, 1.5867192466036304], + [-62.78163636920135, 1.5725266380111145], + [-62.756647316323885, 1.5476389636506138], + [-62.7496376384331, 1.5359827431124835], + [-62.73944766588737, 1.532159697581797], + [-62.73620231716234, 1.5296403459240373], + [-62.73065372883409, 1.4996427030966113], + [-62.72062874199797, 1.4885552548667629], + [-62.698438973012806, 1.4754492662080845], + [-62.67675760317317, 1.454640842293566], + [-62.6564932196349, 1.4485343629597167], + [-62.639819274040974, 1.438247722986838], + [-62.62010765036022, 1.403792447358116], + [-62.62037225608279, 1.3943658255544407], + [-62.626202048127205, 1.3852088582778863], + [-62.62037628583259, 1.3627025567651558], + [-62.61064769781286, 1.352658385843395], + [-62.602053018463536, 1.3257811623940825], + [-62.59971089028504, 1.3081781195288413], + [-62.58953926147799, 1.2667878190963404], + [-62.58102431262092, 1.2411365277886257], + [-62.554550383900356, 1.1749123943509125], + [-62.54696512422566, 1.1299169785353957], + [-62.54570897684724, 1.123763858582213], + [-62.529526684223505, 1.088826335916094], + [-62.520945654008514, 1.0838237503982042], + [-62.48981687945593, 1.0846644284772904], + [-62.48009360412081, 1.088823193399895], + [-62.47147913018629, 1.0862888313674868], + [-62.470369052269, 1.0774226060645868], + [-62.47814192419258, 1.0566117254683571], + [-62.47896743793442, 1.047943436750218], + [-62.47428455213577, 1.0402272948593319], + [-62.477588691760225, 1.027955560846176], + [-62.47455445612187, 1.0163069919815317], + [-62.46148950492137, 0.994918140045049], + [-62.44982993628621, 0.9837941069449981], + [-62.44344346605937, 0.9682486338321284], + [-62.44338797203447, 0.9676100294980554], + [-62.442594679141955, 0.9585407679414276], + [-62.448154571042245, 0.9432521554240084], + [-62.47091303277412, 0.9171360609629434], + [-62.485933221028255, 0.8665411415351175], + [-62.48090970333368, 0.84267962568494], + [-62.46593365077319, 0.8290844032093945], + [-62.45759521502014, 0.7852049820254053], + [-62.46288618510287, 0.7768759661046082], + [-62.487853298237845, 0.7582325958992633], + [-62.50035412882925, 0.7479559868143701], + [-62.52843816273235, 0.7102004951656261], + [-62.52989474266279, 0.7059655581525601], + [-62.5352567536929, 0.69037031089022], + [-62.538150489695646, 0.6752037092588682], + [-62.51815833685378, 0.5838248645778363], + [-62.52760027831052, 0.5465544905416735], + [-62.532869590688875, 0.5088164575119438], + [-62.522825839576875, 0.48557487471389293], + [-62.5185227857846, 0.44370881050717625], + [-62.50909399144277, 0.43989218627312276], + [-62.48510771511634, 0.4540879495296067], + [-62.46759435906111, 0.42604027707784253], + [-62.4584304101092, 0.41769859212354404], + [-62.45593552361768, 0.39241815671017927], + [-62.44623389679074, 0.3791208266788122], + [-62.45287165125787, 0.3735403767247764], + [-62.45176779069914, 0.3651941503067971], + [-62.46093626626294, 0.3526753411394778], + [-62.46675176254226, 0.3329759554525521], + [-62.45844769352617, 0.3135012598496445], + [-62.46815339540597, 0.27576111768292183], + [-62.45427813214009, 0.24356006634046803], + [-62.45260710696274, 0.20742127781577102], + [-62.438423493118904, 0.19490240674469433], + [-62.4284395110595, 0.17354089173962028], + [-62.42398984271812, 0.15325691324102145], + [-62.42404769532226, 0.14951551810822528], + [-62.42316464997453, 0.1446821096814776], + [-62.42419864528861, 0.13980417817718832], + [-62.42427070450946, 0.13520214169909864], + [-62.42871109348538, 0.11853018333098164], + [-62.42426181028139, 0.091579655348633], + [-62.41483137312052, 0.07438553140514362], + [-62.39065631477068, 0.05964855502477494], + [-62.37064121210102, 0.054102078442688085], + [-62.3615047596287, 0.04075043719180242], + [-62.34650834860897, 0.029613183154849], + [-62.32260784042229, -0.024238424286372524], + [-62.32621958625982, -0.03146057561049291], + [-62.321773577749305, -0.038120596311890804], + [-62.32311951297317, -0.060859906530457614], + [-62.323187068827174, -0.06199727064452209], + [-62.332072021680126, -0.06060966660436159], + [-62.33013308211109, -0.06893030654524736], + [-62.322075500300095, -0.07032063256305329], + [-62.31780060503315, -0.08451510667056907], + [-62.31960247737723, -0.10251868400207276], + [-62.29380078656929, -0.12833906640299617], + [-62.29046287973626, -0.13944549353923563], + [-62.2679624462741, -0.16387881099245796], + [-62.25851996936647, -0.16527006030090277], + [-62.244906527787215, -0.1747113776562864], + [-62.24185540501087, -0.18165743172631388], + [-62.24685485509459, -0.18998970208611093], + [-62.245186039938254, -0.21165142339918777], + [-62.25323845334036, -0.21971213266830722], + [-62.252961694207606, -0.23665689344929092], + [-62.24685468292139, -0.25220828630977754], + [-62.238248260005605, -0.2527678469316202], + [-62.24157816523402, -0.2608220534189041], + [-62.253522129043404, -0.2713754075015491], + [-62.25407681562786, -0.27970768121808876], + [-62.24542771876694, -0.29445158280021544], + [-62.248244203068985, -0.3019283928889836], + [-62.23935822431445, -0.30803947394888215], + [-62.23574342615454, -0.31720774335603885], + [-62.22630205423566, -0.31720726694764523], + [-62.21963166393027, -0.3110972984921291], + [-62.18824220279417, -0.3308165592955801], + [-62.19380038696393, -0.3386024804824466], + [-62.195188635888044, -0.3644363316302622], + [-62.203798187252005, -0.3683222703095883], + [-62.206302700694245, -0.37693108959859206], + [-62.20213206316802, -0.39303948309134923], + [-62.217132467768764, -0.39943538173514026], + [-62.21268666385518, -0.40831850045080925], + [-62.22158039243008, -0.4094273270353602], + [-62.2271304590713, -0.4258213057751073], + [-62.24324450496125, -0.43221342348524766], + [-62.24852597615071, -0.43970715608163846], + [-62.27380441662684, -0.45415173164255623], + [-62.277965878501114, -0.46526514439393474], + [-62.270741397104516, -0.4705424354987967], + [-62.274911292318265, -0.4786038865118663], + [-62.284358690235564, -0.4774907425260225], + [-62.290188957406, -0.48415189391520036], + [-62.28630186390273, -0.49360018294002256], + [-62.294629527074065, -0.5077654781755914], + [-62.30268875048901, -0.5085963124901312], + [-62.30907332291953, -0.5141543388885261], + [-62.303800456714924, -0.5347074899982376], + [-62.31157586119583, -0.5374898963084666], + [-62.309359299495995, -0.546380161516854], + [-62.318244436928936, -0.5524896931412939], + [-62.30824915119941, -0.5674843686521786], + [-62.309636902039344, -0.5833220680661676], + [-62.30241180850852, -0.5872095303770715], + [-62.290746795021604, -0.6022090933171607], + [-62.291855609794325, -0.6105482283207943], + [-62.30019192318356, -0.6108226042448401], + [-62.301582108486926, -0.6191521248106354], + [-62.29351961683137, -0.622772253354486], + [-62.28740774405851, -0.6383271433479638], + [-62.296298227488116, -0.6522128091222545], + [-62.30407952472211, -0.6541598078548095], + [-62.30907749944579, -0.6608274720294245], + [-62.31796465688228, -0.6616510750163672], + [-62.3265792621609, -0.6563766108957975], + [-62.33185349941492, -0.6622120667198546], + [-62.33324261332838, -0.6708181397475919], + [-62.34121990063892, -0.6759059379018147], + [-62.348723028261546, -0.6706306471127945], + [-62.35371818534528, -0.6770208196778802], + [-62.37066190567309, -0.6767410244283297], + [-62.3726085682157, -0.6864645547739828], + [-62.369272442886995, -0.6953545122097881], + [-62.36122323351793, -0.699522371501916], + [-62.35872123800329, -0.7070153133474604], + [-62.36705473947058, -0.7100702384572517], + [-62.38204972547823, -0.7061867393917708], + [-62.390381940387954, -0.7095179291514808], + [-62.392603089633155, -0.7195176591415836], + [-62.406776021457944, -0.7272931405294816], + [-62.41038316732051, -0.710349409468317], + [-62.416775983187634, -0.7034050721933], + [-62.42538539931555, -0.7000704224040447], + [-62.42844579604753, -0.6928515229228165], + [-62.45566508252938, -0.6920166542825061], + [-62.46371656987527, -0.6881288885614503], + [-62.46954756902675, -0.6939589487406103], + [-62.48649559119937, -0.6814601704572942], + [-62.49288401071265, -0.6875752036695642], + [-62.49538413864094, -0.7039575437716878], + [-62.50816006751334, -0.7142418342145065], + [-62.50593734275522, -0.7309095793307225], + [-62.498718357058024, -0.7339644426820461], + [-62.494825428217354, -0.7506270042257335], + [-62.51010628574609, -0.7589612144080425], + [-62.504270981698376, -0.7656283365678807], + [-62.500941914096565, -0.7814588868038401], + [-62.480666916381075, -0.7950704819106529], + [-62.465381661979976, -0.788964378990729], + [-62.46149901018062, -0.8017384568754372], + [-62.45316738817817, -0.803964368514421], + [-62.44816883325523, -0.8100677299532165], + [-62.44260717523974, -0.8020198947504007], + [-62.43316004275015, -0.8039619090719263], + [-62.42816341365403, -0.8122922893142781], + [-62.39566716664435, -0.8203505497046973], + [-62.39399817665304, -0.8289620402849855], + [-62.37593736326955, -0.8364633940320637], + [-62.38038203223159, -0.8436833982352292], + [-62.3734391741797, -0.848682133522848], + [-62.36983355007898, -0.8592400930931603], + [-62.37621772134468, -0.8661863534808827], + [-62.3664946818928, -0.8692419989743726], + [-62.36483262297037, -0.8772986543053918], + [-62.356499326783585, -0.8750713408713099], + [-62.340107345309555, -0.904236357587414], + [-62.32844523328234, -0.915628711945315], + [-62.317049972448565, -0.9142403515779304], + [-62.31261353042, -0.9303497531695734], + [-62.29816487358574, -0.9409107708585619], + [-62.29371871895291, -0.948124680391183], + [-62.285944496661145, -0.9439647533149423], + [-62.272056935891875, -0.9520168732072667], + [-62.2589960682695, -0.9759101452687181], + [-62.22732714600359, -0.9734367502307912], + [-62.213439038379306, -0.9836838738517265], + [-62.203724808329554, -0.9828484342814091], + [-62.199833066700656, -1.0003491478858688], + [-62.171780362203286, -1.005908539185723], + [-62.16816263624191, -1.0142449011113233], + [-62.15483208110687, -1.026185288720834], + [-62.14538691487399, -1.028410812345433], + [-62.14288237546445, -1.0372992031071717], + [-62.12539028732357, -1.0372984981176527], + [-62.11122037437321, -1.0603576894479574], + [-62.11816412065431, -1.0764643409560213], + [-62.11455106202259, -1.0834029571409227], + [-62.10538677568325, -1.0864636319279026], + [-62.09955556211846, -1.096740190595661], + [-62.08788531793077, -1.1000766413361909], + [-62.07149931964376, -1.0975779778557258], + [-62.062053346015034, -1.0997964106984235], + [-62.017335247627535, -1.1417416686169808], + [-61.989276051297864, -1.2017405548824434], + [-61.98789251691217, -1.2167389571864446], + [-61.96678090895843, -1.2428560852056516], + [-61.95678043964683, -1.2659070106815646], + [-61.94983263308759, -1.297018818924079], + [-61.94539140508792, -1.3047985275367153], + [-61.92733507118125, -1.3206304209382487], + [-61.90900599210971, -1.3486838337150393], + [-61.90585720547637, -1.3716290036816388], + [-61.90538827274915, -1.3795224834308055], + [-61.89650126513681, -1.39535319358086], + [-61.86927689707109, -1.4017441173060763], + [-61.840449875760505, -1.4005147749211135], + [-61.81706187119781, -1.3995167811576237], + [-61.79788753029878, -1.380629715769021], + [-61.79009055129648, -1.3789671295473878], + [-61.76956279709751, -1.382855090359483], + [-61.74066770035924, -1.3920184321729172], + [-61.72311149407548, -1.4057203180766435], + [-61.68721151894805, -1.4201662873636982], + [-61.6748168556279, -1.424357249860882], + [-61.635394416688946, -1.4339654346494224], + [-61.6048338361767, -1.4481329890712613], + [-61.5720580761146, -1.478131830503934], + [-61.55956250494267, -1.4950746986972983], + [-61.544562838914835, -1.5256287470412362], + [-61.49094388850633, -1.5748033693541], + [-61.4826181866098, -1.5806356744585592], + [-61.4745593443452, -1.578969941393155], + [-61.4753927758494, -1.5531314385886292], + [-61.47038882823191, -1.5459127416563374], + [-61.469839400136465, -1.5381303898308523], + [-61.47317250552782, -1.5278524375317342], + [-61.4812281721706, -1.5178524170383234], + [-61.51636330961277, -1.502432649914154], + [-61.532898292445296, -1.4650755070498946], + [-61.539277935757575, -1.4439669229975103], + [-61.53817459449307, -1.4334063740405592], + [-61.54789446414724, -1.429520112332388], + [-61.573722658680325, -1.428690973061042], + [-61.58178576212546, -1.4095237664328677], + [-61.59428139173905, -1.4056372863134476], + [-61.60289435075085, -1.4073044080576822], + [-61.61456051979769, -1.4025772510727126], + [-61.61900120248706, -1.3947991060372311], + [-61.5998363825246, -1.3675798352016848], + [-61.587614542335196, -1.3614696822481978], + [-61.58205498571753, -1.3534090602481683], + [-61.58538775871803, -1.338686734525348], + [-61.60569560817311, -1.3157667955006993], + [-61.61150485829982, -1.30813584751108], + [-61.62872862646188, -1.3014691682350827], + [-61.62678132190436, -1.2939714627630614], + [-61.60761582429216, -1.278133723014166], + [-61.606778899446084, -1.2445186157158077], + [-61.595665846632656, -1.2234116164695141], + [-61.588172780546515, -1.1972992509955531], + [-61.582615622178984, -1.1895234124634844], + [-61.57372633065572, -1.1847955581105398], + [-61.58205251873558, -1.1645214660097953], + [-61.57871952928301, -1.1509129286966606], + [-61.568997622122836, -1.1406362123400005], + [-61.56650475991538, -1.1325823111537805], + [-61.570948341662046, -1.1203604392487865], + [-61.57789203913755, -1.113133870433213], + [-61.574556210102024, -1.104804226634307], + [-61.56622359000997, -1.0998050629365486], + [-61.57817148812103, -1.0884154210872712], + [-61.57650433194487, -1.079249493231016], + [-61.567615712882294, -1.0745282664951923], + [-61.54650333432106, -1.0711898410552116], + [-61.54400085843138, -1.0623031371995861], + [-61.54344260752264, -1.0353622598481045], + [-61.547887069741755, -1.0231380806317747], + [-61.5601122837125, -1.0100828661113055], + [-61.562892905969164, -1.0003591081759002], + [-61.56060959464714, -0.9880534346517948], + [-61.57594532540621, -0.9881349763614454], + [-61.58344365321702, -0.9825767673573081], + [-61.57955565057288, -0.9559136554718818], + [-61.585113336673395, -0.9370218195135039], + [-61.5801126535525, -0.9303539307422123], + [-61.5784424701863, -0.9100774008281249], + [-61.5587245930553, -0.8931379166011704], + [-61.55817049747594, -0.8639752765973896], + [-61.5434494253688, -0.8523037422050401], + [-61.54344107411898, -0.8434180541041942], + [-61.54983048197552, -0.83921073449884], + [-61.55289236879533, -0.8109165876732151], + [-61.5517973143596, -0.8061446019473767], + [-61.552058686346356, -0.8017457303174734], + [-61.54617166694928, -0.781636381116071], + [-61.5420538724989, -0.7636939296104501], + [-61.5402024862089, -0.7612442119301233], + [-61.53872571082972, -0.7561973824519123], + [-61.5350797375686, -0.7544643967434712], + [-61.53260710392002, -0.7511926213005216], + [-61.51650026450581, -0.7456346135480846], + [-61.48483522739878, -0.7206367327021489], + [-61.474833000723685, -0.7025831387504378], + [-61.47288869888798, -0.6836911389457693], + [-61.46455152633021, -0.664800617830403], + [-61.456777018921905, -0.6570270462511923], + [-61.43511223493019, -0.6584154129282287], + [-61.42649801756757, -0.6531381678996746], + [-61.43066881780653, -0.6431391636601977], + [-61.428724454257114, -0.6342468195184114], + [-61.407052824863165, -0.6314691876761518], + [-61.390384780820376, -0.6175827400328279], + [-61.36650258259015, -0.6070316709776168], + [-61.35677875592518, -0.5984174404333293], + [-61.347054055590874, -0.5950831474146355], + [-61.32594725449392, -0.5978660494432638], + [-61.2981686270052, -0.5761938997963404], + [-61.28566877701483, -0.5739763034119535], + [-61.28359504788437, -0.5744239111984779], + [-61.27538635152095, -0.5761963232684149], + [-61.23094823173808, -0.5639781039736216], + [-61.223997554568996, -0.5595286524961608], + [-61.223999941139866, -0.5392512271922473], + [-61.216221104681296, -0.5331397800449809], + [-61.22316808983516, -0.5192537905072666], + [-61.222893085876514, -0.5056418878352033], + [-61.21677728971964, -0.5000851744586288], + [-61.20871762118642, -0.4986953372429871], + [-61.19843956799943, -0.5059214000824984], + [-61.173442912492085, -0.5081449875891074], + [-61.16396025566325, -0.512410638975046], + [-61.15746221409404, -0.5153342589134968], + [-61.1551118118715, -0.5053676257945683], + [-61.148717882515086, -0.4992539781920523], + [-61.128998337804035, -0.49758850712753727], + [-61.11955825633833, -0.49980548739238007], + [-61.11233479298633, -0.5073067526330572], + [-61.09649928317518, -0.4995336117240922], + [-61.08733678638774, -0.5000937299943038], + [-61.06372550403476, -0.5131412892309891], + [-61.05511056483035, -0.538696996597644], + [-61.04594774657806, -0.5459238902981634], + [-61.033725693296844, -0.548981947069005], + [-61.02511272976227, -0.543973797117817], + [-61.00039084518085, -0.5598108427474578], + [-60.97539391882744, -0.5625886501166583], + [-60.9581707455989, -0.5603642200793454], + [-60.95316631861073, -0.5545350627369063], + [-60.9464992660549, -0.5595343216834494], + [-60.93566580285403, -0.5600948716482859], + [-60.93011674410976, -0.5548127931476422], + [-60.92066764126378, -0.5553724879259857], + [-60.91233404346747, -0.5812037293561442], + [-60.915947079197814, -0.5898099329622423], + [-60.91622374650858, -0.6103697637210626], + [-60.90872151846672, -0.6159171050625802], + [-60.90816608525103, -0.6239827711651296], + [-60.882616278683095, -0.6492559268533467], + [-60.860946362728754, -0.6423089897242505], + [-60.85455838992505, -0.6478675504169954], + [-60.849284682282644, -0.6542588806588794], + [-60.84733871375108, -0.6639769924293385], + [-60.85178102630003, -0.6748085250988459], + [-60.84317202371203, -0.6906439168359674], + [-60.81205431888186, -0.6920367864331406], + [-60.79761138491437, -0.7009200811505057], + [-60.79788785610779, -0.7112027542655001], + [-60.79531532717624, -0.715141654447433], + [-60.793170083151644, -0.7284247065544764], + [-60.799559076585396, -0.7359232202599528], + [-60.79705723069352, -0.744809259509225], + [-60.788720218554104, -0.7448132083891688], + [-60.780947104738324, -0.7487056730260948], + [-60.77705975669791, -0.7562014211369582], + [-60.76872910414305, -0.7545351245012846], + [-60.760950930549924, -0.7614804359762236], + [-60.7665024698545, -0.7781415584235079], + [-60.77316537963484, -0.7823139331358534], + [-60.7737296212738, -0.7911965459463928], + [-60.75650476226581, -0.795643367370145], + [-60.75899787722672, -0.8098118467465363], + [-60.75316695743835, -0.8198101760514616], + [-60.75928219425298, -0.8286988616822951], + [-60.75451438384168, -0.8422951025233973], + [-60.75180923569657, -0.8500117353812391], + [-60.75260873931298, -0.8611951557873109], + [-60.73233748417515, -0.8584218566987671], + [-60.71705818238882, -0.8700889769236263], + [-60.70761695264769, -0.8656410412308849], + [-60.67567508251139, -0.873424303172102], + [-60.669835293985564, -0.8784190763521421], + [-60.672619368121474, -0.8878644392632775], + [-60.667895872497965, -0.8945299097339355], + [-60.65456078376218, -0.8831444086917825], + [-60.635951207939414, -0.8761980325661637], + [-60.63372740073233, -0.868421743029644], + [-60.62400474485504, -0.8714761279158196], + [-60.620396105363035, -0.8634235658268352], + [-60.609562712580626, -0.8642600212855286], + [-60.59428577771642, -0.8723101541742948], + [-60.591225400961875, -0.853420708263948], + [-60.55789593938987, -0.8600905648455446], + [-60.55761626102724, -0.8698140263107521], + [-60.54761636721497, -0.8689770496460186], + [-60.54095226224038, -0.8753687350750318], + [-60.53095242059683, -0.8750897611688768], + [-60.50455779714823, -0.8492561307215477], + [-60.50317110299605, -0.8414753009659927], + [-60.519841588138156, -0.8337030224527148], + [-60.50650717995075, -0.8214790582091523], + [-60.49872838187533, -0.8223175641470032], + [-60.493725178635486, -0.8123131093508528], + [-60.4956717091449, -0.8042588993568358], + [-60.492058164608146, -0.7967625884959296], + [-60.497893586743935, -0.7895370578536766], + [-60.49400171597201, -0.7825883328145904], + [-60.47900762533026, -0.7709300643392712], + [-60.467056965366794, -0.7689795096027727], + [-60.45789151462384, -0.7742603094376678], + [-60.43455955916558, -0.7725975554573841], + [-60.427058750343775, -0.7784234286382242], + [-60.4215058651545, -0.7731467690265534], + [-60.41900306906855, -0.764261624665586], + [-60.40094632612431, -0.7575923798794093], + [-60.38317229796354, -0.7598135479710698], + [-60.37734218425775, -0.7428706297913996], + [-60.35344383916547, -0.7425898332814524], + [-60.34594892311734, -0.7459281073543333], + [-60.34122873375289, -0.7389870302277207], + [-60.317059305689725, -0.7228771487613461], + [-60.309559624955625, -0.7248175565674689], + [-60.30351732063059, -0.7112842265946261], + [-60.30317562188196, -0.7070940591772418], + [-60.30456089083152, -0.701759046621964], + [-60.302062130235356, -0.6934287891766249], + [-60.308721476544676, -0.6898162234683379], + [-60.30372464964937, -0.6739844279460558], + [-60.314558262725264, -0.6600988665877036], + [-60.31344793447127, -0.6414836904103377], + [-60.31983973104404, -0.6370434321839826], + [-60.327614682998416, -0.6403694385435971], + [-60.34066879300212, -0.6256456457287934], + [-60.350949232813214, -0.6223173888677737], + [-60.35789139045837, -0.6053738009665244], + [-60.3651152661005, -0.5970433940377425], + [-60.36567101076384, -0.588152869501268], + [-60.38317232114855, -0.5900910725272581], + [-60.38789594849823, -0.5814846042513457], + [-60.37928497705139, -0.5764892393263057], + [-60.38233740397801, -0.5575930530723903], + [-60.394837050629114, -0.5534263040690357], + [-60.39789238893514, -0.5459275844857862], + [-60.399839931483996, -0.5100996357129833], + [-60.39094933986374, -0.5031514237605472], + [-60.39097571032339, -0.49423589716678906], + [-60.38292222919395, -0.4792345394836355], + [-60.38236512851771, -0.47034637809223695], + [-60.34458172672874, -0.44062759172800353], + [-60.34180709634898, -0.4303555110072155], + [-60.345698759739186, -0.4206368983574068], + [-60.3443083707394, -0.41313109023677574], + [-60.34986531136601, -0.40729959327214643], + [-60.34316749807638, -0.40175291319417583], + [-60.335949510440734, -0.3853629348268184], + [-60.322055614843784, -0.3775874939829369], + [-60.32205819678398, -0.3686986687858983], + [-60.31705738351625, -0.35870506228505983], + [-60.32149889665603, -0.3375966972384407], + [-60.318449097222725, -0.3306504813516871], + [-60.30206118653431, -0.32815227278676296], + [-60.30289090376763, -0.3039895041397967], + [-60.28983297141396, -0.29315545249133873], + [-60.29539119500709, -0.2856535940380383], + [-60.295758390203005, -0.28196608037826715], + [-60.29953379840325, -0.27483662842838597], + [-60.302892184696745, -0.27231881718921563], + [-60.30483765415667, -0.26482104038741167], + [-60.299281724046224, -0.256211579184856], + [-60.29149778145883, -0.22926430609109077], + [-60.299278733159646, -0.2117565370206403], + [-60.29344710862539, -0.2056472919840036], + [-60.285668810344276, -0.2106475564996636], + [-60.275946738968514, -0.20258810545530612], + [-60.26428259963743, -0.18953088083139658], + [-60.26594953363029, -0.17841826156559168], + [-60.2581693519366, -0.17342183141902193], + [-60.24928469606252, -0.17508889140565417], + [-60.24983900664638, -0.16703380599806653], + [-60.23261038977348, -0.14648803883083708], + [-60.22428293830524, -0.14287636124262504], + [-60.22039215088752, -0.13537771937081178], + [-60.227334409973714, -0.1287141020302105], + [-60.22509004352784, -0.11955000586795006], + [-60.23039254168016, -0.11037876856839793], + [-60.22872071465768, -0.10120194493171193], + [-60.22209784963276, -0.08307792967813149], + [-60.20613996479281, -0.06155447817107208], + [-60.203163961820295, -0.03361197566989745], + [-60.181552298866855, -0.009946597079125923], + [-60.18506186595546, -0.00036665374207035475], + [-60.170900027882745, 0.00018433666649075436], + [-60.160600214289396, 0.01625626039005249], + [-60.138452895903754, 0.02874527936814158], + [-60.14311113163986, 0.037392350341473014], + [-60.14031635323162, 0.04740746081151055], + [-60.13453094850925, 0.05402316537763475], + [-60.13644108960751, 0.06545062084652226], + [-60.12340959189588, 0.08103065943026647], + [-60.12786272646143, 0.08824514125028318], + [-60.136157599353005, 0.09295465690658229], + [-60.13783109336175, 0.10267085456258593], + [-60.120335427308696, 0.1235103290262304], + [-60.11615876726083, 0.13321191653531964], + [-60.086717203669664, 0.14265478225061387], + [-60.07313396963344, 0.14989203182743546], + [-60.05896952126617, 0.16297438265535125], + [-60.04671714305451, 0.23210996681642954], + [-60.03785505511227, 0.26352130247245126], + [-59.95279511618496, 0.26352166510432073], + [-59.433446005614435, 0.26350835716322535], + [-59.19217214433418, 0.2634951987527213], + [-58.89536245905471, 0.263471769672714], + [-58.894934394969454, -0.010999251587000894], + [-58.8975297569303, -0.017306540748317292], + [-58.886622287925086, -0.03435781177171338], + [-58.88648034312697, -0.05922004048139271], + [-58.880463967905484, -0.06453787525884545], + [-58.87198392697824, -0.06452886804310311], + [-58.86378292104791, -0.07806601593095422], + [-58.86671031594477, -0.13791713008142217], + [-58.8630475566972, -0.1448059099111089], + [-58.86299554584436, -0.16097161599660087], + [-58.88093717802497, -0.1966145106592278], + [-58.8792138365712, -0.2293718529562981], + [-58.87166159749168, -0.26112158079667014], + [-58.8652942661833, -0.2655836366284917], + [-58.86544052196195, -0.2741277561328891], + [-58.87060044178528, -0.2806044203857092], + [-58.8748829809678, -0.29585790511431614], + [-58.87196964735053, -0.3430256554979112], + [-58.846485825632605, -0.3650992050870684], + [-58.82390851268366, -0.37400415458551206], + [-58.817718558758386, -0.37964617232139175], + [-58.802032928381735, -0.38141598253495895], + [-58.79797098735762, -0.3883420933881177], + [-58.79074048321691, -0.38542641009252443], + [-58.782033635128904, -0.38977431175108546], + [-58.76594495808233, -0.4090761701795466], + [-58.74392826426055, -0.4174756503719881], + [-58.736918773553924, -0.43246167380427575], + [-58.72966650829151, -0.43532151556361315], + [-58.72512171660699, -0.44225615933736445], + [-58.73528231831573, -0.4715506389674419], + [-58.722818573093825, -0.5021064245110148], + [-58.71662373238643, -0.5072564381808009], + [-58.71065036243011, -0.5215022759460581], + [-58.71006144957616, -0.5385931587925783], + [-58.710841559494355, -0.5471188273571139], + [-58.72147513282298, -0.5593110291881142], + [-58.729086469509255, -0.562158245470709], + [-58.73195026066896, -0.5773071540396246], + [-58.728037427283006, -0.5842403657791727], + [-58.72708834986852, -0.6078726607084337], + [-58.73390124281216, -0.6116627523686741], + [-58.7319029378068, -0.6273935169420398], + [-58.71853651273787, -0.637643482414862], + [-58.71685967517589, -0.6458972538248033], + [-58.70952062660773, -0.6484872743467217], + [-58.70384303182357, -0.671420976355775], + [-58.70508292109325, -0.6790051560785195], + [-58.68350396328546, -0.6872600540051064], + [-58.666424007945736, -0.7053779992835253], + [-58.66394060687377, -0.7131349071756263], + [-58.65660925252661, -0.7161106243054074], + [-58.63667980348694, -0.718084390500397], + [-58.632303307457974, -0.7229167743179912], + [-58.6136731995158, -0.7554809360189532], + [-58.60020887591794, -0.7645999196050016], + [-58.59253912036731, -0.7652473532853986], + [-58.5907883241909, -0.7737697701563397], + [-58.571307073157335, -0.7857148735732223], + [-58.567840675527734, -0.7927358326075639], + [-58.56123213377027, -0.7968621018345379], + [-58.560549007925744, -0.8046481317911217], + [-58.5205578428538, -0.8279880226013251], + [-58.51922998767768, -0.8358401745817422], + [-58.51215242277416, -0.8398107133753075], + [-58.50828096731192, -0.8333411632170928], + [-58.50090137607209, -0.8364023900044364], + [-58.49187707882377, -0.8318247251664513], + [-58.49370826113992, -0.8461495130753037], + [-58.48745230596926, -0.8597598814295204], + [-58.479961185341146, -0.8596100924937047], + [-58.476085862575886, -0.8676181411182319], + [-58.468108199696, -0.87314278522258], + [-58.466973850652536, -0.8642912794498805], + [-58.4589480329976, -0.864027621197679], + [-58.43595725294744, -0.8834996738024176], + [-58.433794156185776, -0.8920075140389534], + [-58.452982913981536, -0.898228745101775], + [-58.448455705819484, -0.9070098661691434], + [-58.450736214328906, -0.926116089435473], + [-58.429924374994876, -0.9518854663008847], + [-58.42751275634676, -0.9628779535820365], + [-58.41466787006894, -0.9670866369386037], + [-58.4150941225952, -0.9749792887792933], + [-58.41065428605048, -0.981341969982951], + [-58.42339951319103, -0.9914695433944596], + [-58.42495749905386, -1.0002604017700658], + [-58.41939964856321, -1.0102033963217492], + [-58.42998773237302, -1.0271497991908993], + [-58.411595885473346, -1.044272105004762], + [-58.406244400656064, -1.038923702004937], + [-58.39977006009028, -1.0440462781523483], + [-58.392599929607464, -1.0398562947055379], + [-58.38859319699805, -1.0504551040361803], + [-58.368399742637614, -1.0660573590496472], + [-58.36273422028399, -1.0938288979798456], + [-58.355651575498484, -1.0969421677303548], + [-58.361233155182, -1.1051316296375344], + [-58.352098944117515, -1.1122860639922745], + [-58.34432162865782, -1.1085472282334676], + [-58.33617315371037, -1.1237089119843273], + [-58.31979262179521, -1.1344240371696364], + [-58.32319411908865, -1.1433275912550402], + [-58.27373409359994, -1.1390446079344625], + [-58.268255456378796, -1.1319444617556889], + [-58.254676754608205, -1.1326238521066334], + [-58.24327444578406, -1.1566341613472806], + [-58.21518489474027, -1.1657134873342685], + [-58.1945177357897, -1.1997401676009996], + [-58.181040014415444, -1.2061296108721422], + [-58.16255262337506, -1.229690505636166], + [-58.15584923347169, -1.2259127454948462], + [-58.127734346522224, -1.1900549382527235], + [-58.11921111697168, -1.186405604676032], + [-58.123597008279134, -1.164628069245921], + [-58.094204038180024, -1.1605426414233266], + [-58.08187699098336, -1.147543913082317], + [-58.08415144330729, -1.1370226647851727], + [-58.08176740348463, -1.1265161815546245], + [-58.04215488947069, -1.1033770367678921], + [-58.03246034789229, -1.101387623600344], + [-58.017451490119505, -1.1061857663221986], + [-58.00967920954869, -1.1191177144212208], + [-58.015676796503556, -1.1291222003834431], + [-58.007065387094165, -1.145761568827222], + [-57.979091311357806, -1.1544383162530218], + [-57.97193455036586, -1.1626041246693748], + [-57.970816072865084, -1.1735600011866447], + [-57.97890263040762, -1.1931084126510596], + [-57.965398930383515, -1.2061195816793948], + [-57.964266745030805, -1.2232907976953775], + [-57.97448685422942, -1.2326690190905079], + [-57.99059640220046, -1.2920555417238344], + [-57.99076525557335, -1.3130855117337543], + [-57.99790248840298, -1.3204536131455988], + [-58.0008474529164, -1.3302100803179646], + [-57.996296766683905, -1.3443551571179386], + [-57.983985270791116, -1.3562353222385717], + [-57.970786574263585, -1.3591423620130891], + [-57.97645834600366, -1.3662763762145484], + [-57.97701108992733, -1.3750445879702775], + [-57.955405767521256, -1.3830922875678258], + [-57.96026207299892, -1.4016079413651876], + [-57.95165553566785, -1.4059035414862249], + [-57.93747138403761, -1.3983499709511154], + [-57.92058932727923, -1.4029049673200178], + [-57.910404542697265, -1.4102646279195814], + [-57.91843599985197, -1.419841802447099], + [-57.91026923113369, -1.4280977610535532], + [-57.90394602160919, -1.4260631851743553], + [-57.89412545575837, -1.4335660344905068], + [-57.879776577619914, -1.423300088029308], + [-57.864461044647285, -1.4254346700522242], + [-57.84623286453531, -1.4295447948804727], + [-57.841703785469676, -1.4364236015173772], + [-57.823950545490305, -1.4397922653745343], + [-57.82105893833131, -1.4505575738867358], + [-57.812593692580414, -1.4524226846765553], + [-57.80976612841757, -1.4701704629489571], + [-57.80156793336444, -1.4742722445309255], + [-57.797211352538156, -1.4857867123826598], + [-57.79118284854498, -1.4906735675215366], + [-57.783779309345356, -1.4881236397375917], + [-57.781015718356834, -1.49997399974445], + [-57.78360328258497, -1.508040384153607], + [-57.77323817363335, -1.5088354735083311], + [-57.761013050687986, -1.5023892760051842], + [-57.75043125617122, -1.5067807088957572], + [-57.74475092234615, -1.5014283718031405], + [-57.72978193355775, -1.5099731560292031], + [-57.713077523996155, -1.50418205208059], + [-57.71235231558537, -1.5356681095274234], + [-57.70510102350835, -1.546945309095909], + [-57.70251152287812, -1.5615706807905203], + [-57.70676686723496, -1.5759889394145175], + [-57.694072248289764, -1.5763239179835553], + [-57.6785908029803, -1.5943733145693018], + [-57.656970501425036, -1.580868153725696], + [-57.653634119842785, -1.588718716768179], + [-57.630268073348574, -1.5834939128310297], + [-57.621764177645396, -1.5861019128969467], + [-57.61137382304692, -1.5829215509348815], + [-57.61007319887858, -1.5749659888377956], + [-57.60249861740749, -1.5703318910352007], + [-57.590042225979104, -1.580136515001669], + [-57.59563088358132, -1.5894665822104097], + [-57.5932978413646, -1.599730226096199], + [-57.58582033815644, -1.5962477103592134], + [-57.56403982664098, -1.6052198194848566], + [-57.55337636711485, -1.6052520567743649], + [-57.545603121672364, -1.6105504938131976], + [-57.53914961597355, -1.6238935893148596], + [-57.525117455304965, -1.626804034465625], + [-57.52870286404469, -1.6527557437837663], + [-57.50709284377786, -1.6412980606447287], + [-57.501570125009145, -1.6524042446915121], + [-57.49355734240926, -1.6569426427442964], + [-57.48049144837556, -1.6554447920986415], + [-57.48223273250183, -1.664464012464905], + [-57.47512015717075, -1.6780350282090983], + [-57.43858614355867, -1.6665208439020816], + [-57.43535097833228, -1.6758769673865341], + [-57.439847764998575, -1.6885242717963094], + [-57.42748838086265, -1.6918322135998713], + [-57.411851117962975, -1.6733184361744586], + [-57.40337673957706, -1.675563075147316], + [-57.40410042747147, -1.6839935438573344], + [-57.397544384437815, -1.6917155537818764], + [-57.38790761292769, -1.6953255562371177], + [-57.39087532324092, -1.7067412363967522], + [-57.4009602414014, -1.7126453913380493], + [-57.392606356621215, -1.723110725073505], + [-57.373020184785396, -1.7141468089897531], + [-57.35243554165174, -1.7327963201613965], + [-57.34393833348272, -1.7231558849373134], + [-57.34698618608256, -1.714060115557818], + [-57.327880153199445, -1.715937231305696], + [-57.30542821340267, -1.730314552827852], + [-57.297526644913525, -1.7114903660857266], + [-57.274317256626006, -1.709772532286454], + [-57.27242898543927, -1.7187043202847592], + [-57.26440034567918, -1.716860028740144], + [-57.25893681219778, -1.70714169870336], + [-57.26212904563581, -1.6970148961456], + [-57.25381130948357, -1.6963319788160562], + [-57.24362801457771, -1.7043326673057582], + [-57.249096138465106, -1.7125776681490923], + [-57.244795716054945, -1.7205025483909904], + [-57.230661869782146, -1.7259568380175063], + [-57.22206213360857, -1.7238695358677885], + [-57.21559893708031, -1.7160467481460675], + [-57.20366910472492, -1.7109842812261855], + [-57.20112497156397, -1.7239899924097377], + [-57.19437564528052, -1.7277676006129092], + [-57.18747870852667, -1.722266750648151], + [-57.17891005324616, -1.7301802592867004], + [-57.16481628469174, -1.7209088094944067], + [-57.161716651003886, -1.7290786840269532], + [-57.171736069068025, -1.7498029645606004], + [-57.16115965126383, -1.756105655545079], + [-57.163130145110784, -1.768617502947449], + [-57.149111014276286, -1.7623720947058985], + [-57.12929250829975, -1.7641991109412747], + [-57.115743747710184, -1.7918190279858417], + [-57.09777501385897, -1.7751418801979417], + [-57.0852419526308, -1.7820802773171784], + [-57.08438093800751, -1.7938944049812369], + [-57.07934496792058, -1.8012239348986987], + [-57.07045788234975, -1.802697471371047], + [-57.06382318765813, -1.8085316480450397], + [-57.060403971358404, -1.8158070990946589], + [-57.07348906517921, -1.8317064041875382], + [-57.067989540269856, -1.8527055865668989], + [-57.055984675384856, -1.8647733625794005], + [-57.037128690967684, -1.9115893862114721], + [-57.02654693901437, -1.9151248301787935], + [-56.9882708752287, -1.9071962455957248], + [-56.980129290882886, -1.923699756485428], + [-56.96624511797417, -1.934988966027047], + [-56.961623416469386, -1.9514929865841653], + [-56.952690932374395, -1.9602657363901947], + [-56.94446307425403, -1.9638956598891288], + [-56.92359918383861, -1.9643443915741543], + [-56.88601894254248, -1.9836511109436483], + [-56.87455318697112, -1.9950164513784856], + [-56.85896573848499, -2.0159615636169876], + [-56.8498775375551, -2.0202074381330912], + [-56.81668634228145, -2.0230062039444685], + [-56.79312993130631, -2.0210311028066132], + [-56.76691438090112, -2.0087336678242758], + [-56.74780572244845, -2.0115383989352806], + [-56.73346528154488, -2.022827965409132], + [-56.726524427184366, -2.030996756091815], + [-56.72130462995488, -2.059210270766644], + [-56.72682583691007, -2.081412630108248], + [-56.73268659903206, -2.0917752449567035], + [-56.75108764623822, -2.1094720685097292], + [-56.7693518177853, -2.140707820481648], + [-56.76846134142854, -2.1657857538577585], + [-56.7608812045045, -2.1740928578670777], + [-56.7433856510567, -2.178504218583355], + [-56.72764551590206, -2.1768392546896878], + [-56.70769061147164, -2.1839368583048797], + [-56.70266509057717, -2.2012675506231485], + [-56.6789957307515, -2.2125989296528807], + [-56.6579309777751, -2.2106252560104886], + [-56.635349861378764, -2.2036337747097225], + [-56.624354290659944, -2.204517871486485], + [-56.61283671368746, -2.210206244251184], + [-56.607440092402314, -2.2050130444281244], + [-56.599438680136934, -2.1776138281714434], + [-56.597715381206925, -2.17499058026986], + [-56.5892742662879, -2.1745037842032855], + [-56.58033358269633, -2.1794410923350336], + [-56.56951484547485, -2.1747943557352456], + [-56.55713459243461, -2.1625801309995136], + [-56.54076557680824, -2.1538731632283694], + [-56.52698949127995, -2.139231115158879], + [-56.519399239079576, -2.138339305549454], + [-56.507551994880004, -2.1437363685531086], + [-56.47781794915412, -2.170412249282128], + [-56.4706640450901, -2.167062081640316], + [-56.45346064721535, -2.154068715298546], + [-56.436739704676675, -2.1576312488185962], + [-56.4266454411646, -2.1683562233823976], + [-56.41380796661788, -2.1759856518703353], + [-56.39263104274863, -2.159244127232678], + [-56.37498821227912, -2.1388142163136163], + [-56.36955760715135, -2.1375450142341106], + [-56.36771053816524, -2.137113263015901], + [-56.35107403063282, -2.1489064201839483], + [-56.34347262296135, -2.1495082294128167], + [-56.32069749543589, -2.1426234340606762], + [-56.31668724208161, -2.140162692403057], + [-56.308379595338785, -2.1210620420057076], + [-56.299738216423535, -2.1192126376633116], + [-56.2991489763873, -2.1054712494422776], + [-56.2973830284018, -2.1008446146290067], + [-56.28059993345503, -2.0931062692068467], + [-56.25607906060626, -2.0883535622987797], + [-56.22830386908385, -2.0562582187560237], + [-56.207569057638736, -2.0600185288750232], + [-56.196995745540484, -2.0569607217158277], + [-56.193910583950334, -2.048921281420651], + [-56.18663041576472, -2.0428594069397668], + [-56.172455618554274, -2.03922511907834], + [-56.16267865493157, -2.0419973963228397], + [-56.1450129572935, -2.0392441232622076], + [-56.098578249280024, -2.0269832495305757], + [-56.097485797172105, -2.0371716786122103], + [-56.1023439956609, -2.048056284362521], + [-56.14185355218758, -2.1002511198670746], + [-56.192000544330746, -2.1714829113317062], + [-56.220223925102935, -2.1958793668581174], + [-56.26342509951153, -2.221092624187711], + [-56.33156366762345, -2.2513984056548937], + [-56.3641319733748, -2.2593223890704084], + [-56.38424125379255, -2.2705106757954048], + [-56.389174801616626, -2.2785586297842033], + [-56.41268302336504, -2.3217502320670262], + [-56.42075868928336, -2.360226231502454], + [-56.465519805155324, -2.4231487900618], + [-56.46441129145503, -2.4316284510814543], + [-56.45707785793768, -2.4354619632722545], + [-56.45524242791935, -2.43627216882015], + [-56.43738142392372, -2.4402604482654677], + [-56.42535459963654, -2.4491685991115744], + [-56.40785582505187, -2.4501978669974007], + [-56.40208595542891, -2.4566497067884203], + [-56.43312295923358, -2.516395148403623], + [-56.4621532062392, -2.57859308361875], + [-56.487511708609546, -2.6329102219221086], + [-56.53632979951004, -2.7384263721558373], + [-56.53738594019465, -2.740714385812842], + [-56.558618042656335, -2.7867372273854296], + [-56.57587432786054, -2.824141096093363], + [-56.64769775827416, -2.9813550106843865], + [-56.72345538812195, -3.146624617344854], + [-56.76284278314317, -3.2322361489816616], + [-56.76781495086606, -3.242915605708561], + [-56.81002067624794, -3.3330036109072276], + [-56.83222421869083, -3.3817946191938244], + [-56.832351891865535, -3.3820670208502297], + [-56.88716190699684, -3.499070818905513], + [-56.91367743485764, -3.5623220596556093], + [-56.955548910237475, -3.657611145851285], + [-56.95600598728828, -3.6586500399905155], + [-57.00041153644238, -3.759151758273513], + [-57.13070069535026, -4.0356586529910095], + [-57.21061113858558, -4.205565280780504], + [-57.213469785106966, -4.211644482790476], + [-57.24940759819286, -4.287994594553261], + [-57.25221308742402, -4.294024655296188], + [-57.350117987203376, -4.502029272173377], + [-57.476595662718864, -4.770423915528247], + [-57.65983358342224, -5.16316078624239], + [-57.70387476273912, -5.259287780462363], + [-57.860555077199805, -5.600736281869581], + [-57.87388522179072, -5.629855093638201], + [-58.033550108817685, -5.978129325086041], + [-58.255175911410994, -6.454127510107552], + [-58.26664291361611, -6.475570521829085], + [-58.293029063171026, -6.493892818923968], + [-58.31991587919336, -6.495005742326919], + [-58.32555542254602, -6.499302289977023], + [-58.332228294151285, -6.533009579029192], + [-58.34980650012398, -6.562410923861261], + [-58.38053737388183, -6.580520098174461], + [-58.42169659280747, -6.6107246250797935], + [-58.449573629136, -6.653625001728064], + [-58.46511447397242, -6.6700507394031465], + [-58.4783908255409, -6.6996233292073395], + [-58.48004867479754, -6.785216515543927], + [-58.47058201791475, -6.803640373351264], + [-58.46280628178471, -6.837289006625174], + [-58.43447629511025, -6.908816049039348], + [-58.4069254772968, -6.940440410559188], + [-58.394057581853886, -6.950108739314248], + [-58.386478034508876, -6.965326572890379], + [-58.380170563392916, -6.970513532454037], + [-58.35553006169344, -6.9716684996384135], + [-58.33534310172467, -6.986382085422863], + [-58.288176537330756, -7.061683396275477], + [-58.26849842829805, -7.07952943093113], + [-58.25275652015369, -7.083433696879366], + [-58.23984212949182, -7.095520265379074], + [-58.222698522146594, -7.124283377831744], + [-58.20867013032775, -7.136362309037768], + [-58.18221220902665, -7.179816848130837], + [-58.16800731984558, -7.231344161582144], + [-58.174733046971994, -7.271437752629992], + [-58.16993237939397, -7.31323245836191], + [-58.14729433328145, -7.343250161270151], + [-58.1369770239929, -7.356133596949329], + [-58.14064681611722, -7.363409032019186], + [-58.14359354638696, -7.366205560747755], + [-58.173282691330854, -7.394376391873372], + [-58.212981680520436, -7.458543933323954], + [-58.21306219898884, -7.493338193350934], + [-58.22185045232923, -7.521498150788804], + [-58.222646053573186, -7.524046980768495], + [-58.222343174824005, -7.526085412356972], + [-58.21878440162661, -7.550039867069733], + [-58.20244579074699, -7.596752490084262], + [-58.2020927599191, -7.620863407316329], + [-58.232601859596905, -7.647426069806697], + [-58.23971173370049, -7.653615018683305], + [-58.23971189281913, -7.653615326129811], + [-58.249665020602976, -7.672844609108002], + [-58.251717076451236, -7.676808652477387], + [-58.27591236869732, -7.699676369265867], + [-58.282234234970986, -7.713910910805251], + [-58.28242032159994, -7.716840857184308], + [-58.28442346532058, -7.7483588693329635], + [-58.292644959161144, -7.768314564091223], + [-58.293977987615015, -7.77154973757191], + [-58.297184386087835, -7.774539158727782], + [-58.30056948953647, -7.7772875289379115], + [-58.33398248204332, -7.8044103194633765], + [-58.3716118126259, -7.821219866899546], + [-58.37814197203808, -7.8274468300087445], + [-58.384663700976844, -7.843998396058325], + [-58.38391492787758, -7.852139003001609], + [-58.374587614839264, -7.864769742895937], + [-58.37316710433605, -7.907209223935335], + [-58.354971682247196, -7.9439987127243565], + [-58.331425078813986, -7.968772057265343], + [-58.3244295764445, -7.992688810592443], + [-58.32542518672867, -8.009738762761714], + [-58.32165126062923, -8.024991006639645], + [-58.288315051817385, -8.079581554651064], + [-58.2862870422841, -8.088485912192585], + [-58.29123617610029, -8.110199523949703], + [-58.29181512765621, -8.112739116618327], + [-58.2870924093643, -8.128554005053198], + [-58.28854248361119, -8.131965404600793], + [-58.2912046125414, -8.134052996143534], + [-58.317355351179145, -8.154556747393087], + [-58.32238721774482, -8.170047857296701], + [-58.31286850176395, -8.209114261571507], + [-58.32132001946114, -8.230149433458054], + [-58.32209380536272, -8.232075062571344], + [-58.32196787802711, -8.23523927959129], + [-58.32051122550901, -8.271878200162414], + [-58.32800675512619, -8.285838654443257], + [-58.325875108885995, -8.29411138004065], + [-58.31576009597698, -8.306447016692085], + [-58.31481652455188, -8.323070420598969], + [-58.318508430849455, -8.330144936148907], + [-58.34799546761448, -8.346207570499377], + [-58.35091697976597, -8.354128365097033], + [-58.34842969838455, -8.369295652945896], + [-58.35495503019378, -8.384427057979856], + [-58.35362225285714, -8.392827251089082], + [-58.3760419321745, -8.429209916438982], + [-58.389307734981394, -8.439974652648079], + [-58.39833880231731, -8.46424986385361], + [-58.40519349537259, -8.467563873354024], + [-58.41697696354793, -8.491965479735176], + [-58.41522071343905, -8.516301376554875], + [-58.40511256976233, -8.530761213768752], + [-58.40411302166797, -8.539509115491773], + [-58.4103926836252, -8.570401621399663], + [-58.398393463529864, -8.580140224825104], + [-58.38944217711004, -8.594802193118516], + [-58.39086218557144, -8.602992630423225], + [-58.40103447622848, -8.615896953332683], + [-58.403447196026946, -8.63120755259655], + [-58.41419857373522, -8.64391497114133], + [-58.43722455808142, -8.703362408033499], + [-58.433454062408664, -8.71044839420258], + [-58.41188035286352, -8.720618619230564], + [-58.41187991398458, -8.720618826113535], + [-58.386386692398766, -8.707381799415916], + [-58.38359893163122, -8.705934069643181], + [-58.381172952914774, -8.705611681162702], + [-58.350951358212264, -8.70159401788722], + [-58.35095001792047, -8.701593839646527], + [-58.32829294775462, -8.712187505789453], + [-58.32614875107788, -8.720042158527768], + [-58.331995746172566, -8.726470575830009], + [-58.354593794946936, -8.737273452615472], + [-58.38497270270076, -8.771471719868854], + [-58.38792667918763, -8.774796329800441], + [-58.39057273777645, -8.776510553077305], + [-58.415802663897, -8.792853039745081], + [-58.41580309806051, -8.792852778579459], + [-58.42266555087363, -8.788724689257798], + [-58.42266620845971, -8.788724795969934], + [-58.43000883103542, -8.789916259653042], + [-58.44290349726513, -8.799491872134197], + [-58.500284996824554, -8.802832306987506], + [-58.5002858331058, -8.802832307163852], + [-58.610132769571294, -8.802987439432332], + [-59.09610596327626, -8.803281715585925], + [-59.09610603586238, -8.803281715583166], + [-59.1272176899826, -8.803279690853163], + [-59.12721776256493, -8.803279690871832], + [-59.2886866975528, -8.803344806622114], + [-59.28868677013147, -8.803344806635831], + [-59.412748553053554, -8.803348079091665], + [-59.41274862565071, -8.803348078945701], + [-60.07241345784361, -8.800200405397467], + [-60.07241353047697, -8.80020040483647], + [-60.42010019483441, -8.796636304650493], + [-60.42010026741344, -8.79663630440319], + [-60.42087568287885, -8.796639343529664], + [-60.42087575538482, -8.796639343821628], + [-60.51503836881259, -8.797016644709155], + [-60.51503844131749, -8.797016644990993], + [-60.8487966485248, -8.798164389510221], + [-60.84879672102493, -8.798164389762016], + [-60.84932668716582, -8.79816649069118], + [-60.84932675967278, -8.798166490896596], + [-61.0142828201486, -8.79841005965085], + [-61.01428289266797, -8.798410059742496], + [-61.18456570892177, -8.79858773057234], + [-61.18456578144109, -8.798587730632189], + [-61.583051046013864, -8.798704764328813], + [-61.58305111853247, -8.79870476084517], + [-61.59002183097068, -8.794511029476103], + [-61.60594404049932, -8.794729705250015], + [-61.62321412646091, -8.758269799723967], + [-61.6294687166012, -8.752971772265408], + [-61.626384959914795, -8.728868952381132], + [-61.630470734880454, -8.721973887183156], + [-61.645996922922635, -8.72071491190333], + [-61.65033182447882, -8.713572989735395], + [-61.673495907522586, -8.705032276404658], + [-61.69743938066328, -8.709599582614192], + [-61.70527636539719, -8.707541935693984], + [-61.713189635369055, -8.687868195456234], + [-61.725886723186605, -8.693617922689269], + [-61.741769434219705, -8.6952083791881], + [-61.744357380985214, -8.702567763019427], + [-61.74004502776283, -8.709880777100924], + [-61.74879708855807, -8.723785801234397], + [-61.76352659987477, -8.728812299899019], + [-61.76202885956626, -8.737168103326953], + [-61.77452121411554, -8.748244730478985], + [-61.78993754366948, -8.745178462848775], + [-61.80240488843546, -8.747191521448336], + [-61.806161803970014, -8.74779768476708], + [-61.82802337153524, -8.73264131401644], + [-61.8364161598574, -8.732738422918018], + [-61.84402371569284, -8.747396972908254], + [-61.843216874106844, -8.779425097754304], + [-61.855603411255856, -8.789045497678018], + [-61.8609404633509, -8.80363170367621], + [-61.85677816150904, -8.818252237689437], + [-61.86249925710425, -8.823484082818755], + [-61.86366069438353, -8.83147977824151], + [-61.85996510511793, -8.853101719288102], + [-61.879215822202006, -8.862456736823065], + [-61.90291647098948, -8.862909147170138], + [-61.90580175652674, -8.874526942666582], + [-61.93005391360746, -8.880512115864779], + [-61.979055608034706, -8.873261292772543], + [-61.98513753564939, -8.878623007785965], + [-61.99013671039581, -8.872675471316006], + [-61.99435672228228, -8.848883183449857], + [-62.00218433371575, -8.832714437193022], + [-62.02124852419673, -8.823614408330167], + [-62.030976170346186, -8.799726515532273], + [-62.05043720059589, -8.79628658864544], + [-62.07421695408785, -8.798586689335474], + [-62.097917889013786, -8.808937995512151], + [-62.10959961177173, -8.805111004868852], + [-62.12488663755114, -8.801687722473755], + [-62.15694624238478, -8.732228492304465], + [-62.148716251986535, -8.71832507023238], + [-62.15410731499622, -8.71045497353263], + [-62.16772022032653, -8.703244021374362], + [-62.17168690191181, -8.695091074147182], + [-62.165001191645075, -8.679409834167013], + [-62.17541642409524, -8.664158653409407], + [-62.18135561105319, -8.65789487474516], + [-62.200444518712565, -8.64430869958353], + [-62.19571921413463, -8.636843877409078], + [-62.176556391606034, -8.636934722929148], + [-62.17460543845607, -8.62821880180096], + [-62.18830211533044, -8.590574419151114], + [-62.20305354688555, -8.594962615338776], + [-62.22836648228282, -8.590589991445908], + [-62.24272394982825, -8.580677394446909], + [-62.26880189047833, -8.575774298828648], + [-62.274192791719145, -8.582947739771287], + [-62.28927032054047, -8.58892028993502], + [-62.29422111566702, -8.605456664799666], + [-62.27924793805923, -8.629185923955017], + [-62.2812177571689, -8.638605931068746], + [-62.289415985085974, -8.639112636109152], + [-62.3356909655664, -8.609500514171964], + [-62.340997317921236, -8.602844698915073], + [-62.341911801103954, -8.594859133299728], + [-62.32763764626908, -8.572552414922274], + [-62.32571785143567, -8.563723106203707], + [-62.33424760026994, -8.546210043277481], + [-62.333135333499094, -8.527778360433096], + [-62.33727155947641, -8.51665350520374], + [-62.35389055769716, -8.511716898685085], + [-62.35999600871259, -8.506378992964706], + [-62.36596294218833, -8.49357717167752], + [-62.36363291523779, -8.478242563830403], + [-62.36919335180271, -8.446134301373611], + [-62.361132338728716, -8.423704991659097], + [-62.359883479092225, -8.407012662638058], + [-62.36499447310139, -8.391037008154619], + [-62.38393988447611, -8.377570747366024], + [-62.399936409443455, -8.374818075414092], + [-62.41613259633849, -8.376642541077088], + [-62.43215968151554, -8.372043022102678], + [-62.44524219362467, -8.362498097558845], + [-62.453680430649605, -8.349187764780616], + [-62.465386201401365, -8.339754781627368], + [-62.47288150497228, -8.340767660091021], + [-62.478827229794234, -8.34568825626373], + [-62.48685963440786, -8.359227083062962], + [-62.500740264692126, -8.366142642918055], + [-62.518384215119696, -8.384753308335558], + [-62.526047606748, -8.383069573337695], + [-62.52537992795515, -8.375362231020079], + [-62.5319146458834, -8.371043867714326], + [-62.53946843944211, -8.358124505980461], + [-62.5514382384971, -8.358209683684473], + [-62.54902581879006, -8.342157850482897], + [-62.55569495162875, -8.327451108512706], + [-62.555183861025945, -8.31940194210204], + [-62.56107344945667, -8.313846588224742], + [-62.5561751127417, -8.304296685887886], + [-62.561830024667785, -8.28402133593803], + [-62.56913667954161, -8.287293228578914], + [-62.574104768601806, -8.280667493510931], + [-62.58141472427659, -8.278639994053325], + [-62.58529873438235, -8.271895225030864], + [-62.592682078722326, -8.274984403831748], + [-62.599968324200454, -8.272253327049853], + [-62.61027356280852, -8.259814963140476], + [-62.6498564693299, -8.237040729027227], + [-62.65491204748413, -8.229070825856196], + [-62.65093662376323, -8.222044527821959], + [-62.6597987164999, -8.199647959194426], + [-62.6734348717638, -8.192749270736796], + [-62.68657419107015, -8.173788589853773], + [-62.68516419867585, -8.165732562702782], + [-62.67907516689616, -8.16079022600327], + [-62.672937631608995, -8.145324617674481], + [-62.674020704564605, -8.136966930362268], + [-62.685410183085985, -8.116451513093804], + [-62.679052315010125, -8.111686698763089], + [-62.69046490190116, -8.100918127331092], + [-62.69218970934883, -8.092922093239382], + [-62.70632578009512, -8.085326647076913], + [-62.72452685116567, -8.069211732514123], + [-62.74388164332631, -8.04529967204558], + [-62.78610922052014, -8.02635654191188], + [-62.80990535526043, -8.025353191515284], + [-62.82091180545404, -8.014509054105863], + [-62.83274188179043, -7.994385012345766], + [-62.84151833611474, -7.9949861447073385], + [-62.84496423465636, -7.986544630144487], + [-62.853269036533284, -7.987576656885544], + [-62.86652402593562, -7.975881654522046], + [-62.86792948825508, -7.975888563905233], + [-63.32190774575686, -7.976555043787456], + [-63.384967413279114, -7.976608855658973], + [-63.44218655379341, -7.976476715316421], + [-63.534641821916786, -7.974339730552728], + [-63.62069469321559, -7.969307955911992], + [-63.626356012839295, -8.0161261250869], + [-63.62168506252251, -8.029624885593197], + [-63.62652462352071, -8.041198719742798], + [-63.63866409258594, -8.04720837459997], + [-63.65077680901072, -8.06645461159183], + [-63.66690657017349, -8.081617748440603], + [-63.66885592571577, -8.091918559022458], + [-63.66235496443812, -8.101185883192494], + [-63.669804187579345, -8.121757847590292], + [-63.67633085211426, -8.12787582707872], + [-63.693327712220565, -8.158363617047277], + [-63.73007897340858, -8.180201314603327], + [-63.7469411557402, -8.198598357129603], + [-63.74846953358924, -8.207880492883197], + [-63.72266854723143, -8.24951444931622], + [-63.746469514173064, -8.270184810576009], + [-63.76584680430176, -8.307196463964933], + [-63.78150286402583, -8.329256021246701], + [-63.791138675341514, -8.333231291250064], + [-63.825245703231836, -8.306168520836712], + [-63.847030616618675, -8.295047162520023], + [-63.86739356378667, -8.289333346296802], + [-63.881911889959284, -8.2912450914969], + [-63.894833540942706, -8.302044683619258], + [-63.904249145306416, -8.322075181145433], + [-63.91074280825843, -8.32854087267993], + [-63.93203391602307, -8.324886524592452], + [-63.944029384877425, -8.331203847194791], + [-63.94528037708982, -8.38784257041609], + [-63.97686179690278, -8.409756340982815], + [-63.97780269650939, -8.420149633848578], + [-63.95363442360934, -8.427981522659918], + [-63.938997369559075, -8.441565329197724], + [-63.94074513992691, -8.452280955590876], + [-63.97308488043836, -8.478464282600521], + [-63.97441232600077, -8.487255302779284], + [-63.97080494344963, -8.499350526110442], + [-63.95865653921088, -8.510020897512105], + [-63.943696131003286, -8.52662175076653], + [-63.945528626277316, -8.550515546282815], + [-63.933104213774676, -8.557370214497665], + [-63.9230797524783, -8.559311046764604], + [-63.922390836649605, -8.567394901359991], + [-63.93592148816489, -8.592875446193263], + [-63.94586245435298, -8.609503171085313], + [-63.95400083123937, -8.607271645081639], + [-63.96550589775343, -8.595943984402307], + [-63.9670566852585, -8.587900508800395], + [-63.97244767671224, -8.582470323534325], + [-63.98017163094329, -8.58070589738837], + [-63.98611804324937, -8.585651694833718], + [-63.9910032926174, -8.617431819391008], + [-63.99593386725947, -8.619941428471767], + [-64.00475039973368, -8.625928090006894], + [-64.00508377289107, -8.641766195238375], + [-64.01661168248374, -8.652518883181548], + [-64.0190872432618, -8.660466728071295], + [-64.0163348653366, -8.667700338991581], + [-64.03539092632698, -8.693576173811252], + [-64.0277782313618, -8.71568489356872], + [-64.06730506162835, -8.710743985001002], + [-64.0750609576736, -8.713126218034454], + [-64.09467594730513, -8.728382334892265], + [-64.11116917274414, -8.725189950188335], + [-64.1245034791786, -8.716732589277088], + [-64.14297586674334, -8.743050486543565], + [-64.1446712693787, -8.776466447355064], + [-64.12936819243708, -8.805181999851383], + [-64.13566876942957, -8.820408674877548], + [-64.15511451060159, -8.835435770163132], + [-64.15811267104414, -8.843187158876473], + [-64.15556573829356, -8.848351105639148], + [-64.14870328938689, -8.873110515890074], + [-64.15161200721002, -8.89725327843971], + [-64.14349826119657, -8.933723181430809], + [-64.14334347718263, -8.953552686774714], + [-64.14936233051355, -8.958957544779485], + [-64.17492391401478, -8.960591771995364], + [-64.23311522040197, -8.992328744501734], + [-64.26498105825912, -8.98840311138914], + [-64.2975909853074, -8.99621708711119], + [-64.31122835215739, -8.996491654442437], + [-64.32519860488367, -8.988091082873497], + [-64.32598176050813, -8.979852808787538], + [-64.31294758558562, -8.950596839832771], + [-64.30947825296109, -8.934513357614737], + [-64.31273928671528, -8.931825223238157], + [-64.31547857109206, -8.929567173310279], + [-64.32330904786619, -8.92888100343275], + [-64.37983302722265, -8.946755679387026], + [-64.40837001540594, -8.960671170570016], + [-64.43314982519526, -8.96850269236961], + [-64.44648339581967, -8.97689139482286], + [-64.45537205556063, -8.97788002999994], + [-64.47109055580624, -8.97376547783209], + [-64.49628111646987, -8.979078432259366], + [-64.53353708166472, -8.976290654374045], + [-64.55003297768029, -8.978291955956667], + [-64.56411502082184, -8.985681450094972], + [-64.56878950978353, -8.991795205105161], + [-64.5787623298009, -8.98843661382899], + [-64.57930811099423, -9.001163490090889], + [-64.58787014040702, -9.009531191925344], + [-64.60016474047397, -9.0124905261671], + [-64.6109830870501, -9.016473200806692], + [-64.64144699203854, -9.006667352987069], + [-64.65761575937756, -9.00823434409043], + [-64.67128508650956, -9.014817665710309], + [-64.68325941223718, -8.993638206394545], + [-64.68959097750827, -8.990304124156516], + [-64.70666798218717, -8.989816986746728], + [-64.73044975369723, -9.012531171174293], + [-64.74447555395766, -9.018290778414832], + [-64.76108915438883, -9.020604112387474], + [-64.783872518137, -8.989291289870186], + [-64.80773248110023, -8.98557320228849], + [-64.83923247450615, -8.994132904888035], + [-64.86982391486346, -9.012000412822365], + [-64.87894075465223, -9.022838732698915], + [-64.88714192247961, -9.029232261114176], + [-64.89400751393545, -9.043723724541069], + [-64.90144993963233, -9.046708557986442], + [-64.91717509169239, -9.043163024896376], + [-64.9192588389575, -9.050585903357549], + [-64.91558868462998, -9.074636495206237], + [-64.93337457838156, -9.120364503980385], + [-64.93983860144137, -9.12458838885143], + [-64.93922375894522, -9.148326900990407], + [-64.93353398687162, -9.154423057770321], + [-64.92890102766529, -9.177659492926624], + [-64.93181255465925, -9.184950039927218], + [-64.9236462902781, -9.19816098708713], + [-64.92645116390366, -9.205487589816508], + [-64.91959233114576, -9.220303494997312], + [-64.92139851304674, -9.228313073725504], + [-64.93273483954815, -9.240611855977601], + [-64.94059176368943, -9.262425755528794], + [-64.95356284645429, -9.271295149634021], + [-64.95384868712846, -9.278947566938593], + [-64.96278937566488, -9.29280041077811], + [-64.98609264758701, -9.291954767321043], + [-65.00042517479453, -9.304637727957179], + [-65.00176572263405, -9.317924863017302], + [-65.01261708479682, -9.32870068705402], + [-65.00575675650988, -9.34355360465085], + [-65.02192954401919, -9.346029463844804], + [-65.02432206958794, -9.353915339637554], + [-65.02994605865807, -9.356595593774946], + [-65.03921843221728, -9.359605695869853], + [-65.03559041457855, -9.374841218346935], + [-65.04682023830445, -9.38729293688137], + [-65.0475437776867, -9.396216920736066], + [-65.05345629989306, -9.40216693137914], + [-65.07783877703505, -9.401006146660555], + [-65.08466879247875, -9.404198747968367], + [-65.09220180400898, -9.409410645782781], + [-65.08882079035455, -9.425105334368995], + [-65.09776039015902, -9.432540799712553], + [-65.1136285507769, -9.432803308612499], + [-65.13068660195928, -9.442320203935243], + [-65.14279094999836, -9.446837472996807], + [-65.15503974617596, -9.437184218870524], + [-65.17723429899388, -9.426661218466894], + [-65.18453382424872, -9.427016279783224], + [-65.18673276950832, -9.415051028387667], + [-65.17456309927412, -9.393805962736353], + [-65.17345371105392, -9.385472351248243], + [-65.19606794452471, -9.375287631879678], + [-65.19689885136324, -9.367464521385356], + [-65.18823412441269, -9.344876991456891], + [-65.20886569223953, -9.309667567219499], + [-65.21092272213377, -9.301053333828342], + [-65.20706282167089, -9.2936613051787], + [-65.20793426184325, -9.285657262137638], + [-65.21168080710234, -9.27901745603291], + [-65.23997880022092, -9.26145065706], + [-65.2465701847051, -9.257687481058525], + [-65.28409154393648, -9.270292331497766], + [-65.3003441290279, -9.287097830968122], + [-65.34259830875116, -9.309485356437213], + [-65.35115000757762, -9.323133843785776], + [-65.37742219533477, -9.324450667940933], + [-65.37945651605007, -9.332871763186647], + [-65.38511977743643, -9.338055810124088], + [-65.39343111035714, -9.339621719912666], + [-65.40970660328934, -9.322480331477514], + [-65.41670505572607, -9.319560955744242], + [-65.44012691525549, -9.31176987460207], + [-65.44692691476844, -9.31640011421829], + [-65.44901017797002, -9.324604475060962], + [-65.4435369640446, -9.330376638291172], + [-65.44759950661152, -9.345810849252127], + [-65.44603873799655, -9.370713254193587], + [-65.45650926116373, -9.401233968046887], + [-65.45456877424859, -9.408632323180274], + [-65.44323946542711, -9.42017257070031], + [-65.43200787204627, -9.458660615698598], + [-65.43462545446533, -9.46635869698396], + [-65.4425840470317, -9.464726188436257], + [-65.45294513588179, -9.469037609472238], + [-65.45656737633539, -9.470544338127521], + [-65.46778979518479, -9.459317050061772], + [-65.47687591493376, -9.472689394069294], + [-65.49271069582002, -9.473689665214728], + [-65.50307268064347, -9.470001281624784], + [-65.5034025821936, -9.456973212667641], + [-65.50645947305506, -9.447723666580018], + [-65.5146464412645, -9.449536481654572], + [-65.52232103182465, -9.44693022634116], + [-65.54815692855759, -9.42607091634608], + [-65.58801670609276, -9.41379933698181], + [-65.5966842463471, -9.413890725630392], + [-65.61817600610202, -9.426002249542945], + [-65.63468094824009, -9.429725374318766], + [-65.64154255902636, -9.433493220196587], + [-65.64979307773459, -9.447297236703996], + [-65.65709557966993, -9.449304046955307], + [-65.6726855343142, -9.446375474115678], + [-65.67934395332267, -9.4514188600775], + [-65.68090670359047, -9.50043378556752], + [-65.69598904556261, -9.5076977775325], + [-65.7234565294736, -9.559083424061692], + [-65.72987652646782, -9.56309866529671], + [-65.74268597773687, -9.552993941075497], + [-65.75023595019265, -9.553649927831652], + [-65.75645792390607, -9.568982151260201], + [-65.77062362911025, -9.565383048081907], + [-65.77793810704088, -9.577550353940463], + [-65.79143130884412, -9.585671569993815], + [-65.7999309376662, -9.585048719607805], + [-65.80529248639965, -9.57053932172204], + [-65.8106002042521, -9.5644335907867], + [-65.81793565687663, -9.562282042201375], + [-65.82498593070831, -9.530118016588904], + [-65.8407095156972, -9.534140927690784], + [-65.84815726040144, -9.532351068954824], + [-65.84651635880988, -9.516438007438154], + [-65.85245897638188, -9.510728000807477], + [-65.86026190380002, -9.510795463629043], + [-65.88081642612265, -9.487491440951782], + [-65.89792987217844, -9.489075006296497], + [-65.91254262970274, -9.48377683501648], + [-65.9223801186084, -9.470923558652151], + [-65.93178841925081, -9.447620710938844], + [-65.9515450734115, -9.4362888273807], + [-65.9530687039774, -9.4287878833033], + [-65.96695961301106, -9.420131123312228], + [-65.97020811951543, -9.41318622089294], + [-65.98635126752973, -9.41315427266056], + [-66.00248298093231, -9.404283462791156], + [-66.02168525310049, -9.401557431279558], + [-66.04231879889286, -9.402398476510177], + [-66.04637074988713, -9.40937100880149], + [-66.05964681102213, -9.418243812291692], + [-66.10106997591757, -9.414030336700366], + [-66.11613329474703, -9.409011040504788], + [-66.12918062131544, -9.410776619702222], + [-66.15426652156943, -9.420499764316297], + [-66.1589019291567, -9.426601328719448], + [-66.17353973453596, -9.434445200531789], + [-66.2046531099424, -9.426000197683505], + [-66.22046375941032, -9.425330290823347], + [-66.23521207589977, -9.430900901343628], + [-66.24332133710963, -9.429413708738762], + [-66.25957525307378, -9.41102300492479], + [-66.29034580067923, -9.412521250298905], + [-66.2840923603812, -9.432190324727365], + [-66.30740395313794, -9.436872016840812], + [-66.31476407965295, -9.433841399110907], + [-66.31351127729327, -9.42609999531335], + [-66.31882251725875, -9.419990276412593], + [-66.3331198508397, -9.42769373940316], + [-66.34151673275122, -9.427043408794262], + [-66.3457328141526, -9.419936421104968], + [-66.3532124401972, -9.416646143635624], + [-66.36671344287821, -9.425188561068113], + [-66.37468261641263, -9.42639290467077], + [-66.40876431115075, -9.406973279237185], + [-66.41395581893354, -9.413720229262408], + [-66.41462789839356, -9.421975603565283], + [-66.39601511163595, -9.437547025758425], + [-66.38995859632709, -9.455656735424032], + [-66.3923210091724, -9.500507501927764], + [-66.42348436261939, -9.52581517638854], + [-66.43884173703802, -9.554417885224598], + [-66.4564947792062, -9.569431974074602], + [-66.46737686133191, -9.582239241531335], + [-66.49482383733908, -9.601611462364586], + [-66.49633235857678, -9.614276589139939], + [-66.50052064031856, -9.633591806725036], + [-66.53679560118918, -9.643577363378052], + [-66.55162797686437, -9.658088805703914], + [-66.57902279721485, -9.668261615648643], + [-66.58621389476482, -9.673587832843628], + [-66.60935584257129, -9.664927435363213], + [-66.62407309876077, -9.680848276242141], + [-66.68485169863824, -9.714675081230967], + [-66.6917103983782, -9.733919513997506], + [-66.70121240750125, -9.74338952919009], + [-66.72529718076507, -9.756102279307743], + [-66.75837815090195, -9.760389680949523], + [-66.77527086918025, -9.753121158219297], + [-66.78204817884976, -9.758601955290313], + [-66.7781836331391, -9.766574685359913], + [-66.77716007150889, -9.7686861553249], + [-66.78048673182128, -9.791423427866379], + [-66.80619273559515, -9.814462991904888], + [-66.81016074991014, -9.818076285848186], + [-66.84774292057378, -9.80162946315334], + [-67.06001444115604, -9.708723329074989], + [-67.13350834650305, -9.676553375719225], + [-67.2227463399279, -9.637489610306108], + [-67.22296859837138, -9.637392238224328], + [-67.32481684696779, -9.592806112240169], + [-67.32595286253606, -9.592373033774404], + [-67.5172976761602, -9.560704301602076], + [-67.65133121218093, -9.500038933875073], + [-67.97491149232198, -9.35358594967927], + [-67.97708886130647, -9.352600546202922], + [-68.22024174582407, -9.24256180140225], + [-68.63748399030531, -9.053784232047054], + [-68.63762516373677, -9.053720018415103], + [-68.64707839960914, -9.049443392361846], + [-68.70660995468779, -8.998350484893015], + [-68.92279026449488, -8.81292117528638], + [-68.96890452055331, -8.773390600304285], + [-68.99516924994384, -8.750878730417318], + [-69.06206995500563, -8.693549691783222], + [-69.2128651221328, -8.564398483507517], + [-69.28615305611052, -8.501663715408604], + [-69.44424650200412, -8.366415686366373], + [-69.58682528937864, -8.244538655404954], + [-69.80158186666263, -8.061147476264802], + [-69.80165035912403, -8.061089114163005], + [-69.98931298478729, -7.901023492932491], + [-70.05132225403294, -7.84817381653556], + [-70.05223704884854, -7.847393687974104], + [-70.23582710796309, -7.824446414705473], + [-70.3331286173747, -7.813288523862352], + [-70.5156855606927, -7.792321664710792], + [-70.51865232769767, -7.791980197839557], + [-70.6589551175209, -7.775838339537898], + [-70.67880176167837, -7.773552902425314], + [-70.70725607493755, -7.770275158951408], + [-70.72448617809435, -7.768290648436917], + [-70.77239461765973, -7.762769034539517], + [-70.77423859906746, -7.762556861210423], + [-70.79238828562991, -7.760464131429408], + [-71.0883500336188, -7.7262886250394605], + [-71.38152573579137, -7.692335262335797], + [-71.39505985388428, -7.690765812446001], + [-71.64553982784903, -7.661677402290202], + [-71.72241403159735, -7.6527358861778705], + [-71.79224259405517, -7.6446079740847885], + [-71.95784663473516, -7.625312993898737], + [-72.07749935094165, -7.611353683265092], + [-72.16936892071688, -7.600624928140837], + [-72.36470764658553, -7.577785259948407], + [-72.58459431229302, -7.552030097282069], + [-72.58841021229388, -7.550646432899418], + [-72.59282945961229, -7.549043114655765], + [-72.6004817072123, -7.546268206903246], + [-72.90100440203322, -7.437343045037613], + [-73.1199499943405, -7.358070685544891], + [-73.18232479635891, -7.335500127549971], + [-73.72680045254178, -7.138752212304011], + [-73.7379963411737, -7.134711628568582], + [-73.80135235378388, -7.111852056859138], + [-73.79653919608302, -7.103360569870834], + [-73.77407498942938, -7.085267643808483], + [-73.73852000461581, -7.045351324780317], + [-73.72657698607128, -7.022550986107731], + [-73.72982094411792, -7.006891911022813], + [-73.73837905106578, -6.999332663267886], + [-73.7381806863181, -6.982150551897734], + [-73.74265063937854, -6.965286094797899], + [-73.75437392470555, -6.9419350329470255], + [-73.75268409739193, -6.93310060711119], + [-73.74129761646549, -6.9095734763644225], + [-73.72123761672695, -6.889114948371244], + [-73.7167140765289, -6.870426465384106], + [-73.71131967214998, -6.862677176159297], + [-73.70698830326164, -6.839679164523519], + [-73.69712632734422, -6.8394271854915285], + [-73.69026349907682, -6.834332418744148], + [-73.68132631671469, -6.818098969885438], + [-73.66657393527105, -6.806475017480054], + [-73.64834404836049, -6.778273350012422], + [-73.64259850233802, -6.762176353260323], + [-73.61559672459465, -6.741327932667304], + [-73.60687683843291, -6.739101051573633], + [-73.58434788588171, -6.724748573282021], + [-73.57629114126794, -6.7264989605901], + [-73.55956904152303, -6.720979781969181], + [-73.55023172291997, -6.706676847763713], + [-73.51621082193448, -6.677376785167501], + [-73.49801029452334, -6.671895302745216], + [-73.48229660092497, -6.6711981876272235], + [-73.47587767284062, -6.665370994862803], + [-73.45843511244752, -6.6655672736406055], + [-73.43681914894607, -6.651100905780495], + [-73.42807002490727, -6.652272751112111], + [-73.41248769242112, -6.642115079002326], + [-73.40487538725617, -6.642954704913078], + [-73.38048892511179, -6.6350491216855305], + [-73.37901239220166, -6.617313781632902], + [-73.37454105056459, -6.611097643113861], + [-73.35965458422541, -6.602580644249221], + [-73.35428894457051, -6.594942078956761], + [-73.33743303989483, -6.593097773418842], + [-73.33160123991182, -6.599963185494199], + [-73.3256539286884, -6.59436065297722], + [-73.31060245724429, -6.5925354922210335], + [-73.30134895540843, -6.594723082174385], + [-73.28026269239923, -6.585470749090645], + [-73.2632809123148, -6.586699552946403], + [-73.25554238056192, -6.582767397332992], + [-73.24695759548422, -6.584280260771663], + [-73.23299015628356, -6.577923930337641], + [-73.22993534591697, -6.570530005584714], + [-73.22185350414082, -6.564791654271685], + [-73.21948992624847, -6.573216155739914], + [-73.21276474818882, -6.577864228419079], + [-73.20016514901462, -6.564812328443781], + [-73.20503207320226, -6.556930615537131], + [-73.1979302728737, -6.554041737942336], + [-73.19806650282955, -6.544519630614477], + [-73.18998717527586, -6.54524223372083], + [-73.18232680091916, -6.540047185837674], + [-73.18401335099387, -6.527599502816957], + [-73.17245902563276, -6.51827749087075], + [-73.16665477125568, -6.526048921201429], + [-73.15318199626437, -6.520035977543394], + [-73.13821841573323, -6.498001635311731], + [-73.14157081829744, -6.4912294077731705], + [-73.13204498871949, -6.468267714727234], + [-73.12354637256745, -6.463317369985505], + [-73.12345946794731, -6.454815805663281], + [-73.117627502652, -6.449865772867749], + [-73.11793269008227, -6.439909572647457], + [-73.122366809681, -6.431886350677243], + [-73.11909536533477, -6.423937406291169], + [-73.11076628046581, -6.420013508241691], + [-73.10877814599263, -6.410584817829138], + [-73.11679192167239, -6.39489561792829], + [-73.13331992579674, -6.387389103315821], + [-73.13903956938641, -6.363120308811749], + [-73.14532373704117, -6.35631494916369], + [-73.15087881378673, -6.321729147604117], + [-73.1580666179257, -6.327289285773008], + [-73.16084234604219, -6.318109486315917], + [-73.16137499931096, -6.299081947525142], + [-73.16587029616997, -6.290665086938637], + [-73.16185639725339, -6.283031685896026], + [-73.16528710073595, -6.274233039381691], + [-73.18495778854704, -6.257057658545021], + [-73.19273381401001, -6.256329208354375], + [-73.19756747004554, -6.239704127668929], + [-73.20889773657554, -6.22659501678375], + [-73.21901250525649, -6.221720182752138], + [-73.21798329377157, -6.186702916365562], + [-73.22032084257944, -6.178559657422631], + [-73.25004112158415, -6.1449656922302625], + [-73.2524532672175, -6.129905665813372], + [-73.25058960960367, -6.104942882834573], + [-73.23496454197164, -6.085868105931823], + [-73.23952818337575, -6.0795660667029185], + [-73.23156984562654, -6.07359695231707], + [-73.23726081820855, -6.032216167930879], + [-73.22981284883322, -6.030794567919133], + [-73.21767757246337, -6.0198111581704525], + [-73.21595063763186, -6.011857313633042], + [-73.21000417398164, -6.005064199551644], + [-73.20242524215273, -6.005340244136652], + [-73.18881513505, -5.999260915877512], + [-73.19389138458442, -5.984324824966897], + [-73.1815727980887, -5.962812751568901], + [-73.18645887389332, -5.955636488007521], + [-73.18764116194247, -5.938812439171629], + [-73.18275409502607, -5.932615179606476], + [-73.18131402919816, -5.922993209298522], + [-73.17351122184162, -5.923925895952009], + [-73.17403074864663, -5.91556421167259], + [-73.16809889196313, -5.909350240584462], + [-73.16976010874224, -5.8928128959963315], + [-73.15565764574283, -5.882579358714616], + [-73.16091344819544, -5.87664649955403], + [-73.1567555722445, -5.869440731285143], + [-73.15083674375477, -5.863473602895823], + [-73.14300665908972, -5.863696379842871], + [-73.13742545221119, -5.858578159580726], + [-73.11445072454964, -5.853774544946652], + [-73.11684272095064, -5.828623627013628], + [-73.11003716379255, -5.8242491475740366], + [-73.09331393389346, -5.82173139100982], + [-73.09544895876307, -5.81334838912265], + [-73.07903830321699, -5.8060518074714516], + [-73.06383902308073, -5.7893056811697345], + [-73.05528170451205, -5.789134090771864], + [-73.05580665940431, -5.7719018875056465], + [-73.04942091353841, -5.766056398236446], + [-73.0473369312822, -5.756099449165352], + [-73.04231237673143, -5.749048042222882], + [-73.03450720217786, -5.750628308322533], + [-73.02675559796396, -5.745295181225439], + [-73.02039528064371, -5.739538561926703], + [-73.02147707969831, -5.731957884391187], + [-73.00267758384845, -5.7214246122376755], + [-72.99851413742685, -5.714760992487583], + [-73.00377044319265, -5.708270322763915], + [-72.99198345501162, -5.703802461304085], + [-72.99250285246727, -5.6958285214911495], + [-72.98479342759137, -5.694327152415006], + [-72.9870834093176, -5.681855155940773], + [-72.98603607867341, -5.677343969639848], + [-72.99017156947072, -5.669379274881612], + [-72.98606008217281, -5.662331580214005], + [-72.97153142581878, -5.657265677464929], + [-72.96500260445096, -5.66172844204062], + [-72.96156923958603, -5.654601835480234], + [-72.96580988813983, -5.645405918281844], + [-72.96708709599407, -5.629611310377223], + [-72.97428071929197, -5.624091256349895], + [-72.97300502235774, -5.608139339174909], + [-72.9661732683284, -5.5932300485756326], + [-72.95084388385001, -5.584361016645184], + [-72.9583248719712, -5.570837145723243], + [-72.95176226314541, -5.566226947284704], + [-72.95700338653766, -5.556792256583291], + [-72.95356003841104, -5.5401718240702955], + [-72.9603122324928, -5.52351772076471], + [-72.9635572079564, -5.498127830266242], + [-72.95781371671255, -5.492033132613973], + [-72.95670022936729, -5.465430832115499], + [-72.94823215851996, -5.451881218304509], + [-72.9507703761757, -5.444728517283261], + [-72.94228333250793, -5.441501765442248], + [-72.93569038814483, -5.4187679276409675], + [-72.92919884606542, -5.413145785982468], + [-72.9289226870332, -5.405500594757251], + [-72.92022520169935, -5.390255654830157], + [-72.92052876921296, -5.382439450642421], + [-72.90680774860174, -5.3751522453645135], + [-72.90911109260108, -5.366077257503252], + [-72.89853110672217, -5.346211307331613], + [-72.89844515322078, -5.337055054206628], + [-72.8859426208506, -5.323330052807708], + [-72.88818645813336, -5.313307503618135], + [-72.87969404487522, -5.310870360585073], + [-72.86989747537508, -5.299373255431078], + [-72.87551785982996, -5.293441713632856], + [-72.8686955548195, -5.2891296182254655], + [-72.86408749989495, -5.273299707344856], + [-72.86892151409674, -5.266469725592749], + [-72.8714709084383, -5.253200318186706], + [-72.86331101050735, -5.239815379055146], + [-72.8668360401197, -5.232936166047406], + [-72.86364405071531, -5.217159045118448], + [-72.86561333049485, -5.209845666097954], + [-72.87351898736016, -5.206714941028148], + [-72.86872725156316, -5.199848027784868], + [-72.8768355511496, -5.185638834829736], + [-72.87714203166364, -5.177593283391986], + [-72.88419784379812, -5.174758365742136], + [-72.88485599925642, -5.16683883456779], + [-72.87702677495491, -5.162582695557456], + [-72.87286052247127, -5.156094621192692], + [-72.86489244296197, -5.155749057423588], + [-72.8560549992227, -5.14357166437531], + [-72.84744478406837, -5.142607337655406], + [-72.84330485932317, -5.149996069778587], + [-72.82208333293144, -5.142108767343206], + [-72.81580410904915, -5.138513438579084], + [-72.8156111399865, -5.134658365154401], + [-72.81436747723602, -5.109760103285444], + [-72.79830575671565, -5.115221559436485], + [-72.78255745838558, -5.112547324016679], + [-72.7801975433571, -5.10349618375119], + [-72.77399855874813, -5.098889840369686], + [-72.76599804805717, -5.1036985752887585], + [-72.76008399785238, -5.098183086046743], + [-72.75346720000677, -5.082795782461636], + [-72.7390572194486, -5.0915219879447715], + [-72.73675093089878, -5.082812987556822], + [-72.73001177472106, -5.078086268790792], + [-72.73561010100231, -5.072269920401195], + [-72.73408175166786, -5.064137779749417], + [-72.72561450814324, -5.065546138050108], + [-72.72072206456514, -5.059066326105652], + [-72.71224907425339, -5.059008379434901], + [-72.70733170604771, -5.052919344821495], + [-72.6919147144259, -5.064629510569883], + [-72.67827938338299, -5.054910945417452], + [-72.66778078194518, -5.055205760375653], + [-72.65244330221745, -5.063721923699102], + [-72.64853191878738, -5.054302924682065], + [-72.64127869336049, -5.050159238642612], + [-72.63953167511674, -5.058096492136485], + [-72.6293097648639, -5.052043526609399], + [-72.61089025297073, -5.0372590705010465], + [-72.60930275667639, -5.016705466098129], + [-72.60288953987656, -5.010971406195637], + [-72.60211488772768, -5.002872657672513], + [-72.60646769730181, -4.9956000006374275], + [-72.59241979563805, -4.991667332815997], + [-72.58627931147343, -4.985249768878784], + [-72.57725127498293, -4.985359827293333], + [-72.56941936791866, -4.981499215568333], + [-72.54747333739823, -4.958527042971457], + [-72.53896978665009, -4.961760922948861], + [-72.52785496956946, -4.958187620349196], + [-72.52166869253053, -4.936990753885875], + [-72.50553008828174, -4.9421845967807325], + [-72.50841744848148, -4.9507217030652715], + [-72.49792110003419, -4.953953349151441], + [-72.49047583117964, -4.9369539741323765], + [-72.4849782974235, -4.942645179136138], + [-72.48849619953165, -4.950597294002536], + [-72.48147490261398, -4.953601695353461], + [-72.4758950269756, -4.9458071466501465], + [-72.47653219072293, -4.92944920005623], + [-72.45792180958891, -4.925583647378706], + [-72.45766905565944, -4.915234484167763], + [-72.46562483555434, -4.907564489684424], + [-72.46874658472657, -4.903545371580988], + [-72.4639479618704, -4.896450742977298], + [-72.45486463521533, -4.895711037198786], + [-72.45197373267119, -4.9037699608625855], + [-72.44408852814905, -4.901554855560161], + [-72.4412388631681, -4.908205198795742], + [-72.43300914934333, -4.911358706950083], + [-72.43014289381382, -4.902880459573574], + [-72.41958824553431, -4.897835811654223], + [-72.42028184889298, -4.887765225846412], + [-72.42690879736024, -4.88115363467192], + [-72.41858504076599, -4.878202651482509], + [-72.4122270641874, -4.884923460672196], + [-72.39889383425722, -4.875205766033826], + [-72.38548412127965, -4.872295661218091], + [-72.3846388845832, -4.851042495110246], + [-72.38119840771961, -4.8442726027848595], + [-72.38332428840245, -4.831361195536299], + [-72.37599930336671, -4.827652387782918], + [-72.37145026295356, -4.807383667381543], + [-72.34764327599594, -4.806365571037998], + [-72.33673078750301, -4.797385137309594], + [-72.3239191107129, -4.796879168087437], + [-72.32347521772768, -4.787708450021171], + [-72.32749900092584, -4.781227975844546], + [-72.32047886533131, -4.777875358804962], + [-72.3082891953365, -4.783550667821411], + [-72.29955844861875, -4.776186146354603], + [-72.27745010703173, -4.783789502420941], + [-72.28291750413241, -4.7906585129702925], + [-72.28003094885621, -4.798722121230168], + [-72.27141930068495, -4.795939628562945], + [-72.25397648047638, -4.765466128270757], + [-72.24703203851682, -4.780961686061194], + [-72.2312560758402, -4.776863230114123], + [-72.2163373398499, -4.76794572570196], + [-72.21438397184623, -4.756967563838301], + [-72.2059772711994, -4.751247536531418], + [-72.19225399852711, -4.76202509435453], + [-72.18781601429124, -4.754059276547776], + [-72.19271488339845, -4.74667444587181], + [-72.1692801318139, -4.7349212598316885], + [-72.16125638467321, -4.736497407514058], + [-72.1602008558137, -4.728011896710095], + [-72.1455871709299, -4.721583308661338], + [-72.14103615274935, -4.713739534901578], + [-72.1269421363278, -4.723363796620083], + [-72.1154957271385, -4.713876022199504], + [-72.10014722971438, -4.70321181949278], + [-72.09083966373228, -4.688886141787483], + [-72.07667949873921, -4.679556441526296], + [-72.08194707682628, -4.672740973900926], + [-72.06242290242567, -4.653492600393502], + [-72.04511591314291, -4.651777228049152], + [-72.03736883788072, -4.637318555884679], + [-72.03913277904827, -4.623257219128916], + [-72.0181452986552, -4.6315496811604895], + [-72.01353644223624, -4.638254929938629], + [-72.00570213636064, -4.641694292309205], + [-72.00492357724572, -4.63230242725542], + [-72.00045054704887, -4.625926610335269], + [-71.98433539819791, -4.625446973142844], + [-71.97659004852608, -4.608130089958911], + [-71.9693944594176, -4.605280681741624], + [-71.96203338016572, -4.608179922668413], + [-71.94526263655692, -4.604921552285136], + [-71.94975095309827, -4.597706770717524], + [-71.94152991675828, -4.593321879887808], + [-71.94683990531948, -4.584709666115702], + [-71.94599997585375, -4.575793077775948], + [-71.93622632632018, -4.576937215531089], + [-71.92989558570443, -4.571220134047931], + [-71.93197422560435, -4.56152093009167], + [-71.92302988316176, -4.562591035654574], + [-71.9214797544763, -4.554890585127539], + [-71.92680238939819, -4.545149622400291], + [-71.91092332520711, -4.5393424429443865], + [-71.91006235150282, -4.5489876055621385], + [-71.90236975706894, -4.543928776655869], + [-71.90385708519507, -4.5282355555081955], + [-71.89339726134384, -4.538330479664617], + [-71.88523284851087, -4.5338372504154245], + [-71.88892192720215, -4.521678224011107], + [-71.88270340163285, -4.5161921752242495], + [-71.86803264886345, -4.526826339956374], + [-71.85625767575479, -4.513187833698677], + [-71.83871505087949, -4.50532645407605], + [-71.81098069610181, -4.49770284519055], + [-71.80036792623687, -4.490915069846644], + [-71.78875884736814, -4.4913406507461415], + [-71.77684023731594, -4.487567821034852], + [-71.7713973607295, -4.49532618002337], + [-71.772198134666, -4.5050598993800754], + [-71.76103752988665, -4.503607775315201], + [-71.75170120539656, -4.495376108557939], + [-71.74975695664526, -4.4868132348798495], + [-71.75502770442067, -4.477295933801849], + [-71.74836834022801, -4.472595844271475], + [-71.7409816362053, -4.485539058403347], + [-71.73934136546588, -4.497466589958328], + [-71.72825905359893, -4.498995691097161], + [-71.71475733866869, -4.512273499130105], + [-71.70414595284565, -4.513069695405021], + [-71.68987164047503, -4.502100829261336], + [-71.67100856061847, -4.509761557207021], + [-71.65473981947274, -4.495575356454742], + [-71.65375940048727, -4.508265665565731], + [-71.62678992374147, -4.4913530058981195], + [-71.6300928340543, -4.483073667217134], + [-71.62631577481415, -4.474986816096224], + [-71.61920255608294, -4.470261765697837], + [-71.61398127190601, -4.479316987008523], + [-71.61559334551202, -4.486815936129099], + [-71.62409439724635, -4.507018724626463], + [-71.63414687150997, -4.510927954592041], + [-71.6340085964891, -4.519196330418399], + [-71.62634864524604, -4.525759506960608], + [-71.61439848200324, -4.533520814397819], + [-71.60408666440263, -4.533693453133727], + [-71.58253738767729, -4.520217885884172], + [-71.56945533274788, -4.507290629116666], + [-71.55431616390851, -4.481091981736412], + [-71.54176097263205, -4.48434537392439], + [-71.5420374979112, -4.473889191037161], + [-71.53737160143167, -4.4673875772445095], + [-71.52150397631742, -4.468610740961451], + [-71.50256681166448, -4.486899673644133], + [-71.49467705677353, -4.487422643260125], + [-71.49448201239149, -4.478664372152332], + [-71.50709422902789, -4.465546888790425], + [-71.50928381660731, -4.448359179351811], + [-71.49781503846071, -4.449601486434501], + [-71.48914736157806, -4.459978673938311], + [-71.4802619131991, -4.455064946161841], + [-71.48122634901401, -4.443139723946456], + [-71.47303795781318, -4.43966129682748], + [-71.45979403701361, -4.43946482136584], + [-71.44973446679145, -4.451872396058687], + [-71.43725911535486, -4.451343359105612], + [-71.43670611722295, -4.460556845148874], + [-71.43067681680365, -4.466674540598921], + [-71.41764841181025, -4.4662450903974], + [-71.4095547848455, -4.451942854602069], + [-71.40217728546486, -4.438125632536364], + [-71.38856790806337, -4.428185489292517], + [-71.36981744648439, -4.4357984140150775], + [-71.35930940908123, -4.433713492092375], + [-71.35376169452326, -4.42798733003332], + [-71.34698287615234, -4.434368365055595], + [-71.3452920451782, -4.444769611190776], + [-71.33590224552911, -4.4422338684013285], + [-71.31979348327641, -4.444553490130582], + [-71.31376353711791, -4.449131872985451], + [-71.31445732823803, -4.458583262340483], + [-71.30307227461005, -4.4517236236636535], + [-71.30729263133466, -4.440400937876134], + [-71.31803833537495, -4.432984353547483], + [-71.32378257878811, -4.42166425681347], + [-71.31012159497263, -4.417725791552986], + [-71.29812576145699, -4.437529441006574], + [-71.28587331042009, -4.443003660065107], + [-71.26640589568281, -4.428743084807604], + [-71.27140103846597, -4.397028503754186], + [-71.27792342391061, -4.3880493649353705], + [-71.2688719550089, -4.38636704773375], + [-71.2510932152674, -4.3913290740479445], + [-71.23895909474888, -4.387179036117289], + [-71.2287344332284, -4.387747606521618], + [-71.23037072452969, -4.407793796219677], + [-71.22059482978658, -4.405597825927851], + [-71.2196543426545, -4.38736654217885], + [-71.21449428783764, -4.379990743222489], + [-71.20692980331475, -4.379866566665297], + [-71.20204364712392, -4.389038686636515], + [-71.2088418575955, -4.400433401040022], + [-71.20123481930457, -4.426068833124255], + [-71.18865185147918, -4.414708377037125], + [-71.18917337965173, -4.399087057897274], + [-71.18465478925528, -4.392707081375621], + [-71.17284777522262, -4.395691648753208], + [-71.16706818160304, -4.390588779853775], + [-71.1604328779636, -4.395102358084139], + [-71.1601544363392, -4.406141812198143], + [-71.15018181938285, -4.399910637260985], + [-71.15362512343157, -4.383135733522256], + [-71.13776155666501, -4.3866434942748604], + [-71.11748450235274, -4.410547315489299], + [-71.10923897710578, -4.401339247438065], + [-71.11076499815283, -4.384197024441144], + [-71.10034988693475, -4.377399053486804], + [-71.08845839373001, -4.375741033818146], + [-71.07954523524056, -4.379833043387835], + [-71.08598016961363, -4.390030744057193], + [-71.07937764631843, -4.396310576483419], + [-71.05848723100789, -4.386663809709992], + [-71.05703943491585, -4.3733552429058795], + [-71.04795755209587, -4.375010223533069], + [-71.0503161450662, -4.3957459181184815], + [-71.04309933846103, -4.401008584371409], + [-71.03065488421505, -4.397074079158258], + [-71.023849351837, -4.3848794584082516], + [-71.01612821385265, -4.3838325628579895], + [-71.00734681016225, -4.387753761054191], + [-70.99551573917107, -4.384510800444177], + [-70.98829245191673, -4.369699758827427], + [-70.98934808216559, -4.362013307851491], + [-70.99989968448419, -4.354589225797636], + [-70.99662582976313, -4.345216455830988], + [-70.98468182272413, -4.352448418204418], + [-70.97634656367465, -4.362943209425352], + [-70.97298984480308, -4.375706627895939], + [-70.94918442421172, -4.379518372256583], + [-70.94287853359026, -4.385868148752261], + [-70.93676733301311, -4.375225920939737], + [-70.93703724637344, -4.3637404403731725], + [-70.9316537471565, -4.356498824170696], + [-70.92493327626853, -4.361860518184527], + [-70.91531764844129, -4.3540387261246565], + [-70.90865481086547, -4.33324559834235], + [-70.89970859512155, -4.3245925601794575], + [-70.87988130998514, -4.3227686403070065], + [-70.88328398261021, -4.300769406426595], + [-70.87929006098582, -4.292586832332399], + [-70.84970890534315, -4.278658486561388], + [-70.86569608113341, -4.26011786438993], + [-70.8684824516346, -4.250608942403331], + [-70.85621144415568, -4.247639577832763], + [-70.84396235362296, -4.253954175268574], + [-70.83270817214073, -4.250241570534733], + [-70.8303774391766, -4.240264332096319], + [-70.82009995332997, -4.232272591071538], + [-70.83001805105125, -4.2189338641711585], + [-70.82548991454078, -4.202998859519107], + [-70.81271156597543, -4.196508314081073], + [-70.80798865993279, -4.183536814264932], + [-70.7913212315563, -4.186124331563905], + [-70.77568052481581, -4.166740249801711], + [-70.76773784141729, -4.161211406939787], + [-70.75882395851536, -4.1599762806089045], + [-70.74832116289218, -4.1652946038149405], + [-70.72976435989308, -4.184448037535318], + [-70.71973925790732, -4.187956331286435], + [-70.70076741368382, -4.188415657042889], + [-70.69247612816788, -4.199086813887577], + [-70.68085187765203, -4.1997958006218585], + [-70.67604680189142, -4.190109094749513], + [-70.67251744460111, -4.167071764531629], + [-70.67510107956235, -4.145019761704071], + [-70.66557211622549, -4.146656703881777], + [-70.6632942067227, -4.158694589809203], + [-70.65559637116333, -4.166985727566174], + [-70.65331700035148, -4.127198573498526], + [-70.63148821166092, -4.12677107426847], + [-70.62376721433189, -4.131775547037085], + [-70.62593111666142, -4.143120915752226], + [-70.6387076283691, -4.166269458228858], + [-70.63862983577769, -4.179611217002989], + [-70.62476581229652, -4.192797394413154], + [-70.60448893138253, -4.187798486330843], + [-70.57965846823417, -4.173120787787602], + [-70.56510016676935, -4.16909765229857], + [-70.56146374256853, -4.161575384418424], + [-70.54601950665327, -4.150106771905529], + [-70.54915395082139, -4.137188329574889], + [-70.52077066580492, -4.142683215439085], + [-70.50929691713435, -4.163557518969458], + [-70.52137357112812, -4.19088997919017], + [-70.51507573760499, -4.196204805625495], + [-70.50326976518278, -4.197138584937599], + [-70.49501850867242, -4.166303087797124], + [-70.48754588248798, -4.161884460213725], + [-70.47313136403795, -4.177376254863861], + [-70.46340938959459, -4.1731425372410405], + [-70.46051851936998, -4.162863301101151], + [-70.44343529911849, -4.165301005835529], + [-70.43727118131036, -4.158604535917532], + [-70.44654156064742, -4.141904082382723], + [-70.43932447397154, -4.134145666520477], + [-70.41899046321218, -4.140457005878577], + [-70.39609900468997, -4.142308843177031], + [-70.38698914509769, -4.137675664894016], + [-70.37565704982842, -4.141827131471478], + [-70.36107300632021, -4.169490249883651], + [-70.35118736932131, -4.180821056073889], + [-70.3406319177058, -4.186834215141145], + [-70.3323543137094, -4.178397480848358], + [-70.32952310657218, -4.168054583403215], + [-70.33168088742158, -4.156323019827161], + [-70.32585420392755, -4.14629576753707], + [-70.31240721554009, -4.162800260536355], + [-70.29865710526953, -4.166064669242448], + [-70.29218594383916, -4.17652035399064], + [-70.29496423563764, -4.200547466016238], + [-70.28471703810764, -4.233845583825069], + [-70.29029826810657, -4.24134019369803], + [-70.31262075786762, -4.250298494493863], + [-70.31573901502252, -4.259506325984153], + [-70.28941669026024, -4.282316578409751], + [-70.29817683857718, -4.29074772076165], + [-70.28649263418413, -4.295305653358737], + [-70.2554394825407, -4.277685269686917], + [-70.2501341862449, -4.287111288184167], + [-70.25690213866555, -4.296005925450682], + [-70.27257921754146, -4.301060838194392], + [-70.26665812421568, -4.312024526015611], + [-70.25532529524608, -4.318438229359332], + [-70.23410552861792, -4.323219792165721], + [-70.22227078387736, -4.324320203186645], + [-70.21638008087473, -4.319095736968086], + [-70.20877450993335, -4.328145595769235], + [-70.20613890608087, -4.354218834021856], + [-70.20552291178863, -4.360995328542234], + [-70.19891285066927, -4.366417882205402], + [-70.18893594598352, -4.36568918046998], + [-70.18002302278524, -4.358101470510098], + [-70.1780778167371, -4.34714199309255], + [-70.16991110046014, -4.340912874453132], + [-70.15221941265544, -4.335587270201901], + [-70.15216960708663, -4.325688558343272], + [-70.16796541219263, -4.314765013432429], + [-70.15807837168512, -4.284447287015734], + [-70.15160482255123, -4.280187562971124], + [-70.13571967204717, -4.287823126760962], + [-70.12855170944454, -4.293698715300142], + [-70.1193803271733, -4.290354596266622], + [-70.11268924576277, -4.283265394555296], + [-70.11337462893466, -4.271200960812818], + [-70.1076883481437, -4.264457831679877], + [-70.10307995823558, -4.288586070576301], + [-70.09749348950034, -4.296617707311583], + [-70.08143860072144, -4.292023702307932], + [-70.07127426457545, -4.2968456132429145], + [-70.08109806713806, -4.308433200715982], + [-70.07913442749108, -4.324975172938045], + [-70.07264069196168, -4.329435597396075], + [-70.04999938968766, -4.334621643776624], + [-70.04430106291846, -4.342980502100803], + [-70.0435221065637, -4.3523816608361185], + [-70.03944388125191, -4.3534227705615915], + [-70.03260739740206, -4.355168088779309], + [-70.01121675388066, -4.336628130288784], + [-69.98077600428414, -4.327426542272863], + [-69.96363619591087, -4.300646750784437], + [-69.95468821788698, -4.266331061624275], + [-69.95369364802882, -4.253426831915953], + [-69.95107219344509, -4.227072497679214], + [-69.94551511148605, -4.219497425545478], + [-69.94338400911451, -4.216592073594626], + [-69.93499485690526, -4.216470533365406], + [-69.92115311733323, -4.144025087224403], + [-69.91213533470531, -4.0967428240706605], + [-69.88328569279443, -3.942031578946733], + [-69.85843045191184, -3.803649349246733], + [-69.83748849044756, -3.686585057971329], + [-69.82537699638556, -3.620386485277116], + [-69.79856404431773, -3.47438243362675], + [-69.74231729445262, -3.165972022390992], + [-69.68934998897909, -2.8716550472891114], + [-69.62072592545645, -2.4829984575001753], + [-69.61322608859095, -2.4402378630099895], + [-69.51664393562724, -1.8997834829605156], + [-69.45313180986537, -1.5314392651413289], + [-69.45364842196518, -1.5211108917649594], + [-69.45730547363267, -1.493459356583473], + [-69.45015555267359, -1.4790240845093188], + [-69.44082544576757, -1.4710572816895895], + [-69.4351372884417, -1.4578773759761756], + [-69.43694275874847, -1.4174489955664173], + [-69.43429735516985, -1.398268522108356], + [-69.428702210761, -1.3865979277611793], + [-69.41801703434089, -1.3781593062240398], + [-69.39979787855542, -1.3707092593784456], + [-69.3997874047762, -1.3675973732117768], + [-69.39974250135892, -1.3539193809479115], + [-69.40921904988112, -1.3338131032884575], + [-69.40843382565413, -1.2931966600785625], + [-69.41099608676416, -1.2817475769176334], + [-69.42535829758194, -1.2571795278941658], + [-69.43107185449833, -1.2330279633224113], + [-69.42563288088793, -1.2107200103667857], + [-69.41399351329274, -1.186751649473425], + [-69.41304805252811, -1.1577040121170632], + [-69.39818728235893, -1.1443859236507532], + [-69.39551565194026, -1.1325828596612686], + [-69.40069059591139, -1.1139345309558448], + [-69.4248800688287, -1.083609036050065], + [-69.4273157673467, -1.075773715165432], + [-69.42413070006934, -1.0494588314702025], + [-69.43324609051561, -1.0398532343410738], + [-69.44321085084724, -1.0365847881632526], + [-69.44395921053734, -1.0278564124015837], + [-69.43640756381195, -1.02692417432154], + [-69.42826747320508, -1.015706414407899], + [-69.42082916279472, -1.012189436366483], + [-69.42146516141683, -1.0004146281728086], + [-69.44077020726073, -0.9945934877596966], + [-69.44993398370595, -0.9982686107765164], + [-69.46396378292341, -0.9842096297669582], + [-69.46338066454344, -0.9673224955738847], + [-69.4847411803484, -0.9505738302850136], + [-69.50198967588294, -0.9425535540571972], + [-69.50779505821063, -0.932934035356916], + [-69.5162444721609, -0.9336576387903995], + [-69.52335045374129, -0.9297182239660504], + [-69.52717988693202, -0.9219389271346787], + [-69.52307132292857, -0.8862568644119366], + [-69.52778630883701, -0.8782488850097424], + [-69.53832287903084, -0.8619662083304023], + [-69.54796668217429, -0.860941798692225], + [-69.57352122034219, -0.8421974625094379], + [-69.55940164961595, -0.8229456107918508], + [-69.56290728269518, -0.8122747675683079], + [-69.5740136370613, -0.8010723082426053], + [-69.58368349507991, -0.8016366092956707], + [-69.58820609687831, -0.7909322049296064], + [-69.61187847194327, -0.7701834804790522], + [-69.60973609416811, -0.7615505414297739], + [-69.61970752953209, -0.7591713996896209], + [-69.61638057432766, -0.7505235829617053], + [-69.62617909550369, -0.7497313089931157], + [-69.6179648854859, -0.7409642881098909], + [-69.62240545763983, -0.7321260537661901], + [-69.61187366155512, -0.7237137727458355], + [-69.60368148702571, -0.7217096664153664], + [-69.6051559353466, -0.7140230833694853], + [-69.60223865780488, -0.70690884857767], + [-69.58504872183957, -0.6843900769765827], + [-69.58187509619384, -0.6669084227267602], + [-69.57360147557961, -0.6498172762398884], + [-69.56409963323459, -0.6397897814160204], + [-69.57506717760684, -0.6366883339294843], + [-69.57309428933858, -0.6260736692332853], + [-69.57987628535327, -0.6202017978695216], + [-69.58807067294853, -0.622733994451976], + [-69.59457120492115, -0.6064367229044252], + [-69.6047639762302, -0.5999829469226206], + [-69.59804175561311, -0.5891364178156148], + [-69.59363872841276, -0.5695468887061608], + [-69.59598407095191, -0.5596023876183452], + [-69.60332468429382, -0.5536803361905293], + [-69.60612205069467, -0.5448756645294717], + [-69.61449165680649, -0.5403231525022424], + [-69.61090140310877, -0.5134334780430913], + [-69.61526763068048, -0.5062841338158404], + [-69.63312552492813, -0.49844945697813353], + [-69.64356715350624, -0.49964497668743124], + [-69.64479404765699, -0.48300032195536696], + [-69.67034243038319, -0.47163061717230337], + [-69.68612026479083, -0.4690332327040773], + [-69.69098330249923, -0.4624604776548061], + [-69.71753963093758, -0.45511911500751023], + [-69.73307010923347, -0.4461808054132067], + [-69.73904049257493, -0.4404093009238958], + [-69.74226111278303, -0.4299117726427047], + [-69.74948691336431, -0.4271617037916293], + [-69.76187704616265, -0.4107065493856982], + [-69.77512459509325, -0.40026255654135984], + [-69.79186757533121, -0.4002297557343105], + [-69.79387301445225, -0.39164608882406154], + [-69.81373317716735, -0.38122008906308336], + [-69.82334304491691, -0.38099318460090403], + [-69.84467987574276, -0.3457790386347839], + [-69.86186899886043, -0.3482401063546409], + [-69.88323253382795, -0.34434917125046094], + [-69.89231383780721, -0.34915892521448233], + [-69.92295457634111, -0.3314981474353878], + [-69.93386949732434, -0.31661157750429386], + [-69.93703456119879, -0.30633442139569345], + [-69.94812146733662, -0.301479848015796], + [-69.95353353695691, -0.29214146013332937], + [-69.96362029972963, -0.284946306864438], + [-69.98119980139408, -0.2586469889732664], + [-69.99006814465797, -0.2517255591263074], + [-69.99695470036795, -0.23475495806243235], + [-70.0572248461755, -0.18676067326198292], + [-70.05790091012007, -0.15829268064894056], + [-70.04847796888139, -0.14573485920152693], + [-70.04145475894215, -0.12413466309769439], + [-70.04594856319304, -0.01667078089593294], + [-70.04614510507531, 0.06832636037346745], + [-70.04623213143209, 0.10908961791275759], + [-70.0454902854917, 0.24741063762130525], + [-70.0443121789718, 0.45736890118217477], + [-70.04335328749683, 0.5588465200085592], + [-70.0353544059246, 0.5614388447673454], + [-70.0262426448913, 0.5579653006753903], + [-70.02288012558869, 0.5435266345093741], + [-70.01577173869082, 0.5392751314541859], + [-70.00401412935261, 0.540938602534875], + [-69.99495643842042, 0.5477236193216588], + [-69.99123781109053, 0.5609898947550735], + [-69.99887539593779, 0.5702017988163309], + [-69.97115058808907, 0.5708946577826982], + [-69.96601168564601, 0.561163123084763], + [-69.94217481133668, 0.5543149685814067], + [-69.92539344849855, 0.5649784772847948], + [-69.91461607446158, 0.5852923965280928], + [-69.90648231517433, 0.5812160500316371], + [-69.8952302933926, 0.5830508735062729], + [-69.88711301097739, 0.5749505703718019], + [-69.86028047231993, 0.5798360739040751], + [-69.84772194803148, 0.5868980269790092], + [-69.83758684480176, 0.5835103632125511], + [-69.83138812199509, 0.5900374087906983], + [-69.81908375947181, 0.5858229386015943], + [-69.81294030734676, 0.58282708252903], + [-69.80921806143161, 0.5722241120842306], + [-69.79188086029451, 0.5858976565906997], + [-69.78585306535801, 0.595592946247019], + [-69.76396830318221, 0.6054347384477999], + [-69.75002089141203, 0.6220992477497763], + [-69.73999038624896, 0.6148566659947833], + [-69.72501898887153, 0.6168819348776009], + [-69.72141136404016, 0.6264380419730146], + [-69.71782250177229, 0.6430324920511064], + [-69.69945407116613, 0.6528695274604961], + [-69.69156543202809, 0.6534137789043237], + [-69.69057105638359, 0.6654981786246903], + [-69.67959154604355, 0.6705957518593025], + [-69.65617067303045, 0.6660622241138251], + [-69.64789703728371, 0.660867465649341], + [-69.63439676049948, 0.6364120763426111], + [-69.62675292595358, 0.6365270435746485], + [-69.61853750391435, 0.6295291515677248], + [-69.60658655797361, 0.6292301027910544], + [-69.6054750770275, 0.6388356332503672], + [-69.59455799843545, 0.6387903244806126], + [-69.59082944364239, 0.6590351852074584], + [-69.56656100584495, 0.6725036587655039], + [-69.5662763467916, 0.6840783921376303], + [-69.53922147222424, 0.6820655564948674], + [-69.53385786714898, 0.683611240647432], + [-69.53474875717384, 0.6999849357866322], + [-69.5276667258245, 0.7076459831254022], + [-69.51933183630481, 0.7135123530785765], + [-69.51010986702167, 0.7124358120489753], + [-69.50571911896643, 0.7212030146348337], + [-69.49770977037103, 0.7278413181840179], + [-69.48126793703248, 0.73563211330575], + [-69.46918212506712, 0.7351687112658043], + [-69.46237776952064, 0.7290220483537397], + [-69.4592132458337, 0.715652423763037], + [-69.44592887592808, 0.7143358529793807], + [-69.43737861223494, 0.7097387223187899], + [-69.43693179250056, 0.694382392526499], + [-69.4200374553798, 0.685269786387198], + [-69.40981488193313, 0.6747572325643963], + [-69.40881914472146, 0.6611169971630997], + [-69.36864532826395, 0.6275388910100932], + [-69.35884113535535, 0.61186684771709], + [-69.35197850621273, 0.6152394468632809], + [-69.34150310961385, 0.6275537404771009], + [-69.34037061662414, 0.6393182239239054], + [-69.32505886666368, 0.6327659659860623], + [-69.31133607762351, 0.6374533325518869], + [-69.30153402197048, 0.6492529232645813], + [-69.28736542559102, 0.6464720084119272], + [-69.29236301365451, 0.6352051475459705], + [-69.28589338788589, 0.619597947759011], + [-69.29805528011097, 0.6034122561768013], + [-69.27599889925978, 0.6031461673899248], + [-69.26558199772339, 0.6083360470900266], + [-69.25488929508525, 0.6044229518635067], + [-69.24391295667617, 0.6087564721643892], + [-69.23874815067119, 0.6024166898693463], + [-69.21260583030565, 0.6096392718980308], + [-69.20349146295463, 0.6053767509201108], + [-69.20035436474063, 0.6172448566178146], + [-69.20146527541829, 0.6315022921954134], + [-69.19560835601082, 0.6373659135803353], + [-69.19301821484525, 0.65155234550228], + [-69.18057863176728, 0.6559818369608932], + [-69.17060148755473, 0.6516365960104943], + [-69.15654895882788, 0.6512602831859994], + [-69.14495879881412, 0.6449436793572214], + [-69.13340802827568, 0.6462763977235648], + [-69.12773809813791, 0.6401951720000298], + [-69.11660234768452, 0.6355080136879658], + [-69.11495656607082, 0.6498696661779468], + [-69.1443490769251, 0.7025291088112422], + [-69.16618229135018, 0.7189399886424989], + [-69.18015379276933, 0.7244668799714453], + [-69.18598817582507, 0.7332072273389074], + [-69.18713116734841, 0.7492695734247182], + [-69.17268380144765, 0.7630811467196283], + [-69.16088216658318, 0.7602126524785787], + [-69.15221209150437, 0.7653198627644409], + [-69.14481798596941, 0.7830578766720213], + [-69.15128940919223, 0.8098416391503342], + [-69.1598532709204, 0.8174509263043925], + [-69.16570865043654, 0.8285089533025798], + [-69.16590861644279, 0.8518816365952129], + [-69.15387940297502, 0.85425947857509], + [-69.14204682895138, 0.8523426896311602], + [-69.13628844457843, 0.8636310392638945], + [-69.13562508387474, 0.8772143551104946], + [-69.14384715241479, 0.8862837656160556], + [-69.15429623595806, 0.8881186487259343], + [-69.17162530538185, 0.9027250990552109], + [-69.1849053682646, 0.9028283044252678], + [-69.18457481705923, 0.9154614160000691], + [-69.18934922209775, 0.9225676175587548], + [-69.19043521185293, 0.9326133972469456], + [-69.18579168720879, 0.9392575611715197], + [-69.16318811201009, 0.9459951220877446], + [-69.17329648380823, 0.9598607433530213], + [-69.20593235109807, 0.9723090274496133], + [-69.22035802837722, 0.9850291677047287], + [-69.20338272440813, 0.999644727086741], + [-69.20566040768458, 1.0101146869961697], + [-69.2142386043599, 1.0213301056622255], + [-69.26514996067174, 1.064387872657807], + [-69.27741682473881, 1.0668887795027246], + [-69.28960101696862, 1.0624337994470585], + [-69.2953963503882, 1.0702993290892187], + [-69.30631454615651, 1.07117344937233], + [-69.30804702670834, 1.079149703088101], + [-69.32137158947322, 1.0957223590467746], + [-69.3488094595373, 1.0936574759249291], + [-69.36104794885526, 1.0881719833582135], + [-69.3793432858579, 1.0953511890919596], + [-69.38578125140857, 1.082607032191569], + [-69.41630116625332, 1.0523786921081122], + [-69.43519166204992, 1.0575839599260595], + [-69.43926227630625, 1.0716298798873596], + [-69.4371909998127, 1.0806504687972633], + [-69.44776330216907, 1.083758251148424], + [-69.45688848184598, 1.0818982883031758], + [-69.49321478671415, 1.087929589293419], + [-69.52116529270894, 1.0796018459445256], + [-69.56626143972083, 1.0807719328222218], + [-69.58734888621316, 1.0885235451843944], + [-69.60669717445667, 1.1051977042404433], + [-69.621473777133, 1.1025312529539066], + [-69.63090959932602, 1.0949268834057027], + [-69.64920210220063, 1.0954939474417162], + [-69.67137046075061, 1.0877245358438903], + [-69.68455048509158, 1.0765007703771248], + [-69.69812205178533, 1.083695669705384], + [-69.70602160151577, 1.0821874977697565], + [-69.70900931719828, 1.0902209063202732], + [-69.70628922640505, 1.1124257406779194], + [-69.71037431802358, 1.1265328888764066], + [-69.73050280219968, 1.1157770115633343], + [-69.74001670882132, 1.1206808815505833], + [-69.75454073503863, 1.1186987306438863], + [-69.78459537341318, 1.1013720865541856], + [-69.79512433577473, 1.0902587456321648], + [-69.80185189076123, 1.0736057776618462], + [-69.81200652136096, 1.0691736203560007], + [-69.83001134864881, 1.0721395678383279], + [-69.84416435706072, 1.0854015044602314], + [-69.84429027798151, 1.1362703217681833], + [-69.84429325661472, 1.5757018328135588], + [-69.84426077428395, 1.5780029770393735], + [-69.84233099631759, 1.720798933330008], + [-69.82651614813166, 1.716254417418965], + [-69.83023109989081, 1.7093683885556277], + [-69.82163388164663, 1.7050891446561265], + [-69.79488097355095, 1.7099871555731636], + [-69.78555396772165, 1.7049445415261626], + [-69.78487978156468, 1.714799927476945], + [-69.7776906758087, 1.7234358991507546], + [-69.76885270639049, 1.7242117521741878], + [-69.74148401353047, 1.7444510973197453], + [-69.72790663277786, 1.7469907145695456], + [-69.71690448925753, 1.7437634654520195], + [-69.71090277801385, 1.7494817288827271], + [-69.7005632146798, 1.7438488071182645], + [-69.68298261746249, 1.7471156490678559], + [-69.68159199528789, 1.7357347184477487], + [-69.66939180674287, 1.7384320663201176], + [-69.65736858836675, 1.7367568370609356], + [-69.64539902797016, 1.7435635144871777], + [-69.63625468566889, 1.7368019392502372], + [-69.62869759185453, 1.7506803012902132], + [-69.62069341878967, 1.75239105942912], + [-69.60283525679245, 1.7642345287305654], + [-69.56716361831103, 1.777296476560137], + [-69.55213318504295, 1.7917740268794884], + [-69.49498688491298, 1.7668166237108565], + [-69.48734725768578, 1.7723001438703359], + [-69.48668711201584, 1.7621845463468024], + [-69.47851542572838, 1.7600390742529681], + [-69.4742130903777, 1.7687488758128902], + [-69.46843756639527, 1.7619463081500586], + [-69.4573769656533, 1.759228820905746], + [-69.45093120778357, 1.7643577210658377], + [-69.42595199858042, 1.7568926542579015], + [-69.39330905653847, 1.7346557632474513], + [-69.39303324830732, 1.7241024348071117], + [-69.3846766566418, 1.7297659245364925], + [-69.35734812492181, 1.7302587410469696], + [-69.17840839735689, 1.7334736696556463], + [-68.69707178506619, 1.7320216562767146], + [-68.16476586657751, 1.731680195773062], + [-68.15661423763139, 1.7316738851877866], + [-68.15936048712152, 1.7500564485041816], + [-68.17897289323895, 1.7536729971814888], + [-68.16933385004455, 1.7707028265490858], + [-68.18752771735367, 1.7846990880503621], + [-68.20239114497708, 1.7863696797888644], + [-68.20886007033324, 1.77827195521944], + [-68.22020073492719, 1.7733224742512232], + [-68.23639139270175, 1.7725605967152291], + [-68.24475474585165, 1.7949417522786209], + [-68.23347545549868, 1.829953004461366], + [-68.2439753431502, 1.8313171238145591], + [-68.26670279066276, 1.8273745647850284], + [-68.26350298330928, 1.8606619574773364], + [-68.25317074191135, 1.8787354926194786], + [-68.24305586958823, 1.926785124331649], + [-68.23534133913483, 1.937923251595952], + [-68.22300152751835, 1.9455703064898096], + [-68.2084779255551, 1.961623700561981], + [-68.19869159470299, 1.960950341100458], + [-68.1827184957792, 1.9788352524099864], + [-68.16597121296842, 1.9848064269224084], + [-68.15838437019879, 1.9777133374364935], + [-68.14049537359324, 1.9848219508746305], + [-68.12238745944808, 1.9658249598574475], + [-68.1143283587644, 1.94421258660994], + [-68.10291145638215, 1.9363796486107994], + [-68.09394628656456, 1.9102753271738235], + [-68.0873279155087, 1.9013528351837312], + [-68.07924770056441, 1.9024722927452515], + [-68.06513379794352, 1.897949133875756], + [-68.0432422186402, 1.899729500200166], + [-68.02424050089577, 1.8848577959927983], + [-68.00393725448019, 1.8603416304346378], + [-67.97338221994076, 1.8327900204254202], + [-67.94109787082455, 1.830771887253838], + [-67.93056833612538, 1.8348542522990967], + [-67.92245511390081, 1.8522416494751315], + [-67.91167969566422, 1.8558966592453257], + [-67.9066753056371, 1.8661585264198417], + [-67.91278986637768, 1.8978592796003888], + [-67.88242308677658, 1.9028407026092415], + [-67.85951008535966, 1.9202122767211174], + [-67.83545634316765, 1.9453929635774638], + [-67.83192314722378, 1.9572909523075401], + [-67.81803412533088, 1.966875305127016], + [-67.77922482592048, 2.0311054997631772], + [-67.76877900584383, 2.039358254854384], + [-67.7497310016714, 2.040170589750792], + [-67.69686175476687, 2.023411445099117], + [-67.67256879121241, 2.0203227791249305], + [-67.61963647850354, 2.023715335865432], + [-67.60691734678846, 2.03546472809542], + [-67.5861614181071, 2.085534632969774], + [-67.55782767749389, 2.106132089622477], + [-67.55071761271532, 2.1417609243587536], + [-67.53991235462627, 2.155929645558978], + [-67.52173928934954, 2.170357572943699], + [-67.44798423935997, 2.2081466196297352], + [-67.4384877063602, 2.2333301531921896], + [-67.43079728049149, 2.2416595292376673], + [-67.4063883281254, 2.246282962671374], + [-67.38906669728054, 2.2440547851321706], + [-67.36428826030377, 2.2303684208268635], + [-67.34329337962751, 2.2055235011279732], + [-67.3366800384231, 2.0981335333261555], + [-67.32975661945318, 2.078242333808323], + [-67.32589587626377, 2.0297569730871743] + ] + ] + }, + "AP": { + "name": "Amapá", + "coordinates": [ + [ + [-50.09389012629102, 0.7020454672321759], + [-50.156947620173725, 0.7051318864435957], + [-50.19798197094484, 0.7008475427395403], + [-50.2478007202841, 0.6918497449431429], + [-50.31461571043478, 0.6779655742270829], + [-50.34721084709324, 0.6667952598113759], + [-50.40983569924922, 0.6232941665682492], + [-50.43652090854267, 0.6000573667269666], + [-50.452293915664846, 0.5709119100145417], + [-50.467238462309595, 0.5308728066591336], + [-50.47618324756372, 0.4814507544307728], + [-50.4859641174821, 0.4588559498236665], + [-50.5039737309536, 0.43503860287863955], + [-50.523866414863726, 0.37234213870884453], + [-50.55612198413699, 0.30666883118524585], + [-50.59964175445243, 0.24930906606164435], + [-50.623574696987994, 0.2317278716592286], + [-50.644795523007026, 0.20870036640290962], + [-50.67563524363614, 0.17912982579064407], + [-50.70756085428206, 0.15594168831368682], + [-50.751942750953866, 0.12607658643860414], + [-50.80349119724782, 0.10627458472333483], + [-50.908045616836816, 0.0794289569773591], + [-50.91100112401422, 0.07866879444109225], + [-50.934141405152175, 0.06963157835013567], + [-50.974805002841805, 0.04174356236966297], + [-50.98508750868216, 0.029370429521500183], + [-50.996883678167116, 0.003401569538022784], + [-51.000444598550835, -0.00039516518829074747], + [-51.00744693986278, -0.0003952184594558736], + [-51.0295639647963, -0.028324162034157677], + [-51.06564521072823, -0.07627565491586083], + [-51.08488896115252, -0.08758953070075441], + [-51.097005342337084, -0.08840885801982404], + [-51.11836469413998, -0.09758733897828448], + [-51.143331191874445, -0.1013290432582946], + [-51.174868886224, -0.10458467751425923], + [-51.216332819255584, -0.1186628654696172], + [-51.2656771766355, -0.19550528501456058], + [-51.289564977488524, -0.22812647349837284], + [-51.302074854417214, -0.2517453534176731], + [-51.3280470586802, -0.2690297564877407], + [-51.345920219453795, -0.29615712439384584], + [-51.354734723146564, -0.3210866702491685], + [-51.361843911253025, -0.3582472065928915], + [-51.36247436955362, -0.36815679116481936], + [-51.407243674056986, -0.4173956070729685], + [-51.42069420004669, -0.42904189286070865], + [-51.4324477902493, -0.4733909041209264], + [-51.457756932458565, -0.5132813303455934], + [-51.486670691052154, -0.5456577552281182], + [-51.50305411837036, -0.5560152039525422], + [-51.511932796508276, -0.5639490953004835], + [-51.59550355286638, -0.6504856120765454], + [-51.665447968920546, -0.7619428920096356], + [-51.68354907302165, -0.7974921538707535], + [-51.68817200095994, -0.8232534400802692], + [-51.69232845122377, -0.9001751085196519], + [-51.69555610585746, -0.924764850335414], + [-51.68973024919515, -0.9976327417950192], + [-51.685613593506325, -1.012907309760919], + [-51.687197133814635, -1.0360546955629952], + [-51.70039356316466, -1.06325551558118], + [-51.74787990636467, -1.1072638743973535], + [-51.779337850449885, -1.1376370016985287], + [-51.77836532454228, -1.1404566208012081], + [-51.80906202398349, -1.1571454780236248], + [-51.88197772646827, -1.1663916203552314], + [-51.89715111733305, -1.162092252625641], + [-51.92592076283014, -1.1323609353482658], + [-51.93333677926069, -1.1375358531318571], + [-51.94686824205242, -1.1660516433100412], + [-51.95584066495416, -1.1697194680556509], + [-51.961502867232156, -1.1674009079938625], + [-51.96589398169007, -1.159647823002422], + [-51.961921580603715, -1.1344826515877844], + [-51.96555657040479, -1.1258540723331496], + [-51.97494929379545, -1.1206629789369869], + [-51.98645524299272, -1.1219860340777812], + [-51.993651508973166, -1.1320142117813923], + [-51.986999754283254, -1.1568802909482336], + [-51.9910862734429, -1.1718610164469236], + [-52.0112946534785, -1.1676466668901178], + [-52.04086420432455, -1.1701776055041768], + [-52.05502789158843, -1.176995271859504], + [-52.06394466752542, -1.1859757853579511], + [-52.06292450512913, -1.1929364413632648], + [-52.04752689255155, -1.2143290773683146], + [-52.047028197612896, -1.2193540168923005], + [-52.05461165522045, -1.2342647244955776], + [-52.070422500104925, -1.2360289273181417], + [-52.10203676901352, -1.2260127865660135], + [-52.10983508128556, -1.2181610686484157], + [-52.1107527896501, -1.2047212400023875], + [-52.10672698524937, -1.1831133647600585], + [-52.11661185318353, -1.1500024203625008], + [-52.12022534209463, -1.1462438249339078], + [-52.146693167960535, -1.14883735569418], + [-52.16235152877731, -1.1340987796782322], + [-52.173533838039916, -1.1301785072444783], + [-52.22210950938408, -1.1345749649484962], + [-52.238623279967115, -1.1262862059341645], + [-52.273283608909864, -1.128577920877894], + [-52.30094622320053, -1.1159561481726326], + [-52.33294918723035, -1.1159385328116966], + [-52.351986160818434, -1.0698218084906854], + [-52.3581166106672, -1.0626321149775562], + [-52.38308128989705, -1.0540393955686915], + [-52.400139351568576, -1.043678473299296], + [-52.42002757633853, -1.0527486959743215], + [-52.42700058900142, -1.0508429839302675], + [-52.42919509316068, -1.0426898564166729], + [-52.416751798712895, -1.0256600677319427], + [-52.4144246959752, -1.0093197838630834], + [-52.41817525500039, -0.999073734273033], + [-52.41988885082638, -0.9660120400903548], + [-52.43659701645881, -0.9483164150529219], + [-52.4394560963702, -0.9355963070414451], + [-52.429306960543684, -0.9203797829035346], + [-52.41391842234235, -0.9190331248089652], + [-52.41045203303375, -0.9175977996608992], + [-52.40478389790543, -0.9134684407824236], + [-52.401256286226904, -0.8875715727809872], + [-52.403118635908285, -0.877197996560066], + [-52.41981149766173, -0.854747647768386], + [-52.44428245589015, -0.8342192338523454], + [-52.455478100387786, -0.8303164950178921], + [-52.46836600752159, -0.8411447113407294], + [-52.496795534671016, -0.8495870961498075], + [-52.51689304807102, -0.8586662886829758], + [-52.52875007659636, -0.8591763137293328], + [-52.53861626265409, -0.8548578255978867], + [-52.53500047215014, -0.8420901423388978], + [-52.51771011687414, -0.8217982753797187], + [-52.50980992964405, -0.8135033084555409], + [-52.521145003368375, -0.8011852349276883], + [-52.52268282646059, -0.7917438083036298], + [-52.521591764457256, -0.7852613136990173], + [-52.501784735104444, -0.7468139189584286], + [-52.497836311331646, -0.7308000345457404], + [-52.49736744368972, -0.7113348026212393], + [-52.501692741735674, -0.6928122395489099], + [-52.51034739561661, -0.6792352227012481], + [-52.512473608587975, -0.6651561365515853], + [-52.51580881710685, -0.6636229766053134], + [-52.511003628972176, -0.6569224602400945], + [-52.51119005942222, -0.6399244821155037], + [-52.513143441375156, -0.6196986272897206], + [-52.52313788636662, -0.5891279931849728], + [-52.535139310096994, -0.5741409358095539], + [-52.56976414913768, -0.5760159158769573], + [-52.59299870274181, -0.5817501277722492], + [-52.612948842328706, -0.5949468303523748], + [-52.629144706245626, -0.5939013052562144], + [-52.639967597548996, -0.5849597225622455], + [-52.667722611948264, -0.5441909051288236], + [-52.669807178413365, -0.5382513296757861], + [-52.66724968198701, -0.5251663947995718], + [-52.673585129665895, -0.5194438039798477], + [-52.68175979863585, -0.5164872728939391], + [-52.695394407352815, -0.49645653168635767], + [-52.69097646064085, -0.4772149623828146], + [-52.70264021733307, -0.45928745462866205], + [-52.69303102641874, -0.44220672812420925], + [-52.68472271778414, -0.43469015384007903], + [-52.679109992132474, -0.4237303036386167], + [-52.681033861876614, -0.4151405874901771], + [-52.69852881579416, -0.3872232170423161], + [-52.69591064843682, -0.3720578885577398], + [-52.68180781813304, -0.3400208938891735], + [-52.684129723625, -0.31437036944624036], + [-52.68877709667242, -0.30419325331508706], + [-52.70085906165628, -0.29289949801930665], + [-52.71619972315946, -0.29275306163597353], + [-52.74017138436947, -0.276664874967315], + [-52.754384273182865, -0.2622461986788181], + [-52.75839288601809, -0.23973964490637886], + [-52.8360555666952, -0.1862079369918002], + [-52.844725884990886, -0.15978577389526927], + [-52.85551614516137, -0.14811164331821836], + [-52.87677768116708, -0.14281609145923507], + [-52.89755508951631, -0.15452739666800958], + [-52.90396902412246, -0.15499703267220222], + [-52.93269948385791, -0.14236688439404918], + [-52.95997296759364, -0.06328222455427489], + [-52.97097759154496, -0.0431709292602504], + [-52.976714451950635, -0.007689555456980281], + [-52.97724794288813, 0.023734697742311964], + [-52.985197870818645, 0.03557909522397376], + [-53.0036391793907, 0.04380586156292225], + [-53.01492080262439, 0.059629950713683336], + [-53.011084165285745, 0.09498334161324692], + [-53.02922078092431, 0.1046563530792609], + [-53.03647054645196, 0.11975543773341274], + [-53.039561021720736, 0.13593861227293455], + [-53.05208168481573, 0.1572754473820963], + [-53.07005636657961, 0.16947803515325358], + [-53.083331584544446, 0.18855548674387446], + [-53.09424665218483, 0.19524293576285126], + [-53.10636188784717, 0.23167853127910829], + [-53.094835279399334, 0.2621473828866647], + [-53.111887159014834, 0.28646479667601354], + [-53.134303705290584, 0.30011349700436635], + [-53.138748777871406, 0.3303965538183527], + [-53.15125066277368, 0.3518231648852528], + [-53.16025149627772, 0.3562512262578652], + [-53.17400322685754, 0.37423829374242773], + [-53.17526377331562, 0.38165068569218924], + [-53.1598876089938, 0.4029012456689561], + [-53.159193156027804, 0.42026031859015867], + [-53.167698478583674, 0.44566201300448605], + [-53.15508170317726, 0.4801121003106145], + [-53.15950144135239, 0.4881560524982956], + [-53.16972209718626, 0.4936669811270357], + [-53.15958618621007, 0.5137412838569915], + [-53.16266726127164, 0.5224189944591875], + [-53.15201786505154, 0.5318255326883915], + [-53.14833596659286, 0.5415901447884655], + [-53.14810900112116, 0.5519872985517168], + [-53.15480099270287, 0.5632869850229011], + [-53.14727527357004, 0.6002656234544179], + [-53.12266520854051, 0.6300217074015734], + [-53.11555869087996, 0.6482864212068632], + [-53.11588694345215, 0.6565142683900338], + [-53.10569706654629, 0.6793918112662174], + [-53.10625142089503, 0.6839122565859505], + [-53.116890355775695, 0.691500871142371], + [-53.12408257391767, 0.6972848869807782], + [-53.1398570438519, 0.6930305034763421], + [-53.14689101142409, 0.6997160410530451], + [-53.15102892350748, 0.7193310917884082], + [-53.157359808018214, 0.729003326925048], + [-53.18456034551302, 0.7474318127976926], + [-53.19022525244547, 0.7683124198505126], + [-53.202387170550594, 0.7757197552300698], + [-53.206942476478815, 0.7732772536027374], + [-53.21436087731647, 0.7856581286252625], + [-53.25509969576848, 0.8091397583555091], + [-53.27477898410807, 0.8248588713168479], + [-53.28744628019697, 0.845643500884839], + [-53.30224692914679, 0.8589238702584068], + [-53.354886954173516, 0.888180810827281], + [-53.36130208418613, 0.8960384906570067], + [-53.41144460093826, 0.9292702488214308], + [-53.413689427550686, 0.9473459913492008], + [-53.41061970012688, 0.9565685435621221], + [-53.41075362604758, 0.9819679403937744], + [-53.417417894215326, 0.989194542253723], + [-53.42678002349546, 0.9923512981550264], + [-53.42821147598278, 1.0115564438561717], + [-53.429885636303766, 1.019737154072288], + [-53.42130107292362, 1.0288746211061064], + [-53.4222795163448, 1.0336622247575848], + [-53.42741783984687, 1.0432407213511143], + [-53.434641494176354, 1.0479353998516123], + [-53.435913408228664, 1.0595045176599645], + [-53.45265867987889, 1.071151462336029], + [-53.45577256418849, 1.0772959398569601], + [-53.45910726885739, 1.1336047542303889], + [-53.45330385884487, 1.1435529668535165], + [-53.43972303366673, 1.1535973120498388], + [-53.421224383526976, 1.1472842747615097], + [-53.40435984156975, 1.151097037216487], + [-53.39982812135556, 1.1583323692188974], + [-53.396030183421594, 1.1792156393009003], + [-53.40294007072433, 1.1938542438615762], + [-53.417387029303924, 1.2026987500753001], + [-53.42525307202543, 1.2214024655130553], + [-53.42647046547792, 1.2426431933760016], + [-53.43049392274325, 1.2431821197779003], + [-53.433695433975686, 1.2344100632006572], + [-53.43871864430878, 1.2320571879241216], + [-53.473687482930174, 1.2392544789477011], + [-53.492972124598545, 1.2265823201273076], + [-53.53385741345675, 1.2100947315927906], + [-53.53894169250156, 1.2123482690451028], + [-53.54626991041604, 1.2284293570465679], + [-53.53052403281367, 1.2452543815775676], + [-53.52327633185124, 1.2612605626954567], + [-53.53046769859408, 1.2735453170459952], + [-53.55265934455964, 1.2802104995732193], + [-53.55663906000406, 1.28472649855145], + [-53.562581783940836, 1.306502873395058], + [-53.561190093587975, 1.3107511755449197], + [-53.54008395521709, 1.3169194709728282], + [-53.53333395261652, 1.3223496159758448], + [-53.542109478880185, 1.344755034104544], + [-53.54844001714076, 1.3484539956689219], + [-53.56380603979158, 1.3496143036728578], + [-53.56541803435356, 1.3396714791930877], + [-53.5706381670084, 1.3372225552783215], + [-53.59516518840452, 1.3580742657935252], + [-53.63319393226371, 1.3472788413933072], + [-53.641831789601014, 1.3348879571741574], + [-53.65091417818438, 1.3361435613161432], + [-53.66302482739114, 1.3494155165991208], + [-53.648999029030826, 1.35702267380866], + [-53.6434700748918, 1.3638062249072957], + [-53.645078754723706, 1.3801623255491025], + [-53.64088747162535, 1.3883911819922612], + [-53.64121830748733, 1.3990551849442567], + [-53.64678010255159, 1.4075441367898918], + [-53.65519004495295, 1.4066301848038414], + [-53.66027611073754, 1.3997561284401658], + [-53.66480125916028, 1.3751695658302725], + [-53.67049773046719, 1.371909292737908], + [-53.68041782836369, 1.3724405601348224], + [-53.682994225997746, 1.38427511627079], + [-53.68744285770654, 1.3857172183950877], + [-53.7014067559923, 1.377838538937228], + [-53.71140797826927, 1.3838825777474457], + [-53.71338240602421, 1.3963519133534334], + [-53.69575040034686, 1.4180612001079467], + [-53.69677505020526, 1.4228489231551666], + [-53.717134101417656, 1.431681482067445], + [-53.72400064816646, 1.428148123538626], + [-53.715969454946354, 1.4178557244749261], + [-53.71535997129098, 1.4052952117198136], + [-53.731300970668386, 1.3956974346936601], + [-53.73227341884565, 1.3862082426070526], + [-53.75505133293646, 1.3944935760401258], + [-53.76241822369739, 1.4083118454757828], + [-53.76799875893366, 1.3958351032824619], + [-53.77455736199011, 1.3968214667769256], + [-53.78366835898567, 1.4027729207295123], + [-53.79163748652014, 1.416591183342393], + [-53.80393849571436, 1.4234435866797561], + [-53.82043776366265, 1.419175453424424], + [-53.82271969130205, 1.413751326343927], + [-53.807435807796374, 1.4019320907627784], + [-53.8050010679804, 1.3971478810791236], + [-53.80699635826796, 1.391721938395223], + [-53.82354824743487, 1.389532859920954], + [-53.830718545990116, 1.3937720656704353], + [-53.8502851294655, 1.3917602600802488], + [-53.85277854941353, 1.3936541261826019], + [-53.851026018900484, 1.3984452795859605], + [-53.841555682681395, 1.4019806965288215], + [-53.84425022661681, 1.4062259008469513], + [-53.85491665808798, 1.4015130792893102], + [-53.87624945300935, 1.407449529793407], + [-53.8827734903626, 1.400665391965585], + [-53.88769644261452, 1.4077060169757998], + [-53.876687321852025, 1.4353705562165733], + [-53.88066781832739, 1.440153883570337], + [-53.89319224113944, 1.4432989158812275], + [-53.89594227553344, 1.4550438788379472], + [-53.917473511134304, 1.4568208750727842], + [-53.922444187176865, 1.442178640141757], + [-53.93824883329238, 1.4353810562651952], + [-53.94041421599103, 1.4432399518995218], + [-53.93033178563924, 1.4498478049479473], + [-53.93053012233453, 1.457618024122065], + [-53.92582928087623, 1.4653944267880132], + [-53.928708276960904, 1.4690969407381915], + [-53.9351126992714, 1.466648130575083], + [-53.94349563703152, 1.4712442700835073], + [-53.95402825336328, 1.4678875252056602], + [-53.95585036145877, 1.4798105701622257], + [-53.967020878517665, 1.4843126187238425], + [-53.97607901657827, 1.4721943617135866], + [-53.986107389103424, 1.4789562873861983], + [-53.99741187999681, 1.4756888716760024], + [-54.003414562100744, 1.4893229117824236], + [-53.99947052149086, 1.5046879093995957], + [-54.008993205555306, 1.5195816867752148], + [-54.02021788867926, 1.5156802021866103], + [-54.027522800828145, 1.5167553839344043], + [-54.0211371108491, 1.5067361251333848], + [-54.024521244886095, 1.4997743611138636], + [-54.039941593453385, 1.5060765483212386], + [-54.05588278655367, 1.4934061622884236], + [-54.06238069123672, 1.4946621222138006], + [-54.06910340272019, 1.5008865760321077], + [-54.07938246695631, 1.4948179922530225], + [-54.07790843491576, 1.4856072035948786], + [-54.086409381567954, 1.4882141222038063], + [-54.08869109572434, 1.4919146421567286], + [-54.08510612495595, 1.505379712590987], + [-54.08897229743706, 1.5135974104730208], + [-54.08453357444135, 1.526248598103998], + [-54.09872125642934, 1.5504403111967475], + [-54.11446720575453, 1.551139455001853], + [-54.1174681250265, 1.558091040290177], + [-54.110296025738265, 1.5749051623276114], + [-54.10188781892787, 1.584221343106643], + [-54.10194293340073, 1.590546381408599], + [-54.118493839196425, 1.5813961343763547], + [-54.12277194699999, 1.5907848574705412], + [-54.128298695533076, 1.591228546458025], + [-54.13132750317107, 1.5968244763232275], + [-54.122520948389266, 1.6017157723184046], + [-54.12302541895917, 1.6073163907847943], + [-54.13343971876153, 1.6170564820411146], + [-54.129747519727, 1.6238366505138955], + [-54.14230222965017, 1.6284244551608165], + [-54.14360613631035, 1.6405272841604597], + [-54.146795760609564, 1.643684133301644], + [-54.15241216694645, 1.639248767529816], + [-54.16885920518927, 1.6439192831244283], + [-54.176075923806316, 1.6478842153848507], + [-54.17830547366438, 1.657364301726534], + [-54.1821599825597, 1.6579897521887523], + [-54.18634660876761, 1.6443725787555405], + [-54.18735253247309, 1.6279033908298033], + [-54.1910457838328, 1.6248246345771484], + [-54.197409011996726, 1.63167987268475], + [-54.2028836248214, 1.6489234183479091], + [-54.22830011624038, 1.6652313979976154], + [-54.23008073355667, 1.6758861890549253], + [-54.244387026696586, 1.6760435914495058], + [-54.24927686624608, 1.6837136142482818], + [-54.26359979180086, 1.680077144883454], + [-54.26268510644273, 1.6882968470659419], + [-54.26918438262625, 1.6941569907470928], + [-54.26560776287289, 1.6956975879822416], + [-54.26951924333928, 1.7047259971967126], + [-54.26674178774436, 1.707981119772327], + [-54.274435054660934, 1.7104063710143775], + [-54.28002461495911, 1.7075957618638786], + [-54.292300203181355, 1.7086601270685116], + [-54.282883740282344, 1.7161739217930483], + [-54.2815826053256, 1.7237624471040225], + [-54.28983051476556, 1.7204965216564045], + [-54.293129605263395, 1.7259102984290295], + [-54.300382795654684, 1.7237296921274603], + [-54.30521784304945, 1.7292300113428951], + [-54.30972132425225, 1.7293124717838853], + [-54.313352796526765, 1.7333705412084166], + [-54.30571603368899, 1.7368164344934636], + [-54.30924507467688, 1.740964056824244], + [-54.31682329605473, 1.7367060615090326], + [-54.32338137479877, 1.7374166512431013], + [-54.32949645131387, 1.7437296654898131], + [-54.344602518080556, 1.7405418584823826], + [-54.344137167629654, 1.7465928563170299], + [-54.350768088261745, 1.7473042329642772], + [-54.35163209504262, 1.7539862022123227], + [-54.37766207282635, 1.7636004611093579], + [-54.38738079044665, 1.7450686921915182], + [-54.40388535665013, 1.7596710157385345], + [-54.41783295668967, 1.7564828721653492], + [-54.42460035607311, 1.7603536623101874], + [-54.43454875636623, 1.7540138334624031], + [-54.464746368821956, 1.7591059908920244], + [-54.470551312943094, 1.7556617725204342], + [-54.47121442110472, 1.7514185278806595], + [-54.48466038161149, 1.7553660451867505], + [-54.48554995954577, 1.7512104642633703], + [-54.49588328415259, 1.7468570638902712], + [-54.501770123506596, 1.750999071902193], + [-54.50849274592053, 1.7481875361692842], + [-54.51235954805287, 1.7533266089119928], + [-54.52390891630068, 1.755923293303326], + [-54.52804556438513, 1.7648558346014591], + [-54.53693555044028, 1.7701661058925426], + [-54.57102593398725, 1.7775042526997873], + [-54.57084828414696, 1.7843679965478232], + [-54.58099207579389, 1.7775743735754275], + [-54.60185404391885, 1.7844864646577807], + [-54.61165760303777, 1.7792301328553144], + [-54.625822191879344, 1.7805573858890724], + [-54.643577169716075, 1.7685132696796317], + [-54.65149878057132, 1.7715679066526806], + [-54.671133128745026, 1.7655699435115533], + [-54.678961367185984, 1.7688053427549835], + [-54.6921004973721, 1.7677849521447642], + [-54.70043379623368, 1.7756228590874565], + [-54.702185047977125, 1.7721886263787023], + [-54.71846969334415, 1.7709814670892305], + [-54.744715567275634, 1.775713983501225], + [-54.74638069872852, 1.7863611440139548], + [-54.752602617939964, 1.7905924029290496], + [-54.75435807793038, 1.7977209662101246], + [-54.746856749623035, 1.805680774395966], + [-54.75060801932603, 1.814160404436505], + [-54.7339620930519, 1.8318892825093118], + [-54.74054828040522, 1.8319643279663214], + [-54.73971538301318, 1.8391898355027394], + [-54.74842123195592, 1.8422399220384031], + [-54.749810437374094, 1.8458482905782805], + [-54.75313172288032, 1.8508972437668083], + [-54.75302443732779, 1.875631856852647], + [-54.758998602759355, 1.8900641443780848], + [-54.76346753096917, 1.8924006193499718], + [-54.761800577155086, 1.905495190309637], + [-54.76585508923452, 1.9075614487734072], + [-54.77152325965287, 1.9404100593278808], + [-54.76496340345012, 1.9438547002892923], + [-54.758300011978484, 1.9570483138722063], + [-54.76007208326825, 1.9601147924114823], + [-54.75580177716895, 1.9602162036185449], + [-54.7543772313435, 1.9705092641030564], + [-54.76393649882058, 1.9787038963560108], + [-54.772079832727954, 1.97832303016276], + [-54.76896095279941, 1.9961141479328148], + [-54.78081031363919, 1.99951671569909], + [-54.79090629177156, 2.0071673526575387], + [-54.79491081498716, 2.016727069731815], + [-54.803740258436996, 2.0257327619195107], + [-54.807188627992694, 2.0372793338294586], + [-54.811271445296455, 2.039346217292479], + [-54.80590416544509, 2.0536208485039027], + [-54.812767233308854, 2.062723232747828], + [-54.81201542387397, 2.0709387989443226], + [-54.80610339815081, 2.0762778611152233], + [-54.813765524299534, 2.1007232207390327], + [-54.80462721560214, 2.1077866180219167], + [-54.80915643098543, 2.122671961244677], + [-54.80351608729112, 2.1321623989828185], + [-54.8061893662234, 2.138836229523891], + [-54.80090551969793, 2.14246056640248], + [-54.79846433877814, 2.1500494899938887], + [-54.789577846500094, 2.156119014779599], + [-54.79132444124329, 2.16126154185883], + [-54.78141652926218, 2.1670630221753617], + [-54.78315690235222, 2.1740999973438493], + [-54.76782685341555, 2.1808193693727023], + [-54.76941239810456, 2.1874965580662065], + [-54.76280927830549, 2.192348624230901], + [-54.7630462010921, 2.202226714299055], + [-54.77057191015921, 2.2083465089930416], + [-54.775047759683936, 2.2202497129203693], + [-54.78152201500058, 2.223303601534914], + [-54.79888249299414, 2.2454657882327687], + [-54.81135495529314, 2.266284801741403], + [-54.809019670639636, 2.286330755172787], + [-54.802854396550245, 2.289957589430107], + [-54.807157002398064, 2.297800489154999], + [-54.8019652053348, 2.307651691004071], + [-54.79418412625566, 2.3126394460568718], + [-54.80498725361491, 2.3291305861360287], + [-54.80749458191263, 2.341580744961135], + [-54.86601696508096, 2.4027980901114527], + [-54.86763014942479, 2.4088419120989477], + [-54.87463010334509, 2.4152303895119784], + [-54.87618383304849, 2.4265992800992406], + [-54.87218460010164, 2.433651324901336], + [-54.79732823311856, 2.4389217349718963], + [-54.78303815403477, 2.4476164798733984], + [-54.743967206149314, 2.4713903205018544], + [-54.68485417853274, 2.446728212556827], + [-54.6920223532872, 2.3613018273082815], + [-54.66218507761037, 2.326893018344015], + [-54.60162961452687, 2.3370728270942656], + [-54.43651751722117, 2.209794229031846], + [-54.18901981723924, 2.1787357740337363], + [-54.138362190164855, 2.1925380981054468], + [-53.99933008081002, 2.2313404624599795], + [-53.98991222952824, 2.2373308498940605], + [-53.97485332917191, 2.232300729549104], + [-53.96713075230903, 2.2429782250971817], + [-53.952908580727275, 2.2451754376860182], + [-53.94568981167496, 2.2409446718913233], + [-53.94230054932299, 2.2423046890342055], + [-53.94268669217027, 2.252424343830062], + [-53.93563101384411, 2.259305241336983], + [-53.94202033864239, 2.277992909991445], + [-53.93654494824088, 2.286139045429617], + [-53.940104871715974, 2.2906473548533492], + [-53.936247763047454, 2.2968908046768193], + [-53.929523361807, 2.290579980612625], + [-53.91596697655562, 2.2906064169681564], + [-53.91629953641213, 2.277145247246632], + [-53.907750112600745, 2.2739089994360837], + [-53.898633082698446, 2.288022532386138], + [-53.89257490489802, 2.2836984334078205], + [-53.88915753562979, 2.2861444368415786], + [-53.892744253696485, 2.2910164071680192], + [-53.88774415583743, 2.2987065875212944], + [-53.88973938688228, 2.3063828175286636], + [-53.883859771647245, 2.3162442445795457], + [-53.87124714275368, 2.3161789809422686], + [-53.865853356786246, 2.3114921846566543], + [-53.85952327956311, 2.3199083174359822], + [-53.85235805022945, 2.310165115006955], + [-53.8420194269926, 2.307564044877386], + [-53.823993418012826, 2.3175395865462263], + [-53.81479630939931, 2.3169261996665993], + [-53.82057730396162, 2.329566011459818], + [-53.83160612442236, 2.3280055428604363], + [-53.83699076981133, 2.333507277279424], + [-53.83494110537178, 2.339567043052778], + [-53.81449622287805, 2.342319169508893], + [-53.811743150644574, 2.3566010711326553], + [-53.80544058090479, 2.3574267900581627], + [-53.79957666753824, 2.364939235099856], + [-53.79080358198719, 2.3645952201478226], + [-53.78403410058881, 2.372650962752783], + [-53.77324234820898, 2.3734875881841555], + [-53.772801243339444, 2.376830857266706], + [-53.767163675918965, 2.3788303304537575], + [-53.75796856853473, 2.3749618257545895], + [-53.74157749054691, 2.3749055481527996], + [-53.73910457474346, 2.37256105029086], + [-53.743601091715, 2.3664973953440414], + [-53.75351923413323, 2.3638566911493593], + [-53.74477221284352, 2.358814360658031], + [-53.73846911168884, 2.362170105379541], + [-53.72793602151065, 2.350985999082443], + [-53.723410441001555, 2.353977568979387], + [-53.73065954177601, 2.3404066900415006], + [-53.73966095723315, 2.335239174727377], + [-53.73655238765022, 2.3238575248544153], + [-53.74060689808192, 2.324843991622564], + [-53.750713127699306, 2.3194930080731306], + [-53.74871936795522, 2.3127191703088763], + [-53.73255358079871, 2.3089551239059016], + [-53.72691648727903, 2.314297791281263], + [-53.707606226757036, 2.3090045403287878], + [-53.69546765492726, 2.312190706486434], + [-53.68610451058524, 2.29449450964664], + [-53.68046706053537, 2.2969458275400036], + [-53.68215720009661, 2.301100705162972], + [-53.66382586347045, 2.3052899369258033], + [-53.66112832629749, 2.2996046804203223], + [-53.65327013749981, 2.3023284661345405], + [-53.65624037334977, 2.284429761262615], + [-53.6358252673852, 2.281484815064966], + [-53.626160031465204, 2.284484730767978], + [-53.6149428025414, 2.278360412076094], + [-53.61221662326512, 2.286318664453782], + [-53.601221657753726, 2.2860669932402113], + [-53.58418929641813, 2.2688357535625068], + [-53.57812971864879, 2.2727334552632232], + [-53.56757390615935, 2.271396487982025], + [-53.549860273539075, 2.2582332801070155], + [-53.53146683720328, 2.2576333811768188], + [-53.52018951127552, 2.2664187775962295], + [-53.50988029835986, 2.2619181988738415], + [-53.49532661633199, 2.2609492532142967], + [-53.485328310491845, 2.264762866537876], + [-53.47302383770059, 2.2566486340740255], + [-53.45494114211627, 2.264182126990888], + [-53.455855655190625, 2.2731296767486047], + [-53.465528571455295, 2.2768183176116374], + [-53.46960479374568, 2.2887422136042375], + [-53.461270024086225, 2.2909248399438775], + [-53.44032873207763, 2.2802062941138677], + [-53.43358039524765, 2.2878088607991702], + [-53.42177634808652, 2.289728537021312], + [-53.415219459677424, 2.297061576252433], + [-53.40502521594058, 2.297439009838199], + [-53.39888033607763, 2.308117108248228], + [-53.385718366648724, 2.308319507822636], + [-53.3771374256714, 2.317734014217502], + [-53.367579349497234, 2.320554811684213], + [-53.35993870875804, 2.33367445578843], + [-53.35996846002731, 2.3492219283632334], + [-53.34826916291164, 2.354574458252274], + [-53.3381282140313, 2.3535080767076475], + [-53.3334951967549, 2.34438435808117], + [-53.32324464925493, 2.347023593826317], + [-53.3169350168048, 2.3397121348569843], + [-53.31499225251879, 2.3266072427873143], + [-53.30597041688501, 2.3154132924302315], + [-53.2947725003726, 2.3089232166053657], + [-53.28276999032422, 2.309666889528689], + [-53.27747027713269, 2.2988273871300042], + [-53.26205822543705, 2.290082470326039], + [-53.26201948016667, 2.276251607039608], + [-53.24580292181702, 2.2730222547359054], + [-53.23466293088993, 2.27529969725309], + [-53.22946456431778, 2.262289987435302], + [-53.25326852615228, 2.2464333216374888], + [-53.25969310487611, 2.2528415328916966], + [-53.26319531609499, 2.228428833610865], + [-53.26736000986083, 2.223630109361548], + [-53.27974729123999, 2.223249141726534], + [-53.27727597054657, 2.2214448144132954], + [-53.279935197320754, 2.2047169883487028], + [-53.286970899057536, 2.1964796690263975], + [-53.28533404405182, 2.192376182778573], + [-53.27913340427667, 2.185899509762032], + [-53.27650199596443, 2.188073035583884], + [-53.27781690207823, 2.1923725958554474], + [-53.26547142111061, 2.1887016007457967], + [-53.257366356286006, 2.1923626465668864], + [-53.25555052886883, 2.1976128565755833], + [-53.24652425892897, 2.198863481431197], + [-53.24271723435557, 2.2074891972318276], + [-53.23301662788254, 2.205317627302446], + [-53.22849156250408, 2.1976706344517782], + [-53.22063764275175, 2.1935250461787112], + [-53.2175782028203, 2.195739808720352], + [-53.215440629315914, 2.193703197059121], + [-53.208326923203124, 2.199152168533961], + [-53.185133526038605, 2.1991478869340026], + [-53.175332897652495, 2.2041466749180474], + [-53.138606349313584, 2.2118102645375384], + [-53.09949851800632, 2.2141933274960457], + [-53.07949771706927, 2.210384229178238], + [-53.06638864206218, 2.20068094658873], + [-53.060750202631034, 2.1922527408910697], + [-53.052521499798445, 2.1816084700724203], + [-53.04047173633626, 2.1733200037167646], + [-53.007797448102664, 2.1692291162777044], + [-52.98444991029206, 2.157087374166031], + [-52.94424287947184, 2.1686537064049496], + [-52.93724756297335, 2.1835228036508436], + [-52.939697479716436, 2.189537414374906], + [-52.93641894629435, 2.1920912530434196], + [-52.929468182007426, 2.188264304956286], + [-52.923331818720484, 2.1920819349648824], + [-52.90594438383275, 2.1854353835641156], + [-52.90356712401812, 2.192146309567842], + [-52.89208319480504, 2.208637349063153], + [-52.891358805295845, 2.214414513721477], + [-52.884974177488864, 2.218109633422255], + [-52.88763202692279, 2.2341978496315895], + [-52.8756909570475, 2.2374329673279845], + [-52.871799517949434, 2.2568543268825287], + [-52.85394616176166, 2.259170453637003], + [-52.851603242376854, 2.266131591865333], + [-52.85732827642916, 2.277339645661272], + [-52.84144392137433, 2.276866788885466], + [-52.83782812774413, 2.279033875537735], + [-52.840078331179605, 2.286892851778339], + [-52.83513436658187, 2.286075116695932], + [-52.799909480045045, 2.298225086995845], + [-52.78644354017223, 2.3080508346063997], + [-52.78140971224951, 2.3071433052110413], + [-52.777798216586156, 2.314546942646326], + [-52.77385380123517, 2.3107542976679056], + [-52.76702407152705, 2.317700318490483], + [-52.76513953330899, 2.3158008980623666], + [-52.74366089724371, 2.3255285967635118], + [-52.73782990670415, 2.331302592840027], + [-52.73288675460783, 2.329488106375981], + [-52.71615982417299, 2.335522475561772], + [-52.71696997247182, 2.3432896042776483], + [-52.66158010686425, 2.38134934504023], + [-52.663195749968864, 2.3841436739448634], + [-52.65763736333427, 2.3945281749380705], + [-52.660829572753336, 2.404205148894947], + [-52.6427754120954, 2.421619171078035], + [-52.64230283025597, 2.4356140411821454], + [-52.628074972842384, 2.448158334257938], + [-52.62674685255859, 2.445625537907049], + [-52.61335850741551, 2.4459743448184845], + [-52.60544063385899, 2.452195256307876], + [-52.614967805939266, 2.4634970969984895], + [-52.610549163868626, 2.474965275863475], + [-52.587355656789576, 2.4733153179802145], + [-52.58571320577642, 2.494088189321458], + [-52.56532748714738, 2.5121935148130934], + [-52.55479791785575, 2.5148850697828937], + [-52.552713459531894, 2.5271978192913007], + [-52.55738174588574, 2.526624403065265], + [-52.563522226133955, 2.5445062713257975], + [-52.550387775496546, 2.5572396926088174], + [-52.53983446065074, 2.5543149082489], + [-52.536328451077836, 2.5708929985845845], + [-52.527552607291234, 2.5767321058201946], + [-52.53583006511836, 2.5953207283062096], + [-52.55283155259676, 2.6065234138960744], + [-52.54577626283906, 2.6188673726078786], + [-52.558546230699726, 2.633897575604722], + [-52.55035581852744, 2.647785212874172], + [-52.542440085369044, 2.6496482417799547], + [-52.53327069704838, 2.6469867792858355], + [-52.523907613909415, 2.6785195598685063], + [-52.51213478372555, 2.6935132870247496], + [-52.50210226863777, 2.720433988493993], + [-52.495997804439, 2.7268350854195624], + [-52.485687836381125, 2.7497419655923143], + [-52.4889647057309, 2.754981331521346], + [-52.48151865405293, 2.7623297392094277], + [-52.483685114140826, 2.7764732585912726], + [-52.47835228689414, 2.790135243485195], + [-52.458326841926535, 2.8222767540113467], + [-52.4513303835897, 2.8418664278244794], + [-52.427048425048525, 2.8862336318886013], + [-52.41124192324912, 2.894978625932898], + [-52.40293659799498, 2.891614087716874], + [-52.39685251983842, 2.893024787790223], + [-52.381633468918636, 2.913389767512746], + [-52.385271269623104, 2.9162868107387196], + [-52.39335269921293, 2.913350458659606], + [-52.39538513009799, 2.920559015096532], + [-52.40147120483893, 2.924193564862494], + [-52.3949388290477, 2.9357742522231174], + [-52.39832304073597, 2.940561182290002], + [-52.39141058813651, 2.944220530579024], + [-52.38510934145585, 2.953741199470526], + [-52.374289930508986, 2.983913706746217], + [-52.37388289356999, 2.996990907965154], + [-52.36863022677352, 3.0026157634777424], + [-52.3653820636559, 3.0217850411460283], + [-52.35624240613353, 3.0272484091086755], + [-52.343522454818846, 3.0567009079870364], + [-52.32901980230455, 3.0800556204438205], + [-52.347413686613606, 3.10054269871257], + [-52.34671372546819, 3.110946197531848], + [-52.339968756575196, 3.1209433439526695], + [-52.34138552711173, 3.1239015179307628], + [-52.35316032095336, 3.125447698956914], + [-52.35423856565852, 3.1308912486804767], + [-52.3508561021263, 3.13762227179205], + [-52.34429917479975, 3.136072493568149], + [-52.33915740875261, 3.139636801956203], + [-52.34107586021231, 3.149032866615796], + [-52.334722246468864, 3.1581626424353577], + [-52.333212649643464, 3.1721462018662656], + [-52.30612336613829, 3.1769808728807445], + [-52.31038008221307, 3.204235382413065], + [-52.29857680868655, 3.2188253192043965], + [-52.2954622757125, 3.2310142191972138], + [-52.26910460595989, 3.2441679223052153], + [-52.26684761341333, 3.2528236365465264], + [-52.262354766614585, 3.2561785059766932], + [-52.254134872832566, 3.2534073892894266], + [-52.246408472273046, 3.2415780791582054], + [-52.2338218717162, 3.2467826309768277], + [-52.20230002894066, 3.294093734310421], + [-52.19207439647239, 3.3012611531644467], + [-52.1931579438108, 3.314025976417522], + [-52.162739985728805, 3.354053125336508], + [-52.15525231165622, 3.3717259032788514], + [-52.1139579603396, 3.452464093544709], + [-52.0990480206022, 3.465397259050058], + [-52.094104042232864, 3.489330761828024], + [-52.08074080879973, 3.499690401692267], + [-52.075048565865345, 3.5083906973665613], + [-52.07590950795933, 3.518626442569203], + [-52.061357579891, 3.5228705117414156], + [-52.02510081321482, 3.5915479569902256], + [-52.00437978414978, 3.6119339390422276], + [-51.99624105644657, 3.6262572093327545], + [-51.989210570706526, 3.6749206879943825], + [-51.980268152411384, 3.6849965438464296], + [-51.97199130372353, 3.7188173744422723], + [-51.957684009272604, 3.7314469594829327], + [-51.93307418635823, 3.726762442395584], + [-51.92826222045141, 3.7288297571331803], + [-51.92148543444163, 3.746733956849072], + [-51.92921394712775, 3.7721770868983238], + [-51.92428722138361, 3.7833445751989045], + [-51.906597391116655, 3.7910199693399877], + [-51.901763176127915, 3.7987188472499143], + [-51.89075994793584, 3.799081614627978], + [-51.87612102149733, 3.8072785972590264], + [-51.86469179557789, 3.8239996014694495], + [-51.8602913678007, 3.8293087325264374], + [-51.853206698842335, 3.8383370228556584], + [-51.84596250488422, 3.846279437884107], + [-51.828350479650055, 3.8543155843067423], + [-51.823276141250304, 3.863835523966113], + [-51.82079215019793, 3.869776243563734], + [-51.80197785187025, 3.8817591542726455], + [-51.790027639705244, 3.9019102922834086], + [-51.77990710015185, 3.9247875643553645], + [-51.77910869408932, 3.9453452321521874], + [-51.77756930275407, 3.9570072013750552], + [-51.77114149306068, 3.9665387772335685], + [-51.75571771754087, 3.9880108591571295], + [-51.74645537920619, 3.994905576844054], + [-51.709783482704694, 4.000499809350981], + [-51.69792436186996, 4.00901200014846], + [-51.685515689939365, 4.025134148498672], + [-51.665928100708626, 4.028377393534962], + [-51.64648425758965, 4.044449276018874], + [-51.64290141730331, 4.062576064622692], + [-51.64457104075889, 4.073704663442735], + [-51.636122101509805, 4.086799599467955], + [-51.619711667474895, 4.142042726928781], + [-51.60492716002847, 4.167107491313869], + [-51.595458996445494, 4.1913140266731865], + [-51.59778989124941, 4.229696727690605], + [-51.592089925733696, 4.235207769704211], + [-51.58604381016694, 4.26210938839949], + [-51.57379206581795, 4.344337481104494], + [-51.554094595284255, 4.414642082926637], + [-51.54959498477012, 4.4242504121364155], + [-51.54039371522821, 4.430075542530875], + [-51.513982410558896, 4.436656130148977], + [-51.500593165985954, 4.426336084356943], + [-51.49036842572723, 4.422960670693402], + [-51.452757270973386, 4.389845107779062], + [-51.42762373090445, 4.373515962567674], + [-51.34604060499147, 4.295196479023251], + [-51.25195668472659, 4.191333849300472], + [-51.25153573310399, 4.185253266043528], + [-51.23086962784076, 4.1586869202534285], + [-51.22684206048954, 4.143441920303798], + [-51.21023232947879, 4.1230966241375615], + [-51.189619658681956, 4.063343629924192], + [-51.19070721694958, 4.05591192725562], + [-51.18484555338638, 4.05069798983658], + [-51.18209059564658, 4.008514605465817], + [-51.176735061447395, 3.987070654730591], + [-51.17598152913464, 3.9601147710085374], + [-51.17895919777425, 3.944759089051021], + [-51.16670893682843, 3.93594543419787], + [-51.1230169941065, 3.9103532668960206], + [-51.09436705188998, 3.9098393064178603], + [-51.08184327428295, 3.8994719518419423], + [-51.08384726669709, 3.8979904779215038], + [-51.081093310017536, 3.8924265372279505], + [-51.07556340067486, 3.8905342734294055], + [-51.074564757528165, 3.850837278449335], + [-51.07979020087943, 3.8318771325537124], + [-51.0799059913531, 3.7838006590101814], + [-51.08465109580539, 3.7723103154568105], + [-51.0822687558432, 3.761346113543033], + [-51.085871333922825, 3.749779585683159], + [-51.084678929279946, 3.7320167489610534], + [-51.08978699082476, 3.7226687082032845], + [-51.09087898269388, 3.7056728929127085], + [-51.09079142377315, 3.6798492437003927], + [-51.08273557650143, 3.6324864787357], + [-51.07096131932601, 3.4914490843423174], + [-51.07898768385324, 3.4592646050318456], + [-51.08329717150991, 3.459676138546667], + [-51.08935307705301, 3.45374282612393], + [-51.09054436285333, 3.4467450938474333], + [-51.08757031118459, 3.3916861122811657], + [-51.08025994020718, 3.3691004001100597], + [-51.02201544037733, 3.2080070176648694], + [-51.0263846945982, 3.1848916771527036], + [-51.03396012726607, 3.174861669812456], + [-51.031629921704365, 3.155651824763629], + [-51.035767159022704, 3.1370582393085846], + [-51.02779232052046, 3.116777687773921], + [-51.007076750634255, 3.093696197107095], + [-51.00657554072921, 3.079326364812489], + [-51.01284752452174, 3.065815328649618], + [-51.01479331520409, 3.0453905206321883], + [-51.000299667695764, 3.0175916921904267], + [-50.98887610817546, 3.0032596968127097], + [-50.98471757131983, 2.9746726961456025], + [-50.9881012156125, 2.9608998363657095], + [-50.981185904884605, 2.9369203515937135], + [-50.97187978516456, 2.9255796225748165], + [-50.96285660113507, 2.9053725088692737], + [-50.944325388586655, 2.8841161191987124], + [-50.94237972487994, 2.8541547554542674], + [-50.94749210802412, 2.8360791344225635], + [-50.941405951259554, 2.814444857125632], + [-50.942217518792184, 2.8033005682992096], + [-50.9269150610921, 2.808218253841238], + [-50.90821018216169, 2.8008093104001426], + [-50.90193909297631, 2.794542954594679], + [-50.90052364123941, 2.7855812612942303], + [-50.90543912400996, 2.7733843692142637], + [-50.903242439418435, 2.756273567679146], + [-50.89113195236902, 2.752061098365437], + [-50.881797641893876, 2.7413442763446523], + [-50.88266019768268, 2.6856933621573056], + [-50.86862832885693, 2.6793988766484103], + [-50.853159099922514, 2.659509049768445], + [-50.85043762033633, 2.6440241567079306], + [-50.84099093782526, 2.638654593266889], + [-50.841408452290175, 2.601370166252897], + [-50.84604964089967, 2.5940577301797267], + [-50.84316132476005, 2.594050535150274], + [-50.84283131901687, 2.586085493619263], + [-50.83577489972073, 2.5742020555508693], + [-50.83144371542505, 2.533106490731102], + [-50.83713311224199, 2.508149689572817], + [-50.85288654275668, 2.5040519699241126], + [-50.854907490344296, 2.4906529216316504], + [-50.85204826410468, 2.486077015744857], + [-50.85099444758531, 2.4947557610346034], + [-50.844665760128066, 2.4979181843224847], + [-50.83678023689363, 2.492605143134848], + [-50.81560560305529, 2.5086943897611693], + [-50.806082144127906, 2.5091949074099085], + [-50.79146290200851, 2.5009271709793968], + [-50.783996585976915, 2.4874969137083225], + [-50.78313447111488, 2.4763067167678727], + [-50.77502623789877, 2.4680154382252706], + [-50.76479648603414, 2.4479984922015277], + [-50.764328673955475, 2.425595389186719], + [-50.77051793226818, 2.4116917910145315], + [-50.761104498735, 2.397542635696195], + [-50.75638812653471, 2.380618391041522], + [-50.760136108397795, 2.365746469808469], + [-50.75089436549489, 2.3592475235704047], + [-50.74366763865401, 2.3418437473019265], + [-50.742551382457314, 2.3112315015422498], + [-50.73463226850337, 2.3027425207882803], + [-50.72243859540882, 2.2763417744526526], + [-50.72444386125803, 2.2566177007181643], + [-50.72222196048721, 2.2371369197382354], + [-50.715503752471115, 2.2371390674701996], + [-50.70847265569862, 2.23072117421295], + [-50.693275491519174, 2.208414010044002], + [-50.685983954787496, 2.188888400823774], + [-50.682331414782404, 2.1729597762881556], + [-50.68360269798923, 2.1543370929756747], + [-50.68863433969041, 2.147583954236491], + [-50.70224240240424, 2.143886370647912], + [-50.7024983378875, 2.1381429789905217], + [-50.66583011051227, 2.150811667172888], + [-50.60130574218153, 2.180096717475711], + [-50.579480183220916, 2.1886495359760643], + [-50.521966147646495, 2.208321374276513], + [-50.48456156114828, 2.20290966713211], + [-50.45647002770614, 2.2037981724211844], + [-50.446105914549264, 2.199179223526146], + [-50.4434969174332, 2.189397781012384], + [-50.43816435253308, 2.1931381543546578], + [-50.432788291815974, 2.188308206570904], + [-50.42241016389079, 2.1797874707062452], + [-50.4124703118616, 2.159274453698906], + [-50.38569246311244, 2.1248500971415765], + [-50.38593986160737, 2.118982289940477], + [-50.378693905285985, 2.115383191503176], + [-50.37194167319119, 2.1008627654503895], + [-50.365998025562405, 2.101254205028897], + [-50.35241219391408, 2.0867543199245486], + [-50.3499183201404, 2.0771548065105567], + [-50.355859910613454, 2.065470024830399], + [-50.34924263882762, 2.062152554626326], + [-50.345829176005665, 2.0532631195362554], + [-50.3475798513184, 2.050659755738088], + [-50.33758148685557, 2.0356535845831414], + [-50.33360788759255, 2.0199853055827406], + [-50.31710529797099, 2.0077175920933725], + [-50.31263310899339, 1.9772768695349712], + [-50.30619465746123, 1.971195257851887], + [-50.30038821283863, 1.9581336326612544], + [-50.27334438004292, 1.8873785953128082], + [-50.23811210115299, 1.803125847424202], + [-50.16958449988225, 1.81421627517932], + [-50.10585582610813, 1.7919109192311007], + [-50.091719620952865, 1.7913575528111163], + [-50.05627289547915, 1.7745006109573471], + [-50.03377680321839, 1.7705370979104205], + [-50.003111881616285, 1.7532411371333139], + [-49.921723089341896, 1.70389810603797], + [-49.91502751351884, 1.6954668727271542], + [-49.91327403377861, 1.687389808975247], + [-49.91730312600069, 1.6769614572087532], + [-49.92246821194337, 1.6742380545418023], + [-49.908169529181215, 1.670113019459259], + [-49.89724727052004, 1.6314678748316678], + [-49.88916202893216, 1.5407157395472137], + [-49.876190504873954, 1.4807665038342446], + [-49.87871938321127, 1.4641100931673832], + [-49.87680142032666, 1.450521369391217], + [-49.88408848137376, 1.4020230455722922], + [-49.8818090291965, 1.3900555810452404], + [-49.89649842799979, 1.3316418758584097], + [-49.91035951132044, 1.2964785734603812], + [-49.906666830193, 1.2738005848491345], + [-49.899364852882556, 1.2321220502668622], + [-49.892895570469044, 1.2144313993096336], + [-49.893637654785344, 1.1929713780744124], + [-49.91272238023531, 1.155761136617732], + [-49.91803153800759, 1.1368597744819393], + [-49.93650054311671, 1.1138646535341135], + [-49.94271974910015, 1.1126265106714741], + [-49.945806704522084, 1.108202376687954], + [-49.94191693829094, 1.1024498734740469], + [-49.9455315812972, 1.0702113551623094], + [-49.94894400735289, 1.0397710593482714], + [-49.94366981667578, 1.032212024059604], + [-49.94062982535551, 1.0090841021986656], + [-49.94075511309584, 0.993497121369346], + [-49.9459511734178, 0.9829030007351166], + [-49.97056099062891, 0.9590896685727941], + [-49.97660719504743, 0.9585735201046977], + [-49.995393854204856, 0.9278214345691917], + [-50.00224018363581, 0.9090679495828276], + [-50.024701783869425, 0.8689213253949924], + [-50.04244957441134, 0.8563623262592478], + [-50.04374800060788, 0.8509035477923178], + [-50.05167296148223, 0.8508403528044017], + [-50.054164795486045, 0.8547043527286862], + [-50.05327587795401, 0.8462858241562067], + [-50.0585566975396, 0.839215991069074], + [-50.05325189028369, 0.8353410899429344], + [-50.061777703504895, 0.8254964633787135], + [-50.054172256353894, 0.8213929242768082], + [-50.05350619203669, 0.8061169460977938], + [-50.0573875519105, 0.8030531562440029], + [-50.065504656855744, 0.8085924673482124], + [-50.07000553254887, 0.7993751284202785], + [-50.06850308407555, 0.7921640044867789], + [-50.08113544622573, 0.7902902226102423], + [-50.086307608845594, 0.7834930401093486], + [-50.09305673387616, 0.7821359994689376], + [-50.09389012629102, 0.7020454672321759] + ] + ] + }, + "BA": { + "name": "Bahia", + "coordinates": [ + [ + [-39.31248429877172, -8.558348194735725], + [-39.28644596545438, -8.56379560765132], + [-39.27264750602706, -8.58382768855583], + [-39.27272214075892, -8.596530311165052], + [-39.266503025060075, -8.610976387671624], + [-39.253246597720334, -8.620020475080372], + [-39.2443975155335, -8.630791453714664], + [-39.24389517162275, -8.631719074620289], + [-39.241670282139935, -8.641789073837831], + [-39.24668633891952, -8.64762718524578], + [-39.248041796493155, -8.668804471155683], + [-39.24487615524602, -8.686036764121528], + [-39.234292046734936, -8.705373193404526], + [-39.22854591818239, -8.71035211549651], + [-39.222264856463525, -8.711704205035465], + [-39.217655525516655, -8.708496460180353], + [-39.20080520615786, -8.711024415482619], + [-39.181020104411054, -8.706337633737794], + [-39.17406970238803, -8.701381713466189], + [-39.16959412627937, -8.692075451668707], + [-39.15382879273498, -8.708611355787166], + [-39.126176648078115, -8.715750591365545], + [-39.11405932503376, -8.7181076850917], + [-39.090165757789364, -8.723949514327387], + [-39.06471091590958, -8.731637170615745], + [-39.04282827442909, -8.733385363587997], + [-39.03023139335573, -8.738521370318237], + [-39.014682783332056, -8.75390408607678], + [-38.991936488668756, -8.767588606849966], + [-38.97745726870477, -8.793123418752277], + [-38.96515758746648, -8.79431863308153], + [-38.95396850598974, -8.804100090892815], + [-38.94371828282058, -8.804272260903568], + [-38.92496300844523, -8.794784211333425], + [-38.88479520181705, -8.789641574375185], + [-38.86813013116872, -8.783902032964214], + [-38.854959185049665, -8.784563842372217], + [-38.80409585929905, -8.789217693163177], + [-38.78874157950043, -8.799694677487155], + [-38.75668021171669, -8.831241761503074], + [-38.739709574827316, -8.844883832792192], + [-38.71712287045545, -8.853188321813022], + [-38.71154146262869, -8.858427231511566], + [-38.706569999823216, -8.862297172155722], + [-38.69609735171252, -8.890562444435034], + [-38.69365469498344, -8.918740994095206], + [-38.693827326873766, -8.931925766339473], + [-38.690172648443514, -8.945313617443235], + [-38.6744090010531, -8.971793869929163], + [-38.66578326535874, -8.978168688878627], + [-38.640737228796326, -8.987304737074087], + [-38.63071188699956, -8.985203817490916], + [-38.62412549690277, -8.980083437644938], + [-38.60926684211985, -8.955157509514738], + [-38.60761269374567, -8.893300498157455], + [-38.60385131327813, -8.8806270876213], + [-38.57287247405376, -8.832385343125386], + [-38.55509498264521, -8.823394134641537], + [-38.54116713956629, -8.823522879986166], + [-38.50646983619623, -8.833271476600908], + [-38.47986199334635, -8.850125168588452], + [-38.46983470850996, -8.8657785377149], + [-38.47332045398294, -8.889581958859754], + [-38.47934576275297, -8.901780010015045], + [-38.48960216211915, -8.911077061224493], + [-38.50207414718537, -8.91665706339777], + [-38.5168261480784, -8.933271797533841], + [-38.51983852748099, -8.947619165313052], + [-38.514109150767275, -8.960034973353979], + [-38.50354025738322, -8.981447511426085], + [-38.46243379420092, -9.017276250323253], + [-38.449127486476776, -9.026395178378818], + [-38.4154794214395, -9.0386061240349], + [-38.403544273874964, -9.037269453883535], + [-38.38592697245795, -9.024861905439375], + [-38.35618895909, -8.997178194696755], + [-38.34026563935614, -8.990444505806721], + [-38.32077804823949, -8.99077836074283], + [-38.31696360952144, -9.001330009981453], + [-38.29643103581186, -9.022887514970805], + [-38.28890896749577, -9.040379786175663], + [-38.28998787755077, -9.047197911769796], + [-38.29707459387806, -9.055752835278001], + [-38.32107059771841, -9.070069813058362], + [-38.325895182329525, -9.078028772078316], + [-38.32028954065588, -9.091325615204456], + [-38.30462165057311, -9.09682369561706], + [-38.321430360725856, -9.116916753155017], + [-38.31952194326214, -9.138265442586595], + [-38.31290193207351, -9.148402914219531], + [-38.305887772282844, -9.153594187525771], + [-38.28762973691702, -9.17392007937427], + [-38.28010692944101, -9.206295163517071], + [-38.28754156175145, -9.217165489721806], + [-38.26264320190699, -9.266727802539064], + [-38.25057470651042, -9.290516741571881], + [-38.23761897797902, -9.329830541849972], + [-38.22362663642367, -9.34694255273533], + [-38.20955739465379, -9.35862405190715], + [-38.2003215987945, -9.379466250407884], + [-38.19450507607788, -9.384970795194157], + [-38.19560479374908, -9.392155304877727], + [-38.19420527782612, -9.394421918032846], + [-38.20189726105525, -9.400419913596483], + [-38.20504224385957, -9.416757995488773], + [-38.19700417978965, -9.421395320859945], + [-38.194875271006396, -9.421976820429725], + [-38.17772863626176, -9.425422489783308], + [-38.15497845560516, -9.443452219802582], + [-38.141957363169446, -9.437798819013286], + [-38.12139559738382, -9.441607728001797], + [-38.10897236394214, -9.435657403626161], + [-38.07973783680591, -9.440422692659983], + [-38.070279346241726, -9.448016952008254], + [-38.06787592754283, -9.45853854606338], + [-38.057585057245525, -9.459237533964268], + [-38.0431924879692, -9.4686345901325], + [-38.03035232113709, -9.46696749224291], + [-38.02218435544179, -9.470026710518958], + [-38.01997244204273, -9.475953215352558], + [-38.01095508574358, -9.47876689072414], + [-37.99797911068144, -9.499319079123719], + [-38.003320474334096, -9.515065718648888], + [-38.013178177487376, -9.52838506925971], + [-38.01391891944164, -9.535002021761214], + [-38.021886773101784, -9.541039883120048], + [-38.02307510867198, -9.549104245182706], + [-38.01807674028365, -9.552414917479613], + [-38.02017551270171, -9.561888463834851], + [-38.0268182221725, -9.574913680857913], + [-38.03003024278716, -9.574507747840146], + [-38.03175537842079, -9.568096221202987], + [-38.04030484117913, -9.572484413887768], + [-38.04113255474758, -9.576222615795993], + [-38.03687009992152, -9.581155460235816], + [-38.03910982758282, -9.583513227839406], + [-38.040537576502885, -9.602619629629658], + [-38.0353206864202, -9.612681127422313], + [-38.018735444889664, -9.623591004549908], + [-38.01594514497341, -9.629422398135786], + [-38.00877569607472, -9.63181637811003], + [-38.00812116103036, -9.63645508586368], + [-37.990142938108484, -9.641699661916057], + [-37.9879082176342, -9.64742838345133], + [-37.99055149102834, -9.650423720029707], + [-37.99039724490119, -9.655998067995974], + [-37.99305197857602, -9.656855491507663], + [-37.99710572206317, -9.650429617936059], + [-38.00703976570442, -9.651765453474953], + [-38.02220374817669, -9.666830779979543], + [-38.02501746904143, -9.682915075874565], + [-38.039931894541816, -9.686628887961], + [-38.04185245031807, -9.691421239395492], + [-38.043386738225415, -9.712269452583145], + [-38.03978581554359, -9.733405684144637], + [-38.03912136865829, -9.734534661675319], + [-38.0336411968398, -9.760162549511168], + [-38.02987828435077, -9.765538370893697], + [-38.03159587531226, -9.771072120649645], + [-38.028233901123485, -9.776114450555534], + [-38.0201488228449, -9.778005006794421], + [-38.01717980924992, -9.787454949970485], + [-37.99776579890274, -9.80338563615662], + [-37.97341970742655, -9.814502096470624], + [-37.96670311583069, -9.816088472888362], + [-37.96645974892056, -9.819927073964134], + [-37.97463393993292, -9.830076269213333], + [-37.97661886674485, -9.842134178951685], + [-37.97296537145292, -9.848164804782837], + [-37.97674561524789, -9.860552668347236], + [-37.98257471298543, -9.868833444418625], + [-37.985738184052394, -9.889897683477642], + [-37.991850530391105, -9.902663548021168], + [-37.99780013932174, -9.910841535205748], + [-37.99768688889735, -9.916749665913486], + [-37.98795383232173, -9.921873375947369], + [-37.96836636031357, -9.962821853011164], + [-37.9574966063715, -9.971319980911078], + [-37.94957793657855, -9.971493536499763], + [-37.93671110369906, -9.966055550335515], + [-37.92736952797211, -9.965620628269415], + [-37.92218926228659, -9.973254734555123], + [-37.91555334472491, -9.97589525341962], + [-37.881440828564166, -9.980765778712065], + [-37.875483895679494, -9.978808988747458], + [-37.84963301607549, -9.993147414761298], + [-37.8332548144341, -9.998383527244838], + [-37.82333187320343, -10.015697445544472], + [-37.823962879332335, -10.034570171971074], + [-37.82393092002298, -10.03584248512201], + [-37.821005289952794, -10.057327462123089], + [-37.80977223178316, -10.082946072671195], + [-37.79831617631132, -10.10906893660562], + [-37.7812292906772, -10.128206553093106], + [-37.77718499610375, -10.133833569445445], + [-37.774413172476926, -10.144832148861719], + [-37.78296688759763, -10.180676584414572], + [-37.780197679741704, -10.187909199490313], + [-37.76573608208724, -10.196253126298979], + [-37.74155903487481, -10.317381493457667], + [-37.74137912861729, -10.317967708510567], + [-37.73490898726655, -10.332843209370406], + [-37.74361273840233, -10.337786637766857], + [-37.762566031492156, -10.344464800381086], + [-37.77662047791534, -10.344277195465354], + [-37.785708036091535, -10.348769072882249], + [-37.787650193585534, -10.354520299396059], + [-37.80773706925669, -10.36668999117615], + [-37.81306261403714, -10.36624422980807], + [-37.822093925687064, -10.372353982222377], + [-37.82412040836736, -10.378035345128474], + [-37.83073249396079, -10.37500715315767], + [-37.834111239576615, -10.380153871072121], + [-37.83902424148573, -10.379246992896954], + [-37.833629881683486, -10.385380985827736], + [-37.84066336879077, -10.389936640093405], + [-37.84256589373453, -10.398538121723172], + [-37.83732187245962, -10.401065186059855], + [-37.85324517187368, -10.406526375361123], + [-37.85120818026875, -10.41612838925045], + [-37.858930099463976, -10.430241174580129], + [-37.84938836193263, -10.443121658607971], + [-37.82109548780481, -10.4846900228624], + [-37.81734765052154, -10.503980055244396], + [-37.813085628498854, -10.508520839628062], + [-37.81706374547891, -10.513126562009253], + [-37.8156773080689, -10.517430368343971], + [-37.82234331478895, -10.531004998195163], + [-37.819558585968885, -10.539475250306214], + [-37.8238240437645, -10.538561982641797], + [-37.82944344446063, -10.541286615311638], + [-37.827979998148884, -10.547665285648293], + [-37.831823858329784, -10.551359800229486], + [-37.8406095373733, -10.549599777918301], + [-37.83969891157665, -10.556109732485035], + [-37.83314984821514, -10.560633477688599], + [-37.835366834208145, -10.571164418750122], + [-37.83067753179328, -10.5730585838254], + [-37.831561940191065, -10.579006718475345], + [-37.82591730437887, -10.580388055685326], + [-37.83051292064596, -10.584732122918705], + [-37.83050445287698, -10.584787480945973], + [-37.82121521765755, -10.644548635389064], + [-37.814898036795604, -10.685106818260678], + [-37.81396600339355, -10.691085726632778], + [-37.82886482073602, -10.697046604881143], + [-37.844533613339244, -10.703315360292198], + [-37.84494483397317, -10.70347970019127], + [-37.86702975540828, -10.712315026896402], + [-37.88220773390686, -10.718387886121462], + [-37.8982274951978, -10.724796635226978], + [-37.901040814117934, -10.725922921715883], + [-37.90930088897853, -10.729227450171628], + [-37.92027423372285, -10.733616722348462], + [-37.9395709678693, -10.741337407996525], + [-37.97264391435236, -10.754568460163863], + [-37.97451880248155, -10.755246096188317], + [-37.98522321184945, -10.759114736649739], + [-37.9908616725876, -10.756971414797759], + [-38.012638777250345, -10.735270896047478], + [-38.021462186338134, -10.730966350917774], + [-38.03408970609713, -10.712549131500026], + [-38.04070313356357, -10.702901220260708], + [-38.04212627825121, -10.700823676618988], + [-38.04712012698056, -10.69353696446641], + [-38.04929255252335, -10.705974448365565], + [-38.06765852534728, -10.715697263948243], + [-38.10076407518808, -10.712887241170508], + [-38.11246224787187, -10.713283055217243], + [-38.12293504746185, -10.718383965311924], + [-38.14513848319403, -10.717934800532289], + [-38.156764909136584, -10.712554801439873], + [-38.17039553409711, -10.712362565999754], + [-38.175387666179454, -10.706294563395405], + [-38.18633214090909, -10.707518260670797], + [-38.19901911004488, -10.711022462826714], + [-38.21083392372667, -10.717267078600319], + [-38.215456694419636, -10.725083363940932], + [-38.218155545047516, -10.736266490251264], + [-38.21745987404401, -10.73824391825288], + [-38.210392487746525, -10.756613520375412], + [-38.21037660849376, -10.756653773161352], + [-38.21847605619523, -10.782568358280033], + [-38.23310753920002, -10.793164491900862], + [-38.23638068292751, -10.796267957122412], + [-38.23668115045392, -10.808028280129852], + [-38.23498994506337, -10.812134331136116], + [-38.24507813223008, -10.823008072295735], + [-38.24294746971936, -10.827996304075898], + [-38.2396021929697, -10.826410695566512], + [-38.232226363848724, -10.83994290918315], + [-38.237809312953814, -10.859540047518118], + [-38.23648980896764, -10.88167422211209], + [-38.230148750100064, -10.894281653463224], + [-38.2263756215674, -10.916613587316396], + [-38.215173140496624, -10.923561382181907], + [-38.21116187622117, -10.93126743387632], + [-38.20557677678999, -10.922024256662098], + [-38.19918276670219, -10.927415326393287], + [-38.202831772574406, -10.935360568090692], + [-38.201049649377126, -10.938421641551276], + [-38.180947324085395, -10.944230488087875], + [-38.18034392066434, -10.950302478272913], + [-38.18740332096004, -10.962659511144931], + [-38.17991637802541, -10.969753070665481], + [-38.180561718692545, -10.97476933342864], + [-38.14945288775944, -11.001536099889218], + [-38.144122133316344, -11.002316893488338], + [-38.13993350249575, -11.009035506765787], + [-38.129379494146185, -11.018905630564001], + [-38.123865426479064, -11.018361931250643], + [-38.124977067349185, -11.010206763439259], + [-38.12110973952405, -11.007395904566946], + [-38.101758658465826, -11.015092988355237], + [-38.10099175265787, -11.020683201433712], + [-38.10590078276682, -11.02587367612908], + [-38.09805905563, -11.038789206374123], + [-38.10032035132688, -11.041504437372806], + [-38.09634372844415, -11.049556970314287], + [-38.091108131894494, -11.051626748492776], + [-38.09092697233962, -11.058085897128704], + [-38.08530002387106, -11.060266373499807], + [-38.08451485442857, -11.06524518261732], + [-38.081375607808006, -11.064420697707293], + [-38.074918820517404, -11.07657287303048], + [-38.086422956167375, -11.097764725088794], + [-38.0922341682779, -11.09839586978745], + [-38.09400837467055, -11.1018374525733], + [-38.088956913988255, -11.106339760192297], + [-38.089151778604204, -11.115268678650544], + [-38.08384612513948, -11.11974796664168], + [-38.06916618635536, -11.119087231905823], + [-38.065486674597466, -11.123082521551025], + [-38.06515726542923, -11.131473318144032], + [-38.070782033366704, -11.142342657438693], + [-38.066360109415214, -11.14912781779972], + [-38.066784656417, -11.16092048561055], + [-38.06243972153298, -11.164099969652774], + [-38.06176933537492, -11.172128549670267], + [-38.04682089419059, -11.178711138403875], + [-38.02323060412822, -11.17797805563975], + [-38.01395867823702, -11.18479762143906], + [-38.00085932483055, -11.195121287904085], + [-37.996422103724406, -11.19111825702822], + [-37.9873544324405, -11.196043703371238], + [-37.984934254942274, -11.195918630721282], + [-37.98012435251826, -11.191910331270075], + [-37.97413536853662, -11.195360355896351], + [-37.98126747039493, -11.198905225081543], + [-37.97932490310352, -11.205230253009558], + [-37.9819428778057, -11.210362392180558], + [-37.977484105674534, -11.21473043294716], + [-37.97785332751765, -11.221953141887148], + [-37.99094669802775, -11.228628044359795], + [-37.98665931742078, -11.23754120466247], + [-37.99369277884112, -11.240504727616695], + [-37.99012310441956, -11.248702249034189], + [-37.9874775984027, -11.245958316093315], + [-37.98426996151522, -11.247826166387668], + [-37.98708860898738, -11.253744040013533], + [-37.996000330043046, -11.25952835966507], + [-37.99094202218175, -11.266254315995395], + [-37.98632436972515, -11.267182390220201], + [-37.98735756348799, -11.271973088357642], + [-37.993358073879754, -11.272975187325404], + [-37.99292218260243, -11.279487642483293], + [-38.00437283042586, -11.28619813698462], + [-38.01492802106971, -11.285695725077902], + [-38.01079066365612, -11.294085781535129], + [-38.003496003352666, -11.292783079204774], + [-38.00141567797354, -11.303103899356026], + [-37.995800488022645, -11.312386085552202], + [-37.992346856228615, -11.312800032401032], + [-37.990935385424834, -11.320920010197586], + [-37.998698097468875, -11.322373913121005], + [-37.9879014157352, -11.331612450454424], + [-37.9983199400457, -11.335854269507651], + [-38.00014488318499, -11.33935566586075], + [-37.99363309361872, -11.343428851401002], + [-37.99004098930075, -11.341794493575058], + [-37.98251835983118, -11.348216851171562], + [-37.978798291393595, -11.365803648407116], + [-37.9729555336608, -11.373815082014799], + [-37.969780021258636, -11.37297926258253], + [-37.9687720379658, -11.381874836739483], + [-37.981113003834416, -11.385360145798364], + [-37.977960606798824, -11.3935947274624], + [-37.96793177461871, -11.390558481884488], + [-37.96516204244815, -11.39316503143333], + [-37.96562887537675, -11.402788817691363], + [-37.961042460079874, -11.401781412627631], + [-37.95803334495695, -11.396520792486891], + [-37.95259713017238, -11.395914427371553], + [-37.95119948012258, -11.404472091202345], + [-37.9559569885218, -11.407559526525917], + [-37.945951952033504, -11.41332466735816], + [-37.942872740768685, -11.41864087147436], + [-37.94514336702345, -11.4230270047965], + [-37.94206132629385, -11.42326898349529], + [-37.936722173262154, -11.422611036691888], + [-37.93530523809901, -11.41362982182356], + [-37.928388710262894, -11.409935429700358], + [-37.92905499929234, -11.401967267119634], + [-37.91705312031751, -11.403038061758386], + [-37.91438990408723, -11.408171310205361], + [-37.90736740545039, -11.408205778003094], + [-37.905184615827125, -11.410372728424685], + [-37.90651321407413, -11.420215082551916], + [-37.90396439907982, -11.423041049122373], + [-37.90743597548501, -11.426756893774956], + [-37.90232699408648, -11.428114651381236], + [-37.90034570249743, -11.437090949467231], + [-37.8937592651194, -11.433770627200458], + [-37.89202284745027, -11.436443927745351], + [-37.883168101314375, -11.424919488639969], + [-37.86795241936883, -11.426292686794602], + [-37.86612984459428, -11.428709012979146], + [-37.87424693513499, -11.428326970838233], + [-37.88108756116396, -11.433446666129504], + [-37.870145792919615, -11.435827387498916], + [-37.8678093133982, -11.442519630101353], + [-37.850864115358256, -11.440264070131335], + [-37.848466286151925, -11.444040991150096], + [-37.85258496328249, -11.446370100944161], + [-37.85348301208704, -11.451976429229127], + [-37.86315831477838, -11.452702130754657], + [-37.863717152074244, -11.455480309378208], + [-37.86313595532659, -11.467445133378385], + [-37.84845274412157, -11.469947497827446], + [-37.84015148165313, -11.481693947859808], + [-37.83310018875125, -11.483080383533714], + [-37.82490615882751, -11.491724582264643], + [-37.816290755344546, -11.492034465526554], + [-37.80901238654199, -11.496972438447896], + [-37.8132320981548, -11.501365548687916], + [-37.818538277431564, -11.499348059943296], + [-37.819588083290725, -11.501704989742443], + [-37.81234413843981, -11.516074921248663], + [-37.80081964464719, -11.520502534659071], + [-37.79511504399566, -11.51861845738331], + [-37.791172074272744, -11.523778314022984], + [-37.77503027757069, -11.52449551666828], + [-37.77070896795166, -11.531482972819498], + [-37.763250807146534, -11.528523332183335], + [-37.76337391807095, -11.524707045280099], + [-37.759632343797044, -11.525005127800156], + [-37.74856794526993, -11.538467761967855], + [-37.731088014808414, -11.537555411815022], + [-37.7280147862369, -11.552787890031308], + [-37.71942603147259, -11.550097934084322], + [-37.712299328856304, -11.552719059124708], + [-37.70287181771387, -11.540390309783238], + [-37.69654527660271, -11.545067289035899], + [-37.69583585727455, -11.549456315079091], + [-37.700438942312665, -11.56237452583156], + [-37.68820795389472, -11.566241016999989], + [-37.68473021245535, -11.562042564023724], + [-37.673555466645304, -11.56867867778645], + [-37.67019778123019, -11.564056391959816], + [-37.67260799269927, -11.559477904984567], + [-37.66189085320606, -11.54348251420427], + [-37.66494141402245, -11.533261766270689], + [-37.65750284096159, -11.533266628561238], + [-37.6538505746145, -11.529273828180678], + [-37.65173608409117, -11.518324355323227], + [-37.64391799171405, -11.524262304979885], + [-37.63711948130556, -11.517995538280628], + [-37.63196361729542, -11.518822535879389], + [-37.62820237834707, -11.529731268633256], + [-37.616668973854146, -11.538102563055935], + [-37.60862049313441, -11.536382272938566], + [-37.60336096296959, -11.540339117965816], + [-37.58941127910319, -11.52818143604091], + [-37.58148455987857, -11.531166202220504], + [-37.579165135307505, -11.534412185650353], + [-37.58569774871678, -11.542370881832444], + [-37.5788920382379, -11.552028058576177], + [-37.572583579758096, -11.548787631634806], + [-37.573786314863106, -11.542632393074346], + [-37.5688857757246, -11.539896503538136], + [-37.56231665821076, -11.54325972947389], + [-37.55855989667744, -11.550872413492522], + [-37.5529124397821, -11.547561713060114], + [-37.519933535821444, -11.548882364636356], + [-37.51612455757603, -11.535887512327704], + [-37.50973418846928, -11.53044345604444], + [-37.503624320101025, -11.524488187783962], + [-37.463722197228414, -11.52352750723343], + [-37.45021037222015, -11.520422106940567], + [-37.41194080543534, -11.495143224150828], + [-37.403114009721236, -11.488460496230026], + [-37.39256744434426, -11.478945523883569], + [-37.37329148139569, -11.45466580359898], + [-37.3527669790137, -11.442457423729627], + [-37.34118494283977, -11.442373582658494], + [-37.347266624749764, -11.447726937055963], + [-37.34331293128201, -11.450825899698241], + [-37.34620460580794, -11.46223376435113], + [-37.38784566200979, -11.50418400322209], + [-37.412318351168366, -11.543449836667811], + [-37.49030399107408, -11.697326035767109], + [-37.509930449278116, -11.73670392048809], + [-37.515675449634934, -11.74260792958697], + [-37.51667418563414, -11.750554199708311], + [-37.54030273631668, -11.80194814064252], + [-37.54100452887686, -11.803410264504324], + [-37.56489874138267, -11.855468876238323], + [-37.61526242195543, -11.963741926144278], + [-37.61679101710825, -11.966745636295773], + [-37.62251508343591, -11.99579397862649], + [-37.68655665660841, -12.093229588068137], + [-37.690357684634535, -12.108039158542702], + [-37.698314423646075, -12.121236071990861], + [-37.76279380384149, -12.217308752171517], + [-37.7615947101554, -12.221211199775441], + [-37.77269395791385, -12.237252367096094], + [-37.77626277720831, -12.24283290896144], + [-37.79326449562734, -12.267255660640027], + [-37.83675688183181, -12.322580842312702], + [-37.88235415081213, -12.390003987957423], + [-37.884839859876315, -12.393948341554685], + [-37.89508943991647, -12.404453263500649], + [-37.897109260374684, -12.403528008840059], + [-37.89688105164904, -12.408710648221044], + [-37.91674758092253, -12.43762789190932], + [-37.94428911053478, -12.472132237775138], + [-37.962516625518546, -12.500786158051373], + [-38.0040862795844, -12.57738039915296], + [-38.00797145704156, -12.579528362458909], + [-38.017982406891385, -12.582182087907688], + [-38.032902785845494, -12.595214701762373], + [-38.032496371491895, -12.59625732051597], + [-38.044513346717366, -12.61228873117214], + [-38.0495765714432, -12.634992845164037], + [-38.05733780656466, -12.638483025111759], + [-38.0650088944658, -12.650018294885255], + [-38.077872523944066, -12.656840587944853], + [-38.09162512723676, -12.675573377532764], + [-38.12486996610261, -12.70668240800266], + [-38.17689998984338, -12.772252448062883], + [-38.197533420844884, -12.789059637245083], + [-38.21517116964919, -12.816043058393433], + [-38.233374107767816, -12.83265571423681], + [-38.24795481594422, -12.854104544904871], + [-38.26701586097451, -12.871389120922569], + [-38.27868795795803, -12.876585886166776], + [-38.295621959811704, -12.896028163106932], + [-38.31854334511299, -12.925582742261684], + [-38.3471162774765, -12.950777716379418], + [-38.35740264189489, -12.9552606990887], + [-38.366764014737186, -12.949676485419152], + [-38.379764328222315, -12.951036911759989], + [-38.381179878053196, -12.953797581319854], + [-38.39570661932913, -12.95733012039869], + [-38.42498800407182, -12.976333668825884], + [-38.45731281957053, -13.004772220324057], + [-38.47254502241072, -13.01260113014169], + [-38.489038270691395, -13.014680441267142], + [-38.49849350246487, -13.008224701912845], + [-38.50204069209298, -13.010287182009014], + [-38.533150234051966, -13.007778066525931], + [-38.583242997200074, -12.999766256968071], + [-38.559679958176226, -12.954312745562117], + [-38.5586004383977, -12.932700094646725], + [-38.56218953969897, -12.920003873517723], + [-38.61628420751055, -12.931333847394592], + [-38.60590089022975, -12.959084538987362], + [-38.61596100305882, -12.97886806536938], + [-38.61582842652243, -12.983582270171539], + [-38.620261709909755, -12.983787055745157], + [-38.63630235170559, -13.002747153047201], + [-38.641687878542356, -13.00974156353709], + [-38.646530455289174, -13.01675061939509], + [-38.65534605136772, -13.02951916747017], + [-38.666219881831935, -13.036894619175985], + [-38.67343574819983, -13.037294002620346], + [-38.698461172638034, -13.055550346493206], + [-38.71446809039987, -13.060293644435413], + [-38.72688966764012, -13.072036837374553], + [-38.730919523705985, -13.081240314920223], + [-38.73687919942354, -13.08824322383802], + [-38.744067543407134, -13.088648639904072], + [-38.75077393374808, -13.09483093489429], + [-38.763504273012465, -13.118342133252224], + [-38.76802899282875, -13.120799162639898], + [-38.78968204338388, -13.130729318666559], + [-38.799147041461445, -13.136040507211144], + [-38.79654415168076, -13.137611264650754], + [-38.80573375597889, -13.14677056758011], + [-38.834620225272204, -13.154921316172073], + [-38.85320816494694, -13.16698832695012], + [-38.86834520449804, -13.185497929900565], + [-38.88573760427502, -13.192791033227055], + [-38.905870568843056, -13.2059597437143], + [-38.90984939306349, -13.212061485126872], + [-38.91582670174534, -13.212558206712094], + [-38.92204082356322, -13.21231625557009], + [-38.932543571781046, -13.217916020468135], + [-38.94703515721485, -13.237966347753703], + [-38.964375424591076, -13.28092618078464], + [-38.96607072123197, -13.289488150892138], + [-38.96815526525001, -13.344491900342508], + [-38.96112631580767, -13.36746551080439], + [-38.949320779736595, -13.386188853350703], + [-38.943180760580766, -13.39567453502029], + [-38.93817774130174, -13.392604591965013], + [-38.92605540652987, -13.379856225451833], + [-38.9200087412322, -13.375852213155277], + [-38.91645615587986, -13.372902283573849], + [-38.91093827224568, -13.378595901019773], + [-38.908930640719646, -13.380651969909104], + [-38.9062663597866, -13.377959316608662], + [-38.906145524040745, -13.381235078594543], + [-38.90420940033318, -13.396020301768218], + [-38.90715798158151, -13.402012429677459], + [-38.903653335407725, -13.404732743234465], + [-38.90293146782484, -13.416033722916772], + [-38.90516165393155, -13.426528654547328], + [-38.90220245537691, -13.427435961536148], + [-38.89717462739424, -13.432665486903087], + [-38.89410057066337, -13.431997785863194], + [-38.89198692983876, -13.442954476305797], + [-38.88976111624837, -13.441551429259608], + [-38.888542090169615, -13.444663227580575], + [-38.892095157238266, -13.453763337945562], + [-38.889535413669954, -13.457449234990143], + [-38.89941654823167, -13.470911791710156], + [-38.9052366370145, -13.477961949644916], + [-38.91358962052182, -13.474903225739977], + [-38.91819959620383, -13.476835373018083], + [-38.916544489454196, -13.486276089110877], + [-38.905317545617784, -13.484194952661046], + [-38.904512167984834, -13.487599221211529], + [-38.90962522853598, -13.48989764584462], + [-38.90793452864888, -13.494477638178354], + [-38.911846194397974, -13.500870166566525], + [-38.92731231926903, -13.510642869070375], + [-38.93206581581415, -13.525351538929424], + [-38.93537157133372, -13.560070250622857], + [-38.93327090865846, -13.570306971062374], + [-38.92694004152946, -13.576370716877966], + [-38.91492599460418, -13.577744668778568], + [-38.914909582224674, -13.5821788315021], + [-38.91504579225029, -13.589045983652904], + [-38.90240374392797, -13.598484655330706], + [-38.906207198882576, -13.607623658190553], + [-38.9060442361651, -13.621752906426789], + [-38.89690235503079, -13.625862103813102], + [-38.88974908206007, -13.620596777732212], + [-38.89088499798423, -13.656479710630672], + [-38.91557564868574, -13.673997173574937], + [-38.92229826045229, -13.657244627242731], + [-38.93703806641148, -13.65559516898585], + [-38.9448834930149, -13.66040393766121], + [-38.94765505225021, -13.663972572735114], + [-38.952533766621265, -13.66924882089697], + [-38.966816233868364, -13.670660544510316], + [-38.965774860319286, -13.677331245471267], + [-38.9654498463517, -13.687256145899015], + [-38.9778202636311, -13.698944958517872], + [-38.988241340370415, -13.715040506814114], + [-38.99792665882785, -13.744569335925583], + [-39.000155547725, -13.783555003070775], + [-38.984459621476255, -13.824789943237757], + [-38.96945347477423, -13.842997813725567], + [-38.95170540140114, -13.87200180516313], + [-38.94718659973674, -13.878954481402374], + [-38.93599714131062, -13.886556151948525], + [-38.928506055241435, -13.906952104873096], + [-38.93000238912707, -13.933809953485584], + [-38.92866591886887, -13.93705665105783], + [-38.94515954440601, -14.00198898623765], + [-38.9465528291865, -14.019882278439908], + [-38.946753574002365, -14.022463023432742], + [-38.95698756669639, -14.066882189903568], + [-38.95636989741118, -14.078927666538151], + [-38.97710168668001, -14.139726537462797], + [-38.98012353579385, -14.170259685760245], + [-38.989594668545806, -14.187883627467379], + [-38.99149969393997, -14.221377775238025], + [-38.997186428858186, -14.247874292292552], + [-38.99394937373988, -14.273770233583834], + [-38.99128529193722, -14.275808465502221], + [-38.988620781071276, -14.2720139577853], + [-38.98512510005522, -14.276538172598924], + [-38.986371594990665, -14.29046211267472], + [-38.98209691460882, -14.29207164996362], + [-38.98226139732948, -14.29602388615596], + [-38.990623795670345, -14.307888891111311], + [-38.989647749594226, -14.312822374982527], + [-38.99295288436352, -14.31377485208828], + [-39.000361615492835, -14.338768727633127], + [-39.00682414647994, -14.340930039680357], + [-39.006313514376416, -14.344203566863532], + [-39.00187995708638, -14.36641954297763], + [-39.01613000373571, -14.419214195492561], + [-39.01637285047742, -14.422037632424605], + [-39.02856037486233, -14.479659489166577], + [-39.0355877541422, -14.501530051257147], + [-39.03655321277216, -14.531903391850063], + [-39.03750945077759, -14.535059298943919], + [-39.042091899923044, -14.5533962630812], + [-39.04275275759501, -14.554912348935877], + [-39.04908163341721, -14.573468171582011], + [-39.04937388370234, -14.574327879067928], + [-39.0500454033469, -14.576295783111899], + [-39.05021636873701, -14.576796947166496], + [-39.053177438456245, -14.585480826425076], + [-39.05524786077706, -14.597485661062317], + [-39.05532079319059, -14.59819401443076], + [-39.05677563087469, -14.606824228642154], + [-39.05694394423035, -14.607821104767138], + [-39.05703224819599, -14.60834700666112], + [-39.06436739292585, -14.64082565014251], + [-39.06432251124867, -14.642159493039166], + [-39.065533286830224, -14.668673894378921], + [-39.06563846057779, -14.675822780763482], + [-39.06570701061421, -14.705421738902631], + [-39.06385265762548, -14.728725445265042], + [-39.06173442641447, -14.752274069978894], + [-39.05356668634702, -14.778263408405849], + [-39.03965683144837, -14.786230185972757], + [-39.03703614420024, -14.783268380085842], + [-39.032674796841235, -14.784529743952545], + [-39.02896094479376, -14.781652738553602], + [-39.02664963866239, -14.77122133872952], + [-39.026700122699296, -14.781461295873791], + [-39.032055735141114, -14.785977413767155], + [-39.032628901260146, -14.805043197056577], + [-39.03650853434054, -14.808332946380304], + [-39.03398036715463, -14.8116542048396], + [-39.028201686021426, -14.805059052597386], + [-39.02479527775879, -14.806156287514776], + [-39.025875038497816, -14.841161753469066], + [-39.02404321515203, -14.879723197687614], + [-39.02686734655218, -14.879865200082989], + [-39.02311295540513, -14.883994338372355], + [-39.02187892878621, -14.903010923459709], + [-39.0195638749263, -14.924123879715106], + [-39.01017605930302, -14.94644082739992], + [-38.99820396545039, -14.994121051660922], + [-38.99814333541247, -15.008415333768195], + [-38.99775952318332, -15.09397286884353], + [-38.99885542541802, -15.228071628386266], + [-38.99829560837395, -15.231136146970183], + [-38.99122503800984, -15.290614658412618], + [-38.99405944162962, -15.296023892695333], + [-38.98715742311609, -15.303723709678735], + [-38.974029511394264, -15.386254136989203], + [-38.95411207320643, -15.45919293036224], + [-38.95589798810098, -15.470968095403762], + [-38.95125952659848, -15.474916139769368], + [-38.94258645558185, -15.52828132413272], + [-38.94442114721118, -15.595849744023853], + [-38.93810722687016, -15.643557222883254], + [-38.93312292388728, -15.676051337467202], + [-38.923364727618285, -15.709403694506097], + [-38.91476213979855, -15.714129947270065], + [-38.89879229234241, -15.760647494496698], + [-38.90009467381986, -15.765073836041406], + [-38.895070110507326, -15.768738305220756], + [-38.869594453407785, -15.823726437903453], + [-38.86106122490316, -15.832716295977562], + [-38.86122783456268, -15.836682376733004], + [-38.86691564253058, -15.840697695579912], + [-38.86563427210574, -15.85143840206843], + [-38.85718330397487, -15.854413290118297], + [-38.85670485804874, -15.86055651993472], + [-38.86422701808089, -15.868857104114369], + [-38.86947655400796, -15.882413751980808], + [-38.88734026450092, -15.91767964939786], + [-38.91642503148265, -16.00543338641378], + [-38.93753540386195, -16.054671107825165], + [-38.945698493500664, -16.083176761958455], + [-38.948870691773095, -16.092179355944925], + [-38.95355671935412, -16.098539516609048], + [-38.95814475355056, -16.125300718861283], + [-38.95596265028378, -16.140921784039783], + [-38.949069324124494, -16.156332945109657], + [-38.9570085146571, -16.16521074250842], + [-38.964731096190604, -16.18840799887823], + [-38.96950496189089, -16.189301001904855], + [-38.975586964207544, -16.212623451013883], + [-38.99191621144323, -16.221162412261467], + [-39.00961306861291, -16.24238964834363], + [-39.0115032149428, -16.24935770709], + [-39.01761215451033, -16.252625036770407], + [-39.02125849907488, -16.260280368444544], + [-39.02161403397767, -16.275326665062995], + [-39.022355635324985, -16.27668617178138], + [-39.02218024315832, -16.28333369051223], + [-39.01373264909405, -16.261915996332657], + [-39.02375643870921, -16.302634102081775], + [-39.020836371561614, -16.322782742004172], + [-39.01383605994841, -16.32976345502767], + [-39.00545691902844, -16.332502493161435], + [-39.006253382597876, -16.34029085569181], + [-39.01275993515759, -16.353181679151668], + [-39.00850301291138, -16.37549394116354], + [-39.025582203361715, -16.380534374859188], + [-39.03919725727158, -16.394416011440978], + [-39.058620340840775, -16.42756590509883], + [-39.06047507881169, -16.448834256989713], + [-39.06444146217624, -16.455634646967066], + [-39.061670215786066, -16.459128764048806], + [-39.05911296017951, -16.45795820484429], + [-39.05977394008591, -16.461280518967023], + [-39.06105408268127, -16.47359879741986], + [-39.066831123279364, -16.481677659928916], + [-39.06714945529365, -16.492852757579374], + [-39.08326100475878, -16.53563819543019], + [-39.086715183338846, -16.56356410365785], + [-39.08904032204372, -16.589818742778814], + [-39.09434199022918, -16.60843906682748], + [-39.0907819497651, -16.627919342786807], + [-39.096364035950174, -16.646724748448328], + [-39.094138972433576, -16.653086290901136], + [-39.10336911069495, -16.66778484091656], + [-39.10376569763627, -16.691901521737375], + [-39.107612729818925, -16.70989915725598], + [-39.11509551849392, -16.71260274050031], + [-39.1160639967641, -16.719469262103008], + [-39.126365576624075, -16.731871368277208], + [-39.128448569327674, -16.747801007709384], + [-39.13460923926872, -16.751834542147634], + [-39.138001994637776, -16.750181682161514], + [-39.14141634917703, -16.756897634038424], + [-39.14443936306266, -16.799139691321372], + [-39.144310213629375, -16.799710685239408], + [-39.14234483145816, -16.86743530538003], + [-39.12894840424542, -16.88602783938841], + [-39.111958461956256, -16.89570413724737], + [-39.11782935993891, -16.89898641775898], + [-39.14142298971642, -16.924477166001065], + [-39.152655083265955, -16.942342960942188], + [-39.1558177882017, -16.98025968350854], + [-39.17337392122965, -17.01393754616492], + [-39.17436720782119, -17.05239972026184], + [-39.16589939674277, -17.062886415006222], + [-39.176341472506664, -17.065855405789097], + [-39.18014218583398, -17.081235355762402], + [-39.17892509355602, -17.092298730083154], + [-39.18115707019861, -17.109374427651098], + [-39.18486466691923, -17.118152631762104], + [-39.19819454251711, -17.128376890435792], + [-39.20536445966758, -17.141219528910504], + [-39.213061654702756, -17.168797027219206], + [-39.21231284237929, -17.239120257924558], + [-39.2193058638001, -17.261432335309916], + [-39.219942506148634, -17.311724344898515], + [-39.21486384519868, -17.346854143832353], + [-39.20414453844513, -17.405227867974965], + [-39.19134021511071, -17.44697671281152], + [-39.193007841647265, -17.515939019868124], + [-39.18856309910709, -17.56161953633755], + [-39.19108145772678, -17.566739589208904], + [-39.19491701374479, -17.579584371382307], + [-39.18362080259322, -17.618468486192274], + [-39.13736238876343, -17.684755924845028], + [-39.13580859772138, -17.688234515326897], + [-39.13966717937539, -17.69417346532279], + [-39.18379496342786, -17.732301402465765], + [-39.18422448937173, -17.73274978200956], + [-39.18047329558211, -17.749702647128267], + [-39.202946829067976, -17.764995696466034], + [-39.207885792246735, -17.776164272276425], + [-39.260300417843936, -17.83070033979754], + [-39.26631316931572, -17.843407066238886], + [-39.27188790035069, -17.855686184858946], + [-39.26411090424851, -17.864199446892837], + [-39.27130795375346, -17.87175157216412], + [-39.325888675112154, -17.895231936045906], + [-39.337449633399814, -17.89709204811012], + [-39.34182994833977, -17.89403099401393], + [-39.35970032064346, -17.901364804376602], + [-39.36897303302241, -17.90794511877906], + [-39.39872794250018, -17.917862904089283], + [-39.44313945715799, -17.94488702938766], + [-39.47091676432788, -17.971472188541604], + [-39.4926748070131, -17.997999938683545], + [-39.52128761015412, -18.040796166019405], + [-39.54211731079181, -18.081067042870796], + [-39.54989415621122, -18.095785258889613], + [-39.55502656185349, -18.085415093354758], + [-39.5602964106008, -18.087237497752987], + [-39.572420911266256, -18.09054037201165], + [-39.57395421325485, -18.080662566163088], + [-39.577170771265884, -18.083949645446538], + [-39.58267117681267, -18.083407401335933], + [-39.57185905214765, -18.092808973030717], + [-39.56119227996658, -18.090294827929668], + [-39.56567103992857, -18.094895755330153], + [-39.5634240091917, -18.109122553811265], + [-39.55422154830633, -18.10316649397313], + [-39.553168362071766, -18.098662011679885], + [-39.55130789978211, -18.10024994060483], + [-39.58572215033366, -18.146158459928646], + [-39.63630384947467, -18.23511379359648], + [-39.6379239646055, -18.249690900679138], + [-39.6530800651062, -18.28805574422218], + [-39.65222244438515, -18.295734926173527], + [-39.66007217612937, -18.31793536098535], + [-39.65814284802156, -18.324233016484474], + [-39.66916722710701, -18.34943445693629], + [-39.66603412482041, -18.333235259912428], + [-39.666034173997716, -18.333235233607287], + [-39.66968287151933, -18.33128345915774], + [-39.6742462458004, -18.324759588279278], + [-39.688966626039495, -18.320848759221796], + [-39.783049236294296, -18.26107400851567], + [-39.83382810845756, -18.228754359120853], + [-39.8656888517824, -18.208442534772985], + [-39.86584705134063, -18.208341611206013], + [-39.91890230625888, -18.17447657032003], + [-39.91892554711101, -18.174461727709797], + [-39.94713437286422, -18.15644816598345], + [-40.020082654871146, -18.109702738667693], + [-40.06149839836063, -18.08362755433214], + [-40.0691836974562, -18.078786774862554], + [-40.22197714417062, -17.98067963100414], + [-40.221977166150175, -17.98067949625056], + [-40.22683666838264, -17.958282570226245], + [-40.24216957219577, -17.952594884329052], + [-40.26460063896314, -17.933902270035578], + [-40.26460062890507, -17.933902155338284], + [-40.26356082666415, -17.92204658618661], + [-40.21267151794632, -17.895817675059863], + [-40.21214824183618, -17.89521661434947], + [-40.17511322455725, -17.852700903543084], + [-40.174393964330285, -17.851875434536442], + [-40.17439400845029, -17.851875341608988], + [-40.17568687308823, -17.8491521761936], + [-40.17706699404281, -17.846978558271225], + [-40.18642672673108, -17.83255364121166], + [-40.1959474484167, -17.82822913924412], + [-40.204163538121776, -17.82907261761526], + [-40.20416351342053, -17.829072482340035], + [-40.201754514337864, -17.815880310729913], + [-40.201754534652224, -17.815880233745812], + [-40.20453176511636, -17.805354147672197], + [-40.20656546912605, -17.80390372658846], + [-40.21808927709797, -17.79568391218498], + [-40.2180894572341, -17.795683783680698], + [-40.21495344440334, -17.779775506440917], + [-40.21440004263061, -17.776968374801147], + [-40.21440006254138, -17.776968291904456], + [-40.21745112454424, -17.76426337330627], + [-40.21745111176937, -17.76426333764944], + [-40.21367116074646, -17.75371271426641], + [-40.21367119488124, -17.75371264916727], + [-40.22395671323441, -17.73409294304409], + [-40.23672618432982, -17.735666323626802], + [-40.24902188458597, -17.73031361137015], + [-40.24922742640179, -17.73010169189493], + [-40.25591871958729, -17.71957183820485], + [-40.27033549154064, -17.727084007407495], + [-40.2703360861479, -17.727083754426403], + [-40.277620956895426, -17.723984104727407], + [-40.28037502732417, -17.72281214913401], + [-40.28625520286566, -17.700748372384933], + [-40.29552772168734, -17.699519430689282], + [-40.29812356099772, -17.69628566150021], + [-40.29812356756552, -17.696285532780024], + [-40.29903352680577, -17.674594473671256], + [-40.29903355691158, -17.674593755332253], + [-40.30642866656743, -17.667028331138994], + [-40.30773363835789, -17.665693170527376], + [-40.322837479081485, -17.66134095236055], + [-40.32586126191148, -17.652597736335405], + [-40.32586124180357, -17.65259769204369], + [-40.32525769280617, -17.651268252002733], + [-40.321837834136566, -17.643735185379004], + [-40.321837614255834, -17.64373470103146], + [-40.332228126997755, -17.63390910518134], + [-40.33406166448404, -17.632175019750466], + [-40.336462367529975, -17.624961488865747], + [-40.343851455852445, -17.61646727156251], + [-40.34742547643964, -17.61319626228026], + [-40.350475511939194, -17.616639922809124], + [-40.348567971272864, -17.630802454322776], + [-40.34856795634208, -17.63080257933623], + [-40.35467057320413, -17.644298693714628], + [-40.36145800407683, -17.63669728273396], + [-40.37197473529993, -17.612484770379474], + [-40.37994651245422, -17.61133611026739], + [-40.39682377169063, -17.62563190338136], + [-40.39982201067634, -17.619907222418753], + [-40.403484879693195, -17.611545978895723], + [-40.408773913768506, -17.609166502855356], + [-40.414481088287516, -17.61012312737084], + [-40.4182264020621, -17.59912429387306], + [-40.418226390092194, -17.599124226705946], + [-40.41595960237827, -17.586405103649554], + [-40.41202833127336, -17.589089168923884], + [-40.41045539635338, -17.587096364639283], + [-40.41045543302875, -17.587096266598586], + [-40.41453650091097, -17.57618545271443], + [-40.41453648313512, -17.57618539525087], + [-40.41192728122274, -17.567750670020658], + [-40.411927331889764, -17.567750669621272], + [-40.43209160162271, -17.56759065950733], + [-40.445111650928204, -17.578794739789597], + [-40.460426274485926, -17.56852941816856], + [-40.46641819886272, -17.554245362229082], + [-40.467737120985, -17.551179610096764], + [-40.475210141528386, -17.533805319859184], + [-40.484540732208714, -17.52792034677036], + [-40.4861872796654, -17.52688172782109], + [-40.489073558269965, -17.51981733954365], + [-40.48907353727756, -17.51981728341212], + [-40.48389312605167, -17.505965178480917], + [-40.4830113046121, -17.488540970969932], + [-40.48846550220778, -17.488663962959848], + [-40.49545026342179, -17.486759619954817], + [-40.49786645938319, -17.47916347186156], + [-40.50552851574026, -17.475634795006066], + [-40.50784222684834, -17.473046345881894], + [-40.520952158000924, -17.458376968392876], + [-40.52095228091917, -17.45837683083165], + [-40.51987517850835, -17.44857185072197], + [-40.519685093992486, -17.446841672413676], + [-40.51968511750504, -17.446841664749297], + [-40.554169598941364, -17.435596369385653], + [-40.57748089576901, -17.413646893325083], + [-40.5960844503721, -17.420596910418784], + [-40.607742332515954, -17.41817256994589], + [-40.62348498025952, -17.4060093839991], + [-40.623484893380876, -17.406009326775067], + [-40.59867452342428, -17.389665367457116], + [-40.59867456864326, -17.38966525890936], + [-40.601632813964564, -17.382563491932405], + [-40.60163278574886, -17.382563451237992], + [-40.597718512909324, -17.376917933466036], + [-40.597718524978745, -17.376917803760467], + [-40.59894727363612, -17.364567333881137], + [-40.60548903950998, -17.35892448375292], + [-40.605488975026745, -17.358924415884456], + [-40.59273727308944, -17.345502410735566], + [-40.592737366399156, -17.345502366791337], + [-40.60301377405512, -17.34066219713489], + [-40.60903516183409, -17.326997843251164], + [-40.60903512630085, -17.326997814087537], + [-40.60482326873646, -17.323540888889426], + [-40.59485181283887, -17.323594297138847], + [-40.59052650641973, -17.313007652158326], + [-40.582228304417484, -17.31114779137147], + [-40.57225440066058, -17.294795903733657], + [-40.547924074277965, -17.283858194067076], + [-40.54776150210985, -17.283736243061856], + [-40.54776159264111, -17.283736171785524], + [-40.56198385175953, -17.272537214641435], + [-40.56198386348754, -17.272537082954067], + [-40.56336242257308, -17.259321839448656], + [-40.5712640476508, -17.252987417795467], + [-40.5712640066396, -17.252987326580953], + [-40.56861726751112, -17.24710055177377], + [-40.56861729144833, -17.24710045152286], + [-40.56992034090782, -17.241642801778944], + [-40.56992032059268, -17.241642795664173], + [-40.564476099979736, -17.240004034050106], + [-40.564475439727836, -17.240003022995904], + [-40.563371099357, -17.238311919945986], + [-40.558404742818674, -17.230706591535927], + [-40.558404988797555, -17.23070584316929], + [-40.562730787074045, -17.21754309921201], + [-40.56273077693917, -17.217543027696752], + [-40.56155443358634, -17.209242733512948], + [-40.5523944521098, -17.19918385393942], + [-40.552394470573276, -17.19918372867566], + [-40.55419931745287, -17.188796241380466], + [-40.572537298640725, -17.1824000103634], + [-40.574619055508286, -17.18036560861924], + [-40.57461906891342, -17.18036547718331], + [-40.57862409800724, -17.14974063633021], + [-40.57861155477693, -17.149615388890037], + [-40.57811338492378, -17.144642761994604], + [-40.57317204470513, -17.141759088249348], + [-40.57122440602281, -17.140622439216408], + [-40.562925168631196, -17.126358682060893], + [-40.56209324875109, -17.111791683362082], + [-40.55720438370607, -17.10489192327681], + [-40.556618051977665, -17.096842760725288], + [-40.55661806777764, -17.096842713484385], + [-40.56142637722341, -17.082463900692417], + [-40.56986698684342, -17.081083408262877], + [-40.56986699726392, -17.081083276440182], + [-40.57061699672941, -17.072278606870007], + [-40.57061700358171, -17.072278474984845], + [-40.570803352555735, -17.06236405906222], + [-40.56993835608656, -17.06019953681755], + [-40.552590253464395, -17.019660667603507], + [-40.552590288420674, -17.01966059500408], + [-40.55558849162289, -17.013433343938214], + [-40.55558846904085, -17.01343327887294], + [-40.5454539826339, -16.984232366919013], + [-40.53503407484602, -16.98084614313001], + [-40.516337672088866, -16.96360772585981], + [-40.506238398980194, -16.934170399002383], + [-40.50470430308554, -16.929261904651526], + [-40.49270433908097, -16.9041427372259], + [-40.49121675941717, -16.88452365155159], + [-40.48018396773535, -16.87684232872749], + [-40.45411723251889, -16.881626253743026], + [-40.44894853445594, -16.89239842919245], + [-40.43697794081246, -16.893189367747823], + [-40.434693265019675, -16.887573748140543], + [-40.41761883057686, -16.899300854674756], + [-40.4075745730154, -16.898721630646452], + [-40.40177081060974, -16.890702867811434], + [-40.39362166629487, -16.88672288295821], + [-40.37591317583468, -16.885906054392265], + [-40.37137052866743, -16.874937280882662], + [-40.36649749013157, -16.874206137891168], + [-40.34831473863987, -16.88807791072619], + [-40.34875755542918, -16.899340192930865], + [-40.34875755569789, -16.899340325621548], + [-40.339896735510834, -16.898519022903653], + [-40.32715981591498, -16.90935284405845], + [-40.32715934912925, -16.90935226009455], + [-40.323489015860396, -16.90476047591797], + [-40.32294276429526, -16.904077072249173], + [-40.316834895223536, -16.905327326548274], + [-40.310425257595256, -16.896669590362674], + [-40.30278688561272, -16.8922774301108], + [-40.293472719299636, -16.904662357804487], + [-40.28165030859765, -16.901217402226596], + [-40.275437375590954, -16.88661702448585], + [-40.27198083844836, -16.87022771578031], + [-40.26495020759408, -16.86506249947042], + [-40.264950226154916, -16.865062374256393], + [-40.26511359854944, -16.864355273226284], + [-40.26603927960159, -16.860348282857238], + [-40.26603945182204, -16.860347537328764], + [-40.25461776753819, -16.860258216400073], + [-40.25260223662363, -16.860242386451283], + [-40.251839306541946, -16.84906691868793], + [-40.24692067311422, -16.845773756409585], + [-40.24692073599235, -16.845773660299386], + [-40.24759616705172, -16.844741242716314], + [-40.25142383628876, -16.83889012849672], + [-40.253539057930155, -16.824680391317127], + [-40.2584835398683, -16.82075794531051], + [-40.25848349673795, -16.8207570285179], + [-40.257816052174775, -16.80657556328595], + [-40.257816067364004, -16.806575548830317], + [-40.269143409275756, -16.79579398126684], + [-40.28281222245769, -16.80402319298197], + [-40.294672896389116, -16.79665989970622], + [-40.30377269192765, -16.798997382125542], + [-40.3236183452896, -16.801303723785292], + [-40.33549062421074, -16.7882698394336], + [-40.34550628681639, -16.787302157253777], + [-40.3455061379318, -16.787302040799513], + [-40.33585001584364, -16.7797488767724], + [-40.32014290994716, -16.746316639627562], + [-40.310179731983474, -16.736250586421555], + [-40.31017973839003, -16.73625045459739], + [-40.31059310261497, -16.71932400692891], + [-40.30236929934564, -16.708213531424004], + [-40.302369337438755, -16.708213438203707], + [-40.30703192323442, -16.69680195398048], + [-40.31105960170643, -16.695874187679333], + [-40.31105961452157, -16.695874056296777], + [-40.31316768410664, -16.678679389586964], + [-40.29826118408296, -16.652501744783493], + [-40.292083971784166, -16.622123458043777], + [-40.28384101034223, -16.604809364979662], + [-40.28752251242688, -16.597851542932602], + [-40.28765210921783, -16.597606595169108], + [-40.28765207982094, -16.597606537016617], + [-40.275846879186204, -16.574252604074406], + [-40.27574901450866, -16.574060144188582], + [-40.261481452129196, -16.57466264487678], + [-40.254702075227094, -16.569471829904074], + [-40.24703942181927, -16.573598718219692], + [-40.245869204831486, -16.567031061665787], + [-40.24400730929526, -16.566446879053615], + [-40.23667861049037, -16.564147282612836], + [-40.236677913133434, -16.56414706378381], + [-40.23494832083744, -16.55860224227027], + [-40.212038244609666, -16.573159625077828], + [-40.20185282710616, -16.57514802394174], + [-40.198347401314756, -16.57032849083909], + [-40.19019884011584, -16.571002271941342], + [-40.17413807207193, -16.582648293478577], + [-40.17173765159556, -16.577199919542785], + [-40.15986927918386, -16.580360156651622], + [-40.159288806081385, -16.575810408349575], + [-40.159288826649046, -16.57581036268905], + [-40.16100417278523, -16.572002123194842], + [-40.16100414347978, -16.572002077876807], + [-40.15509869236185, -16.5628696494908], + [-40.15509875813359, -16.562869604706737], + [-40.16136940709619, -16.55859965824531], + [-40.16136941079494, -16.558599529226164], + [-40.16156269789472, -16.544321799108957], + [-40.16802081208633, -16.540051221092444], + [-40.169483959717, -16.539083607863372], + [-40.174870752628266, -16.537926177918596], + [-40.17487063941107, -16.537926072619598], + [-40.17022983966706, -16.53360974913232], + [-40.170229852287584, -16.533609619403382], + [-40.17122562617303, -16.52418487836161], + [-40.167862077938956, -16.521159459707114], + [-40.162671866900325, -16.524375816354908], + [-40.15849674201271, -16.513789985281623], + [-40.13611854806768, -16.489698019594403], + [-40.120730146651276, -16.466602555894966], + [-40.11580876925271, -16.46563029376992], + [-40.113284091502265, -16.452832197182136], + [-40.103317931030865, -16.437047999348422], + [-40.09965571686013, -16.423249742180552], + [-40.09603527685518, -16.422017070384502], + [-40.09546841177965, -16.42390383220354], + [-40.09225594483742, -16.434594708657528], + [-40.09225602962534, -16.434594992326677], + [-40.09586724214629, -16.446676863668593], + [-40.09650452313493, -16.448809003053213], + [-40.09650455707204, -16.448809116596117], + [-40.08837352492087, -16.452191889103347], + [-40.08399669845892, -16.463963954584344], + [-40.06581339204265, -16.45755775367926], + [-40.06569192785397, -16.457062482189162], + [-40.06152702129239, -16.44008056291985], + [-40.062732464144034, -16.432024026737643], + [-40.06273150011117, -16.432024098499436], + [-40.05326867023297, -16.432728269640776], + [-40.04103927224665, -16.411856089473886], + [-40.04103928758972, -16.411855964271876], + [-40.04190046097922, -16.405717318235965], + [-40.03251477762256, -16.392036009889814], + [-40.02523211958532, -16.357400537399563], + [-40.017446526799944, -16.348117186085094], + [-40.01147739011259, -16.34630602501201], + [-40.01125808004552, -16.34016337983268], + [-39.996696228315656, -16.332179586049122], + [-39.99172234759219, -16.31374358825749], + [-39.98480573487124, -16.311935712867797], + [-39.97840598001856, -16.311175511453715], + [-39.978405946229856, -16.311175507439582], + [-39.97942442627759, -16.316873658064996], + [-39.979424449080796, -16.316873785646614], + [-39.97226819651459, -16.317757304884793], + [-39.970654084889844, -16.32696793432036], + [-39.966689306376395, -16.32724779868087], + [-39.96051250678155, -16.321921363784746], + [-39.9589315810947, -16.317065507282866], + [-39.95426150319842, -16.300063751745775], + [-39.94112350512906, -16.293111507336317], + [-39.93373201405062, -16.28872997109391], + [-39.93267462678729, -16.283642449261823], + [-39.916695384563035, -16.283881711785416], + [-39.91669540038613, -16.283881581234834], + [-39.92011875710009, -16.263778445175863], + [-39.928557540923435, -16.25818605404178], + [-39.93653807007001, -16.24582000202054], + [-39.9365380277692, -16.245819950804695], + [-39.91225703197541, -16.216418613404347], + [-39.91265043560326, -16.21034538473625], + [-39.902196241185564, -16.20854292561472], + [-39.89842027928023, -16.201406688460946], + [-39.883408079807396, -16.19473257989572], + [-39.88340808362005, -16.194732448447855], + [-39.88295508874488, -16.163819923703844], + [-39.88729414887509, -16.151016159506668], + [-39.89370921469289, -16.15041852135997], + [-39.8969739159497, -16.14164390024229], + [-39.896973882597685, -16.14164388389828], + [-39.89045194646543, -16.138447724012405], + [-39.88336817307513, -16.144929331314824], + [-39.87240927419237, -16.13682093676479], + [-39.860815426928134, -16.124765964190104], + [-39.860220095650405, -16.123130756389013], + [-39.856846843089286, -16.113865357309635], + [-39.85684667360263, -16.113864891775364], + [-39.86361220413111, -16.10539358144573], + [-39.86480607210519, -16.103898555470987], + [-39.86484344644053, -16.10372867146613], + [-39.86662343871738, -16.095636873566036], + [-39.8740026058248, -16.092916604523136], + [-39.877427450058796, -16.091653923588552], + [-39.8774274480234, -16.09165379631206], + [-39.87665736227124, -16.07929307443297], + [-39.87665737790609, -16.079293041731137], + [-39.8820209389839, -16.06807338328306], + [-39.90026059528966, -16.058818125030417], + [-39.90026058470355, -16.058818003661088], + [-39.899460662621195, -16.049648141505806], + [-39.899460681982994, -16.049648123656617], + [-39.92221555049267, -16.028665976309696], + [-39.931916297196516, -16.02737130225614], + [-39.935703212779416, -16.023788496329292], + [-39.93570314832381, -16.023788434652925], + [-39.91828913411888, -16.007124046870246], + [-39.91515658566933, -16.000025952746398], + [-39.915156640075665, -16.00002592317699], + [-39.92378151629144, -15.99533799677325], + [-39.930500602749035, -15.995134808933622], + [-39.95381101964835, -15.991481393842228], + [-39.96460251545033, -15.998888349403513], + [-39.96397683141913, -16.00537228869755], + [-39.96397682039765, -16.005372420121716], + [-39.966610703421644, -16.004469471749513], + [-39.98028061910599, -16.005601588044968], + [-39.980018212213594, -15.997800340899794], + [-39.980014276961825, -15.997683116316551], + [-39.99206689434592, -15.995042043379263], + [-39.99509482221121, -16.000516339487085], + [-40.00445288278995, -16.001878849785825], + [-40.00445277368615, -16.001878624410974], + [-40.000985552372484, -15.994716337990024], + [-40.00098562660334, -15.994716340403432], + [-40.00844711864014, -15.994958796399073], + [-40.01370695943292, -15.984047201943017], + [-40.0213412764703, -15.98484542435887], + [-40.02259599913906, -15.99048769170862], + [-40.02817767950774, -15.985620237520404], + [-40.02817766075956, -15.985620130389263], + [-40.027287746143635, -15.980535090321464], + [-40.02728777659885, -15.980535079497553], + [-40.03270369644706, -15.978610130154166], + [-40.032703669042654, -15.978610011593709], + [-40.031480009691094, -15.973316126113971], + [-40.03148005020016, -15.973316129479478], + [-40.03441291625696, -15.973559771803066], + [-40.04301078566354, -15.973874147089703], + [-40.046538267724515, -15.97004889715308], + [-40.0465381906897, -15.970048859158057], + [-40.04312390558171, -15.968364837722977], + [-40.04312395543859, -15.96836472611076], + [-40.045789505230594, -15.962397131830011], + [-40.06117589899616, -15.964042518378207], + [-40.066210470431415, -15.960249073122753], + [-40.06621043716313, -15.960248973553002], + [-40.06464188662502, -15.955554413439657], + [-40.05914928662388, -15.953219641593273], + [-40.05914945163667, -15.953219576168037], + [-40.066222890649456, -15.950414861268245], + [-40.06622289229618, -15.950414731669136], + [-40.06614903757674, -15.939805774532187], + [-40.07070412081316, -15.937981558926479], + [-40.078845925822215, -15.94096470595361], + [-40.07884588169762, -15.940964554758157], + [-40.07874568883035, -15.940621238321192], + [-40.076923213732904, -15.934376462324122], + [-40.07692233316871, -15.93437641627241], + [-40.06886632003727, -15.933954951885505], + [-40.066357319151145, -15.925018945305982], + [-40.06635736843502, -15.9250189562329], + [-40.06715498834744, -15.925195797977965], + [-40.071674859802954, -15.926197851935644], + [-40.0716751952171, -15.926197926293364], + [-40.066903881343656, -15.912367772622693], + [-40.066061928967784, -15.909927286061057], + [-40.06606199005901, -15.909927304713019], + [-40.07307153250128, -15.912067297380512], + [-40.07486255080635, -15.920094318704802], + [-40.08092350141141, -15.924138656875101], + [-40.08678450796761, -15.913620726970704], + [-40.086784475389756, -15.913620670375767], + [-40.0817398376069, -15.904856856627994], + [-40.08173987372726, -15.904856771696869], + [-40.08501225371869, -15.897161707396195], + [-40.09377554122804, -15.89812570719314], + [-40.09686329689829, -15.90024540913308], + [-40.09664352361335, -15.907442335045024], + [-40.1053653316949, -15.912091093662369], + [-40.11186706160766, -15.911446692117847], + [-40.113014440607856, -15.911332949888571], + [-40.11706765204519, -15.903539988108596], + [-40.12825087920252, -15.907484445521566], + [-40.137420183503494, -15.906315253972442], + [-40.14058736272697, -15.898929478754887], + [-40.14605565891135, -15.899437892329141], + [-40.149315041435266, -15.905408541990154], + [-40.1564761192923, -15.899576602583227], + [-40.15984109201226, -15.90850585192986], + [-40.1647595896592, -15.910272278344662], + [-40.16687319068883, -15.905059253345138], + [-40.17072988784008, -15.907571317145115], + [-40.17532734871277, -15.904100207474736], + [-40.175327329001185, -15.904100097593956], + [-40.174285138787624, -15.89829062556882], + [-40.16584786671584, -15.894108681677233], + [-40.16584787200101, -15.894108549953536], + [-40.166119102727194, -15.868418426008862], + [-40.173980904882555, -15.870531326164517], + [-40.17736561848183, -15.868224809658624], + [-40.19267227506128, -15.857792265588634], + [-40.19267270386949, -15.857792540746196], + [-40.200088548350095, -15.862550970765703], + [-40.20008852370775, -15.862550817388351], + [-40.19918067107631, -15.85690038909679], + [-40.19918069993629, -15.856900380192537], + [-40.206877041200826, -15.854525605903136], + [-40.20687702596178, -15.854525481713058], + [-40.20584951311383, -15.846152409207434], + [-40.20584953680502, -15.846152396242713], + [-40.21281676719054, -15.84233942292876], + [-40.212816772372264, -15.842339292623558], + [-40.213011613494935, -15.835802823416337], + [-40.213011635736684, -15.835802076967326], + [-40.215490905446444, -15.835809940732696], + [-40.21884525545768, -15.835820533529594], + [-40.21884519206802, -15.83581952333869], + [-40.21826907530748, -15.826640014221644], + [-40.22401610784822, -15.827515253968475], + [-40.2240161080212, -15.827515120892288], + [-40.22379238654839, -15.820539047762903], + [-40.22813045010947, -15.816221686163779], + [-40.23112560474329, -15.803888543970663], + [-40.23601314330641, -15.803654302827054], + [-40.25570278619903, -15.810558359255017], + [-40.262596791367415, -15.808869571003541], + [-40.26302783498679, -15.813115566631959], + [-40.268925075586296, -15.812782493195217], + [-40.27117663592661, -15.817353418422696], + [-40.27559131953793, -15.817524184075994], + [-40.28267930635047, -15.808013336139583], + [-40.29441934970429, -15.81665362439403], + [-40.31156430927181, -15.815632887974393], + [-40.31427993012984, -15.81894734118851], + [-40.32322752840072, -15.819679957479835], + [-40.32410680085318, -15.819762218766028], + [-40.327537178193055, -15.818270369270381], + [-40.33611735736191, -15.82437111050622], + [-40.339954939475184, -15.821658363925449], + [-40.339954922709005, -15.821658250371671], + [-40.33923771918331, -15.816800934369905], + [-40.33923774794096, -15.816800936299567], + [-40.347095523659114, -15.817328066011054], + [-40.35673292017782, -15.813055961743709], + [-40.3663963206594, -15.817495725907275], + [-40.3715072240008, -15.814412720608098], + [-40.37687314323562, -15.823563687196215], + [-40.38251466660757, -15.81453760823076], + [-40.38639672897735, -15.8167436402598], + [-40.392288644193265, -15.819916145232126], + [-40.39734541408968, -15.813900321817536], + [-40.401429729799474, -15.812958648288546], + [-40.4021785777033, -15.816743178750146], + [-40.41459351347091, -15.806582045020782], + [-40.41875550700205, -15.808471156298424], + [-40.42504623691147, -15.805749394473278], + [-40.43248257785901, -15.77869435971249], + [-40.45163160814222, -15.759714556451502], + [-40.46144070376704, -15.753272973841282], + [-40.475527224953744, -15.771352677192883], + [-40.4841365845199, -15.775837623596146], + [-40.49467462558382, -15.765920178899195], + [-40.50631992221051, -15.766942597595733], + [-40.519148296215164, -15.780918017430208], + [-40.51829274612595, -15.797551117167952], + [-40.51829273828627, -15.797551249094402], + [-40.5388999983227, -15.794856170183882], + [-40.55287610912701, -15.803761975300302], + [-40.563483711808104, -15.802944932814507], + [-40.573138402437834, -15.788115227588893], + [-40.57313837014887, -15.788115158876074], + [-40.56742847544226, -15.77596394892128], + [-40.56742897492921, -15.775963856453629], + [-40.58372418657106, -15.772946450770169], + [-40.59311080689602, -15.771787552236326], + [-40.59311080537232, -15.771787421598264], + [-40.592624880093354, -15.762357312535855], + [-40.60396057550437, -15.75933414177432], + [-40.603960517758566, -15.759334027604629], + [-40.59981987100927, -15.751147400409751], + [-40.599819887377905, -15.751147278037115], + [-40.601039417523204, -15.74345116539665], + [-40.606612326562455, -15.736797371759778], + [-40.614165040118934, -15.735151115537764], + [-40.629399311834426, -15.715753703932053], + [-40.633417972167464, -15.71814863669642], + [-40.63753007236386, -15.730323233942897], + [-40.64495700570725, -15.728900340225627], + [-40.66120935176338, -15.707166747562491], + [-40.682318788796934, -15.699062231839104], + [-40.68231877759387, -15.69906210752703], + [-40.68190463504107, -15.694466938340554], + [-40.68190465310081, -15.694466909993773], + [-40.69634385518576, -15.671798174919168], + [-40.70064749688449, -15.66802763303774], + [-40.7072198763369, -15.66644591374961], + [-40.72046054113104, -15.672944741436416], + [-40.732164229076524, -15.674939979589505], + [-40.740578081274414, -15.681517464016267], + [-40.743823594951095, -15.684055834360137], + [-40.74382363299315, -15.684055864113017], + [-40.737534833105855, -15.697817601344841], + [-40.73753480038581, -15.697817672936432], + [-40.739870381993114, -15.703687524459243], + [-40.74909557360334, -15.706994841461682], + [-40.76767297272294, -15.71412006829969], + [-40.78329401781016, -15.701415795735814], + [-40.785957072804216, -15.692304893850418], + [-40.785957054424365, -15.69230485432478], + [-40.78034632663696, -15.680238829123391], + [-40.78034637380374, -15.680238779942961], + [-40.7916297856101, -15.668472249803093], + [-40.815618823382636, -15.648305405623411], + [-40.81685266684195, -15.647611819395323], + [-40.82932007235992, -15.64830159242871], + [-40.83236704585228, -15.654160552918183], + [-40.83145817599148, -15.670816050440127], + [-40.831458168079465, -15.67081618251822], + [-40.83956492885688, -15.67498273274805], + [-40.842041787948446, -15.683265251223348], + [-40.848840693877655, -15.681350268808245], + [-40.85545808462358, -15.687197638816388], + [-40.88156512516164, -15.69451123169721], + [-40.8920408836391, -15.69064153405927], + [-40.902577783304004, -15.691882559381368], + [-40.90868274609694, -15.681297296104528], + [-40.908682583998086, -15.68129667848488], + [-40.90709551459158, -15.67524975964249], + [-40.90709554187716, -15.675249698876275], + [-40.91285341303855, -15.662425094797976], + [-40.92654108488731, -15.656095074911672], + [-40.93042275274806, -15.661083215613488], + [-40.935990704987894, -15.656683074750243], + [-40.94920919713282, -15.656284402382564], + [-40.96313267587802, -15.648440756396507], + [-40.97497364519217, -15.669123986826174], + [-40.97961809721077, -15.691701570593045], + [-40.98548243177997, -15.693359304786037], + [-41.00391335171376, -15.711886485955253], + [-41.00796998201598, -15.714350595811876], + [-41.036279783433464, -15.713856470699515], + [-41.04558317888554, -15.72193317718967], + [-41.05342701782432, -15.725154382923186], + [-41.07756433857913, -15.719327719472552], + [-41.09290096626268, -15.738721070610257], + [-41.10909896373275, -15.741003389818474], + [-41.10984461870579, -15.741212786619151], + [-41.115513163406895, -15.742908795269873], + [-41.12864088822091, -15.746809118908093], + [-41.13562353932411, -15.766182070609885], + [-41.14435495605623, -15.771933972652665], + [-41.15629022365931, -15.76141564346871], + [-41.16945875506071, -15.760560348513229], + [-41.19002277932345, -15.7518327509737], + [-41.199778609601374, -15.748958929419793], + [-41.21540163758369, -15.737205100871916], + [-41.237395476057316, -15.73755048234516], + [-41.25350335280477, -15.746964748826517], + [-41.26856647850575, -15.74874297496741], + [-41.28195912735568, -15.740809466616003], + [-41.29295226600372, -15.739044420918674], + [-41.30473601579384, -15.7434722718921], + [-41.32817710818757, -15.741859467091965], + [-41.33121029235596, -15.744712174845686], + [-41.33121030335806, -15.744712042808587], + [-41.33260055039883, -15.731310544333114], + [-41.33260056406727, -15.731310412555441], + [-41.33395119509574, -15.718287207441954], + [-41.33395120875584, -15.718287075663103], + [-41.335579275066635, -15.702572790334873], + [-41.335579288714214, -15.702572658554296], + [-41.34231648535229, -15.63742996743453], + [-41.34231649896023, -15.637429835648756], + [-41.350524156306754, -15.557794420896748], + [-41.35052417147257, -15.557794289359721], + [-41.358046870482916, -15.49884373082139], + [-41.362559052395184, -15.494716445781084], + [-41.38763002132244, -15.471757760635624], + [-41.46431089047374, -15.40187820530433], + [-41.651341712159656, -15.23597531544], + [-41.70158339285119, -15.190673075896388], + [-41.759248456708775, -15.138612092384317], + [-41.75993210684803, -15.137994397673562], + [-41.79549588708969, -15.105851851177036], + [-41.80071089036077, -15.101136750404185], + [-41.809379920936145, -15.101138021064195], + [-41.81634212537161, -15.108428521070095], + [-41.842038325971885, -15.114194950990045], + [-41.84831095060979, -15.116881465062072], + [-41.87043081337238, -15.115219396604262], + [-41.876312456297015, -15.131683277070323], + [-41.89234719416301, -15.146554081208425], + [-41.89703876084509, -15.151938373488255], + [-41.90987366576194, -15.154407341697073], + [-41.91511869175617, -15.160625824250982], + [-41.92662712764208, -15.160830194370803], + [-41.932536186480924, -15.174540495948253], + [-41.93819597600482, -15.174055505987653], + [-41.95819430232542, -15.17377397597895], + [-41.979625236577746, -15.167670138782777], + [-41.98779270653305, -15.168367485658564], + [-41.99750227562924, -15.158928585613108], + [-42.02131469928741, -15.16437391747925], + [-42.031322290032826, -15.166578488357697], + [-42.07329283221183, -15.175740243993689], + [-42.08470822089188, -15.186567002118554], + [-42.09161919239589, -15.186643478506843], + [-42.09161929252078, -15.18664338478155], + [-42.09545819570502, -15.183049719898918], + [-42.09606656547715, -15.182480190446823], + [-42.098318692776076, -15.168361152258505], + [-42.10737819607247, -15.166643309027094], + [-42.10871723489753, -15.163270837660745], + [-42.11630433550225, -15.144158247669166], + [-42.12702155307621, -15.133610792684793], + [-42.128912755572465, -15.131749321840482], + [-42.14104347655779, -15.128881249449291], + [-42.149904672922524, -15.120387533175409], + [-42.15387032862096, -15.110598134843057], + [-42.15387032382114, -15.110598032423125], + [-42.1533452638804, -15.099396970114434], + [-42.164462073467135, -15.097433380595355], + [-42.17331757830056, -15.085992087927185], + [-42.17979837893095, -15.087864339235425], + [-42.182956782999376, -15.099683900258928], + [-42.19259669573725, -15.103156362386008], + [-42.20282062817258, -15.10011484164624], + [-42.20952433582897, -15.104489091984416], + [-42.21774398509403, -15.104450366643386], + [-42.227428405353685, -15.099304224679766], + [-42.247180730523, -15.10926118516342], + [-42.264793529029824, -15.125216079751949], + [-42.2754350169485, -15.113326399371292], + [-42.28383137687859, -15.11734739528368], + [-42.298967766868344, -15.106008972071692], + [-42.32368616967556, -15.09359668723179], + [-42.33119742832708, -15.07999837593236], + [-42.33724345214459, -15.080503614848938], + [-42.34003694362974, -15.083309444588922], + [-42.35490273024955, -15.09823971334114], + [-42.35490333402183, -15.098240319692056], + [-42.36969454020197, -15.078379911598143], + [-42.37446656154895, -15.071370924376705], + [-42.40106466659474, -15.07728286541487], + [-42.421674442467136, -15.065569608262704], + [-42.44293486261879, -15.061356650523138], + [-42.442934866048546, -15.061356518168784], + [-42.44315536206335, -15.047795864718651], + [-42.44230106785357, -15.035437108450331], + [-42.436796161201144, -15.022753067201316], + [-42.43679622225751, -15.022753058346845], + [-42.47590699810737, -15.017077308473912], + [-42.49573674160575, -14.99489525226504], + [-42.51253681924453, -14.984946900126115], + [-42.51531750194241, -14.983088713043093], + [-42.53163037438163, -14.977522127128083], + [-42.53487747782012, -14.96662278837423], + [-42.55432361561788, -14.959335510351593], + [-42.56068035059483, -14.96233388012989], + [-42.57751432346025, -14.938922936964497], + [-42.584450257446115, -14.937376393281001], + [-42.5848354479313, -14.936996404602978], + [-42.5871842406385, -14.930271015579155], + [-42.60253809589903, -14.924713618089303], + [-42.61343166521524, -14.93776224145042], + [-42.625403800501665, -14.945055937340713], + [-42.63490127575693, -14.93498068415345], + [-42.65521022013529, -14.924289729756683], + [-42.655210150359714, -14.92428963727212], + [-42.65254540369241, -14.92075758678466], + [-42.65254548529506, -14.920757552645743], + [-42.656903729945135, -14.918934188218788], + [-42.65968775091079, -14.910474560423419], + [-42.66270169116226, -14.910585666895908], + [-42.663791219186635, -14.916343395412518], + [-42.679847179827384, -14.903363818938043], + [-42.68371400814852, -14.90555632098534], + [-42.69279106915783, -14.902526619092166], + [-42.70035584036664, -14.894578043139884], + [-42.70035580637718, -14.894577953272885], + [-42.698775042734255, -14.890398446240628], + [-42.69877508020555, -14.89039839379224], + [-42.704157299571065, -14.882864444077052], + [-42.71487612371235, -14.880114295872733], + [-42.71487615905124, -14.880114286804698], + [-42.71362973930742, -14.884295761337047], + [-42.71362945479883, -14.884296715765382], + [-42.71769494551319, -14.88544067545121], + [-42.718543714427156, -14.885471846695616], + [-42.723353464760976, -14.885648426433999], + [-42.7257358539537, -14.87931394385335], + [-42.729644601614105, -14.878603353011696], + [-42.73593345574837, -14.87745990378647], + [-42.74865174568068, -14.864431044460739], + [-42.748726101937244, -14.864272864009703], + [-42.753655179935414, -14.847801457109636], + [-42.75933498818876, -14.8459840160216], + [-42.79098519384382, -14.839414976239782], + [-42.806905698250205, -14.830467278863937], + [-42.8086847538086, -14.82736635518478], + [-42.809660378104255, -14.826207573672134], + [-42.8364612183694, -14.80652046987376], + [-42.84238043462641, -14.79610372613821], + [-42.84980033108381, -14.795082114960193], + [-42.86065484168299, -14.780626751831697], + [-42.87238377372683, -14.775398510454039], + [-42.87238375516692, -14.775398388745028], + [-42.87181522797967, -14.771670246493262], + [-42.86718739233532, -14.771731901302122], + [-42.867187427875244, -14.771731767882258], + [-42.86843157814166, -14.767060908789054], + [-42.872073277681196, -14.764730604456828], + [-42.8765911966055, -14.767883913759148], + [-42.88079280351673, -14.76932580271456], + [-42.884584117447865, -14.767628272777424], + [-42.88805622585424, -14.766928279577554], + [-42.896152232925516, -14.76301908170633], + [-42.89995862974123, -14.755843699605261], + [-42.90262393318965, -14.76141662338259], + [-42.90587720934621, -14.761081171544776], + [-42.912190236308724, -14.74450742386686], + [-42.91339871275605, -14.745270635103903], + [-42.91695976219561, -14.747519558630144], + [-42.9169602626904, -14.747519874704212], + [-42.920934064752714, -14.746202220203498], + [-42.92704515953584, -14.74417567691765], + [-42.927045338646536, -14.744175617518069], + [-42.92527904699385, -14.735445540288206], + [-42.924967357001, -14.733905005433462], + [-42.924967384683214, -14.733904975562172], + [-42.93740417473038, -14.720483095385655], + [-42.938872518654186, -14.708065037559217], + [-42.95268035446624, -14.708437673685788], + [-42.97731732808738, -14.69842240605133], + [-42.97815418568082, -14.698822603474635], + [-42.98535401610396, -14.702265517965968], + [-42.99299303823588, -14.69966371155125], + [-43.002793015057236, -14.696325353918038], + [-43.00279345455009, -14.69632520419132], + [-43.008780795723084, -14.700382791622856], + [-43.01062260180099, -14.701630927595875], + [-43.02680390681953, -14.693583946245239], + [-43.026803894926005, -14.693583822395725], + [-43.0262093554558, -14.687393077566291], + [-43.026209374220976, -14.687393069850604], + [-43.03665954728339, -14.683095891625147], + [-43.05566295499566, -14.690974982970918], + [-43.06638060478953, -14.680594095848974], + [-43.06704507870209, -14.681529317022827], + [-43.07226539180538, -14.688876508252976], + [-43.07335103730536, -14.689113001217164], + [-43.07932425732773, -14.690414094426815], + [-43.08365552628475, -14.698228876481053], + [-43.0915070312444, -14.683357002242298], + [-43.1010987969081, -14.675529758140222], + [-43.108018230176164, -14.67320221978413], + [-43.1082845232353, -14.673702674170622], + [-43.11112662428555, -14.679043865266708], + [-43.111126730869984, -14.679044065569403], + [-43.11629505563889, -14.678889151363093], + [-43.127066598940466, -14.666379381061992], + [-43.13298641497451, -14.668069132419225], + [-43.1403172449561, -14.66519421316827], + [-43.15148718136189, -14.666368518867339], + [-43.15148743630582, -14.666368356922984], + [-43.17126686626297, -14.6538021702548], + [-43.17634043500256, -14.650578211118093], + [-43.17782586860008, -14.65949675602234], + [-43.18125025361206, -14.660946536217958], + [-43.1906734337222, -14.651600551721806], + [-43.19868502348645, -14.649659175894854], + [-43.2076549263245, -14.658388789785935], + [-43.228935178273765, -14.66054879342137], + [-43.23484710720096, -14.656823900793697], + [-43.245044974441, -14.65654507600952], + [-43.261380645954354, -14.663386785794748], + [-43.26286754359091, -14.662793629822797], + [-43.26607154480728, -14.66151543194335], + [-43.266071774357464, -14.661515621795624], + [-43.27159926771542, -14.666087087209336], + [-43.28067418407805, -14.666234829380329], + [-43.2836889338383, -14.673943106566018], + [-43.2883141439324, -14.67614608921028], + [-43.29813237757777, -14.676117974740501], + [-43.31121694405627, -14.669781695412537], + [-43.31966041087919, -14.677988895810337], + [-43.33049443999513, -14.680161646921569], + [-43.334269802167086, -14.687688581842384], + [-43.34649296348694, -14.696102450815957], + [-43.36403555821618, -14.698027388105396], + [-43.38083092680481, -14.703897472676461], + [-43.39901849190004, -14.710252658868617], + [-43.411915668607996, -14.721792392566822], + [-43.41467978512738, -14.724265405011478], + [-43.425301814037454, -14.720012033805693], + [-43.42865681370108, -14.722243915143865], + [-43.42815478655606, -14.726403007907248], + [-43.428154775328494, -14.7264031406494], + [-43.43487753099118, -14.723071087995082], + [-43.43487755747585, -14.723071074867564], + [-43.43462799954371, -14.72645794139409], + [-43.434627990597306, -14.726458074095563], + [-43.440463364737376, -14.728348071640854], + [-43.44582241428698, -14.736720255826507], + [-43.45621575158229, -14.74018982257411], + [-43.46126056551368, -14.746261042612026], + [-43.46126059933301, -14.746261083311174], + [-43.45624630637611, -14.757779933752733], + [-43.45624626638523, -14.75778002561125], + [-43.4570871905588, -14.758820116577928], + [-43.46282662090751, -14.765918670272976], + [-43.46282691267559, -14.76591903112335], + [-43.47528209161431, -14.762241533085867], + [-43.48124248442089, -14.767930136595917], + [-43.48124251150109, -14.767930162440596], + [-43.47979972932818, -14.772549300836873], + [-43.468715127548094, -14.779515871368643], + [-43.46871510624048, -14.779515884759096], + [-43.46968655388907, -14.787380899903958], + [-43.47836495826652, -14.792083326755677], + [-43.48351488236122, -14.789428958652595], + [-43.49012393310784, -14.792672836217797], + [-43.49424573304772, -14.790811029351778], + [-43.49846091243798, -14.797408574311246], + [-43.511149828764886, -14.79660678291966], + [-43.511150780279635, -14.796606722767372], + [-43.50973876779394, -14.80763182807023], + [-43.50973875609446, -14.807631960754605], + [-43.51535311202028, -14.804627155016393], + [-43.52121408980611, -14.80594169274596], + [-43.52523721768923, -14.814020177535255], + [-43.5313794996058, -14.815331218809225], + [-43.53918679203419, -14.805767967647386], + [-43.53918677621962, -14.805767861611491], + [-43.53692824865974, -14.79062523988588], + [-43.53393454891439, -14.78875177575061], + [-43.53393461021878, -14.788751676745292], + [-43.537161732771594, -14.783539723431426], + [-43.56263549033993, -14.769924728079333], + [-43.57377007968816, -14.765195261996839], + [-43.58060387404687, -14.750845800059201], + [-43.588758161156356, -14.750890499431682], + [-43.59924282840954, -14.753944399853227], + [-43.61123494828205, -14.76058047786385], + [-43.62998621710984, -14.750389535856419], + [-43.65698727215569, -14.74578301959894], + [-43.66635624055917, -14.737152035753923], + [-43.6709914246644, -14.736898811712209], + [-43.67321634832923, -14.72638720715004], + [-43.67593316688953, -14.72672578301252], + [-43.67593325247214, -14.726725793677522], + [-43.673798112331454, -14.72957607225032], + [-43.67379803247043, -14.729576178857325], + [-43.681068939240866, -14.732225011760574], + [-43.681069188281306, -14.732224669616146], + [-43.683766397822005, -14.728518994499955], + [-43.68404875468512, -14.728131053754934], + [-43.69022889590148, -14.727286594798521], + [-43.69022881697334, -14.727286473057479], + [-43.686605077835125, -14.721697013293516], + [-43.68660522298591, -14.721697094019024], + [-43.69218572104699, -14.724800595956184], + [-43.70340563000141, -14.725353051832611], + [-43.709714258007, -14.730420417077267], + [-43.71984821413355, -14.729570058174948], + [-43.71959731961185, -14.720933047898558], + [-43.71221613235004, -14.715016984871571], + [-43.71221688841274, -14.715016529387917], + [-43.71813122418949, -14.711453321135377], + [-43.72327414439438, -14.699562888985424], + [-43.727726628240724, -14.698473892366383], + [-43.75549870776024, -14.700866230771515], + [-43.76450538187801, -14.692114159473272], + [-43.77615320902514, -14.692228062034186], + [-43.777975520513095, -14.690984860277082], + [-43.78564837104211, -14.685749960574846], + [-43.78564905973012, -14.68575003457096], + [-43.80049234039242, -14.68734440300715], + [-43.81078261971778, -14.684625321386067], + [-43.83198332076, -14.675060536797371], + [-43.83872582341006, -14.6752372639371], + [-43.846853397487905, -14.67213568059809], + [-43.859186627903725, -14.674329400861902], + [-43.863293429098086, -14.662337376598515], + [-43.871882998410626, -14.663613176478089], + [-43.87188301050167, -14.663613043770411], + [-43.87324449586518, -14.653622138383676], + [-43.87324452987427, -14.653621888783965], + [-43.8749332083555, -14.652772897195888], + [-43.87588000172846, -14.6522968820898], + [-43.87910482672561, -14.658058437477491], + [-43.883493062142335, -14.653262687262444], + [-43.88349301670147, -14.653262610214004], + [-43.882860091142355, -14.652189433076433], + [-43.87927369931696, -14.646108284456837], + [-43.879273394868015, -14.6461077682187], + [-43.88302474385443, -14.643455438643807], + [-43.883686742107486, -14.642987367335818], + [-43.88368662561788, -14.642987320623082], + [-43.87713230214963, -14.640358909121785], + [-43.87713244253076, -14.640358829467825], + [-43.88577210884405, -14.63545624644683], + [-43.885771818353504, -14.63545628132848], + [-43.87461210201729, -14.636796026847188], + [-43.87461224824517, -14.636795876568346], + [-43.8817397867037, -14.62947041256551], + [-43.88173971245869, -14.62947036175403], + [-43.87102554461815, -14.622137469743029], + [-43.871025591491595, -14.622137364125765], + [-43.87442994469849, -14.614466064601224], + [-43.874429899077214, -14.614466047856801], + [-43.87004946407517, -14.612858246888456], + [-43.87004961552931, -14.612858166743859], + [-43.8768779959049, -14.609244615825315], + [-43.876877976221984, -14.60924449603708], + [-43.876519952308726, -14.607065610149187], + [-43.87449120659471, -14.594719311150936], + [-43.874491117802684, -14.594718770804997], + [-43.876383218207415, -14.591416711937974], + [-43.87671711391212, -14.590833985668617], + [-43.88137551552011, -14.590137891373171], + [-43.88296597258053, -14.599211696623005], + [-43.88600012349957, -14.59568939202374], + [-43.886000090410064, -14.595689304114655], + [-43.88263131858129, -14.586739334273167], + [-43.88263136213158, -14.586739300140424], + [-43.88718810088136, -14.583167803634984], + [-43.8871880542274, -14.583167711550878], + [-43.877159231724235, -14.563372160007143], + [-43.877159737260754, -14.56337204157789], + [-43.88128983008401, -14.562404461816374], + [-43.881289808369715, -14.562404334864636], + [-43.87481938829416, -14.524577963479462], + [-43.86764563104833, -14.509059362284797], + [-43.84178171477706, -14.462547848900552], + [-43.82705055335604, -14.428952353445302], + [-43.819374292841054, -14.389336582382164], + [-43.8143208583027, -14.380840261018957], + [-43.80464740151334, -14.372412765178249], + [-43.78317344787039, -14.339265492599214], + [-43.783173520176945, -14.339265461356826], + [-43.790314754576414, -14.336179679625054], + [-43.800071861156376, -14.337858935629692], + [-43.80683275456379, -14.33255023850225], + [-43.808638723420906, -14.325507365470342], + [-43.814799943739146, -14.325988976196905], + [-43.81479995310489, -14.325988843044641], + [-43.815305558766575, -14.320677242265859], + [-43.82230134843128, -14.323061329004839], + [-43.82230130215294, -14.323061177710812], + [-43.818991046056446, -14.31223912527668], + [-43.818991102279085, -14.312239155770557], + [-43.826321539946136, -14.316214872614434], + [-43.8361308907221, -14.311180285903388], + [-43.847213014733455, -14.321768722816214], + [-43.84721300613045, -14.321768575341517], + [-43.84670905142417, -14.313130716054447], + [-43.846709066380114, -14.313130735059772], + [-43.85141080961349, -14.31910535956276], + [-43.855436075660876, -14.318074021129485], + [-43.85543597959342, -14.318073913830464], + [-43.85143590114764, -14.313606090457656], + [-43.851435926132396, -14.313605978134685], + [-43.852690001770505, -14.307967767378637], + [-43.86152034925126, -14.312903565646877], + [-43.86993806646474, -14.310078307446425], + [-43.872822843354506, -14.3136157650211], + [-43.88091115885622, -14.311834467047788], + [-43.880911168865715, -14.311834333969152], + [-43.88137286030046, -14.307452343965313], + [-43.89032466968715, -14.30663400051123], + [-43.89032468072553, -14.30663386760823], + [-43.8919390181671, -14.293318502058472], + [-43.892465855626156, -14.301048084864755], + [-43.90224645524714, -14.298157926580817], + [-43.904410325326104, -14.293641646666712], + [-43.905245897108166, -14.30033587170563], + [-43.91096550884858, -14.297695285017102], + [-43.91096556303608, -14.29769525999908], + [-43.90911002917578, -14.302581302349456], + [-43.90910973568047, -14.302582075159016], + [-43.911571806180675, -14.305075453107637], + [-43.91574585770081, -14.302457483665624], + [-43.9157458672114, -14.302457350500353], + [-43.91638155092108, -14.29596456572136], + [-43.923858766813396, -14.296007630194547], + [-43.92366473347807, -14.303390140360912], + [-43.9236647287175, -14.303390273886077], + [-43.926410598512454, -14.305703758597806], + [-43.93505370831007, -14.29571069415921], + [-43.94212555421682, -14.305127424111731], + [-43.94627513364982, -14.289985741448277], + [-43.950932858820366, -14.290029888401365], + [-43.95612341439753, -14.299747982915953], + [-43.956123395294405, -14.299747802430744], + [-43.95532650005845, -14.292219104976448], + [-43.95532665140492, -14.29221907781273], + [-43.96190845796921, -14.291037666463911], + [-43.969573016579794, -14.274054786142761], + [-43.96964539268561, -14.274276622992417], + [-43.97090847678446, -14.278148029506205], + [-43.97683615268518, -14.280557464599585], + [-43.9808264124661, -14.28217929955946], + [-43.98258542299519, -14.27579942710293], + [-43.99058110516383, -14.272625230168577], + [-43.99058102268937, -14.272625131755833], + [-43.98635464240284, -14.26758189928981], + [-43.98635479974553, -14.26758194641798], + [-43.9911574617408, -14.269020415402514], + [-43.997634969640416, -14.26543510336435], + [-44.006137865036564, -14.267394750236582], + [-44.00927164012947, -14.272364279835912], + [-44.01546671511987, -14.271578689170365], + [-44.01539063638576, -14.276539431848507], + [-44.01539063238905, -14.276539565408273], + [-44.02574246363437, -14.276628344319912], + [-44.0346060863503, -14.28905885258025], + [-44.03841263103783, -14.282328726610787], + [-44.04152034044361, -14.286251112402784], + [-44.04936964855817, -14.284755289015264], + [-44.057131260098544, -14.284292871262814], + [-44.05713126582512, -14.284292737719852], + [-44.057413133172886, -14.277642527695281], + [-44.06132635231419, -14.28240163651073], + [-44.0613278097772, -14.282401092569524], + [-44.067201718126555, -14.280208775500485], + [-44.06841459597672, -14.27975606610092], + [-44.07338336423627, -14.285695849359387], + [-44.073383364780156, -14.285695715989807], + [-44.0731875360786, -14.280292181003322], + [-44.07794460376903, -14.278189040952348], + [-44.07794455311478, -14.278188932398086], + [-44.074436042090355, -14.270669914914013], + [-44.07443610435873, -14.270669902148544], + [-44.082439275207, -14.269029034397029], + [-44.08238636251039, -14.275473246248813], + [-44.08238635900946, -14.275473379825986], + [-44.08827152339611, -14.278106477121783], + [-44.088271502825144, -14.27810633171725], + [-44.08690656004973, -14.268458605625113], + [-44.08690658787437, -14.268458627040756], + [-44.093630200026396, -14.27363339571014], + [-44.09937913285661, -14.273490883378267], + [-44.09937921307453, -14.273490808876755], + [-44.106017838218996, -14.267324916243151], + [-44.10708239810359, -14.260376729796308], + [-44.10727025700212, -14.259150493859845], + [-44.11257899653635, -14.25875838385656], + [-44.124325769672254, -14.274999293404337], + [-44.135601347974415, -14.282215342141646], + [-44.143602856171626, -14.278522182314243], + [-44.143602715697966, -14.278522116281597], + [-44.13596704014647, -14.274932653801672], + [-44.13596705326329, -14.274932522742622], + [-44.13724920678177, -14.264181292547985], + [-44.15998834829446, -14.25766481282881], + [-44.16547057049262, -14.268960073672792], + [-44.173285065051125, -14.266906576630682], + [-44.182909597116215, -14.258260380528249], + [-44.20127269900625, -14.254505722557681], + [-44.201272698915865, -14.254505589786719], + [-44.201220718582384, -14.251166490139349], + [-44.20910663104694, -14.24670140925925], + [-44.20910663168237, -14.246701277616932], + [-44.20902785445264, -14.237260404000883], + [-44.21531646901338, -14.23321021434843], + [-44.2180428901181, -14.24500974127504], + [-44.24060345113604, -14.240716735857355], + [-44.24060355199653, -14.240716716659167], + [-44.2376813418064, -14.244903592080822], + [-44.23505217766218, -14.246975617027877], + [-44.23505205726922, -14.24697571190673], + [-44.2396322690665, -14.248524125948066], + [-44.23869154846567, -14.25803523879343], + [-44.23869153898866, -14.258035372068532], + [-44.24000822881213, -14.257079681965026], + [-44.247469371742184, -14.251663811082304], + [-44.24928364768722, -14.253238118973725], + [-44.249603735119905, -14.25351586682257], + [-44.24960381792616, -14.253515938675498], + [-44.24882554914395, -14.25405840195516], + [-44.24441532885588, -14.257132259923845], + [-44.244415766396585, -14.257132689183317], + [-44.24702787203341, -14.259695325185989], + [-44.24748891755962, -14.260147632765118], + [-44.25440979260517, -14.252086444405844], + [-44.26860027225737, -14.246625373526658], + [-44.26860072248766, -14.246625200239256], + [-44.27485794852081, -14.251209445366989], + [-44.27657268355082, -14.25246566879299], + [-44.28127618778396, -14.252521823084635], + [-44.281276113862155, -14.252521688496467], + [-44.27994438131314, -14.2500970089318], + [-44.279944442181524, -14.250096975600467], + [-44.28435161587567, -14.247683540746781], + [-44.28435202836142, -14.247683314855799], + [-44.28950864363747, -14.251714249514723], + [-44.290807972086185, -14.252729906399955], + [-44.30232126217314, -14.253271491630008], + [-44.316466409080085, -14.240378104922389], + [-44.32074596509609, -14.244785433885191], + [-44.34057880497786, -14.249429092239021], + [-44.34019204541828, -14.256704399464846], + [-44.35007935761883, -14.257588071093215], + [-44.3518240988259, -14.257743964045305], + [-44.35182422140052, -14.25774397499694], + [-44.346022157945036, -14.26329259345298], + [-44.34602194612592, -14.263292796009557], + [-44.35302393776364, -14.26095178948236], + [-44.352875992477365, -14.266211510996925], + [-44.36026718012718, -14.27184675380931], + [-44.36157156402419, -14.272841212072723], + [-44.36980786095187, -14.271655981127772], + [-44.37363863908585, -14.274682310439568], + [-44.37848749890616, -14.270447025510235], + [-44.378456721080696, -14.277181909310771], + [-44.37845671790965, -14.277182042997149], + [-44.38949590190778, -14.280507223502145], + [-44.389495911909954, -14.280507090260057], + [-44.38996295377928, -14.276163117680916], + [-44.39455472449796, -14.27725830441799], + [-44.397137967396624, -14.273506300744538], + [-44.39943127890018, -14.278310304249063], + [-44.41196813890946, -14.281629098787446], + [-44.43068239167783, -14.289548688722167], + [-44.43988300518364, -14.303690143743307], + [-44.45361100587079, -14.312010632251246], + [-44.461135072443746, -14.313521441347383], + [-44.46546898849038, -14.310760005200812], + [-44.46955050843844, -14.316562986478084], + [-44.4749711979877, -14.314376607392807], + [-44.47497130146086, -14.314376565656115], + [-44.47315602920196, -14.317294076410095], + [-44.47315596402295, -14.317294181163694], + [-44.48312191345954, -14.322145188192179], + [-44.483524164315455, -14.322783124342335], + [-44.487158790725125, -14.328547219794743], + [-44.487158934476795, -14.328547447764008], + [-44.498424794693975, -14.327711499365067], + [-44.50342265838546, -14.322353708864446], + [-44.50885090533507, -14.325673796351373], + [-44.51082533436433, -14.322715524161103], + [-44.518881910512206, -14.330238993299515], + [-44.52913554250158, -14.328153383138995], + [-44.54052610665601, -14.331798995702636], + [-44.54510198481636, -14.34309069123997], + [-44.55718418639214, -14.337063327717381], + [-44.55985456883227, -14.340528138588057], + [-44.56554657109846, -14.340087277536803], + [-44.564552202771374, -14.348629192138034], + [-44.56455219222409, -14.348629325342166], + [-44.5722724998469, -14.345596741193898], + [-44.575076795725806, -14.35007162177214], + [-44.577461246003715, -14.353877158451494], + [-44.58002778674484, -14.351366319714062], + [-44.58705075642676, -14.354441922744382], + [-44.58968672077338, -14.361397764224318], + [-44.59735838523877, -14.36793579358571], + [-44.6009421031973, -14.365332377283837], + [-44.60462950225714, -14.368262803505232], + [-44.61071808833501, -14.365468812015486], + [-44.611278071594036, -14.366395537297372], + [-44.616577046281584, -14.375164629448737], + [-44.61657709189987, -14.375164704938788], + [-44.62557602098011, -14.37613681454839], + [-44.62897473798659, -14.38179372317334], + [-44.6335794829459, -14.394499392724846], + [-44.63357993397428, -14.394498963305105], + [-44.63774848097713, -14.390529992200591], + [-44.63807364504458, -14.39022038427765], + [-44.64377009784441, -14.391951846834258], + [-44.64377016414633, -14.391951866986188], + [-44.641083483686344, -14.396196196698737], + [-44.64108341522772, -14.396196304843963], + [-44.64580126352358, -14.398120925538173], + [-44.64580213005226, -14.398120801231256], + [-44.64702395339508, -14.397945522325971], + [-44.65151699708399, -14.397300903725425], + [-44.65243260645911, -14.393595436720004], + [-44.65885901579804, -14.395783980195196], + [-44.66144814175133, -14.402661321411149], + [-44.663361953128856, -14.407744747694563], + [-44.66336175606873, -14.407745066818148], + [-44.65882346337022, -14.415094077786359], + [-44.65802260210764, -14.416390855818502], + [-44.65802253019394, -14.416390972262176], + [-44.66248772704682, -14.41755857480833], + [-44.66482680815548, -14.418170185246499], + [-44.66769198384578, -14.423378446059978], + [-44.66796636703738, -14.42387720617542], + [-44.66954708060917, -14.416224758331722], + [-44.67419017210293, -14.424522286165862], + [-44.68833357968104, -14.416707334978335], + [-44.687830291383264, -14.42156557663772], + [-44.687830279733134, -14.421565709008883], + [-44.69421762991275, -14.423512988209323], + [-44.69309969619188, -14.432651836403986], + [-44.693099685279314, -14.432651969581505], + [-44.69818604294779, -14.432073819810451], + [-44.70127324520128, -14.44981443534394], + [-44.70524479855758, -14.446609913724282], + [-44.71054615733632, -14.448153062190995], + [-44.71285995062885, -14.4439902971445], + [-44.713788917159256, -14.445047150244486], + [-44.71905328180591, -14.451036053907455], + [-44.723087472877125, -14.449374136446325], + [-44.723799388946, -14.449080845555311], + [-44.72563795664276, -14.457675372452465], + [-44.74176582316072, -14.467219850897514], + [-44.743410329400874, -14.467696580607692], + [-44.74799549673215, -14.4634427746115], + [-44.74821656935292, -14.464697413229453], + [-44.74946935156127, -14.471807299791173], + [-44.75672189875255, -14.478405964992275], + [-44.75672244844752, -14.478406465109893], + [-44.76026172856142, -14.475259131313672], + [-44.762827915992325, -14.478211017453388], + [-44.76935321159169, -14.477364178670664], + [-44.78202877919762, -14.482621112448989], + [-44.78755000137959, -14.488900927801495], + [-44.79434560985481, -14.487877220200279], + [-44.79430495456655, -14.496615373055796], + [-44.794304951468355, -14.49661550689799], + [-44.804777773191006, -14.496583865190857], + [-44.81824568624929, -14.490221248556606], + [-44.8182457259974, -14.490221229776541], + [-44.817055207559356, -14.494231742430946], + [-44.80918846184751, -14.497884916934176], + [-44.80918838865065, -14.497884950923376], + [-44.81379476209284, -14.504685273838152], + [-44.83321755556005, -14.499853281182396], + [-44.83547218505648, -14.504610835591585], + [-44.83547222241606, -14.504610914424074], + [-44.82971696457709, -14.511989063851903], + [-44.82451149578933, -14.513631711655675], + [-44.82401518555972, -14.518201617813954], + [-44.82401517555938, -14.518201751198623], + [-44.83627222487962, -14.518513511403789], + [-44.83627228802169, -14.51851351300817], + [-44.8317734948423, -14.527173844222999], + [-44.83177325385724, -14.527174308097843], + [-44.834869170693416, -14.535949657795957], + [-44.834869222051374, -14.535949803367254], + [-44.826414628410454, -14.534208077003415], + [-44.82433393586149, -14.539402169215519], + [-44.824333888331935, -14.539402287860247], + [-44.832857120548375, -14.542489233507467], + [-44.83988234012673, -14.540379918940777], + [-44.847087691796645, -14.545511428323604], + [-44.846909511664684, -14.55777899326423], + [-44.846905594981834, -14.558048421110994], + [-44.84994075758795, -14.56279620278856], + [-44.84994088111864, -14.562796396019422], + [-44.854936801775935, -14.562648952170006], + [-44.854108349265175, -14.567164396722253], + [-44.854108327498345, -14.567164515354381], + [-44.858773842233425, -14.571547295920503], + [-44.858773991946734, -14.57154743655785], + [-44.850084909668794, -14.571167708875011], + [-44.84752120737756, -14.575507002905539], + [-44.843886250159066, -14.566335720031006], + [-44.8433658152501, -14.58086321859152], + [-44.84336581006267, -14.580863352453234], + [-44.8506869350991, -14.577590446616442], + [-44.85894245929829, -14.580942384093936], + [-44.85894294916267, -14.580942106264523], + [-44.8612600760831, -14.579627911236022], + [-44.86196248064211, -14.579229522291346], + [-44.87082537148274, -14.589426269905799], + [-44.87082540529306, -14.589426308802812], + [-44.869173764041825, -14.593409604268075], + [-44.869173722414374, -14.593409704658809], + [-44.87593740651702, -14.599687461244013], + [-44.87593747896815, -14.599686564707488], + [-44.876547816461866, -14.592133103995971], + [-44.8765512697361, -14.592090329040127], + [-44.87944003934063, -14.595909536577686], + [-44.8909953762119, -14.597680216247436], + [-44.89646302324108, -14.605481001509805], + [-44.91018871352847, -14.603575014144678], + [-44.91018873905933, -14.603575010598565], + [-44.9079642830856, -14.61341066857929], + [-44.90796425357379, -14.61341079905735], + [-44.916990263908005, -14.614689087061942], + [-44.91665880891547, -14.619684854241255], + [-44.91665880090491, -14.61968498753299], + [-44.94133241165111, -14.62771182887664], + [-44.94657254163927, -14.62375354521963], + [-44.94657265807294, -14.62375345726452], + [-44.943004911980665, -14.630242492239235], + [-44.94300484860693, -14.630242607498207], + [-44.95476963811166, -14.634031861206717], + [-44.954772951692135, -14.637886822359668], + [-44.95477294898344, -14.637886956246366], + [-44.96058271539393, -14.63174637311121], + [-44.97092482822121, -14.638865269988004], + [-44.98057527140143, -14.643527466750195], + [-44.980575342825865, -14.643527501253972], + [-44.97391730282997, -14.652127764040904], + [-44.97391719701278, -14.65212790071703], + [-44.98336058464411, -14.651865911654083], + [-44.982547813148756, -14.65769984352757], + [-44.98254768581266, -14.657700757456107], + [-44.98591199464657, -14.662157949327238], + [-44.99661581108647, -14.658869147814404], + [-44.995725954866266, -14.667839425137704], + [-44.99572594364728, -14.66783955778664], + [-45.040300362531944, -14.680508568808749], + [-45.03913663028619, -14.690113288048867], + [-45.039136617356974, -14.690113416875993], + [-45.04498347418915, -14.695966508378813], + [-45.04679132512577, -14.689751883583567], + [-45.05410013515091, -14.699475407656948], + [-45.06236458868503, -14.724979598669172], + [-45.082750050712676, -14.748790149259742], + [-45.08275035046719, -14.748790246281494], + [-45.093052962689974, -14.752124648157608], + [-45.09582674119967, -14.753022285431445], + [-45.126548413029994, -14.745415773855198], + [-45.13626662350787, -14.747439882415867], + [-45.13993695176591, -14.742994233828352], + [-45.1568566082345, -14.740807270747], + [-45.16643933493932, -14.735324036062295], + [-45.16643925277748, -14.735323952227654], + [-45.163581034020986, -14.732407498229035], + [-45.16358122062949, -14.73240754912603], + [-45.168806095682825, -14.733832559482897], + [-45.17199343496172, -14.734701799832612], + [-45.174139332846245, -14.740969403501923], + [-45.17426671271067, -14.741341441627657], + [-45.181883020052254, -14.744597575792746], + [-45.18958213710757, -14.74246813311288], + [-45.19127468703248, -14.749734567547168], + [-45.19127557173674, -14.74973425940131], + [-45.20028674115303, -14.746595385109146], + [-45.205550309924185, -14.744761687360104], + [-45.217092569438265, -14.755753295686159], + [-45.2170925885612, -14.755753313895728], + [-45.21663432616829, -14.757915146686317], + [-45.21663430044037, -14.757915268054347], + [-45.229241241362445, -14.765745222769633], + [-45.23163686385267, -14.77502995847773], + [-45.2330747578227, -14.776638211583094], + [-45.24193789394684, -14.78655090299278], + [-45.24193829418136, -14.786551350601544], + [-45.24741440929659, -14.783629293485987], + [-45.25868949650156, -14.789544497386103], + [-45.26307131622821, -14.802227023440873], + [-45.27115986890405, -14.79884501463701], + [-45.27438777114587, -14.811523900277649], + [-45.28871591365179, -14.818131205930339], + [-45.28700957140467, -14.82152168191289], + [-45.28688975159883, -14.821759755691764], + [-45.28688970790736, -14.82175984250358], + [-45.29013149510731, -14.825755359467198], + [-45.290131540999404, -14.825755416028425], + [-45.28566759300992, -14.832498121978793], + [-45.285666404046275, -14.832499917794598], + [-45.29544189704748, -14.827379548613326], + [-45.29544193018638, -14.827379531253998], + [-45.29560470657266, -14.827413601667164], + [-45.30254768676986, -14.828866714119794], + [-45.3059817802917, -14.83435387500281], + [-45.3101369058305, -14.836713061883485], + [-45.317128759226314, -14.832018219176762], + [-45.317128895410164, -14.832018127728082], + [-45.311412870930766, -14.841120941605261], + [-45.31141282785836, -14.84112101019377], + [-45.31801801601095, -14.85259126437604], + [-45.3180189495068, -14.852591162054368], + [-45.32247181009121, -14.85208843486025], + [-45.33008495518894, -14.85952777025476], + [-45.35284722921094, -14.864127322984915], + [-45.352847311377786, -14.864127339584153], + [-45.34989204164636, -14.868091434868157], + [-45.34989201234455, -14.868091474171411], + [-45.35191567565487, -14.876104366752294], + [-45.35554484297962, -14.87752921568529], + [-45.35716414971387, -14.876409686413046], + [-45.36395127687116, -14.871717014711557], + [-45.36395144574579, -14.871717444182107], + [-45.36630076998447, -14.877691996674459], + [-45.372071730018895, -14.88097367318315], + [-45.37207176656445, -14.880973693964233], + [-45.36891270325088, -14.889508780413564], + [-45.36891267521351, -14.889508856159402], + [-45.37071849747734, -14.894153563560623], + [-45.38110567210515, -14.897830124158375], + [-45.399771577182314, -14.917522552453867], + [-45.42102025466511, -14.926605925727399], + [-45.4291334578621, -14.919747660213908], + [-45.44042974555085, -14.929692165821654], + [-45.4424712357864, -14.935273257148861], + [-45.451188496682846, -14.938741335854159], + [-45.45118855198729, -14.938741357855243], + [-45.451037326745904, -14.93902066056859], + [-45.44905672541292, -14.942678590724732], + [-45.45531266069099, -14.949094331150919], + [-45.455106107482095, -14.953738279879909], + [-45.45510606413263, -14.953739307604824], + [-45.469826606549745, -14.950075274700096], + [-45.49002707391619, -14.96078331754259], + [-45.498466154885534, -14.94640223807353], + [-45.51396221911215, -14.95398913803527], + [-45.52067083754261, -14.953578760407279], + [-45.53470336315622, -14.93827798718136], + [-45.549042729602846, -14.93904862193469], + [-45.55365343757273, -14.945127078505639], + [-45.55909943826022, -14.9435321854818], + [-45.56754106632018, -14.945853421341056], + [-45.56702487350002, -14.956515532722232], + [-45.58425516549292, -14.9704057658117], + [-45.58839027050004, -14.973738917022482], + [-45.588390304609945, -14.973738944516564], + [-45.58675156710775, -14.978175365662349], + [-45.586751509988886, -14.978175520290433], + [-45.59345767516537, -14.975521250490136], + [-45.59449550130958, -14.98424681407019], + [-45.602685770796036, -14.989552664708734], + [-45.602685795712695, -14.989552680849629], + [-45.60242776208704, -14.990561067332957], + [-45.60096554272993, -14.996275053027787], + [-45.60096570528085, -14.996275061022436], + [-45.6073932401498, -14.996591093135752], + [-45.60852755521583, -14.996646846925092], + [-45.617196762968334, -15.014300736206781], + [-45.623261802608184, -15.020276800464341], + [-45.6395759121, -15.023511914066308], + [-45.64397186903209, -15.01733473465471], + [-45.64614780133772, -15.032079829103136], + [-45.64954341741835, -15.028043923671161], + [-45.64954337807403, -15.028043842549234], + [-45.64730728289293, -15.02343329107773], + [-45.647307364772466, -15.02343331494675], + [-45.655492179797506, -15.025819142710711], + [-45.66039753081202, -15.038298731256972], + [-45.66039755648204, -15.038298796561262], + [-45.65579243635066, -15.048549367378673], + [-45.65579239979321, -15.048549448746066], + [-45.67478520690405, -15.080562729247118], + [-45.678806330552284, -15.079658529076582], + [-45.67973891590882, -15.083914898279597], + [-45.68580436198983, -15.086857881527445], + [-45.6938638314834, -15.084231151736468], + [-45.69324727992731, -15.089737849243944], + [-45.69324726779421, -15.089737979421525], + [-45.697151996431955, -15.092979354825566], + [-45.7009144302631, -15.090433690062355], + [-45.710699728274, -15.093478991639168], + [-45.71293270827521, -15.097822117824704], + [-45.717011073145734, -15.093928949395417], + [-45.718883783287964, -15.097416192575615], + [-45.71888381424057, -15.097416250212925], + [-45.71591000142819, -15.103703908111582], + [-45.71590993990745, -15.103704038181569], + [-45.7239367228462, -15.10428596636573], + [-45.723937676139805, -15.104286035461092], + [-45.72160405287075, -15.112247712414721], + [-45.72160404004807, -15.112247756159379], + [-45.72882993209405, -15.113204513883256], + [-45.72883082858844, -15.113204632570962], + [-45.73071545073774, -15.116525360153867], + [-45.73090049282433, -15.116851402288773], + [-45.73965222269745, -15.120463354883158], + [-45.744278441035036, -15.118737296056606], + [-45.751082344963166, -15.122600925042509], + [-45.75212932080271, -15.121848232772853], + [-45.756716889455944, -15.118549993487008], + [-45.756717802386525, -15.118549908669166], + [-45.78899875301554, -15.11554833664619], + [-45.78899876168516, -15.115548202768018], + [-45.78925341556379, -15.112746622940467], + [-45.78925425745172, -15.112747541048401], + [-45.7917472845215, -15.115466235802046], + [-45.801694214157, -15.119081617437566], + [-45.803185809475615, -15.118147732741743], + [-45.811638070659114, -15.112855390665514], + [-45.81954484929392, -15.11752472382039], + [-45.82094022014667, -15.118348714814584], + [-45.82666187619151, -15.116971660763644], + [-45.82783784134072, -15.122809773903107], + [-45.83257677073571, -15.124082232434604], + [-45.83430201704862, -15.136683075534494], + [-45.83875323616874, -15.137336081405856], + [-45.8443056660681, -15.14526697300169], + [-45.858807017571834, -15.144395163671636], + [-45.85880704805199, -15.144395161838164], + [-45.85763932633795, -15.148851566626432], + [-45.85763929517368, -15.14885168555518], + [-45.873455212815784, -15.15814002687713], + [-45.91869757143358, -15.133387510637181], + [-45.953721424904636, -15.139546738242817], + [-45.95652921548724, -15.141824789026343], + [-45.97244165679332, -15.154733763090498], + [-45.972391365281965, -15.170204029105316], + [-45.9723913625125, -15.170204163348485], + [-45.97504852112439, -15.16930682940693], + [-45.97954811277131, -15.174399512824024], + [-45.979548168243774, -15.174399575606746], + [-45.97683027186921, -15.177605832459028], + [-45.97683023097782, -15.177605880696754], + [-45.984476774960285, -15.195978346967479], + [-45.99305387797638, -15.195877658974652], + [-45.99435573553725, -15.200613112205296], + [-46.00088885882197, -15.196019352806962], + [-46.010424537942114, -15.195836163035628], + [-46.0271725424097, -15.200241780616896], + [-46.03164456401385, -15.206130126369505], + [-46.032052647003994, -15.213956689317216], + [-46.032052647949094, -15.21395682327613], + [-46.03949637538504, -15.217346049144403], + [-46.038567710875135, -15.230451114043165], + [-46.03853367418329, -15.230931329851677], + [-46.03853360270815, -15.230932338270529], + [-46.0469996481161, -15.236366953043527], + [-46.047440522266875, -15.241752779061228], + [-46.050884784886144, -15.241612900299437], + [-46.05069262465527, -15.246989850425837], + [-46.05069261971658, -15.24698998469115], + [-46.055528955395836, -15.250585281380205], + [-46.05552898778453, -15.250585305457081], + [-46.05259742228881, -15.259206500053542], + [-46.05259738395278, -15.259206612785459], + [-46.05808396845581, -15.262758543438256], + [-46.07705272706951, -15.264698439116644], + [-46.081221749010496, -15.24853239990684], + [-46.0849172623217, -15.245853481458349], + [-46.092328182247506, -15.247931151388972], + [-46.09907974744267, -15.238285575816716], + [-46.099079747403806, -15.238285446373496], + [-46.09878813402337, -15.216802496352198], + [-46.098791038239035, -15.216800371397515], + [-46.11888620656539, -15.202094889685306], + [-46.11888621118762, -15.202094755593581], + [-46.119216135330106, -15.192243439411643], + [-46.09766406292131, -15.192629263802013], + [-46.09280318112478, -15.18519348209857], + [-46.080637047803926, -15.182113067126128], + [-46.07869409250402, -15.175522920500724], + [-46.061853315644655, -15.175390803239356], + [-46.05425174373763, -15.171986543892341], + [-46.053275948275854, -15.17075055281128], + [-46.04774671616082, -15.163746684207375], + [-46.04707959973409, -15.150116551976543], + [-46.04342102476796, -15.146191369808761], + [-46.04342107210744, -15.146191280924027], + [-46.04613468286263, -15.141096013109593], + [-46.05044174606609, -15.133006217574561], + [-46.05044171547514, -15.133006150238224], + [-46.043691409449686, -15.118146766857482], + [-46.0284478879238, -15.114128379982349], + [-46.028025869382084, -15.102244269490454], + [-46.01950124793696, -15.093053616989856], + [-46.018468575940034, -15.081318711508894], + [-46.00153331606061, -15.06402170850798], + [-45.99555071334342, -15.059274507909269], + [-45.99555071480394, -15.059274373718083], + [-45.99547507052173, -15.054503490769935], + [-45.987416104297196, -15.051029686836712], + [-45.975465768306734, -15.038899318591154], + [-45.975465769607254, -15.03889918441738], + [-45.97483964555212, -15.004692955440687], + [-45.97849326879156, -14.998598001679255], + [-45.97849321587053, -14.998597964128079], + [-45.969698136826146, -14.992356943135286], + [-45.96605273977798, -14.965663476024728], + [-45.96605275649084, -14.965663427313016], + [-45.97172085108014, -14.949141018638477], + [-45.98693929839849, -14.941075916256423], + [-45.99580862765988, -14.927488486765979], + [-46.007285018338614, -14.925860017044037], + [-46.007284999271505, -14.925859886208489], + [-46.00719379332681, -14.925234045746958], + [-46.003852620945125, -14.902307770322802], + [-46.02125084899338, -14.88379619648915], + [-46.03557387843622, -14.87742828870937], + [-46.037546420425535, -14.874674024038933], + [-46.03754644543356, -14.874673989119469], + [-46.03754642014939, -14.87467389708489], + [-46.032604593730454, -14.856684999444816], + [-46.032604556587884, -14.856684864236433], + [-46.035417877329415, -14.85266602728812], + [-46.04527417897828, -14.8385844095041], + [-46.05003489917327, -14.837379959776689], + [-46.05119551908638, -14.837086307568955], + [-46.05119556855223, -14.8370862950533], + [-46.049670399346134, -14.83318130290761], + [-46.049670342619756, -14.833181157665699], + [-46.05279841191891, -14.831387455099266], + [-46.05279854832836, -14.831387376877334], + [-46.03817042913436, -14.822290604083946], + [-46.02330643283686, -14.81803549199914], + [-46.02022387396121, -14.81081941486117], + [-46.01783210744197, -14.803374389036403], + [-46.0079724506335, -14.794095807948963], + [-46.00797242861399, -14.794095787226066], + [-46.00800373254215, -14.79361311173158], + [-46.00925222549842, -14.774356368754221], + [-46.01269359405865, -14.769828089257583], + [-46.01302892111822, -14.769386837265015], + [-46.013028977915994, -14.769386762525427], + [-46.007891525223464, -14.762253863135463], + [-46.0073913441253, -14.743137393059428], + [-46.007391335729494, -14.743137222273498], + [-46.012888267604914, -14.73385588079812], + [-46.01288834520043, -14.733855749772674], + [-46.00693992847705, -14.731231770171123], + [-46.001763064399356, -14.720297452872058], + [-46.00176305053328, -14.720297423583853], + [-46.0018614299806, -14.711280350071197], + [-46.006503065460436, -14.706699366001848], + [-46.006470286599786, -14.701657643641884], + [-46.00647027987808, -14.701657472919937], + [-46.02272595793154, -14.692241427422163], + [-46.02955285523534, -14.683420785873604], + [-46.029552910729066, -14.683420714168651], + [-46.02586050223982, -14.678033632107546], + [-46.02249777301815, -14.670972197492906], + [-46.02249773061268, -14.67097210844319], + [-46.024639180399255, -14.665153688081169], + [-46.02463923184261, -14.665153548301259], + [-46.02095508854929, -14.66336855068641], + [-46.012531176006526, -14.661875642758622], + [-46.011807319592855, -14.661133430706792], + [-46.00827793119424, -14.657514461878009], + [-46.0075788158373, -14.66144864470492], + [-46.00722229064064, -14.663454837042392], + [-46.00026976290552, -14.664659699357154], + [-45.99836952505986, -14.66367717316205], + [-45.98972328136136, -14.659206329335557], + [-45.988971093990905, -14.645761544982754], + [-45.988971253036475, -14.645761378603776], + [-45.99520501535515, -14.639239842296957], + [-45.99520472686201, -14.639239466858038], + [-45.99112869452747, -14.63393488192898], + [-45.98544269864567, -14.62653466968215], + [-45.984804911202396, -14.620829196619853], + [-45.984804895529685, -14.620829026294668], + [-46.000999950682505, -14.601621501422962], + [-46.00100043269701, -14.601620929664428], + [-45.989336478600315, -14.589145949149684], + [-45.985276836119084, -14.573576508607122], + [-45.98527680422721, -14.573576386293132], + [-45.98797278242181, -14.566899777911823], + [-45.995778681696976, -14.566162041104858], + [-45.995779682417044, -14.566161946508954], + [-45.991088382311126, -14.56371953749674], + [-45.9895598204754, -14.556542818215872], + [-45.99187241264386, -14.555049510980028], + [-45.99386189406677, -14.553764805207257], + [-45.99386201196025, -14.553764729076564], + [-45.98911551351328, -14.550319683966904], + [-45.98911540620711, -14.550319606081347], + [-45.996611733818284, -14.542991869028054], + [-45.99661188199619, -14.54299172417385], + [-45.9901690847989, -14.541955336957827], + [-45.97969784716611, -14.546161297617541], + [-45.97933176140299, -14.545149356263973], + [-45.97705622536557, -14.538859161891537], + [-45.977056393943506, -14.5388587795905], + [-45.97985308947232, -14.53251615122348], + [-45.98074585485438, -14.530491328873236], + [-46.00102294125332, -14.521136056716077], + [-46.004246742674354, -14.51582624896393], + [-46.00424679919283, -14.515826155870926], + [-45.99883780291896, -14.509736332531423], + [-45.99883774283603, -14.509736264883932], + [-46.00133273961705, -14.504345419183739], + [-46.00133280108474, -14.504345286367812], + [-45.994144835742446, -14.500660593917122], + [-45.9936402362645, -14.49541122824234], + [-45.99364033040453, -14.495411017953606], + [-45.996333585171, -14.489394610158788], + [-45.99718920736496, -14.487483146999015], + [-46.01323569508623, -14.475729092349985], + [-46.01346473274431, -14.47527080944712], + [-46.01636126254412, -14.469469887970273], + [-46.016361274689935, -14.469469863644708], + [-46.01491584868305, -14.46085956958176], + [-46.01222635288271, -14.454636932529048], + [-46.001500343138474, -14.44877319184397], + [-46.00080620226353, -14.434554760918365], + [-46.00080619187984, -14.434554590145666], + [-46.01005821950035, -14.427541384395477], + [-46.01200037054305, -14.421280788100196], + [-46.01730753643383, -14.420722112349534], + [-46.01730758938086, -14.420722106775274], + [-46.01221838771204, -14.407871273228162], + [-46.007466333340595, -14.407342785346193], + [-46.00474883678085, -14.42112439203594], + [-46.00390404267519, -14.422301457320382], + [-45.998806955619656, -14.429402888305916], + [-45.998806077291576, -14.429402977590295], + [-45.9726722077464, -14.432058013605314], + [-45.957809415606974, -14.425859395305135], + [-45.9499141150206, -14.41686011671236], + [-45.9353207273455, -14.415357757505348], + [-45.92761194641846, -14.410332899481874], + [-45.92607974935322, -14.38621564710857], + [-45.92607973773589, -14.386215476410852], + [-45.922491136270835, -14.380161084385609], + [-45.912109424677155, -14.374991438778446], + [-45.9121093993392, -14.374991426160499], + [-45.91280170261824, -14.366548420641106], + [-45.912801713812996, -14.366548284098824], + [-45.906941195484556, -14.358070764444854], + [-45.906941173534, -14.358070732691282], + [-45.90727309922286, -14.353252942447114], + [-45.91355872488859, -14.347218123548224], + [-45.93005825375686, -14.35062232153798], + [-45.9300587299183, -14.350622419763107], + [-45.93846189894274, -14.346062041408038], + [-45.94264176485011, -14.34379343022616], + [-45.9464425677705, -14.330332650173672], + [-45.954023026947134, -14.325376151566875], + [-45.956208925179006, -14.314930323949554], + [-45.95913601869016, -14.306253771713203], + [-45.963241494343784, -14.285925189498132], + [-45.97599974732701, -14.27755511400724], + [-45.99527231007082, -14.278926207215703], + [-45.99527233501709, -14.278926208989445], + [-45.99177702838894, -14.262819394096672], + [-45.99177699679426, -14.262819248502177], + [-45.996027054539184, -14.257243642100494], + [-46.00742205924093, -14.256029041650901], + [-46.01494173439831, -14.260872147510176], + [-46.021912214897505, -14.26041334376506], + [-46.0228776167672, -14.259575294785284], + [-46.02652590962509, -14.25640816268334], + [-46.0292818235045, -14.246063851669323], + [-46.029281839699394, -14.246063790877017], + [-46.04628164497684, -14.244562020656128], + [-46.04628247699769, -14.244561947123813], + [-46.05761574871972, -14.235306798950583], + [-46.06100005341615, -14.232542754244822], + [-46.061000084999044, -14.232542728449658], + [-46.05257074341122, -14.204860170537874], + [-46.052570512036795, -14.20485941064642], + [-46.061134093948496, -14.194390223185271], + [-46.077031684157696, -14.195517897577568], + [-46.091358004552966, -14.205700104465814], + [-46.098414658654114, -14.202396238470234], + [-46.101640277700135, -14.192809357836095], + [-46.10450345188453, -14.19182789577607], + [-46.116110896401935, -14.187848515410169], + [-46.1161107989491, -14.187847839246434], + [-46.113526479559056, -14.169917161720962], + [-46.11352646107124, -14.169916991819814], + [-46.11811353423294, -14.160383586498746], + [-46.133697062844035, -14.153256240032338], + [-46.15127705630104, -14.160441751043376], + [-46.174166215747384, -14.154732584882343], + [-46.18561662572674, -14.151875541849922], + [-46.19433667878418, -14.145389269141885], + [-46.19725544338385, -14.1432180103912], + [-46.19783357396449, -14.126547224091134], + [-46.20216386686508, -14.119644685549888], + [-46.216832153697325, -14.120028522463883], + [-46.23636490672907, -14.107256358739644], + [-46.25483577936486, -14.104916951446175], + [-46.26575406914211, -14.0979792265601], + [-46.26575417390244, -14.097979159987919], + [-46.25345404808697, -14.087072561998168], + [-46.2477238469724, -14.093891153667288], + [-46.241959702006554, -14.092728262782485], + [-46.225176115301245, -14.06964149033349], + [-46.22517605331437, -14.06964140505912], + [-46.23272842684569, -14.056537708578068], + [-46.2428365840799, -14.059934784611766], + [-46.24838873065996, -14.056554962040794], + [-46.248388873930566, -14.056554874822597], + [-46.232107465158684, -14.047836922678993], + [-46.210561444916735, -14.019311342972752], + [-46.20997892522642, -14.012868796749576], + [-46.20997891115236, -14.012868626129228], + [-46.21883994175839, -14.002499663301633], + [-46.216254801187844, -13.979906816126475], + [-46.216254785087465, -13.979906645755156], + [-46.22242078461262, -13.97117788204239], + [-46.23341851064074, -13.967595412732006], + [-46.26810541433226, -13.943778039186219], + [-46.26810574810132, -13.943777809951486], + [-46.262216642243125, -13.928204505031003], + [-46.26221663600074, -13.928204472256478], + [-46.26213975876402, -13.902634820618385], + [-46.26213975210176, -13.902634649850462], + [-46.243834835093594, -13.868645829232696], + [-46.23363406306638, -13.84563440825358], + [-46.23363401699186, -13.8456343043096], + [-46.23568747506716, -13.841511214181974], + [-46.2496739943877, -13.83074160411506], + [-46.26953587204409, -13.828872436767224], + [-46.27174122335449, -13.821926606200622], + [-46.27174125641793, -13.821926502061128], + [-46.26255509333472, -13.808596441194751], + [-46.26255500663589, -13.808596315379566], + [-46.28242141633381, -13.796508615706333], + [-46.28242150999686, -13.796508558709274], + [-46.27372388385761, -13.787219842704815], + [-46.2276043255471, -13.774219023781537], + [-46.22429937200949, -13.765402712628449], + [-46.224299327197286, -13.765402593084593], + [-46.237140651578535, -13.74484730305705], + [-46.25522518167706, -13.748743375988449], + [-46.26686462601285, -13.740343423575535], + [-46.266864659150464, -13.740343399658839], + [-46.26467188006908, -13.73334483321648], + [-46.23788162493228, -13.716254695936065], + [-46.23548651385028, -13.70817980802557], + [-46.23548647972929, -13.708179692988256], + [-46.23572667401092, -13.707550751044337], + [-46.23836407518374, -13.700644440014676], + [-46.26150670039326, -13.68905892442023], + [-46.261506188247154, -13.689058477162352], + [-46.255093332531764, -13.683457948195569], + [-46.25375075790441, -13.682285395770831], + [-46.242917078811686, -13.658999348659352], + [-46.22838666219054, -13.647621228956398], + [-46.213176284052125, -13.630001320752012], + [-46.193672184585125, -13.621812977715928], + [-46.16193778694143, -13.59094806615983], + [-46.1619377257351, -13.590948006621371], + [-46.164749169838245, -13.584485001624902], + [-46.18430356195804, -13.567589323319682], + [-46.21443995513621, -13.572269162097465], + [-46.22055870131364, -13.568290644241088], + [-46.22847031519299, -13.568978713292775], + [-46.23547358230887, -13.562928268917847], + [-46.23866097631869, -13.554603025073138], + [-46.238660997455455, -13.554602969862364], + [-46.234638574917646, -13.540954269704423], + [-46.23463839458867, -13.540953657805785], + [-46.24130448813184, -13.525548040642839], + [-46.241304539208045, -13.5255479225917], + [-46.22677567255166, -13.51358767188494], + [-46.21856246874036, -13.500527316869132], + [-46.21856239447066, -13.500527198762702], + [-46.221915517518305, -13.497651367502277], + [-46.220279000126084, -13.487776870054628], + [-46.220278977407645, -13.48777670205789], + [-46.22830902252269, -13.485540068514526], + [-46.23022552320525, -13.481446485147984], + [-46.23022557339577, -13.481446377939776], + [-46.225752569547765, -13.476945101964683], + [-46.20986411558604, -13.472788881815337], + [-46.20639040151272, -13.465651466503948], + [-46.20639034250134, -13.465651345251244], + [-46.22247423333996, -13.448387081080572], + [-46.22572821049725, -13.434484768264674], + [-46.24269505506343, -13.437174613781336], + [-46.24328569119361, -13.430278962604067], + [-46.24328570406683, -13.43027881229679], + [-46.21838722997861, -13.410590961441144], + [-46.214336038788716, -13.400732562546526], + [-46.19175933748542, -13.390636457311805], + [-46.170387000595824, -13.383974402810702], + [-46.1547200109148, -13.383360310612414], + [-46.13399967196214, -13.375247086991067], + [-46.12641649945823, -13.364499023875535], + [-46.112395469407865, -13.358696089435744], + [-46.09505701125793, -13.332504331000228], + [-46.083385473696325, -13.33040057048446], + [-46.06167540828444, -13.318319527667153], + [-46.04844860082495, -13.309218863723858], + [-46.041234134748734, -13.280495230367722], + [-46.041101555704095, -13.277639868510326], + [-46.041101545301345, -13.277639697741398], + [-46.042137067601615, -13.272693876682894], + [-46.04925807178924, -13.271289527230342], + [-46.05219408284046, -13.264458605977879], + [-46.06383925812998, -13.2613088243135], + [-46.07963968539379, -13.269824614477608], + [-46.089639695386786, -13.27075352884643], + [-46.11261158004146, -13.284301620055453], + [-46.122894523364714, -13.282422240924976], + [-46.12925170252136, -13.290725734892167], + [-46.172274773400474, -13.312294557748746], + [-46.205028160541005, -13.320321679141852], + [-46.21817966120937, -13.317250516146755], + [-46.23758542750806, -13.336244109136254], + [-46.26647287071805, -13.348374158910769], + [-46.27156705224503, -13.34543154043973], + [-46.279361580800405, -13.347917423988651], + [-46.287635156067815, -13.326711095101041], + [-46.2886431589903, -13.314636701907569], + [-46.298558447654905, -13.313482455329366], + [-46.31532840172484, -13.30491926105268], + [-46.31532842429818, -13.30491924952481], + [-46.313807950903424, -13.298123848163023], + [-46.29895177190093, -13.28182279741994], + [-46.29895173695054, -13.281822759067664], + [-46.30144721667315, -13.26673520431204], + [-46.30144723098228, -13.266735117788418], + [-46.297920887644146, -13.255882123635866], + [-46.297920841134754, -13.255881980491274], + [-46.30225378987521, -13.2523069019732], + [-46.31668950462675, -13.252475646437858], + [-46.33014080157536, -13.25283034254397], + [-46.33111539944093, -13.249556226036802], + [-46.33111543536572, -13.249556105346427], + [-46.321140004896726, -13.239364244167174], + [-46.31417143971019, -13.2253707616888], + [-46.31222419471386, -13.211501318098163], + [-46.312224176286826, -13.211501148070653], + [-46.30447009543009, -13.205552371396436], + [-46.300782914735535, -13.193626254270486], + [-46.300782886264166, -13.193626162178404], + [-46.30300567627032, -13.182265193587568], + [-46.310061209499665, -13.182030391247713], + [-46.3144491047072, -13.178104595507778], + [-46.31444918613891, -13.17810452264959], + [-46.30392399953474, -13.16720456331971], + [-46.30392392615393, -13.16720448732224], + [-46.30978208448324, -13.15799745609725], + [-46.30978216797465, -13.157997324869374], + [-46.293598497717475, -13.151375666837648], + [-46.291613854798, -13.143614248828731], + [-46.291613826253354, -13.143614137196897], + [-46.29520221884349, -13.12988559059001], + [-46.2987003808313, -13.125962822395572], + [-46.30854611270143, -13.124082218301865], + [-46.31392148111532, -13.10852546311581], + [-46.32263780357188, -13.098302383604505], + [-46.32263787413528, -13.098302300837219], + [-46.30155806232275, -13.076140430526104], + [-46.29588845825983, -13.063960436163102], + [-46.29186715369235, -13.053888732919459], + [-46.28973397351916, -13.051900083663954], + [-46.280670259960324, -13.043450037809782], + [-46.27901714748314, -13.037715300390941], + [-46.27894914165807, -13.03747938229092], + [-46.27894910288178, -13.03747924777261], + [-46.281339497521536, -13.03410417567916], + [-46.28133994645377, -13.034103541803884], + [-46.275553194600285, -13.028338143547114], + [-46.27335238887385, -13.014972984514884], + [-46.253267496260406, -13.006077650006132], + [-46.24550133348775, -12.997429823432137], + [-46.24027806164421, -12.999875869650005], + [-46.23227301042351, -12.995521230218342], + [-46.22041826584211, -13.004139345927879], + [-46.208859399055605, -12.998927365678314], + [-46.19694321243794, -12.99676477391168], + [-46.19138868195251, -12.98981643490218], + [-46.1740866062854, -12.983583739086043], + [-46.16622126564325, -12.975982948977418], + [-46.1545582955201, -12.976591881591002], + [-46.138866671648586, -12.965462989422866], + [-46.12581904974779, -12.96149798512732], + [-46.12220168628351, -12.957448798389484], + [-46.12220167073013, -12.957448780979092], + [-46.12220446280594, -12.957279348440455], + [-46.122364063261394, -12.947589581107174], + [-46.113190186826884, -12.933412464520869], + [-46.11319016733763, -12.933412434401204], + [-46.113884193198814, -12.918271756783835], + [-46.12566875700772, -12.910003031862217], + [-46.13893498817228, -12.909408377264805], + [-46.1843641502706, -12.923830178460205], + [-46.19810873348946, -12.925322193045435], + [-46.22049255865841, -12.940579013669064], + [-46.26672299375954, -12.932368884162587], + [-46.275640176134864, -12.935257537191353], + [-46.275640262607574, -12.935257701450517], + [-46.279670602314084, -12.942986559411978], + [-46.30476347797113, -12.949890422876084], + [-46.2923897345378, -12.919570922902214], + [-46.29238994405441, -12.919570423264181], + [-46.29522937284451, -12.912798895218899], + [-46.29753301807602, -12.907304686533509], + [-46.29753303877144, -12.907304637173102], + [-46.28617268035566, -12.895233105286874], + [-46.28551526914519, -12.888633979158891], + [-46.28450391363224, -12.878482487923646], + [-46.29303091738099, -12.860365219185056], + [-46.29303094969449, -12.860365150520968], + [-46.28783367765046, -12.856220471313064], + [-46.27331099570535, -12.84716787833672], + [-46.26228341626528, -12.831692486337756], + [-46.262283321445935, -12.831692332441456], + [-46.27004046637723, -12.821603206469266], + [-46.272417228111635, -12.812016864242787], + [-46.27350743985931, -12.811231213703728], + [-46.28084142780997, -12.805945752771702], + [-46.28084114404922, -12.805944432118944], + [-46.278015992013884, -12.792795769423611], + [-46.283228938254574, -12.78355674912754], + [-46.283228964372476, -12.783556702835524], + [-46.27496390114582, -12.774973018489012], + [-46.27496380826735, -12.774972922026455], + [-46.27630038679303, -12.759294650627874], + [-46.280314946145765, -12.750729842750726], + [-46.280314974463614, -12.750729782333167], + [-46.279123524280074, -12.749661942588778], + [-46.26753712955808, -12.739277025525777], + [-46.26489527206586, -12.716968072394813], + [-46.27664350971078, -12.7058240394417], + [-46.28666616118533, -12.705278413456902], + [-46.286188230057235, -12.698594351886234], + [-46.29322652033295, -12.692839407646096], + [-46.284654974422565, -12.679377662374547], + [-46.26553200948018, -12.668051706991703], + [-46.25613432613775, -12.655161039292265], + [-46.25613422436565, -12.655160899686681], + [-46.261409962794104, -12.64641970729828], + [-46.27137031523397, -12.643745087054976], + [-46.27358546813238, -12.638066565499578], + [-46.29070378178648, -12.632957928551086], + [-46.273179285741634, -12.593975964419139], + [-46.27317956195953, -12.59397559317251], + [-46.27771507447499, -12.587879463933067], + [-46.279917878647694, -12.584918527934196], + [-46.279917915441125, -12.584918478476757], + [-46.27853855864606, -12.58364520804571], + [-46.26631194955905, -12.572358279297987], + [-46.26112186910125, -12.549733099349424], + [-46.26112183848698, -12.549732965890051], + [-46.25639396514673, -12.547189845972895], + [-46.245948258843946, -12.546374596816728], + [-46.226972399299484, -12.536331268439723], + [-46.20169731656381, -12.530299645656873], + [-46.1606209745009, -12.528588378844628], + [-46.15621553183255, -12.52110786194672], + [-46.15195748868054, -12.513877324957447], + [-46.15195775200568, -12.51387684643658], + [-46.15819421021947, -12.502543007745448], + [-46.16202718831861, -12.495576349244988], + [-46.16202719851357, -12.495576330714297], + [-46.15386126940635, -12.483375168419578], + [-46.15386088761738, -12.483374597945744], + [-46.15969532148828, -12.474513522848275], + [-46.186835160541825, -12.477577419630691], + [-46.227832781426436, -12.498373621757466], + [-46.25477529490439, -12.494328666160369], + [-46.25355778759846, -12.46023261322309], + [-46.24759256833317, -12.448541022409369], + [-46.247592482619815, -12.448540857875104], + [-46.24780955042486, -12.438956730448435], + [-46.25637811476813, -12.424341764953441], + [-46.264920879066075, -12.412682792771065], + [-46.273809799926866, -12.414441926455073], + [-46.28339340469972, -12.411205290191067], + [-46.285007335895806, -12.412316251627589], + [-46.29282405866574, -12.417696730709038], + [-46.292824605201105, -12.417696603915147], + [-46.30100443429858, -12.415798768939826], + [-46.30282269369864, -12.410723036990642], + [-46.30467460124416, -12.405553039376956], + [-46.304674489051656, -12.405552937868025], + [-46.29681098363095, -12.39843799854995], + [-46.29601062858432, -12.39771380647104], + [-46.296010554108214, -12.39771373908196], + [-46.2943029517202, -12.384729591469792], + [-46.2943029363425, -12.384729474544436], + [-46.2856433164349, -12.37907097977217], + [-46.2856431689099, -12.379070883370588], + [-46.295969172455045, -12.367537536607337], + [-46.3128683417925, -12.35637202083657], + [-46.3247026085102, -12.35613989221125], + [-46.332601323298384, -12.345275653555483], + [-46.333021964099316, -12.344543195437517], + [-46.33411816022113, -12.342633486193629], + [-46.340481419028634, -12.336936113736398], + [-46.35237008991002, -12.337422922255945], + [-46.3530269694462, -12.330796160738647], + [-46.353026975486046, -12.33079609980295], + [-46.352773972518925, -12.330516988131878], + [-46.349566019383396, -12.326977935978634], + [-46.34956621966448, -12.32697729983191], + [-46.350455179819946, -12.324153671128904], + [-46.35150807048794, -12.320809211859977], + [-46.35150808580645, -12.320809163200398], + [-46.346234259103355, -12.31488382091352], + [-46.32514368275078, -12.308463040056441], + [-46.32514365040759, -12.308463030208584], + [-46.32339613624954, -12.303556628928762], + [-46.329342886179916, -12.298129073770047], + [-46.35039512894365, -12.297378497295433], + [-46.37434630001867, -12.289825187533461], + [-46.366814504248914, -12.275815562260593], + [-46.36681441670553, -12.275815398623763], + [-46.366109165005334, -12.266671369989227], + [-46.37859156401871, -12.254331006166012], + [-46.38075960914299, -12.247452142932307], + [-46.38075964464749, -12.247452030277183], + [-46.36644417769332, -12.241485012412681], + [-46.36644414795152, -12.241485000014704], + [-46.36599165664882, -12.240292820679038], + [-46.35983064685087, -12.224059846245174], + [-46.3598303451171, -12.224059051214416], + [-46.36828588327775, -12.214748457234078], + [-46.36861201941477, -12.19981881818237], + [-46.37331189190645, -12.198573949066184], + [-46.39097095455986, -12.193895638978265], + [-46.39097053513951, -12.193895047836014], + [-46.38070000181872, -12.179418803789996], + [-46.38070024146091, -12.179418250200706], + [-46.38200288401248, -12.176409005216614], + [-46.383012429196626, -12.17407677153375], + [-46.38987042994752, -12.170551858777099], + [-46.389678269561024, -12.16692579861254], + [-46.38967826341202, -12.166925682585239], + [-46.37928411252157, -12.160802358606567], + [-46.37534028216179, -12.153161637872032], + [-46.37534019600678, -12.153161473552062], + [-46.37003479210351, -12.134717083202261], + [-46.37120615591365, -12.12255428028199], + [-46.36634550129469, -12.11126979348727], + [-46.36811651768165, -12.098295770433547], + [-46.38559226028662, -12.092443287681188], + [-46.38148429685811, -12.082901128960149], + [-46.38385905199159, -12.079366435085474], + [-46.38842410000399, -12.072571183180342], + [-46.388423896514674, -12.072570921626742], + [-46.379061235150076, -12.060536193766813], + [-46.378509999103294, -12.059827606255656], + [-46.378509896523, -12.059827474393314], + [-46.38181798741801, -12.05295167558128], + [-46.39784050916652, -12.040359615708834], + [-46.39539914619768, -12.02630320197613], + [-46.39539912329312, -12.026303070101209], + [-46.3735907964098, -12.015492403335129], + [-46.37359071005319, -12.015492360522714], + [-46.37351030803151, -12.004344570492197], + [-46.373510307675765, -12.004344521219444], + [-46.356172082870806, -11.981493516760802], + [-46.3430335715165, -11.975423886841064], + [-46.32567696096242, -11.958506669710784], + [-46.295456673440285, -11.9492805674389], + [-46.247946086594254, -11.947546236878752], + [-46.21048966122983, -11.930417658503707], + [-46.19253650607538, -11.929517697115749], + [-46.17509043728051, -11.910043492000934], + [-46.17509037068598, -11.910043417659317], + [-46.172306319453746, -11.897916306799942], + [-46.18108843677432, -11.885427497227699], + [-46.19370176701876, -11.884541732606914], + [-46.21339588508026, -11.898625410522083], + [-46.23811244172307, -11.902628804432723], + [-46.25641758441781, -11.898687432990252], + [-46.284976402561945, -11.885958994396438], + [-46.31795254306468, -11.898507192796705], + [-46.326695949526105, -11.896724856631963], + [-46.35125442982083, -11.88257628114037], + [-46.365453845521536, -11.88446256278311], + [-46.37455661206594, -11.86862188163198], + [-46.37131428534223, -11.85447730332406], + [-46.37339797510613, -11.836693006031474], + [-46.373397989539924, -11.836692882817651], + [-46.36848054503823, -11.834733419377187], + [-46.355366148485345, -11.842262822735165], + [-46.347501909159035, -11.835972535746109], + [-46.34750180253716, -11.835972450460881], + [-46.35089356578326, -11.822256199916161], + [-46.350893593589376, -11.822256087458127], + [-46.34910113288288, -11.821457394053791], + [-46.33787076379069, -11.81645299909631], + [-46.33159147665247, -11.802980719452535], + [-46.331591393942105, -11.802980553696948], + [-46.33553471587378, -11.786810221362787], + [-46.33553473498337, -11.78681014299165], + [-46.32467918138158, -11.778096014409396], + [-46.32279033432329, -11.771107431974539], + [-46.322696742157824, -11.770761145987827], + [-46.33906943159915, -11.766554394094234], + [-46.34734116554932, -11.753891182477801], + [-46.35686294139654, -11.759249545608233], + [-46.37086766676541, -11.760331335879526], + [-46.37345040447208, -11.75114543643647], + [-46.37345042763301, -11.751145354056217], + [-46.36614638804657, -11.745764699734778], + [-46.32934417423361, -11.737320487463215], + [-46.30895006859914, -11.704091366127061], + [-46.30894997653933, -11.704091205321353], + [-46.29747748113651, -11.698279368297985], + [-46.294040191477684, -11.6927784370485], + [-46.29404009880882, -11.692778276673364], + [-46.294868291882736, -11.678700946664916], + [-46.29797236270739, -11.670741904739062], + [-46.30153684364286, -11.661601404321063], + [-46.315075651529376, -11.64468487352074], + [-46.315312632067354, -11.643412398041388], + [-46.316455471488624, -11.637275547107768], + [-46.31150547842798, -11.62723986143631], + [-46.31150539383363, -11.627239696497439], + [-46.30459186670014, -11.625395621405232], + [-46.29145269980442, -11.62874853539259], + [-46.27733486194213, -11.62331525395269], + [-46.265751646886464, -11.624308374128262], + [-46.25625478951996, -11.621193494846446], + [-46.22172619258686, -11.64474539527827], + [-46.187753893091056, -11.655504632006302], + [-46.17264276719287, -11.652437460440323], + [-46.15397889242202, -11.656999283217036], + [-46.140990275454435, -11.64866989554074], + [-46.13179450904323, -11.64647892351843], + [-46.08697337610979, -11.642655023320602], + [-46.08317159270509, -11.636148180862719], + [-46.083171502415425, -11.636148019016568], + [-46.08519826987749, -11.630914577623694], + [-46.0874990681768, -11.624973140350788], + [-46.08749899355683, -11.624972891930721], + [-46.08665343705641, -11.622157909877043], + [-46.09525331521584, -11.615019194826273], + [-46.12703932173592, -11.604296953162876], + [-46.1356808778518, -11.606679846184763], + [-46.14114761381214, -11.608187149293755], + [-46.1411478817543, -11.608187134825847], + [-46.15842723116156, -11.607253579431768], + [-46.16637390590346, -11.599403682406416], + [-46.187027742910594, -11.606159225912046], + [-46.19948772399833, -11.603347967073429], + [-46.20275186719141, -11.602611393662492], + [-46.2096199418735, -11.598193845210812], + [-46.21344738717703, -11.595731871935085], + [-46.21825771358655, -11.582447188367516], + [-46.22617095479803, -11.571238218361863], + [-46.23625854223642, -11.565361618428218], + [-46.258810015960115, -11.556770231375976], + [-46.27031023241537, -11.557415827144391], + [-46.28986316665285, -11.551377531761531], + [-46.31343013403453, -11.539510430332538], + [-46.346227436931464, -11.544894287308978], + [-46.360037355696925, -11.535634134982946], + [-46.380334663923456, -11.53439531752957], + [-46.39260605658621, -11.534845952215026], + [-46.40184384001135, -11.54112943268811], + [-46.41130981619574, -11.541970287864503], + [-46.41717309949264, -11.539198809767186], + [-46.42701293437983, -11.52606753441766], + [-46.445508366499624, -11.514679238881772], + [-46.458290089756055, -11.514396352901366], + [-46.46845255043812, -11.5185818647146], + [-46.47928958525518, -11.516409678167124], + [-46.48625479971418, -11.505107353536264], + [-46.502228000900566, -11.499544960186187], + [-46.52192439011024, -11.479782576701789], + [-46.52681791366664, -11.46604468335032], + [-46.52523158359237, -11.432828577627301], + [-46.528153961980884, -11.422528492399044], + [-46.54306131206308, -11.415763185426014], + [-46.548871331482566, -11.40840814960482], + [-46.549285285062155, -11.380737807401687], + [-46.561765557788775, -11.374518107150584], + [-46.56736656816228, -11.372571959388853], + [-46.58628588731552, -11.366494799532004], + [-46.6016535837203, -11.34720334981913], + [-46.60536052760664, -11.321851608512565], + [-46.6099030743394, -11.308334782067037], + [-46.615921944241116, -11.302217519067298], + [-46.617072598787345, -11.289468663917502], + [-46.61707260833976, -11.289468558065261], + [-46.60913710684649, -11.284739485458235], + [-46.59963167685589, -11.265439187771626], + [-46.59963159220777, -11.26543902281613], + [-46.60902504194731, -11.255748403689553], + [-46.609025140664755, -11.255748301842775], + [-46.582040081931886, -11.246789621407672], + [-46.50028665939087, -11.206948625578335], + [-46.488119034367344, -11.2050811855363], + [-46.4723389436772, -11.1912015884173], + [-46.45335455666229, -11.15620801264372], + [-46.453354468779736, -11.15620784933351], + [-46.44753722201386, -11.09233510533186], + [-46.42172135314832, -11.035944619021256], + [-46.421721270990695, -11.035944453137388], + [-46.40611236269789, -11.019710675585928], + [-46.40611230477382, -11.019710615339479], + [-46.398915510069145, -10.994412428449678], + [-46.37791112293521, -10.980880947689087], + [-46.35702092941279, -10.959648029250996], + [-46.35517067970971, -10.957767267316013], + [-46.32870096467548, -10.942640139401792], + [-46.31733519061196, -10.927614636243314], + [-46.28339699095079, -10.906769761527741], + [-46.28339690246197, -10.906769707170813], + [-46.283500665586985, -10.897546048451295], + [-46.297344301122656, -10.867277357186758], + [-46.283923492211315, -10.832075691632891], + [-46.28392344644023, -10.832075571572913], + [-46.27307604217073, -10.82071311232719], + [-46.246284977624754, -10.812415605751388], + [-46.23383841721444, -10.804804099468695], + [-46.229781250487804, -10.798600013505215], + [-46.22978116555645, -10.798599883628977], + [-46.227598275797895, -10.766816220820598], + [-46.24994182215936, -10.762263695823286], + [-46.2514099109932, -10.757093949151928], + [-46.25140993477169, -10.757093865415488], + [-46.23925136127185, -10.748358571262678], + [-46.21785659868774, -10.732985720191653], + [-46.19913866254353, -10.723189487157848], + [-46.19254244075157, -10.71973694093244], + [-46.19254237954561, -10.719736908895642], + [-46.19070822941582, -10.710471542365386], + [-46.18792574100391, -10.683053354467832], + [-46.21201350940349, -10.654576928506737], + [-46.21095447246881, -10.649691238919473], + [-46.21095444825247, -10.649691127201535], + [-46.189171019839726, -10.631799842699092], + [-46.18917096125774, -10.631799794580582], + [-46.18786891898419, -10.626557944955115], + [-46.187868882831125, -10.62655779940741], + [-46.1673710770613, -10.619363508030139], + [-46.15634399922611, -10.629959913748648], + [-46.1373157794768, -10.622303912127384], + [-46.116043700165015, -10.619556094242313], + [-46.09562140345376, -10.604597027963457], + [-46.07706399158919, -10.607139051971616], + [-46.06448432280225, -10.602784893603717], + [-46.059449684754576, -10.593471783620402], + [-46.05944959712043, -10.59347162041032], + [-46.05986371387537, -10.574514906858113], + [-46.05986371704439, -10.574514761688786], + [-46.036479604241116, -10.56978188179898], + [-46.02775613588808, -10.56711432643256], + [-46.02775606473921, -10.567114304674872], + [-46.025008601446046, -10.54279947314615], + [-46.02500858853197, -10.54279935886727], + [-46.01395342454699, -10.535478766312592], + [-45.99430815993603, -10.536386724559398], + [-45.98411685706884, -10.530037871066712], + [-45.97116975632095, -10.52859696796624], + [-45.962066472060776, -10.509728981749495], + [-45.9620663883038, -10.509728816728705], + [-45.906672667249715, -10.473706272663241], + [-45.900699892752215, -10.460895902959694], + [-45.90069981014844, -10.460895737494392], + [-45.88762060513686, -10.449205340407204], + [-45.86478470538419, -10.438903705134106], + [-45.83075478576997, -10.438757556689172], + [-45.82034180068227, -10.413911618735217], + [-45.82111668436966, -10.405756277581148], + [-45.8308406810019, -10.394088910651947], + [-45.827366710848864, -10.368262852292183], + [-45.827366697303034, -10.36826275159724], + [-45.82629100250221, -10.367345786076719], + [-45.81825363510513, -10.360494208535677], + [-45.80601698234463, -10.355925207546516], + [-45.79745138930667, -10.352726630556203], + [-45.75323385622863, -10.352333744743467], + [-45.74305858075702, -10.346755590079042], + [-45.724035299244186, -10.31724473227955], + [-45.72403522731862, -10.317244620694325], + [-45.71448633921668, -10.284515966521797], + [-45.70559368461686, -10.270196242008165], + [-45.705593592362355, -10.270196081846553], + [-45.69751418707827, -10.263588974806012], + [-45.69751409888824, -10.263588902684862], + [-45.698127111027624, -10.215465554038541], + [-45.705899908225966, -10.188301059821754], + [-45.700173105109705, -10.178488782228525], + [-45.69926468288895, -10.166876430396778], + [-45.7158370993491, -10.166922798344919], + [-45.72307616726851, -10.155180683537264], + [-45.71623218099809, -10.15263363784939], + [-45.703855056617094, -10.157011481836502], + [-45.68470475522736, -10.153338250978889], + [-45.66929093526746, -10.14538799588651], + [-45.64874969874826, -10.127356791187244], + [-45.6392265055236, -10.126225791107549], + [-45.60571194578138, -10.108778338821066], + [-45.59835775309341, -10.108351161735726], + [-45.58387538513545, -10.117014744634837], + [-45.56744247204168, -10.139545709798208], + [-45.565419708975085, -10.160000871780694], + [-45.57130217860998, -10.186911363296096], + [-45.567296775338754, -10.201507713056987], + [-45.55655626982783, -10.216924630639848], + [-45.52617265833557, -10.236951114295918], + [-45.52334186654892, -10.244164056236178], + [-45.52233975143579, -10.27667674406218], + [-45.517313523436705, -10.286464208919696], + [-45.49067700146239, -10.301044404309296], + [-45.48463876682375, -10.304920860656967], + [-45.47325250017378, -10.315356570209552], + [-45.456810432087195, -10.338594741155404], + [-45.42992124523116, -10.360194378865774], + [-45.42575839347021, -10.370307814419405], + [-45.429917235331025, -10.403929617503948], + [-45.424482630108145, -10.426514349524563], + [-45.3959803576425, -10.445049816722717], + [-45.39600575700808, -10.452043491611812], + [-45.400254905817036, -10.463098633771203], + [-45.42649439128507, -10.48459325741106], + [-45.447241951538366, -10.507447102631934], + [-45.43816354823248, -10.525548747206626], + [-45.440357839181104, -10.5416876546098], + [-45.44731705191731, -10.55636176823341], + [-45.4403334944063, -10.569521770744647], + [-45.43677845675409, -10.576797709249085], + [-45.4373134879677, -10.615590554094284], + [-45.429782461701905, -10.634105026954144], + [-45.41443656399783, -10.645140664131825], + [-45.390198307077796, -10.648324616694529], + [-45.377089601160904, -10.663141761164466], + [-45.36910173071092, -10.679974064714802], + [-45.35820440627236, -10.732232235375589], + [-45.35659536586888, -10.73339384289494], + [-45.322359199546455, -10.7602900457116], + [-45.28936462848266, -10.765645569357954], + [-45.27283687827005, -10.773264778554287], + [-45.26616432706167, -10.781445383852796], + [-45.25742865141847, -10.81187027431459], + [-45.24803682412105, -10.821992725100026], + [-45.21920926183492, -10.817401521460239], + [-45.21914076216429, -10.826160337787911], + [-45.21556253903725, -10.830248158464293], + [-45.1539376320383, -10.839110843280285], + [-45.153781023301285, -10.839116234428403], + [-45.11650611067864, -10.840798318862936], + [-45.10528293804141, -10.846846092523537], + [-45.08685908302343, -10.840003094276822], + [-45.07322265931274, -10.840448780011318], + [-45.06326785315306, -10.84829077680512], + [-45.04998910221394, -10.852170634137686], + [-45.045458098900525, -10.859672032878164], + [-45.03067893849046, -10.866677678965564], + [-45.01658427676253, -10.884625645782931], + [-45.002119911530585, -10.887044652081522], + [-44.99503210286886, -10.88392119562892], + [-44.973905635376745, -10.891501409715932], + [-44.96836465257416, -10.900536146842875], + [-44.93120549129255, -10.92878334999414], + [-44.90997178568906, -10.911982927946008], + [-44.90116797091641, -10.910043920092226], + [-44.89743252173335, -10.902966676355977], + [-44.88441763616697, -10.902337929625135], + [-44.86378890471667, -10.885253606087357], + [-44.8550120544057, -10.884521024635164], + [-44.85072258527483, -10.8988625122557], + [-44.84428713018006, -10.900060170777554], + [-44.82216252864602, -10.875182117648029], + [-44.81113115716219, -10.87045419892381], + [-44.80816983950518, -10.85593099226819], + [-44.81031166882885, -10.846611789654213], + [-44.78805076560264, -10.80854919616393], + [-44.77816151755186, -10.804055262268259], + [-44.75891474545297, -10.804873001403115], + [-44.75832886034371, -10.78901069620401], + [-44.75121593894323, -10.782169178327141], + [-44.723890300556874, -10.767734503840916], + [-44.71180437198172, -10.761209796611885], + [-44.68513621377224, -10.769088943319804], + [-44.666766098102876, -10.758908528274231], + [-44.6627726882898, -10.75058995997536], + [-44.661311490400124, -10.732722455303112], + [-44.66957377628506, -10.692192670605996], + [-44.66661173047594, -10.682370263916072], + [-44.655247086960365, -10.67672381393961], + [-44.626989424587784, -10.675606639989423], + [-44.60898036517362, -10.662605917587747], + [-44.58950530368396, -10.6324475999607], + [-44.577770208297096, -10.626797241465487], + [-44.55106929972887, -10.628609396728498], + [-44.52225633057174, -10.649832865970849], + [-44.50450641111774, -10.650768234237406], + [-44.476728103661465, -10.63933352943606], + [-44.463623358301426, -10.615285839927049], + [-44.45630271639782, -10.608128740483927], + [-44.4436713979114, -10.606666981793829], + [-44.42364036006274, -10.61329602884259], + [-44.398640318585734, -10.606211143725822], + [-44.34437121871144, -10.549696142500833], + [-44.333092312977605, -10.548795095593519], + [-44.314539844830485, -10.557392632222413], + [-44.30175357407291, -10.57207291825816], + [-44.28290227426389, -10.607120523312794], + [-44.264012200227306, -10.624699971207638], + [-44.241451603622814, -10.627367685783085], + [-44.214088258967635, -10.614477213684037], + [-44.2086401063022, -10.61535430397752], + [-44.192978157404035, -10.628609466509367], + [-44.1783106837583, -10.631456115695011], + [-44.1655335155549, -10.642931700049882], + [-44.152948047636585, -10.644109955951805], + [-44.13131202065595, -10.634916015657396], + [-44.123333454247, -10.620937355495856], + [-44.11061548235626, -10.597226691850796], + [-44.1007453042382, -10.591753382859643], + [-44.08228421041031, -10.588820274980376], + [-44.07281534325806, -10.58108765823315], + [-44.058839690274205, -10.538370431653696], + [-44.05100493257907, -10.506269358374437], + [-44.041548764616735, -10.493267307509479], + [-44.02961434821235, -10.484112175051926], + [-44.02583848531242, -10.475501586641572], + [-44.0347438236148, -10.44903983159862], + [-44.03586157261052, -10.435456330064214], + [-44.02988581903071, -10.41699306074734], + [-44.02332216501155, -10.408100707646206], + [-44.007700699770815, -10.40537385939844], + [-43.99812041637417, -10.41009554328782], + [-43.97692873455232, -10.431407550850423], + [-43.94440967588213, -10.435769647256185], + [-43.942658287066884, -10.435928324947131], + [-43.928030655623864, -10.43445937454971], + [-43.91622497816973, -10.426749946761376], + [-43.91478911040159, -10.384186128975566], + [-43.898766907710396, -10.367350795522077], + [-43.895092094916585, -10.354521990955377], + [-43.88471145304916, -10.344052275842714], + [-43.87167961685218, -10.330468004149921], + [-43.8477424284209, -10.316332143782436], + [-43.83828842173729, -10.304657453450845], + [-43.83404004159128, -10.277667994846567], + [-43.83804882183356, -10.266086527084111], + [-43.83458767042822, -10.246019889154322], + [-43.80908734488508, -10.221471721360702], + [-43.78481341793843, -10.191709505337233], + [-43.77486810569359, -10.168333988620079], + [-43.768458277724854, -10.143481811711487], + [-43.76695437659669, -10.136091109453204], + [-43.76596970316428, -10.120723462883639], + [-43.773111060126816, -10.098815537444468], + [-43.768584078033896, -10.085700935631708], + [-43.76212338728338, -10.075805295665386], + [-43.74586211319097, -10.072888104866571], + [-43.72992590232625, -10.072286938203417], + [-43.69291305418219, -10.07742704323264], + [-43.69264867648281, -10.060290554515865], + [-43.69264560029143, -10.060244155316953], + [-43.69027970089307, -10.04466671427905], + [-43.669478963819095, -10.030786814531805], + [-43.662282380485124, -10.004065404438014], + [-43.6651716472425, -9.991059556540959], + [-43.66954331091425, -9.987430173283384], + [-43.68467480144491, -9.982796487003204], + [-43.70295103217443, -9.966143915963418], + [-43.68956314108905, -9.93909650577002], + [-43.69045256275093, -9.929530569397215], + [-43.69283708292086, -9.925558300556833], + [-43.70617523040083, -9.922084571412602], + [-43.70903382708058, -9.913250770757715], + [-43.705473547524214, -9.90641114207007], + [-43.69642297162076, -9.901235867518599], + [-43.694621151228255, -9.891283069202796], + [-43.677447241397516, -9.886559179115455], + [-43.66639634783354, -9.86907907531295], + [-43.66526056648005, -9.855907186286172], + [-43.65353774512703, -9.845288767226755], + [-43.65324403553955, -9.839086639729379], + [-43.664844756454755, -9.823686049622522], + [-43.68287040798879, -9.815776255563625], + [-43.693459850925876, -9.805288795106032], + [-43.7083948298011, -9.805737947098116], + [-43.71781654742058, -9.802452787326446], + [-43.72142631315154, -9.793388095454473], + [-43.76156699759133, -9.777912321383633], + [-43.76717552147885, -9.770726311939837], + [-43.78492027411584, -9.762415667092519], + [-43.797661237693006, -9.727710040353964], + [-43.79346949833848, -9.711983495979151], + [-43.799548126498856, -9.692524341135027], + [-43.80002273575346, -9.691879112567054], + [-43.82683621320627, -9.649560238128124], + [-43.841950701745155, -9.637457756908153], + [-43.8401701129936, -9.626552442981799], + [-43.83431073823689, -9.622617172183906], + [-43.83397652367805, -9.617959316635005], + [-43.84264973653469, -9.61269994387119], + [-43.84154456251047, -9.58607811462255], + [-43.85257995430185, -9.562168353303946], + [-43.84969193294236, -9.548082343934844], + [-43.82103668595811, -9.499956431763657], + [-43.81630720768909, -9.491986792440953], + [-43.799446919383925, -9.479681970686244], + [-43.78617562295582, -9.457676171994818], + [-43.78216760284269, -9.452684198276483], + [-43.7697282948837, -9.44208130499023], + [-43.751419397167055, -9.434102501839382], + [-43.689143835111516, -9.419713073826657], + [-43.621633178648764, -9.371568209778536], + [-43.6049936345115, -9.350151342564477], + [-43.572824705326184, -9.316275912250267], + [-43.5438038221029, -9.30887885496482], + [-43.54088247828289, -9.308275684272221], + [-43.52555853265045, -9.300077203917612], + [-43.49752867776865, -9.272556328671143], + [-43.48545990252868, -9.265316811101133], + [-43.45870254483235, -9.261370242144718], + [-43.43813053817051, -9.26616869098535], + [-43.42782504819561, -9.272617870617779], + [-43.39923907533361, -9.30820956138754], + [-43.392073091831165, -9.322719187303107], + [-43.37642429678313, -9.348936271289903], + [-43.36132376190788, -9.364443347640972], + [-43.3535578212361, -9.368987121562421], + [-43.33607840461327, -9.368644611499459], + [-43.32420297977594, -9.376733581321883], + [-43.31500541277057, -9.389412125412342], + [-43.30191664356522, -9.393895809130203], + [-43.29316331448816, -9.400983786257225], + [-43.2851197960637, -9.420059892410654], + [-43.27877166238869, -9.424606530088544], + [-43.27287282151996, -9.42281240099592], + [-43.2666718816301, -9.411937791455935], + [-43.242347433285516, -9.411915479096557], + [-43.22899997859935, -9.402976513476093], + [-43.2186366079521, -9.40065352122632], + [-43.214293005419044, -9.399680277486626], + [-43.20785828671867, -9.40128485767003], + [-43.20225913932244, -9.406448502689946], + [-43.19872537634482, -9.41802830313216], + [-43.19170193907896, -9.42046348036925], + [-43.173931586614984, -9.41125605693304], + [-43.15862931355325, -9.377068600095004], + [-43.14721863879046, -9.37633746373577], + [-43.1331656952127, -9.38731399252254], + [-43.129714463388034, -9.380061342824773], + [-43.123872223044955, -9.379082325239], + [-43.11962275841226, -9.371930240728028], + [-43.11169004069609, -9.380544425323297], + [-43.10742001821706, -9.378524785817051], + [-43.104101068965264, -9.386476203880003], + [-43.09574039071212, -9.38555111201187], + [-43.085274566188495, -9.391390442814723], + [-43.08289199410335, -9.397358164294243], + [-43.074550724366915, -9.39971860349564], + [-43.0666136799889, -9.394080153423634], + [-43.05931355787528, -9.396984629798881], + [-43.056947020155135, -9.41916805859197], + [-43.05218124700819, -9.413011673241423], + [-43.04008972650686, -9.414688446846865], + [-43.01272852768868, -9.40779568245852], + [-43.006306539686676, -9.409446526109557], + [-42.997922299798, -9.404579290204014], + [-42.98786734231486, -9.401371313895531], + [-42.97026117728639, -9.409552664800483], + [-42.95823942281053, -9.429357531591876], + [-42.95636969987918, -9.438672695052825], + [-42.962896486301794, -9.457085835068682], + [-42.962145263387185, -9.469850736922092], + [-42.95181359160471, -9.497683026837953], + [-42.951365538806584, -9.510414219235011], + [-42.946253002571204, -9.518446337996785], + [-42.928447383289544, -9.527280046597115], + [-42.904020753740525, -9.526787548664567], + [-42.87672797419426, -9.561657226432132], + [-42.86803597767471, -9.564048441315883], + [-42.862638198010494, -9.560417369842757], + [-42.84797720436761, -9.549690773251191], + [-42.83714345559129, -9.550405567276865], + [-42.82819804003432, -9.56055398634298], + [-42.829781250371134, -9.581296999741673], + [-42.82153575741173, -9.598880716897447], + [-42.82055747514219, -9.619264302569738], + [-42.80463399101944, -9.622384695176507], + [-42.78453831728615, -9.62080160981303], + [-42.76517320308329, -9.616784084824852], + [-42.76089638196445, -9.609449468907997], + [-42.757754197275275, -9.589314295321147], + [-42.742206826436416, -9.582106839325302], + [-42.7324498972586, -9.569143747512138], + [-42.71817583201384, -9.55827542098362], + [-42.71622254118397, -9.55118042714389], + [-42.72203628239903, -9.537218041173244], + [-42.720867503011725, -9.531344754212244], + [-42.71222806825748, -9.530262409526141], + [-42.69119551469804, -9.545471257004015], + [-42.679923060045745, -9.54918326732737], + [-42.6672569372809, -9.548158178525632], + [-42.65461689998, -9.54143444469228], + [-42.64022675190025, -9.543862973518241], + [-42.632358097531316, -9.538440296720184], + [-42.62172662190799, -9.54137180760565], + [-42.60290656714077, -9.516845642132134], + [-42.59500309130579, -9.504825479020292], + [-42.58648884706375, -9.496808687833537], + [-42.569186287828074, -9.501787705595378], + [-42.5491677099714, -9.49591373582189], + [-42.52194569429932, -9.503005535651825], + [-42.491115979281076, -9.493153662165142], + [-42.48603184079178, -9.483820763308351], + [-42.49122590270658, -9.469642138579646], + [-42.489075845878425, -9.462071749863963], + [-42.47094890072319, -9.458894620550556], + [-42.45177784124014, -9.462137807664034], + [-42.440591444950854, -9.45620584204329], + [-42.42828497615629, -9.439817564417693], + [-42.42520558516837, -9.417139707588303], + [-42.39889353100984, -9.397120793591663], + [-42.364155135400324, -9.38166911356759], + [-42.35953247203292, -9.37764789644639], + [-42.35511196512582, -9.349907544861345], + [-42.32588559471845, -9.333446177770249], + [-42.32039016094602, -9.321044415928439], + [-42.31258291810403, -9.316191298967825], + [-42.289973791327704, -9.30953053173186], + [-42.267907889163304, -9.309692746140259], + [-42.26156677405127, -9.304758413374785], + [-42.24366640004178, -9.288891415848434], + [-42.226062790857426, -9.283333662215515], + [-42.206444333682846, -9.292816361222199], + [-42.194240186960855, -9.29171946223449], + [-42.17949864534371, -9.285301103210905], + [-42.1419616656455, -9.288164227794747], + [-42.12122178137849, -9.283956225355466], + [-42.09949798117131, -9.280916860252134], + [-42.06922846919281, -9.257576481102149], + [-42.0581661782067, -9.254926018148389], + [-42.035001531901365, -9.256174187055347], + [-42.02193958286219, -9.249790996094779], + [-41.99991537606901, -9.266007498548854], + [-41.97227651625349, -9.248673478001571], + [-41.9583057229996, -9.262114038337362], + [-41.94917210197959, -9.263722454576111], + [-41.937450268555786, -9.267305584252291], + [-41.92477869046605, -9.27783257560118], + [-41.917943653591294, -9.278501761600419], + [-41.90961220123164, -9.273829657062416], + [-41.90469116610938, -9.259639976099416], + [-41.88494364843601, -9.253502145219674], + [-41.87053143691102, -9.23746698142508], + [-41.859718829053975, -9.2376406277578], + [-41.84782985439171, -9.24399108013973], + [-41.83829856105192, -9.242428986570292], + [-41.831252018945854, -9.228978386205938], + [-41.81988463149485, -9.189036696745434], + [-41.80013766415813, -9.165197036877043], + [-41.80008172680734, -9.148062068685675], + [-41.776064613440134, -9.125700473763239], + [-41.758944550595, -9.116691880805885], + [-41.73519591596862, -9.094735261173502], + [-41.7310226590074, -9.069853260095982], + [-41.733034456522674, -9.046475132254837], + [-41.733014923811254, -9.046355051601047], + [-41.7330139869851, -9.046329363188086], + [-41.72880557712046, -9.020875779856397], + [-41.7236150786718, -9.0135754312666], + [-41.680465911579006, -9.012317610571923], + [-41.67007249648928, -9.00371276221494], + [-41.66941617488845, -8.99011440191302], + [-41.6290103493218, -8.984925372662879], + [-41.62410937463521, -8.981708181112971], + [-41.621221420790604, -8.970898215134081], + [-41.60994426109416, -8.967307870116604], + [-41.60580742095006, -8.957439240910661], + [-41.59692213526168, -8.958937153888206], + [-41.58969990995727, -8.955155282148048], + [-41.578366434672574, -8.954799553650524], + [-41.570069524345676, -8.955064896225855], + [-41.56718930539865, -8.969571443048682], + [-41.55984651323455, -8.966915159776192], + [-41.54453400458536, -8.960584631681154], + [-41.54486607991793, -8.937989700311118], + [-41.53135910738361, -8.927739592840762], + [-41.522761859936686, -8.905230837736344], + [-41.52166305593703, -8.901898148564428], + [-41.50745046905999, -8.892476298723189], + [-41.51058165265382, -8.876260608266334], + [-41.50219734485932, -8.863555602774063], + [-41.49455424548789, -8.861161300768904], + [-41.487856822837465, -8.843938694137256], + [-41.47219757239869, -8.843149780920672], + [-41.46265912874555, -8.828788057277], + [-41.43193503906942, -8.797111049138959], + [-41.42428051486419, -8.80259066268237], + [-41.411405118744774, -8.77440348513251], + [-41.40032794551368, -8.7464105302569], + [-41.3939177004243, -8.72439055426036], + [-41.38126566599222, -8.70730750708753], + [-41.36537453440046, -8.705618851535183], + [-41.35835042643801, -8.707655359741024], + [-41.33436555059198, -8.727696855325748], + [-41.30994933976342, -8.726167036720364], + [-41.29499807231856, -8.735580535908356], + [-41.281552178404546, -8.736135772341777], + [-41.269997492166404, -8.73104857025279], + [-41.260638388710824, -8.720751862593028], + [-41.23858261444209, -8.7197665869858], + [-41.23985585541293, -8.710898402149212], + [-41.230182033911255, -8.706399798660323], + [-41.225280595239454, -8.704705198106376], + [-41.204946536623154, -8.709522566899041], + [-41.1975769380485, -8.706555485200973], + [-41.18600776823803, -8.710681833876079], + [-41.18245138204734, -8.707854160292552], + [-41.17641985502802, -8.711229788426737], + [-41.172446303030384, -8.707244124607772], + [-41.16291392540618, -8.710021188769298], + [-41.11372514751522, -8.70383282375584], + [-41.11193729528108, -8.70875315143136], + [-41.123217140477806, -8.718742840918548], + [-41.121730358076924, -8.724358286212532], + [-41.126855614872746, -8.728962988608313], + [-41.12900447749968, -8.743428761082999], + [-41.124584618913964, -8.752709261743469], + [-41.113031675860114, -8.759762511152706], + [-41.115903829644736, -8.763700608613947], + [-41.111171677476094, -8.770126548130854], + [-41.10597190805771, -8.770587139642243], + [-41.10177620852228, -8.782000107689612], + [-41.09487566134995, -8.781863349986432], + [-41.08208425845432, -8.784374407230851], + [-41.078557695848716, -8.788808215943293], + [-41.071472749906455, -8.783189923171143], + [-41.06669417087815, -8.781083957125459], + [-41.05481360551723, -8.786952454479541], + [-41.04233454723686, -8.784055218034815], + [-41.03625022599467, -8.785911818271375], + [-41.024975867738526, -8.80776335833267], + [-41.03133540360117, -8.834994430853804], + [-41.0212566570009, -8.843597007156738], + [-41.00036538222717, -8.82883412944437], + [-40.98977423319369, -8.829476670753795], + [-40.979109713126846, -8.823453186078044], + [-40.960921056222666, -8.830795450639714], + [-40.95905533931745, -8.842017005130515], + [-40.946399301184826, -8.845033111825032], + [-40.92135348653107, -8.835466660699021], + [-40.91499507774205, -8.849559802678861], + [-40.90257770315089, -8.86110866862597], + [-40.90006051624909, -8.867649580922297], + [-40.896420635760904, -8.871061254899324], + [-40.89505749563934, -8.889129155145131], + [-40.8834586867365, -8.904892450716932], + [-40.881250069349804, -8.915664311968877], + [-40.866294521472746, -8.923425671443892], + [-40.861339003496035, -8.948054154504785], + [-40.85161234359031, -8.952535558587392], + [-40.85097385549776, -8.985254584090658], + [-40.84686023544922, -8.995577207819851], + [-40.83502922286609, -9.00873027152031], + [-40.832089676759715, -9.023592075182215], + [-40.832224725564856, -9.031200241671884], + [-40.82524759688246, -9.038223483820826], + [-40.82360609979024, -9.062149466240305], + [-40.81916372761851, -9.069131905472382], + [-40.82102456829355, -9.07992839043036], + [-40.811974803425585, -9.084435190762699], + [-40.80412063480283, -9.098372888539219], + [-40.78948038430293, -9.098984577846313], + [-40.78611220627021, -9.105224589851389], + [-40.7772773260183, -9.100705477440268], + [-40.772808378484015, -9.101857575878881], + [-40.76318782025022, -9.106977125763187], + [-40.75680177309775, -9.105014015324837], + [-40.757077383446685, -9.119880208100557], + [-40.7504024536955, -9.117922335882286], + [-40.73255442276485, -9.124042788186927], + [-40.722289283806916, -9.133853823341576], + [-40.706212198275104, -9.142043330849283], + [-40.6851111599512, -9.137647419380643], + [-40.6777459774923, -9.151283428944325], + [-40.66741286935253, -9.159097413454038], + [-40.67210930976134, -9.172424600459493], + [-40.670660982897694, -9.188745648786933], + [-40.68057883137901, -9.200342771056722], + [-40.68072110382143, -9.21223622355927], + [-40.69451742342337, -9.233493072129027], + [-40.69102370198268, -9.234100358352473], + [-40.686472708572175, -9.24359210527291], + [-40.68925357983823, -9.257023469993616], + [-40.680500882477546, -9.257729107917585], + [-40.68116500805411, -9.263520243900633], + [-40.6872510279247, -9.278370765394728], + [-40.707605827434406, -9.285383958337322], + [-40.70742569975662, -9.291691662790466], + [-40.708307842882476, -9.296115341988113], + [-40.72010501807867, -9.30593436441687], + [-40.73945859009385, -9.296626349654185], + [-40.74399866993274, -9.306262929915711], + [-40.75160534679591, -9.308065460659963], + [-40.75560574748393, -9.313581454369096], + [-40.742323228379846, -9.327247580150576], + [-40.73730320786041, -9.336908498665327], + [-40.74141979351632, -9.346821336767908], + [-40.73811936829213, -9.355282054968482], + [-40.74649560429988, -9.37109006172844], + [-40.74255716045645, -9.383351129262351], + [-40.74350944395311, -9.398319260365104], + [-40.74524816854362, -9.404661123057906], + [-40.76499118822383, -9.413254262709973], + [-40.759611878213576, -9.429113374855843], + [-40.76730555738789, -9.445741776134087], + [-40.7767669774954, -9.454489436738616], + [-40.745334331342924, -9.443388593770337], + [-40.72219532195785, -9.445986580941625], + [-40.713688317638734, -9.450507827618745], + [-40.713464927210694, -9.450744669701521], + [-40.68133875446711, -9.467259136338535], + [-40.656785328491075, -9.472946176953208], + [-40.65369450670193, -9.47353928166691], + [-40.623182895970984, -9.482935674093977], + [-40.59514069285218, -9.46740736592061], + [-40.58152386854568, -9.467684434447923], + [-40.56520302265512, -9.464047694581541], + [-40.54838484862541, -9.449032331872285], + [-40.54180015761794, -9.426056467027548], + [-40.538239674888665, -9.420616995716346], + [-40.52913250214282, -9.413939765314478], + [-40.510744484130804, -9.407216975051055], + [-40.506287428056645, -9.408432255099846], + [-40.49502586855442, -9.409299657914149], + [-40.47785223843303, -9.419333283672922], + [-40.467773200672454, -9.420606309979565], + [-40.45568674830439, -9.405936419030455], + [-40.43591653925399, -9.36219675769347], + [-40.420908091389556, -9.352610024556908], + [-40.41166460349696, -9.354208989095207], + [-40.391296902489344, -9.372204924642553], + [-40.37143393907199, -9.378754864930674], + [-40.3564157959379, -9.377032393465445], + [-40.33506214070353, -9.353939805352445], + [-40.33613839879793, -9.327206694307629], + [-40.3325507670165, -9.317609888912873], + [-40.31905026736093, -9.287307163720572], + [-40.30955434115957, -9.275544560020835], + [-40.30531378600812, -9.260087009050082], + [-40.300525846852715, -9.231245812516807], + [-40.29009944829665, -9.1956503314314], + [-40.285834301003874, -9.181851605074733], + [-40.29403108260484, -9.15210538251513], + [-40.2887001678545, -9.127444309600113], + [-40.27886588363417, -9.09457596789343], + [-40.270879336830276, -9.07917055397322], + [-40.25581029625206, -9.063260836199605], + [-40.239002932963686, -9.054402739234366], + [-40.231588052051485, -9.054759859831547], + [-40.20884708150704, -9.06381972558009], + [-40.17415675887776, -9.090596885521073], + [-40.16502133471692, -9.106525321588872], + [-40.151123841580656, -9.107169217790148], + [-40.13407399410196, -9.109587683109996], + [-40.129437054154, -9.110245317450993], + [-40.119887534523436, -9.102134451856156], + [-40.107440079265785, -9.097508239265148], + [-40.09248982349215, -9.08595301895272], + [-40.07355992631759, -9.075399566259646], + [-40.06558329536679, -9.063102672465753], + [-40.00572051172789, -9.059759653493774], + [-40.00569135676993, -9.0597603282754], + [-39.9960511482477, -9.060995693108056], + [-39.97924668266306, -9.055079883206835], + [-39.95805550635201, -9.048629030892329], + [-39.916573237766706, -8.998732831918286], + [-39.91577167878646, -8.997550155844797], + [-39.90694494108804, -8.981665650728942], + [-39.89140810855101, -8.967958520035246], + [-39.89004567263561, -8.966852752717028], + [-39.873477586200686, -8.934075961684208], + [-39.88234399124503, -8.89820094181738], + [-39.90128031126071, -8.864195883117405], + [-39.90309122099895, -8.853861490101334], + [-39.8929787992244, -8.828831024711986], + [-39.886837738685415, -8.825028206644332], + [-39.829744669168804, -8.81437272025203], + [-39.81999180708001, -8.813525420086085], + [-39.79268421929332, -8.819928003336964], + [-39.78244419303396, -8.81435974536421], + [-39.75877007275448, -8.799728283827713], + [-39.747807084655136, -8.794078005940083], + [-39.70543912250019, -8.799589085671142], + [-39.70049884614359, -8.799989058130476], + [-39.6864040502253, -8.793109817739014], + [-39.67681822652928, -8.788553999050485], + [-39.67173564372834, -8.777618431575368], + [-39.67752381902426, -8.760926160790628], + [-39.675042065696545, -8.736704258910585], + [-39.684581214216884, -8.705027116347603], + [-39.693058565422135, -8.680548788837312], + [-39.692000058974166, -8.66426260497831], + [-39.68559147886837, -8.660332209184055], + [-39.660893559955504, -8.657390709254448], + [-39.646027834731875, -8.659729365823182], + [-39.62260710594827, -8.655535382307315], + [-39.610048602223884, -8.657247492999835], + [-39.59183911100907, -8.64815921973293], + [-39.56968961671475, -8.63710430614532], + [-39.56454395768585, -8.630323546885688], + [-39.55753779152214, -8.628871015981195], + [-39.55504934516594, -8.622170047303031], + [-39.529135026552055, -8.612909761713224], + [-39.515005692354435, -8.602546824325616], + [-39.47613420620301, -8.592829902090665], + [-39.46126954571302, -8.58207685301442], + [-39.4565828761648, -8.568256762624156], + [-39.44732606914077, -8.56235882568335], + [-39.43551343838222, -8.5633385063159], + [-39.4278653611024, -8.558694756118257], + [-39.416063959474535, -8.542164566752222], + [-39.407651663330405, -8.538387983893935], + [-39.38638892276201, -8.533527732142774], + [-39.36447888650031, -8.53788615312057], + [-39.357384306494644, -8.547078364434439], + [-39.34516719148642, -8.558537236614509], + [-39.33595213767392, -8.558823731150419], + [-39.31248429877172, -8.558348194735725] + ] + ] + }, + "CE": { + "name": "Ceará", + "coordinates": [ + [ + [-37.2530194687015, -4.831772356973367], + [-37.35688174713315, -4.858098182429185], + [-37.44648100375145, -4.881020115324417], + [-37.46582984998262, -4.88567406252274], + [-37.46711619822077, -4.8859832686720885], + [-37.539387848693636, -4.903243305588827], + [-37.53984406680555, -4.903355737850012], + [-37.59120196464764, -4.915329036553487], + [-37.640371604387504, -4.926461776647839], + [-37.651299581150674, -4.965662987716628], + [-37.66029706046638, -4.997961983682455], + [-37.67717423325231, -5.0525902078727505], + [-37.67765305446939, -5.054141377155115], + [-37.71052384555665, -5.06120538868428], + [-37.72402215662457, -5.069759032227756], + [-37.73165943925618, -5.0845819770581615], + [-37.73345460299879, -5.10069607793569], + [-37.74032327147491, -5.110472254182241], + [-37.764987425153635, -5.139670507439645], + [-37.77634149446168, -5.187173659283501], + [-37.79006042531679, -5.210993832038651], + [-37.78819348294398, -5.219250886045457], + [-37.78345801715851, -5.229097835612973], + [-37.783551718124286, -5.242882217698], + [-37.79048973009638, -5.25500928235548], + [-37.79189037433128, -5.268824323661607], + [-37.78263715823127, -5.286789854575786], + [-37.78314131149134, -5.294868305510183], + [-37.786901090183314, -5.2972218890110305], + [-37.81283346100852, -5.316621549838061], + [-37.83574348394789, -5.3354386961964275], + [-37.847501330178666, -5.340075050412322], + [-37.863766811669805, -5.374142131183596], + [-37.85934660426134, -5.395785889684142], + [-37.86051228650493, -5.406736913475732], + [-37.87099476692628, -5.4203599347123745], + [-37.88125828689733, -5.436235070250659], + [-37.88890783612069, -5.449404749580821], + [-37.892255736669675, -5.480810125163666], + [-37.90070758509731, -5.491652982197052], + [-37.90156506970995, -5.495523833679272], + [-37.902017095816106, -5.497563446258841], + [-37.90227601319306, -5.500712089753435], + [-37.917520589525054, -5.505411005308846], + [-37.93266442783259, -5.503157818129136], + [-37.94808641977443, -5.534694623820088], + [-37.990066785948635, -5.5558472984093275], + [-37.99780895721586, -5.567987935361121], + [-37.99952513721283, -5.575440229878438], + [-37.99835698565314, -5.585366623755226], + [-38.01399353099429, -5.594446987445263], + [-38.03429896212822, -5.637201265147772], + [-38.05341271448676, -5.646152336921669], + [-38.07929747807306, -5.666171856066227], + [-38.08290714096174, -5.6725898322005985], + [-38.08287089501074, -5.698451117361427], + [-38.09013031226607, -5.720527250322637], + [-38.08719647716621, -5.730569712628876], + [-38.0752549787187, -5.723516718859765], + [-38.04703746573889, -5.73031045125872], + [-38.058604808386306, -5.754513404643755], + [-38.05862179254318, -5.754898853175701], + [-38.0761841879724, -5.7811033055239465], + [-38.111573793009654, -5.818703258668529], + [-38.118892896515305, -5.832881343158776], + [-38.11631423887446, -5.848033241914209], + [-38.12496585267484, -5.887658237377777], + [-38.14258227518864, -5.901686628292176], + [-38.14674848568097, -5.916223617646997], + [-38.15932597548724, -5.924621774252454], + [-38.1600357540251, -5.925004712045284], + [-38.16546543413179, -5.932149567881559], + [-38.16351834844288, -5.93894138350532], + [-38.164820544529135, -5.946577528166436], + [-38.175459428768235, -5.953446969115319], + [-38.18361022994697, -5.950268704035087], + [-38.1923968522913, -5.959609816350104], + [-38.20604359668985, -5.9643930031159], + [-38.21805181055076, -5.97704276741236], + [-38.23006118043996, -5.9869119665814745], + [-38.244531365614804, -5.999502292214386], + [-38.25219960475448, -6.01020233543496], + [-38.252596798192876, -6.0431466994793075], + [-38.260195026521174, -6.0497601678467605], + [-38.25921143725567, -6.053824438912546], + [-38.265002005141575, -6.054292329921426], + [-38.27006132091495, -6.062713534018456], + [-38.274423842316025, -6.063829592318438], + [-38.27492796392298, -6.065843072952293], + [-38.2770367709445, -6.069995922570476], + [-38.290816634492174, -6.073195592894247], + [-38.30482965154553, -6.087011459165043], + [-38.319948751016874, -6.07708290072794], + [-38.336787011093, -6.080441335459238], + [-38.33961458866922, -6.077735396844786], + [-38.34681015554213, -6.067321245106283], + [-38.347391535502496, -6.080745475647967], + [-38.3504503938342, -6.083287166053042], + [-38.36527275605509, -6.088503176209987], + [-38.371346695682185, -6.084450740959885], + [-38.37980009936906, -6.073360685996152], + [-38.37838925284093, -6.0668746708893755], + [-38.385718557758246, -6.064723070698162], + [-38.381982227968436, -6.052832610393114], + [-38.39501946279413, -6.05545468298225], + [-38.40156340107658, -6.053538807926941], + [-38.404904865489975, -6.057333269223253], + [-38.41321386864052, -6.058364579583111], + [-38.427462870778875, -6.069420250797056], + [-38.431276430709474, -6.0755363003753144], + [-38.44734320324552, -6.085321170177367], + [-38.4407978291151, -6.096917729705246], + [-38.457697324109006, -6.108062742014162], + [-38.47345124341693, -6.136046273961928], + [-38.476442010257564, -6.144456035125061], + [-38.4720922214351, -6.148792175672422], + [-38.472961565848735, -6.152021268835131], + [-38.49111506960431, -6.17055122288277], + [-38.50078467327726, -6.179725139238088], + [-38.50135160415068, -6.190989690270735], + [-38.512803068412865, -6.192065512303967], + [-38.527230139074575, -6.1934204844086755], + [-38.525921699455814, -6.1982827336942865], + [-38.529312096623926, -6.213782780967687], + [-38.51973800090528, -6.2230799286015], + [-38.523468604184906, -6.228361210818798], + [-38.52899155679988, -6.239912537724205], + [-38.53849147173472, -6.246938917595189], + [-38.545877302944184, -6.245468578642211], + [-38.55444702898428, -6.26343765425855], + [-38.56293806391291, -6.268000741157785], + [-38.57874013490803, -6.280348391866022], + [-38.571539018698715, -6.284484899242353], + [-38.570403348796546, -6.292992024987073], + [-38.57032240584618, -6.300035218332915], + [-38.56604869026534, -6.30263043907246], + [-38.581322166832024, -6.316251827380661], + [-38.58156822078643, -6.3310876476223115], + [-38.57710130556746, -6.347469043209399], + [-38.563213757036095, -6.352792294154914], + [-38.563334215821264, -6.356073534845873], + [-38.56528616088688, -6.356734848420177], + [-38.56737927069412, -6.361566943280683], + [-38.57610126668977, -6.36273337024313], + [-38.57313314635776, -6.374958846608646], + [-38.58298927962752, -6.374085436224814], + [-38.59249126613576, -6.378287419324158], + [-38.59496928651561, -6.386611315227977], + [-38.60207311052085, -6.389663425186792], + [-38.59415385257602, -6.396901940692807], + [-38.58933972932204, -6.395620424405231], + [-38.58157249410556, -6.396773571178359], + [-38.58238321580094, -6.400351941848341], + [-38.577750919894754, -6.402924676125047], + [-38.57343988695365, -6.403840535811477], + [-38.5515485981939, -6.398208524879152], + [-38.542741614954885, -6.402021455061191], + [-38.530859353889944, -6.393167726426679], + [-38.52634006063874, -6.394768573259117], + [-38.517935577624506, -6.408773122435446], + [-38.524542919033095, -6.407124326143539], + [-38.554291446935075, -6.432804232694586], + [-38.555471326650995, -6.4375509096162045], + [-38.55643088885584, -6.447683677569912], + [-38.56568184031027, -6.451544446437149], + [-38.56984253821579, -6.454916910282891], + [-38.57043609274884, -6.470236071170924], + [-38.59499833335346, -6.500483026716668], + [-38.612313997584735, -6.513231921245609], + [-38.61613729665592, -6.528185752894668], + [-38.610545790908155, -6.5323344328957615], + [-38.607110363751374, -6.529555369280529], + [-38.62663169974624, -6.552994621298368], + [-38.62568692448039, -6.558023818343931], + [-38.63265745649342, -6.562477666531553], + [-38.63310694104436, -6.569250651897366], + [-38.642879056160744, -6.5812178954418625], + [-38.632664647217425, -6.590576121260172], + [-38.62918606222927, -6.60462256723121], + [-38.64668490542318, -6.616020730438166], + [-38.64915495184023, -6.627625842261347], + [-38.655288946210604, -6.630518743356086], + [-38.6571068555783, -6.6423294566096756], + [-38.646990964422784, -6.654247447954027], + [-38.64724224630325, -6.66403590980665], + [-38.6519903373002, -6.673222331761777], + [-38.6623860602355, -6.674357631125037], + [-38.66060897024039, -6.678841647199011], + [-38.66448815433907, -6.68022935851853], + [-38.67317599136192, -6.697260846726725], + [-38.67006208698558, -6.7025878941816215], + [-38.67289849285451, -6.706760304779442], + [-38.666344755227364, -6.719848518726559], + [-38.656001926775254, -6.730283330916598], + [-38.65755949771341, -6.740799599063978], + [-38.64999769109016, -6.752275788651507], + [-38.65242875248156, -6.757091462394041], + [-38.652705891990195, -6.75980360552799], + [-38.640293681836084, -6.76402913670753], + [-38.62905042648327, -6.777748554538954], + [-38.61395355527882, -6.782477742361918], + [-38.61743843451738, -6.7940177897173015], + [-38.629495387466, -6.789941217430309], + [-38.64015834785859, -6.789235061966141], + [-38.64235122830623, -6.791719231678251], + [-38.63548534709852, -6.804659874656392], + [-38.64846415385042, -6.807425159192117], + [-38.65479426465341, -6.8133010435257635], + [-38.65564551577433, -6.814205117864535], + [-38.6578991480673, -6.816599782742967], + [-38.66181373704503, -6.823716714575536], + [-38.67559525183254, -6.830251087683102], + [-38.67797047162705, -6.834552668634064], + [-38.6703604615812, -6.843409239838342], + [-38.67230008359492, -6.847016897885835], + [-38.67722667347313, -6.8543668794046955], + [-38.67544237858813, -6.8618683838899095], + [-38.678544662665395, -6.864104632203311], + [-38.68671661138049, -6.865830679708888], + [-38.7004353832613, -6.87664119424375], + [-38.709156222712224, -6.874464499757356], + [-38.71418642425992, -6.876822554261801], + [-38.71403823408502, -6.886185514354418], + [-38.72868314744025, -6.887414502742695], + [-38.731557747096396, -6.889310445847142], + [-38.730313932099726, -6.896852280214303], + [-38.75630443713072, -6.903630346075052], + [-38.76523793913106, -6.910952648418667], + [-38.75895240386469, -6.916665020230753], + [-38.75879233177834, -6.925317209872456], + [-38.762434576500354, -6.926582850664557], + [-38.757516548211875, -6.9346558701706495], + [-38.75574257562775, -6.940167413103917], + [-38.76537476779616, -6.947976150748879], + [-38.75732669324652, -6.9582152345438955], + [-38.74699082581099, -6.96061857653483], + [-38.74810207210221, -6.966743121239353], + [-38.7429035929468, -6.975041920695564], + [-38.75191359147981, -6.988621114193615], + [-38.76099011206181, -6.990092614552093], + [-38.765024289271196, -6.993933414720612], + [-38.7587109239631, -6.998499503125276], + [-38.75101715047785, -6.997349727829345], + [-38.73060906062754, -7.012066319127727], + [-38.71713935080452, -7.0169798999181845], + [-38.7135424825062, -7.018121624124825], + [-38.691466668812424, -7.029178049911623], + [-38.689826950286815, -7.040267842633533], + [-38.67304131166016, -7.046268912436959], + [-38.66987466370214, -7.047743037770752], + [-38.67726762874917, -7.067140817633463], + [-38.67147710953841, -7.070572362177867], + [-38.666713454576, -7.081720500977716], + [-38.659826479934935, -7.0855821315230445], + [-38.65717983283743, -7.094304324119703], + [-38.66218006740334, -7.110217302905383], + [-38.668569150759424, -7.117360564661168], + [-38.677440910586014, -7.130973360302054], + [-38.67496071823514, -7.143847158792391], + [-38.67531866111592, -7.155759967461075], + [-38.68521935672865, -7.161382039458181], + [-38.67674427252876, -7.167610238963025], + [-38.67715545957639, -7.170974344733735], + [-38.6830411793565, -7.176018627733876], + [-38.68785559181703, -7.190199151888347], + [-38.67343777029403, -7.185329957355847], + [-38.6442294107692, -7.183797503736455], + [-38.6365768283253, -7.1937930893703035], + [-38.624828632007066, -7.191359568356254], + [-38.619820629334114, -7.197093701087059], + [-38.62307713680791, -7.207708238122634], + [-38.61944249242139, -7.220759785658186], + [-38.61539392396648, -7.230223798065074], + [-38.60545058300127, -7.236912946398182], + [-38.600670340774855, -7.234804661593963], + [-38.59513904490535, -7.246566901987012], + [-38.58310958687322, -7.248420645328721], + [-38.55695785402061, -7.239719793071992], + [-38.55198740589201, -7.2435165016688785], + [-38.55447114815497, -7.251895172481276], + [-38.55212605205274, -7.263598143523651], + [-38.54217076551913, -7.2659395530900825], + [-38.54265740652815, -7.278429274906118], + [-38.53461315389025, -7.2938308996122565], + [-38.54013662379263, -7.306255591094139], + [-38.55038139220021, -7.3155020763457275], + [-38.54910918885004, -7.325859236665546], + [-38.54940873067213, -7.33503537181729], + [-38.552237543428774, -7.340638132728947], + [-38.56120981708118, -7.35830178868192], + [-38.576507659248264, -7.3766465634061404], + [-38.58362780465141, -7.398241354337785], + [-38.590410228521264, -7.4012192982875185], + [-38.596151424077064, -7.414793090556448], + [-38.584523659157725, -7.416388553258665], + [-38.58427685425254, -7.433215394897827], + [-38.59504437429366, -7.433974880836536], + [-38.596100499121064, -7.438667852229103], + [-38.60582922411344, -7.44461023298306], + [-38.60287023916426, -7.453595733094913], + [-38.60335319701438, -7.457629385727683], + [-38.64494458996614, -7.460056217406641], + [-38.64619845690641, -7.463376436217404], + [-38.641716614229836, -7.465004845749632], + [-38.6358492748352, -7.475055101007732], + [-38.6309298824733, -7.487367168335149], + [-38.646021598706966, -7.501963291665827], + [-38.6465012224916, -7.517578022007169], + [-38.65468363435278, -7.522259106751572], + [-38.65151808755656, -7.527840174150714], + [-38.652736678205265, -7.539712868206304], + [-38.656513524888744, -7.546230688969028], + [-38.65359803841306, -7.554605548179896], + [-38.65915677959523, -7.560657291716011], + [-38.65535098649616, -7.565580157808276], + [-38.674493514722286, -7.569368445125216], + [-38.67987038084633, -7.57476016485108], + [-38.68884282338015, -7.582223093906597], + [-38.70263939436619, -7.581058499174957], + [-38.71104976326033, -7.586671004096865], + [-38.71304827754253, -7.608390430275371], + [-38.71832494015168, -7.609392575055306], + [-38.71500000455863, -7.616309868829082], + [-38.71761988498479, -7.626925007489837], + [-38.723752134253175, -7.626921002233664], + [-38.73562380742673, -7.634162175567016], + [-38.73499116227165, -7.639494393131219], + [-38.74184772430005, -7.648410244071642], + [-38.74282760215627, -7.660358928310248], + [-38.75449266961019, -7.659778954211526], + [-38.76063797935049, -7.656037715234357], + [-38.77545440353641, -7.662470297195496], + [-38.78009623173062, -7.661616462161801], + [-38.78614096511649, -7.6686266102111444], + [-38.790773048682254, -7.671186599546693], + [-38.79251560155366, -7.668133569860455], + [-38.812216916864564, -7.668834054718481], + [-38.81585150498631, -7.664094594061818], + [-38.819715202583104, -7.664864610567512], + [-38.82426649592708, -7.678381139415526], + [-38.81512962699724, -7.68801645121019], + [-38.815049188530026, -7.697427588497424], + [-38.821987450788676, -7.714831173109581], + [-38.828134565473455, -7.719651257003228], + [-38.83450736570445, -7.719704547463333], + [-38.846127542414166, -7.72045181180206], + [-38.851770149850566, -7.715974151318672], + [-38.869769630234366, -7.711578509731077], + [-38.880937849909124, -7.725001374582268], + [-38.88121011254521, -7.741108978879], + [-38.88114642986277, -7.741661337024829], + [-38.88087758854465, -7.744008481327838], + [-38.881422583867646, -7.747469011895044], + [-38.89483558521482, -7.750490245913084], + [-38.90037816898986, -7.744912233447776], + [-38.91560258260759, -7.744523799735133], + [-38.91827261214172, -7.747203747006226], + [-38.916135750748424, -7.758574804593193], + [-38.920243706022596, -7.7546039669224465], + [-38.92765176435381, -7.7538428854360495], + [-38.93407634211651, -7.758866762435652], + [-38.9396028630257, -7.758809288248762], + [-38.94187280246306, -7.762538851207348], + [-38.94198916337489, -7.763179767709882], + [-38.941047394966255, -7.7714494676879085], + [-38.94640745802083, -7.781434143320843], + [-38.93998992342534, -7.795142329026448], + [-38.95288007932682, -7.810582242368779], + [-38.95407396031532, -7.821554272482747], + [-38.96496509126639, -7.829865081620307], + [-38.959385907651175, -7.838300014307885], + [-38.96213839260317, -7.844211196458798], + [-38.96622672523354, -7.8456702337800275], + [-38.974663621677195, -7.843011030285157], + [-38.98226928290364, -7.846162182905294], + [-39.001433231777085, -7.840162635128872], + [-39.00461253007681, -7.8359725111603], + [-39.013715904987784, -7.812909535797673], + [-39.01806645235537, -7.812702582691134], + [-39.02641761922011, -7.824671619847306], + [-39.05378004204594, -7.819341170827685], + [-39.064904157407575, -7.839540745460759], + [-39.09132201725449, -7.8582189559660085], + [-39.09546011625575, -7.853300628789149], + [-39.0957914654027, -7.846472569843148], + [-39.087841483040506, -7.836208240062592], + [-39.09174480112236, -7.82484945543229], + [-39.09057932942274, -7.809641110627915], + [-39.10193999311311, -7.786487068867432], + [-39.10035832229881, -7.775744250683861], + [-39.10264127948329, -7.771074773582709], + [-39.10637801847876, -7.760262814663116], + [-39.123877357648745, -7.743282547163324], + [-39.133976872699655, -7.7253144157571425], + [-39.14373663548888, -7.718583529712983], + [-39.14657295562282, -7.718302375427195], + [-39.171025201338054, -7.715276781188513], + [-39.18115747148496, -7.7095142129937], + [-39.1893764349699, -7.700150341464893], + [-39.19024774182331, -7.6989577228322545], + [-39.20835887496231, -7.689516788914528], + [-39.2227660987543, -7.696840193268518], + [-39.23476175894568, -7.696837406405], + [-39.244195972945946, -7.705379487141961], + [-39.25258837885854, -7.704967322683341], + [-39.250411505318155, -7.69847947331029], + [-39.24748705371088, -7.690685219384053], + [-39.251054500880095, -7.680955514789644], + [-39.25206173067893, -7.678907517073194], + [-39.26536156331511, -7.669867391894378], + [-39.26641932540227, -7.664801851305339], + [-39.27242508351154, -7.660169963896648], + [-39.2837750324992, -7.664244780959733], + [-39.305589732168116, -7.665968010459618], + [-39.31141186313502, -7.655272967957664], + [-39.321463554755056, -7.654262170925992], + [-39.33201555146975, -7.64824440971961], + [-39.33210947153454, -7.648203686329305], + [-39.33846685034877, -7.644683254143779], + [-39.34286762487527, -7.635654201515248], + [-39.35482181481882, -7.6301643808489485], + [-39.36800319079301, -7.6239469986936585], + [-39.3727180226174, -7.614204256256268], + [-39.38399515415824, -7.608607398133549], + [-39.38407845706565, -7.608558404316564], + [-39.41967895193485, -7.6044485539845], + [-39.42329560224078, -7.586842085516541], + [-39.43120733045196, -7.5780586893758715], + [-39.43495622637538, -7.573759087814731], + [-39.44724177447852, -7.572328189570331], + [-39.47247623431501, -7.575218227134064], + [-39.476549361446914, -7.5533639106215915], + [-39.48503650071751, -7.538422815142074], + [-39.48255303418564, -7.530087318407547], + [-39.469710998599396, -7.520604881691212], + [-39.455700106055836, -7.501897196751506], + [-39.458515421338504, -7.474246694454973], + [-39.467879150554126, -7.4696268836587425], + [-39.47553442114591, -7.472706684975816], + [-39.4897549968934, -7.47245949165305], + [-39.50238297547091, -7.464184665723525], + [-39.54327134713716, -7.484796699264718], + [-39.54587507706052, -7.483977877503038], + [-39.552850152333185, -7.480692975441524], + [-39.55747705880681, -7.472580990694022], + [-39.566021322133714, -7.448961993675621], + [-39.571296680871335, -7.430781980390022], + [-39.576556017999664, -7.42793114123008], + [-39.59309995951383, -7.43238739205479], + [-39.59902504311061, -7.428809599267408], + [-39.60871020002709, -7.423762712108712], + [-39.62892910849979, -7.425664545084922], + [-39.63964120070842, -7.3958407048571795], + [-39.64391661790172, -7.385377690221508], + [-39.65311023657916, -7.372298188550027], + [-39.697533663837675, -7.342201585178582], + [-39.71551824277741, -7.334960738652243], + [-39.741343567269745, -7.326852482457343], + [-39.77132642852003, -7.3275128817544495], + [-39.78924825656197, -7.332030876735584], + [-39.80648348098958, -7.330438041901084], + [-39.815388706799226, -7.328729935822915], + [-39.828716905970545, -7.332405892323059], + [-39.85146912318255, -7.325245559106715], + [-39.863974229292566, -7.327727712662364], + [-39.890151521219686, -7.339864338267678], + [-39.90458050321909, -7.338378904323065], + [-39.92636573941478, -7.341034408281556], + [-39.99860981547499, -7.373549504447565], + [-40.00911578423955, -7.375603545468414], + [-40.08747466920455, -7.383128249082649], + [-40.12777434370054, -7.3819500908601405], + [-40.15088433332716, -7.3740377820232625], + [-40.15715332921658, -7.371492024210027], + [-40.195704434572804, -7.358183643716924], + [-40.220779659761924, -7.341305202713024], + [-40.24755300096582, -7.31375345913484], + [-40.263015111610066, -7.301055726262515], + [-40.27902272917324, -7.299425809262693], + [-40.31816385924971, -7.303433982688791], + [-40.32941363448897, -7.318592504579884], + [-40.33803462167916, -7.323828722457716], + [-40.35081277595065, -7.334206008536033], + [-40.361003124363464, -7.3556353900516385], + [-40.37454136350017, -7.363022274411114], + [-40.393897161212045, -7.368202919677268], + [-40.43361057974472, -7.36721267438932], + [-40.45909184161705, -7.355128129789765], + [-40.476266211192744, -7.344761293837061], + [-40.50048723394184, -7.328029605068048], + [-40.52374086800843, -7.318483784835163], + [-40.51428727334342, -7.307866359023522], + [-40.51164991480364, -7.299464834899131], + [-40.515296128215745, -7.275203760329133], + [-40.51555610325459, -7.269868597414809], + [-40.51028696534402, -7.224389699053261], + [-40.506135103606596, -7.210893834294203], + [-40.501315477396155, -7.188686979369917], + [-40.49481056374775, -7.18237831595692], + [-40.49572890833513, -7.169652238615021], + [-40.484388401737746, -7.13323289484471], + [-40.489757960938235, -7.118724319713875], + [-40.47045178616036, -7.094004577632552], + [-40.469439945613296, -7.0876783628529925], + [-40.45941518331163, -7.078569831370648], + [-40.4442779123366, -7.055966425472078], + [-40.44330028866477, -7.048129813190318], + [-40.42773653572833, -7.033915421169666], + [-40.42695999318486, -7.0294946638752975], + [-40.429854473258025, -7.0279101407821845], + [-40.43203610759344, -7.025720197342439], + [-40.43870346227078, -7.016493681827384], + [-40.4280323261226, -7.018510986099523], + [-40.427870124768944, -7.015385500843456], + [-40.406268407380765, -7.005360973585094], + [-40.411092002766715, -6.9991100125248344], + [-40.429327926044145, -6.994664295344397], + [-40.42914000842453, -6.948537158561898], + [-40.42449273539681, -6.937235670820961], + [-40.42503883108321, -6.935304082431062], + [-40.43382781022122, -6.8959427332072005], + [-40.42898015889263, -6.884894494964273], + [-40.42853838606565, -6.864288772909247], + [-40.41077426958193, -6.855614200680575], + [-40.407569909368675, -6.851327369005819], + [-40.402238107592176, -6.840023891202686], + [-40.38713126845353, -6.830110270892411], + [-40.3816504829234, -6.8193520849981155], + [-40.370596376533186, -6.808027983832424], + [-40.37052878376867, -6.803104906216081], + [-40.388809241693004, -6.7970331110887825], + [-40.40415632090166, -6.802522209697865], + [-40.41685444141877, -6.812567306052862], + [-40.432416953063324, -6.812858042462066], + [-40.43900903364563, -6.806722297950663], + [-40.44294885183387, -6.789908202599111], + [-40.452048262736454, -6.783809695273217], + [-40.457054223342624, -6.762636403287672], + [-40.459745420652226, -6.754271745010619], + [-40.47195589633702, -6.744968486995665], + [-40.47390570924016, -6.734911556481325], + [-40.492709286019945, -6.7319686844141495], + [-40.51740614913758, -6.730528933866001], + [-40.56179639715345, -6.720404365839242], + [-40.602225261799894, -6.7160455528787475], + [-40.61643945509114, -6.710435697448233], + [-40.63243693846445, -6.6989374460915245], + [-40.649157579000246, -6.678863001299537], + [-40.71020057137645, -6.676162981646518], + [-40.7261106854183, -6.663238210054118], + [-40.7322578750324, -6.65361879311004], + [-40.72299864193047, -6.621526744720473], + [-40.72202033553477, -6.617716207541551], + [-40.73643719596518, -6.600243143534902], + [-40.74024346261768, -6.5775294082484415], + [-40.74586971604306, -6.565580097677789], + [-40.787685918690066, -6.523812569127935], + [-40.792139821068645, -6.51289423757178], + [-40.789957012475426, -6.500664568628773], + [-40.79660303052628, -6.470734444044258], + [-40.79379321128295, -6.460222678409179], + [-40.79640379916503, -6.426790592889397], + [-40.80517212413558, -6.393164719003519], + [-40.80010553651838, -6.381735384420935], + [-40.7903645944577, -6.371922510127545], + [-40.7793323055779, -6.343321160340534], + [-40.780152646105776, -6.327705968614505], + [-40.78202731016775, -6.316596067868034], + [-40.7875302701847, -6.3042898706560155], + [-40.80419859001305, -6.292903087893648], + [-40.810521948962204, -6.287096532022196], + [-40.82057993461608, -6.263231566588847], + [-40.83412633196924, -6.244459464384135], + [-40.852241370442265, -6.224253465998501], + [-40.847247193823556, -6.203046588659741], + [-40.85286182239258, -6.175094063027561], + [-40.85035908518625, -6.152589739583698], + [-40.84575574243682, -6.135028050746825], + [-40.85773008018177, -6.105332573183131], + [-40.8728629002672, -6.056660600195848], + [-40.88429683217477, -6.047823837137598], + [-40.902220736124015, -6.049237095532616], + [-40.90632275497978, -6.04655024349967], + [-40.90756447230176, -6.044694510394172], + [-40.903964373245756, -6.020909875392336], + [-40.88983636655073, -6.004015766556433], + [-40.88811922580851, -5.997942379376857], + [-40.88789452584919, -5.995365676594566], + [-40.887371779003274, -5.989359891778443], + [-40.87559033153225, -5.977863800882522], + [-40.873651443368466, -5.9667912144940995], + [-40.88023302640926, -5.9177003319336166], + [-40.888603936309266, -5.912666486960293], + [-40.89753624171455, -5.9013304573028185], + [-40.89360947498455, -5.884070434901829], + [-40.893660975919744, -5.8838424111512495], + [-40.905662423061585, -5.8493092834080676], + [-40.90907405937847, -5.825583803931308], + [-40.905835603828145, -5.801487463024416], + [-40.909811725636864, -5.765749331222249], + [-40.91776963420873, -5.744826180275299], + [-40.913558109708205, -5.726779401890345], + [-40.92516650735945, -5.709182739584162], + [-40.930394152109805, -5.686247018792036], + [-40.93878595027989, -5.673373664248589], + [-40.92913874282509, -5.66316354570992], + [-40.91124963658874, -5.656592034734767], + [-40.9077748746405, -5.6423797547502925], + [-40.90288065293765, -5.629692726425262], + [-40.901300656499146, -5.611904818873568], + [-40.91260751236763, -5.590064523792965], + [-40.914501930261366, -5.567425303211607], + [-40.93297308626094, -5.547313334901428], + [-40.931770502764486, -5.53646188065562], + [-40.93647112416777, -5.526421285405011], + [-40.92889553757054, -5.517881651293278], + [-40.92877609818354, -5.506981404749209], + [-40.93307216103931, -5.50075105455972], + [-40.92933743933957, -5.493121130449286], + [-40.92917349641003, -5.483366950163901], + [-40.918528869575546, -5.473940096430892], + [-40.91583018493237, -5.466214802081329], + [-40.92121833371148, -5.450879437664203], + [-40.93705628805302, -5.438574583133052], + [-40.94178102138476, -5.431003895228447], + [-40.942477781767856, -5.419739569912604], + [-40.93820805645806, -5.416386846758113], + [-40.91771573344779, -5.416324351586611], + [-40.91156593145995, -5.407410256351313], + [-40.914916147040515, -5.393177401591059], + [-40.929005117141784, -5.375851112518603], + [-40.93611964581992, -5.3660010703944945], + [-40.93373870739643, -5.349437918221667], + [-40.918469387889466, -5.338288891812727], + [-40.91352961286442, -5.319512628331994], + [-40.91274991201767, -5.309008816917903], + [-40.91322181002088, -5.308085005824967], + [-40.923475794155664, -5.301153150707346], + [-40.926773821553574, -5.292080789316752], + [-40.921960715182834, -5.284391527548712], + [-40.92425972336624, -5.274870996088735], + [-40.91965862247378, -5.2711949120003245], + [-40.91187496243606, -5.270958713501259], + [-40.91122361649049, -5.26798694814777], + [-40.93308189510313, -5.245260621427921], + [-40.94111965456621, -5.241998275582975], + [-40.940414339074245, -5.2378006152663525], + [-40.93401832659115, -5.2368154156631865], + [-40.92663875507686, -5.232119910595022], + [-40.92204439167985, -5.2264850128285945], + [-40.93201516611133, -5.201297560706346], + [-40.92530656588259, -5.182130718376592], + [-40.92900399508577, -5.1717055500661875], + [-40.937762492867535, -5.166622664810762], + [-40.949336457438186, -5.166910265069541], + [-40.958509976622985, -5.154553084855679], + [-40.96843563960507, -5.1493940747536335], + [-40.9824784945967, -5.1535564295649765], + [-40.98861969712107, -5.138780363015871], + [-41.01185183851113, -5.123634722242469], + [-41.0140911174341, -5.105838999376647], + [-41.02642110630305, -5.109730391916724], + [-41.034016913122954, -5.091097709840987], + [-41.040282235816356, -5.091417338669604], + [-41.05242960143569, -5.1034362837581275], + [-41.080140832753735, -5.0911257187057], + [-41.080448120207016, -5.078724396662002], + [-41.087363413947436, -5.0733488254580275], + [-41.0881837382602, -5.065646398958488], + [-41.095879830172905, -5.061650072729851], + [-41.09702085270931, -5.053181716313722], + [-41.13189137691356, -5.04808903459227], + [-41.121241671138215, -5.023979643433948], + [-41.12261511427846, -5.008101533584949], + [-41.13548231799953, -4.997851224706342], + [-41.13829323822668, -4.98452017350946], + [-41.14648578492492, -4.992231451504036], + [-41.150937430236915, -4.9921434987129585], + [-41.180231563248064, -4.947577794405543], + [-41.189025240130874, -4.940651659133104], + [-41.198567672554844, -4.9374877151933765], + [-41.20380630930245, -4.949782077016092], + [-41.20962667966444, -4.945992904258099], + [-41.210603117481014, -4.938648596163217], + [-41.22138182272344, -4.938262503070427], + [-41.222965025898404, -4.926541225441849], + [-41.23494311033146, -4.905776980417525], + [-41.22811829360053, -4.891020524178807], + [-41.24958885864014, -4.869722848326838], + [-41.23993011171127, -4.85641308545843], + [-41.23989181471619, -4.848878612117662], + [-41.2424789147645, -4.825268317804708], + [-41.23284829363005, -4.815771024422556], + [-41.232480651388705, -4.804569040065655], + [-41.225445195766355, -4.797852398535943], + [-41.22396623819519, -4.79070781684295], + [-41.20999090755611, -4.7833799345820385], + [-41.20803045137995, -4.776801561919816], + [-41.21278091949667, -4.772058103440175], + [-41.241933874762275, -4.76506050352166], + [-41.24802413990975, -4.761583815584986], + [-41.249548034697, -4.756075636588482], + [-41.23524878289004, -4.746561870986822], + [-41.23666508965424, -4.738784659046351], + [-41.23409897518922, -4.733774060109221], + [-41.20250740428951, -4.701928307898625], + [-41.18173127896352, -4.673836817471026], + [-41.17392095924892, -4.668578073138109], + [-41.17502493935756, -4.665369226495812], + [-41.18561482395035, -4.66200090308131], + [-41.2028310137429, -4.638228594113473], + [-41.229345487352894, -4.620128365216308], + [-41.23345086885788, -4.610222470954269], + [-41.22305550266791, -4.589825500437297], + [-41.221229854914846, -4.5789697689410325], + [-41.239872714941, -4.573559565959911], + [-41.242554240550156, -4.5715471402631795], + [-41.240754353596806, -4.568486919117244], + [-41.22209456473778, -4.5676923640307345], + [-41.21412683518735, -4.5527106357073235], + [-41.2079461261473, -4.547772041077163], + [-41.20380535508474, -4.528455244583883], + [-41.19079076814144, -4.515562931112711], + [-41.1893619850686, -4.48871472302547], + [-41.177586477166194, -4.46771174834422], + [-41.1765523201174, -4.447026242510359], + [-41.17714941700628, -4.441301188483752], + [-41.15970519942585, -4.410589487042383], + [-41.16071694802631, -4.389332171084168], + [-41.16002605031904, -4.381531852498596], + [-41.15088869501244, -4.370699141922971], + [-41.149218189429085, -4.367364574727102], + [-41.1334372355124, -4.340179956362995], + [-41.12018602127675, -4.330601762514905], + [-41.11944932747688, -4.324290212311459], + [-41.11913864422801, -4.306560402192402], + [-41.1359193369151, -4.23354658508781], + [-41.09928668292978, -4.182135535011931], + [-41.09910184311234, -4.181875005716738], + [-41.09090011844624, -4.1703677240587], + [-41.118343918056304, -4.16525974011838], + [-41.12616469429534, -4.152866254460817], + [-41.1281289573887, -4.1393601304507515], + [-41.14318808962369, -4.124278835791045], + [-41.13941129685919, -4.121023020893555], + [-41.12224946324382, -4.077221829576192], + [-41.127172768286194, -4.061425682909356], + [-41.11412931897333, -4.051855501890894], + [-41.114296646256676, -4.040600871135784], + [-41.12035912545913, -4.036375198657393], + [-41.14311181618547, -4.036849067196936], + [-41.15996421444155, -4.03174725503585], + [-41.17182876771851, -4.032513386597028], + [-41.18382050883273, -4.024436980380234], + [-41.18287086974502, -4.018108513520301], + [-41.192621432942026, -4.02069604642335], + [-41.19948652929536, -4.018391612895663], + [-41.20891861946414, -4.025618345066086], + [-41.22080778543874, -4.026704350726861], + [-41.24032048564854, -4.030884696956065], + [-41.25019378055112, -4.037788356727107], + [-41.256740678726075, -4.03488365955235], + [-41.25442334646259, -4.027712654098822], + [-41.23884273812737, -4.015440253439969], + [-41.245742755490326, -4.006617084870506], + [-41.24925372316576, -3.989904978622792], + [-41.2442045959847, -3.986425393078079], + [-41.24437591460846, -3.9797949637652557], + [-41.2401312477829, -3.9792338697399563], + [-41.23426378631757, -3.9678342195818943], + [-41.22903778124271, -3.968411854852422], + [-41.22025327265009, -3.9415412423054574], + [-41.22788309052424, -3.9153513729983738], + [-41.24570775307499, -3.8963374157930244], + [-41.24762286287221, -3.8823239516565833], + [-41.25887054777892, -3.8703141030411996], + [-41.25996834633717, -3.8647868635702745], + [-41.26777059043636, -3.861885565163893], + [-41.27054867992544, -3.8531197311648495], + [-41.2685947153385, -3.8445291439088005], + [-41.27686963551851, -3.8256568429022337], + [-41.28268644104286, -3.826847192714487], + [-41.2874772748456, -3.822293378484675], + [-41.29517330639542, -3.8302139059950435], + [-41.30082745548183, -3.826334398536419], + [-41.264841804926554, -3.7916142796520425], + [-41.25413619198209, -3.7750775478368346], + [-41.261196029912554, -3.757578819552438], + [-41.25737598248069, -3.7299368298123547], + [-41.25190178608927, -3.7233762022352233], + [-41.23944263608123, -3.720786188936882], + [-41.23935214577801, -3.712681957394003], + [-41.25544541512488, -3.7032965976756835], + [-41.27934728344637, -3.7007836307460167], + [-41.290813743077855, -3.689725157132033], + [-41.30767762905479, -3.684839399248674], + [-41.32655582095082, -3.6873553961559145], + [-41.34176066497319, -3.68080835174393], + [-41.343705582397824, -3.676008968193841], + [-41.339110116604346, -3.670455859172741], + [-41.33132828334002, -3.624720417357078], + [-41.34491680979517, -3.588775079985828], + [-41.35325037705421, -3.585622293163491], + [-41.36202081508447, -3.5832158733962003], + [-41.370638412541375, -3.5749022595536224], + [-41.37125869073947, -3.5678296769929894], + [-41.367507339714535, -3.5619565314005373], + [-41.36467403536746, -3.558034667456134], + [-41.336881992607935, -3.553929928762111], + [-41.32569137987646, -3.5364493393537813], + [-41.32418665744292, -3.5034055450131527], + [-41.32060047766336, -3.4978947704721564], + [-41.29922736794555, -3.491057970410251], + [-41.306352844308925, -3.4883064074259926], + [-41.320007777420194, -3.4942350566344254], + [-41.32783584503671, -3.4913768415734685], + [-41.32964114169485, -3.4658543343584647], + [-41.33870740877061, -3.4599012233736657], + [-41.34800815967524, -3.45255493656776], + [-41.343925088383386, -3.440533454953416], + [-41.3447921763843, -3.4193545889872743], + [-41.34798208489479, -3.4146612003884456], + [-41.35604051038981, -3.4108672785737344], + [-41.38883437372876, -3.4128692993978818], + [-41.39387048784354, -3.399602850657859], + [-41.403580880958046, -3.3966152963673726], + [-41.40068464646874, -3.3779215268503258], + [-41.40271393182409, -3.362431232215843], + [-41.41872978818324, -3.370524546687377], + [-41.42353001908441, -3.3680429397015956], + [-41.41436345204146, -3.349975739262048], + [-41.4123297146818, -3.3407339631834057], + [-41.39797702468404, -3.3275836059008785], + [-41.40027189451141, -3.31863410162714], + [-41.390268853007996, -3.2946412047930886], + [-41.38681439490245, -3.288785961724296], + [-41.36051619886682, -3.244224736493389], + [-41.322496971895475, -3.17983120238096], + [-41.326017511994955, -3.1690221296731886], + [-41.328722516457916, -3.161631588131302], + [-41.31936215599265, -3.1501159380952912], + [-41.31916839357904, -3.1453814366747963], + [-41.302455459834626, -3.1301579138863733], + [-41.29987288163362, -3.127983346042788], + [-41.28547213260071, -3.113316849895061], + [-41.285832220677705, -3.103314263067626], + [-41.27230434813858, -3.100953848381153], + [-41.267973650597575, -3.093878764953331], + [-41.25666326517364, -3.08805457430216], + [-41.256540165889376, -3.0717323000708396], + [-41.26136126844575, -3.067113948046182], + [-41.2614749587523, -3.0538908846144595], + [-41.26056222230539, -3.048066348844161], + [-41.25377845652538, -3.0376291672682623], + [-41.25533144474642, -3.032774900069554], + [-41.24901737155642, -3.0287300947007108], + [-41.255825747927844, -3.0202369260921706], + [-41.257136720152154, -3.0046848437602605], + [-41.26955506253095, -2.9851197271730117], + [-41.27244235319584, -2.9707317636012225], + [-41.28352272233909, -2.9676882772034334], + [-41.29845500946164, -2.968441527474814], + [-41.317056567908146, -2.9604196224061776], + [-41.3229686265942, -2.951517552576969], + [-41.32157613966864, -2.935456250096305], + [-41.32269249395079, -2.921359500979169], + [-41.28043645555467, -2.8964288690590743], + [-41.273557943869, -2.889674180183756], + [-41.25913954055535, -2.8843656640347692], + [-41.23338863674783, -2.8898265949749575], + [-41.19116811705132, -2.891268612289504], + [-41.173835323067124, -2.8877308151960985], + [-41.11974587505247, -2.892929609917026], + [-41.10172584970254, -2.9009905564361698], + [-41.09636144188418, -2.891894314303361], + [-41.08528058361257, -2.8957827447185647], + [-41.057838022503354, -2.8963405988182283], + [-41.00919779701007, -2.8921266585930456], + [-40.99079833613193, -2.8869139521002127], + [-40.96255247581725, -2.8812767957862984], + [-40.95650060198672, -2.8722489428820155], + [-40.920503744864156, -2.874569856983866], + [-40.90832932874444, -2.8699616884353207], + [-40.90608868288961, -2.858906368108601], + [-40.89994293666536, -2.8623743333260405], + [-40.879889221346694, -2.8622620293600423], + [-40.87453181263209, -2.85915582935759], + [-40.86837819485469, -2.8629059609736363], + [-40.861861124362434, -2.8563231004277236], + [-40.85640730187796, -2.865041587688112], + [-40.852666831445035, -2.865384662602261], + [-40.84458221461221, -2.884835367488777], + [-40.84351719345092, -2.884835661209428], + [-40.8300007847448, -2.8772521608617767], + [-40.81577718850782, -2.8774633014681195], + [-40.79511280899735, -2.8693173017361033], + [-40.77610500949195, -2.8541688622727692], + [-40.75996873937636, -2.850186787352991], + [-40.75300480837893, -2.8514366945371434], + [-40.69078476034006, -2.8513772428676205], + [-40.671890360129666, -2.8471407199634844], + [-40.64544867226176, -2.8501079785312027], + [-40.5922473120416, -2.8438180446945327], + [-40.57391164667963, -2.8378379244896816], + [-40.56330345204224, -2.82901079690757], + [-40.53369578439458, -2.8181156442128383], + [-40.519773498481335, -2.802682560681731], + [-40.520825445070855, -2.791033346823172], + [-40.499667084989895, -2.7844516046256835], + [-40.45502119375426, -2.804257103915824], + [-40.42951014503521, -2.8111525179128267], + [-40.391385995643176, -2.814124795095669], + [-40.37227339774947, -2.8103295175276477], + [-40.35391473506088, -2.8084258068036374], + [-40.31735399409365, -2.805762290604713], + [-40.26169286518052, -2.8114038904769445], + [-40.25629698687482, -2.808994111876769], + [-40.2297369009283, -2.8129272049597414], + [-40.21698253697821, -2.814814900461773], + [-40.18772117532921, -2.815886762496852], + [-40.18876358078538, -2.8129681320084394], + [-40.160460139274605, -2.833355572327379], + [-40.14788762326545, -2.8395614544349583], + [-40.13207531003775, -2.834263368346062], + [-40.132889422980604, -2.8287642820627092], + [-40.12806118325058, -2.8255610616481457], + [-40.095886130132, -2.828475769220969], + [-40.07946567549646, -2.8348874491960103], + [-40.07677501243564, -2.8409613953570405], + [-40.06738886633678, -2.841778611553063], + [-40.06130186938092, -2.8375280515789494], + [-40.04911361370121, -2.837631628418338], + [-40.04815718177325, -2.839935469241417], + [-40.043631657733194, -2.8411319501829406], + [-40.02282320429684, -2.8439849430528867], + [-40.01782432351359, -2.8380098585786997], + [-40.02752458218873, -2.8361473269391007], + [-40.025026857484065, -2.834520538977402], + [-39.98834975056394, -2.849749350133671], + [-39.976989246942345, -2.8552829891853047], + [-39.98674424785771, -2.8455824851599365], + [-39.99952592197295, -2.84192199200476], + [-39.98771707512161, -2.842546334692574], + [-39.9529096851332, -2.8612472786073395], + [-39.9529986458519, -2.858499598907389], + [-39.96938640466619, -2.849124940464401], + [-39.94350723501585, -2.8605249449077], + [-39.942690902965744, -2.8582458978937515], + [-39.93063495466673, -2.8688028098917555], + [-39.912764528008196, -2.8774382346212497], + [-39.90494377462166, -2.876035420171746], + [-39.897020871274606, -2.884568827597664], + [-39.89229994008536, -2.8823000431324397], + [-39.88669193081555, -2.8847679493339737], + [-39.857925261393845, -2.9032061295057128], + [-39.83247223269186, -2.9242149042438434], + [-39.82367845238013, -2.9275674208048086], + [-39.799205814190344, -2.9461596673101234], + [-39.79243895765532, -2.948963834855583], + [-39.768258014048655, -2.9606303967288747], + [-39.74163263312339, -2.985796808233317], + [-39.73573344607465, -2.986927481444765], + [-39.71398626402835, -2.99993883446497], + [-39.68791084245007, -2.99472085456554], + [-39.67541524777446, -3.0024444508322334], + [-39.662514593780955, -3.018029914195749], + [-39.65417097634716, -3.0237028682148317], + [-39.64730978912775, -3.02300700041337], + [-39.63819129561982, -3.0191011933018483], + [-39.61944049507911, -3.026379447919139], + [-39.61002688037171, -3.044880850976426], + [-39.59667559096749, -3.0656706711293573], + [-39.589731427169916, -3.070706930879628], + [-39.57361424201448, -3.0721109075734683], + [-39.56714827219819, -3.075780905694472], + [-39.550831049033775, -3.0798125095254156], + [-39.53030638546403, -3.094602045452766], + [-39.52157569396015, -3.1030304412707816], + [-39.487487790558774, -3.118475898632929], + [-39.479830251761, -3.1263026388650457], + [-39.46884922229966, -3.139515176731723], + [-39.46482368059198, -3.142197787096244], + [-39.43770505347573, -3.146921201402782], + [-39.41218337313053, -3.1602801952899906], + [-39.40256148237923, -3.1724743565332663], + [-39.38435823403843, -3.184176104880573], + [-39.38105402698229, -3.1830655827778283], + [-39.366417522222335, -3.173983668959702], + [-39.35697205962839, -3.174958905974368], + [-39.34536122403639, -3.180088130900476], + [-39.324886194059296, -3.2016683499549887], + [-39.31380514138853, -3.2081544319498003], + [-39.30692387190183, -3.2073834116506896], + [-39.2975904349085, -3.2154933827210663], + [-39.27926318730982, -3.2208824547903383], + [-39.26414758064542, -3.2185238478958236], + [-39.2525474939739, -3.222172163746575], + [-39.24167715917239, -3.2341638794043064], + [-39.226278352820124, -3.2441234734330835], + [-39.18769659162354, -3.293828403487302], + [-39.16989827511709, -3.3236966334225677], + [-39.162519915379406, -3.324576032715241], + [-39.16002251213258, -3.327881162168264], + [-39.161229020915165, -3.331663868163875], + [-39.13943409675247, -3.345928812558099], + [-39.12763552954576, -3.343673957481468], + [-39.118459002757575, -3.345999863560219], + [-39.112744879068735, -3.347425627052867], + [-39.09146905052882, -3.384614056363397], + [-39.07961315322097, -3.3967045487646224], + [-39.066473198832064, -3.4044335224215576], + [-39.06657411626275, -3.401910843773156], + [-39.062860215287316, -3.4017151203724025], + [-39.053156784560066, -3.409171197130198], + [-39.03994069327508, -3.4113061696919], + [-39.026290483046694, -3.403210614353474], + [-39.016487067835605, -3.4034791434912437], + [-39.0080534490179, -3.396510620479959], + [-38.99497336952143, -3.3975115611508384], + [-38.96644002078546, -3.419558236730046], + [-38.94924137188729, -3.4431367265424453], + [-38.938461413236226, -3.4512593771320326], + [-38.93413331124966, -3.4641230107495726], + [-38.93213218044567, -3.465420817923114], + [-38.9213265187376, -3.4900342722964597], + [-38.91074322328907, -3.5037424872292124], + [-38.891294027651576, -3.5052127176777486], + [-38.86892323089385, -3.5243002960669205], + [-38.85360765630813, -3.539009229013161], + [-38.83392120177799, -3.546223007839262], + [-38.818830852035674, -3.5462960247131012], + [-38.8122445859161, -3.541220154746165], + [-38.80602303573663, -3.5479986299184483], + [-38.78093004389712, -3.5812015681422684], + [-38.775425265324415, -3.58902886617359], + [-38.763585021234626, -3.6048670456587164], + [-38.745227949673115, -3.6194076246650693], + [-38.72894807415948, -3.624249527836359], + [-38.70467993543447, -3.637040711180002], + [-38.66685203332701, -3.6747100514177635], + [-38.65501835777449, -3.681105764683649], + [-38.63907836926756, -3.6874320416558266], + [-38.60891410862301, -3.6883407767185363], + [-38.59532269190617, -3.6937271522777277], + [-38.59318968854738, -3.6915957077294426], + [-38.57996244100746, -3.694245149039849], + [-38.56888295208039, -3.701330506198499], + [-38.55735949291439, -3.7060163787568134], + [-38.54728508763875, -3.7124347560346327], + [-38.54190180472456, -3.715328043159328], + [-38.52646648617305, -3.7204249318934477], + [-38.519912659682035, -3.7183757675337086], + [-38.51130971939729, -3.720152722610377], + [-38.49930068294785, -3.725300275815467], + [-38.48983069087754, -3.723805966011261], + [-38.477300875027154, -3.7195779209089506], + [-38.47711134343024, -3.7142253527669156], + [-38.47296122618567, -3.708415632817213], + [-38.477690761758296, -3.7012465403001484], + [-38.46667701099838, -3.71404795933546], + [-38.435673513633155, -3.7709365399367685], + [-38.4308181539717, -3.7784117981148024], + [-38.40188410115703, -3.823827205874939], + [-38.364275040192744, -3.881911158292825], + [-38.343215395923465, -3.903798921202754], + [-38.31850898431227, -3.926369981186114], + [-38.30404839184346, -3.9358210375662828], + [-38.2999712703297, -3.9418312310598598], + [-38.30860353216659, -3.939151927847586], + [-38.30190801994921, -3.9441006792171076], + [-38.29738109367018, -3.9433809358754637], + [-38.30008259117812, -3.9373972432742685], + [-38.28969193454139, -3.9415052544225415], + [-38.27807317739761, -3.9415199493515822], + [-38.27127622033782, -3.946624468890572], + [-38.25578959411593, -3.9659825569533655], + [-38.231926735716684, -3.996965231309771], + [-38.226287360312924, -4.0024514889521505], + [-38.222883429504115, -4.006734699142141], + [-38.202410198586726, -4.0334859992635215], + [-38.19304811105368, -4.039539095317221], + [-38.179146074916034, -4.058431438537931], + [-38.15375272647681, -4.093695001478055], + [-38.14757585909162, -4.1016939567064465], + [-38.11831276708859, -4.145730543168451], + [-38.046480042299955, -4.215407362670243], + [-38.042104308678915, -4.219967678195827], + [-38.02800441123334, -4.2310170275279635], + [-38.01229697972136, -4.247619088977848], + [-38.004285246204134, -4.252962646778263], + [-37.98957622133111, -4.261112890980705], + [-37.984990169258595, -4.2670114262786205], + [-37.95648378637314, -4.296735202596902], + [-37.94378189821476, -4.30621817610241], + [-37.916637038696, -4.330784300565937], + [-37.88794462307069, -4.353903647547451], + [-37.86265473295459, -4.3725964399329955], + [-37.85005236895558, -4.3799766011431265], + [-37.83568866069887, -4.382576479491089], + [-37.80736459230685, -4.398556454234456], + [-37.796498156807594, -4.396049615606802], + [-37.785942150690936, -4.399940561811942], + [-37.77827160530645, -4.403582781773387], + [-37.77012736012695, -4.401332717373732], + [-37.76382791599763, -4.423285283448635], + [-37.769552231696174, -4.426431306820965], + [-37.751713805248194, -4.443468160675438], + [-37.743182911344256, -4.471703495892964], + [-37.72940891701582, -4.497252120757313], + [-37.705936165147904, -4.520944519690076], + [-37.69680907981479, -4.5275487457017585], + [-37.68862454725043, -4.532854909450825], + [-37.68451461278536, -4.537462415489861], + [-37.675879020805276, -4.5480290077281005], + [-37.66915178481505, -4.556259040794314], + [-37.657483751903456, -4.569559755597892], + [-37.654377197667905, -4.573099551184614], + [-37.640259978306304, -4.586791025213481], + [-37.59768698660679, -4.622917782648356], + [-37.582165535255164, -4.629547746895152], + [-37.56679701431227, -4.639432622165241], + [-37.54049249869041, -4.644317854927293], + [-37.52218951035433, -4.638756582905394], + [-37.49910244778413, -4.625966785058968], + [-37.4925279418308, -4.629453429923627], + [-37.473136331572675, -4.6491790629291225], + [-37.42437509172908, -4.666026493385278], + [-37.41488401398239, -4.67139546594083], + [-37.37844990379079, -4.6809700876838445], + [-37.35791104734683, -4.6895248392033775], + [-37.357269149016204, -4.692523645389326], + [-37.351832529220346, -4.692197916788045], + [-37.35211820275525, -4.694718806384176], + [-37.34199139557107, -4.692442225712354], + [-37.325223816321255, -4.701789765079698], + [-37.30267732730453, -4.723929523904841], + [-37.28740234972725, -4.7429599498460675], + [-37.27665233411668, -4.76933217183646], + [-37.266954650479754, -4.799915013130097], + [-37.2530194687015, -4.831772356973367] + ] + ] + }, + "DF": { + "name": "Distrito Federal", + "coordinates": [ + [ + [-47.52418803722316, -15.50045453406075], + [-47.5004537232537, -15.500438028954393], + [-47.49592626842079, -15.500306571405465], + [-47.49593716677435, -15.500404851053665], + [-47.493047666771076, -15.500402115042679], + [-47.41731449912635, -15.500321446429611], + [-47.417696946550365, -15.546838244302943], + [-47.41622508889926, -15.546813437531332], + [-47.41436258582444, -15.548186927906968], + [-47.41220340328147, -15.548335781138686], + [-47.41141850844646, -15.547505530607342], + [-47.40931249509941, -15.54806299891633], + [-47.40700394617242, -15.546520416952188], + [-47.406836933074985, -15.546408816474665], + [-47.40581045341463, -15.546134790751877], + [-47.40478451290863, -15.546454445521196], + [-47.4047836440727, -15.546454716223929], + [-47.40478127539274, -15.546457033955422], + [-47.40142355067862, -15.549742446798547], + [-47.39808424195229, -15.552085406673921], + [-47.39800687557832, -15.553045477219557], + [-47.399303659408126, -15.55402159634558], + [-47.39953691302774, -15.554197170150937], + [-47.399701528974106, -15.555173432209417], + [-47.39925935145966, -15.556166675818853], + [-47.398558905884926, -15.55706955834707], + [-47.39686331209689, -15.55788349360394], + [-47.396469899546354, -15.557934682249085], + [-47.394840247084566, -15.558146715525949], + [-47.39301024924511, -15.559952220956799], + [-47.392063075404906, -15.562439973328651], + [-47.38991594605351, -15.56537714994074], + [-47.38959084634711, -15.567432920137838], + [-47.38959065344913, -15.567434139908302], + [-47.38836262866278, -15.567596083276227], + [-47.38812583049426, -15.567427740000348], + [-47.387396886464366, -15.566909520097939], + [-47.38536579056597, -15.566635043953644], + [-47.38122820532082, -15.566952686848344], + [-47.3804226248315, -15.567395545658206], + [-47.38042206794204, -15.56739585180009], + [-47.37950502020363, -15.573234166715727], + [-47.37697901577353, -15.575846197956931], + [-47.374200493202295, -15.577838717778448], + [-47.37206363208376, -15.578152159347033], + [-47.3698080688179, -15.579225776079571], + [-47.3662512904521, -15.578183888208573], + [-47.362703426822186, -15.577994919370724], + [-47.361754366779415, -15.578643956813565], + [-47.361366667489705, -15.579529954868272], + [-47.359392953862255, -15.580062755018707], + [-47.359032991300104, -15.580159923869713], + [-47.35737058941018, -15.581326310947523], + [-47.35736276178357, -15.581331802957946], + [-47.35644711441318, -15.58137800924521], + [-47.35364642149424, -15.578934476446573], + [-47.35116860477523, -15.58018539180432], + [-47.34985152168603, -15.5800480801282], + [-47.34764606403698, -15.579818133811765], + [-47.34432393534121, -15.581670635771976], + [-47.34432224200163, -15.581671579996867], + [-47.34377865571473, -15.582298559368938], + [-47.34208016240992, -15.582865621427183], + [-47.34194922871592, -15.582909334464413], + [-47.3391625985641, -15.584420064861083], + [-47.33414531826978, -15.587139949154926], + [-47.33248824553208, -15.586779135182809], + [-47.33228251795358, -15.586734338775573], + [-47.330091557804266, -15.586955843165258], + [-47.3277884759779, -15.588435464034173], + [-47.32700578123091, -15.588938296739842], + [-47.325805356307434, -15.589134803869362], + [-47.3258050697011, -15.589134430228414], + [-47.32380953228287, -15.586532867321177], + [-47.32269413338119, -15.586121872511619], + [-47.32269400832084, -15.586121891829189], + [-47.32269277536778, -15.586122082278688], + [-47.32167221557793, -15.586279721607315], + [-47.31844972082981, -15.588419626779817], + [-47.31731598443981, -15.588573176624424], + [-47.316948382381256, -15.589551270766272], + [-47.31704888319244, -15.590736028580608], + [-47.31714399046488, -15.591857208875192], + [-47.31683608710291, -15.592464429353765], + [-47.31583824269965, -15.594432257397338], + [-47.31636521976066, -15.596288768536652], + [-47.31636551530365, -15.59628980971262], + [-47.31636557122181, -15.59629000670812], + [-47.32244880443224, -15.59797581983554], + [-47.32244920350619, -15.597975930422646], + [-47.32244962553075, -15.597978284565116], + [-47.323399327326335, -15.603275872841566], + [-47.32566408154064, -15.609720631666459], + [-47.32703149042974, -15.611731256255231], + [-47.327556217483085, -15.612502799486714], + [-47.329726862930805, -15.619821128598172], + [-47.32975929243207, -15.619930462135105], + [-47.329767203242675, -15.61994220243669], + [-47.3309519963552, -15.621700519233242], + [-47.33049162212413, -15.622116392551995], + [-47.330202248196244, -15.622377793324407], + [-47.32986252882065, -15.623644262811354], + [-47.331901668692815, -15.626348259310332], + [-47.3321165945569, -15.62663325690921], + [-47.333092957021464, -15.62992240356645], + [-47.33286824507075, -15.631956056842247], + [-47.332161511064655, -15.632615800113857], + [-47.33047126413129, -15.634193632147895], + [-47.33062170399505, -15.637070870769893], + [-47.330649590762505, -15.637604229779257], + [-47.329063632704724, -15.643072906081333], + [-47.33003637178491, -15.644980119450382], + [-47.3291987511642, -15.646059912560315], + [-47.3269887534048, -15.647580864498106], + [-47.32669890142074, -15.647780341025234], + [-47.326561870819674, -15.648815719090557], + [-47.32656151527016, -15.648818405531795], + [-47.32769529430264, -15.649275883941566], + [-47.327865802630114, -15.650315179048675], + [-47.32736635172221, -15.651014833837852], + [-47.32667294753806, -15.651986175938056], + [-47.32669549009582, -15.65298415600215], + [-47.32761087550359, -15.65327151273227], + [-47.32916584489175, -15.655923448034711], + [-47.32916678392967, -15.655925049505756], + [-47.329165023081046, -15.655935062943051], + [-47.32867313793177, -15.658732206932703], + [-47.32686280202181, -15.65990561783918], + [-47.32647792392118, -15.661979306747229], + [-47.326558748765315, -15.662935027118982], + [-47.327449883932786, -15.663366319419222], + [-47.32808179883365, -15.66456969168473], + [-47.328390041040095, -15.665156681042529], + [-47.32796926254157, -15.665466663428592], + [-47.32662112808321, -15.666459804355474], + [-47.327446972605834, -15.669494682592912], + [-47.3269622712121, -15.673492221597263], + [-47.32694779414243, -15.673611615439006], + [-47.32694941091071, -15.67361499394603], + [-47.327977867401536, -15.67576410668659], + [-47.328672251954785, -15.678795018294288], + [-47.32927660001528, -15.679780083174755], + [-47.33090822894597, -15.68062746519646], + [-47.331229511305544, -15.680794320257352], + [-47.33150916410951, -15.681691382433064], + [-47.33150803294119, -15.68169224578488], + [-47.329671510005745, -15.683093932176156], + [-47.32908670037859, -15.684998939550718], + [-47.328196742314965, -15.685358308015594], + [-47.32780613018863, -15.68648842209244], + [-47.327972648450015, -15.687930083861156], + [-47.32797275711608, -15.687931024657056], + [-47.327840808079195, -15.687916114362112], + [-47.32513664470644, -15.687610525175291], + [-47.32512007495525, -15.687613990816736], + [-47.32172637430517, -15.688323768898993], + [-47.32156121583858, -15.687218746323392], + [-47.32155788788303, -15.687196480005808], + [-47.32066756264549, -15.686738201898347], + [-47.31972585081299, -15.687014889183242], + [-47.319725211405824, -15.687015077047704], + [-47.31738946842631, -15.689945002884441], + [-47.31678196149313, -15.692253544524304], + [-47.315195257018964, -15.693966304835978], + [-47.31267375786386, -15.694553626970563], + [-47.31267350020889, -15.694554249592755], + [-47.312280507856656, -15.695503907840362], + [-47.31219420797947, -15.697540754828953], + [-47.31362561364292, -15.698822589870359], + [-47.314116550018895, -15.699262222183558], + [-47.3140869304136, -15.703330394040306], + [-47.31356518374694, -15.705552562023952], + [-47.31233584654129, -15.707178194676384], + [-47.31233737125942, -15.707181189180671], + [-47.312888330967894, -15.708263253927262], + [-47.31300370249382, -15.708287566884186], + [-47.31408416152407, -15.70851525561163], + [-47.3138096919585, -15.709485317366116], + [-47.313942130559134, -15.70984571592486], + [-47.31414391890021, -15.710394830709811], + [-47.3145124144882, -15.710792594347643], + [-47.31553227300415, -15.711893446323785], + [-47.31546589296624, -15.712375696756052], + [-47.31509125176319, -15.715097382616117], + [-47.31854548160408, -15.717488710006503], + [-47.31854594458686, -15.717489024588708], + [-47.318545505756006, -15.717490302956634], + [-47.318169287757016, -15.718586263524708], + [-47.31856750186923, -15.718782616429532], + [-47.31900430260997, -15.718997994615851], + [-47.319839786369194, -15.720307297328837], + [-47.31942283598809, -15.72223528510296], + [-47.318640966889625, -15.723099500319213], + [-47.3179506348907, -15.723862527965897], + [-47.31750514295198, -15.726346676638654], + [-47.31786405230604, -15.727300975884475], + [-47.31679171679006, -15.728830751545221], + [-47.31750525736835, -15.729446347724384], + [-47.318723144644146, -15.729627165218323], + [-47.318753865263396, -15.7297355548085], + [-47.31909046008078, -15.730923136078188], + [-47.31880909761134, -15.732955866833166], + [-47.318807649772545, -15.732956409943716], + [-47.31783654590597, -15.733320685554084], + [-47.31689120798582, -15.733083464949559], + [-47.31680044493196, -15.734701625171962], + [-47.31675627877211, -15.735489008953326], + [-47.31575555389464, -15.736114404509548], + [-47.315573178605135, -15.735768675823028], + [-47.31525460739, -15.735164758195898], + [-47.314367872875074, -15.735758578617133], + [-47.314420559320574, -15.736684688348308], + [-47.312903265023344, -15.738089969387689], + [-47.3128906541459, -15.738101649131215], + [-47.31368595947925, -15.738700889410397], + [-47.31303734053103, -15.739194962565039], + [-47.31286826243686, -15.739323753785282], + [-47.31262672623651, -15.740396326453721], + [-47.31333798282961, -15.7421052882104], + [-47.31344111074995, -15.742195741379883], + [-47.314089327709915, -15.742764287838266], + [-47.31371945513008, -15.744264360225399], + [-47.31347542373906, -15.74525404682059], + [-47.31411984333133, -15.747239981219435], + [-47.31412040991793, -15.74724172728125], + [-47.31412056789987, -15.74724221413747], + [-47.315061468944336, -15.747019326695357], + [-47.31538083988762, -15.746520653159463], + [-47.31567157211686, -15.746066693736784], + [-47.31663997478522, -15.745800306207547], + [-47.316641542984776, -15.745799874823984], + [-47.31664191822434, -15.745799771602332], + [-47.31689420024541, -15.746930525540535], + [-47.31689091127998, -15.74693807932137], + [-47.31650040594159, -15.747834948999868], + [-47.317254625599546, -15.748748299261791], + [-47.317138678564454, -15.750829180508356], + [-47.317961626261365, -15.751825128085367], + [-47.318252091197934, -15.752176651931958], + [-47.318566082916114, -15.754582017430575], + [-47.3185661335708, -15.754582405475388], + [-47.321918879675344, -15.753957864572692], + [-47.32191964014607, -15.7539577229076], + [-47.3215026849059, -15.755311582297916], + [-47.320813832044536, -15.755655030299843], + [-47.32033427389102, -15.755894126059657], + [-47.31995403357728, -15.756975506529246], + [-47.31995324903965, -15.756977737689843], + [-47.31996024406427, -15.756986320474102], + [-47.320698144475095, -15.757891708133556], + [-47.320721631421925, -15.757893889487393], + [-47.3227281996342, -15.75808024046532], + [-47.32328380601622, -15.759300208510819], + [-47.3232221284028, -15.760610087422602], + [-47.32430581459749, -15.760902755437737], + [-47.32500761336798, -15.762021159478206], + [-47.32559802580632, -15.763706307749429], + [-47.32567262000163, -15.763919212229501], + [-47.32539118515854, -15.765097515621227], + [-47.32578628699167, -15.765917274129997], + [-47.32669818433039, -15.765101387523853], + [-47.327057787005344, -15.766092570670086], + [-47.3287039063883, -15.767408169369338], + [-47.32870452955888, -15.76740866740997], + [-47.32817010006802, -15.769467863222184], + [-47.32741206026008, -15.769955800386526], + [-47.32719718312725, -15.770094112082557], + [-47.326839252209105, -15.771085177647883], + [-47.32683771005872, -15.771089447638122], + [-47.32684074780199, -15.771092069513193], + [-47.328166055488914, -15.772235932936294], + [-47.32911998427436, -15.773809466264956], + [-47.33014589035997, -15.773858674909784], + [-47.33014637343741, -15.773858698079954], + [-47.32981261953223, -15.779473686290968], + [-47.32981260776748, -15.77947388420238], + [-47.3298133239733, -15.779473852585067], + [-47.33089636913919, -15.779426038194998], + [-47.33154292524119, -15.77988214412044], + [-47.3320544476842, -15.78024298953468], + [-47.334221671670505, -15.780514705972985], + [-47.334222054446215, -15.780514753961706], + [-47.334223526045434, -15.780520558942298], + [-47.33523228439984, -15.784499738668568], + [-47.33553414840132, -15.784657224295463], + [-47.33617601985036, -15.784992093383561], + [-47.3369745228346, -15.786267996530052], + [-47.339063941876425, -15.790887844351026], + [-47.338307525352214, -15.791771388548897], + [-47.33822890050901, -15.793162211522539], + [-47.3381939444122, -15.793780544019087], + [-47.33869714468252, -15.794640002548904], + [-47.33869794585311, -15.794641370931028], + [-47.3406754515654, -15.794422153381564], + [-47.340968537725054, -15.795308004984491], + [-47.3405351637081, -15.79613579933898], + [-47.34128472935671, -15.796912456736333], + [-47.34333715547866, -15.796146521509556], + [-47.34458561641646, -15.797912327907133], + [-47.343879676263896, -15.799456356642532], + [-47.34369831132784, -15.799853031806396], + [-47.34570079181358, -15.802887116139036], + [-47.346448150640605, -15.803475917689516], + [-47.347455193333985, -15.803237012752227], + [-47.34855585644138, -15.803801282725846], + [-47.34855634521634, -15.803801533301241], + [-47.34855527656627, -15.803802817693], + [-47.34791471391227, -15.804572694160646], + [-47.347004438781205, -15.807907868900923], + [-47.347002920129235, -15.807913432983508], + [-47.34814598057998, -15.808055145791792], + [-47.34894813255154, -15.807515295692506], + [-47.3495349218785, -15.809554790269798], + [-47.35233286952961, -15.812228525507328], + [-47.35233248632097, -15.812228767482548], + [-47.351560428636986, -15.812716276674367], + [-47.35116992090423, -15.813802372618902], + [-47.352616261020955, -15.814121097857166], + [-47.35325608064955, -15.814262089568139], + [-47.35341932886348, -15.815235652471328], + [-47.35289962033058, -15.816010649249634], + [-47.35211433877413, -15.817181655947996], + [-47.35316556253361, -15.817784048349525], + [-47.35416767517845, -15.818358290868348], + [-47.354081021462626, -15.819263153385476], + [-47.35524988047381, -15.819531430372967], + [-47.35483434913374, -15.820526024083362], + [-47.353835356616436, -15.82111470285139], + [-47.35383550440659, -15.822248517233797], + [-47.3538355044214, -15.82224863139769], + [-47.35384243241099, -15.822251438480409], + [-47.35484012461969, -15.82265568050533], + [-47.35692180810641, -15.82180252588257], + [-47.35705973619681, -15.82275106433014], + [-47.35618811084787, -15.823101027174992], + [-47.357382922900705, -15.82374427676989], + [-47.35738390089947, -15.823744803290012], + [-47.35839465028813, -15.823338866433854], + [-47.35863077298795, -15.82227843663326], + [-47.359028774169374, -15.82049096959571], + [-47.36003311605345, -15.820630156375453], + [-47.36003336260891, -15.820630190543774], + [-47.3600337694509, -15.82063024692506], + [-47.360034128530046, -15.820633476793223], + [-47.36017008455475, -15.821856382850104], + [-47.35933541781095, -15.822845435812326], + [-47.360724385810286, -15.823595061215093], + [-47.36122493972224, -15.823865206724802], + [-47.36177736937204, -15.824933276450919], + [-47.361449918259865, -15.826591436321982], + [-47.36142125656077, -15.826736572483213], + [-47.36272941048553, -15.82751493438652], + [-47.36428955541586, -15.82761046883394], + [-47.36506053149158, -15.827657674912869], + [-47.36592026472411, -15.82819564536881], + [-47.36592033189099, -15.828195681063171], + [-47.36592080205973, -15.828195981600045], + [-47.36489534430415, -15.831272835349914], + [-47.36525020028099, -15.83212914023482], + [-47.3636713956451, -15.833850345366228], + [-47.363671492035095, -15.8338504506138], + [-47.364500953636096, -15.834756129132773], + [-47.364559574843774, -15.836699635976737], + [-47.36539359670807, -15.837156291717946], + [-47.3664132424429, -15.835877679771954], + [-47.366582889937064, -15.835664943379998], + [-47.36728333753171, -15.836520973493494], + [-47.36728312199497, -15.836521248056819], + [-47.366110778150464, -15.838014631583423], + [-47.366695944886914, -15.838740467235931], + [-47.36763922615022, -15.838742187899372], + [-47.3679771471071, -15.84068521075742], + [-47.3694379608025, -15.841553314565047], + [-47.36943842310219, -15.841553589289012], + [-47.369437999442084, -15.841553674436254], + [-47.3679199902411, -15.841858758024056], + [-47.36852767473629, -15.847253178706351], + [-47.370199994565944, -15.848650554790494], + [-47.37020047003886, -15.848650952087551], + [-47.369088647028974, -15.849144586813376], + [-47.36866780727768, -15.848943441065714], + [-47.368255464169096, -15.848746355316102], + [-47.36736221733646, -15.849192927031158], + [-47.367360922941124, -15.84919357414941], + [-47.367250685252486, -15.854574243183976], + [-47.369166890984, -15.854532803315003], + [-47.36955637696744, -15.855757678105928], + [-47.368565041175295, -15.85639243755144], + [-47.3686315778062, -15.856887370370634], + [-47.369224991827664, -15.861301462685057], + [-47.369721885473254, -15.862071355767908], + [-47.372730110688245, -15.863751227600225], + [-47.37273062670354, -15.863751515751273], + [-47.37269762829216, -15.864785634483123], + [-47.36963947849047, -15.865150837263412], + [-47.36989286275943, -15.8662817233715], + [-47.37219541566496, -15.870125673424559], + [-47.37055914484099, -15.8712529604165], + [-47.37053683533844, -15.872330530129487], + [-47.372717035590824, -15.872931526193437], + [-47.37255391457925, -15.87397336520624], + [-47.37142537628807, -15.873947099685395], + [-47.37141417445239, -15.874124482304527], + [-47.37136698533705, -15.874871718989386], + [-47.37222428161961, -15.87695637996758], + [-47.374306961540405, -15.880037244074943], + [-47.37430796692139, -15.880038731291263], + [-47.37430809891219, -15.880038926539482], + [-47.375034690039826, -15.880671156553376], + [-47.376263069604555, -15.880714112975443], + [-47.37919547691927, -15.880816631072857], + [-47.37936268213928, -15.881784967706318], + [-47.376082950803614, -15.88288743439537], + [-47.377585756100366, -15.886653174467341], + [-47.37739967189821, -15.887597279864366], + [-47.37594458421477, -15.887462481745164], + [-47.37542046879394, -15.887413925724257], + [-47.37589828763071, -15.888998325458255], + [-47.37636402556591, -15.890542650527923], + [-47.37600902725085, -15.891395347358594], + [-47.37582588594387, -15.891399960668531], + [-47.37505624603771, -15.89141934610143], + [-47.37455813819041, -15.893470834447635], + [-47.37519319152168, -15.895467883542896], + [-47.37569726190872, -15.895665885832463], + [-47.3760611266176, -15.89580881347207], + [-47.375666720955145, -15.896694450738627], + [-47.37566523305369, -15.896694924650737], + [-47.37383600623107, -15.897277542342477], + [-47.374092385573306, -15.89790288496555], + [-47.374224350287086, -15.89822476292877], + [-47.3734784393786, -15.899315331279462], + [-47.37233651233984, -15.899379366222545], + [-47.371141730896504, -15.900169602875327], + [-47.372673211658615, -15.904196843941552], + [-47.37267386681064, -15.90673255766394], + [-47.3726480000746, -15.90673861971036], + [-47.36663832504456, -15.908146929274013], + [-47.36458552039834, -15.90809324773969], + [-47.36364064611055, -15.908998271120991], + [-47.3636400411196, -15.90899885059142], + [-47.36363988750932, -15.908999238355705], + [-47.36328131277303, -15.909904396617575], + [-47.364243070508174, -15.910346833750967], + [-47.364369198499084, -15.910404855950095], + [-47.366378633499124, -15.91004569450277], + [-47.36656473406507, -15.910948114117113], + [-47.36533212811586, -15.912627579745024], + [-47.36533239309593, -15.91278049630617], + [-47.365333994536975, -15.91370497875792], + [-47.36611266245678, -15.914743202640175], + [-47.366255860812664, -15.91484358427819], + [-47.366998521521275, -15.915364184527995], + [-47.36753015613473, -15.917689657404821], + [-47.36564651349418, -15.920947724176061], + [-47.36467240350402, -15.920990744797189], + [-47.363463655883734, -15.920300963549444], + [-47.36283908288781, -15.9199445420292], + [-47.3617241983636, -15.919785698146972], + [-47.36172307547677, -15.919785538159996], + [-47.35975321577079, -15.924830741740523], + [-47.36017345377805, -15.925687309471964], + [-47.36106068963065, -15.925983999763277], + [-47.36058492423184, -15.927092609415437], + [-47.36109008294046, -15.927952674054634], + [-47.360953027637585, -15.928990774406937], + [-47.36194384872541, -15.929263678825551], + [-47.36180888314861, -15.930210194943346], + [-47.360972555668894, -15.930663531362834], + [-47.360750439928005, -15.931705592059208], + [-47.360750307561425, -15.931706213054806], + [-47.362618592354835, -15.93200685792582], + [-47.36261651335617, -15.93093754353082], + [-47.36344975052384, -15.930307505982952], + [-47.363450273280996, -15.930307110706856], + [-47.36431011201414, -15.931123209214302], + [-47.36319732347284, -15.933471055035634], + [-47.36319725996908, -15.933471189018553], + [-47.36320765035005, -15.933474501027911], + [-47.364195023689426, -15.933789230835787], + [-47.36536315016673, -15.933248986215045], + [-47.36648172383522, -15.93361563854283], + [-47.36719708593684, -15.934562997441406], + [-47.37164569069874, -15.93570529695125], + [-47.37247603222155, -15.93656720595923], + [-47.37214415673997, -15.937563438891063], + [-47.37151686657877, -15.937393575906176], + [-47.36911460688259, -15.936743053002042], + [-47.368529696277, -15.937506007677149], + [-47.36891774941437, -15.938461335051052], + [-47.3697942272112, -15.938878965940562], + [-47.370813876380694, -15.939364810118825], + [-47.370502104132115, -15.940317621942828], + [-47.368584722909496, -15.940312929890132], + [-47.3675034046308, -15.940854936430407], + [-47.36772583120747, -15.941760275282329], + [-47.368698638813385, -15.942014652304008], + [-47.368170752829926, -15.944927750458262], + [-47.36714393184787, -15.94664849694752], + [-47.36714441629575, -15.946651053467424], + [-47.36735800872803, -15.947778217049615], + [-47.36748761841704, -15.947686054714412], + [-47.369138931800514, -15.946511829489875], + [-47.36961223833651, -15.947460784414362], + [-47.36897201649145, -15.95207677746572], + [-47.37055491684437, -15.953186368249115], + [-47.37022903822569, -15.955951863490327], + [-47.37022902224879, -15.95595199907093], + [-47.370229610067504, -15.955952071208053], + [-47.37247218742915, -15.956227268577972], + [-47.37347040859443, -15.957129381874964], + [-47.37346794090017, -15.957135035540508], + [-47.37297500694508, -15.958264373888273], + [-47.371945007161116, -15.958890609162355], + [-47.37180320825524, -15.960071452974885], + [-47.37219511271389, -15.960928262281966], + [-47.37219537716758, -15.960928840447385], + [-47.37219544188126, -15.960928981928507], + [-47.37219657702364, -15.960929346210484], + [-47.376033246424875, -15.962160544132184], + [-47.3767212068459, -15.962836620834919], + [-47.37672769216259, -15.963744357340858], + [-47.37573512892945, -15.964049466074092], + [-47.375557874262554, -15.964103952611605], + [-47.373575583739274, -15.966707498730614], + [-47.37356486821321, -15.966721572257978], + [-47.37356566446066, -15.966723392412614], + [-47.37433739486505, -15.968487490747506], + [-47.374751599878486, -15.968724887174933], + [-47.375283069643004, -15.96902949062874], + [-47.37613898850016, -15.968468915376226], + [-47.37707881408221, -15.968876845711991], + [-47.37683736395524, -15.970075320347258], + [-47.37591711955013, -15.970691890472715], + [-47.37514566275958, -15.971208765217213], + [-47.37583350161974, -15.97220024244534], + [-47.37697629000885, -15.972632359008696], + [-47.377776239193686, -15.973829382318504], + [-47.37777872988467, -15.973833109302252], + [-47.37777813584119, -15.973833434726439], + [-47.376085381791526, -15.974760733784134], + [-47.376253303370454, -15.976184685242623], + [-47.37705619028434, -15.977315368234638], + [-47.37686559957408, -15.978381469327378], + [-47.376861278449894, -15.978405640042359], + [-47.376860284861024, -15.978405526797738], + [-47.37481369747809, -15.97817225651955], + [-47.374030902058514, -15.978894092706854], + [-47.37411996292356, -15.979432361096128], + [-47.37419527415886, -15.97988752835288], + [-47.37320170302574, -15.97977643408195], + [-47.37220340771779, -15.979664806938779], + [-47.37147711981945, -15.980422622434837], + [-47.37147639371693, -15.980423380052205], + [-47.372731278681385, -15.982017192158665], + [-47.37480761631277, -15.98228653184406], + [-47.37442568432663, -15.984645109080093], + [-47.37439772295614, -15.984817777579266], + [-47.37581125343639, -15.986628237121872], + [-47.37581362448236, -15.986631273944422], + [-47.37581293553576, -15.986631363733865], + [-47.37475285485876, -15.98676951972195], + [-47.37412210690098, -15.986086176852869], + [-47.37331476921156, -15.98703997153124], + [-47.37139132467704, -15.994590487782212], + [-47.37139078342382, -15.994592612361629], + [-47.371389379527194, -15.994592134483323], + [-47.36950519482275, -15.993950759235997], + [-47.3685294443846, -15.994082460349219], + [-47.36852871736467, -15.99408255847636], + [-47.36852846903665, -15.994085304420976], + [-47.368307487593384, -15.996528790939154], + [-47.368822400683214, -15.998205156019752], + [-47.36920186453999, -15.999440537017938], + [-47.368978766207846, -16.000390641934654], + [-47.36861404460081, -16.00194740989214], + [-47.367590537493925, -16.002086734094096], + [-47.365756460930065, -16.00076352041254], + [-47.365168701504714, -16.0007607477028], + [-47.364026497628345, -16.000755354833743], + [-47.36404038815345, -16.000870442820634], + [-47.364040430643605, -16.000870794866813], + [-47.36441977261119, -16.004118061928526], + [-47.36264274815175, -16.005555965951892], + [-47.36145112839434, -16.005690090785475], + [-47.36114554274379, -16.005570106899246], + [-47.35936570022205, -16.004871266216572], + [-47.35860955011135, -16.005685460506303], + [-47.359813497824085, -16.007732819729664], + [-47.3598138191512, -16.007733366153573], + [-47.356700563710874, -16.007998895559282], + [-47.35347026141973, -16.00683434535533], + [-47.35263524068113, -16.006533304168162], + [-47.351573137761285, -16.006565517726703], + [-47.34981121146813, -16.006618945186748], + [-47.34775481099982, -16.006024643549036], + [-47.347753783532184, -16.006025312706733], + [-47.34692354707425, -16.006566016459686], + [-47.34719792570659, -16.006996233543852], + [-47.347501048869596, -16.007471519090977], + [-47.347479277030125, -16.008379241356096], + [-47.34669565579653, -16.008921177901982], + [-47.346086414038716, -16.00893767899288], + [-47.34528283870206, -16.008959440864924], + [-47.344727285922794, -16.011311556619894], + [-47.3447268334013, -16.011313472484307], + [-47.34472410541521, -16.011313376994284], + [-47.34045226010079, -16.011163803482816], + [-47.33731471595421, -16.012018878694203], + [-47.337312712337564, -16.012019424722038], + [-47.337312615684546, -16.012020295141912], + [-47.33717649174055, -16.013246159723057], + [-47.33777252559045, -16.01348966166823], + [-47.34017387258013, -16.01447067994932], + [-47.34000273556006, -16.01565142099318], + [-47.33911300321214, -16.01600944422704], + [-47.3392837394895, -16.017057862957614], + [-47.34008894721913, -16.01814291732314], + [-47.33949931123917, -16.019005263039567], + [-47.33949884432949, -16.019004952853994], + [-47.336197393172256, -16.01681891529268], + [-47.33519493409913, -16.01686075560125], + [-47.33519478866883, -16.016860761670817], + [-47.33444616293644, -16.02058436181721], + [-47.33211603325959, -16.021555893755846], + [-47.33198030821174, -16.021612482242478], + [-47.3303396685123, -16.021751399195992], + [-47.32972195671131, -16.02261283304707], + [-47.32994678882361, -16.02455960057951], + [-47.329203372659116, -16.025237449935027], + [-47.32767300659231, -16.0254606057348], + [-47.32837055330213, -16.027268601047027], + [-47.328370801600244, -16.027269244615084], + [-47.32836719845147, -16.027270181359768], + [-47.32558778053697, -16.02799275109182], + [-47.32523078179911, -16.028517676266397], + [-47.325037192668745, -16.028802324914132], + [-47.32394607031866, -16.02902914142035], + [-47.323946153069755, -16.02902861208615], + [-47.324307542076454, -16.026716867366147], + [-47.32394824120935, -16.0258306447917], + [-47.32180487921381, -16.02621269736807], + [-47.321804772028585, -16.02621285894942], + [-47.32180421405384, -16.02621370009432], + [-47.32111573404745, -16.02725157341098], + [-47.32137005375068, -16.029083057332034], + [-47.32150679447852, -16.030067793227364], + [-47.32108486521357, -16.030971176841053], + [-47.32108348345278, -16.030971075645354], + [-47.31917299312309, -16.030831149008804], + [-47.317393014172694, -16.03181661604505], + [-47.31739172680188, -16.03181732877489], + [-47.31739160221314, -16.031818000671183], + [-47.31718068726447, -16.032955436132315], + [-47.31818682145483, -16.034104515687602], + [-47.318527845700636, -16.034493987123128], + [-47.320033583578436, -16.03473017627985], + [-47.31908893954201, -16.0366973248841], + [-47.31730563804905, -16.036932307902628], + [-47.31603477053051, -16.036515111730576], + [-47.31235259145184, -16.03530628909309], + [-47.308974494285174, -16.036094380727747], + [-47.30897352755304, -16.03609460625211], + [-47.30897359739252, -16.03609518308912], + [-47.30914560809813, -16.03751589944951], + [-47.31050781130647, -16.03945691197268], + [-47.311114101574574, -16.04032080686421], + [-47.311360913179996, -16.04132574264674], + [-47.31044533738993, -16.041863378651197], + [-47.30986960557788, -16.04174019172837], + [-47.30915871379483, -16.041588082947857], + [-47.308560158234506, -16.042104747024325], + [-47.3085588776002, -16.04210585244312], + [-47.30864962618703, -16.042829223980068], + [-47.31006888563719, -16.043777985481636], + [-47.30948716046462, -16.045233402299274], + [-47.3086485246678, -16.045573525373527], + [-47.30816394009755, -16.04577005473087], + [-47.308670780354376, -16.046430083601308], + [-47.309593732517776, -16.047631979185823], + [-47.3087781537191, -16.05054159875497], + [-47.308778066727506, -16.05054190909532], + [-47.415623007550515, -16.050635336290014], + [-47.61748672856331, -16.05066587578751], + [-47.67390628729061, -16.050640393128308], + [-47.683444813242176, -16.050634329848098], + [-47.73891450577173, -16.05082831020288], + [-47.81448155699094, -16.05106989242835], + [-47.88997960263475, -16.051284872904937], + [-47.939192734499464, -16.051409921920097], + [-47.939192601157465, -16.05140956083539], + [-47.93914608424207, -16.0512835948442], + [-47.98165317437728, -16.0514330532037], + [-47.981757694688646, -16.05143341029259], + [-48.03439995398449, -16.051606459069582], + [-48.05065453150529, -16.051657658087436], + [-48.065270401642756, -16.051702055623316], + [-48.08664873627134, -16.05176576032383], + [-48.145023950251435, -16.051721034843553], + [-48.25987083138778, -16.051585525662343], + [-48.279089860357566, -16.05155725122711], + [-48.27908775745752, -16.05154483486788], + [-48.27873162639981, -16.049442083670424], + [-48.27874825218116, -16.04903079244142], + [-48.27892404864441, -16.04468159564741], + [-48.27839459334715, -16.043224171801977], + [-48.277822624750314, -16.042176378238032], + [-48.27770176654883, -16.041954975851517], + [-48.2773425289199, -16.039776799433483], + [-48.27733983042968, -16.038601137933707], + [-48.277339823059954, -16.03859792779204], + [-48.27733754224089, -16.03859450098846], + [-48.276174692071635, -16.036847367499014], + [-48.27517967937511, -16.036371007354838], + [-48.27406167279539, -16.036207220114484], + [-48.273477647084654, -16.034077968815748], + [-48.27320230843643, -16.031483480263848], + [-48.273197916670924, -16.03144209697324], + [-48.27312003964636, -16.031342004386993], + [-48.27178242223449, -16.029622794448642], + [-48.27159355345155, -16.028716903245343], + [-48.27159339249109, -16.028716131211556], + [-48.27159337171657, -16.028708433099997], + [-48.271590091531266, -16.02749316161864], + [-48.27169635796079, -16.027006442762556], + [-48.27206454440608, -16.025320058266487], + [-48.27206085847698, -16.02381632749391], + [-48.27190019109389, -16.023637614700522], + [-48.270795328132735, -16.022408648114943], + [-48.27059256463105, -16.021230771146044], + [-48.27059152653839, -16.019961071917553], + [-48.270931368878266, -16.01755853340218], + [-48.27134573081701, -16.016470836403833], + [-48.27172866813924, -16.014521156156466], + [-48.271588796670784, -16.013202776232127], + [-48.2720091904091, -16.0119361662063], + [-48.27261895621701, -16.010845550665756], + [-48.27270136353905, -16.01039371520073], + [-48.27284287408737, -16.009617812441], + [-48.27281734080755, -16.008484234706025], + [-48.272122088762885, -16.00635475531417], + [-48.27183303893572, -16.006061485755634], + [-48.27005933607642, -16.00426186481173], + [-48.26908866356739, -16.00258039463516], + [-48.26875898292996, -16.001624114332227], + [-48.267314330827865, -15.999914762517951], + [-48.26765047954515, -15.998618928760566], + [-48.26728755448411, -15.99758348203026], + [-48.266069162023605, -15.99574156681911], + [-48.264835386523345, -15.994797273710558], + [-48.26442708540862, -15.993682338321348], + [-48.26456371816884, -15.991552469754081], + [-48.26387339670327, -15.987521799116521], + [-48.26356289672945, -15.986614625652782], + [-48.26212017610966, -15.984939529178186], + [-48.261507451283606, -15.984012632953057], + [-48.260787974745284, -15.983354648646122], + [-48.2603438689101, -15.982218072316808], + [-48.260982708922796, -15.979454578583558], + [-48.26033493707638, -15.97774666803002], + [-48.260330087237215, -15.97773388088874], + [-48.260329572711896, -15.977732995767385], + [-48.25969946983297, -15.976649044345958], + [-48.25943027527049, -15.975605299412944], + [-48.259332210854325, -15.973773354900947], + [-48.25951066087196, -15.971487142685326], + [-48.25974966425081, -15.970593080404823], + [-48.25989783296687, -15.970038806348693], + [-48.26120586963748, -15.968085807907459], + [-48.26106512116243, -15.96709226508968], + [-48.259727274444316, -15.965544158833078], + [-48.25878799524109, -15.96378347283012], + [-48.258615043796276, -15.96260911384134], + [-48.257958849270665, -15.961700875226787], + [-48.25730435009642, -15.961615114265888], + [-48.25692547594275, -15.961565468341615], + [-48.256348805164855, -15.960523466277337], + [-48.25621546568701, -15.959913019373905], + [-48.25584310903682, -15.958208305827025], + [-48.25509600546393, -15.95691793053978], + [-48.253363919635305, -15.955455472397121], + [-48.253060435077714, -15.955199226923208], + [-48.25250578236614, -15.954113989759321], + [-48.25250471007919, -15.954111891705065], + [-48.25250426716398, -15.954109983550122], + [-48.25226345018401, -15.953072499038756], + [-48.252535897037426, -15.952070140018899], + [-48.25286807250036, -15.950848014979353], + [-48.25328900953994, -15.949851396522373], + [-48.25317331103512, -15.948668668033305], + [-48.25260160750508, -15.947831555797658], + [-48.25259125050861, -15.947816390582508], + [-48.25156460592211, -15.947448107661751], + [-48.251096840282244, -15.946454893522764], + [-48.25156282606961, -15.945189530398084], + [-48.252384742564374, -15.94376264635305], + [-48.25267606298814, -15.94302749978806], + [-48.25268079481709, -15.943015558967545], + [-48.252680750188794, -15.942755511463934], + [-48.25268073162636, -15.942744093871026], + [-48.252680096182615, -15.942353277137924], + [-48.25270218664201, -15.942213441456179], + [-48.25287628875475, -15.94111134023578], + [-48.25278510779181, -15.940162450248705], + [-48.25245854908254, -15.936764052517912], + [-48.25295727692423, -15.935903566871565], + [-48.25295779310618, -15.935902676266132], + [-48.253788440312526, -15.935312832752722], + [-48.25495742842247, -15.934947911751193], + [-48.25581768043242, -15.934269760415816], + [-48.256592287060045, -15.933318488266686], + [-48.25703286052458, -15.932463564722678], + [-48.257098697402654, -15.93233580881317], + [-48.257211319705824, -15.932312981840086], + [-48.25809201361271, -15.932134475161194], + [-48.258708275031886, -15.931263577758532], + [-48.25875432811771, -15.931010982602459], + [-48.258872194181905, -15.930364498329332], + [-48.25950990818851, -15.929625538469674], + [-48.261153210861245, -15.928986730650436], + [-48.26115475768864, -15.92898612933758], + [-48.26115480610911, -15.928986104945308], + [-48.261818295034004, -15.928651864664783], + [-48.262876423148434, -15.928535901997027], + [-48.264171837478884, -15.92901110236358], + [-48.265704417733566, -15.930869314149394], + [-48.26600401095953, -15.931663227638658], + [-48.266061467921666, -15.93181548635754], + [-48.26714760698911, -15.932455208641652], + [-48.26817222996482, -15.932860243127532], + [-48.27103488870752, -15.93276497445165], + [-48.27315408249624, -15.932135310997479], + [-48.274253671472735, -15.931514680152759], + [-48.27575997622307, -15.931179237463343], + [-48.276730892350436, -15.93054889254295], + [-48.276730461166316, -15.930547115423613], + [-48.27617056370965, -15.928239488078807], + [-48.2766188214332, -15.927260594096671], + [-48.2768146358629, -15.927163599235698], + [-48.27748116548812, -15.92683343779127], + [-48.27687175543099, -15.924867319065203], + [-48.27684871554885, -15.92479298571273], + [-48.27692604241104, -15.922684701507919], + [-48.27692751933518, -15.92264443238862], + [-48.276096138759875, -15.921982695910598], + [-48.27399416441935, -15.921248105323064], + [-48.273269108291466, -15.920994709564992], + [-48.27326905986016, -15.920994546872114], + [-48.27325773360605, -15.920956499134666], + [-48.27298426739694, -15.920037854074316], + [-48.27226366416462, -15.91912797995069], + [-48.27187177532023, -15.918091811642588], + [-48.27156327447546, -15.915141188014097], + [-48.27112053479749, -15.91428364669929], + [-48.27059683717822, -15.911709744417415], + [-48.27059592318734, -15.911705252242488], + [-48.27059638493603, -15.91170419963604], + [-48.27109539300931, -15.910566647921222], + [-48.27197835375224, -15.910068952588567], + [-48.27278199836061, -15.909956191097871], + [-48.27312265277019, -15.909908392016588], + [-48.274093873655154, -15.909592083914049], + [-48.274920439001, -15.908777039666626], + [-48.27572872623458, -15.90827645390515], + [-48.277317007123955, -15.90632968400344], + [-48.277315632815615, -15.906325257526348], + [-48.27700715397128, -15.905331681595067], + [-48.276259955034824, -15.904700981810437], + [-48.27570135640658, -15.903975372178957], + [-48.27581463198206, -15.902979531378005], + [-48.276424597033085, -15.902278904796852], + [-48.27711729379331, -15.901483240762342], + [-48.27670182468313, -15.899301857667485], + [-48.27569658188941, -15.898972781416546], + [-48.274648003503636, -15.89862951298607], + [-48.274816371351, -15.897634226221896], + [-48.275263232983605, -15.897004788398412], + [-48.275400196272734, -15.896811864312518], + [-48.27645498661162, -15.896543621009037], + [-48.27675789411151, -15.895678753978126], + [-48.27645182632308, -15.89467905656489], + [-48.274395014748194, -15.893060009812604], + [-48.275397829420086, -15.89258163196301], + [-48.276563755905606, -15.892379299978874], + [-48.27717459495634, -15.891558538297517], + [-48.276733122710525, -15.890656057836736], + [-48.27670290016285, -15.890631995211322], + [-48.27564606417611, -15.88979055652385], + [-48.27290025288084, -15.884175157540398], + [-48.27259315022191, -15.882817301665105], + [-48.27215093092819, -15.881684339218355], + [-48.27214990799615, -15.88168171846197], + [-48.272150150325736, -15.881680893025218], + [-48.27242804166437, -15.880734317867926], + [-48.27325579957868, -15.880234222572017], + [-48.27401213968088, -15.879551372983938], + [-48.275035010222176, -15.879417245790208], + [-48.276065708743886, -15.878833982313186], + [-48.27606973637451, -15.87883170309394], + [-48.27606954582177, -15.878830337387203], + [-48.275929985352185, -15.877830094218213], + [-48.276063532213406, -15.876742998048616], + [-48.276731298537406, -15.875888628893378], + [-48.276865970095784, -15.875793442675022], + [-48.277503335122404, -15.875342948795543], + [-48.278061151489446, -15.87411584063379], + [-48.27844945490532, -15.872937359479383], + [-48.27844971204126, -15.871938534069782], + [-48.27804354912617, -15.87130291272541], + [-48.27787013818924, -15.871031533453055], + [-48.27726452278015, -15.86929598809947], + [-48.278011360555695, -15.868616457580165], + [-48.27877597060321, -15.868509789060054], + [-48.27877654012472, -15.868509709606675], + [-48.27931481171359, -15.868433884072244], + [-48.28020131902041, -15.868132354784308], + [-48.28036953063249, -15.867138843436779], + [-48.28018115000909, -15.865874097866588], + [-48.279883622815795, -15.865118660832978], + [-48.27984130075315, -15.865011202528548], + [-48.28025614022682, -15.863850504700446], + [-48.28039761334611, -15.862811296606859], + [-48.28006640289199, -15.86167597514819], + [-48.28026005434282, -15.860773116376915], + [-48.281593541052644, -15.859883487100094], + [-48.28189643133105, -15.859681412867205], + [-48.28186938660952, -15.859038910180601], + [-48.28175730375701, -15.85637619508946], + [-48.28212176783437, -15.855377035058961], + [-48.2831339204895, -15.855167071735266], + [-48.28450893770234, -15.854881826366826], + [-48.28472688759405, -15.853745630875792], + [-48.2845958602289, -15.852796440618457], + [-48.28424779067659, -15.851756381761327], + [-48.28389738388032, -15.850709330564543], + [-48.28431551750363, -15.848767620068132], + [-48.28467405647489, -15.847679206444447], + [-48.284920491136894, -15.846227905803056], + [-48.28562126044408, -15.845554305650815], + [-48.28636299699638, -15.84527915986402], + [-48.2865093663366, -15.845224864020292], + [-48.28706122030263, -15.843142667621999], + [-48.28706010588836, -15.843140411708344], + [-48.286646886999755, -15.842303927744714], + [-48.285648923002356, -15.84192680222614], + [-48.28503693021713, -15.841109871916528], + [-48.28556665499951, -15.840241908710606], + [-48.28584678409825, -15.839488870524093], + [-48.28642559254336, -15.837932904199599], + [-48.28634691727519, -15.836716030620188], + [-48.28567685640383, -15.835673518452426], + [-48.28542260281137, -15.834721999056809], + [-48.28345573901189, -15.832046428214955], + [-48.282561064972334, -15.82959875044217], + [-48.28142541010854, -15.82443889646098], + [-48.28095090546049, -15.823483405014306], + [-48.27743354520769, -15.818211595146138], + [-48.274698698055666, -15.815623858050866], + [-48.27275957779954, -15.81422319248491], + [-48.27162359695807, -15.812455775839632], + [-48.27123166821777, -15.811454762122624], + [-48.27065158158582, -15.81050369858808], + [-48.269165473729835, -15.808891752307282], + [-48.26914762594632, -15.808872393042577], + [-48.269130379475094, -15.808837496602308], + [-48.26867949217327, -15.807925169170037], + [-48.267870419875614, -15.80688957987998], + [-48.26786844685575, -15.806887054456773], + [-48.2670933663245, -15.807881708320862], + [-48.26620776373319, -15.807202464284543], + [-48.26545457604572, -15.80606688381097], + [-48.26464968042185, -15.80550583604924], + [-48.2635702397725, -15.805342494491091], + [-48.262674600815046, -15.804986017436915], + [-48.26083805158879, -15.803893038431347], + [-48.2604853971989, -15.803524657262777], + [-48.260149688339254, -15.803173975737316], + [-48.25829093712736, -15.801810454094882], + [-48.25709274740648, -15.801653862885871], + [-48.25638038706085, -15.801655561613813], + [-48.25489744787473, -15.801659090390688], + [-48.252563048228396, -15.801003769522326], + [-48.25156812288118, -15.80052766920298], + [-48.249511851798935, -15.800635485765001], + [-48.24956719804662, -15.799637254457547], + [-48.24936444987982, -15.798553942424254], + [-48.24839931839878, -15.79900452121755], + [-48.24725608116505, -15.798820537050208], + [-48.24706135127827, -15.797421605940617], + [-48.24671143900093, -15.797252938767077], + [-48.24611352648364, -15.796964726949982], + [-48.2448665315083, -15.797147819899891], + [-48.243664157034836, -15.798172118192873], + [-48.2431155963631, -15.798639428727684], + [-48.24194702655276, -15.798690498537919], + [-48.24194682214022, -15.79869010995066], + [-48.24194624733963, -15.798689017257477], + [-48.241424320820954, -15.79769683289143], + [-48.24141838986205, -15.796704821952847], + [-48.24139341762344, -15.79252937143953], + [-48.2406510651552, -15.791708979026474], + [-48.24006101955488, -15.791602396238154], + [-48.23964784409454, -15.791527761366105], + [-48.23917600932249, -15.790716299761577], + [-48.23845701284615, -15.78844695052507], + [-48.23867603676061, -15.78727489394289], + [-48.23867193292159, -15.78638056152406], + [-48.23867083360044, -15.786141014489738], + [-48.23823453867863, -15.784734828655669], + [-48.23823409456688, -15.784734606899232], + [-48.237148229073014, -15.784192402403354], + [-48.23561549222294, -15.783918932817087], + [-48.23472533791773, -15.783373573527257], + [-48.23406294111935, -15.782698352713071], + [-48.233697070176476, -15.781871686786221], + [-48.233423361893216, -15.781251714832093], + [-48.23309457406228, -15.778623757703638], + [-48.23250505870991, -15.777716516421606], + [-48.2314843276741, -15.777167710042594], + [-48.230120477210846, -15.776899576154088], + [-48.228007551623705, -15.774998353028549], + [-48.22666808780628, -15.774101807471567], + [-48.224956673755806, -15.772956282275088], + [-48.224193766059706, -15.77136642841139], + [-48.223316342470696, -15.769537902703064], + [-48.221902169911786, -15.768832973457469], + [-48.220400097804074, -15.768084214131244], + [-48.220097895199714, -15.76718725609336], + [-48.21928775921363, -15.76609602373158], + [-48.217340593166696, -15.764018289227732], + [-48.21632956805036, -15.762671908183101], + [-48.21632865059305, -15.762670686397307], + [-48.21632719634977, -15.762668751185503], + [-48.21553257512609, -15.761611315204409], + [-48.21409150197383, -15.760385530974652], + [-48.213506286843625, -15.759659246321517], + [-48.21289305100606, -15.75857231622952], + [-48.212702329244614, -15.75703858039535], + [-48.21225030501516, -15.755951963777557], + [-48.21224969596956, -15.75595049969213], + [-48.212008629805624, -15.754545899590688], + [-48.21040079048952, -15.7510114257899], + [-48.2099018636276, -15.750476779133695], + [-48.207819023676024, -15.748244784099834], + [-48.206869964356486, -15.746166445548681], + [-48.206034226335376, -15.741457959800686], + [-48.20603399000828, -15.741456628335397], + [-48.20670621460847, -15.739414872715003], + [-48.206844684569504, -15.737202443829945], + [-48.20645164489207, -15.73466022657013], + [-48.20645121416345, -15.73465744056161], + [-48.20522944677184, -15.730351327054938], + [-48.20512113038549, -15.72759252954696], + [-48.20554035584077, -15.726272878135998], + [-48.20573293304031, -15.724388490337587], + [-48.20689963979941, -15.719455380268924], + [-48.20745516602476, -15.718344682937275], + [-48.207455720432776, -15.718343574467571], + [-48.20762290558341, -15.718180835351683], + [-48.20817655715045, -15.717641904214718], + [-48.20818479096528, -15.717636450027234], + [-48.21173210358375, -15.715286602285586], + [-48.213034899147345, -15.713479157922169], + [-48.21422743254836, -15.712564955028482], + [-48.21808773801916, -15.708041897486412], + [-48.21808883977223, -15.708041748436644], + [-48.21914546294162, -15.70789880130927], + [-48.221041469967716, -15.708343170385739], + [-48.221649657463274, -15.70848570814518], + [-48.22436771175943, -15.708738103316495], + [-48.22656770644641, -15.709191887155432], + [-48.22820056579546, -15.709172749139091], + [-48.230312727013114, -15.709531511817302], + [-48.23269816816418, -15.709533024172478], + [-48.23270051308436, -15.709531528691626], + [-48.23359249094111, -15.708962663055203], + [-48.23425058822339, -15.708877643592777], + [-48.23695523879615, -15.708528208221114], + [-48.238037665451046, -15.708170615434254], + [-48.239007362236016, -15.708169975707378], + [-48.23974004481451, -15.7074396748599], + [-48.24078766574014, -15.706992071821416], + [-48.24131217177897, -15.705899080307992], + [-48.241733040833715, -15.704542425545519], + [-48.2418977225893, -15.702639169491821], + [-48.241665042352224, -15.701449269417228], + [-48.24109178214047, -15.698517648525746], + [-48.24109409077656, -15.697110423880462], + [-48.241345076897574, -15.69611822804474], + [-48.24115171829385, -15.693573026315041], + [-48.241486603348115, -15.691092060909224], + [-48.24212524241823, -15.69031787492943], + [-48.242640607630634, -15.689162096966275], + [-48.242641205920684, -15.68916075520781], + [-48.24240157189432, -15.688092711463856], + [-48.24233767742329, -15.687986763894159], + [-48.24101160627455, -15.685787894789241], + [-48.240672066222515, -15.683926312524054], + [-48.24017189192189, -15.682699378769314], + [-48.2383944334285, -15.674668013597252], + [-48.23772939757961, -15.672402902809402], + [-48.236703163248144, -15.670406367089964], + [-48.236150245374716, -15.66850141620193], + [-48.23528255372553, -15.664518700663917], + [-48.2351410172387, -15.661257750327223], + [-48.23486838306873, -15.659057095881309], + [-48.23486802568837, -15.659054211161108], + [-48.23651211662447, -15.649658444421485], + [-48.23565040187941, -15.645128836002488], + [-48.23295428140357, -15.639144862926106], + [-48.228978719314384, -15.633211093124295], + [-48.22395318310258, -15.627796885984747], + [-48.21893009885525, -15.622634645890512], + [-48.21892985821179, -15.622634603322563], + [-48.21892796323324, -15.622634268115814], + [-48.21153182089358, -15.621325819469016], + [-48.20564960357227, -15.621504297550585], + [-48.200287249536935, -15.621866985316592], + [-48.20028458522231, -15.621867165486654], + [-48.20028455994389, -15.621866874494438], + [-48.199803660315936, -15.616331000338672], + [-48.19980321892853, -15.616325918663634], + [-48.19926287545377, -15.610104966584801], + [-48.20037721403935, -15.511629155618593], + [-48.20050621890696, -15.500175478943797], + [-48.20050574857615, -15.500175479079346], + [-48.05319773739873, -15.5001687458096], + [-48.03610312143675, -15.500197230791569], + [-47.97902060960298, -15.500284151054265], + [-47.85294121085008, -15.500424713593148], + [-47.77201423152368, -15.50047756151981], + [-47.68871333119574, -15.500500997948627], + [-47.645490933754445, -15.50050021560017], + [-47.61895771595266, -15.500495536355677], + [-47.61702088033619, -15.500495069684144], + [-47.52418803722316, -15.50045453406075] + ] + ] + }, + "ES": { + "name": "Espírito Santo", + "coordinates": [ + [ + [-40.39565364231173, -20.62215308828026], + [-40.39648752993023, -20.622204917442264], + [-40.3964863346654, -20.621835150822548], + [-40.39568248361602, -20.62177060092588], + [-40.39565364231173, -20.62215308828026], + [-40.37974274191296, -20.614905753177148], + [-40.38291383160013, -20.615566642847906], + [-40.38274989471388, -20.613709260528715], + [-40.380174808431896, -20.61330301989029], + [-40.37974274191296, -20.614905753177148], + [-40.3755449418558, -20.61406928398255], + [-40.378089732840046, -20.614321151682404], + [-40.378001690558584, -20.612455494019475], + [-40.3758787817832, -20.612222894104264], + [-40.3755449418558, -20.61406928398255], + [-40.372867201380956, -20.613127974689178], + [-40.374610332164366, -20.613387050309345], + [-40.375003848336895, -20.612210280609524], + [-40.3729118577968, -20.61196588304481], + [-40.372867201380956, -20.613127974689178], + [-40.38071273359568, -20.612721010499644], + [-40.38253857625551, -20.61301291595158], + [-40.382874447172796, -20.61195104565117], + [-40.381205700795604, -20.611519146750485], + [-40.38071273359568, -20.612721010499644], + [-40.38746556223516, -20.610771216279083], + [-40.38857457110269, -20.61085662080078], + [-40.38870957348012, -20.610311637159327], + [-40.3876033525148, -20.610206109755797], + [-40.38746556223516, -20.610771216279083], + [-40.373950670621454, -20.608607722031323], + [-40.37359325397226, -20.611808829791382], + [-40.37593072988876, -20.610979995212055], + [-40.373950670621454, -20.608607722031323], + [-40.39067290610487, -20.597376866118744], + [-40.39055096177856, -20.598299599241223], + [-40.39217809280213, -20.598392090286552], + [-40.39207068174545, -20.597472043916774], + [-40.39067290610487, -20.597376866118744], + [-40.35676344144215, -20.52410385117502], + [-40.3569060643592, -20.524580812532708], + [-40.35795290729601, -20.524644521075942], + [-40.35809405725059, -20.524157549162002], + [-40.35676344144215, -20.52410385117502], + [-40.310372006416365, -20.421486442535315], + [-40.31228474610694, -20.421664344008867], + [-40.312198523160255, -20.420796639275498], + [-40.31057330354942, -20.42066116678419], + [-40.310372006416365, -20.421486442535315], + [-40.295365414479384, -20.381429273460842], + [-40.298297686095815, -20.38190459862911], + [-40.29742440692571, -20.37992367409752], + [-40.29567801133991, -20.38026341107561], + [-40.295365414479384, -20.381429273460842], + [-40.27784569237431, -20.365152343746114], + [-40.27943511132762, -20.36531600372951], + [-40.27966976579359, -20.364151305214577], + [-40.277913918160245, -20.364064144978542], + [-40.27784569237431, -20.365152343746114], + [-40.279543926750634, -20.363414147478796], + [-40.28082978247831, -20.363543859809916], + [-40.28123339496095, -20.362583949373843], + [-40.279678213838515, -20.362584710954508], + [-40.279543926750634, -20.363414147478796], + [-40.25288602572714, -20.353619116251213], + [-40.2541380011099, -20.353985009481917], + [-40.254630015598714, -20.35287735343547], + [-40.25321505500424, -20.352645652746997], + [-40.25288602572714, -20.353619116251213], + [-40.28052425020654, -20.3547463002395], + [-40.282239874504945, -20.35490543197638], + [-40.2820132799236, -20.353856462231665], + [-40.28078885971648, -20.353792506954242], + [-40.28052425020654, -20.3547463002395], + [-40.250631386653225, -20.352179957704873], + [-40.25231973252911, -20.352481319362138], + [-40.25206151027421, -20.351412302182393], + [-40.250710957558354, -20.35129779569167], + [-40.250631386653225, -20.352179957704873], + [-40.27130470480616, -20.334686529812345], + [-40.27250848689096, -20.335693797572613], + [-40.272839818889864, -20.334200662487998], + [-40.27164216875954, -20.333840898003857], + [-40.27130470480616, -20.334686529812345], + [-40.270576325249166, -20.33300951603963], + [-40.27152935661863, -20.33338586123376], + [-40.27217221758933, -20.332584884426815], + [-40.27139239928873, -20.332216537597013], + [-40.270576325249166, -20.33300951603963], + [-40.26788878558939, -20.33239834481264], + [-40.26965196093323, -20.332688403476485], + [-40.26982705926987, -20.33124428199279], + [-40.268167835794294, -20.330952491304], + [-40.26788878558939, -20.33239834481264], + [-40.27122341242481, -20.322257812254158], + [-40.27271999256333, -20.322391206692213], + [-40.27323839177749, -20.32077187652507], + [-40.27136520771632, -20.320381550277464], + [-40.27122341242481, -20.322257812254158], + [-40.26855466749027, -20.320723626473868], + [-40.269758383275246, -20.321730839156135], + [-40.27060629609243, -20.320529269700177], + [-40.26911637168318, -20.319851895246916], + [-40.26855466749027, -20.320723626473868], + [-40.24223978603904, -20.294372577280658], + [-40.24236167469589, -20.29504656715073], + [-40.24331253900562, -20.294995858213692], + [-40.2430993329314, -20.294386443459473], + [-40.24223978603904, -20.294372577280658], + [-40.518060065835485, -17.893977509681022], + [-40.50334390323564, -17.910702381838778], + [-40.484140716130725, -17.908667992633823], + [-40.46419806874261, -17.92822613848299], + [-40.45933285548838, -17.920474711522424], + [-40.453883250332304, -17.918833769697887], + [-40.43258867809577, -17.92135652306204], + [-40.417430551012465, -17.927057329441244], + [-40.403251121803955, -17.923551092394554], + [-40.39195992981156, -17.924125840632996], + [-40.38646384713712, -17.928461100847034], + [-40.3731571539021, -17.92766564397356], + [-40.36784097137118, -17.92265560804941], + [-40.355624437614594, -17.930477836770148], + [-40.347741727457084, -17.923605862106637], + [-40.333968264305646, -17.92738288709988], + [-40.32344828192647, -17.93896712848881], + [-40.312279265670675, -17.93966423799476], + [-40.306204441281686, -17.947382844922284], + [-40.29112176105295, -17.94691022476557], + [-40.2910075910153, -17.951872288738837], + [-40.27568661753967, -17.96258465926135], + [-40.26631406766867, -17.962044379421034], + [-40.25536826701607, -17.97182192496589], + [-40.221977166150175, -17.98067949625056], + [-40.069183708044186, -18.078786643260628], + [-40.0614984089574, -18.08362742273439], + [-40.02008266551516, -18.109702607093066], + [-39.947134383592186, -18.15644803444974], + [-39.91892555787156, -18.174461596191875], + [-39.91890230625888, -18.17447657032003], + [-39.9121027032817, -18.178855236175917], + [-39.86584705134063, -18.208341611206013], + [-39.8656888626044, -18.2084424032851], + [-39.8338281193165, -18.22875422765099], + [-39.78304924721205, -18.2610738770746], + [-39.688966637066585, -18.320848627834348], + [-39.67424625684107, -18.324759456900193], + [-39.669682882567734, -18.331283327781232], + [-39.66603413587281, -18.333235128538035], + [-39.666034173997716, -18.333235233607287], + [-39.671529862557435, -18.348380715105574], + [-39.6692871558765, -18.35064776999559], + [-39.69995258307857, -18.415221606661152], + [-39.70235626243513, -18.42704527019642], + [-39.728580084269765, -18.50039990278372], + [-39.72842288005174, -18.55197216690521], + [-39.73201257984696, -18.555626966734593], + [-39.72854824843508, -18.55940995340181], + [-39.7286939742933, -18.58606217835708], + [-39.72430004905754, -18.599966551852894], + [-39.7367604895161, -18.6443340224156], + [-39.74698566798829, -18.706175412929984], + [-39.74845139400662, -18.786423187193538], + [-39.75034002210065, -18.84173282591075], + [-39.7390375506402, -18.951994196987492], + [-39.73708341857155, -18.96861913757515], + [-39.718984890868775, -19.09702833715932], + [-39.70834493334513, -19.180229538572448], + [-39.70330601385929, -19.211462937559656], + [-39.69749958807087, -19.24340434461297], + [-39.68905653881535, -19.296321550370042], + [-39.696542349315344, -19.367669046996706], + [-39.72946924636734, -19.465898445937782], + [-39.771244920494325, -19.560269726286908], + [-39.806694747950644, -19.63148704147254], + [-39.807432802364765, -19.648231092032983], + [-39.81265846375242, -19.652150132081918], + [-39.81684118685668, -19.65512159695907], + [-39.825472573514645, -19.65353396785836], + [-39.83678923081257, -19.656489912165632], + [-39.84183625795193, -19.65811750785283], + [-39.873799042148164, -19.668627116088537], + [-39.91166301100867, -19.687030809607563], + [-39.93055123893748, -19.69916254559354], + [-39.97336367141138, -19.7311217519213], + [-40.00432349500164, -19.7578391450634], + [-40.04617620609973, -19.80243247615876], + [-40.05625062571815, -19.81787522623311], + [-40.05779308097459, -19.833721330667625], + [-40.063476386941474, -19.8529631662661], + [-40.0789735092247, -19.873944894578], + [-40.08622016077195, -19.883087629102757], + [-40.087313584864305, -19.893479663407568], + [-40.09192884913542, -19.894958885385936], + [-40.09044489694001, -19.900753383735402], + [-40.09760801966466, -19.90491603005895], + [-40.099102463622295, -19.918916299644398], + [-40.118355755093106, -19.931977836837543], + [-40.131166550428624, -19.93622936952595], + [-40.139683568418654, -19.9491564256706], + [-40.139692576728976, -19.95603325296594], + [-40.13054678303423, -19.96903628512811], + [-40.13687588693787, -19.970144848338396], + [-40.14189385563121, -19.98596583395039], + [-40.14707698217615, -19.990171611168314], + [-40.147840903931595, -20.00682836802755], + [-40.15406443722892, -20.013641409791013], + [-40.15898668053197, -20.038572962186944], + [-40.18199569869054, -20.041829462039466], + [-40.19074979589293, -20.05655649547908], + [-40.179381396846146, -20.06644026392054], + [-40.17284572696788, -20.074739724254698], + [-40.17203001832484, -20.103409519280135], + [-40.17137288286076, -20.11036206106196], + [-40.18404809718818, -20.15470461654977], + [-40.18471207209194, -20.17488025862772], + [-40.19046535346832, -20.184042018476912], + [-40.19275609880717, -20.202274738107572], + [-40.19780744533736, -20.21682563752322], + [-40.21319083129715, -20.23977459615496], + [-40.229808191519375, -20.258650749966492], + [-40.23888053169234, -20.280669279144742], + [-40.23749784306366, -20.28948239811014], + [-40.25049017104991, -20.2950687866136], + [-40.25395630062167, -20.28944839639534], + [-40.250861571498056, -20.27999343633618], + [-40.256469752770464, -20.268362610444015], + [-40.26168630900052, -20.266383008235973], + [-40.285945835695884, -20.277332917606902], + [-40.292051847373784, -20.285733428791556], + [-40.289595184879396, -20.293935848120352], + [-40.284618004527694, -20.29452358986482], + [-40.291682648049026, -20.30173739391099], + [-40.279076987812715, -20.29855680469443], + [-40.27733685126746, -20.300807388744587], + [-40.283335519625574, -20.30515541123932], + [-40.29217459748372, -20.305828881825473], + [-40.29130234053602, -20.308494398534716], + [-40.28029165616765, -20.307351208033193], + [-40.27721691850016, -20.311023342698565], + [-40.288688861932926, -20.314320123820227], + [-40.289595795610516, -20.32373921579592], + [-40.28401917819528, -20.325061951996346], + [-40.276278517773896, -20.32023784271319], + [-40.27409642709596, -20.325346556003954], + [-40.26914531326185, -20.32495776529609], + [-40.270863599554644, -20.33038248919966], + [-40.27531367914538, -20.330350132873], + [-40.274946574024696, -20.33423950602557], + [-40.277391676336705, -20.332653109211684], + [-40.282338971151624, -20.33637928163081], + [-40.28519853654442, -20.352817475929164], + [-40.29669679481411, -20.36119684454336], + [-40.3098705783032, -20.381450811883315], + [-40.32265989288951, -20.410614317255686], + [-40.323516525916645, -20.42261975448601], + [-40.320568886279176, -20.426523030149585], + [-40.3489952156936, -20.47720935547957], + [-40.356815594096226, -20.498483762927314], + [-40.35872703773628, -20.519000704919918], + [-40.36622599179058, -20.520917632617877], + [-40.37667608001468, -20.536882491996472], + [-40.400633989520045, -20.576720712184123], + [-40.40384663906376, -20.599024298127656], + [-40.42038111653001, -20.62173038250606], + [-40.4262881996576, -20.63392926970155], + [-40.42292528747627, -20.635417539958087], + [-40.4248013365109, -20.637831349627405], + [-40.4281538075273, -20.63554268459013], + [-40.43328783697702, -20.642725775446557], + [-40.4378639348974, -20.634499491772292], + [-40.45011712637049, -20.638223076220868], + [-40.44552299724867, -20.631781296328107], + [-40.448622140095694, -20.62692514435456], + [-40.4641444317841, -20.624141180372764], + [-40.46446945871684, -20.630688062864017], + [-40.47011591072464, -20.634199205275245], + [-40.46617253617943, -20.636076567457152], + [-40.47023824909816, -20.638998662647854], + [-40.46412959503007, -20.646618937712404], + [-40.468193066503254, -20.646148616072203], + [-40.47249834250312, -20.650934480871193], + [-40.47172343283522, -20.653805762265876], + [-40.46512634234515, -20.65259824397113], + [-40.467979416879544, -20.66041669628793], + [-40.47547182967311, -20.66152398530356], + [-40.47389955307355, -20.65555963115372], + [-40.483365207706484, -20.653797648961305], + [-40.49450858838094, -20.660750115609297], + [-40.497304857957495, -20.666337800625147], + [-40.50320387571304, -20.667359256103445], + [-40.50501654338913, -20.668565862179424], + [-40.50589174122772, -20.66751901631792], + [-40.50488253314941, -20.66688705448007], + [-40.52044338101351, -20.66250903082969], + [-40.52505764622975, -20.663992460398255], + [-40.52705198773059, -20.65561580999516], + [-40.529689242408644, -20.677185305103546], + [-40.536862542605846, -20.674628810553557], + [-40.54005603243494, -20.67692461804653], + [-40.5411436336227, -20.673080055997545], + [-40.54472101199797, -20.673555855280693], + [-40.539225420666305, -20.67846353722696], + [-40.53533922737006, -20.676256339836293], + [-40.52969752477648, -20.678390114995675], + [-40.537162434047225, -20.685659451300427], + [-40.522719759027225, -20.691394217050128], + [-40.51688731279982, -20.68568355643302], + [-40.53116525577712, -20.68466038066162], + [-40.52758136646796, -20.679421874992812], + [-40.52752321839387, -20.668932066415326], + [-40.5234181993695, -20.667770670954248], + [-40.52677781831536, -20.66714184452095], + [-40.517884427661365, -20.665373677499485], + [-40.50528046187529, -20.671134014666556], + [-40.49349063522698, -20.66460185237186], + [-40.491213922082856, -20.667768811669088], + [-40.496470500831045, -20.671904001951706], + [-40.496079311678336, -20.67716708334364], + [-40.50179137746872, -20.676750090484063], + [-40.51169403245954, -20.693108767086446], + [-40.52403107415096, -20.72354188364525], + [-40.52096746132655, -20.730681704555966], + [-40.526859619291784, -20.729144288916693], + [-40.52596931523616, -20.734757294557642], + [-40.53398787116087, -20.735979561665236], + [-40.532999855537085, -20.740913666786273], + [-40.537602438449035, -20.745458577513393], + [-40.53756274851797, -20.73936529440489], + [-40.54985064470265, -20.741038745065474], + [-40.571028366834966, -20.76631223611755], + [-40.57620598887441, -20.757375691046697], + [-40.57104614089315, -20.766403857984642], + [-40.57737055871762, -20.77874312904521], + [-40.57737031229954, -20.790960719492183], + [-40.58316639212332, -20.79940966741966], + [-40.5814057515144, -20.80301213636816], + [-40.58684898787252, -20.806884597254598], + [-40.58995487208272, -20.802461018904694], + [-40.60774961409185, -20.805776560159085], + [-40.620361382851755, -20.832883330258426], + [-40.628163303503854, -20.84175255453105], + [-40.63158312433345, -20.841129604094554], + [-40.633740675326024, -20.829406340078727], + [-40.62895075869001, -20.8194354518464], + [-40.63590030077587, -20.8127636376692], + [-40.64926579532409, -20.807357390543075], + [-40.665996613858404, -20.812440407141153], + [-40.66630075664906, -20.816708084315277], + [-40.671717422987776, -20.817953348287205], + [-40.672856043750514, -20.821547229920075], + [-40.683180823629215, -20.823057742324334], + [-40.68297879963061, -20.82672677668392], + [-40.690843286071235, -20.82825436696645], + [-40.693653704363065, -20.834760574490037], + [-40.70121869642029, -20.834693761613043], + [-40.7153456622612, -20.843716208687585], + [-40.720411901062, -20.842151321499323], + [-40.72005415761321, -20.837077661878286], + [-40.72797218561449, -20.836500885311164], + [-40.728997991062364, -20.838607081223547], + [-40.720524160963684, -20.839263852229063], + [-40.723501590450624, -20.842412387746343], + [-40.719394825914044, -20.84683553804424], + [-40.725078949986546, -20.84712980039923], + [-40.72442896043081, -20.843158297919867], + [-40.729429199444944, -20.842839129662142], + [-40.74453122624445, -20.848518402108674], + [-40.74922250343278, -20.853894324568856], + [-40.75877667771258, -20.864069567966986], + [-40.758983790618416, -20.864536846371017], + [-40.76223418121859, -20.876705128948238], + [-40.758812915876845, -20.879580392977804], + [-40.765116045850135, -20.889587765907073], + [-40.772669659233685, -20.891959576351095], + [-40.776478122237165, -20.905120107543944], + [-40.7956725611178, -20.926303777899683], + [-40.80419173097553, -20.943694075965034], + [-40.81018924628765, -20.96740251660127], + [-40.81071978167315, -20.99497407504243], + [-40.805819385525545, -21.004575489116693], + [-40.800729166265775, -21.003811669211704], + [-40.806742163187415, -21.007659420473423], + [-40.81076710619135, -21.021344737993147], + [-40.81340293620413, -21.036043465022622], + [-40.82815914178174, -21.04692644329622], + [-40.85638370801568, -21.12802900151885], + [-40.88088124742054, -21.14383443922141], + [-40.89124356560669, -21.157441217362567], + [-40.90808604750291, -21.167748799358165], + [-40.92598841304503, -21.19168805725804], + [-40.93452195745757, -21.20450047689983], + [-40.953819503460394, -21.23795668233569], + [-40.960619194558724, -21.25787867918197], + [-40.96232717433965, -21.270090125215216], + [-40.962108893783906, -21.279484682408352], + [-40.957920379104586, -21.301749887531145], + [-40.96547478907857, -21.29965078609766], + [-40.96586537613859, -21.295630554383997], + [-40.97284179772028, -21.294083506385988], + [-40.97573933066251, -21.289049802628348], + [-40.98070008412999, -21.288766503745197], + [-40.97655716321532, -21.286914889969456], + [-40.97800504326071, -21.281015232859104], + [-40.98558495223462, -21.286943233332703], + [-40.99468979211889, -21.286304268866985], + [-40.999331283872905, -21.27843812522764], + [-40.998472382790524, -21.26620301458593], + [-41.00667773000733, -21.252019009412003], + [-41.01232253193841, -21.251061824725397], + [-41.02516375506696, -21.246276956450348], + [-41.041400702745875, -21.25514300401372], + [-41.05588444528013, -21.238136284744943], + [-41.07056672355034, -21.22870583622692], + [-41.07325928411626, -21.23092115192754], + [-41.08145399541726, -21.22196451944637], + [-41.088626531550574, -21.220407831670848], + [-41.09106671368675, -21.221632407645714], + [-41.09245116498527, -21.21863264863453], + [-41.102672039610404, -21.22216531937206], + [-41.10431553205028, -21.219720220907575], + [-41.119249036789014, -21.230369392637364], + [-41.13441611241622, -21.226621532166284], + [-41.137463751542064, -21.22796554163838], + [-41.14139093271319, -21.238672203447056], + [-41.15622213127161, -21.240134846087575], + [-41.155901069959725, -21.245052157726136], + [-41.15822337670254, -21.24111682970015], + [-41.160984359015195, -21.24598411561206], + [-41.16404154986754, -21.24319677335159], + [-41.17682103538906, -21.244826652440356], + [-41.17449824743746, -21.241070306264145], + [-41.18104391510012, -21.241891691151288], + [-41.17795824844053, -21.239115958248068], + [-41.18119130261221, -21.23986324290229], + [-41.18287602712919, -21.23629917859195], + [-41.18624385092392, -21.241386258551685], + [-41.183556681923584, -21.2444234401807], + [-41.18815970042423, -21.243507276720464], + [-41.190914496244694, -21.248467167583204], + [-41.192974766791735, -21.241738638965675], + [-41.19358230921106, -21.24428537959733], + [-41.19958866981465, -21.244128696804673], + [-41.204090790054856, -21.23984458749833], + [-41.20528338444969, -21.243888311295315], + [-41.21224117740491, -21.23587851397782], + [-41.22168164083191, -21.23332018467143], + [-41.220721505547765, -21.22995969865376], + [-41.22494878486497, -21.23069842750623], + [-41.22431120971261, -21.22727320884636], + [-41.227602168667964, -21.23100185711236], + [-41.22845825401991, -21.225979476873032], + [-41.241290028558524, -21.221138512535415], + [-41.246953341819776, -21.221167180394314], + [-41.24975516897858, -21.222170317296516], + [-41.257309666909244, -21.2257639651874], + [-41.26208192547176, -21.23674429186117], + [-41.26569806458863, -21.233072389448136], + [-41.272331781297645, -21.23335940231457], + [-41.271834456060496, -21.237276558764165], + [-41.275801906645896, -21.236366571760506], + [-41.27708057655655, -21.240233371069188], + [-41.283886418605825, -21.23492364228515], + [-41.286034075691155, -21.237804539716524], + [-41.28883583390559, -21.23415508366623], + [-41.297808618394164, -21.234427752084596], + [-41.31144898115763, -21.21927211817746], + [-41.31769411770057, -21.221577578983933], + [-41.31708892125524, -21.213735873464653], + [-41.32614359983274, -21.213071431849745], + [-41.32623496654996, -21.218499892636412], + [-41.332637940989045, -21.21494316094181], + [-41.334031431838326, -21.2099042033139], + [-41.33820751068464, -21.207339947518207], + [-41.34368007776055, -21.20900386893181], + [-41.363657690206296, -21.202882154617544], + [-41.37109520429985, -21.20441623446023], + [-41.37713062264782, -21.201276463078052], + [-41.377525007324074, -21.19572321492289], + [-41.38143333323275, -21.196391159339143], + [-41.382283372849784, -21.200244440305816], + [-41.38832593946784, -21.19937944724284], + [-41.39321344318082, -21.202665248284042], + [-41.39536979044887, -21.201602327128096], + [-41.40338474723449, -21.198891989895284], + [-41.40684972918967, -21.20274597526172], + [-41.410674384905626, -21.199092485806986], + [-41.4132529095777, -21.201708609700525], + [-41.417308674663644, -21.19982417935541], + [-41.435638126423505, -21.21599921364286], + [-41.447944786378216, -21.21411307175611], + [-41.45414144358175, -21.20833567923158], + [-41.46034402070404, -21.207359102299815], + [-41.46692975464562, -21.204537743430304], + [-41.47014490380302, -21.202657155516047], + [-41.47988864439659, -21.193907085635523], + [-41.47975757209775, -21.182194966683884], + [-41.48264117402171, -21.183741045027897], + [-41.48840863863221, -21.180265999964398], + [-41.498609723640826, -21.18529412609111], + [-41.505727494626726, -21.176168081473165], + [-41.51247350780172, -21.175681879945053], + [-41.51725380830885, -21.186977728079256], + [-41.52124811626415, -21.18713767908487], + [-41.53091827870304, -21.179805870151426], + [-41.53813619302402, -21.18116351530287], + [-41.548443338870236, -21.18283929570102], + [-41.552114161032584, -21.176019807782712], + [-41.558592565313724, -21.17284686730824], + [-41.565725279226854, -21.182714084544262], + [-41.569927668390726, -21.17954500803979], + [-41.57072106115688, -21.17131159938116], + [-41.58237971403397, -21.16656362085358], + [-41.58731897054088, -21.149522668298697], + [-41.59244008378274, -21.14934094574871], + [-41.606047152118684, -21.15458352677436], + [-41.60792400308676, -21.154978586886827], + [-41.613539158075724, -21.15553492377553], + [-41.61626376100518, -21.151392258284996], + [-41.62890895159869, -21.144439851789844], + [-41.638956007104454, -21.146350150501696], + [-41.64594899167032, -21.143522086767465], + [-41.6541229798903, -21.142950754439116], + [-41.65346655898142, -21.137358289197724], + [-41.66493484216447, -21.132660031905626], + [-41.66267082238813, -21.12504895331174], + [-41.67164151308327, -21.126968782736707], + [-41.67643110051223, -21.133703849092168], + [-41.67915948128516, -21.131912556364313], + [-41.67792858284216, -21.12568481187542], + [-41.68219966906319, -21.121025553173762], + [-41.688305306205415, -21.12191328576636], + [-41.69123825748155, -21.11664848932651], + [-41.69575407495788, -21.115386458421717], + [-41.70573080648607, -21.12079927107852], + [-41.7045769759198, -21.12712190462486], + [-41.718483465040116, -21.12368867354875], + [-41.71795000131238, -21.116302565712022], + [-41.70516514692666, -21.111161905321975], + [-41.7078717451331, -21.107125321753404], + [-41.71714692011526, -21.105451046251382], + [-41.7226391644003, -21.103492994855035], + [-41.72903410533041, -21.10680706508018], + [-41.735648993060686, -21.103343224560504], + [-41.735096488718526, -21.099017471235083], + [-41.731454803666416, -21.087388620730994], + [-41.72171506742771, -21.073586411323532], + [-41.723640058439834, -21.067534767803924], + [-41.73244122729534, -21.06675293029939], + [-41.72922266642302, -21.050336348710253], + [-41.724345390755026, -21.056390019650227], + [-41.72040578002995, -21.055201076796536], + [-41.716643983792615, -21.04710480570227], + [-41.72134830317834, -21.045098023762424], + [-41.7263375400096, -21.03259846019402], + [-41.723721611683565, -21.025174230301147], + [-41.71603722256773, -21.02287293809174], + [-41.71552139273, -21.016639357664122], + [-41.72284139734255, -21.011143238719608], + [-41.71613474196184, -20.99205393995062], + [-41.71084300206539, -20.989707785933568], + [-41.711949904800925, -20.981036589808472], + [-41.716090589871534, -20.97596938922277], + [-41.71770346323189, -20.955076829559598], + [-41.733793704531564, -20.943886568476014], + [-41.73755924806395, -20.930902098359667], + [-41.737457562878916, -20.927768385346198], + [-41.72314518050326, -20.922782884031268], + [-41.71971200740457, -20.897193909204866], + [-41.725356395749856, -20.897236029128127], + [-41.727135022534156, -20.89283212645355], + [-41.71900185914674, -20.875499262360158], + [-41.71241227396059, -20.87155226801904], + [-41.72711853295954, -20.86483290267964], + [-41.7292254269454, -20.8700468953972], + [-41.74186402285498, -20.87280221970574], + [-41.74019998828785, -20.86607873953108], + [-41.74322567596781, -20.8591284361083], + [-41.745575785882146, -20.8533097107441], + [-41.737400200364384, -20.836579693097104], + [-41.741080116128465, -20.830118375183385], + [-41.73929884830469, -20.827805348291214], + [-41.74299301365648, -20.825622117913365], + [-41.74091762438582, -20.818279608557557], + [-41.74815993842906, -20.813381287865777], + [-41.75040179646647, -20.81806628749026], + [-41.75568024893488, -20.807528758366345], + [-41.76393320921613, -20.807059370105875], + [-41.767528978720016, -20.80198150929237], + [-41.77542931509142, -20.79989453255243], + [-41.7822457521729, -20.79824281462068], + [-41.794477833980686, -20.798946046688226], + [-41.80120102393179, -20.805560309108], + [-41.81393157397857, -20.80511965158245], + [-41.807059546470654, -20.797631154658696], + [-41.81686859460732, -20.80092662438387], + [-41.82852562460828, -20.796592595524373], + [-41.82558828944546, -20.788576761805064], + [-41.83779952178593, -20.78062990408226], + [-41.848142066428174, -20.775122218878995], + [-41.85384716826016, -20.764133808064695], + [-41.861593174242266, -20.764009877246725], + [-41.87503281369967, -20.76646285307104], + [-41.87979769536264, -20.75955122841734], + [-41.87412280550952, -20.744140473953486], + [-41.8635157136443, -20.741927322280127], + [-41.859559736159525, -20.748722185937826], + [-41.8565587366045, -20.74767107377887], + [-41.86030741851411, -20.729675085991225], + [-41.86535788294772, -20.722000145662758], + [-41.861298265586505, -20.722591996125033], + [-41.85620419063347, -20.71427549966854], + [-41.86274498165797, -20.712283439224734], + [-41.86105553379222, -20.70673247178041], + [-41.85461628930977, -20.705448008415125], + [-41.851897700202024, -20.69711515522212], + [-41.85084491193609, -20.695349385110475], + [-41.84684591301653, -20.686103772635736], + [-41.83936954236071, -20.683432014636338], + [-41.833288273212254, -20.670831771700712], + [-41.82415915234176, -20.663022248346298], + [-41.82764654523314, -20.656394606392894], + [-41.81948448333795, -20.657793262678247], + [-41.813234118301914, -20.653249820307067], + [-41.816422636985, -20.647034291474053], + [-41.808800835406274, -20.644211022677506], + [-41.811455639852774, -20.63753676914345], + [-41.81473740193736, -20.64062379934429], + [-41.82120016919969, -20.637117120619568], + [-41.8174161407525, -20.624524266557657], + [-41.82910966011664, -20.624776098056383], + [-41.83918135861759, -20.624820899231437], + [-41.853021709967685, -20.618673999455712], + [-41.8563970000344, -20.617175143832867], + [-41.85314580140804, -20.607543536048848], + [-41.84574564430225, -20.60674844737858], + [-41.84130116578743, -20.600428108264982], + [-41.84080008393897, -20.58648849872413], + [-41.835331042080114, -20.57084742882181], + [-41.82839319496144, -20.55728292231123], + [-41.81959308067149, -20.55427946559768], + [-41.81689412406424, -20.552433347740998], + [-41.80830751262713, -20.55053387474299], + [-41.804931869371394, -20.544684876243323], + [-41.804301011101785, -20.538389803657463], + [-41.81220156248082, -20.519128481045012], + [-41.80946292410124, -20.512577006415917], + [-41.809565247926436, -20.51163835011193], + [-41.807669676837556, -20.494480391385494], + [-41.799560259942474, -20.47758788157631], + [-41.79943764479748, -20.47727130559683], + [-41.8028738090965, -20.442944296501217], + [-41.79823187695971, -20.43500883628621], + [-41.80359980080873, -20.42951777885343], + [-41.80339234460964, -20.422226752470852], + [-41.83652672676673, -20.409299561688105], + [-41.84568250104117, -20.38197228518122], + [-41.84778864765249, -20.375077766011852], + [-41.85905302857239, -20.373665924673325], + [-41.85250427497997, -20.35677339276282], + [-41.85264901245726, -20.3481488079223], + [-41.84440027694068, -20.34092153405386], + [-41.843927455880596, -20.334040822383706], + [-41.84839199558446, -20.330172876266275], + [-41.84186655512479, -20.326540197026763], + [-41.83646057169706, -20.330014169766674], + [-41.8344398837813, -20.325640350133654], + [-41.82566339729808, -20.31986622378273], + [-41.82283791022241, -20.311084691216674], + [-41.81866175885054, -20.310573644024206], + [-41.806947635742794, -20.307481483951427], + [-41.80308816032218, -20.299195097889285], + [-41.79745102166914, -20.29648832450129], + [-41.782142257416275, -20.294466713800205], + [-41.77779585692957, -20.288599389729026], + [-41.779109655621504, -20.27816763029914], + [-41.77767835351529, -20.271265223026912], + [-41.77587274042079, -20.263033918850052], + [-41.774760072650686, -20.25982549077785], + [-41.771315223848006, -20.257014931361983], + [-41.76711053471846, -20.229250527532972], + [-41.764032399101445, -20.227821838885603], + [-41.76577912327822, -20.2239028306048], + [-41.75988961502364, -20.213350805979925], + [-41.75708936250417, -20.213888044133277], + [-41.75675519614503, -20.206858090943896], + [-41.66595453009224, -20.20668784366451], + [-41.66028620699562, -20.206707205257505], + [-41.60230189475838, -20.20688957252145], + [-41.59715951365798, -20.206905195665946], + [-41.596364816557795, -20.206907817150896], + [-41.57711982442176, -20.206963931298592], + [-41.53251041130329, -20.20708580003978], + [-41.47256977700806, -20.207231826330307], + [-41.45161824600975, -20.207278357797442], + [-41.41114522770833, -20.2073608059724], + [-41.41130361543527, -20.200322970173175], + [-41.407704015470486, -20.19736595550081], + [-41.401671416358006, -20.19922029871606], + [-41.38211958907807, -20.188804579494242], + [-41.3774047010302, -20.175632840806575], + [-41.3740963995328, -20.168151488306574], + [-41.375937578081256, -20.161941438209627], + [-41.36783834183929, -20.156844705851164], + [-41.36189679237889, -20.142070246147675], + [-41.35581826490041, -20.1390905301012], + [-41.35652602540353, -20.133460012059665], + [-41.34752330867754, -20.123900946432794], + [-41.350892353517764, -20.119151220305085], + [-41.349075786715844, -20.113060416295806], + [-41.34398062477753, -20.100122699336218], + [-41.34517054966938, -20.090105377759826], + [-41.337538605885136, -20.086971772519504], + [-41.33561685279817, -20.06546497791407], + [-41.331893751978484, -20.06321284281747], + [-41.333561582076996, -20.058833056483078], + [-41.32418889866199, -20.05235373856006], + [-41.3199503720142, -20.04433354544751], + [-41.319907209281844, -20.044251604984122], + [-41.3172619107646, -20.026958197097862], + [-41.309112121394215, -20.016364760687793], + [-41.30766806325945, -20.00868420100767], + [-41.3087990831718, -19.9970612467148], + [-41.313852498539, -19.98985366481182], + [-41.31990297187574, -19.97862415373986], + [-41.3116418432075, -19.971714987130397], + [-41.30792103607638, -19.948335190645924], + [-41.29939468813276, -19.937066773740472], + [-41.27143918809112, -19.942203179821664], + [-41.25461550228938, -19.932140015658867], + [-41.248929984837844, -19.93794387288896], + [-41.24350276213685, -19.936727032970005], + [-41.232585189511525, -19.918982702914487], + [-41.228891153042944, -19.9057489599631], + [-41.21136043503283, -19.901181453032603], + [-41.20505920951692, -19.903105501944758], + [-41.1876518471951, -19.891676900164907], + [-41.1848871481358, -19.8889580191945], + [-41.184010518101964, -19.848820943527187], + [-41.17915212035664, -19.847019215720593], + [-41.17570275299434, -19.839346797316075], + [-41.1863009102238, -19.827663812245326], + [-41.175479831641766, -19.825735158600033], + [-41.166188904961274, -19.810581497731143], + [-41.165954163010866, -19.792455832375012], + [-41.174065509501226, -19.78400308086309], + [-41.171696911511255, -19.778334767111424], + [-41.17490014656213, -19.767049336090803], + [-41.18777260489862, -19.758107121758762], + [-41.190891767135945, -19.74687159833058], + [-41.179511420136876, -19.740095940066507], + [-41.182020754754234, -19.732173717610344], + [-41.17903257454146, -19.720016064013645], + [-41.17431186227085, -19.71563581279591], + [-41.17773148757003, -19.70329117476038], + [-41.17169425854221, -19.69290887536636], + [-41.17392052369186, -19.688106295832974], + [-41.16847900065749, -19.672221994663914], + [-41.15898463044247, -19.66137601239757], + [-41.14897007665707, -19.663847497728725], + [-41.138632768893984, -19.65872416400966], + [-41.1295016494729, -19.642740269727344], + [-41.12399921719015, -19.640270794713008], + [-41.119585589242675, -19.639586525655613], + [-41.11453242111447, -19.64184720001446], + [-41.108608033132256, -19.639466491959272], + [-41.099316907563654, -19.604205697473663], + [-41.09266279638959, -19.601844981335248], + [-41.09088834076173, -19.59634354902692], + [-41.07912410047805, -19.598296545276646], + [-41.07328712662935, -19.59796804129043], + [-41.07192466229681, -19.58440869161743], + [-41.056256108460836, -19.584812643147558], + [-41.057457322286986, -19.5782630294956], + [-41.03626072372613, -19.568527611968843], + [-41.03663672111477, -19.55670748642818], + [-41.04497427080636, -19.53856334606746], + [-41.04124928562033, -19.524654606717235], + [-41.04090904555366, -19.5159229700184], + [-41.04966972359966, -19.503022179006962], + [-41.045756937238416, -19.487897192304306], + [-41.028371107097286, -19.498649108021493], + [-41.020287400408414, -19.504050460471376], + [-41.009379498882794, -19.50726719998188], + [-41.005069046818775, -19.507463529502296], + [-41.00502301908594, -19.507465605459224], + [-40.988285781401515, -19.507941821410018], + [-40.9713485917259, -19.503820995696895], + [-40.97120111939854, -19.494603597463506], + [-40.96331460315222, -19.48333303975872], + [-40.95357973437768, -19.473442950499727], + [-40.9493369033051, -19.473158848204267], + [-40.951397245376235, -19.465663182182148], + [-40.94487986396027, -19.46011899978616], + [-40.9578454216677, -19.449927919270035], + [-40.95883928104443, -19.43995474942391], + [-40.96798492642085, -19.425344013125628], + [-40.96048315688531, -19.41931924135419], + [-40.96222265116078, -19.408432437918925], + [-40.95717649345386, -19.398847749290223], + [-40.928451305124604, -19.381888346470113], + [-40.93179972808147, -19.37334076086687], + [-40.92811596239957, -19.368668573903943], + [-40.93964482362202, -19.358637166902636], + [-40.93889370401271, -19.348216515042232], + [-40.928532110713824, -19.329748872207926], + [-40.92205374277082, -19.328939103653884], + [-40.920345325161556, -19.319181403440226], + [-40.91469338971458, -19.318187949256508], + [-40.90828723789083, -19.3065241169022], + [-40.91450777866149, -19.300744732173417], + [-40.924557711173485, -19.302460609289806], + [-40.9313355860037, -19.299846157816866], + [-40.9327846454629, -19.296057798684693], + [-40.92806603556535, -19.286115904733133], + [-40.93839163596014, -19.286404287575948], + [-40.9445064008051, -19.2795515063779], + [-40.93493918962626, -19.27175830421073], + [-40.91996180850117, -19.271435652290176], + [-40.917164552672666, -19.256864614963707], + [-40.92020367972342, -19.251826233472514], + [-40.9310592702658, -19.2512276987001], + [-40.93865611662131, -19.249388027960446], + [-40.93303413926835, -19.24263628048097], + [-40.94217133526264, -19.23381815249064], + [-40.94155842678646, -19.230136888473602], + [-40.9353983920473, -19.22269998700936], + [-40.93103044360979, -19.222427736501217], + [-40.927589930330726, -19.20888155711554], + [-40.922675588495416, -19.20409553034782], + [-40.92955467297078, -19.19786571382379], + [-40.92650667476643, -19.18855388988697], + [-40.932591171765566, -19.18629332793613], + [-40.93366973020937, -19.180456939124475], + [-40.938361878993106, -19.183377670949486], + [-40.94109378181241, -19.180580286293786], + [-40.941116018949856, -19.168337070384084], + [-40.94291913994371, -19.15866819215539], + [-40.94886915312257, -19.153289832607072], + [-40.944007350453674, -19.144011612661032], + [-40.94808630937037, -19.14161373888529], + [-40.95819614525807, -19.145928972849706], + [-40.961955540772315, -19.144068910755674], + [-40.95612275547439, -19.129120517025953], + [-40.96289896100387, -19.121565670555064], + [-40.96957565010546, -19.12289893286662], + [-40.97353600450082, -19.11550487509425], + [-40.98465061119521, -19.107861291109817], + [-40.984767598000836, -19.1007255778459], + [-40.998957980008456, -19.10099857362848], + [-41.00971466314284, -19.09792564410853], + [-41.00447305865649, -19.08367189519127], + [-41.01500110537556, -19.0917553362315], + [-41.01261129319218, -19.075809791053363], + [-41.019282355429795, -19.07539231838981], + [-41.0254166128731, -19.07998461568725], + [-41.03549520975812, -19.071567487976388], + [-41.05385867861221, -19.06887252699171], + [-41.053243088097204, -19.059184350097045], + [-41.06092794745832, -19.056119641647616], + [-41.06556295907034, -19.051340668884766], + [-41.06314625593593, -19.039312256543617], + [-41.07179703558274, -19.02385671399135], + [-41.065935451094575, -19.016390334295604], + [-41.06667985674162, -19.006499529476375], + [-41.05291851636342, -19.00061658066547], + [-41.03222691417055, -18.990856811001322], + [-41.02218297151988, -18.982342366010915], + [-41.01733525566289, -18.97927289820318], + [-41.01803475062502, -18.973524324211496], + [-41.031061327989256, -18.97480654178956], + [-41.03400501752765, -18.97976130529854], + [-41.040646712559806, -18.980679653775226], + [-41.05175518602612, -18.974061098686835], + [-41.051364067065926, -18.966227143202104], + [-41.06150175097639, -18.967699873803664], + [-41.06485567660728, -18.951094048565228], + [-41.0648684750666, -18.94505051816624], + [-41.07006593702499, -18.94173587832617], + [-41.07862560034785, -18.94770049942548], + [-41.079248440972954, -18.93854849525303], + [-41.09218845653452, -18.934474149080295], + [-41.103679883840414, -18.93407089416055], + [-41.10362299760815, -18.930433420521627], + [-41.10987244501113, -18.928158412920705], + [-41.11276533887288, -18.922551704891134], + [-41.11817752140526, -18.92178066613808], + [-41.114374346572255, -18.91267572554519], + [-41.12050072534659, -18.908031397609204], + [-41.11959070635405, -18.90345997786893], + [-41.12685284440911, -18.894517219474043], + [-41.13128077265009, -18.8944207386746], + [-41.14380312182108, -18.884922831483976], + [-41.149079082761375, -18.88581409625671], + [-41.152963812027714, -18.886619957336574], + [-41.15565142866689, -18.876031489864758], + [-41.159215697913794, -18.864371034771292], + [-41.16607148667668, -18.858373607345708], + [-41.18941935848951, -18.86422803044024], + [-41.1990123952294, -18.86334562617665], + [-41.208430038462524, -18.855058449135875], + [-41.21233182796936, -18.86889772498188], + [-41.20977549988474, -18.874446505085665], + [-41.214789298340264, -18.877650805237806], + [-41.23010858888549, -18.85838190283385], + [-41.23936066286653, -18.858657884232688], + [-41.24297309284963, -18.854547787252447], + [-41.23972808859505, -18.84688192343964], + [-41.243882243451324, -18.843577927877593], + [-41.237826715041, -18.83477661781795], + [-41.24548207163049, -18.821970812746176], + [-41.232549089822726, -18.797290864122807], + [-41.16763693970367, -18.797474633439805], + [-41.157186355012406, -18.797502373239187], + [-41.14900457829997, -18.797523091049374], + [-41.13413579548106, -18.79605340670046], + [-41.130031610694594, -18.80745060628072], + [-41.11920962278813, -18.81014040220128], + [-41.119997201463136, -18.817671619801946], + [-41.11051236092253, -18.838948860417428], + [-41.097479585243875, -18.84232242632477], + [-41.0837135037418, -18.836595158791432], + [-41.07026135123679, -18.836354713093186], + [-41.04916968005293, -18.83675181595866], + [-41.04780628898283, -18.836777688176504], + [-41.02543784675055, -18.83719589586709], + [-41.01913733251188, -18.837313472136522], + [-40.96392061173833, -18.84118148066497], + [-40.96308682173312, -18.83615675777996], + [-40.951084707265416, -18.834722061768367], + [-40.94695682857894, -18.826014466207596], + [-40.941867773208344, -18.82606841289645], + [-40.93803467532383, -18.83171016147823], + [-40.93030985574902, -18.824523487947037], + [-40.92791946004765, -18.81971815381242], + [-40.916780193691125, -18.815555146817015], + [-40.91669309573945, -18.809976067173466], + [-40.921953622194955, -18.79726744711373], + [-40.928640694813446, -18.79294997713522], + [-40.92661834716464, -18.788192288437923], + [-40.93860667002404, -18.772462071808903], + [-40.94001153798673, -18.77029852492003], + [-40.94026637055736, -18.73557381675112], + [-40.94150482837179, -18.6893081329132], + [-40.95206856433388, -18.680842923270763], + [-40.98782776381639, -18.678149563392292], + [-40.98887200897681, -18.673230624304612], + [-40.99425617944013, -18.671207521017386], + [-41.0052335388775, -18.667290787018626], + [-41.020219052421865, -18.654966973205887], + [-41.03222992972179, -18.652651949983984], + [-41.028754168024676, -18.646743324184246], + [-41.03238821809399, -18.644597603952743], + [-41.044425595732974, -18.64829363007503], + [-41.0415646810318, -18.639767054118803], + [-41.0508984894023, -18.634168193955254], + [-41.0531135547591, -18.628737152255365], + [-41.043983391646066, -18.626695558120293], + [-41.039402068206925, -18.619938101226825], + [-41.03297119542109, -18.61877675345179], + [-41.033021283987985, -18.615612581811718], + [-41.03372312405608, -18.606627349313694], + [-41.04199481764033, -18.605417651590777], + [-41.030483887917846, -18.549972566233595], + [-41.030035873240955, -18.547817837875986], + [-41.025958228785214, -18.528185293842373], + [-41.01722273040211, -18.484091444193222], + [-41.015885703212106, -18.476770636432605], + [-41.0157399472777, -18.473999969151574], + [-41.015657235508186, -18.472439154450644], + [-41.02026492613169, -18.459419799667295], + [-41.02041691891407, -18.45910777491499], + [-41.02394435820423, -18.457190415381355], + [-41.063829519913305, -18.45335834442191], + [-41.08900649190908, -18.4509342851474], + [-41.17425242090465, -18.4447140029803], + [-41.18209738553064, -18.43927115286236], + [-41.18080661748105, -18.43582394926596], + [-41.16667409052042, -18.41523419935221], + [-41.15475176871267, -18.41444170209062], + [-41.147230970724635, -18.411465094944425], + [-41.14425992398489, -18.40525833044333], + [-41.1604531091921, -18.402815354468135], + [-41.16254551789661, -18.390780857395153], + [-41.15960397603584, -18.381475934493878], + [-41.1481073920832, -18.37916809542732], + [-41.145890293357745, -18.373880236167263], + [-41.149366743686436, -18.360751254170097], + [-41.15016490776469, -18.336371094005898], + [-41.15466653931852, -18.334722600219223], + [-41.1588050628219, -18.308770837450915], + [-41.14643260104482, -18.29947546619016], + [-41.142928796470365, -18.298201505796182], + [-41.14123379623947, -18.293835153049695], + [-41.14126902538537, -18.293327448427032], + [-41.12750368949776, -18.27693751376041], + [-41.096479146469434, -18.255596522925973], + [-41.10080743735726, -18.243761886422522], + [-41.099061414529515, -18.239124506253596], + [-41.102749793359884, -18.236985207202675], + [-41.09924514943287, -18.232389556460106], + [-41.09200222885041, -18.231322462006542], + [-41.091730052443836, -18.228064308546667], + [-41.102202211686766, -18.219223916326918], + [-41.10445342331961, -18.21329611305458], + [-41.09411938062534, -18.20870439624158], + [-41.09275847393906, -18.195580567774932], + [-41.09274010189918, -18.19542089110964], + [-41.06690341875315, -18.181094591621193], + [-41.056460232522625, -18.178860554799982], + [-41.05344726488082, -18.172692203485116], + [-41.056090551977725, -18.166641009982502], + [-41.05219315766418, -18.16530684164035], + [-41.03534079256122, -18.162815266002223], + [-41.038144436021454, -18.171108089789165], + [-41.03381988105141, -18.17213166395692], + [-41.02811062444139, -18.157692942719045], + [-41.01459579411454, -18.157599487936068], + [-41.01060099865311, -18.167419748713083], + [-41.00556443075526, -18.167616733238557], + [-40.99322345797767, -18.16625472722114], + [-40.988399597776194, -18.169815064483103], + [-40.988813331461486, -18.152963905651976], + [-40.98704094241957, -18.146794175890122], + [-40.980918403716274, -18.14468708244531], + [-40.98033053350987, -18.141384421420586], + [-40.97683304756606, -18.141382060074452], + [-40.96752372507801, -18.145235179120817], + [-40.962178515927874, -18.154191033315502], + [-40.95454423338578, -18.15451454942732], + [-40.948866150039805, -18.145719802218476], + [-40.951558174846646, -18.14247484021487], + [-40.950010746788834, -18.12930700103422], + [-40.944060931949025, -18.13038390308038], + [-40.9405196151665, -18.13647382197195], + [-40.93221666042302, -18.136503852386134], + [-40.91730644453323, -18.12076372548228], + [-40.90929058011532, -18.114850802447958], + [-40.90455463124399, -18.115949805461174], + [-40.90423897053203, -18.110202793806554], + [-40.89900561283917, -18.11253203244706], + [-40.89311677531394, -18.10789904097991], + [-40.89391757033429, -18.118908544560558], + [-40.88901827672168, -18.124036609775967], + [-40.88069731732407, -18.124160022239014], + [-40.87756264583504, -18.119449952587466], + [-40.86643578267147, -18.12993696336709], + [-40.86331254448762, -18.13915254066259], + [-40.85603461527342, -18.13983863402746], + [-40.85227653793283, -18.14626277788969], + [-40.84954753232229, -18.146765918550123], + [-40.84508370481746, -18.1498332936289], + [-40.84390730370087, -18.146593109981186], + [-40.83251297657085, -18.151173425783597], + [-40.82419610729665, -18.14930910944396], + [-40.80522518729789, -18.152990547867244], + [-40.7937209536742, -18.160173995850084], + [-40.786759311108156, -18.15865204285265], + [-40.77150023957303, -18.15594314809808], + [-40.7733118781183, -18.107583462403255], + [-40.902812805258534, -17.987299671805978], + [-40.89711301284939, -17.98175026362932], + [-40.891175099660245, -17.98305536444916], + [-40.88272451990863, -17.970573393190513], + [-40.87787178265687, -17.98174797078057], + [-40.87292679692612, -17.98082262775569], + [-40.87030994540653, -17.986116142983548], + [-40.86313918627986, -17.988338999714983], + [-40.8589470231773, -17.979413626866727], + [-40.85294996811642, -17.97735316989676], + [-40.83704786909746, -17.957210120998436], + [-40.830560842727905, -17.95420254953061], + [-40.829619973146194, -17.957646175285575], + [-40.824978935839866, -17.96372046880002], + [-40.81416970630769, -17.95893161563424], + [-40.809254410750256, -17.952344335863952], + [-40.80263221269551, -17.958516961307105], + [-40.79847709919003, -17.95696896786526], + [-40.791885103417854, -17.971505510629058], + [-40.79501154012761, -17.98176192165529], + [-40.782128701024796, -17.975269557595915], + [-40.77819490466694, -17.97619595873393], + [-40.777734023613114, -17.98232902393101], + [-40.77120829928307, -17.981083808179452], + [-40.77485632643127, -17.99663743872479], + [-40.77177697491573, -18.003410104683834], + [-40.76031945750969, -18.003983604616916], + [-40.750776285293405, -18.009930774469595], + [-40.73573597904471, -18.00422276914634], + [-40.72577790207351, -18.00123930340028], + [-40.7209366856875, -18.002952993367252], + [-40.71617507912201, -18.00463913621643], + [-40.70961841104575, -18.021011577035306], + [-40.70369259114426, -18.023748864757874], + [-40.68423269152982, -18.010198257446238], + [-40.677837954653846, -18.013261264375767], + [-40.67319572062756, -18.011063332189085], + [-40.66178432853015, -18.012933282693144], + [-40.651503957895564, -18.006887448528232], + [-40.64604046293021, -17.993583428730037], + [-40.62478472892455, -17.989110331305575], + [-40.624300859393095, -17.975942145793013], + [-40.61428294678077, -17.967518868572895], + [-40.62189392036229, -17.960588646526404], + [-40.61715943690295, -17.955390785301283], + [-40.61262259575212, -17.949530153148658], + [-40.61345839975798, -17.93975363696207], + [-40.59720296291575, -17.93605761912944], + [-40.587171594955464, -17.939043711676096], + [-40.58442252678029, -17.93578543228274], + [-40.58472219656981, -17.91818967699919], + [-40.56794058045427, -17.916052430083756], + [-40.54775007143687, -17.90754505863999], + [-40.53897355417729, -17.90081455745603], + [-40.527048649139864, -17.89196807577609], + [-40.518060065835485, -17.893977509681022] + ] + ] + }, + "GO": { + "name": "Goiás", + "coordinates": [ + [ + [-50.1581791644589, -12.412371596999753], + [-50.15951534340845, -12.431044085179986], + [-50.164776014527604, -12.437046190200391], + [-50.165139333217766, -12.437115250014134], + [-50.17971702066988, -12.439885757154666], + [-50.18297086007536, -12.451056238734395], + [-50.18420851585905, -12.455304896990922], + [-50.19656527193595, -12.458489968957025], + [-50.205212937359796, -12.46585545558885], + [-50.20493133744769, -12.477094887966214], + [-50.21443079182911, -12.482369355168519], + [-50.21762942821819, -12.488900595633481], + [-50.21985019673426, -12.517605721359008], + [-50.22934992236028, -12.533906365245816], + [-50.222909075018954, -12.543584653190356], + [-50.213742100156715, -12.54840321895109], + [-50.212014702849, -12.5614744298514], + [-50.206404452904955, -12.561990709633468], + [-50.20640437910773, -12.561990717021507], + [-50.20604014675397, -12.554014279874876], + [-50.203463261231775, -12.553587294522455], + [-50.203463227914, -12.553587289001594], + [-50.197873689873035, -12.555454223036353], + [-50.193129889166, -12.564311842515544], + [-50.19312996294682, -12.564311838141432], + [-50.20401323492432, -12.564197860044889], + [-50.20830187054771, -12.573034429799323], + [-50.22718322495056, -12.586518771723584], + [-50.22718329743008, -12.586518758840647], + [-50.231773350262124, -12.58537258781674], + [-50.23491449086053, -12.577812333556455], + [-50.23491454822979, -12.577812364983288], + [-50.23816132689868, -12.579590916775027], + [-50.24566291877656, -12.597368649264455], + [-50.23693405766768, -12.624033357580556], + [-50.2485476278116, -12.63107284833982], + [-50.248547662316014, -12.631072816560021], + [-50.25512665622555, -12.625013092420295], + [-50.25512666616455, -12.625013143214957], + [-50.25707317893118, -12.634960748479369], + [-50.26237965433883, -12.637716303347915], + [-50.259519257298244, -12.645817607714449], + [-50.26977307056484, -12.654853945929565], + [-50.26415067310311, -12.66389734720044], + [-50.27048858184944, -12.677610082888597], + [-50.266775600798965, -12.682454279368587], + [-50.266787494275434, -12.682455734885934], + [-50.27284543437612, -12.683197031523624], + [-50.27288660357972, -12.68320206882345], + [-50.27288661956385, -12.683202053786703], + [-50.27834756961461, -12.678064605710311], + [-50.27834758233767, -12.678064655153701], + [-50.281161591406956, -12.688999815134043], + [-50.28116164669028, -12.688999735283362], + [-50.28596833761238, -12.682056752918133], + [-50.28596840428855, -12.682056755177172], + [-50.29049188390726, -12.683006661853065], + [-50.29268535643524, -12.688512742830508], + [-50.29268538266728, -12.688512615493895], + [-50.295212747898276, -12.67624348515142], + [-50.2952128060807, -12.676243552837851], + [-50.3003839127198, -12.68225916672544], + [-50.29727064839956, -12.691884085725992], + [-50.29424103645531, -12.695653786354612], + [-50.29555098701899, -12.705074027009925], + [-50.29948774525314, -12.70594174048928], + [-50.29710164310345, -12.71104124058502], + [-50.28418798321163, -12.718186939323251], + [-50.28871239148849, -12.735249613385582], + [-50.298347222740965, -12.739860108122427], + [-50.296633195882094, -12.74259515908343], + [-50.302214020466245, -12.745707207416068], + [-50.295461595527605, -12.75348927915951], + [-50.3066366077334, -12.76732210238968], + [-50.3039982429517, -12.78602622357733], + [-50.309298587752444, -12.789421372735783], + [-50.311237367527596, -12.798550112571816], + [-50.305882959239064, -12.805866277653733], + [-50.30712840928071, -12.81963268106614], + [-50.30448951655212, -12.822382633302688], + [-50.304489481018784, -12.822382670330867], + [-50.30179353279919, -12.820337490907082], + [-50.30179345530877, -12.820337432121072], + [-50.30201693237373, -12.824396938073575], + [-50.2953238956596, -12.829192948366947], + [-50.29260546540045, -12.839919829848093], + [-50.292605454694346, -12.839919872092079], + [-50.28721380348047, -12.836992971305426], + [-50.28721374560106, -12.83699293988419], + [-50.28460283753568, -12.843446467168183], + [-50.28460280194309, -12.843446555141789], + [-50.28326928059001, -12.840656194600905], + [-50.28326927022487, -12.840656172911885], + [-50.275906218196575, -12.84409863114264], + [-50.275906166894806, -12.844098655126775], + [-50.27163101321403, -12.84106002658189], + [-50.271630993951156, -12.841060012890203], + [-50.26224304372233, -12.844788242584787], + [-50.26348596155691, -12.847772262786103], + [-50.25104744979863, -12.849803867513476], + [-50.25104737631081, -12.84980387747141], + [-50.25080423934264, -12.85389083684344], + [-50.242294751365996, -12.852713008366345], + [-50.24229469695348, -12.852713000833955], + [-50.236079027326426, -12.857675282158679], + [-50.23607898604898, -12.857675315111377], + [-50.23149623756971, -12.854157213611233], + [-50.231496159957516, -12.854157154028162], + [-50.23173602660098, -12.858453928092809], + [-50.225377534182165, -12.861603244909439], + [-50.22507587409555, -12.874301109486792], + [-50.21329624083695, -12.87823715403135], + [-50.2132961759577, -12.87823717013743], + [-50.21112644532078, -12.876262721211045], + [-50.211126403760176, -12.876262683390546], + [-50.20468330679316, -12.88540107927693], + [-50.20468329128967, -12.885401101264872], + [-50.19996782764873, -12.884266581507934], + [-50.19996776848722, -12.88426656727332], + [-50.19574400832561, -12.890651910165339], + [-50.183381606913, -12.896772650975777], + [-50.183381539140775, -12.8967726702228], + [-50.18101475297108, -12.892365728563256], + [-50.17646330588867, -12.89195844132747], + [-50.176463238242846, -12.891958440124627], + [-50.17293859008345, -12.897163527777272], + [-50.172938573666784, -12.89716355202024], + [-50.16060603466598, -12.893662746869387], + [-50.16060598615399, -12.89366273309711], + [-50.149791223726616, -12.90293268561037], + [-50.12691283012813, -12.905174640062906], + [-50.126912757585764, -12.905174647342479], + [-50.10967191251954, -12.911406741759901], + [-50.10967184860767, -12.911406755475975], + [-50.10390339232607, -12.908043975953616], + [-50.07885061634128, -12.905941202428838], + [-50.078850548155486, -12.905941201408169], + [-50.07121876995256, -12.917985828838487], + [-50.05029226343915, -12.922549838346974], + [-50.05029219047108, -12.922549850158683], + [-50.04441480796967, -12.933494000711985], + [-50.03887993290195, -12.935269184264994], + [-50.03887988496746, -12.935269199638245], + [-50.017908648871455, -12.929223467920647], + [-50.017908624379594, -12.929223460858825], + [-50.002968600653006, -12.93374976658689], + [-49.989734322225324, -12.945973781051803], + [-49.98973428735886, -12.945973813254083], + [-49.979132126118586, -12.939362353085857], + [-49.97913209085456, -12.9393623310941], + [-49.952722825893886, -12.959800929011399], + [-49.952722801860375, -12.959800947608485], + [-49.939380953921265, -12.956929736545703], + [-49.93938092193646, -12.956929729661573], + [-49.911429363251024, -12.966774630459287], + [-49.90914972173606, -12.974043753615426], + [-49.89733289203011, -12.980563226808224], + [-49.7976471596541, -13.036430671155978], + [-49.79697937293065, -13.036808047873915], + [-49.60837116578491, -13.14327315418577], + [-49.5300223923885, -13.187414830210914], + [-49.529744698152754, -13.187571208652653], + [-49.43181227873501, -13.241147234692576], + [-49.369486512303716, -13.274625035989226], + [-49.36948646402804, -13.27462506191015], + [-49.340291750264925, -13.253897476249174], + [-49.3398753425242, -13.23459232934516], + [-49.348902838360836, -13.213923743215044], + [-49.34457721233795, -13.20361383595381], + [-49.34829614390822, -13.189671769373737], + [-49.344819240144, -13.177326178501836], + [-49.35478975475199, -13.153784263673376], + [-49.35268384012092, -13.143996850501267], + [-49.341906351377105, -13.127211112332734], + [-49.344791665984395, -13.117430868943892], + [-49.35393734860308, -13.110747036126833], + [-49.35435342796088, -13.102990434639715], + [-49.33742730464062, -13.066297795268666], + [-49.32217858203521, -13.052087190627875], + [-49.30061068679567, -13.023132503124112], + [-49.283852216297916, -12.991663044444337], + [-49.27882158813661, -12.989019976090818], + [-49.27567946229174, -12.980709542839463], + [-49.279716844376836, -12.976831982760645], + [-49.27898502704264, -12.96916894007814], + [-49.2674277453577, -12.944638274862308], + [-49.26309941016924, -12.940197609398297], + [-49.25778481071607, -12.941803561749733], + [-49.25778473764157, -12.94180357894611], + [-49.25721416505177, -12.93508891468039], + [-49.25257750828668, -12.931758175341244], + [-49.246433100117216, -12.91690552347524], + [-49.249522508200805, -12.902586103020525], + [-49.23531609561506, -12.893653750818496], + [-49.23737189133692, -12.884080838920903], + [-49.23142069439239, -12.88379451079582], + [-49.2314206208055, -12.883794512867224], + [-49.228537020767774, -12.877924763215047], + [-49.222566555905914, -12.876618815178539], + [-49.21100827254752, -12.878365672920323], + [-49.211008198949685, -12.878365682293417], + [-49.208790445667255, -12.873509997644463], + [-49.2081792984677, -12.873199661703355], + [-49.19648532455882, -12.86726115090485], + [-49.195184316909014, -12.863401879843192], + [-49.19306931748631, -12.857127796468243], + [-49.161345558972826, -12.834506396227049], + [-49.15133073513367, -12.821345467583127], + [-49.14590377063366, -12.82003032017735], + [-49.14114898643154, -12.81039335298455], + [-49.136904752659945, -12.800901858337857], + [-49.12098939137871, -12.790402666555998], + [-49.12098933257853, -12.790402627763001], + [-49.106181239178994, -12.836111435735576], + [-49.096678757632745, -12.836002535774822], + [-49.09667868979981, -12.83600253711727], + [-49.08304957074955, -12.84548409763141], + [-49.06748239836121, -12.847341888348781], + [-49.06748232457279, -12.847341896559636], + [-49.072293946883136, -12.852758914808598], + [-49.070553845956184, -12.859613718719071], + [-49.07384683102667, -12.869566328656333], + [-49.08526751739752, -12.879149393540763], + [-49.0849555300524, -12.8794924824156], + [-49.08090055005413, -12.883951565131252], + [-49.08715284321463, -12.888001692259644], + [-49.087814817444254, -12.888430492431828], + [-49.087650137811686, -12.891528373312633], + [-49.08254975988103, -12.892498719772554], + [-49.08254968661921, -12.892498730496087], + [-49.085169929864286, -12.894464909653195], + [-49.07769941031788, -12.904166506869478], + [-49.053433068661946, -12.908638110837625], + [-49.053432995336316, -12.908638121348691], + [-49.050023717762535, -12.91294752433526], + [-49.0500236905375, -12.912947558747447], + [-49.033516795402896, -12.90346582627459], + [-49.03351677578843, -12.903465815006873], + [-49.02298113293847, -12.907130875960679], + [-49.02076446023936, -12.912063238996035], + [-49.00986994193882, -12.916688253772039], + [-49.00484505302428, -12.932551433362246], + [-48.98017136455927, -12.948239888159346], + [-48.97558895099968, -12.957201094916492], + [-48.9755889172376, -12.95720116093726], + [-48.87968267018101, -12.81751979460945], + [-48.87498315207737, -12.814655569928048], + [-48.86851931358449, -12.815888295496162], + [-48.86851924034863, -12.815888306205984], + [-48.873986137247066, -12.807392283445266], + [-48.869814525461805, -12.80440048549229], + [-48.86282050455139, -12.804987928824062], + [-48.86282043070842, -12.804987935367667], + [-48.86254137031297, -12.809701789735616], + [-48.86254136638029, -12.809701856162958], + [-48.85746272372433, -12.80542690304139], + [-48.857462705651294, -12.805426887828002], + [-48.84673013029535, -12.809810217584634], + [-48.84750993900732, -12.818243497660745], + [-48.84212405778835, -12.83046868243976], + [-48.84528982567493, -12.840708373809518], + [-48.84232185988856, -12.844412208753397], + [-48.83134272042747, -12.844447616950163], + [-48.83134264654832, -12.844447620847594], + [-48.83123220231667, -12.84192382456482], + [-48.83123220053447, -12.841923783839857], + [-48.825869753385774, -12.845515550295632], + [-48.82586972546851, -12.845515568994015], + [-48.82090327066654, -12.844311270312812], + [-48.820903204273286, -12.844311254212686], + [-48.8179841199945, -12.853549700287447], + [-48.81156441176172, -12.860040796130896], + [-48.81451266616332, -12.86413342762083], + [-48.80526091083208, -12.866909443663477], + [-48.80599991849268, -12.869947218144587], + [-48.79979040429357, -12.873403435791818], + [-48.800040857776814, -12.876756648720944], + [-48.794871724960444, -12.876463527549088], + [-48.79487165386674, -12.876463526450442], + [-48.79132128311721, -12.88423702144708], + [-48.78671655809647, -12.885116541747841], + [-48.78671648484386, -12.885116552453576], + [-48.785986512905446, -12.880589534094911], + [-48.78598650425983, -12.880589480477585], + [-48.77110367434843, -12.894541173154701], + [-48.762565193613376, -12.905936366072304], + [-48.754509752121606, -12.908073613039695], + [-48.754509679783894, -12.908073626193847], + [-48.74884828679434, -12.91765783250459], + [-48.73653761496136, -12.921032827984563], + [-48.73653754275062, -12.921032841412273], + [-48.73354338223371, -12.930177344721534], + [-48.739176634664325, -12.946155073134719], + [-48.73750286273365, -12.949694520469], + [-48.73068093642693, -12.961529873928779], + [-48.73440285360829, -12.97549639669187], + [-48.73070815328182, -12.989796947754225], + [-48.72518334923872, -12.991305255796691], + [-48.725183276992375, -12.991305269185641], + [-48.717772194083885, -13.002327207341992], + [-48.71777217236001, -13.002327239648256], + [-48.71237401461344, -12.999762357682311], + [-48.71237396610288, -12.9997623346323], + [-48.70792512515637, -13.005112491609697], + [-48.707925086196035, -13.00511253846173], + [-48.70171565743666, -12.998123370892438], + [-48.693358288727964, -12.997416844516227], + [-48.6933582189824, -12.997416843202469], + [-48.690565155202954, -13.003317123729422], + [-48.690565145253956, -13.003317144745795], + [-48.68658989431119, -13.002477131393599], + [-48.68337361964973, -12.993898263074737], + [-48.67534574575818, -12.994218985457627], + [-48.67534567359264, -12.994218989475515], + [-48.66812541294337, -13.003624591844648], + [-48.66812538679293, -13.003624625908104], + [-48.66434600454998, -13.001522387592065], + [-48.664345974965684, -13.001522371135808], + [-48.657071946477956, -13.005451229351394], + [-48.656518046726944, -13.012783256750229], + [-48.65651804494297, -13.012783280363346], + [-48.647817169842796, -13.010838239569425], + [-48.6478171337477, -13.01083823149992], + [-48.640234493306984, -13.013956076324101], + [-48.636493805995755, -13.021264612509496], + [-48.63895583236858, -13.026176262651543], + [-48.63711815014377, -13.034674561148513], + [-48.62769079376613, -13.052163462440696], + [-48.61981824313393, -13.052414747325543], + [-48.61981817233968, -13.052414750862589], + [-48.610238060842164, -13.060409908855425], + [-48.610238033510726, -13.060409931663735], + [-48.60435223502791, -13.058472743085657], + [-48.60435218896798, -13.058472727925396], + [-48.6013724102291, -13.060891130819458], + [-48.60273606512102, -13.078296986527159], + [-48.59643180835419, -13.078615884279742], + [-48.59643173440771, -13.07861588895009], + [-48.59616941179481, -13.08872425216605], + [-48.58889626391518, -13.099579324754314], + [-48.59415340874659, -13.10178675936999], + [-48.59631668927025, -13.107420878155311], + [-48.58561864145627, -13.10608282827537], + [-48.58561857328361, -13.106082825316484], + [-48.581008817715414, -13.114385872459522], + [-48.58248280241777, -13.11837882039361], + [-48.577425127998985, -13.123872478780768], + [-48.577957397000844, -13.127772774870754], + [-48.581761035846604, -13.12843139788853], + [-48.58220208016925, -13.141933862750305], + [-48.58920711714463, -13.145152474611054], + [-48.590649729546215, -13.150871568937603], + [-48.59672661375208, -13.152636491470547], + [-48.592507903510395, -13.158670937580478], + [-48.58642918115689, -13.15908359010137], + [-48.586429107025864, -13.15908359574022], + [-48.58720283536565, -13.167059162450913], + [-48.5784570455907, -13.172799111810688], + [-48.58367776986574, -13.18089519360982], + [-48.577893955884235, -13.18747414104043], + [-48.5804546799523, -13.191389303963934], + [-48.579710971802974, -13.207412752194337], + [-48.58364672432228, -13.210536821125595], + [-48.58327334831927, -13.22215592667196], + [-48.59373104937541, -13.235505134309506], + [-48.60053454783717, -13.23863648483119], + [-48.597901688834696, -13.246684541286053], + [-48.58760009868426, -13.254757875787583], + [-48.59163913161568, -13.256415058714452], + [-48.58953903687172, -13.263922236745078], + [-48.59819203813581, -13.284242593718751], + [-48.60070052163786, -13.29254225174031], + [-48.59722887194386, -13.302802365376348], + [-48.58951343267107, -13.308686158827904], + [-48.586371289492945, -13.317622228337836], + [-48.58637127911326, -13.31762225785558], + [-48.578164893815604, -13.31477418775347], + [-48.56764545527525, -13.311873993923326], + [-48.55357068860225, -13.301990164847524], + [-48.55381949691117, -13.280520505561988], + [-48.559703009638895, -13.273949761012757], + [-48.555423640585005, -13.263503376754649], + [-48.55568930024663, -13.238556397077465], + [-48.54984624371286, -13.230577858522928], + [-48.55367353633054, -13.225348651306858], + [-48.55457062443483, -13.2049756541961], + [-48.546923103927604, -13.195669135432134], + [-48.53034616317237, -13.192568963060703], + [-48.53012112579151, -13.184867487090584], + [-48.52120727090914, -13.166784077708844], + [-48.52203962245616, -13.140969088141125], + [-48.508732440477786, -13.128915952541666], + [-48.50873239170501, -13.128915908362126], + [-48.50648884080446, -13.133512206884667], + [-48.49496091754821, -13.136585740642484], + [-48.494960845169715, -13.136585753791207], + [-48.48798623475703, -13.142786643481086], + [-48.48798621884984, -13.142786657623025], + [-48.48058545560669, -13.14193010456086], + [-48.47959153485049, -13.133220828839445], + [-48.47959153264709, -13.13322080953196], + [-48.475900217139184, -13.134595639754682], + [-48.4697026008279, -13.14959494366829], + [-48.46858852773157, -13.162375208564223], + [-48.472369524114804, -13.166430298477422], + [-48.47195101764765, -13.173138016823998], + [-48.47753663663581, -13.178722436264694], + [-48.47509745057984, -13.191695825231095], + [-48.477700282087994, -13.19694721632072], + [-48.472784787581155, -13.202390909112856], + [-48.471789709896704, -13.211564237283755], + [-48.47531595538339, -13.216215385286679], + [-48.47248371445062, -13.223165505300226], + [-48.475238489742, -13.235740998352785], + [-48.47042780899609, -13.236136930909447], + [-48.4704277351714, -13.23613693731391], + [-48.46798173362472, -13.244303150021798], + [-48.45706890698254, -13.248702114182118], + [-48.46070079849718, -13.249591608189633], + [-48.46137402022615, -13.258561298526526], + [-48.45640362642018, -13.259668007902686], + [-48.45640355341494, -13.25966801961826], + [-48.46186814678007, -13.263180514792948], + [-48.46156867000247, -13.274695378462651], + [-48.457535606453405, -13.282861967421006], + [-48.44682002657848, -13.283740224885985], + [-48.44681995295187, -13.283740231251132], + [-48.44167414175555, -13.29237626061895], + [-48.44167412040877, -13.292376296442745], + [-48.435181744105165, -13.288871469045093], + [-48.43681712298152, -13.284241994014947], + [-48.43079340438685, -13.28019381462009], + [-48.432506762033896, -13.275381560033155], + [-48.42981695729153, -13.271588675144502], + [-48.41667681033846, -13.274728841344958], + [-48.416676737536356, -13.27472885359101], + [-48.407203137647, -13.26742797536504], + [-48.40720311181733, -13.267427955458308], + [-48.40187260607227, -13.270447130439102], + [-48.40187257534267, -13.270447147843642], + [-48.39112580830547, -13.267958296479447], + [-48.38840319652299, -13.261089281217842], + [-48.38840316730878, -13.261089207510178], + [-48.38564478384648, -13.266082203708288], + [-48.38564474658631, -13.266082271151644], + [-48.37940220402263, -13.255878920602543], + [-48.3740411187278, -13.255901678933972], + [-48.37404104470414, -13.25590168277826], + [-48.37095773320447, -13.249484614336541], + [-48.35806235146404, -13.243090427545932], + [-48.3508401923802, -13.241866838085386], + [-48.35084013672469, -13.241866828655336], + [-48.342181260395364, -13.249794337617253], + [-48.342181228706735, -13.249794366627645], + [-48.336898166764115, -13.247092223672219], + [-48.343891413870274, -13.241629121125431], + [-48.34065485597654, -13.236842965043909], + [-48.342090506612756, -13.228407993381055], + [-48.32842470512503, -13.232542205364886], + [-48.328424659064396, -13.232542219297768], + [-48.317481846377966, -13.22996948314446], + [-48.31748177692751, -13.229969466814591], + [-48.31659349871913, -13.234593312885446], + [-48.309889519957245, -13.234915424938528], + [-48.309889445858914, -13.234915430399647], + [-48.30631087714885, -13.234183652924468], + [-48.31065599353549, -13.232355119196821], + [-48.306760447932085, -13.228473017436983], + [-48.30895223077635, -13.226928789325871], + [-48.29256878314378, -13.219561522500035], + [-48.29308877176522, -13.215388665661688], + [-48.28875972690266, -13.215592161523738], + [-48.288759652810114, -13.215592166944276], + [-48.28787385078252, -13.203998464484672], + [-48.287873847747434, -13.203998424761046], + [-48.28500109246711, -13.205904375931079], + [-48.285001038743644, -13.20590441157367], + [-48.28053710922051, -13.199676279837703], + [-48.27648355466087, -13.199514158446624], + [-48.27648348088213, -13.199514160651615], + [-48.28000581058183, -13.206660792741872], + [-48.28000582969178, -13.206660831514064], + [-48.26862173463504, -13.202818863829028], + [-48.26862169250146, -13.202818849608475], + [-48.26540094777937, -13.204999317207733], + [-48.26540088582849, -13.2049993591481], + [-48.26270149671729, -13.197246522567465], + [-48.250854456219365, -13.197001058329976], + [-48.250854382322096, -13.197001061237204], + [-48.247152952493686, -13.192135881059874], + [-48.24284453424093, -13.187425400082317], + [-48.24542180287195, -13.184510941795748], + [-48.23884572863456, -13.180458848968803], + [-48.23184588507769, -13.168178585573264], + [-48.231845864249806, -13.168178549031918], + [-48.22512019876606, -13.173730793232034], + [-48.22512016189438, -13.173730823669409], + [-48.216869694341625, -13.168596311279302], + [-48.21686965246246, -13.168596285215521], + [-48.211535995426956, -13.174145092350942], + [-48.193589718577726, -13.172591697833534], + [-48.19686539395291, -13.16360240448245], + [-48.18631141951851, -13.156850837440702], + [-48.19056809570748, -13.154480522931554], + [-48.18372779066428, -13.155775045245425], + [-48.18372771731555, -13.155775055790702], + [-48.17389987907043, -13.148112941358432], + [-48.17389983881404, -13.14811290997163], + [-48.16534421643127, -13.157934200681234], + [-48.165344173950906, -13.157934249442807], + [-48.16245528566165, -13.154134361647843], + [-48.16245526562471, -13.154134335291857], + [-48.15792170311732, -13.156964729574012], + [-48.157921665745285, -13.156964752905457], + [-48.146617400755346, -13.152021461367214], + [-48.14661734672857, -13.152021437740075], + [-48.145088418591996, -13.154392472647437], + [-48.15583804560678, -13.16621215190913], + [-48.15551185223347, -13.174916328518304], + [-48.1637532677771, -13.182947403161407], + [-48.16505255801043, -13.197094765961348], + [-48.16264326572019, -13.20704375860835], + [-48.15329047632667, -13.21968048644449], + [-48.16889705980165, -13.240097366983957], + [-48.168618033604446, -13.243626829679531], + [-48.15645199472225, -13.250286555014206], + [-48.15370017813382, -13.279205036906456], + [-48.16977265226808, -13.29935961084656], + [-48.16536694108442, -13.30579888436241], + [-48.165366915534506, -13.30579892170409], + [-48.15998282837127, -13.302463164122091], + [-48.15998276803849, -13.302463126741367], + [-48.15750746172427, -13.310538583741588], + [-48.15750741259965, -13.31053874399856], + [-48.15628395709357, -13.303025474401377], + [-48.15628395022851, -13.30302543224243], + [-48.150844220496346, -13.307031329653745], + [-48.15084419071449, -13.307031351584769], + [-48.12183786011455, -13.297439445674552], + [-48.1183163464519, -13.290747120366575], + [-48.113117449554885, -13.292039882912087], + [-48.11311737688089, -13.292039895425024], + [-48.106728628003, -13.287800454304579], + [-48.106728604806584, -13.287800438911422], + [-48.09750841437081, -13.291914886521672], + [-48.09750834766862, -13.29191490341274], + [-48.09323368752737, -13.286310742353939], + [-48.08298045784923, -13.28878870665543], + [-48.0829803850813, -13.28878871893725], + [-48.07803036897527, -13.282008396916135], + [-48.08081016635059, -13.279374898831087], + [-48.07811721431261, -13.27775546495024], + [-48.07734028886991, -13.266429981495879], + [-48.07226316118893, -13.267625897500318], + [-48.07226308834612, -13.267625909581684], + [-48.079092388230706, -13.242963012498837], + [-48.07631620796788, -13.2386242435994], + [-48.076316196603166, -13.238624225837684], + [-48.07179427671205, -13.240432272446848], + [-48.07179422653288, -13.240432292509851], + [-48.062422135395515, -13.235407638435953], + [-48.06242208477371, -13.23540761129476], + [-48.05884124128604, -13.24067789271311], + [-48.0588412204546, -13.240677923371853], + [-48.054953020388105, -13.238968773578197], + [-48.05495293897864, -13.238968737791945], + [-48.05656884254861, -13.248376593304819], + [-48.05183964209177, -13.251930755202626], + [-48.05242754410989, -13.255831236760827], + [-48.033088764155806, -13.253986824151065], + [-48.03308869379342, -13.253986822215962], + [-48.028949370522, -13.264413644103342], + [-48.03422991037185, -13.265852600916071], + [-48.0327009317882, -13.274009577646552], + [-48.032700922072024, -13.274009629478755], + [-48.02906218590658, -13.271488117387236], + [-48.029062141568595, -13.271488086662075], + [-48.022531212327934, -13.279846650582675], + [-48.02253119699237, -13.279846670208785], + [-47.99923870735339, -13.274940306603495], + [-47.98676254516683, -13.276879132405027], + [-47.98676247147593, -13.276879141731863], + [-47.978843170414564, -13.294750684781897], + [-47.97203497197622, -13.30085199024037], + [-47.970976025956276, -13.31152907121375], + [-47.966287298260774, -13.31526956767499], + [-47.966287259630576, -13.3152695984918], + [-47.95645162257926, -13.308721550814626], + [-47.95645160519162, -13.308721539238263], + [-47.95176079362265, -13.310279771169588], + [-47.95176072655703, -13.310279787662928], + [-47.948035942514714, -13.305336775467692], + [-47.948035929250715, -13.305336757865179], + [-47.94378938551798, -13.307072651306388], + [-47.94378931615073, -13.307072668148857], + [-47.93584478913762, -13.290733661599656], + [-47.93584477423426, -13.290733630947152], + [-47.92986689979149, -13.294564250670215], + [-47.929866859190156, -13.294564276686536], + [-47.924285365297614, -13.291428886410364], + [-47.92428531275423, -13.291428856893376], + [-47.91998505837592, -13.298783049680468], + [-47.90825298411649, -13.298946274608703], + [-47.90825291424011, -13.298946277129504], + [-47.90367771270534, -13.302402091533404], + [-47.90214390107366, -13.311830657269713], + [-47.902143894329505, -13.311830698724247], + [-47.89314678127101, -13.307254250127297], + [-47.89314672203993, -13.307254219997487], + [-47.88886633192057, -13.318051239656674], + [-47.88354339338469, -13.320520010183017], + [-47.87031214947259, -13.319862789583816], + [-47.87031207571089, -13.319862791365486], + [-47.866590992847975, -13.315091029579863], + [-47.861309174894366, -13.31439492968784], + [-47.84442788969804, -13.318647527436326], + [-47.84442781706364, -13.318647540009842], + [-47.82395510318954, -13.311877835937606], + [-47.823955056436496, -13.311877820475637], + [-47.81694713531244, -13.317697748212376], + [-47.815846065173524, -13.318045146823321], + [-47.81512482498884, -13.31855527781737], + [-47.80175539414097, -13.328010578454677], + [-47.80133127683788, -13.330508729529804], + [-47.80078682350602, -13.33371555751742], + [-47.77062311411432, -13.366920364196547], + [-47.678950919723434, -13.467724616555063], + [-47.6789508563089, -13.467724686238821], + [-47.6757943443183, -13.449241278444754], + [-47.66769665686056, -13.436267465687733], + [-47.662188079189086, -13.433408642151903], + [-47.65683633732329, -13.427724735241624], + [-47.654559427038755, -13.415044090516144], + [-47.64295075641247, -13.402979599881132], + [-47.63889694089349, -13.391047607074935], + [-47.63381220955559, -13.390896037969181], + [-47.633812135627856, -13.390896040436031], + [-47.62714279498206, -13.384405253341685], + [-47.622696376680594, -13.367675308226824], + [-47.62269645000598, -13.367675297496909], + [-47.637225098937556, -13.364807273573392], + [-47.65009365026478, -13.351260832128792], + [-47.64969886165456, -13.342657312751038], + [-47.65625163203261, -13.32235803233397], + [-47.65417397079119, -13.315662443409973], + [-47.66217294169984, -13.303860138891793], + [-47.65697518157416, -13.299901814176867], + [-47.659167344791115, -13.295815672255511], + [-47.656782843371026, -13.276913176922264], + [-47.64947947070457, -13.274140666829032], + [-47.64045052394816, -13.263219780707411], + [-47.64806132978985, -13.250606029458307], + [-47.64664213606577, -13.24201413715231], + [-47.65741903532615, -13.234727689961764], + [-47.65358974881655, -13.229042726508041], + [-47.65459083115901, -13.220346952563595], + [-47.65459090491605, -13.220346943667506], + [-47.666225158695674, -13.218664121259215], + [-47.66500649452126, -13.214050402237008], + [-47.668862256822315, -13.20941592827048], + [-47.661091205180796, -13.207371971462468], + [-47.665391353930396, -13.203820014800906], + [-47.660869541209664, -13.198862578416252], + [-47.66584080755568, -13.196756383313527], + [-47.657869370365134, -13.192451267390382], + [-47.65531186130698, -13.17788772490721], + [-47.66995272051871, -13.168313088300287], + [-47.659757359412026, -13.159038501673038], + [-47.65447857066564, -13.158331779688973], + [-47.6518686454116, -13.150106349713027], + [-47.644474343253414, -13.14987072273342], + [-47.64447426941513, -13.149870725143852], + [-47.64381466903267, -13.14579953059489], + [-47.64903309953422, -13.139436677703342], + [-47.64553806784328, -13.138731500546317], + [-47.65067704169057, -13.13336348265951], + [-47.645477036118145, -13.128589386306617], + [-47.646641221244735, -13.120617635812124], + [-47.63593068734226, -13.114331223239251], + [-47.63440686262267, -13.103212304094226], + [-47.63440685406254, -13.10321224163312], + [-47.62758493637539, -13.11047305457446], + [-47.62758490547243, -13.110473087463992], + [-47.61794806261878, -13.104719686078191], + [-47.617948036413516, -13.104719670432344], + [-47.59289752954866, -13.116679330397075], + [-47.571648929450035, -13.116763388711293], + [-47.571648859955424, -13.116763390699058], + [-47.57106699484991, -13.117209389632832], + [-47.5613128313629, -13.124685443997276], + [-47.56131253837894, -13.12468566853993], + [-47.568452634964785, -13.149546543886519], + [-47.56304025655145, -13.184242350003782], + [-47.54136854011227, -13.192379776407872], + [-47.541368473466086, -13.192379791102017], + [-47.53303161067559, -13.183822429343095], + [-47.523872826729196, -13.181947092395635], + [-47.52387278165687, -13.181947083165866], + [-47.50983682907599, -13.189881228164127], + [-47.509836795491914, -13.189881247146552], + [-47.48456832613676, -13.182468122773399], + [-47.48456827833511, -13.182468108747026], + [-47.47809161551353, -13.187692748139943], + [-47.4877705848906, -13.208134797104567], + [-47.48558590715061, -13.222171429716376], + [-47.46159018445344, -13.227505282954974], + [-47.46159011145651, -13.227505294503704], + [-47.44342973024133, -13.222434093792623], + [-47.44342968753727, -13.222434081866076], + [-47.435724818639265, -13.227114209048365], + [-47.43125336646665, -13.238048004350617], + [-47.44825603684672, -13.240753691822565], + [-47.45506399846361, -13.249390321437593], + [-47.43481243393677, -13.26823865474697], + [-47.43773066857332, -13.27904513678916], + [-47.432833766047224, -13.288088773813575], + [-47.42565538894637, -13.289748230041171], + [-47.42565451950602, -13.289748431019555], + [-47.416118070310695, -13.270340055660357], + [-47.397482341439705, -13.261109344063588], + [-47.39237615093428, -13.262365142462452], + [-47.39237592409113, -13.262365198249098], + [-47.393757381321485, -13.245592288556397], + [-47.38795162416148, -13.240584714953052], + [-47.38371399007901, -13.24147655355016], + [-47.38371391693741, -13.24147656469199], + [-47.379308713443585, -13.231122122888216], + [-47.371567199291015, -13.228731326920535], + [-47.37156713777569, -13.228731307921832], + [-47.36800596859932, -13.236151619812457], + [-47.352390924941815, -13.248848524089997], + [-47.35239090493991, -13.248848540352247], + [-47.33761992526772, -13.246334776997063], + [-47.33761987114205, -13.246334767784218], + [-47.32295967012213, -13.25831877713263], + [-47.322959633513165, -13.258318807055776], + [-47.30891881504096, -13.249741149058158], + [-47.29450526476939, -13.2489439501886], + [-47.29450519160021, -13.248943948926565], + [-47.293532695372726, -13.25654374639137], + [-47.28561972985701, -13.256325246800753], + [-47.285619652530784, -13.256325246937527], + [-47.289895671233154, -13.262243933542035], + [-47.28211856983197, -13.26492319787176], + [-47.28211850090516, -13.264923215462042], + [-47.27533386822277, -13.250938322351626], + [-47.267399845450214, -13.248177487562732], + [-47.26781586298332, -13.238390556409573], + [-47.25276273373046, -13.235144770872564], + [-47.24817460114769, -13.230136829858143], + [-47.25150568601817, -13.212394295390332], + [-47.23200377047185, -13.204620249187563], + [-47.231951353597246, -13.199342572554226], + [-47.22589256917537, -13.193514683728418], + [-47.22589255421748, -13.193514669340118], + [-47.217529748551286, -13.196548226948448], + [-47.2175296842947, -13.196548240348278], + [-47.211415535860986, -13.192563655990854], + [-47.19683802198119, -13.19364092517735], + [-47.196837947898494, -13.193640931430453], + [-47.1828177077131, -13.188120685897967], + [-47.18281766115519, -13.188120667565034], + [-47.1752021393261, -13.195152165994084], + [-47.184671825697905, -13.203623521869968], + [-47.18315720290002, -13.205715710810138], + [-47.17245010296645, -13.206467825497665], + [-47.172450029879194, -13.206467831085469], + [-47.16769930544675, -13.211245721043618], + [-47.167699265462495, -13.211245761255132], + [-47.16208597636304, -13.205772731140442], + [-47.162085956027646, -13.205772711312632], + [-47.15381271682089, -13.20990891175178], + [-47.153812677583105, -13.20990893136761], + [-47.1352003942318, -13.20316662410591], + [-47.13378348043012, -13.189855229293938], + [-47.14033521551906, -13.187596565688581], + [-47.13256119564243, -13.178514970143093], + [-47.11822928655222, -13.177892748614495], + [-47.11822921276289, -13.177892750520703], + [-47.108929672957075, -13.171054103110729], + [-47.10892960389807, -13.17105405232418], + [-47.10803616231897, -13.181464528927595], + [-47.105336565888464, -13.18171034683897], + [-47.10533649185432, -13.181710353711775], + [-47.10253277824059, -13.1746362269436], + [-47.097280764505186, -13.171801882808012], + [-47.09728074616076, -13.17180187290787], + [-47.08995399108579, -13.174026152543803], + [-47.08731569731658, -13.182436266894525], + [-47.087315683755854, -13.182436310119897], + [-47.08012590309491, -13.178128210689039], + [-47.08478098829566, -13.170554356116881], + [-47.080204514494426, -13.166450146715466], + [-47.08081331514342, -13.161975587534016], + [-47.077461668382604, -13.161559902502985], + [-47.07236827585647, -13.160510242889142], + [-47.069059316412925, -13.155513297480978], + [-47.069059290293644, -13.155513258036844], + [-47.062561577827886, -13.161813344687758], + [-47.062561547226544, -13.161813374357013], + [-47.05128728082707, -13.155924556895963], + [-47.05128725345681, -13.15592454259899], + [-47.04750044561755, -13.15765276433184], + [-47.04750037814451, -13.157652781730002], + [-47.04184000650668, -13.148647940080318], + [-47.04183999596823, -13.148647923314604], + [-47.035890168296945, -13.150874535795234], + [-47.03589009551854, -13.150874552674987], + [-47.03552838979146, -13.147978921543414], + [-47.02280888992749, -13.142011090478714], + [-47.022808842532875, -13.142011068240251], + [-47.01936128026407, -13.145796092860962], + [-47.01936125234939, -13.145796123507257], + [-47.00970433267024, -13.14083879072957], + [-47.00503300169644, -13.13211204152191], + [-47.005370687759566, -13.125135789720499], + [-47.001113207078575, -13.121393568560302], + [-46.99203925513298, -13.12419128187136], + [-46.992039190928644, -13.124191293746469], + [-46.987283611503656, -13.121815486770949], + [-46.987283529070794, -13.121815445587876], + [-46.98839188517144, -13.128149996635342], + [-46.97884150106967, -13.131591377643684], + [-46.97884142734306, -13.131591394361553], + [-46.97855151153399, -13.121609702670291], + [-46.96367154838245, -13.112163884410286], + [-46.9539249854609, -13.111154300169854], + [-46.94630600647031, -13.099311492310584], + [-46.92906542291784, -13.092899819979285], + [-46.92886650486775, -13.0831019830086], + [-46.910757218401564, -13.069078915428296], + [-46.90231145742007, -13.067320948241619], + [-46.892892610632174, -13.053240890873584], + [-46.87900863573184, -13.048849525564984], + [-46.879008558085054, -13.048849501003751], + [-46.88022893131839, -13.059357422135628], + [-46.87664792153094, -13.061964993212582], + [-46.87664788889056, -13.061965016979652], + [-46.871699296022115, -13.05995273500846], + [-46.87169922775056, -13.059952707245904], + [-46.871111129707565, -13.063522636658258], + [-46.868811881721534, -13.068533055994564], + [-46.868588978378476, -13.06851419911034], + [-46.854529349897824, -13.067323859749596], + [-46.85452835010811, -13.067323775076726], + [-46.85495083340035, -13.055672865335303], + [-46.84866986369668, -13.050910373890835], + [-46.84866980963937, -13.050910332901145], + [-46.84743076730239, -13.053890358062077], + [-46.847430735666926, -13.053890434147277], + [-46.84486944780964, -13.049709219338324], + [-46.84747708363949, -13.045489409720124], + [-46.84013730931601, -13.03454498591621], + [-46.834214049451305, -13.033792748021499], + [-46.82892878241865, -13.018668368450278], + [-46.81886678920489, -13.014035439097494], + [-46.82311235110676, -13.008143891516747], + [-46.819668351121514, -13.002486437683519], + [-46.75058171990864, -12.969172140085602], + [-46.70690075295241, -12.969488596637854], + [-46.70690067893836, -12.969488597167622], + [-46.635975562180256, -12.969986331853363], + [-46.63597548816641, -12.96998633235666], + [-46.63383503930033, -12.97000070574857], + [-46.633834965286525, -12.970000706251433], + [-46.55056893039351, -12.970559935955196], + [-46.550568856378725, -12.970559936440484], + [-46.454622380673136, -12.97117132031981], + [-46.45462230667872, -12.971171323969646], + [-46.445990336269006, -12.936261268155027], + [-46.43735878075896, -12.935508367667033], + [-46.43276638235122, -12.930738809553551], + [-46.417597693354544, -12.823477260876393], + [-46.41759768730765, -12.823477218121546], + [-46.411447359593005, -12.827971802151831], + [-46.411064504534984, -12.840543612976726], + [-46.41106450346867, -12.840543647979564], + [-46.406697459385384, -12.838856719273066], + [-46.406696374994794, -12.838856300377511], + [-46.40825863456049, -12.845810764760731], + [-46.397532991223066, -12.851411832671413], + [-46.397532962885364, -12.8514118474687], + [-46.38366556808606, -12.848992913838906], + [-46.383665519364875, -12.848992905339024], + [-46.37644213409208, -12.853386964492287], + [-46.376442062408664, -12.85338700809601], + [-46.37625089893739, -12.85027193634134], + [-46.37625088266339, -12.850271671157234], + [-46.374229676328056, -12.859805656673156], + [-46.3661676113646, -12.86487268813233], + [-46.369118904413696, -12.877567381121258], + [-46.36422586262789, -12.882060182985535], + [-46.36753949068475, -12.887661727847382], + [-46.36197941260128, -12.890469918552919], + [-46.368193358407545, -12.903073531147664], + [-46.360671610810144, -12.908854676023811], + [-46.36550486807882, -12.913234297543033], + [-46.36456168791997, -12.931516762659657], + [-46.366726611972645, -12.939678622722766], + [-46.372219844947686, -12.944769918469786], + [-46.371451645170076, -12.958452172903026], + [-46.37689849966326, -12.963411372132725], + [-46.36823008320984, -12.972527558733637], + [-46.37333776324038, -12.98478987069876], + [-46.36425234623899, -12.99137895777772], + [-46.364252315846585, -12.99137897981813], + [-46.338780688982, -12.982478788682657], + [-46.338780658259566, -12.982478777946069], + [-46.33553012990737, -12.983796911365863], + [-46.33553006079453, -12.983796927793584], + [-46.33406551985459, -12.980901875504001], + [-46.31158322402661, -12.980807844980946], + [-46.31158315006142, -12.980807848223543], + [-46.29026399148891, -12.972490516484633], + [-46.29026395778065, -12.972490503332297], + [-46.28725976828339, -12.973978373917175], + [-46.28725971767749, -12.973978398979988], + [-46.28033843710832, -12.968567796233115], + [-46.280338401970695, -12.968567768763958], + [-46.277142570926145, -12.971386630408269], + [-46.27714254771766, -12.971386650878692], + [-46.22366546411551, -12.956970233395225], + [-46.194527148316034, -12.956692730115241], + [-46.19452707437669, -12.956692733144745], + [-46.187836021930856, -12.94974338046137], + [-46.17987215097406, -12.947372457821432], + [-46.176974127160186, -12.93964759218819], + [-46.161302948598404, -12.934029400371855], + [-46.16130251034757, -12.934029243242021], + [-46.149015621076984, -12.93704037588441], + [-46.14901554846821, -12.937040387991797], + [-46.1199211453695, -12.925891235319806], + [-46.11388420624918, -12.918271927457177], + [-46.113190186826884, -12.933412464520869], + [-46.11319018038214, -12.933412605074714], + [-46.122363155149365, -12.947589724197943], + [-46.12220446280594, -12.957279348440455], + [-46.12220168628351, -12.957448798389484], + [-46.12220168377214, -12.957448951656444], + [-46.125818141582556, -12.961498128202503], + [-46.13886668469911, -12.965463160106083], + [-46.15455830857733, -12.976592052279695], + [-46.16622127870872, -12.975983119670138], + [-46.17408661935353, -12.983583909781593], + [-46.19138869503022, -12.989816605603679], + [-46.19694322551701, -12.996764944615228], + [-46.208859412142026, -12.99892753638584], + [-46.220418278934666, -13.004139516639531], + [-46.232273023527156, -12.995521400933699], + [-46.240278074751764, -12.999876040368113], + [-46.245501346599845, -12.997429994151931], + [-46.253267509374716, -13.006077820728745], + [-46.273352401998835, -13.014973155244354], + [-46.27555320772206, -13.028338314277738], + [-46.281339497521536, -13.03410417567916], + [-46.28133993165099, -13.0341046082644], + [-46.27894914165807, -13.03747938229092], + [-46.27894911600268, -13.037479418504557], + [-46.27901714748314, -13.037715300390941], + [-46.280671194602625, -13.043450235780856], + [-46.28973397351916, -13.051900083663954], + [-46.29186716681646, -13.053888903656128], + [-46.29588847138311, -13.063960606901372], + [-46.30155807544565, -13.076140601266596], + [-46.32263780357188, -13.098302383604505], + [-46.32263788726511, -13.098302471585171], + [-46.31392146626191, -13.108526529652368], + [-46.30854612581263, -13.124082389045995], + [-46.29870039393506, -13.125962993136412], + [-46.29520220385469, -13.1298866570803], + [-46.291613854798, -13.143614248828731], + [-46.291613839346056, -13.143614307935938], + [-46.293598510808884, -13.151375837577593], + [-46.30978208448324, -13.15799745609725], + [-46.309782181074844, -13.157997495614744], + [-46.30392399953474, -13.16720456331971], + [-46.30392393924694, -13.167204658065993], + [-46.3144491047072, -13.178104595507778], + [-46.31444919923547, -13.17810469339711], + [-46.31006122259178, -13.182030561993892], + [-46.30300568935745, -13.182265364331435], + [-46.300782914735535, -13.193626254270486], + [-46.30078289934589, -13.193626332921944], + [-46.3044701085102, -13.205552542141362], + [-46.31222419471386, -13.211501318098163], + [-46.31417143971019, -13.2253707616888], + [-46.31417145813531, -13.225370931717213], + [-46.32113998974018, -13.239365310715645], + [-46.33111539944093, -13.249556226036802], + [-46.331115448449125, -13.24955627610141], + [-46.330140814657, -13.252830513298644], + [-46.31668951769904, -13.252475817188124], + [-46.30225380293755, -13.252307072718834], + [-46.297920887644146, -13.255882123635866], + [-46.29792085419275, -13.25588215123549], + [-46.30144721667315, -13.26673520431204], + [-46.301447244039046, -13.266735288534031], + [-46.29895177190093, -13.28182279741994], + [-46.2989517500003, -13.281822929812956], + [-46.313807963957956, -13.298124018913631], + [-46.31532841301149, -13.30491925528874], + [-46.315328437351354, -13.304919420276127], + [-46.29855846069348, -13.313482626075455], + [-46.28864317202147, -13.314636872650365], + [-46.28763516909403, -13.326711265843842], + [-46.27936159381347, -13.347917594729308], + [-46.27156706525357, -13.34543171117784], + [-46.26647288372189, -13.348374329647193], + [-46.23758544049589, -13.33624427986286], + [-46.21817967419019, -13.317250686866359], + [-46.20502817351153, -13.320321849857221], + [-46.17227478635094, -13.312294728452988], + [-46.12925171544933, -13.290725905581294], + [-46.122894536291255, -13.282422411611726], + [-46.112611592960114, -13.284301790738823], + [-46.08963970829425, -13.270753699521753], + [-46.079639698294606, -13.269824785149533], + [-46.06383927102288, -13.261308994979757], + [-46.05219409572402, -13.264458776640305], + [-46.04925808466827, -13.271289697891941], + [-46.042137080475136, -13.272694047342126], + [-46.041101555704095, -13.277639868510326], + [-46.041234134748734, -13.280495230367722], + [-46.04123414335064, -13.280495389001278], + [-46.04844861368978, -13.309219034386267], + [-46.0616754211553, -13.31831969833428], + [-46.083385486578024, -13.330400741159309], + [-46.09505702414709, -13.332504501679095], + [-46.112395482299796, -13.35869626012124], + [-46.12641651235794, -13.364499194565843], + [-46.13399968486338, -13.37524725768432], + [-46.154720023827856, -13.383360481312788], + [-46.170387013519544, -13.383974573516284], + [-46.19175935042192, -13.390636628024735], + [-46.214336051737575, -13.400732733267212], + [-46.21838724292684, -13.410591132163509], + [-46.24328569119361, -13.430278962604067], + [-46.243285717025806, -13.43027898302785], + [-46.242695068019565, -13.437174784512411], + [-46.22572822344229, -13.43448493899006], + [-46.22247424627786, -13.44838725180535], + [-46.20639040151272, -13.465651466503948], + [-46.20639035542178, -13.465651515971135], + [-46.20986320540215, -13.472789024164694], + [-46.22575258247798, -13.47694527269131], + [-46.23022552320525, -13.481446485147984], + [-46.23022558632756, -13.481446548667902], + [-46.228309035451744, -13.485540239242216], + [-46.220279000126084, -13.487776870054628], + [-46.221915517518305, -13.497651367502277], + [-46.221915539412606, -13.49765153053137], + [-46.21856246874036, -13.500527316869132], + [-46.21856240738753, -13.500527369487564], + [-46.22677568546968, -13.513587842612797], + [-46.24130448813184, -13.525548040642839], + [-46.241304552132284, -13.525548093324735], + [-46.234638574917646, -13.540954269704423], + [-46.234638378275534, -13.540954724130884], + [-46.23866097631869, -13.554603025073138], + [-46.23866101036763, -13.5546031405953], + [-46.235473595215865, -13.562928439649982], + [-46.22847032809291, -13.568978884022764], + [-46.220558714208124, -13.568290814968464], + [-46.21443996802491, -13.572269332822945], + [-46.184303574826856, -13.567589494035031], + [-46.16474918268708, -13.584485172334238], + [-46.16193778694143, -13.59094806615983], + [-46.16193773857975, -13.59094817732987], + [-46.193672197441586, -13.62181314843589], + [-46.213176296919734, -13.63000149147863], + [-46.228386675062815, -13.647621399688516], + [-46.242917091690465, -13.658999519396657], + [-46.253750770782936, -13.682285566512292], + [-46.255093332531764, -13.683457948195569], + [-46.26150674273251, -13.689058199524597], + [-46.261506188247154, -13.689058477162352], + [-46.23836316407038, -13.700644582012826], + [-46.23572667401092, -13.707550751044337], + [-46.23548651385028, -13.70817980802557], + [-46.23548649258559, -13.7081798637244], + [-46.23788163778751, -13.716254866673166], + [-46.26467189293773, -13.733345003962835], + [-46.26686462601285, -13.740343423575535], + [-46.266864672018215, -13.740343570406147], + [-46.25522519453343, -13.74874354673216], + [-46.23714066442319, -13.744847473794785], + [-46.22429937200949, -13.765402712628449], + [-46.22429934002552, -13.7654027638186], + [-46.22760433837453, -13.774219194516853], + [-46.27372389671408, -13.787220013455599], + [-46.28242141633381, -13.796508615706333], + [-46.28242152285636, -13.796508729463186], + [-46.26255509333472, -13.808596441194751], + [-46.262555019476814, -13.808596486127334], + [-46.27174122335449, -13.821926606200622], + [-46.271741269260914, -13.821926672812172], + [-46.269535884883055, -13.82887260751792], + [-46.24967400721159, -13.830741774859208], + [-46.23568748787709, -13.841511384921857], + [-46.23363406306638, -13.84563440825358], + [-46.23363402979885, -13.845634475048856], + [-46.24383484789999, -13.868645999975936], + [-46.26213975876402, -13.902634820618385], + [-46.26221663600074, -13.928204472256478], + [-46.262216642243125, -13.928204505031003], + [-46.26221664265552, -13.928204643024872], + [-46.26810541433226, -13.943778039186219], + [-46.26810573089758, -13.943778876339639], + [-46.23341852340503, -13.967595583474528], + [-46.22242079736752, -13.971178052781443], + [-46.216254801187844, -13.979906816126475], + [-46.21883994175839, -14.002499663301633], + [-46.2188399591733, -14.002499830351283], + [-46.20997892522642, -14.012868796749576], + [-46.210561444916735, -14.019311342972752], + [-46.210561458989574, -14.019311513593449], + [-46.23210747789391, -14.047837093423198], + [-46.24838873065996, -14.056554962040794], + [-46.24838888667498, -14.056555045572438], + [-46.24283659681898, -14.059934955359884], + [-46.232728439578345, -14.056537879322732], + [-46.225176115301245, -14.06964149033349], + [-46.225176066036894, -14.069641575801725], + [-46.241959714733625, -14.092728433531217], + [-46.24772385970329, -14.093891324417912], + [-46.25345406082451, -14.087072732750343], + [-46.26575406914211, -14.0979792265601], + [-46.2657541866453, -14.097979330744485], + [-46.254835792097175, -14.104917122199438], + [-46.23636491944681, -14.107256529486948], + [-46.21683216639605, -14.120028693205063], + [-46.202163879553055, -14.119644856286309], + [-46.1978335866468, -14.126547394826304], + [-46.197255456059935, -14.14321818112663], + [-46.19433667878418, -14.145389269141885], + [-46.18561571265991, -14.151875682717673], + [-46.174166215747384, -14.154732584882343], + [-46.15127706893673, -14.160441921764159], + [-46.133697075469165, -14.15325641074705], + [-46.11811354684384, -14.160383757208404], + [-46.113526479559056, -14.169917161720962], + [-46.116110940147095, -14.18784779082616], + [-46.1161107989491, -14.187847839246434], + [-46.10450345188453, -14.19182789577607], + [-46.101640290287236, -14.192809528541241], + [-46.09841467123533, -14.202396409174561], + [-46.091358017127824, -14.205700275167938], + [-46.07703169672542, -14.195518068274621], + [-46.06113410650468, -14.1943903938769], + [-46.05257074341122, -14.204860170537874], + [-46.05257049314883, -14.204860476491262], + [-46.06100005341615, -14.232542754244822], + [-46.06100009754145, -14.232542899142354], + [-46.05761574871972, -14.235306798950583], + [-46.04628164497684, -14.244562020656128], + [-46.046281563442285, -14.244562087230142], + [-46.0292818235045, -14.246063851669323], + [-46.02928092612701, -14.24606393091035], + [-46.02652595378869, -14.256407438269544], + [-46.0228776167672, -14.259575294785284], + [-46.021912227400676, -14.260413514445313], + [-46.01494174689599, -14.260872318188142], + [-46.00742207173467, -14.256029212326194], + [-45.99602706702387, -14.257243812772055], + [-45.99177702838894, -14.262819394096672], + [-45.99177700927389, -14.26281941917249], + [-45.995272322543954, -14.278926208102558], + [-45.995272347493426, -14.278926379661273], + [-45.97599975978932, -14.277555284672594], + [-45.96324150679347, -14.285925360159405], + [-45.95913603112936, -14.306253942373553], + [-45.9562089376128, -14.314930494609214], + [-45.95402303937559, -14.325376322226086], + [-45.946442580191324, -14.330332820830375], + [-45.9426417772632, -14.343793600881984], + [-45.93846189894274, -14.346062041408038], + [-45.93005825375686, -14.35062232153798], + [-45.93005781582651, -14.350622559168492], + [-45.91355873727833, -14.347218294194313], + [-45.907273111605775, -14.35325311309114], + [-45.906941195484556, -14.358070764444854], + [-45.906941185914846, -14.358070903335424], + [-45.91280170261824, -14.366548420641106], + [-45.91280172619517, -14.366548454745157], + [-45.912109424677155, -14.374991438778446], + [-45.91210941171774, -14.374991596806751], + [-45.92249022204431, -14.380161223697565], + [-45.92607974935322, -14.38621564710857], + [-45.92761194641846, -14.410332899481874], + [-45.92761195761091, -14.410333069634733], + [-45.935320739727, -14.415357928160757], + [-45.94991412741265, -14.416860287372643], + [-45.957808501200496, -14.425859534667795], + [-45.972672220150166, -14.43205818427376], + [-45.99880604122305, -14.429403027831555], + [-45.998806077291576, -14.429402977590295], + [-46.00390404267519, -14.422301457320382], + [-46.00474884921304, -14.421124562714985], + [-46.00746634577988, -14.407342956025753], + [-46.01221840015474, -14.407871443909315], + [-46.01730753643383, -14.420722112349534], + [-46.01730760182272, -14.420722277458543], + [-46.012000382980766, -14.421280958781699], + [-46.0100582319343, -14.427541555076456], + [-46.00080620226353, -14.434554760918365], + [-46.001500343138474, -14.44877319184397], + [-46.001500352438065, -14.448773361421667], + [-46.01222636530861, -14.454637103211645], + [-46.01491586110869, -14.460859740265228], + [-46.01636126254412, -14.469469887970273], + [-46.016361287113625, -14.46947003432898], + [-46.013464745163695, -14.475270980130505], + [-46.01323570750527, -14.475729263033381], + [-45.99718921976751, -14.48748331767735], + [-45.996333585171, -14.489394610158788], + [-45.99364028100255, -14.49541050391372], + [-45.99364033040453, -14.495411017953606], + [-45.994144835742446, -14.500660593917122], + [-45.99414485012404, -14.50066076441357], + [-46.00133273961705, -14.504345419183739], + [-46.00133281348435, -14.504345457048052], + [-45.99883780291896, -14.509736332531423], + [-45.998837755231804, -14.509736435563395], + [-46.004246742674354, -14.51582624896393], + [-46.004246811590626, -14.515826326552425], + [-46.00102295364669, -14.521136227396617], + [-45.98074586722885, -14.53049149954722], + [-45.97985308947232, -14.53251615122348], + [-45.97705627024317, -14.53885843759803], + [-45.977056393943506, -14.5388587795905], + [-45.97933176140299, -14.545149356263973], + [-45.97969785953409, -14.546161468291507], + [-45.99016909717649, -14.541955507635235], + [-45.996611733818284, -14.542991869028054], + [-45.99661189437831, -14.542991894853497], + [-45.98911551351328, -14.550319683966904], + [-45.989115418580866, -14.55031977675868], + [-45.99386189406677, -14.553764805207257], + [-45.99386202433631, -14.553764899755587], + [-45.99187241264386, -14.555049510980028], + [-45.98955794566998, -14.556543820974293], + [-45.99108839468151, -14.563719708175139], + [-45.995778681696976, -14.566162041104858], + [-45.99577876741115, -14.566162085736895], + [-45.987972794788625, -14.566899948589244], + [-45.985276836119084, -14.573576508607122], + [-45.985276816589604, -14.573576556969746], + [-45.98933649096021, -14.58914611982818], + [-46.000999950682505, -14.601621501422962], + [-46.00100041250272, -14.601621995360919], + [-45.984804911202396, -14.620829196619853], + [-45.98544267830934, -14.626535735338333], + [-45.99112869452747, -14.63393488192898], + [-45.9952050603712, -14.63923911798055], + [-45.99520472686201, -14.639239466858038], + [-45.988971171750514, -14.64575992569434], + [-45.988971253036475, -14.645761378603776], + [-45.98972332643479, -14.659205605031303], + [-45.99836952505986, -14.66367717316205], + [-46.000269775246686, -14.66465987004142], + [-46.007222302987586, -14.663455007728965], + [-46.0075788158373, -14.66144864470492], + [-46.00827797620339, -14.65751373753946], + [-46.011807319592855, -14.661133430706792], + [-46.01253118835808, -14.661875813446876], + [-46.02095510090688, -14.663368721377521], + [-46.024639180399255, -14.665153688081169], + [-46.02463924420241, -14.665153718993686], + [-46.02249777301815, -14.670972197492906], + [-46.02249774296877, -14.670972279135098], + [-46.02586051459589, -14.67803380280079], + [-46.02955285523534, -14.683420785873604], + [-46.029552923086115, -14.683420884863153], + [-46.022725970280156, -14.692241598114597], + [-46.006470286599786, -14.701657643641884], + [-46.006503065460436, -14.706699366001848], + [-46.00650307218065, -14.70669953672383], + [-46.001861442306144, -14.711280520757247], + [-46.001763064399356, -14.720297452872058], + [-46.00176306285561, -14.720297594270066], + [-46.006939940799384, -14.731231940859377], + [-46.012888267604914, -14.73385588079812], + [-46.01288835752641, -14.733855920463057], + [-46.0073913441253, -14.743137393059428], + [-46.007891525223464, -14.762253863135463], + [-46.00789153150285, -14.762254028219989], + [-46.01302892111822, -14.769386837265015], + [-46.01302899022935, -14.769386933216794], + [-46.01269359405865, -14.769828089257583], + [-46.00925134249223, -14.77435561258722], + [-46.00800373254215, -14.79361311173158], + [-46.0079724506335, -14.794095807948963], + [-46.00797244091457, -14.79409595791636], + [-46.01783211974698, -14.803374559730342], + [-46.02022388626541, -14.810819585556104], + [-46.0233064451409, -14.818035662695216], + [-46.03817044144843, -14.822290774785182], + [-46.05279841191891, -14.831387455099266], + [-46.0527985606507, -14.831387547583617], + [-46.049670399346134, -14.83318130290761], + [-46.049670354938876, -14.833181328371106], + [-46.05119551908638, -14.837086307568955], + [-46.05119558087127, -14.837086465759231], + [-46.05003489917327, -14.837379959776689], + [-46.045274224220925, -14.83858368511671], + [-46.035417877329415, -14.85266602728812], + [-46.032604593730454, -14.856684999444816], + [-46.032604568885326, -14.856685034936781], + [-46.03754639514136, -14.874673932004361], + [-46.037546420425535, -14.874674024038933], + [-46.03754645772847, -14.874674159821874], + [-46.052100397370694, -14.884107939982714], + [-46.062312147994305, -14.908007634029271], + [-46.06727475889047, -14.909793154830616], + [-46.07949410708038, -14.905013074399369], + [-46.084807405831306, -14.932037537210915], + [-46.088112783470294, -14.936410179013187], + [-46.09818727629031, -14.938999987677914], + [-46.110364089529426, -14.937032673982161], + [-46.1202711363713, -14.920076015941598], + [-46.13230497933872, -14.921392741342268], + [-46.13871945087832, -14.928512695853941], + [-46.14571894330483, -14.926532470677163], + [-46.15051980414933, -14.922086987066963], + [-46.15944115673204, -14.913825114543627], + [-46.16121372524097, -14.906885704725507], + [-46.161391423281074, -14.906189994728498], + [-46.1663842286328, -14.908466884278022], + [-46.16638429519242, -14.90846691463055], + [-46.161524710920354, -14.931064461311538], + [-46.16152450404602, -14.931065423116218], + [-46.17552122762143, -14.94944226942301], + [-46.20577767128862, -14.937180458258478], + [-46.21127425910038, -14.936982496408762], + [-46.21569624427343, -14.943542133001069], + [-46.22443921811398, -14.941748297647509], + [-46.23367250415714, -14.921545036993574], + [-46.24735802036678, -14.922362976447953], + [-46.25697879890013, -14.92893008238517], + [-46.286834843166474, -14.928162264786781], + [-46.292138457959844, -14.921791986627408], + [-46.29464007908971, -14.908629677453046], + [-46.30608224015826, -14.911569523270476], + [-46.31545043148288, -14.900608818298581], + [-46.31930575876197, -14.900455456925462], + [-46.31930574130262, -14.900455152247387], + [-46.31813739516192, -14.883274742045332], + [-46.30885876916413, -14.87758249756815], + [-46.300442555600114, -14.858095342521768], + [-46.300442667275234, -14.858095313854493], + [-46.31444297680114, -14.85450087500856], + [-46.317406512194, -14.849464523400199], + [-46.32488721164174, -14.847804145478952], + [-46.32488709745017, -14.847803863955942], + [-46.32023086897269, -14.836324204015572], + [-46.32023088989856, -14.836323969599968], + [-46.32216989271928, -14.81459691763308], + [-46.334307157322414, -14.812225115388712], + [-46.33636467732365, -14.803297646436214], + [-46.354977038401636, -14.794217312166335], + [-46.36575342742565, -14.795422474554526], + [-46.36791896097792, -14.78963648837665], + [-46.37695251371338, -14.786579522443713], + [-46.404501556797555, -14.760347523917705], + [-46.429604279388315, -14.752716515778957], + [-46.447331188760124, -14.73169301648594], + [-46.46310907247843, -14.731190447187894], + [-46.4689988178328, -14.708233742609528], + [-46.47653136791916, -14.70511350172271], + [-46.48998454503647, -14.71001425287934], + [-46.50341495235373, -14.704091729047875], + [-46.50969331042575, -14.716092007502981], + [-46.509693350125765, -14.71609208338123], + [-46.50747920010684, -14.732165230620609], + [-46.50747916973399, -14.732165451071355], + [-46.51025087350976, -14.738276438542123], + [-46.52236409182172, -14.745116065844574], + [-46.53741152091778, -14.747727081696874], + [-46.54416107104358, -14.75302797265941], + [-46.54416109672204, -14.753027992825766], + [-46.54319699172339, -14.768688474079328], + [-46.54319697415984, -14.76868875930365], + [-46.56586240077403, -14.786388964321192], + [-46.565862459809836, -14.786389010418672], + [-46.563388107813005, -14.79898859066608], + [-46.56203436872872, -14.800892032273763], + [-46.55768022180241, -14.807013883573962], + [-46.560448245300314, -14.815029719176195], + [-46.560448296683624, -14.815029867972301], + [-46.558474263008655, -14.822168952642357], + [-46.53386380579556, -14.828286104123874], + [-46.52152494771398, -14.85119492681173], + [-46.521524897802635, -14.851195019464525], + [-46.5224802115184, -14.854700305492864], + [-46.530392834547925, -14.883725943034102], + [-46.54231289909914, -14.896042670765434], + [-46.54650459942775, -14.925459462442523], + [-46.546504632781776, -14.925459696517384], + [-46.54464990140313, -14.930673098783501], + [-46.53933099722357, -14.941340930071203], + [-46.53933096940991, -14.941340985851424], + [-46.54080619426311, -14.951618467154447], + [-46.540806234577644, -14.951618748014749], + [-46.53239368698864, -14.957975617098235], + [-46.532393594255964, -14.957975687166488], + [-46.533698452996646, -14.961023126936155], + [-46.533698561998214, -14.961023381501953], + [-46.52097651719582, -14.967409270243367], + [-46.51725741503568, -14.972879861265133], + [-46.51672665582343, -14.982032348221717], + [-46.51672663895496, -14.982032639060147], + [-46.52727459060727, -14.988167654737582], + [-46.53077932275434, -15.005293393941177], + [-46.530779377275046, -15.00529366034826], + [-46.52064033494798, -15.01375495732539], + [-46.520032844067735, -15.020186175740347], + [-46.51183145986649, -15.029893113403928], + [-46.50256885168818, -15.052266072714065], + [-46.50256875879861, -15.05226629704491], + [-46.513836294943516, -15.06131546006344], + [-46.5261032891649, -15.056383386848317], + [-46.53196685069423, -15.056408928411917], + [-46.54454930325808, -15.06528483221737], + [-46.5512881985298, -15.063890517415038], + [-46.560909320586006, -15.070374526489122], + [-46.5752767918614, -15.083646576522117], + [-46.58797403013911, -15.08113773154423], + [-46.600277530572804, -15.087825494870982], + [-46.61058399831112, -15.08402388056027], + [-46.62541151452181, -15.089528981230854], + [-46.64098742215526, -15.08760179673388], + [-46.65637412629235, -15.081520738762388], + [-46.68163704635316, -15.058634658937466], + [-46.70019389996086, -15.053453922954716], + [-46.73259399814088, -15.036191803879882], + [-46.75322695268515, -15.03275955337032], + [-46.78182425638179, -15.01933526641586], + [-46.82983547297986, -15.00927764746728], + [-46.856865950816164, -15.010279473439251], + [-46.86413737794262, -15.020398516838618], + [-46.91802255435176, -15.049031252745882], + [-46.92502672146657, -15.057518568539804], + [-46.92600395409701, -15.07357511999913], + [-46.92600396988617, -15.07357542105205], + [-46.91000076475893, -15.087959650944674], + [-46.89773007663071, -15.094230332611009], + [-46.89697678835167, -15.103099996754208], + [-46.88896813239978, -15.111131865394912], + [-46.888968071355826, -15.111131926611794], + [-46.8929425711169, -15.125114438831783], + [-46.9140421066875, -15.158291677955146], + [-46.920563091109365, -15.178228488474586], + [-46.93731325510099, -15.2050323657997], + [-46.93731330930496, -15.205032452527776], + [-46.933446765563694, -15.223499130484356], + [-46.9334467138732, -15.223499377322895], + [-46.940832847108325, -15.230714033934001], + [-46.94083295165065, -15.230714136044906], + [-46.93286946784809, -15.247559004058042], + [-46.92762173797469, -15.255107896127257], + [-46.9127967156613, -15.246867511282634], + [-46.90631289113951, -15.236631466213334], + [-46.89145115028465, -15.235272404777948], + [-46.88797978951193, -15.26826012490664], + [-46.88797976703406, -15.268260338433834], + [-46.891287162319145, -15.278146214672974], + [-46.8912872262708, -15.278146405820195], + [-46.88928491258314, -15.282259610803035], + [-46.87366507179328, -15.285415818074442], + [-46.83719952545071, -15.321329321512968], + [-46.83586468029349, -15.326548693738118], + [-46.835864628075946, -15.326548897905647], + [-46.84792372936448, -15.346773132260278], + [-46.86092443912462, -15.350974009095728], + [-46.869446734024024, -15.361486601723097], + [-46.869446863229314, -15.361486761094575], + [-46.86638995729051, -15.36517797872268], + [-46.85068895769787, -15.368533937023882], + [-46.849445162796165, -15.373176369411388], + [-46.849445096201585, -15.373176617965292], + [-46.86631100982319, -15.386015842725968], + [-46.88383969573197, -15.392354477539111], + [-46.89698700883322, -15.402295131777763], + [-46.91509098310829, -15.414847051641138], + [-46.929279558150206, -15.439951773449797], + [-46.93324343355053, -15.460238688627468], + [-46.933243449959065, -15.460238772602683], + [-46.93239667100862, -15.48318347107773], + [-46.93239666165599, -15.48318372437547], + [-46.9441806933878, -15.518198743897448], + [-46.94708291350282, -15.539845543070003], + [-46.948654042185446, -15.557855853643801], + [-46.94865406657323, -15.557856133219268], + [-46.94294638554482, -15.567006897035283], + [-46.91949296466001, -15.5888248935443], + [-46.897026888790386, -15.593191511899269], + [-46.88254328109489, -15.610096136660728], + [-46.877614624093226, -15.612154049592123], + [-46.85484998042662, -15.618312544882876], + [-46.854418541205675, -15.628152427396783], + [-46.85441852994028, -15.628152684278865], + [-46.85897926715809, -15.639646969578305], + [-46.85897933710614, -15.639647145859243], + [-46.856491714799105, -15.644836149937223], + [-46.852559421285115, -15.653037863244695], + [-46.85255946457058, -15.653038282185467], + [-46.855077780882446, -15.67741266155781], + [-46.85566908911449, -15.683136044800431], + [-46.85566911601926, -15.683136305218367], + [-46.84241978173816, -15.7146827610685], + [-46.82711410356686, -15.729982974810348], + [-46.82738151832615, -15.747586478630682], + [-46.827381524595594, -15.747586784117502], + [-46.81311562608658, -15.78721590943347], + [-46.81311559224375, -15.78721600341828], + [-46.81482940610556, -15.795907561740503], + [-46.823922932544725, -15.808949781383609], + [-46.82392301165809, -15.808949894843389], + [-46.820969918247386, -15.816906645009295], + [-46.82096987326668, -15.816906766197382], + [-46.823188223756254, -15.82464449294632], + [-46.82318828262705, -15.82464469828642], + [-46.80546844892088, -15.859406366705036], + [-46.80608589815407, -15.872011233679286], + [-46.8060859095219, -15.872011538967458], + [-46.81168781383885, -15.886102614032586], + [-46.81168988988598, -15.886102555253451], + [-46.82278774174045, -15.88578805292568], + [-46.824834522682686, -15.885729986073988], + [-46.929329298975304, -15.911244483040704], + [-46.95564499162492, -15.9173754336659], + [-47.02044061521563, -15.928839923844675], + [-47.05275530446249, -15.937925090186134], + [-47.07389201714895, -15.955343334750923], + [-47.089054277568046, -15.961732073476409], + [-47.10972116964868, -15.956484747435594], + [-47.112250217778175, -15.954467946994592], + [-47.12562290429019, -15.943800024412155], + [-47.13453442028497, -15.950198731814545], + [-47.13453435366438, -15.950198384257757], + [-47.13147953488816, -15.934261036104816], + [-47.13147957305341, -15.934260972596133], + [-47.13513950226453, -15.928170424673347], + [-47.14191834700653, -15.926646675771867], + [-47.141918569953624, -15.926646625653717], + [-47.13920978665124, -15.931135337324994], + [-47.13920968934245, -15.931135498569747], + [-47.142397863395836, -15.935496302852894], + [-47.14577113230173, -15.932296603041475], + [-47.15130077971517, -15.934995885204117], + [-47.15130089791971, -15.934995942903265], + [-47.148899822198544, -15.940411359294204], + [-47.14889965433788, -15.940411737874864], + [-47.1513906955566, -15.939380190993665], + [-47.1525700669432, -15.94302547842426], + [-47.15731667545644, -15.94101682371717], + [-47.160477161362536, -15.942522094367835], + [-47.16047731652435, -15.942522168266471], + [-47.15850240527939, -15.945638240456354], + [-47.15850213442541, -15.945638667807989], + [-47.16253087124483, -15.94388211713496], + [-47.16949914732487, -15.953972029564245], + [-47.16949929221436, -15.953972239350668], + [-47.16642520383725, -15.956129732344436], + [-47.16642493987004, -15.95612991760066], + [-47.170440095476316, -15.957905540682516], + [-47.17044019136938, -15.95790558308816], + [-47.16891082140574, -15.962501236031507], + [-47.16611302459073, -15.962281017810815], + [-47.16611264020577, -15.962280987552878], + [-47.16866328874326, -15.96446297017746], + [-47.16866362471349, -15.964463257582771], + [-47.16475096200962, -15.964681166244532], + [-47.16475044449818, -15.96468119506159], + [-47.16898925506206, -15.966912965239477], + [-47.168989545966134, -15.966913118398832], + [-47.16686643492485, -15.968058699794948], + [-47.16686629380531, -15.968058775938541], + [-47.17022174012519, -15.973213522153873], + [-47.17822228315092, -15.977308323315809], + [-47.181101379181506, -15.970760052742103], + [-47.18690041735693, -15.97131617277355], + [-47.18690062375564, -15.971316192564123], + [-47.18286016622213, -15.97714693181161], + [-47.182860002819524, -15.97714716760598], + [-47.18671166187592, -15.978714535760066], + [-47.18671177178894, -15.978714580486137], + [-47.18507638283526, -15.982914186449706], + [-47.18507624179867, -15.98291454861467], + [-47.1894205092808, -15.981270910296223], + [-47.19522747823043, -15.981443624614903], + [-47.19799158227889, -15.987245308873042], + [-47.207765744304766, -15.987470538096076], + [-47.20773046595239, -15.997382656970956], + [-47.20773046721999, -15.997382961398472], + [-47.2118456782712, -15.998472415485042], + [-47.21184573415129, -15.998472430278065], + [-47.2109941420654, -16.00368157280477], + [-47.210994094299, -16.003681864976155], + [-47.21675769367027, -16.005070078247122], + [-47.219493808883904, -16.01425308319795], + [-47.22161333866791, -16.011681234941435], + [-47.22831029038839, -16.015771033125763], + [-47.228364217579774, -16.012633082979857], + [-47.233749844232435, -16.015752793575253], + [-47.23851777395552, -16.01353492743352], + [-47.25404297443216, -16.01920192364852], + [-47.26162530693749, -16.014135468001395], + [-47.2678351191372, -16.014754869025708], + [-47.26813493840963, -16.01212475335496], + [-47.27725622023515, -16.012062826018457], + [-47.277256180983684, -16.012062520510597], + [-47.2764997000929, -16.00617454313745], + [-47.27649973673423, -16.00617458816199], + [-47.28100725408954, -16.01171321637131], + [-47.287711624125976, -16.009684512586364], + [-47.28881186419112, -16.01595280329448], + [-47.28969327182642, -16.013867997572536], + [-47.2968102627871, -16.015088854772205], + [-47.296810325059155, -16.015088865453382], + [-47.29618616827648, -16.018510153949787], + [-47.29618610827092, -16.018510482858314], + [-47.30046576969976, -16.0170611277364], + [-47.30046580950023, -16.017061114256993], + [-47.29988819150412, -16.02294232690795], + [-47.29936858709641, -16.026199813610393], + [-47.2993685413993, -16.026200100085088], + [-47.30872653189104, -16.02952796971633], + [-47.31109072048227, -16.033158949199702], + [-47.311090829134116, -16.033159116067015], + [-47.3089731414488, -16.036094184023685], + [-47.30897306115817, -16.0360942953023], + [-47.30897319589843, -16.036094303333883], + [-47.308974494285174, -16.036094380727747], + [-47.31603477053051, -16.036515111730576], + [-47.31908847313045, -16.0366970139497], + [-47.31818682145483, -16.034104515687602], + [-47.31739160221314, -16.031818000671183], + [-47.31739126040113, -16.031817017842048], + [-47.317393014172694, -16.03181661604505], + [-47.32108348345278, -16.030971075645354], + [-47.321084398808566, -16.03097086591475], + [-47.32137005375068, -16.029083057332034], + [-47.32180421405384, -16.02621370009432], + [-47.32180441281578, -16.026212386447057], + [-47.321804772028585, -16.02621285894942], + [-47.32394560391252, -16.029028830500277], + [-47.323946153069755, -16.02902861208615], + [-47.32523078179911, -16.028517676266397], + [-47.32836719845147, -16.027270181359768], + [-47.328370335190215, -16.027268933703482], + [-47.32837055330213, -16.027268601047027], + [-47.33211603325959, -16.021555893755846], + [-47.335194322265906, -16.016860450779017], + [-47.33519493409913, -16.01686075560125], + [-47.33949884432949, -16.019004952853994], + [-47.33777252559045, -16.01348966166823], + [-47.337312615684546, -16.012020295141912], + [-47.33731224593959, -16.012019113837685], + [-47.33731471595421, -16.012018878694203], + [-47.34472410541521, -16.011313376994284], + [-47.344726366992994, -16.011313161612296], + [-47.344727285922794, -16.011311556619894], + [-47.346086414038716, -16.00893767899288], + [-47.34719792570659, -16.006996233543852], + [-47.347753783532184, -16.006025312706733], + [-47.34775434459571, -16.006024332686348], + [-47.351573137761285, -16.006565517726703], + [-47.35347026141973, -16.00683434535533], + [-47.3598133527256, -16.007733055308424], + [-47.359813497824085, -16.007732819729664], + [-47.36114554274379, -16.005570106899246], + [-47.364039964223025, -16.000870484034177], + [-47.36404038815345, -16.000870442820634], + [-47.365168701504714, -16.0007607477028], + [-47.36897829978046, -16.000390331110275], + [-47.368822400683214, -15.998205156019752], + [-47.36852846903665, -15.994085304420976], + [-47.36852825094874, -15.994082247656708], + [-47.3685294443846, -15.994082460349219], + [-47.371389379527194, -15.994592134483323], + [-47.37139031700256, -15.99459230154607], + [-47.37139132467704, -15.994590487782212], + [-47.37581293553576, -15.986631363733865], + [-47.3758131580677, -15.986630963142632], + [-47.37581125343639, -15.986628237121872], + [-47.37442568432663, -15.984645109080093], + [-47.371475927319516, -15.980423069248891], + [-47.37147711981945, -15.980422622434837], + [-47.37320170302574, -15.97977643408195], + [-47.37411996292356, -15.979432361096128], + [-47.376860284861024, -15.978405526797738], + [-47.376860812047624, -15.978405329249371], + [-47.37686559957408, -15.978381469327378], + [-47.37777813584119, -15.973833434726439], + [-47.37777826348873, -15.973832798514586], + [-47.377776239193686, -15.973829382318504], + [-47.37591711955013, -15.970691890472715], + [-47.374751599878486, -15.968724887174933], + [-47.37356566446066, -15.966723392412614], + [-47.37356440183573, -15.966721261469832], + [-47.373575583739274, -15.966707498730614], + [-47.37573512892945, -15.964049466074092], + [-47.37672074047014, -15.962836310055026], + [-47.37219657702364, -15.960929346210484], + [-47.37219537716758, -15.960928840447385], + [-47.372194975515654, -15.960928671143158], + [-47.37219511271389, -15.960928262281966], + [-47.37346794090017, -15.957135035540508], + [-47.3734699422332, -15.957129071094942], + [-47.370229610067504, -15.955952071208053], + [-47.37022903822569, -15.955951863490327], + [-47.37022855589463, -15.955951688286788], + [-47.36748761841704, -15.947686054714412], + [-47.36714441629575, -15.946651053467424], + [-47.36714346551408, -15.946648186166573], + [-47.3675029383063, -15.940854625654959], + [-47.3697942272112, -15.938878965940562], + [-47.37151686657877, -15.937393575906176], + [-47.37247556589664, -15.936566895195318], + [-47.36320765035005, -15.933474501027911], + [-47.36319732347284, -15.933471055035634], + [-47.36319679366354, -15.933470878242703], + [-47.36344975052384, -15.930307505982952], + [-47.363449806980405, -15.930306799934126], + [-47.360750439928005, -15.931705592059208], + [-47.36074984126269, -15.931705902276699], + [-47.359752749485175, -15.924830430966734], + [-47.3617226091966, -15.919785227393705], + [-47.3617241983636, -15.919785698146972], + [-47.363463655883734, -15.920300963549444], + [-47.36564604720591, -15.920947413414893], + [-47.36752968984917, -15.917689346649404], + [-47.366255860812664, -15.91484358427819], + [-47.36533239309593, -15.91278049630617], + [-47.364243070508174, -15.910346833750967], + [-47.36363988750932, -15.908999238355705], + [-47.36363957485458, -15.908998539837398], + [-47.36364064611055, -15.908998271120991], + [-47.3726480000746, -15.90673861971036], + [-47.37267340053552, -15.906732246926046], + [-47.371141264634744, -15.900169292140658], + [-47.374092385573306, -15.89790288496555], + [-47.37566523305369, -15.896694924650737], + [-47.375666254692284, -15.896694140014025], + [-47.37569726190872, -15.895665885832463], + [-47.37582588594387, -15.891399960668531], + [-47.37589828763071, -15.888998325458255], + [-47.37594458421477, -15.887462481745164], + [-47.37608248456329, -15.88288712368324], + [-47.37936221589578, -15.881784657000255], + [-47.376263069604555, -15.880714112975443], + [-47.37430796692139, -15.880038731291263], + [-47.37430763267931, -15.880038615827033], + [-47.374306961540405, -15.880037244074943], + [-47.37141417445239, -15.874124482304527], + [-47.370536369124295, -15.87233021941783], + [-47.369639012289646, -15.865150526556565], + [-47.372730110688245, -15.863751227600225], + [-47.372730160500396, -15.863751205050363], + [-47.3686315778062, -15.856887370370634], + [-47.36725021907305, -15.85457393248249], + [-47.36736045677045, -15.84919326345279], + [-47.36736221733646, -15.849192927031158], + [-47.36866780727768, -15.848943441065714], + [-47.370200003864774, -15.848650641395732], + [-47.370199994565944, -15.848650554790494], + [-47.369437999442084, -15.841553674436254], + [-47.3694379608025, -15.841553314565047], + [-47.36943795694115, -15.84155327860221], + [-47.36728312199497, -15.836521248056819], + [-47.367282871382315, -15.836520662807667], + [-47.3664132424429, -15.835877679771954], + [-47.363671492035095, -15.8338504506138], + [-47.36367092950571, -15.833850034677056], + [-47.36592033189099, -15.828195681063171], + [-47.36592026472411, -15.82819564536881], + [-47.36428955541586, -15.82761046883394], + [-47.361449918259865, -15.826591436321982], + [-47.3614202839084, -15.826580801502072], + [-47.360724385810286, -15.823595061215093], + [-47.360034128530046, -15.820633476793223], + [-47.36003336260891, -15.820630190543774], + [-47.3600333033391, -15.820629936241602], + [-47.36003311605345, -15.820630156375453], + [-47.35863077298795, -15.82227843663326], + [-47.35738343478654, -15.82374449259986], + [-47.357382922900705, -15.82374427676989], + [-47.35384243241099, -15.822251438480409], + [-47.35383550440659, -15.822248517233797], + [-47.35383503831639, -15.822248320703256], + [-47.35316556253361, -15.817784048349525], + [-47.35289962033058, -15.816010649249634], + [-47.352616261020955, -15.814121097857166], + [-47.35233248632097, -15.812228767482548], + [-47.35233240344353, -15.812228214819267], + [-47.347002454058426, -15.8079131222909], + [-47.347004438781205, -15.807907868900923], + [-47.34855527656627, -15.803802817693], + [-47.34855585644138, -15.803801282725846], + [-47.34855587915003, -15.803801222614599], + [-47.343879676263896, -15.799456356642532], + [-47.33869747981697, -15.794641060237046], + [-47.33869714468252, -15.794640002548904], + [-47.33822890050901, -15.793162211522539], + [-47.33553414840132, -15.784657224295463], + [-47.334223526045434, -15.780520558942298], + [-47.334221671670505, -15.780514705972985], + [-47.33422158844024, -15.780514443273049], + [-47.33154292524119, -15.77988214412044], + [-47.3298133239733, -15.779473852585067], + [-47.32981261953223, -15.779473686290968], + [-47.32981214177, -15.779473573507863], + [-47.33014589035997, -15.773858674909784], + [-47.33014590744868, -15.773858387390824], + [-47.32684074780199, -15.771092069513193], + [-47.326837244079655, -15.771089136946253], + [-47.326839252209105, -15.771085177647883], + [-47.32741206026008, -15.769955800386526], + [-47.32870406358311, -15.76740835672413], + [-47.3287039063883, -15.767408169369338], + [-47.32559802580632, -15.763706307749429], + [-47.320721631421925, -15.757893889487393], + [-47.31996024406427, -15.756986320474102], + [-47.319952783094315, -15.756977426999589], + [-47.31995403357728, -15.756975506529246], + [-47.320813832044536, -15.755655030299843], + [-47.321918879675344, -15.753957864572692], + [-47.321919174202755, -15.753957412223073], + [-47.318566082916114, -15.754582017430575], + [-47.31856566763147, -15.75458209478516], + [-47.317961626261365, -15.751825128085367], + [-47.31689091127998, -15.74693807932137], + [-47.316641542984776, -15.745799874823984], + [-47.31664145230242, -15.745799460916736], + [-47.31663997478522, -15.745800306207547], + [-47.31538083988762, -15.746520653159463], + [-47.31412040991793, -15.74724172728125], + [-47.314120101979505, -15.747241903446787], + [-47.31411984333133, -15.747239981219435], + [-47.31371945513008, -15.744264360225399], + [-47.31344111074995, -15.742195741379883], + [-47.31303734053103, -15.739194962565039], + [-47.31289018824242, -15.738101338446585], + [-47.312903265023344, -15.738089969387689], + [-47.315573178605135, -15.735768675823028], + [-47.31680044493196, -15.734701625171962], + [-47.318807649772545, -15.732956409943716], + [-47.31880863170731, -15.732955556162096], + [-47.318753865263396, -15.7297355548085], + [-47.318640966889625, -15.723099500319213], + [-47.31856750186923, -15.718782616429532], + [-47.318545505756006, -15.717490302956634], + [-47.31854548160408, -15.717488710006503], + [-47.31546589296624, -15.712375696756052], + [-47.3145124144882, -15.710792594347643], + [-47.313942130559134, -15.70984571592486], + [-47.31300370249382, -15.708287566884186], + [-47.31233737125942, -15.707181189180671], + [-47.31233538068943, -15.70717788401773], + [-47.31408212388479, -15.70086910152282], + [-47.31362561364292, -15.698822589870359], + [-47.31267350020889, -15.694554249592755], + [-47.312673292032166, -15.694553316323457], + [-47.319724745575876, -15.687014766417992], + [-47.31972585081299, -15.687014889183242], + [-47.32156121583858, -15.687218746323392], + [-47.32512007495525, -15.687613990816736], + [-47.327840808079195, -15.687916114362112], + [-47.32797229127212, -15.687930714039133], + [-47.327972648450015, -15.687930083861156], + [-47.33150803294119, -15.68169224578488], + [-47.33150869827047, -15.681691071825988], + [-47.33090822894597, -15.68062746519646], + [-47.32694941091071, -15.67361499394603], + [-47.32694732832345, -15.67361130483193], + [-47.3269622712121, -15.673492221597263], + [-47.32796926254157, -15.665466663428592], + [-47.32808179883365, -15.66456969168473], + [-47.329165023081046, -15.655935062943051], + [-47.329166318136274, -15.65592473891747], + [-47.32916584489175, -15.655923448034711], + [-47.32736635172221, -15.651014833837852], + [-47.326561049492284, -15.648818094945627], + [-47.326561870819674, -15.648815719090557], + [-47.3269887534048, -15.647580864498106], + [-47.33062170399505, -15.637070870769893], + [-47.332161511064655, -15.632615800113857], + [-47.33309249126466, -15.629922093006636], + [-47.331901668692815, -15.626348259310332], + [-47.33049162212413, -15.622116392551995], + [-47.329767203242675, -15.61994220243669], + [-47.329726862930805, -15.619821128598172], + [-47.32703149042974, -15.611731256255231], + [-47.32244962553075, -15.597978284565116], + [-47.32244880443224, -15.59797581983554], + [-47.322448737817346, -15.597975619874473], + [-47.31636551530365, -15.59628980971262], + [-47.31636510554489, -15.596289696152189], + [-47.31636521976066, -15.596288768536652], + [-47.31683608710291, -15.592464429353765], + [-47.31704888319244, -15.590736028580608], + [-47.317224392873925, -15.58931043760864], + [-47.32269277536778, -15.586122082278688], + [-47.32269366771124, -15.586121561974101], + [-47.32269400832084, -15.586121891829189], + [-47.32580489062796, -15.589134493333969], + [-47.3258050697011, -15.589134430228414], + [-47.3277884759779, -15.588435464034173], + [-47.33248824553208, -15.586779135182809], + [-47.33912594455581, -15.584439593245714], + [-47.3391625985641, -15.584420064861083], + [-47.34208016240992, -15.582865621427183], + [-47.34432177630646, -15.581671269496091], + [-47.34432393534121, -15.581670635771976], + [-47.34985152168603, -15.5800480801282], + [-47.35364595339539, -15.578934169449203], + [-47.35364642149424, -15.578934476446573], + [-47.357362296069425, -15.581331492477243], + [-47.35737058941018, -15.581326310947523], + [-47.359392953862255, -15.580062755018707], + [-47.362702961105384, -15.577994608901086], + [-47.37420002746845, -15.577838407326347], + [-47.37950455446935, -15.573233856275603], + [-47.380421602215826, -15.567395541366414], + [-47.3804226248315, -15.567395545658206], + [-47.38812583049426, -15.567427740000348], + [-47.38959018770913, -15.567433829488563], + [-47.38959084634711, -15.567432920137838], + [-47.396469899546354, -15.557934682249085], + [-47.399303659408126, -15.55402159634558], + [-47.40478127539274, -15.546457033955422], + [-47.40478317834404, -15.546454405845306], + [-47.40478451290863, -15.546454445521196], + [-47.40700394617242, -15.546520416952188], + [-47.41769648080177, -15.54683793394361], + [-47.41731403345384, -15.500321136109637], + [-47.49304720098535, -15.500401804837646], + [-47.495929528905656, -15.50030637017644], + [-47.52418757139093, -15.500454223903096], + [-47.56204219010457, -15.50047566046155], + [-47.61702041436535, -15.500494759668516], + [-47.61895771595266, -15.500495536355677], + [-47.62089546090543, -15.500496296185378], + [-47.645490933754445, -15.50050021560017], + [-47.66240884566194, -15.500501318195544], + [-47.688712865118035, -15.500500688043251], + [-47.772013765321795, -15.500477251743291], + [-47.85294074452771, -15.500424403942501], + [-47.97902014309311, -15.500283841600982], + [-48.03610265484199, -15.50019692142813], + [-48.05319633914051, -15.500168411539487], + [-48.14037981261965, -15.500184507701654], + [-48.200505752067635, -15.50017516984094], + [-48.20050574857615, -15.500175479079346], + [-48.200447761037786, -15.505310291009058], + [-48.20037721403935, -15.511629155618593], + [-48.20034640256498, -15.514387853217512], + [-48.19980321892853, -15.616325918663634], + [-48.199803193279, -15.616330691147246], + [-48.20028411817517, -15.621866856291762], + [-48.20028455994389, -15.621866874494438], + [-48.200287249536935, -15.621866985316592], + [-48.21892796323324, -15.622634268115814], + [-48.21892963177878, -15.622634336725152], + [-48.21892985821179, -15.622634603322563], + [-48.23295381427765, -15.63914455377101], + [-48.23651164947498, -15.649658135264273], + [-48.23486755852509, -15.65905390199413], + [-48.23486838306873, -15.659057095881309], + [-48.24233767742329, -15.687986763894159], + [-48.24264073869356, -15.689160446030941], + [-48.242640607630634, -15.689162096966275], + [-48.241665042352224, -15.701449269417228], + [-48.24131170452472, -15.705898771116473], + [-48.23425058822339, -15.708877643592777], + [-48.23270051308436, -15.709531528691626], + [-48.2326977009167, -15.70953271496428], + [-48.221041469967716, -15.708343170385739], + [-48.21808883977223, -15.708041748436644], + [-48.218087270796254, -15.708041588255629], + [-48.20818479096528, -15.717636450027234], + [-48.20762290558341, -15.718180835351683], + [-48.20745525320803, -15.718343265211795], + [-48.20745516602476, -15.718344682937275], + [-48.20645164489207, -15.73466022657013], + [-48.20603352274556, -15.741456319059886], + [-48.206034226335376, -15.741457959800686], + [-48.2099018636276, -15.750476779133695], + [-48.21224922867216, -15.75595019041582], + [-48.21225030501516, -15.755951963777557], + [-48.21632719634977, -15.762668751185503], + [-48.21632818327778, -15.762670377122673], + [-48.21632956805036, -15.762671908183101], + [-48.221902169911786, -15.768832973457469], + [-48.224193766059706, -15.77136642841139], + [-48.22666808780628, -15.774101807471567], + [-48.233696599414465, -15.78187138255811], + [-48.233697070176476, -15.781871686786221], + [-48.238234071291544, -15.784734519400335], + [-48.23823409456688, -15.784734606899232], + [-48.23867193292159, -15.78638056152406], + [-48.24006101955488, -15.791602396238154], + [-48.24141838986205, -15.796704821952847], + [-48.24194624733963, -15.798689017257477], + [-48.24194655913563, -15.798690189278213], + [-48.24194682214022, -15.79869010995066], + [-48.243664157034836, -15.798172118192873], + [-48.24671143900093, -15.797252938767077], + [-48.246711787027294, -15.797252833785652], + [-48.25638038706085, -15.801655561613813], + [-48.2604853971989, -15.803524657262777], + [-48.267868004778, -15.806885846065628], + [-48.267870419875614, -15.80688957987998], + [-48.269130379475094, -15.808837496602308], + [-48.269165473729835, -15.808891752307282], + [-48.282560597439186, -15.829598441226127], + [-48.28584678409825, -15.839488870524093], + [-48.28706010588836, -15.843140411708344], + [-48.28706075273874, -15.843142358403343], + [-48.28636299699638, -15.84527915986402], + [-48.28424779067659, -15.851756381761327], + [-48.2831339204895, -15.855167071735266], + [-48.28186938660952, -15.859038910180601], + [-48.281593541052644, -15.859883487100094], + [-48.279883622815795, -15.865118660832978], + [-48.27877607252857, -15.868509400355558], + [-48.27877597060321, -15.868509789060054], + [-48.27804354912617, -15.87130291272541], + [-48.276865970095784, -15.875793442675022], + [-48.27606954582177, -15.878830337387203], + [-48.276069268764225, -15.878831393830657], + [-48.276065708743886, -15.878833982313186], + [-48.272150150325736, -15.881680893025218], + [-48.27214944038681, -15.881681409190183], + [-48.27215093092819, -15.881684339218355], + [-48.27670290016285, -15.890631995211322], + [-48.277174127321835, -15.891558229026689], + [-48.27439454711531, -15.893059700536043], + [-48.275263232983605, -15.897004788398412], + [-48.27569658188941, -15.898972781416546], + [-48.276424597033085, -15.902278904796852], + [-48.277315632815615, -15.906325257526348], + [-48.27731653946305, -15.906329374721812], + [-48.27278199836061, -15.909956191097871], + [-48.27059638493603, -15.91170419963604], + [-48.270595455527186, -15.911704942945805], + [-48.27059683717822, -15.911709744417415], + [-48.27325773360605, -15.920956499134666], + [-48.27326864061068, -15.92099440026585], + [-48.27326905986016, -15.920994546872114], + [-48.27399416441935, -15.921248105323064], + [-48.274819054992776, -15.92153655392848], + [-48.27692705164594, -15.922644123094315], + [-48.27692604241104, -15.922684701507919], + [-48.27687175543099, -15.924867319065203], + [-48.2768146358629, -15.927163599235698], + [-48.276730461166316, -15.930547115423613], + [-48.276730424647425, -15.93054858324242], + [-48.26817176227083, -15.932859933811079], + [-48.26600401095953, -15.931663227638658], + [-48.26115480610911, -15.928986104945308], + [-48.26115429001227, -15.928985820012471], + [-48.261153210861245, -15.928986730650436], + [-48.25875432811771, -15.931010982602459], + [-48.257211319705824, -15.932312981840086], + [-48.25703286052458, -15.932463564722678], + [-48.25295732543009, -15.935902366922273], + [-48.25295727692423, -15.935903566871565], + [-48.25278510779181, -15.940162450248705], + [-48.25270218664201, -15.942213441456179], + [-48.25268073162636, -15.942744093871026], + [-48.252680282500904, -15.942755202114474], + [-48.25267606298814, -15.94302749978806], + [-48.25260160750508, -15.947831555797658], + [-48.252535897037426, -15.952070140018899], + [-48.25250426716398, -15.954109983550122], + [-48.25250424237139, -15.95411158234693], + [-48.25250578236614, -15.954113989759321], + [-48.253363919635305, -15.955455472397121], + [-48.25621546568701, -15.959913019373905], + [-48.25730435009642, -15.961615114265888], + [-48.25927002423723, -15.964687692895305], + [-48.25974966425081, -15.970593080404823], + [-48.260329572711896, -15.977732995767385], + [-48.26032961947534, -15.977733571525974], + [-48.26033493707638, -15.97774666803002], + [-48.27183303893572, -16.006061485755634], + [-48.272816872971546, -16.00848392534135], + [-48.27270136353905, -16.01039371520073], + [-48.27190019109389, -16.023637614700522], + [-48.27169635796079, -16.027006442762556], + [-48.27159337171657, -16.028708433099997], + [-48.27159292462063, -16.028715821829756], + [-48.27159355345155, -16.028716903245343], + [-48.27312003964636, -16.031342004386993], + [-48.27320230843643, -16.031483480263848], + [-48.27733754224089, -16.03859450098846], + [-48.27733935516295, -16.03859761841258], + [-48.27733983042968, -16.038601137933707], + [-48.277822624750314, -16.042176378238032], + [-48.27874825218116, -16.04903079244142], + [-48.27908775745752, -16.05154483486788], + [-48.27908939243462, -16.05155694184091], + [-48.259866807756126, -16.05157882266299], + [-48.14559845684505, -16.051720166281772], + [-48.14501927466296, -16.051672928354286], + [-48.08664826864528, -16.051765450617268], + [-48.065269934049866, -16.051701745881374], + [-48.050654063935134, -16.05165734832143], + [-48.03439948643947, -16.051606149276726], + [-48.02111949731357, -16.05156347328687], + [-47.981757227225444, -16.05143310041318], + [-47.98165317437728, -16.0514330532037], + [-47.939192601157465, -16.05140956083539], + [-47.939190398865854, -16.051409559398156], + [-47.889928062687645, -16.051242644999444], + [-47.839284377193586, -16.05114279480206], + [-47.81447494084689, -16.051056816835654], + [-47.8134181829725, -16.051066036713806], + [-47.73890656597634, -16.05082778277332], + [-47.683444346242005, -16.050634019483248], + [-47.67390582030525, -16.05064008274805], + [-47.617486261665285, -16.05066556531633], + [-47.59655615145754, -16.05067031213978], + [-47.555728062645976, -16.0506758103413], + [-47.53770286813075, -16.05067539417761], + [-47.41562254096556, -16.05063502549627], + [-47.3087781537191, -16.05054159875497], + [-47.30877760030843, -16.05054159813258], + [-47.30745179532774, -16.050540881346226], + [-47.30350118236306, -16.06018494268597], + [-47.30350108296324, -16.060185185319988], + [-47.31572407533303, -16.06733705458408], + [-47.315724440156465, -16.06733726803184], + [-47.31152025317022, -16.068425976938975], + [-47.30818771033296, -16.074825453574093], + [-47.3081704516107, -16.078845175322], + [-47.30817045273439, -16.078845480591248], + [-47.31662679775547, -16.07963733415279], + [-47.31662739395964, -16.079637389969648], + [-47.31041270457811, -16.082279794769313], + [-47.31041252625699, -16.082279870585225], + [-47.313122593434294, -16.085616354328195], + [-47.3131227144662, -16.085616503333195], + [-47.311308918700384, -16.088141134211096], + [-47.311308733957986, -16.08814139135009], + [-47.32219671586001, -16.09088030123796], + [-47.323516390202876, -16.08463284088171], + [-47.32926939117165, -16.09043844369797], + [-47.333098759273625, -16.085894889923033], + [-47.33711044544803, -16.093603057041474], + [-47.33711059521531, -16.093603344798826], + [-47.33153751526948, -16.09431292394219], + [-47.33153733473293, -16.094312946926053], + [-47.333884761225875, -16.09782505234295], + [-47.333884816831294, -16.097825135535622], + [-47.33183820109337, -16.107484864857216], + [-47.33183814878662, -16.10748511171864], + [-47.33893344259346, -16.114362005136226], + [-47.33893354700919, -16.114362106333413], + [-47.336525137251044, -16.119495746538863], + [-47.33652502088412, -16.11949599457156], + [-47.34145060370347, -16.121773648032892], + [-47.34145074531718, -16.121773713514724], + [-47.33772729744611, -16.128491904292638], + [-47.33772713383046, -16.12849219948917], + [-47.34997114213688, -16.12924292422026], + [-47.35269596380223, -16.132838590044628], + [-47.35269607732226, -16.13283873984238], + [-47.347488731958784, -16.140568925299338], + [-47.34748866352318, -16.14056902688469], + [-47.35033847309655, -16.1481363333805], + [-47.35033858836969, -16.148136639464962], + [-47.34092077770992, -16.14810764817414], + [-47.3409204502823, -16.14810764715896], + [-47.348589691750405, -16.155112139459852], + [-47.34858996219628, -16.1551123864524], + [-47.340390485902006, -16.156951275368584], + [-47.34039032127792, -16.156951312284992], + [-47.34497605588396, -16.164074850094234], + [-47.344976260849634, -16.164075168479453], + [-47.34064661855964, -16.163796879985554], + [-47.33192066877309, -16.171747570731075], + [-47.33136805735175, -16.179594547575157], + [-47.33136803707543, -16.179594835465668], + [-47.340474673736935, -16.18526454744437], + [-47.340475188582445, -16.185264867964488], + [-47.329923319294274, -16.18495691881402], + [-47.32992319351374, -16.184956915140088], + [-47.33242331218689, -16.19072210005876], + [-47.33242338588259, -16.190722269994474], + [-47.329926859550866, -16.195914763862685], + [-47.329926759233146, -16.195914972504646], + [-47.33628655528716, -16.201595611524805], + [-47.33628682380768, -16.201595851360782], + [-47.32822590477201, -16.203638307353422], + [-47.32313670193803, -16.209643618732578], + [-47.323136485884646, -16.209643873665698], + [-47.32900182995848, -16.210971703395455], + [-47.33015537868268, -16.214355291784845], + [-47.33015544188515, -16.214355477168024], + [-47.32242614947427, -16.2313242182621], + [-47.32242607969331, -16.231324371439555], + [-47.32905109814335, -16.244258475415705], + [-47.32905115087502, -16.244258578358593], + [-47.32796376073929, -16.249228817090486], + [-47.32796369182742, -16.249229132060282], + [-47.33379665170956, -16.248532818195983], + [-47.33486783402685, -16.25808407021765], + [-47.34500879284881, -16.26551266098267], + [-47.35081979057013, -16.274751090352506], + [-47.35081985205399, -16.274751188096253], + [-47.347624582186384, -16.287266317716703], + [-47.34762451819563, -16.287266568329787], + [-47.356168158357356, -16.29377731062318], + [-47.35616822997403, -16.293777365196306], + [-47.352936369408106, -16.30661312816769], + [-47.35293630805635, -16.306613371810503], + [-47.35807010221062, -16.311187434780866], + [-47.36623829148024, -16.331506200943526], + [-47.37127095557799, -16.333335619220026], + [-47.37838219801812, -16.346880609449723], + [-47.40358248555002, -16.375834423563347], + [-47.415109669010114, -16.380798633115653], + [-47.41908983067992, -16.383889670825294], + [-47.41928539734516, -16.39086700922664], + [-47.419285405840135, -16.390867315020397], + [-47.42714001447737, -16.394168628548588], + [-47.427140061842756, -16.39416864845528], + [-47.42359082498469, -16.420223708953202], + [-47.42359079575927, -16.420223923446436], + [-47.431804411043174, -16.440148887678006], + [-47.431804500747, -16.440149105268002], + [-47.429485291405044, -16.442665691602016], + [-47.42948510340823, -16.442665895594114], + [-47.44541996731751, -16.450925162154817], + [-47.44789714788173, -16.464706022017474], + [-47.4537876895137, -16.46559995314705], + [-47.456116142055514, -16.48741123086669], + [-47.456116172288354, -16.48741151406555], + [-47.45295253733417, -16.490692055584255], + [-47.452952428174875, -16.49069216877418], + [-47.45957160855099, -16.501535830770607], + [-47.46003310604399, -16.50510334328986], + [-47.460033141529294, -16.505103617600664], + [-47.459311272378194, -16.505943908457944], + [-47.4541320314653, -16.510200662733997], + [-47.44761768699532, -16.51737223615335], + [-47.44531030703797, -16.5294611006665], + [-47.442086304406715, -16.52920677444811], + [-47.442086251453176, -16.529206770270456], + [-47.44437465480188, -16.540772824069123], + [-47.444374713219, -16.54077311931259], + [-47.43530940507165, -16.54268697271885], + [-47.43050918429127, -16.541184399661425], + [-47.43050878271353, -16.541184273953622], + [-47.43400094762853, -16.544860195941517], + [-47.434001072124865, -16.544860326985773], + [-47.42899923664601, -16.55238628865024], + [-47.4263386446956, -16.548345291315425], + [-47.420530162131115, -16.551799982678588], + [-47.41347782050855, -16.548126135619334], + [-47.4050378615169, -16.55650000667285], + [-47.4050376217365, -16.55650024455835], + [-47.41233383461002, -16.558497168047133], + [-47.4130033032486, -16.56225435667768], + [-47.41300336095814, -16.562254680552307], + [-47.409225137063174, -16.560871663642793], + [-47.40922487639581, -16.560871568222776], + [-47.41233876186293, -16.565516230014936], + [-47.41233892446058, -16.565516472539276], + [-47.409129196446194, -16.56683264531977], + [-47.4091290960984, -16.566832686466988], + [-47.41283754463695, -16.575865079945746], + [-47.41283768649658, -16.57586542544996], + [-47.40080991329431, -16.57228874216683], + [-47.393979749546794, -16.574140253571002], + [-47.39397964377749, -16.574140282240677], + [-47.396392520566636, -16.580003103906865], + [-47.39639261386345, -16.58000333059452], + [-47.38686211431938, -16.588869097088885], + [-47.3868621463717, -16.588868753815195], + [-47.387754467376624, -16.579311163910436], + [-47.38775443165857, -16.57931115223214], + [-47.382397524914026, -16.577559589294598], + [-47.37648340481436, -16.580240008968097], + [-47.37404961570332, -16.592454339809454], + [-47.37404958195424, -16.592454509167293], + [-47.374052940244326, -16.59246514228619], + [-47.37578966255959, -16.59796389656695], + [-47.3766403991715, -16.60087235943173], + [-47.376641955422905, -16.600877679826283], + [-47.376642044334254, -16.600877983789662], + [-47.3669430658925, -16.601096372690705], + [-47.364637515374845, -16.59472621537793], + [-47.35683673701464, -16.58874068427211], + [-47.350750852407714, -16.593359119299855], + [-47.341573395089995, -16.59315902559328], + [-47.34157296499671, -16.59315901620658], + [-47.34477209787406, -16.595459311514865], + [-47.34477228314286, -16.595459444727346], + [-47.340949247228636, -16.599184387340873], + [-47.33692450759834, -16.597978976800405], + [-47.336924430314376, -16.59797895365304], + [-47.3384476673951, -16.603841452503634], + [-47.338447737164266, -16.603841721020075], + [-47.33290179702849, -16.60719424445503], + [-47.33290159753463, -16.607194365043892], + [-47.33791969812084, -16.61166879558656], + [-47.33791983034273, -16.611668913479498], + [-47.334308663387404, -16.61713715126849], + [-47.32049723803881, -16.60705378696411], + [-47.31850479967514, -16.603566039526417], + [-47.31592651678307, -16.606907671151664], + [-47.31592643491428, -16.606907777256477], + [-47.321231898264145, -16.618675434096144], + [-47.321232065802214, -16.61867580568134], + [-47.31623626329175, -16.61661225747966], + [-47.304426046402945, -16.624086854738742], + [-47.30442596996919, -16.624086903108587], + [-47.307065256047565, -16.632121570845047], + [-47.30706538490105, -16.632121963096814], + [-47.29803310329814, -16.62565014171555], + [-47.29464467916112, -16.626571062488665], + [-47.29406064367404, -16.63677482576156], + [-47.28647544462163, -16.634065836743286], + [-47.283569541543436, -16.639768906783075], + [-47.28356945302895, -16.639769080492744], + [-47.28697590447084, -16.644425364664365], + [-47.286976076004215, -16.644425599127736], + [-47.27827773236071, -16.64821736504015], + [-47.277198844124584, -16.6600561318187], + [-47.271921973157696, -16.66371772569159], + [-47.26580708199672, -16.659906997686452], + [-47.26386692465078, -16.66229698589005], + [-47.2620549698228, -16.655671181985618], + [-47.25817645116727, -16.655623159594303], + [-47.25381441195034, -16.663670717753202], + [-47.25381429360813, -16.663670936070794], + [-47.25978036454896, -16.667797486411104], + [-47.25978098136702, -16.66779791302932], + [-47.250757794696696, -16.66600575873861], + [-47.24837035327631, -16.67514732998748], + [-47.248370281047784, -16.675147606532725], + [-47.258918377960505, -16.678981917135648], + [-47.25891850953226, -16.678981964958936], + [-47.25519263768831, -16.686757328351007], + [-47.24759317199309, -16.682077650755947], + [-47.24569541882287, -16.685615918720668], + [-47.24566632722682, -16.70097773662577], + [-47.24566632878872, -16.700978038983063], + [-47.25144490685797, -16.70550542743295], + [-47.25144506713684, -16.7055055530033], + [-47.24870368490623, -16.708747818767154], + [-47.24151061752234, -16.70452645295323], + [-47.238364648118335, -16.709123594913486], + [-47.22761387667281, -16.713492061416392], + [-47.22607224189911, -16.72005905913735], + [-47.22331720414907, -16.722580767895796], + [-47.22161242378058, -16.726307984814824], + [-47.221612375347036, -16.72630809070381], + [-47.22305580447632, -16.731426271315073], + [-47.23105873161965, -16.734382081619387], + [-47.231058892978815, -16.734382141212183], + [-47.22650108530504, -16.74169232075114], + [-47.226500932420144, -16.741692565946877], + [-47.23447195003558, -16.74469143799327], + [-47.23595308872119, -16.755392184902927], + [-47.23595312222099, -16.75539242692514], + [-47.23205874680282, -16.765086279742693], + [-47.22339394904534, -16.76182833136816], + [-47.22339334705831, -16.761828105006746], + [-47.22989153106256, -16.76749680996586], + [-47.2308684653135, -16.775415928161056], + [-47.23086850182321, -16.775416224110586], + [-47.21882244369523, -16.77951981709601], + [-47.21719619083103, -16.78007374172678], + [-47.21956052756815, -16.786652160365218], + [-47.219560592645514, -16.78665234142886], + [-47.21636724353763, -16.79360941368895], + [-47.2163671576027, -16.7936096008984], + [-47.21902917534255, -16.796971945408224], + [-47.21902928938189, -16.796972089446434], + [-47.215641804753744, -16.80212957699307], + [-47.215641625318035, -16.802129850175497], + [-47.219418869113966, -16.80278539447082], + [-47.21949265823411, -16.803196802689932], + [-47.220328606656714, -16.807857549565377], + [-47.220328151046616, -16.807857973772926], + [-47.208975903889076, -16.818426746290616], + [-47.20742387751093, -16.819871499544522], + [-47.20742368203073, -16.819871681511053], + [-47.21274972360416, -16.823112482396112], + [-47.21286683633323, -16.828000218083613], + [-47.212866843915315, -16.82800052377753], + [-47.19349002271037, -16.825213136216483], + [-47.19348973627512, -16.825213094998567], + [-47.20592713539325, -16.83987465197909], + [-47.20592720473589, -16.83987473371504], + [-47.19997582050014, -16.861535416561928], + [-47.19997574609359, -16.86153568732687], + [-47.20930760921069, -16.865499048556682], + [-47.209307660986184, -16.86549907054486], + [-47.207670138374404, -16.87606511378667], + [-47.20087080703545, -16.875381162716135], + [-47.200870782528035, -16.875381160250516], + [-47.201588869852245, -16.88223168347605], + [-47.201588889629214, -16.88223198783346], + [-47.193144195331115, -16.883165180284493], + [-47.19314410104295, -16.883165190701906], + [-47.194589942292346, -16.887347790563854], + [-47.202948787822905, -16.890399326948643], + [-47.20294889774085, -16.89039936707333], + [-47.20131404521735, -16.89465014914075], + [-47.19339649540103, -16.897486976220524], + [-47.19339642620946, -16.897487001009733], + [-47.197054967238515, -16.91083950524967], + [-47.19705506379684, -16.91083985764123], + [-47.18089136946798, -16.90233562694805], + [-47.17284112087862, -16.9185027639317], + [-47.16418653928776, -16.918511926480942], + [-47.16003719914029, -16.920607025538835], + [-47.16003702916967, -16.920607111358034], + [-47.167588279270625, -16.929950132091776], + [-47.174161372067985, -16.9319441638708], + [-47.17416166306723, -16.931944252143868], + [-47.16947950557617, -16.935537256982087], + [-47.169282401792614, -16.94024838324541], + [-47.164361058195475, -16.93812661405073], + [-47.156893785131864, -16.94142619733758], + [-47.156893599967006, -16.941426279151635], + [-47.166557272821244, -16.952642454255532], + [-47.166557502751374, -16.952642721106674], + [-47.15191108755966, -16.955200046898494], + [-47.15191091017899, -16.95520007786283], + [-47.15831403138835, -16.964704652433497], + [-47.1583141937149, -16.96470489337348], + [-47.15161600845158, -16.967507752812335], + [-47.14319852123123, -16.965177956924233], + [-47.14319847957807, -16.965177945394494], + [-47.14411542526111, -16.97107727199041], + [-47.14411547051911, -16.97107756316263], + [-47.12853414703558, -16.97707480238002], + [-47.125896910128276, -16.981774609620036], + [-47.12589682721461, -16.9817747573749], + [-47.13150365182032, -16.99155358462367], + [-47.15108866820294, -16.997357106909572], + [-47.151089759366805, -16.997357430189275], + [-47.14014088866724, -16.997179045022964], + [-47.140253346619424, -17.00471856395198], + [-47.14025335270776, -17.00471886962281], + [-47.144839983930396, -17.003638204418408], + [-47.144730106984746, -17.009730487079946], + [-47.14473010804098, -17.0097307926225], + [-47.132755357929504, -17.005340780850098], + [-47.131724803973135, -17.010441024841267], + [-47.131724751593566, -17.01044128405828], + [-47.1406437007657, -17.017344628981498], + [-47.14064386180594, -17.01734475362088], + [-47.13839484412498, -17.01999801235833], + [-47.13839469831019, -17.01999818437829], + [-47.1443591879786, -17.02519302471652], + [-47.148946936392534, -17.024144823328726], + [-47.148947043324334, -17.024144798895694], + [-47.146806344822025, -17.031259603087488], + [-47.146806261166425, -17.031259881109182], + [-47.15178018841789, -17.03276568120378], + [-47.15500800189308, -17.026323701282923], + [-47.157144638199085, -17.03382274971294], + [-47.15962919241259, -17.028737299743526], + [-47.16219255110433, -17.034876303086246], + [-47.162643186191225, -17.041554320269494], + [-47.16264320029306, -17.0415546255276], + [-47.16842444868242, -17.039150157422533], + [-47.168424689100206, -17.039150057425736], + [-47.16464575298169, -17.045735381171365], + [-47.16464563361972, -17.045735589165965], + [-47.16693757941412, -17.047498236602973], + [-47.172675993821365, -17.043695389452555], + [-47.17900408242505, -17.039501356143635], + [-47.18014856191105, -17.035526230224356], + [-47.18027696382281, -17.035080235995082], + [-47.18441564370682, -17.035966430208315], + [-47.18441569872685, -17.035966441988876], + [-47.1816991115713, -17.05282565782738], + [-47.17514687921489, -17.054453773109913], + [-47.175146697387575, -17.054453818287314], + [-47.18206109937124, -17.06395941707522], + [-47.1873924315876, -17.05769742301335], + [-47.190254253728696, -17.061706709381433], + [-47.19617060903217, -17.060073989935013], + [-47.19622290705232, -17.066642958698516], + [-47.19622291210484, -17.066643264398348], + [-47.19158753963545, -17.066469925989864], + [-47.19100335325465, -17.06963104778164], + [-47.191003300904235, -17.06963133104993], + [-47.198058980627394, -17.072265869268968], + [-47.205504936833066, -17.07068750631835], + [-47.20783343562221, -17.066857256347365], + [-47.2103417920531, -17.07393129834213], + [-47.21034185431258, -17.07393147392092], + [-47.207645326436776, -17.080360574827502], + [-47.20764517944364, -17.080360925273922], + [-47.223756820306555, -17.075697777316158], + [-47.22375073217924, -17.082549893269526], + [-47.22375073589669, -17.082550198961705], + [-47.228843534495425, -17.07903778280137], + [-47.234143370360364, -17.082358630094205], + [-47.23414354573689, -17.08235873998032], + [-47.23071273475338, -17.08636574234809], + [-47.22228308091401, -17.085532544174153], + [-47.22228219673627, -17.08553245676239], + [-47.231783150929424, -17.08971981328193], + [-47.24061524009742, -17.083623427285186], + [-47.242429369558295, -17.087524991838208], + [-47.247693184646145, -17.081773526533674], + [-47.24814061778428, -17.098561848579408], + [-47.24814062572586, -17.098562154283073], + [-47.254973923030526, -17.098293323958572], + [-47.25519854899015, -17.092703723153335], + [-47.2593061239162, -17.10076437504536], + [-47.264422093258716, -17.097545561280903], + [-47.26711180465656, -17.113663986347596], + [-47.274614647830376, -17.10410186922874], + [-47.28192165096317, -17.114898412043758], + [-47.28192181287548, -17.114898651265257], + [-47.2751129707325, -17.117836437444957], + [-47.27511293532503, -17.117836452721175], + [-47.275893705453626, -17.123088412903694], + [-47.282136049156634, -17.1227662200109], + [-47.282136467517006, -17.122766198411018], + [-47.276313432256465, -17.127408262560127], + [-47.276313189680735, -17.127408455929654], + [-47.28338807656266, -17.130583512661804], + [-47.28338809992005, -17.13058352314355], + [-47.282674417999395, -17.14410458395982], + [-47.28267440131951, -17.14410489989993], + [-47.29578303585384, -17.138628232832886], + [-47.30413991079422, -17.146933989701747], + [-47.304139959517094, -17.14693403812385], + [-47.30294379670145, -17.15445505368995], + [-47.30294375606791, -17.15445530916068], + [-47.30733958943073, -17.15901792021969], + [-47.31100601841148, -17.146323515806298], + [-47.323646113183116, -17.155635009148675], + [-47.32764415318579, -17.1483409936428], + [-47.332255488370684, -17.1540377869794], + [-47.33225560244948, -17.15403792790632], + [-47.32939161988845, -17.15848130904103], + [-47.3293915243031, -17.158481457333764], + [-47.33386894355014, -17.165298101977292], + [-47.351951348706734, -17.16650437326407], + [-47.35195146385612, -17.16650438094049], + [-47.34845179219573, -17.176227738903165], + [-47.34845170975615, -17.176227967933663], + [-47.35316861127453, -17.180236150181063], + [-47.35316883291217, -17.180236338511524], + [-47.34014153478118, -17.18739193418603], + [-47.34014131757928, -17.187392053477318], + [-47.3427518895895, -17.189555131569136], + [-47.34958976272284, -17.186229223063076], + [-47.3566400415999, -17.18862747631736], + [-47.3630084464088, -17.186497933121114], + [-47.36300874301038, -17.186497833933746], + [-47.357260010875116, -17.194560283639653], + [-47.35019684669666, -17.196503336074148], + [-47.350531879070545, -17.20559833331815], + [-47.3505318886214, -17.205598639023645], + [-47.356038236658684, -17.202643214404066], + [-47.36080978238778, -17.204624497705257], + [-47.36414516980075, -17.21201112001673], + [-47.36414520904909, -17.21201120693408], + [-47.362610305972474, -17.22271286549461], + [-47.362610260045585, -17.222713185674035], + [-47.36609156754571, -17.221780402488463], + [-47.36944494083746, -17.217745967076088], + [-47.375944623126955, -17.217159759359067], + [-47.37594473780994, -17.217159749013877], + [-47.37428457488431, -17.222073358125403], + [-47.37428444956254, -17.222073729028452], + [-47.37856829212734, -17.21997902290501], + [-47.38528254728462, -17.22705368102459], + [-47.38528267333028, -17.227053813829823], + [-47.37897870864452, -17.236281849491284], + [-47.37897854127061, -17.23628209448343], + [-47.38722212456788, -17.239141289933368], + [-47.38722239845951, -17.23914138492301], + [-47.38189691142106, -17.2433613027533], + [-47.3818967582567, -17.24336142411545], + [-47.38753583969822, -17.24981896099534], + [-47.39888114834682, -17.242651030506323], + [-47.40677656525392, -17.24569244134321], + [-47.411032727178075, -17.24923689138446], + [-47.41103281351335, -17.249236963280804], + [-47.40823430772719, -17.257583676428062], + [-47.40823421226336, -17.257583961136852], + [-47.42287009971957, -17.26056874060632], + [-47.4228704468257, -17.26056881138035], + [-47.41689855090092, -17.26470676821607], + [-47.41689851434459, -17.26470679354492], + [-47.417811981368935, -17.2704672397913], + [-47.42791916104229, -17.27152599594858], + [-47.43442277409145, -17.276222708463415], + [-47.43442284173602, -17.2762227573122], + [-47.432733757508245, -17.283492024720456], + [-47.42551356372686, -17.283634478124032], + [-47.419506975767185, -17.292358782996757], + [-47.41950694584002, -17.29235882646169], + [-47.42117416499643, -17.30391867704347], + [-47.42933457744632, -17.308041683264445], + [-47.42933478124836, -17.308041786228415], + [-47.42167537660542, -17.315972537445568], + [-47.421760041779585, -17.321267190577753], + [-47.421760047392, -17.321267494617484], + [-47.42414895481853, -17.324033360089423], + [-47.43534080960055, -17.31700939676737], + [-47.44189510832124, -17.32301840399408], + [-47.45031067642061, -17.32405693755752], + [-47.45425668075863, -17.331904854144046], + [-47.45425678699921, -17.33190506543012], + [-47.443816479148374, -17.341944446239122], + [-47.44152600828216, -17.34838767442702], + [-47.441525889228416, -17.348388009316036], + [-47.46000734366595, -17.34415443753581], + [-47.46078800232479, -17.348457410356588], + [-47.460788053471234, -17.348457692271577], + [-47.45650528785465, -17.350827523430244], + [-47.456505042743274, -17.35082765905573], + [-47.463975178074726, -17.355851663304826], + [-47.47318675538238, -17.34470359681108], + [-47.4788072321181, -17.34882767752347], + [-47.4879182822917, -17.349510122368773], + [-47.49078587031061, -17.344829599064607], + [-47.49503729338899, -17.344850223152918], + [-47.498589107945364, -17.33582539233261], + [-47.50988742480018, -17.331993474798452], + [-47.51117902290513, -17.325584485719954], + [-47.51211763362419, -17.334946579414364], + [-47.512117662273184, -17.334946865170863], + [-47.50875344028836, -17.338225957274613], + [-47.50455963263135, -17.337299768187254], + [-47.50455958612184, -17.337299757915257], + [-47.50511433094502, -17.340515517687994], + [-47.516841710063844, -17.345822593305925], + [-47.52164171481327, -17.352816053238158], + [-47.52164181122131, -17.352816193696242], + [-47.519567428396165, -17.356698714804], + [-47.513953979755634, -17.35621307484745], + [-47.513953922165925, -17.356213069864353], + [-47.51614840884788, -17.366608124985213], + [-47.51614844912242, -17.366608315755588], + [-47.51389686839871, -17.374642510706146], + [-47.51389678654076, -17.374642802777498], + [-47.51853125626545, -17.375353197715313], + [-47.51870394436531, -17.380324341792623], + [-47.518703953687, -17.38032464760243], + [-47.525260315937736, -17.38343384773438], + [-47.530476518724896, -17.377589737523294], + [-47.53228189208705, -17.381125247140357], + [-47.532281974865484, -17.38112540924474], + [-47.52839113107485, -17.38860915967469], + [-47.52839097366221, -17.388609462429454], + [-47.53878927853022, -17.388804124204825], + [-47.538789580459756, -17.38880412984922], + [-47.533290233166774, -17.39442180485254], + [-47.53208771508088, -17.401251856657858], + [-47.523978219050974, -17.40692335211942], + [-47.52362604194367, -17.412460016135526], + [-47.523626021727154, -17.412460333940214], + [-47.53511432993869, -17.407596231589313], + [-47.537728095549575, -17.40930627717312], + [-47.537728348300504, -17.409306442531477], + [-47.52983786802279, -17.413836489679902], + [-47.52767821209155, -17.424041161768614], + [-47.523257377464695, -17.42175829525513], + [-47.521391692159, -17.423876049852357], + [-47.521391122209586, -17.423876696794963], + [-47.527143169196826, -17.429738550586332], + [-47.52728758322201, -17.44036780893152], + [-47.52728758832727, -17.440368113982313], + [-47.540314881503164, -17.44586804966764], + [-47.54114854158275, -17.45430685303297], + [-47.54114856004629, -17.45430715228315], + [-47.536679747205596, -17.45713620740161], + [-47.514259080017716, -17.46080949822293], + [-47.51202662836205, -17.473787606399625], + [-47.503197572780124, -17.481781346951923], + [-47.50319752278278, -17.481781392215552], + [-47.50569577172511, -17.493017292645455], + [-47.505695797819556, -17.49301741000138], + [-47.50352897096664, -17.515505495148457], + [-47.49775773284264, -17.52464768670549], + [-47.492454304517274, -17.526442114135776], + [-47.47767513032624, -17.511335827807272], + [-47.46778325027377, -17.533059082788842], + [-47.45706382632719, -17.538401842439455], + [-47.43928106907791, -17.527704369108704], + [-47.41416669224464, -17.52152605317083], + [-47.398601348485414, -17.51222033700288], + [-47.38486883084601, -17.514348293033276], + [-47.374501689480496, -17.523924877214906], + [-47.351342043899066, -17.526946297534217], + [-47.333113397257314, -17.523454498831818], + [-47.32080684505491, -17.531166342729264], + [-47.314073463566096, -17.544097512681546], + [-47.306589292246855, -17.558463891709426], + [-47.283827092048206, -17.577582356465946], + [-47.27578572315695, -17.59785828283488], + [-47.26575776814537, -17.610447285565513], + [-47.26393172506937, -17.620461119009768], + [-47.26393169603549, -17.620461278214492], + [-47.26823069455539, -17.63772050051879], + [-47.278699906333266, -17.644230754152254], + [-47.28134269509741, -17.653249820162806], + [-47.28134276880629, -17.653250071701244], + [-47.27847444944878, -17.655596552460764], + [-47.27847435048239, -17.65559663342006], + [-47.2802322381454, -17.659309065712836], + [-47.280232378435045, -17.659309361981286], + [-47.2758052859917, -17.659624605137854], + [-47.27100510741643, -17.6673041910764], + [-47.270308681137294, -17.675292527153367], + [-47.27030865387504, -17.675292839833872], + [-47.27352619718933, -17.674647458670343], + [-47.28656356718347, -17.6842182779057], + [-47.29831574365833, -17.684009150341677], + [-47.301451543247786, -17.688928332171265], + [-47.3014516537271, -17.688928505477417], + [-47.2994835101276, -17.691459080352363], + [-47.299483268737625, -17.691459390717238], + [-47.30561554574208, -17.691345298207874], + [-47.3136492822154, -17.69902060868807], + [-47.3136493235268, -17.699020648154132], + [-47.31206186499899, -17.711519783786837], + [-47.31206183776354, -17.71151999820288], + [-47.31781015553552, -17.726638734849143], + [-47.32605930786713, -17.73000855302507], + [-47.32605936434815, -17.73000857609631], + [-47.32553328877157, -17.73304459038545], + [-47.32553323742404, -17.7330448867071], + [-47.332205037424835, -17.73411402658281], + [-47.34269405795232, -17.74446166022267], + [-47.3426940761564, -17.744461678180052], + [-47.342421810003906, -17.751794562768463], + [-47.335203117664605, -17.755673282788276], + [-47.33520305522165, -17.755673316337838], + [-47.33678722183338, -17.761838498954482], + [-47.33678728404268, -17.761838741052394], + [-47.33267657959551, -17.76662178672072], + [-47.332676422744036, -17.766621969219134], + [-47.34222811421515, -17.77378538416311], + [-47.34222825562309, -17.773785490206926], + [-47.339981470293345, -17.77713642619109], + [-47.339981333858745, -17.777136629669105], + [-47.3437902410115, -17.779843301678863], + [-47.35061436951962, -17.78318004835232], + [-47.350614492072516, -17.783180108273143], + [-47.34909129024831, -17.786435110267586], + [-47.349091160446434, -17.786435387640477], + [-47.35444610891458, -17.7875425918709], + [-47.35444612855727, -17.787542595932], + [-47.35419688061282, -17.793742410807855], + [-47.34797812829033, -17.797308944422312], + [-47.347977987799524, -17.797309024991367], + [-47.3529532083794, -17.804879522868706], + [-47.35797445747957, -17.805346505886543], + [-47.35797480597661, -17.805346538292756], + [-47.350593062079504, -17.811263991592295], + [-47.35059298158591, -17.811264056114577], + [-47.352005245672174, -17.815136101567397], + [-47.36331129243683, -17.81697549631039], + [-47.36461653924082, -17.824495792438537], + [-47.37297107931397, -17.83099580388643], + [-47.372971286997384, -17.830995965459337], + [-47.366890871234034, -17.83537631381451], + [-47.36228555333732, -17.853116976265277], + [-47.35628645047741, -17.860602107549262], + [-47.356286350835056, -17.860602231866096], + [-47.35949992252576, -17.866045684872027], + [-47.35950004579655, -17.866045893673782], + [-47.353673005315116, -17.870925420826087], + [-47.35367292739319, -17.870925486074118], + [-47.359303785660316, -17.88678548327036], + [-47.35930385996377, -17.886785692540965], + [-47.35579278750633, -17.89185477048188], + [-47.35579258995515, -17.89185505568292], + [-47.35809263456546, -17.892085797865033], + [-47.35809269776924, -17.89208580420533], + [-47.35703057754403, -17.8977908105333], + [-47.34519491935316, -17.8986685894121], + [-47.34233517660915, -17.90518192999303], + [-47.34233510984998, -17.90518208203594], + [-47.34416557271128, -17.908974897936503], + [-47.34416568855783, -17.908975137972252], + [-47.338370746483484, -17.912488029989305], + [-47.33837056570536, -17.91248813957162], + [-47.34411989060194, -17.91848113208131], + [-47.34411999964367, -17.918481245739674], + [-47.34234540102681, -17.921835892426024], + [-47.342345194204384, -17.92183628338665], + [-47.3447551061523, -17.92087788750801], + [-47.34475543682069, -17.92087775600179], + [-47.33936682661475, -17.928166712574804], + [-47.33936679938372, -17.928166749406913], + [-47.34055725989356, -17.937409098661476], + [-47.34055729766432, -17.93740939189772], + [-47.337277160923485, -17.938762265138237], + [-47.33688963586131, -17.93545227721117], + [-47.33467617427543, -17.937625891991217], + [-47.33364323197564, -17.95152620969333], + [-47.31381088534503, -17.963225548551495], + [-47.31392163152266, -17.97704373253643], + [-47.31392163518565, -17.977044037394364], + [-47.321284057568064, -17.979741967801324], + [-47.322916440834476, -17.984495994200653], + [-47.32291653226019, -17.98449626045644], + [-47.31976264733645, -17.985977765327416], + [-47.31914234266957, -17.99603797227675], + [-47.315562135629385, -17.995395003962983], + [-47.31150750141206, -18.006057880245322], + [-47.29681343855245, -18.009394918604716], + [-47.29397855374971, -18.01703493251383], + [-47.293978474762916, -18.017035145370617], + [-47.297230198541975, -18.020536131516742], + [-47.29723026503206, -18.02053620310195], + [-47.29569890601617, -18.026592028374196], + [-47.29569883048975, -18.026592327031818], + [-47.30074786816945, -18.027023981071142], + [-47.30074857763578, -18.027024041715805], + [-47.29331381211971, -18.029618943540587], + [-47.286731873922896, -18.042789260126973], + [-47.283960958681085, -18.040952368178797], + [-47.28317029563332, -18.058237469118673], + [-47.28317028223832, -18.05823776186258], + [-47.29242178058678, -18.064061371689466], + [-47.297617804292436, -18.061821908952048], + [-47.305510404382254, -18.06369955467797], + [-47.30551054245784, -18.063699587523033], + [-47.30196722631103, -18.07109159335941], + [-47.30196719446518, -18.07109165979191], + [-47.302399546510266, -18.073737384245025], + [-47.3103119840802, -18.06947077512431], + [-47.32273242727134, -18.06969143180223], + [-47.34339008607599, -18.08081028302359], + [-47.34684079700312, -18.08824022099113], + [-47.357759919845584, -18.085022589994068], + [-47.3613469488974, -18.09621295090089], + [-47.361347044344626, -18.096213248651413], + [-47.354676281861565, -18.096820540412615], + [-47.35467624660478, -18.09682054362167], + [-47.35584379928837, -18.10511401786316], + [-47.359212381082656, -18.106020455731883], + [-47.365896261521804, -18.107818800767042], + [-47.36840804136792, -18.113023187736125], + [-47.3694858019452, -18.115256216324244], + [-47.383949199497195, -18.117747216217754], + [-47.38605927438826, -18.121213358991614], + [-47.393753756829206, -18.116242184161035], + [-47.39578530199969, -18.127145450861562], + [-47.4072862936853, -18.131752796158136], + [-47.40728643286059, -18.13175285190709], + [-47.40542505126066, -18.135284999667984], + [-47.396504194376135, -18.137376747953102], + [-47.39683805215327, -18.141865181931205], + [-47.40819094204016, -18.141992425468587], + [-47.41237114937773, -18.14770737237008], + [-47.41831780949084, -18.140698754620853], + [-47.428751576012914, -18.13928551870176], + [-47.435332421604016, -18.15198443967513], + [-47.43533248392845, -18.151984559933393], + [-47.433782687179104, -18.157224398584976], + [-47.42731149661056, -18.161302945854366], + [-47.427311369320165, -18.161303026076297], + [-47.430005548528534, -18.16581435167597], + [-47.43584203669879, -18.167593418948787], + [-47.444507252631645, -18.15892728113079], + [-47.4512030391528, -18.15917210963105], + [-47.46392285097674, -18.177360680519563], + [-47.468530389525604, -18.17633193649381], + [-47.47142745064385, -18.18005091899495], + [-47.479951550983294, -18.177221873395492], + [-47.48337329120825, -18.180725675450553], + [-47.48357240827424, -18.180864511516436], + [-47.48808189108379, -18.186778517648875], + [-47.48808198487615, -18.186778640649315], + [-47.484896371610525, -18.19352938757243], + [-47.48489620958387, -18.193529730911063], + [-47.48986327145116, -18.192430905121572], + [-47.49714391541783, -18.199102618152583], + [-47.50520104758802, -18.192262591483875], + [-47.518169286163065, -18.19887511163381], + [-47.51798178386997, -18.210597224394505], + [-47.517981782145554, -18.210597526660575], + [-47.53061282639133, -18.217848198096164], + [-47.53061292717323, -18.217848255943313], + [-47.527457711458446, -18.226243311418976], + [-47.52745762243416, -18.22624354826977], + [-47.53370341991434, -18.23070561216543], + [-47.53915131981705, -18.227758539022535], + [-47.54009475000946, -18.217334707047872], + [-47.54009472297501, -18.217334616034737], + [-47.534535259773854, -18.198616903846546], + [-47.53453530974713, -18.198616791811872], + [-47.536204215352896, -18.194875179251596], + [-47.54376084360929, -18.195231437838565], + [-47.55770056679188, -18.208036076110663], + [-47.56175464260636, -18.208631651745577], + [-47.56753220721929, -18.203864315870625], + [-47.57091840811463, -18.220324507840527], + [-47.576450538492466, -18.226002117500318], + [-47.581950282773946, -18.22383108471941], + [-47.58858577361561, -18.22703620716339], + [-47.58858604745008, -18.227036339426192], + [-47.58142569590409, -18.231706945463255], + [-47.58142567464298, -18.23170695933079], + [-47.58176218917474, -18.235105270037895], + [-47.590750731566445, -18.23580454004465], + [-47.60740362593408, -18.246937482794657], + [-47.60740381498459, -18.246937609165496], + [-47.603591296136834, -18.250711504653513], + [-47.60228226444703, -18.256286171617393], + [-47.602282213596126, -18.25628638816213], + [-47.60726187076155, -18.26388796797652], + [-47.61520138173544, -18.26229887464343], + [-47.61520136648561, -18.26229856988138], + [-47.6145349725563, -18.25088245259177], + [-47.625751750608956, -18.259429395360524], + [-47.62575187477017, -18.25942948996112], + [-47.61898364684419, -18.27171042921026], + [-47.61898351686036, -18.27171066504323], + [-47.629869923700724, -18.277250616083645], + [-47.63873344806641, -18.287677359233804], + [-47.638733617723446, -18.287677558798517], + [-47.63273114584985, -18.291619484455236], + [-47.627283061983974, -18.303138147628722], + [-47.61122616435763, -18.315389363180895], + [-47.61122593588803, -18.31538953747622], + [-47.62422777513047, -18.322635254152214], + [-47.62614823372125, -18.33429676886383], + [-47.633258532426424, -18.33351714548978], + [-47.648118290679236, -18.3406977057592], + [-47.64811825312109, -18.34069738542056], + [-47.64690037530045, -18.33030978255771], + [-47.646900401456136, -18.330309765546243], + [-47.653149059920786, -18.32624547548195], + [-47.65753715220478, -18.32780299062391], + [-47.670672221961894, -18.357473685362766], + [-47.67932525630024, -18.356363233363517], + [-47.6864236969692, -18.357455965522064], + [-47.68642372484205, -18.357455969812285], + [-47.686067951157064, -18.36279428591803], + [-47.68606793337816, -18.362794552668056], + [-47.69400381691045, -18.374967000756822], + [-47.70420369607643, -18.380069823645552], + [-47.71033839681585, -18.379653040688204], + [-47.716817944880724, -18.362087083223717], + [-47.724860752057836, -18.36268140008273], + [-47.74053415801579, -18.36383859598305], + [-47.740533814201676, -18.363839165690013], + [-47.736006032108456, -18.37134134967016], + [-47.73325591277834, -18.375897651679733], + [-47.73325580225129, -18.37589783479051], + [-47.7361730835259, -18.37892542758879], + [-47.74256622322585, -18.37651815416486], + [-47.75683724623326, -18.39565526701209], + [-47.75683736119588, -18.395655421155702], + [-47.74676358256942, -18.409936177309643], + [-47.74676345772324, -18.409936354273047], + [-47.749452018681126, -18.412550056915695], + [-47.75908889881398, -18.41027469893079], + [-47.76999700364798, -18.41862626824442], + [-47.77897998867145, -18.424133560308373], + [-47.789176659459464, -18.417656826640606], + [-47.798459847536726, -18.41630759753542], + [-47.800700785362935, -18.41195350488411], + [-47.80070069415901, -18.411953360670744], + [-47.79750986963241, -18.406907819444108], + [-47.79751000917384, -18.406907746667834], + [-47.81053501169219, -18.40011393354152], + [-47.81528734038695, -18.406255836455845], + [-47.83114507285058, -18.414052579091766], + [-47.83114509176264, -18.41405258838909], + [-47.83073515661183, -18.425192597857947], + [-47.830735146480194, -18.42519287312785], + [-47.8370042168743, -18.43582584966706], + [-47.83700432456205, -18.43582603230532], + [-47.83081319353138, -18.4434871495042], + [-47.83081310653304, -18.443487257151922], + [-47.8345391171995, -18.451268605118], + [-47.83875568740473, -18.451758346889484], + [-47.84942412318517, -18.441317731486052], + [-47.860416468715705, -18.440188977276975], + [-47.86450882256862, -18.449421653766965], + [-47.871289163280885, -18.455028452639674], + [-47.873615573569545, -18.459148140059245], + [-47.87361571471502, -18.459148389998745], + [-47.86437359951327, -18.463042693418725], + [-47.86320624255061, -18.469741508663592], + [-47.86320619399251, -18.469741787295277], + [-47.87545044238827, -18.475668550030345], + [-47.88554050874095, -18.468509480215378], + [-47.88790100188696, -18.476535395078237], + [-47.91423667786613, -18.466575781877776], + [-47.92539989318968, -18.471233910962628], + [-47.929511983486876, -18.487841039829256], + [-47.9405126607579, -18.48810174189712], + [-47.952617562266646, -18.493837536393603], + [-47.95489960902786, -18.50027802197472], + [-47.96216035659559, -18.496069075933594], + [-47.96492215982988, -18.47735481508554], + [-47.96904760288027, -18.47474314910378], + [-47.97634456893927, -18.477780467441363], + [-47.979174548745206, -18.475961346211495], + [-47.97986846808593, -18.46268926340821], + [-47.97986844676561, -18.462689207673264], + [-47.97601353635778, -18.4526113219775], + [-47.976013597932265, -18.452611198407084], + [-47.98087266592802, -18.442859081539737], + [-47.9978732754173, -18.454591818428195], + [-48.00929664308512, -18.45426678099962], + [-48.01356803859998, -18.444693563598854], + [-48.028424743368454, -18.435689337881982], + [-48.039344118435714, -18.433739813147394], + [-48.04800669041996, -18.416964775251508], + [-48.055787725219076, -18.413240195824738], + [-48.061373810656036, -18.413051524899668], + [-48.066712103844935, -18.424718571917122], + [-48.06900483364468, -18.427803439674836], + [-48.095775365142295, -18.429983299866155], + [-48.11782079652864, -18.42499490133627], + [-48.12865571438197, -18.416122495398284], + [-48.14775869489041, -18.408205452777253], + [-48.15076490857321, -18.395188294995457], + [-48.15972683129124, -18.38449071127821], + [-48.16132143232232, -18.37223248017616], + [-48.17284988667203, -18.37495574954604], + [-48.19593189899735, -18.364193300888314], + [-48.22091895648797, -18.36228377349485], + [-48.22665738691611, -18.357892448945346], + [-48.226657384002436, -18.357892142807035], + [-48.2267724110901, -18.345723692174857], + [-48.25536166858657, -18.343986800849105], + [-48.26236933626218, -18.331882818039237], + [-48.271847603055406, -18.33087789557167], + [-48.27903542871712, -18.33153180155531], + [-48.28825799796912, -18.34868023898846], + [-48.31490936177614, -18.3641527109174], + [-48.31570467323653, -18.373053487578844], + [-48.31570469085358, -18.37305378820783], + [-48.30448634418731, -18.380234811988867], + [-48.304647829196476, -18.38312073005401], + [-48.304647842176095, -18.383121036065702], + [-48.313594288214446, -18.384835381272026], + [-48.324288512319825, -18.38179579424187], + [-48.334577218803005, -18.374417602594615], + [-48.34159792528166, -18.369703848022027], + [-48.35357382903757, -18.366068441831356], + [-48.36350974693483, -18.369420485511014], + [-48.400457050606505, -18.37187231462225], + [-48.40361852746897, -18.37118458721197], + [-48.40567922387237, -18.35634082743428], + [-48.41343421042047, -18.35624073649306], + [-48.419483822821, -18.361532120191548], + [-48.43653453239583, -18.36530321746449], + [-48.44562145367487, -18.355298669838774], + [-48.479015109815265, -18.380116016040212], + [-48.48687384107266, -18.371947657252186], + [-48.486873739102606, -18.371947447410783], + [-48.481382709213925, -18.360646905657973], + [-48.48138277878017, -18.36064676141044], + [-48.4847669492625, -18.35362922846036], + [-48.4927372046781, -18.352972221351763], + [-48.51560953755944, -18.366413037616073], + [-48.53107181600132, -18.35107170196079], + [-48.547204899607955, -18.351764430432617], + [-48.55450282454392, -18.346946559824787], + [-48.55450281881296, -18.346946253474005], + [-48.5544274194938, -18.33623940825615], + [-48.553706961005346, -18.33139302432561], + [-48.553706992628456, -18.331392993358296], + [-48.56137479201574, -18.32388368605179], + [-48.58232598817891, -18.327226649676437], + [-48.59114340279363, -18.334189778245936], + [-48.59723256276139, -18.334808221104872], + [-48.63378477802699, -18.327645521549506], + [-48.6415116965202, -18.333422948497617], + [-48.64151172520087, -18.333422969940994], + [-48.64105063717065, -18.340259171863654], + [-48.64105061767147, -18.34025946094123], + [-48.64712953521487, -18.34388760953819], + [-48.65607062819545, -18.342399019471475], + [-48.668371629002515, -18.345586242729723], + [-48.682842432705264, -18.343529206867068], + [-48.69770671610389, -18.35016312798476], + [-48.7085401258327, -18.345033893718185], + [-48.715912427759804, -18.34801350094769], + [-48.73057124438872, -18.35326826326932], + [-48.755704849538745, -18.344377718246285], + [-48.77015017555544, -18.355605415020438], + [-48.78417928797194, -18.351127938410848], + [-48.798239370555564, -18.358552549383198], + [-48.81632094362114, -18.37965772516461], + [-48.82798421734012, -18.375245365480467], + [-48.832043074067656, -18.346131854478], + [-48.84411187630299, -18.340109735376185], + [-48.87271063630285, -18.332843476436246], + [-48.882852281853765, -18.318848081045253], + [-48.907073175208495, -18.316342520580957], + [-48.90786777665386, -18.315560248994554], + [-48.91770359815053, -18.305876127282588], + [-48.917707507205066, -18.30587619488106], + [-48.93673260921776, -18.30620424420519], + [-48.95946095856624, -18.323475484891986], + [-48.971097625077554, -18.33048335499037], + [-48.976602679155064, -18.341728720034926], + [-48.98415403797602, -18.341408984343833], + [-48.98415410372658, -18.34140898155854], + [-48.981460034123344, -18.356370353865035], + [-48.981459981622635, -18.356370645391575], + [-48.99058003164484, -18.358552642276404], + [-48.99595540358352, -18.37093658116484], + [-49.005922901988036, -18.37435529775124], + [-49.023707351749415, -18.367918150494347], + [-49.02959483851544, -18.3688163186563], + [-49.04195948446069, -18.37650391272148], + [-49.04476733775422, -18.389290840698337], + [-49.0537208598995, -18.402571462672153], + [-49.07699841003699, -18.41677642563599], + [-49.08191700648073, -18.41325972207066], + [-49.09121881646097, -18.41354992107211], + [-49.096854447207484, -18.403701449869374], + [-49.1114361332092, -18.402006609498407], + [-49.113785366123224, -18.397841055053796], + [-49.11378526226048, -18.397840914468304], + [-49.10714466668827, -18.388851865051052], + [-49.10714473251555, -18.38885166151696], + [-49.10876502910972, -18.383841621289168], + [-49.126240045755885, -18.382503153616444], + [-49.154543529933406, -18.402749071663155], + [-49.158105628421644, -18.413884200335147], + [-49.18317655660192, -18.416181759537725], + [-49.18582368455197, -18.416424153464728], + [-49.20365490543331, -18.412249768394], + [-49.205626320051536, -18.411788131888184], + [-49.21182153009493, -18.41764938646617], + [-49.211821567563895, -18.41764942191363], + [-49.211237895005475, -18.423503381991186], + [-49.20072962651266, -18.431950788411548], + [-49.19254379782644, -18.449716266971816], + [-49.192543705502885, -18.449716467313838], + [-49.201351958715904, -18.458825421413128], + [-49.21062648439808, -18.461889894089985], + [-49.22838256737123, -18.47984966811255], + [-49.244050012017546, -18.506275655313395], + [-49.24877439824519, -18.522913133769155], + [-49.273432247301365, -18.52866230780677], + [-49.282161549990434, -18.534186629528197], + [-49.28897969569875, -18.543353655875688], + [-49.29255503515938, -18.564001695553934], + [-49.30293688046458, -18.56643110111202], + [-49.32480791116341, -18.56075016209181], + [-49.330217409614846, -18.565489844657176], + [-49.33657318597586, -18.583714455452167], + [-49.34318651722063, -18.598015043627054], + [-49.365126562722175, -18.617360043750494], + [-49.37327150515247, -18.63499947889033], + [-49.37871316709615, -18.642342517676227], + [-49.391520821427456, -18.646602831815347], + [-49.40857854956539, -18.644804115092366], + [-49.416689581674994, -18.638545789612404], + [-49.43235921317972, -18.60673885362683], + [-49.48178779170986, -18.561025180643114], + [-49.48614582014237, -18.53226276280897], + [-49.4861458118413, -18.53226245609691], + [-49.48572000935011, -18.509430550121863], + [-49.490864628249355, -18.500372301589202], + [-49.49398302980546, -18.49653781763841], + [-49.49718645701433, -18.492597126499522], + [-49.53387175953274, -18.49251027126763], + [-49.54299452765154, -18.49786998959773], + [-49.547935792713574, -18.50779522207805], + [-49.547935855245235, -18.507795347674282], + [-49.542351155771975, -18.527418721154515], + [-49.542351107948555, -18.5274188891724], + [-49.54752472354908, -18.539617442321518], + [-49.55892236657169, -18.546760854038038], + [-49.57521056858981, -18.542321202466365], + [-49.59643715710474, -18.54639508643014], + [-49.64674021302285, -18.557725732993656], + [-49.65324672499604, -18.563824315179193], + [-49.65360726250885, -18.570564590872078], + [-49.65360727744984, -18.570564894675016], + [-49.63499490003309, -18.592096482972195], + [-49.634994775869764, -18.59209662658405], + [-49.64056864314141, -18.598816003106137], + [-49.64265412849692, -18.601329328648543], + [-49.647819656809254, -18.60180898700522], + [-49.67174225034149, -18.58924372267849], + [-49.69368937172814, -18.590635791553655], + [-49.705541338575074, -18.59539911036152], + [-49.72360491214015, -18.609773891104567], + [-49.7382173736314, -18.616920192442883], + [-49.7576598584603, -18.60970401587905], + [-49.7684864047604, -18.610981030602897], + [-49.773819431267356, -18.616475123513382], + [-49.77485229984678, -18.626447854330245], + [-49.78363562465027, -18.641333205652558], + [-49.79471252778189, -18.643846142061733], + [-49.81974957764643, -18.6325716869122], + [-49.836110116300674, -18.636684098232493], + [-49.85274829721694, -18.62315894293138], + [-49.86671672190665, -18.62329517076833], + [-49.872157912837885, -18.61225744978656], + [-49.883933688210256, -18.609025570038796], + [-49.90432795549277, -18.621299092114338], + [-49.93160779577529, -18.623987552265817], + [-49.97377247283615, -18.61431422880001], + [-49.981410897300805, -18.60463992220271], + [-50.01385839124855, -18.599475088390395], + [-50.028719075858824, -18.601460947166593], + [-50.03697797405189, -18.609869866312835], + [-50.050161105325245, -18.64353621844052], + [-50.06329391122404, -18.652668830311583], + [-50.07999911147085, -18.67223806312606], + [-50.09035693463248, -18.671265970830706], + [-50.164243800293626, -18.664346748896744], + [-50.1800034439744, -18.668454995315447], + [-50.19883258425628, -18.679074104135292], + [-50.2174421053881, -18.680516229725075], + [-50.25021895219539, -18.677885302158057], + [-50.269915415952546, -18.684166447806458], + [-50.28969509339319, -18.689650998444254], + [-50.30622206962009, -18.695465699869096], + [-50.3237240352515, -18.71219734796512], + [-50.35227909328881, -18.760291710487827], + [-50.37022008109243, -18.804387183421998], + [-50.378530365532406, -18.814642468006774], + [-50.39331487788822, -18.822382504195392], + [-50.41867684279187, -18.827623184238796], + [-50.42502528895414, -18.83690304157288], + [-50.441458525331406, -18.890783324498788], + [-50.46097850872612, -18.913640599297914], + [-50.47310760001402, -18.92141933703145], + [-50.50152695605966, -18.9301037144514], + [-50.5087774207603, -18.935725582224002], + [-50.511833577372556, -18.951957968147397], + [-50.51183362120296, -18.951958200925493], + [-50.50383135611827, -18.970964171777634], + [-50.50000644836932, -18.981153944162156], + [-50.50000642109677, -18.981154016812933], + [-50.50397366303847, -19.0044749849767], + [-50.50397370980535, -19.00447525985407], + [-50.49503171761499, -19.01286145744523], + [-50.49503168266631, -19.012861490219105], + [-50.49869871912288, -19.034020275001165], + [-50.50589158044698, -19.051099852777668], + [-50.54334842294462, -19.105918089098772], + [-50.55160140924324, -19.11180273853045], + [-50.572450966365054, -19.121016924807886], + [-50.58497901094509, -19.13737768872752], + [-50.584981235761084, -19.137377559682687], + [-50.64552136025519, -19.13385602975865], + [-50.654512815560125, -19.13340973952808], + [-50.654553262047514, -19.133407730970134], + [-50.67436456429102, -19.136194313825552], + [-50.67856601523744, -19.140636676222034], + [-50.67856608861669, -19.14063675380598], + [-50.67248279084897, -19.16369488966543], + [-50.67248273857286, -19.163695087783264], + [-50.67775529805417, -19.172507360486094], + [-50.73343212874891, -19.185799702007852], + [-50.742842078707966, -19.198204632489908], + [-50.74284210570552, -19.198204668076816], + [-50.74200731358885, -19.214359516009324], + [-50.742007304660135, -19.214359688778334], + [-50.745086117027604, -19.233228619252724], + [-50.75855487875729, -19.24658312425494], + [-50.771401293143164, -19.259317818559275], + [-50.788728070107545, -19.262679316721805], + [-50.81466944379587, -19.285776929553933], + [-50.829400846806124, -19.310470428809026], + [-50.83580089844081, -19.327070735634624], + [-50.837851049215566, -19.34564292051326], + [-50.84557264419564, -19.360192560059524], + [-50.84794077091914, -19.36530893115829], + [-50.860587884259424, -19.392077468625203], + [-50.87143725067219, -19.403843556851555], + [-50.87587017377227, -19.419911165333644], + [-50.87587023379119, -19.419911382856686], + [-50.86853937236688, -19.43391449791065], + [-50.828999794489405, -19.467026439161483], + [-50.82489909626841, -19.475031845151207], + [-50.824899072647355, -19.475031891261786], + [-50.82664687825986, -19.487459706808348], + [-50.83534569714143, -19.496882645150126], + [-50.842133140997, -19.49914214304698], + [-50.889422438941516, -19.48088774582406], + [-50.93428793942879, -19.468091229502026], + [-50.934301741116286, -19.46802554521292], + [-50.93442604808638, -19.467433947331543], + [-50.93586368119548, -19.46063557583019], + [-50.940840838353935, -19.453725396333066], + [-50.94667713124393, -19.45289420567488], + [-50.95075621844295, -19.44344196343062], + [-50.96833751703514, -19.434867733779505], + [-50.98525736740211, -19.431374561562528], + [-50.98501108921416, -19.410405409517065], + [-51.00477963963349, -19.413107094030064], + [-51.00192882107685, -19.404215752632577], + [-51.00608493573959, -19.399080957592517], + [-51.01545224251396, -19.40248256696494], + [-51.030676919936745, -19.40143036012535], + [-51.03222752117748, -19.39789021319762], + [-51.02092813407722, -19.389891659359364], + [-51.017952999519345, -19.383869020809545], + [-51.02375624066567, -19.381444423202687], + [-51.03095128048102, -19.363783353814814], + [-51.03499562868103, -19.360393823464747], + [-51.041643057141215, -19.361080274508588], + [-51.04258833635903, -19.34667215278542], + [-51.05075459677187, -19.3350628407768], + [-51.05356638661436, -19.3358482546915], + [-51.05778451263327, -19.329436818160254], + [-51.06700399787646, -19.330090555304018], + [-51.067067163726364, -19.325541454861984], + [-51.087871825746056, -19.314287859425058], + [-51.08791943052172, -19.30832428041116], + [-51.09254162693269, -19.307189500262165], + [-51.10598302902099, -19.308671768397996], + [-51.11836754677992, -19.302977062365144], + [-51.12603209631139, -19.30344882852372], + [-51.14378566105448, -19.287202539397196], + [-51.168283774430435, -19.287394021253938], + [-51.18045320558651, -19.283527967787123], + [-51.18790229935742, -19.268543473284144], + [-51.20081553656632, -19.26490930202773], + [-51.20292442875871, -19.26122762416741], + [-51.20764818509707, -19.265984794674498], + [-51.21633863097317, -19.258969061655545], + [-51.224229072965095, -19.258177292974754], + [-51.22881644890165, -19.26445721314486], + [-51.2408952023856, -19.26905227812564], + [-51.246698425275966, -19.266223520672174], + [-51.25217027802582, -19.27406868059976], + [-51.25689626797351, -19.267424529263373], + [-51.274707502907454, -19.262111827935705], + [-51.27890184051178, -19.250132038782425], + [-51.28609032331561, -19.252641376884952], + [-51.290069401124406, -19.24611053499793], + [-51.29765235380567, -19.242539998840666], + [-51.29792318271937, -19.238780193936112], + [-51.307867707387786, -19.23793371989075], + [-51.30336871034124, -19.22341523312201], + [-51.30776559184591, -19.21852368584832], + [-51.31232163311946, -19.218975020448724], + [-51.33561830906935, -19.222254785835577], + [-51.3439519341657, -19.213916354034133], + [-51.3681926376582, -19.221691726173407], + [-51.36451202034382, -19.212912231835485], + [-51.37045577782139, -19.207913899410187], + [-51.369955808202285, -19.200660384884166], + [-51.375066027895336, -19.194632617414598], + [-51.39550501770056, -19.196078227012617], + [-51.39965479736653, -19.191009094173673], + [-51.405479961473205, -19.185868737831495], + [-51.40645779156637, -19.185485381258136], + [-51.41031365956056, -19.182630526394227], + [-51.41156433993872, -19.180362622273304], + [-51.405954050448834, -19.175635699340226], + [-51.41156486512816, -19.172418318618945], + [-51.41662360760974, -19.174286712232654], + [-51.420427897854076, -19.166530300768873], + [-51.42488011239061, -19.16551223926735], + [-51.43050766455941, -19.171041324974357], + [-51.438038584241376, -19.171688983158734], + [-51.44276422189874, -19.168604463260067], + [-51.44485764701651, -19.160601538298945], + [-51.44795092410085, -19.160447719877716], + [-51.45700594959252, -19.1629869802834], + [-51.45820097841906, -19.167581033740557], + [-51.473121845426455, -19.15429059176585], + [-51.47737477196275, -19.154079076599835], + [-51.48136845011311, -19.15966917708949], + [-51.49387670377319, -19.16298875431519], + [-51.500397210006426, -19.158122561502974], + [-51.501428728746895, -19.147773454244394], + [-51.51142620892877, -19.151059469501668], + [-51.51910842952802, -19.14631474415358], + [-51.52739847414362, -19.1395999482798], + [-51.53972929679146, -19.143305756316593], + [-51.547956173204355, -19.14176448613677], + [-51.554538429772094, -19.132469001574165], + [-51.576181952955714, -19.13255940235147], + [-51.57662320392773, -19.126552873551006], + [-51.57962193061528, -19.13068090096069], + [-51.59245552877844, -19.12740878341689], + [-51.596736459690895, -19.136302778947613], + [-51.60915118427327, -19.14087001295348], + [-51.613592572180366, -19.136766798833033], + [-51.62384202654099, -19.138027908022945], + [-51.639593254498116, -19.127423391407337], + [-51.642461739382455, -19.129854343259783], + [-51.65790408304577, -19.13791302690728], + [-51.68309504282785, -19.121502017397894], + [-51.69317722999732, -19.118208746418816], + [-51.69992449495081, -19.119672648991145], + [-51.70972989874754, -19.11242692820446], + [-51.71125656169057, -19.10847438039911], + [-51.705818510456446, -19.106657073828444], + [-51.71312484145835, -19.102826031224616], + [-51.71662317576835, -19.10747292867431], + [-51.72865397368142, -19.108221122785626], + [-51.73159236241105, -19.09904660543528], + [-51.74032174191741, -19.100857497303117], + [-51.7427142190012, -19.098520472056514], + [-51.7427479909947, -19.09848296635917], + [-51.7478677866637, -19.092294309799453], + [-51.74181769100904, -19.090067929900027], + [-51.74249565024873, -19.087797460302827], + [-51.76059572251113, -19.088620369200072], + [-51.77604276894279, -19.077050309818347], + [-51.78115398264305, -19.081203622724612], + [-51.79128769553738, -19.07812459247043], + [-51.78951706320667, -19.07399263761267], + [-51.79787850743089, -19.07274554347845], + [-51.79637171062212, -19.06661603243432], + [-51.81831877045575, -19.05357824652321], + [-51.84126841866952, -19.057134480525335], + [-51.843840785674324, -19.052622986830354], + [-51.835568997186655, -19.045966730900172], + [-51.84271347382904, -19.042296073656264], + [-51.85084571905792, -19.04437722423012], + [-51.848734833207196, -19.04687173522022], + [-51.85490254763029, -19.051468790981684], + [-51.871099886276255, -19.03552579087224], + [-51.87201780883174, -19.029990701581795], + [-51.87548794106203, -19.030599449360473], + [-51.88271068230961, -19.019875348542456], + [-51.891179800123105, -19.016968107577725], + [-51.889344156697895, -19.008346877891864], + [-51.89876129901779, -18.99417884789993], + [-51.907460025674325, -18.994198811887397], + [-51.91470644721101, -18.98362507767499], + [-51.92559321536548, -18.984298110649316], + [-51.92650477376666, -18.975640117429123], + [-51.933625010380425, -18.975515592913798], + [-51.94038475645026, -18.967861648215283], + [-51.94600833027009, -18.97515394608114], + [-51.9522590889632, -18.974914320679183], + [-51.95145898108718, -18.98070331187575], + [-51.95782284696985, -18.978290458725017], + [-51.963268981531954, -18.96854432352877], + [-51.965295911398194, -18.97054315568592], + [-51.96823517350673, -18.966691782646784], + [-51.9669852136919, -18.975327497228964], + [-51.96965858838058, -18.977281011508897], + [-51.97295617670442, -18.974663323109915], + [-51.97815267854351, -18.980805149361323], + [-51.9813440844629, -18.971228822983438], + [-51.99590338483311, -18.9734194223515], + [-51.9988505295971, -18.967739081270107], + [-52.0045431583744, -18.968963483604607], + [-52.00815073679551, -18.97703876056373], + [-52.0155481716404, -18.98277348613637], + [-52.02063132342413, -18.97928729494711], + [-52.01440461985104, -18.973405490378745], + [-52.019817768896665, -18.96768434584325], + [-52.01859578634138, -18.963490491744636], + [-52.02546131820926, -18.963572773670187], + [-52.03512416016121, -18.958159094265962], + [-52.03721533105887, -18.961385043011305], + [-52.04162232286298, -18.96040946184748], + [-52.045182797377805, -18.950502386475552], + [-52.04987492540233, -18.9513527318664], + [-52.05659623016729, -18.94638094017479], + [-52.06684662716421, -18.95333459069996], + [-52.08131681929397, -18.95090135099943], + [-52.088427859587576, -18.94188596922275], + [-52.09309494091963, -18.942096532539452], + [-52.088907413757205, -18.93562129837349], + [-52.09592873534625, -18.936014933240553], + [-52.1043441098186, -18.928055177140894], + [-52.106987185065734, -18.92350473334675], + [-52.10284691925303, -18.921999592660512], + [-52.10490294110007, -18.918065356045233], + [-52.10895626639444, -18.918937445056116], + [-52.10618008166074, -18.905897527491923], + [-52.111660211721116, -18.89929438678176], + [-52.11340591611126, -18.902166573116663], + [-52.13146421521228, -18.89772273988945], + [-52.13740726643737, -18.889911515120268], + [-52.14801288966706, -18.893917657012157], + [-52.157128250247226, -18.888427408297403], + [-52.155076877912855, -18.882555349031296], + [-52.16162767899964, -18.878646790432214], + [-52.159431233250096, -18.876493888555213], + [-52.16521038382479, -18.876656614628814], + [-52.16595706113861, -18.8655122199354], + [-52.17239905866161, -18.86209791150083], + [-52.176125392066346, -18.854675217034476], + [-52.17953920469082, -18.85552045894471], + [-52.18142518833792, -18.84791075819221], + [-52.18693279761764, -18.84587655660552], + [-52.19926390718414, -18.85077785151319], + [-52.20295898367319, -18.847846958433543], + [-52.20790622902315, -18.85012608704763], + [-52.20981555840878, -18.846182680675483], + [-52.21926998808316, -18.842549901008127], + [-52.25143045705459, -18.839574409878967], + [-52.26371318589446, -18.82780455672311], + [-52.26473872198957, -18.830682320860706], + [-52.28038621566841, -18.829434705687767], + [-52.29490574108484, -18.82927452784627], + [-52.29868213266482, -18.836616938412863], + [-52.30898520447498, -18.839710809680767], + [-52.32129409782522, -18.8310140258142], + [-52.334072758049786, -18.828237758940457], + [-52.33791187958407, -18.821941151113727], + [-52.34433990174584, -18.822419172427722], + [-52.34674315830466, -18.81533381425225], + [-52.354405330004916, -18.812684041877844], + [-52.35092904438404, -18.810169759662724], + [-52.35398691198487, -18.800200946557045], + [-52.36974281438695, -18.79924458618177], + [-52.367676072099684, -18.793892629098366], + [-52.375184049636516, -18.791652393368693], + [-52.37621319639651, -18.787207978363302], + [-52.37937936335468, -18.787624723356753], + [-52.378322914629706, -18.783928949233683], + [-52.39937842964949, -18.765105613066623], + [-52.397715185864094, -18.758439696797137], + [-52.40979156036814, -18.754978914863496], + [-52.411875937291846, -18.745975934716224], + [-52.41254977353769, -18.74023849987157], + [-52.426346910462804, -18.730907943198563], + [-52.43398530202269, -18.719978676010925], + [-52.43893317357418, -18.70559460892087], + [-52.4490700598654, -18.690960673337415], + [-52.475466354306455, -18.685548392601405], + [-52.50073292392823, -18.675274050068303], + [-52.52174465867759, -18.66931517868602], + [-52.522496135562825, -18.664633498895153], + [-52.531207281459125, -18.658019033985177], + [-52.5529872444289, -18.6569849498975], + [-52.55551614283592, -18.66168393014933], + [-52.56679719046652, -18.664905377734605], + [-52.58646488738142, -18.680923935751647], + [-52.592819113301154, -18.689888247546463], + [-52.622574060176994, -18.689158862490125], + [-52.63363358826953, -18.695553304963838], + [-52.64332158501497, -18.688432994195704], + [-52.67543809391639, -18.67896345276468], + [-52.690203724205226, -18.681038857726485], + [-52.71997772149862, -18.691759982144312], + [-52.73124636083714, -18.68891359287023], + [-52.747433626504396, -18.692022099630325], + [-52.76585764373276, -18.68115957783943], + [-52.78668265424704, -18.681294466086566], + [-52.80938316005775, -18.6669774284804], + [-52.82760483188066, -18.671889426246366], + [-52.836739761350074, -18.666905899507544], + [-52.8464636494296, -18.66712124983913], + [-52.848576693130596, -18.661612395129826], + [-52.87340807836902, -18.646190099997554], + [-52.912718157614094, -18.6419773290541], + [-52.918241576458634, -18.63794339000494], + [-52.91427289588714, -18.61981725170851], + [-52.921076561034184, -18.613398590654036], + [-52.93982168541055, -18.613260302590064], + [-52.93440424413137, -18.59910994414812], + [-52.94148878213188, -18.585915331760063], + [-52.95176718989736, -18.576669438600263], + [-52.95357852195948, -18.56238616998778], + [-52.964877644715635, -18.550026809022537], + [-52.96230182150875, -18.540817666895464], + [-52.945237689549415, -18.519745152114748], + [-52.91571092176031, -18.508900834732962], + [-52.91000764316094, -18.491742869342747], + [-52.899045663329034, -18.47683063798757], + [-52.88090771433183, -18.465490690771755], + [-52.87910413486823, -18.442868150718294], + [-52.87324402745757, -18.42678958424172], + [-52.851380942784814, -18.422269378103923], + [-52.83843639111391, -18.423630526532044], + [-52.79846300552277, -18.414859175176495], + [-52.78601816177431, -18.390306965031762], + [-52.761851968247036, -18.3713084571371], + [-52.75905159686909, -18.35056680411829], + [-52.76189015148111, -18.344441936910115], + [-52.76311704202979, -18.342744473690207], + [-52.78741334205416, -18.3205825739476], + [-52.80523735842353, -18.313452241639034], + [-52.82074099929467, -18.310723072800513], + [-52.87315688543111, -18.31483183999654], + [-52.93518021061689, -18.296552816594446], + [-52.95412547860122, -18.296577087420477], + [-52.97602884365385, -18.303453768730744], + [-53.013888243352596, -18.32613775476539], + [-53.02081605420883, -18.346277788297986], + [-53.027638814355676, -18.3514700253945], + [-53.04448578167023, -18.34392091114285], + [-53.069885792907805, -18.342878508336206], + [-53.10110228967487, -18.31083000901471], + [-53.10198954329964, -18.272619231748084], + [-53.11027613870628, -18.248057793997997], + [-53.110137342698465, -18.219562386809443], + [-53.12968772015044, -18.160701752593123], + [-53.128966042979165, -18.13848381348638], + [-53.13666068719947, -18.11852430893462], + [-53.14318946240185, -18.081836174359154], + [-53.139865213480185, -18.072111516948308], + [-53.12360111788608, -18.058827803973994], + [-53.089168007865055, -18.056782196891696], + [-53.07566096107019, -18.050794440728833], + [-53.07222698370353, -18.03397472389026], + [-53.069994232339184, -17.985911059674972], + [-53.07696136823408, -17.96863596756303], + [-53.0859362510998, -17.961948050804153], + [-53.10043173134777, -17.936815918754785], + [-53.13139395762055, -17.916898095725223], + [-53.12755401212332, -17.900017584533533], + [-53.13268004072855, -17.891329654611678], + [-53.132794105094824, -17.881438534184543], + [-53.14043936797292, -17.877116983813078], + [-53.14296322903471, -17.87166144275303], + [-53.1363487401806, -17.837055221969788], + [-53.14775287819028, -17.82326922371334], + [-53.146632280775734, -17.81730707289378], + [-53.15901820388208, -17.804700873301936], + [-53.16340453055905, -17.795511816239333], + [-53.159591296275885, -17.786838695102947], + [-53.16240872932948, -17.782722041756504], + [-53.16965436909658, -17.770513948767288], + [-53.16857160017975, -17.766262259358815], + [-53.175570675388634, -17.765850055367608], + [-53.177294875228064, -17.75586427135478], + [-53.18293121024549, -17.75019702318644], + [-53.187028316091016, -17.752063418925065], + [-53.18924401528536, -17.74561563275933], + [-53.19827154773436, -17.739652016605188], + [-53.19649920346144, -17.736630844569596], + [-53.20077288361216, -17.730744229168057], + [-53.2195218055754, -17.720547377569176], + [-53.22171563874862, -17.723609778693188], + [-53.23786014618396, -17.713085454753976], + [-53.23909947723695, -17.6948195132556], + [-53.24682751672464, -17.690684298483507], + [-53.24090844459456, -17.686278822606052], + [-53.24002391286995, -17.68031072503553], + [-53.24571619351084, -17.672366763476596], + [-53.24021186405388, -17.66787161880886], + [-53.24482257746914, -17.665386756813607], + [-53.24409043943387, -17.656311315799748], + [-53.248521498980395, -17.65502005002143], + [-53.245576874513546, -17.652866666319426], + [-53.250798796132415, -17.644213278770916], + [-53.25077124359273, -17.628068131096697], + [-53.24721112189934, -17.623101738391693], + [-53.25115792189124, -17.6190773319279], + [-53.246880880833565, -17.616848446661567], + [-53.24646153494093, -17.61095529698703], + [-53.24974079716821, -17.60629773116102], + [-53.242889989596314, -17.601823777034774], + [-53.24282622771008, -17.592474382716496], + [-53.238625880311076, -17.589874303975897], + [-53.242187170579, -17.583048689918336], + [-53.239125060459365, -17.580893883303645], + [-53.24285044442374, -17.573067824114002], + [-53.240574344269355, -17.570632359515447], + [-53.24712753048671, -17.564319520291765], + [-53.24793937193136, -17.55887373131956], + [-53.24106855011425, -17.552847505147504], + [-53.245769824023526, -17.54755482580811], + [-53.2463538026771, -17.53911583999313], + [-53.24302372975021, -17.534059918622926], + [-53.24660852862753, -17.53239491566167], + [-53.2461515047015, -17.524243779852497], + [-53.23976037210378, -17.515959752389158], + [-53.24179270110087, -17.511847657869353], + [-53.2392419609482, -17.512679031910796], + [-53.24341468330041, -17.505610789599373], + [-53.23754721339218, -17.498604414628197], + [-53.241517288666785, -17.492881605208506], + [-53.2361330075424, -17.480980162168564], + [-53.23298825840569, -17.480986114738318], + [-53.23479343446369, -17.47934783335389], + [-53.22882347820127, -17.466089628753615], + [-53.22673942576815, -17.466902799749313], + [-53.228741540551695, -17.463188225035424], + [-53.22638184084832, -17.464631859002527], + [-53.22390467518289, -17.458009612287828], + [-53.22732179268091, -17.455828354581772], + [-53.227319281363094, -17.44547260418234], + [-53.23338266088243, -17.440933447808888], + [-53.22865826814028, -17.438212870454304], + [-53.2294703898353, -17.428396923549485], + [-53.22221414990636, -17.42395790227663], + [-53.224880567569265, -17.42331688046833], + [-53.22051644301875, -17.41323501620049], + [-53.21399303422441, -17.412144190365286], + [-53.212570204844255, -17.4076925222533], + [-53.21540355867039, -17.40515585978221], + [-53.20651540337257, -17.401877179797857], + [-53.209074500579, -17.395706596598146], + [-53.213797864811646, -17.39570719598749], + [-53.20746582993694, -17.39316141681816], + [-53.209542218289364, -17.385624633710744], + [-53.20473943759286, -17.383807618932227], + [-53.20321741331201, -17.38998320130057], + [-53.19687758573319, -17.38045312644427], + [-53.20140325485851, -17.37191345334111], + [-53.20643319183146, -17.372908363027026], + [-53.206905575746205, -17.37028108899023], + [-53.196326300345405, -17.36854928877293], + [-53.19557582196378, -17.361553282271224], + [-53.20320802210502, -17.363644712950933], + [-53.20670940272204, -17.36119934664181], + [-53.203013165238396, -17.36083318413779], + [-53.20379645496668, -17.353752954101505], + [-53.200657319652606, -17.352747494410696], + [-53.20115541673193, -17.344399439057728], + [-53.20674200422261, -17.342668900442206], + [-53.202179782570695, -17.34030891155636], + [-53.20502848021941, -17.333333556542172], + [-53.2175838561001, -17.326950159382868], + [-53.213272878169164, -17.32242031544235], + [-53.21579384736108, -17.320241941100676], + [-53.20879287964947, -17.314568475353813], + [-53.21429825793985, -17.31334332119404], + [-53.21430023179186, -17.31088491983769], + [-53.21024125712141, -17.31242929618329], + [-53.21393778946571, -17.30807362917106], + [-53.218651446954176, -17.3096189715594], + [-53.21657569038486, -17.304442871905614], + [-53.21912071129004, -17.299614580041254], + [-53.20835586617093, -17.29335902567391], + [-53.208626698814975, -17.285003662606478], + [-53.19588015515787, -17.27664896469529], + [-53.19806718612716, -17.26002435950055], + [-53.18587767825592, -17.25765605954278], + [-53.18076722946021, -17.244304232306888], + [-53.17529290100534, -17.240856706345554], + [-53.17115376600014, -17.22205966337018], + [-53.16510834860002, -17.220137341386884], + [-53.168207001592656, -17.214516880399433], + [-53.156243007261, -17.188627182335928], + [-53.15737711134604, -17.170641515400117], + [-53.149736815311634, -17.16782670449686], + [-53.142354584639804, -17.171084189107436], + [-53.14018123974739, -17.161731912913204], + [-53.13546049849361, -17.161638571382312], + [-53.13301471166457, -17.155999323032656], + [-53.128097947697555, -17.154640988295878], + [-53.132181063933324, -17.145470043608366], + [-53.12707624317069, -17.144191297533848], + [-53.11548993226697, -17.125745831231512], + [-53.11907372620714, -17.119028637793726], + [-53.11557051041327, -17.11684587661368], + [-53.11907192137643, -17.113220067658535], + [-53.107570799907535, -17.107216577097628], + [-53.10190263222741, -17.11001763495457], + [-53.09876565662401, -17.107565173888553], + [-53.10217794318554, -17.101390513538135], + [-53.087655533042884, -17.0986503870544], + [-53.092260778364235, -17.092574324343413], + [-53.08471495471781, -17.09511351655973], + [-53.090012453405144, -17.08539775478503], + [-53.07953629131924, -17.088929171939256], + [-53.081517649677785, -17.0799385077063], + [-53.07773323164928, -17.079386464600656], + [-53.071990597624094, -17.085739786336756], + [-53.07378782858758, -17.077573251077897], + [-53.068401463158956, -17.078195474857406], + [-53.06718617497901, -17.073385146240415], + [-53.0613204595801, -17.077640606762298], + [-53.06217658981998, -17.071383412060314], + [-53.055964349232866, -17.070368895769715], + [-53.05832243155231, -17.05911429206394], + [-53.06174283137946, -17.057034040998442], + [-53.06654165890233, -17.059215499863793], + [-53.06646321721089, -17.052312489025798], + [-53.06079569423442, -17.05294499624187], + [-53.063706805573794, -17.045585073372685], + [-53.07249301261228, -17.050594578649736], + [-53.07043061481326, -17.04214655281017], + [-53.06590953751791, -17.038963603298512], + [-53.068930663751495, -17.029969667466027], + [-53.06165468301198, -17.029511573327667], + [-53.0614853154899, -17.020337659046398], + [-53.05554383656775, -17.019415702473204], + [-53.06365090554638, -17.016979426272336], + [-53.06337300190453, -17.01261428471682], + [-53.05601690414024, -17.014974537916398], + [-53.05790415755059, -17.009436759547206], + [-53.053565432284884, -17.003795115045616], + [-53.05688139489159, -17.003622578671038], + [-53.04987260084772, -16.992835749638257], + [-53.053926374814516, -16.98800106419429], + [-53.05510096253104, -16.963441450793894], + [-53.051628302034715, -16.96130122349201], + [-53.04850984126853, -16.967151272136903], + [-53.04468003808704, -16.953931547436447], + [-53.04649115625495, -16.948709695856778], + [-53.034070665003924, -16.94125984912564], + [-53.036455354933295, -16.9392093455996], + [-53.03320440369338, -16.930359644031412], + [-53.039047814934655, -16.931724376192285], + [-53.03364860355352, -16.92075491061265], + [-53.039568556170714, -16.911956568425296], + [-53.03218250436667, -16.90821652763755], + [-53.02917741380825, -16.91216139462867], + [-53.03176128654673, -16.90449214084579], + [-53.023515156004244, -16.903268477917454], + [-53.01887398525385, -16.89866738547285], + [-53.01628984273538, -16.884931851845987], + [-53.01184202923475, -16.88459151096663], + [-53.01771018689631, -16.878874425873672], + [-53.012850600488015, -16.876529097496224], + [-53.01383636944672, -16.864880595330295], + [-53.01127352577627, -16.858015260231486], + [-53.00610263820435, -16.864180996128685], + [-53.00145949630651, -16.85967080119451], + [-52.99823250246934, -16.8655151004603], + [-52.9909912029682, -16.86327508439028], + [-52.98853999423668, -16.866811907367154], + [-52.97623792709585, -16.863500114242886], + [-52.96909959035425, -16.86968031450947], + [-52.96211933994688, -16.865896552908307], + [-52.96465604772986, -16.85846287903181], + [-52.953799925087644, -16.860803825766826], + [-52.9571805266599, -16.850792406115062], + [-52.94967772044787, -16.8536172678702], + [-52.95054113256591, -16.860405005988483], + [-52.9445958397089, -16.856255546871637], + [-52.947395620710274, -16.84529356768359], + [-52.95293251547432, -16.841923894439653], + [-52.926981084599845, -16.841635410169992], + [-52.92746131410984, -16.837836097391882], + [-52.93212184927516, -16.83582937119094], + [-52.92889918258102, -16.827415684738533], + [-52.944374793113276, -16.813157539133503], + [-52.93562814499097, -16.81046435146414], + [-52.93259248501128, -16.802869333038462], + [-52.926125205244446, -16.805337406366295], + [-52.92784819606322, -16.817094309763444], + [-52.920907679672446, -16.817208876452128], + [-52.914769397422, -16.812195713914004], + [-52.907624000540594, -16.81027143014765], + [-52.90703935996209, -16.79932004188207], + [-52.8923454426532, -16.793376146891884], + [-52.88848651356765, -16.787509899825373], + [-52.894203618159274, -16.785137449589907], + [-52.88223066712663, -16.77610949996539], + [-52.86731524259872, -16.781224769457985], + [-52.85890541233855, -16.76793177951911], + [-52.854042874512324, -16.77328130492124], + [-52.84978806214255, -16.766589155173268], + [-52.84249764795349, -16.768399535016147], + [-52.832315483163306, -16.772335380118264], + [-52.8290434790295, -16.7691691764932], + [-52.83023107940702, -16.76039974831281], + [-52.82326684043664, -16.758134915900317], + [-52.80735133539141, -16.741419992864135], + [-52.80040626957734, -16.748228799766395], + [-52.796961075824555, -16.746502128421948], + [-52.792517003839826, -16.73973464813365], + [-52.78592801417864, -16.74118939951183], + [-52.7889047100935, -16.720542330768424], + [-52.77965417263369, -16.70797427538263], + [-52.76170118387495, -16.706285622102882], + [-52.759816059147695, -16.703301100303044], + [-52.76376285854862, -16.697141563360326], + [-52.762680027416785, -16.68211443869967], + [-52.75515061641915, -16.67225792721315], + [-52.769153940664644, -16.672412061690927], + [-52.77120475852059, -16.668512307413685], + [-52.75476268769919, -16.662659223265518], + [-52.74648578457237, -16.65533572980932], + [-52.7403745860969, -16.656800215990394], + [-52.74795204082062, -16.638856755959832], + [-52.74681360330331, -16.630708955506528], + [-52.73920931777133, -16.629994375301944], + [-52.73272847354801, -16.63462570762266], + [-52.724485094373826, -16.64677251987841], + [-52.71564879701691, -16.639264678422787], + [-52.726037706106666, -16.614628708371516], + [-52.73756693172996, -16.61296987442383], + [-52.74103947872499, -16.60934373520842], + [-52.74076559649911, -16.60391057023562], + [-52.731066959356575, -16.598043384558697], + [-52.740262110862915, -16.59041909021133], + [-52.73332395546305, -16.58553180475192], + [-52.72484238240169, -16.58682795126917], + [-52.70798690279541, -16.599345899505973], + [-52.70365153235616, -16.59573229162689], + [-52.707926944389136, -16.575900459673147], + [-52.705840131196304, -16.57127907234551], + [-52.70040602629023, -16.57119916565247], + [-52.69020461877309, -16.584254903522996], + [-52.6754538357173, -16.584991817104804], + [-52.67064738692791, -16.58201781894662], + [-52.67384712255746, -16.56906321199139], + [-52.66011965526414, -16.570348581822344], + [-52.67026055091719, -16.559192099060358], + [-52.66856900416672, -16.550508404874847], + [-52.662652398591476, -16.551056870008267], + [-52.65120485767654, -16.561482705041186], + [-52.65070498312289, -16.548621979873126], + [-52.646957527052386, -16.545914543500526], + [-52.635703725839114, -16.55163305029191], + [-52.634640989935455, -16.537955590032382], + [-52.62609698355503, -16.533446583531095], + [-52.62654787675435, -16.520949889823175], + [-52.62937681496569, -16.517774891489655], + [-52.63517315508141, -16.512609142452533], + [-52.637507002529134, -16.502913501068342], + [-52.63253226444105, -16.50038577828954], + [-52.61564379673137, -16.50438609474663], + [-52.60545081931568, -16.48620314333], + [-52.6063946661942, -16.476153539704608], + [-52.6132565216973, -16.47000076053257], + [-52.60434161131698, -16.464657482198557], + [-52.61243080733367, -16.458240940869427], + [-52.62068299528226, -16.464856042786145], + [-52.621345781774195, -16.45707202512862], + [-52.616094215641134, -16.450189505012524], + [-52.62029394627798, -16.445835593375797], + [-52.638510910769085, -16.437081188497245], + [-52.645091035583356, -16.42622932554381], + [-52.641065388825, -16.4167245291836], + [-52.64339716316539, -16.412739211871315], + [-52.650456407044864, -16.408672248022057], + [-52.6765909220021, -16.412306770618653], + [-52.68834311918432, -16.39630004812152], + [-52.68748025978641, -16.391225429777723], + [-52.67981430611807, -16.38815091764709], + [-52.677572694985884, -16.380177501106985], + [-52.6929294774998, -16.368337064800677], + [-52.68967390260771, -16.35684303153263], + [-52.69314870728418, -16.35114576590817], + [-52.682256616611625, -16.343532360278648], + [-52.685651414223955, -16.328510200711253], + [-52.68162273102761, -16.32108672462049], + [-52.68687255157878, -16.315481900422686], + [-52.68209876406879, -16.304065069926974], + [-52.67687265308298, -16.302264363844174], + [-52.6735963302874, -16.294112784439864], + [-52.662355425822106, -16.283710159086517], + [-52.653258476895424, -16.279979948993404], + [-52.64772828734418, -16.285410510018785], + [-52.63743664939496, -16.283591804402416], + [-52.623454381679345, -16.287376128965864], + [-52.61074725539671, -16.272362960061695], + [-52.590281832298146, -16.26969086269591], + [-52.586089290061146, -16.266983354507058], + [-52.580867147020015, -16.251590239016984], + [-52.57637086292368, -16.249951092946777], + [-52.56228507922331, -16.26505149554703], + [-52.55340150914506, -16.265767944075094], + [-52.54763255839981, -16.262379518055877], + [-52.54628758874916, -16.258519051456915], + [-52.56834007570471, -16.23491740142822], + [-52.56964759851644, -16.22885432689371], + [-52.56665381238433, -16.22505783024071], + [-52.54793005788893, -16.225029949738403], + [-52.54500418648094, -16.223129911426202], + [-52.54612328228419, -16.219630524772338], + [-52.55019306000043, -16.18915177144205], + [-52.54356795995864, -16.1807661705926], + [-52.548562761462776, -16.16511694794045], + [-52.52703782179982, -16.156213293838682], + [-52.525480076220916, -16.140555409035606], + [-52.51646581526991, -16.134947759976196], + [-52.51347975407651, -16.13392960938551], + [-52.500672536077275, -16.14270148914369], + [-52.492008536522874, -16.138206500418633], + [-52.488428185889774, -16.13074436065259], + [-52.47692459880078, -16.1263913000134], + [-52.47097326941749, -16.12660802382852], + [-52.45836775192973, -16.127495721113025], + [-52.437450021535334, -16.11010523445929], + [-52.397788432554705, -16.093442399911005], + [-52.375062891095986, -16.098392986944127], + [-52.37043568054623, -16.095198714719356], + [-52.36753025820111, -16.084468123595073], + [-52.36097889429692, -16.081964515711114], + [-52.3502052102485, -16.083944079491985], + [-52.328033491012754, -16.070602095991045], + [-52.32467380918675, -16.050007558946334], + [-52.32078134751099, -16.045892176929467], + [-52.32331143842679, -16.037583121492425], + [-52.315365292149544, -16.027818047333746], + [-52.31042666448046, -16.00739889943376], + [-52.29008093432573, -15.985360046841256], + [-52.2890104801191, -15.966098694051142], + [-52.265255087531656, -15.946977587983108], + [-52.26409160466297, -15.937380274382843], + [-52.25837498202362, -15.93309758749407], + [-52.25142073936176, -15.908450078116879], + [-52.25258437275544, -15.892660268450014], + [-52.235723814346855, -15.888970617202986], + [-52.21694842309401, -15.89114180815899], + [-52.191091839001736, -15.881770321771274], + [-52.17325314124487, -15.888398822070977], + [-52.15419397367792, -15.889051815232653], + [-52.128478526772504, -15.894955094887079], + [-52.107412110083814, -15.882281380633918], + [-52.0972572130283, -15.888656091421954], + [-52.091753980838206, -15.882646099677963], + [-52.0791976435821, -15.880465664399761], + [-52.058055953080085, -15.887413562660011], + [-52.01126092672597, -15.886228905483117], + [-51.99629895217313, -15.87308274418315], + [-51.98322835643292, -15.843982736214183], + [-51.972628781120385, -15.8378495865035], + [-51.95975209244339, -15.840257861817705], + [-51.95408615982261, -15.837662900982208], + [-51.9565052268625, -15.822601320360382], + [-51.94877760922715, -15.810386763711628], + [-51.911976386720106, -15.813572265610034], + [-51.89019517771498, -15.831994272802], + [-51.87955620706329, -15.825394146807602], + [-51.873803257475764, -15.800257070800809], + [-51.859343451787375, -15.789193341179525], + [-51.84739777212247, -15.769531297333875], + [-51.82955206077956, -15.740177251045214], + [-51.82539759220382, -15.73545399430093], + [-51.80317708968897, -15.72296965889717], + [-51.80453979855819, -15.713267444298493], + [-51.769201403338194, -15.656592981911874], + [-51.75775950048933, -15.635947580174198], + [-51.75363454220008, -15.610175693394346], + [-51.77758780730698, -15.55425531601442], + [-51.77749885369994, -15.538997811742504], + [-51.77136091524608, -15.532425272136818], + [-51.761805072662874, -15.531642258528763], + [-51.75164123859593, -15.555112220909958], + [-51.742057648641406, -15.556784418467524], + [-51.727665263771996, -15.550790797440673], + [-51.7259445718561, -15.542611712728352], + [-51.73423702331099, -15.530228662023971], + [-51.735414051399175, -15.510868090953402], + [-51.72591561868961, -15.502472863205607], + [-51.704623122385165, -15.496697127184353], + [-51.69873671098391, -15.484962610007452], + [-51.69952342978763, -15.473738993856637], + [-51.708362622248586, -15.456475692393365], + [-51.692832072717856, -15.433248799971297], + [-51.69147328530532, -15.426533727205003], + [-51.697894216251846, -15.417785200419813], + [-51.69758041098347, -15.40998821344545], + [-51.671332024303915, -15.371728494635029], + [-51.673586493168706, -15.357427244344363], + [-51.68619616304063, -15.345918356762079], + [-51.68825126887801, -15.30885569050463], + [-51.6787477778109, -15.290658366338251], + [-51.661915503447595, -15.281378385046612], + [-51.64688778583511, -15.267946749107061], + [-51.647500124492765, -15.260700531569704], + [-51.6594150958237, -15.255892458744622], + [-51.667971742074585, -15.246344613784428], + [-51.66195566234437, -15.224651239303993], + [-51.652857287881304, -15.20671236892221], + [-51.65204573790003, -15.179874066600895], + [-51.626969669885014, -15.164474215068811], + [-51.607113939932205, -15.163505098951], + [-51.59894464568588, -15.15673660390946], + [-51.58807748867519, -15.13821202108822], + [-51.57388381477795, -15.11348910851128], + [-51.55269487504557, -15.105892274313973], + [-51.535910790587444, -15.069688513392562], + [-51.52219200468409, -15.058430209195281], + [-51.5123294847454, -15.054637205329389], + [-51.477697179005446, -15.056720565739246], + [-51.46077432271232, -15.04468217315681], + [-51.45236182504467, -15.034051174496264], + [-51.44163843232148, -15.030110349768895], + [-51.42771138364059, -15.008333599533737], + [-51.39830830791258, -15.003477803159132], + [-51.37675454973589, -15.012864190008331], + [-51.35723479137953, -15.002494228322654], + [-51.347359825423766, -14.990182003412214], + [-51.33774696096566, -14.973369738401313], + [-51.32303138239601, -14.971761185610143], + [-51.30187601933521, -14.986530914475532], + [-51.2986934551712, -14.997108508259752], + [-51.29858356283412, -15.022345587376707], + [-51.29044389495224, -15.034329401535759], + [-51.27185700778482, -15.037809955791895], + [-51.24255393202284, -15.035398154726558], + [-51.19861140888219, -15.00488593964101], + [-51.1507211310309, -14.983751218998353], + [-51.1459156786381, -14.977456537501897], + [-51.14685800770559, -14.959515475649027], + [-51.134637581689155, -14.943592848024716], + [-51.127020092507465, -14.937103868699118], + [-51.10276841995172, -14.926514864582106], + [-51.08400628376357, -14.916449474697584], + [-51.082343056772274, -14.91047830607842], + [-51.08292047174919, -14.90584372735779], + [-51.091134475851455, -14.894269137018439], + [-51.09174013030823, -14.882036364529618], + [-51.0868297505707, -14.862629964785137], + [-51.090582835868155, -14.848153046609653], + [-51.089390952683665, -14.840358030248474], + [-51.06832689809528, -14.810303944624877], + [-51.04446304638706, -14.795022317366715], + [-51.04241206938598, -14.78458672972876], + [-51.05249566942097, -14.764429354811927], + [-51.05391371267995, -14.74666262338432], + [-51.04924720750654, -14.735310926701402], + [-51.03968717917379, -14.726548111556907], + [-51.036777173860976, -14.717917901596895], + [-51.02715735207441, -14.706796112260562], + [-51.026464246686146, -14.697634567546203], + [-51.031521677652776, -14.680078085764125], + [-51.02649563118638, -14.66572200143888], + [-51.01896821328872, -14.661506627848407], + [-50.99733045914271, -14.625973583726811], + [-50.99456267230514, -14.620083036254332], + [-50.991544860521394, -14.612793686505592], + [-50.997330422541275, -14.578197082595333], + [-50.96279635622417, -14.527017193056395], + [-50.97288064420112, -14.500606498869614], + [-50.96817075973609, -14.482303395959484], + [-50.97574743386122, -14.467017099026448], + [-50.98700043468343, -14.457109612633966], + [-50.98654445772769, -14.437534956006829], + [-50.99902342414001, -14.41923246328524], + [-50.99488043585053, -14.405204939697304], + [-50.989025570423614, -14.39922679080146], + [-50.98712177844521, -14.385958935764448], + [-50.98730999342512, -14.378977071503328], + [-50.98980244147647, -14.362702164783432], + [-50.980523932690616, -14.354215282042059], + [-50.96924371090022, -14.333924223905646], + [-50.9759320979377, -14.301920089374288], + [-50.975217185090216, -14.290854684406508], + [-50.962181310335986, -14.250854705952337], + [-50.93699544443255, -14.210395544150627], + [-50.92710375755008, -14.184766525891973], + [-50.91439073202482, -14.172250427752058], + [-50.910302502537384, -14.14952386163385], + [-50.91857832414576, -14.125797694224348], + [-50.91743869337324, -14.114817463731722], + [-50.91376738633443, -14.111582266962362], + [-50.90474558119193, -14.113163636214635], + [-50.89271506542352, -14.127398083845646], + [-50.86777635510154, -14.125099249605592], + [-50.8413824614437, -14.10490620507868], + [-50.833602425051744, -14.089846189703], + [-50.83166208839391, -14.072678408859806], + [-50.85182436117537, -14.029130179649558], + [-50.849186939864474, -14.000767032804994], + [-50.8631004813512, -13.985282756855817], + [-50.8659091664756, -13.975219341254679], + [-50.86268496406348, -13.956927351954528], + [-50.84565893005146, -13.94166793326816], + [-50.841246773563185, -13.927276262487194], + [-50.84563078333685, -13.903520743570324], + [-50.84121959101769, -13.891665574724305], + [-50.84144361117568, -13.859964622034136], + [-50.856686611506234, -13.831547754335798], + [-50.853469147751746, -13.811530270972309], + [-50.857300014547825, -13.791403387272211], + [-50.85376619282636, -13.76577472241404], + [-50.87074995719243, -13.739265814249475], + [-50.871744577330276, -13.733091595762147], + [-50.86584810994277, -13.723140097578195], + [-50.85640416334395, -13.715847864270023], + [-50.834606855405774, -13.711378290880372], + [-50.82291577998567, -13.713224260858325], + [-50.803912645309204, -13.690965132626722], + [-50.80188977078638, -13.684818486834443], + [-50.78786575172834, -13.648402618797851], + [-50.78130157519127, -13.619118911696765], + [-50.76843966970098, -13.597044958979279], + [-50.76340542788722, -13.530013639870964], + [-50.74502118949688, -13.507589595649202], + [-50.71513369260636, -13.49169375795681], + [-50.69691288842318, -13.475935973854494], + [-50.68410632691659, -13.444163043540184], + [-50.665412183711, -13.442282128078492], + [-50.66325889552346, -13.419758687082558], + [-50.669098539502336, -13.399215156304434], + [-50.66560486533879, -13.376137978029988], + [-50.64631592176948, -13.36117546373768], + [-50.63890197703868, -13.345613175010703], + [-50.62418349251951, -13.334686571857857], + [-50.612101354937735, -13.316619911899762], + [-50.607158397739994, -13.31085859551847], + [-50.60515902463143, -13.27354933177419], + [-50.60234392177504, -13.269324443330465], + [-50.58771483396132, -13.24854171616322], + [-50.58448725646913, -13.215296592253486], + [-50.586484689120155, -13.212457017321208], + [-50.60334516938971, -13.196874294312428], + [-50.601738987841, -13.1807891289313], + [-50.59485127191942, -13.169724899542167], + [-50.599098307991554, -13.14347244196668], + [-50.59024092662828, -13.10963494412556], + [-50.594349682078985, -13.095160406665057], + [-50.60151672229209, -13.089684700930372], + [-50.60365345287719, -13.078449017149886], + [-50.6116575421644, -13.064358845717635], + [-50.60634979445396, -13.05714806525123], + [-50.5768787820228, -13.051085852967233], + [-50.56912882353461, -13.039131603125435], + [-50.57195810524326, -13.032536002604811], + [-50.587493498442974, -13.024410054878798], + [-50.5929603619427, -13.002858712626685], + [-50.57876362578329, -12.997868637481417], + [-50.56535301610798, -13.003914353276151], + [-50.55677554346403, -13.00246355568761], + [-50.54335225026861, -12.983677552371931], + [-50.525884332778084, -12.976421745549532], + [-50.52607130043317, -12.939909034810965], + [-50.51682594646658, -12.920548506281575], + [-50.514321477833086, -12.900461038961087], + [-50.50182400980032, -12.882697857140395], + [-50.502397885392206, -12.87308868176583], + [-50.51123642341413, -12.860807224854813], + [-50.49543411997751, -12.8420294363544], + [-50.49102090140619, -12.828840007736774], + [-50.49413410306033, -12.819377478644455], + [-50.49110425530142, -12.81406000827132], + [-50.484794642355425, -12.81196367945456], + [-50.49382771606112, -12.785660082741039], + [-50.48462938979252, -12.775973534767445], + [-50.47571587584204, -12.77209200590476], + [-50.477433334165724, -12.760282897893482], + [-50.46848825170544, -12.755401039683129], + [-50.47188210327607, -12.752276225930135], + [-50.47188217164306, -12.752276225347583], + [-50.48315857090836, -12.752598496488332], + [-50.485966923722756, -12.748573222319642], + [-50.48234798413116, -12.739277588343564], + [-50.468264294386906, -12.73609363461734], + [-50.46618241614124, -12.73148999278319], + [-50.46807590151848, -12.721308478244291], + [-50.47874238975351, -12.716287609249074], + [-50.47801945090299, -12.709953238498567], + [-50.46435185101919, -12.703498499096797], + [-50.461737351856165, -12.694281236919352], + [-50.43982521901047, -12.697983643499144], + [-50.43982514561342, -12.697983653684592], + [-50.432516059098724, -12.689999271266199], + [-50.43679786495841, -12.678073475858525], + [-50.432357124823774, -12.669232451452768], + [-50.436959385368844, -12.661298311111915], + [-50.42790676671191, -12.652968659315473], + [-50.43277008865107, -12.650008146014942], + [-50.43277010686152, -12.650008171793374], + [-50.43849237615504, -12.658108229671274], + [-50.43849240839103, -12.658108162853384], + [-50.440824201505144, -12.653274776381888], + [-50.42732391558711, -12.64246488435327], + [-50.427323878370245, -12.642464854551005], + [-50.4184689118606, -12.65163393902643], + [-50.418468889731535, -12.651633961939252], + [-50.413296589897655, -12.6501433503239], + [-50.41166088047155, -12.646179113083077], + [-50.4186046330692, -12.62460464600537], + [-50.40712642648495, -12.614681270514195], + [-50.39270764658845, -12.61366443696641], + [-50.391350975471205, -12.606697478369394], + [-50.39876867049671, -12.602168444890946], + [-50.3872674828621, -12.590249355907178], + [-50.3822199840549, -12.57726216473635], + [-50.37072201965994, -12.575570348117733], + [-50.36646273114937, -12.571448832670306], + [-50.36973538837787, -12.55998799264932], + [-50.366543175314256, -12.55466737608566], + [-50.35848613367121, -12.553763467707455], + [-50.36609700831117, -12.548237059900492], + [-50.35967946931286, -12.541680929932198], + [-50.346296869829935, -12.543113739459958], + [-50.34629679609206, -12.54311374741761], + [-50.34654410358866, -12.533869738335126], + [-50.33123966491293, -12.53548963953453], + [-50.3312395911721, -12.535489647445669], + [-50.33448779663405, -12.520402992483213], + [-50.33019961643689, -12.515029476260027], + [-50.33019960328275, -12.515029459776127], + [-50.314098828661, -12.521542389283942], + [-50.314098757384755, -12.521542407210264], + [-50.31284671120479, -12.51647544676814], + [-50.318765430822275, -12.509244513109204], + [-50.31876550330915, -12.509244507404063], + [-50.325127660044124, -12.508808841320597], + [-50.30779662653552, -12.494379162113983], + [-50.28969071247866, -12.488080776040785], + [-50.28132787763254, -12.478929285273779], + [-50.281327864260355, -12.478929270639858], + [-50.274573807210636, -12.481463517239513], + [-50.274573763157825, -12.481463533768203], + [-50.263158529895996, -12.478183509770217], + [-50.25385590584057, -12.462301726896747], + [-50.230151110698436, -12.455738778785012], + [-50.22251907182673, -12.446114702919106], + [-50.207569564400366, -12.448810886907815], + [-50.207569491171476, -12.448810897462199], + [-50.20813176697709, -12.442466762644369], + [-50.20813184050205, -12.442466753427151], + [-50.21568938866795, -12.441390513848953], + [-50.21229263316246, -12.437121940027414], + [-50.1986385355136, -12.432118065755702], + [-50.18396037016172, -12.43145561326984], + [-50.18396029672237, -12.43145561561009], + [-50.186934263217424, -12.423756275365541], + [-50.198024089123976, -12.419600448649021], + [-50.196539468254215, -12.413345010872895], + [-50.18899334412063, -12.413689463389728], + [-50.18899327049873, -12.413689467905487], + [-50.18859985656498, -12.420677241142943], + [-50.18523237797832, -12.422953840919815], + [-50.17504894398464, -12.423733472874474], + [-50.1750488701911, -12.423733479693645], + [-50.17118416936493, -12.420006530782103], + [-50.172373598481414, -12.408495205817742], + [-50.1426343209021, -12.395934464342002], + [-50.14263267496879, -12.395933769041497], + [-50.1581791644589, -12.412371596999753] + ] + ] + }, + "MA": { + "name": "Maranhão", + "coordinates": [ + [ + [-44.008955425264176, -2.4007072106191205], + [-44.014072839769746, -2.4077457528935478], + [-44.01675261009316, -2.4074516149117406], + [-44.01657792517921, -2.399272903865871], + [-44.010459738427336, -2.398856371281254], + [-44.000377791327274, -2.3908825952417803], + [-43.99712792183105, -2.400150447759993], + [-44.008955425264176, -2.4007072106191205], + [-44.449073287901435, -2.1310715632730037], + [-44.45161744151789, -2.134233011584798], + [-44.458259287326584, -2.134173073342569], + [-44.45676498939757, -2.131028725639561], + [-44.449073287901435, -2.1310715632730037], + [-44.476378975596525, -2.095965497107716], + [-44.46980033642632, -2.101307089092861], + [-44.46376654658476, -2.1011831830789984], + [-44.46828951328105, -2.1078646090902056], + [-44.46750042923539, -2.121708462850741], + [-44.47105885914668, -2.1257173120592134], + [-44.47371375204395, -2.1252331460086684], + [-44.47190541160672, -2.118187076505443], + [-44.48614600839664, -2.112120693814656], + [-44.47474399138556, -2.1115109307749633], + [-44.480778531502274, -2.1065327515330674], + [-44.47661752350802, -2.1038610247906355], + [-44.476378975596525, -2.095965497107716], + [-44.45168302938396, -2.0707409399890566], + [-44.47129795311696, -2.0770544592540645], + [-44.48038022621938, -2.0769749100550197], + [-44.48228242817959, -2.0736813996078456], + [-44.444427503000846, -2.057817623874294], + [-44.45168302938396, -2.0707409399890566], + [-44.44549778644286, -2.025422800248948], + [-44.45750506250466, -2.030157744024358], + [-44.44621999383052, -2.007935816141216], + [-44.43885640859639, -2.0187857896771257], + [-44.44549778644286, -2.025422800248948], + [-44.56843631410834, -1.9162822410862586], + [-44.56694140267271, -1.9179389518404426], + [-44.569292297756206, -1.9178572217183034], + [-44.56843631410834, -1.9162822410862586], + [-44.607922114640296, -1.8367072196341505], + [-44.60338368066347, -1.841394044218948], + [-44.59786879791286, -1.839673425565497], + [-44.59518069911515, -1.8423603241923052], + [-44.596140431707774, -1.8508733063624176], + [-44.61906572882001, -1.8656263854795152], + [-44.633462631799176, -1.8588971443588207], + [-44.63334792312819, -1.8539215137437324], + [-44.607922114640296, -1.8367072196341505], + [-44.59775770034419, -1.8394363878975044], + [-44.60178898193922, -1.8407593125277677], + [-44.606145070758764, -1.8317768554727443], + [-44.611384243225295, -1.8310634521299385], + [-44.616450915913326, -1.825356484382904], + [-44.61610798242899, -1.8211482313380498], + [-44.60806470381645, -1.8209933653443642], + [-44.59775770034419, -1.8394363878975044], + [-44.565345697527526, -1.8044554749078072], + [-44.57275552460246, -1.8130241479796603], + [-44.56820554497001, -1.8141284134616238], + [-44.562708385471076, -1.8329968330496633], + [-44.56741479011849, -1.8417651168233995], + [-44.56070741720215, -1.8396733945294301], + [-44.56780345745454, -1.8536889379675776], + [-44.58361083267959, -1.8588698093633929], + [-44.590947429825555, -1.8535317410460752], + [-44.596603071082406, -1.8251894359286391], + [-44.59264350524326, -1.8113252117536627], + [-44.587622323829926, -1.8083325787140803], + [-44.58719054474051, -1.8144486125488175], + [-44.583112840967246, -1.8080506347981768], + [-44.579226298348686, -1.8117245313276136], + [-44.577544144998726, -1.8011017787100985], + [-44.571425014389575, -1.7969929391406354], + [-44.56844406912252, -1.7983302809143136], + [-44.565345697527526, -1.8044554749078072], + [-44.6226350912612, -1.7982073801588585], + [-44.62312201913031, -1.8187411617030413], + [-44.6332964037758, -1.796785665075313], + [-44.63080816287419, -1.7884560858765388], + [-44.6226350912612, -1.7982073801588585], + [-44.6033337465603, -1.7754587038280372], + [-44.6170717638894, -1.7852329729916885], + [-44.61605863501443, -1.7824616024935949], + [-44.611910172810305, -1.7773070841461316], + [-44.6033337465603, -1.7754587038280372], + [-44.604787137743884, -1.817319747925947], + [-44.61717810144528, -1.8189693072832815], + [-44.61786381501657, -1.7918554758610155], + [-44.59351917609162, -1.768771550346556], + [-44.576273759647954, -1.77971461821078], + [-44.57862246324495, -1.7847534048674494], + [-44.601515965311705, -1.794864200711175], + [-44.6038333093983, -1.800555535119337], + [-44.60067886834843, -1.8129949994691925], + [-44.604787137743884, -1.817319747925947], + [-44.72623761334113, -1.6923516692404876], + [-44.74121911203738, -1.701376842978025], + [-44.75226472521341, -1.6941781818851], + [-44.73524654859359, -1.6825120205095345], + [-44.72623761334113, -1.6923516692404876], + [-44.741615044549285, -1.6796266162992213], + [-44.74121302286206, -1.6846074965501292], + [-44.74528098306913, -1.68301452527525], + [-44.741615044549285, -1.6796266162992213], + [-44.717928250955374, -1.670798113163243], + [-44.724738795366534, -1.6774085435567707], + [-44.7380781644747, -1.6742211131661242], + [-44.73796331800216, -1.6701867290859633], + [-44.723215296232084, -1.6622333541523027], + [-44.717928250955374, -1.670798113163243], + [-44.75163183378792, -1.5912453007050305], + [-44.758173444135984, -1.593006206227316], + [-44.7559613232583, -1.5871019632549432], + [-44.75163183378792, -1.5912453007050305], + [-44.69221673231369, -1.5843505578403707], + [-44.69295588082307, -1.5954015535521189], + [-44.69781838209793, -1.588885513428422], + [-44.69221673231369, -1.5843505578403707], + [-44.77489291863798, -1.5763471692247866], + [-44.77731431916836, -1.580709908626636], + [-44.778193191980435, -1.577477597993467], + [-44.77489291863798, -1.5763471692247866], + [-44.7727540366418, -1.5625255025608802], + [-44.78108571783486, -1.5728730254692322], + [-44.783741627034374, -1.568924408194124], + [-44.7727540366418, -1.5625255025608802], + [-44.81646283205959, -1.5703412571532436], + [-44.824362496184854, -1.5704480034171797], + [-44.82969955528066, -1.5649345726411903], + [-44.83156201259402, -1.560515790578192], + [-44.82018512621982, -1.561929031403958], + [-44.81646283205959, -1.5703412571532436], + [-44.72921797796662, -1.562448721136121], + [-44.75593350687577, -1.5832722221132245], + [-44.75681137963536, -1.5776530702880067], + [-44.75421549806092, -1.5558075616973899], + [-44.745755909064044, -1.5481367487311153], + [-44.74301893583177, -1.5379558054047715], + [-44.73666354686386, -1.537990936136229], + [-44.72265257510095, -1.5474956798735844], + [-44.72061621057805, -1.5515981412391746], + [-44.72921797796662, -1.562448721136121], + [-45.13262221537925, -1.4886937137301601], + [-45.13519630417316, -1.4943864702632919], + [-45.13620386184505, -1.4889859333554405], + [-45.13331598184153, -1.485556350926313], + [-45.13262221537925, -1.4886937137301601], + [-44.80979541644355, -1.531740643342062], + [-44.80983107038396, -1.5341094416047834], + [-44.79006604808084, -1.5306075997705006], + [-44.789784068168956, -1.5364040359610232], + [-44.784025437157325, -1.5376756763158401], + [-44.78771142086206, -1.5423070482132661], + [-44.785956476415755, -1.5495201455833278], + [-44.79188810172146, -1.5584618688638892], + [-44.79676632850092, -1.5635165522670655], + [-44.80392989454995, -1.5650735014911297], + [-44.818447173948385, -1.5586260255030588], + [-44.828691499638666, -1.5412951646326454], + [-44.824524997847625, -1.5353255866812094], + [-44.79953933763631, -1.5191068176652056], + [-44.79749546436199, -1.5050046427477246], + [-44.797541310618286, -1.5018059780863484], + [-44.79357921478877, -1.494976639441893], + [-44.77539406707841, -1.4843702486239638], + [-44.76377349567334, -1.4842632088124648], + [-44.7923826830399, -1.52643660567255], + [-44.80979541644355, -1.531740643342062], + [-45.134780959492495, -1.4697452898804935], + [-45.13735952881663, -1.4766371954306579], + [-45.13843664186603, -1.4663192694863953], + [-45.134780959492495, -1.4697452898804935], + [-44.768980760131484, -1.523173279631775], + [-44.77830407324511, -1.5301012616294443], + [-44.78540491166376, -1.5284861829022274], + [-44.785870366781516, -1.5251447836884613], + [-44.76141946602803, -1.4888954788049436], + [-44.761752745087, -1.4805438903927577], + [-44.77247060393276, -1.4666804181572302], + [-44.77230532330847, -1.462303609569435], + [-44.753426429787616, -1.4581255835468985], + [-44.742509147915314, -1.4705192524080335], + [-44.73712803502693, -1.5119440044692525], + [-44.74499280854995, -1.5195273667535938], + [-44.768980760131484, -1.523173279631775], + [-45.070160427260824, -1.466145403008357], + [-45.07461468355021, -1.4754005817473523], + [-45.095826173426595, -1.471692916910127], + [-45.09128632868125, -1.4517738643113232], + [-45.07193010840567, -1.4586169812146397], + [-45.070160427260824, -1.466145403008357], + [-45.298751177312795, -1.4244605414974139], + [-45.30192961492039, -1.4246745139699257], + [-45.300114026023785, -1.422641890936753], + [-45.298751177312795, -1.4244605414974139], + [-45.079512724470376, -1.4193106369007862], + [-45.08259224201066, -1.4417247591836182], + [-45.08824701590884, -1.438319291972533], + [-45.08959423435525, -1.432040523826982], + [-45.087520442517366, -1.4220244679854248], + [-45.079512724470376, -1.4193106369007862], + [-45.104527671389484, -1.4026900523344727], + [-45.10667567885201, -1.4063688312676659], + [-45.10946199200192, -1.4012298549436981], + [-45.104527671389484, -1.4026900523344727], + [-44.9982407293739, -1.410536817334131], + [-45.004505677358914, -1.41124781480005], + [-45.01680213690288, -1.396732919322911], + [-45.014982696540194, -1.3947991216466922], + [-45.00081791904274, -1.4023794025797116], + [-44.9982407293739, -1.410536817334131], + [-45.39758026163766, -1.4069618370468746], + [-45.40677279145553, -1.4186449436677753], + [-45.412879920871084, -1.4105591751535755], + [-45.40655970411343, -1.3967287333090725], + [-45.403515675931814, -1.3941628078315598], + [-45.39803483734343, -1.3957346366061454], + [-45.39758026163766, -1.4069618370468746], + [-45.107435251112655, -1.3925575221807402], + [-45.10867808381725, -1.397052250197472], + [-45.1121011356182, -1.3919700651707532], + [-45.107435251112655, -1.3925575221807402], + [-45.51421167966751, -1.4011502178975073], + [-45.51750748914531, -1.4034430862819465], + [-45.51844873098733, -1.400598360645929], + [-45.508991003110204, -1.3904082738698904], + [-45.51421167966751, -1.4011502178975073], + [-45.11057880467454, -1.3855540306264744], + [-45.114043689219336, -1.3858090965863294], + [-45.11253730424572, -1.382068420189224], + [-45.11057880467454, -1.3855540306264744], + [-45.07903242806004, -1.39286550391393], + [-45.09345704267405, -1.4318829873576784], + [-45.097129247399145, -1.418971508200814], + [-45.087181193856246, -1.4031793582523402], + [-45.07799498217346, -1.3767639096848492], + [-45.078520460001606, -1.3705597948498132], + [-45.068648404266014, -1.3677374772536208], + [-45.06584586166182, -1.3715599881439418], + [-45.06895699929043, -1.3755777524969666], + [-45.067905720941766, -1.385603692751579], + [-45.07903242806004, -1.39286550391393], + [-45.4925111065923, -1.3866149323054349], + [-45.497379345491176, -1.3896958602026768], + [-45.49769301175176, -1.3869295164061122], + [-45.48591421818743, -1.3602269732249508], + [-45.480381719855046, -1.3592013284097806], + [-45.48324900473969, -1.3708944174062934], + [-45.491138289602674, -1.3790304785776284], + [-45.4925111065923, -1.3866149323054349], + [-45.63863798691304, -1.3614365730385145], + [-45.64727498028244, -1.3645775981127208], + [-45.653179863969314, -1.362663400385711], + [-45.6434763522094, -1.358712507489553], + [-45.63863798691304, -1.3614365730385145], + [-45.35725691274329, -1.347708593931262], + [-45.35620395732673, -1.3506966496120463], + [-45.359730349340246, -1.3498257043235609], + [-45.35725691274329, -1.347708593931262], + [-45.049519231416674, -1.3437476193593512], + [-45.04852515345231, -1.347734823519473], + [-45.052563295132956, -1.346276324550259], + [-45.049519231416674, -1.3437476193593512], + [-45.043504310217855, -1.3429851076193624], + [-45.03316820122691, -1.3867955583668972], + [-45.04008672364211, -1.3987625045040584], + [-45.04126232422658, -1.3932762246267703], + [-45.03744140159347, -1.390236827452759], + [-45.04214274782366, -1.387171469881345], + [-45.045400689141594, -1.3635588152062919], + [-45.04879265738737, -1.3497620343849168], + [-45.05058284890782, -1.3509174970684759], + [-45.043504310217855, -1.3429851076193624], + [-44.8759449348321, -1.3397535793709467], + [-44.87734318031176, -1.3455095544733466], + [-44.88186442545132, -1.3388619171251441], + [-44.8759449348321, -1.3397535793709467], + [-45.47041380042337, -1.3502751133728872], + [-45.48646318388031, -1.3599900850287752], + [-45.48595265522178, -1.349797995437035], + [-45.47672832998448, -1.3373156207706047], + [-45.47249116271907, -1.3369217568335245], + [-45.4687646531117, -1.3441910478264045], + [-45.47041380042337, -1.3502751133728872], + [-45.043623095382664, -1.3397470051812603], + [-45.05243111206503, -1.3423796808130604], + [-45.05526018398031, -1.3319217923588806], + [-45.04805378035892, -1.3274395320359464], + [-45.04394397535393, -1.3323294627930404], + [-45.043623095382664, -1.3397470051812603], + [-44.972002879703005, -1.335808676450833], + [-44.9792928160182, -1.354552050719803], + [-44.998275576385026, -1.3461976220125766], + [-45.00101142791924, -1.3416456396555492], + [-45.01676720397014, -1.3449905622846803], + [-45.028426892177876, -1.3389092219733132], + [-45.01732088943172, -1.3225504753452473], + [-45.00582171933305, -1.3201472501083844], + [-44.996076326338155, -1.322516923121996], + [-44.99030481884828, -1.330670344418532], + [-44.972002879703005, -1.335808676450833], + [-45.62411644254975, -1.3275352928486563], + [-45.628531777994574, -1.3397538201726036], + [-45.63238870416884, -1.3216469450806694], + [-45.63121089370733, -1.31409384573406], + [-45.62411644254975, -1.3275352928486563], + [-45.63668647831388, -1.3001204284383103], + [-45.636322999910206, -1.320191800227709], + [-45.639667329793745, -1.3086745661494286], + [-45.63668647831388, -1.3001204284383103], + [-45.53993653563294, -1.2996306859250661], + [-45.55156692608092, -1.3078074574926162], + [-45.551782532874874, -1.3011265173133255], + [-45.55159410693378, -1.2910734334614296], + [-45.5453611445921, -1.2888271290697484], + [-45.53959581269094, -1.2945726147461252], + [-45.53993653563294, -1.2996306859250661], + [-45.677568661246845, -1.3153468933093408], + [-45.68300542202081, -1.317087585277122], + [-45.68542982130706, -1.3105754695335552], + [-45.69394124844139, -1.304230036584542], + [-45.69300204729671, -1.2996548727193924], + [-45.6910038327619, -1.2883484006821957], + [-45.68533205815833, -1.2974533820200247], + [-45.67809373097762, -1.3003362435120875], + [-45.677568661246845, -1.3153468933093408], + [-44.85879651290642, -1.2979864386655564], + [-44.845962278167185, -1.3182280600945482], + [-44.8484325899254, -1.3291314773421918], + [-44.84273055721021, -1.3329321032468247], + [-44.85226934585135, -1.3390641448119154], + [-44.86303483452297, -1.343460678369565], + [-44.87586733044557, -1.3556617137727383], + [-44.86996534854142, -1.3268165309986961], + [-44.87833821728989, -1.336749491899439], + [-44.89113873423191, -1.329836479880487], + [-44.90221365517733, -1.330778992344048], + [-44.90860780149195, -1.3268854336711013], + [-44.90970395980957, -1.3239735842685427], + [-44.899519361349405, -1.315956323781892], + [-44.899229005126976, -1.312045560206674], + [-44.9076656971136, -1.3129967477843418], + [-44.90545680555965, -1.3046414221507199], + [-44.9183819370425, -1.303308840631237], + [-44.92535636548719, -1.2888128785785997], + [-44.926044477710185, -1.2782311645960194], + [-44.902558522315275, -1.2784210729394407], + [-44.88205312005836, -1.285145462821173], + [-44.85879651290642, -1.2979864386655564], + [-44.95572857356, -1.2765157160563947], + [-44.94353018443603, -1.2863512771235255], + [-44.93071476008934, -1.2856853857800588], + [-44.92139546245564, -1.2978789174136134], + [-44.92313625831938, -1.3042859288752242], + [-44.909181787701485, -1.3062497892362614], + [-44.90810090758828, -1.3151327272131448], + [-44.90148381644121, -1.31294227632312], + [-44.912001495833685, -1.3232621317833948], + [-44.91011162793354, -1.3294272176065256], + [-44.88898267580221, -1.3362555837368144], + [-44.91870226040581, -1.3506470182640535], + [-44.92440321774352, -1.3481281847412918], + [-44.922222097597846, -1.343379576564374], + [-44.924682907145915, -1.3396054825988204], + [-44.925149861721, -1.3505539279417293], + [-44.911431750719494, -1.3511710642408508], + [-44.89324643546337, -1.3420401955018018], + [-44.88756405721719, -1.34608594882771], + [-44.893868619143326, -1.3505958720896942], + [-44.89766873850613, -1.348900735839153], + [-44.91986387315959, -1.3735911694930336], + [-44.92187124032613, -1.3679222440124488], + [-44.924039453587056, -1.3748054516530583], + [-44.93153696822742, -1.3798262498364786], + [-44.94264017479994, -1.3792716197541541], + [-44.94334591034988, -1.372081788216762], + [-44.944073275031634, -1.3898876200384547], + [-44.960048361483544, -1.4027298728973112], + [-44.963682170085306, -1.402522293858728], + [-44.96578800984577, -1.3963458459829876], + [-44.96614381207206, -1.403116774993242], + [-44.97045419146206, -1.4082692633363543], + [-44.98319448333082, -1.4096545207263491], + [-45.01237209880509, -1.387305041808033], + [-45.02006304854894, -1.3578960646560945], + [-45.01633543729026, -1.360639106764981], + [-45.01803913354414, -1.3553220699605157], + [-45.002681041004394, -1.3450408768416164], + [-44.98262626765241, -1.3565500422809367], + [-44.97223044498702, -1.3868424833324398], + [-44.96535546387077, -1.387052245109348], + [-44.9717601128939, -1.3850551661124397], + [-44.979490180969286, -1.3592145641750732], + [-44.97112564828697, -1.3446420289298842], + [-44.9711415901276, -1.3327534275604498], + [-44.96487637198928, -1.327225844436764], + [-44.94054599064464, -1.3435489010788981], + [-44.942065168269544, -1.3494313644538225], + [-44.94998531920733, -1.354933919445153], + [-44.94199204220246, -1.3497642359265987], + [-44.94035024953287, -1.3430248020630104], + [-44.961721727911225, -1.3247081120952169], + [-44.95531498714226, -1.3205164635835291], + [-44.95834412672034, -1.3095814690146823], + [-44.95856708385734, -1.3207068445331784], + [-44.971694833756004, -1.314572287865692], + [-44.966468554962795, -1.3074257803101095], + [-44.97480556977399, -1.3116072386341864], + [-44.98568368975271, -1.3033005483569795], + [-44.972670094749, -1.2838125401079554], + [-44.95572857356, -1.2765157160563947], + [-45.64805691088582, -1.26758966596678], + [-45.64618439073628, -1.2709185773427474], + [-45.64981730315079, -1.2694932052577723], + [-45.64934900881387, -1.2678694136171678], + [-45.64805691088582, -1.26758966596678], + [-45.52703161319492, -1.2670384301127253], + [-45.53618219879768, -1.2886402553705567], + [-45.5461369928465, -1.2862658453697309], + [-45.553205620868944, -1.2909481501823985], + [-45.55981035232062, -1.2837657222174832], + [-45.53530908039252, -1.2653513932926557], + [-45.52703161319492, -1.2670384301127253], + [-45.561587774869224, -1.2705912973042655], + [-45.56816457243104, -1.2735040827903636], + [-45.56479125032967, -1.2628033433224926], + [-45.55703583206736, -1.2570170865275616], + [-45.5551343003117, -1.2601420456832237], + [-45.5594569437479, -1.261597189241484], + [-45.55772067486307, -1.2641787658717631], + [-45.561587774869224, -1.2705912973042655], + [-45.81303660554754, -1.2611416996965288], + [-45.818230056109215, -1.2620307678149791], + [-45.81298198389342, -1.2556362027620993], + [-45.81303660554754, -1.2611416996965288], + [-45.85601400972572, -1.2529535373558993], + [-45.855507868012545, -1.2602519954807638], + [-45.862480797605876, -1.2595861220885545], + [-45.85601400972572, -1.2529535373558993], + [-45.63948828226121, -1.2451549350993436], + [-45.64618635550572, -1.2506880368854618], + [-45.64965096932921, -1.245632604106159], + [-45.64648828261158, -1.242461296539895], + [-45.63948828226121, -1.2451549350993436], + [-45.78833054821258, -1.235463776907512], + [-45.79122390308305, -1.248466333600677], + [-45.798217587412296, -1.2477612099479853], + [-45.802131420762386, -1.2420318601840457], + [-45.79476320720339, -1.2348515998011103], + [-45.78833054821258, -1.235463776907512], + [-45.52882793500205, -1.20556125626515], + [-45.5238106903481, -1.223594473092446], + [-45.52922655602668, -1.221170307762714], + [-45.531481120061926, -1.231349173209121], + [-45.55727221678957, -1.2268770540037588], + [-45.576288969721844, -1.2344561492510095], + [-45.5900995476688, -1.2471252673981525], + [-45.59329796682289, -1.2466746731961238], + [-45.57713050395502, -1.2251759834348555], + [-45.5705250127454, -1.2094930626379101], + [-45.562409904367954, -1.213718264161443], + [-45.55950351572844, -1.2118824630887768], + [-45.57083383887297, -1.2046469189948474], + [-45.566740761241704, -1.2018431072753895], + [-45.57184615682056, -1.1933571087652821], + [-45.57041758379704, -1.1901034663247696], + [-45.55468423042796, -1.1881679975675843], + [-45.5423228383329, -1.1953727629173578], + [-45.54085221346419, -1.2014074306006555], + [-45.52882793500205, -1.20556125626515], + [-45.658352515449586, -1.2220643128714503], + [-45.662121563519285, -1.2354027577659417], + [-45.65987551994212, -1.2435950827143012], + [-45.66594226905513, -1.2515881189091074], + [-45.68341070436637, -1.2620302353883308], + [-45.697675443074424, -1.2425825155848582], + [-45.69313272469852, -1.2445012996958318], + [-45.699960018627465, -1.2343787527849521], + [-45.699750812983126, -1.2201291654141837], + [-45.69763955521504, -1.2174146638417882], + [-45.69031387916998, -1.2177125767777255], + [-45.69690601598427, -1.2131383023863145], + [-45.68866837283906, -1.2010731968899897], + [-45.683251463901804, -1.2156783049762374], + [-45.676365415017244, -1.2167712981477046], + [-45.67235410591337, -1.230197082401592], + [-45.674255505917266, -1.2165375228447546], + [-45.68172677271912, -1.2121370624285408], + [-45.68562036655329, -1.1964114402561246], + [-45.680431647094565, -1.1877092098593567], + [-45.666079093701654, -1.2150341172159826], + [-45.658352515449586, -1.2220643128714503], + [-45.78160248722548, -1.1907030466031547], + [-45.77869187254028, -1.2016217632615498], + [-45.77676721122486, -1.1965434990159323], + [-45.77591646636272, -1.2105142401009135], + [-45.78626461017124, -1.22794740179642], + [-45.79626715860137, -1.2137461945478332], + [-45.79872553621839, -1.1961094589353447], + [-45.79460723979984, -1.1886989229975033], + [-45.787638077206296, -1.186982047136205], + [-45.78160248722548, -1.1907030466031547], + [-45.76220709166868, -1.1859024843871637], + [-45.761234673493895, -1.1895997769183915], + [-45.76490372917947, -1.1873452658842594], + [-45.76220709166868, -1.1859024843871637], + [-45.819493412808676, -1.155105292235985], + [-45.819950112808456, -1.1593820270515607], + [-45.82050942523382, -1.1570462927354872], + [-45.819493412808676, -1.155105292235985], + [-45.81577241074766, -1.1542737431698062], + [-45.81753690565591, -1.1552679778375143], + [-45.81721688982958, -1.1531311522106713], + [-45.81577241074766, -1.1542737431698062], + [-45.6038823922018, -1.1270997902099633], + [-45.60589500528705, -1.1422914419539099], + [-45.602661182234954, -1.1645833535393766], + [-45.605753230427425, -1.1756063730876092], + [-45.61007317206518, -1.1786255443263154], + [-45.611092423316464, -1.1728254442275015], + [-45.612082716129905, -1.1778701584461495], + [-45.61838255577423, -1.1822186504431333], + [-45.63083957050317, -1.2102129819238092], + [-45.632526036646425, -1.2339027027012288], + [-45.62425737353921, -1.2340307070972587], + [-45.62235015774906, -1.241034173184944], + [-45.62577625894993, -1.250934687144265], + [-45.62334130955031, -1.2528801899151267], + [-45.6245454150764, -1.2593119149657548], + [-45.63247002641731, -1.2695071919288046], + [-45.63429592049668, -1.290712052255166], + [-45.64143358891548, -1.310112983223299], + [-45.63655220642836, -1.3337332632729686], + [-45.63251664940202, -1.33297069079308], + [-45.63285378343614, -1.348704590605555], + [-45.641475490245966, -1.3560355637109756], + [-45.69646606011981, -1.3621276851348179], + [-45.69642894553699, -1.3575017422377949], + [-45.67958076091657, -1.351986246341514], + [-45.67313393594514, -1.3458192299973082], + [-45.67521561607267, -1.3401000482678682], + [-45.68741191731751, -1.3310428815078308], + [-45.682583319449776, -1.3215946059303187], + [-45.67562001955987, -1.3192858964373677], + [-45.67301768170996, -1.3115044603985615], + [-45.67710096641179, -1.2989307233790877], + [-45.686153774627456, -1.290458915048917], + [-45.6846176502184, -1.2698169130831083], + [-45.65797189388238, -1.253682746690572], + [-45.65475216544102, -1.2574316745026828], + [-45.652432279150865, -1.26970294130981], + [-45.65046610849984, -1.2728123524031112], + [-45.644219090590845, -1.2723662947107353], + [-45.642600400175716, -1.2772045892595472], + [-45.64673977831461, -1.284992916057524], + [-45.65995548017512, -1.2921703857674984], + [-45.65793874602631, -1.3021089088580404], + [-45.65188231305162, -1.3108259196941692], + [-45.65789238690212, -1.292177961400608], + [-45.64469713289812, -1.2864429983806454], + [-45.64051600074812, -1.2801739078751568], + [-45.63838803038672, -1.2744368124685463], + [-45.6479439839437, -1.2624710210863779], + [-45.63695600832548, -1.2483350417519086], + [-45.63591779170161, -1.2405239300289421], + [-45.63906015451869, -1.2031846290125336], + [-45.636529961187065, -1.1782734471189467], + [-45.63018196496884, -1.1607895866683346], + [-45.631155748002016, -1.1470998563907635], + [-45.62091530045129, -1.1320338940485124], + [-45.61661510799416, -1.1366884506174935], + [-45.615672049691675, -1.1337715898029528], + [-45.61737755747622, -1.1290460445063453], + [-45.629169354952, -1.1271847486259428], + [-45.62229906810746, -1.116646464679326], + [-45.61584915771095, -1.1158918039051187], + [-45.6038823922018, -1.1270997902099633], + [-45.7950506869698, -1.1381108250577465], + [-45.804190600737336, -1.1511898436581534], + [-45.816542774890785, -1.1488251873894317], + [-45.81867693891891, -1.1313321639280465], + [-45.817058787526726, -1.1217079836535864], + [-45.805093795956545, -1.1129200156442296], + [-45.79351219378845, -1.1193964468088526], + [-45.793670457067584, -1.1238421078992817], + [-45.798873800085545, -1.1269798121416563], + [-45.7950506869698, -1.1381108250577465], + [-45.95232969187101, -1.1031180793233482], + [-45.954112588463325, -1.1066618390562324], + [-45.95792195436771, -1.1050817353953477], + [-45.95638995013698, -1.101451764077475], + [-45.95232969187101, -1.1031180793233482], + [-45.84144442092296, -1.0446260725691414], + [-45.84098546388731, -1.0469874123645897], + [-45.84453830107017, -1.0468757601952992], + [-45.838337223801624, -1.0523322310533474], + [-45.83402874845622, -1.0879364445334634], + [-45.83907904838063, -1.101185156476951], + [-45.84335961713278, -1.0931969493413918], + [-45.842069281296375, -1.1018154982165544], + [-45.854288659136415, -1.1155597861904354], + [-45.85193767701627, -1.125778071429849], + [-45.880753494502144, -1.1340575087878542], + [-45.88274275979265, -1.1398191324599085], + [-45.90518990198242, -1.1635836178122807], + [-45.90839529732141, -1.175605265012987], + [-45.914066473284535, -1.1818750874983108], + [-45.9082510381952, -1.177638267670491], + [-45.90418496289708, -1.178677678527461], + [-45.90547566349235, -1.1902318027222312], + [-45.908168367278456, -1.1939537299620653], + [-45.91432899712126, -1.1953417443082104], + [-45.915906008889884, -1.2007904125480915], + [-45.913441551729214, -1.1964655500289938], + [-45.90807578775836, -1.194270424700788], + [-45.902527841830725, -1.1920004973620042], + [-45.900663256031095, -1.176664540189143], + [-45.884905678296434, -1.1549608131243942], + [-45.873299805695936, -1.1464062455246502], + [-45.86560891466276, -1.146946737768309], + [-45.86176999445351, -1.1515537342064706], + [-45.86306359150824, -1.1569846306155074], + [-45.86933287281618, -1.1640342099481786], + [-45.87248793121725, -1.1635803951631285], + [-45.877502474189015, -1.1719910636169515], + [-45.8750757918862, -1.1781133580274734], + [-45.88793582060647, -1.1806988180684472], + [-45.88504523036052, -1.1838052823631782], + [-45.877234403562355, -1.182291802005207], + [-45.86953726253937, -1.1713511846531062], + [-45.86553281814173, -1.1722107286221866], + [-45.86229524865685, -1.1670212496584336], + [-45.86009190853098, -1.168023879197117], + [-45.859524242860815, -1.1732264893439122], + [-45.87182991477464, -1.1926759088085164], + [-45.86119817214305, -1.1885863073600293], + [-45.86573019508433, -1.2019761531483848], + [-45.87541227852511, -1.2075208804961282], + [-45.87951487891722, -1.2138415276953454], + [-45.89776678236837, -1.222140551920179], + [-45.89465206535541, -1.2270440061706391], + [-45.90486610104371, -1.2244997056327236], + [-45.89652438467901, -1.2306713850570195], + [-45.895673497823445, -1.2353936123380076], + [-45.900829718741925, -1.2393668033563374], + [-45.91226307157785, -1.2356758697328118], + [-45.908496115262054, -1.240498631659301], + [-45.90267908337868, -1.2416565325355098], + [-45.907030981407026, -1.2500479022513922], + [-45.90346811442508, -1.2599872643867014], + [-45.901050004553575, -1.2580072784832725], + [-45.90420998384198, -1.2505021504361666], + [-45.90181587756854, -1.2442048115328903], + [-45.89452672656781, -1.239302830201013], + [-45.89380184453649, -1.2309684606085864], + [-45.88661875200891, -1.2236425377385032], + [-45.867281239471325, -1.2225752220594412], + [-45.85049883542101, -1.2093866359581158], + [-45.84665404992977, -1.2102909767618866], + [-45.85004139095905, -1.2195625472135094], + [-45.86497585870753, -1.2337298457332342], + [-45.8710819285069, -1.2478888560155978], + [-45.863150479911795, -1.235352811799685], + [-45.843807484255485, -1.2207335200211304], + [-45.84688086842805, -1.23004892436429], + [-45.880243228257484, -1.2601149289525475], + [-45.880749808823914, -1.2647865167524333], + [-45.856498306512194, -1.261897007383225], + [-45.86376265243502, -1.2708868460559135], + [-45.86419298645203, -1.2777434204504996], + [-45.860189962505295, -1.283978054097994], + [-45.861107374826894, -1.270629626236443], + [-45.85345737600148, -1.261986003966896], + [-45.837184000239496, -1.2303318390285123], + [-45.834795993427385, -1.1989783283580007], + [-45.83143220647367, -1.1937546013774845], + [-45.81979897746378, -1.2046441630776552], + [-45.812251526996306, -1.221554682813289], + [-45.822948644744784, -1.2417227810173468], + [-45.82339789162353, -1.2489779538913066], + [-45.81051864626412, -1.2217275633488414], + [-45.82356619506388, -1.179590775328365], + [-45.81900490912174, -1.1705288690427125], + [-45.8060792982416, -1.1611476239993919], + [-45.79661877678943, -1.159345246671389], + [-45.79168531995342, -1.1629849177658402], + [-45.794521914908394, -1.1703824541833316], + [-45.78859330974094, -1.1680092222254794], + [-45.79087983632997, -1.177575809054175], + [-45.80126220948092, -1.1875934034063549], + [-45.804048192267054, -1.1991679225836076], + [-45.803105198134624, -1.21394676528664], + [-45.795591196189314, -1.2221100931392235], + [-45.82296257501511, -1.266340743397465], + [-45.83201936763495, -1.2704844918111105], + [-45.840545535093256, -1.2835468549477804], + [-45.830616609457365, -1.2967125398360333], + [-45.82072191048964, -1.2988954297172626], + [-45.82218635731051, -1.3122278235446991], + [-45.81296104322227, -1.316842840848422], + [-45.80512902063439, -1.31361523571467], + [-45.79752422938523, -1.3238075321251974], + [-45.802721561348136, -1.33866896282892], + [-45.80117285450152, -1.344448262529103], + [-45.798596756313444, -1.334746137731423], + [-45.79519453343808, -1.322637971436315], + [-45.805419206529784, -1.311708600364362], + [-45.81262736847898, -1.3150191740669441], + [-45.82031277695639, -1.3114303743272855], + [-45.81882949300489, -1.2975268535896722], + [-45.82976455799262, -1.2942721378822801], + [-45.838530941681256, -1.283845727373285], + [-45.831695794437245, -1.2756264925201948], + [-45.80640137636748, -1.2592759845021861], + [-45.80337873784123, -1.250364220332421], + [-45.78610977327996, -1.2498020548943174], + [-45.780615594710916, -1.2651144731781523], + [-45.7971794594142, -1.2766647370614757], + [-45.810280609219376, -1.2717318673485407], + [-45.814926271103964, -1.2761982677862609], + [-45.80817642416793, -1.2739344843163625], + [-45.79432723655919, -1.27899465941824], + [-45.782346599483695, -1.2700841944895123], + [-45.7774515543734, -1.2750982376991327], + [-45.77498245164792, -1.2708396003447913], + [-45.77818013049349, -1.269498139012428], + [-45.784788539769906, -1.2444514360947607], + [-45.769102032881136, -1.217033981570124], + [-45.767937931589955, -1.1921939277443219], + [-45.765871494494675, -1.190640200930898], + [-45.75973282696281, -1.1954525566321648], + [-45.759734947472765, -1.201921130773186], + [-45.756737870306836, -1.1991106229337996], + [-45.75257016002687, -1.19265473495287], + [-45.75335219082623, -1.1877334451368757], + [-45.74187008950383, -1.1710618688910812], + [-45.74390037614815, -1.1601324681188736], + [-45.73858226044074, -1.1579296155418772], + [-45.740176052275, -1.1511706362897594], + [-45.73598451592905, -1.1518011580462886], + [-45.732927071400525, -1.147397903851954], + [-45.72944698563915, -1.1493309087157655], + [-45.73110711082428, -1.143205899209023], + [-45.72781353267723, -1.140594737811274], + [-45.73116896966178, -1.1388725287447405], + [-45.735271244287574, -1.1367666703733599], + [-45.73507447979736, -1.1326714847490353], + [-45.71434492981479, -1.1271229193806047], + [-45.69297250514713, -1.1277388678465068], + [-45.68591501777438, -1.135833669183857], + [-45.681397647661356, -1.1363648176382217], + [-45.67823168482053, -1.1427853977466604], + [-45.67969848230077, -1.1485159348602725], + [-45.68290566778546, -1.146818684384197], + [-45.687698959377194, -1.1579847066183349], + [-45.69063317858309, -1.1559349984483422], + [-45.691474480456165, -1.1601273802847003], + [-45.69503325380557, -1.158356013266818], + [-45.696618909480755, -1.1666833361328564], + [-45.70802258967608, -1.1791833194521923], + [-45.71099556446467, -1.1789469174523106], + [-45.72026792398532, -1.1925680361047473], + [-45.72128619958338, -1.199340634433926], + [-45.72560947129447, -1.2006594232037118], + [-45.72512268853012, -1.213005971192393], + [-45.730010924647246, -1.2149728179364847], + [-45.725653114108844, -1.222869364899531], + [-45.73952190680048, -1.2365088898395138], + [-45.74599498098044, -1.23735414695681], + [-45.74456926425061, -1.241313783509528], + [-45.73736992430068, -1.2382430095315529], + [-45.73787715063128, -1.241555214615636], + [-45.72923390302006, -1.2309611933923779], + [-45.71912422631383, -1.2316513036648435], + [-45.71191159049381, -1.2486464382752627], + [-45.694788932337055, -1.2695997784963817], + [-45.69551546870974, -1.2830866383847257], + [-45.70250094249606, -1.2990138605097976], + [-45.69955033705396, -1.308760649734897], + [-45.71893163010121, -1.3138156421993294], + [-45.7240776681546, -1.3213942742641385], + [-45.72140023682173, -1.3269664320408996], + [-45.72890747996666, -1.3422796116888034], + [-45.73002897048947, -1.346239244804569], + [-45.72148509669103, -1.3505536799058147], + [-45.72697834475924, -1.3419876162806805], + [-45.71831068250954, -1.3289349032687754], + [-45.71793617461874, -1.3189163317476353], + [-45.713360217832424, -1.3144666794868267], + [-45.70489282766285, -1.3159063890083564], + [-45.69802692060672, -1.3132105337305697], + [-45.68957989690607, -1.3179783606031361], + [-45.69253663578917, -1.3293767510391996], + [-45.69052404501629, -1.3373131560834897], + [-45.67798975188781, -1.3447788789203614], + [-45.70358030381757, -1.3547277255841408], + [-45.709434702238916, -1.362530106473643], + [-45.71726929659861, -1.3664705992308366], + [-45.7201580973231, -1.3756065058218567], + [-45.730575225438606, -1.3756370938397706], + [-45.73914179153297, -1.3814815190338579], + [-45.74911419781116, -1.3687492555266332], + [-45.74736633629207, -1.3729615425542847], + [-45.754343913466656, -1.3786529354452395], + [-45.745152873432446, -1.3751198950769143], + [-45.74004524917624, -1.3834393544783807], + [-45.73097021376356, -1.3785999876029458], + [-45.718257338963205, -1.3777532241192203], + [-45.71455901245487, -1.3678252085212974], + [-45.700407132724244, -1.3582276957331438], + [-45.70286022355866, -1.389818145416082], + [-45.71969811682103, -1.4032880551821072], + [-45.725717150925206, -1.4173747826165228], + [-45.718461782305745, -1.4047756051848919], + [-45.703874342675626, -1.3945272439577188], + [-45.69963032214332, -1.3927395105481997], + [-45.68800296107849, -1.397731622885057], + [-45.68616771566107, -1.3960454445931245], + [-45.68925235817203, -1.391773310780929], + [-45.6971711731359, -1.3862633245482017], + [-45.698055511960376, -1.3767033078525333], + [-45.694725084377716, -1.3710958834685185], + [-45.67893393401236, -1.3670770109947925], + [-45.66763032991183, -1.3679722223822122], + [-45.67691202092664, -1.3782192354783467], + [-45.66381459683241, -1.3693737771466035], + [-45.6380416049202, -1.372204124116991], + [-45.62785661239272, -1.3641033082823388], + [-45.61576581796055, -1.3410748507923969], + [-45.61464479048312, -1.323792010856804], + [-45.62127692902221, -1.3080390778100708], + [-45.614000244316834, -1.2784316117033243], + [-45.60894115522794, -1.2727283497210746], + [-45.591771227148065, -1.2654401432708793], + [-45.590454333304756, -1.2730701488325564], + [-45.58814938370813, -1.2640005687664841], + [-45.5801678381311, -1.2572721132431157], + [-45.57717409403626, -1.2658269290439315], + [-45.58171298009315, -1.2715190673563488], + [-45.5777421386195, -1.2762522732911115], + [-45.58773293979505, -1.2945709219806503], + [-45.59895699437799, -1.2950329275869512], + [-45.601676393683576, -1.3030324583634827], + [-45.60885861514883, -1.3030061690360248], + [-45.60051188816785, -1.30410491601939], + [-45.596969299827855, -1.2969606895681747], + [-45.590212222814664, -1.3004660575260498], + [-45.589117536407024, -1.328568528448825], + [-45.59521358611695, -1.338252666115032], + [-45.60303283588118, -1.3356444117584412], + [-45.60820165958282, -1.3421298737099605], + [-45.603373640888584, -1.3447509735792307], + [-45.60577519518294, -1.3417028643378424], + [-45.60310766603777, -1.3379377910280976], + [-45.59528924550535, -1.340821566531792], + [-45.58815631963086, -1.33324170898282], + [-45.581738989877294, -1.3402599242450641], + [-45.582478090997604, -1.3466449308561113], + [-45.57654920776999, -1.352392317053263], + [-45.58004933363469, -1.3393156566882587], + [-45.58741810925263, -1.331542014961017], + [-45.58498818051984, -1.3252684451936998], + [-45.588175382445684, -1.3122304661432782], + [-45.580989799114555, -1.2957805916540404], + [-45.56397567288088, -1.2781334910700346], + [-45.55237415835878, -1.2741522139410402], + [-45.56232462542952, -1.2829053115115574], + [-45.56178771786361, -1.2876753924630788], + [-45.55474711107928, -1.2932380334858902], + [-45.554797674344435, -1.3188512881033332], + [-45.563273716566506, -1.328910280326333], + [-45.57434011028987, -1.3316317741122974], + [-45.5739838781699, -1.340138560428111], + [-45.571007242073065, -1.331922823043014], + [-45.557438001474175, -1.32798958260777], + [-45.547644172291115, -1.308508190990772], + [-45.53542919799722, -1.3029058122843755], + [-45.5313564998917, -1.3099760524097677], + [-45.53304038743161, -1.3181998797035908], + [-45.52984700490934, -1.316585174040895], + [-45.536183750169954, -1.3284155399189976], + [-45.550766778446246, -1.3267610066360374], + [-45.558602001644715, -1.3305136307086096], + [-45.56038299214523, -1.3412343872799783], + [-45.55268040013014, -1.3516343780120421], + [-45.56383984833434, -1.3601208092585022], + [-45.56964947061249, -1.375125120307075], + [-45.56184104711698, -1.3612553791098216], + [-45.55047008522194, -1.351585577774737], + [-45.55453048490295, -1.3384061766192343], + [-45.552156719618736, -1.333628105394693], + [-45.54848432381561, -1.331783466575035], + [-45.54123502800477, -1.338746151901057], + [-45.537445688987425, -1.3385104008766835], + [-45.52355033681396, -1.3222646713306825], + [-45.51781542559205, -1.30140225507992], + [-45.50944177989414, -1.2928381264959081], + [-45.50137817241174, -1.292039365217126], + [-45.50948374249721, -1.304959482929372], + [-45.509991197804645, -1.3127280432707558], + [-45.50588775387445, -1.32030295548889], + [-45.511557613070764, -1.3339390960235196], + [-45.5232709360214, -1.3413313267313343], + [-45.52608094535326, -1.3495590299774398], + [-45.52287120391015, -1.3431091495469971], + [-45.5126019327753, -1.339606629449359], + [-45.51183606795064, -1.3520875572664839], + [-45.52233778250532, -1.3584760364057729], + [-45.52353917697025, -1.3658868683485916], + [-45.54166447950687, -1.3678951778267732], + [-45.5446200296238, -1.3734599253730166], + [-45.53914976932612, -1.3693087055123372], + [-45.52163836613054, -1.3677604740194251], + [-45.51633339649523, -1.360300438118223], + [-45.51166228965862, -1.3611571251268062], + [-45.50777479523691, -1.3779750448209862], + [-45.52716575837589, -1.404376018138142], + [-45.51891822185921, -1.4121079408806896], + [-45.50491387134945, -1.394966262008254], + [-45.491963218122486, -1.3895440840180144], + [-45.49025110622022, -1.3803663085716393], + [-45.4805498621015, -1.3733659960660296], + [-45.47677906653393, -1.362584775235023], + [-45.4663020312497, -1.349993339463854], + [-45.46877989275408, -1.3250242119905449], + [-45.465615241901865, -1.3197713648801057], + [-45.453997919122635, -1.3171085343036248], + [-45.44736061805425, -1.3193620008544031], + [-45.444760936052155, -1.3123289707928847], + [-45.43813627815446, -1.309846144498679], + [-45.44048047825777, -1.305139203271008], + [-45.44751994439315, -1.30270088436686], + [-45.44369066151633, -1.296228162168421], + [-45.41015562080932, -1.2896524665241582], + [-45.40462964930345, -1.2975828696032154], + [-45.40676474612229, -1.2999213942176886], + [-45.40215731558867, -1.3077160946658806], + [-45.40520641219775, -1.3289809523147647], + [-45.40829200982708, -1.3390394740712137], + [-45.418037596205835, -1.3518910999692393], + [-45.4248000505801, -1.348888568931586], + [-45.43253774768002, -1.3326758718469698], + [-45.427943455002286, -1.3513794774555832], + [-45.43310494736325, -1.35287946141857], + [-45.432834295603925, -1.3587729223169467], + [-45.44498367853556, -1.3654222305962087], + [-45.445633950225606, -1.3517974451335193], + [-45.44834432817306, -1.3629004329377985], + [-45.45373128724944, -1.3603651546460422], + [-45.46764950301952, -1.3734651216613383], + [-45.47003033134565, -1.3928346194301198], + [-45.47749837776001, -1.4138337575809443], + [-45.47363592177936, -1.4197755111070829], + [-45.476503812420745, -1.4342039813463734], + [-45.479527820394786, -1.4365603518981744], + [-45.48848196939921, -1.4316025586668], + [-45.47330354407327, -1.4467862668007319], + [-45.473538170449494, -1.4565352896817674], + [-45.48478806477647, -1.4753982637753573], + [-45.47439137090162, -1.4769516079802458], + [-45.4702340286795, -1.4786744570319932], + [-45.4677644709945, -1.4919816565481738], + [-45.473628930261405, -1.4998401766384313], + [-45.464810410986715, -1.4936731752786225], + [-45.45347438462312, -1.4982478441848535], + [-45.450275128445426, -1.5175042913192414], + [-45.456918273589324, -1.5300891331990811], + [-45.4747079482467, -1.523479160313871], + [-45.481691058210885, -1.5332782445838402], + [-45.48766345634047, -1.5303341167519664], + [-45.48195811871151, -1.5368471735514568], + [-45.48214548954612, -1.5437046033197355], + [-45.480665560537005, -1.5342178041945806], + [-45.472623526191285, -1.5265486080057546], + [-45.443593262735455, -1.5430874127630634], + [-45.44558271182961, -1.5382024154095197], + [-45.45455468862177, -1.5332833846263985], + [-45.44493151267868, -1.5091542755921323], + [-45.4488542899607, -1.4957749236864393], + [-45.45944347920316, -1.4870367457175082], + [-45.46056141325663, -1.4772350899337179], + [-45.449858662559514, -1.4620214658336084], + [-45.4484724130101, -1.4489023699526367], + [-45.443463731976976, -1.4498100972718402], + [-45.42901423509898, -1.4251087281121568], + [-45.419604566830735, -1.420633781139532], + [-45.41705282941416, -1.4154679613194157], + [-45.41209412793873, -1.424486250906548], + [-45.41624901203811, -1.437041159458336], + [-45.41637607486072, -1.4533549954443488], + [-45.428710316717975, -1.4654067067726013], + [-45.40521778012713, -1.487266547343526], + [-45.42318951229101, -1.464626440603151], + [-45.41284659708305, -1.4547027288455294], + [-45.41304658534337, -1.4422382963699445], + [-45.40883040764078, -1.4340981490782887], + [-45.400139083501315, -1.4429302674234161], + [-45.399299845192374, -1.4493182109019018], + [-45.40656300019941, -1.4491614081289783], + [-45.40613018235506, -1.458053102273592], + [-45.39687661663655, -1.4631266950564816], + [-45.405133395580755, -1.4545769506372506], + [-45.40458778102131, -1.4506017428336058], + [-45.39815090581191, -1.4527629270769613], + [-45.39486836249943, -1.4475407458849026], + [-45.40449224605915, -1.434259015585476], + [-45.40228842446071, -1.4221257594351384], + [-45.39392613204617, -1.4148587272052726], + [-45.38437498239714, -1.4254608849558166], + [-45.381412019405026, -1.421929422926647], + [-45.37088286376654, -1.426564136013741], + [-45.3689790976749, -1.4367317313504426], + [-45.367869704948276, -1.4263651259106924], + [-45.36041906108086, -1.4281327712438603], + [-45.382934769226296, -1.419861432722525], + [-45.391031371991964, -1.4125382903689079], + [-45.37685360221717, -1.3988399112688217], + [-45.37716774741095, -1.3955102275427818], + [-45.365181073276915, -1.392435326144589], + [-45.36357340915319, -1.3863143720084845], + [-45.36935335504053, -1.3788288133968154], + [-45.34970244222451, -1.3888855906426614], + [-45.35689525217134, -1.3929121140309026], + [-45.35525909894552, -1.400682411186941], + [-45.35483374030398, -1.3931987655153744], + [-45.34837514471259, -1.3940550073409634], + [-45.34956697684382, -1.3888251918123977], + [-45.35103451776011, -1.382383913613051], + [-45.36204339803081, -1.3773405247976958], + [-45.37043933725613, -1.378196080419766], + [-45.36636133628622, -1.3876505157101582], + [-45.37298217746168, -1.3915695489869133], + [-45.373490737279866, -1.377005300216591], + [-45.37048362634188, -1.3734035043322184], + [-45.37315946337735, -1.3731913532054119], + [-45.37164103285305, -1.3628975878490315], + [-45.36112713544844, -1.3577831632430317], + [-45.34936784487232, -1.3417697418269516], + [-45.33934020093175, -1.3490070321853866], + [-45.34837544595853, -1.3504892394907442], + [-45.35457237135152, -1.3569363754560881], + [-45.339175546104485, -1.3513382454999232], + [-45.331133156705576, -1.3644186514149284], + [-45.32980999670739, -1.3612998599918458], + [-45.33454454827592, -1.3573041346982906], + [-45.328047838431274, -1.3527918733717514], + [-45.33452940322464, -1.3540031275113549], + [-45.332272905397375, -1.3487656503746879], + [-45.34061725847131, -1.3431328634985007], + [-45.33993981766259, -1.3390462503191907], + [-45.35147131742336, -1.3269642130983756], + [-45.35930492044116, -1.3236330367509064], + [-45.35546826192021, -1.314521063336645], + [-45.347603552881736, -1.308435476430296], + [-45.32280971758815, -1.3141375695880853], + [-45.31003194990938, -1.3324307581771155], + [-45.3100177208035, -1.3432993688627781], + [-45.30708501949294, -1.3384273307749202], + [-45.300921293422185, -1.3433610694508347], + [-45.30714721365652, -1.3572555739829506], + [-45.30310449128625, -1.3682177685472272], + [-45.30495709034223, -1.3882288870207466], + [-45.30094383413492, -1.3967984424386608], + [-45.30163290955399, -1.3718510681491491], + [-45.297496770440745, -1.3678864464550933], + [-45.29485031435955, -1.3733651075154854], + [-45.29299197438917, -1.4216246528352687], + [-45.29612046390725, -1.4264979109673344], + [-45.298601286039705, -1.4246521887085013], + [-45.29518749264408, -1.414631144555547], + [-45.304523450882336, -1.4063346330101096], + [-45.31180154588007, -1.4139331116722642], + [-45.31587662576195, -1.411782903768562], + [-45.31377126088385, -1.4172930676870659], + [-45.30386247726301, -1.4093619891549547], + [-45.30135273102208, -1.4201406358618862], + [-45.30452663780826, -1.4310701918916948], + [-45.3107369877998, -1.4338847393239047], + [-45.31323435433638, -1.4406968614546887], + [-45.32187340602904, -1.4426214039777294], + [-45.322452659758156, -1.4429481420116876], + [-45.35449296155896, -1.4531909759764456], + [-45.37870046783182, -1.4682275143211825], + [-45.380299586254594, -1.4762393372756366], + [-45.38826062857856, -1.4817550893771738], + [-45.38745336084133, -1.495866147170801], + [-45.379298239048616, -1.5165562478130183], + [-45.37283832329696, -1.516008460677459], + [-45.37256635366522, -1.5136718021747293], + [-45.37906187836712, -1.5138512853561505], + [-45.3845728550147, -1.4849420730317116], + [-45.376063012270485, -1.4826047765973347], + [-45.36461063438694, -1.4706600962528484], + [-45.349367902293075, -1.4677393439286461], + [-45.34570308128095, -1.4698952539343855], + [-45.34632284615419, -1.487944391521053], + [-45.35850003756999, -1.4971120772596984], + [-45.35699622118935, -1.509022347445342], + [-45.36667133628932, -1.521991882433825], + [-45.36647102472328, -1.5320387541460672], + [-45.37295262140361, -1.5450069945030247], + [-45.37487639375977, -1.546613552450905], + [-45.384183986071506, -1.5374426580138587], + [-45.391714925198706, -1.5420449998968406], + [-45.39280827484793, -1.5648421988298975], + [-45.399341926721554, -1.5702119078949937], + [-45.39877986554409, -1.5748882476662291], + [-45.39170102239425, -1.5648680847366376], + [-45.3885761649847, -1.5424356667140662], + [-45.38044574040202, -1.5414139650778802], + [-45.374787104174096, -1.5493440145038593], + [-45.36959600050312, -1.5477000844814195], + [-45.36648836565135, -1.5397581027362888], + [-45.36286126311664, -1.532685067954442], + [-45.362587253267684, -1.5208114417638443], + [-45.35392986120102, -1.5117882944625793], + [-45.35314782082527, -1.4989294267025404], + [-45.34231349490271, -1.491295048823453], + [-45.337084562177914, -1.474488950450926], + [-45.327305583248936, -1.4812138251805338], + [-45.32796310754598, -1.5033892882839452], + [-45.33565548163466, -1.5040464012508494], + [-45.327254538994495, -1.507116539179659], + [-45.32745641627728, -1.5170915586265057], + [-45.324951522262964, -1.5144977377567228], + [-45.322229298248544, -1.4736133784411305], + [-45.30920270243133, -1.4819345430986597], + [-45.31037710391074, -1.484934114518997], + [-45.29807389532774, -1.494526888203708], + [-45.31031449603555, -1.516299032483046], + [-45.310417445781304, -1.5302114111847782], + [-45.3183671113169, -1.5403237833340542], + [-45.31533259254612, -1.5551918903471325], + [-45.32675616408737, -1.5622006806987532], + [-45.33997289198677, -1.5866002634548235], + [-45.337445822244845, -1.5928153103871838], + [-45.34132549843798, -1.6017439205211386], + [-45.33864221965072, -1.617150426377224], + [-45.34106964699533, -1.6249036366011875], + [-45.353037630662364, -1.6143260863614], + [-45.35904342718917, -1.623621049286773], + [-45.366227594417246, -1.622758297143241], + [-45.35890002830157, -1.6258405966192508], + [-45.3523763103975, -1.616834000373315], + [-45.34104328885779, -1.629159445260355], + [-45.355131935509135, -1.6672587430046535], + [-45.35894848420656, -1.6726286362596487], + [-45.37338373789949, -1.675230342552017], + [-45.38072498290406, -1.6810067672477547], + [-45.38979147615172, -1.6803257971359278], + [-45.38980672766225, -1.691709230497499], + [-45.39752284834453, -1.6943973441503077], + [-45.402726795715175, -1.7060151068168206], + [-45.40223323858034, -1.7082610458979846], + [-45.39967809628791, -1.7060677339934336], + [-45.39586318080493, -1.6949453328893833], + [-45.38928124511483, -1.6930661182964049], + [-45.38824696064124, -1.6812615277510894], + [-45.38021048896088, -1.6833419307191397], + [-45.374828335410825, -1.6780005775219657], + [-45.36520777519013, -1.6757337179579626], + [-45.37526638183065, -1.6892897545458172], + [-45.37338849877109, -1.70089146853231], + [-45.38579724315785, -1.7118988182435029], + [-45.37060199085907, -1.7011991967187798], + [-45.371364924494195, -1.6864862924349802], + [-45.36505507614916, -1.6805999501217395], + [-45.357556051181746, -1.6796272359974889], + [-45.366077727778, -1.7108342224345672], + [-45.35981030128943, -1.7288339492703315], + [-45.3528086408669, -1.7366267936245368], + [-45.34806027590127, -1.7353266033362924], + [-45.338815784445664, -1.7327944881780193], + [-45.341221586335806, -1.7122553652205252], + [-45.33561747766299, -1.6851294573652162], + [-45.33023054563439, -1.6770473215334678], + [-45.32055782534319, -1.6432595588568317], + [-45.31420175313029, -1.6087159713857608], + [-45.309437209297506, -1.600622746392832], + [-45.29226383221741, -1.5931347268301421], + [-45.286695692123835, -1.5956770326900676], + [-45.275124039018856, -1.6109397886685595], + [-45.27855685349536, -1.6191367549269542], + [-45.27148809461564, -1.6159401942587863], + [-45.26324336406806, -1.6270270949230776], + [-45.25123730421025, -1.6236215166960042], + [-45.2479799800948, -1.622697534532916], + [-45.25274293738923, -1.6156339062094658], + [-45.253150701674244, -1.5953201272294353], + [-45.250894798570364, -1.5856279982982504], + [-45.24705479571664, -1.5839269047731677], + [-45.24858989373345, -1.575780243884031], + [-45.23527140565118, -1.556086694373392], + [-45.23419577980254, -1.548920741177454], + [-45.20725429370996, -1.5299492088849564], + [-45.196753988938774, -1.5140198625378694], + [-45.1944511155722, -1.5159276713543224], + [-45.187997579929586, -1.512937951766719], + [-45.184053855491825, -1.523198124229842], + [-45.180553003847805, -1.5237951967527266], + [-45.175373121173806, -1.5097250341591448], + [-45.170620338295606, -1.5085949993284413], + [-45.17343100488961, -1.4979927123002537], + [-45.16850721228343, -1.4902211255237703], + [-45.16165497958056, -1.4878077092336208], + [-45.16215300286239, -1.4792152111223347], + [-45.157406168594385, -1.4711561264829194], + [-45.15174841312482, -1.4686754109490416], + [-45.151200193784874, -1.4609565924498304], + [-45.15115421429299, -1.4653218890844644], + [-45.147777178819474, -1.4662398084764754], + [-45.143578067145604, -1.4630258978638524], + [-45.142072935853435, -1.4754744825994655], + [-45.13595662299274, -1.483195226492482], + [-45.14316902557685, -1.491464971357196], + [-45.1386050571102, -1.4916486792270545], + [-45.13591398232838, -1.50245867422257], + [-45.127709424396386, -1.507770174870017], + [-45.14568937788075, -1.5229122909823192], + [-45.13893081163326, -1.52157465174021], + [-45.126380806076476, -1.5116188513495514], + [-45.12992711713885, -1.5296902005484294], + [-45.12724092476705, -1.543996313403486], + [-45.12308477984885, -1.547623110379074], + [-45.113225214725595, -1.5449452048463224], + [-45.10752415489868, -1.5488093283331696], + [-45.115743754626266, -1.5422401222457442], + [-45.12289154030905, -1.5456975302342992], + [-45.12707403514298, -1.5402711279469017], + [-45.128237314827615, -1.5293410143421635], + [-45.1226398941322, -1.5144461457802456], + [-45.126655380014896, -1.496475385281684], + [-45.12529931113856, -1.4754679475921], + [-45.13010854656884, -1.459429922016638], + [-45.12191310534283, -1.4528362516152589], + [-45.11968925557512, -1.4396956128732838], + [-45.11306514118674, -1.4358982693928124], + [-45.11453960566327, -1.4331598364850768], + [-45.1050186547336, -1.4157706199907896], + [-45.10489655348037, -1.4155083481668111], + [-45.102283115764024, -1.406667619559094], + [-45.111536895222734, -1.380703820035905], + [-45.10617158279428, -1.3724811900531497], + [-45.105300270476995, -1.363673940942319], + [-45.10124265920219, -1.3604137506466016], + [-45.09309775511144, -1.369446760453056], + [-45.09751577831998, -1.3846770178076817], + [-45.09310274198398, -1.3904263665789671], + [-45.097526931436235, -1.3967252780760637], + [-45.10394499883896, -1.4266882120765039], + [-45.09491630148704, -1.4573421509512223], + [-45.09875598907473, -1.4716133929863395], + [-45.10428295949212, -1.4791356427009963], + [-45.10397686192478, -1.4908817455418473], + [-45.10929882750654, -1.4961375095717477], + [-45.10233918263903, -1.4925308880003088], + [-45.094048913139964, -1.4970660883716298], + [-45.09302488085054, -1.5031449737064115], + [-45.097172395203785, -1.5136034495150739], + [-45.09215525050374, -1.5048453703960447], + [-45.08683248403323, -1.5042260260031457], + [-45.09010759438552, -1.50278468717994], + [-45.09056972402649, -1.4965490066625253], + [-45.10029181426414, -1.4901601730393155], + [-45.100290867068544, -1.4792385836170425], + [-45.093688375686206, -1.4764048598336181], + [-45.07895107717988, -1.480630394021096], + [-45.073014148433415, -1.47743665724575], + [-45.08023001486715, -1.4832578660914555], + [-45.09322949418473, -1.4859367896500448], + [-45.08084431407256, -1.4849061163250272], + [-45.07833724872706, -1.4873281060513883], + [-45.069124151544194, -1.4765089161343632], + [-45.0684587996171, -1.4579287461493569], + [-45.079000470713936, -1.4398997094787456], + [-45.07079112459288, -1.4243699072977274], + [-45.06530576430501, -1.4274570788272114], + [-45.06189178182951, -1.4399314322651686], + [-45.0724744516006, -1.440445257462511], + [-45.063200734597594, -1.4445868707585328], + [-45.07221277880549, -1.4457540674799407], + [-45.06905383964626, -1.4519896363363356], + [-45.06594264449526, -1.4490835619312197], + [-45.06721473991165, -1.4553051503976657], + [-45.06479656617344, -1.4550803185537782], + [-45.06352504184101, -1.4661450189323957], + [-45.06577129927282, -1.5024536658226166], + [-45.076460881978456, -1.5172464630637092], + [-45.07409163529255, -1.5158277622651273], + [-45.064682707003435, -1.5045139884127978], + [-45.06315888089145, -1.481248919146766], + [-45.05410649807058, -1.4782679469383897], + [-45.04248731743311, -1.488916176167424], + [-45.03987685669508, -1.500131875844235], + [-45.039788985866196, -1.490843924781426], + [-45.019960604313496, -1.490225922100806], + [-45.01495682025021, -1.4829992385828676], + [-45.004642203185256, -1.481724891291874], + [-44.99613049794115, -1.4874450379114852], + [-44.98753640199342, -1.502453506290718], + [-44.97119851644091, -1.5045900937041283], + [-44.96461202699362, -1.513982696539891], + [-44.95861303517996, -1.5152002879286703], + [-44.962810438211086, -1.5009578268824084], + [-44.96160082251207, -1.4931294014249912], + [-44.9567877158999, -1.4835062856660561], + [-44.94576950876945, -1.476730757658684], + [-44.935254891197424, -1.4872253249023688], + [-44.95019642395102, -1.4917975624100464], + [-44.95320651313358, -1.4984112758870043], + [-44.951267075860315, -1.5058308931615632], + [-44.94298667141441, -1.5173362011871196], + [-44.94111702984233, -1.5131547798669924], + [-44.9508560086508, -1.4998566039674333], + [-44.94645449552841, -1.4928987237954845], + [-44.9353455090566, -1.5091805447446558], + [-44.926882093510365, -1.5111335697149395], + [-44.93482034649225, -1.5066794055980646], + [-44.94245141579347, -1.495872604683173], + [-44.90475696575099, -1.4901425219930573], + [-44.912409081679385, -1.4867998491672796], + [-44.92111042036201, -1.4889948816139542], + [-44.92086080025248, -1.479761082114788], + [-44.91478331914179, -1.4775903202003722], + [-44.89542757656817, -1.454039301485494], + [-44.88097870000496, -1.4435762668154528], + [-44.869399970709495, -1.45807832906642], + [-44.87446571438783, -1.4453336095721465], + [-44.87369044844809, -1.4385564105894502], + [-44.86172655111834, -1.4467918522372079], + [-44.8708166154765, -1.4374564737218973], + [-44.8714449935081, -1.4315412597976824], + [-44.85813480299278, -1.4320110026087713], + [-44.85640154649011, -1.4274644755165624], + [-44.859833883741715, -1.4302532763217142], + [-44.87156950228871, -1.4257651323668334], + [-44.85446251425093, -1.4160934325199066], + [-44.8413801019955, -1.4207905895562918], + [-44.8406740834852, -1.4168644402203407], + [-44.846707674329224, -1.4144870747541294], + [-44.825277315346625, -1.4135093529186757], + [-44.83391057169215, -1.4168057526047362], + [-44.81751123099095, -1.41724219742253], + [-44.810495309090825, -1.4291024632415443], + [-44.82307499252086, -1.4380264017059605], + [-44.82400126548659, -1.430235499343683], + [-44.83521869362179, -1.4498447580800233], + [-44.82856020653552, -1.4887191806401994], + [-44.83147615083911, -1.4911160736331677], + [-44.8436569900565, -1.483990137345454], + [-44.84074361725477, -1.4581887137891678], + [-44.846669439663906, -1.47107051480585], + [-44.84659134719155, -1.4888881851966391], + [-44.87195117055259, -1.4802664226307805], + [-44.886886584141145, -1.481504376435638], + [-44.87333820711562, -1.4834233958226468], + [-44.856700103014674, -1.493402518038111], + [-44.85217110899208, -1.4925167889996171], + [-44.8567955507587, -1.4974514742904725], + [-44.870151910747225, -1.4944259885361872], + [-44.87600011229304, -1.4985453186026545], + [-44.86374294188317, -1.4987241031824807], + [-44.86658239894876, -1.5090745260788965], + [-44.87304774169507, -1.5170507164409635], + [-44.89193569268727, -1.5197337611562298], + [-44.87638276147607, -1.5238084800449125], + [-44.88326043122603, -1.5347141159850055], + [-44.880747312336595, -1.5405070475529168], + [-44.89822209422109, -1.5483425897743], + [-44.907022035534425, -1.54805321348169], + [-44.902038283674266, -1.5623859249814023], + [-44.908022699784624, -1.576372863525336], + [-44.90174660514252, -1.588410702836734], + [-44.90324412067418, -1.6045698365924128], + [-44.89798990761787, -1.6137475989511219], + [-44.881478470087536, -1.6041012786472426], + [-44.866658079862, -1.6031668313347245], + [-44.85542168530526, -1.6134411379451288], + [-44.850262300867975, -1.625386809615209], + [-44.84587354303113, -1.6243027246359636], + [-44.84666841401222, -1.6202381967892183], + [-44.83004432959687, -1.5947025324694828], + [-44.82813285003205, -1.5764671500294876], + [-44.82236955692793, -1.5748732129899363], + [-44.80187129945982, -1.5916092454209978], + [-44.803605529578164, -1.6074793620329308], + [-44.79276963634407, -1.6179156847935634], + [-44.80135989484195, -1.6266582405371068], + [-44.79464306274774, -1.626275200151589], + [-44.78993536859845, -1.619062628768692], + [-44.80044802440602, -1.6039887024262374], + [-44.79808209339898, -1.5983258946141563], + [-44.79315078056176, -1.6001912971658596], + [-44.777616129635874, -1.624991097914688], + [-44.77915375338886, -1.6394837163841385], + [-44.79905817484125, -1.6600204315254272], + [-44.78444157561061, -1.6523225024826882], + [-44.773030309980136, -1.6341627413534934], + [-44.77463510777753, -1.621861065101268], + [-44.78297064156357, -1.6119240210796437], + [-44.78992795174154, -1.5883923836411924], + [-44.78474947631313, -1.582822781569238], + [-44.7742861976951, -1.582037444493923], + [-44.76779981667851, -1.5771444197500464], + [-44.769284777972395, -1.5742255176971909], + [-44.76219829138017, -1.5613243238021395], + [-44.759425218512895, -1.5623031228752848], + [-44.76086966158545, -1.5899553577061591], + [-44.77011698319429, -1.6112940257534398], + [-44.75429038969865, -1.6142454439862581], + [-44.765198190178, -1.6091847576408342], + [-44.755018920882996, -1.5976421514533], + [-44.738143727028515, -1.6120891254900542], + [-44.75050770507237, -1.5970158844611972], + [-44.74783277733311, -1.5881237124108059], + [-44.72336968287978, -1.5707216440485205], + [-44.7141536118198, -1.5590284109312178], + [-44.708421766674164, -1.559889645735297], + [-44.70176829409697, -1.5703747220243665], + [-44.70286049129301, -1.562817842477897], + [-44.69834916033732, -1.5532781958025683], + [-44.696295032462494, -1.555474681145894], + [-44.70232368357927, -1.5818303810755878], + [-44.72238051769999, -1.6032793716424032], + [-44.72039163772471, -1.6123865165331306], + [-44.72323477235117, -1.6205051031807962], + [-44.73311682584518, -1.6228306408234956], + [-44.722913374986675, -1.6233697907435427], + [-44.717460851701965, -1.6171450438390143], + [-44.7150026287838, -1.604808214362984], + [-44.70257924146423, -1.59074453448802], + [-44.69220597071639, -1.5998518908673676], + [-44.68715172249373, -1.5723513572222332], + [-44.68184532603099, -1.5650495429487958], + [-44.67352258328143, -1.566317656600404], + [-44.66561016730697, -1.5788967229120623], + [-44.66728188797294, -1.5870273607843495], + [-44.65813096388962, -1.5949058998981744], + [-44.65120908261767, -1.612849901502489], + [-44.642748241783515, -1.6242733435584031], + [-44.647523874645415, -1.647565844640504], + [-44.65730568709147, -1.666319551186046], + [-44.66612108812714, -1.6617675009530444], + [-44.67151535155327, -1.6447152780218124], + [-44.67748016827495, -1.6510055185857335], + [-44.68337011856902, -1.646235693299997], + [-44.68656118960018, -1.6514573951645282], + [-44.69761322328812, -1.6524494685447388], + [-44.7003086920185, -1.6410418539072422], + [-44.7036936366244, -1.6522965147744815], + [-44.73777634879634, -1.6558500461269632], + [-44.74558372245702, -1.6455501102216532], + [-44.75328764613526, -1.6458712111793332], + [-44.75377243000047, -1.6484961358590737], + [-44.745709926311164, -1.6481733267964107], + [-44.74250320754363, -1.6586034667059362], + [-44.74703683657236, -1.670912017696288], + [-44.75522416978958, -1.679259365726119], + [-44.76151056627718, -1.6769972914253264], + [-44.760397920168984, -1.6815635841996281], + [-44.7689320371247, -1.6844192776694407], + [-44.784262944097485, -1.6709410104758633], + [-44.7936776005541, -1.6847166633410482], + [-44.78090223930791, -1.6763809500768796], + [-44.77927874772046, -1.6857837844227372], + [-44.77268711591128, -1.6907985028703796], + [-44.78245991285194, -1.6951083515624101], + [-44.791286586414934, -1.7048196615892035], + [-44.799142595357125, -1.7077656510413681], + [-44.80477804754204, -1.704666689127387], + [-44.80158382042116, -1.7095798087401513], + [-44.795964025138176, -1.709219184530153], + [-44.79177905100258, -1.7089510871652596], + [-44.78474449745506, -1.710682596763518], + [-44.781805385911554, -1.7172669137813676], + [-44.787030014571165, -1.7212932763179294], + [-44.79382719685077, -1.7194161884776724], + [-44.79111853763243, -1.7218101460949433], + [-44.780450913391114, -1.7208171400625578], + [-44.773308720190514, -1.7269257538244442], + [-44.75799101363156, -1.7288917251642772], + [-44.755038612742545, -1.734975394889488], + [-44.76772172438065, -1.745767294901387], + [-44.788548348474954, -1.7437384995249343], + [-44.789045905327036, -1.7496689064396715], + [-44.78434879120906, -1.7466159978264988], + [-44.766090711988554, -1.7491945069341908], + [-44.755881265969315, -1.743843862378233], + [-44.751882357685616, -1.7323802547384084], + [-44.75653284186059, -1.7273189069115213], + [-44.77044239622324, -1.7227232902426926], + [-44.774023011758466, -1.7163949563738978], + [-44.772868673048855, -1.711068766118481], + [-44.75614783929333, -1.7110763869645018], + [-44.749081274071, -1.7207030644762489], + [-44.7327587342352, -1.7258258209578368], + [-44.713256629018574, -1.724639837000776], + [-44.70869141400535, -1.716830073240953], + [-44.70146966047049, -1.7193229516804382], + [-44.69716296272089, -1.7380035316373272], + [-44.70500401997809, -1.7384577589928534], + [-44.714332768091886, -1.7550187599216707], + [-44.723077538200684, -1.7515860018557408], + [-44.73289242338927, -1.7527383587850818], + [-44.72431600753014, -1.7532175231473297], + [-44.71967270069252, -1.7583565853010747], + [-44.74778258514041, -1.7792950507916785], + [-44.75103598074069, -1.7866418881839023], + [-44.782324136634756, -1.7912027496813325], + [-44.78871769395365, -1.7941084730942025], + [-44.79416573479525, -1.8044803612741938], + [-44.79846888744352, -1.8041582386893655], + [-44.80729198070226, -1.8063175762413255], + [-44.81049605915506, -1.801883822181069], + [-44.813786202656296, -1.802468129641752], + [-44.807547965538646, -1.8083009142056186], + [-44.799731680292616, -1.8062831831707349], + [-44.80067382780228, -1.8136686907079587], + [-44.816020276593854, -1.8145835117943132], + [-44.82073658187814, -1.8213857801602622], + [-44.83461991840132, -1.822997017999418], + [-44.84607717600488, -1.8287168155414486], + [-44.8211990648382, -1.8237514936213612], + [-44.81340111939066, -1.8156676046528686], + [-44.80101890693741, -1.8180880085974693], + [-44.784616196659385, -1.7957958290841158], + [-44.76308853039465, -1.7980028098058676], + [-44.71676139227666, -1.7826046026495013], + [-44.71695322054382, -1.7889242104727678], + [-44.72750352798208, -1.8017210241075035], + [-44.73741882062896, -1.8087568770493754], + [-44.75688509352209, -1.8144400177086206], + [-44.75958094940972, -1.8183940479890375], + [-44.749334075853824, -1.8145168820387436], + [-44.73793868908012, -1.8107920583823074], + [-44.71468166842722, -1.7930722550858504], + [-44.711077812236006, -1.8037900240551896], + [-44.69922679265195, -1.803929912255358], + [-44.71030865690453, -1.8014654364800906], + [-44.70913510260328, -1.7892330618316823], + [-44.69673784973984, -1.772639122527397], + [-44.6852044550753, -1.7738195261401015], + [-44.664179761837595, -1.7674199402469735], + [-44.660003933069326, -1.7437519481731034], + [-44.654515539478325, -1.7521816287136815], + [-44.65306862429569, -1.7659625071458693], + [-44.660171419066174, -1.7729233112936549], + [-44.66875561242598, -1.7971164669262623], + [-44.673916455674124, -1.8006054427556082], + [-44.68302415951849, -1.7998117862506449], + [-44.68908826574114, -1.8075083663003224], + [-44.6928449324566, -1.8078987596586003], + [-44.69599812266581, -1.822145423905599], + [-44.68233155708261, -1.8013237484526305], + [-44.67006406949638, -1.8025832467738814], + [-44.66450145644099, -1.7975232872862195], + [-44.658707570088396, -1.7799787896751782], + [-44.64823671074185, -1.7649353264396854], + [-44.646539413743824, -1.770013617509736], + [-44.65196716927448, -1.7876920767456363], + [-44.64800257569135, -1.7910650259176693], + [-44.64921458095854, -1.7844538619528234], + [-44.64405685358235, -1.7679174277539704], + [-44.65171200559671, -1.7473888148380348], + [-44.649673702738696, -1.7423240824634652], + [-44.647840397381465, -1.7390416755225653], + [-44.647146440989296, -1.7358050483694136], + [-44.638460714605834, -1.7356883577679534], + [-44.649205367478814, -1.732370407238512], + [-44.65538273729025, -1.7218957800299954], + [-44.653352998183166, -1.7199636178157756], + [-44.64080370363136, -1.725326621603371], + [-44.62140030457615, -1.727822357774494], + [-44.59305633065643, -1.745785930683373], + [-44.594718688674355, -1.7497907073608032], + [-44.60272905245103, -1.7469528389060467], + [-44.63447789624614, -1.784215314908232], + [-44.63685283905175, -1.7955579693550363], + [-44.62722886736869, -1.8221309960410599], + [-44.63317912802311, -1.8291293952011527], + [-44.63135478592564, -1.8313259048327168], + [-44.62880271959222, -1.8326057184325126], + [-44.619632448566286, -1.8238381086956315], + [-44.61435102151568, -1.8317704154524976], + [-44.60768820996511, -1.8346991812933806], + [-44.63950052027501, -1.8577589629564666], + [-44.619709258484036, -1.8686557374969852], + [-44.60389450148457, -1.861650298429308], + [-44.59765982288819, -1.8541747412547105], + [-44.589124407661586, -1.8559428637486253], + [-44.582310112527665, -1.8610846401924677], + [-44.56957377315156, -1.8592987514784811], + [-44.55777807759331, -1.845462614570626], + [-44.55367130080806, -1.846511611076067], + [-44.548662275855236, -1.8299096541735447], + [-44.54427803062719, -1.8275198599638847], + [-44.54709732995621, -1.822092382380898], + [-44.54215577776342, -1.8224440487600146], + [-44.52986767154815, -1.8382365538534462], + [-44.53261339543205, -1.8487120532734374], + [-44.54806143464034, -1.8705749732726333], + [-44.56956664929257, -1.8829844853854212], + [-44.576076319297236, -1.883229957253434], + [-44.59030862750702, -1.8972104928657987], + [-44.60113337822482, -1.8968324997944466], + [-44.605214258341974, -1.9060211864838672], + [-44.59880743560761, -1.898775882449405], + [-44.59069928296862, -1.9045158659698904], + [-44.58096954206895, -1.894304908302263], + [-44.57419320007226, -1.8946618491842924], + [-44.57022381362201, -1.8979925124963024], + [-44.573511776764036, -1.9071734953802917], + [-44.56775022246182, -1.9116032813140513], + [-44.5696385462266, -1.9183096850377481], + [-44.56141292519265, -1.9230950937971492], + [-44.56105990613793, -1.921594263026455], + [-44.56700033297207, -1.9171960590947121], + [-44.56609557891939, -1.9120751715616118], + [-44.57029526442423, -1.905956878557786], + [-44.567250037241905, -1.8992308880822617], + [-44.54655461103435, -1.8900356832307188], + [-44.541693485623505, -1.8930579199360666], + [-44.545716163662334, -1.9041281798757903], + [-44.53809649744689, -1.8948504025356574], + [-44.53361421110516, -1.9026911379544242], + [-44.528616069548136, -1.9090140290369662], + [-44.530245603518736, -1.90069587104613], + [-44.52840034720576, -1.8811262001153843], + [-44.52318762733741, -1.8823756340532392], + [-44.517192178913746, -1.8929707588264582], + [-44.50251486657956, -1.9274696712683266], + [-44.49361961599067, -1.9333105348106452], + [-44.48868096352613, -1.9429695122788353], + [-44.4878803384448, -1.9669923191013379], + [-44.50576762310739, -1.9600415598822631], + [-44.504135925052374, -1.9493036433613447], + [-44.511585254924725, -1.9546076128025958], + [-44.51506438236896, -1.947345914173375], + [-44.51524738682111, -1.9517092226047157], + [-44.52285162852238, -1.9579125792076242], + [-44.52155234739159, -1.9603683850636682], + [-44.51807614071199, -1.9553522746683851], + [-44.50909312763685, -1.9645134477321153], + [-44.48724320747131, -1.9754432105419315], + [-44.49680547707338, -1.9879217346982359], + [-44.495332310607665, -1.9900881070705032], + [-44.4898442973525, -1.9820526646278906], + [-44.48475131121601, -1.9814295924661847], + [-44.4850116524394, -2.0029213038279465], + [-44.496847314931664, -2.007842057799177], + [-44.48315622113409, -2.0189461540963576], + [-44.47715667160604, -2.0225292362165153], + [-44.46595922611874, -2.0161035236996723], + [-44.47043332083112, -2.0224713914149115], + [-44.474352431932616, -2.04073519186293], + [-44.49793161327631, -2.050555644765273], + [-44.500352165208234, -2.053760738249451], + [-44.500431491281404, -2.100575887862154], + [-44.49960084685908, -2.141780771201811], + [-44.491403289942795, -2.137287199830519], + [-44.47109726003357, -2.1399543456836088], + [-44.44984919665985, -2.152498459758438], + [-44.433986129112334, -2.167446828234542], + [-44.42901480530824, -2.1787691678806294], + [-44.432574766828125, -2.1774983545244324], + [-44.43684855609734, -2.1811650196390704], + [-44.4394076873477, -2.1900831256769484], + [-44.44437265816464, -2.193618804742614], + [-44.4384065446617, -2.1917178770490593], + [-44.43574224531716, -2.1840736226137083], + [-44.43098983210534, -2.1834291455616275], + [-44.418848322928696, -2.1900065430230917], + [-44.407323265078865, -2.2053707560737315], + [-44.39596082974086, -2.213556059556679], + [-44.41004645988966, -2.220746156696304], + [-44.410099943380025, -2.2290939287910447], + [-44.413574432897434, -2.228296755267642], + [-44.41566052503882, -2.2213351751375283], + [-44.4161013901912, -2.228321966235877], + [-44.41206747654491, -2.231908736301865], + [-44.40196041579158, -2.2282485756019206], + [-44.40299037466896, -2.2205741432520942], + [-44.39987495529475, -2.2185573751600294], + [-44.392986241435366, -2.2230539905742615], + [-44.390904863927304, -2.2443369285145223], + [-44.37887596431477, -2.275605894712735], + [-44.39034574147105, -2.274423360003413], + [-44.392604106963994, -2.283702911118306], + [-44.38945519183928, -2.275844312056553], + [-44.37599045858688, -2.2795719759414106], + [-44.35673887166224, -2.326276466876954], + [-44.35904312778458, -2.328647909527621], + [-44.35584601090227, -2.3371516106412944], + [-44.3619573373923, -2.3478025879155062], + [-44.37021296029411, -2.35284632990431], + [-44.37176867908795, -2.360587316843242], + [-44.375687538336194, -2.359464749026418], + [-44.377739557395664, -2.354102518424195], + [-44.39820549977913, -2.354767562823906], + [-44.37798989341337, -2.3566439036205944], + [-44.37093636804357, -2.3666292613213007], + [-44.370046095325996, -2.376833323082807], + [-44.37457216606272, -2.3915879566067346], + [-44.38604553129566, -2.4082106883792855], + [-44.39926604973694, -2.415366924715097], + [-44.402965820441466, -2.413484351987402], + [-44.39977361677395, -2.408565173968824], + [-44.40714933805677, -2.4087958866060486], + [-44.411932882401324, -2.413990253047268], + [-44.37414775630218, -2.4541880979001784], + [-44.325991141967286, -2.5000399276763465], + [-44.31123813932389, -2.497482152820038], + [-44.30445692402966, -2.489139409718193], + [-44.29562786421462, -2.4853556337870986], + [-44.26595873420712, -2.4849539992998744], + [-44.26079519847188, -2.4814842742253265], + [-44.22729061823292, -2.47811987510428], + [-44.21595922072265, -2.471553588728358], + [-44.17940524575055, -2.460485751982728], + [-44.17309992352489, -2.458345450333107], + [-44.14926986069975, -2.4458578043079893], + [-44.13826624522005, -2.4351895904280094], + [-44.14095644500445, -2.431272097462686], + [-44.130822742372764, -2.428987113397005], + [-44.12917823021526, -2.425054429012864], + [-44.111712353030306, -2.419535652466748], + [-44.10965923598044, -2.4264629157352275], + [-44.11018172666366, -2.4174850203107363], + [-44.10285568161534, -2.4120530999436522], + [-44.09671468793268, -2.418437471357817], + [-44.09770693174491, -2.4130816714798042], + [-44.0921811860784, -2.4138980904445915], + [-44.089293482767054, -2.418768763665082], + [-44.0932641979579, -2.421818820156208], + [-44.082295823262164, -2.41909237362883], + [-44.080655924557846, -2.425808155376332], + [-44.07788073906539, -2.416806316987561], + [-44.08485018412664, -2.410504061543307], + [-44.094626497233655, -2.4076609185825837], + [-44.06798328857308, -2.4041183096344505], + [-44.030155642078206, -2.408104534791274], + [-44.02451781717767, -2.405692381742178], + [-44.02284677918242, -2.3982678951805436], + [-44.01895700613608, -2.4013602891667376], + [-44.02026185497351, -2.4073371799118006], + [-44.02743526994208, -2.41367829282602], + [-44.02090071981141, -2.4425213367710645], + [-44.02229043801243, -2.4502833387286924], + [-44.029513001602766, -2.452500364395153], + [-44.034906403110234, -2.4417333369028142], + [-44.03454739475945, -2.447682395374571], + [-44.040315936768124, -2.447984040217514], + [-44.04568554126533, -2.4359050176871766], + [-44.05337530281173, -2.430768221114857], + [-44.04534527780084, -2.439351076988592], + [-44.048260352315836, -2.44031674170972], + [-44.04662384777893, -2.44383260707248], + [-44.06006898805408, -2.4459998250866968], + [-44.06382221443081, -2.438221120715384], + [-44.068343834189015, -2.44067746568425], + [-44.07296212576107, -2.4363910379153366], + [-44.07178956837185, -2.441745041027203], + [-44.06551700158447, -2.443694844625931], + [-44.06565501606528, -2.449202640959503], + [-44.09535241561781, -2.4544097899196813], + [-44.10043830054151, -2.4630809904192006], + [-44.109298241302334, -2.465435180067616], + [-44.118816964172645, -2.4728947278813265], + [-44.096764734408154, -2.4639877499865834], + [-44.09298552684045, -2.459525458581344], + [-44.05909276746464, -2.461040041997728], + [-44.06382064106713, -2.466199461415426], + [-44.0773768756321, -2.465430868979326], + [-44.06504948317763, -2.471519316871052], + [-44.06225371298739, -2.4831410731512693], + [-44.056878821255665, -2.4662301223604923], + [-44.0326273294992, -2.465868898357735], + [-44.00925580612076, -2.465551237665145], + [-43.9771635903794, -2.466972829034812], + [-43.958831908706166, -2.4822788379550373], + [-43.978596672632854, -2.5461471716817057], + [-44.00003444304027, -2.5787173337112486], + [-43.98054509899676, -2.573121773563209], + [-43.96018134102251, -2.542357362349183], + [-43.9249735003481, -2.5108875693424038], + [-43.900125354174406, -2.4618890454447233], + [-43.88996221644155, -2.4311965419923465], + [-43.867072621666026, -2.4069677034107113], + [-43.85701232346368, -2.3896733154863297], + [-43.83103977742975, -2.3639651134823736], + [-43.78532663691598, -2.3402407994939622], + [-43.78029025319699, -2.348544320527802], + [-43.75693424532892, -2.363204087780015], + [-43.74780225284311, -2.373350022776899], + [-43.74858164007623, -2.368167565242025], + [-43.76107051849778, -2.3549946242588224], + [-43.728548961651015, -2.287977445062841], + [-43.7172363284188, -2.2783158901631357], + [-43.66757784335153, -2.2575706149312773], + [-43.63225597536917, -2.228465304724435], + [-43.61516695909795, -2.2193782825666637], + [-43.58743292981567, -2.2294695185668334], + [-43.56569797265812, -2.2470079923954356], + [-43.51800648481912, -2.3426408499013833], + [-43.50152466141271, -2.366850487007575], + [-43.49279026456605, -2.3731680235100203], + [-43.48608268290096, -2.361511006856186], + [-43.45311583725963, -2.3365390695845822], + [-43.436893631992604, -2.330938612447235], + [-43.40272248692269, -2.331022961248033], + [-43.38014048687373, -2.3251687435339554], + [-43.375899300884114, -2.3261507183326606], + [-43.372477772129805, -2.332510148953606], + [-43.3403713692391, -2.3398413442383093], + [-43.33499824284647, -2.335269399659474], + [-43.304479104627895, -2.3388712976240447], + [-43.18517297355075, -2.373536582662151], + [-43.16277917614045, -2.387602184861469], + [-43.10570998082207, -2.4091982044813602], + [-43.01521689373512, -2.455936435519338], + [-43.016258577795256, -2.4539229312931643], + [-42.98823210642584, -2.4681508318204473], + [-42.94798047082653, -2.482736501501472], + [-42.87095336807759, -2.5200491311535655], + [-42.79317226866053, -2.5600318251896046], + [-42.75820006725736, -2.5640749914801644], + [-42.77072842900237, -2.566003093604738], + [-42.761755417387825, -2.567869406342661], + [-42.75360641263461, -2.56654960940297], + [-42.74631507861808, -2.5638319529047493], + [-42.747503528850096, -2.5524586434436007], + [-42.75111877128585, -2.549357076904776], + [-42.75792423381169, -2.558751021837561], + [-42.76073532853479, -2.5561925469637794], + [-42.75564767046689, -2.546655426764448], + [-42.750449252121584, -2.5447032562469176], + [-42.73866989810224, -2.5670571324985643], + [-42.73976062869218, -2.5748657263944694], + [-42.735588228548416, -2.5801035845613156], + [-42.721454695175524, -2.589750079965524], + [-42.698260617438, -2.590977411591695], + [-42.691372385694535, -2.6138829281909497], + [-42.69848402442287, -2.623484435458701], + [-42.704282938136835, -2.640815217211011], + [-42.69317100973381, -2.6505369766043945], + [-42.699624329296476, -2.637987274451908], + [-42.685648287604806, -2.6193493642274825], + [-42.69348068900746, -2.586604906023333], + [-42.702009426520384, -2.577038267007005], + [-42.71666862440608, -2.580821119077653], + [-42.724783966780485, -2.578453292238654], + [-42.72503644696513, -2.5713034657756357], + [-42.71195144088085, -2.566346066571653], + [-42.71161836975741, -2.562129504817427], + [-42.71847229318571, -2.5612300052745987], + [-42.72457531567725, -2.555858129540185], + [-42.73895117186525, -2.559660577940923], + [-42.74161991282648, -2.555813792016944], + [-42.7378967056219, -2.5507531802840226], + [-42.71081844192756, -2.557313674168422], + [-42.64193629910289, -2.6268656549591514], + [-42.59811478693476, -2.660025549530448], + [-42.56775306570449, -2.677403268191662], + [-42.55058821579023, -2.681821373043437], + [-42.54628679606566, -2.68696035144666], + [-42.50428846163341, -2.6802232505998744], + [-42.483451231310305, -2.710127498072584], + [-42.479285511282335, -2.712463152251037], + [-42.484097902364276, -2.6925011929792535], + [-42.47416214268011, -2.6926702771048507], + [-42.43420157542988, -2.706847485762123], + [-42.37409090276473, -2.7106193657232747], + [-42.36474510891415, -2.7100269182783703], + [-42.329426260547365, -2.693313678935704], + [-42.324186647472544, -2.6838878308722904], + [-42.31648915016682, -2.685108932720997], + [-42.30380967252456, -2.6942060661395986], + [-42.27478646984841, -2.6947112175669967], + [-42.265252755799565, -2.690604164699371], + [-42.23861602205458, -2.6678211476612566], + [-42.228199482667854, -2.667130734751907], + [-42.220700080908756, -2.667588887388324], + [-42.22476109441628, -2.6891764633237614], + [-42.21286867764165, -2.701666997561979], + [-42.213311078721844, -2.6912587140769055], + [-42.221033039016554, -2.6906846862231917], + [-42.212086008951246, -2.684062500190224], + [-42.15783275724986, -2.695529350043079], + [-42.111752672510015, -2.6936274620627167], + [-42.0832809600843, -2.6870686901525485], + [-42.064304246059535, -2.6862157502215895], + [-42.050307990970616, -2.6892047132732517], + [-42.05072361997119, -2.6925613042620045], + [-42.059645511834205, -2.693525198680811], + [-42.057728483740576, -2.703483351127945], + [-42.030133019629545, -2.7444942265557755], + [-42.0254204203518, -2.7586960507593177], + [-42.02322010613753, -2.7578477311299388], + [-42.01685669116035, -2.7443636285510458], + [-42.0121447390651, -2.7320591050030765], + [-42.016645694298624, -2.723501496842042], + [-42.01594988547658, -2.7167337002578966], + [-42.004086116611695, -2.715049992107089], + [-41.9745358967676, -2.723001057176244], + [-41.96200059617379, -2.7225419594817595], + [-41.95464018669829, -2.718338849342642], + [-41.914563119784106, -2.721403619833166], + [-41.911085574713944, -2.718344904445765], + [-41.89480912409539, -2.717336501251908], + [-41.85947561390386, -2.7232838710126557], + [-41.823837872147834, -2.719322904055389], + [-41.82009177653773, -2.724289299863605], + [-41.82930457945538, -2.7221176306400485], + [-41.81411703611422, -2.7393445144849418], + [-41.824583839239416, -2.7562522648810384], + [-41.84905505197086, -2.773550967739855], + [-41.84680955416441, -2.8054662066707947], + [-41.841126853188065, -2.818570693103989], + [-41.842854846315916, -2.8235914569904756], + [-41.862693241185596, -2.831854208642994], + [-41.86088361225278, -2.854407900933201], + [-41.86497281424376, -2.878040080136218], + [-41.835752161714495, -2.9158858769035683], + [-41.80700862127781, -2.93803635973148], + [-41.79994995340653, -2.949847081793704], + [-41.79915155082431, -2.9518431244683225], + [-41.79662141349065, -2.959847605404187], + [-41.79685899887119, -2.968738760328458], + [-41.81041357971456, -2.980779409989038], + [-41.81740165448977, -2.99259299771974], + [-41.820223625741534, -3.0130050988110813], + [-41.82428381632644, -3.0245294196373567], + [-41.83075057905411, -3.0318100231099567], + [-41.86166302115594, -3.0471628290890176], + [-41.86739238203686, -3.0557403119909106], + [-41.86908910565322, -3.0603178261688817], + [-41.88056017258052, -3.0793122701533346], + [-41.89750867861884, -3.0964934169848153], + [-41.89978329918524, -3.097801577171768], + [-41.91383687943999, -3.0998636850167958], + [-41.922756618174226, -3.10796192760015], + [-41.92603352198667, -3.1155008270997513], + [-41.924569003144015, -3.1378180796709025], + [-41.93641553537569, -3.151559245245683], + [-41.93734235485298, -3.156091597372093], + [-41.93905816865083, -3.1873942405710394], + [-41.943285787459025, -3.1897856435291905], + [-41.956115110719054, -3.178519449523611], + [-41.964462570776014, -3.1790167117311863], + [-41.971588190218064, -3.1928069558305805], + [-41.97444646764238, -3.2132044420824912], + [-41.979029605796384, -3.218537356983406], + [-41.98333086135801, -3.223584003134287], + [-42.00023146701, -3.241118082107434], + [-42.01031343791391, -3.2463468663234516], + [-42.03043308972558, -3.2459110129131363], + [-42.045839391455715, -3.250839291124271], + [-42.06672261642511, -3.253233692254642], + [-42.0766493277495, -3.2584484242442584], + [-42.09263188670258, -3.2594405621076095], + [-42.11583516490125, -3.2623568491044845], + [-42.1316412600893, -3.2753678722122648], + [-42.13519022344375, -3.280941736699425], + [-42.13258351168927, -3.2900959461444303], + [-42.11076137565329, -3.291724586624484], + [-42.098628677323134, -3.296053765008444], + [-42.095871367921994, -3.3029262023372263], + [-42.10014205896343, -3.311417264078078], + [-42.113666308986986, -3.314537956049917], + [-42.12162761374749, -3.3201056930097295], + [-42.128443113040014, -3.343009196651744], + [-42.12520936460233, -3.3456232220322337], + [-42.12367205756507, -3.3525680023766107], + [-42.14005976258607, -3.3576238584864866], + [-42.145852225125445, -3.368817837438925], + [-42.152202753426714, -3.387504226859334], + [-42.188338929513016, -3.393011764121372], + [-42.19402767767007, -3.398480048647653], + [-42.198227338815386, -3.405593695215829], + [-42.19766026838605, -3.4243562674087182], + [-42.204384952654955, -3.4357960435873585], + [-42.20257333361988, -3.428844447541675], + [-42.21009775567398, -3.4363302718634174], + [-42.24293399720783, -3.433063853763279], + [-42.26776882133597, -3.442248895911919], + [-42.2727687677163, -3.444969377934243], + [-42.29252682505777, -3.4532871845328232], + [-42.298803854272066, -3.452967168726313], + [-42.32086895244491, -3.4360244735673313], + [-42.330815837306226, -3.4338891658205424], + [-42.354311043784186, -3.448727683987422], + [-42.36619618661039, -3.4527675686089183], + [-42.37378831524669, -3.452940404153089], + [-42.37718001915137, -3.4513675642693866], + [-42.39266851597155, -3.4476092373301754], + [-42.39242868703737, -3.460292666842184], + [-42.398907299019285, -3.4728772963157204], + [-42.409686498884035, -3.4752405934207293], + [-42.41588903243063, -3.4730200622959515], + [-42.417280037073766, -3.458303979292717], + [-42.42317133653342, -3.4542890107836213], + [-42.43228325229412, -3.4546365411749753], + [-42.448254724214046, -3.4783624673977975], + [-42.45870373224016, -3.4856863882790803], + [-42.46683519961807, -3.485425374520606], + [-42.47487150022689, -3.4833193852088993], + [-42.484781172020526, -3.4744411033008094], + [-42.487616425018054, -3.4678975940628014], + [-42.48734322879021, -3.4489392969379753], + [-42.49461283933203, -3.446919499987788], + [-42.50447889362358, -3.456209365476096], + [-42.506561854191794, -3.478841111344755], + [-42.52956074744445, -3.4925224403036768], + [-42.534980359133144, -3.500532314788344], + [-42.533862919620184, -3.5072853850064485], + [-42.532320002577116, -3.516185915592237], + [-42.53701521995825, -3.5239242094324084], + [-42.549362871105394, -3.5378884358132], + [-42.562469974081615, -3.5559594323039585], + [-42.56973412958245, -3.568468086199214], + [-42.591193031822534, -3.576666810536641], + [-42.59894540103096, -3.580295484907703], + [-42.60974018186139, -3.5861555391933586], + [-42.61374124186164, -3.5941949804521873], + [-42.61662398317759, -3.6127469480079797], + [-42.62312680277614, -3.6241435935332387], + [-42.6351789911339, -3.632415681844788], + [-42.642299432158076, -3.635898941640202], + [-42.675762425848674, -3.675623286894139], + [-42.67585263076838, -3.675820447290278], + [-42.682931630966, -3.6939994017312032], + [-42.68342273235249, -3.7011836418062463], + [-42.66887410569694, -3.729372100158913], + [-42.671865436782774, -3.746161495470751], + [-42.67865815429436, -3.7539740676527735], + [-42.68353348298378, -3.762308917169111], + [-42.68292276386335, -3.7698340539305146], + [-42.668706486772926, -3.7909326514445447], + [-42.670236855074336, -3.7936125436003696], + [-42.68576146078745, -3.807271077669687], + [-42.721176092738276, -3.875423132168579], + [-42.72221647117216, -3.8828394454604935], + [-42.72283351042975, -3.88724178922765], + [-42.72333334080263, -3.894056655703684], + [-42.72340857699212, -3.8950885617256183], + [-42.726212553283794, -3.910030428511324], + [-42.737161731979114, -3.924442630824961], + [-42.78318564673668, -3.955874984176859], + [-42.78460594653867, -3.957251562308953], + [-42.7888426789826, -3.9636154868979485], + [-42.79064776727572, -3.979141443848592], + [-42.797925798835294, -3.9966330138914676], + [-42.805764320417275, -3.9971641560266273], + [-42.81537788171273, -3.9877074984554453], + [-42.82181368257526, -3.990576697346185], + [-42.838017116609606, -4.028447941295681], + [-42.84259910341796, -4.036624596793539], + [-42.85577890514312, -4.077315778090522], + [-42.86294509046495, -4.092892512283495], + [-42.87684198235126, -4.110053456098171], + [-42.89593086069083, -4.116911503715377], + [-42.903067035744044, -4.124369510939725], + [-42.90415000247758, -4.132613722198701], + [-42.88754422078277, -4.14766331947616], + [-42.88818627972667, -4.155628598380623], + [-42.91124715868467, -4.156415401764321], + [-42.9265352313521, -4.156769471952614], + [-42.93514333120761, -4.161011333504407], + [-42.93618630883708, -4.161783943799835], + [-42.942074072476025, -4.167112429504451], + [-42.98201385395456, -4.214694793566149], + [-42.989203301160586, -4.2340750224618295], + [-42.9884347943048, -4.247220789473694], + [-42.98728289189814, -4.257042684273768], + [-42.986593794311055, -4.27334980628276], + [-42.98007032794427, -4.30503202501854], + [-42.967202576148416, -4.324498915284499], + [-42.96228827144617, -4.334544708250561], + [-42.96384984651072, -4.351559388624902], + [-42.96331904148356, -4.376436817316842], + [-42.95867762352815, -4.383252716632035], + [-42.95081385360234, -4.386858858936108], + [-42.93134868667774, -4.381782367514138], + [-42.903173934990555, -4.398681698849946], + [-42.89245823946373, -4.406750505385376], + [-42.87204590158972, -4.428582048820252], + [-42.87862275591521, -4.451896553986788], + [-42.87641444708093, -4.464068495853334], + [-42.85237028330808, -4.477325408392597], + [-42.84937110470296, -4.482623025083223], + [-42.851907602042175, -4.494665043666329], + [-42.859488854167374, -4.500895502887997], + [-42.860399755834905, -4.5152285331497], + [-42.874729533321464, -4.535647940354964], + [-42.867958961159445, -4.5596313399020465], + [-42.867231410636066, -4.56646502105245], + [-42.87670795103966, -4.586607151701564], + [-42.88311101106615, -4.59676806081638], + [-42.91301467464051, -4.6474569458465655], + [-42.92047177313569, -4.654802452824285], + [-42.93262151916749, -4.663340399102096], + [-42.951643766999275, -4.680620122077433], + [-42.953167917821496, -4.695539482583498], + [-42.94260854874091, -4.708582664418517], + [-42.923054011018024, -4.721696106721414], + [-42.92055049292472, -4.7372808669238635], + [-42.92152250813379, -4.741294053524307], + [-42.92567962607656, -4.749877428756273], + [-42.948477296473136, -4.766883775282853], + [-42.95032654784509, -4.7897821739031095], + [-42.94784176999632, -4.7979888104700175], + [-42.935028883357845, -4.8133238678162185], + [-42.89751843762012, -4.842715943299432], + [-42.89373090739459, -4.85823420673575], + [-42.894827236042836, -4.886076177081578], + [-42.890504773717474, -4.894815083352888], + [-42.890348368134106, -4.895001627388692], + [-42.87181587120048, -4.916550269432602], + [-42.867921689053276, -4.927723698589729], + [-42.85523274288592, -4.9353318291124575], + [-42.86136214092335, -4.973469427953267], + [-42.85958818454236, -4.982262527925099], + [-42.84153821868861, -5.03081144454354], + [-42.841788598385406, -5.055873159987396], + [-42.83595451548376, -5.07365186033072], + [-42.835655446183324, -5.074562797527923], + [-42.818619803693366, -5.093532775204366], + [-42.81317111430652, -5.130532884463373], + [-42.81273049608105, -5.133522543400851], + [-42.80298246162499, -5.150276276506113], + [-42.80181770424036, -5.166346754683051], + [-42.79795710741999, -5.183240947470056], + [-42.80003265234176, -5.199109266959853], + [-42.82750440457117, -5.233836830309052], + [-42.825928994976465, -5.250937951481062], + [-42.8170123976589, -5.272739696453033], + [-42.811375589011206, -5.28479344178078], + [-42.815048858032604, -5.314209173238926], + [-42.82669630043377, -5.348053479187072], + [-42.83321632647341, -5.353533874091966], + [-42.86490383292146, -5.368059968462494], + [-42.86971673829823, -5.377219477681715], + [-42.88361774951056, -5.390794528918068], + [-42.90031755242966, -5.38954891282824], + [-42.908010069237214, -5.392287034653186], + [-42.91234381466667, -5.396102436239641], + [-42.92304064914313, -5.428079262811921], + [-42.929517798300786, -5.437454837439508], + [-42.962486364987015, -5.446488237497885], + [-42.96879086638139, -5.452034526409873], + [-42.9735035123208, -5.480560468772352], + [-42.97399338795036, -5.484070865560254], + [-42.990706340312606, -5.499664132095199], + [-42.99526303655637, -5.506966941123465], + [-43.00528839807129, -5.541927950718129], + [-43.01133831820234, -5.548469327830893], + [-43.02439975592846, -5.560672284273715], + [-43.02743939015728, -5.57911620334119], + [-43.027451506119085, -5.579143959502564], + [-43.03455813046427, -5.592216375169193], + [-43.04881671291416, -5.591986608938891], + [-43.08065177775984, -5.599873202955196], + [-43.089406167103164, -5.604802155946812], + [-43.095086101119016, -5.615476229860916], + [-43.099009456580404, -5.633214153987043], + [-43.09109821579697, -5.633786553023228], + [-43.08426553295337, -5.640485317745127], + [-43.08398098226261, -5.659407676649334], + [-43.088183790718915, -5.6704799728082085], + [-43.08794982130735, -5.68348334594867], + [-43.076866637147106, -5.728942528504343], + [-43.08018482396274, -5.741948122205978], + [-43.09401529877731, -5.740892541832703], + [-43.09705649648169, -5.745774475774874], + [-43.10171564983218, -5.762375886908065], + [-43.09804348470159, -5.793146613376079], + [-43.0917073998681, -5.8064408883062795], + [-43.09592555668279, -5.834553913193914], + [-43.07695576990753, -5.864744431472433], + [-43.07656691564235, -5.867108030089997], + [-43.0994305276176, -5.899578253911705], + [-43.09943066086098, -5.906604883219439], + [-43.095374485448154, -5.91041983975568], + [-43.08767851293529, -5.921810911004113], + [-43.087682124430444, -5.945231067104207], + [-43.081751101803164, -5.961228674016394], + [-43.0735148815058, -5.974320084824657], + [-43.05546961048117, -5.986423576987357], + [-43.051263784647716, -5.989588819895002], + [-43.048632890932616, -6.000565439257995], + [-43.050289645228176, -6.015490374840798], + [-43.0562107657638, -6.0273531957157145], + [-43.07539978810709, -6.040302673218673], + [-43.07501184875266, -6.054732029188753], + [-43.06004415110671, -6.071536329013256], + [-43.04998850035793, -6.0997722378318], + [-43.034106883965755, -6.111371944322592], + [-43.01134479371884, -6.111037312101858], + [-42.994815402643695, -6.1159179532575285], + [-42.98244869340125, -6.12841448089581], + [-42.97939396945121, -6.138173563429339], + [-42.97546080948631, -6.16756654586961], + [-42.96859609881804, -6.178276757725179], + [-42.95187574114824, -6.187724889995093], + [-42.933912539692415, -6.193065744843624], + [-42.91664771266158, -6.213431141082644], + [-42.89327580734494, -6.226062009950981], + [-42.87720402442855, -6.225818676500769], + [-42.86793400955426, -6.233469700221767], + [-42.86255915881376, -6.239467127376498], + [-42.85522187713899, -6.253096429561667], + [-42.85528132137103, -6.253569955484396], + [-42.85547845424368, -6.267124865648497], + [-42.84701294029891, -6.282519219760662], + [-42.85070741777634, -6.307375423794882], + [-42.86020011694432, -6.33056995421191], + [-42.85472748615954, -6.333684413495579], + [-42.83709106616688, -6.325378097304144], + [-42.82934338203682, -6.3374471567097945], + [-42.83143157173164, -6.3424295539872295], + [-42.85237543133206, -6.35913402211268], + [-42.85653578790966, -6.370612199479043], + [-42.85773610858283, -6.39013240298775], + [-42.87776389264576, -6.417893403901366], + [-42.87723044705395, -6.4287918289045365], + [-42.86956740800298, -6.450362072288387], + [-42.87109523015965, -6.466278912126642], + [-42.86676750458797, -6.4824631630176555], + [-42.86892273196795, -6.487454749333578], + [-42.883011542622725, -6.494007852576732], + [-42.886698870606565, -6.505131568148734], + [-42.885122842700405, -6.508942050075352], + [-42.871236115551646, -6.512102841054321], + [-42.88945376101231, -6.538532883874026], + [-42.88461205426223, -6.560517334866031], + [-42.88392620125072, -6.568907026248331], + [-42.89122771249098, -6.582062192601928], + [-42.90411755929099, -6.597678770796997], + [-42.91723304891159, -6.637332588495377], + [-42.915403559876395, -6.646095792159931], + [-42.914344656083294, -6.653057290394303], + [-42.91978493355258, -6.67033553906069], + [-42.94972859624525, -6.704912327529612], + [-42.96207062538373, -6.709625555022369], + [-42.97404121683468, -6.714685911573027], + [-42.982601612037065, -6.72258604659272], + [-42.991371129557095, -6.745464376732272], + [-43.001077379476975, -6.754455913085753], + [-43.017329234862544, -6.760944982880864], + [-43.03340122947546, -6.762683023393432], + [-43.04687469377458, -6.761485881648116], + [-43.06579027894328, -6.749266737292358], + [-43.08212141902175, -6.748106863370138], + [-43.105120850954236, -6.770773665003534], + [-43.13082127387081, -6.781024562747794], + [-43.14603719954859, -6.783126557421525], + [-43.152677876290845, -6.782801444139678], + [-43.16874180873046, -6.769757578173321], + [-43.17845756371622, -6.766747585170262], + [-43.21514585758065, -6.763094298010579], + [-43.244703320831384, -6.766377187376418], + [-43.25123381310675, -6.770313031624416], + [-43.263197831988435, -6.785962748767316], + [-43.2787334929699, -6.7966415296004445], + [-43.302295075091834, -6.801245189470267], + [-43.34899245066324, -6.79810231780936], + [-43.364097479313386, -6.819335151420564], + [-43.387880423850895, -6.817682468824477], + [-43.39158943955538, -6.834387818636625], + [-43.39948704704686, -6.833274531530931], + [-43.40915338099486, -6.841685459040094], + [-43.42004563172693, -6.843859094971336], + [-43.44436776443082, -6.838636687505276], + [-43.45484392118609, -6.846230278914933], + [-43.48196186947149, -6.835122546623113], + [-43.489565897919974, -6.8198662876401945], + [-43.495302088783916, -6.809295874098886], + [-43.5068962480455, -6.800429946484558], + [-43.53732637569611, -6.792232130201771], + [-43.546286029828146, -6.783106570489052], + [-43.55140017105774, -6.759888740349221], + [-43.56134224669376, -6.749389835799994], + [-43.57156210430571, -6.7489802813972455], + [-43.57591228781943, -6.756875615210072], + [-43.584382554526286, -6.757508575414748], + [-43.59893116716325, -6.743715805963399], + [-43.62159964480825, -6.73503204796471], + [-43.6375179804836, -6.719586530346134], + [-43.6590068182403, -6.710355859967623], + [-43.65969726373551, -6.710135209448489], + [-43.67272760280114, -6.706293144790118], + [-43.698548429082415, -6.709575162527516], + [-43.707175497010915, -6.699841189969903], + [-43.71499652277814, -6.698757021629794], + [-43.728720111509034, -6.7048252894130975], + [-43.753827648516854, -6.703511319054009], + [-43.7607414471914, -6.702461152012411], + [-43.774849306113346, -6.714960144447055], + [-43.79086221556093, -6.702355547957844], + [-43.79747415079559, -6.7031809157083755], + [-43.800599612061426, -6.707706815156758], + [-43.80819191248823, -6.720296463500631], + [-43.82013209908977, -6.727300651726418], + [-43.853766619059435, -6.735635094918836], + [-43.87992362009868, -6.757805749655027], + [-43.91379976444698, -6.752684766111717], + [-43.930477605534044, -6.771076980044811], + [-43.9451079087546, -6.765533205087416], + [-43.94934716136016, -6.751767015517703], + [-43.96121496297539, -6.741921499544045], + [-43.970738638292694, -6.744244407806995], + [-43.987738751894256, -6.757300961661067], + [-44.03339816249968, -6.760426975218946], + [-44.037945573243974, -6.764356476204452], + [-44.04290124854594, -6.769457134076758], + [-44.05337549908195, -6.768331670597278], + [-44.057463999141014, -6.774464720749123], + [-44.06087312415379, -6.790769765296626], + [-44.059067239465506, -6.808460399062901], + [-44.06970165408057, -6.821400456446928], + [-44.07699196954241, -6.821148951189936], + [-44.08887872893243, -6.8033231648903625], + [-44.107158353523126, -6.802393206263992], + [-44.1162799628283, -6.805809503951155], + [-44.113044134630094, -6.823178365762407], + [-44.09871426017551, -6.839966549309452], + [-44.104405318090414, -6.856569892145988], + [-44.109015491634715, -6.85763495432938], + [-44.11418182489679, -6.8528930746031325], + [-44.115180306207144, -6.838375777107886], + [-44.11990254547892, -6.832811641190024], + [-44.12512822968333, -6.83560802995545], + [-44.13917688720924, -6.864130041366747], + [-44.16089982660419, -6.872823049831701], + [-44.17670871291466, -6.90587088793507], + [-44.173545312504224, -6.924362608703916], + [-44.176039319278026, -6.9279309914365275], + [-44.192876232141494, -6.926070818007628], + [-44.201430011971084, -6.932538632393075], + [-44.206014778681826, -6.963480862185908], + [-44.2359053589301, -6.998757847578236], + [-44.24887812602493, -6.998746584509042], + [-44.261984637905094, -6.998745721184846], + [-44.26479589822405, -7.021006480144833], + [-44.27489546900749, -7.031418420970246], + [-44.279000891408984, -7.046022963362323], + [-44.27446439038372, -7.07101781826973], + [-44.285048544165726, -7.084836985211572], + [-44.306203161504264, -7.117193494455649], + [-44.31590390788554, -7.118013474266791], + [-44.33305122344382, -7.108750075900945], + [-44.36382172139838, -7.121322141196436], + [-44.380039980075075, -7.119045947922785], + [-44.39159779357262, -7.124353714073372], + [-44.40684528949731, -7.131355242451551], + [-44.43770713339621, -7.1557494384146665], + [-44.46407079854431, -7.161685471852918], + [-44.486229434544164, -7.176452979877019], + [-44.4908967899557, -7.182840481216852], + [-44.500842378031, -7.18475420718502], + [-44.514684172200944, -7.196379817815722], + [-44.52284912529069, -7.219604384198271], + [-44.54107863577993, -7.226000035240447], + [-44.54862889227646, -7.2260081001824705], + [-44.564243821714385, -7.22758094814066], + [-44.567904699672184, -7.231636858482362], + [-44.572952440963746, -7.2482976312231955], + [-44.57975322555509, -7.257628270545761], + [-44.59559712339201, -7.269063160375136], + [-44.59611419522409, -7.276961787524125], + [-44.61813818057961, -7.309145088890513], + [-44.64027112017264, -7.314872513387293], + [-44.64621493000706, -7.3259157519922455], + [-44.656358088072544, -7.3270645721640735], + [-44.6633526676644, -7.3318283933927075], + [-44.67205400003584, -7.352485277898248], + [-44.67900281911306, -7.358959967779293], + [-44.687978140064445, -7.394554948379606], + [-44.700312196731744, -7.395420546446199], + [-44.70474451638111, -7.392663774374818], + [-44.71221898987752, -7.397902881159473], + [-44.72989223837539, -7.391062528512041], + [-44.74317869506181, -7.3617939085671535], + [-44.780955998532974, -7.378242829928155], + [-44.78676992982919, -7.371490568118816], + [-44.81673236532044, -7.361226826527921], + [-44.82248734457022, -7.377215835242241], + [-44.848488817500936, -7.386360998787228], + [-44.85405869126138, -7.396449277657119], + [-44.85267462179836, -7.402061449809742], + [-44.863008733280395, -7.411297235466326], + [-44.86894262598012, -7.422308124131458], + [-44.88267578337741, -7.427573457490627], + [-44.89663279079138, -7.424248427257262], + [-44.901395548714895, -7.426056287032696], + [-44.909871353282874, -7.443282273106353], + [-44.9202053260292, -7.454323797354514], + [-44.924442522595946, -7.470311641556972], + [-44.93211120498636, -7.472404017447007], + [-44.937227486219705, -7.470041255972239], + [-44.95745405389023, -7.475737990329807], + [-44.9691720948215, -7.483447674500573], + [-44.98356237716761, -7.482338629489455], + [-44.98879692683166, -7.482356796063307], + [-45.0044020809829, -7.496773016282672], + [-45.01859152787872, -7.49557787386451], + [-45.04718161428525, -7.51260302449249], + [-45.06937356127338, -7.503826913786026], + [-45.08512456877055, -7.502536821760051], + [-45.111772232260066, -7.510337101006203], + [-45.13715618708871, -7.521563586366064], + [-45.14656387702873, -7.520988011808977], + [-45.15456661647753, -7.512783704609283], + [-45.17442879610047, -7.528869470631488], + [-45.18358392859112, -7.543400990484774], + [-45.20427558747787, -7.5518004725095125], + [-45.217762920835554, -7.5679659530958885], + [-45.222683324978426, -7.566637037688611], + [-45.223045701495224, -7.56045939954482], + [-45.23125623489484, -7.549035781066111], + [-45.25064971285152, -7.55866483696111], + [-45.26136314542689, -7.5708723764417165], + [-45.28505371556122, -7.5663644355044894], + [-45.298534427392575, -7.574844666491795], + [-45.32307209095691, -7.574931569975932], + [-45.339762992938816, -7.580265336371262], + [-45.34325686685878, -7.593499013348864], + [-45.373638144634185, -7.618805136632795], + [-45.382004437310876, -7.613140208743327], + [-45.394072078868504, -7.613032064414723], + [-45.39865019270059, -7.623507090383388], + [-45.39902836812059, -7.640064983120782], + [-45.40407680639125, -7.644057850278225], + [-45.41567271725556, -7.645136652928261], + [-45.41427748775831, -7.654637014850891], + [-45.41781686597492, -7.658577966591604], + [-45.43274245290046, -7.661522093201671], + [-45.43706289819926, -7.66769510755544], + [-45.4352507980008, -7.675742239846126], + [-45.43993436370517, -7.678022472736967], + [-45.45599395457536, -7.670686432371342], + [-45.46073325397609, -7.677999532414467], + [-45.44914154719443, -7.682112849379919], + [-45.44940481607413, -7.6856935150209225], + [-45.457364918235626, -7.689683382673247], + [-45.468907443477335, -7.689151828097202], + [-45.46857195790038, -7.7141193778928185], + [-45.480116019957094, -7.714625098204368], + [-45.483628519467054, -7.719474216055665], + [-45.48689249267356, -7.729047496308367], + [-45.48150153202642, -7.74348316444655], + [-45.48223762427765, -7.751373930947383], + [-45.48665747776929, -7.750902197450967], + [-45.489877203014245, -7.746018507030064], + [-45.493537639271615, -7.747003324635488], + [-45.496487259502125, -7.750318975633806], + [-45.49184839616046, -7.756909416932274], + [-45.484696771106236, -7.763673554328203], + [-45.492825254385274, -7.777159289879362], + [-45.489940335619, -7.786554833389864], + [-45.493878875018765, -7.7886817414530825], + [-45.50063692153728, -7.785663036130526], + [-45.498880556487485, -7.798019219843286], + [-45.510901869347215, -7.802417184181592], + [-45.510040542241434, -7.820327755595141], + [-45.51577775122889, -7.834333784985446], + [-45.52639671838685, -7.840030624498855], + [-45.52496129652548, -7.8569524925799925], + [-45.536640903630406, -7.861582072486651], + [-45.54036892067168, -7.864718202126313], + [-45.5369443387639, -7.871992221906847], + [-45.52202934690097, -7.8831708222565], + [-45.52083894061617, -7.888098321945059], + [-45.53988539571586, -7.893374653064411], + [-45.543010735370494, -7.897728424206295], + [-45.524193349292716, -7.908445206345856], + [-45.52362424034029, -7.912211281839549], + [-45.53206927948603, -7.923227726059454], + [-45.53919008551549, -7.9194311500854715], + [-45.54387325338548, -7.920983568617721], + [-45.541363006164495, -7.92898155565741], + [-45.54457721297227, -7.939719765699601], + [-45.5474481239988, -7.947346357370887], + [-45.5561433163229, -7.954343088314088], + [-45.545073546924876, -7.960737995300496], + [-45.54867514377391, -7.969299316654666], + [-45.55684976161103, -7.973701856676917], + [-45.55938186925847, -7.981733623671917], + [-45.567079489128346, -7.997149076135777], + [-45.55117170996093, -8.00807050428398], + [-45.54982852430579, -8.01450987594462], + [-45.55415111688881, -8.017252349054763], + [-45.56294096037234, -8.014594808813776], + [-45.57628039254857, -8.029111428746617], + [-45.56142587798649, -8.047921670870464], + [-45.56772214520749, -8.053673601522274], + [-45.567287360880606, -8.071685587084366], + [-45.584761339227555, -8.100260762376625], + [-45.57510122218823, -8.113974743523444], + [-45.585427467251705, -8.129016513684773], + [-45.58658250400603, -8.13659374270332], + [-45.581460518534136, -8.156064666141258], + [-45.59127095284908, -8.17338610885238], + [-45.59954932637911, -8.175087478744908], + [-45.606907106525234, -8.185717202823188], + [-45.6111251787617, -8.187008481427885], + [-45.61285487262893, -8.19468940592165], + [-45.60813270444062, -8.2049724089636], + [-45.64875089811362, -8.23798835932297], + [-45.66154734026985, -8.250041054938391], + [-45.664553011374174, -8.288500350956765], + [-45.671302398612376, -8.294805003843365], + [-45.676555175945616, -8.304467558572991], + [-45.678998347281826, -8.32286271512071], + [-45.68749381725191, -8.336784677207486], + [-45.68752688921952, -8.355570795481556], + [-45.691603857238704, -8.363041027384156], + [-45.70348676958194, -8.368522613811967], + [-45.70033621881194, -8.381346998283602], + [-45.70615757682696, -8.388827946298127], + [-45.71144071115585, -8.3880463026448], + [-45.72155997089394, -8.394410970313237], + [-45.71922085806431, -8.4032424165624], + [-45.73106733321922, -8.412735320108306], + [-45.73319067886447, -8.422220285138257], + [-45.72854733107574, -8.42988037892211], + [-45.73466339363573, -8.436679856505505], + [-45.742521638192436, -8.447977565297526], + [-45.74157967178096, -8.468227489919501], + [-45.74217768208536, -8.48106585109973], + [-45.74599778907586, -8.493720270129833], + [-45.73845308548893, -8.501195512656697], + [-45.75681854321139, -8.527769767386205], + [-45.75335782167381, -8.539933270336464], + [-45.75545896314772, -8.544735790482646], + [-45.76079019385506, -8.549654744920767], + [-45.76135651196812, -8.561857531701193], + [-45.771400764391714, -8.573948858429882], + [-45.79376868967965, -8.584421031625448], + [-45.793931311467894, -8.592442214862775], + [-45.78144851352335, -8.59842186072894], + [-45.765627226353885, -8.609597870355955], + [-45.778121513293776, -8.617840570671166], + [-45.797464600269834, -8.613055053904997], + [-45.79866030322513, -8.620976401765093], + [-45.80382064149375, -8.621994244823716], + [-45.81553634522901, -8.633246803995164], + [-45.82102252452862, -8.649574755573182], + [-45.81896998791527, -8.654029802782263], + [-45.81160545682608, -8.656100665885148], + [-45.82096032457193, -8.665643173904414], + [-45.83993689520506, -8.715298557125244], + [-45.85329294062728, -8.709836914738343], + [-45.86460890561145, -8.715903757035269], + [-45.86331562391775, -8.729826319362772], + [-45.87437603101218, -8.731415919256477], + [-45.88933546516038, -8.739676401196508], + [-45.891602916375376, -8.76281179791913], + [-45.90761399003377, -8.758688797302817], + [-45.92800967882371, -8.777376019258353], + [-45.934993550799604, -8.77912348376381], + [-45.9383885263513, -8.78495974040484], + [-45.939161179869, -8.795869046811497], + [-45.953497119356626, -8.807296111132496], + [-45.960754389562155, -8.818900405123195], + [-45.95865882932115, -8.826197124518883], + [-45.9453486430453, -8.831491887757194], + [-45.94551769414346, -8.840397545114097], + [-45.94897120110221, -8.844964633533674], + [-45.957318535265074, -8.840538316749912], + [-45.95990261508835, -8.85102991947177], + [-45.9715353192285, -8.862425336941294], + [-45.972684980261896, -8.869151617148407], + [-45.967604868440574, -8.87591096613677], + [-45.98005488115481, -8.884090809154195], + [-45.982969533360915, -8.890068390480696], + [-45.97965841825828, -8.902853571272091], + [-45.98592158485999, -8.910441644910431], + [-45.985160954832494, -8.918539172242296], + [-45.99428239631673, -8.926885438250448], + [-45.99085384886281, -8.950290314280917], + [-45.98081231204029, -8.966835485794379], + [-45.96736872158518, -8.979003265644465], + [-45.95911272342173, -9.001758045307046], + [-45.943449501981156, -9.015335173728444], + [-45.945394360476605, -9.024997837375025], + [-45.93578482800877, -9.039193973776966], + [-45.9404067094034, -9.056194937317548], + [-45.9378656764417, -9.06369357831016], + [-45.92931917754649, -9.069748761586865], + [-45.92737381003887, -9.080749517932425], + [-45.932703141518324, -9.085142878330855], + [-45.931038779680485, -9.08874637971173], + [-45.9231179435924, -9.090332782150378], + [-45.92389216067831, -9.100214297985803], + [-45.927579752723055, -9.102685670425194], + [-45.92479847029289, -9.11241487804488], + [-45.92716384677038, -9.116662033394057], + [-45.92831407823602, -9.134791924309544], + [-45.913315360109415, -9.16756888873029], + [-45.905381369774176, -9.174981680885535], + [-45.89706272812468, -9.186537420697125], + [-45.89968525967887, -9.191452461648916], + [-45.90564447801884, -9.19119344944586], + [-45.89864749888335, -9.209697630628616], + [-45.90318524661162, -9.231576935767375], + [-45.89659441575096, -9.235362395981861], + [-45.901858594564715, -9.252172069111506], + [-45.89848810534625, -9.263172486630713], + [-45.903477361161286, -9.26847597359384], + [-45.895923519218016, -9.281546236984997], + [-45.897079606557654, -9.290407175035343], + [-45.90585200642553, -9.292074671969026], + [-45.90705156389293, -9.298035906835308], + [-45.900238648498785, -9.312975516813458], + [-45.902272450850006, -9.317891561884553], + [-45.89739861204792, -9.31903028607778], + [-45.896238855155026, -9.32799857481957], + [-45.890926171650776, -9.331555100683055], + [-45.89366313069693, -9.342201791047996], + [-45.88737156945194, -9.348829258425496], + [-45.87947937114813, -9.346229062845246], + [-45.87501308350035, -9.35383143286309], + [-45.863197065853385, -9.359175661751737], + [-45.847123759877746, -9.356397824718863], + [-45.82415134278689, -9.374967124301483], + [-45.8179733585841, -9.389405250631967], + [-45.79782848116218, -9.417273331920011], + [-45.802728482190155, -9.425320262656307], + [-45.80132173269813, -9.435071856360741], + [-45.7939832866723, -9.438442901247432], + [-45.797786741337006, -9.442500851633683], + [-45.793062886902625, -9.445915978296052], + [-45.794638167405594, -9.450366615939162], + [-45.787915560256074, -9.458440509842607], + [-45.795118834288786, -9.46053228388412], + [-45.78891525419486, -9.464634556430962], + [-45.78946985559826, -9.470316907058105], + [-45.78313073158956, -9.479797752768418], + [-45.78888718495135, -9.48259866072554], + [-45.79658129628253, -9.48752985522483], + [-45.79813929067293, -9.495621842110358], + [-45.810076004088856, -9.503905542463352], + [-45.821689753639596, -9.519457301670874], + [-45.8207569921814, -9.526411154122718], + [-45.8319278476249, -9.536813320649925], + [-45.82736983618268, -9.545964719487234], + [-45.841409408366154, -9.56232364296183], + [-45.84204806782637, -9.576441550927907], + [-45.833261358010624, -9.58792012346354], + [-45.83344164771207, -9.590838196532648], + [-45.83767663048628, -9.591685622147946], + [-45.83657225461953, -9.602309794930965], + [-45.825358609135826, -9.607508228486697], + [-45.81993971021316, -9.618379256158615], + [-45.81952360211199, -9.624988631182891], + [-45.82574911987159, -9.626518081385749], + [-45.82491099248222, -9.636777380715447], + [-45.83270414954541, -9.653239001008298], + [-45.82915192833816, -9.680153904436274], + [-45.83800522148847, -9.696478437202245], + [-45.828623085057224, -9.703467482108296], + [-45.831594294756336, -9.713420089461547], + [-45.82570986895719, -9.7169407585857], + [-45.82858271799218, -9.724827039874382], + [-45.820339568514406, -9.740146491725888], + [-45.82699887413851, -9.74651447096754], + [-45.820663297041385, -9.756825733136395], + [-45.82311053752132, -9.763272978629317], + [-45.82140631346773, -9.773148752709833], + [-45.8284656214886, -9.791723998842789], + [-45.83872105943907, -9.796920222904806], + [-45.84571651825104, -9.80858679858551], + [-45.85140612481669, -9.83883416075382], + [-45.85608876505554, -9.842160842482729], + [-45.85535523425898, -9.847940116618462], + [-45.86027541777772, -9.852102713231151], + [-45.86598443594103, -9.871669791111199], + [-45.861549616460216, -9.874464448502872], + [-45.86353204602481, -9.881443419598835], + [-45.85994927773225, -9.888086781922404], + [-45.858034984514575, -9.90753593065259], + [-45.852641998532256, -9.919817572819003], + [-45.84648174388508, -9.924568741287798], + [-45.842271156340914, -9.941579612979023], + [-45.84899471679018, -9.95631465187213], + [-45.84699954385587, -9.962304965598207], + [-45.85266353102473, -9.982190975037458], + [-45.85701799999074, -9.984777851694703], + [-45.85480384047621, -9.996358225494353], + [-45.865354999395926, -10.006999449816927], + [-45.876979366698855, -10.050992525921297], + [-45.874839460392465, -10.054987695512901], + [-45.880180431724604, -10.058615627001844], + [-45.87752041366265, -10.063802735487593], + [-45.8699206488077, -10.069313738943416], + [-45.870554844110714, -10.08020773450107], + [-45.87442868720941, -10.085239473123108], + [-45.878528122424754, -10.110321032317321], + [-45.88625919941616, -10.11408409041489], + [-45.897728896958, -10.136592539197673], + [-45.90000527307761, -10.152790245539872], + [-45.913490248134, -10.158408626629866], + [-45.91539425458661, -10.164186535652318], + [-45.92425073454771, -10.171179602270877], + [-45.93117099569974, -10.19084716903899], + [-45.93829357288769, -10.1909137285117], + [-45.94560250366624, -10.196463905891331], + [-45.945715129189985, -10.206841981988557], + [-45.95527815408684, -10.21846422756175], + [-45.94630153174074, -10.258850450705536], + [-45.973930233386604, -10.248391252139756], + [-45.99490224615954, -10.250130685946692], + [-46.004034365312855, -10.261679664201539], + [-46.01770700126735, -10.240413037741938], + [-46.02320370781709, -10.183401826455986], + [-46.02826120649296, -10.176890675322161], + [-46.03898967745036, -10.176755131915485], + [-46.05084145540439, -10.18169225487525], + [-46.099708426583895, -10.21292119513724], + [-46.12702191289651, -10.207246277866274], + [-46.14039515777699, -10.206777939291268], + [-46.165681260543955, -10.213164280882172], + [-46.19484390409085, -10.183004844937425], + [-46.20199177230385, -10.17402928990628], + [-46.210850966667415, -10.169755125426331], + [-46.219985471555006, -10.170807411050445], + [-46.24081582337789, -10.171905777489222], + [-46.27298553328989, -10.181635299658963], + [-46.301426143885905, -10.178345617587809], + [-46.31306307151906, -10.172843458668233], + [-46.32750714709111, -10.183713902362616], + [-46.32750736888542, -10.18371406927442], + [-46.33938239388996, -10.17762811495855], + [-46.34819288047684, -10.17311222422643], + [-46.36787047383417, -10.168833556180868], + [-46.38395012464817, -10.120161737327283], + [-46.420675917407195, -10.080898365639987], + [-46.443339405837854, -10.078157221476422], + [-46.457402076286186, -10.04730031289449], + [-46.45706590044895, -10.018035403649659], + [-46.477564755065345, -9.98832018915606], + [-46.47184657943827, -9.973673358449325], + [-46.47698910018774, -9.952767756267683], + [-46.47698910784185, -9.952767725147838], + [-46.46570494493391, -9.937076408313413], + [-46.46570484883248, -9.937076253795674], + [-46.46942834741476, -9.9332662345508], + [-46.4785925123305, -9.923888401426916], + [-46.47859242216533, -9.923887871309258], + [-46.4756405306158, -9.90653281987883], + [-46.470821177429904, -9.898066194201336], + [-46.47082108787466, -9.89806603201328], + [-46.47288052345421, -9.877459066664908], + [-46.491626254418115, -9.870088743231477], + [-46.49012047210498, -9.861169151023594], + [-46.49012045129271, -9.861169027742104], + [-46.480315033015316, -9.855274105449357], + [-46.48031484309968, -9.85527399127012], + [-46.49301407126602, -9.849177951430207], + [-46.49712077262441, -9.84369739826147], + [-46.49362520152642, -9.827442836540435], + [-46.5088512619483, -9.809280907308567], + [-46.50942980666381, -9.801385237434317], + [-46.51284849470685, -9.797521997356519], + [-46.542371926822675, -9.810330298508338], + [-46.56245904642511, -9.810707810136346], + [-46.57698664390695, -9.805196865578612], + [-46.579645856206724, -9.796363754551685], + [-46.570789030880086, -9.781122648000004], + [-46.57078894058147, -9.781122486239022], + [-46.56932264894074, -9.769742437040057], + [-46.57506749986662, -9.758593705213505], + [-46.59611954211317, -9.747269434104386], + [-46.63220944950348, -9.748894872053272], + [-46.64223864323761, -9.742742945749814], + [-46.64638531097881, -9.733718851324292], + [-46.64560104029757, -9.716605209233384], + [-46.65038463767176, -9.70455315804109], + [-46.65331819461803, -9.693460074655578], + [-46.65331821773332, -9.69345998724079], + [-46.61303866567337, -9.665826270782434], + [-46.61303864424712, -9.6658262560811], + [-46.60684508587926, -9.651905226772202], + [-46.60609972660905, -9.630181476944518], + [-46.592445024335746, -9.607755220369642], + [-46.592444932432116, -9.607755059661761], + [-46.59236957985783, -9.587218749893998], + [-46.59236957933292, -9.587218607356919], + [-46.5792870232595, -9.584094999388515], + [-46.536737570397484, -9.557127735998133], + [-46.536737439731155, -9.557127653172206], + [-46.54046100269998, -9.550180651092619], + [-46.55727084249749, -9.539045397028147], + [-46.55801883187544, -9.534197224076026], + [-46.57567043053831, -9.51756700054329], + [-46.57572218584706, -9.51246247332585], + [-46.57576468233324, -9.508268431285117], + [-46.559179772024535, -9.49301083145817], + [-46.559179670587945, -9.493010738134997], + [-46.560958019902756, -9.484051142401093], + [-46.57323760252616, -9.477779775687933], + [-46.59395833314278, -9.482707683280584], + [-46.60046138897828, -9.470473403936628], + [-46.613436446188786, -9.465298810446523], + [-46.627573121064515, -9.465740790921613], + [-46.6399867846809, -9.457738967157288], + [-46.64954601758363, -9.444108811494107], + [-46.64790609474012, -9.427162815944268], + [-46.643738624304206, -9.419632510736998], + [-46.633960871850704, -9.412480713265618], + [-46.632765439939874, -9.411606302174148], + [-46.63276525556164, -9.411606167308301], + [-46.651566176722696, -9.406084959940236], + [-46.66595744395571, -9.391936277773524], + [-46.6749047084651, -9.39080236834461], + [-46.696209333505884, -9.398605418197485], + [-46.72329323151341, -9.396381987409981], + [-46.73793149233166, -9.404869126306004], + [-46.74088433836276, -9.411731661831633], + [-46.74101672215559, -9.412039324120856], + [-46.74101674398763, -9.4120393344932], + [-46.74600944726473, -9.414411308230843], + [-46.76108699924779, -9.410180938800293], + [-46.76593425325842, -9.401912996908798], + [-46.758655525926585, -9.38123478332365], + [-46.7682961844014, -9.365521794777715], + [-46.779652344353686, -9.358518004768374], + [-46.78032436448547, -9.35715976817504], + [-46.78331975659296, -9.351105489351628], + [-46.78816486128682, -9.347358216603435], + [-46.799152658196064, -9.338859415552145], + [-46.80811968508288, -9.321727960915515], + [-46.813262326236035, -9.304778580255459], + [-46.81873274224892, -9.303454723048585], + [-46.83529327009744, -9.308235491221605], + [-46.84223759609507, -9.304462762469024], + [-46.847044147844294, -9.292439094278143], + [-46.84462520194674, -9.284191097077942], + [-46.84462515912311, -9.284190951059353], + [-46.832712322231885, -9.279607916674072], + [-46.83271224663007, -9.279607887587616], + [-46.83173240382429, -9.26873947782806], + [-46.83173239090111, -9.268739334490656], + [-46.822741136549496, -9.266341319518746], + [-46.818926700582544, -9.260074388239387], + [-46.818926608609395, -9.260074227532044], + [-46.82887561155178, -9.240106698625326], + [-46.82778843954501, -9.231118497559274], + [-46.82684791778544, -9.223343044984166], + [-46.81935557635025, -9.209372507648332], + [-46.81935342470184, -9.20936849536273], + [-46.81935333705663, -9.20936833206545], + [-46.82779372554382, -9.194286114657297], + [-46.83926779016449, -9.197602112787104], + [-46.850686437809, -9.19185599830807], + [-46.85234856017068, -9.186152936188202], + [-46.85211365481477, -9.18521851534696], + [-46.84779191998915, -9.168027171899679], + [-46.85168068867761, -9.15658725504714], + [-46.852401663456604, -9.154466157778186], + [-46.86109839272576, -9.146439540848842], + [-46.89165555697743, -9.140509105731935], + [-46.88876385008412, -9.128722108680366], + [-46.89353922111307, -9.122318398303129], + [-46.89880213817006, -9.125753944378088], + [-46.906715822073075, -9.135504978309966], + [-46.91765804968584, -9.132109538159112], + [-46.92628967243121, -9.134960292307989], + [-46.931783664479646, -9.128082128854633], + [-46.9314626913329, -9.12080538057228], + [-46.93146268630338, -9.120805266557918], + [-46.92617841527399, -9.11765959634942], + [-46.926178295502616, -9.117659525049591], + [-46.9302374525152, -9.105996880766398], + [-46.93023769162701, -9.105996193717907], + [-46.92353996913614, -9.097905575848806], + [-46.923539843825814, -9.097905424475165], + [-46.930570495733654, -9.095680087838279], + [-46.9305705222439, -9.095680079446945], + [-46.92829313045508, -9.092592471214813], + [-46.9309340052695, -9.087117895294803], + [-46.93151929967258, -9.085904532445488], + [-46.93151932264883, -9.085904484813586], + [-46.929076666443244, -9.083354106648823], + [-46.92684166672789, -9.084204673813991], + [-46.91895535256932, -9.087205781266055], + [-46.91292553943907, -9.083260849007438], + [-46.912130826230836, -9.08274090663939], + [-46.912130689900025, -9.08274081744454], + [-46.92332001152083, -9.065679249043182], + [-46.94026948710253, -9.063757509507283], + [-46.975907258597495, -9.081745789739948], + [-46.98550236242094, -9.076564122461987], + [-46.998682859407474, -9.076410157558374], + [-46.99868291483998, -9.076410321199027], + [-47.000405158523755, -9.081494480111079], + [-47.00040519219516, -9.081494483592278], + [-47.00732215168574, -9.082209544936667], + [-47.013597013669546, -9.078100301639255], + [-47.010186605857214, -9.070315750391533], + [-47.02354523961031, -9.076061616368186], + [-47.034355624880725, -9.069479867463313], + [-47.0456552824704, -9.068527096641068], + [-47.04840235832492, -9.071325388202313], + [-47.0597425333991, -9.067174782395691], + [-47.068714598629924, -9.06389056263815], + [-47.06803101765352, -9.056655634265045], + [-47.06797176616494, -9.056028542050692], + [-47.067971752835824, -9.056028400981392], + [-47.05770806055505, -9.052970425720117], + [-47.057707881447165, -9.052970372353894], + [-47.06171153476444, -9.048148997643514], + [-47.06171168859831, -9.048148812385625], + [-47.054235074217154, -9.048180613367396], + [-47.05423498823766, -9.04818061373221], + [-47.05407229968495, -9.033767419183967], + [-47.05407229850529, -9.03376731475028], + [-47.04346415207892, -9.026565010525688], + [-47.043464050641184, -9.02656494165326], + [-47.04398894579146, -9.022926085858641], + [-47.0487395244699, -9.021820313371979], + [-47.04860228383324, -9.015664052491282], + [-47.05646152025549, -9.018887424019619], + [-47.06848179695201, -9.012037508310181], + [-47.068481880432344, -9.012037460735042], + [-47.06207103291353, -9.007708397550784], + [-47.04401369247101, -9.00688258953151], + [-47.03885521211937, -9.000971642297253], + [-47.038855179744715, -9.000971605199556], + [-47.03240437938856, -8.98629460776825], + [-47.0356812036782, -8.978959262626365], + [-47.03568129712605, -8.978959053431247], + [-47.03176941116517, -8.979950573125917], + [-47.03177032918451, -8.98838265799688], + [-47.02154248024071, -8.988656665667541], + [-47.02154239241358, -8.98865666801923], + [-47.02154287112043, -8.980496015309473], + [-47.02154287112602, -8.980495911109664], + [-47.01535073910585, -8.976332599426588], + [-47.015350679683, -8.976332559472569], + [-47.01522918098928, -8.975804740357379], + [-47.01316059233918, -8.966818294059477], + [-47.01743693099385, -8.955191676869344], + [-47.01826064445043, -8.952951994564476], + [-47.01826069827558, -8.952951848212034], + [-47.01299143020854, -8.952323516323512], + [-47.012991391195484, -8.952323511671134], + [-47.0112363322355, -8.946621317091466], + [-46.997564700389134, -8.945731376751231], + [-46.99465851908382, -8.945542137967841], + [-46.99465840250213, -8.945542130376031], + [-46.9970411430248, -8.932650717460945], + [-46.99704133633247, -8.932649671519092], + [-46.98390506963949, -8.931918628176529], + [-46.98390500233015, -8.931918624429553], + [-46.98237172873801, -8.919988255854852], + [-46.98237171188884, -8.919988124754788], + [-46.97027031552619, -8.914507942365443], + [-46.970270180247866, -8.914507881101347], + [-46.975603498492234, -8.903052876340624], + [-46.98276949352965, -8.902955428381583], + [-46.98277019771428, -8.902955418798793], + [-46.98548975324157, -8.899779548790033], + [-46.98637918463241, -8.898740857077721], + [-46.98412578507274, -8.894874463712798], + [-46.98412528396835, -8.89487360391165], + [-46.987077130203936, -8.893497665430829], + [-46.988926640426484, -8.892635536433266], + [-46.988926286412855, -8.892635016390908], + [-46.98615709830927, -8.888567073578876], + [-46.986050386974696, -8.888410330162912], + [-46.98605029245971, -8.888410174203882], + [-46.993570472309635, -8.880256517727961], + [-46.99357052122377, -8.88025646469125], + [-46.97809610866097, -8.867785218985412], + [-46.965542846756236, -8.867683760111184], + [-46.95970994449772, -8.875466062994187], + [-46.95687227852871, -8.87450542306899], + [-46.955576205651404, -8.873236731683859], + [-46.94153969704477, -8.859496162892572], + [-46.92213591997066, -8.85743682602065], + [-46.9181288139367, -8.857011425701288], + [-46.91343355162109, -8.847842615585005], + [-46.91343346550687, -8.847842451527587], + [-46.918296605413296, -8.843692664772343], + [-46.918069427047826, -8.83971317743854], + [-46.91806936147928, -8.839712116687533], + [-46.914264829300826, -8.835236370315044], + [-46.90979237285433, -8.835292507354024], + [-46.90979234535231, -8.835292507699064], + [-46.90726728860228, -8.828441611638626], + [-46.913658957411066, -8.822835862727509], + [-46.9136590161702, -8.82283581119173], + [-46.902789068929735, -8.814552421573381], + [-46.902788963794684, -8.814552341453233], + [-46.90654351721102, -8.796572800284833], + [-46.906543526577956, -8.796572755424457], + [-46.90293588401032, -8.792178322543352], + [-46.902935791482605, -8.792178209835122], + [-46.90421307988237, -8.778575409014117], + [-46.907350449624154, -8.77117970135654], + [-46.911263961307604, -8.768788791595622], + [-46.909573989796, -8.764548642264785], + [-46.91729498102301, -8.762457334032177], + [-46.91793070962248, -8.751301474119474], + [-46.924850319868916, -8.74423749180874], + [-46.93122696908585, -8.726602879820225], + [-46.93122698377335, -8.726602839198545], + [-46.92858008822337, -8.72343744896083], + [-46.9225434221024, -8.727691690281103], + [-46.91723948359015, -8.726127750516165], + [-46.91401786896316, -8.722460842694497], + [-46.914017779682986, -8.722460741073023], + [-46.91435021051803, -8.708599417921361], + [-46.90169624936435, -8.695591952822502], + [-46.90060293403387, -8.69446805150738], + [-46.899133023071855, -8.693988512612968], + [-46.89073931327503, -8.691250062018906], + [-46.887155167464286, -8.686784115097007], + [-46.88693219942509, -8.686506287643281], + [-46.886932105488505, -8.686506170594328], + [-46.88915660953795, -8.669804936949586], + [-46.89621515397198, -8.665278850311262], + [-46.895678642677, -8.659757187056107], + [-46.90387759853782, -8.661728492772165], + [-46.90260086911712, -8.653233015696948], + [-46.90615924955688, -8.654357606525851], + [-46.908625123171255, -8.652925674300803], + [-46.91637689393347, -8.648424009661008], + [-46.916376617648886, -8.648423496837735], + [-46.91167817598848, -8.639702404583335], + [-46.91167808814194, -8.63970224143068], + [-46.91707743685261, -8.632927709796112], + [-46.917077461689026, -8.632927678633004], + [-46.91187687639514, -8.626833115678647], + [-46.91187678857816, -8.626833012764505], + [-46.91187767759176, -8.619413928865729], + [-46.91187767761128, -8.61941375975814], + [-46.90723954957862, -8.619727306647185], + [-46.90723944263297, -8.619727313876265], + [-46.907879582616, -8.61402725169539], + [-46.907879611941496, -8.614026990557244], + [-46.90501795482352, -8.61642040980906], + [-46.901881707127785, -8.61320458857001], + [-46.90188158742742, -8.613204465831533], + [-46.905349831655364, -8.608807104520967], + [-46.90535047927257, -8.608806283394758], + [-46.89776643116455, -8.606281807256018], + [-46.897766148727925, -8.606281713239404], + [-46.90384885647497, -8.60412056178982], + [-46.90384899510942, -8.604120512532198], + [-46.897711068762085, -8.601032878150681], + [-46.897710907103395, -8.601032796827974], + [-46.900941712957646, -8.597452398877271], + [-46.9062406635098, -8.595754196528553], + [-46.906597636602, -8.596042708873897], + [-46.909766415832436, -8.598603750912634], + [-46.909920190063104, -8.59800937516559], + [-46.91054204628917, -8.595605707619109], + [-46.916381697734316, -8.595794010098617], + [-46.91638176538249, -8.59579401227946], + [-46.91268368595268, -8.591860795757933], + [-46.912683580237925, -8.591860683320316], + [-46.914351715534686, -8.587133420135787], + [-46.9143518214811, -8.587133119891577], + [-46.90651900541601, -8.59267439056866], + [-46.9005984514447, -8.592294223058149], + [-46.90059842364432, -8.592294221272835], + [-46.900486810678046, -8.59199399270375], + [-46.89915751663712, -8.588418301609577], + [-46.899157188404764, -8.588417418688755], + [-46.90223876616818, -8.586291864302378], + [-46.90223885126228, -8.586291805606905], + [-46.89755000143374, -8.583458815645537], + [-46.89754990927232, -8.583458759961093], + [-46.89782142230094, -8.57675393201067], + [-46.89782143045077, -8.57675373073231], + [-46.893572376826555, -8.57844066666467], + [-46.89301891138216, -8.570570269867748], + [-46.89301889219955, -8.570569997101266], + [-46.892191983329376, -8.571891020741171], + [-46.88902002554465, -8.576958217275607], + [-46.88901968124496, -8.576957603382459], + [-46.88332612225742, -8.566805713947717], + [-46.88332603304306, -8.566805551574527], + [-46.87874432068768, -8.572539292628953], + [-46.87874423626265, -8.572539398279023], + [-46.87865697899446, -8.56559583138661], + [-46.87865697640737, -8.565595625584315], + [-46.87476954089399, -8.56754107225115], + [-46.8747693026151, -8.567541191494383], + [-46.876904748282264, -8.563533575683898], + [-46.87690481917529, -8.563533442635736], + [-46.87287901649863, -8.562769663549071], + [-46.87287888150183, -8.562769637936654], + [-46.87543664164644, -8.555315365529683], + [-46.875436714151995, -8.555315154213737], + [-46.86282655124901, -8.559103430078043], + [-46.85827283021352, -8.551553280258062], + [-46.8582727385204, -8.551553119436422], + [-46.86008209221663, -8.545355287565211], + [-46.86008213839527, -8.545355129378121], + [-46.85433908372411, -8.545142355510535], + [-46.8543390412194, -8.545142353935471], + [-46.85207118848172, -8.537051728315808], + [-46.852071150760985, -8.53705159374565], + [-46.84601472633926, -8.53359517285517], + [-46.84601460039724, -8.533595100978363], + [-46.84662325749342, -8.53213892311442], + [-46.85081901268797, -8.5258376011327], + [-46.85081908029026, -8.525837499602446], + [-46.843335626247345, -8.522870253403497], + [-46.843335430106, -8.522870175629862], + [-46.85214593851318, -8.51592789236923], + [-46.852145984206466, -8.515927856363472], + [-46.84691130599983, -8.510942249213818], + [-46.846911188982055, -8.510942137762322], + [-46.85098710513839, -8.503732012143045], + [-46.85098715812708, -8.503731918405224], + [-46.84632556839659, -8.501433889536628], + [-46.846325468714205, -8.50143384039536], + [-46.84715609313942, -8.493466244360427], + [-46.848248749452694, -8.492398857116246], + [-46.85102241009426, -8.489689287432299], + [-46.851022053108665, -8.48968900434892], + [-46.84888301188659, -8.48799277199235], + [-46.85107103448547, -8.476173838459774], + [-46.85107105913477, -8.476173705303223], + [-46.84952639896041, -8.475762039433906], + [-46.841104402569734, -8.473517392741853], + [-46.84179808041272, -8.465905653224414], + [-46.84179809991693, -8.465905439188822], + [-46.83511678014957, -8.469074813831563], + [-46.83231469493132, -8.464971107940514], + [-46.82843404610841, -8.47289817002729], + [-46.823467305260124, -8.474512694381884], + [-46.8234672696842, -8.474512705946127], + [-46.8207715016244, -8.46549340997881], + [-46.82077144438686, -8.465493218477022], + [-46.81551681640108, -8.470371618554179], + [-46.7965480432999, -8.446647377947068], + [-46.79654663732045, -8.446645619399954], + [-46.80196057432097, -8.444021772383644], + [-46.7954647956555, -8.429985720280236], + [-46.79546471294146, -8.4299855548332], + [-46.799593829378765, -8.422736555734753], + [-46.79872781038235, -8.41301274804569], + [-46.79870721652178, -8.412781527281059], + [-46.79870712516072, -8.412780501511529], + [-46.80681914633926, -8.398987545768778], + [-46.80681931826048, -8.398987253431219], + [-46.79498601626718, -8.404874609162002], + [-46.787001368252454, -8.399115893397541], + [-46.78700132627209, -8.399115863119686], + [-46.78571474477199, -8.395384747379877], + [-46.79171123179511, -8.38616678364935], + [-46.791711273133146, -8.386166720100718], + [-46.78663753763783, -8.382253901906802], + [-46.78652641423929, -8.37519305296543], + [-46.7865148919275, -8.37446113496094], + [-46.786514891495, -8.37446110748849], + [-46.7864360585365, -8.374338731682734], + [-46.782417503556005, -8.368100487321085], + [-46.7824173536687, -8.36810025463954], + [-46.77687532385378, -8.368448486031522], + [-46.76119959336404, -8.37845578337731], + [-46.75265635977123, -8.374154971234097], + [-46.74068348900588, -8.37697045594647], + [-46.73435288534744, -8.385404632256442], + [-46.72663692748704, -8.383157854466551], + [-46.72663689202835, -8.383157844141147], + [-46.72163303645026, -8.368541667042765], + [-46.72163299041496, -8.368541532573184], + [-46.71271563128639, -8.362423057096798], + [-46.70679582377676, -8.351548927824254], + [-46.70679573562119, -8.351548764944637], + [-46.68540786508909, -8.34451789058686], + [-46.68489844191823, -8.34395023180135], + [-46.678265459586, -8.33655885393708], + [-46.66269030652245, -8.33368143263942], + [-46.65965241911591, -8.333120130580978], + [-46.64129376222536, -8.321516986534231], + [-46.63070484294356, -8.318775760797461], + [-46.61555948020328, -8.327484090492563], + [-46.60679646997224, -8.32845172274572], + [-46.59058944432926, -8.328235612941826], + [-46.57732085088745, -8.322352757597915], + [-46.55879850945098, -8.325257817280296], + [-46.54365378900178, -8.318939516017815], + [-46.533850811019924, -8.300596298032183], + [-46.53385072354135, -8.30059613485765], + [-46.52245966825271, -8.293593645147626], + [-46.50757633828721, -8.270786843925436], + [-46.50757624937728, -8.270786707677328], + [-46.50909658744005, -8.237416783268529], + [-46.50248530732073, -8.220184078262172], + [-46.50248525990841, -8.220183954677593], + [-46.48995642701215, -8.207911623240436], + [-46.48995637234069, -8.207911569686642], + [-46.48754837322871, -8.19992728100116], + [-46.49851032173601, -8.185385028009735], + [-46.50875870718953, -8.183594420625514], + [-46.51465391535559, -8.175950861964502], + [-46.51462376956317, -8.16661648757481], + [-46.51462376946088, -8.166616455960915], + [-46.50857669090008, -8.15754496029472], + [-46.508576634001614, -8.157544874937521], + [-46.491958948816006, -8.115646873052153], + [-46.489154964647035, -8.097740596501025], + [-46.48915495625217, -8.097740542893305], + [-46.482375499183235, -8.088388545181195], + [-46.47040342147443, -8.084759831694047], + [-46.47040338433835, -8.084759820437618], + [-46.46692312239055, -8.07431516264818], + [-46.466604960461616, -8.066212169839256], + [-46.47758825257207, -8.053154248768823], + [-46.47976002967034, -8.042805170846059], + [-46.47695050732717, -8.012233498993782], + [-46.486377970418964, -8.003122692582224], + [-46.48576607600763, -7.995263434761487], + [-46.490296950076484, -7.983259694366518], + [-46.51871545346501, -7.959093752251457], + [-46.54381148124088, -7.948707620799225], + [-46.54944174187458, -7.949518953616809], + [-46.55771506876067, -7.938677467737986], + [-46.55775535646551, -7.937394909625815], + [-46.55810856839749, -7.926147046676406], + [-46.561390593652796, -7.921841138226134], + [-46.56237485177488, -7.920549791363548], + [-46.572296925732715, -7.914466574165831], + [-46.57602114956982, -7.916284844299335], + [-46.581381296153786, -7.908491882122135], + [-46.59082853847013, -7.906235560307639], + [-46.597020631303764, -7.899358981977858], + [-46.6147434729387, -7.896820981848348], + [-46.63129807962865, -7.8987494050018645], + [-46.64074799665333, -7.9065473141433005], + [-46.65062420822382, -7.908908562582067], + [-46.65689715022239, -7.904013277750026], + [-46.66055174568938, -7.900578376226576], + [-46.6681515331549, -7.904105214890121], + [-46.66815161774728, -7.9041053794596285], + [-46.6732195069096, -7.9144516732845585], + [-46.6854350268456, -7.912735398852581], + [-46.68543567143267, -7.912735626793274], + [-46.69198833834397, -7.915052745753741], + [-46.69698811117169, -7.916820666331518], + [-46.70843947483162, -7.909942504896643], + [-46.713016978370504, -7.914168497603234], + [-46.72207288082499, -7.914934432945701], + [-46.722072967221735, -7.914934596693963], + [-46.726519692517265, -7.923542798027937], + [-46.732848498316265, -7.918946415989097], + [-46.737450159093065, -7.924539225514761], + [-46.73745025006183, -7.924539336076015], + [-46.73937277748832, -7.923858077441626], + [-46.741986621632364, -7.922931825780765], + [-46.74669287746676, -7.926717768367436], + [-46.75452507841536, -7.923127301579185], + [-46.75615921366052, -7.922378143101271], + [-46.75615994961706, -7.922377805704396], + [-46.76319143845255, -7.938480558248593], + [-46.76332393642114, -7.938783960692323], + [-46.76740828459058, -7.938694694830484], + [-46.76825415420156, -7.935623538755787], + [-46.77385231856913, -7.9431280068576715], + [-46.781772323817165, -7.945081498537775], + [-46.78177236296639, -7.945081649554593], + [-46.78340513149547, -7.951380003015435], + [-46.78605026016579, -7.951762633252343], + [-46.786581026163354, -7.951839409068832], + [-46.78921273376506, -7.947127152171991], + [-46.78921281901074, -7.947127316492457], + [-46.79233232338242, -7.953378650033122], + [-46.80013638116895, -7.955439521022661], + [-46.80201479650665, -7.949967527977306], + [-46.80651927690077, -7.951223140673772], + [-46.809776950157364, -7.952297589559634], + [-46.82440756013858, -7.95941896880699], + [-46.83133937995511, -7.963234199714367], + [-46.83812915673442, -7.95955360920046], + [-46.83812921128387, -7.959553790299964], + [-46.839930621782564, -7.965534307270127], + [-46.83993066001522, -7.965534305529727], + [-46.84392703550879, -7.965352364203891], + [-46.850768790906244, -7.957383549546623], + [-46.861654748531926, -7.961005774952443], + [-46.861654837528285, -7.961005937374094], + [-46.86629754768821, -7.969341667372445], + [-46.87110351001238, -7.961731460639277], + [-46.869396785691336, -7.956430623479661], + [-46.87274343402224, -7.95557849751187], + [-46.88265565845911, -7.964093901771417], + [-46.882655658465644, -7.964093989324814], + [-46.88265628275907, -7.973146942507867], + [-46.88265637063293, -7.97314696778835], + [-46.88929526277235, -7.975056859613972], + [-46.88929535326836, -7.975057021152565], + [-46.89619870107519, -7.986922035465649], + [-46.89783143428208, -7.986922456753717], + [-46.905184355378935, -7.986924280545087], + [-46.907947688044345, -7.9826832129275065], + [-46.9093782713048, -7.980487541896278], + [-46.91827254275587, -7.981777629211374], + [-46.92282088635484, -7.985409206037426], + [-46.922820874313615, -7.985409289298696], + [-46.92138321236459, -7.995349592889687], + [-46.92138451167717, -7.995347664937353], + [-46.92365518536633, -7.991978333425418], + [-46.941379451390596, -7.9968936321758], + [-46.941379536965066, -7.99689379639934], + [-46.94563248317115, -8.005343144052832], + [-46.94947926083381, -8.008431558220492], + [-46.953384688822396, -8.006658537121671], + [-46.95338474356596, -8.006658715239853], + [-46.95643307185889, -8.016576967548865], + [-46.95429757287802, -8.026213596246176], + [-46.954297679774584, -8.026213673610117], + [-46.96607176663391, -8.034734643672078], + [-46.96607172103812, -8.034734710127555], + [-46.9628000529543, -8.039503041048823], + [-46.962800214201835, -8.039503097227428], + [-46.98023863892083, -8.04557824999192], + [-46.980238691185754, -8.045578400647544], + [-46.98195846105187, -8.050535687593872], + [-46.981958488868074, -8.050535677442236], + [-46.98921657708199, -8.047886709837321], + [-46.98921665410278, -8.047886876888247], + [-46.9974127983224, -8.067243688395944], + [-47.001241906764925, -8.066348981426382], + [-47.0020537366685, -8.057645005459264], + [-47.008523572177495, -8.062192006833381], + [-47.01452057462771, -8.057647682405488], + [-47.020800595350615, -8.06047489381933], + [-47.02455203591062, -8.0567578004756], + [-47.043486965255795, -8.053604339631898], + [-47.04485513621112, -8.046887605858096], + [-47.05351398514321, -8.04172432676901], + [-47.050967302243805, -8.035828779478285], + [-47.058995956732424, -8.027853359642492], + [-47.06062779292608, -8.010886653148319], + [-47.06491281509426, -8.002712508027852], + [-47.07193737013673, -8.000040875008155], + [-47.07215828158898, -7.99653757131771], + [-47.08366495166414, -7.988405726033333], + [-47.10646447399024, -7.990812878898671], + [-47.106464522491976, -7.990812884018142], + [-47.09777485642423, -7.98010271621702], + [-47.097774746068716, -7.9801025801988885], + [-47.106680004395955, -7.96933948515443], + [-47.10668006829621, -7.96933940791941], + [-47.10168761407456, -7.966517552121603], + [-47.10168747663096, -7.966517474434095], + [-47.10478447566045, -7.961172207288577], + [-47.10472470958575, -7.961030185385449], + [-47.101999247917924, -7.954553637218117], + [-47.10243808380349, -7.95439690686843], + [-47.10574811967296, -7.953214704880077], + [-47.112268617047555, -7.959203453915821], + [-47.113618258254256, -7.956755237233073], + [-47.11590891809792, -7.952599919822764], + [-47.11590876634495, -7.9525996474551], + [-47.10721564130902, -7.936996794769636], + [-47.10721555223389, -7.936996632308393], + [-47.11649176529182, -7.938917059956047], + [-47.12151851713305, -7.921981958029879], + [-47.1255181514244, -7.925160602827473], + [-47.13171044462363, -7.922006880639451], + [-47.14107895718319, -7.925293000614131], + [-47.14526970412439, -7.9128842313384276], + [-47.145269756453175, -7.9128840763846675], + [-47.14394617836089, -7.9033251746277635], + [-47.14277259413098, -7.894849812244269], + [-47.152774844668684, -7.895060058666803], + [-47.16080495840961, -7.887825949864842], + [-47.16344041522294, -7.879588149680235], + [-47.17527330980578, -7.871092978132619], + [-47.180023015694395, -7.8618561712794985], + [-47.18002304593263, -7.861856112472621], + [-47.17452534391896, -7.857008939572147], + [-47.17452519092139, -7.857008804676585], + [-47.179217229468634, -7.854974943894152], + [-47.18266343665824, -7.858513049199454], + [-47.18713347011088, -7.857795640088645], + [-47.18723755139465, -7.8431249731094805], + [-47.19649449328285, -7.849303214435611], + [-47.20096122305864, -7.845057867498027], + [-47.20052486032503, -7.840344064483402], + [-47.20743652956669, -7.839809075620446], + [-47.206602839407196, -7.83465059930871], + [-47.21496614579264, -7.835571099877149], + [-47.22354726141873, -7.826710882832638], + [-47.23455302101553, -7.823930517664984], + [-47.23455303973387, -7.82393051293589], + [-47.22965614900204, -7.816667720168227], + [-47.22965602283885, -7.816667533047756], + [-47.23426715323836, -7.819577199072412], + [-47.23918720063133, -7.813874105784321], + [-47.24499220775437, -7.815519197274552], + [-47.246939283023295, -7.809270309086582], + [-47.24693931710426, -7.809270199705008], + [-47.23513976117531, -7.804082983447563], + [-47.23583846943915, -7.803898518887611], + [-47.247047579136094, -7.800939022296882], + [-47.247048286887384, -7.80093883542012], + [-47.24088389201382, -7.794043195899872], + [-47.24088377678669, -7.7940430670020735], + [-47.24743518598975, -7.785808329112184], + [-47.24543644714515, -7.781548382253537], + [-47.245436363830315, -7.781548216984217], + [-47.25502120416801, -7.765160803396701], + [-47.25502124347265, -7.765160736192218], + [-47.2462160512922, -7.75853300236405], + [-47.24621573546148, -7.758532764630764], + [-47.255658643011, -7.759273388187452], + [-47.258942651156296, -7.755927267132837], + [-47.26674482564413, -7.761296230763895], + [-47.26133205282693, -7.75177139289329], + [-47.26133196302623, -7.751771230821303], + [-47.261323532681814, -7.750757240094642], + [-47.261243775508014, -7.7411708337254], + [-47.2612437720475, -7.741170418051074], + [-47.273881221275275, -7.745273931354138], + [-47.270883236579714, -7.734843777013631], + [-47.273543009232924, -7.731042007935555], + [-47.28243532651535, -7.7349607292284235], + [-47.293348418141456, -7.727922826688286], + [-47.301490258056226, -7.73486709085851], + [-47.301493881582296, -7.7348701813419085], + [-47.31193914530542, -7.731720222733695], + [-47.312412695235956, -7.731577407019989], + [-47.315088389610345, -7.7175539404404105], + [-47.31508841134797, -7.717553826503606], + [-47.305907264020504, -7.713447282601599], + [-47.30590708156216, -7.713447200989354], + [-47.31404000397374, -7.7064286059733424], + [-47.31602207655641, -7.701512610855362], + [-47.316022113251314, -7.701512519841755], + [-47.31049352342793, -7.698320649245097], + [-47.30593637630812, -7.703665616129123], + [-47.30266344580171, -7.702023159819415], + [-47.30266335900395, -7.7020231162612545], + [-47.30252404143817, -7.6890672514357865], + [-47.331501225718036, -7.685231292466019], + [-47.333522410685156, -7.678076011479225], + [-47.33096888507667, -7.674083386762157], + [-47.330968790515094, -7.674083230472283], + [-47.33770524428818, -7.667038222969806], + [-47.337705323349965, -7.667038140284058], + [-47.32955218676346, -7.6631183214306215], + [-47.32018815113666, -7.6648147652333884], + [-47.31419221410897, -7.660638910523855], + [-47.31419204816405, -7.660638794950225], + [-47.317708924869315, -7.658494472278868], + [-47.32338415792996, -7.655034018046197], + [-47.3330600458817, -7.640976944262523], + [-47.33576925432977, -7.63704073198868], + [-47.34849281924568, -7.63135764771598], + [-47.35162870425087, -7.621027043340256], + [-47.35979706398957, -7.616155797521168], + [-47.372110740027566, -7.621329938955411], + [-47.37211076528042, -7.62133007558779], + [-47.372859360123726, -7.625380415804259], + [-47.36474423948251, -7.635467682537376], + [-47.35382727143032, -7.640330003329148], + [-47.35219403188711, -7.646854832777155], + [-47.35219414163819, -7.646854909363237], + [-47.365081570374464, -7.655847676522652], + [-47.38188917187402, -7.654073936990841], + [-47.38727237478813, -7.635146712393185], + [-47.38221818624416, -7.619005735014829], + [-47.38207882107828, -7.599982880583964], + [-47.40416206877128, -7.587160973192107], + [-47.39781089215809, -7.572759731672341], + [-47.40565965454886, -7.563880005153861], + [-47.42238777175281, -7.562829026716867], + [-47.439443410759324, -7.5562448660815855], + [-47.439443478167384, -7.556244840057384], + [-47.42987018670163, -7.547693930011348], + [-47.425332434804034, -7.541806897658425], + [-47.42533235186509, -7.54180679005676], + [-47.42432802470629, -7.531118942042936], + [-47.427633022463624, -7.525777395065088], + [-47.438163173317164, -7.521543195942089], + [-47.46131284917907, -7.519309676454828], + [-47.46131294126381, -7.519309837127361], + [-47.46863437661321, -7.531382087926891], + [-47.47519591763982, -7.533378770884499], + [-47.480100405745866, -7.525937578632724], + [-47.48026460744365, -7.492144252131893], + [-47.497940339574264, -7.479199156296736], + [-47.4995729637919, -7.453742561646211], + [-47.50469369737101, -7.4366476883033314], + [-47.52027189493977, -7.432102383782578], + [-47.55036530854716, -7.439590821173941], + [-47.56324880829282, -7.4500157856428695], + [-47.59092165511452, -7.439528184342015], + [-47.57747191015807, -7.416078605412807], + [-47.5774718199467, -7.416078443514138], + [-47.56388887368346, -7.406838772070931], + [-47.50980041502169, -7.385587462656753], + [-47.49824130628322, -7.378744757364839], + [-47.483114224320744, -7.361233964499474], + [-47.48311416784631, -7.361233899123526], + [-47.48043431075665, -7.35298412632462], + [-47.4788145739825, -7.345945701809225], + [-47.47818621072272, -7.336767778678364], + [-47.4829018746636, -7.322360795703633], + [-47.485318156912285, -7.317654696181714], + [-47.503828683879014, -7.2901086138396565], + [-47.531804559135686, -7.269311584568725], + [-47.54288135904483, -7.26539748049498], + [-47.58751711284881, -7.2637320404062935], + [-47.60010587880372, -7.266747819287022], + [-47.60735589480657, -7.272135997678261], + [-47.622972572512445, -7.296455948449905], + [-47.634107797876126, -7.304824517381927], + [-47.639146397424945, -7.305450593541608], + [-47.64769496059271, -7.3041366031047765], + [-47.653913100470646, -7.29821649050209], + [-47.67451311334739, -7.259842463948922], + [-47.6909918119189, -7.2383120758598976], + [-47.735052524998494, -7.218913306574344], + [-47.73596607948122, -7.218135552943726], + [-47.73836126457191, -7.2150774674317795], + [-47.74363504788197, -7.208343834260035], + [-47.74722808070817, -7.198392729654771], + [-47.75043245658444, -7.189517380470408], + [-47.74790780344159, -7.167805398353468], + [-47.747907796201275, -7.167805336089774], + [-47.73843712531823, -7.156035255899059], + [-47.7047172727789, -7.135872711569814], + [-47.694045971111215, -7.136977497325906], + [-47.67516926525468, -7.147725969709854], + [-47.66035812522662, -7.15138171502664], + [-47.64443938114049, -7.143625248101914], + [-47.62617061360464, -7.11859477846075], + [-47.626170544753435, -7.118594684122033], + [-47.618413276346914, -7.0911742586800335], + [-47.61841325278478, -7.091174175391815], + [-47.594673519944244, -7.06193492786647], + [-47.574766146686144, -7.050351645168033], + [-47.557834738496084, -7.031254734813959], + [-47.54492135642302, -7.012786761304289], + [-47.5449212975076, -7.012786677044447], + [-47.535491974198834, -6.987494738950791], + [-47.52830090083252, -6.973418562433157], + [-47.52830081456162, -6.973418398463291], + [-47.529555507330166, -6.946026989877954], + [-47.507609743605315, -6.907204269629804], + [-47.507609653888245, -6.90720410750997], + [-47.50518833965155, -6.893700481172107], + [-47.50702435854673, -6.87202410339417], + [-47.52047675493444, -6.840484566896287], + [-47.52741456280174, -6.837817610444656], + [-47.52963106437947, -6.831403077301136], + [-47.51668741217402, -6.7902740813934015], + [-47.516687400061116, -6.790274054112418], + [-47.493641097932745, -6.751283805641761], + [-47.49364100668593, -6.751283644481961], + [-47.49717381416059, -6.721036613863045], + [-47.496202775281546, -6.697173719755376], + [-47.493273975860454, -6.689757011607468], + [-47.49862995495204, -6.671245570922049], + [-47.46321808552681, -6.607090049893747], + [-47.463217996620784, -6.607089887350065], + [-47.46322141221161, -6.607029172852889], + [-47.46444590691318, -6.5852574227917815], + [-47.46102604553052, -6.562138337031739], + [-47.46102375661416, -6.562122864000559], + [-47.45992277449409, -6.559329491995882], + [-47.45879981014245, -6.549647849643404], + [-47.45648424200414, -6.538288638406447], + [-47.45648423354801, -6.538288596924563], + [-47.43419227136939, -6.504393770643174], + [-47.425234915708124, -6.4973762496105065], + [-47.41632959151998, -6.483890892113501], + [-47.416329499962906, -6.483890738888234], + [-47.43419275043526, -6.431202745586917], + [-47.43188615230609, -6.425482448362017], + [-47.41992570058749, -6.401637006322554], + [-47.41224345861292, -6.376463146198892], + [-47.409709872781896, -6.366365941203112], + [-47.410984958058116, -6.35452287188691], + [-47.41181101922741, -6.3446209664227595], + [-47.41082910272518, -6.334791463269394], + [-47.40399218096126, -6.320898540838784], + [-47.40399209594243, -6.320898376389476], + [-47.40339120977915, -6.319964597066931], + [-47.40339117826665, -6.319964541348873], + [-47.3772237996362, -6.26678268428446], + [-47.377223714626204, -6.266782519844191], + [-47.380734137363206, -6.250036857269923], + [-47.3853563675282, -6.230405725636718], + [-47.394661178387885, -6.219350869006486], + [-47.42319193499753, -6.160200247154332], + [-47.433094963732366, -6.112147649588786], + [-47.434465874659914, -6.093129404215051], + [-47.43021796582701, -6.0683668431061255], + [-47.428030294103095, -6.039238673463212], + [-47.43873591732092, -6.0128118185312545], + [-47.44797249734639, -5.992997970333081], + [-47.430063156899045, -5.935349438520859], + [-47.42980434527822, -5.911505884877923], + [-47.4328582498717, -5.893909473488088], + [-47.431052156201936, -5.869224790960361], + [-47.43784456560188, -5.857883535097998], + [-47.44033771258855, -5.842620711269617], + [-47.44226831221332, -5.83080008459845], + [-47.465288787071614, -5.7827020664667925], + [-47.47045091002991, -5.771914407128376], + [-47.483695459088906, -5.756419782682886], + [-47.49336332659479, -5.730543855075377], + [-47.49308312067263, -5.710052538977419], + [-47.48182937140403, -5.678637685905518], + [-47.473693747146065, -5.661993943477377], + [-47.47369366229474, -5.661993778992257], + [-47.477219149348855, -5.635054671197632], + [-47.47967835861513, -5.621723438824458], + [-47.48020402262244, -5.618812292805565], + [-47.484391498844694, -5.59561899384034], + [-47.483360280204046, -5.567859817352107], + [-47.483250766771555, -5.564912990456974], + [-47.49403931768775, -5.539769114490663], + [-47.500109814555564, -5.5256189808499165], + [-47.523595140046524, -5.500532079503578], + [-47.55535858126832, -5.465749382769819], + [-47.564139210243276, -5.463150532183461], + [-47.580498060902556, -5.470030716373044], + [-47.60245381874757, -5.465362041432082], + [-47.61860855849491, -5.459739385897856], + [-47.656169521872606, -5.43014749383353], + [-47.66676200845352, -5.421801063470116], + [-47.6667627134204, -5.421800507967345], + [-47.68575381868845, -5.412732884446351], + [-47.736539806932484, -5.383709951058939], + [-47.744301980304826, -5.3801465015259815], + [-47.76832580296042, -5.378216298333424], + [-47.79297728490784, -5.384725539440797], + [-47.82752863665241, -5.386602180729776], + [-47.84374698982013, -5.3762227695878835], + [-47.8676116188233, -5.342829927709291], + [-47.86667469399029, -5.30532775488179], + [-47.87039968819362, -5.280520442065644], + [-47.87291126816074, -5.2723722006290465], + [-47.88555917733404, -5.260714279498816], + [-47.937336081020526, -5.239589600766892], + [-48.004045839105515, -5.234634332439381], + [-48.01464622703928, -5.238044176742808], + [-48.05233891917005, -5.2675730745212235], + [-48.07925140571146, -5.275078520700606], + [-48.10713848611044, -5.2671774353651495], + [-48.17852998862339, -5.260790122956727], + [-48.19028115453628, -5.253411747787317], + [-48.20648524562184, -5.248998085613477], + [-48.224937440433045, -5.235542829880466], + [-48.23491232251016, -5.2283207945405215], + [-48.273003107981204, -5.215979298348555], + [-48.29338840267608, -5.204062212148037], + [-48.32088944889034, -5.201401824230889], + [-48.35615539203442, -5.171865802018797], + [-48.363894641482275, -5.16839468035708], + [-48.38230785164224, -5.172476770559576], + [-48.46613878267481, -5.185459799132841], + [-48.48630611250081, -5.193833895304907], + [-48.52297858775535, -5.193342354553366], + [-48.539001225486615, -5.20492805193493], + [-48.561056874085665, -5.230213278881733], + [-48.561056874665006, -5.230213340566549], + [-48.56110050903954, -5.234859997211827], + [-48.56853377251618, -5.262808889621414], + [-48.56855575900219, -5.2829467703689845], + [-48.56855584799871, -5.282946933082347], + [-48.58411556637031, -5.311309613344998], + [-48.60611535435839, -5.336514696954681], + [-48.61233288473528, -5.338443524626623], + [-48.6300842464463, -5.332971770329207], + [-48.63864165519711, -5.320022827447689], + [-48.651445972966734, -5.31145179920923], + [-48.67820263022207, -5.306078927218023], + [-48.679420863726676, -5.305834263277278], + [-48.67942167623582, -5.305834104211942], + [-48.6922466392233, -5.311677175093494], + [-48.699192233317234, -5.320137155782016], + [-48.69919224910204, -5.320137229667252], + [-48.70444899062925, -5.344742915189367], + [-48.70861846380259, -5.350783646661554], + [-48.70878072818301, -5.3510187333488375], + [-48.715024202631625, -5.353126409558236], + [-48.730417278656795, -5.348008367363148], + [-48.740906077643835, -5.3528321471888844], + [-48.75513234703966, -5.34917934711297], + [-48.7551324371386, -5.349179323977437], + [-48.586487214381634, -5.217440817879178], + [-48.549086469974036, -5.1883502542643045], + [-48.46305713052049, -5.120289340189858], + [-48.45192014997463, -5.112259750496704], + [-48.43413957635835, -5.096249588596411], + [-48.43413947662546, -5.096249498791421], + [-48.436774588864544, -5.078686215690901], + [-48.436774601189086, -5.0786861335404545], + [-48.43153735068184, -5.0745097870208244], + [-48.42728360700031, -5.075311254225928], + [-48.4216675293167, -5.083281746728548], + [-48.419031000570754, -5.085725230107516], + [-48.39625808465771, -5.070390032275811], + [-48.21236348567615, -4.924947657513606], + [-48.19461729771797, -4.911030797648945], + [-48.092215326471255, -4.830729872213554], + [-48.05835097787079, -4.804174557058199], + [-48.02536541250423, -4.7783101846910965], + [-47.81614272948108, -4.614743097417071], + [-47.80511816175929, -4.597384235172553], + [-47.805118067871106, -4.597384075879111], + [-47.792559050979, -4.58642542129333], + [-47.78628149474895, -4.586079845303752], + [-47.770859916728675, -4.593329133807038], + [-47.754030617768485, -4.59083816972153], + [-47.750780993857155, -4.600505579428755], + [-47.742246512328855, -4.598633984044905], + [-47.724803123116935, -4.60643266817281], + [-47.71527883898409, -4.603056232755894], + [-47.71175298433043, -4.603285956747431], + [-47.71191584465412, -4.60627993516502], + [-47.70155568417512, -4.604796365858413], + [-47.701367037444484, -4.604830033820262], + [-47.67996572053861, -4.608649157551591], + [-47.66335077018951, -4.597441549514785], + [-47.663014874548004, -4.597214966408178], + [-47.637667181590885, -4.57141490393659], + [-47.611932966642996, -4.557372447729656], + [-47.607960530848295, -4.548742712487494], + [-47.6079604478776, -4.5487425472838385], + [-47.5814690340659, -4.51995010590289], + [-47.58146899042594, -4.519950058471118], + [-47.563715761067485, -4.4745722232493055], + [-47.56371571110743, -4.474572095550008], + [-47.534421692539006, -4.448215786195477], + [-47.531128487754565, -4.443882643445006], + [-47.51877063345774, -4.427429220571563], + [-47.502780242759634, -4.4037213078817254], + [-47.50278016631367, -4.403721194538877], + [-47.49890887177747, -4.3881658773530665], + [-47.49890884866435, -4.388165784483177], + [-47.48815153193838, -4.376741119051383], + [-47.488151443654566, -4.376741025289814], + [-47.4880955753532, -4.36718191188827], + [-47.48809557487217, -4.367181829651971], + [-47.476306996267375, -4.3564541640813355], + [-47.47630687055728, -4.356454049683233], + [-47.482685865234096, -4.348166188250197], + [-47.48268589039693, -4.348166155556789], + [-47.47642938995025, -4.341032964840795], + [-47.476429289394495, -4.3410328501940745], + [-47.47953346667873, -4.328514326481287], + [-47.479533481381246, -4.328514267186335], + [-47.47173923702468, -4.32073471747986], + [-47.47173912281041, -4.320734603480119], + [-47.474726480117894, -4.315058258876082], + [-47.47472652908292, -4.315058165835063], + [-47.455813377721185, -4.305516093997904], + [-47.442041905666755, -4.287439734897768], + [-47.43323059629452, -4.284297191349385], + [-47.432377535833666, -4.284859934924727], + [-47.42963932588809, -4.286666249361701], + [-47.42963529556094, -4.286668197728824], + [-47.42925044441664, -4.2868542447950935], + [-47.42925034758716, -4.286854291604932], + [-47.42966399011339, -4.2762150867839726], + [-47.429663997105976, -4.2762149069001465], + [-47.41751256662023, -4.2784255125166], + [-47.41718757300807, -4.278006321603454], + [-47.41137101741379, -4.270503840368298], + [-47.40266593024377, -4.2682514121228285], + [-47.40106946521419, -4.2678383194725], + [-47.38863156789697, -4.24989393375958], + [-47.378919728386855, -4.244978830424309], + [-47.37176127370532, -4.245600455089829], + [-47.371761140758984, -4.245600466633932], + [-47.37448861763086, -4.234876964387042], + [-47.37448863380468, -4.234876900794693], + [-47.371795496185165, -4.232337853501578], + [-47.37179535431384, -4.232337719747222], + [-47.37626402037684, -4.229925970432523], + [-47.379145595902905, -4.22115121411304], + [-47.37914562121997, -4.221151137017263], + [-47.37436238397629, -4.217569287552], + [-47.374361727164526, -4.217569558562238], + [-47.37245007452309, -4.218358330545313], + [-47.37033921552891, -4.219229287947322], + [-47.370338922659634, -4.219229408786867], + [-47.371064202739376, -4.218223371817893], + [-47.373532926095834, -4.21479895998724], + [-47.36814695282626, -4.209870061894411], + [-47.36814684433444, -4.209869962609163], + [-47.3691809908397, -4.206570307434721], + [-47.36918103360671, -4.206570170976416], + [-47.3654501830321, -4.2058325147745075], + [-47.36545006528322, -4.205832491493188], + [-47.36577988464766, -4.20425322599299], + [-47.367877102198094, -4.194210698759636], + [-47.360260195288646, -4.191386778937238], + [-47.36026005026703, -4.191386725170764], + [-47.36582183630803, -4.180654799836519], + [-47.365821896962025, -4.180654682796108], + [-47.35313087341294, -4.176796429781114], + [-47.34725935110706, -4.183782351696686], + [-47.3402286093187, -4.177060491585173], + [-47.340228498693435, -4.177060385819369], + [-47.34371023763845, -4.168062008145597], + [-47.34718082680332, -4.157257829351387], + [-47.34252998808719, -4.148130106780509], + [-47.34252990173739, -4.148129943137228], + [-47.34974546952359, -4.141888850108671], + [-47.34344006547549, -4.1276719529771855], + [-47.35063707924314, -4.115285137779633], + [-47.3471506355279, -4.108703298237517], + [-47.34715054785733, -4.108703135252618], + [-47.34305100232218, -4.097100255682969], + [-47.34305095142523, -4.097100111630841], + [-47.33140072168987, -4.091439779572884], + [-47.331400619979654, -4.091439730155675], + [-47.333219504940196, -4.075623757069778], + [-47.331262869717385, -4.069485215240973], + [-47.331262820236006, -4.0694850600038555], + [-47.32521904526052, -4.068378003961669], + [-47.32478485443657, -4.06542152003114], + [-47.324406499916556, -4.062845272850036], + [-47.31941803838703, -4.047790092893127], + [-47.3121709785849, -4.051166351766604], + [-47.31003399581638, -4.0521619046347945], + [-47.31034449150031, -4.056657377219034], + [-47.306324725362394, -4.059216505450492], + [-47.303400753612905, -4.053754771822867], + [-47.303400665583446, -4.053754609043259], + [-47.293104862109516, -4.052285598242856], + [-47.293104760423624, -4.0522855837336795], + [-47.29390010373539, -4.043216115490091], + [-47.2939002020579, -4.043214994219401], + [-47.286747743289126, -4.045634152268464], + [-47.28674768118379, -4.045634173273766], + [-47.28537845979706, -4.036196641837626], + [-47.285378438784356, -4.036196497008661], + [-47.27709490662113, -4.034046386706195], + [-47.277094812335, -4.034046362232455], + [-47.27723402757486, -4.030599647796613], + [-47.277234035272194, -4.030599457215267], + [-47.27516656731414, -4.031203975102141], + [-47.26739869772453, -4.03347519440651], + [-47.267302730897434, -4.02590673663317], + [-47.267302729505595, -4.025906626901212], + [-47.24466946178365, -4.012255713480365], + [-47.23892371411283, -3.9986454087940997], + [-47.2226500039328, -4.001316343313815], + [-47.222649950164474, -4.0013163521379544], + [-47.22248435945575, -4.000504759100045], + [-47.219971116828376, -3.9881871268871034], + [-47.204468612009464, -3.988330047160893], + [-47.204468553511695, -3.9883300476996473], + [-47.20173370759361, -3.973583714806453], + [-47.20173367176582, -3.973583521628033], + [-47.19650553404139, -3.9766289114410216], + [-47.19650564882897, -3.9766290586235438], + [-47.199730365663896, -3.980763837242567], + [-47.19973035067522, -3.980763866649581], + [-47.19735785594248, -3.9854185189365015], + [-47.19025068417184, -3.9837193486677043], + [-47.18754380764314, -3.9795834769646916], + [-47.18754371098447, -3.97958332033522], + [-47.193442896446314, -3.975323192490452], + [-47.192802753024516, -3.968857669048754], + [-47.18154877992703, -3.967068097310264], + [-47.17842173724269, -3.9609120562167766], + [-47.17842165100511, -3.9609118925846403], + [-47.18027520318728, -3.9561578913434334], + [-47.18027527062066, -3.956158108287682], + [-47.181373557202804, -3.959691486699349], + [-47.18137358684972, -3.959691459037972], + [-47.183545960840114, -3.9576645610259535], + [-47.183727100678574, -3.947659756536317], + [-47.18372710131612, -3.947659721310766], + [-47.17961577778897, -3.941809886902616], + [-47.17506166333365, -3.945055709081138], + [-47.16925069361301, -3.9434538424283585], + [-47.16925060970184, -3.9434538192969333], + [-47.169083268376674, -3.938603441784061], + [-47.17580063068059, -3.9298950551561056], + [-47.17580073758615, -3.9298949165604], + [-47.170095937048146, -3.929201939646111], + [-47.17009576783213, -3.929201919090479], + [-47.173140680824474, -3.92383809393912], + [-47.17314074098805, -3.923837987955243], + [-47.1484910755341, -3.9145035280436837], + [-47.14849098164488, -3.9145034924880266], + [-47.148705408028555, -3.8969195354099426], + [-47.14870541034137, -3.896919345585766], + [-47.13891367365068, -3.89987486388733], + [-47.13892514241115, -3.9043213995154913], + [-47.13822315895204, -3.9038096675376805], + [-47.132433021619676, -3.899588750861975], + [-47.13354286717466, -3.8873576219704873], + [-47.13701172903932, -3.8856303212798915], + [-47.13253564881336, -3.878668598544011], + [-47.12943104852841, -3.880899848982267], + [-47.12943099251558, -3.8808998892378797], + [-47.128746041553754, -3.8766573832412097], + [-47.12874601284814, -3.8766572054438337], + [-47.122010511971006, -3.878392186283874], + [-47.12201064227978, -3.878392337907652], + [-47.12461057662903, -3.8814175473321977], + [-47.12461054409545, -3.881417568582261], + [-47.12212579525397, -3.883040530934854], + [-47.12056784175766, -3.882046315044335], + [-47.11376547818637, -3.8777053211343993], + [-47.113764911286054, -3.8777049593593484], + [-47.10661993945698, -3.8809564860915304], + [-47.104756886464884, -3.873297171851325], + [-47.10185411863889, -3.8613637359090744], + [-47.09372806733634, -3.8609196555496745], + [-47.09200030138606, -3.8608252253152435], + [-47.08873830737661, -3.861597858676244], + [-47.08873827275183, -3.8615978668773727], + [-47.084349667582636, -3.847763172482075], + [-47.08434962037829, -3.8477630236761704], + [-47.0794207334724, -3.846158395160672], + [-47.07942055866883, -3.846158338251921], + [-47.080531453986104, -3.844798285075572], + [-47.08397013715195, -3.8405882892658925], + [-47.080381236509105, -3.8360498367547695], + [-47.080381131256964, -3.836049703654787], + [-47.081638596448, -3.8338272527911523], + [-47.08667970101852, -3.824917304018673], + [-47.08667885001518, -3.824917528853642], + [-47.08481037636532, -3.825411176489798], + [-47.07895914542629, -3.8269570241047206], + [-47.0789590854863, -3.826957039940102], + [-47.07801236602374, -3.8210977276555846], + [-47.07801234646312, -3.8210976065953077], + [-47.07261305043126, -3.8178770717522412], + [-47.07261290238378, -3.817876983445453], + [-47.07510482039511, -3.8147681922046264], + [-47.07824907936593, -3.8116987391761117], + [-47.0782491168483, -3.811698702585174], + [-47.07440401800926, -3.8078675673788442], + [-47.07552058562836, -3.8049154697952465], + [-47.075743244175996, -3.804326775613836], + [-47.07574329856726, -3.8043266318067306], + [-47.068067992586904, -3.8033342332826634], + [-47.06759098654277, -3.8028964490832773], + [-47.063235615976986, -3.798899187417467], + [-47.06404570517349, -3.7906103390742314], + [-47.06404570946552, -3.7906102951555063], + [-47.059210956592246, -3.7844572023685163], + [-47.05921084805129, -3.7844570642303745], + [-47.064689303653935, -3.77777384672091], + [-47.0646893832618, -3.777773749604737], + [-47.056128188717516, -3.7744585096231984], + [-47.056128031066194, -3.774458448573596], + [-47.05964148794674, -3.769296572852109], + [-47.059641571485784, -3.7692964501171375], + [-47.05528521955616, -3.768295913236754], + [-47.055285004426565, -3.768295863826832], + [-47.06526878663789, -3.759378601111173], + [-47.06526882056395, -3.7593785708084417], + [-47.053367376751076, -3.74657144734057], + [-47.05336724693772, -3.746571307647852], + [-47.05926974830576, -3.74332318409376], + [-47.05926981057503, -3.7433231498267174], + [-47.05308888754628, -3.738082824376626], + [-47.05308875342899, -3.7380827106685226], + [-47.06084507114553, -3.729777587245218], + [-47.05714578238341, -3.721701206952409], + [-47.05714570484105, -3.7217010481471227], + [-47.04811981737834, -3.7188921590315047], + [-47.048119640025526, -3.7188921038379026], + [-47.050549040526555, -3.715955802816501], + [-47.0462744808, -3.7054547126427244], + [-47.050769580491746, -3.6989758499362853], + [-47.04877641116006, -3.6889747561907376], + [-47.05452077590123, -3.6850199915246935], + [-47.04963014556365, -3.677047014854533], + [-47.04963005289877, -3.6770468549932107], + [-47.04076094821791, -3.6743386950956585], + [-47.03701447677624, -3.667980868616929], + [-47.037014385477605, -3.6679807078526863], + [-47.04888598529293, -3.668660699146396], + [-47.052709066594794, -3.6631943532223836], + [-47.05270910667046, -3.6631942959202717], + [-47.04590643824757, -3.6576512959503535], + [-47.04590629568749, -3.6576511797880467], + [-47.05087210941585, -3.653394719293015], + [-47.056198831611816, -3.6544301042200913], + [-47.05704242847906, -3.654594076374135], + [-47.05704241244061, -3.6545940502890963], + [-47.05354872180582, -3.6489118864508243], + [-47.053505225829284, -3.6488411532393195], + [-47.05350513308045, -3.648840993435674], + [-47.05557370042396, -3.646714175845693], + [-47.055573889253786, -3.6467139816973027], + [-47.04749056734431, -3.6476419971053975], + [-47.040070984374445, -3.6441215135535963], + [-47.04007081100467, -3.6441214312915795], + [-47.04606993735627, -3.638448155030577], + [-47.04476310993539, -3.6333982609016466], + [-47.05233493379389, -3.6354017285461753], + [-47.05233496744013, -3.6354017374486975], + [-47.04526397350302, -3.6255138962520768], + [-47.045263878676934, -3.6255137445791417], + [-47.04861951292542, -3.6196440805232832], + [-47.04861956438115, -3.6196439905157183], + [-47.04042038136207, -3.6154186124114203], + [-47.04042032258966, -3.615418582123331], + [-47.038170220772066, -3.6055185788786184], + [-47.038170185317654, -3.6055184228886965], + [-47.03058652511289, -3.604625747457442], + [-47.03058638708723, -3.6046257312098713], + [-47.03210411405969, -3.6001264625974025], + [-47.03210415649843, -3.600126336786929], + [-47.0274265770928, -3.5988268053024037], + [-47.02742634297546, -3.5988267402591094], + [-47.0412402138242, -3.5895867102916137], + [-47.04124039117264, -3.5895865916601295], + [-47.0319632106498, -3.5880655252876994], + [-47.03196300188327, -3.5880654910578613], + [-47.03467714020814, -3.585169503924486], + [-47.03467720869269, -3.5851694308508524], + [-47.027233319462724, -3.5809477292129173], + [-47.02723317942732, -3.5809476497932486], + [-47.028761388940396, -3.578477994472971], + [-47.03091153670677, -3.580630811332884], + [-47.035608546504484, -3.5731067559970975], + [-47.03626224467764, -3.57319558426126], + [-47.03951896079022, -3.5736381193780122], + [-47.03951796834539, -3.5736372363771833], + [-47.03449884230615, -3.5691715939242137], + [-47.03398937512957, -3.568718306909527], + [-47.03398924307215, -3.568718189414358], + [-47.03824839239484, -3.5643129155637734], + [-47.03746075114094, -3.5613500609320097], + [-47.03746071010342, -3.5613499065625063], + [-47.03056041568846, -3.560209913375614], + [-47.018461765086684, -3.5655541326858256], + [-47.01627203923036, -3.5630538208015863], + [-47.0162719438076, -3.56305371184416], + [-47.01815566667801, -3.5479448659286805], + [-47.01815568113797, -3.547944749938693], + [-47.01370556222187, -3.545950756811088], + [-47.01014723273077, -3.5486937967551335], + [-47.01014674812196, -3.5486941703263493], + [-47.004427774916515, -3.5425384399046127], + [-47.004001715361845, -3.542079841212366], + [-47.00400163150837, -3.5420797509547897], + [-47.00344789324402, -3.5339897709816266], + [-47.003447877951345, -3.53398954757346], + [-46.996511841084946, -3.5397613218279287], + [-46.98935619856074, -3.5318092420114127], + [-46.97729926531394, -3.530399065268976], + [-46.9772991413921, -3.530399050774382], + [-46.980026202169874, -3.5189339235214243], + [-46.98002622946253, -3.518933808772441], + [-46.970257000043, -3.5149371958568016], + [-46.970256842598396, -3.514937131445202], + [-46.9775721355497, -3.5045142854736056], + [-46.97788765101604, -3.498916506055892], + [-46.982728035364424, -3.4957455348299766], + [-46.982728177979524, -3.495745441400724], + [-46.96667004996998, -3.490970850824103], + [-46.96720008393552, -3.49386770644966], + [-46.96405139849025, -3.491767221163789], + [-46.96196757582559, -3.497698982239482], + [-46.959932727288, -3.495661641395191], + [-46.959932637154715, -3.4956615511514504], + [-46.960051078288615, -3.489338174704962], + [-46.969385314903036, -3.473578085292516], + [-46.969385403982315, -3.4735779348831866], + [-46.957855146057874, -3.4728120144827366], + [-46.95419511116276, -3.4767708771580055], + [-46.94797148221995, -3.4764553085839958], + [-46.94797137351036, -3.476455303071553], + [-46.94926106928124, -3.4663091602548106], + [-46.956063185089135, -3.4616851543838365], + [-46.95606323269856, -3.46168512201892], + [-46.95074778209971, -3.456624861334582], + [-46.947479203763564, -3.4597930142346534], + [-46.947478978081115, -3.4597932329811383], + [-46.9516471654583, -3.448192909550329], + [-46.95164722661122, -3.4481927393519114], + [-46.94778308670386, -3.4483984747664067], + [-46.946872234760605, -3.451956112936857], + [-46.94687206288833, -3.4519567842330603], + [-46.94239056929998, -3.4473464375896685], + [-46.94201612659545, -3.4469612281903412], + [-46.942016009640156, -3.4469611078720876], + [-46.94808909861619, -3.437926392735127], + [-46.95634195821639, -3.437514095949383], + [-46.9534489466696, -3.4319873864533106], + [-46.953448859392616, -3.4319872234364603], + [-46.95644886858746, -3.425921999210602], + [-46.9548057585979, -3.423093581925523], + [-46.95480566777045, -3.423093420903022], + [-46.947601548650454, -3.4235037033337563], + [-46.94760048445232, -3.423503763936648], + [-46.948512607268874, -3.4207354034791795], + [-46.94851266044499, -3.420735242084361], + [-46.94006376926949, -3.420686786037479], + [-46.94006356262141, -3.420686784851384], + [-46.94228407535416, -3.417651895186923], + [-46.94228439705645, -3.4176514554962862], + [-46.94031336305146, -3.414626859814451], + [-46.940313267151794, -3.4146267040084375], + [-46.94887861234884, -3.4069040536918256], + [-46.94466629928768, -3.39690167828346], + [-46.94898058141434, -3.392677869593865], + [-46.94898064892611, -3.392677803497069], + [-46.94524298669385, -3.390379873799813], + [-46.94250069145838, -3.394863773656938], + [-46.93896761354475, -3.396846707113495], + [-46.93896757842131, -3.396846726826288], + [-46.93830718623178, -3.394608874455125], + [-46.9377609281563, -3.382754889062628], + [-46.944628680262646, -3.3781967681223724], + [-46.94462873505046, -3.378196731759139], + [-46.9383299598105, -3.3726771190345777], + [-46.938335873642295, -3.3757072059661852], + [-46.93053859980078, -3.3738126332673684], + [-46.927662877756404, -3.377111670846606], + [-46.923335492819795, -3.374616671315425], + [-46.92333545599041, -3.3746166500810113], + [-46.92149104090163, -3.3696150096838675], + [-46.92482211822518, -3.3648008832308505], + [-46.924822235357574, -3.364800713947097], + [-46.91670163175897, -3.3650803231484567], + [-46.91670149863781, -3.365080327731519], + [-46.91761178443887, -3.361654208254094], + [-46.91761183029956, -3.3616540356422733], + [-46.91237251659157, -3.3620585995633685], + [-46.910486500672214, -3.3689779179543002], + [-46.90980135740798, -3.3687630679535387], + [-46.905898566552715, -3.367539207748786], + [-46.90379316161714, -3.3626686824926044], + [-46.907455244760385, -3.3593683729699517], + [-46.90745531964012, -3.3593683054868775], + [-46.90030794258073, -3.355232267410532], + [-46.89782499173346, -3.3581352971492016], + [-46.89782482373079, -3.358135493573954], + [-46.89951262032261, -3.350492464763142], + [-46.902327161685946, -3.3497625526693366], + [-46.9023272860522, -3.349762520416429], + [-46.8902629697747, -3.3424088429052263], + [-46.88952519476731, -3.3360933828656956], + [-46.889463029387784, -3.3355612542282795], + [-46.88946300656756, -3.335561058890185], + [-46.877488302353, -3.341578019044511], + [-46.87752368488137, -3.341659636405747], + [-46.87920000314104, -3.3455264316657423], + [-46.87804884300277, -3.345884943547125], + [-46.87579532581127, -3.3465867633334097], + [-46.87231304244558, -3.340995147429638], + [-46.87231294925744, -3.3409949880099736], + [-46.86825119365992, -3.340475640420597], + [-46.86825116205653, -3.340475636379645], + [-46.86601307620473, -3.334289023039758], + [-46.8700621953722, -3.328221370052329], + [-46.873599253605256, -3.3286102833977265], + [-46.87359937830538, -3.3286102971088005], + [-46.87330829703411, -3.3283706065202003], + [-46.870647445008125, -3.326179527890848], + [-46.865022883165146, -3.3296145799739216], + [-46.859145473360286, -3.3396462529155255], + [-46.857644559554096, -3.342207955427864], + [-46.848461699831866, -3.3356392403348183], + [-46.848461573293164, -3.3356391498183067], + [-46.85172530224027, -3.3294414021513603], + [-46.849674071890426, -3.318446751978168], + [-46.84967403585688, -3.318446558842647], + [-46.83999114145184, -3.3241286700447867], + [-46.83020912602161, -3.311434498090189], + [-46.821958773495545, -3.3128995048078242], + [-46.81337258704434, -3.3095561441737527], + [-46.81337251044042, -3.3095561143448466], + [-46.8125706610665, -3.3008628463938567], + [-46.822846445851006, -3.2981710439517884], + [-46.82599253120976, -3.2973468764144043], + [-46.8105218148034, -3.2902620317911038], + [-46.81052176713655, -3.290262009961698], + [-46.80861068807955, -3.2837448455288483], + [-46.81946718724175, -3.275162837078034], + [-46.81972217858804, -3.2713421815887824], + [-46.815211374506426, -3.2679965789006458], + [-46.814672333352924, -3.267596778457464], + [-46.81061987248585, -3.2723458827049714], + [-46.802225869481745, -3.266433132558533], + [-46.80222576473017, -3.2664330587710784], + [-46.806182017473795, -3.2444926817453736], + [-46.80618203675041, -3.244492574831238], + [-46.79654631505, -3.239570126237204], + [-46.785187802434436, -3.2466243368431154], + [-46.78451422570389, -3.246030534703762], + [-46.77886437758615, -3.2410498129256644], + [-46.77773247994448, -3.229920820606576], + [-46.78191028966444, -3.2222728918494083], + [-46.77836404485669, -3.21661439102604], + [-46.778363951455, -3.216614231797222], + [-46.7759229444854, -3.215977212553712], + [-46.76257292717587, -3.2124932346906876], + [-46.75973536457608, -3.2164311756010573], + [-46.75839207769811, -3.2182953474985254], + [-46.754785534648455, -3.215731976798769], + [-46.75478519324755, -3.215731734145781], + [-46.75700036472068, -3.208746770869007], + [-46.77113592372763, -3.2025310325364926], + [-46.77027868254266, -3.1994377500236766], + [-46.75901523895478, -3.1949278105141232], + [-46.757171654346195, -3.1941896215497576], + [-46.7571715297805, -3.194189571672402], + [-46.75964739308214, -3.1864122894710807], + [-46.77187829338072, -3.1772362832464305], + [-46.77187854539657, -3.1772360941706794], + [-46.76166298016968, -3.1780431522181223], + [-46.75192356680299, -3.189061306033649], + [-46.74404847306621, -3.1795896909758894], + [-46.744048370747244, -3.179589567913742], + [-46.74880623977089, -3.1658140029625725], + [-46.74880628446722, -3.165813873546708], + [-46.73086732095669, -3.161421991900394], + [-46.72699129165518, -3.1615698783315223], + [-46.71964391690737, -3.1539409068394937], + [-46.719643792563254, -3.153940777729644], + [-46.72951706789905, -3.1447683609308603], + [-46.727789599603284, -3.1300167964681007], + [-46.73079755637402, -3.126586362927902], + [-46.73099626848765, -3.1268712895742308], + [-46.73598303461665, -3.1340216566077617], + [-46.74299654115375, -3.1361362056776265], + [-46.7442391835214, -3.1365108546012013], + [-46.74926003175535, -3.123526015882481], + [-46.74781541592458, -3.1208938651753995], + [-46.747815327031034, -3.1208937031020128], + [-46.74009060431133, -3.1228824740467727], + [-46.734978848424284, -3.1203882477351184], + [-46.73079239269293, -3.123820512629929], + [-46.72114151373936, -3.1087518836658394], + [-46.721141419601736, -3.1087517250006584], + [-46.71204768231571, -3.1142331762009987], + [-46.71204800486766, -3.1142340906978823], + [-46.71560779672382, -3.124326893809011], + [-46.7159952952973, -3.1254255515899163], + [-46.708794087704, -3.127281142742759], + [-46.70269036087586, -3.1187940469853777], + [-46.702690265678164, -3.118793914615274], + [-46.703242909912895, -3.116210419039335], + [-46.70672132694959, -3.099948275601468], + [-46.688175871399295, -3.092930694857372], + [-46.68123762663513, -3.095444029411416], + [-46.675799950884056, -3.0936745313581158], + [-46.67579982060729, -3.0936744889639307], + [-46.68218812656175, -3.0752200698035383], + [-46.682188144544284, -3.0752200178529425], + [-46.672808445025154, -3.065551782260202], + [-46.672808339593246, -3.0655516735849497], + [-46.67704410712824, -3.0519100883000627], + [-46.67688404786805, -3.0330710150157496], + [-46.676884046578365, -3.033070863437609], + [-46.66764929621884, -3.031965358691863], + [-46.66764917344673, -3.031965343994199], + [-46.66821409089204, -3.029510976284402], + [-46.67168331757145, -3.014437360268841], + [-46.66076793951382, -3.01176195880579], + [-46.6592989023259, -3.0097797997553064], + [-46.65929878951038, -3.0097796475343928], + [-46.67186347777516, -3.0046217877482317], + [-46.673366026806235, -3.0002822629302526], + [-46.66922416831242, -2.9932115562381916], + [-46.669224077192325, -2.993211395517419], + [-46.65208331771694, -2.9965315338393066], + [-46.6498330801015, -2.9941952492043784], + [-46.64983299694166, -2.9941951628645875], + [-46.64903069164172, -2.983558188138264], + [-46.65208042966156, -2.979201320114029], + [-46.66202962753082, -2.9767289480666665], + [-46.662014835549435, -2.976405686926087], + [-46.661866254321836, -2.9731587774533788], + [-46.64794003873515, -2.9717568958508838], + [-46.64793994841808, -2.9717568867585995], + [-46.64803454782051, -2.9617116376849455], + [-46.65571757099816, -2.955842414679206], + [-46.66627995437734, -2.954315346699666], + [-46.671668576664295, -2.9471371094050918], + [-46.66728137288708, -2.9360925296294007], + [-46.667281312780354, -2.936092378315103], + [-46.65380457060525, -2.9310699950037753], + [-46.65641855789159, -2.9232314232683976], + [-46.65888244818634, -2.9208570070980704], + [-46.66317034556783, -2.916724748430056], + [-46.66561082183813, -2.9056279368581737], + [-46.66561084664852, -2.905627824040566], + [-46.66256117495617, -2.904307461330186], + [-46.6700626026444, -2.8956837884362177], + [-46.67261838290613, -2.8927455657518797], + [-46.68069636209216, -2.8924943419145155], + [-46.68061115137819, -2.891620415569172], + [-46.67964837455324, -2.8817467419899323], + [-46.6741401562832, -2.8787916927605317], + [-46.66863463936653, -2.875837603599491], + [-46.652672584283295, -2.8788127716645557], + [-46.64580216931254, -2.883883020261164], + [-46.63758729338318, -2.8832318501141034], + [-46.637587065400076, -2.883231832041784], + [-46.6422567053528, -2.8783988035115637], + [-46.64225679606089, -2.8783987096284704], + [-46.63607827068969, -2.8760547657813524], + [-46.63607822953324, -2.8760547501677896], + [-46.63415099037334, -2.870145075567592], + [-46.639487484567404, -2.8705596219275], + [-46.641337997861356, -2.8643432378993094], + [-46.64133802400807, -2.864343150063511], + [-46.63629678330101, -2.8610926928328086], + [-46.635167354708834, -2.867911077253545], + [-46.6295284934761, -2.865868554681906], + [-46.629528335873815, -2.865868497594578], + [-46.63186101583268, -2.862305646185798], + [-46.62969764383171, -2.8585679546254066], + [-46.62969755310821, -2.8585677936758738], + [-46.64018674879144, -2.8562005670851254], + [-46.640901809369744, -2.852821103698686], + [-46.64090183447137, -2.852820985063686], + [-46.64029750774624, -2.8525911680752305], + [-46.63666318342192, -2.851209081202432], + [-46.6222266306091, -2.858588139268841], + [-46.62222587351807, -2.8585882682184023], + [-46.61811076182883, -2.85928915403837], + [-46.615022806131506, -2.855393914481616], + [-46.61233989247101, -2.8574834598339507], + [-46.61233983405168, -2.8574835053326724], + [-46.61057915724131, -2.8454989086759945], + [-46.61452939075169, -2.83706560105043], + [-46.618529276351104, -2.8359152197165303], + [-46.618390110021735, -2.835704612651919], + [-46.61393789256627, -2.8289674625353416], + [-46.60373339469168, -2.8332227888181727], + [-46.60081188675449, -2.8344410369935815], + [-46.58789168087398, -2.8449583409092916], + [-46.58183264201961, -2.840265039766764], + [-46.575807592815146, -2.8414021275405252], + [-46.57580724612098, -2.8414021929697157], + [-46.578346936136974, -2.839161902811857], + [-46.584249360378294, -2.8339551973633132], + [-46.582477920554375, -2.832008812292793], + [-46.581059037150524, -2.8304498023518754], + [-46.58105935917319, -2.8304493175374], + [-46.58233765164306, -2.8285248018203113], + [-46.58297616005184, -2.827563497246441], + [-46.59052943695852, -2.8317997981806435], + [-46.59433271627354, -2.825223348782926], + [-46.594332773956765, -2.8252232490381606], + [-46.589442485451954, -2.8231465386200414], + [-46.589442374325856, -2.8231464914290707], + [-46.59041980424157, -2.818095440080593], + [-46.59314208457775, -2.815727097951445], + [-46.59706045629458, -2.81762632109021], + [-46.600578816625074, -2.8131114021079613], + [-46.59897097103861, -2.795700490321276], + [-46.602340455453636, -2.789210452594792], + [-46.6077576790975, -2.7887502069601005], + [-46.60775773346552, -2.7887503718892854], + [-46.611419426276775, -2.7998585388015784], + [-46.61141946827206, -2.7998585584457367], + [-46.622808264251134, -2.8051858691731186], + [-46.62739090244531, -2.804443316135033], + [-46.636640354769895, -2.7936942617801943], + [-46.63778626373215, -2.781590161811335], + [-46.63194029987731, -2.7671322289821227], + [-46.63591407604342, -2.754581015401931], + [-46.640282054646455, -2.750535829411174], + [-46.645435773534324, -2.757621085452097], + [-46.650863085842715, -2.7569693276330822], + [-46.65086387511481, -2.7569692328483373], + [-46.6560626682786, -2.741785116501285], + [-46.657054631875106, -2.7388877287456324], + [-46.65705466127984, -2.738887642857721], + [-46.6529697720705, -2.736259747127431], + [-46.65296970521756, -2.7362597041194916], + [-46.65285842779585, -2.72945199193488], + [-46.668082458193716, -2.7340385483429506], + [-46.67022564209644, -2.7307865397150994], + [-46.66641449985522, -2.7247007782917843], + [-46.66641440643093, -2.724700619128371], + [-46.671891566585984, -2.7110268168685936], + [-46.6639459124132, -2.6942126192166564], + [-46.66394582851641, -2.6942124548075195], + [-46.646970793121326, -2.6890785974061324], + [-46.64697064140023, -2.68907855151957], + [-46.65072564440774, -2.682132651079932], + [-46.64899894759041, -2.679153557632602], + [-46.64899885679194, -2.679153396726886], + [-46.63599602500236, -2.686437518866534], + [-46.633028021444844, -2.6820159383497324], + [-46.63302793029657, -2.6820158025619323], + [-46.633771986098836, -2.6731229266247447], + [-46.633771996382194, -2.67312280370963], + [-46.6211154643692, -2.668141044442227], + [-46.621115410570766, -2.6681410232663665], + [-46.61863873458472, -2.6582236343070704], + [-46.621918981984656, -2.644537837565576], + [-46.621919018817735, -2.6445376838832946], + [-46.61111657511978, -2.643826076214426], + [-46.605973551057325, -2.639142612331608], + [-46.5937483034127, -2.665385214372841], + [-46.58933425997851, -2.6602065279298674], + [-46.58933418568958, -2.6602064407720096], + [-46.58478140333274, -2.6369901242547082], + [-46.58478138254408, -2.636990018252273], + [-46.574775442474746, -2.6287777240012122], + [-46.56372577510296, -2.6270181565767956], + [-46.55516929744678, -2.6307786094804446], + [-46.54036080804611, -2.622817128754536], + [-46.50825291199721, -2.6174781944133434], + [-46.505003899998776, -2.6149303390480165], + [-46.50500379752847, -2.6149302586914085], + [-46.509218595256236, -2.589479200603701], + [-46.5092186032094, -2.5894791525723035], + [-46.50013716890026, -2.578807487367147], + [-46.49083170116923, -2.5814355170249415], + [-46.490831664776664, -2.5814355273026184], + [-46.48724104661112, -2.569675776387891], + [-46.48978275693693, -2.5626960642202636], + [-46.5018552137608, -2.5560138601849833], + [-46.50031941885128, -2.548750114597638], + [-46.494326257296045, -2.5365202936760256], + [-46.4943261721913, -2.5365201298446536], + [-46.487927580988696, -2.532615078970988], + [-46.484308910380726, -2.5337490125207975], + [-46.481160948306, -2.5428538322918417], + [-46.473074147248724, -2.5448941329936994], + [-46.418699952931, -2.527971217942344], + [-46.418699882837416, -2.5279711961262037], + [-46.418243068863134, -2.5245825220470515], + [-46.436187557857366, -2.512627598483022], + [-46.43633217424193, -2.50658589469182], + [-46.42862175255751, -2.4934804755484765], + [-46.428621661254176, -2.493480315046157], + [-46.43977214629025, -2.478586535590677], + [-46.43650209763047, -2.470658827193992], + [-46.43190585645958, -2.4603237674857508], + [-46.436733821533956, -2.4591398568503435], + [-46.43974021115739, -2.4483805863277524], + [-46.437895459955946, -2.4416194023725835], + [-46.440126168401704, -2.4128184990683477], + [-46.440126173594024, -2.41281843201096], + [-46.42701380509536, -2.3996219175792977], + [-46.42701377022968, -2.3996218824900297], + [-46.41990467066964, -2.3829789552373137], + [-46.419904620817576, -2.3829788385321367], + [-46.40751710650159, -2.3686993964879104], + [-46.407516997059, -2.3686992703310183], + [-46.41173445568274, -2.361327333002209], + [-46.425917349132696, -2.3608701219572605], + [-46.444195743130784, -2.3800062753967803], + [-46.448485347082396, -2.381505284165048], + [-46.45596852204493, -2.384120275162906], + [-46.46293975494544, -2.3766679314242585], + [-46.46576473315603, -2.373647913831015], + [-46.465911152421064, -2.36937471583484], + [-46.46092207522887, -2.359949987926571], + [-46.46092198750081, -2.359949825364775], + [-46.42950973300652, -2.3316914623695055], + [-46.429509640736896, -2.331691379364622], + [-46.43068710475693, -2.3029575615637294], + [-46.430687107620045, -2.3029574916593467], + [-46.41920959565563, -2.2914764210989436], + [-46.419209575577845, -2.2914763927204493], + [-46.4140697038523, -2.280430004201404], + [-46.41406962044043, -2.2804298397134506], + [-46.414053721511905, -2.264958448767983], + [-46.41676295301454, -2.2583252054133895], + [-46.42626012660102, -2.250211968561534], + [-46.4282111704884, -2.2397483729768553], + [-46.42821119331499, -2.2397482505504196], + [-46.40693080231532, -2.232254381994163], + [-46.39035352228988, -2.252603805330365], + [-46.37783180703729, -2.253500405696935], + [-46.37118004202901, -2.247982522096509], + [-46.36166983102401, -2.2339174343819463], + [-46.34220017639888, -2.2271567661204013], + [-46.342200139831434, -2.2271567534225807], + [-46.33675495303501, -2.2116904823826857], + [-46.32980291184762, -2.1982874875060756], + [-46.32980282480275, -2.1982873246547316], + [-46.31228508276512, -2.1807679755439855], + [-46.288437393369755, -2.169618538373459], + [-46.275905559990406, -2.158724514201894], + [-46.27590548909798, -2.1587244525747518], + [-46.27545073585833, -2.1562200092747927], + [-46.285709036422844, -2.1540349263597474], + [-46.29284598694806, -2.148658689604971], + [-46.292846035462496, -2.148658653058697], + [-46.26296584992944, -2.1214657985686958], + [-46.262965777957696, -2.121465733070551], + [-46.25946615924767, -2.101784107064821], + [-46.25995796194733, -2.0937642085945316], + [-46.26766032163356, -2.0808784891209777], + [-46.26757038957194, -2.0806739024327663], + [-46.26317517560954, -2.0706753462368264], + [-46.262712390623065, -2.0576678278339955], + [-46.26266506788417, -2.0563380988396194], + [-46.26266506354028, -2.0563379767830465], + [-46.249856003741435, -2.0503409961201973], + [-46.24956582024467, -2.0407530548908936], + [-46.24953580516283, -2.0397615710912014], + [-46.23930686210036, -2.01149230236451], + [-46.24026080086541, -2.002152221324954], + [-46.247807054286476, -1.9927596939751637], + [-46.236637860522734, -1.9712601987115013], + [-46.236637773400936, -1.9712600359422574], + [-46.23071514938209, -1.9333137239012574], + [-46.22045029140837, -1.9148287258535526], + [-46.22045020201421, -1.9148285642964864], + [-46.22757483084606, -1.886320656701113], + [-46.23018828381712, -1.883763215261631], + [-46.23874254505015, -1.8861158454944673], + [-46.242564902174934, -1.8837545546610381], + [-46.24327305931264, -1.877907014111776], + [-46.243273063237275, -1.8779069817032827], + [-46.227251278498876, -1.8556554236458176], + [-46.215270115628044, -1.8448520911021251], + [-46.215270099318886, -1.8448520695848312], + [-46.20861974048298, -1.830900578184119], + [-46.208619656228905, -1.830900414135506], + [-46.21585495590034, -1.8169380708388085], + [-46.219180145989604, -1.812909067432443], + [-46.22932729752207, -1.8006137114440277], + [-46.23584392753718, -1.7987248609765951], + [-46.25175927365284, -1.794111587547102], + [-46.26916474528793, -1.794099851751788], + [-46.28295262789296, -1.7990045016747094], + [-46.29794070382802, -1.7946689618153786], + [-46.30700191803232, -1.804294115455334], + [-46.311128029461116, -1.803898333510921], + [-46.315148611542725, -1.7999645439685705], + [-46.3156394770226, -1.7988633064109865], + [-46.31926688663175, -1.7907224705556193], + [-46.32397754576248, -1.7655593567172618], + [-46.31469708341125, -1.7416707353953407], + [-46.31128792587948, -1.7335665196492], + [-46.311287871721476, -1.7335663909068317], + [-46.30509402807165, -1.7277462131746584], + [-46.29116410956928, -1.7234320110745833], + [-46.26170374574311, -1.7287579133887503], + [-46.242740507220134, -1.7172768872928272], + [-46.22107666129915, -1.7280969092962555], + [-46.20412703686958, -1.7196596720493345], + [-46.204126973499534, -1.7196596405048479], + [-46.20084898199235, -1.703157884498754], + [-46.20084894892464, -1.703157718041416], + [-46.19115650561825, -1.7039886155772503], + [-46.170475392580414, -1.6963977312397445], + [-46.15367046633881, -1.6776446721938907], + [-46.15367037895122, -1.6776445746771713], + [-46.15320887453784, -1.6615332071500273], + [-46.15888572248729, -1.6538676862030033], + [-46.161829245138854, -1.6306216374567708], + [-46.16174805064809, -1.6288527426239479], + [-46.16025972853633, -1.6244892631140908], + [-46.16025968992994, -1.6244891499283816], + [-46.144681214384754, -1.6095892422968296], + [-46.144681120943915, -1.6095891529270356], + [-46.144744131533834, -1.6016015452090737], + [-46.15005334654163, -1.5952832434095252], + [-46.15041710586228, -1.5948644435357806], + [-46.15035360056864, -1.5943288816517416], + [-46.14960295369376, -1.5879986715952736], + [-46.13128356166379, -1.578567442092877], + [-46.13128346230111, -1.5785673909389815], + [-46.13356706736904, -1.553609719167628], + [-46.13775204229899, -1.54489305185383], + [-46.13969622310516, -1.5143244195559507], + [-46.149189451673806, -1.498074664422304], + [-46.156780931770065, -1.4925694245179981], + [-46.159851732664194, -1.4800946327375735], + [-46.16953616222458, -1.4703664843167452], + [-46.16953620427916, -1.470366442071414], + [-46.13317458116051, -1.4373308897215864], + [-46.13317454712054, -1.4373308587961369], + [-46.12983993000723, -1.429448316669344], + [-46.14626865747518, -1.4195249256323141], + [-46.14718333425236, -1.4153030010020247], + [-46.147183348006386, -1.4153029375157982], + [-46.13152888399112, -1.400406424542122], + [-46.131528826760324, -1.400406370082964], + [-46.12475503334485, -1.3777982666709987], + [-46.120975581128285, -1.3690899476032887], + [-46.120975523717696, -1.36908981532408], + [-46.107466431912954, -1.356702041295952], + [-46.10414377299533, -1.3402741641612321], + [-46.103919959555625, -1.339167652625062], + [-46.10391993795415, -1.3391675458298864], + [-46.09859900687505, -1.3348676623734859], + [-46.09859897661068, -1.3348676379166973], + [-46.09526847641767, -1.3271397176555642], + [-46.09919754100661, -1.3232975989294136], + [-46.1150496608962, -1.326490463094696], + [-46.11646215106072, -1.3259931550466295], + [-46.121598504942746, -1.3241847344353508], + [-46.12260829746819, -1.321503149264677], + [-46.12343080314549, -1.3193188908699767], + [-46.11910121743007, -1.3048570617037756], + [-46.12643380679211, -1.2989654872261809], + [-46.14018944018711, -1.299343235846331], + [-46.153930744448544, -1.2695141654262883], + [-46.15393076122014, -1.2695141290166034], + [-46.14003847299067, -1.2531365289901828], + [-46.140038404254845, -1.253136447958878], + [-46.13741379291888, -1.2428985170866402], + [-46.13741398300937, -1.2428981652454896], + [-46.14279972784907, -1.2329293962412904], + [-46.14592171839424, -1.2271505332654666], + [-46.14245265326813, -1.2194385135382504], + [-46.142452596001085, -1.2194383862303912], + [-46.13051490992279, -1.2067208305963426], + [-46.11276713875093, -1.1968289098151885], + [-46.104153171209965, -1.2020975494780914], + [-46.10415312694611, -1.2020975765244657], + [-46.10358700509727, -1.2024434916592113], + [-46.0770797572005, -1.196258806586599], + [-46.07503603248915, -1.1610142036246263], + [-46.06796833254538, -1.1504051005393394], + [-46.068292552642454, -1.1642925503699681], + [-46.06641795746761, -1.162484190660204], + [-46.06469674803182, -1.1442925617769364], + [-46.056352254026514, -1.1315979732485406], + [-46.05348234985795, -1.1316394028173613], + [-46.04929857713507, -1.1422365536335812], + [-46.04906070594174, -1.1509026096384576], + [-46.04022010869146, -1.1739783268979773], + [-46.037388710152584, -1.167394309330978], + [-46.04404030776826, -1.1533293876462063], + [-46.0422015125245, -1.1336937173107886], + [-46.04605880230138, -1.121156629161838], + [-46.03506393757855, -1.1058450716370567], + [-46.03037104280291, -1.106217648785306], + [-46.01946466815487, -1.0827471886471212], + [-46.016518343449526, -1.0835105878283557], + [-46.01791218228738, -1.0891898154951818], + [-46.014728398568735, -1.0856231250859893], + [-46.01802691076568, -1.074929097760348], + [-46.01552847090511, -1.0651603475915086], + [-46.011654632853094, -1.0650124195920014], + [-46.002540677883005, -1.0756472877449035], + [-46.00278588337631, -1.0849101287931149], + [-45.99947060233853, -1.089622912558546], + [-45.99790151872364, -1.0616059063375403], + [-45.9939340986753, -1.0566359980146203], + [-45.989390076858065, -1.0589026347743127], + [-45.987919456716064, -1.0476300370981164], + [-45.984026460671664, -1.0451367561441807], + [-45.97752794660276, -1.0482608673484737], + [-45.964950904422665, -1.0466105552803469], + [-45.96498386814835, -1.0575528556877174], + [-45.97666169974776, -1.061225090295793], + [-45.97927117515439, -1.0669901528764758], + [-45.97069072172264, -1.062158905040238], + [-45.96498854678453, -1.0678601695234118], + [-45.96264857228095, -1.0775855096988212], + [-45.95739872495758, -1.0799841600560385], + [-45.958306911912615, -1.0851401218039851], + [-45.96764181511676, -1.0943671381323294], + [-45.97190813485409, -1.0844507426008334], + [-45.986153749464926, -1.0864075293722906], + [-45.9886478280398, -1.0901736812042742], + [-45.97092740554264, -1.0873451629437874], + [-45.97184310571469, -1.106078360772744], + [-45.97667714184951, -1.1050131628710154], + [-45.974338071426445, -1.1094495872211434], + [-45.982046687375004, -1.1224746344428187], + [-45.9766056450254, -1.116143563426473], + [-45.95960673825642, -1.1076930710180362], + [-45.95365508383971, -1.1087148427941342], + [-45.95360167351567, -1.1262715553475], + [-45.95775212400533, -1.1316890598945721], + [-45.97421949431348, -1.132750034177049], + [-45.99019700305131, -1.1381002972582188], + [-45.98541582506315, -1.1469100563667531], + [-45.99187421174906, -1.152693733457126], + [-45.99435897237835, -1.1624310960028155], + [-45.98599063566776, -1.1549976243540299], + [-45.98235078242425, -1.1594624434577478], + [-45.985044988908484, -1.1675237510540695], + [-45.98119992773407, -1.1667014637513091], + [-45.977295296915834, -1.1612276038825182], + [-45.98261827967199, -1.1535006430811727], + [-45.97532121233649, -1.1430427305181596], + [-45.96500663539758, -1.1410465625129613], + [-45.96349079429674, -1.1458950891931645], + [-45.958511755514856, -1.139307340985276], + [-45.94267514787147, -1.138234379368285], + [-45.94974341787852, -1.1527204539229665], + [-45.95017242563573, -1.1576530520710946], + [-45.94494762066411, -1.1611359574748301], + [-45.950339667750335, -1.175226367629176], + [-45.94950728498586, -1.1902410999336943], + [-45.95224423248651, -1.1948312365939244], + [-45.949122894576284, -1.2088372000469383], + [-45.95309940072954, -1.2306163558896446], + [-45.95673879687059, -1.2337740488403977], + [-45.9484764671943, -1.238642019390755], + [-45.942068798804925, -1.2295193766776038], + [-45.93327819943486, -1.2028329935268154], + [-45.93775696926627, -1.197148431315529], + [-45.9371496953285, -1.191278778922836], + [-45.909419614057974, -1.1425299274800935], + [-45.90361032775636, -1.1481204612825286], + [-45.907219118567426, -1.1390371351937618], + [-45.89736754345324, -1.1253562077056336], + [-45.89504004282911, -1.1160729892330785], + [-45.887509952307035, -1.1147119888620514], + [-45.890897949964994, -1.1075755252983714], + [-45.87538469419961, -1.097675823480835], + [-45.88405078219652, -1.0995866196792943], + [-45.88672060181233, -1.0921222614188397], + [-45.86911188149846, -1.0734320790629952], + [-45.86104782055598, -1.0758825822117848], + [-45.862356851255754, -1.0715072306013909], + [-45.85801831137874, -1.0707535681220433], + [-45.86645427274946, -1.0683129225715018], + [-45.871569186721885, -1.0611863597399216], + [-45.864173789181834, -1.0546904905043868], + [-45.84702231179473, -1.0490486958061394], + [-45.85098019808102, -1.0486543071203045], + [-45.846577685040295, -1.0445050541452043], + [-45.84144442092296, -1.0446260725691414] + ] + ] + }, + "MT": { + "name": "Mato Grosso", + "coordinates": [ + [ + [-57.593542445152686, -8.707427718782949], + [-57.600370751927294, -8.738461237375681], + [-57.600981532703614, -8.741236426381251], + [-57.60037622406091, -8.74237388525448], + [-57.59286657411633, -8.756485412765294], + [-57.586582916392246, -8.759234137224599], + [-57.58620518409708, -8.759399367050534], + [-57.56229295552099, -8.761260191427537], + [-57.562292882743954, -8.761260199118121], + [-57.558978218397684, -8.759904890492367], + [-57.53031376615093, -8.748182419111394], + [-57.53031337669014, -8.748182600569514], + [-57.48743389020653, -8.768158550693283], + [-57.48478601705269, -8.769391930222124], + [-57.46345931721406, -8.784750067535406], + [-57.452425776162755, -8.786620997054301], + [-57.4524257037551, -8.786621008019027], + [-57.42750771946096, -8.783247397260562], + [-57.427507662579444, -8.783247389557292], + [-57.41606186693189, -8.795887508451859], + [-57.41320433470441, -8.826197226334692], + [-57.41374505499355, -8.827561935858649], + [-57.419655155532, -8.8424768747885], + [-57.41984194868731, -8.853047499610085], + [-57.41614508789763, -8.859003266648637], + [-57.40334890153056, -8.8625298147654], + [-57.38561940101755, -8.878395164811113], + [-57.384311497353224, -8.879565498800927], + [-57.31781717286703, -8.885720259881007], + [-57.317817101852256, -8.885720267186594], + [-57.317303643067824, -8.886213442095027], + [-57.310426466789785, -8.892818831076218], + [-57.30596044597137, -8.909912469025452], + [-57.29951516808672, -8.914004741032665], + [-57.28612611556341, -8.915505172745382], + [-57.28612589634294, -8.915505101930385], + [-57.264955397118946, -8.908665485688395], + [-57.262343400815006, -8.907821496950218], + [-57.2594984857562, -8.907527235546796], + [-57.245452420705774, -8.906074039667915], + [-57.2454521971114, -8.906074101343597], + [-57.216246444054676, -8.914129043825287], + [-57.216246372742596, -8.914129058300157], + [-57.21548108933633, -8.914537770149108], + [-57.20370342761727, -8.92082759621791], + [-57.18878767694376, -8.933164421857859], + [-57.162257438557454, -8.969087339303986], + [-57.13989927069023, -8.992820088431408], + [-57.13820376410603, -8.994619736460432], + [-57.09453496618291, -9.01711900643243], + [-57.08995899520323, -9.038225485186468], + [-57.08376260589379, -9.046609453768205], + [-57.0821600040711, -9.0477787566763], + [-57.05953531838707, -9.064285343010855], + [-57.062876730989835, -9.077404519733992], + [-57.06317697160872, -9.078583221750925], + [-57.046261571733474, -9.089001521756852], + [-57.03917169218391, -9.098297514416346], + [-57.03935483790646, -9.099662671255787], + [-57.0414262468771, -9.11510028177848], + [-57.06037262535391, -9.137137976433136], + [-57.05295932876751, -9.156844318651668], + [-57.05234809284873, -9.158469123537275], + [-57.05848494091901, -9.169598202780662], + [-57.06006234540891, -9.181974730040187], + [-57.0600624464464, -9.181975522693827], + [-57.048073799770734, -9.193539380961312], + [-57.04725894791797, -9.194325336004217], + [-57.03925719244982, -9.197040084504614], + [-57.038857201152474, -9.198002635083], + [-57.033978577606234, -9.209742618930214], + [-57.02334927627911, -9.219026291273856], + [-57.02256828728899, -9.219708395504291], + [-57.00814870935003, -9.223322504561962], + [-57.00814863765406, -9.223322518236024], + [-56.99547983406174, -9.233849990328185], + [-56.99547980839897, -9.233850011652658], + [-56.95217968655711, -9.223091012930558], + [-56.95217964975784, -9.223091003783946], + [-56.93811773416474, -9.23043899885479], + [-56.879477603581414, -9.239709330332927], + [-56.87947753100042, -9.239709340861973], + [-56.872292676271805, -9.239169866740498], + [-56.860264577799256, -9.231652903209508], + [-56.8602645512535, -9.231652886618681], + [-56.84412002981872, -9.240811552317817], + [-56.82003991959146, -9.246347468596083], + [-56.82003984764742, -9.246347481575143], + [-56.80334605042517, -9.267460801685967], + [-56.78511926692153, -9.316570693871881], + [-56.779097457308445, -9.317204667946545], + [-56.77909738480739, -9.317204676063763], + [-56.77545276588283, -9.32953447664309], + [-56.775721478214294, -9.36480017434537], + [-56.76953641740913, -9.378821623601075], + [-56.772255040364115, -9.3909663374597], + [-56.761040227253126, -9.405006422577852], + [-56.754202321093295, -9.40637109109298], + [-56.754202248807836, -9.406371103057115], + [-56.736411206793036, -9.396091454428952], + [-56.73469599976689, -9.394938903850752], + [-56.71826496135978, -9.383896834364593], + [-56.71123453100693, -9.374294044036358], + [-56.71123369346365, -9.37429403693443], + [-56.697812681942345, -9.374108273740067], + [-56.69781260925739, -9.37410827802946], + [-56.67181438959753, -9.367403768519015], + [-56.273731413380496, -9.400728252567164], + [-56.273731340315194, -9.40072825864372], + [-56.15645557093925, -9.410462893770555], + [-56.15645549786988, -9.410462899823893], + [-55.791809215807476, -9.440487178770873], + [-55.79180914272651, -9.44048718477812], + [-55.60403809482694, -9.455941961166156], + [-55.6040380217403, -9.455941967162213], + [-55.152110742225574, -9.492730340697328], + [-55.15211066912344, -9.492730346601709], + [-54.99552290813901, -9.50534306308096], + [-54.99552283503155, -9.50534306895334], + [-54.8594520270635, -9.516246714144176], + [-54.85945195395138, -9.516246719988619], + [-54.73233601388075, -9.526385086581064], + [-54.73233594076434, -9.52638509239927], + [-54.61339327699691, -9.535829641097799], + [-54.613393203869535, -9.53582964662525], + [-54.29455122169366, -9.55862239542014], + [-54.29455114854962, -9.558622400615358], + [-54.10655670610753, -9.571923614476923], + [-54.10655663296323, -9.571923619862426], + [-53.915134866493865, -9.586567155051869], + [-53.915134793349274, -9.586567160644801], + [-53.84019640830685, -9.592307118848284], + [-53.84019633515849, -9.592307124381737], + [-53.58838615678125, -9.611052831129072], + [-53.58838608362527, -9.61105283662135], + [-53.45156101147322, -9.621434253934602], + [-53.4515609383146, -9.621434259466579], + [-53.1333335014511, -9.645332007829007], + [-53.13333342828016, -9.645332013214441], + [-52.61992570704548, -9.682205284780656], + [-52.61992563385588, -9.682205289940406], + [-52.6193022578638, -9.682248876477319], + [-52.61930218467339, -9.682248881605355], + [-52.6182924459176, -9.682319771432589], + [-52.35950187564253, -9.700390040979732], + [-52.35950180244608, -9.700390046133679], + [-52.25528276263316, -9.70781298930197], + [-52.25528268943416, -9.70781299446192], + [-51.488119485251026, -9.760583950512121], + [-51.488119412027885, -9.76058395544426], + [-51.304241074474675, -9.772864241632375], + [-51.30424100124344, -9.772864246312214], + [-51.05882258961465, -9.787818726972798], + [-51.058822516374754, -9.78781873145045], + [-51.05796255099654, -9.787871792187861], + [-51.057962477756604, -9.787871796664447], + [-50.842849927568366, -9.800827207874452], + [-50.84284985432688, -9.800827212565762], + [-50.69623067471392, -9.810794321543305], + [-50.69623060147082, -9.81079432642699], + [-50.321585863607325, -9.835159463032486], + [-50.321585790350845, -9.835159467669047], + [-50.2247657124554, -9.841158794827294], + [-50.22476563841821, -9.841158800635588], + [-50.22718740617724, -9.845623047461043], + [-50.22540854891581, -9.853963465800865], + [-50.24374621334526, -9.871247431008507], + [-50.26423921663734, -9.908502687265768], + [-50.26716430656661, -9.934659074187614], + [-50.278902174338405, -9.95525440484249], + [-50.27789050514151, -9.970778010990163], + [-50.29062903199846, -9.990823513032463], + [-50.29423759504858, -10.01611205334658], + [-50.30260390993197, -10.035416288523246], + [-50.312410098655604, -10.045663745879407], + [-50.33979921928502, -10.060943053014617], + [-50.354630585045605, -10.077173942589779], + [-50.35935506486855, -10.094507217852325], + [-50.37776806461626, -10.11072053703023], + [-50.39210549323506, -10.134035857809867], + [-50.398712183559994, -10.164105026243496], + [-50.39686016808743, -10.170887027782292], + [-50.389358585476714, -10.17493214818693], + [-50.38671689034092, -10.187453550621115], + [-50.381910336397524, -10.212119635992465], + [-50.38294052244867, -10.225043311459196], + [-50.39805160924957, -10.254434628967347], + [-50.406160519937686, -10.288255342894313], + [-50.42454135251203, -10.333971173677648], + [-50.41824247753501, -10.356285895528003], + [-50.42460537879004, -10.364564918683433], + [-50.441018465411375, -10.37557039618356], + [-50.44824275125961, -10.391576486217327], + [-50.47368219995078, -10.404909780936519], + [-50.48673885775302, -10.46196308494659], + [-50.487823900481736, -10.467976486585203], + [-50.486657354518385, -10.47721492651022], + [-50.482328373333985, -10.488764874963104], + [-50.48774331207227, -10.494632034978943], + [-50.50032324548972, -10.495900423536659], + [-50.50032331787846, -10.495900427058515], + [-50.50371693347224, -10.495915142225257], + [-50.516744922349346, -10.50554952617669], + [-50.514907703089634, -10.525964699649935], + [-50.52299044077381, -10.54080024497379], + [-50.51968552877681, -10.562482713861634], + [-50.53152609526251, -10.580757692922115], + [-50.537379917345554, -10.605221429930582], + [-50.54368635452471, -10.609876336646659], + [-50.56312779342556, -10.611325423698377], + [-50.57726690770546, -10.629181049930837], + [-50.58252235347226, -10.644085212327472], + [-50.60334739839403, -10.660010392411614], + [-50.6027759699492, -10.67376391149313], + [-50.58755952407669, -10.686013259233542], + [-50.58582573515949, -10.704195293945979], + [-50.576874453971925, -10.719374792457813], + [-50.57771687804058, -10.73338795908067], + [-50.570543357364, -10.752507960447769], + [-50.59015721764932, -10.786454767645054], + [-50.591550907885065, -10.799980461442507], + [-50.59769110335067, -10.804722311282818], + [-50.597691176616884, -10.804722307031936], + [-50.60713346443245, -10.804685986224426], + [-50.61215370717913, -10.81032517164885], + [-50.61167227142158, -10.821509111521337], + [-50.62196180980834, -10.839421496821736], + [-50.6189989265967, -10.86409806993902], + [-50.60490805216358, -10.872475988706181], + [-50.59935981517638, -10.884467557149819], + [-50.60074434235751, -10.900687450830189], + [-50.62207989623588, -10.918209948844407], + [-50.63290056262107, -10.935946566377586], + [-50.6201964624609, -10.968911286279285], + [-50.624795622909296, -10.983842084272938], + [-50.6175479761578, -11.002428773032008], + [-50.61738001990097, -11.032004164750502], + [-50.61141068942642, -11.04297959359978], + [-50.609412324758125, -11.067449210403097], + [-50.617547646020824, -11.085814531238483], + [-50.636997417569525, -11.10055055021727], + [-50.6438408426089, -11.123186055447537], + [-50.64740844794683, -11.12661862237442], + [-50.65860695409066, -11.128819050834736], + [-50.66449012597614, -11.154635645970556], + [-50.6598450394509, -11.187377370987472], + [-50.6617757108861, -11.203142077374151], + [-50.654241301661415, -11.218649363382246], + [-50.65599152937082, -11.24024009703964], + [-50.67006181919225, -11.284588220845308], + [-50.678949530732986, -11.294923307614058], + [-50.696767659052654, -11.304661037801933], + [-50.6986439048414, -11.310556232354207], + [-50.70705318252707, -11.328168992492536], + [-50.705710320125576, -11.341501303697981], + [-50.712214519818254, -11.359848502452369], + [-50.72846496885829, -11.38256909051591], + [-50.72693912709476, -11.411148980008177], + [-50.739213351315804, -11.435388132108928], + [-50.742017670395164, -11.460352543804579], + [-50.73906552235401, -11.471369103608964], + [-50.739296778363126, -11.499156329691441], + [-50.73474974780518, -11.511825664980671], + [-50.7409421318926, -11.537242407065047], + [-50.715940291342505, -11.578956353069653], + [-50.68209249303103, -11.583155429798822], + [-50.68209241963828, -11.58315543843822], + [-50.67004060729548, -11.581589374645583], + [-50.67004055123231, -11.581589367359319], + [-50.65742773205296, -11.592809576058787], + [-50.65813752956473, -11.6165845737165], + [-50.66457489069072, -11.626614442944392], + [-50.66280303142517, -11.646912081625262], + [-50.66210414207008, -11.668469432679153], + [-50.663655853284865, -11.677530412100715], + [-50.67402225521698, -11.692678603382134], + [-50.69243441122006, -11.701133733232751], + [-50.72154488512786, -11.731715638500676], + [-50.721995412779144, -11.739701857113301], + [-50.71393192021148, -11.757418175952404], + [-50.7078146345481, -11.768236974607063], + [-50.700540469024574, -11.803469494270976], + [-50.68799818847838, -11.825044071113448], + [-50.68625791327977, -11.858998432583624], + [-50.68260262380646, -11.862905438089179], + [-50.665326295532374, -11.86446095245096], + [-50.66532622310169, -11.864460959355858], + [-50.63924176618702, -11.884569597601116], + [-50.64052453277251, -11.902692805395347], + [-50.65906793961948, -11.914321140328054], + [-50.667848931674385, -11.927770428909696], + [-50.65468980758442, -11.947989173090392], + [-50.656787255771206, -11.966852460313048], + [-50.68219125828953, -11.990890534609509], + [-50.68402163560007, -12.010831382672341], + [-50.67780246301977, -12.019516368083844], + [-50.68702935315941, -12.035636726651543], + [-50.68655093039844, -12.04513621654069], + [-50.66757595549548, -12.064563177720707], + [-50.66723079279778, -12.081171773051494], + [-50.67598263925569, -12.123898696314107], + [-50.670309072358336, -12.137605771971968], + [-50.6789884001939, -12.155337140382745], + [-50.67913437267137, -12.188080755566313], + [-50.686824767623506, -12.202156762928078], + [-50.6786302470736, -12.218852489805853], + [-50.655385075976675, -12.218209563887433], + [-50.65538501414983, -12.21820956471774], + [-50.64366293468611, -12.22296794197058], + [-50.649907155675336, -12.249128482444169], + [-50.630290364248154, -12.271886282356059], + [-50.62949256654681, -12.280973093010521], + [-50.648868473338574, -12.299092547185534], + [-50.64352454525971, -12.318957045514681], + [-50.63776916507052, -12.32528896725542], + [-50.644256557520855, -12.347671315926405], + [-50.63224331785939, -12.366817659103422], + [-50.62682550416543, -12.384034908883596], + [-50.63262822205219, -12.417106753005607], + [-50.622256854363755, -12.422814546108487], + [-50.61820803538485, -12.428995097431901], + [-50.623526612689076, -12.455286698022535], + [-50.62713810042058, -12.45841741953424], + [-50.62713815760966, -12.458417397116577], + [-50.642216059455556, -12.452506422455901], + [-50.64221607844066, -12.452506435794156], + [-50.65299193030508, -12.460076742112602], + [-50.645972525184284, -12.482113719532128], + [-50.65955073637702, -12.5060901530938], + [-50.663663224604036, -12.537436002291871], + [-50.6775454281363, -12.552110952220286], + [-50.68643113050363, -12.569206901527453], + [-50.669381640449494, -12.580767920211494], + [-50.66793488419563, -12.596012055296224], + [-50.67382574501953, -12.600122362448097], + [-50.67382579830256, -12.600122340066624], + [-50.68985370288157, -12.593389185010933], + [-50.689853741429324, -12.593389191679222], + [-50.70001801249466, -12.595147288080247], + [-50.704074471437444, -12.59980216563432], + [-50.706097854126504, -12.61352189372296], + [-50.70109902131996, -12.624205473444492], + [-50.699641005280654, -12.647778028034708], + [-50.68247684549506, -12.647851372257653], + [-50.682476772182454, -12.64785137022886], + [-50.65615673513885, -12.645995889745114], + [-50.6561566827254, -12.645995886047508], + [-50.64688209170879, -12.65112415802408], + [-50.64630211459082, -12.663796481733845], + [-50.654830380604274, -12.673498456877503], + [-50.654718382156624, -12.679182111529805], + [-50.645074547860126, -12.702242156566022], + [-50.63315784021923, -12.701548215552451], + [-50.633157772663225, -12.701548214714103], + [-50.63007891764867, -12.704533529458061], + [-50.63716239234562, -12.719784622558336], + [-50.622914519446425, -12.734641341478106], + [-50.62716011402537, -12.760896960395748], + [-50.63594675729366, -12.771863295198358], + [-50.63020912425238, -12.776071748022536], + [-50.6302090955959, -12.776071769040902], + [-50.61479719432405, -12.771654877653186], + [-50.61479713808486, -12.771654861533715], + [-50.61171862251152, -12.775899585127055], + [-50.625312066618775, -12.80002225218803], + [-50.626524816296424, -12.81188222071334], + [-50.62268464129208, -12.819738983993577], + [-50.61807032612876, -12.821604835921713], + [-50.61807026222878, -12.821604850877081], + [-50.613461876555135, -12.818405005912972], + [-50.603266162850225, -12.800465107005586], + [-50.58448612143988, -12.799779690215075], + [-50.58448605712941, -12.799779690557147], + [-50.57901726208198, -12.802715893894531], + [-50.58365070254084, -12.809746570474728], + [-50.60060371869605, -12.818887508399525], + [-50.59779942539235, -12.826777810574074], + [-50.56690732162377, -12.843426249170692], + [-50.531938751064196, -12.8436247363296], + [-50.53193867722767, -12.84362474056254], + [-50.520294486229226, -12.836397058103385], + [-50.52029444304585, -12.83639703129726], + [-50.51304629276293, -12.844644794535123], + [-50.511236432878356, -12.860807140344145], + [-50.51123642341413, -12.860807224854813], + [-50.502397885392206, -12.87308868176583], + [-50.50182400980032, -12.882697857140395], + [-50.514321477833086, -12.900461038961087], + [-50.51682594646658, -12.920548506281575], + [-50.52607130043317, -12.939909034810965], + [-50.525884332778084, -12.976421745549532], + [-50.54335225026861, -12.983677552371931], + [-50.55677554346403, -13.00246355568761], + [-50.56535301610798, -13.003914353276151], + [-50.57876362578329, -12.997868637481417], + [-50.5929603619427, -13.002858712626685], + [-50.587493498442974, -13.024410054878798], + [-50.57195810524326, -13.032536002604811], + [-50.56912882353461, -13.039131603125435], + [-50.5768787820228, -13.051085852967233], + [-50.60634979445396, -13.05714806525123], + [-50.6116575421644, -13.064358845717635], + [-50.60365345287719, -13.078449017149886], + [-50.60151672229209, -13.089684700930372], + [-50.594349682078985, -13.095160406665057], + [-50.59024092662828, -13.10963494412556], + [-50.599098307991554, -13.14347244196668], + [-50.59485127191942, -13.169724899542167], + [-50.601738987841, -13.1807891289313], + [-50.60334516938971, -13.196874294312428], + [-50.586484689120155, -13.212457017321208], + [-50.58448725646913, -13.215296592253486], + [-50.58771483396132, -13.24854171616322], + [-50.60234392177504, -13.269324443330465], + [-50.60515902463143, -13.27354933177419], + [-50.607158397739994, -13.31085859551847], + [-50.612101354937735, -13.316619911899762], + [-50.62418349251951, -13.334686571857857], + [-50.63890197703868, -13.345613175010703], + [-50.64631592176948, -13.36117546373768], + [-50.66560486533879, -13.376137978029988], + [-50.669098539502336, -13.399215156304434], + [-50.66325889552346, -13.419758687082558], + [-50.665412183711, -13.442282128078492], + [-50.68410632691659, -13.444163043540184], + [-50.69691288842318, -13.475935973854494], + [-50.71513369260636, -13.49169375795681], + [-50.74502118949688, -13.507589595649202], + [-50.76340542788722, -13.530013639870964], + [-50.76843966970098, -13.597044958979279], + [-50.78130157519127, -13.619118911696765], + [-50.78786575172834, -13.648402618797851], + [-50.80188977078638, -13.684818486834443], + [-50.803912645309204, -13.690965132626722], + [-50.82291577998567, -13.713224260858325], + [-50.834606855405774, -13.711378290880372], + [-50.85640416334395, -13.715847864270023], + [-50.86584810994277, -13.723140097578195], + [-50.871744577330276, -13.733091595762147], + [-50.87074995719243, -13.739265814249475], + [-50.85376619282636, -13.76577472241404], + [-50.857300014547825, -13.791403387272211], + [-50.853469147751746, -13.811530270972309], + [-50.856686611506234, -13.831547754335798], + [-50.84144361117568, -13.859964622034136], + [-50.84121959101769, -13.891665574724305], + [-50.84563078333685, -13.903520743570324], + [-50.841246773563185, -13.927276262487194], + [-50.84565893005146, -13.94166793326816], + [-50.86268496406348, -13.956927351954528], + [-50.8659091664756, -13.975219341254679], + [-50.8631004813512, -13.985282756855817], + [-50.849186939864474, -14.000767032804994], + [-50.85182436117537, -14.029130179649558], + [-50.83166208839391, -14.072678408859806], + [-50.833602425051744, -14.089846189703], + [-50.8413824614437, -14.10490620507868], + [-50.86777635510154, -14.125099249605592], + [-50.89271506542352, -14.127398083845646], + [-50.90474558119193, -14.113163636214635], + [-50.91376738633443, -14.111582266962362], + [-50.91743869337324, -14.114817463731722], + [-50.91857832414576, -14.125797694224348], + [-50.910302502537384, -14.14952386163385], + [-50.91439073202482, -14.172250427752058], + [-50.92710375755008, -14.184766525891973], + [-50.93699544443255, -14.210395544150627], + [-50.962181310335986, -14.250854705952337], + [-50.975217185090216, -14.290854684406508], + [-50.9759320979377, -14.301920089374288], + [-50.96924371090022, -14.333924223905646], + [-50.980523932690616, -14.354215282042059], + [-50.98980244147647, -14.362702164783432], + [-50.98730999342512, -14.378977071503328], + [-50.98712177844521, -14.385958935764448], + [-50.989025570423614, -14.39922679080146], + [-50.99488043585053, -14.405204939697304], + [-50.99902342414001, -14.41923246328524], + [-50.98654445772769, -14.437534956006829], + [-50.98700043468343, -14.457109612633966], + [-50.97574743386122, -14.467017099026448], + [-50.96817075973609, -14.482303395959484], + [-50.97288064420112, -14.500606498869614], + [-50.96279635622417, -14.527017193056395], + [-50.997330422541275, -14.578197082595333], + [-50.991544860521394, -14.612793686505592], + [-50.99456267230514, -14.620083036254332], + [-50.99733045914271, -14.625973583726811], + [-51.01896821328872, -14.661506627848407], + [-51.02649563118638, -14.66572200143888], + [-51.031521677652776, -14.680078085764125], + [-51.026464246686146, -14.697634567546203], + [-51.02715735207441, -14.706796112260562], + [-51.036777173860976, -14.717917901596895], + [-51.03968717917379, -14.726548111556907], + [-51.04924720750654, -14.735310926701402], + [-51.05391371267995, -14.74666262338432], + [-51.05249566942097, -14.764429354811927], + [-51.04241206938598, -14.78458672972876], + [-51.04446304638706, -14.795022317366715], + [-51.06832689809528, -14.810303944624877], + [-51.089390952683665, -14.840358030248474], + [-51.090582835868155, -14.848153046609653], + [-51.0868297505707, -14.862629964785137], + [-51.09174013030823, -14.882036364529618], + [-51.091134475851455, -14.894269137018439], + [-51.08292047174919, -14.90584372735779], + [-51.082343056772274, -14.91047830607842], + [-51.08400628376357, -14.916449474697584], + [-51.10276841995172, -14.926514864582106], + [-51.127020092507465, -14.937103868699118], + [-51.134637581689155, -14.943592848024716], + [-51.14685800770559, -14.959515475649027], + [-51.1459156786381, -14.977456537501897], + [-51.1507211310309, -14.983751218998353], + [-51.19861140888219, -15.00488593964101], + [-51.24255393202284, -15.035398154726558], + [-51.27185700778482, -15.037809955791895], + [-51.29044389495224, -15.034329401535759], + [-51.29858356283412, -15.022345587376707], + [-51.2986934551712, -14.997108508259752], + [-51.30187601933521, -14.986530914475532], + [-51.32303138239601, -14.971761185610143], + [-51.33774696096566, -14.973369738401313], + [-51.347359825423766, -14.990182003412214], + [-51.35723479137953, -15.002494228322654], + [-51.37675454973589, -15.012864190008331], + [-51.39830830791258, -15.003477803159132], + [-51.42771138364059, -15.008333599533737], + [-51.44163843232148, -15.030110349768895], + [-51.45236182504467, -15.034051174496264], + [-51.46077432271232, -15.04468217315681], + [-51.477697179005446, -15.056720565739246], + [-51.5123294847454, -15.054637205329389], + [-51.52219200468409, -15.058430209195281], + [-51.535910790587444, -15.069688513392562], + [-51.55269487504557, -15.105892274313973], + [-51.57388381477795, -15.11348910851128], + [-51.58807748867519, -15.13821202108822], + [-51.59894464568588, -15.15673660390946], + [-51.607113939932205, -15.163505098951], + [-51.626969669885014, -15.164474215068811], + [-51.65204573790003, -15.179874066600895], + [-51.652857287881304, -15.20671236892221], + [-51.66195566234437, -15.224651239303993], + [-51.667971742074585, -15.246344613784428], + [-51.6594150958237, -15.255892458744622], + [-51.647500124492765, -15.260700531569704], + [-51.64688778583511, -15.267946749107061], + [-51.661915503447595, -15.281378385046612], + [-51.6787477778109, -15.290658366338251], + [-51.68825126887801, -15.30885569050463], + [-51.68619616304063, -15.345918356762079], + [-51.673586493168706, -15.357427244344363], + [-51.671332024303915, -15.371728494635029], + [-51.69758041098347, -15.40998821344545], + [-51.697894216251846, -15.417785200419813], + [-51.69147328530532, -15.426533727205003], + [-51.692832072717856, -15.433248799971297], + [-51.708362622248586, -15.456475692393365], + [-51.69952342978763, -15.473738993856637], + [-51.69873671098391, -15.484962610007452], + [-51.704623122385165, -15.496697127184353], + [-51.72591561868961, -15.502472863205607], + [-51.735414051399175, -15.510868090953402], + [-51.73423702331099, -15.530228662023971], + [-51.7259445718561, -15.542611712728352], + [-51.727665263771996, -15.550790797440673], + [-51.742057648641406, -15.556784418467524], + [-51.75164123859593, -15.555112220909958], + [-51.761805072662874, -15.531642258528763], + [-51.77136091524608, -15.532425272136818], + [-51.77749885369994, -15.538997811742504], + [-51.77758780730698, -15.55425531601442], + [-51.75363454220008, -15.610175693394346], + [-51.75775950048933, -15.635947580174198], + [-51.769201403338194, -15.656592981911874], + [-51.80453979855819, -15.713267444298493], + [-51.80317708968897, -15.72296965889717], + [-51.82539759220382, -15.73545399430093], + [-51.82955206077956, -15.740177251045214], + [-51.84739777212247, -15.769531297333875], + [-51.859343451787375, -15.789193341179525], + [-51.873803257475764, -15.800257070800809], + [-51.87955620706329, -15.825394146807602], + [-51.89019517771498, -15.831994272802], + [-51.911976386720106, -15.813572265610034], + [-51.94877760922715, -15.810386763711628], + [-51.9565052268625, -15.822601320360382], + [-51.95408615982261, -15.837662900982208], + [-51.95975209244339, -15.840257861817705], + [-51.972628781120385, -15.8378495865035], + [-51.98322835643292, -15.843982736214183], + [-51.99629895217313, -15.87308274418315], + [-52.01126092672597, -15.886228905483117], + [-52.058055953080085, -15.887413562660011], + [-52.0791976435821, -15.880465664399761], + [-52.091753980838206, -15.882646099677963], + [-52.0972572130283, -15.888656091421954], + [-52.107412110083814, -15.882281380633918], + [-52.128478526772504, -15.894955094887079], + [-52.15419397367792, -15.889051815232653], + [-52.17325314124487, -15.888398822070977], + [-52.191091839001736, -15.881770321771274], + [-52.21694842309401, -15.89114180815899], + [-52.235723814346855, -15.888970617202986], + [-52.25258437275544, -15.892660268450014], + [-52.25142073936176, -15.908450078116879], + [-52.25837498202362, -15.93309758749407], + [-52.26409160466297, -15.937380274382843], + [-52.265255087531656, -15.946977587983108], + [-52.2890104801191, -15.966098694051142], + [-52.29008093432573, -15.985360046841256], + [-52.31042666448046, -16.00739889943376], + [-52.315365292149544, -16.027818047333746], + [-52.32331143842679, -16.037583121492425], + [-52.32078134751099, -16.045892176929467], + [-52.32467380918675, -16.050007558946334], + [-52.328033491012754, -16.070602095991045], + [-52.3502052102485, -16.083944079491985], + [-52.36097889429692, -16.081964515711114], + [-52.36753025820111, -16.084468123595073], + [-52.37043568054623, -16.095198714719356], + [-52.375062891095986, -16.098392986944127], + [-52.397788432554705, -16.093442399911005], + [-52.437450021535334, -16.11010523445929], + [-52.45836775192973, -16.127495721113025], + [-52.47097326941749, -16.12660802382852], + [-52.47692459880078, -16.1263913000134], + [-52.488428185889774, -16.13074436065259], + [-52.492008536522874, -16.138206500418633], + [-52.500672536077275, -16.14270148914369], + [-52.51347975407651, -16.13392960938551], + [-52.51646581526991, -16.134947759976196], + [-52.525480076220916, -16.140555409035606], + [-52.52703782179982, -16.156213293838682], + [-52.548562761462776, -16.16511694794045], + [-52.54356795995864, -16.1807661705926], + [-52.55019306000043, -16.18915177144205], + [-52.54612328228419, -16.219630524772338], + [-52.54500418648094, -16.223129911426202], + [-52.54793005788893, -16.225029949738403], + [-52.56665381238433, -16.22505783024071], + [-52.56964759851644, -16.22885432689371], + [-52.56834007570471, -16.23491740142822], + [-52.54628758874916, -16.258519051456915], + [-52.54763255839981, -16.262379518055877], + [-52.55340150914506, -16.265767944075094], + [-52.56228507922331, -16.26505149554703], + [-52.57637086292368, -16.249951092946777], + [-52.580867147020015, -16.251590239016984], + [-52.586089290061146, -16.266983354507058], + [-52.590281832298146, -16.26969086269591], + [-52.61074725539671, -16.272362960061695], + [-52.623454381679345, -16.287376128965864], + [-52.63743664939496, -16.283591804402416], + [-52.64772828734418, -16.285410510018785], + [-52.653258476895424, -16.279979948993404], + [-52.662355425822106, -16.283710159086517], + [-52.6735963302874, -16.294112784439864], + [-52.67687265308298, -16.302264363844174], + [-52.68209876406879, -16.304065069926974], + [-52.68687255157878, -16.315481900422686], + [-52.68162273102761, -16.32108672462049], + [-52.685651414223955, -16.328510200711253], + [-52.682256616611625, -16.343532360278648], + [-52.69314870728418, -16.35114576590817], + [-52.68967390260771, -16.35684303153263], + [-52.6929294774998, -16.368337064800677], + [-52.677572694985884, -16.380177501106985], + [-52.67981430611807, -16.38815091764709], + [-52.68748025978641, -16.391225429777723], + [-52.68834311918432, -16.39630004812152], + [-52.6765909220021, -16.412306770618653], + [-52.650456407044864, -16.408672248022057], + [-52.64339716316539, -16.412739211871315], + [-52.641065388825, -16.4167245291836], + [-52.645091035583356, -16.42622932554381], + [-52.638510910769085, -16.437081188497245], + [-52.62029394627798, -16.445835593375797], + [-52.616094215641134, -16.450189505012524], + [-52.621345781774195, -16.45707202512862], + [-52.62068299528226, -16.464856042786145], + [-52.61243080733367, -16.458240940869427], + [-52.60434161131698, -16.464657482198557], + [-52.6132565216973, -16.47000076053257], + [-52.6063946661942, -16.476153539704608], + [-52.60545081931568, -16.48620314333], + [-52.61564379673137, -16.50438609474663], + [-52.63253226444105, -16.50038577828954], + [-52.637507002529134, -16.502913501068342], + [-52.63517315508141, -16.512609142452533], + [-52.62937681496569, -16.517774891489655], + [-52.62654787675435, -16.520949889823175], + [-52.62609698355503, -16.533446583531095], + [-52.634640989935455, -16.537955590032382], + [-52.635703725839114, -16.55163305029191], + [-52.646957527052386, -16.545914543500526], + [-52.65070498312289, -16.548621979873126], + [-52.65120485767654, -16.561482705041186], + [-52.662652398591476, -16.551056870008267], + [-52.66856900416672, -16.550508404874847], + [-52.67026055091719, -16.559192099060358], + [-52.66011965526414, -16.570348581822344], + [-52.67384712255746, -16.56906321199139], + [-52.67064738692791, -16.58201781894662], + [-52.6754538357173, -16.584991817104804], + [-52.69020461877309, -16.584254903522996], + [-52.70040602629023, -16.57119916565247], + [-52.705840131196304, -16.57127907234551], + [-52.707926944389136, -16.575900459673147], + [-52.70365153235616, -16.59573229162689], + [-52.70798690279541, -16.599345899505973], + [-52.72484238240169, -16.58682795126917], + [-52.73332395546305, -16.58553180475192], + [-52.740262110862915, -16.59041909021133], + [-52.731066959356575, -16.598043384558697], + [-52.74076559649911, -16.60391057023562], + [-52.74103947872499, -16.60934373520842], + [-52.73756693172996, -16.61296987442383], + [-52.726037706106666, -16.614628708371516], + [-52.71564879701691, -16.639264678422787], + [-52.724485094373826, -16.64677251987841], + [-52.73272847354801, -16.63462570762266], + [-52.73920931777133, -16.629994375301944], + [-52.74681360330331, -16.630708955506528], + [-52.74795204082062, -16.638856755959832], + [-52.7403745860969, -16.656800215990394], + [-52.74648578457237, -16.65533572980932], + [-52.75476268769919, -16.662659223265518], + [-52.77120475852059, -16.668512307413685], + [-52.769153940664644, -16.672412061690927], + [-52.75515061641915, -16.67225792721315], + [-52.762680027416785, -16.68211443869967], + [-52.76376285854862, -16.697141563360326], + [-52.759816059147695, -16.703301100303044], + [-52.76170118387495, -16.706285622102882], + [-52.77965417263369, -16.70797427538263], + [-52.7889047100935, -16.720542330768424], + [-52.78592801417864, -16.74118939951183], + [-52.792517003839826, -16.73973464813365], + [-52.796961075824555, -16.746502128421948], + [-52.80040626957734, -16.748228799766395], + [-52.80735133539141, -16.741419992864135], + [-52.82326684043664, -16.758134915900317], + [-52.83023107940702, -16.76039974831281], + [-52.8290434790295, -16.7691691764932], + [-52.832315483163306, -16.772335380118264], + [-52.84249764795349, -16.768399535016147], + [-52.84978806214255, -16.766589155173268], + [-52.854042874512324, -16.77328130492124], + [-52.85890541233855, -16.76793177951911], + [-52.86731524259872, -16.781224769457985], + [-52.88223066712663, -16.77610949996539], + [-52.894203618159274, -16.785137449589907], + [-52.88848651356765, -16.787509899825373], + [-52.8923454426532, -16.793376146891884], + [-52.90703935996209, -16.79932004188207], + [-52.907624000540594, -16.81027143014765], + [-52.914769397422, -16.812195713914004], + [-52.920907679672446, -16.817208876452128], + [-52.92784819606322, -16.817094309763444], + [-52.926125205244446, -16.805337406366295], + [-52.93259248501128, -16.802869333038462], + [-52.93562814499097, -16.81046435146414], + [-52.944374793113276, -16.813157539133503], + [-52.92889918258102, -16.827415684738533], + [-52.93212184927516, -16.83582937119094], + [-52.92746131410984, -16.837836097391882], + [-52.926981084599845, -16.841635410169992], + [-52.95293251547432, -16.841923894439653], + [-52.947395620710274, -16.84529356768359], + [-52.9445958397089, -16.856255546871637], + [-52.95054113256591, -16.860405005988483], + [-52.94967772044787, -16.8536172678702], + [-52.9571805266599, -16.850792406115062], + [-52.953799925087644, -16.860803825766826], + [-52.96465604772986, -16.85846287903181], + [-52.96211933994688, -16.865896552908307], + [-52.96909959035425, -16.86968031450947], + [-52.97623792709585, -16.863500114242886], + [-52.98853999423668, -16.866811907367154], + [-52.9909912029682, -16.86327508439028], + [-52.99823250246934, -16.8655151004603], + [-53.00145949630651, -16.85967080119451], + [-53.00610263820435, -16.864180996128685], + [-53.01127352577627, -16.858015260231486], + [-53.01383636944672, -16.864880595330295], + [-53.012850600488015, -16.876529097496224], + [-53.01771018689631, -16.878874425873672], + [-53.01184202923475, -16.88459151096663], + [-53.01628984273538, -16.884931851845987], + [-53.01887398525385, -16.89866738547285], + [-53.023515156004244, -16.903268477917454], + [-53.03176128654673, -16.90449214084579], + [-53.02917741380825, -16.91216139462867], + [-53.03218250436667, -16.90821652763755], + [-53.039568556170714, -16.911956568425296], + [-53.03364860355352, -16.92075491061265], + [-53.039047814934655, -16.931724376192285], + [-53.03320440369338, -16.930359644031412], + [-53.036455354933295, -16.9392093455996], + [-53.034070665003924, -16.94125984912564], + [-53.04649115625495, -16.948709695856778], + [-53.04468003808704, -16.953931547436447], + [-53.04850984126853, -16.967151272136903], + [-53.051628302034715, -16.96130122349201], + [-53.05510096253104, -16.963441450793894], + [-53.053926374814516, -16.98800106419429], + [-53.04987260084772, -16.992835749638257], + [-53.05688139489159, -17.003622578671038], + [-53.053565432284884, -17.003795115045616], + [-53.05790415755059, -17.009436759547206], + [-53.05601690414024, -17.014974537916398], + [-53.06337300190453, -17.01261428471682], + [-53.06365090554638, -17.016979426272336], + [-53.05554383656775, -17.019415702473204], + [-53.0614853154899, -17.020337659046398], + [-53.06165468301198, -17.029511573327667], + [-53.068930663751495, -17.029969667466027], + [-53.06590953751791, -17.038963603298512], + [-53.07043061481326, -17.04214655281017], + [-53.07249301261228, -17.050594578649736], + [-53.063706805573794, -17.045585073372685], + [-53.06079569423442, -17.05294499624187], + [-53.06646321721089, -17.052312489025798], + [-53.06654165890233, -17.059215499863793], + [-53.06174283137946, -17.057034040998442], + [-53.05832243155231, -17.05911429206394], + [-53.055964349232866, -17.070368895769715], + [-53.06217658981998, -17.071383412060314], + [-53.0613204595801, -17.077640606762298], + [-53.06718617497901, -17.073385146240415], + [-53.068401463158956, -17.078195474857406], + [-53.07378782858758, -17.077573251077897], + [-53.071990597624094, -17.085739786336756], + [-53.07773323164928, -17.079386464600656], + [-53.081517649677785, -17.0799385077063], + [-53.07953629131924, -17.088929171939256], + [-53.090012453405144, -17.08539775478503], + [-53.08471495471781, -17.09511351655973], + [-53.092260778364235, -17.092574324343413], + [-53.087655533042884, -17.0986503870544], + [-53.10217794318554, -17.101390513538135], + [-53.09876565662401, -17.107565173888553], + [-53.10190263222741, -17.11001763495457], + [-53.107570799907535, -17.107216577097628], + [-53.11907192137643, -17.113220067658535], + [-53.11557051041327, -17.11684587661368], + [-53.11907372620714, -17.119028637793726], + [-53.11548993226697, -17.125745831231512], + [-53.12707624317069, -17.144191297533848], + [-53.132181063933324, -17.145470043608366], + [-53.128097947697555, -17.154640988295878], + [-53.13301471166457, -17.155999323032656], + [-53.13546049849361, -17.161638571382312], + [-53.14018123974739, -17.161731912913204], + [-53.142354584639804, -17.171084189107436], + [-53.149736815311634, -17.16782670449686], + [-53.15737711134604, -17.170641515400117], + [-53.156243007261, -17.188627182335928], + [-53.168207001592656, -17.214516880399433], + [-53.16510834860002, -17.220137341386884], + [-53.17115376600014, -17.22205966337018], + [-53.17529290100534, -17.240856706345554], + [-53.18076722946021, -17.244304232306888], + [-53.18587767825592, -17.25765605954278], + [-53.19806718612716, -17.26002435950055], + [-53.19588015515787, -17.27664896469529], + [-53.208626698814975, -17.285003662606478], + [-53.20835586617093, -17.29335902567391], + [-53.21912071129004, -17.299614580041254], + [-53.21657569038486, -17.304442871905614], + [-53.218651446954176, -17.3096189715594], + [-53.21393778946571, -17.30807362917106], + [-53.21024125712141, -17.31242929618329], + [-53.21430023179186, -17.31088491983769], + [-53.21429825793985, -17.31334332119404], + [-53.20879287964947, -17.314568475353813], + [-53.21579384736108, -17.320241941100676], + [-53.213272878169164, -17.32242031544235], + [-53.2175838561001, -17.326950159382868], + [-53.20502848021941, -17.333333556542172], + [-53.202179782570695, -17.34030891155636], + [-53.20674200422261, -17.342668900442206], + [-53.20115541673193, -17.344399439057728], + [-53.200657319652606, -17.352747494410696], + [-53.20379645496668, -17.353752954101505], + [-53.203013165238396, -17.36083318413779], + [-53.20670940272204, -17.36119934664181], + [-53.20320802210502, -17.363644712950933], + [-53.19557582196378, -17.361553282271224], + [-53.196326300345405, -17.36854928877293], + [-53.206905575746205, -17.37028108899023], + [-53.20643319183146, -17.372908363027026], + [-53.20140325485851, -17.37191345334111], + [-53.19687758573319, -17.38045312644427], + [-53.20321741331201, -17.38998320130057], + [-53.20473943759286, -17.383807618932227], + [-53.209542218289364, -17.385624633710744], + [-53.20746582993694, -17.39316141681816], + [-53.213797864811646, -17.39570719598749], + [-53.209074500579, -17.395706596598146], + [-53.20651540337257, -17.401877179797857], + [-53.21540355867039, -17.40515585978221], + [-53.212570204844255, -17.4076925222533], + [-53.21399303422441, -17.412144190365286], + [-53.22051644301875, -17.41323501620049], + [-53.224880567569265, -17.42331688046833], + [-53.22221414990636, -17.42395790227663], + [-53.2294703898353, -17.428396923549485], + [-53.22865826814028, -17.438212870454304], + [-53.23338266088243, -17.440933447808888], + [-53.227319281363094, -17.44547260418234], + [-53.22732179268091, -17.455828354581772], + [-53.22390467518289, -17.458009612287828], + [-53.22638184084832, -17.464631859002527], + [-53.228741540551695, -17.463188225035424], + [-53.22673942576815, -17.466902799749313], + [-53.22882347820127, -17.466089628753615], + [-53.23479343446369, -17.47934783335389], + [-53.23298825840569, -17.480986114738318], + [-53.2361330075424, -17.480980162168564], + [-53.241517288666785, -17.492881605208506], + [-53.23754721339218, -17.498604414628197], + [-53.24341468330041, -17.505610789599373], + [-53.2392419609482, -17.512679031910796], + [-53.24179270110087, -17.511847657869353], + [-53.23976037210378, -17.515959752389158], + [-53.2461515047015, -17.524243779852497], + [-53.24660852862753, -17.53239491566167], + [-53.24302372975021, -17.534059918622926], + [-53.2463538026771, -17.53911583999313], + [-53.245769824023526, -17.54755482580811], + [-53.24106855011425, -17.552847505147504], + [-53.24793937193136, -17.55887373131956], + [-53.24712753048671, -17.564319520291765], + [-53.240574344269355, -17.570632359515447], + [-53.24285044442374, -17.573067824114002], + [-53.239125060459365, -17.580893883303645], + [-53.242187170579, -17.583048689918336], + [-53.238625880311076, -17.589874303975897], + [-53.24282622771008, -17.592474382716496], + [-53.242889989596314, -17.601823777034774], + [-53.24974079716821, -17.60629773116102], + [-53.24646153494093, -17.61095529698703], + [-53.246880880833565, -17.616848446661567], + [-53.25115792189124, -17.6190773319279], + [-53.24721112189934, -17.623101738391693], + [-53.25077124359273, -17.628068131096697], + [-53.250798796132415, -17.644213278770916], + [-53.245576874513546, -17.652866666319426], + [-53.248521498980395, -17.65502005002143], + [-53.24409043943387, -17.656311315799748], + [-53.24482257746914, -17.665386756813607], + [-53.24021186405388, -17.66787161880886], + [-53.24571619351084, -17.672366763476596], + [-53.24002391286995, -17.68031072503553], + [-53.24090844459456, -17.686278822606052], + [-53.24682751672464, -17.690684298483507], + [-53.23909947723695, -17.6948195132556], + [-53.23786014618396, -17.713085454753976], + [-53.22171563874862, -17.723609778693188], + [-53.2195218055754, -17.720547377569176], + [-53.20077288361216, -17.730744229168057], + [-53.19649920346144, -17.736630844569596], + [-53.19827154773436, -17.739652016605188], + [-53.18924401528536, -17.74561563275933], + [-53.187028316091016, -17.752063418925065], + [-53.18293121024549, -17.75019702318644], + [-53.177294875228064, -17.75586427135478], + [-53.175570675388634, -17.765850055367608], + [-53.16857160017975, -17.766262259358815], + [-53.16965436909658, -17.770513948767288], + [-53.16240872932948, -17.782722041756504], + [-53.159591296275885, -17.786838695102947], + [-53.16340453055905, -17.795511816239333], + [-53.15901820388208, -17.804700873301936], + [-53.146632280775734, -17.81730707289378], + [-53.14775287819028, -17.82326922371334], + [-53.1363487401806, -17.837055221969788], + [-53.14296322903471, -17.87166144275303], + [-53.14043936797292, -17.877116983813078], + [-53.132794105094824, -17.881438534184543], + [-53.13268004072855, -17.891329654611678], + [-53.12755401212332, -17.900017584533533], + [-53.13139395762055, -17.916898095725223], + [-53.10043173134777, -17.936815918754785], + [-53.0859362510998, -17.961948050804153], + [-53.07696136823408, -17.96863596756303], + [-53.069994232339184, -17.985911059674972], + [-53.07222698370353, -18.03397472389026], + [-53.15045142730155, -18.039928152307862], + [-53.15565103667932, -18.040255383975786], + [-53.17372487661464, -18.04155942363077], + [-53.176742371476834, -18.041580429361044], + [-53.19048877285853, -18.03629834490209], + [-53.19874093410637, -18.020305926700622], + [-53.20509879859028, -18.021893275348027], + [-53.21754452721258, -18.013569201931666], + [-53.2377132646614, -18.00744308650345], + [-53.29912326710615, -17.99548224178989], + [-53.33229558809004, -18.001557699341667], + [-53.33562389414715, -18.00690764349747], + [-53.342544156912105, -18.008290966365518], + [-53.36018887061468, -18.006027311774837], + [-53.38072026709225, -18.008757477074752], + [-53.40565742160039, -17.992049340335935], + [-53.41121584353799, -17.99322274948347], + [-53.41258171530257, -17.988490940284592], + [-53.417828660157056, -17.994796697617023], + [-53.42127608259257, -17.985789547387746], + [-53.42552297829384, -17.989289563904297], + [-53.43015801590951, -17.987815245463175], + [-53.43035722391126, -17.983991457870204], + [-53.436437384340216, -17.986746743707275], + [-53.43896629447245, -17.983927133680545], + [-53.44055526059122, -17.989342595977458], + [-53.44587912056314, -17.989177205184212], + [-53.44591502237936, -17.9934073446198], + [-53.45026851507474, -17.992578622257497], + [-53.449135965977355, -17.998809332728058], + [-53.45724332492816, -17.999699559740474], + [-53.458239768306896, -18.016932385744287], + [-53.46357921490314, -18.02530524181838], + [-53.46632834966249, -18.024350656236972], + [-53.4677991915897, -18.03489365247917], + [-53.47252757037595, -18.039149295385787], + [-53.47649244787297, -18.036254527191], + [-53.48602020014792, -18.04040082132185], + [-53.49907591897946, -18.03590782412773], + [-53.50182622279049, -18.028145085683533], + [-53.513493749813826, -18.026945174962854], + [-53.51782578894091, -18.020648881623245], + [-53.52899504176993, -18.021580787282367], + [-53.54749409211954, -18.014558871790776], + [-53.55594060244235, -18.01549638208135], + [-53.557186176176614, -18.005655839031647], + [-53.56494136429904, -18.004559440999028], + [-53.57496806712734, -18.012651612906538], + [-53.58399478456354, -18.009817141863245], + [-53.58949357083216, -18.01261251623192], + [-53.589104170582324, -18.005011600577316], + [-53.606943649428366, -17.995490706267873], + [-53.612495019917745, -17.97803390287146], + [-53.61607913422563, -17.97618979431353], + [-53.616193556949334, -17.97872881989634], + [-53.62396790787043, -17.97765988315865], + [-53.62843821080517, -17.980434086520862], + [-53.6345522776521, -17.97684983533561], + [-53.66119411421568, -17.97751354703151], + [-53.66241475914429, -17.98602384844184], + [-53.67488657503197, -17.991550165097127], + [-53.67769591834628, -17.98979486426968], + [-53.67899742492333, -17.995315548518242], + [-53.69030517275976, -18.002482398927075], + [-53.69213650378904, -18.013677758969674], + [-53.70052584664402, -18.005821535841655], + [-53.71566277082316, -18.00628709949591], + [-53.71552111875063, -17.99980885204572], + [-53.71924418085871, -17.998071455156527], + [-53.72675102441448, -18.00347425397113], + [-53.733770588950286, -17.995336341534586], + [-53.74038765019619, -17.99664546554423], + [-53.77416585553582, -18.00077167076205], + [-53.78641128856802, -17.994125918007214], + [-53.78922197891135, -17.98077530618725], + [-53.793941796747454, -17.98072618214432], + [-53.79313782794662, -17.974662846521177], + [-53.79743732450384, -17.978787352173235], + [-53.7981336748964, -17.974161260716702], + [-53.80430714406559, -17.974196516232578], + [-53.80546619966313, -17.967564187829705], + [-53.8085577158891, -17.972248306277194], + [-53.81310845903623, -17.963958620525464], + [-53.80860850311068, -17.961007905535272], + [-53.81919287712759, -17.95837082343617], + [-53.82141801738038, -17.962058273053305], + [-53.825418185918465, -17.955041712757133], + [-53.82411132647299, -17.948706072615632], + [-53.83077188416972, -17.94284014039634], + [-53.8355576553199, -17.946938039337596], + [-53.83750014096531, -17.934704426191715], + [-53.84268784260804, -17.94000505392173], + [-53.8446086812438, -17.933553773798202], + [-53.850497620447726, -17.9346706248163], + [-53.85033227965063, -17.929229587198808], + [-53.86041639667262, -17.924602131548365], + [-53.860003801614596, -17.92116128048865], + [-53.87010857017766, -17.927400711504767], + [-53.87263428798516, -17.91686659393104], + [-53.87541713491351, -17.91882991927746], + [-53.873271152458884, -17.922476888760762], + [-53.87688624443553, -17.92353090398514], + [-53.88538828550391, -17.91328673391672], + [-53.89849902433224, -17.908804519712863], + [-53.90508418940775, -17.9130904952819], + [-53.9012503624793, -17.916848977903328], + [-53.91124648553176, -17.91429599285523], + [-53.91547279089419, -17.91824622066102], + [-53.920164511030485, -17.916024682398564], + [-53.92230513433576, -17.92016543210895], + [-53.93235944377464, -17.913176060507602], + [-53.93850109411692, -17.920089058040055], + [-53.94555337297791, -17.916758137464612], + [-53.94886327127056, -17.923426037502484], + [-53.95161189095966, -17.915793002806478], + [-53.944611533860936, -17.90734058899394], + [-53.95107830039994, -17.9031961336446], + [-53.94771990778801, -17.89878521502674], + [-53.95569810070933, -17.88302184438958], + [-53.952272945229225, -17.87516859608384], + [-53.954972567044344, -17.87124619217334], + [-53.946634693857824, -17.86044797515711], + [-53.94819178557843, -17.85608442428079], + [-53.94158418039235, -17.848628538122426], + [-53.941113325435964, -17.840206724448556], + [-53.91030121689532, -17.80388796476862], + [-53.907223915789004, -17.79032197994807], + [-53.895442443106575, -17.777027024320386], + [-53.896418228309585, -17.76931147118278], + [-53.88832927186998, -17.748994909441684], + [-53.87982928290767, -17.741281898678945], + [-53.87696933164552, -17.73188436626018], + [-53.866245306507075, -17.72718621897397], + [-53.860884788971845, -17.720714141191802], + [-53.85585718969086, -17.702719487619234], + [-53.84363745716014, -17.69268999650615], + [-53.813354988713286, -17.681457961305583], + [-53.8062766093375, -17.67237335909947], + [-53.798775261985334, -17.670537073239917], + [-53.793717152149064, -17.67521299925059], + [-53.78543751417524, -17.676371481244644], + [-53.77941381902475, -17.672441693729084], + [-53.75691453196707, -17.6734623209256], + [-53.75774674086274, -17.671377108709574], + [-53.74669212522967, -17.67129088320369], + [-53.73363169273091, -17.662977447162206], + [-53.7184670278615, -17.66865032006786], + [-53.70455563561256, -17.663511443438217], + [-53.68208869286587, -17.29184917726466], + [-53.68002243790417, -17.253572112658553], + [-53.69240566708664, -17.246465999320197], + [-53.69444318108308, -17.233986414773103], + [-53.70509249066813, -17.228156281108674], + [-53.73487531461386, -17.231568990760803], + [-53.74696228005468, -17.24264331140222], + [-53.75902582318727, -17.24314517968719], + [-53.76277420377303, -17.24660397427771], + [-53.76421597126815, -17.258277917163607], + [-53.77107607742302, -17.263654843308007], + [-53.785660739326985, -17.287517813166126], + [-53.80658443527807, -17.287963802429438], + [-53.820020188458244, -17.294618434319663], + [-53.826080319527826, -17.312658905091208], + [-53.83065713404178, -17.317287265976255], + [-53.83491045398193, -17.335763224526723], + [-53.83127086751361, -17.35502315312338], + [-53.86833115978569, -17.368380389642745], + [-53.878386367231144, -17.37520142535261], + [-53.88793621245063, -17.39260864718726], + [-53.914548155242365, -17.414417470740332], + [-53.91949596463444, -17.42520889086692], + [-53.92851919448884, -17.431212860960148], + [-53.93104813485008, -17.439453263846953], + [-53.94788372914664, -17.452081967115596], + [-53.95219430462778, -17.459340390948707], + [-53.97121930805809, -17.465821670707207], + [-53.972997711822764, -17.472247075603846], + [-53.97778066619503, -17.470350225882818], + [-53.98404869218661, -17.473820481121283], + [-53.994941870237476, -17.468398882277963], + [-54.02859431651897, -17.47957029981067], + [-54.03758537196779, -17.486452071314627], + [-54.041193783371995, -17.500526845983856], + [-54.0486066590031, -17.505477537273688], + [-54.0464978590121, -17.507437829781757], + [-54.05191192519485, -17.505702597713032], + [-54.05802469265684, -17.5131325973193], + [-54.057716380830904, -17.52082728541862], + [-54.053140259870226, -17.523205778528872], + [-54.055413610190726, -17.529303191135757], + [-54.0493572252469, -17.529946289091004], + [-54.04585565199683, -17.53723059322707], + [-54.05202712802234, -17.546200376847164], + [-54.05158069924728, -17.56277327407156], + [-54.05524624987302, -17.570344879080146], + [-54.07321701878841, -17.587804535501952], + [-54.072608265956404, -17.596769672193755], + [-54.07938658523208, -17.60474532879485], + [-54.07698560827126, -17.615014069515304], + [-54.08464019834865, -17.619038023332923], + [-54.09680254785071, -17.613591377117924], + [-54.11191370728368, -17.613530130845433], + [-54.113829721694984, -17.618815630656027], + [-54.116691344594756, -17.61595879607592], + [-54.11855149907501, -17.619146271404546], + [-54.12289026857629, -17.61322637676492], + [-54.134134914012144, -17.61872975743372], + [-54.14125289812577, -17.610673412690005], + [-54.146664619182474, -17.615008261937735], + [-54.154164454306866, -17.605875963307735], + [-54.168111731003094, -17.60823189338707], + [-54.17878043693819, -17.60285465941369], + [-54.19336097888499, -17.606130743444236], + [-54.19977704522008, -17.61455615406849], + [-54.204608644844605, -17.61280559679512], + [-54.21394332742809, -17.620178496684325], + [-54.222167890401806, -17.61992638869392], + [-54.23286080894077, -17.626770994099292], + [-54.24369143668266, -17.628908353004327], + [-54.25030444941459, -17.640501404663556], + [-54.273691432428244, -17.651503370190945], + [-54.27252459910581, -17.653293964003105], + [-54.28827622139046, -17.655675884466913], + [-54.29192006495551, -17.653005135748884], + [-54.302368048616835, -17.661664145644753], + [-54.3092243708216, -17.658851702381924], + [-54.3199442984935, -17.662341190504197], + [-54.32083560955302, -17.659537019631127], + [-54.32775189594629, -17.658812780524226], + [-54.33553250209416, -17.66172711724927], + [-54.3433903999855, -17.655577797786627], + [-54.35052757749213, -17.65711027465636], + [-54.35642017514289, -17.64921199727484], + [-54.3568313728222, -17.65176008436517], + [-54.38447594112366, -17.63615683623649], + [-54.38774623078816, -17.63194095173774], + [-54.38260941689632, -17.62734210924519], + [-54.37436432505355, -17.608581816160772], + [-54.38252061170565, -17.606236034006326], + [-54.38144317030838, -17.601050089571263], + [-54.384551993765996, -17.60136843865038], + [-54.38013799866071, -17.594158721291492], + [-54.38628204410747, -17.585988017917437], + [-54.382108256178036, -17.57279471928617], + [-54.39197657019656, -17.570560912017473], + [-54.393087795666894, -17.566051931980343], + [-54.398809405994655, -17.56738585316039], + [-54.4036618130156, -17.564547100129364], + [-54.40588964853658, -17.553609910911696], + [-54.41366505534125, -17.551533815578683], + [-54.41394495125957, -17.544556216908845], + [-54.423160110650585, -17.536458373329108], + [-54.431785490122785, -17.53814836535654], + [-54.43399748583116, -17.534837549534775], + [-54.466862166331715, -17.529078942320414], + [-54.47755679180374, -17.513531032348066], + [-54.473339041202074, -17.51030561150105], + [-54.479500583953744, -17.5078432041643], + [-54.47417719919993, -17.49799764024399], + [-54.483003642981636, -17.493973798381216], + [-54.48125639029669, -17.48766963733172], + [-54.490890208995545, -17.488621908364042], + [-54.503699426076274, -17.480114869103872], + [-54.52514446177913, -17.48204809164296], + [-54.53087910010639, -17.47839079665844], + [-54.536279179513855, -17.477590261491738], + [-54.55413560549675, -17.488673562099482], + [-54.56299386674424, -17.479180771787583], + [-54.56897602617944, -17.483028990434633], + [-54.57094492636717, -17.480357988295022], + [-54.567970704408914, -17.474312956719768], + [-54.5722754610905, -17.47559174973404], + [-54.58160991966509, -17.46801223695861], + [-54.58856087934717, -17.477127218643105], + [-54.60736597216854, -17.487135805167725], + [-54.617283279789454, -17.49042927974193], + [-54.62056103826359, -17.488244343149915], + [-54.63602787747516, -17.495729805021217], + [-54.654943681487744, -17.490165183431415], + [-54.65667499350054, -17.496909522578747], + [-54.6693929285102, -17.504239651599274], + [-54.67670048263089, -17.501532426982028], + [-54.681258090640505, -17.50685561281786], + [-54.69547399395103, -17.50352669254143], + [-54.699670011695545, -17.497386286218497], + [-54.700532883137534, -17.50631878731398], + [-54.715414385587884, -17.513148553863832], + [-54.71875160941336, -17.518370414970235], + [-54.7300325200072, -17.515537497486374], + [-54.739667415765425, -17.520477342508116], + [-54.750312769245994, -17.523443292316458], + [-54.75694997991879, -17.534500193080724], + [-54.75592438263165, -17.54518323356797], + [-54.76211812036008, -17.55442198541056], + [-54.75694651916022, -17.55860773655065], + [-54.76010938045897, -17.56037548268603], + [-54.75872808588624, -17.565702256261584], + [-54.765924016562174, -17.568214239998028], + [-54.7787609954452, -17.571424828833514], + [-54.791532866534006, -17.582297157724728], + [-54.800701379816275, -17.582602701490796], + [-54.813170018853825, -17.594290600738645], + [-54.82125801397933, -17.59739220992047], + [-54.820144970162374, -17.60335877910594], + [-54.82495143358151, -17.609681989817627], + [-54.83905517071106, -17.61394748882242], + [-54.851533484559866, -17.613039453902935], + [-54.86081102716256, -17.62385968217653], + [-54.880583757488125, -17.616876505755425], + [-54.894776072427696, -17.62152332643089], + [-54.902115771634215, -17.61156018077382], + [-54.91425468253628, -17.60845709349995], + [-54.93067014953171, -17.610947171603932], + [-54.94337156555434, -17.609034916319253], + [-54.94828423200178, -17.615353533902653], + [-54.966978506303604, -17.615599024317163], + [-54.96633797289756, -17.62094143886233], + [-54.97422268230453, -17.617054105140145], + [-54.981420645413394, -17.628754016915856], + [-54.98489028205327, -17.62408319255871], + [-54.989113315617935, -17.63301775167534], + [-54.992731643720454, -17.63298062092538], + [-54.99178131176327, -17.63840594375059], + [-55.010700390707704, -17.62934714886365], + [-55.01122846649291, -17.634484004506366], + [-55.016261697330116, -17.629817296188918], + [-55.01889999497364, -17.63632548032063], + [-55.02298098012899, -17.634768565892426], + [-55.023008301111155, -17.63793941921951], + [-55.02695705508699, -17.636328902938622], + [-55.03200355841335, -17.640509790591604], + [-55.03342092014622, -17.638038762836686], + [-55.04294698523181, -17.639316678642366], + [-55.04470179396769, -17.636397508284997], + [-55.04725948511624, -17.64033999555398], + [-55.055147590389815, -17.638646551735356], + [-55.056421843465, -17.642396111313392], + [-55.06245044342618, -17.639058180169805], + [-55.063762429910135, -17.642466897131236], + [-55.07259533182214, -17.63163965416248], + [-55.07714199088264, -17.630522687828133], + [-55.0798990240107, -17.633497897706874], + [-55.08728431730993, -17.62992506232054], + [-55.09331338581309, -17.63604393435425], + [-55.097450872997115, -17.63178403229545], + [-55.096651274269725, -17.627649094623372], + [-55.10053009417124, -17.631115543364565], + [-55.10870482161115, -17.628667680171827], + [-55.11383925911272, -17.64397031192967], + [-55.118034671557965, -17.648841172767657], + [-55.127203098069025, -17.652729593014286], + [-55.13703465965027, -17.65019517136549], + [-55.138991953713756, -17.647779965271166], + [-55.14358515636954, -17.644631290331116], + [-55.141950397589454, -17.639294508782157], + [-55.15406474160771, -17.64303542955283], + [-55.16301187360878, -17.642177990728438], + [-55.16642014016637, -17.637297683362895], + [-55.1705611152529, -17.64084152438253], + [-55.17167392779269, -17.63805251020961], + [-55.16675839100575, -17.6342151523423], + [-55.175676590796115, -17.634929216084817], + [-55.17401761374781, -17.63063899889997], + [-55.1806596968646, -17.623207950643618], + [-55.18487078576104, -17.624223428036675], + [-55.183842237041915, -17.61981297761635], + [-55.19220187928848, -17.62825354151577], + [-55.19542487478045, -17.618720613593297], + [-55.203446857321694, -17.61795011971604], + [-55.20475709019391, -17.61376764663498], + [-55.22144671514332, -17.617107036278778], + [-55.225617363961206, -17.609330314549087], + [-55.21908588355892, -17.613246160473864], + [-55.218087360387784, -17.607524949979677], + [-55.22717657247998, -17.59885150589726], + [-55.2280900469863, -17.601437599575632], + [-55.2318661529887, -17.595586488990385], + [-55.23655700716044, -17.595855331216015], + [-55.23817491574677, -17.60086882704206], + [-55.24328465112022, -17.59431447736164], + [-55.24248077633641, -17.602131824446428], + [-55.24922715742704, -17.595343007690705], + [-55.24486740279622, -17.59142188788593], + [-55.252341749353036, -17.592318730954347], + [-55.25025657188585, -17.584884593503485], + [-55.25803342910216, -17.57439154671107], + [-55.26408700455194, -17.577929397559235], + [-55.267035716702026, -17.566039496253634], + [-55.2630060858135, -17.564844787807093], + [-55.26914812057029, -17.55678279249334], + [-55.27120570325218, -17.560076805753273], + [-55.275095757291076, -17.55883408435684], + [-55.27416894682864, -17.564496877981597], + [-55.28073033825998, -17.562962223670652], + [-55.28273649643576, -17.557445998247978], + [-55.289508700924834, -17.5603207869762], + [-55.28378156935159, -17.55216543574042], + [-55.29648153913903, -17.55112342041161], + [-55.29261451824872, -17.542557770163327], + [-55.29962175033299, -17.541201210404097], + [-55.31586674969069, -17.54600108577285], + [-55.32245012732416, -17.542441466159133], + [-55.32959655791617, -17.54844699125286], + [-55.324145705050526, -17.550119428279714], + [-55.3240350495776, -17.553037971419354], + [-55.337814680982355, -17.54524808212668], + [-55.33940222092782, -17.548515588838445], + [-55.35061967354806, -17.54856686175138], + [-55.35370668621142, -17.531625404592212], + [-55.35856478121211, -17.526471189199132], + [-55.37184941280188, -17.522686991070373], + [-55.37706004889146, -17.5150511870763], + [-55.38228183242754, -17.52548450292084], + [-55.3865665606777, -17.519113253931277], + [-55.39067906760554, -17.521323840671318], + [-55.39337098294501, -17.516066576286473], + [-55.405151200281956, -17.512405508873663], + [-55.41631030053914, -17.51492690763711], + [-55.42253365806828, -17.5135301615867], + [-55.423287869681495, -17.509891615265055], + [-55.43267143112128, -17.511748221412354], + [-55.443866585422214, -17.50568272192342], + [-55.44368410583176, -17.511785011169202], + [-55.4538455670075, -17.50769207941537], + [-55.45373297273883, -17.500405915963025], + [-55.45845350440555, -17.499700173584298], + [-55.45864339737879, -17.493996201583982], + [-55.47258880555924, -17.48136548009916], + [-55.47672882387221, -17.48428045954614], + [-55.48299019854587, -17.478694835852405], + [-55.49004030798825, -17.485147712956813], + [-55.49315519754661, -17.483436091281526], + [-55.49756539215006, -17.486527434554453], + [-55.499288773083805, -17.483000633962508], + [-55.504288254020466, -17.48652095915207], + [-55.50447910557874, -17.480990459446875], + [-55.51497955199464, -17.4836305756165], + [-55.5240359249006, -17.481185749090436], + [-55.52214418883893, -17.472112257476542], + [-55.527067346772085, -17.472111578694935], + [-55.53320608684745, -17.466500151635756], + [-55.53697839464361, -17.468493514432037], + [-55.538507983429376, -17.461056713624515], + [-55.543513451556606, -17.46069189387419], + [-55.54268471233517, -17.4565242501844], + [-55.55731579624922, -17.451904845958808], + [-55.55581255999157, -17.44782383828202], + [-55.54956494576282, -17.448091113951225], + [-55.5596772162364, -17.43966413227474], + [-55.57481925000672, -17.434675546410283], + [-55.57737209574938, -17.424159346593864], + [-55.57528553127519, -17.418809485432693], + [-55.58245923695927, -17.419087841239442], + [-55.58539741832243, -17.422533076268397], + [-55.58858827624246, -17.41382637771382], + [-55.58654045259629, -17.40339092179768], + [-55.57981757328539, -17.400852725017568], + [-55.58654292435556, -17.398224190978013], + [-55.58359083190087, -17.395411339250057], + [-55.58586806195112, -17.38861060560856], + [-55.58285367557046, -17.379080573371898], + [-55.5892898418706, -17.37836561569676], + [-55.58555548102083, -17.37362687994741], + [-55.593233947637856, -17.374368870226515], + [-55.60216922462932, -17.367702731618458], + [-55.61336786222835, -17.359861825851862], + [-55.613731842749985, -17.3681165346362], + [-55.626286198287914, -17.364039631930556], + [-55.6358411293499, -17.353058538850963], + [-55.63706883473947, -17.342543624006183], + [-55.64302260199285, -17.33937955266012], + [-55.645177487449274, -17.341637168529328], + [-55.638871997260615, -17.3498000958036], + [-55.64078688248319, -17.356164107264288], + [-55.646147179392635, -17.359415167642545], + [-55.65595215882274, -17.34636271982237], + [-55.6565136699671, -17.338272179856112], + [-55.668051468048766, -17.35069725347128], + [-55.67275727055042, -17.348976158818584], + [-55.6751300039029, -17.340355645308893], + [-55.68059519797917, -17.338994756263638], + [-55.68231894660506, -17.349430781025273], + [-55.686179498879746, -17.35088052615685], + [-55.68920870057835, -17.340449698427083], + [-55.69317496369475, -17.339900469990802], + [-55.701293094952014, -17.354139810397868], + [-55.70904377462841, -17.337625982515398], + [-55.72281484735295, -17.349227394788077], + [-55.729818740707564, -17.339885510891925], + [-55.74020814697069, -17.337157241431434], + [-55.74395426411616, -17.331353116155405], + [-55.751424953341285, -17.330438956344096], + [-55.76115287179936, -17.323542610576354], + [-55.768710916504595, -17.325799138045245], + [-55.772486125908415, -17.33206024300445], + [-55.78059693800659, -17.321438039097146], + [-55.78448742040275, -17.324701048073244], + [-55.7843679518864, -17.330057192746242], + [-55.80495727587996, -17.30945074819962], + [-55.80247803731326, -17.30129098176756], + [-55.806454212022096, -17.29802090104671], + [-55.82090021895265, -17.297709772487362], + [-55.82798559115626, -17.306614927644986], + [-55.83168097599242, -17.301621852568637], + [-55.82626739065783, -17.288837792660676], + [-55.835041819611966, -17.29136802944413], + [-55.8382630993254, -17.300523932039575], + [-55.841866356631556, -17.3012432551037], + [-55.85045656072669, -17.290350523137757], + [-55.85136928666701, -17.279285417184422], + [-55.85817540528307, -17.283540682475984], + [-55.87475726919766, -17.268646049370574], + [-55.87987242145707, -17.27335888389837], + [-55.87545118600983, -17.280615583771542], + [-55.88650832699586, -17.284775921153596], + [-55.89159452950902, -17.280869800687647], + [-55.89082090380254, -17.27234401552284], + [-55.89982650356997, -17.277045852012076], + [-55.89970505218695, -17.270154102213713], + [-55.88648353167272, -17.266731860667477], + [-55.88648397352436, -17.263910372713358], + [-55.9165906565723, -17.26505452982268], + [-55.92628658271288, -17.257871294381033], + [-55.9313134856284, -17.264669843329138], + [-55.93142769235466, -17.27382391691717], + [-55.938154588410576, -17.27852956450363], + [-55.94614996432612, -17.272515986269347], + [-55.95576381197804, -17.256465228672198], + [-55.951870449749165, -17.250209980821914], + [-55.96010072569356, -17.25020225132814], + [-55.96812230382743, -17.254721805406202], + [-55.97387344691358, -17.253616945805437], + [-55.98075974664494, -17.246711737234303], + [-55.98690434855906, -17.25849199951802], + [-55.992202207300195, -17.254585104311225], + [-55.98735750841636, -17.243818138849168], + [-55.99086693993006, -17.24022156539822], + [-55.99567819122239, -17.24078625775514], + [-56.00045675358177, -17.246255071826575], + [-56.00378788897575, -17.244803152987977], + [-56.00370612729595, -17.233741724193653], + [-56.01073140408107, -17.23905516992326], + [-56.01198374283329, -17.23669367298355], + [-56.012650729468135, -17.222659895617852], + [-56.00857358568978, -17.2142022686853], + [-56.01309246377986, -17.213959425684838], + [-56.01732198345959, -17.218331557760376], + [-56.0209007139034, -17.21601266036986], + [-56.0185158006684, -17.209470042192194], + [-56.00545620382631, -17.20420871354093], + [-56.016013429356164, -17.19024073381495], + [-56.03237625661144, -17.185369701282927], + [-56.04567718458488, -17.170966435638032], + [-56.04946191538636, -17.17244619841828], + [-56.04718403312291, -17.184832707449196], + [-56.05093014003176, -17.186960324136738], + [-56.06001003654402, -17.171705879744085], + [-56.06773400590812, -17.17475168790772], + [-56.07154609236574, -17.170633395187636], + [-56.084407914928114, -17.177676135978064], + [-56.10203736268223, -17.174090702905442], + [-56.113900579857244, -17.166643070143323], + [-56.12078987524778, -17.17566476669118], + [-56.12534323808169, -17.174333672446267], + [-56.13320629268344, -17.18055506272796], + [-56.14009529646885, -17.17951592905901], + [-56.13635299601202, -17.189192045067823], + [-56.13981593724536, -17.191204404661345], + [-56.14523353880579, -17.184898703869333], + [-56.15267541367737, -17.185487775088536], + [-56.16329355838497, -17.194708158217637], + [-56.17076226405274, -17.188688699393335], + [-56.17704278524541, -17.195982625160696], + [-56.185377911720906, -17.1892453464971], + [-56.18909547606217, -17.210381092018103], + [-56.198100086064926, -17.20618434228021], + [-56.205405352190226, -17.214114399241026], + [-56.21296089566006, -17.210627263712723], + [-56.208711583900445, -17.22728212856757], + [-56.222898303738134, -17.21930518462856], + [-56.22087650009682, -17.228803657648], + [-56.2336762965477, -17.227350124721085], + [-56.2378758001309, -17.2222088004603], + [-56.25129076583649, -17.219036203908615], + [-56.25492355874072, -17.222494706882067], + [-56.252236841442425, -17.234176978823534], + [-56.25904223940951, -17.229323965861276], + [-56.262347326543086, -17.231246373746785], + [-56.25649413946267, -17.243804890644405], + [-56.26898711147563, -17.239805154282763], + [-56.27262888691739, -17.243087973980707], + [-56.268072445625954, -17.248140976070093], + [-56.28337465901975, -17.246685778345707], + [-56.28712600429802, -17.248982807272004], + [-56.2800665838318, -17.259176235436605], + [-56.286516180576406, -17.27045342640162], + [-56.29490700165219, -17.271325829691644], + [-56.29779588603374, -17.276601383295006], + [-56.30658193300732, -17.273005402598454], + [-56.313487036680264, -17.269442458239652], + [-56.323182907680405, -17.276201263725216], + [-56.32320932726047, -17.285728919628365], + [-56.33493283357307, -17.282439046660425], + [-56.3358197303763, -17.289962019682676], + [-56.35165355858092, -17.277550625269043], + [-56.350268629731644, -17.274551907643982], + [-56.34345994965709, -17.27595690070592], + [-56.34290595596493, -17.2730558805353], + [-56.35662550466208, -17.267063492546292], + [-56.36243131516614, -17.27171682305684], + [-56.360600919581934, -17.2808579466045], + [-56.383012355922894, -17.287972162934974], + [-56.388876148751606, -17.301960045343595], + [-56.402797311577935, -17.30630125663488], + [-56.40804169495439, -17.316116198499486], + [-56.41265199594732, -17.316953785891986], + [-56.41721099142824, -17.311636812596706], + [-56.43254541901289, -17.31860153219918], + [-56.44407009961929, -17.33162642106976], + [-56.45082375499367, -17.326405687863954], + [-56.452319820577436, -17.31018973027769], + [-56.46390852453032, -17.315681738200468], + [-56.467463668786344, -17.30229359956929], + [-56.471128282411755, -17.303396081983845], + [-56.47307107864927, -17.31002540577569], + [-56.49004427943887, -17.298330277167445], + [-56.49815632608769, -17.29872520514965], + [-56.501714869223115, -17.286339795454854], + [-56.50801799393189, -17.295298765472573], + [-56.51540446070838, -17.292839140792683], + [-56.50599088144538, -17.306058965380345], + [-56.511629656498975, -17.306485066095753], + [-56.513819487162564, -17.312837167206975], + [-56.52207315675099, -17.31059839487802], + [-56.52590304507302, -17.320518475429957], + [-56.528627383350994, -17.32091751694817], + [-56.53232028805622, -17.31297835325874], + [-56.55096171547036, -17.322890917828705], + [-56.57110891751491, -17.315316403187843], + [-56.579299419322304, -17.3203175749655], + [-56.574883400490485, -17.328147491267607], + [-56.57651606994146, -17.331069676677934], + [-56.58485392938873, -17.329262387255728], + [-56.5958384535782, -17.33255925047706], + [-56.60562912036801, -17.328770534359776], + [-56.611798562152615, -17.331923161373563], + [-56.61671823372919, -17.32382242983641], + [-56.624964420547016, -17.322100518602436], + [-56.62851441473974, -17.323777438958953], + [-56.6303848364127, -17.334216098865586], + [-56.64074296775384, -17.32699318957038], + [-56.647384052725855, -17.317002288515884], + [-56.64982878721153, -17.324191239578564], + [-56.64229058680448, -17.330539647846717], + [-56.645408962395344, -17.339362801973262], + [-56.656657392179184, -17.32145673043913], + [-56.662632901859496, -17.32677509861356], + [-56.65557893951447, -17.33340551340263], + [-56.66352117971418, -17.338844889691615], + [-56.67379338801702, -17.333426141611046], + [-56.67388213132781, -17.32526319452649], + [-56.683127526213326, -17.316581713140394], + [-56.69585619848076, -17.326954188082226], + [-56.6918785603443, -17.318125557410152], + [-56.71349002454511, -17.31881032200464], + [-56.720605082781056, -17.307555423849607], + [-56.73380028151278, -17.30987580154317], + [-56.73679378769968, -17.32175442707886], + [-56.743408139245744, -17.32735837025494], + [-56.75774055565697, -17.326708666740878], + [-56.75715735228137, -17.33685579376835], + [-56.76882068208896, -17.340874507672858], + [-56.76943868961563, -17.343871024764386], + [-56.76085279148767, -17.35166420377548], + [-56.76282245902294, -17.36065495412586], + [-56.77142291382585, -17.36588452556156], + [-56.78669551278866, -17.37052078711526], + [-56.789348873233216, -17.37688920875331], + [-56.785934029045116, -17.387542337417244], + [-56.7909758273688, -17.391081822719727], + [-56.80435742115542, -17.38664392903921], + [-56.828658217585584, -17.389976369894253], + [-56.831300727835085, -17.409752966549032], + [-56.84196430290584, -17.418205490420515], + [-56.834242124416754, -17.4234684448982], + [-56.82435330282596, -17.423094999721098], + [-56.81954798201263, -17.430212646331306], + [-56.822666209032654, -17.437579317406755], + [-56.828129890714344, -17.438539971431094], + [-56.83318794510285, -17.435057103773996], + [-56.84085624671733, -17.442024736551225], + [-56.82543602123491, -17.45310264540626], + [-56.825358928898105, -17.458907755726397], + [-56.83211194967917, -17.463685252884616], + [-56.84776939861784, -17.46402258141396], + [-56.849888162798294, -17.47075298103534], + [-56.8459915477942, -17.480595041304074], + [-56.85018526573737, -17.48679747329742], + [-56.86191105342565, -17.48392311732468], + [-56.866601897689605, -17.49548222472044], + [-56.861416933510355, -17.50522575176235], + [-56.86655133442217, -17.515476813444756], + [-56.870490289591054, -17.516214250250204], + [-56.87591405197633, -17.532988438270642], + [-56.89571865449319, -17.539399632313813], + [-56.909522874338805, -17.53256283778402], + [-56.917491107744326, -17.541371532759694], + [-56.944907544781664, -17.552966164116313], + [-56.950325948912806, -17.56865151876551], + [-56.96674660012965, -17.571420904249006], + [-56.97343924339159, -17.58040106330193], + [-56.982302452149696, -17.580249766766595], + [-56.9781018581788, -17.589878959929372], + [-56.97590940600503, -17.595977886656325], + [-56.98233332709636, -17.60387764433576], + [-56.98135783427825, -17.61103229027599], + [-56.97275082135264, -17.61362577803798], + [-56.96049359998755, -17.605172276584824], + [-56.957941745529645, -17.60805347801719], + [-56.964693928277164, -17.621754102120217], + [-56.98379692420804, -17.641909895049828], + [-56.98816601708958, -17.65930681223762], + [-57.00038192836078, -17.670738631716198], + [-57.00955131273813, -17.67048158339496], + [-57.01402236857754, -17.676144220936248], + [-57.01952404813993, -17.685131092806976], + [-57.01921680938002, -17.692183443014656], + [-57.033323909835914, -17.694758141896887], + [-57.04486164595824, -17.73033832970442], + [-57.05010532558345, -17.732674801752452], + [-57.05666368535294, -17.72951356296479], + [-57.06414230687735, -17.735064676201056], + [-57.07385917752696, -17.7354806339276], + [-57.07977169610766, -17.749151474840097], + [-57.09211571333543, -17.752416660801405], + [-57.09852789438517, -17.770434870347234], + [-57.11355619935812, -17.77174108766054], + [-57.115554955427356, -17.781103664640696], + [-57.146691276961086, -17.76752264297395], + [-57.155887120897226, -17.778429436308425], + [-57.17479866641267, -17.776256371461997], + [-57.200583665895664, -17.788841515321653], + [-57.21582004943015, -17.78798946709877], + [-57.22708460850259, -17.782802695839894], + [-57.228025331718946, -17.790320029830337], + [-57.23503135111629, -17.788349349116004], + [-57.24291545584729, -17.797602545314774], + [-57.25197095257571, -17.79347414279479], + [-57.245413826851376, -17.806332802051028], + [-57.234060472781, -17.808161893627343], + [-57.232580391780964, -17.812402074401355], + [-57.252559356905515, -17.810780105127773], + [-57.26478297767042, -17.82036784879002], + [-57.28372012637077, -17.812931079383777], + [-57.283277695746975, -17.82271228531356], + [-57.293443544405, -17.81995104015044], + [-57.28814106499354, -17.814174279255955], + [-57.289969719629966, -17.811572009893865], + [-57.29971624891229, -17.816866961000816], + [-57.30803134778206, -17.810825714965453], + [-57.31133176749346, -17.81784297873863], + [-57.32474722537549, -17.824546965161705], + [-57.32517366442463, -17.829169297408598], + [-57.34130576897577, -17.83065308218353], + [-57.342358812107065, -17.8360134859132], + [-57.34663709220761, -17.834164712412903], + [-57.353403746833415, -17.837877132835555], + [-57.36310084032748, -17.833579300811344], + [-57.36802805678116, -17.826217971745166], + [-57.37739554892786, -17.826202746464347], + [-57.38563375254248, -17.844291793073065], + [-57.391310329640646, -17.845537766456673], + [-57.39846844193259, -17.839385791937232], + [-57.40052574954289, -17.847841714676985], + [-57.40969951135566, -17.85393429825417], + [-57.41069739324836, -17.858112163762677], + [-57.42168427849994, -17.85421751512463], + [-57.438581747784895, -17.871517310425954], + [-57.44667274914768, -17.874523329060032], + [-57.44586716126861, -17.891987513711864], + [-57.452416446250005, -17.902662668240392], + [-57.461883155553885, -17.898555116237603], + [-57.47761647586324, -17.87890151410759], + [-57.47753323899179, -17.859072693596843], + [-57.511279451985374, -17.86391829327278], + [-57.534724297549296, -17.85365361341216], + [-57.530975332485944, -17.839133234897478], + [-57.55195116488774, -17.828225179969934], + [-57.55861234246595, -17.815456835722163], + [-57.57139602440646, -17.815414534943287], + [-57.576278818985145, -17.800548451991016], + [-57.6023084630563, -17.8048879946003], + [-57.60583114826501, -17.80235969911352], + [-57.612530528484285, -17.779431534689245], + [-57.602676187803056, -17.779046191105092], + [-57.600897761036485, -17.775310909599398], + [-57.61483312068489, -17.76683255996966], + [-57.61997600555317, -17.754783863579704], + [-57.61194605790346, -17.750314013814016], + [-57.61859058050953, -17.74780225081247], + [-57.62305805602021, -17.73637940716871], + [-57.64025105261878, -17.717379880931265], + [-57.64469179873494, -17.71884920517743], + [-57.64591833657128, -17.724382095469235], + [-57.663501371862495, -17.729874447986486], + [-57.667001672738344, -17.72616510474239], + [-57.67163665700198, -17.72835083367569], + [-57.67233902989294, -17.719741584331903], + [-57.68456030037217, -17.716502322460467], + [-57.68006225941224, -17.70406575516851], + [-57.68309102737937, -17.696277197381495], + [-57.68067225868255, -17.684930988111727], + [-57.67095079448593, -17.681097369221114], + [-57.672757987688826, -17.67729421827402], + [-57.66878476482547, -17.671927212048576], + [-57.67244506017037, -17.670758659965934], + [-57.6717269212847, -17.664133216113026], + [-57.67933467724822, -17.65772169768622], + [-57.676895531375564, -17.652175586950065], + [-57.682674771102505, -17.650380254340458], + [-57.682668572575565, -17.642758434481532], + [-57.6898569014477, -17.640332345153563], + [-57.686703734996904, -17.629341680273445], + [-57.69286476574171, -17.626803036617154], + [-57.70200158899879, -17.601264629217052], + [-57.697167265190416, -17.601255742865725], + [-57.703829472803115, -17.589755334650896], + [-57.70158765498878, -17.57777278251905], + [-57.71089479341843, -17.566098457948694], + [-57.71208580083568, -17.543154936440164], + [-57.7280043484295, -17.529769092027347], + [-57.7399982351602, -17.536326458116665], + [-57.75224158128008, -17.564484469399858], + [-57.883388681461476, -17.44956426317518], + [-57.9808092866942, -17.510807054723198], + [-57.99631380465931, -17.515626192760305], + [-57.99934371948587, -17.51462838484309], + [-58.000309395235625, -17.505834173652087], + [-58.005307357084014, -17.506111460651447], + [-58.01019819644541, -17.499799152072164], + [-58.01634122236571, -17.499902529102297], + [-58.02316990930967, -17.494407532211685], + [-58.030059587807315, -17.496343934053144], + [-58.04333367389594, -17.49269162165122], + [-58.04947763960824, -17.463053469092696], + [-58.060090904349025, -17.450744289912574], + [-58.07236882267211, -17.452082848526693], + [-58.0892284423862, -17.461159464051594], + [-58.11639310125047, -17.451873785280707], + [-58.12067674152037, -17.447663129472318], + [-58.118677531464996, -17.43446305062555], + [-58.122816502496086, -17.414706850748953], + [-58.1298441165312, -17.411571124277774], + [-58.13922860366639, -17.41564981851028], + [-58.145424985912264, -17.41369206662134], + [-58.152447797173615, -17.402040110850503], + [-58.15152814544108, -17.384674512253277], + [-58.185343139978464, -17.39150948636458], + [-58.20034208630537, -17.383043441216163], + [-58.195089110401625, -17.3689819119929], + [-58.20214859571706, -17.357057890039002], + [-58.22025846690341, -17.36005111192855], + [-58.2276724480968, -17.35671972111247], + [-58.22850700291958, -17.347940149874212], + [-58.23353778562272, -17.351411303273238], + [-58.24030948831013, -17.3496365129973], + [-58.24639678877897, -17.35491682620091], + [-58.25464317199342, -17.35257032221369], + [-58.25628156930317, -17.346133982028356], + [-58.263534166382314, -17.34470167434982], + [-58.26364577501003, -17.330407866956904], + [-58.27650554537811, -17.323762703799265], + [-58.2764300288869, -17.30060333553963], + [-58.2919828718699, -17.30189285691225], + [-58.298179030178105, -17.298849685423804], + [-58.296866232723936, -17.29135048923176], + [-58.29175652637372, -17.288502719698194], + [-58.3032290368376, -17.279881339397793], + [-58.30342185779883, -17.2702955873706], + [-58.31045558365927, -17.266872004717836], + [-58.31762040011723, -17.268070746928597], + [-58.322067832384725, -17.260250907302918], + [-58.31953485648203, -17.25457111734496], + [-58.337093024149155, -17.241905839175427], + [-58.33975300012325, -17.234275742039525], + [-58.345952190999036, -17.232764056770247], + [-58.35653389483692, -17.21229742950249], + [-58.36428286164526, -17.214302563376275], + [-58.36459145461421, -17.19981935469278], + [-58.369589001535836, -17.20040547185876], + [-58.39694767337348, -17.181576608211753], + [-58.3975084428327, -17.136781527893305], + [-58.3861965164594, -17.111382076022245], + [-58.3882269642172, -17.10783182791095], + [-58.39837376754967, -17.10483432322941], + [-58.40839426224347, -17.110521955738278], + [-58.425339350707894, -17.112064289462847], + [-58.42903312065059, -17.105321037987853], + [-58.424927675032286, -17.090260657656504], + [-58.434089217315055, -17.08663326245002], + [-58.43578306561768, -17.078836710275674], + [-58.430534839490264, -17.07228926006792], + [-58.432170088992606, -17.058788514144993], + [-58.42195356527444, -17.05265429113763], + [-58.43278492039904, -17.047830147149877], + [-58.43430742954511, -17.03985531266456], + [-58.43061947320599, -17.03681776064369], + [-58.41906384893862, -17.038113245159224], + [-58.416758828152254, -17.03470288772116], + [-58.421673095834166, -17.02922430745672], + [-58.43492056022063, -17.027269187447637], + [-58.435834668884965, -17.00943704391999], + [-58.42298048179758, -16.98930750160631], + [-58.431450465664994, -16.99084558502912], + [-58.447089147459934, -16.9788525781923], + [-58.447672614181315, -16.96779680700826], + [-58.45611650509072, -16.969416619808175], + [-58.45953354166259, -16.967006851753734], + [-58.46197452057203, -16.958237021508467], + [-58.45669762774226, -16.939983062971386], + [-58.460477232255556, -16.9377556841518], + [-58.46855864288734, -16.94117584265808], + [-58.47436454868406, -16.934983367000353], + [-58.46881026542462, -16.924061711791524], + [-58.47445281666282, -16.914512842862806], + [-58.466869128495226, -16.911088167079786], + [-58.460199593693865, -16.90006680386394], + [-58.468115251183164, -16.89896635335475], + [-58.46319413592608, -16.87346608425837], + [-58.46625135201635, -16.868875104471933], + [-58.4602033842405, -16.863562385671813], + [-58.466091350807716, -16.858446770906248], + [-58.46144877777581, -16.849533389430594], + [-58.46798077826723, -16.848232640725662], + [-58.461844106456894, -16.841108304909625], + [-58.47597568747479, -16.827470479829667], + [-58.47736372334818, -16.81905730453498], + [-58.47192147547115, -16.79146823137033], + [-58.46334079877023, -16.792473177729995], + [-58.45861157555878, -16.786005597450078], + [-58.46347993465512, -16.77997698163299], + [-58.46661809669324, -16.75690756084378], + [-58.47338931925007, -16.745195636154588], + [-58.46670381744188, -16.720850294437156], + [-58.47052986814508, -16.70304885813774], + [-58.46083959210607, -16.666723109697955], + [-58.46305397488521, -16.652245372887858], + [-58.43603297402121, -16.592384020995112], + [-58.42803513994832, -16.58569361391812], + [-58.42128031911453, -16.573577256755236], + [-58.393782227753846, -16.562898127852012], + [-58.38601009489196, -16.543618035726794], + [-58.35769779245526, -16.52939008556966], + [-58.3438027577936, -16.517751749346584], + [-58.33369486749205, -16.490040133674217], + [-58.33464416574784, -16.4779941299332], + [-58.347674683865904, -16.454520493251295], + [-58.356196299128946, -16.428072472439066], + [-58.34431381751741, -16.396663472153946], + [-58.344161829736706, -16.389315238087004], + [-58.33823679457746, -16.386150445923036], + [-58.33375519391155, -16.387780450214564], + [-58.3280928025157, -16.382256189335656], + [-58.307086237662105, -16.37021474503577], + [-58.30877718591988, -16.36034317180671], + [-58.30314172326774, -16.329545666304465], + [-58.303054879858394, -16.307711323053876], + [-58.31683844283586, -16.29094907657559], + [-58.32102698159477, -16.26477487077233], + [-58.338475358832355, -16.273100268278785], + [-58.346360564114086, -16.27337257404275], + [-58.353198106858656, -16.26938237654409], + [-58.365667317212875, -16.273365833545558], + [-58.38864485731401, -16.26102765570117], + [-58.39411192249694, -16.296802422185362], + [-58.408363682626174, -16.309206312651582], + [-58.43041540774428, -16.32132048920729], + [-58.78541528617278, -16.30693206395838], + [-59.114145276571385, -16.29392137315179], + [-59.47003889354197, -16.279575103246895], + [-59.77507523351433, -16.273879091807718], + [-60.171686717557506, -16.265835091052143], + [-60.198320361922804, -15.948015256929928], + [-60.20337726486783, -15.885833267064024], + [-60.23854711068549, -15.473887029170367], + [-60.564960197460586, -15.108720172603785], + [-60.50096082487325, -15.096255648422158], + [-60.244262496450084, -15.096840679777081], + [-60.24623557137819, -15.063863010844578], + [-60.259879690308885, -14.836530003170527], + [-60.272087649964845, -14.620325744619198], + [-60.292985540842544, -14.625304649756448], + [-60.321065999702384, -14.608905689215424], + [-60.32609108083019, -14.57916588844334], + [-60.33187528695376, -14.567817939213006], + [-60.32665313898855, -14.56277943030682], + [-60.33303662342158, -14.554955669001352], + [-60.33609313026206, -14.537181780861978], + [-60.34337378626327, -14.533129418826581], + [-60.33631584881116, -14.530334668832193], + [-60.34281369027613, -14.523550840381878], + [-60.33811806149409, -14.511919534050625], + [-60.34695209493912, -14.505352678166098], + [-60.34900951640502, -14.496199148566953], + [-60.36684324339744, -14.487295547538322], + [-60.36709484597976, -14.483218473892261], + [-60.362426948134356, -14.4864516853998], + [-60.36017923183913, -14.484338551106328], + [-60.36201056562224, -14.47056989426767], + [-60.37887108807638, -14.463752782342826], + [-60.37806704480974, -14.455475794480988], + [-60.38131649211682, -14.45428175173473], + [-60.384729708471504, -14.439341037742816], + [-60.39078957784975, -14.434179143898657], + [-60.39659134900396, -14.435975131678143], + [-60.40070418733282, -14.431514582573008], + [-60.394203739122624, -14.42997119847033], + [-60.39831533008149, -14.425823555153718], + [-60.39428964673826, -14.422963952391834], + [-60.39611600242691, -14.419779489231733], + [-60.40098535996534, -14.423495418139305], + [-60.40173053100703, -14.41583408864939], + [-60.40673031016543, -14.413263380635266], + [-60.39911505401513, -14.405198163092889], + [-60.40381174521092, -14.401054660885166], + [-60.400534849743075, -14.390273834614135], + [-60.405039644315096, -14.386692892346343], + [-60.40145350900844, -14.381529246551445], + [-60.396319263342534, -14.38814093619201], + [-60.39323578343559, -14.379557749598671], + [-60.39731185497268, -14.37749680530198], + [-60.395423662696366, -14.36434399988103], + [-60.402121526032445, -14.366995560979342], + [-60.4055959278998, -14.36488783881174], + [-60.40934016035465, -14.368716034525727], + [-60.4113985802495, -14.363149813049757], + [-60.40614934153708, -14.356306869636644], + [-60.40973069741163, -14.355059188149], + [-60.41318114696103, -14.359614333505773], + [-60.4142280632431, -14.349195541719546], + [-60.41981401331127, -14.34800172160361], + [-60.42000941176819, -14.354118420403431], + [-60.42279078618089, -14.353503324840046], + [-60.42726123283126, -14.346711817269808], + [-60.42559585766309, -14.34202166677996], + [-60.43411857392979, -14.335841905828545], + [-60.440338446881746, -14.320537475633921], + [-60.45309753396139, -14.314379969282387], + [-60.45022622524239, -14.307407373639453], + [-60.4570333877944, -14.304184944373114], + [-60.45689999488919, -14.292091921755071], + [-60.46208833246518, -14.280636460763784], + [-60.46017330548897, -14.273657921501407], + [-60.46517535284316, -14.264444664499019], + [-60.4608462847514, -14.257649784309457], + [-60.449677643250304, -14.251130263285372], + [-60.44928514603424, -14.241432116062663], + [-60.46484538665842, -14.234074488977727], + [-60.461927705619125, -14.22447324457513], + [-60.4702021280789, -14.213958224937034], + [-60.46750925775248, -14.20436088500645], + [-60.47161793816532, -14.192764452288012], + [-60.48490262809729, -14.193556777607348], + [-60.492368292070374, -14.188260005893515], + [-60.488256066896206, -14.182185710118445], + [-60.48851075617228, -14.171339345766928], + [-60.48264306851303, -14.16340935593446], + [-60.47515153679138, -14.160330882674987], + [-60.473866786480386, -14.151323940349183], + [-60.48248019343737, -14.134903223574502], + [-60.473178748797096, -14.128375786384131], + [-60.48422527538228, -14.117187419617258], + [-60.47319773054555, -14.109805370749939], + [-60.47987029553803, -14.097799624040638], + [-60.47031366098467, -14.089742304543085], + [-60.46506265798836, -14.095066351788528], + [-60.44756901937691, -14.085662559919266], + [-60.42723024848569, -14.062744853626775], + [-60.42934214785038, -14.0600734341447], + [-60.426055449497674, -14.048950290097766], + [-60.40597830231043, -14.030377603940572], + [-60.40770141500819, -14.02378865891378], + [-60.400361726355825, -14.010291106009234], + [-60.40317392325081, -13.99983460806085], + [-60.39819932676834, -13.995058231148466], + [-60.39550296607639, -13.997059667673382], + [-60.394922779095346, -13.99313783873939], + [-60.38227674130725, -13.99245399734736], + [-60.382033673314275, -13.987488613806573], + [-60.38900842241754, -13.978893639801157], + [-60.415064368268865, -13.980610777654343], + [-60.42647703203156, -13.961829352809106], + [-60.420085742900376, -13.963714848766745], + [-60.41908986707233, -13.95389882099081], + [-60.409396511020496, -13.950214156417978], + [-60.4192029960776, -13.947639113135203], + [-60.41895289399317, -13.937594975056443], + [-60.42253071176993, -13.937491320366243], + [-60.42753298444235, -13.943608694744391], + [-60.444446169016686, -13.930905647806934], + [-60.446644010162096, -13.933040886875697], + [-60.443813741721975, -13.93944189788678], + [-60.45087182047631, -13.937593399733549], + [-60.45228884134331, -13.90472111263124], + [-60.456480318254016, -13.894059387704853], + [-60.4503352582682, -13.886419389164464], + [-60.45131748063776, -13.883362940592907], + [-60.46345246074832, -13.88248792897207], + [-60.46702838375763, -13.885304969813838], + [-60.46736574788796, -13.8917680051915], + [-60.4759472820375, -13.885592377809537], + [-60.473537825746845, -13.879769073486809], + [-60.46489678827936, -13.873892014701399], + [-60.464117987917824, -13.863155263683884], + [-60.456117642094114, -13.858618776294183], + [-60.45675416449538, -13.853909624920888], + [-60.46736565512113, -13.856175661831783], + [-60.47658602999469, -13.852339371971425], + [-60.48672931720231, -13.857922327070824], + [-60.49272519168838, -13.85633540341633], + [-60.46903471784862, -13.833304534815989], + [-60.47156115487143, -13.829649592258068], + [-60.47964044640582, -13.83336504023089], + [-60.489979672689095, -13.82354893135947], + [-60.4850031207227, -13.819204966109776], + [-60.47619402245486, -13.823947799127371], + [-60.46823175905817, -13.821333580556908], + [-60.465452638683026, -13.814198369515651], + [-60.47764462220512, -13.809168706221952], + [-60.478753444465475, -13.804413206068103], + [-60.47320170644615, -13.80105266575487], + [-60.46561594221414, -13.801747269177332], + [-60.467227636386404, -13.795762579676836], + [-60.49017442716613, -13.795897567731188], + [-60.498393871824604, -13.789050241019645], + [-60.504006275122116, -13.79562231113897], + [-60.511533206014306, -13.791130385086948], + [-60.528447267631556, -13.791879000066762], + [-60.51736321472213, -13.77790212864886], + [-60.51805991719061, -13.77268858462622], + [-60.52292125980107, -13.768938127377448], + [-60.53186736316042, -13.771587134566174], + [-60.54811517156473, -13.770358484954563], + [-60.54647296280947, -13.782426370249421], + [-60.550090503857646, -13.781711543405706], + [-60.557622511446944, -13.7709355756682], + [-60.56934716686522, -13.768737072776114], + [-60.566342349965275, -13.757933854525845], + [-60.57881427943594, -13.755688468499828], + [-60.57469787237829, -13.747467788179765], + [-60.58698217015728, -13.746862604892717], + [-60.5919225976614, -13.743245060595674], + [-60.600313959399266, -13.74893718061456], + [-60.60661422040669, -13.746315658304646], + [-60.60583711257329, -13.739442828132038], + [-60.607924396033894, -13.736637806918223], + [-60.61089446164546, -13.740385570697855], + [-60.61214604471957, -13.734872181398421], + [-60.610427643747144, -13.728566270429331], + [-60.62345293718889, -13.719567801919233], + [-60.63067529462024, -13.728026869731242], + [-60.64139243825446, -13.73094735565778], + [-60.646091363090974, -13.738737187122473], + [-60.65159203131473, -13.736092222184812], + [-60.65275852939825, -13.730220140149692], + [-60.65625371154601, -13.738375190252679], + [-60.66566049665662, -13.730001983442538], + [-60.669031715724586, -13.727000634116663], + [-60.68397784258915, -13.71605912798513], + [-60.68997880364803, -13.699420400703275], + [-60.69556169370927, -13.701562136087036], + [-60.693812358082084, -13.715489231803705], + [-60.697091795784935, -13.714997593977303], + [-60.70461907112617, -13.704704372795655], + [-60.709912406323035, -13.687404948448693], + [-60.70992711343117, -13.687356884012072], + [-60.71695607355773, -13.685147181583032], + [-60.716954251230746, -13.685121393035681], + [-60.716751402195555, -13.682248332076863], + [-60.71668187893629, -13.682257581792781], + [-60.71359337921942, -13.682668471852178], + [-60.713593419054476, -13.682667585349616], + [-60.71389170950543, -13.676030597486793], + [-60.71388346613847, -13.676030833047607], + [-60.71377420566551, -13.676033955226762], + [-60.70956019370787, -13.67615433586111], + [-60.709592187905116, -13.671752412959615], + [-60.6996183664093, -13.670869610076059], + [-60.69695428013077, -13.666533676751165], + [-60.702035067618766, -13.660302747492212], + [-60.69767545664548, -13.657795562504955], + [-60.69953323733093, -13.654216015656571], + [-60.693445595045524, -13.653337086089877], + [-60.690541200198965, -13.648987625702464], + [-60.69173043331321, -13.644748631795864], + [-60.68631252820898, -13.639195093254735], + [-60.68900923205392, -13.633529580449874], + [-60.68597429412433, -13.625260122204574], + [-60.67420808907114, -13.617122776892437], + [-60.67266964571457, -13.612489307512773], + [-60.6726619067106, -13.612491849235155], + [-60.66951413681688, -13.613525658457139], + [-60.669514065210876, -13.613525675352806], + [-60.66951149842324, -13.613479597621351], + [-60.66922636556518, -13.60836021406954], + [-60.669218538758, -13.60836763666773], + [-60.665894787081804, -13.611519699037139], + [-60.66589316188323, -13.61151363611295], + [-60.664118456356675, -13.604892512087705], + [-60.65539801016469, -13.602474730806906], + [-60.64545088719567, -13.59285377955887], + [-60.64544640623312, -13.592857624216679], + [-60.64111791282027, -13.59657140592445], + [-60.64111580398365, -13.596568040459287], + [-60.63825485315775, -13.592002112130046], + [-60.641341251797776, -13.585092053357108], + [-60.63334102110156, -13.579264069289861], + [-60.63564340900859, -13.578002857030977], + [-60.63214277079398, -13.571732301886902], + [-60.611196561401734, -13.566380384682043], + [-60.61119411097661, -13.566381811417026], + [-60.600252623328544, -13.572752092878018], + [-60.600247056800946, -13.572751258038254], + [-60.592447806138914, -13.571581421429427], + [-60.58766608540915, -13.565149880934728], + [-60.58761778711435, -13.565084910201024], + [-60.58612737827166, -13.565110903127303], + [-60.57758701327568, -13.56525964635425], + [-60.555976309797465, -13.55339228773128], + [-60.55477833025761, -13.548213400191578], + [-60.54875248173707, -13.548413920987533], + [-60.54831491318587, -13.548428476164238], + [-60.54831489126546, -13.548428416043564], + [-60.54402333811813, -13.536656810703018], + [-60.54397821887354, -13.536533029902722], + [-60.543595876120975, -13.536524258583407], + [-60.53300080664148, -13.536280780094561], + [-60.53033255922809, -13.517267690161493], + [-60.530305243667584, -13.517072992505131], + [-60.50116261400552, -13.49851259731742], + [-60.49555170907577, -13.499752576112506], + [-60.495551636043245, -13.499752589557716], + [-60.49544225401178, -13.499686629468323], + [-60.486362837746086, -13.494211119079702], + [-60.486358929720765, -13.494213349866941], + [-60.48168231667143, -13.496882812013899], + [-60.48168055335008, -13.4968803258574], + [-60.47894729453593, -13.493026503699213], + [-60.465528049537234, -13.48914463553013], + [-60.465524277416606, -13.489146438396807], + [-60.45630674048789, -13.493551728260032], + [-60.456303234816566, -13.493550996658875], + [-60.43194551625115, -13.488466263783927], + [-60.4303376074683, -13.481990000901265], + [-60.41147223126307, -13.461687631114634], + [-60.40951283558553, -13.461951378535716], + [-60.40241512529881, -13.462906652543756], + [-60.40241486661716, -13.46290598090077], + [-60.3998641407717, -13.456282871085397], + [-60.38786201250589, -13.454724571854328], + [-60.381529911370286, -13.442165198342769], + [-60.383980283773234, -13.441246920427142], + [-60.38399855610891, -13.441240072770753], + [-60.37927468254502, -13.422484375838147], + [-60.37927437891295, -13.422402836598383], + [-60.37924819762126, -13.415352421990928], + [-60.37180910770169, -13.408896508274655], + [-60.379139522170696, -13.390650254887612], + [-60.37921975416931, -13.390450546491612], + [-60.37922328194661, -13.39027683831494], + [-60.37952849093276, -13.375263414023573], + [-60.37605034622377, -13.3740651820986], + [-60.37655550488993, -13.368713152242357], + [-60.371279323508396, -13.367578712185733], + [-60.370202805639956, -13.357453395672469], + [-60.370190241401176, -13.35733519965626], + [-60.37020074736268, -13.357232919453072], + [-60.37110750172005, -13.348406036973863], + [-60.36522493591954, -13.3409770375623], + [-60.36602819143956, -13.332261929602428], + [-60.373415019177656, -13.324472978537774], + [-60.37156875520626, -13.318689425117029], + [-60.37154665117266, -13.318620178879728], + [-60.37143416003669, -13.318507291786997], + [-60.36155890482001, -13.308596382447492], + [-60.361941057066254, -13.301018083497064], + [-60.364913180176515, -13.299972428689538], + [-60.36317045357362, -13.296564893976932], + [-60.36316650592033, -13.296567983501413], + [-60.36069349191067, -13.298503403968859], + [-60.36069058800331, -13.29850174608811], + [-60.353985765355844, -13.294673671132461], + [-60.353910052017795, -13.29463044081927], + [-60.35205484186068, -13.28485938214838], + [-60.35205132183044, -13.28472424189058], + [-60.351747049048136, -13.273034513287584], + [-60.3389731562185, -13.272362867657993], + [-60.33317224127867, -13.258171787155037], + [-60.333105610292264, -13.258008764276884], + [-60.32665463875409, -13.255349701198885], + [-60.3247524224517, -13.250517027080736], + [-60.32972456750607, -13.235496970260211], + [-60.329708912403234, -13.235436092029648], + [-60.328392285868205, -13.230315836652384], + [-60.32430103982226, -13.229359355215502], + [-60.32038271085753, -13.216611610941804], + [-60.320337631392654, -13.216464933326115], + [-60.32018696977217, -13.216255187459442], + [-60.30816520815164, -13.19951659597639], + [-60.30927689934488, -13.192340629432822], + [-60.309068306162374, -13.191811789767964], + [-60.30411303482319, -13.179247432737363], + [-60.30377835309703, -13.178398731315827], + [-60.299582759280504, -13.17545720886547], + [-60.29957865653094, -13.175459259523148], + [-60.296108956373246, -13.177193476870341], + [-60.29610712699506, -13.177191348394738], + [-60.2684466399071, -13.144999715652773], + [-60.280556095232896, -13.135647226705467], + [-60.276087150109895, -13.126855208449205], + [-60.2809497140329, -13.119974786675664], + [-60.277060662553374, -13.112705968637119], + [-60.282309705776086, -13.106191189635375], + [-60.279115959032964, -13.102596912293311], + [-60.28418284508426, -13.0989670280192], + [-60.28423081110078, -13.098932664835528], + [-60.28245959778507, -13.093418685936214], + [-60.282464962714094, -13.093273073078132], + [-60.28293279906071, -13.080580833145392], + [-60.26755611981452, -13.077312985586525], + [-60.253308048065286, -13.056385219235802], + [-60.2482834505474, -13.05514113625531], + [-60.24137042708296, -13.038718316213581], + [-60.24127250062762, -13.038485646241774], + [-60.24121497391646, -13.03843236867725], + [-60.23743904347803, -13.03493522916168], + [-60.224633264985314, -13.033568212571394], + [-60.220160280861364, -13.027740820139483], + [-60.21523233203175, -13.027008678848638], + [-60.2135968325202, -13.007080657191768], + [-60.20463970506047, -12.995807779135903], + [-60.20450737017657, -12.995641215179607], + [-60.204465983155536, -12.995542790319732], + [-60.201356287158916, -12.98814698058665], + [-60.19200565014602, -12.98208347158223], + [-60.18921759574652, -12.971170624674583], + [-60.183284360799, -12.96765660459908], + [-60.18328007345341, -12.967657415976511], + [-60.16735588349295, -12.970670589287677], + [-60.16735337419799, -12.970670151536188], + [-60.156493712902375, -12.96877538654745], + [-60.1505716711899, -12.964084854091396], + [-60.15056775729613, -12.964087074722805], + [-60.139733702616425, -12.970233741462932], + [-60.139732077486364, -12.970232188904038], + [-60.130799553184794, -12.9616978983374], + [-60.11710525594554, -12.959582885924464], + [-60.10507988251923, -12.919492302445141], + [-60.08834552353636, -12.902761413927747], + [-60.08804123232521, -12.902457140507927], + [-60.087890454140826, -12.902100153779676], + [-60.079051540665816, -12.881169215009162], + [-60.08463523497092, -12.837331279163253], + [-60.07783209528635, -12.804630236182167], + [-60.07771900552057, -12.804086441400448], + [-60.077668200433564, -12.803590494123668], + [-60.07457542519434, -12.773383147409234], + [-60.09038135724983, -12.737234250284297], + [-60.090623518726154, -12.736680403002081], + [-60.08744531075376, -12.716419482176574], + [-60.08725586961732, -12.715951998783355], + [-60.076129738902964, -12.688489731498768], + [-60.07802121376273, -12.664576583807026], + [-60.06320222850898, -12.642183450281191], + [-60.06298641560265, -12.641857275266132], + [-60.06373647133861, -12.628731310613524], + [-60.06866988862745, -12.616022607077685], + [-60.0632369289385, -12.60759155686152], + [-60.062656324347316, -12.607337248869673], + [-60.03449441234603, -12.594999444489844], + [-60.028044150278824, -12.579368474671469], + [-60.02657943111849, -12.561654099926022], + [-60.006880585711926, -12.545741899582396], + [-60.00087820978965, -12.536251310963422], + [-59.973343102377484, -12.530390725251147], + [-59.95741113221156, -12.502236883397671], + [-59.936320647989334, -12.49508903850239], + [-59.935162593035706, -12.487108455122405], + [-59.92582954902825, -12.481976658670057], + [-59.92559790340673, -12.481849278838824], + [-59.91378864358629, -12.479825737905545], + [-59.907603786035644, -12.480243897899744], + [-59.90760369659771, -12.480243687780519], + [-59.90450519705128, -12.47296386562738], + [-59.904452320303726, -12.472839626090716], + [-59.90435549893281, -12.472817920735794], + [-59.89719895407641, -12.471213446254856], + [-59.89719881049028, -12.471215411299315], + [-59.89683462999284, -12.476199759764398], + [-59.89683015428399, -12.476199174824865], + [-59.887946569799524, -12.475037992240699], + [-59.887945227961886, -12.47503849757687], + [-59.86842494099072, -12.48238911983278], + [-59.868422545670676, -12.482388406853689], + [-59.855793953020395, -12.478629017011484], + [-59.84435958216496, -12.467453163312776], + [-59.84409769106698, -12.467197168226942], + [-59.84403921264391, -12.467034716838773], + [-59.84128906724586, -12.45939439235927], + [-59.84248529483958, -12.424873085238431], + [-59.835053799325706, -12.413221272777797], + [-59.832485971617224, -12.4014227453936], + [-59.823770012589925, -12.390506562641713], + [-59.81870699989247, -12.389911840764679], + [-59.819193277665306, -12.378772002814612], + [-59.805432531954295, -12.368645782913346], + [-59.80204864157485, -12.357417770589048], + [-59.79287858666766, -12.34580546251861], + [-59.77429017358054, -12.340979223711656], + [-59.88475423616449, -12.246794515907304], + [-59.886277177801986, -12.245495549464064], + [-59.88627724503726, -12.245495546677631], + [-59.89226699774908, -12.245477519535243], + [-59.89229203767504, -12.245227452824558], + [-59.89353817232997, -12.232783939249801], + [-59.90165059704889, -12.223901840030171], + [-59.90121012749837, -12.215258039750665], + [-59.90847635254098, -12.195051319839724], + [-59.90861752389528, -12.194658736393508], + [-59.91074736937331, -12.186480217070237], + [-59.90009887024759, -12.170899262004163], + [-59.90009161674355, -12.169828208982947], + [-59.89973941297846, -12.117245970664262], + [-59.91497271626275, -12.098338372518748], + [-59.91525095988584, -12.097993001160642], + [-59.91551151043426, -12.097863411490453], + [-59.92370653943183, -12.093787325290776], + [-59.92921258739496, -12.07847706574078], + [-59.94679201839934, -12.066008456592515], + [-59.947122271244666, -12.065774203552303], + [-59.94712233843962, -12.065774199428683], + [-59.95174109416521, -12.065633771703904], + [-59.95684555711891, -12.056479727066268], + [-59.961928433693565, -12.056390483883906], + [-59.96193295163623, -12.056390400628056], + [-59.96140938577857, -12.050464811445154], + [-59.965652251371445, -12.04626383596361], + [-59.96951588619714, -12.032497629745755], + [-59.97928990609293, -12.029573178406789], + [-59.97459671137941, -12.015130219784062], + [-59.96651455717419, -12.007185739751746], + [-59.970477660354106, -11.998013116453254], + [-59.970538425734574, -11.997872474171928], + [-59.97065691915053, -11.997785871659168], + [-59.97951728054703, -11.991309970977271], + [-59.97031869915161, -11.989043234729408], + [-59.96940807795502, -11.982694130917235], + [-59.974263044110025, -11.976338025038103], + [-59.971294018801316, -11.96996867510516], + [-59.98692732070975, -11.960112864598399], + [-59.98042641572825, -11.946729195959184], + [-59.980314682472006, -11.94649914237057], + [-59.980471273925275, -11.946180971744852], + [-59.98867587731312, -11.929510220438868], + [-59.98340219771776, -11.920563204462544], + [-59.98573203169665, -11.912103048126118], + [-59.9953770722459, -11.909335713336688], + [-60.006825449909726, -11.894705957114072], + [-60.0120098425991, -11.893063388796822], + [-60.012012358076284, -11.893062591797074], + [-60.02465035020085, -11.897551528501188], + [-60.02465287120065, -11.897552423854838], + [-60.02981879773511, -11.895007047739949], + [-60.02982249384787, -11.89500522654012], + [-60.03337241528197, -11.898716129045456], + [-60.033374196019864, -11.898717990479806], + [-60.041984452509155, -11.89258262641859], + [-60.041987041498274, -11.892580781546206], + [-60.04243181982784, -11.892990878026106], + [-60.0470679685941, -11.897265348376866], + [-60.06045855795398, -11.895028067070767], + [-60.060458639712074, -11.89502805385185], + [-60.07331773933435, -11.884509736130124], + [-60.073317785642125, -11.88450974757864], + [-60.073393225966, -11.884528398424262], + [-60.07656050658263, -11.885311409462275], + [-60.07656542304842, -11.885312624867307], + [-60.074844575434234, -11.879726811487316], + [-60.078461882717114, -11.870243394134937], + [-60.08537319991908, -11.867703394486742], + [-60.07988323244786, -11.86228726084397], + [-60.08325636439378, -11.858512980720642], + [-60.083258287764245, -11.858510828594547], + [-60.08843492784815, -11.862635320982983], + [-60.088436734916904, -11.862636760710874], + [-60.09107317757268, -11.861149536606929], + [-60.089372297994096, -11.85517764812459], + [-60.09253713046061, -11.853171879114237], + [-60.09254144026897, -11.853169147667689], + [-60.09617704306135, -11.85886217945088], + [-60.09618438542842, -11.858873676455746], + [-60.09382050555851, -11.849183945030436], + [-60.098798171474165, -11.845578253421019], + [-60.09784333398446, -11.839880061082521], + [-60.101066782532115, -11.835432437914335], + [-60.10106810824101, -11.835430608724254], + [-60.10869774495629, -11.83959779862629], + [-60.10870637972719, -11.83960251454919], + [-60.1024499430822, -11.83231372237951], + [-60.10233781336612, -11.832183082902022], + [-60.10227926137962, -11.832143045545012], + [-60.099213471499745, -11.830046637146388], + [-60.10329534714579, -11.819193957737399], + [-60.095698465857446, -11.818257776508307], + [-60.09560188516824, -11.818245873138808], + [-60.09566453810715, -11.818207318435407], + [-60.10154090035007, -11.814591112943257], + [-60.09885388951186, -11.803902822507595], + [-60.104271570192296, -11.802938942457764], + [-60.10459784235431, -11.80288089100977], + [-60.10460328367241, -11.802879922869002], + [-60.10071436720611, -11.79803301420555], + [-60.10071100605564, -11.798035412231336], + [-60.09663055325499, -11.80094658998919], + [-60.09663064479586, -11.800943392759327], + [-60.09679092164002, -11.79534683842119], + [-60.108434497179694, -11.793141621475048], + [-60.10282477881095, -11.790067054413909], + [-60.105436427284694, -11.782522107933717], + [-60.10101904255833, -11.780644108255757], + [-60.104430854872696, -11.778252848710993], + [-60.10443320454694, -11.778251201861618], + [-60.109086222835096, -11.780577140731117], + [-60.109091833127096, -11.780579945096171], + [-60.108795311469564, -11.775775124014075], + [-60.10293004840028, -11.772536775846296], + [-60.107043405460104, -11.770102028106798], + [-60.105515711169666, -11.763731665503872], + [-60.111261501519174, -11.762995983857035], + [-60.11231796870274, -11.759278354850702], + [-60.10731963275896, -11.748996438372638], + [-60.10731956489599, -11.74899629876296], + [-60.10787423780403, -11.748893532403214], + [-60.11115786296837, -11.748285141720935], + [-60.11662750829834, -11.729320047780748], + [-60.11242641915555, -11.722277228033423], + [-60.12159761701385, -11.712125675476555], + [-60.1161294516258, -11.706728443747915], + [-60.11862198134027, -11.702100967649043], + [-60.11742704178333, -11.689058204195439], + [-60.122346828045515, -11.682424342875574], + [-60.118680316590996, -11.680399598857802], + [-60.11892956148547, -11.672118982996942], + [-60.11893358909764, -11.671985222314083], + [-60.11565238089904, -11.66915904938281], + [-60.1156801063484, -11.668750605405036], + [-60.11740525813862, -11.643347208765114], + [-60.11157068915017, -11.64293892648944], + [-60.114127910567575, -11.635778917804853], + [-60.11103570261692, -11.621089897652256], + [-60.11098610977758, -11.620854277796875], + [-60.111029794514415, -11.620838282358573], + [-60.11523628529229, -11.619298019139567], + [-60.109843119248374, -11.615562726399041], + [-60.11400959916516, -11.60347063561889], + [-60.110543073437036, -11.595503142274302], + [-60.114818947431104, -11.591484335610943], + [-60.11084564441403, -11.582510354964155], + [-60.110840628799444, -11.582511388437503], + [-60.094376343273936, -11.585903430706619], + [-60.09437645585336, -11.585903296893676], + [-60.10154495197138, -11.57738260301097], + [-60.091594008643696, -11.576075645479113], + [-60.099209263953675, -11.570848719768005], + [-60.09832110627284, -11.567915831440214], + [-60.087149471967, -11.568149432334632], + [-60.09409501274323, -11.562869245506123], + [-60.09071451376215, -11.554901008033259], + [-60.0907117228991, -11.554905144975804], + [-60.08668215122624, -11.560878193528326], + [-60.08662236416003, -11.560966815323157], + [-60.08662233852056, -11.5609668533283], + [-60.086468667897456, -11.5608778673087], + [-60.07863138781709, -11.556339282449633], + [-60.079646731192106, -11.552917779857095], + [-60.05739933124487, -11.54211795109577], + [-60.053664138319846, -11.533604609720074], + [-60.05360514052662, -11.533470131587094], + [-60.041455275445, -11.516628887162982], + [-60.0412364544986, -11.516467289848304], + [-60.02665383416263, -11.505697016594985], + [-60.031675400143804, -11.503473752099111], + [-60.031722385740416, -11.497987187025945], + [-60.03172314747266, -11.497898316517656], + [-60.03171423325505, -11.497822159317733], + [-60.03117255932019, -11.493194115707993], + [-60.03116846268368, -11.493197691674597], + [-60.027581729872274, -11.496328530613514], + [-60.027532016523175, -11.496371924679478], + [-60.01789905254963, -11.49605723999776], + [-60.01786048531219, -11.495934050814189], + [-60.015571658702314, -11.488622749867794], + [-60.00784732854003, -11.486522637547282], + [-60.00234729549338, -11.478684205692803], + [-59.98566757116436, -11.469543332111282], + [-59.985337403489396, -11.46936237132205], + [-59.98518571354342, -11.468863839436208], + [-59.97617544495128, -11.43924369546025], + [-59.952285262382, -11.436443550450752], + [-59.94470078062692, -11.43233930411892], + [-59.94195370135396, -11.42282012603095], + [-59.941950206638474, -11.422820525027092], + [-59.9343471234687, -11.42368848393636], + [-59.93434672159407, -11.42368809707235], + [-59.925996041652446, -11.415648801238289], + [-59.92584335352644, -11.41550179681377], + [-59.92587014202013, -11.41546208128218], + [-59.92767570644522, -11.412785214253704], + [-59.9205684444889, -11.398028468144508], + [-59.9228439342702, -11.394187611781831], + [-59.91988310856828, -11.381691755794], + [-59.91983368092625, -11.381483125828051], + [-59.91991897588997, -11.381179877720797], + [-59.9253709734199, -11.361797034155632], + [-59.922374256984924, -11.355676973869409], + [-59.92445744443049, -11.35228809769726], + [-59.91779184053303, -11.346376113614204], + [-59.91713590302263, -11.33861492741742], + [-59.91712241254576, -11.338455280358822], + [-59.91732366540958, -11.33792287470544], + [-59.92770672420016, -11.310455177764624], + [-59.94995583279413, -11.304425135340399], + [-59.95940070181739, -11.294753666198611], + [-59.96037202004335, -11.27741971878562], + [-59.96845222566478, -11.266424759607963], + [-59.967844783578826, -11.25295442848476], + [-59.981756220204886, -11.233802867566764], + [-59.98196105236421, -11.233520871114742], + [-59.98199838718752, -11.233233468573502], + [-59.98433877068717, -11.215219617859216], + [-59.98106208531162, -11.203782535857384], + [-59.97692278958199, -11.203308180575176], + [-59.97581853297424, -11.198606996248], + [-59.96778932280282, -11.197885111804107], + [-59.96395454059685, -11.18913540642494], + [-59.969729084888264, -11.185370678482704], + [-59.971143521610585, -11.180223626450836], + [-59.980344405591886, -11.179610039162474], + [-59.98751417128353, -11.171127654379271], + [-59.98892173977032, -11.16125239118511], + [-59.9958403243995, -11.157003446558456], + [-59.99770428856968, -11.151379917099561], + [-59.994955527452, -11.1482235298466], + [-59.984868423412635, -11.147056613713527], + [-59.9890413216617, -11.138060184532735], + [-59.989037413770134, -11.13806093621128], + [-59.979875354086836, -11.13982311646677], + [-59.97987521600079, -11.139822357226173], + [-59.97670880223452, -11.122408985446889], + [-59.98371023036485, -11.116401457132827], + [-59.98383143624429, -11.116297455295665], + [-59.98386849468791, -11.116275354674952], + [-59.98677935092344, -11.114539385415657], + [-59.98678288022208, -11.11453728060218], + [-59.99114372303318, -11.123607412913282], + [-59.995277931822535, -11.125194389318102], + [-59.9952790406803, -11.12519481495647], + [-60.01306843331541, -11.122542572305434], + [-60.015675788177, -11.116307310281453], + [-60.01567848272196, -11.116300866514592], + [-60.019321836136115, -11.1291194560688], + [-60.01932189658434, -11.129119668722645], + [-60.03051273003487, -11.128380312143413], + [-60.030613700813994, -11.128218293527821], + [-60.03737026308387, -11.117376314242156], + [-60.0373720703588, -11.117373414147414], + [-60.0439873095507, -11.1242915162296], + [-60.06664209346725, -11.12552913583876], + [-60.066646466674314, -11.125529374567646], + [-60.07495563231567, -11.105044942236676], + [-60.084177573916975, -11.096866973426097], + [-60.084179921258055, -11.096864891767325], + [-60.08978391276185, -11.10048265178563], + [-60.08929118958276, -11.108922632510746], + [-60.09612474374982, -11.11080762876017], + [-60.104788077326745, -11.1092022918001], + [-60.11262190036397, -11.102562050492203], + [-60.11262375899041, -11.102560475018802], + [-60.12033951238555, -11.10691829074344], + [-60.12034219170891, -11.106919803931593], + [-60.1305674877478, -11.10089441883514], + [-60.13056981344491, -11.10089304834526], + [-60.142423383407674, -11.105760660528896], + [-60.14242733136518, -11.105762281601097], + [-60.147956384626575, -11.099284064143358], + [-60.14795750663593, -11.09928274950398], + [-60.15239216948249, -11.100899196071149], + [-60.152395149269545, -11.100900282175514], + [-60.159204671010585, -11.095675043905398], + [-60.1592056743381, -11.095674273995012], + [-60.17753689119173, -11.099274699752092], + [-60.18872096284668, -11.107959720121602], + [-60.188930908848796, -11.108122741043056], + [-60.18754174815042, -11.111658716391286], + [-60.198927541358934, -11.114114210724754], + [-60.198927613016195, -11.114114195531728], + [-60.2071821496252, -11.111777269746241], + [-60.210482523988944, -11.106828935404584], + [-60.21048296035746, -11.10682828114236], + [-60.22742424794893, -11.105455708246035], + [-60.227427997293425, -11.105455404373878], + [-60.238782511421306, -11.09496397925161], + [-60.238784167249435, -11.094962449244626], + [-60.24873372426049, -11.096889192630373], + [-60.248733869677714, -11.096889220787544], + [-60.26509340962041, -11.093683576527601], + [-60.265097922121925, -11.093682692190203], + [-60.270925773461855, -11.098712887530066], + [-60.27092761474172, -11.098714476725984], + [-60.28076146500235, -11.091551694374026], + [-60.27798832994746, -11.079756271953721], + [-60.27795117805606, -11.079598229096714], + [-60.278009748844916, -11.079388037400127], + [-60.282287329460225, -11.064037622780038], + [-60.282287829930596, -11.064035826856431], + [-60.291368449781736, -11.06550947131663], + [-60.29137289661154, -11.06551019288689], + [-60.30117853721061, -11.057175533761317], + [-60.30118132652487, -11.0571731628238], + [-60.30914643970402, -11.064046923463689], + [-60.31745487684694, -11.06511495081246], + [-60.334478176973576, -11.08290834665794], + [-60.33447962502244, -11.082909860001969], + [-60.34835797330542, -11.074070590313223], + [-60.348368231753454, -11.074064056332771], + [-60.34190049128211, -11.082655143624965], + [-60.34681719679958, -11.099203574357078], + [-60.34412183755223, -11.104903301158199], + [-60.34789927101763, -11.10905720555659], + [-60.34790077256431, -11.109058856699114], + [-60.37026031860025, -11.099034571819125], + [-60.373173128659126, -11.094147438210562], + [-60.373174237178524, -11.094145578320974], + [-60.383550975566855, -11.096219613207438], + [-60.383676134823745, -11.0962446264215], + [-60.38367620606757, -11.096244610350722], + [-60.39148744644933, -11.093814153130287], + [-60.395790117722534, -11.080464085970299], + [-60.40407018790541, -11.069398815447972], + [-60.40407159539719, -11.069396934482164], + [-60.40825730535392, -11.071250259631691], + [-60.40826088349353, -11.071251843893439], + [-60.41431952141134, -11.067491131217341], + [-60.41146214432081, -11.047071024589185], + [-60.41142372665798, -11.046796395299214], + [-60.411454177901355, -11.046758165932093], + [-60.41404499377312, -11.043505563791332], + [-60.42962817629584, -11.037517088885126], + [-60.429631801922476, -11.037515695500288], + [-60.43561893482261, -11.041821095658793], + [-60.44652369108626, -11.042174398763512], + [-60.44653042504966, -11.042174616808888], + [-60.437872065214464, -11.016706797847705], + [-60.43787195961098, -11.016706487157904], + [-60.44162182076812, -11.016814985487995], + [-60.44162697766117, -11.016815134663721], + [-60.45011619008121, -11.008483566365973], + [-60.45239842354217, -10.993299059391312], + [-60.459981665179804, -10.989877699649998], + [-60.45998391766642, -10.989876683359386], + [-60.80277303551932, -10.989119628834363], + [-60.80629480294392, -10.98910978795865], + [-60.806294875950584, -10.989109787729069], + [-60.8289244802934, -10.989030013515531], + [-60.828924553302436, -10.989030013264076], + [-60.83195453730448, -10.98901992433096], + [-60.831954610313275, -10.98901992407981], + [-60.94819687040149, -10.988584981663369], + [-60.94819694341675, -10.988584981337304], + [-60.94977087402034, -10.988577117974378], + [-60.94977094703544, -10.988577117648491], + [-60.95026219243812, -10.98857519261114], + [-61.00052915306804, -10.988373377153481], + [-61.000530704729094, -10.992262566303202], + [-61.39019673818427, -10.988008718122426], + [-61.426801689988864, -10.987582896500994], + [-61.42680176305529, -10.987582895666927], + [-61.42892815271587, -10.987559207055906], + [-61.42892822578223, -10.987559206221375], + [-61.48375046833842, -10.986912770847425], + [-61.48375054140668, -10.986912769982546], + [-61.51399621849349, -10.986554641107487], + [-61.51399629156145, -10.986554640235463], + [-61.51433105330602, -10.98655063531671], + [-61.550183892396866, -10.986119000732506], + [-61.55019742691151, -10.98611883697385], + [-61.55063124639427, -10.980998330187479], + [-61.54673667018707, -10.977621754785252], + [-61.53852025464572, -10.975885602449416], + [-61.53851322193474, -10.97588821742848], + [-61.53002684866059, -10.979043604376834], + [-61.53002642951488, -10.979039916665354], + [-61.5275465511888, -10.957213058963228], + [-61.52725410142361, -10.956942664353292], + [-61.51989329119315, -10.950136556128893], + [-61.51944661510378, -10.949723515343614], + [-61.52319330865957, -10.940278950119357], + [-61.518813312822694, -10.917393387749799], + [-61.51878793093734, -10.91726072965005], + [-61.5187613902376, -10.917203205472102], + [-61.514243810954845, -10.907411055301937], + [-61.52424223662716, -10.904772279399987], + [-61.51905462810483, -10.894538342971975], + [-61.52679666317544, -10.885717254396054], + [-61.523731610157036, -10.881826347196588], + [-61.52371333664459, -10.881803149327803], + [-61.52372107628574, -10.88165532848727], + [-61.525074277900906, -10.855828652839318], + [-61.52131703462444, -10.842630827167275], + [-61.52129515621976, -10.842553966467143], + [-61.51013692136823, -10.837036543796987], + [-61.50945380498627, -10.830805601358655], + [-61.50947063702839, -10.830757575356456], + [-61.51246065174912, -10.822226431332362], + [-61.50335975792269, -10.808468423726525], + [-61.50727709749457, -10.796849530714184], + [-61.51102184830516, -10.794839239330981], + [-61.505319082410914, -10.789458135918794], + [-61.5052197957102, -10.784780735542634], + [-61.4954421152143, -10.782530361733462], + [-61.49544103323778, -10.782534229108665], + [-61.49169797100697, -10.795913761123698], + [-61.485967172892025, -10.800635356498722], + [-61.4859577225461, -10.800632955623572], + [-61.47377151488046, -10.797536686540498], + [-61.48021591266827, -10.785604968670027], + [-61.476354587585256, -10.767817573302835], + [-61.48139051970094, -10.760196365914128], + [-61.48079899662604, -10.74422237385386], + [-61.488325227839006, -10.736500711036745], + [-61.486276019372376, -10.72719509252931], + [-61.476304710287486, -10.722526709162674], + [-61.472331770174314, -10.71499662721422], + [-61.47233129959965, -10.714995735262413], + [-61.48087389154269, -10.714802298562034], + [-61.480884560976236, -10.714802056817296], + [-61.49875469480182, -10.699961674360576], + [-61.495797225483095, -10.683457176315912], + [-61.495780096038374, -10.683361563398863], + [-61.492840598520075, -10.675758725894928], + [-61.49278470398319, -10.675745678088532], + [-61.484408945556076, -10.67379031620558], + [-61.48163555967256, -10.669166266319897], + [-61.48229596317728, -10.653362592539168], + [-61.478882042937435, -10.643067205836953], + [-61.489518468887184, -10.629826863720739], + [-61.47616065406692, -10.607686834848751], + [-61.48143382075697, -10.596787244184764], + [-61.477386429558, -10.589707385205292], + [-61.47988510714498, -10.569176953263822], + [-61.47004562629422, -10.556553468992162], + [-61.46624594032172, -10.541234341350508], + [-61.478925892618555, -10.529955471178422], + [-61.478993807699396, -10.529895058935361], + [-61.479003688555174, -10.52965628209542], + [-61.48073953045002, -10.487771201894802], + [-61.47013003718052, -10.461441327804236], + [-61.47599087371566, -10.45474964924626], + [-61.46701541695915, -10.448516514258719], + [-61.46171645385601, -10.419927112048724], + [-61.46427062907763, -10.416646588052616], + [-61.46428578736118, -10.416627119038619], + [-61.464285858595304, -10.416627103210367], + [-61.46927504055705, -10.415122390661303], + [-61.47610670267729, -10.418454056298122], + [-61.47610670687885, -10.418454012176486], + [-61.47684968163774, -10.410652701459561], + [-61.47681499611127, -10.410617517982214], + [-61.47143823582254, -10.40516332826977], + [-61.48398964294764, -10.4001731981862], + [-61.489488426193184, -10.390287013694127], + [-61.49676999560613, -10.389623077708036], + [-61.49697791617175, -10.389604117114416], + [-61.496990591461085, -10.389602961231274], + [-61.50304627926208, -10.375947184260681], + [-61.50165757996023, -10.353797686089656], + [-61.511824503282654, -10.350424617062963], + [-61.51609953494724, -10.334457444598671], + [-61.52141211306692, -10.33080499717586], + [-61.52141509933963, -10.330802944061029], + [-61.533661616198195, -10.331903858192682], + [-61.53367295180991, -10.331904876973807], + [-61.540821186650255, -10.320245396130497], + [-61.54804341457347, -10.316410375953305], + [-61.55327045805476, -10.307026778274004], + [-61.5440229123272, -10.301015536646378], + [-61.55452756754591, -10.279577138423793], + [-61.56207118911163, -10.272056100904187], + [-61.56211193606195, -10.272015475440055], + [-61.57666074872205, -10.248597027961228], + [-61.57666545011862, -10.248480136706563], + [-61.57754621208155, -10.226599507707453], + [-61.57352895629363, -10.219311389190114], + [-61.573940347026266, -10.208980902401656], + [-61.551653736031874, -10.197796861038707], + [-61.55971273098021, -10.1931023941897], + [-61.55860602861497, -10.17661459602892], + [-61.55859965685707, -10.17651962563778], + [-61.558695109068694, -10.176455829168516], + [-61.57849511667109, -10.163221713201617], + [-61.57849605659569, -10.163221084938764], + [-61.59672746837031, -10.162397563583582], + [-61.596739549916244, -10.162397017521112], + [-61.59972882094112, -10.159212325788316], + [-61.59974503629404, -10.159195050297003], + [-61.60151417947388, -10.156667096242527], + [-61.60144794319511, -10.156462946492548], + [-61.59010200589017, -10.121482224977338], + [-61.59102516841511, -10.111226604894409], + [-61.583219265380535, -10.095696918027482], + [-61.58302436385149, -10.082492415883449], + [-61.57863213403157, -10.079265685412118], + [-61.5842967342904, -10.059630550082215], + [-61.57166253229287, -10.046543145194441], + [-61.55579529302577, -10.038972504811015], + [-61.54041003788241, -10.00159461372088], + [-61.54031988864795, -10.001375533883868], + [-61.540042993044906, -9.999546094218116], + [-61.54151487807751, -9.99566506112567], + [-61.53112371414503, -9.989871051859987], + [-61.53110377682928, -9.989750745798526], + [-61.52790617021143, -9.970450767450131], + [-61.53934885840482, -9.964119156771615], + [-61.532343952857154, -9.952651950324027], + [-61.52326441125106, -9.948506131735924], + [-61.52362902705684, -9.94135958355171], + [-61.5287018373912, -9.934912554124182], + [-61.5230768749707, -9.928051918078118], + [-61.52490306885065, -9.90659610150465], + [-61.511081857612645, -9.895648281564297], + [-61.510997754628534, -9.895581656877768], + [-61.5083972582407, -9.872987553983593], + [-61.508394110967735, -9.872919541997488], + [-61.50784744107457, -9.861100782809013], + [-61.51543553651788, -9.843434905933252], + [-61.518177231463106, -9.823041461075066], + [-61.532048366464764, -9.81977734852154], + [-61.52520710591061, -9.80765214490673], + [-61.52484692526407, -9.795749063592684], + [-61.53832506859089, -9.79345192806702], + [-61.54728855265957, -9.787560247997396], + [-61.532544444866964, -9.758002772284033], + [-61.53143455633681, -9.739930413273344], + [-61.55517959949197, -9.729099265128307], + [-61.5551827067989, -9.729097847656448], + [-61.56669791997537, -9.729402398859854], + [-61.56670992540605, -9.729402716160646], + [-61.572892055279134, -9.724037054472822], + [-61.57292228266761, -9.724010818929543], + [-61.5729315544518, -9.723975944672256], + [-61.57457042164675, -9.717811749184252], + [-61.55298330184778, -9.70721047916234], + [-61.55297888015366, -9.707215691045558], + [-61.54601308872159, -9.715426260723506], + [-61.54600365449922, -9.715423754423277], + [-61.532349751368656, -9.711796045378032], + [-61.51959423018569, -9.697052981954348], + [-61.5052042069625, -9.691400086951717], + [-61.50220131756032, -9.67986668825839], + [-61.50681489663301, -9.661974039208852], + [-61.49399201354742, -9.659400246917935], + [-61.47683637137642, -9.628935303796636], + [-61.47672756889386, -9.628742049780968], + [-61.47675208360061, -9.628710691024663], + [-61.480878197977624, -9.623432624084604], + [-61.480882051448354, -9.623427694762615], + [-61.487358984295675, -9.626542870107954], + [-61.48740236918146, -9.626563735815331], + [-61.4874024413307, -9.626563722890912], + [-61.49566492116833, -9.624796759305887], + [-61.49570468707828, -9.624745286971342], + [-61.50295272089054, -9.615364056760729], + [-61.495013451808, -9.584297987894129], + [-61.49496728571227, -9.58411728636335], + [-61.49497586565935, -9.584057939190139], + [-61.49637281613486, -9.574396063918975], + [-61.50309476308817, -9.573015311987412], + [-61.50459498561648, -9.567960124726401], + [-61.51029123942144, -9.56510995387764], + [-61.50796266890342, -9.540481687247464], + [-61.51400010311547, -9.539268620161764], + [-61.51401165363888, -9.539266301317483], + [-61.51400772075495, -9.539200226504605], + [-61.51337430478515, -9.52855426616579], + [-61.51337398849484, -9.528548948500237], + [-61.52703705210642, -9.533282222579375], + [-61.52704427162148, -9.53328472338224], + [-61.54948491284, -9.515235766784931], + [-61.54732609517384, -9.511239617988144], + [-61.52587672479946, -9.501878819029223], + [-61.525732160786006, -9.501815720341424], + [-61.52589099775341, -9.501746789049637], + [-61.56265617337096, -9.485789963599439], + [-61.56898985214646, -9.47687577958664], + [-61.576871438919284, -9.474502786993874], + [-61.576896578045, -9.474495223507033], + [-61.57839941239285, -9.469534959167976], + [-61.57836094072883, -9.469497042376679], + [-61.572405184488325, -9.463626918338562], + [-61.5816506981611, -9.459143900039837], + [-61.56459923128221, -9.438372732023709], + [-61.556651914689795, -9.435633149753322], + [-61.55582109796386, -9.421809313527046], + [-61.55052794465521, -9.417766413992705], + [-61.561355000832876, -9.40066522210554], + [-61.56141492443185, -9.400570573608393], + [-61.559600386371365, -9.393120779955455], + [-61.5524315973671, -9.38834978385884], + [-61.552544511518974, -9.388256483498976], + [-61.57375131874184, -9.37073284989308], + [-61.59456454353475, -9.368722944021563], + [-61.59463777024205, -9.368693698521966], + [-61.6100611104736, -9.362533216767288], + [-61.6121767879976, -9.355957709279208], + [-61.612178912355056, -9.355951106902024], + [-61.625761996415804, -9.362986013442416], + [-61.6258467982316, -9.363029929894612], + [-61.62584680579057, -9.363029885726837], + [-61.625857807791924, -9.362965599892888], + [-61.6277936755384, -9.351654998065426], + [-61.62472684157428, -9.336530945927596], + [-61.6247090535505, -9.336443209395757], + [-61.61612919071175, -9.326843798602653], + [-61.61610080234452, -9.326779031767774], + [-61.61126479163868, -9.315744950118885], + [-61.615342592134326, -9.306251624333271], + [-61.61242156368041, -9.27996607504292], + [-61.61240459966193, -9.27981334886384], + [-61.61534314854161, -9.278677225555043], + [-61.61534316840209, -9.278677235447724], + [-61.61541996078104, -9.278715486483174], + [-61.626226137788116, -9.28409777642771], + [-61.626234214008115, -9.284101798716753], + [-61.630723911709424, -9.279903004312384], + [-61.63074614131504, -9.279882214924463], + [-61.63326587109298, -9.270624966621288], + [-61.633236761566344, -9.270546386373436], + [-61.62826163445601, -9.257114720012652], + [-61.599535215279026, -9.256052784300335], + [-61.58907767623578, -9.243769059577435], + [-61.58901151676176, -9.243691339839248], + [-61.57497426738064, -9.23716439067691], + [-61.57489754022365, -9.237186686111489], + [-61.551904060134746, -9.243869111084644], + [-61.551892611347455, -9.243869258232367], + [-61.539023801880944, -9.244034421579096], + [-61.53902249370504, -9.244035419356802], + [-61.532633365922784, -9.248908514297124], + [-61.53262826049936, -9.248904588820421], + [-61.524783484223164, -9.242872553787521], + [-61.52801284002312, -9.231182636608347], + [-61.52027809567628, -9.192077728947135], + [-61.52022982842829, -9.19183359253461], + [-61.52025004955499, -9.191755909140896], + [-61.523561407332124, -9.179035272767674], + [-61.53182240666579, -9.17106391976316], + [-61.538697595376796, -9.15334416717053], + [-61.538735086960344, -9.153247541219352], + [-61.53882047009544, -9.153135515638747], + [-61.55529973295206, -9.131513989783413], + [-61.55882001083787, -9.117617156045927], + [-61.555672614263855, -9.092419471078966], + [-61.54162743802561, -9.054243751210876], + [-61.54153678760559, -9.053997281568908], + [-61.53059145031279, -9.042040179712199], + [-61.53057477300857, -9.04190000776752], + [-61.52789487219204, -9.019367101264494], + [-61.52057360672932, -9.000684892013481], + [-61.5205275070346, -9.000567238863951], + [-61.492942305477996, -8.942564796787071], + [-61.492772981374024, -8.942390942658372], + [-61.468422047487195, -8.91738393106367], + [-61.48441908036997, -8.906007025016754], + [-61.48451902871802, -8.905935941132862], + [-61.484564611250285, -8.905808587985119], + [-61.492066726579274, -8.884849330167082], + [-61.51142127037329, -8.863656472705285], + [-61.5136499229364, -8.83696647483733], + [-61.523503797413454, -8.818613740936406], + [-61.52350455026253, -8.818612338780977], + [-61.542996723154054, -8.819112113102246], + [-61.543006521502974, -8.819112364058185], + [-61.56828145311325, -8.801099911917246], + [-61.56828483321395, -8.801097502962135], + [-61.580016774516274, -8.802707063564787], + [-61.5800274335969, -8.80270852572799], + [-61.5830345325056, -8.79872663784806], + [-61.583051046013864, -8.798704764328813], + [-61.18456578144109, -8.798587730632189], + [-61.18456570892177, -8.79858773057234], + [-61.01428289266797, -8.798410059742496], + [-61.0142828201486, -8.79841005965085], + [-60.84932675967278, -8.798166490896596], + [-60.84932668716582, -8.79816649069118], + [-60.84879672102493, -8.798164389762016], + [-60.8487966485248, -8.798164389510221], + [-60.51503844131749, -8.797016644990993], + [-60.51503836881259, -8.797016644709155], + [-60.42087575538482, -8.796639343821628], + [-60.42087568287885, -8.796639343529664], + [-60.42010026741344, -8.79663630440319], + [-60.42010019483441, -8.796636304650493], + [-60.07241353047697, -8.80020040483647], + [-60.07241345784361, -8.800200405397467], + [-59.41274862565071, -8.803348078945701], + [-59.412748553053554, -8.803348079091665], + [-59.28868677013147, -8.803344806635831], + [-59.2886866975528, -8.803344806622114], + [-59.12721776256493, -8.803279690871832], + [-59.1272176899826, -8.803279690853163], + [-59.09610603586238, -8.803281715583166], + [-59.09610596327626, -8.803281715585925], + [-58.610132769571294, -8.802987439432332], + [-58.5002858331058, -8.802832307163852], + [-58.44290615129685, -8.79949184992907], + [-58.43000966728958, -8.7899162588702], + [-58.422666387125204, -8.788724688492474], + [-58.42266620845971, -8.788724795969934], + [-58.41580350015771, -8.792853038990382], + [-58.41580309806051, -8.792852778579459], + [-58.39057273777645, -8.776510553077305], + [-58.38792660658819, -8.7747963396579], + [-58.38497270270076, -8.771471719868854], + [-58.35459463108348, -8.737273452056654], + [-58.33199658228515, -8.726470575332575], + [-58.326149587176246, -8.72004215805003], + [-58.32829379422568, -8.712188406890098], + [-58.350951358212264, -8.70159401788722], + [-58.35095176262232, -8.701593828778378], + [-58.381172952914774, -8.705611681162702], + [-58.383598859044156, -8.705934079493334], + [-58.386386692398766, -8.707381799415916], + [-58.41188035286352, -8.720618619230564], + [-58.41188075008409, -8.720618825447074], + [-58.43345489848544, -8.71044839350014], + [-58.43722539414245, -8.703362407330491], + [-58.414199409664924, -8.643914970554357], + [-58.40344894040371, -8.631207541650673], + [-58.40103531209661, -8.615896952805127], + [-58.39086302141126, -8.602992629931812], + [-58.3894430129319, -8.59480219263918], + [-58.398394299319676, -8.580140224342474], + [-58.410393519393594, -8.570401620901858], + [-58.404113857369104, -8.539509115041488], + [-58.40511340544441, -8.530761213325986], + [-58.41522153873313, -8.516300474627327], + [-58.4169777991459, -8.491965479309675], + [-58.405194330917894, -8.467563872980564], + [-58.39833962760222, -8.464248961996615], + [-58.38930947849327, -8.439974642203408], + [-58.37604275747874, -8.429209014639262], + [-58.35362308824203, -8.392827250906858], + [-58.35495586556061, -8.384427057803913], + [-58.34843053371918, -8.369295652800174], + [-58.350917815068364, -8.354128364962493], + [-58.34799630289997, -8.34620757037966], + [-58.31850926610082, -8.330144936108416], + [-58.314817349899485, -8.323069518965495], + [-58.31576093117818, -8.306447016682949], + [-58.325875944061195, -8.294111380023681], + [-58.32800759028385, -8.285838654430828], + [-58.32051206063733, -8.271878200180641], + [-58.32196787802711, -8.23523927959129], + [-58.32209373285666, -8.232075072366326], + [-58.32132001946114, -8.230149433458054], + [-58.31286933676055, -8.2091142616734], + [-58.32238806238153, -8.170048759027168], + [-58.31735618606222, -8.15455674754451], + [-58.2912046125414, -8.134052996143534], + [-58.28854241112111, -8.131965414380911], + [-58.28709233687472, -8.12855401483275], + [-58.29181505516941, -8.112739126397194], + [-58.29123617610029, -8.110199523949703], + [-58.286287886573575, -8.088486814131063], + [-58.28831588654554, -8.079581554942573], + [-58.32165209524558, -8.024991006922248], + [-58.32542602131403, -8.009738763053136], + [-58.32443041099513, -7.992688810904382], + [-58.33142591331603, -7.96877205758898], + [-58.35497251669915, -7.943998713027796], + [-58.373167938713806, -7.90720922424255], + [-58.37458844913206, -7.864769743246785], + [-58.383915762145136, -7.852139003347806], + [-58.38466453522817, -7.8439983964120215], + [-58.37814280625644, -7.827446830393434], + [-58.37161264683189, -7.821219867303866], + [-58.33398331621584, -7.804410319960138], + [-58.30056948953647, -7.7772875289379115], + [-58.297184313656174, -7.7745391684760925], + [-58.29397791518371, -7.7715497473194], + [-58.292644959161144, -7.768314564091223], + [-58.28442430851495, -7.748359771656226], + [-58.28242032159994, -7.716840857184308], + [-58.28223416254856, -7.713910920545551], + [-58.275912296276935, -7.699676379003836], + [-58.25171700403397, -7.676808662209507], + [-58.249665020602976, -7.672844609108002], + [-58.23971257650246, -7.653615921250879], + [-58.23971189281913, -7.653615326129811], + [-58.232601859596905, -7.647426069806697], + [-58.20209359373163, -7.620863408265529], + [-58.202446624513016, -7.596752491058159], + [-58.21878523530275, -7.550039868061729], + [-58.222343174824005, -7.526085412356972], + [-58.222645981178914, -7.524046990482165], + [-58.22185045232923, -7.521498150788804], + [-58.213063032556605, -7.493338194413648], + [-58.212982514022215, -7.458543934423438], + [-58.17328352471158, -7.394376393114692], + [-58.14359354638696, -7.366205560747755], + [-58.140646743745535, -7.363409041705828], + [-58.13697695162224, -7.356133606634808], + [-58.13708501162108, -7.355580863961427], + [-58.138363105058744, -7.349043388968912], + [-58.13836223705541, -7.349043565257518], + [-58.11852384724721, -7.353072286559415], + [-58.118523775366924, -7.353072298648769], + [-58.06033389853767, -7.397028291641459], + [-58.03502838760617, -7.454148394548837], + [-58.03271714268906, -7.45653369998143], + [-58.002091486662145, -7.48813935935711], + [-57.97250567089736, -7.534597113054044], + [-57.947114900737205, -7.5970476228909645], + [-57.94503109054556, -7.6021730803139285], + [-57.94459356859578, -7.606190761237578], + [-57.93948236744369, -7.653143740559901], + [-57.934650485466435, -7.656542832133868], + [-57.93431139560522, -7.656781366246593], + [-57.916117453436755, -7.657353530246476], + [-57.900046932852455, -7.6709104375032275], + [-57.89887471985919, -7.671899275547275], + [-57.89691595240107, -7.681981153368348], + [-57.87376239929917, -7.801202385571188], + [-57.84089591188815, -7.861486475622929], + [-57.83530514556297, -7.880617162896508], + [-57.834838799486896, -7.882212966352597], + [-57.831790676896304, -7.961524633126015], + [-57.82875824028001, -7.972904627625905], + [-57.80392291234901, -8.00343381440136], + [-57.801882766992826, -8.007054643462], + [-57.77645421736358, -8.052183950017746], + [-57.73165570771922, -8.091348413293998], + [-57.72836574458014, -8.094224367515212], + [-57.7276939728939, -8.098325201916321], + [-57.719785284198274, -8.146613603823331], + [-57.71506430298017, -8.157956059807505], + [-57.705293541223284, -8.167332397218273], + [-57.70456434544497, -8.168032143451292], + [-57.677172539067826, -8.171404576063924], + [-57.6671737757368, -8.176476396067478], + [-57.644897468515225, -8.209570896359523], + [-57.64313864725085, -8.21218377883741], + [-57.64389423569993, -8.231096263412487], + [-57.64551816585771, -8.234275259529241], + [-57.66301017645954, -8.268510631112177], + [-57.66476228279846, -8.294891670202585], + [-57.6797922290112, -8.318992544690078], + [-57.67898291909842, -8.333511299358035], + [-57.66879617324944, -8.364326936172501], + [-57.667951018507374, -8.366883647108077], + [-57.670091766442084, -8.379347545826677], + [-57.68648431810161, -8.407016365246202], + [-57.68651541069373, -8.40775899251014], + [-57.68687151092226, -8.416262108922592], + [-57.68151203501778, -8.433134425546225], + [-57.65351619978452, -8.468320514683628], + [-57.65134595076909, -8.471048013523816], + [-57.65137890205567, -8.471675647431713], + [-57.651755722248865, -8.478851836193998], + [-57.659653296975314, -8.491636440406742], + [-57.660396530965336, -8.49283949795328], + [-57.660286095607816, -8.493429132863495], + [-57.65898144997362, -8.50039503181059], + [-57.63892805723809, -8.512730235126591], + [-57.6375682092665, -8.51356665989939], + [-57.637310963185584, -8.5139588543107], + [-57.63406094251817, -8.51891377169102], + [-57.633350004923464, -8.526819337982847], + [-57.638307930717005, -8.539422165322089], + [-57.638761444160885, -8.540574884328278], + [-57.63979856791658, -8.541713032778013], + [-57.65043051225389, -8.553379759434836], + [-57.64871612269836, -8.574563841322352], + [-57.64856889771192, -8.576383460873455], + [-57.64828686748273, -8.576792711155912], + [-57.64470611084357, -8.581988666247161], + [-57.63078468008472, -8.58539545986002], + [-57.63078460843802, -8.585395473364262], + [-57.622172947974164, -8.591196821160187], + [-57.62237377093844, -8.595029350247897], + [-57.62467234060627, -8.638849725308631], + [-57.620801835787304, -8.64708324820189], + [-57.620487033020005, -8.647752909533386], + [-57.60522979330001, -8.662842013279342], + [-57.60249045881135, -8.680677653980869], + [-57.59676247166309, -8.691673863884468], + [-57.59651171798867, -8.692900624564494], + [-57.593542445152686, -8.707427718782949] + ] + ] + }, + "MS": { + "name": "Mato Grosso do Sul", + "coordinates": [ + [ + [-56.10203736268223, -17.174090702905442], + [-56.084407914928114, -17.177676135978064], + [-56.07154609236574, -17.170633395187636], + [-56.06773400590812, -17.17475168790772], + [-56.06001003654402, -17.171705879744085], + [-56.05093014003176, -17.186960324136738], + [-56.04718403312291, -17.184832707449196], + [-56.04946191538636, -17.17244619841828], + [-56.04567718458488, -17.170966435638032], + [-56.03237625661144, -17.185369701282927], + [-56.016013429356164, -17.19024073381495], + [-56.00545620382631, -17.20420871354093], + [-56.0185158006684, -17.209470042192194], + [-56.0209007139034, -17.21601266036986], + [-56.01732198345959, -17.218331557760376], + [-56.01309246377986, -17.213959425684838], + [-56.00857358568978, -17.2142022686853], + [-56.012650729468135, -17.222659895617852], + [-56.01198374283329, -17.23669367298355], + [-56.01073140408107, -17.23905516992326], + [-56.00370612729595, -17.233741724193653], + [-56.00378788897575, -17.244803152987977], + [-56.00045675358177, -17.246255071826575], + [-55.99567819122239, -17.24078625775514], + [-55.99086693993006, -17.24022156539822], + [-55.98735750841636, -17.243818138849168], + [-55.992202207300195, -17.254585104311225], + [-55.98690434855906, -17.25849199951802], + [-55.98075974664494, -17.246711737234303], + [-55.97387344691358, -17.253616945805437], + [-55.96812230382743, -17.254721805406202], + [-55.96010072569356, -17.25020225132814], + [-55.951870449749165, -17.250209980821914], + [-55.95576381197804, -17.256465228672198], + [-55.94614996432612, -17.272515986269347], + [-55.938154588410576, -17.27852956450363], + [-55.93142769235466, -17.27382391691717], + [-55.9313134856284, -17.264669843329138], + [-55.92628658271288, -17.257871294381033], + [-55.9165906565723, -17.26505452982268], + [-55.88648397352436, -17.263910372713358], + [-55.88648353167272, -17.266731860667477], + [-55.89970505218695, -17.270154102213713], + [-55.89982650356997, -17.277045852012076], + [-55.89082090380254, -17.27234401552284], + [-55.89159452950902, -17.280869800687647], + [-55.88650832699586, -17.284775921153596], + [-55.87545118600983, -17.280615583771542], + [-55.87987242145707, -17.27335888389837], + [-55.87475726919766, -17.268646049370574], + [-55.85817540528307, -17.283540682475984], + [-55.85136928666701, -17.279285417184422], + [-55.85045656072669, -17.290350523137757], + [-55.841866356631556, -17.3012432551037], + [-55.8382630993254, -17.300523932039575], + [-55.835041819611966, -17.29136802944413], + [-55.82626739065783, -17.288837792660676], + [-55.83168097599242, -17.301621852568637], + [-55.82798559115626, -17.306614927644986], + [-55.82090021895265, -17.297709772487362], + [-55.806454212022096, -17.29802090104671], + [-55.80247803731326, -17.30129098176756], + [-55.80495727587996, -17.30945074819962], + [-55.7843679518864, -17.330057192746242], + [-55.78448742040275, -17.324701048073244], + [-55.78059693800659, -17.321438039097146], + [-55.772486125908415, -17.33206024300445], + [-55.768710916504595, -17.325799138045245], + [-55.76115287179936, -17.323542610576354], + [-55.751424953341285, -17.330438956344096], + [-55.74395426411616, -17.331353116155405], + [-55.74020814697069, -17.337157241431434], + [-55.729818740707564, -17.339885510891925], + [-55.72281484735295, -17.349227394788077], + [-55.70904377462841, -17.337625982515398], + [-55.701293094952014, -17.354139810397868], + [-55.69317496369475, -17.339900469990802], + [-55.68920870057835, -17.340449698427083], + [-55.686179498879746, -17.35088052615685], + [-55.68231894660506, -17.349430781025273], + [-55.68059519797917, -17.338994756263638], + [-55.6751300039029, -17.340355645308893], + [-55.67275727055042, -17.348976158818584], + [-55.668051468048766, -17.35069725347128], + [-55.6565136699671, -17.338272179856112], + [-55.65595215882274, -17.34636271982237], + [-55.646147179392635, -17.359415167642545], + [-55.64078688248319, -17.356164107264288], + [-55.638871997260615, -17.3498000958036], + [-55.645177487449274, -17.341637168529328], + [-55.64302260199285, -17.33937955266012], + [-55.63706883473947, -17.342543624006183], + [-55.6358411293499, -17.353058538850963], + [-55.626286198287914, -17.364039631930556], + [-55.613731842749985, -17.3681165346362], + [-55.61336786222835, -17.359861825851862], + [-55.60216922462932, -17.367702731618458], + [-55.593233947637856, -17.374368870226515], + [-55.58555548102083, -17.37362687994741], + [-55.5892898418706, -17.37836561569676], + [-55.58285367557046, -17.379080573371898], + [-55.58586806195112, -17.38861060560856], + [-55.58359083190087, -17.395411339250057], + [-55.58654292435556, -17.398224190978013], + [-55.57981757328539, -17.400852725017568], + [-55.58654045259629, -17.40339092179768], + [-55.58858827624246, -17.41382637771382], + [-55.58539741832243, -17.422533076268397], + [-55.58245923695927, -17.419087841239442], + [-55.57528553127519, -17.418809485432693], + [-55.57737209574938, -17.424159346593864], + [-55.57481925000672, -17.434675546410283], + [-55.5596772162364, -17.43966413227474], + [-55.54956494576282, -17.448091113951225], + [-55.55581255999157, -17.44782383828202], + [-55.55731579624922, -17.451904845958808], + [-55.54268471233517, -17.4565242501844], + [-55.543513451556606, -17.46069189387419], + [-55.538507983429376, -17.461056713624515], + [-55.53697839464361, -17.468493514432037], + [-55.53320608684745, -17.466500151635756], + [-55.527067346772085, -17.472111578694935], + [-55.52214418883893, -17.472112257476542], + [-55.5240359249006, -17.481185749090436], + [-55.51497955199464, -17.4836305756165], + [-55.50447910557874, -17.480990459446875], + [-55.504288254020466, -17.48652095915207], + [-55.499288773083805, -17.483000633962508], + [-55.49756539215006, -17.486527434554453], + [-55.49315519754661, -17.483436091281526], + [-55.49004030798825, -17.485147712956813], + [-55.48299019854587, -17.478694835852405], + [-55.47672882387221, -17.48428045954614], + [-55.47258880555924, -17.48136548009916], + [-55.45864339737879, -17.493996201583982], + [-55.45845350440555, -17.499700173584298], + [-55.45373297273883, -17.500405915963025], + [-55.4538455670075, -17.50769207941537], + [-55.44368410583176, -17.511785011169202], + [-55.443866585422214, -17.50568272192342], + [-55.43267143112128, -17.511748221412354], + [-55.423287869681495, -17.509891615265055], + [-55.42253365806828, -17.5135301615867], + [-55.41631030053914, -17.51492690763711], + [-55.405151200281956, -17.512405508873663], + [-55.39337098294501, -17.516066576286473], + [-55.39067906760554, -17.521323840671318], + [-55.3865665606777, -17.519113253931277], + [-55.38228183242754, -17.52548450292084], + [-55.37706004889146, -17.5150511870763], + [-55.37184941280188, -17.522686991070373], + [-55.35856478121211, -17.526471189199132], + [-55.35370668621142, -17.531625404592212], + [-55.35061967354806, -17.54856686175138], + [-55.33940222092782, -17.548515588838445], + [-55.337814680982355, -17.54524808212668], + [-55.3240350495776, -17.553037971419354], + [-55.324145705050526, -17.550119428279714], + [-55.32959655791617, -17.54844699125286], + [-55.32245012732416, -17.542441466159133], + [-55.31586674969069, -17.54600108577285], + [-55.29962175033299, -17.541201210404097], + [-55.29261451824872, -17.542557770163327], + [-55.29648153913903, -17.55112342041161], + [-55.28378156935159, -17.55216543574042], + [-55.289508700924834, -17.5603207869762], + [-55.28273649643576, -17.557445998247978], + [-55.28073033825998, -17.562962223670652], + [-55.27416894682864, -17.564496877981597], + [-55.275095757291076, -17.55883408435684], + [-55.27120570325218, -17.560076805753273], + [-55.26914812057029, -17.55678279249334], + [-55.2630060858135, -17.564844787807093], + [-55.267035716702026, -17.566039496253634], + [-55.26408700455194, -17.577929397559235], + [-55.25803342910216, -17.57439154671107], + [-55.25025657188585, -17.584884593503485], + [-55.252341749353036, -17.592318730954347], + [-55.24486740279622, -17.59142188788593], + [-55.24922715742704, -17.595343007690705], + [-55.24248077633641, -17.602131824446428], + [-55.24328465112022, -17.59431447736164], + [-55.23817491574677, -17.60086882704206], + [-55.23655700716044, -17.595855331216015], + [-55.2318661529887, -17.595586488990385], + [-55.2280900469863, -17.601437599575632], + [-55.22717657247998, -17.59885150589726], + [-55.218087360387784, -17.607524949979677], + [-55.21908588355892, -17.613246160473864], + [-55.225617363961206, -17.609330314549087], + [-55.22144671514332, -17.617107036278778], + [-55.20475709019391, -17.61376764663498], + [-55.203446857321694, -17.61795011971604], + [-55.19542487478045, -17.618720613593297], + [-55.19220187928848, -17.62825354151577], + [-55.183842237041915, -17.61981297761635], + [-55.18487078576104, -17.624223428036675], + [-55.1806596968646, -17.623207950643618], + [-55.17401761374781, -17.63063899889997], + [-55.175676590796115, -17.634929216084817], + [-55.16675839100575, -17.6342151523423], + [-55.17167392779269, -17.63805251020961], + [-55.1705611152529, -17.64084152438253], + [-55.16642014016637, -17.637297683362895], + [-55.16301187360878, -17.642177990728438], + [-55.15406474160771, -17.64303542955283], + [-55.141950397589454, -17.639294508782157], + [-55.14358515636954, -17.644631290331116], + [-55.138991953713756, -17.647779965271166], + [-55.13703465965027, -17.65019517136549], + [-55.127203098069025, -17.652729593014286], + [-55.118034671557965, -17.648841172767657], + [-55.11383925911272, -17.64397031192967], + [-55.10870482161115, -17.628667680171827], + [-55.10053009417124, -17.631115543364565], + [-55.096651274269725, -17.627649094623372], + [-55.097450872997115, -17.63178403229545], + [-55.09331338581309, -17.63604393435425], + [-55.08728431730993, -17.62992506232054], + [-55.0798990240107, -17.633497897706874], + [-55.07714199088264, -17.630522687828133], + [-55.07259533182214, -17.63163965416248], + [-55.063762429910135, -17.642466897131236], + [-55.06245044342618, -17.639058180169805], + [-55.056421843465, -17.642396111313392], + [-55.055147590389815, -17.638646551735356], + [-55.04725948511624, -17.64033999555398], + [-55.04470179396769, -17.636397508284997], + [-55.04294698523181, -17.639316678642366], + [-55.03342092014622, -17.638038762836686], + [-55.03200355841335, -17.640509790591604], + [-55.02695705508699, -17.636328902938622], + [-55.023008301111155, -17.63793941921951], + [-55.02298098012899, -17.634768565892426], + [-55.01889999497364, -17.63632548032063], + [-55.016261697330116, -17.629817296188918], + [-55.01122846649291, -17.634484004506366], + [-55.010700390707704, -17.62934714886365], + [-54.99178131176327, -17.63840594375059], + [-54.992731643720454, -17.63298062092538], + [-54.989113315617935, -17.63301775167534], + [-54.98489028205327, -17.62408319255871], + [-54.981420645413394, -17.628754016915856], + [-54.97422268230453, -17.617054105140145], + [-54.96633797289756, -17.62094143886233], + [-54.966978506303604, -17.615599024317163], + [-54.94828423200178, -17.615353533902653], + [-54.94337156555434, -17.609034916319253], + [-54.93067014953171, -17.610947171603932], + [-54.91425468253628, -17.60845709349995], + [-54.902115771634215, -17.61156018077382], + [-54.894776072427696, -17.62152332643089], + [-54.880583757488125, -17.616876505755425], + [-54.86081102716256, -17.62385968217653], + [-54.851533484559866, -17.613039453902935], + [-54.83905517071106, -17.61394748882242], + [-54.82495143358151, -17.609681989817627], + [-54.820144970162374, -17.60335877910594], + [-54.82125801397933, -17.59739220992047], + [-54.813170018853825, -17.594290600738645], + [-54.800701379816275, -17.582602701490796], + [-54.791532866534006, -17.582297157724728], + [-54.7787609954452, -17.571424828833514], + [-54.765924016562174, -17.568214239998028], + [-54.75872808588624, -17.565702256261584], + [-54.76010938045897, -17.56037548268603], + [-54.75694651916022, -17.55860773655065], + [-54.76211812036008, -17.55442198541056], + [-54.75592438263165, -17.54518323356797], + [-54.75694997991879, -17.534500193080724], + [-54.750312769245994, -17.523443292316458], + [-54.739667415765425, -17.520477342508116], + [-54.7300325200072, -17.515537497486374], + [-54.71875160941336, -17.518370414970235], + [-54.715414385587884, -17.513148553863832], + [-54.700532883137534, -17.50631878731398], + [-54.699670011695545, -17.497386286218497], + [-54.69547399395103, -17.50352669254143], + [-54.681258090640505, -17.50685561281786], + [-54.67670048263089, -17.501532426982028], + [-54.6693929285102, -17.504239651599274], + [-54.65667499350054, -17.496909522578747], + [-54.654943681487744, -17.490165183431415], + [-54.63602787747516, -17.495729805021217], + [-54.62056103826359, -17.488244343149915], + [-54.617283279789454, -17.49042927974193], + [-54.60736597216854, -17.487135805167725], + [-54.58856087934717, -17.477127218643105], + [-54.58160991966509, -17.46801223695861], + [-54.5722754610905, -17.47559174973404], + [-54.567970704408914, -17.474312956719768], + [-54.57094492636717, -17.480357988295022], + [-54.56897602617944, -17.483028990434633], + [-54.56299386674424, -17.479180771787583], + [-54.55413560549675, -17.488673562099482], + [-54.536279179513855, -17.477590261491738], + [-54.53087910010639, -17.47839079665844], + [-54.52514446177913, -17.48204809164296], + [-54.503699426076274, -17.480114869103872], + [-54.490890208995545, -17.488621908364042], + [-54.48125639029669, -17.48766963733172], + [-54.483003642981636, -17.493973798381216], + [-54.47417719919993, -17.49799764024399], + [-54.479500583953744, -17.5078432041643], + [-54.473339041202074, -17.51030561150105], + [-54.47755679180374, -17.513531032348066], + [-54.466862166331715, -17.529078942320414], + [-54.43399748583116, -17.534837549534775], + [-54.431785490122785, -17.53814836535654], + [-54.423160110650585, -17.536458373329108], + [-54.41394495125957, -17.544556216908845], + [-54.41366505534125, -17.551533815578683], + [-54.40588964853658, -17.553609910911696], + [-54.4036618130156, -17.564547100129364], + [-54.398809405994655, -17.56738585316039], + [-54.393087795666894, -17.566051931980343], + [-54.39197657019656, -17.570560912017473], + [-54.382108256178036, -17.57279471928617], + [-54.38628204410747, -17.585988017917437], + [-54.38013799866071, -17.594158721291492], + [-54.384551993765996, -17.60136843865038], + [-54.38144317030838, -17.601050089571263], + [-54.38252061170565, -17.606236034006326], + [-54.37436432505355, -17.608581816160772], + [-54.38260941689632, -17.62734210924519], + [-54.38774623078816, -17.63194095173774], + [-54.38447594112366, -17.63615683623649], + [-54.3568313728222, -17.65176008436517], + [-54.35642017514289, -17.64921199727484], + [-54.35052757749213, -17.65711027465636], + [-54.3433903999855, -17.655577797786627], + [-54.33553250209416, -17.66172711724927], + [-54.32775189594629, -17.658812780524226], + [-54.32083560955302, -17.659537019631127], + [-54.3199442984935, -17.662341190504197], + [-54.3092243708216, -17.658851702381924], + [-54.302368048616835, -17.661664145644753], + [-54.29192006495551, -17.653005135748884], + [-54.28827622139046, -17.655675884466913], + [-54.27252459910581, -17.653293964003105], + [-54.273691432428244, -17.651503370190945], + [-54.25030444941459, -17.640501404663556], + [-54.24369143668266, -17.628908353004327], + [-54.23286080894077, -17.626770994099292], + [-54.222167890401806, -17.61992638869392], + [-54.21394332742809, -17.620178496684325], + [-54.204608644844605, -17.61280559679512], + [-54.19977704522008, -17.61455615406849], + [-54.19336097888499, -17.606130743444236], + [-54.17878043693819, -17.60285465941369], + [-54.168111731003094, -17.60823189338707], + [-54.154164454306866, -17.605875963307735], + [-54.146664619182474, -17.615008261937735], + [-54.14125289812577, -17.610673412690005], + [-54.134134914012144, -17.61872975743372], + [-54.12289026857629, -17.61322637676492], + [-54.11855149907501, -17.619146271404546], + [-54.116691344594756, -17.61595879607592], + [-54.113829721694984, -17.618815630656027], + [-54.11191370728368, -17.613530130845433], + [-54.09680254785071, -17.613591377117924], + [-54.08464019834865, -17.619038023332923], + [-54.07698560827126, -17.615014069515304], + [-54.07938658523208, -17.60474532879485], + [-54.072608265956404, -17.596769672193755], + [-54.07321701878841, -17.587804535501952], + [-54.05524624987302, -17.570344879080146], + [-54.05158069924728, -17.56277327407156], + [-54.05202712802234, -17.546200376847164], + [-54.04585565199683, -17.53723059322707], + [-54.0493572252469, -17.529946289091004], + [-54.055413610190726, -17.529303191135757], + [-54.053140259870226, -17.523205778528872], + [-54.057716380830904, -17.52082728541862], + [-54.05802469265684, -17.5131325973193], + [-54.05191192519485, -17.505702597713032], + [-54.0464978590121, -17.507437829781757], + [-54.0486066590031, -17.505477537273688], + [-54.041193783371995, -17.500526845983856], + [-54.03758537196779, -17.486452071314627], + [-54.02859431651897, -17.47957029981067], + [-53.994941870237476, -17.468398882277963], + [-53.98404869218661, -17.473820481121283], + [-53.97778066619503, -17.470350225882818], + [-53.972997711822764, -17.472247075603846], + [-53.97121930805809, -17.465821670707207], + [-53.95219430462778, -17.459340390948707], + [-53.94788372914664, -17.452081967115596], + [-53.93104813485008, -17.439453263846953], + [-53.92851919448884, -17.431212860960148], + [-53.91949596463444, -17.42520889086692], + [-53.914548155242365, -17.414417470740332], + [-53.88793621245063, -17.39260864718726], + [-53.878386367231144, -17.37520142535261], + [-53.86833115978569, -17.368380389642745], + [-53.83127086751361, -17.35502315312338], + [-53.83491045398193, -17.335763224526723], + [-53.83065713404178, -17.317287265976255], + [-53.826080319527826, -17.312658905091208], + [-53.820020188458244, -17.294618434319663], + [-53.80658443527807, -17.287963802429438], + [-53.785660739326985, -17.287517813166126], + [-53.77107607742302, -17.263654843308007], + [-53.76421597126815, -17.258277917163607], + [-53.76277420377303, -17.24660397427771], + [-53.75902582318727, -17.24314517968719], + [-53.74696228005468, -17.24264331140222], + [-53.73487531461386, -17.231568990760803], + [-53.70509249066813, -17.228156281108674], + [-53.69444318108308, -17.233986414773103], + [-53.69240566708664, -17.246465999320197], + [-53.68002243790417, -17.253572112658553], + [-53.68208869286587, -17.29184917726466], + [-53.70455563561256, -17.663511443438217], + [-53.7184670278615, -17.66865032006786], + [-53.73363169273091, -17.662977447162206], + [-53.74669212522967, -17.67129088320369], + [-53.75774674086274, -17.671377108709574], + [-53.75691453196707, -17.6734623209256], + [-53.77941381902475, -17.672441693729084], + [-53.78543751417524, -17.676371481244644], + [-53.793717152149064, -17.67521299925059], + [-53.798775261985334, -17.670537073239917], + [-53.8062766093375, -17.67237335909947], + [-53.813354988713286, -17.681457961305583], + [-53.84363745716014, -17.69268999650615], + [-53.85585718969086, -17.702719487619234], + [-53.860884788971845, -17.720714141191802], + [-53.866245306507075, -17.72718621897397], + [-53.87696933164552, -17.73188436626018], + [-53.87982928290767, -17.741281898678945], + [-53.88832927186998, -17.748994909441684], + [-53.896418228309585, -17.76931147118278], + [-53.895442443106575, -17.777027024320386], + [-53.907223915789004, -17.79032197994807], + [-53.91030121689532, -17.80388796476862], + [-53.941113325435964, -17.840206724448556], + [-53.94158418039235, -17.848628538122426], + [-53.94819178557843, -17.85608442428079], + [-53.946634693857824, -17.86044797515711], + [-53.954972567044344, -17.87124619217334], + [-53.952272945229225, -17.87516859608384], + [-53.95569810070933, -17.88302184438958], + [-53.94771990778801, -17.89878521502674], + [-53.95107830039994, -17.9031961336446], + [-53.944611533860936, -17.90734058899394], + [-53.95161189095966, -17.915793002806478], + [-53.94886327127056, -17.923426037502484], + [-53.94555337297791, -17.916758137464612], + [-53.93850109411692, -17.920089058040055], + [-53.93235944377464, -17.913176060507602], + [-53.92230513433576, -17.92016543210895], + [-53.920164511030485, -17.916024682398564], + [-53.91547279089419, -17.91824622066102], + [-53.91124648553176, -17.91429599285523], + [-53.9012503624793, -17.916848977903328], + [-53.90508418940775, -17.9130904952819], + [-53.89849902433224, -17.908804519712863], + [-53.88538828550391, -17.91328673391672], + [-53.87688624443553, -17.92353090398514], + [-53.873271152458884, -17.922476888760762], + [-53.87541713491351, -17.91882991927746], + [-53.87263428798516, -17.91686659393104], + [-53.87010857017766, -17.927400711504767], + [-53.860003801614596, -17.92116128048865], + [-53.86041639667262, -17.924602131548365], + [-53.85033227965063, -17.929229587198808], + [-53.850497620447726, -17.9346706248163], + [-53.8446086812438, -17.933553773798202], + [-53.84268784260804, -17.94000505392173], + [-53.83750014096531, -17.934704426191715], + [-53.8355576553199, -17.946938039337596], + [-53.83077188416972, -17.94284014039634], + [-53.82411132647299, -17.948706072615632], + [-53.825418185918465, -17.955041712757133], + [-53.82141801738038, -17.962058273053305], + [-53.81919287712759, -17.95837082343617], + [-53.80860850311068, -17.961007905535272], + [-53.81310845903623, -17.963958620525464], + [-53.8085577158891, -17.972248306277194], + [-53.80546619966313, -17.967564187829705], + [-53.80430714406559, -17.974196516232578], + [-53.7981336748964, -17.974161260716702], + [-53.79743732450384, -17.978787352173235], + [-53.79313782794662, -17.974662846521177], + [-53.793941796747454, -17.98072618214432], + [-53.78922197891135, -17.98077530618725], + [-53.78641128856802, -17.994125918007214], + [-53.77416585553582, -18.00077167076205], + [-53.74038765019619, -17.99664546554423], + [-53.733770588950286, -17.995336341534586], + [-53.72675102441448, -18.00347425397113], + [-53.71924418085871, -17.998071455156527], + [-53.71552111875063, -17.99980885204572], + [-53.71566277082316, -18.00628709949591], + [-53.70052584664402, -18.005821535841655], + [-53.69213650378904, -18.013677758969674], + [-53.69030517275976, -18.002482398927075], + [-53.67899742492333, -17.995315548518242], + [-53.67769591834628, -17.98979486426968], + [-53.67488657503197, -17.991550165097127], + [-53.66241475914429, -17.98602384844184], + [-53.66119411421568, -17.97751354703151], + [-53.6345522776521, -17.97684983533561], + [-53.62843821080517, -17.980434086520862], + [-53.62396790787043, -17.97765988315865], + [-53.616193556949334, -17.97872881989634], + [-53.61607913422563, -17.97618979431353], + [-53.612495019917745, -17.97803390287146], + [-53.606943649428366, -17.995490706267873], + [-53.589104170582324, -18.005011600577316], + [-53.58949357083216, -18.01261251623192], + [-53.58399478456354, -18.009817141863245], + [-53.57496806712734, -18.012651612906538], + [-53.56494136429904, -18.004559440999028], + [-53.557186176176614, -18.005655839031647], + [-53.55594060244235, -18.01549638208135], + [-53.54749409211954, -18.014558871790776], + [-53.52899504176993, -18.021580787282367], + [-53.51782578894091, -18.020648881623245], + [-53.513493749813826, -18.026945174962854], + [-53.50182622279049, -18.028145085683533], + [-53.49907591897946, -18.03590782412773], + [-53.48602020014792, -18.04040082132185], + [-53.47649244787297, -18.036254527191], + [-53.47252757037595, -18.039149295385787], + [-53.4677991915897, -18.03489365247917], + [-53.46632834966249, -18.024350656236972], + [-53.46357921490314, -18.02530524181838], + [-53.458239768306896, -18.016932385744287], + [-53.45724332492816, -17.999699559740474], + [-53.449135965977355, -17.998809332728058], + [-53.45026851507474, -17.992578622257497], + [-53.44591502237936, -17.9934073446198], + [-53.44587912056314, -17.989177205184212], + [-53.44055526059122, -17.989342595977458], + [-53.43896629447245, -17.983927133680545], + [-53.436437384340216, -17.986746743707275], + [-53.43035722391126, -17.983991457870204], + [-53.43015801590951, -17.987815245463175], + [-53.42552297829384, -17.989289563904297], + [-53.42127608259257, -17.985789547387746], + [-53.417828660157056, -17.994796697617023], + [-53.41258171530257, -17.988490940284592], + [-53.41121584353799, -17.99322274948347], + [-53.40565742160039, -17.992049340335935], + [-53.38072026709225, -18.008757477074752], + [-53.36018887061468, -18.006027311774837], + [-53.342544156912105, -18.008290966365518], + [-53.33562389414715, -18.00690764349747], + [-53.33229558809004, -18.001557699341667], + [-53.29912326710615, -17.99548224178989], + [-53.2377132646614, -18.00744308650345], + [-53.21754452721258, -18.013569201931666], + [-53.20509879859028, -18.021893275348027], + [-53.19874093410637, -18.020305926700622], + [-53.19048877285853, -18.03629834490209], + [-53.176742371476834, -18.041580429361044], + [-53.17372487661464, -18.04155942363077], + [-53.15565103667932, -18.040255383975786], + [-53.15045142730155, -18.039928152307862], + [-53.07222698370353, -18.03397472389026], + [-53.07566096107019, -18.050794440728833], + [-53.089168007865055, -18.056782196891696], + [-53.12360111788608, -18.058827803973994], + [-53.139865213480185, -18.072111516948308], + [-53.14318946240185, -18.081836174359154], + [-53.13666068719947, -18.11852430893462], + [-53.128966042979165, -18.13848381348638], + [-53.12968772015044, -18.160701752593123], + [-53.110137342698465, -18.219562386809443], + [-53.11027613870628, -18.248057793997997], + [-53.10198954329964, -18.272619231748084], + [-53.10110228967487, -18.31083000901471], + [-53.069885792907805, -18.342878508336206], + [-53.04448578167023, -18.34392091114285], + [-53.027638814355676, -18.3514700253945], + [-53.02081605420883, -18.346277788297986], + [-53.013888243352596, -18.32613775476539], + [-52.97602884365385, -18.303453768730744], + [-52.95412547860122, -18.296577087420477], + [-52.93518021061689, -18.296552816594446], + [-52.87315688543111, -18.31483183999654], + [-52.82074099929467, -18.310723072800513], + [-52.80523735842353, -18.313452241639034], + [-52.78741334205416, -18.3205825739476], + [-52.76311704202979, -18.342744473690207], + [-52.76189015148111, -18.344441936910115], + [-52.75905159686909, -18.35056680411829], + [-52.761851968247036, -18.3713084571371], + [-52.78601816177431, -18.390306965031762], + [-52.79846300552277, -18.414859175176495], + [-52.83843639111391, -18.423630526532044], + [-52.851380942784814, -18.422269378103923], + [-52.87324402745757, -18.42678958424172], + [-52.87910413486823, -18.442868150718294], + [-52.88090771433183, -18.465490690771755], + [-52.899045663329034, -18.47683063798757], + [-52.91000764316094, -18.491742869342747], + [-52.91571092176031, -18.508900834732962], + [-52.945237689549415, -18.519745152114748], + [-52.96230182150875, -18.540817666895464], + [-52.964877644715635, -18.550026809022537], + [-52.95357852195948, -18.56238616998778], + [-52.95176718989736, -18.576669438600263], + [-52.94148878213188, -18.585915331760063], + [-52.93440424413137, -18.59910994414812], + [-52.93982168541055, -18.613260302590064], + [-52.921076561034184, -18.613398590654036], + [-52.91427289588714, -18.61981725170851], + [-52.918241576458634, -18.63794339000494], + [-52.912718157614094, -18.6419773290541], + [-52.87340807836902, -18.646190099997554], + [-52.848576693130596, -18.661612395129826], + [-52.8464636494296, -18.66712124983913], + [-52.836739761350074, -18.666905899507544], + [-52.82760483188066, -18.671889426246366], + [-52.80938316005775, -18.6669774284804], + [-52.78668265424704, -18.681294466086566], + [-52.76585764373276, -18.68115957783943], + [-52.747433626504396, -18.692022099630325], + [-52.73124636083714, -18.68891359287023], + [-52.71997772149862, -18.691759982144312], + [-52.690203724205226, -18.681038857726485], + [-52.67543809391639, -18.67896345276468], + [-52.64332158501497, -18.688432994195704], + [-52.63363358826953, -18.695553304963838], + [-52.622574060176994, -18.689158862490125], + [-52.592819113301154, -18.689888247546463], + [-52.58646488738142, -18.680923935751647], + [-52.56679719046652, -18.664905377734605], + [-52.55551614283592, -18.66168393014933], + [-52.5529872444289, -18.6569849498975], + [-52.531207281459125, -18.658019033985177], + [-52.522496135562825, -18.664633498895153], + [-52.52174465867759, -18.66931517868602], + [-52.50073292392823, -18.675274050068303], + [-52.475466354306455, -18.685548392601405], + [-52.4490700598654, -18.690960673337415], + [-52.43893317357418, -18.70559460892087], + [-52.43398530202269, -18.719978676010925], + [-52.426346910462804, -18.730907943198563], + [-52.41254977353769, -18.74023849987157], + [-52.411875937291846, -18.745975934716224], + [-52.40979156036814, -18.754978914863496], + [-52.397715185864094, -18.758439696797137], + [-52.39937842964949, -18.765105613066623], + [-52.378322914629706, -18.783928949233683], + [-52.37937936335468, -18.787624723356753], + [-52.37621319639651, -18.787207978363302], + [-52.375184049636516, -18.791652393368693], + [-52.367676072099684, -18.793892629098366], + [-52.36974281438695, -18.79924458618177], + [-52.35398691198487, -18.800200946557045], + [-52.35092904438404, -18.810169759662724], + [-52.354405330004916, -18.812684041877844], + [-52.34674315830466, -18.81533381425225], + [-52.34433990174584, -18.822419172427722], + [-52.33791187958407, -18.821941151113727], + [-52.334072758049786, -18.828237758940457], + [-52.32129409782522, -18.8310140258142], + [-52.30898520447498, -18.839710809680767], + [-52.29868213266482, -18.836616938412863], + [-52.29490574108484, -18.82927452784627], + [-52.28038621566841, -18.829434705687767], + [-52.26473872198957, -18.830682320860706], + [-52.26371318589446, -18.82780455672311], + [-52.25143045705459, -18.839574409878967], + [-52.21926998808316, -18.842549901008127], + [-52.20981555840878, -18.846182680675483], + [-52.20790622902315, -18.85012608704763], + [-52.20295898367319, -18.847846958433543], + [-52.19926390718414, -18.85077785151319], + [-52.18693279761764, -18.84587655660552], + [-52.18142518833792, -18.84791075819221], + [-52.17953920469082, -18.85552045894471], + [-52.176125392066346, -18.854675217034476], + [-52.17239905866161, -18.86209791150083], + [-52.16595706113861, -18.8655122199354], + [-52.16521038382479, -18.876656614628814], + [-52.159431233250096, -18.876493888555213], + [-52.16162767899964, -18.878646790432214], + [-52.155076877912855, -18.882555349031296], + [-52.157128250247226, -18.888427408297403], + [-52.14801288966706, -18.893917657012157], + [-52.13740726643737, -18.889911515120268], + [-52.13146421521228, -18.89772273988945], + [-52.11340591611126, -18.902166573116663], + [-52.111660211721116, -18.89929438678176], + [-52.10618008166074, -18.905897527491923], + [-52.10895626639444, -18.918937445056116], + [-52.10490294110007, -18.918065356045233], + [-52.10284691925303, -18.921999592660512], + [-52.106987185065734, -18.92350473334675], + [-52.1043441098186, -18.928055177140894], + [-52.09592873534625, -18.936014933240553], + [-52.088907413757205, -18.93562129837349], + [-52.09309494091963, -18.942096532539452], + [-52.088427859587576, -18.94188596922275], + [-52.08131681929397, -18.95090135099943], + [-52.06684662716421, -18.95333459069996], + [-52.05659623016729, -18.94638094017479], + [-52.04987492540233, -18.9513527318664], + [-52.045182797377805, -18.950502386475552], + [-52.04162232286298, -18.96040946184748], + [-52.03721533105887, -18.961385043011305], + [-52.03512416016121, -18.958159094265962], + [-52.02546131820926, -18.963572773670187], + [-52.01859578634138, -18.963490491744636], + [-52.019817768896665, -18.96768434584325], + [-52.01440461985104, -18.973405490378745], + [-52.02063132342413, -18.97928729494711], + [-52.0155481716404, -18.98277348613637], + [-52.00815073679551, -18.97703876056373], + [-52.0045431583744, -18.968963483604607], + [-51.9988505295971, -18.967739081270107], + [-51.99590338483311, -18.9734194223515], + [-51.9813440844629, -18.971228822983438], + [-51.97815267854351, -18.980805149361323], + [-51.97295617670442, -18.974663323109915], + [-51.96965858838058, -18.977281011508897], + [-51.9669852136919, -18.975327497228964], + [-51.96823517350673, -18.966691782646784], + [-51.965295911398194, -18.97054315568592], + [-51.963268981531954, -18.96854432352877], + [-51.95782284696985, -18.978290458725017], + [-51.95145898108718, -18.98070331187575], + [-51.9522590889632, -18.974914320679183], + [-51.94600833027009, -18.97515394608114], + [-51.94038475645026, -18.967861648215283], + [-51.933625010380425, -18.975515592913798], + [-51.92650477376666, -18.975640117429123], + [-51.92559321536548, -18.984298110649316], + [-51.91470644721101, -18.98362507767499], + [-51.907460025674325, -18.994198811887397], + [-51.89876129901779, -18.99417884789993], + [-51.889344156697895, -19.008346877891864], + [-51.891179800123105, -19.016968107577725], + [-51.88271068230961, -19.019875348542456], + [-51.87548794106203, -19.030599449360473], + [-51.87201780883174, -19.029990701581795], + [-51.871099886276255, -19.03552579087224], + [-51.85490254763029, -19.051468790981684], + [-51.848734833207196, -19.04687173522022], + [-51.85084571905792, -19.04437722423012], + [-51.84271347382904, -19.042296073656264], + [-51.835568997186655, -19.045966730900172], + [-51.843840785674324, -19.052622986830354], + [-51.84126841866952, -19.057134480525335], + [-51.81831877045575, -19.05357824652321], + [-51.79637171062212, -19.06661603243432], + [-51.79787850743089, -19.07274554347845], + [-51.78951706320667, -19.07399263761267], + [-51.79128769553738, -19.07812459247043], + [-51.78115398264305, -19.081203622724612], + [-51.77604276894279, -19.077050309818347], + [-51.76059572251113, -19.088620369200072], + [-51.74249565024873, -19.087797460302827], + [-51.74181769100904, -19.090067929900027], + [-51.7478677866637, -19.092294309799453], + [-51.7427479909947, -19.09848296635917], + [-51.7427142190012, -19.098520472056514], + [-51.74032174191741, -19.100857497303117], + [-51.73159236241105, -19.09904660543528], + [-51.72865397368142, -19.108221122785626], + [-51.71662317576835, -19.10747292867431], + [-51.71312484145835, -19.102826031224616], + [-51.705818510456446, -19.106657073828444], + [-51.71125656169057, -19.10847438039911], + [-51.70972989874754, -19.11242692820446], + [-51.69992449495081, -19.119672648991145], + [-51.69317722999732, -19.118208746418816], + [-51.68309504282785, -19.121502017397894], + [-51.65790408304577, -19.13791302690728], + [-51.642461739382455, -19.129854343259783], + [-51.639593254498116, -19.127423391407337], + [-51.62384202654099, -19.138027908022945], + [-51.613592572180366, -19.136766798833033], + [-51.60915118427327, -19.14087001295348], + [-51.596736459690895, -19.136302778947613], + [-51.59245552877844, -19.12740878341689], + [-51.57962193061528, -19.13068090096069], + [-51.57662320392773, -19.126552873551006], + [-51.576181952955714, -19.13255940235147], + [-51.554538429772094, -19.132469001574165], + [-51.547956173204355, -19.14176448613677], + [-51.53972929679146, -19.143305756316593], + [-51.52739847414362, -19.1395999482798], + [-51.51910842952802, -19.14631474415358], + [-51.51142620892877, -19.151059469501668], + [-51.501428728746895, -19.147773454244394], + [-51.500397210006426, -19.158122561502974], + [-51.49387670377319, -19.16298875431519], + [-51.48136845011311, -19.15966917708949], + [-51.47737477196275, -19.154079076599835], + [-51.473121845426455, -19.15429059176585], + [-51.45820097841906, -19.167581033740557], + [-51.45700594959252, -19.1629869802834], + [-51.44795092410085, -19.160447719877716], + [-51.44485764701651, -19.160601538298945], + [-51.44276422189874, -19.168604463260067], + [-51.438038584241376, -19.171688983158734], + [-51.43050766455941, -19.171041324974357], + [-51.42488011239061, -19.16551223926735], + [-51.420427897854076, -19.166530300768873], + [-51.41662360760974, -19.174286712232654], + [-51.41156486512816, -19.172418318618945], + [-51.405954050448834, -19.175635699340226], + [-51.41156433993872, -19.180362622273304], + [-51.41031365956056, -19.182630526394227], + [-51.40645779156637, -19.185485381258136], + [-51.405479961473205, -19.185868737831495], + [-51.39965479736653, -19.191009094173673], + [-51.39550501770056, -19.196078227012617], + [-51.375066027895336, -19.194632617414598], + [-51.369955808202285, -19.200660384884166], + [-51.37045577782139, -19.207913899410187], + [-51.36451202034382, -19.212912231835485], + [-51.3681926376582, -19.221691726173407], + [-51.3439519341657, -19.213916354034133], + [-51.33561830906935, -19.222254785835577], + [-51.31232163311946, -19.218975020448724], + [-51.30776559184591, -19.21852368584832], + [-51.30336871034124, -19.22341523312201], + [-51.307867707387786, -19.23793371989075], + [-51.29792318271937, -19.238780193936112], + [-51.29765235380567, -19.242539998840666], + [-51.290069401124406, -19.24611053499793], + [-51.28609032331561, -19.252641376884952], + [-51.27890184051178, -19.250132038782425], + [-51.274707502907454, -19.262111827935705], + [-51.25689626797351, -19.267424529263373], + [-51.25217027802582, -19.27406868059976], + [-51.246698425275966, -19.266223520672174], + [-51.2408952023856, -19.26905227812564], + [-51.22881644890165, -19.26445721314486], + [-51.224229072965095, -19.258177292974754], + [-51.21633863097317, -19.258969061655545], + [-51.20764818509707, -19.265984794674498], + [-51.20292442875871, -19.26122762416741], + [-51.20081553656632, -19.26490930202773], + [-51.18790229935742, -19.268543473284144], + [-51.18045320558651, -19.283527967787123], + [-51.168283774430435, -19.287394021253938], + [-51.14378566105448, -19.287202539397196], + [-51.12603209631139, -19.30344882852372], + [-51.11836754677992, -19.302977062365144], + [-51.10598302902099, -19.308671768397996], + [-51.09254162693269, -19.307189500262165], + [-51.08791943052172, -19.30832428041116], + [-51.087871825746056, -19.314287859425058], + [-51.067067163726364, -19.325541454861984], + [-51.06700399787646, -19.330090555304018], + [-51.05778451263327, -19.329436818160254], + [-51.05356638661436, -19.3358482546915], + [-51.05075459677187, -19.3350628407768], + [-51.04258833635903, -19.34667215278542], + [-51.041643057141215, -19.361080274508588], + [-51.03499562868103, -19.360393823464747], + [-51.03095128048102, -19.363783353814814], + [-51.02375624066567, -19.381444423202687], + [-51.017952999519345, -19.383869020809545], + [-51.02092813407722, -19.389891659359364], + [-51.03222752117748, -19.39789021319762], + [-51.030676919936745, -19.40143036012535], + [-51.01545224251396, -19.40248256696494], + [-51.00608493573959, -19.399080957592517], + [-51.00192882107685, -19.404215752632577], + [-51.00477963963349, -19.413107094030064], + [-50.98501108921416, -19.410405409517065], + [-50.98525736740211, -19.431374561562528], + [-50.96833751703514, -19.434867733779505], + [-50.95075621844295, -19.44344196343062], + [-50.94667713124393, -19.45289420567488], + [-50.940840838353935, -19.453725396333066], + [-50.93586368119548, -19.46063557583019], + [-50.93442604808638, -19.467433947331543], + [-50.93442671784476, -19.467434108832837], + [-50.94939590493715, -19.471042985775814], + [-50.963227272216734, -19.483629273697176], + [-50.963227291114634, -19.483629290891844], + [-50.962901560493556, -19.50057022298689], + [-50.95050644071038, -19.51750948951567], + [-50.93083675942225, -19.542235144583405], + [-50.92412383884932, -19.55860856433222], + [-50.92308540244697, -19.57605167600686], + [-50.92308538812359, -19.57605191657676], + [-50.92795378861242, -19.587791135839975], + [-50.937534582964496, -19.592261684789555], + [-50.9464981203082, -19.591680841345006], + [-50.96282600017791, -19.58169472344444], + [-50.97786852326852, -19.582498452600507], + [-50.98751003922831, -19.589498648030045], + [-50.990423128521414, -19.605392922513076], + [-51.00899396030032, -19.641963191604816], + [-51.01206822039006, -19.65232034715774], + [-51.01364982949751, -19.65466571899238], + [-51.02156870990517, -19.660007317732457], + [-51.03652980220268, -19.68700317567778], + [-51.03845110286909, -19.719523517548833], + [-51.03845111864454, -19.71952382446002], + [-51.04589995203769, -19.729041409349303], + [-51.04589998165907, -19.72904144719449], + [-51.04538855152271, -19.73754625598788], + [-51.02785752159352, -19.75656578352825], + [-51.027857419795495, -19.75656589395144], + [-51.03989503113784, -19.77710852455583], + [-51.039895107997424, -19.777108655700015], + [-51.03558124832781, -19.789067038925282], + [-51.03345361332871, -19.790669618921235], + [-51.022648949832444, -19.807487416609458], + [-51.018154540655125, -19.837271218245466], + [-51.02023365054885, -19.864791026799903], + [-51.0202336706244, -19.864791325038215], + [-51.002409187018, -19.900801916756024], + [-50.9994273351664, -19.906365279685097], + [-50.99945927972038, -19.911708363469064], + [-50.99945928576534, -19.911708414936992], + [-50.999459287293476, -19.91170867052523], + [-51.00245467804908, -19.9247846534122], + [-51.020867228460695, -19.95907690788256], + [-51.020867275774265, -19.959076995979526], + [-51.01861121466896, -19.973615052434415], + [-51.00476333403992, -19.999206524560663], + [-51.0059927094128, -20.025288725419287], + [-51.00599272329888, -20.02528903241898], + [-51.017844653348554, -20.04838156270029], + [-51.01784472456369, -20.048381701434376], + [-51.00971300165373, -20.072015200388655], + [-51.000584565331785, -20.08515293665351], + [-51.00043139321357, -20.085373360623908], + [-51.00104468340749, -20.094745583893815], + [-51.001147547318475, -20.09632372377807], + [-51.029230428596655, -20.15101273807047], + [-51.0316527596255, -20.156909896609758], + [-51.04508538982581, -20.189602863800815], + [-51.04876853285386, -20.198564482615943], + [-51.05142345581996, -20.208288725391274], + [-51.056846244075246, -20.22814695802587], + [-51.058220067239354, -20.233177055854863], + [-51.05892575484284, -20.23426882519971], + [-51.06882001092473, -20.249574305818324], + [-51.06911967674764, -20.250037804524197], + [-51.06935408182006, -20.250212927754937], + [-51.109346129661496, -20.280080441814537], + [-51.113944040109295, -20.283581680870725], + [-51.13237089560489, -20.295519695987768], + [-51.16072292600271, -20.30521225581399], + [-51.21568195869763, -20.314699908689075], + [-51.28745194732658, -20.32706186246109], + [-51.29564086685286, -20.328470353060716], + [-51.299799881585734, -20.330268797344573], + [-51.31600514672343, -20.337274939193453], + [-51.32140128725939, -20.339607415111203], + [-51.34129030879266, -20.35367710677335], + [-51.34210499781206, -20.35439357458495], + [-51.34350322679179, -20.355623204498897], + [-51.350824907352866, -20.36316756841964], + [-51.35699271385278, -20.375890594848187], + [-51.36048223063956, -20.38308776467491], + [-51.361180774016844, -20.384528427682515], + [-51.361605113940776, -20.384894638254686], + [-51.362407841106844, -20.3855873939982], + [-51.37507180242748, -20.396515098811097], + [-51.38170324551865, -20.409444926420676], + [-51.40349526221043, -20.45191702708372], + [-51.403866694117944, -20.452640706572186], + [-51.40923603072406, -20.45955844351589], + [-51.409451659080936, -20.459681609060194], + [-51.418803707208816, -20.465022987602474], + [-51.43087811995498, -20.47133099441281], + [-51.43236616687641, -20.47226360488034], + [-51.44866526296736, -20.482477218452697], + [-51.44918546188368, -20.482803146137456], + [-51.449307794338125, -20.48299247486835], + [-51.45445939308974, -20.49096487172708], + [-51.45836464661748, -20.49700780908703], + [-51.494870187405326, -20.5534680940777], + [-51.49685373727383, -20.55897445258604], + [-51.49955274664947, -20.566466236806615], + [-51.5001787469143, -20.568203744040666], + [-51.500645484135966, -20.568622602019783], + [-51.501289929711156, -20.56920093258135], + [-51.52143524971972, -20.587276027878577], + [-51.521575397553406, -20.58737039249864], + [-51.56607249871053, -20.617319461165874], + [-51.56929470281744, -20.619481962663883], + [-51.57381224430349, -20.622513589765898], + [-51.57514215119429, -20.62340601613873], + [-51.57549648184728, -20.623787818923038], + [-51.59410462677364, -20.643834909974153], + [-51.628158623375356, -20.725067579183776], + [-51.63485587908611, -20.75483511488818], + [-51.62235507067901, -20.776858636481858], + [-51.623271584055296, -20.778269171871045], + [-51.62574920613636, -20.782082129080745], + [-51.62743963112599, -20.78468348803663], + [-51.62674566374147, -20.791407586508885], + [-51.62709439796562, -20.793106269023085], + [-51.63108977655624, -20.812564750293355], + [-51.6329339714888, -20.821544581813757], + [-51.630801351037825, -20.849704476274297], + [-51.62548725158483, -20.874055225001246], + [-51.61784668350547, -20.884204532596968], + [-51.614379568733895, -20.88880950222032], + [-51.61343466443007, -20.89006444993324], + [-51.6140852577458, -20.895049112948833], + [-51.614469728897, -20.897994648627858], + [-51.61895100088309, -20.932317317129463], + [-51.62014290266723, -20.93545788278844], + [-51.62289645908297, -20.942712725213063], + [-51.62354433475033, -20.944419581162805], + [-51.62390945041164, -20.94464565627818], + [-51.63871255357446, -20.953810303543854], + [-51.651750510025025, -20.96188011888035], + [-51.66569047605743, -20.970506133146074], + [-51.68557796121404, -20.973004925672733], + [-51.68803183113355, -20.97286866405306], + [-51.711434475822635, -20.971567347314338], + [-51.71365272165359, -20.97144383292259], + [-51.71700540452714, -20.97360531530821], + [-51.722777742181265, -20.977326448467238], + [-51.72292837525056, -20.97742354877499], + [-51.723050867829436, -20.977572977410915], + [-51.74191419159173, -21.00057959341995], + [-51.752593867077444, -21.013600857706408], + [-51.753168306987305, -21.014301161609083], + [-51.77121523392641, -21.042646208747684], + [-51.77243352547875, -21.051106785369594], + [-51.775601672132325, -21.073079894060715], + [-51.78962812835072, -21.102104807291393], + [-51.789965892636296, -21.102250429435767], + [-51.807963370151846, -21.1100083735124], + [-51.80817309954968, -21.11037812370867], + [-51.814410959488704, -21.121374391260826], + [-51.81475349721596, -21.121578766637892], + [-51.82354716884151, -21.12682507917544], + [-51.84455034394291, -21.1314481377808], + [-51.865432008954244, -21.13052536910245], + [-51.87581898310014, -21.136132697411078], + [-51.87588676510476, -21.136392962404457], + [-51.878941940897285, -21.14812297415809], + [-51.87571755906078, -21.181029125746704], + [-51.879677745603786, -21.1979018904224], + [-51.86363494667393, -21.22669584748109], + [-51.85871949944949, -21.24476070390081], + [-51.85486309267654, -21.258930483588625], + [-51.854318828737114, -21.260930087715185], + [-51.85106724687207, -21.264095548694552], + [-51.849768342797724, -21.26535999585814], + [-51.848470970863445, -21.266622920554564], + [-51.84913915154683, -21.268884947009287], + [-51.853381391325264, -21.283244618892446], + [-51.85847646625442, -21.30048696106651], + [-51.861020421045325, -21.336655243849833], + [-51.861713120718846, -21.338172216396742], + [-51.868529256750044, -21.353097249094592], + [-51.86871976235058, -21.35351434199725], + [-51.86906687013265, -21.353801704895535], + [-51.8696801265914, -21.35430940181293], + [-51.9055396843933, -21.38398621417013], + [-51.918162811159526, -21.412166276905587], + [-51.92030295273752, -21.429621553326985], + [-51.92133789789341, -21.432872104551553], + [-51.92724533598943, -21.45142306414674], + [-51.92863960731829, -21.455800685848388], + [-51.92907239264471, -21.4560971918784], + [-51.941839815255236, -21.46484322479866], + [-51.94863643860493, -21.469498252883245], + [-51.9490809335357, -21.469802668374754], + [-51.94915483228153, -21.46993520082136], + [-51.96218028283414, -21.493291002896797], + [-51.96312888779758, -21.494702854618975], + [-51.96689953034407, -21.500314535700358], + [-51.96786115980602, -21.5017456002534], + [-51.96806563804055, -21.501844939293303], + [-51.979083833417995, -21.507197186590766], + [-51.979469340272324, -21.50738443143451], + [-51.996890935631704, -21.515844829532007], + [-52.0180156702917, -21.51176188283536], + [-52.05702434577676, -21.503593418963295], + [-52.06010851623251, -21.503916119922096], + [-52.06463796492329, -21.504389935929073], + [-52.06641009270128, -21.504575280001838], + [-52.0670477592704, -21.50517334647075], + [-52.07774614624269, -21.515206215256143], + [-52.07850656994537, -21.516329527973053], + [-52.09293988459751, -21.537646579046964], + [-52.095920107882556, -21.542047195717515], + [-52.103250547350015, -21.55904872287004], + [-52.10212194568527, -21.569796950213934], + [-52.08615823573292, -21.583367587432328], + [-52.07100960605874, -21.596241662321262], + [-52.06883352418175, -21.598090713650578], + [-52.06274800556462, -21.620580758992585], + [-52.05695024339815, -21.630408990198266], + [-52.05163026403149, -21.63942599763464], + [-52.04947839257474, -21.64307292225836], + [-52.04829839648653, -21.656324911436737], + [-52.04951516262931, -21.659964809348047], + [-52.05289137080274, -21.670063491225548], + [-52.053725004297135, -21.672556753086628], + [-52.05528631151005, -21.675398201514962], + [-52.06393236663311, -21.69113089052206], + [-52.066899356172684, -21.696528796683758], + [-52.0764506011258, -21.714863655015392], + [-52.07691324778088, -21.715275303448273], + [-52.085901543876226, -21.723272060560422], + [-52.08620651821223, -21.72366116810413], + [-52.10180145686343, -21.743554584175072], + [-52.10374729781671, -21.746036254022535], + [-52.11675429199368, -21.749508436944684], + [-52.12510479165773, -21.751736945623865], + [-52.130560381667756, -21.753192617684434], + [-52.137209061386564, -21.754966345741913], + [-52.14000699406492, -21.755712681221212], + [-52.141171899194035, -21.756538944490018], + [-52.16059195876347, -21.770310845592327], + [-52.16122001727483, -21.770756154171128], + [-52.16126903312216, -21.77087299345303], + [-52.16215188333658, -21.772977409796212], + [-52.18394360957977, -21.814442760437746], + [-52.18356123305868, -21.826347121911454], + [-52.184736880340395, -21.8296893490646], + [-52.19031795815352, -21.84555327379525], + [-52.19051973094353, -21.846126727481288], + [-52.19094794310752, -21.846502535591277], + [-52.22616733164639, -21.87740089480811], + [-52.233131318167345, -21.883507919368835], + [-52.23339135423253, -21.883735940009633], + [-52.233451413750984, -21.88381026493836], + [-52.248364489556394, -21.90226230503009], + [-52.24853531907103, -21.902325968659923], + [-52.258142502076645, -21.905905926963946], + [-52.258554384464134, -21.906382251942468], + [-52.26365545164355, -21.912281061589955], + [-52.26381042886021, -21.912317408325897], + [-52.2749216526596, -21.914922884286984], + [-52.2754007667077, -21.915414889120203], + [-52.27587173745281, -21.915898526696196], + [-52.30144308951615, -21.94215039612391], + [-52.301487413835375, -21.942226156197073], + [-52.315843038345285, -21.96675794193366], + [-52.317310435730086, -21.969264942897443], + [-52.318977864153666, -21.972113559993993], + [-52.325763955102445, -21.995206433447823], + [-52.32625132903298, -21.996864621930744], + [-52.327548924301595, -22.001279203705444], + [-52.34481151991599, -22.059978764653327], + [-52.345393445353594, -22.061956566718596], + [-52.347222665032895, -22.064530319275153], + [-52.3604037124036, -22.083072797651802], + [-52.377176683824004, -22.106659213982486], + [-52.37746347745232, -22.106815449718283], + [-52.38576282584678, -22.11133628371141], + [-52.38890381521678, -22.113047057684476], + [-52.3918651481525, -22.114659883940224], + [-52.39636256658861, -22.118848051642782], + [-52.39638647688916, -22.11889425585094], + [-52.40814711054284, -22.14161610731754], + [-52.40863827249156, -22.14206325628529], + [-52.425288723818625, -22.157219007191806], + [-52.44353473809952, -22.173821163109373], + [-52.456143783725985, -22.185290585391627], + [-52.47992450154121, -22.200862466225434], + [-52.4800026609921, -22.20108998181865], + [-52.48417527920293, -22.21323488611442], + [-52.484671173086, -22.21367928538993], + [-52.48980113691676, -22.218276279411764], + [-52.503393456372336, -22.2253654843638], + [-52.50545723846626, -22.225744808072346], + [-52.520668780188714, -22.22853981200288], + [-52.523192733742725, -22.229003418900856], + [-52.55191650772079, -22.24330378110843], + [-52.559303124324316, -22.24564533552734], + [-52.57671262420953, -22.251162469367653], + [-52.57914599290604, -22.251933425891327], + [-52.5798546190588, -22.252555007233433], + [-52.59597020266829, -22.266688594163714], + [-52.6019502306468, -22.27193197940829], + [-52.61304244464577, -22.276140657541344], + [-52.6281845427283, -22.281884297163394], + [-52.62948194245845, -22.28237633185696], + [-52.62999375980257, -22.282875935557485], + [-52.63867656338894, -22.291350712007144], + [-52.645759412656126, -22.298262709829064], + [-52.65529745267754, -22.303123678030378], + [-52.69509297066143, -22.31459028941559], + [-52.724518684259344, -22.335199106527458], + [-52.74579191679123, -22.343293500206553], + [-52.798289736976386, -22.37825386574891], + [-52.79879347132972, -22.378746923875248], + [-52.79889794735534, -22.378849184952855], + [-52.81090250772524, -22.390597717641622], + [-52.839845796294945, -22.41529133617728], + [-52.839927587526105, -22.415422242515742], + [-52.854720192900984, -22.43909262200468], + [-52.85499330861293, -22.439206534142894], + [-52.895173056021946, -22.455957573920987], + [-52.948149923109504, -22.473332787823235], + [-52.95509374441448, -22.47551878469302], + [-52.95923564277062, -22.477201536973265], + [-52.99762984088338, -22.492792937331366], + [-52.99853809362492, -22.493161609350555], + [-52.99864987516386, -22.493415063301594], + [-53.000152491691495, -22.496821994626448], + [-53.002873003383804, -22.50298978784419], + [-53.00562452871049, -22.509227223120842], + [-53.006265091132825, -22.51006837189861], + [-53.014321166395305, -22.520645967656215], + [-53.03975999346015, -22.527375858490768], + [-53.05796139577088, -22.536910174006525], + [-53.059621137571895, -22.53827327447414], + [-53.0779434471041, -22.553317806998088], + [-53.096323255626864, -22.579264682741762], + [-53.10639879030929, -22.593482951670964], + [-53.107822366350206, -22.595491546660273], + [-53.10981694766601, -22.604281961619265], + [-53.108665302080546, -22.61501970698137], + [-53.105146344988995, -22.62190943678846], + [-53.10557863184187, -22.622489094980907], + [-53.12063801854401, -22.64267833661385], + [-53.12710855794498, -22.651350588952926], + [-53.12783874326139, -22.652329140988808], + [-53.13187426234167, -22.6569910724944], + [-53.15969133692169, -22.689113904180324], + [-53.18091927780592, -22.713613405004335], + [-53.18131708310971, -22.713937610040187], + [-53.19895884260116, -22.72831268825733], + [-53.21857434855068, -22.731217088383143], + [-53.221831919241666, -22.731557496060454], + [-53.237595697935014, -22.733203797616394], + [-53.23995740434723, -22.7334503052983], + [-53.247388643356295, -22.73609763204929], + [-53.311294630875125, -22.758844613325266], + [-53.32732342801933, -22.76454461033415], + [-53.35199481582055, -22.775660150474348], + [-53.35618237256429, -22.77847291537435], + [-53.36371455908796, -22.783531656896926], + [-53.36376844661671, -22.78356784588796], + [-53.36379740504846, -22.783609310121363], + [-53.365432612591334, -22.785950634204212], + [-53.37749154852195, -22.803213612607053], + [-53.39868891551886, -22.80670641539975], + [-53.39999033857568, -22.807502571004367], + [-53.41036593483878, -22.81384917432708], + [-53.41092026088608, -22.81439904810351], + [-53.42961012433322, -22.83293481836665], + [-53.450816688646476, -22.841916266447058], + [-53.48472060567302, -22.86383366044703], + [-53.51519542479124, -22.876848298372202], + [-53.53388844105064, -22.882047548987966], + [-53.536096844719786, -22.88342237053629], + [-53.5462529695327, -22.889744180539154], + [-53.546786356287555, -22.89007615795788], + [-53.546977284054705, -22.890316289908064], + [-53.55940220043946, -22.905940729935846], + [-53.56073982554816, -22.91614257023705], + [-53.57073072118097, -22.92847105540034], + [-53.57090318746066, -22.92854312377517], + [-53.58926921601053, -22.936216152489713], + [-53.590533887759086, -22.937270355027692], + [-53.60738302083137, -22.95131273092298], + [-53.61262386377311, -22.96429315718243], + [-53.615235735325165, -22.970761054993474], + [-53.61659732302289, -22.97413251680403], + [-53.62223292290568, -22.98197813076853], + [-53.63341672519164, -22.99754409437719], + [-53.63408467747403, -22.99847361984407], + [-53.63396029628625, -23.003369205808767], + [-53.63044154562466, -23.01176400238554], + [-53.63053544124366, -23.013508012614004], + [-53.630862870036424, -23.019588942942054], + [-53.63190205714785, -23.038881198479178], + [-53.631993638988384, -23.04058086219468], + [-53.632508998215336, -23.050143790738225], + [-53.6349874629777, -23.096095819860192], + [-53.63654865959003, -23.125008964502378], + [-53.63730241839409, -23.125876356433125], + [-53.642546349397875, -23.1319103947473], + [-53.64267165250406, -23.13206951773566], + [-53.66029044466413, -23.154438542946085], + [-53.659997345737814, -23.16141781875102], + [-53.65986525107193, -23.164563326054733], + [-53.65981565969158, -23.165744232729914], + [-53.66681397666241, -23.177300545931843], + [-53.67269567451173, -23.18701101622411], + [-53.69351535413022, -23.22136908285926], + [-53.70371006276858, -23.25206430021885], + [-53.70527750119464, -23.25774788438033], + [-53.70535143631351, -23.258015960669745], + [-53.71180869316549, -23.275457658963223], + [-53.712814660436095, -23.278174372993593], + [-53.71486792859878, -23.28335917812029], + [-53.716366556451625, -23.286786150425666], + [-53.73025807845843, -23.318542112008657], + [-53.73080339879587, -23.31978833123858], + [-53.731606519711015, -23.320799803567784], + [-53.74957112244705, -23.34341936644731], + [-53.762203812787064, -23.359319058763084], + [-53.76308424344364, -23.36058948962541], + [-53.77106706654584, -23.372106959313463], + [-53.79014921968157, -23.379915226957284], + [-53.79957443714548, -23.381997860553522], + [-53.8135373714877, -23.385081971672914], + [-53.815982247548256, -23.385621845337425], + [-53.84316017997024, -23.40094683905485], + [-53.875030025549, -23.418906390099448], + [-53.87655484032534, -23.419765365435047], + [-53.87952314949108, -23.421166289747394], + [-53.91492326532504, -23.43786678671478], + [-53.93201555944989, -23.445925718418188], + [-53.96015806190347, -23.443391987234577], + [-53.963645707345236, -23.443976139961972], + [-53.964645436884076, -23.444696292159126], + [-53.98146799067256, -23.45681209066755], + [-53.981495048406465, -23.456831574497034], + [-53.98149934125675, -23.45684178578411], + [-53.99143140279048, -23.480461658651567], + [-53.99799448444446, -23.49606384712912], + [-54.00430308315805, -23.511056736180926], + [-54.00566931424462, -23.52636213172484], + [-54.00629238686479, -23.53334020134939], + [-54.00730897691991, -23.544722775128953], + [-54.00844315194308, -23.547535956279013], + [-54.01928998575208, -23.574432634684765], + [-54.02397859776204, -23.586054657588257], + [-54.02432608112414, -23.58826951161407], + [-54.02736835065682, -23.60765640633815], + [-54.03059739215899, -23.62822469413706], + [-54.031448570399, -23.640733795698665], + [-54.03203733636826, -23.649383782028806], + [-54.0321907652012, -23.651637560431745], + [-54.033237984202515, -23.653075498464386], + [-54.03807994361525, -23.659723446406584], + [-54.04456917095669, -23.668631643148412], + [-54.05108358463467, -23.687147201589106], + [-54.052436306225104, -23.720956800983217], + [-54.0524843777252, -23.72215747820371], + [-54.052599915262086, -23.725043020850293], + [-54.05347783523713, -23.72654354319145], + [-54.06309083255681, -23.742970979138747], + [-54.072826207046724, -23.759602130738056], + [-54.07317445376544, -23.760196947247493], + [-54.07567048763487, -23.764460048685883], + [-54.08356742678568, -23.80546777925368], + [-54.08388337210567, -23.806930279523563], + [-54.086022932678496, -23.8251357230155], + [-54.083060752319746, -23.83107468042243], + [-54.087304428643215, -23.84246008709784], + [-54.08765403808787, -23.843397947265426], + [-54.08806671021622, -23.844504957273916], + [-54.08394737628237, -23.864959223046842], + [-54.0836926074375, -23.866856421190004], + [-54.08056190181315, -23.890167464646506], + [-54.08041951914279, -23.891227526555646], + [-54.09681679399449, -23.937954194740836], + [-54.10081418925015, -23.949339028135146], + [-54.101726661227374, -23.951937454705927], + [-54.11751013038406, -23.97130260775796], + [-54.1179657175053, -23.9717065165873], + [-54.12967037847949, -23.98208205712898], + [-54.153656921548645, -23.992390259472927], + [-54.16657325248153, -23.997938700200976], + [-54.168969884092824, -23.998968035568552], + [-54.16967203103821, -23.999563979874218], + [-54.22105013339254, -24.04314542688003], + [-54.245191101700016, -24.05397618406201], + [-54.24942576881347, -24.055875441704227], + [-54.259665961223824, -24.056881373429675], + [-54.26397492270157, -24.058232147111603], + [-54.27384294161934, -24.06132498841945], + [-54.27672742375677, -24.06222889064403], + [-54.28929245361345, -24.068345045359848], + [-54.30992129095029, -24.04628883982263], + [-54.31356570701894, -24.034122790741122], + [-54.32159291653609, -24.024517027491623], + [-54.319286309396645, -24.01316038892591], + [-54.32117688515931, -24.007425152717722], + [-54.34531780229031, -24.00497659518693], + [-54.35645748813558, -24.006174497349527], + [-54.36967944539132, -23.993765180402175], + [-54.38647676547242, -23.984667358005638], + [-54.40092707411083, -23.96408870299826], + [-54.414512338816934, -23.960106313068273], + [-54.42617797668317, -23.928012383016284], + [-54.42984608605188, -23.914793440826056], + [-54.43753725653764, -23.9066361586], + [-54.44987442758027, -23.90132613753869], + [-54.48359378036139, -23.894987043184], + [-54.500843375841306, -23.876349435906114], + [-54.504956232336276, -23.88567239821246], + [-54.5110344272062, -23.88369497660091], + [-54.51751485976087, -23.88611916416314], + [-54.52675863304246, -23.874943966831044], + [-54.53747998434923, -23.875088418743783], + [-54.5473472293428, -23.87011601170343], + [-54.553621616693974, -23.87234169169882], + [-54.56996363471779, -23.874925650193433], + [-54.572898481627654, -23.868930707543043], + [-54.56667364628988, -23.855573524780286], + [-54.58167482767255, -23.846964994584738], + [-54.5852057153203, -23.83733721392453], + [-54.59576683101144, -23.843669985450635], + [-54.601480648786925, -23.852144484845926], + [-54.610262951109576, -23.851568271854866], + [-54.61757133536248, -23.834140471720204], + [-54.62559974095824, -23.834018745303933], + [-54.63272957734722, -23.828950901290643], + [-54.64762142236306, -23.832809258176262], + [-54.65443353466684, -23.819569235849517], + [-54.66740539363115, -23.81713199743215], + [-54.6714332162306, -23.812194048578196], + [-54.68770753244847, -23.831397094748084], + [-54.69945662649354, -23.84077980201974], + [-54.69870685443588, -23.856367004015972], + [-54.70570604196783, -23.863357342547346], + [-54.74489913700387, -23.867501048797035], + [-54.74965489232181, -23.859648692756362], + [-54.759295925535675, -23.856179800646398], + [-54.764373867471534, -23.864967159699212], + [-54.774236238596266, -23.864213728698083], + [-54.77907045581091, -23.869786851228774], + [-54.792163179158926, -23.866923168918145], + [-54.79823967841663, -23.875277174293153], + [-54.81001159787198, -23.881500219294338], + [-54.81401482913308, -23.888718770095856], + [-54.83667701781632, -23.882549391322634], + [-54.849486187967116, -23.895345176083087], + [-54.84926280762312, -23.90624417263579], + [-54.85910111079704, -23.903824225060912], + [-54.87295795572492, -23.907446839764347], + [-54.88387951582042, -23.89598304421523], + [-54.89032092855205, -23.898761758615734], + [-54.89335153485944, -23.909623818236707], + [-54.908183313473394, -23.91015992958871], + [-54.91318686857468, -23.920304798538552], + [-54.92512984667962, -23.922842503593447], + [-54.92551014779082, -23.930857892246856], + [-54.92145578106385, -23.93396978068379], + [-54.9301825503269, -23.94136523655294], + [-54.924771516955566, -23.959519530083348], + [-54.93702033841491, -23.960473587539568], + [-54.93984908903158, -23.965908216705426], + [-54.94093002665539, -23.96295040229095], + [-54.94854397202015, -23.961657740682348], + [-54.965604344422765, -23.963500559082807], + [-54.97559921769113, -23.956007553862936], + [-54.98629415032555, -23.96178113677148], + [-54.998067917347775, -23.955945405499218], + [-55.004421724796224, -23.961289038448978], + [-55.01967783505095, -23.971601969842943], + [-55.03327113408871, -23.973461089489504], + [-55.04612453451154, -23.98451595544364], + [-55.051207420484445, -23.9811762290311], + [-55.06048637004601, -23.992763412693115], + [-55.07215928605771, -23.98857928904265], + [-55.072492841296295, -23.98020750853608], + [-55.077492131206085, -23.985697367152753], + [-55.090236013056725, -23.983034544360716], + [-55.098487600545226, -23.96890002041365], + [-55.10718033962987, -23.965091187434197], + [-55.107078942137086, -23.961273280019665], + [-55.11882312684177, -23.976645958358333], + [-55.1228243340373, -23.977995246400813], + [-55.125159372232886, -23.975198598253897], + [-55.1294575675796, -23.982542470546882], + [-55.14115065378242, -23.98701755517106], + [-55.14926872702765, -23.989102802366865], + [-55.15623796334824, -23.982687058945814], + [-55.1602135835343, -23.987694341874214], + [-55.178763904709506, -23.99378277018283], + [-55.18162902890898, -23.987901101205708], + [-55.19824122166201, -23.987177422923672], + [-55.198968435376834, -23.99470862505105], + [-55.20538017408199, -24.00157418448857], + [-55.22830052346408, -24.013547532990575], + [-55.23581402133963, -24.005837543613055], + [-55.24149659620523, -24.00487901472959], + [-55.245171008641414, -23.996965808967133], + [-55.248629519860195, -24.000432121649467], + [-55.26021854830036, -23.99402921106052], + [-55.26499460717121, -23.986966806544967], + [-55.267991033410844, -23.98888291710958], + [-55.27107227111708, -23.984515385183165], + [-55.27821837963663, -23.983705897069747], + [-55.283411781578806, -23.977046604220533], + [-55.30450786469661, -23.96383013787215], + [-55.31821876939468, -23.960969773933336], + [-55.33718952624788, -23.9940900850345], + [-55.34366374206386, -23.995948151325386], + [-55.35829400892385, -23.99073720586419], + [-55.36385500722946, -23.98314140500587], + [-55.375792826690216, -23.98036293241976], + [-55.3784905926431, -23.971529409229426], + [-55.38790971316603, -23.968481961258163], + [-55.3894655195412, -23.97327920571911], + [-55.39641320999925, -23.976971347041022], + [-55.402185282075635, -23.974697247968145], + [-55.404633722544986, -23.966604902250005], + [-55.413131198444106, -23.966436692303105], + [-55.419275448088115, -23.959456501084425], + [-55.41666025582411, -23.949413953088236], + [-55.41994396265993, -23.943345623549224], + [-55.43223965297508, -23.941381061274814], + [-55.4277722318663, -23.9271413339222], + [-55.443965720204375, -23.918007615404495], + [-55.43824128224563, -23.905757729220685], + [-55.43488730613897, -23.873540718955628], + [-55.43838238076336, -23.86524135053916], + [-55.43941430064571, -23.832457915428403], + [-55.442998367666746, -23.823708988717296], + [-55.44837223615965, -23.821512051159726], + [-55.43535477339387, -23.794468104799737], + [-55.43062766100551, -23.791217133002736], + [-55.43366119722389, -23.771581580541326], + [-55.44416286753969, -23.761174149143788], + [-55.44076938550179, -23.756800659145785], + [-55.44565453898389, -23.743546835779966], + [-55.44032227408968, -23.724360085410723], + [-55.434858175640684, -23.71779223204307], + [-55.43890769948479, -23.711553999609098], + [-55.447466310124504, -23.713099091146276], + [-55.45307464329001, -23.718219013219144], + [-55.46145998058427, -23.71313915823665], + [-55.464719410408904, -23.70450478417587], + [-55.46079768533412, -23.685277374448518], + [-55.46699626526755, -23.67843867297909], + [-55.47421828137314, -23.676367078950737], + [-55.47293646548766, -23.65026154036128], + [-55.482045659157876, -23.64113971180626], + [-55.48771203480567, -23.643757475837024], + [-55.49163284896238, -23.638672877920474], + [-55.50824260230824, -23.63333995435877], + [-55.50912820627993, -23.624158208844378], + [-55.53012981585872, -23.63089613740292], + [-55.53743925874346, -23.62578695879843], + [-55.53525557362712, -23.621064060476055], + [-55.536300156403456, -23.592730186571462], + [-55.526316306436826, -23.58164872466223], + [-55.52893779055518, -23.57207702152759], + [-55.524352488229155, -23.567779171604272], + [-55.53360460017522, -23.555617461171366], + [-55.53574594908249, -23.5389416866801], + [-55.54021927080054, -23.53057468779726], + [-55.538546970568746, -23.525723895946026], + [-55.5448287984529, -23.522764089019223], + [-55.54612686796291, -23.503948134244396], + [-55.553525449182935, -23.489447759737622], + [-55.56074775211643, -23.488374570021573], + [-55.56210267629482, -23.482889798911778], + [-55.56204369045578, -23.476138259635157], + [-55.54691132912184, -23.477209764962957], + [-55.542549147701635, -23.45565047898107], + [-55.546571541507674, -23.44898397754442], + [-55.517604272995335, -23.409718646314662], + [-55.50574307525196, -23.377478135268834], + [-55.51232155747261, -23.365768762158968], + [-55.520878916567774, -23.363961699916686], + [-55.52191178501492, -23.35162056485829], + [-55.53635466282545, -23.331889812567656], + [-55.55646688289218, -23.319187997113886], + [-55.551076186666165, -23.30281925532967], + [-55.556377537490704, -23.28211178981935], + [-55.55460134261168, -23.278148411885557], + [-55.53290670159629, -23.26749198880452], + [-55.52337718757807, -23.258982607242594], + [-55.529709521289526, -23.253268233003535], + [-55.53085179228891, -23.251884067590417], + [-55.53804949144527, -23.250614085247225], + [-55.54151967399307, -23.243042362206246], + [-55.53796794269987, -23.235835490868524], + [-55.54662554958767, -23.219727258838454], + [-55.53467983402373, -23.216611552933145], + [-55.52671241003572, -23.20759945840946], + [-55.52393529976086, -23.197036416536587], + [-55.5431825687607, -23.180264959394112], + [-55.54257093964505, -23.155878270599313], + [-55.555241804918126, -23.152901189495335], + [-55.567129410420414, -23.14383569678398], + [-55.57454676547201, -23.143663440734237], + [-55.59743589533231, -23.15265817864173], + [-55.59560661578963, -23.131777890487605], + [-55.59890953588378, -23.121380357581067], + [-55.59555181703346, -23.11971902136959], + [-55.60015342221308, -23.10442371978705], + [-55.616824019949306, -23.08215367539012], + [-55.61054350940944, -23.07759586495231], + [-55.61151423079063, -23.059215617778182], + [-55.61480005186089, -23.054884260795745], + [-55.61113052320527, -23.04903592116376], + [-55.61363163900483, -23.042005316053537], + [-55.62307166074403, -23.033420528019757], + [-55.63901968008055, -23.026586983613516], + [-55.63083767754652, -23.0002876514601], + [-55.63398458810858, -22.99324652002502], + [-55.62223732937414, -22.98578245160407], + [-55.63784751328913, -22.96172695627865], + [-55.63557075646168, -22.954860842023603], + [-55.63954133291452, -22.95112684389667], + [-55.64726484309289, -22.951101969001193], + [-55.64498970041151, -22.94205229202221], + [-55.65163150256175, -22.9323964613381], + [-55.645769218698504, -22.92418743829833], + [-55.651237733963406, -22.904820545274443], + [-55.64851635895013, -22.899032514595298], + [-55.65095964916613, -22.888212372646347], + [-55.66121388356268, -22.881958097210493], + [-55.65951578404433, -22.86661864629181], + [-55.666210423068236, -22.85214124473376], + [-55.6588234799614, -22.842423727070056], + [-55.65833409671217, -22.825284169456044], + [-55.654014267030675, -22.818657841405074], + [-55.656016699797235, -22.808553535091473], + [-55.64979981815847, -22.802547945790586], + [-55.653040654183336, -22.79279375085412], + [-55.639047217293964, -22.78315323176731], + [-55.634932809784814, -22.770599428654315], + [-55.62737882353265, -22.766732456882156], + [-55.61737408262335, -22.76813400620304], + [-55.619350228917135, -22.765354283527373], + [-55.625520311491584, -22.758958854814512], + [-55.61965762340332, -22.752781273186198], + [-55.61929247080786, -22.74418987564211], + [-55.61301306079108, -22.739089589937944], + [-55.61596323344626, -22.73422014447138], + [-55.612570138802, -22.716931403021306], + [-55.61381729793543, -22.69976373318656], + [-55.60962942731712, -22.690462313935985], + [-55.615924117005605, -22.67765829932495], + [-55.613679289407656, -22.657387736805077], + [-55.620486615475606, -22.65284050172179], + [-55.62219970758807, -22.64213178555334], + [-55.62483278333155, -22.629015102058315], + [-55.644609651383014, -22.61270492286713], + [-55.66788018596824, -22.59548784080875], + [-55.68146038957246, -22.58996596327853], + [-55.69284841874269, -22.578949409357467], + [-55.69535448131982, -22.56361154465836], + [-55.72189941324088, -22.551980440634775], + [-55.74834817378255, -22.500616044307467], + [-55.74784791541132, -22.48633025812211], + [-55.75187392921817, -22.47650545160825], + [-55.74960537391366, -22.472291709902173], + [-55.74723929498386, -22.46393270347473], + [-55.73557024114991, -22.458604182980427], + [-55.738293973470455, -22.453328146363056], + [-55.73495960822647, -22.437646302489636], + [-55.73740118802031, -22.41136820828555], + [-55.74484506269037, -22.404589713212765], + [-55.74028797246702, -22.39507779028001], + [-55.743955967563025, -22.389458427312324], + [-55.765566502415766, -22.38350080317632], + [-55.77495673667747, -22.38653063850231], + [-55.782514931209114, -22.384388462378013], + [-55.78884615701187, -22.388300590901526], + [-55.79093386745661, -22.380622342559167], + [-55.80293187973919, -22.372724838734868], + [-55.79782668926844, -22.363845446536878], + [-55.80048757756191, -22.35557216093959], + [-55.82410325273037, -22.34163093529633], + [-55.832265382435345, -22.325767454363152], + [-55.83815698057628, -22.293923174493468], + [-55.85342728637247, -22.280353298595067], + [-55.89667778968299, -22.28536168082586], + [-55.91657528018916, -22.27707615022228], + [-55.91895881306038, -22.280010674081005], + [-55.92965744496404, -22.27859134139227], + [-55.945212209350245, -22.28345102696956], + [-55.94917982451305, -22.292511558397372], + [-55.95449544736444, -22.289458913286396], + [-55.968295975823885, -22.290250042601432], + [-55.98300941396155, -22.27890237367147], + [-56.00004482036123, -22.283607734801574], + [-56.00471087854584, -22.29314462885562], + [-56.01032410057489, -22.294014928341465], + [-56.01421298938997, -22.286437686410036], + [-56.042789442073946, -22.282857583329207], + [-56.05668208687107, -22.276616601477304], + [-56.06284722646952, -22.276765039157294], + [-56.07073863847862, -22.28619562862515], + [-56.0834904197057, -22.282918548161682], + [-56.08829751068657, -22.28641410456589], + [-56.087856170004, -22.282836341127666], + [-56.09570840021755, -22.28429590880712], + [-56.11709716569694, -22.270768245105717], + [-56.124630706055044, -22.271646599449827], + [-56.12365817872577, -22.27535822087087], + [-56.127768420546964, -22.274438866096048], + [-56.12946152808831, -22.283136827755573], + [-56.137179557638746, -22.28582276458961], + [-56.15027216851202, -22.282086566555655], + [-56.15786190477534, -22.285432093724463], + [-56.16138419816055, -22.282687417773186], + [-56.16610337727627, -22.288536586920006], + [-56.174991969486726, -22.283515871670613], + [-56.17491953002949, -22.2791482950821], + [-56.1838542874799, -22.277467917026975], + [-56.18793217566573, -22.281908862961643], + [-56.19246695717796, -22.27269463611041], + [-56.200828669429555, -22.277527803177776], + [-56.20379485000295, -22.274904430680554], + [-56.21074092160519, -22.277248880986157], + [-56.21532894536984, -22.269730241725906], + [-56.233151477340314, -22.256706966283], + [-56.23291063076005, -22.246418269112315], + [-56.23932082109717, -22.235807144631735], + [-56.26215536211372, -22.238685591205968], + [-56.270381580874115, -22.23268640429266], + [-56.276632746753016, -22.236454814360425], + [-56.28549165942286, -22.225787111454153], + [-56.3015441067275, -22.215558165608005], + [-56.31154862218663, -22.21348689355746], + [-56.31597152106477, -22.218080264759713], + [-56.32727185369821, -22.2023072286588], + [-56.3303553997085, -22.202848913196387], + [-56.32991260734497, -22.19958717941092], + [-56.33629761537858, -22.1979614935044], + [-56.34446059282403, -22.185552812540394], + [-56.343879984605344, -22.179727229206534], + [-56.3484650625284, -22.178507856754283], + [-56.350211880469864, -22.17333831416241], + [-56.357438301005786, -22.174567988439453], + [-56.36352596396818, -22.170438438232953], + [-56.36896707133378, -22.153146745185637], + [-56.372853593091484, -22.150112009753414], + [-56.37265603047806, -22.143534636216533], + [-56.367328648921934, -22.136292506145946], + [-56.372828767952235, -22.12439876410646], + [-56.3804080515145, -22.118556686717977], + [-56.37852091602817, -22.115794476829922], + [-56.383987007458835, -22.110038957497103], + [-56.38152062880452, -22.1040641406763], + [-56.38565403609766, -22.104789996214585], + [-56.39423922858912, -22.09667463049533], + [-56.39349667622459, -22.0927595723439], + [-56.39029435317239, -22.093781997858432], + [-56.38818822658328, -22.090607924538638], + [-56.39291170720335, -22.074849649337743], + [-56.398352496839564, -22.08027806691588], + [-56.405050052383416, -22.077491241847454], + [-56.41668459717334, -22.079485926576627], + [-56.420023218995006, -22.084327253949674], + [-56.4264886375276, -22.079935655737497], + [-56.43173065793651, -22.08617443034262], + [-56.438964005668765, -22.081202383232572], + [-56.446714225249984, -22.085050454673315], + [-56.44960211613557, -22.07662317335489], + [-56.452741667132315, -22.083959392894606], + [-56.45749300871319, -22.07902285291991], + [-56.46190849708037, -22.07938068097182], + [-56.46265880355672, -22.083528019161378], + [-56.47132227488694, -22.080782083614785], + [-56.47691198741054, -22.089001249021127], + [-56.47513341586031, -22.0937119855509], + [-56.498029644433544, -22.094230423406355], + [-56.506491600120874, -22.096755148457916], + [-56.50832774017148, -22.103576641135813], + [-56.5169941997465, -22.10856853357232], + [-56.52124330172315, -22.12075921781468], + [-56.524494035436824, -22.12203564547638], + [-56.52277240511625, -22.12769438387531], + [-56.52635051358793, -22.129868149430287], + [-56.51861016116205, -22.14003275168756], + [-56.525738018787024, -22.14031075782547], + [-56.52918548230413, -22.14860499402091], + [-56.53766438957879, -22.14747717923456], + [-56.53716206538899, -22.15817342913219], + [-56.53352181768647, -22.156317695462974], + [-56.53346772586527, -22.15930560089063], + [-56.556217863261026, -22.169528297141003], + [-56.55232903610853, -22.185128932014052], + [-56.55696632386938, -22.19057190677146], + [-56.55652630297508, -22.196317307474956], + [-56.562461217642216, -22.19782232335106], + [-56.568717809796986, -22.207451901493055], + [-56.574855098265054, -22.206353379509828], + [-56.57524454793398, -22.202023772468873], + [-56.58062957507902, -22.20382554853936], + [-56.582244983031146, -22.211479455336075], + [-56.59010363391393, -22.21368383969009], + [-56.593607687919835, -22.21855521354664], + [-56.59827211200299, -22.212263362128784], + [-56.59841611226976, -22.21944506229048], + [-56.60899587373506, -22.22088042927698], + [-56.60566352729704, -22.232621571879683], + [-56.62648991744999, -22.24605824023309], + [-56.63433255940485, -22.241039704427717], + [-56.640916868867635, -22.24448025553471], + [-56.63558676139807, -22.262939929105116], + [-56.64333291044971, -22.26401348848278], + [-56.6501592993241, -22.259165882260397], + [-56.65110781675271, -22.253888721460132], + [-56.66388332164782, -22.253202724739147], + [-56.67774328472644, -22.24577354800561], + [-56.68313726834653, -22.230009953064727], + [-56.68160406311253, -22.222292102383147], + [-56.68485500103919, -22.22031654294821], + [-56.688414126092006, -22.222856620877863], + [-56.69152057724018, -22.217941659381495], + [-56.69855228520013, -22.22041417796017], + [-56.70346828227906, -22.21822299579616], + [-56.700162416263694, -22.226986347096528], + [-56.69342746532641, -22.227776425292234], + [-56.697718218671774, -22.235066746490837], + [-56.7037139167381, -22.236635731821483], + [-56.70235693489593, -22.244790166725533], + [-56.711160887083956, -22.24796436755696], + [-56.720718486163335, -22.263496416354428], + [-56.7355009146452, -22.254305581073446], + [-56.7310756067236, -22.24716942813017], + [-56.737917195054074, -22.244790559487512], + [-56.74574852689751, -22.235463117292625], + [-56.751860432076406, -22.246422329275006], + [-56.757885477357874, -22.24185391175944], + [-56.76419121702486, -22.243299839621947], + [-56.76089258023849, -22.250727690969807], + [-56.774917981051274, -22.259873994837587], + [-56.78632805168655, -22.25437258683777], + [-56.782607380089786, -22.247821507204396], + [-56.78785791665832, -22.249409928986918], + [-56.784604648592556, -22.24230228490129], + [-56.78779469305183, -22.241416674193008], + [-56.794079293334484, -22.242564025305775], + [-56.80286033564029, -22.252183945210522], + [-56.80202783721662, -22.265580993772552], + [-56.80602492123509, -22.271855143820314], + [-56.80130920371557, -22.283180720780695], + [-56.8194161237784, -22.288742402560818], + [-56.82374487353173, -22.29748244748266], + [-56.83491249527235, -22.301841715082617], + [-56.84219111231611, -22.302547326248344], + [-56.853719332383534, -22.289451110102387], + [-56.86032960013605, -22.292393544718262], + [-56.86927211321311, -22.28253585589754], + [-56.87899466424443, -22.277699382065485], + [-56.87480334655351, -22.263995360132178], + [-56.878356568344394, -22.253213874966043], + [-56.88497116264735, -22.246916402638504], + [-56.899776811523786, -22.25347239947952], + [-56.90055991495973, -22.265568188705434], + [-56.90627684024325, -22.26745917220378], + [-56.91105889466932, -22.260794639946226], + [-56.917305386321296, -22.25972820809827], + [-56.91593054704371, -22.256038403365892], + [-56.92124683425376, -22.25612169447877], + [-56.92547431525832, -22.251767436253928], + [-56.930864360287394, -22.25567809788918], + [-56.946214571096604, -22.257179161625952], + [-56.952838620357774, -22.25142033855728], + [-56.95799648945651, -22.239632378285858], + [-56.97116964258898, -22.24097949506223], + [-56.972776019380994, -22.24477636427922], + [-56.98433384458095, -22.243996531135387], + [-56.991445711343154, -22.237640971319752], + [-56.98961439054443, -22.228110576698445], + [-56.99680524049756, -22.223278101250067], + [-57.00961356471138, -22.236071147503676], + [-57.01725069832492, -22.23206766361162], + [-57.02066298028598, -22.236461102030603], + [-57.03252879213824, -22.234209827493277], + [-57.045029555192194, -22.242448663020834], + [-57.04975033281067, -22.231091611071097], + [-57.059387101221795, -22.22988155573992], + [-57.05863695388451, -22.2409495652389], + [-57.061558110559936, -22.244059367187067], + [-57.077861431239846, -22.245512036957162], + [-57.080730035177126, -22.250672969606722], + [-57.08480373204213, -22.249711739422455], + [-57.08814025635725, -22.242132001898447], + [-57.094192465353906, -22.249090610461344], + [-57.102051050554294, -22.248166134890475], + [-57.112306009190576, -22.240256490034763], + [-57.105246877401605, -22.22681356939008], + [-57.1189698898074, -22.230539632249446], + [-57.13511262016646, -22.225601110799342], + [-57.14744611460012, -22.233626431103318], + [-57.156863562621, -22.226551388178667], + [-57.161556837971396, -22.232541287132474], + [-57.16724963764243, -22.227605503630432], + [-57.170280922785196, -22.233400992445073], + [-57.17655710860112, -22.232060926825326], + [-57.18352862959627, -22.23577664002512], + [-57.18358236396681, -22.22957029577241], + [-57.19261104479041, -22.22084029268856], + [-57.19061074876433, -22.216089529545417], + [-57.20141947561949, -22.210573510656026], + [-57.205751506301105, -22.21934742225471], + [-57.20908902436744, -22.219019241494166], + [-57.208333588260516, -22.21344952921612], + [-57.21453101140276, -22.218958900783523], + [-57.21353381682339, -22.224577561687926], + [-57.20763856651632, -22.22813233021734], + [-57.21525304733768, -22.22755737496612], + [-57.21719714336586, -22.239653267890848], + [-57.24111578537214, -22.24983103574211], + [-57.25517287397643, -22.237570886237982], + [-57.26974966092636, -22.23692802388176], + [-57.27089610330568, -22.229852206679194], + [-57.27725587931547, -22.235441298445885], + [-57.27877606702836, -22.226599039905967], + [-57.28708491589585, -22.22091050235905], + [-57.29172902867145, -22.223693229219197], + [-57.292196065561846, -22.21835390662834], + [-57.303833382950145, -22.22437822283254], + [-57.30398060613718, -22.228586614290034], + [-57.30864509841599, -22.227709037085425], + [-57.3174486128767, -22.236107839488874], + [-57.31475750480777, -22.242098548250034], + [-57.32075389371711, -22.24501604061138], + [-57.3316377500678, -22.233815873406847], + [-57.33605691293084, -22.234049240095363], + [-57.33599762895828, -22.22908964411052], + [-57.340532436545864, -22.234571761489445], + [-57.34217170177363, -22.22919762410574], + [-57.34692194218717, -22.231895283397815], + [-57.35709101537907, -22.226240973062914], + [-57.35897874576553, -22.233388812173274], + [-57.362584367255515, -22.232828279134484], + [-57.36422873086701, -22.227337551619595], + [-57.37603036907606, -22.231954915964742], + [-57.372751175174095, -22.224671110751242], + [-57.3816676999883, -22.226309137478747], + [-57.37758664778721, -22.213504171397847], + [-57.38711203117351, -22.20821062506858], + [-57.38639607250575, -22.20465473940734], + [-57.39475778756105, -22.20871905265429], + [-57.397809388522454, -22.202106604113634], + [-57.416669880872355, -22.196625796602937], + [-57.425725140171, -22.204425889828336], + [-57.42469440682045, -22.197133961427454], + [-57.434059346271944, -22.19962565712609], + [-57.44764086401574, -22.18705356671944], + [-57.454693085711796, -22.189105935893505], + [-57.45233127683219, -22.194458135655545], + [-57.456454348737324, -22.19444388835996], + [-57.459117670149496, -22.18715341432345], + [-57.46514365831992, -22.192040935955276], + [-57.47153500243157, -22.1868446405998], + [-57.480786884694126, -22.191508653411578], + [-57.48843069084867, -22.18995653878846], + [-57.491059569771764, -22.182126246484227], + [-57.50619865289815, -22.18520083585283], + [-57.516452174780056, -22.17318407508989], + [-57.52319938068295, -22.1687891395595], + [-57.52734062940284, -22.175394101523395], + [-57.5471051381987, -22.181899140006266], + [-57.571756780061904, -22.17527618924265], + [-57.578288134201145, -22.176585985565836], + [-57.58822531033328, -22.16424683224406], + [-57.58341970169961, -22.14182261060361], + [-57.586558739031226, -22.139807683729675], + [-57.593557283866666, -22.143918587849456], + [-57.593027770388346, -22.136434498716962], + [-57.60136820919323, -22.139246749960755], + [-57.597030440003024, -22.132892619862766], + [-57.60475019425236, -22.130757629933267], + [-57.60628784705998, -22.122192818233685], + [-57.61217664892025, -22.124281281566727], + [-57.60822845943585, -22.116206349539407], + [-57.612894258147506, -22.106694179005068], + [-57.609507483285746, -22.096355966114615], + [-57.6130891488406, -22.095023491049776], + [-57.638116247292444, -22.10627349038002], + [-57.66347840288735, -22.106439145509185], + [-57.66814719751027, -22.1025111900155], + [-57.6763130472703, -22.101902400481944], + [-57.68895420395247, -22.088544769451882], + [-57.696731093557595, -22.092010601277362], + [-57.70667572789012, -22.090207826984965], + [-57.70425413803396, -22.099100358590185], + [-57.71384164230272, -22.10429434750298], + [-57.71669819132204, -22.113039214114508], + [-57.72997487252756, -22.10029280825198], + [-57.73664950326323, -22.10199991258307], + [-57.74007600132911, -22.107899890536597], + [-57.741559980665286, -22.11537705676713], + [-57.73433831768596, -22.12023082878204], + [-57.737176701176296, -22.13372747698194], + [-57.746282484525715, -22.13885801585374], + [-57.761622779016115, -22.135628584254064], + [-57.77919850232799, -22.126088626963767], + [-57.788318405948516, -22.130946786934544], + [-57.79706591142586, -22.149102384295475], + [-57.80367924978426, -22.15089616893681], + [-57.80992346322051, -22.141182563761795], + [-57.81801095368824, -22.137964430314316], + [-57.822955985445375, -22.121772866041354], + [-57.82836842779941, -22.12006847193787], + [-57.86178277872089, -22.13087786387956], + [-57.8593958859595, -22.13689467888208], + [-57.86881750810541, -22.130387956834316], + [-57.88409841253655, -22.131440409740208], + [-57.88875605616217, -22.123099237287562], + [-57.903818445275895, -22.125741876779465], + [-57.92878602838613, -22.12192570855619], + [-57.921256138102805, -22.10878947608575], + [-57.93284178008741, -22.104580824205087], + [-57.940311022518856, -22.084241905187195], + [-57.95236962501668, -22.087386320228845], + [-57.96067208500701, -22.080208023468476], + [-57.96993359391243, -22.09076698544311], + [-57.979794292839365, -22.091230009479847], + [-57.981678591699605, -22.08653153858937], + [-57.99203707030784, -22.090841983187083], + [-57.9852315757634, -22.06222168761629], + [-57.992477303098774, -22.05516609028955], + [-58.00587944984686, -22.05039860331477], + [-58.00807232378193, -22.038404813576655], + [-58.00162318623299, -22.02892428158234], + [-57.968209479133066, -22.009683586003636], + [-57.96342559178791, -22.000360066104705], + [-57.963565355176506, -21.979269950931943], + [-57.95364765445203, -21.966020750859943], + [-57.93650810556693, -21.922251997338286], + [-57.938453529290044, -21.91094423207575], + [-57.94720216459377, -21.90731907362571], + [-57.94861629322898, -21.90173170224695], + [-57.930869822507496, -21.886503621435956], + [-57.918838905961685, -21.887204473184482], + [-57.912813066023816, -21.879611051054766], + [-57.91695014507402, -21.87370681380705], + [-57.97048031421272, -21.84640827946812], + [-57.968811735580886, -21.842724124653913], + [-57.950573403936396, -21.837388417743377], + [-57.93272683405205, -21.826836493273337], + [-57.91386405553289, -21.79192497163221], + [-57.90923419255935, -21.76943434670918], + [-57.92209497693294, -21.767174987060162], + [-57.93800382324866, -21.758368182502057], + [-57.94576160397615, -21.750302347721412], + [-57.946091760214856, -21.742929680179376], + [-57.93802891979402, -21.731659693698376], + [-57.89675311546189, -21.70584572574238], + [-57.88542162657688, -21.69467967763178], + [-57.88392631677904, -21.693171979235693], + [-57.882532501121595, -21.688493636940056], + [-57.88545182780354, -21.68176795539923], + [-57.92572980359932, -21.662263813145113], + [-57.93355685335909, -21.651505337123456], + [-57.941870411162284, -21.624585362103247], + [-57.93014108694065, -21.60785689387691], + [-57.91325620632412, -21.596713693786857], + [-57.91302804215906, -21.59042684098313], + [-57.921280709611146, -21.581343446253832], + [-57.95892310228974, -21.56390943476122], + [-57.96528600443492, -21.550333470465013], + [-57.96684124298133, -21.52554625322345], + [-57.957888197943554, -21.506943706772365], + [-57.945228779723585, -21.498549660536803], + [-57.931423828204174, -21.48034599140859], + [-57.92486491570403, -21.465018600816215], + [-57.92659005365126, -21.45125602007452], + [-57.90789447317415, -21.417501155699156], + [-57.90436400510401, -21.400414843475804], + [-57.86240195141912, -21.353340607992354], + [-57.85453442734068, -21.338789773012845], + [-57.851225572320494, -21.322986419628634], + [-57.85330523617339, -21.31696992422569], + [-57.89628221080462, -21.30619755956295], + [-57.91138359099891, -21.29506469532384], + [-57.92173258133997, -21.281101140598945], + [-57.92050145735349, -21.277243828502783], + [-57.85822048797456, -21.233872919354813], + [-57.850167482430315, -21.219853499768156], + [-57.8467041404645, -21.19272179644196], + [-57.86242330793567, -21.139855142092628], + [-57.86089491386646, -21.12952985520649], + [-57.84516746854391, -21.098488764349742], + [-57.865246456461676, -21.06649778529472], + [-57.867919783310754, -21.04140789617601], + [-57.84833656482522, -21.0226538889348], + [-57.827364620270416, -20.990596583081558], + [-57.817182381814995, -20.97996722442263], + [-57.82472142506875, -20.96377714013958], + [-57.81944341172652, -20.94265019467773], + [-57.82405061305321, -20.936281301798985], + [-57.83391883425632, -20.935996350805155], + [-57.847467605385226, -20.947559130941823], + [-57.861803953244866, -20.948174521509628], + [-57.872666091420996, -20.939363921248454], + [-57.88452478161369, -20.914440165961246], + [-57.8933381999158, -20.905025109414048], + [-57.90293552146188, -20.90178614962566], + [-57.92094305599827, -20.904230292747197], + [-57.928494262990874, -20.898207533939132], + [-57.922029331483685, -20.88767142412199], + [-57.901695141668796, -20.876819106063444], + [-57.865002216498496, -20.848326113176206], + [-57.859719005556734, -20.826948106934477], + [-57.86388976554559, -20.81720550384182], + [-57.89452357162325, -20.791031444042474], + [-57.908110313208574, -20.7903094390937], + [-57.933585592285944, -20.7994401512328], + [-57.94794793763769, -20.800471546474594], + [-57.958217344531036, -20.797458535247454], + [-57.96107816039936, -20.789317948260063], + [-57.942756397526516, -20.75375899061317], + [-57.93336129535607, -20.74600250391154], + [-57.91622075672495, -20.743886345746663], + [-57.87544586621331, -20.750497688373976], + [-57.8639763037165, -20.745920504898766], + [-57.86321745940727, -20.741800608333588], + [-57.87124754077575, -20.732366530743192], + [-57.87811297661101, -20.71359635643021], + [-57.90494540080971, -20.685910112785887], + [-57.91208376746632, -20.671096850853072], + [-57.921134385616625, -20.663578561548682], + [-57.933534430974575, -20.66638044727819], + [-57.954609527839146, -20.70362478837576], + [-57.98547230361485, -20.701769069407465], + [-57.98916445469811, -20.68736758251542], + [-57.987385896089094, -20.680232946813767], + [-57.977190417531055, -20.664056251528564], + [-57.970778275307445, -20.64344703516896], + [-57.97486005539175, -20.639115815229978], + [-57.991386233869534, -20.634270820192096], + [-58.01294254690621, -20.613047238941558], + [-58.009860325756776, -20.59360684733003], + [-57.997641176265454, -20.573290613579104], + [-58.018883848300845, -20.513911505926174], + [-58.01480181994443, -20.486109378891932], + [-57.995020729190614, -20.454673352403308], + [-57.9954467034047, -20.440727720285626], + [-58.02105373458813, -20.4025556185724], + [-58.063468150265905, -20.392999851551863], + [-58.084358452651664, -20.37271562591677], + [-58.10219469209123, -20.32467901626426], + [-58.09464270776481, -20.305588465267945], + [-58.089191185665065, -20.273845140156155], + [-58.0900858077783, -20.26156364924985], + [-58.09477404942963, -20.255602732059568], + [-58.10202494399063, -20.251097408519], + [-58.11863739997219, -20.250022983934997], + [-58.12843580360419, -20.254878468687405], + [-58.13863130132532, -20.26997376266573], + [-58.144748674163374, -20.272804401498334], + [-58.16155526202642, -20.262500932489782], + [-58.166498496455084, -20.238195092133452], + [-58.1619410600211, -20.22413835438664], + [-58.149299843148555, -20.21171706571046], + [-58.13018929643872, -20.20608398677866], + [-58.12238980592986, -20.19520265806695], + [-58.12582857888754, -20.18809053804908], + [-58.13697302839944, -20.180264088146238], + [-58.16166506701509, -20.18036815463902], + [-58.16646569764398, -20.177721690969616], + [-58.16752609713362, -20.171864209284635], + [-58.1631378113505, -20.16269180212895], + [-58.15261259246376, -20.15288661106569], + [-58.13866450418558, -20.1523217117056], + [-58.11530608559122, -20.143762626143754], + [-58.10455870448867, -20.12459146019357], + [-58.088891207826606, -20.107809401961234], + [-58.04901990642615, -20.105164752675822], + [-58.04394060696429, -20.098797797671555], + [-58.033153637389944, -20.065141138742547], + [-58.018855732201736, -20.05772503353402], + [-58.00032096819485, -20.056051810532033], + [-57.98620970855731, -20.058487705351144], + [-57.9725519834285, -20.048127255624866], + [-57.959216825185564, -20.022268061633437], + [-57.94624298046884, -20.018823311826264], + [-57.93516309726426, -20.02031273223557], + [-57.927659917023064, -20.02301535357076], + [-57.90635026922772, -20.04269169946027], + [-57.90230064325802, -20.042130763591558], + [-57.887299673166545, -20.015513838310053], + [-57.86237920294003, -19.985661680499863], + [-57.85946984664497, -19.970373874289454], + [-58.13177085644691, -19.758516429427715], + [-58.032230617590024, -19.55249764374291], + [-57.965701852084344, -19.413740282783635], + [-57.886231767642755, -19.247556685556198], + [-57.85532222475776, -19.182793464963208], + [-57.78421038127322, -19.033530788583004], + [-57.72040367297666, -19.0327407587851], + [-57.71015356239264, -19.032611864331216], + [-57.69432533536845, -19.01097755947181], + [-57.69854354772555, -19.007337165660743], + [-57.69695595874497, -18.99740988616493], + [-57.70437293221738, -18.986555271632255], + [-57.71070223423999, -18.97945884405442], + [-57.719265049412414, -18.977067844080032], + [-57.71978730650915, -18.899084412348905], + [-57.76662525603647, -18.899304644641617], + [-57.55778275714421, -18.240367895498157], + [-57.45386729749431, -18.23121285633713], + [-57.45744814018639, -18.22493259576351], + [-57.467471872174144, -18.22279605361241], + [-57.47422824907847, -18.216989603771268], + [-57.47372388273028, -18.212542157453907], + [-57.479811306429525, -18.208641264459235], + [-57.47864382710387, -18.201707833390994], + [-57.483063523766404, -18.19721549625944], + [-57.49075574461604, -18.202236199488198], + [-57.50031210553051, -18.196902353379098], + [-57.50508882728943, -18.200360674885726], + [-57.57481264402936, -18.131906978865743], + [-57.58178422868038, -18.10829887697641], + [-57.60005989972639, -18.046387173493144], + [-57.7206147300041, -17.827880865627645], + [-57.68311469342015, -17.828157804400256], + [-57.683173271518854, -17.808023286948107], + [-57.72008175149689, -17.771740083374453], + [-57.70958918971416, -17.729904717200945], + [-57.720307223937986, -17.72022174618154], + [-57.73091414360105, -17.718793419600495], + [-57.74064507994311, -17.6936959220515], + [-57.74898707701633, -17.69324068641275], + [-57.760516311007486, -17.66388397875094], + [-57.763535956259254, -17.659823637999548], + [-57.77563787031144, -17.657039224376806], + [-57.78325050067211, -17.63927902865654], + [-57.77427832519495, -17.62620125678083], + [-57.77186128040569, -17.612952011167387], + [-57.77555748796282, -17.611148019628516], + [-57.77989850202896, -17.6150534657881], + [-57.783972022930804, -17.607442764817865], + [-57.77397482162677, -17.597993798032874], + [-57.7872286355277, -17.59285057436568], + [-57.78195054028106, -17.592383204126868], + [-57.777696596679185, -17.584481415340516], + [-57.79075413580916, -17.58668618612981], + [-57.78083406967371, -17.576322293059693], + [-57.78535605386979, -17.575252908065266], + [-57.78519649631284, -17.56998963286014], + [-57.79438723161088, -17.564293380107966], + [-57.79561724989636, -17.560029953554434], + [-57.7928140321681, -17.55576338134055], + [-57.78561234097183, -17.555568981799077], + [-57.75224158128008, -17.564484469399858], + [-57.7399982351602, -17.536326458116665], + [-57.7280043484295, -17.529769092027347], + [-57.71208580083568, -17.543154936440164], + [-57.71089479341843, -17.566098457948694], + [-57.70158765498878, -17.57777278251905], + [-57.703829472803115, -17.589755334650896], + [-57.697167265190416, -17.601255742865725], + [-57.70200158899879, -17.601264629217052], + [-57.69286476574171, -17.626803036617154], + [-57.686703734996904, -17.629341680273445], + [-57.6898569014477, -17.640332345153563], + [-57.682668572575565, -17.642758434481532], + [-57.682674771102505, -17.650380254340458], + [-57.676895531375564, -17.652175586950065], + [-57.67933467724822, -17.65772169768622], + [-57.6717269212847, -17.664133216113026], + [-57.67244506017037, -17.670758659965934], + [-57.66878476482547, -17.671927212048576], + [-57.672757987688826, -17.67729421827402], + [-57.67095079448593, -17.681097369221114], + [-57.68067225868255, -17.684930988111727], + [-57.68309102737937, -17.696277197381495], + [-57.68006225941224, -17.70406575516851], + [-57.68456030037217, -17.716502322460467], + [-57.67233902989294, -17.719741584331903], + [-57.67163665700198, -17.72835083367569], + [-57.667001672738344, -17.72616510474239], + [-57.663501371862495, -17.729874447986486], + [-57.64591833657128, -17.724382095469235], + [-57.64469179873494, -17.71884920517743], + [-57.64025105261878, -17.717379880931265], + [-57.62305805602021, -17.73637940716871], + [-57.61859058050953, -17.74780225081247], + [-57.61194605790346, -17.750314013814016], + [-57.61997600555317, -17.754783863579704], + [-57.61483312068489, -17.76683255996966], + [-57.600897761036485, -17.775310909599398], + [-57.602676187803056, -17.779046191105092], + [-57.612530528484285, -17.779431534689245], + [-57.60583114826501, -17.80235969911352], + [-57.6023084630563, -17.8048879946003], + [-57.576278818985145, -17.800548451991016], + [-57.57139602440646, -17.815414534943287], + [-57.55861234246595, -17.815456835722163], + [-57.55195116488774, -17.828225179969934], + [-57.530975332485944, -17.839133234897478], + [-57.534724297549296, -17.85365361341216], + [-57.511279451985374, -17.86391829327278], + [-57.47753323899179, -17.859072693596843], + [-57.47761647586324, -17.87890151410759], + [-57.461883155553885, -17.898555116237603], + [-57.452416446250005, -17.902662668240392], + [-57.44586716126861, -17.891987513711864], + [-57.44667274914768, -17.874523329060032], + [-57.438581747784895, -17.871517310425954], + [-57.42168427849994, -17.85421751512463], + [-57.41069739324836, -17.858112163762677], + [-57.40969951135566, -17.85393429825417], + [-57.40052574954289, -17.847841714676985], + [-57.39846844193259, -17.839385791937232], + [-57.391310329640646, -17.845537766456673], + [-57.38563375254248, -17.844291793073065], + [-57.37739554892786, -17.826202746464347], + [-57.36802805678116, -17.826217971745166], + [-57.36310084032748, -17.833579300811344], + [-57.353403746833415, -17.837877132835555], + [-57.34663709220761, -17.834164712412903], + [-57.342358812107065, -17.8360134859132], + [-57.34130576897577, -17.83065308218353], + [-57.32517366442463, -17.829169297408598], + [-57.32474722537549, -17.824546965161705], + [-57.31133176749346, -17.81784297873863], + [-57.30803134778206, -17.810825714965453], + [-57.29971624891229, -17.816866961000816], + [-57.289969719629966, -17.811572009893865], + [-57.28814106499354, -17.814174279255955], + [-57.293443544405, -17.81995104015044], + [-57.283277695746975, -17.82271228531356], + [-57.28372012637077, -17.812931079383777], + [-57.26478297767042, -17.82036784879002], + [-57.252559356905515, -17.810780105127773], + [-57.232580391780964, -17.812402074401355], + [-57.234060472781, -17.808161893627343], + [-57.245413826851376, -17.806332802051028], + [-57.25197095257571, -17.79347414279479], + [-57.24291545584729, -17.797602545314774], + [-57.23503135111629, -17.788349349116004], + [-57.228025331718946, -17.790320029830337], + [-57.22708460850259, -17.782802695839894], + [-57.21582004943015, -17.78798946709877], + [-57.200583665895664, -17.788841515321653], + [-57.17479866641267, -17.776256371461997], + [-57.155887120897226, -17.778429436308425], + [-57.146691276961086, -17.76752264297395], + [-57.115554955427356, -17.781103664640696], + [-57.11355619935812, -17.77174108766054], + [-57.09852789438517, -17.770434870347234], + [-57.09211571333543, -17.752416660801405], + [-57.07977169610766, -17.749151474840097], + [-57.07385917752696, -17.7354806339276], + [-57.06414230687735, -17.735064676201056], + [-57.05666368535294, -17.72951356296479], + [-57.05010532558345, -17.732674801752452], + [-57.04486164595824, -17.73033832970442], + [-57.033323909835914, -17.694758141896887], + [-57.01921680938002, -17.692183443014656], + [-57.01952404813993, -17.685131092806976], + [-57.01402236857754, -17.676144220936248], + [-57.00955131273813, -17.67048158339496], + [-57.00038192836078, -17.670738631716198], + [-56.98816601708958, -17.65930681223762], + [-56.98379692420804, -17.641909895049828], + [-56.964693928277164, -17.621754102120217], + [-56.957941745529645, -17.60805347801719], + [-56.96049359998755, -17.605172276584824], + [-56.97275082135264, -17.61362577803798], + [-56.98135783427825, -17.61103229027599], + [-56.98233332709636, -17.60387764433576], + [-56.97590940600503, -17.595977886656325], + [-56.9781018581788, -17.589878959929372], + [-56.982302452149696, -17.580249766766595], + [-56.97343924339159, -17.58040106330193], + [-56.96674660012965, -17.571420904249006], + [-56.950325948912806, -17.56865151876551], + [-56.944907544781664, -17.552966164116313], + [-56.917491107744326, -17.541371532759694], + [-56.909522874338805, -17.53256283778402], + [-56.89571865449319, -17.539399632313813], + [-56.87591405197633, -17.532988438270642], + [-56.870490289591054, -17.516214250250204], + [-56.86655133442217, -17.515476813444756], + [-56.861416933510355, -17.50522575176235], + [-56.866601897689605, -17.49548222472044], + [-56.86191105342565, -17.48392311732468], + [-56.85018526573737, -17.48679747329742], + [-56.8459915477942, -17.480595041304074], + [-56.849888162798294, -17.47075298103534], + [-56.84776939861784, -17.46402258141396], + [-56.83211194967917, -17.463685252884616], + [-56.825358928898105, -17.458907755726397], + [-56.82543602123491, -17.45310264540626], + [-56.84085624671733, -17.442024736551225], + [-56.83318794510285, -17.435057103773996], + [-56.828129890714344, -17.438539971431094], + [-56.822666209032654, -17.437579317406755], + [-56.81954798201263, -17.430212646331306], + [-56.82435330282596, -17.423094999721098], + [-56.834242124416754, -17.4234684448982], + [-56.84196430290584, -17.418205490420515], + [-56.831300727835085, -17.409752966549032], + [-56.828658217585584, -17.389976369894253], + [-56.80435742115542, -17.38664392903921], + [-56.7909758273688, -17.391081822719727], + [-56.785934029045116, -17.387542337417244], + [-56.789348873233216, -17.37688920875331], + [-56.78669551278866, -17.37052078711526], + [-56.77142291382585, -17.36588452556156], + [-56.76282245902294, -17.36065495412586], + [-56.76085279148767, -17.35166420377548], + [-56.76943868961563, -17.343871024764386], + [-56.76882068208896, -17.340874507672858], + [-56.75715735228137, -17.33685579376835], + [-56.75774055565697, -17.326708666740878], + [-56.743408139245744, -17.32735837025494], + [-56.73679378769968, -17.32175442707886], + [-56.73380028151278, -17.30987580154317], + [-56.720605082781056, -17.307555423849607], + [-56.71349002454511, -17.31881032200464], + [-56.6918785603443, -17.318125557410152], + [-56.69585619848076, -17.326954188082226], + [-56.683127526213326, -17.316581713140394], + [-56.67388213132781, -17.32526319452649], + [-56.67379338801702, -17.333426141611046], + [-56.66352117971418, -17.338844889691615], + [-56.65557893951447, -17.33340551340263], + [-56.662632901859496, -17.32677509861356], + [-56.656657392179184, -17.32145673043913], + [-56.645408962395344, -17.339362801973262], + [-56.64229058680448, -17.330539647846717], + [-56.64982878721153, -17.324191239578564], + [-56.647384052725855, -17.317002288515884], + [-56.64074296775384, -17.32699318957038], + [-56.6303848364127, -17.334216098865586], + [-56.62851441473974, -17.323777438958953], + [-56.624964420547016, -17.322100518602436], + [-56.61671823372919, -17.32382242983641], + [-56.611798562152615, -17.331923161373563], + [-56.60562912036801, -17.328770534359776], + [-56.5958384535782, -17.33255925047706], + [-56.58485392938873, -17.329262387255728], + [-56.57651606994146, -17.331069676677934], + [-56.574883400490485, -17.328147491267607], + [-56.579299419322304, -17.3203175749655], + [-56.57110891751491, -17.315316403187843], + [-56.55096171547036, -17.322890917828705], + [-56.53232028805622, -17.31297835325874], + [-56.528627383350994, -17.32091751694817], + [-56.52590304507302, -17.320518475429957], + [-56.52207315675099, -17.31059839487802], + [-56.513819487162564, -17.312837167206975], + [-56.511629656498975, -17.306485066095753], + [-56.50599088144538, -17.306058965380345], + [-56.51540446070838, -17.292839140792683], + [-56.50801799393189, -17.295298765472573], + [-56.501714869223115, -17.286339795454854], + [-56.49815632608769, -17.29872520514965], + [-56.49004427943887, -17.298330277167445], + [-56.47307107864927, -17.31002540577569], + [-56.471128282411755, -17.303396081983845], + [-56.467463668786344, -17.30229359956929], + [-56.46390852453032, -17.315681738200468], + [-56.452319820577436, -17.31018973027769], + [-56.45082375499367, -17.326405687863954], + [-56.44407009961929, -17.33162642106976], + [-56.43254541901289, -17.31860153219918], + [-56.41721099142824, -17.311636812596706], + [-56.41265199594732, -17.316953785891986], + [-56.40804169495439, -17.316116198499486], + [-56.402797311577935, -17.30630125663488], + [-56.388876148751606, -17.301960045343595], + [-56.383012355922894, -17.287972162934974], + [-56.360600919581934, -17.2808579466045], + [-56.36243131516614, -17.27171682305684], + [-56.35662550466208, -17.267063492546292], + [-56.34290595596493, -17.2730558805353], + [-56.34345994965709, -17.27595690070592], + [-56.350268629731644, -17.274551907643982], + [-56.35165355858092, -17.277550625269043], + [-56.3358197303763, -17.289962019682676], + [-56.33493283357307, -17.282439046660425], + [-56.32320932726047, -17.285728919628365], + [-56.323182907680405, -17.276201263725216], + [-56.313487036680264, -17.269442458239652], + [-56.30658193300732, -17.273005402598454], + [-56.29779588603374, -17.276601383295006], + [-56.29490700165219, -17.271325829691644], + [-56.286516180576406, -17.27045342640162], + [-56.2800665838318, -17.259176235436605], + [-56.28712600429802, -17.248982807272004], + [-56.28337465901975, -17.246685778345707], + [-56.268072445625954, -17.248140976070093], + [-56.27262888691739, -17.243087973980707], + [-56.26898711147563, -17.239805154282763], + [-56.25649413946267, -17.243804890644405], + [-56.262347326543086, -17.231246373746785], + [-56.25904223940951, -17.229323965861276], + [-56.252236841442425, -17.234176978823534], + [-56.25492355874072, -17.222494706882067], + [-56.25129076583649, -17.219036203908615], + [-56.2378758001309, -17.2222088004603], + [-56.2336762965477, -17.227350124721085], + [-56.22087650009682, -17.228803657648], + [-56.222898303738134, -17.21930518462856], + [-56.208711583900445, -17.22728212856757], + [-56.21296089566006, -17.210627263712723], + [-56.205405352190226, -17.214114399241026], + [-56.198100086064926, -17.20618434228021], + [-56.18909547606217, -17.210381092018103], + [-56.185377911720906, -17.1892453464971], + [-56.17704278524541, -17.195982625160696], + [-56.17076226405274, -17.188688699393335], + [-56.16329355838497, -17.194708158217637], + [-56.15267541367737, -17.185487775088536], + [-56.14523353880579, -17.184898703869333], + [-56.13981593724536, -17.191204404661345], + [-56.13635299601202, -17.189192045067823], + [-56.14009529646885, -17.17951592905901], + [-56.13320629268344, -17.18055506272796], + [-56.12534323808169, -17.174333672446267], + [-56.12078987524778, -17.17566476669118], + [-56.113900579857244, -17.166643070143323], + [-56.10203736268223, -17.174090702905442] + ] + ] + }, + "MG": { + "name": "Minas Gerais", + "coordinates": [ + [ + [-44.20902785445264, -14.237260404000883], + [-44.20910663168237, -14.246701277616932], + [-44.20122072045492, -14.251166356591975], + [-44.201220718582384, -14.251166490139349], + [-44.201272698915865, -14.254505589786719], + [-44.18290960295357, -14.2582602469297], + [-44.17328507089791, -14.266906443036023], + [-44.16547057634494, -14.2689599400812], + [-44.15998835414515, -14.25766467923932], + [-44.13724921761208, -14.264181159530628], + [-44.13724920678177, -14.264181292547985], + [-44.13596705326329, -14.274932522742622], + [-44.143602862040865, -14.278522048731597], + [-44.143602715697966, -14.278522116281597], + [-44.1356013538499, -14.282215208562171], + [-44.124325775551384, -14.27499915982924], + [-44.112579002415366, -14.258758250286075], + [-44.10727026288453, -14.259150360291411], + [-44.10708239810359, -14.260376729796308], + [-44.10601780486161, -14.26732567312773], + [-44.099380064653694, -14.273490787765134], + [-44.09937921307453, -14.273490808876755], + [-44.09363020592292, -14.273633262147325], + [-44.086906565948006, -14.268458472064953], + [-44.08690658787437, -14.268458627040756], + [-44.088271529297785, -14.278106343561058], + [-44.088271502825144, -14.27810633171725], + [-44.08238636251039, -14.275473246248813], + [-44.082439275207, -14.269029034397029], + [-44.0824392787056, -14.269028900819894], + [-44.07443604799699, -14.270669781358826], + [-44.07443610435873, -14.270669902148544], + [-44.07794460967681, -14.278188907395883], + [-44.07794455311478, -14.278188932398086], + [-44.07318661606357, -14.280292009381427], + [-44.073383364780156, -14.285695715989807], + [-44.06841460189083, -14.279755932548262], + [-44.067201718126555, -14.280208775500485], + [-44.061328210099575, -14.282401579195037], + [-44.0613278097772, -14.282401092569524], + [-44.05741313896256, -14.277642394141784], + [-44.057413133172886, -14.277642527695281], + [-44.05713126582512, -14.284292737719852], + [-44.04936965448568, -14.28475515547028], + [-44.04152034637636, -14.286250978860895], + [-44.038412636970676, -14.282328593070154], + [-44.034606092288364, -14.289058719041206], + [-44.02574246957228, -14.276628210784311], + [-44.01539063638576, -14.276539431848507], + [-44.01546671511987, -14.271578689170365], + [-44.0154667191148, -14.271578555610482], + [-44.0092716460752, -14.272364146306892], + [-44.00613787098202, -14.267394616708728], + [-43.99763497559003, -14.265434969839937], + [-43.991157467695785, -14.269020281880772], + [-43.986354648360035, -14.267581765769961], + [-43.98635479974553, -14.26758194641798], + [-43.99058111112073, -14.27262509664722], + [-43.99058102268937, -14.272625131755833], + [-43.982585428958146, -14.27579929358467], + [-43.980826418432876, -14.282179166042088], + [-43.97683615268518, -14.280557464599585], + [-43.970907556854584, -14.278147857550092], + [-43.96964539268561, -14.274276622992417], + [-43.96957302254966, -14.274054652629854], + [-43.961908463951005, -14.29103753295424], + [-43.95532654595261, -14.292218081423195], + [-43.95532665140492, -14.29221907781273], + [-43.95612342038661, -14.299747849408815], + [-43.956123395294405, -14.299747802430744], + [-43.95093286480821, -14.290029754896166], + [-43.9462751396404, -14.289985607945004], + [-43.94212556021645, -14.30512729061027], + [-43.93505371430972, -14.295710560660591], + [-43.92641060452161, -14.305703625102703], + [-43.92366473347807, -14.303390140360912], + [-43.923858766813396, -14.296007630194547], + [-43.92385877157119, -14.29600749666925], + [-43.91638156042876, -14.295964432555689], + [-43.91638155092108, -14.29596456572136], + [-43.9157458672114, -14.302457350500353], + [-43.911571812198346, -14.30507531961872], + [-43.90911002917578, -14.302581302349456], + [-43.90910978181856, -14.302581051750538], + [-43.91096550884858, -14.297695285017102], + [-43.91096556905082, -14.297695126510112], + [-43.90524590312743, -14.300335738219179], + [-43.904410331342994, -14.293641513180427], + [-43.90224646126721, -14.298157793095495], + [-43.89246586165334, -14.301047951383458], + [-43.89193902919929, -14.29331836915454], + [-43.8919390181671, -14.293318502058472], + [-43.89032468072553, -14.30663386760823], + [-43.88137287030798, -14.307452210886423], + [-43.88137286030046, -14.307452343965313], + [-43.880911168865715, -14.311834333969152], + [-43.87282284939876, -14.313615631547927], + [-43.869938072509136, -14.31007817397446], + [-43.86152035530187, -14.312903432178375], + [-43.852690007824144, -14.30796763391367], + [-43.85143590720458, -14.313605956993184], + [-43.851435926132396, -14.313605978134685], + [-43.85543608171736, -14.318073887663544], + [-43.85543597959342, -14.318073913830464], + [-43.8514108156728, -14.319105226098419], + [-43.84670905748367, -14.313130582592061], + [-43.846709066380114, -14.313130735059772], + [-43.8472130207965, -14.321768589353509], + [-43.84721300613045, -14.321768575341517], + [-43.83613089678703, -14.311180152445274], + [-43.82632154601907, -14.316214739160376], + [-43.81899105213193, -14.31223899182555], + [-43.818991102279085, -14.312239155770557], + [-43.822301354509634, -14.323061195552562], + [-43.82230130215294, -14.323061177710812], + [-43.81530556812994, -14.320677109113339], + [-43.815305558766575, -14.320677242265859], + [-43.81479995310489, -14.325988843044641], + [-43.80863872950839, -14.325507232023671], + [-43.806832760655446, -14.33255010505637], + [-43.800071867254424, -14.33785880218656], + [-43.79031476067944, -14.336179546186015], + [-43.78317345397901, -14.3392653591631], + [-43.783173520176945, -14.339265461356826], + [-43.80464740762402, -14.37241263173369], + [-43.81432086441122, -14.380840127570627], + [-43.81937429895047, -14.38933644893175], + [-43.82705055947832, -14.428952219992231], + [-43.84178172090549, -14.462547715441872], + [-43.86764563718182, -14.509059228816064], + [-43.87481939443021, -14.524577830007916], + [-43.88128983623287, -14.562404328342616], + [-43.881289808369715, -14.562404334864636], + [-43.87715927888744, -14.563371136721505], + [-43.877159737260754, -14.56337204157789], + [-43.8871881070358, -14.583167670159028], + [-43.8871880542274, -14.583167711550878], + [-43.88263132474008, -14.586739200799226], + [-43.88263136213158, -14.586739300140424], + [-43.886000129660225, -14.595689258548344], + [-43.886000090410064, -14.595689304114655], + [-43.882965978744565, -14.599211563148978], + [-43.881375521681136, -14.590137757899674], + [-43.87671712007615, -14.590833852197076], + [-43.876383218207415, -14.591416711937974], + [-43.87449120659471, -14.594719311150936], + [-43.87449108285548, -14.594719527138318], + [-43.876519952308726, -14.607065610149187], + [-43.876878002077035, -14.609244482353954], + [-43.876877976221984, -14.60924449603708], + [-43.870049470252994, -14.61285811341994], + [-43.87004961552931, -14.612858166743859], + [-43.87442995087443, -14.614465931130935], + [-43.874429899077214, -14.614466047856801], + [-43.87102555079952, -14.622137336274236], + [-43.871025591491595, -14.622137364125765], + [-43.88173979288177, -14.629470279092356], + [-43.88173971245869, -14.62947036175403], + [-43.87461210820293, -14.63679589337697], + [-43.87461224824517, -14.636795876568346], + [-43.88577211502237, -14.635456112972175], + [-43.885771818353504, -14.63545628132848], + [-43.87713230833535, -14.640358775650702], + [-43.87713244253076, -14.640358829467825], + [-43.883686748290444, -14.642987233862074], + [-43.88368662561788, -14.642987320623082], + [-43.88302474385443, -14.643455438643807], + [-43.87927369931696, -14.646108284456837], + [-43.879273359808714, -14.646108524559644], + [-43.882860091142355, -14.652189433076433], + [-43.88349306832991, -14.653262553788775], + [-43.88349301670147, -14.653262610214004], + [-43.879104832917896, -14.658058304005772], + [-43.87588000792021, -14.652296748619317], + [-43.8749332083555, -14.652772897195888], + [-43.87324449586518, -14.653622138383676], + [-43.87324356737999, -14.65362260530586], + [-43.87188301050167, -14.663613043770411], + [-43.86329343530183, -14.662337243133253], + [-43.85918663411528, -14.674329267398445], + [-43.84685340370596, -14.67213554713977], + [-43.83872582963443, -14.675237130482087], + [-43.83198332698834, -14.675060403345107], + [-43.81078262596327, -14.684625187942668], + [-43.80049234664528, -14.687344269568017], + [-43.78564930481421, -14.685749867366455], + [-43.78564905973012, -14.68575003457096], + [-43.777975520513095, -14.690984860277082], + [-43.776153215294975, -14.692227928605101], + [-43.764505388154916, -14.69211402604887], + [-43.75549871404648, -14.700866097350955], + [-43.72772663454278, -14.698473758957453], + [-43.72327415069964, -14.69956275557827], + [-43.71813123050319, -14.711453187730449], + [-43.71221618079489, -14.715015962119718], + [-43.71221688841274, -14.715016529387917], + [-43.71959732082912, -14.720932914633998], + [-43.71959731961185, -14.720933047898558], + [-43.719849148411235, -14.729569974958714], + [-43.71984821413355, -14.729570058174948], + [-43.70971426433435, -14.730420283676082], + [-43.703405636330295, -14.725352918433991], + [-43.692185727382444, -14.724800462562156], + [-43.68660508417262, -14.72169687990179], + [-43.68660522298591, -14.721697094019024], + [-43.69022890223935, -14.727286461405399], + [-43.69022881697334, -14.727286473057479], + [-43.68404876102707, -14.72813092036441], + [-43.683766397822005, -14.728518994499955], + [-43.68106987326844, -14.73222491912106], + [-43.681069188281306, -14.732224669616146], + [-43.673798112331454, -14.72957607225032], + [-43.673798038819214, -14.729576045471134], + [-43.67593316688953, -14.72672578301252], + [-43.675933258818425, -14.72672566029033], + [-43.67321635467695, -14.72638707376401], + [-43.67099143101826, -14.736898678327165], + [-43.66635624691583, -14.737151902370845], + [-43.656987278522045, -14.745782886219851], + [-43.62998622349468, -14.750389402488592], + [-43.61123495468299, -14.760580344503953], + [-43.59924283481473, -14.753944266498392], + [-43.5887581675666, -14.750890366081103], + [-43.58060388046201, -14.750845666712115], + [-43.573770086113946, -14.765195128652742], + [-43.56263549677467, -14.76992459474003], + [-43.53716173922813, -14.783539590102865], + [-43.533934555375254, -14.78875164242358], + [-43.53393461021878, -14.788751676745292], + [-43.53692825511963, -14.790625106557592], + [-43.539186798499586, -14.805767834318305], + [-43.53918677621962, -14.805767861611491], + [-43.531379506080405, -14.815331085483523], + [-43.525237224166965, -14.814020044212198], + [-43.52121409628262, -14.805941559424529], + [-43.51535311849973, -14.804627021697431], + [-43.50973876779394, -14.80763182807023], + [-43.511149828764886, -14.79660678291966], + [-43.511149858843304, -14.796606547873152], + [-43.49846091892443, -14.797408440999314], + [-43.49424573953373, -14.790810896041496], + [-43.490123939597204, -14.792672702909345], + [-43.48351488885317, -14.78942882534687], + [-43.47966797083772, -14.7914114100214], + [-43.47836496476292, -14.792083193452191], + [-43.46968656038857, -14.787380766604034], + [-43.46871511689429, -14.779515878063867], + [-43.46871511273697, -14.779515751459495], + [-43.47979973581474, -14.772549167532473], + [-43.48124248442089, -14.767930136595917], + [-43.48124251798462, -14.767930029135595], + [-43.47528214132881, -14.76224051109947], + [-43.46282662090751, -14.765918670272976], + [-43.46282599138999, -14.765918856148572], + [-43.4570871905588, -14.758820116577928], + [-43.45624630637611, -14.757779933752733], + [-43.45624627287933, -14.757779892316703], + [-43.46126056551368, -14.746261042612026], + [-43.461260605818744, -14.746260950014417], + [-43.456215758068204, -14.740189689279308], + [-43.44582242077767, -14.736720122536047], + [-43.440463371227565, -14.72834793835266], + [-43.43462799954371, -14.72645794139409], + [-43.43487753099118, -14.723071087995082], + [-43.43487760724082, -14.72307005300906], + [-43.42815478655606, -14.726403007907248], + [-43.42865681370108, -14.722243915143865], + [-43.428656824926605, -14.722243782401515], + [-43.42530182053296, -14.720011900523776], + [-43.41467979163134, -14.724265271734188], + [-43.411915668607996, -14.721792392566822], + [-43.399017570867855, -14.710252483830605], + [-43.38083092680481, -14.703897472676461], + [-43.36403556473869, -14.698027254849423], + [-43.34649297001915, -14.696102317567446], + [-43.33426980870283, -14.68768844859911], + [-43.33049444652962, -14.680161513679785], + [-43.31966041741931, -14.677988762573158], + [-43.311216950597625, -14.669781562178846], + [-43.29813238413003, -14.676117841512582], + [-43.288314150490606, -14.676145955986536], + [-43.28368894039827, -14.673942973344248], + [-43.2806741906362, -14.666234696159673], + [-43.271599274279055, -14.6660869539927], + [-43.26607247868704, -14.661515340865874], + [-43.266071774357464, -14.661515621795624], + [-43.26286754359091, -14.662793629822797], + [-43.26138065252287, -14.663386652582462], + [-43.245044981016186, -14.656544942804283], + [-43.23484711378245, -14.656823767592789], + [-43.22893518486058, -14.660548660223016], + [-43.207654932923134, -14.658388656596852], + [-43.198685030086416, -14.649659042709565], + [-43.19067344032794, -14.651600418540067], + [-43.181250260227934, -14.660946403040402], + [-43.177825875217366, -14.659496622846193], + [-43.17634044161646, -14.650578077942521], + [-43.17126686626297, -14.6538021702548], + [-43.151488115311025, -14.666368428288022], + [-43.15148743630582, -14.666368356922984], + [-43.140317251598695, -14.665194080008568], + [-43.132986421622874, -14.66806899926279], + [-43.127066605591594, -14.666379247908067], + [-43.11629506230254, -14.67888901821404], + [-43.11112662428555, -14.679043865266708], + [-43.1111258101802, -14.679043889648002], + [-43.1082845232353, -14.673702674170622], + [-43.108018236842035, -14.673202086638643], + [-43.101098803579276, -14.67552962499772], + [-43.09150703792508, -14.683356869104067], + [-43.08365553297724, -14.698228743346485], + [-43.079324264019164, -14.690413961294025], + [-43.07335103730536, -14.689113001217164], + [-43.072264471111225, -14.688876332173153], + [-43.06704507870209, -14.681529317022827], + [-43.066380611484064, -14.680593962721773], + [-43.05566296170175, -14.6909748498485], + [-43.03665955399721, -14.683095758510994], + [-43.02620936217797, -14.687392944456885], + [-43.026209374220976, -14.687393069850604], + [-43.026803913544285, -14.693583813135636], + [-43.026803894926005, -14.693583822395725], + [-43.010622608539414, -14.701630794493472], + [-43.008780795723084, -14.700382791622856], + [-43.002793015057236, -14.696325353918038], + [-43.002792533884886, -14.696325027857098], + [-42.99299303823588, -14.69966371155125], + [-42.98535305040469, -14.702266228831478], + [-42.97815418568082, -14.698822603474635], + [-42.97731733484438, -14.698422272963468], + [-42.952680361243026, -14.70843754060905], + [-42.93887252985437, -14.70806490498304], + [-42.938872518654186, -14.708065037559217], + [-42.937404226801135, -14.720482075183424], + [-42.924967363806836, -14.733904872369306], + [-42.924967384683214, -14.733904975562172], + [-42.92527904699385, -14.735445540288206], + [-42.92704515953584, -14.74417567691765], + [-42.92704530005911, -14.744176371552939], + [-42.920934064752714, -14.746202220203498], + [-42.91695976219561, -14.747519558630144], + [-42.916959341909816, -14.747519697934518], + [-42.91339871275605, -14.745270635103903], + [-42.91219024312746, -14.744507290808489], + [-42.90587721617682, -14.76108103848935], + [-42.90262394002242, -14.76141649032865], + [-42.899958682117145, -14.755842679533844], + [-42.896152239762884, -14.763018948655324], + [-42.88805623269855, -14.766928146530187], + [-42.88458412429458, -14.767628139731587], + [-42.88079281036653, -14.769325669670483], + [-42.87659120345716, -14.767883780716943], + [-42.872073284534125, -14.764730471416563], + [-42.86843158499796, -14.767060775750387], + [-42.86718739919465, -14.771731768264052], + [-42.867187427875244, -14.771731767882258], + [-42.87181523483613, -14.771670113453201], + [-42.8723837805847, -14.775398377413797], + [-42.87238375516692, -14.775398388745028], + [-42.86065484855054, -14.780626618796697], + [-42.84980033796505, -14.795081981930243], + [-42.842380487420755, -14.796102706267375], + [-42.83646122526432, -14.806520336849935], + [-42.809660385025104, -14.826207440660488], + [-42.8086847607306, -14.827366222173666], + [-42.80690570517479, -14.830467145853618], + [-42.79098520078263, -14.839414843236685], + [-42.75933499515003, -14.845983883032739], + [-42.75365518690112, -14.847801324123479], + [-42.74872610891406, -14.864272731025947], + [-42.74865175265751, -14.864430911476969], + [-42.73593346273938, -14.877459770808661], + [-42.729644601614105, -14.878603353011696], + [-42.72573678905195, -14.879313855704803], + [-42.72335342507845, -14.885649179942355], + [-42.718543714427156, -14.885471846695616], + [-42.71769495251932, -14.885440542481735], + [-42.71362973930742, -14.884295761337047], + [-42.71362950852754, -14.884295696346356], + [-42.71487612371235, -14.880114295872733], + [-42.714876166056484, -14.880114153836328], + [-42.7041573065842, -14.882864311113623], + [-42.698775049754424, -14.890398313279686], + [-42.69877508020555, -14.89039839379224], + [-42.700355847387954, -14.894577910178247], + [-42.70035580637718, -14.894577953272885], + [-42.69279107618766, -14.902526486134088], + [-42.683714015185465, -14.905556188031428], + [-42.6798471868656, -14.903363685985816], + [-42.66379122624115, -14.916343262467766], + [-42.662701698214555, -14.9105855339515], + [-42.65968682974992, -14.910474382310616], + [-42.65690373700518, -14.91893405527723], + [-42.652545410756, -14.920757453845027], + [-42.65254548529506, -14.920757552645743], + [-42.655210227198964, -14.92428959681592], + [-42.655210150359714, -14.92428963727212], + [-42.634901282838456, -14.934980551222097], + [-42.62540380759393, -14.945055804413782], + [-42.613431672311314, -14.937762108528867], + [-42.60253810299531, -14.924713485172505], + [-42.58718424774705, -14.930270882669468], + [-42.58483545504461, -14.93699627169445], + [-42.584450264559806, -14.93737626037266], + [-42.577514330579014, -14.938922804059352], + [-42.5606803577356, -14.962333747232647], + [-42.55432362276106, -14.959335377457291], + [-42.53487748497892, -14.96662265548898], + [-42.531630381547906, -14.977521994244428], + [-42.51531750912156, -14.983088580167012], + [-42.51253682642634, -14.984946767251271], + [-42.495736748802926, -14.994895119397999], + [-42.475907005327976, -15.017077175616285], + [-42.43679616844878, -15.022752934361797], + [-42.43679622225751, -15.022753058346845], + [-42.44230107510418, -15.035436975608391], + [-42.4431553667709, -15.047795731837377], + [-42.44315536206335, -15.047795864718651], + [-42.442934866048546, -15.061356518168784], + [-42.421674449745744, -15.065569475430626], + [-42.40106467389208, -15.077282732592574], + [-42.37446656885981, -15.071370791566578], + [-42.36969454751938, -15.078379778790408], + [-42.35490273024955, -15.09823971334114], + [-42.35490241242834, -15.098240139983465], + [-42.34003694362974, -15.083309444588922], + [-42.33724345948316, -15.08050348205631], + [-42.33119743566908, -15.079998243142587], + [-42.323686177029224, -15.093596554445641], + [-42.29896777424378, -15.106008839297255], + [-42.283831384269114, -15.117347262516468], + [-42.275435024342215, -15.113326266607869], + [-42.26479353643626, -15.12521594699369], + [-42.247180737932275, -15.109261052413272], + [-42.22742841277015, -15.099304091938864], + [-42.2177439925191, -15.104450233907002], + [-42.20952434325919, -15.104488959251928], + [-42.202820635604766, -15.100114708916852], + [-42.19259670317735, -15.103156229661417], + [-42.18295679044353, -15.099683767538869], + [-42.17979838637102, -15.087864206516786], + [-42.173317585743746, -15.085991955211586], + [-42.164462080921716, -15.097433247884021], + [-42.15334526229453, -15.099396839006312], + [-42.1533452638804, -15.099396970114434], + [-42.15387033608894, -15.110598002136859], + [-42.15387032382114, -15.110598032423125], + [-42.14990468039797, -15.12038740047124], + [-42.14104348404319, -15.128881116749394], + [-42.128912763066914, -15.131749189146376], + [-42.12702155307621, -15.133610792684793], + [-42.11630429295275, -15.144158999567702], + [-42.10871723489753, -15.163270837660745], + [-42.10737820359844, -15.16664317634364], + [-42.09831870030861, -15.168361019579313], + [-42.09606657301847, -15.182480057768835], + [-42.09545819570502, -15.183049719898918], + [-42.091620129184236, -15.186643394031556], + [-42.09161929252078, -15.18664338478155], + [-42.084708228442345, -15.186566869446105], + [-42.073292839763845, -15.175740111326578], + [-42.03132229760624, -15.16657835571037], + [-42.02131470686588, -15.164373784836732], + [-41.99750228321971, -15.158928452981963], + [-41.987792714134514, -15.168367353032133], + [-41.979625244184, -15.167670006160149], + [-41.95819430994821, -15.173773843366716], + [-41.93819598364022, -15.174055373385105], + [-41.932536194120125, -15.174540363348394], + [-41.92662713527774, -15.160830061773568], + [-41.91511869939894, -15.160625691659344], + [-41.9098736734047, -15.15440720910784], + [-41.89703876849445, -15.15193824090516], + [-41.89234720181255, -15.14655394862756], + [-41.87631246394858, -15.131683144497009], + [-41.87043082101887, -15.115219264033605], + [-41.84831095827085, -15.116881332502155], + [-41.84203833363555, -15.114194818433058], + [-41.816342133048046, -15.108428388525553], + [-41.809379928613104, -15.101137888522944], + [-41.80071094925851, -15.101135734286606], + [-41.75993211457535, -15.137994265156816], + [-41.759248464436816, -15.138611959867825], + [-41.70158340064319, -15.190672943408758], + [-41.65134172000743, -15.235975182977517], + [-41.46431089852943, -15.401878072936348], + [-41.38763002946518, -15.471757628306806], + [-41.36256009989354, -15.494714601284633], + [-41.35804688293985, -15.498843599020839], + [-41.358046870482916, -15.49884373082139], + [-41.35052417147257, -15.557794289359721], + [-41.350524156306754, -15.557794420896748], + [-41.34231649896023, -15.637429835648756], + [-41.34231648535229, -15.63742996743453], + [-41.335579288714214, -15.702572658554296], + [-41.335579275066635, -15.702572790334873], + [-41.33395120875584, -15.718287075663103], + [-41.33395119509574, -15.718287207441954], + [-41.33260056406727, -15.731310412555441], + [-41.33260055039883, -15.731310544333114], + [-41.33121030335806, -15.744712042808587], + [-41.328177116518305, -15.741859334796372], + [-41.30473602414056, -15.743472139608327], + [-41.2929522743556, -15.739044288640743], + [-41.28195913571573, -15.740809334343657], + [-41.26856648687886, -15.748742842701958], + [-41.253503361186695, -15.746964616568663], + [-41.23739548444438, -15.737550350095303], + [-41.21540164598469, -15.737204968633149], + [-41.19977861801907, -15.74895879718922], + [-41.19002278774915, -15.751832618748082], + [-41.16945876350459, -15.760560216298108], + [-41.156290232112205, -15.761415511260314], + [-41.1443549645229, -15.771933840450505], + [-41.13562354779314, -15.76618193841208], + [-41.12864089668343, -15.746808986713573], + [-41.11551317187575, -15.742908663082137], + [-41.10984462717731, -15.741212654434232], + [-41.10909897220474, -15.741003257633928], + [-41.09290097474372, -15.738720938433955], + [-41.07756434705918, -15.719327587303795], + [-41.0534270263233, -15.725154250766911], + [-41.045583187387635, -15.721933045037334], + [-41.03627979193697, -15.713856338551887], + [-41.007969990538065, -15.714350463678798], + [-41.003913360237036, -15.711886353824228], + [-40.98548244030462, -15.693359172664286], + [-40.97961810573827, -15.691701438474214], + [-40.97497365370963, -15.669123854709557], + [-40.9631326843913, -15.648440624285744], + [-40.94920920565948, -15.656284270278995], + [-40.93599071352329, -15.65668294265359], + [-40.93042276128957, -15.661083083519674], + [-40.92654109342858, -15.656094942819925], + [-40.912853421592146, -15.662424962713233], + [-40.907095523156265, -15.675249627560937], + [-40.90709554187716, -15.675249698876275], + [-40.90868281177822, -15.681296283473849], + [-40.908682583998086, -15.68129667848488], + [-40.90257779188114, -15.691882427302414], + [-40.89204089222225, -15.690641401985733], + [-40.881565133753796, -15.694511099629104], + [-40.85545809322832, -15.687197506761757], + [-40.848840702483294, -15.681350136757088], + [-40.842041796559506, -15.683265119175623], + [-40.83956493746482, -15.674982600701627], + [-40.83145817599148, -15.670816050440127], + [-40.83236704585228, -15.654160552918183], + [-40.83236705375522, -15.65416042083948], + [-40.82932008095898, -15.648301460387213], + [-40.81685267544866, -15.647611687360293], + [-40.81561883199049, -15.648305273589127], + [-40.79162979424505, -15.668472117781505], + [-40.78034633528593, -15.680238697107907], + [-40.78034637380374, -15.680238779942961], + [-40.78595708145666, -15.69230476183211], + [-40.785957054424365, -15.69230485432478], + [-40.783294026469626, -15.701415663719022], + [-40.767672981399805, -15.714119936291253], + [-40.74909558228803, -15.706994709462828], + [-40.73987039068182, -15.70368739246519], + [-40.737534833105855, -15.697817601344841], + [-40.737534809072635, -15.69781754094354], + [-40.743823594951095, -15.684055834360137], + [-40.74382364166788, -15.684055732116658], + [-40.74057808994978, -15.681517332021595], + [-40.73217075464619, -15.674940233444117], + [-40.72046054981439, -15.672944609452124], + [-40.70721988502489, -15.666445781772266], + [-40.70064750557771, -15.668027501063763], + [-40.69634386388386, -15.67179804294759], + [-40.681904643761726, -15.694466806376862], + [-40.68190465310081, -15.694466909993773], + [-40.682318797520075, -15.699062099875205], + [-40.68231877759387, -15.69906210752703], + [-40.66120936050482, -15.707166615609818], + [-40.64495701447179, -15.728900208281836], + [-40.63753008113405, -15.730323102003], + [-40.633417980933146, -15.718148504758567], + [-40.62939932060137, -15.715753571996277], + [-40.614165048907005, -15.7351509836103], + [-40.606612335356374, -15.736797239836212], + [-40.601039432235666, -15.74345103435469], + [-40.601039417523204, -15.74345116539665], + [-40.599819887377905, -15.751147278037115], + [-40.6039605843133, -15.759334009852461], + [-40.603960517758566, -15.759334027604629], + [-40.59262487864102, -15.762357183358723], + [-40.592624880093354, -15.762357312535855], + [-40.59311080537232, -15.771787421598264], + [-40.583724195401075, -15.772946318859246], + [-40.5674285432334, -15.77596293767082], + [-40.56742897492921, -15.775963856453629], + [-40.573138411283615, -15.788115095683825], + [-40.57313837014887, -15.788115158876074], + [-40.56348372066893, -15.802944800914666], + [-40.55287611799514, -15.803761843406159], + [-40.53890000719461, -15.794856038297112], + [-40.51829274612595, -15.797551117167952], + [-40.519148296215164, -15.780918017430208], + [-40.51914830404562, -15.78091788550322], + [-40.50631993108706, -15.766942465725934], + [-40.49467463446721, -15.765920047035557], + [-40.48413659341599, -15.77583749173826], + [-40.475527233852766, -15.77135254533952], + [-40.46144071266444, -15.753272841995168], + [-40.451631617049756, -15.75971442461066], + [-40.43248258679023, -15.778694227882127], + [-40.42504624586361, -15.805749262647254], + [-40.41875551595985, -15.808471024475768], + [-40.41459352243022, -15.80658191320027], + [-40.40217858667675, -15.816743046936494], + [-40.40142973877121, -15.812958516475302], + [-40.397345423064536, -15.81390019000644], + [-40.39228865317506, -15.819916013423754], + [-40.38639673796099, -15.816743508454653], + [-40.38251467559247, -15.814537476427658], + [-40.37687315222948, -15.823563555396209], + [-40.37150723299281, -15.81441258881085], + [-40.366396329656475, -15.81749559411287], + [-40.35673292917862, -15.81305582995446], + [-40.3470955326686, -15.81732793422707], + [-40.33923772819759, -15.816800802589954], + [-40.33923774794096, -15.816800936299567], + [-40.33995494849192, -15.821658232145381], + [-40.339954922709005, -15.821658250371671], + [-40.33611736638277, -15.824370978728084], + [-40.32753718721579, -15.818270237496954], + [-40.32410680987912, -15.819762086994457], + [-40.32322753742711, -15.819679825708631], + [-40.314279939161615, -15.8189472094222], + [-40.31156431830333, -15.815632756209391], + [-40.29441935874754, -15.816653492638352], + [-40.28267931539614, -15.80801320439013], + [-40.275591328593876, -15.817524052330517], + [-40.27117664498532, -15.817353286679554], + [-40.26892508464376, -15.812782361453225], + [-40.26302784404816, -15.813115434893177], + [-40.262596800426586, -15.80886943926501], + [-40.25570285569452, -15.81055734928781], + [-40.236013152379584, -15.803654171102838], + [-40.23112561381983, -15.803888412249085], + [-40.228130459195356, -15.816221554444011], + [-40.22379238703641, -15.820538924607314], + [-40.22379238654839, -15.820539047762903], + [-40.2240161080212, -15.827515120892288], + [-40.218269072715216, -15.826639880726665], + [-40.21826907530748, -15.826640014221644], + [-40.21884532525317, -15.835819523718099], + [-40.21884519206802, -15.83581952333869], + [-40.215490905446444, -15.835809940732696], + [-40.213011613494935, -15.835802823416337], + [-40.21301158412735, -15.835802823331875], + [-40.212816772372264, -15.842339292623558], + [-40.205849522232306, -15.846152277500076], + [-40.20584953680502, -15.846152396242713], + [-40.20687705032366, -15.854525474195356], + [-40.20687702596178, -15.854525481713058], + [-40.19918068020554, -15.856900257393194], + [-40.19918069993629, -15.856900380192537], + [-40.20008855748225, -15.862550839061688], + [-40.20008852370775, -15.862550817388351], + [-40.192673215822694, -15.857792191784196], + [-40.19267270386949, -15.857792540746196], + [-40.17736561848183, -15.868224809658624], + [-40.17398091403647, -15.870531194474838], + [-40.166119107998746, -15.868418294285076], + [-40.166119102727194, -15.868418426008862], + [-40.16584787200101, -15.894108549953536], + [-40.17428514795824, -15.898290493879232], + [-40.17532735788613, -15.904100075784699], + [-40.175327329001185, -15.904100097593956], + [-40.170729897018575, -15.907571185457638], + [-40.16687319986834, -15.905059121659734], + [-40.16475966007019, -15.910271268765865], + [-40.159841101198396, -15.908505720248357], + [-40.156476128475184, -15.899576470903416], + [-40.149315050626385, -15.905408410314225], + [-40.14605659989632, -15.899437818884511], + [-40.14058737191988, -15.898929347083788], + [-40.13742019270297, -15.906315122303125], + [-40.12825088840864, -15.90748431385732], + [-40.11706766125614, -15.90353985645025], + [-40.11301444982625, -15.911332818232639], + [-40.11186706160766, -15.911446692117847], + [-40.10536527942651, -15.912091839689147], + [-40.0966434713288, -15.907443081045072], + [-40.09686329689829, -15.90024540913308], + [-40.09686330352117, -15.900245277411502], + [-40.09377555045088, -15.898125575547494], + [-40.08501226294668, -15.897161575755371], + [-40.0817398468417, -15.904856724989028], + [-40.08173987372726, -15.904856771696869], + [-40.08678451720451, -15.913620595329089], + [-40.086784475389756, -15.913620670375767], + [-40.0809235106585, -15.924138525236787], + [-40.07486256005494, -15.92009418706975], + [-40.073071541746145, -15.912067165746416], + [-40.06606193821594, -15.909927154430722], + [-40.06606199005901, -15.909927304713019], + [-40.066903881343656, -15.912367772622693], + [-40.071674859802954, -15.926197851935644], + [-40.07167514277551, -15.926198672214719], + [-40.06715498834744, -15.925195797977965], + [-40.066357328408266, -15.925018813675722], + [-40.06635736843502, -15.9250189562329], + [-40.068866329298295, -15.933954820253984], + [-40.07692229106111, -15.93437627205853], + [-40.07692233316871, -15.93437641627241], + [-40.07874568883035, -15.940621238321192], + [-40.07884593508094, -15.940964574316677], + [-40.07884588169762, -15.940964554758157], + [-40.07070413007541, -15.937981427294002], + [-40.06614904175086, -15.939805642935465], + [-40.06614903757674, -15.939805774532187], + [-40.06622289229618, -15.950414731669136], + [-40.05914929590304, -15.953219509967266], + [-40.05914945163667, -15.953219576168037], + [-40.06464189590205, -15.955554281810757], + [-40.06621047971032, -15.960248941493036], + [-40.06621043716313, -15.960248973553002], + [-40.06117590828064, -15.964042386751235], + [-40.04578951452411, -15.962397000211471], + [-40.04312391488057, -15.968364706106035], + [-40.04312395543859, -15.96836472611076], + [-40.04653827702214, -15.970048765534273], + [-40.0465381906897, -15.970048859158057], + [-40.04301079496587, -15.973874015472854], + [-40.034412925564716, -15.973559640190933], + [-40.03148001900062, -15.973315994503432], + [-40.03148005020016, -15.973316129479478], + [-40.03270370575897, -15.978609998543078], + [-40.032703669042654, -15.978610011593709], + [-40.02728775546037, -15.980534958713314], + [-40.02728777659885, -15.980535079497553], + [-40.02817768882704, -15.98562010591189], + [-40.02817766075956, -15.985620130389263], + [-40.02259600846492, -15.990487560103226], + [-40.02134128579357, -15.984845292754088], + [-40.01370696876063, -15.984047070342426], + [-40.008447127978066, -15.994958664801485], + [-40.00098556171516, -15.994716206396534], + [-40.00098562660334, -15.994716340403432], + [-40.00445382433677, -16.00187877735202], + [-40.00445277368615, -16.001878624410974], + [-39.99509483156125, -16.000516207896975], + [-39.99206690369461, -15.99504191179078], + [-39.98001427720506, -15.997682986731688], + [-39.980014276961825, -15.997683116316551], + [-39.980018212213594, -15.997800340899794], + [-39.980279696257526, -16.005601397191533], + [-39.966610712792814, -16.00446934017503], + [-39.96397683141913, -16.00537228869755], + [-39.96460251545033, -15.998888349403513], + [-39.96460252646782, -15.998888217978802], + [-39.95381102901983, -15.991481262274679], + [-39.930500612138054, -15.995134677378944], + [-39.923781525685, -15.995337865222291], + [-39.9151565950714, -16.000025821200353], + [-39.915156640075665, -16.00002592317699], + [-39.91828914352326, -16.007123915322484], + [-39.935703222182724, -16.023788364772155], + [-39.93570314832381, -16.023788434652925], + [-39.93191630660452, -16.027371170701095], + [-39.9222155599079, -16.028665844760052], + [-39.89946067206429, -16.049648009969175], + [-39.899460681982994, -16.049648123656617], + [-39.9002606047379, -16.05881799349342], + [-39.90026058470355, -16.058818003661088], + [-39.8820209484499, -16.068073251756182], + [-39.876657371747754, -16.0792929429092], + [-39.87665737790609, -16.079293041731137], + [-39.8774274480234, -16.09165379631206], + [-39.8740026058248, -16.092916604523136], + [-39.86662438078407, -16.09563680210088], + [-39.86484344644053, -16.10372867146613], + [-39.86480608160478, -16.10389842395419], + [-39.86361220413111, -16.10539358144573], + [-39.856846843089286, -16.113865357309635], + [-39.85684661970676, -16.113865637011575], + [-39.860220095650405, -16.123130756389013], + [-39.860815436443254, -16.124765832675838], + [-39.872409283707455, -16.136820805244135], + [-39.88336818258796, -16.144929199788216], + [-39.89045195596957, -16.13844759248177], + [-39.89697392545153, -16.141643768708132], + [-39.896973882597685, -16.14164388389828], + [-39.89370922420233, -16.150418389827752], + [-39.88729415838917, -16.151016027978013], + [-39.88295509254144, -16.163819792256373], + [-39.88295508874488, -16.163819923703844], + [-39.88340808362005, -16.194732448447855], + [-39.8984202888182, -16.201406556926788], + [-39.90219625072547, -16.208542794078582], + [-39.912650444621775, -16.210345253163286], + [-39.91265043560326, -16.21034538473625], + [-39.91225797463539, -16.21641854217047], + [-39.93653807961018, -16.245819870465876], + [-39.9365380277692, -16.245819950804695], + [-39.928557550476604, -16.258185922491712], + [-39.920118772909206, -16.263778314622787], + [-39.92011875710009, -16.263778445175863], + [-39.91669540038613, -16.283881581234834], + [-39.93267556978133, -16.28364237817823], + [-39.93373202361931, -16.288729839541432], + [-39.94112351469553, -16.29311137577977], + [-39.954261512760354, -16.300063620182044], + [-39.95893159066409, -16.317065375716837], + [-39.96051251635291, -16.3219212322179], + [-39.96668931594696, -16.327247667110736], + [-39.97065409445755, -16.326967802748044], + [-39.972268206075576, -16.317757173311392], + [-39.97942442627759, -16.316873658064996], + [-39.97942445863636, -16.31687365406931], + [-39.97840598001856, -16.311175511453715], + [-39.97840595578259, -16.311175375862717], + [-39.98480574442013, -16.31193558128739], + [-39.9917223571376, -16.313743456673308], + [-39.996696237869195, -16.332179454462466], + [-40.01125808959413, -16.340163248238117], + [-40.011477399664855, -16.346305893417355], + [-40.017446536349354, -16.34811705448736], + [-40.02523212913518, -16.35740040579756], + [-40.032514787188944, -16.392035878284247], + [-40.04190047491414, -16.40571718719605], + [-40.04190046097922, -16.405717318235965], + [-40.04103928758972, -16.411855964271876], + [-40.05326867981055, -16.432728138024316], + [-40.06273153958028, -16.432023834643942], + [-40.06273150011117, -16.432024098499436], + [-40.061525969012244, -16.440082125737337], + [-40.06569192785397, -16.457062482189162], + [-40.06581340162699, -16.45755762205629], + [-40.0839967080349, -16.463963822951506], + [-40.088373534486706, -16.452191757467933], + [-40.09650452313493, -16.448809003053213], + [-40.096504566630344, -16.448808984956244], + [-40.09586724214629, -16.446676863668593], + [-40.092255890707236, -16.434595454604533], + [-40.09225602962534, -16.434594992326677], + [-40.09546841177965, -16.42390383220354], + [-40.096035286397225, -16.422016938744555], + [-40.09965572640056, -16.423249610538573], + [-40.10331794057728, -16.43704786770466], + [-40.11328410105171, -16.452832065533215], + [-40.11580877880825, -16.465630162119762], + [-40.12073015620408, -16.466602424242165], + [-40.136118557624215, -16.48969788793343], + [-40.15849675156888, -16.513789853608834], + [-40.162671876460124, -16.524375684679978], + [-40.167862087493276, -16.521159328029242], + [-40.171225637882536, -16.52418474689384], + [-40.17122562617303, -16.52418487836161], + [-40.170229852287584, -16.533609619403382], + [-40.17487076218807, -16.537926046237168], + [-40.17487063941107, -16.537926072619598], + [-40.16948396928115, -16.53908347618497], + [-40.16802081208633, -16.540051221092444], + [-40.161563642142234, -16.54432172790103], + [-40.16136941079494, -16.558599529226164], + [-40.15509870195033, -16.562869517820495], + [-40.15509875813359, -16.562869604706737], + [-40.16100418237536, -16.57200199152142], + [-40.16100414347978, -16.572002077876807], + [-40.159288815674955, -16.57581027667713], + [-40.159288826649046, -16.57581036268905], + [-40.15986928877981, -16.580360024978987], + [-40.17173766118157, -16.577199787863574], + [-40.17413808165956, -16.582648161798147], + [-40.190198849685444, -16.57100214025202], + [-40.19834741087838, -16.570328359145325], + [-40.20185283667031, -16.575147892246182], + [-40.21203825416576, -16.573159493376693], + [-40.23494833036901, -16.558602110556507], + [-40.23667861049037, -16.564147282612836], + [-40.23667879389705, -16.564147870392155], + [-40.24400730929526, -16.566446879053615], + [-40.24586921436083, -16.56703092994624], + [-40.247039431351816, -16.573598586499674], + [-40.254702084751926, -16.569471698179843], + [-40.26148146165261, -16.574662513148915], + [-40.27574902402186, -16.574060012452968], + [-40.27584688869947, -16.57425247233871], + [-40.28765211873732, -16.597606463427372], + [-40.28765207982094, -16.597606537016617], + [-40.28752251242688, -16.597851542932602], + [-40.28384182783879, -16.6048110499413], + [-40.29208398131545, -16.622123326299892], + [-40.29826119362847, -16.6525016130368], + [-40.31316769691078, -16.678679258202994], + [-40.31316768410664, -16.678679389586964], + [-40.31105961452157, -16.695874056296777], + [-40.30703193280075, -16.696801822229602], + [-40.30236930892214, -16.708213399675884], + [-40.302369337438755, -16.708213438203707], + [-40.31059310901233, -16.71932387510444], + [-40.31059310261497, -16.71932400692891], + [-40.31017973839003, -16.73625045459739], + [-40.32014291953452, -16.746316507870386], + [-40.3358500254404, -16.779748745007087], + [-40.34550629641111, -16.787302025483434], + [-40.3455061379318, -16.787302040799513], + [-40.335490633812924, -16.7882697076687], + [-40.32361835490784, -16.80130359202694], + [-40.30377270155823, -16.79899725037787], + [-40.29467290602461, -16.796659767963437], + [-40.28281223210582, -16.804023061245754], + [-40.26914341892829, -16.795793849537898], + [-40.2578160618417, -16.806575431563157], + [-40.257816067364004, -16.806575548830317], + [-40.2584836140443, -16.8207569354347], + [-40.25848349673795, -16.8207570285179], + [-40.25353907247192, -16.82468026026788], + [-40.253539057930155, -16.824680391317127], + [-40.25142378137272, -16.838890874903626], + [-40.24759616705172, -16.844741242716314], + [-40.246920682812586, -16.84577362469317], + [-40.24692073599235, -16.845773660299386], + [-40.25183931623899, -16.84906678696896], + [-40.252602246326965, -16.860242254732032], + [-40.25461776753819, -16.860258216400073], + [-40.26603927960159, -16.860348282857238], + [-40.26603939688932, -16.860348283778766], + [-40.26511359854944, -16.864355273226284], + [-40.26495021729167, -16.865062367744574], + [-40.26495023501818, -16.865062380768226], + [-40.27198084814426, -16.87022758405076], + [-40.27543738529448, -16.88661689275471], + [-40.281650318305694, -16.901217270492147], + [-40.29347272900155, -16.904662226063735], + [-40.3027868953007, -16.8922772983649], + [-40.31042526728054, -16.896669458612678], + [-40.31683490490965, -16.905327194794996], + [-40.32294277397641, -16.904076940492523], + [-40.323489015860396, -16.90476047591797], + [-40.327158889182584, -16.90935265123581], + [-40.32715934912925, -16.90935226009455], + [-40.33989674517681, -16.898518891137865], + [-40.34875755542918, -16.899340192930865], + [-40.34831473863987, -16.88807791072619], + [-40.3483147386905, -16.88807778628074], + [-40.3664974997643, -16.87420600611072], + [-40.37137053829721, -16.87493714909963], + [-40.37591318546802, -16.88590592260684], + [-40.39362167591639, -16.886722751163294], + [-40.401770820228, -16.890702736012326], + [-40.40757458263444, -16.89872149884424], + [-40.41761884018927, -16.899300722867135], + [-40.43469327461314, -16.887573616323767], + [-40.43697795040775, -16.893189235929878], + [-40.448948544042466, -16.892398297368114], + [-40.4541172420953, -16.88162612191578], + [-40.48018397729081, -16.876842196886237], + [-40.49121676896959, -16.88452351970453], + [-40.492704348644054, -16.904142605378404], + [-40.50470431265538, -16.929261772797908], + [-40.506238408551894, -16.934170267147948], + [-40.51633768167113, -16.963607594000393], + [-40.53503408442565, -16.980846011260905], + [-40.545453992208195, -16.98423223504452], + [-40.555588501207566, -17.013433212058743], + [-40.55558846904085, -17.01343327887294], + [-40.55259026305485, -17.019660535725723], + [-40.552590288420674, -17.01966059500408], + [-40.5699383656891, -17.060199404931076], + [-40.5708033585969, -17.06236392711338], + [-40.570803352555735, -17.06236405906222], + [-40.57061700358171, -17.072278474984845], + [-40.57061699672941, -17.072278606870007], + [-40.56986699726392, -17.081083276440182], + [-40.56142638684531, -17.08246376881072], + [-40.556618061611466, -17.096842628846336], + [-40.55661806777764, -17.096842713484385], + [-40.55720439334429, -17.10489179139775], + [-40.56209325839002, -17.11179155148055], + [-40.56292517827823, -17.126358550178995], + [-40.57122441567259, -17.140622307330368], + [-40.57317204470513, -17.141759088249348], + [-40.57811245696481, -17.14464256929356], + [-40.57861155477693, -17.149615388890037], + [-40.57862411139264, -17.149740504891632], + [-40.57862409800724, -17.14974063633021], + [-40.57461906891342, -17.18036547718331], + [-40.57253730831448, -17.182399878477153], + [-40.55419933357399, -17.188796110536234], + [-40.55419931745287, -17.188796241380466], + [-40.552394470573276, -17.19918372867566], + [-40.5615544432839, -17.20924260163305], + [-40.56273079677569, -17.217542967331536], + [-40.56273077693917, -17.217543027696752], + [-40.55840481728261, -17.23070558047122], + [-40.558404988797555, -17.23070584316929], + [-40.563371099357, -17.238311919945986], + [-40.56447523639525, -17.24000296176273], + [-40.564475439727836, -17.240003022995904], + [-40.56992035061882, -17.241642669894958], + [-40.569920330750236, -17.241642798721557], + [-40.56861727722635, -17.24710041989055], + [-40.56861729144833, -17.24710045152286], + [-40.57126405736764, -17.25298728591102], + [-40.5712640066396, -17.252987326580953], + [-40.5633624342929, -17.259321707760403], + [-40.56336242257308, -17.259321839448656], + [-40.56198386348754, -17.272537082954067], + [-40.54776151186187, -17.283736111190166], + [-40.54776159264111, -17.283736171785524], + [-40.54792408402998, -17.283858062195428], + [-40.57225441040183, -17.2947957718492], + [-40.582228314161426, -17.311147659482053], + [-40.59052651615877, -17.31300752026443], + [-40.59485182258118, -17.323594165242753], + [-40.60482327847161, -17.323540756988184], + [-40.609035171568266, -17.326997711347673], + [-40.60903512630085, -17.326997814087537], + [-40.603013783801785, -17.340662065234802], + [-40.5927372828464, -17.345502278840904], + [-40.592737366399156, -17.345502366791337], + [-40.60548904926571, -17.358924351851787], + [-40.605488975026745, -17.358924415884456], + [-40.59894734849246, -17.364566322665983], + [-40.597718524978745, -17.376917803760467], + [-40.601632823737276, -17.382563360033647], + [-40.60163278574886, -17.382563451237992], + [-40.59867453320328, -17.389665235559953], + [-40.59867456864326, -17.38966525890936], + [-40.623484990030555, -17.406009252089156], + [-40.623484893380876, -17.406009326775067], + [-40.60774234230553, -17.418172438044383], + [-40.59608446017155, -17.420596778523464], + [-40.57748090557768, -17.413646761439587], + [-40.55416960877987, -17.43559623751275], + [-40.51968510386254, -17.44684154055923], + [-40.51968511750504, -17.446841664749297], + [-40.51987517850835, -17.44857185072197], + [-40.520952158000924, -17.458376968392876], + [-40.52095222495437, -17.458377578009586], + [-40.50784222684834, -17.473046345881894], + [-40.505528525637835, -17.47563466315955], + [-40.4978664692884, -17.479163340019202], + [-40.49545027333342, -17.486759488113893], + [-40.48846551212563, -17.488663831122643], + [-40.483011303456024, -17.4885408388856], + [-40.4830113046121, -17.488540970969932], + [-40.483893202193386, -17.505964167749614], + [-40.489073568206095, -17.519817207706538], + [-40.48907353727756, -17.51981728341212], + [-40.486187289607834, -17.526881595985575], + [-40.484540732208714, -17.52792034677036], + [-40.4752100851189, -17.53380606689298], + [-40.467737120985, -17.551179610096764], + [-40.46641820883604, -17.554245230404618], + [-40.46042628447225, -17.56852928634744], + [-40.44511166093188, -17.578794607976825], + [-40.432091611629005, -17.567590527701373], + [-40.411927291243806, -17.567750538225464], + [-40.411927331889764, -17.567750669621272], + [-40.41453651093522, -17.576185320917986], + [-40.41453648313512, -17.57618539525087], + [-40.4104554063872, -17.587096232845262], + [-40.41045543302875, -17.587096266598586], + [-40.41202834130719, -17.589089037128957], + [-40.41595961240765, -17.58640497185248], + [-40.41822641209755, -17.59912416207504], + [-40.418226390092194, -17.599124226705946], + [-40.41448109833234, -17.61012299557484], + [-40.408773923816995, -17.609166371062482], + [-40.403484956771585, -17.611544968505587], + [-40.399822020737794, -17.619907090630846], + [-40.396823781757774, -17.625631771595135], + [-40.37994652252493, -17.611335978489972], + [-40.371974745376995, -17.612484638606404], + [-40.361458014176385, -17.63669715096685], + [-40.354670583313286, -17.644298561951224], + [-40.348567971272864, -17.630802454322776], + [-40.350475511939194, -17.616639922809124], + [-40.350475525795346, -17.616639791513396], + [-40.347425486535016, -17.613196130520297], + [-40.343851465952426, -17.616467139804605], + [-40.33646237764055, -17.624961357111957], + [-40.33406167460072, -17.632174887998097], + [-40.332228126997755, -17.63390910518134], + [-40.321837834136566, -17.643735185379004], + [-40.32183755683736, -17.643735447590167], + [-40.32525769280617, -17.651268252002733], + [-40.32586127204667, -17.652597604587722], + [-40.32586124180357, -17.65259769204369], + [-40.322837489224206, -17.661340820614544], + [-40.307733648514194, -17.665693038789673], + [-40.30642866656743, -17.667028331138994], + [-40.29903352680577, -17.674594473671256], + [-40.29903349929202, -17.674594501818834], + [-40.29812356756552, -17.696285532780024], + [-40.29552773187332, -17.699519298958567], + [-40.2862552130592, -17.70074824065939], + [-40.28037503753556, -17.722812017411847], + [-40.277620956895426, -17.723984104727407], + [-40.27033644209247, -17.727083939872262], + [-40.2703360861479, -17.727083754426403], + [-40.255918729814454, -17.719571706495888], + [-40.249227436640325, -17.73010156018972], + [-40.249021894824864, -17.73031347966511], + [-40.23672619458099, -17.7356661919285], + [-40.22395672349392, -17.734092811352642], + [-40.21367117102569, -17.753712582580906], + [-40.21367119488124, -17.75371264916727], + [-40.21745113482712, -17.764263241618885], + [-40.21745111176937, -17.76426333764944], + [-40.21440005292364, -17.77696824311553], + [-40.21440006254138, -17.776968291904456], + [-40.21495344440334, -17.779775506440917], + [-40.21808927709797, -17.79568391218498], + [-40.21808939885698, -17.795684529909124], + [-40.20656546912605, -17.80390372658846], + [-40.204531775434155, -17.80535401599239], + [-40.20175452466417, -17.8158801790517], + [-40.201754534652224, -17.815880233745812], + [-40.2041635484545, -17.829072485935963], + [-40.20416351342053, -17.829072482340035], + [-40.19594745875491, -17.82822900756928], + [-40.18642673707897, -17.832553509542063], + [-40.1770670044065, -17.84697842660694], + [-40.17568688345431, -17.849152044530022], + [-40.17439397469897, -17.85187530287367], + [-40.17439400845029, -17.851875341608988], + [-40.17511323492593, -17.85270077187994], + [-40.21214825220389, -17.89521648266682], + [-40.212671528314004, -17.895817543376854], + [-40.26356083701044, -17.922046454476433], + [-40.26460064931601, -17.933902138325035], + [-40.26460062890507, -17.933902155338284], + [-40.242170593227, -17.952593939742258], + [-40.22683667877848, -17.958282438536465], + [-40.221977166150175, -17.98067949625056], + [-40.25536826701607, -17.97182192496589], + [-40.26631406766867, -17.962044379421034], + [-40.27568661753967, -17.96258465926135], + [-40.2910075910153, -17.951872288738837], + [-40.29112176105295, -17.94691022476557], + [-40.306204441281686, -17.947382844922284], + [-40.312279265670675, -17.93966423799476], + [-40.32344828192647, -17.93896712848881], + [-40.333968264305646, -17.92738288709988], + [-40.347741727457084, -17.923605862106637], + [-40.355624437614594, -17.930477836770148], + [-40.36784097137118, -17.92265560804941], + [-40.3731571539021, -17.92766564397356], + [-40.38646384713712, -17.928461100847034], + [-40.39195992981156, -17.924125840632996], + [-40.403251121803955, -17.923551092394554], + [-40.417430551012465, -17.927057329441244], + [-40.43258867809577, -17.92135652306204], + [-40.453883250332304, -17.918833769697887], + [-40.45933285548838, -17.920474711522424], + [-40.46419806874261, -17.92822613848299], + [-40.484140716130725, -17.908667992633823], + [-40.50334390323564, -17.910702381838778], + [-40.518060065835485, -17.893977509681022], + [-40.527048649139864, -17.89196807577609], + [-40.53897355417729, -17.90081455745603], + [-40.54775007143687, -17.90754505863999], + [-40.56794058045427, -17.916052430083756], + [-40.58472219656981, -17.91818967699919], + [-40.58442252678029, -17.93578543228274], + [-40.587171594955464, -17.939043711676096], + [-40.59720296291575, -17.93605761912944], + [-40.61345839975798, -17.93975363696207], + [-40.61262259575212, -17.949530153148658], + [-40.61715943690295, -17.955390785301283], + [-40.62189392036229, -17.960588646526404], + [-40.61428294678077, -17.967518868572895], + [-40.624300859393095, -17.975942145793013], + [-40.62478472892455, -17.989110331305575], + [-40.64604046293021, -17.993583428730037], + [-40.651503957895564, -18.006887448528232], + [-40.66178432853015, -18.012933282693144], + [-40.67319572062756, -18.011063332189085], + [-40.677837954653846, -18.013261264375767], + [-40.68423269152982, -18.010198257446238], + [-40.70369259114426, -18.023748864757874], + [-40.70961841104575, -18.021011577035306], + [-40.71617507912201, -18.00463913621643], + [-40.7209366856875, -18.002952993367252], + [-40.72577790207351, -18.00123930340028], + [-40.73573597904471, -18.00422276914634], + [-40.750776285293405, -18.009930774469595], + [-40.76031945750969, -18.003983604616916], + [-40.77177697491573, -18.003410104683834], + [-40.77485632643127, -17.99663743872479], + [-40.77120829928307, -17.981083808179452], + [-40.777734023613114, -17.98232902393101], + [-40.77819490466694, -17.97619595873393], + [-40.782128701024796, -17.975269557595915], + [-40.79501154012761, -17.98176192165529], + [-40.791885103417854, -17.971505510629058], + [-40.79847709919003, -17.95696896786526], + [-40.80263221269551, -17.958516961307105], + [-40.809254410750256, -17.952344335863952], + [-40.81416970630769, -17.95893161563424], + [-40.824978935839866, -17.96372046880002], + [-40.829619973146194, -17.957646175285575], + [-40.830560842727905, -17.95420254953061], + [-40.83704786909746, -17.957210120998436], + [-40.85294996811642, -17.97735316989676], + [-40.8589470231773, -17.979413626866727], + [-40.86313918627986, -17.988338999714983], + [-40.87030994540653, -17.986116142983548], + [-40.87292679692612, -17.98082262775569], + [-40.87787178265687, -17.98174797078057], + [-40.88272451990863, -17.970573393190513], + [-40.891175099660245, -17.98305536444916], + [-40.89711301284939, -17.98175026362932], + [-40.902812805258534, -17.987299671805978], + [-40.7733118781183, -18.107583462403255], + [-40.77150023957303, -18.15594314809808], + [-40.786759311108156, -18.15865204285265], + [-40.7937209536742, -18.160173995850084], + [-40.80522518729789, -18.152990547867244], + [-40.82419610729665, -18.14930910944396], + [-40.83251297657085, -18.151173425783597], + [-40.84390730370087, -18.146593109981186], + [-40.84508370481746, -18.1498332936289], + [-40.84954753232229, -18.146765918550123], + [-40.85227653793283, -18.14626277788969], + [-40.85603461527342, -18.13983863402746], + [-40.86331254448762, -18.13915254066259], + [-40.86643578267147, -18.12993696336709], + [-40.87756264583504, -18.119449952587466], + [-40.88069731732407, -18.124160022239014], + [-40.88901827672168, -18.124036609775967], + [-40.89391757033429, -18.118908544560558], + [-40.89311677531394, -18.10789904097991], + [-40.89900561283917, -18.11253203244706], + [-40.90423897053203, -18.110202793806554], + [-40.90455463124399, -18.115949805461174], + [-40.90929058011532, -18.114850802447958], + [-40.91730644453323, -18.12076372548228], + [-40.93221666042302, -18.136503852386134], + [-40.9405196151665, -18.13647382197195], + [-40.944060931949025, -18.13038390308038], + [-40.950010746788834, -18.12930700103422], + [-40.951558174846646, -18.14247484021487], + [-40.948866150039805, -18.145719802218476], + [-40.95454423338578, -18.15451454942732], + [-40.962178515927874, -18.154191033315502], + [-40.96752372507801, -18.145235179120817], + [-40.97683304756606, -18.141382060074452], + [-40.98033053350987, -18.141384421420586], + [-40.980918403716274, -18.14468708244531], + [-40.98704094241957, -18.146794175890122], + [-40.988813331461486, -18.152963905651976], + [-40.988399597776194, -18.169815064483103], + [-40.99322345797767, -18.16625472722114], + [-41.00556443075526, -18.167616733238557], + [-41.01060099865311, -18.167419748713083], + [-41.01459579411454, -18.157599487936068], + [-41.02811062444139, -18.157692942719045], + [-41.03381988105141, -18.17213166395692], + [-41.038144436021454, -18.171108089789165], + [-41.03534079256122, -18.162815266002223], + [-41.05219315766418, -18.16530684164035], + [-41.056090551977725, -18.166641009982502], + [-41.05344726488082, -18.172692203485116], + [-41.056460232522625, -18.178860554799982], + [-41.06690341875315, -18.181094591621193], + [-41.09274010189918, -18.19542089110964], + [-41.09275847393906, -18.195580567774932], + [-41.09411938062534, -18.20870439624158], + [-41.10445342331961, -18.21329611305458], + [-41.102202211686766, -18.219223916326918], + [-41.091730052443836, -18.228064308546667], + [-41.09200222885041, -18.231322462006542], + [-41.09924514943287, -18.232389556460106], + [-41.102749793359884, -18.236985207202675], + [-41.099061414529515, -18.239124506253596], + [-41.10080743735726, -18.243761886422522], + [-41.096479146469434, -18.255596522925973], + [-41.12750368949776, -18.27693751376041], + [-41.14126902538537, -18.293327448427032], + [-41.14123379623947, -18.293835153049695], + [-41.142928796470365, -18.298201505796182], + [-41.14643260104482, -18.29947546619016], + [-41.1588050628219, -18.308770837450915], + [-41.15466653931852, -18.334722600219223], + [-41.15016490776469, -18.336371094005898], + [-41.149366743686436, -18.360751254170097], + [-41.145890293357745, -18.373880236167263], + [-41.1481073920832, -18.37916809542732], + [-41.15960397603584, -18.381475934493878], + [-41.16254551789661, -18.390780857395153], + [-41.1604531091921, -18.402815354468135], + [-41.14425992398489, -18.40525833044333], + [-41.147230970724635, -18.411465094944425], + [-41.15475176871267, -18.41444170209062], + [-41.16667409052042, -18.41523419935221], + [-41.18080661748105, -18.43582394926596], + [-41.18209738553064, -18.43927115286236], + [-41.17425242090465, -18.4447140029803], + [-41.08900649190908, -18.4509342851474], + [-41.063829519913305, -18.45335834442191], + [-41.02394435820423, -18.457190415381355], + [-41.02041691891407, -18.45910777491499], + [-41.02026492613169, -18.459419799667295], + [-41.015657235508186, -18.472439154450644], + [-41.0157399472777, -18.473999969151574], + [-41.015885703212106, -18.476770636432605], + [-41.01722273040211, -18.484091444193222], + [-41.025958228785214, -18.528185293842373], + [-41.030035873240955, -18.547817837875986], + [-41.030483887917846, -18.549972566233595], + [-41.04199481764033, -18.605417651590777], + [-41.03372312405608, -18.606627349313694], + [-41.033021283987985, -18.615612581811718], + [-41.03297119542109, -18.61877675345179], + [-41.039402068206925, -18.619938101226825], + [-41.043983391646066, -18.626695558120293], + [-41.0531135547591, -18.628737152255365], + [-41.0508984894023, -18.634168193955254], + [-41.0415646810318, -18.639767054118803], + [-41.044425595732974, -18.64829363007503], + [-41.03238821809399, -18.644597603952743], + [-41.028754168024676, -18.646743324184246], + [-41.03222992972179, -18.652651949983984], + [-41.020219052421865, -18.654966973205887], + [-41.0052335388775, -18.667290787018626], + [-40.99425617944013, -18.671207521017386], + [-40.98887200897681, -18.673230624304612], + [-40.98782776381639, -18.678149563392292], + [-40.95206856433388, -18.680842923270763], + [-40.94150482837179, -18.6893081329132], + [-40.94026637055736, -18.73557381675112], + [-40.94001153798673, -18.77029852492003], + [-40.93860667002404, -18.772462071808903], + [-40.92661834716464, -18.788192288437923], + [-40.928640694813446, -18.79294997713522], + [-40.921953622194955, -18.79726744711373], + [-40.91669309573945, -18.809976067173466], + [-40.916780193691125, -18.815555146817015], + [-40.92791946004765, -18.81971815381242], + [-40.93030985574902, -18.824523487947037], + [-40.93803467532383, -18.83171016147823], + [-40.941867773208344, -18.82606841289645], + [-40.94695682857894, -18.826014466207596], + [-40.951084707265416, -18.834722061768367], + [-40.96308682173312, -18.83615675777996], + [-40.96392061173833, -18.84118148066497], + [-41.01913733251188, -18.837313472136522], + [-41.02543784675055, -18.83719589586709], + [-41.04780628898283, -18.836777688176504], + [-41.04916968005293, -18.83675181595866], + [-41.07026135123679, -18.836354713093186], + [-41.0837135037418, -18.836595158791432], + [-41.097479585243875, -18.84232242632477], + [-41.11051236092253, -18.838948860417428], + [-41.119997201463136, -18.817671619801946], + [-41.11920962278813, -18.81014040220128], + [-41.130031610694594, -18.80745060628072], + [-41.13413579548106, -18.79605340670046], + [-41.14900457829997, -18.797523091049374], + [-41.157186355012406, -18.797502373239187], + [-41.16763693970367, -18.797474633439805], + [-41.232549089822726, -18.797290864122807], + [-41.24548207163049, -18.821970812746176], + [-41.237826715041, -18.83477661781795], + [-41.243882243451324, -18.843577927877593], + [-41.23972808859505, -18.84688192343964], + [-41.24297309284963, -18.854547787252447], + [-41.23936066286653, -18.858657884232688], + [-41.23010858888549, -18.85838190283385], + [-41.214789298340264, -18.877650805237806], + [-41.20977549988474, -18.874446505085665], + [-41.21233182796936, -18.86889772498188], + [-41.208430038462524, -18.855058449135875], + [-41.1990123952294, -18.86334562617665], + [-41.18941935848951, -18.86422803044024], + [-41.16607148667668, -18.858373607345708], + [-41.159215697913794, -18.864371034771292], + [-41.15565142866689, -18.876031489864758], + [-41.152963812027714, -18.886619957336574], + [-41.149079082761375, -18.88581409625671], + [-41.14380312182108, -18.884922831483976], + [-41.13128077265009, -18.8944207386746], + [-41.12685284440911, -18.894517219474043], + [-41.11959070635405, -18.90345997786893], + [-41.12050072534659, -18.908031397609204], + [-41.114374346572255, -18.91267572554519], + [-41.11817752140526, -18.92178066613808], + [-41.11276533887288, -18.922551704891134], + [-41.10987244501113, -18.928158412920705], + [-41.10362299760815, -18.930433420521627], + [-41.103679883840414, -18.93407089416055], + [-41.09218845653452, -18.934474149080295], + [-41.079248440972954, -18.93854849525303], + [-41.07862560034785, -18.94770049942548], + [-41.07006593702499, -18.94173587832617], + [-41.0648684750666, -18.94505051816624], + [-41.06485567660728, -18.951094048565228], + [-41.06150175097639, -18.967699873803664], + [-41.051364067065926, -18.966227143202104], + [-41.05175518602612, -18.974061098686835], + [-41.040646712559806, -18.980679653775226], + [-41.03400501752765, -18.97976130529854], + [-41.031061327989256, -18.97480654178956], + [-41.01803475062502, -18.973524324211496], + [-41.01733525566289, -18.97927289820318], + [-41.02218297151988, -18.982342366010915], + [-41.03222691417055, -18.990856811001322], + [-41.05291851636342, -19.00061658066547], + [-41.06667985674162, -19.006499529476375], + [-41.065935451094575, -19.016390334295604], + [-41.07179703558274, -19.02385671399135], + [-41.06314625593593, -19.039312256543617], + [-41.06556295907034, -19.051340668884766], + [-41.06092794745832, -19.056119641647616], + [-41.053243088097204, -19.059184350097045], + [-41.05385867861221, -19.06887252699171], + [-41.03549520975812, -19.071567487976388], + [-41.0254166128731, -19.07998461568725], + [-41.019282355429795, -19.07539231838981], + [-41.01261129319218, -19.075809791053363], + [-41.01500110537556, -19.0917553362315], + [-41.00447305865649, -19.08367189519127], + [-41.00971466314284, -19.09792564410853], + [-40.998957980008456, -19.10099857362848], + [-40.984767598000836, -19.1007255778459], + [-40.98465061119521, -19.107861291109817], + [-40.97353600450082, -19.11550487509425], + [-40.96957565010546, -19.12289893286662], + [-40.96289896100387, -19.121565670555064], + [-40.95612275547439, -19.129120517025953], + [-40.961955540772315, -19.144068910755674], + [-40.95819614525807, -19.145928972849706], + [-40.94808630937037, -19.14161373888529], + [-40.944007350453674, -19.144011612661032], + [-40.94886915312257, -19.153289832607072], + [-40.94291913994371, -19.15866819215539], + [-40.941116018949856, -19.168337070384084], + [-40.94109378181241, -19.180580286293786], + [-40.938361878993106, -19.183377670949486], + [-40.93366973020937, -19.180456939124475], + [-40.932591171765566, -19.18629332793613], + [-40.92650667476643, -19.18855388988697], + [-40.92955467297078, -19.19786571382379], + [-40.922675588495416, -19.20409553034782], + [-40.927589930330726, -19.20888155711554], + [-40.93103044360979, -19.222427736501217], + [-40.9353983920473, -19.22269998700936], + [-40.94155842678646, -19.230136888473602], + [-40.94217133526264, -19.23381815249064], + [-40.93303413926835, -19.24263628048097], + [-40.93865611662131, -19.249388027960446], + [-40.9310592702658, -19.2512276987001], + [-40.92020367972342, -19.251826233472514], + [-40.917164552672666, -19.256864614963707], + [-40.91996180850117, -19.271435652290176], + [-40.93493918962626, -19.27175830421073], + [-40.9445064008051, -19.2795515063779], + [-40.93839163596014, -19.286404287575948], + [-40.92806603556535, -19.286115904733133], + [-40.9327846454629, -19.296057798684693], + [-40.9313355860037, -19.299846157816866], + [-40.924557711173485, -19.302460609289806], + [-40.91450777866149, -19.300744732173417], + [-40.90828723789083, -19.3065241169022], + [-40.91469338971458, -19.318187949256508], + [-40.920345325161556, -19.319181403440226], + [-40.92205374277082, -19.328939103653884], + [-40.928532110713824, -19.329748872207926], + [-40.93889370401271, -19.348216515042232], + [-40.93964482362202, -19.358637166902636], + [-40.92811596239957, -19.368668573903943], + [-40.93179972808147, -19.37334076086687], + [-40.928451305124604, -19.381888346470113], + [-40.95717649345386, -19.398847749290223], + [-40.96222265116078, -19.408432437918925], + [-40.96048315688531, -19.41931924135419], + [-40.96798492642085, -19.425344013125628], + [-40.95883928104443, -19.43995474942391], + [-40.9578454216677, -19.449927919270035], + [-40.94487986396027, -19.46011899978616], + [-40.951397245376235, -19.465663182182148], + [-40.9493369033051, -19.473158848204267], + [-40.95357973437768, -19.473442950499727], + [-40.96331460315222, -19.48333303975872], + [-40.97120111939854, -19.494603597463506], + [-40.9713485917259, -19.503820995696895], + [-40.988285781401515, -19.507941821410018], + [-41.00502301908594, -19.507465605459224], + [-41.005069046818775, -19.507463529502296], + [-41.009379498882794, -19.50726719998188], + [-41.020287400408414, -19.504050460471376], + [-41.028371107097286, -19.498649108021493], + [-41.045756937238416, -19.487897192304306], + [-41.04966972359966, -19.503022179006962], + [-41.04090904555366, -19.5159229700184], + [-41.04124928562033, -19.524654606717235], + [-41.04497427080636, -19.53856334606746], + [-41.03663672111477, -19.55670748642818], + [-41.03626072372613, -19.568527611968843], + [-41.057457322286986, -19.5782630294956], + [-41.056256108460836, -19.584812643147558], + [-41.07192466229681, -19.58440869161743], + [-41.07328712662935, -19.59796804129043], + [-41.07912410047805, -19.598296545276646], + [-41.09088834076173, -19.59634354902692], + [-41.09266279638959, -19.601844981335248], + [-41.099316907563654, -19.604205697473663], + [-41.108608033132256, -19.639466491959272], + [-41.11453242111447, -19.64184720001446], + [-41.119585589242675, -19.639586525655613], + [-41.12399921719015, -19.640270794713008], + [-41.1295016494729, -19.642740269727344], + [-41.138632768893984, -19.65872416400966], + [-41.14897007665707, -19.663847497728725], + [-41.15898463044247, -19.66137601239757], + [-41.16847900065749, -19.672221994663914], + [-41.17392052369186, -19.688106295832974], + [-41.17169425854221, -19.69290887536636], + [-41.17773148757003, -19.70329117476038], + [-41.17431186227085, -19.71563581279591], + [-41.17903257454146, -19.720016064013645], + [-41.182020754754234, -19.732173717610344], + [-41.179511420136876, -19.740095940066507], + [-41.190891767135945, -19.74687159833058], + [-41.18777260489862, -19.758107121758762], + [-41.17490014656213, -19.767049336090803], + [-41.171696911511255, -19.778334767111424], + [-41.174065509501226, -19.78400308086309], + [-41.165954163010866, -19.792455832375012], + [-41.166188904961274, -19.810581497731143], + [-41.175479831641766, -19.825735158600033], + [-41.1863009102238, -19.827663812245326], + [-41.17570275299434, -19.839346797316075], + [-41.17915212035664, -19.847019215720593], + [-41.184010518101964, -19.848820943527187], + [-41.1848871481358, -19.8889580191945], + [-41.1876518471951, -19.891676900164907], + [-41.20505920951692, -19.903105501944758], + [-41.21136043503283, -19.901181453032603], + [-41.228891153042944, -19.9057489599631], + [-41.232585189511525, -19.918982702914487], + [-41.24350276213685, -19.936727032970005], + [-41.248929984837844, -19.93794387288896], + [-41.25461550228938, -19.932140015658867], + [-41.27143918809112, -19.942203179821664], + [-41.29939468813276, -19.937066773740472], + [-41.30792103607638, -19.948335190645924], + [-41.3116418432075, -19.971714987130397], + [-41.31990297187574, -19.97862415373986], + [-41.313852498539, -19.98985366481182], + [-41.3087990831718, -19.9970612467148], + [-41.30766806325945, -20.00868420100767], + [-41.309112121394215, -20.016364760687793], + [-41.3172619107646, -20.026958197097862], + [-41.319907209281844, -20.044251604984122], + [-41.3199503720142, -20.04433354544751], + [-41.32418889866199, -20.05235373856006], + [-41.333561582076996, -20.058833056483078], + [-41.331893751978484, -20.06321284281747], + [-41.33561685279817, -20.06546497791407], + [-41.337538605885136, -20.086971772519504], + [-41.34517054966938, -20.090105377759826], + [-41.34398062477753, -20.100122699336218], + [-41.349075786715844, -20.113060416295806], + [-41.350892353517764, -20.119151220305085], + [-41.34752330867754, -20.123900946432794], + [-41.35652602540353, -20.133460012059665], + [-41.35581826490041, -20.1390905301012], + [-41.36189679237889, -20.142070246147675], + [-41.36783834183929, -20.156844705851164], + [-41.375937578081256, -20.161941438209627], + [-41.3740963995328, -20.168151488306574], + [-41.3774047010302, -20.175632840806575], + [-41.38211958907807, -20.188804579494242], + [-41.401671416358006, -20.19922029871606], + [-41.407704015470486, -20.19736595550081], + [-41.41130361543527, -20.200322970173175], + [-41.41114522770833, -20.2073608059724], + [-41.45161824600975, -20.207278357797442], + [-41.47256977700806, -20.207231826330307], + [-41.53251041130329, -20.20708580003978], + [-41.57711982442176, -20.206963931298592], + [-41.596364816557795, -20.206907817150896], + [-41.59715951365798, -20.206905195665946], + [-41.60230189475838, -20.20688957252145], + [-41.66028620699562, -20.206707205257505], + [-41.66595453009224, -20.20668784366451], + [-41.75675519614503, -20.206858090943896], + [-41.75708936250417, -20.213888044133277], + [-41.75988961502364, -20.213350805979925], + [-41.76577912327822, -20.2239028306048], + [-41.764032399101445, -20.227821838885603], + [-41.76711053471846, -20.229250527532972], + [-41.771315223848006, -20.257014931361983], + [-41.774760072650686, -20.25982549077785], + [-41.77587274042079, -20.263033918850052], + [-41.77767835351529, -20.271265223026912], + [-41.779109655621504, -20.27816763029914], + [-41.77779585692957, -20.288599389729026], + [-41.782142257416275, -20.294466713800205], + [-41.79745102166914, -20.29648832450129], + [-41.80308816032218, -20.299195097889285], + [-41.806947635742794, -20.307481483951427], + [-41.81866175885054, -20.310573644024206], + [-41.82283791022241, -20.311084691216674], + [-41.82566339729808, -20.31986622378273], + [-41.8344398837813, -20.325640350133654], + [-41.83646057169706, -20.330014169766674], + [-41.84186655512479, -20.326540197026763], + [-41.84839199558446, -20.330172876266275], + [-41.843927455880596, -20.334040822383706], + [-41.84440027694068, -20.34092153405386], + [-41.85264901245726, -20.3481488079223], + [-41.85250427497997, -20.35677339276282], + [-41.85905302857239, -20.373665924673325], + [-41.84778864765249, -20.375077766011852], + [-41.84568250104117, -20.38197228518122], + [-41.83652672676673, -20.409299561688105], + [-41.80339234460964, -20.422226752470852], + [-41.80359980080873, -20.42951777885343], + [-41.79823187695971, -20.43500883628621], + [-41.8028738090965, -20.442944296501217], + [-41.79943764479748, -20.47727130559683], + [-41.799560259942474, -20.47758788157631], + [-41.807669676837556, -20.494480391385494], + [-41.809565247926436, -20.51163835011193], + [-41.80946292410124, -20.512577006415917], + [-41.81220156248082, -20.519128481045012], + [-41.804301011101785, -20.538389803657463], + [-41.804931869371394, -20.544684876243323], + [-41.80830751262713, -20.55053387474299], + [-41.81689412406424, -20.552433347740998], + [-41.81959308067149, -20.55427946559768], + [-41.82839319496144, -20.55728292231123], + [-41.835331042080114, -20.57084742882181], + [-41.84080008393897, -20.58648849872413], + [-41.84130116578743, -20.600428108264982], + [-41.84574564430225, -20.60674844737858], + [-41.85314580140804, -20.607543536048848], + [-41.8563970000344, -20.617175143832867], + [-41.853021709967685, -20.618673999455712], + [-41.83918135861759, -20.624820899231437], + [-41.82910966011664, -20.624776098056383], + [-41.8174161407525, -20.624524266557657], + [-41.82120016919969, -20.637117120619568], + [-41.81473740193736, -20.64062379934429], + [-41.811455639852774, -20.63753676914345], + [-41.808800835406274, -20.644211022677506], + [-41.816422636985, -20.647034291474053], + [-41.813234118301914, -20.653249820307067], + [-41.81948448333795, -20.657793262678247], + [-41.82764654523314, -20.656394606392894], + [-41.82415915234176, -20.663022248346298], + [-41.833288273212254, -20.670831771700712], + [-41.83936954236071, -20.683432014636338], + [-41.84684591301653, -20.686103772635736], + [-41.85084491193609, -20.695349385110475], + [-41.851897700202024, -20.69711515522212], + [-41.85461628930977, -20.705448008415125], + [-41.86105553379222, -20.70673247178041], + [-41.86274498165797, -20.712283439224734], + [-41.85620419063347, -20.71427549966854], + [-41.861298265586505, -20.722591996125033], + [-41.86535788294772, -20.722000145662758], + [-41.86030741851411, -20.729675085991225], + [-41.8565587366045, -20.74767107377887], + [-41.859559736159525, -20.748722185937826], + [-41.8635157136443, -20.741927322280127], + [-41.87412280550952, -20.744140473953486], + [-41.87979769536264, -20.75955122841734], + [-41.87503281369967, -20.76646285307104], + [-41.87347084512407, -20.77092099777394], + [-41.87907441075701, -20.77409070460397], + [-41.878806412567336, -20.77870794171854], + [-41.88556356005683, -20.78527445208017], + [-41.89669860831079, -20.789498974782113], + [-41.901203810772664, -20.79623181277368], + [-41.90631133113172, -20.797225166945672], + [-41.91605105530622, -20.79278335085569], + [-41.928140197645256, -20.794975894335547], + [-41.92534526875607, -20.801568114362798], + [-41.935395713428655, -20.828548244989317], + [-41.92616461866792, -20.838046904920272], + [-41.92988232895765, -20.844862528741864], + [-41.9314001282875, -20.848348030043397], + [-41.93564875748412, -20.85463105647551], + [-41.94978831089705, -20.85794536842046], + [-41.95472753309374, -20.865494256469237], + [-41.95033448520488, -20.874390382970653], + [-41.96042149056761, -20.882818179359816], + [-41.965197783881116, -20.892854599130356], + [-41.96746242788688, -20.899889252366734], + [-41.964093777678656, -20.906497650987145], + [-41.96733716956266, -20.916823731108362], + [-41.97287111487448, -20.916100588691876], + [-41.97964568096679, -20.922347555648628], + [-41.97666892881704, -20.935492005997265], + [-41.998677817523564, -20.926456197449248], + [-42.00459101830384, -20.93202039207882], + [-42.01910546468305, -20.927796237489655], + [-42.02336948155434, -20.9254634506034], + [-42.0385390686879, -20.92744013993373], + [-42.046173407238676, -20.93323407033741], + [-42.06574323933907, -20.938625084338817], + [-42.08744537308745, -20.939132823262607], + [-42.09396717616811, -20.936008988606577], + [-42.109427217037044, -20.94795466481091], + [-42.11523027677252, -20.9502180406127], + [-42.11559359628873, -20.959210911468915], + [-42.121866193263934, -20.959722435775912], + [-42.12548515674827, -20.955827952982215], + [-42.13840487630603, -20.960544271621306], + [-42.15167568627222, -20.974364861164286], + [-42.15024904485991, -20.975576780551794], + [-42.151139410242614, -20.980215902036186], + [-42.14157905203622, -20.987083330059225], + [-42.14123778507967, -20.993139561772907], + [-42.126497827669716, -21.00357368570968], + [-42.11701231903867, -21.00257352183483], + [-42.115782196117834, -21.00990344101013], + [-42.1108105483001, -21.013508696097098], + [-42.109250583148324, -21.01463974480302], + [-42.109096954885615, -21.014750966692407], + [-42.102696918466904, -21.014452415227705], + [-42.08491476290371, -21.02286936929106], + [-42.08437404901478, -21.02881044765888], + [-42.08015990979081, -21.03056172658938], + [-42.08049690097091, -21.036093922666897], + [-42.09374469016247, -21.0372404061571], + [-42.10111664026299, -21.034443925821062], + [-42.101344819108746, -21.049751967404926], + [-42.12031324277238, -21.069963731047658], + [-42.11892223182247, -21.07529941585741], + [-42.12120458333514, -21.078075298257], + [-42.13316845903563, -21.081060195776264], + [-42.13602323232304, -21.094395586014432], + [-42.140104702923544, -21.103022121949216], + [-42.16437016904517, -21.10143905735374], + [-42.17066077419749, -21.11459061807162], + [-42.17064810060126, -21.128622874184348], + [-42.175561220489236, -21.132143144673602], + [-42.17940867886926, -21.140957714197302], + [-42.19211603773739, -21.148572901498614], + [-42.19588654533907, -21.16002496440031], + [-42.19408797523813, -21.1640565026757], + [-42.20353384025012, -21.174649022127262], + [-42.20849579665305, -21.17819578441962], + [-42.206308790485316, -21.18611859189509], + [-42.19508522702549, -21.201733350049555], + [-42.20146905085201, -21.20860339292566], + [-42.20295233013104, -21.221670437194756], + [-42.19733018765954, -21.226322811797917], + [-42.1916055793067, -21.22380210202574], + [-42.18878065759928, -21.230030034474524], + [-42.19522448700153, -21.238529387105658], + [-42.18969719856968, -21.249883097298433], + [-42.193379641410814, -21.25334308535391], + [-42.21038800955667, -21.2667173341159], + [-42.21252538851364, -21.272053008446235], + [-42.22439952922625, -21.276713122369543], + [-42.229439787843496, -21.285179504610173], + [-42.22984148501446, -21.30844017958614], + [-42.238226520192136, -21.3186649764184], + [-42.23668966958989, -21.3251613570455], + [-42.22891816839082, -21.32872324071138], + [-42.22411942899238, -21.33797274981896], + [-42.23622362242215, -21.343719143423634], + [-42.22938132097087, -21.351120602890262], + [-42.232611791122075, -21.35413653103311], + [-42.22986699208152, -21.36655036262348], + [-42.24183753961267, -21.37313660188063], + [-42.240976138811114, -21.37791069531075], + [-42.25243592131016, -21.386496379254478], + [-42.25008871509117, -21.39014194920022], + [-42.23794218318445, -21.392939090216423], + [-42.239369068142814, -21.403475542421738], + [-42.26081669780681, -21.410061250449417], + [-42.26745151665714, -21.400021712318246], + [-42.27471207169594, -21.403961647277246], + [-42.279064853823854, -21.410555551258728], + [-42.275488410842776, -21.42832633144678], + [-42.280910285785424, -21.432614060800915], + [-42.279660831764275, -21.43538220932662], + [-42.28605320446614, -21.44231172677548], + [-42.28431642798743, -21.44642589804594], + [-42.292617545850405, -21.46001741695468], + [-42.26861596195023, -21.468848432913873], + [-42.27140477331649, -21.475651088517505], + [-42.25273301145908, -21.48981356637318], + [-42.252983900684036, -21.49367485353025], + [-42.257057900975354, -21.49470015120199], + [-42.259998420534956, -21.49635942514521], + [-42.273759584991296, -21.504151009315624], + [-42.28317202880761, -21.523414816458864], + [-42.28643472365754, -21.528049299549973], + [-42.297113689197616, -21.524528548193473], + [-42.30633895329044, -21.529515517136584], + [-42.30292755621488, -21.539483880329602], + [-42.31058412656576, -21.547074109264884], + [-42.309260716551314, -21.5507455506328], + [-42.31427231156963, -21.555565711351278], + [-42.33114505130366, -21.560590570759512], + [-42.32739527153925, -21.562667324405293], + [-42.32594967112096, -21.570003678491766], + [-42.346256624917295, -21.582946624492813], + [-42.35314270385787, -21.592043228036314], + [-42.36137025573934, -21.602028501478213], + [-42.369143591995446, -21.6199435658639], + [-42.364893033520566, -21.62422391653024], + [-42.35930889536725, -21.62141043045692], + [-42.355725291037004, -21.625834249229143], + [-42.35870706394703, -21.631698088139565], + [-42.36396928601896, -21.63187032271879], + [-42.369821351735105, -21.640267396333847], + [-42.36513056537332, -21.64625926533495], + [-42.355501027152165, -21.64746536782992], + [-42.34716496455167, -21.643153560370926], + [-42.34298736193032, -21.655762368590985], + [-42.34308960046007, -21.659682108891133], + [-42.33820086791857, -21.66186908531717], + [-42.33645173007615, -21.660708189502113], + [-42.33186729043381, -21.66168028059557], + [-42.32468935786194, -21.656544423498033], + [-42.32042303606529, -21.66071854518986], + [-42.31629847425216, -21.655224452324024], + [-42.310756712763634, -21.660018038939423], + [-42.30178240734805, -21.655284600649612], + [-42.29567792099202, -21.66027067217011], + [-42.291144601081385, -21.6647222909231], + [-42.283068742490826, -21.670637324780017], + [-42.28711763702023, -21.672700240853917], + [-42.28336746473965, -21.680922235592867], + [-42.275287871789395, -21.676891579234283], + [-42.270646770726515, -21.681670093064177], + [-42.2653440980249, -21.694062552976504], + [-42.27134274650084, -21.699895369330964], + [-42.27212066834055, -21.704265379278993], + [-42.266617953215665, -21.70832969965654], + [-42.271787714113785, -21.71453465162582], + [-42.26735584606305, -21.71418593555738], + [-42.307211770555774, -21.72949680884699], + [-42.31154350054622, -21.73553118938743], + [-42.32482682357603, -21.742800083558393], + [-42.33583062163325, -21.746225361261317], + [-42.356538206143334, -21.741867407962317], + [-42.37671742325112, -21.748641696803272], + [-42.37829371478801, -21.748974868434836], + [-42.383545200189175, -21.753410236667698], + [-42.39119254914194, -21.760189261722918], + [-42.4606471494168, -21.785446384291074], + [-42.46436621327168, -21.78678060892374], + [-42.54047610801701, -21.821053905401733], + [-42.552855668253905, -21.825612695895476], + [-42.582392543400914, -21.837699906514167], + [-42.57987270412726, -21.845676503402814], + [-42.59743418538182, -21.853686603016875], + [-42.605239277743514, -21.855052288740918], + [-42.6085053503282, -21.85216830714936], + [-42.61271313221272, -21.85537393522547], + [-42.6469777399446, -21.867188846668753], + [-42.656120564162556, -21.869901540831926], + [-42.662977193371795, -21.872368979118], + [-42.66892499256026, -21.8745084046996], + [-42.71982022623964, -21.897240777720242], + [-42.74362676121642, -21.910087858507037], + [-42.76773954161652, -21.921336244526834], + [-42.79172534414512, -21.930848640292417], + [-42.84628283598131, -21.948401761737568], + [-42.882506299658544, -21.96008550394704], + [-42.88278021325484, -21.967119042339768], + [-42.90230004191924, -21.984633927492222], + [-42.90908370747802, -21.990465916173463], + [-42.920891618689446, -21.995257586942447], + [-42.94709165747979, -22.005887840294417], + [-42.95966797299571, -22.0149998720152], + [-42.96898223407784, -22.01486244552682], + [-42.996584785189825, -22.036034346329586], + [-43.003043777738206, -22.03236067938293], + [-43.03943715566582, -22.046575565968734], + [-43.038898909943754, -22.05295471078514], + [-43.03259561835838, -22.060206122751623], + [-43.033157618554014, -22.06587176108153], + [-43.05315533119338, -22.082510905005844], + [-43.07412525548048, -22.093316001842446], + [-43.07801112096109, -22.084085032322562], + [-43.08948418139516, -22.087920312837877], + [-43.10674410647819, -22.0840098737572], + [-43.12254405630011, -22.09106220849204], + [-43.12759414976188, -22.10488197434743], + [-43.136539854499006, -22.10964300458807], + [-43.14595575731473, -22.09770839470574], + [-43.14611038452167, -22.09504480212462], + [-43.154118227648006, -22.077954767321913], + [-43.150580391910886, -22.071618916950328], + [-43.1340859965537, -22.058984264804906], + [-43.1280968745184, -22.046217200159056], + [-43.1313093272947, -22.035952538989633], + [-43.13113238447098, -22.029656853102022], + [-43.14415319209832, -22.033699135564017], + [-43.14756836874443, -22.031094438210463], + [-43.15512367662458, -22.032399263685715], + [-43.16338837824658, -22.02849079716066], + [-43.16470825370125, -22.02291195034839], + [-43.16954018163995, -22.0221767724454], + [-43.180818765131384, -22.02929549149671], + [-43.202034747562124, -22.037080046219796], + [-43.20473765163785, -22.035239809708656], + [-43.202984071764554, -22.02547825362218], + [-43.204008718271055, -22.025930937962872], + [-43.21143173837995, -22.03010295126252], + [-43.215640993230416, -22.030662586164798], + [-43.223144567637796, -22.031658881823407], + [-43.22770932002798, -22.028500672797772], + [-43.23361593297628, -22.02387948892867], + [-43.23673811138311, -22.022844156377296], + [-43.23660041490508, -22.012080371391676], + [-43.24654287362338, -22.00700995755551], + [-43.254791048863005, -22.01196472696818], + [-43.26240602422389, -22.00850742514112], + [-43.26923257525057, -22.012274711715673], + [-43.280515863483025, -22.01101438399399], + [-43.29907016285355, -22.020048803800208], + [-43.31690208509833, -22.01601500957], + [-43.317792806551324, -22.006839626148114], + [-43.32448041950894, -22.006318684707843], + [-43.33087384889958, -22.010875772892483], + [-43.339374790297434, -22.010538509003545], + [-43.34684975384414, -22.003531145759528], + [-43.349533416265565, -22.003371375476902], + [-43.35209243828328, -22.00873004827021], + [-43.365905007750236, -22.01158871005841], + [-43.368569198099706, -22.020476555935794], + [-43.38815206518064, -22.032239903305793], + [-43.419265900113864, -22.05377567111642], + [-43.42818150696776, -22.054668116438435], + [-43.43705543955891, -22.059994922442616], + [-43.46246345320525, -22.072623218419466], + [-43.4759286827577, -22.06973971211357], + [-43.48667591842395, -22.073451927830877], + [-43.49220615819603, -22.074280986393113], + [-43.50752189516596, -22.074479829139513], + [-43.50574832995658, -22.066560101354554], + [-43.513600530444606, -22.05930138498114], + [-43.51982821174472, -22.061842114462525], + [-43.52557910487111, -22.07198361711266], + [-43.555877221322426, -22.08206790606344], + [-43.556800937980796, -22.082276076751132], + [-43.562393775292406, -22.087773308192986], + [-43.56312690512588, -22.08822020733889], + [-43.56693380382256, -22.087704269998977], + [-43.56924586896569, -22.077796098938947], + [-43.574738838819336, -22.077798354793558], + [-43.584526241729186, -22.07050359020342], + [-43.58607712694871, -22.051999182960785], + [-43.59272147374678, -22.055902332503933], + [-43.5959397978821, -22.06004723266878], + [-43.59965722177913, -22.058981141322207], + [-43.60371531709752, -22.072102509574243], + [-43.61190305073274, -22.071524661670125], + [-43.61319295886178, -22.082310107289832], + [-43.62073847036218, -22.083820347190027], + [-43.62107675444471, -22.075479631469676], + [-43.62831948389432, -22.07652241204943], + [-43.63871010378474, -22.068035847393496], + [-43.64437212709962, -22.066288812308805], + [-43.64560825733212, -22.06590730123632], + [-43.65257060540981, -22.067086703980088], + [-43.65643659551273, -22.073316440148876], + [-43.66559998575379, -22.074429384043228], + [-43.66864664386417, -22.085999292506724], + [-43.67401308624947, -22.08981176072688], + [-43.68009746092067, -22.081051600562592], + [-43.68190679177676, -22.071591795243602], + [-43.6918456888859, -22.070882422156043], + [-43.700236179952626, -22.077878938844574], + [-43.709403696866445, -22.076965310923892], + [-43.70987591251403, -22.08153843574042], + [-43.71993311891495, -22.081183063305243], + [-43.734602008265604, -22.097233277424436], + [-43.74116843892532, -22.09508372176116], + [-43.746934350171784, -22.09274765080607], + [-43.74638234429158, -22.088214815526626], + [-43.76049921715763, -22.080984116253166], + [-43.75621774526803, -22.07695527089585], + [-43.76385755899075, -22.073233449583935], + [-43.765988832709894, -22.06289447407772], + [-43.76876321623275, -22.067537902881362], + [-43.77743061956447, -22.066751762036347], + [-43.80025640374448, -22.08247270132721], + [-43.81032073381668, -22.082265808519512], + [-43.81284809594787, -22.083371424939585], + [-43.811094245679364, -22.08599659686962], + [-43.816742575750276, -22.08662552960021], + [-43.81840613484119, -22.086639494293813], + [-43.83509634657499, -22.095125199457474], + [-43.83871906592449, -22.096130882760946], + [-43.843386980899936, -22.09893480580377], + [-43.857654124119605, -22.095118582137626], + [-43.86232613767191, -22.09951185740788], + [-43.87073420023575, -22.09995470431232], + [-43.87142553452375, -22.10390308169172], + [-43.8799125496023, -22.100329079187244], + [-43.880338663768526, -22.108567462261803], + [-43.88060059452454, -22.113624663057347], + [-43.88896922535252, -22.114451140342233], + [-43.94077790174011, -22.13212370149075], + [-43.9532834241143, -22.141446923626685], + [-43.96114451468578, -22.13997078920552], + [-43.97880192163228, -22.146630649208632], + [-43.97715796192326, -22.149621406740334], + [-43.98832206755402, -22.150148953627653], + [-43.99330247866649, -22.158306353883024], + [-43.99801790101257, -22.1560160909491], + [-44.00504479611283, -22.162354565916484], + [-44.02393236836634, -22.151351446758596], + [-44.03827095659414, -22.154333137953984], + [-44.04099570878438, -22.160571546459792], + [-44.06638232873207, -22.162076457965114], + [-44.0725650445435, -22.16493419746846], + [-44.076857416341355, -22.17538384587768], + [-44.084825904359725, -22.175510402190987], + [-44.08778390625958, -22.1843976375539], + [-44.09018602461202, -22.175793399034138], + [-44.10007361806043, -22.173280908136796], + [-44.104902379769804, -22.17778089859929], + [-44.105074790047986, -22.18455044814203], + [-44.117880472546894, -22.190091132099354], + [-44.11929656858972, -22.187253388889587], + [-44.12310105832583, -22.18824277011706], + [-44.12129113457476, -22.195309197667978], + [-44.125298405693485, -22.20048978014133], + [-44.12151169572675, -22.209091553072067], + [-44.126405925086544, -22.208778436416388], + [-44.127460400775924, -22.212011923587752], + [-44.13360151715346, -22.210076553599453], + [-44.14107973182486, -22.2202357728386], + [-44.14918266084954, -22.213637651006007], + [-44.15366175053986, -22.226923385619063], + [-44.15862953484103, -22.22525650686375], + [-44.16413329057458, -22.23251018062341], + [-44.16702347953063, -22.232202221226643], + [-44.166858474764375, -22.22754736562146], + [-44.17357124943794, -22.230432741077284], + [-44.180245739683954, -22.228033353824106], + [-44.18101776029347, -22.23310257732397], + [-44.18949035066855, -22.240718993820874], + [-44.20168879866105, -22.251534250717143], + [-44.20384665336709, -22.248812021385618], + [-44.20851761806815, -22.251030543561907], + [-44.21331708672894, -22.24623658942345], + [-44.22443444530825, -22.252962023181446], + [-44.22437829374078, -22.259296986132416], + [-44.2354667364639, -22.26617595015036], + [-44.23913419845023, -22.26291096081501], + [-44.24671694339164, -22.26697752831872], + [-44.25078985573914, -22.260663475146767], + [-44.26028203146547, -22.268337538156803], + [-44.263493729009994, -22.243405054141814], + [-44.264597107642984, -22.24482540366493], + [-44.267298025040745, -22.248303152424526], + [-44.26879312729494, -22.244790532614335], + [-44.27637902317716, -22.24314792198403], + [-44.284506019206574, -22.243531932988773], + [-44.28943717980346, -22.247431778312457], + [-44.29149799520981, -22.243030647606574], + [-44.30177764824215, -22.253519217813448], + [-44.3147246204253, -22.25446973404364], + [-44.32199275423777, -22.261132153529832], + [-44.323919050517574, -22.254960535135517], + [-44.33723061364277, -22.25864930214339], + [-44.34421644919073, -22.253594475986052], + [-44.35232807891074, -22.257722865607846], + [-44.360244244762825, -22.252644038846316], + [-44.37566220042758, -22.262050008086288], + [-44.37740683836329, -22.268000880073522], + [-44.384061233150014, -22.267498483802434], + [-44.38757683118131, -22.272474004605588], + [-44.3909498066534, -22.268576761121867], + [-44.39110199289778, -22.26828705809906], + [-44.39478443648369, -22.258876327123446], + [-44.414439865451776, -22.254123730938133], + [-44.42388421666995, -22.255632165790693], + [-44.432257396585676, -22.251414402736646], + [-44.43465407562109, -22.25244183291718], + [-44.438410927540616, -22.25828907428811], + [-44.44044055530515, -22.254786895818256], + [-44.444733998683795, -22.257941774981305], + [-44.44666385004503, -22.25561035760754], + [-44.456437079995396, -22.25721844577632], + [-44.46260636245687, -22.2666678750956], + [-44.459124670127835, -22.27046697281132], + [-44.46328442305429, -22.274990003155352], + [-44.46113176796892, -22.280333662371703], + [-44.46799345617158, -22.2795735312443], + [-44.476682028176, -22.28871242101107], + [-44.479550101156796, -22.28806159579125], + [-44.48269014248021, -22.293775411448294], + [-44.496770996529264, -22.302845780970227], + [-44.513661421363416, -22.308969632131138], + [-44.51775135928775, -22.316292585902914], + [-44.53054825948308, -22.323879432327555], + [-44.53194751521442, -22.328653655709214], + [-44.54345679869849, -22.3318441782385], + [-44.545853049002076, -22.323622271446364], + [-44.55476699324618, -22.33009824807434], + [-44.561687481029686, -22.330461460087967], + [-44.56433315981231, -22.3323489969661], + [-44.56990087526587, -22.327263188188798], + [-44.571660100666314, -22.324123224334063], + [-44.58102704275096, -22.327747809950512], + [-44.58779987375582, -22.321927283055192], + [-44.58766384899303, -22.321580485087015], + [-44.589042815886245, -22.320373546049698], + [-44.6123042196558, -22.32817610784446], + [-44.61533721410913, -22.330198803440627], + [-44.61726242834993, -22.33174743194726], + [-44.626157958016144, -22.336067439107914], + [-44.62833355444346, -22.345949083002257], + [-44.64289038422595, -22.35371725336922], + [-44.64624722787943, -22.365110450760977], + [-44.658859185384664, -22.37471064676253], + [-44.66068708196096, -22.380492819202274], + [-44.66647413280429, -22.373156090428683], + [-44.678748101498606, -22.374188284316357], + [-44.69161493512957, -22.370067323556388], + [-44.705521004029876, -22.373279375960045], + [-44.72396599843184, -22.359923003510556], + [-44.730885336205816, -22.361592930869428], + [-44.74443648762318, -22.37616666262251], + [-44.76202123907782, -22.3762247981141], + [-44.77598579417276, -22.384262031178345], + [-44.78047160828342, -22.382740901525747], + [-44.78757529619448, -22.388060215036745], + [-44.79370383480423, -22.387059061512485], + [-44.80400464227463, -22.39379468302737], + [-44.80922587295635, -22.405263153970807], + [-44.80903571778822, -22.4065978272318], + [-44.808661863881845, -22.409221711245788], + [-44.80825201744702, -22.412097985959214], + [-44.80796960515411, -22.41407980136199], + [-44.80840008798807, -22.414219090843385], + [-44.824119889570525, -22.41930456791557], + [-44.824506286897666, -22.41981525051823], + [-44.830148206312664, -22.4272714741596], + [-44.832938220906684, -22.430958393857463], + [-44.837854874930215, -22.42953322077568], + [-44.842053616343584, -22.42831599361303], + [-44.843930836751966, -22.42777173648564], + [-44.84656876493911, -22.427821271691187], + [-44.85308063560374, -22.427943366534457], + [-44.854496872837856, -22.42796988542549], + [-44.85958483329817, -22.42301178793384], + [-44.87213891321395, -22.42429646597819], + [-44.872507885981044, -22.424795155369267], + [-44.87324700164311, -22.42579410500104], + [-44.8752743171224, -22.428534044425437], + [-44.8783185496568, -22.429284273666294], + [-44.879243414956505, -22.429512187758487], + [-44.88138942903979, -22.430041006819827], + [-44.8845376444281, -22.430816731590028], + [-44.88971611230716, -22.432092568776863], + [-44.8899217392141, -22.43261963318096], + [-44.890500076054934, -22.434102015398388], + [-44.89319569788045, -22.44101109026101], + [-44.89782635976243, -22.452878687353973], + [-44.897986309968914, -22.452867132876648], + [-44.908243542841255, -22.45212582668594], + [-44.930575423054876, -22.452880522351126], + [-44.93386812954192, -22.452991535474588], + [-44.936192155319674, -22.45306984907475], + [-44.94005429252088, -22.452637527225303], + [-44.95991052556904, -22.4666272180095], + [-44.960188331631834, -22.4670267919652], + [-44.961805904859474, -22.469353335662746], + [-44.96295159146336, -22.471001122984617], + [-44.96443851413211, -22.47313963810635], + [-44.964707259891966, -22.47352614564986], + [-44.965517176867266, -22.47469094787567], + [-44.96584408114285, -22.475161088062965], + [-44.96747251167326, -22.47459529835296], + [-44.983659690405524, -22.468969901107094], + [-44.99179897735439, -22.46614046601694], + [-45.00159212496137, -22.468605671309174], + [-45.00977397019254, -22.466337186907374], + [-45.0226610690187, -22.46836328998311], + [-45.02471632802284, -22.46920501278696], + [-45.02552238644981, -22.46953512152662], + [-45.02713449219097, -22.470195318993603], + [-45.026036489431846, -22.467256765121896], + [-45.02552052117018, -22.46587586402085], + [-45.025133468424826, -22.46483997083234], + [-45.02838794770454, -22.463166218104334], + [-45.030851110759706, -22.464398610556685], + [-45.03377755666129, -22.465862726864163], + [-45.03602780695896, -22.466988487177638], + [-45.03959119128954, -22.46877109308395], + [-45.04052881856347, -22.469240128393718], + [-45.04377316178811, -22.469769078419784], + [-45.05929200739429, -22.472298304960024], + [-45.060670574414964, -22.472522906369477], + [-45.06945472462638, -22.47804902447773], + [-45.07979178473474, -22.48455103303832], + [-45.082630120497875, -22.4863361475136], + [-45.088759228103534, -22.48397275801831], + [-45.08880949914641, -22.483953372040855], + [-45.09110974531494, -22.4830663054915], + [-45.09246908197591, -22.483864745436726], + [-45.10139797684152, -22.489108892489195], + [-45.103386722923524, -22.490276820505226], + [-45.1146804185913, -22.494002647907738], + [-45.11905635193724, -22.495446033366512], + [-45.124343590269895, -22.49718982358417], + [-45.125453323457016, -22.49762303454345], + [-45.13427930493655, -22.501068127120384], + [-45.13750646693978, -22.50232765129547], + [-45.14210790793389, -22.50412340066177], + [-45.15030733286472, -22.507322884019384], + [-45.159993305891945, -22.516885039220078], + [-45.16010348780539, -22.517109779413193], + [-45.16140350120296, -22.519761397345256], + [-45.16597483387982, -22.52908482185189], + [-45.16674635809589, -22.530658277248612], + [-45.164499274016656, -22.537896737435467], + [-45.16497303001699, -22.53831516859854], + [-45.16795870147542, -22.540952097886723], + [-45.17727525646625, -22.549179565440554], + [-45.178028596714746, -22.54984478441178], + [-45.187277436909746, -22.55266959472404], + [-45.19087971202161, -22.553769648288714], + [-45.20372660783688, -22.557692048085546], + [-45.20431023243101, -22.557870211780088], + [-45.223079189828226, -22.563598537585563], + [-45.223674948606394, -22.564212192141042], + [-45.2266829058534, -22.567310405096507], + [-45.226862432777736, -22.567332470438686], + [-45.227268560809456, -22.567382386178828], + [-45.228622470358616, -22.568024353811378], + [-45.228631203380324, -22.56802849459577], + [-45.259015762906124, -22.58243141165888], + [-45.26090160451308, -22.583325076450397], + [-45.25711015885031, -22.59026679945548], + [-45.2582727727641, -22.593095616525897], + [-45.258791563792514, -22.594357886294024], + [-45.2605343730472, -22.59859818676868], + [-45.261003998838675, -22.599359634617183], + [-45.26363642087897, -22.603627682105873], + [-45.264199446690206, -22.604540506192485], + [-45.26192075648255, -22.606603180098112], + [-45.261824328717225, -22.606690464264076], + [-45.26139061439333, -22.60708304995651], + [-45.26184436597459, -22.607338266584456], + [-45.26908970024818, -22.61141319726095], + [-45.269791820951724, -22.611985858153748], + [-45.2742705282506, -22.615638602762317], + [-45.27584884769699, -22.61692578245559], + [-45.293836176591135, -22.613636054213245], + [-45.311920477323326, -22.61530610550748], + [-45.321772573363845, -22.616215065187816], + [-45.32430898265842, -22.616448977152636], + [-45.32765089825449, -22.616897039083792], + [-45.32822183625222, -22.61697357958584], + [-45.33294528552584, -22.617606730443796], + [-45.33323726983032, -22.61813328744902], + [-45.33578033500563, -22.622719237566912], + [-45.335979675878306, -22.62277621369824], + [-45.34893487478329, -22.626478504525142], + [-45.34970210351023, -22.62726138568754], + [-45.354358788989664, -22.632012843402386], + [-45.36094138867593, -22.638728737295505], + [-45.370581025837375, -22.637284195398504], + [-45.376340018717435, -22.641400092121895], + [-45.38450657201929, -22.647235960810317], + [-45.386415298120816, -22.64859983168501], + [-45.39065072002656, -22.650177364851043], + [-45.39624303656334, -22.65226007817247], + [-45.39996893820979, -22.653647560123943], + [-45.41050406513501, -22.651638337907574], + [-45.41011109205552, -22.64749618246725], + [-45.4097781225123, -22.64398654198961], + [-45.408779127556166, -22.633456954506595], + [-45.41307941969967, -22.628471220825883], + [-45.41247853523487, -22.622969922570004], + [-45.41332764112407, -22.622806893177568], + [-45.41399622268207, -22.62267852107179], + [-45.41800922892787, -22.621907930331282], + [-45.41978570138299, -22.621566769615004], + [-45.4214713616961, -22.621243028052127], + [-45.43371678783014, -22.61919324305671], + [-45.43747561466381, -22.611709589255696], + [-45.44803400469335, -22.604580581036206], + [-45.45169109660209, -22.606318336526346], + [-45.45658988266338, -22.602458073666444], + [-45.46081031849806, -22.59913201995027], + [-45.4738390051963, -22.5888623863231], + [-45.47671530601272, -22.58975329327811], + [-45.48108091064864, -22.591105384473526], + [-45.48126877843614, -22.591163566785568], + [-45.48125318825668, -22.591183473577505], + [-45.480510093040365, -22.592132307177106], + [-45.47659644701954, -22.59712918874917], + [-45.47624122874427, -22.59758269896634], + [-45.47517840919741, -22.59893958307603], + [-45.47475670068959, -22.59947796024427], + [-45.47746979987552, -22.60514142064761], + [-45.48050886061221, -22.611484857015615], + [-45.485892423321616, -22.622720801298794], + [-45.48827829779279, -22.627699839709326], + [-45.48878296070874, -22.62875297381443], + [-45.488904449301785, -22.628723859236118], + [-45.4957595497214, -22.627080864423384], + [-45.50028893454803, -22.62599509182946], + [-45.50052462691175, -22.62593858804865], + [-45.50780849520072, -22.632182550287446], + [-45.507931440698776, -22.632287936331974], + [-45.51409112928343, -22.637567593449777], + [-45.514801095939546, -22.6381760915161], + [-45.5249133434415, -22.646842285773054], + [-45.52815763630049, -22.646794214111935], + [-45.53039954305443, -22.64676095629056], + [-45.53302923908099, -22.64672190533564], + [-45.536279841657205, -22.64948188850501], + [-45.53989048312613, -22.652547387993323], + [-45.5400568453023, -22.65255608547089], + [-45.541376203119825, -22.652625055868093], + [-45.55079226941927, -22.653116971561065], + [-45.552295787197494, -22.6531954672498], + [-45.5572513429115, -22.65406788287297], + [-45.562708013560346, -22.655028334590078], + [-45.57077793775195, -22.656448402253545], + [-45.57282125375166, -22.656807898361016], + [-45.57355910862161, -22.656937708120857], + [-45.57690439941733, -22.65494980675174], + [-45.57803293669596, -22.654279154238814], + [-45.580391325807014, -22.65287758927758], + [-45.584352523731376, -22.65165633934138], + [-45.58207408698391, -22.644940360655742], + [-45.581970308704705, -22.644634450328926], + [-45.57730848253502, -22.640495984404065], + [-45.57290904469886, -22.64117738204356], + [-45.5728146865277, -22.64119199505474], + [-45.570737758237804, -22.639435451628614], + [-45.56941182985924, -22.638314026750326], + [-45.55673074581206, -22.627587505687103], + [-45.55584727016978, -22.626840114789474], + [-45.55533753708499, -22.626408892447202], + [-45.563640996510905, -22.612716431637008], + [-45.572701126980526, -22.60928490931057], + [-45.57650150062568, -22.60167098872742], + [-45.58355554604023, -22.607030121455097], + [-45.58658670381333, -22.609332769405057], + [-45.587979498690984, -22.610390779507842], + [-45.58792482296611, -22.610477184282022], + [-45.5847609822984, -22.615476781257733], + [-45.58535099534425, -22.61587844505709], + [-45.586464513097695, -22.61663648471965], + [-45.588714387858204, -22.618168068298043], + [-45.589974857947574, -22.619026097228392], + [-45.59728320752414, -22.619691993920863], + [-45.60448094689307, -22.620347484995538], + [-45.60506062499184, -22.620400261574126], + [-45.605407741046506, -22.620865345473426], + [-45.61519403940141, -22.633976203867487], + [-45.61806280555626, -22.637819049470124], + [-45.618109849312994, -22.63788206493302], + [-45.61812031685974, -22.63788571889384], + [-45.6225824886146, -22.639443277386146], + [-45.62885898534314, -22.641633888156072], + [-45.643176339642174, -22.646629796248437], + [-45.64614953615647, -22.647667072535093], + [-45.6476816553382, -22.64820156589869], + [-45.65647364204495, -22.649317918746107], + [-45.66375884923579, -22.650242578559663], + [-45.66453381894512, -22.650340920177303], + [-45.66918648176428, -22.649093903173195], + [-45.673400308838644, -22.644555128825257], + [-45.67614745724863, -22.641595879012723], + [-45.681059795195736, -22.636303765699523], + [-45.679137614085654, -22.634676679225624], + [-45.67477048385073, -22.630979793167477], + [-45.674400266918056, -22.63066638236033], + [-45.67448435419685, -22.63032850976285], + [-45.67501472122694, -22.62819737497356], + [-45.675518407377545, -22.62617335802279], + [-45.66608912260669, -22.61266265608822], + [-45.66811507037659, -22.609615604847846], + [-45.66721743374178, -22.60731410072663], + [-45.6655583090527, -22.603060020057054], + [-45.664514329108165, -22.600383100992694], + [-45.66438549428986, -22.60005274404574], + [-45.6594538359279, -22.598297535441997], + [-45.658840992441945, -22.598079407704873], + [-45.6608733472302, -22.592578798322567], + [-45.66119618029415, -22.591704987344354], + [-45.66305696302731, -22.586668110790132], + [-45.65986416156124, -22.580050447774006], + [-45.66081062047497, -22.579023494657356], + [-45.661729085069204, -22.578026893540866], + [-45.662875826811806, -22.576782563019012], + [-45.675354798642886, -22.575247212899367], + [-45.678698523411434, -22.573259785196903], + [-45.679419937721065, -22.573822712396936], + [-45.692735055200885, -22.584211395091113], + [-45.69542047506337, -22.586306319587205], + [-45.70540514964964, -22.582278746634415], + [-45.709765266939065, -22.580519690969425], + [-45.71682189345111, -22.577672374372398], + [-45.71687654073613, -22.57834719712656], + [-45.71717832515994, -22.58207388454626], + [-45.71764383104447, -22.58234597560037], + [-45.72471452958326, -22.586478572371657], + [-45.72518900461079, -22.587011036069818], + [-45.7292263103338, -22.591541577041877], + [-45.72757038832623, -22.594296747026544], + [-45.728262122797396, -22.594604709917878], + [-45.73023551785979, -22.595483250985737], + [-45.73434205537523, -22.597311346429958], + [-45.73458071512615, -22.597417585537933], + [-45.7346168884213, -22.59755937860814], + [-45.7353659831706, -22.600495662612524], + [-45.73714264710686, -22.60745949779871], + [-45.73740996154482, -22.608507231592107], + [-45.729782533312466, -22.613203699285197], + [-45.73004391920047, -22.618684215416227], + [-45.72116781196435, -22.620301161031275], + [-45.71941816788459, -22.620619825468555], + [-45.71745064614009, -22.620978146495133], + [-45.70869812234825, -22.639435887009242], + [-45.6996458235561, -22.642394442036874], + [-45.69932877446032, -22.643756782400274], + [-45.698069040834916, -22.649169372294264], + [-45.697936614554415, -22.649738319153446], + [-45.69397409138654, -22.65167783072165], + [-45.69474278266987, -22.6520612273596], + [-45.70009071651897, -22.654728443989395], + [-45.708429495020034, -22.658886791761336], + [-45.70871408820482, -22.659028700422066], + [-45.712532812920344, -22.660531422525157], + [-45.714720465479054, -22.661392242687562], + [-45.71616415639256, -22.661960300371508], + [-45.73221131136878, -22.6568036045191], + [-45.74278798494692, -22.659133931829363], + [-45.74337034955375, -22.65975875443183], + [-45.74618290361656, -22.662776266962194], + [-45.74735371005515, -22.66403234724354], + [-45.74742317442011, -22.664189159181966], + [-45.74812011455305, -22.665762446826108], + [-45.75009049651777, -22.670210272742867], + [-45.75053314783391, -22.67120945628571], + [-45.7508948866516, -22.671197167751735], + [-45.75546471263981, -22.671041855820263], + [-45.75600591087827, -22.67163860451797], + [-45.761058954635736, -22.677210020552643], + [-45.76111959482768, -22.67723156760596], + [-45.766498787444625, -22.679142825076568], + [-45.77330560688032, -22.68156101176871], + [-45.77886407666075, -22.68353544975109], + [-45.77944523974781, -22.684169232951565], + [-45.78109987099106, -22.685973641693973], + [-45.78784000551311, -22.693323322340216], + [-45.78920601735928, -22.693630976162343], + [-45.79973441173629, -22.696001765660725], + [-45.801623480196504, -22.696427068364848], + [-45.80941754023398, -22.69818156072145], + [-45.8116237634946, -22.698678121500286], + [-45.811841047935474, -22.69911133763097], + [-45.8179725052391, -22.711335115196125], + [-45.81833911632667, -22.713483244680663], + [-45.819621434480595, -22.720996691534744], + [-45.81990977321108, -22.722686103291455], + [-45.81662974483299, -22.727431750334354], + [-45.80581843796647, -22.736944921619557], + [-45.79561507259681, -22.73898861172096], + [-45.794905192569175, -22.738662853387712], + [-45.78115983012865, -22.732354358252916], + [-45.760400000636054, -22.72282345366258], + [-45.75854007479188, -22.721969374365738], + [-45.756445069022895, -22.721007310488112], + [-45.738942523156524, -22.722640781406643], + [-45.73059540097176, -22.723419091012516], + [-45.728125772004276, -22.72364927871134], + [-45.72849420553173, -22.724351810106974], + [-45.728721275349166, -22.724784785164335], + [-45.72997179631243, -22.72716922675291], + [-45.7290482678694, -22.728719480272005], + [-45.72737066554675, -22.73153541168559], + [-45.72610747820343, -22.733655621732755], + [-45.72429422534404, -22.736698934222158], + [-45.71862689839573, -22.746209593898037], + [-45.718089752148884, -22.74818006045876], + [-45.71721277512357, -22.75139698277109], + [-45.715775778229066, -22.75666768691017], + [-45.71434828309103, -22.761902949677808], + [-45.71219187504604, -22.769810346301167], + [-45.71258175688638, -22.77067074705232], + [-45.71439117306909, -22.774663695683312], + [-45.71678491127614, -22.77994581210273], + [-45.71714938307583, -22.779912574182177], + [-45.722476382241275, -22.77942668026121], + [-45.723602595965545, -22.78042249889073], + [-45.72469764879512, -22.78139074560983], + [-45.72901062405166, -22.78520410122246], + [-45.72903851031602, -22.78562768319698], + [-45.72997210685911, -22.79980966020104], + [-45.727309294733175, -22.80089059315073], + [-45.72423481056529, -22.802138555814125], + [-45.72223075126227, -22.802951974823223], + [-45.72028823377789, -22.80823215413437], + [-45.71431036721166, -22.808595416600685], + [-45.71412272241746, -22.81014075641988], + [-45.71364537797258, -22.814071600005885], + [-45.713562762821745, -22.814751876256956], + [-45.71387723385867, -22.814804275401062], + [-45.72275726657527, -22.8162836572678], + [-45.72875633270331, -22.81015276548722], + [-45.74168854078473, -22.80788306202561], + [-45.742996290434675, -22.802895581141634], + [-45.745050461406066, -22.795060319747396], + [-45.745321834474616, -22.79402511719715], + [-45.74807795295819, -22.793695235240214], + [-45.750819890447815, -22.793367000165812], + [-45.75489785261302, -22.792878737607545], + [-45.7551781336767, -22.79343300617807], + [-45.75900280522368, -22.800996083341534], + [-45.759387906964626, -22.801154262838775], + [-45.76035015420153, -22.80154949801098], + [-45.770926639887904, -22.805893206348646], + [-45.768008790900204, -22.83592483237468], + [-45.7669465274947, -22.842313396850127], + [-45.76741318589991, -22.842717252584265], + [-45.77569954017124, -22.84988788185595], + [-45.7812993592528, -22.854733116146633], + [-45.78186574577453, -22.855223154598896], + [-45.79219693150303, -22.857682364129875], + [-45.79274220858166, -22.85702600927414], + [-45.79537819341515, -22.853852916058315], + [-45.8005759383413, -22.847595423476363], + [-45.80132181006998, -22.844784863940937], + [-45.804303004240154, -22.83354956542201], + [-45.80459305457246, -22.83245630057312], + [-45.80978338249795, -22.829352862508948], + [-45.81381670456581, -22.83253248260791], + [-45.81406913515513, -22.83273147577613], + [-45.8161173610315, -22.834346077328185], + [-45.81649791871906, -22.83410961221597], + [-45.821706291086244, -22.83087312065353], + [-45.823347283030124, -22.829853330974313], + [-45.82426651168478, -22.830604022861504], + [-45.82505214506035, -22.831245604082483], + [-45.82947242752944, -22.834855228736174], + [-45.83478175329533, -22.83411614610218], + [-45.840887058652, -22.83326602247349], + [-45.84172129104467, -22.833149841413633], + [-45.84810849367279, -22.83779693620524], + [-45.848157499727115, -22.838024950619193], + [-45.85006292276175, -22.846890162267563], + [-45.850534773163716, -22.847169112940033], + [-45.85570595000113, -22.850226081367104], + [-45.85710480999132, -22.85105297710743], + [-45.85726089595978, -22.851145241566133], + [-45.857263017590036, -22.851211699861405], + [-45.857564985345675, -22.860672124054005], + [-45.86224398112988, -22.866646818342986], + [-45.86249793645951, -22.866971082505305], + [-45.86383344730395, -22.86867630926593], + [-45.863887724070864, -22.868695901466992], + [-45.86666335558143, -22.869697786649834], + [-45.87100761690753, -22.87126576148422], + [-45.87103829228823, -22.87128174544766], + [-45.872876757058755, -22.872239694644854], + [-45.873363701399335, -22.87249341618742], + [-45.87502319796978, -22.873358077320734], + [-45.87900312863983, -22.875431667387204], + [-45.87936546909936, -22.875444543525735], + [-45.88889612410576, -22.875782928014292], + [-45.8887328917413, -22.875008105825533], + [-45.88868218884602, -22.874767431267752], + [-45.88839384697126, -22.873398732904644], + [-45.888092440733985, -22.871968005817056], + [-45.88790554237525, -22.871080821603385], + [-45.8900607936562, -22.85794142646269], + [-45.89407897372901, -22.857081124250854], + [-45.893601712236205, -22.855144985407563], + [-45.892962528632644, -22.85255191586089], + [-45.89101207111742, -22.84463885342501], + [-45.893981630953704, -22.839169403523037], + [-45.905651976591024, -22.834059113892472], + [-45.90877043063322, -22.829399265654036], + [-45.90703016350585, -22.825450773199734], + [-45.90518261668662, -22.821258670430304], + [-45.90428443484713, -22.81922061092727], + [-45.90891455346402, -22.817748386121085], + [-45.91191965550941, -22.816792767886938], + [-45.912645976593396, -22.81656178757678], + [-45.918268172284705, -22.820784027159817], + [-45.921188070611755, -22.822976693359223], + [-45.92256120987431, -22.82400779916185], + [-45.92274337663881, -22.82466500778213], + [-45.923454393575035, -22.827230126752532], + [-45.92472659146329, -22.831819651465022], + [-45.9279069998247, -22.835312521617634], + [-45.92942335797914, -22.836977782003384], + [-45.93423171994945, -22.842257997642513], + [-45.9369274643264, -22.84521807138154], + [-45.938192629853994, -22.845278205865768], + [-45.95038990097146, -22.845857436701976], + [-45.95116547105012, -22.846435694036636], + [-45.95163017550809, -22.846782169330115], + [-45.956284685502034, -22.85025233424688], + [-45.95631491610733, -22.850309419007505], + [-45.96017368900758, -22.85759563169054], + [-45.960524792743705, -22.857440050653587], + [-45.964813380657446, -22.85553959323624], + [-45.976478019472594, -22.865401238527177], + [-45.99233445019896, -22.86956181361558], + [-45.99231240249557, -22.870207329217095], + [-45.99222933047081, -22.872639300989544], + [-45.99206471174921, -22.877457553435235], + [-45.99935402454589, -22.879206535030796], + [-46.000392553407444, -22.879455687733834], + [-46.001662145082975, -22.879760264513514], + [-46.00314838954391, -22.881833009098717], + [-46.00319754061243, -22.88190155500387], + [-46.008423462690416, -22.889189204343964], + [-46.010028446183576, -22.888802362399225], + [-46.015809070440746, -22.88740892389392], + [-46.02731186640174, -22.88463538893901], + [-46.03563447540893, -22.888605137951735], + [-46.04455021640985, -22.892857115539748], + [-46.051756450755555, -22.896293299307903], + [-46.061674013265595, -22.89404144516148], + [-46.06816033830315, -22.89256828426411], + [-46.075373498014926, -22.89092968028913], + [-46.08027778127471, -22.891787223910253], + [-46.08536564562982, -22.892676701254867], + [-46.09519842359937, -22.894395219521588], + [-46.10473469822046, -22.902217556796177], + [-46.107833668913145, -22.904759272270127], + [-46.108648283769135, -22.90542738049446], + [-46.112500801918586, -22.906480125699606], + [-46.11935495237675, -22.908352842533635], + [-46.12359246450054, -22.90951046557687], + [-46.1351600935265, -22.919381975903523], + [-46.135560055435604, -22.919723256627552], + [-46.13907368123471, -22.922721269862596], + [-46.15396938177079, -22.912366542985172], + [-46.15222014987441, -22.911097656045587], + [-46.14778879474045, -22.90788299247465], + [-46.147373585721034, -22.907581772252662], + [-46.145146942304706, -22.903963941914828], + [-46.13788623350374, -22.892165528489333], + [-46.13686620035473, -22.890507851385536], + [-46.13811473951202, -22.888216686992205], + [-46.14059197387731, -22.88367046100249], + [-46.14208966746938, -22.880921688943705], + [-46.142320496522025, -22.878269323905023], + [-46.14388705294541, -22.860262713242225], + [-46.14408603019013, -22.857974850727743], + [-46.14474699800304, -22.858337716460454], + [-46.15424059808161, -22.863549147902702], + [-46.15530763122695, -22.864134831236598], + [-46.1567948252489, -22.86438248708526], + [-46.18498028314467, -22.869073361433127], + [-46.18547907514839, -22.869156328202916], + [-46.18875280792431, -22.867221457328025], + [-46.19055817181099, -22.866154377502575], + [-46.19217740264251, -22.86519727886707], + [-46.193509442653706, -22.866194878389656], + [-46.19522181197432, -22.867477282366224], + [-46.19981148302819, -22.870914326246098], + [-46.20102881636371, -22.87130030117838], + [-46.20494872893822, -22.872543097712292], + [-46.20635425137177, -22.872988686802504], + [-46.209410783967826, -22.873957641049085], + [-46.23412396508641, -22.881789459966487], + [-46.23426171910889, -22.882211400868094], + [-46.23555850649461, -22.88618337070636], + [-46.2381102329376, -22.893998640545362], + [-46.23815055909499, -22.894122143773465], + [-46.23819167116236, -22.894102902596877], + [-46.239210915265204, -22.89362587271389], + [-46.24652689855782, -22.890201508666728], + [-46.248292990539525, -22.889374778183452], + [-46.258509997798846, -22.890541234726854], + [-46.26261385945467, -22.878424065411703], + [-46.266842976599804, -22.875653962438534], + [-46.26917973071763, -22.876467167425552], + [-46.26956752026798, -22.876602116574205], + [-46.27178242567126, -22.877372872441423], + [-46.279005815465744, -22.87831440068357], + [-46.279438263579486, -22.87884068300028], + [-46.279566600710815, -22.87899686633003], + [-46.28538691542064, -22.886079636311653], + [-46.28994823860079, -22.891629760257874], + [-46.295007904772206, -22.8977856684604], + [-46.299388720067974, -22.896108622437012], + [-46.30426835716358, -22.893049728221605], + [-46.30616032692312, -22.89186362563669], + [-46.31397964508053, -22.88696108074945], + [-46.31594335325565, -22.887772516264732], + [-46.322209941396316, -22.890361757546778], + [-46.33596223335198, -22.896042820594356], + [-46.33663710344755, -22.896702499518124], + [-46.344616838217334, -22.904501991105622], + [-46.34468743989363, -22.904443180227663], + [-46.350758693722874, -22.89938550927254], + [-46.35628953748198, -22.90026992748544], + [-46.372973853262714, -22.879457503860284], + [-46.37386321520011, -22.879411492506463], + [-46.374495757317995, -22.879378764695048], + [-46.37781439521814, -22.879207015813073], + [-46.3775154083767, -22.87815263520142], + [-46.37685920056532, -22.875838471522755], + [-46.37547995857566, -22.870974301059594], + [-46.38417099351054, -22.86993312521225], + [-46.381091051826075, -22.864491894586408], + [-46.38081959490077, -22.864012301243072], + [-46.37300775600963, -22.86027971864841], + [-46.372557317295545, -22.860064477381947], + [-46.37387513707511, -22.84668048624605], + [-46.3722589077517, -22.840798232491867], + [-46.37131935871068, -22.837378594985722], + [-46.37067653069616, -22.835038854474178], + [-46.37388597888143, -22.831231594419823], + [-46.37429642093851, -22.83074467791746], + [-46.37678957032297, -22.82778688780533], + [-46.374493502969834, -22.820209540392725], + [-46.373930702362365, -22.81764941968996], + [-46.373010255508724, -22.815491464853558], + [-46.369690658541614, -22.807708319650523], + [-46.36519462445837, -22.797165724627074], + [-46.36251993656988, -22.79089330375182], + [-46.361841320228834, -22.7893018023349], + [-46.36167390213946, -22.788909166166487], + [-46.35885572304013, -22.787759753563016], + [-46.35473005115425, -22.786076954556854], + [-46.352351655180314, -22.785106779729222], + [-46.35231651010167, -22.785092443304663], + [-46.352268023454826, -22.78500795247433], + [-46.34939410972583, -22.77999981468327], + [-46.348311097421245, -22.778112447519664], + [-46.34803305229763, -22.777627890015516], + [-46.34356268226983, -22.777430738167116], + [-46.34346719606635, -22.777426525675086], + [-46.34342435320597, -22.7772377813313], + [-46.34209203034309, -22.771368076837348], + [-46.341698194520035, -22.769632930469403], + [-46.341624512994905, -22.769308304443978], + [-46.33317503980846, -22.766307664171748], + [-46.33254462328843, -22.766083763999585], + [-46.334519950073364, -22.760268095814524], + [-46.354869971403055, -22.757060781469484], + [-46.3561041090178, -22.757999768078324], + [-46.35790834586537, -22.75937247505575], + [-46.360458439249946, -22.761312573965537], + [-46.36369589781435, -22.757539348877142], + [-46.366366166678645, -22.754426941486543], + [-46.36776187634343, -22.752800047674384], + [-46.36877768524581, -22.75161594439599], + [-46.37298011689574, -22.74671694571249], + [-46.38147912646576, -22.743970766468784], + [-46.385783439751414, -22.740272632776115], + [-46.38709510072891, -22.740848180389474], + [-46.39003799464761, -22.742139448459177], + [-46.39298884768087, -22.743434135045103], + [-46.39849456908793, -22.742406199242886], + [-46.40662014789929, -22.740888737820768], + [-46.406678702258354, -22.74085555805314], + [-46.4144655705487, -22.736442772114376], + [-46.4171833309649, -22.73490245801175], + [-46.421457079145625, -22.732480095965556], + [-46.42673044676848, -22.73566672180138], + [-46.42682853555723, -22.735726085103526], + [-46.43672399275026, -22.73191059469374], + [-46.439431684004575, -22.726694194378798], + [-46.445266228639234, -22.72707082164416], + [-46.44581558799171, -22.727106272487198], + [-46.447336144314164, -22.72720438600729], + [-46.45009233584045, -22.72738219160792], + [-46.4527008927828, -22.727550429207128], + [-46.45638357208772, -22.713755220359637], + [-46.45661182899168, -22.712900047496607], + [-46.45707703875671, -22.711157075364422], + [-46.45803546649678, -22.707565997059607], + [-46.45816935655573, -22.70706431086146], + [-46.46301222736897, -22.706722925904803], + [-46.463354333625915, -22.70639064550815], + [-46.464113703317736, -22.705653076744746], + [-46.46861713421898, -22.701278668706898], + [-46.47309985886417, -22.704950030467096], + [-46.47817108668472, -22.699543224678845], + [-46.4756626557882, -22.697834245488792], + [-46.470554366116204, -22.694353767137496], + [-46.46995387536914, -22.693944608887115], + [-46.47143266720641, -22.692551641064494], + [-46.47854443119857, -22.68585426126498], + [-46.480597599396525, -22.67834541734733], + [-46.48061414258566, -22.678284910930394], + [-46.48046444067229, -22.678218304894987], + [-46.479772876487566, -22.6779106086254], + [-46.474312005601895, -22.67548077087688], + [-46.470343561694094, -22.673714835179155], + [-46.469069588856655, -22.67314789577944], + [-46.46141197347738, -22.675934797923592], + [-46.4612849539715, -22.67598102092015], + [-46.45584921720768, -22.671702997059523], + [-46.45511838775642, -22.671127789971656], + [-46.451084890661136, -22.67031664040049], + [-46.44371290670709, -22.668833831805777], + [-46.44014653521754, -22.66811635898289], + [-46.438758311754086, -22.667359668625657], + [-46.42950056180703, -22.66231299000265], + [-46.427691801721, -22.661326882692354], + [-46.41997898164625, -22.664954695308477], + [-46.41339719741432, -22.659819640005452], + [-46.40565197801406, -22.662583639631677], + [-46.4059510595078, -22.663325539253105], + [-46.40835820597142, -22.669296455934152], + [-46.40834157650102, -22.669317810611386], + [-46.405840886714415, -22.67252895281318], + [-46.40031726597693, -22.668393943888656], + [-46.394307822276055, -22.663894794729398], + [-46.3935531908366, -22.66332978420973], + [-46.393036777603434, -22.662943129062356], + [-46.39234131437162, -22.6531159281306], + [-46.396290035467196, -22.64595128937228], + [-46.406026370013635, -22.640546787763167], + [-46.42060718042133, -22.638048847413447], + [-46.42459760098404, -22.63356846635261], + [-46.42307593838256, -22.62531873531232], + [-46.422983059661014, -22.62481517540103], + [-46.405388083928834, -22.62100417640994], + [-46.40473558603034, -22.620862808297108], + [-46.41146810280772, -22.61347239131238], + [-46.42307295324797, -22.600730639718954], + [-46.42415378169912, -22.599543739570585], + [-46.424178800638586, -22.59951626491709], + [-46.42334601024564, -22.598517796052217], + [-46.42246177233019, -22.597457626707342], + [-46.421911270554425, -22.596797585692457], + [-46.41733165380236, -22.591306438231413], + [-46.41287507328164, -22.585962344498814], + [-46.41242186540953, -22.585418855723887], + [-46.41633219694471, -22.585052973695372], + [-46.42526496001095, -22.584216779758364], + [-46.42870026979224, -22.583895063095227], + [-46.42948746950309, -22.5823233167647], + [-46.43270489580884, -22.575898806114765], + [-46.43373306946804, -22.573845593754957], + [-46.424422998889725, -22.565693687526004], + [-46.42150929837525, -22.563142173361108], + [-46.41720358083306, -22.55937143601925], + [-46.41180890146161, -22.554646634657683], + [-46.41139422535309, -22.55428343185822], + [-46.41021137679418, -22.550473579385912], + [-46.40720835045132, -22.540800419333433], + [-46.40692970575114, -22.539902817568258], + [-46.41167344653264, -22.536671792064798], + [-46.41204092878809, -22.53730433472955], + [-46.412957125833906, -22.538881349714078], + [-46.414172719791466, -22.540973653015303], + [-46.41792156123269, -22.547425855140418], + [-46.41835499854324, -22.54743530606757], + [-46.42595737691713, -22.54760088253251], + [-46.42770333387517, -22.546651485079146], + [-46.431931223058804, -22.54435234517578], + [-46.439959686382274, -22.53998587821848], + [-46.43981414077934, -22.538316245099796], + [-46.43962631489405, -22.536161597337696], + [-46.439496370698194, -22.53467094401658], + [-46.449174429127076, -22.53080451423514], + [-46.45046229580166, -22.52819922299292], + [-46.451865680588455, -22.525360093825437], + [-46.45329535055886, -22.52246762687804], + [-46.45332030448986, -22.522456223955], + [-46.4533443996743, -22.522407086287252], + [-46.45493225757171, -22.521702888323695], + [-46.461699010637275, -22.522430219102315], + [-46.46227309533811, -22.522491911892573], + [-46.46490109536021, -22.522774297881373], + [-46.46683438862656, -22.51849956730829], + [-46.48212114787384, -22.51911484369995], + [-46.48221663593364, -22.519118682428594], + [-46.484546967953435, -22.519212346847073], + [-46.49115532502862, -22.510357367571693], + [-46.495665669166996, -22.511938566117685], + [-46.50526587357358, -22.517017733465675], + [-46.506967817245474, -22.506929634090582], + [-46.51595565196224, -22.50395996313088], + [-46.515984431174246, -22.503949622819047], + [-46.52824389484804, -22.499437262713077], + [-46.54211533418471, -22.494329942291294], + [-46.54212362754622, -22.4943268882603], + [-46.53651335869561, -22.48824220668286], + [-46.53603911401752, -22.48772782982394], + [-46.530644122675994, -22.470823622250393], + [-46.542928188984874, -22.46773506001271], + [-46.549841474229346, -22.469519181122536], + [-46.55152997074439, -22.459950707993624], + [-46.550606594817886, -22.458326885648], + [-46.54941191084846, -22.456225896009713], + [-46.5487863578485, -22.455125765120272], + [-46.5547904426823, -22.446621322922766], + [-46.56165196304816, -22.446706713597177], + [-46.56263049558485, -22.44727770710691], + [-46.56724303078714, -22.44996908284172], + [-46.57188098734689, -22.45267507248978], + [-46.5719506263154, -22.452715701278578], + [-46.57262986920671, -22.45311198277904], + [-46.57364817499557, -22.44555713613424], + [-46.581015978317964, -22.441611848564587], + [-46.58511024083185, -22.43941898789647], + [-46.59171058396648, -22.43808533795527], + [-46.60090832618531, -22.441973616928085], + [-46.6017549500076, -22.44233148604275], + [-46.60344419123579, -22.44304551313159], + [-46.61189899236291, -22.435414479915615], + [-46.616278934309236, -22.438605646802255], + [-46.61793200729672, -22.438303462975306], + [-46.62138754922061, -22.437671724414887], + [-46.63158345536167, -22.4358072374804], + [-46.6398652270537, -22.425545921753674], + [-46.64064897065308, -22.425904143888154], + [-46.64354392599651, -22.42722728221791], + [-46.64700750509278, -22.428810215143372], + [-46.65020673478145, -22.426376635989687], + [-46.65403032601706, -22.423467904127047], + [-46.666801625462114, -22.413750655227258], + [-46.66802323396708, -22.40635403762336], + [-46.66782845635931, -22.4057294618462], + [-46.66463061755877, -22.39547465486936], + [-46.66339595767245, -22.39151506081385], + [-46.66494325931756, -22.385860824713657], + [-46.66572026700939, -22.3830211981996], + [-46.666283591507245, -22.380962390186873], + [-46.6661940433389, -22.380713787901495], + [-46.661411044779626, -22.36743429340335], + [-46.66089923948878, -22.36601320275752], + [-46.66215611554345, -22.36577355445892], + [-46.66897009581769, -22.367655975452333], + [-46.67198283752011, -22.3684881682539], + [-46.6752252618701, -22.36938373433655], + [-46.677290485056474, -22.36658588803399], + [-46.67743159654093, -22.366394712423407], + [-46.67903076349867, -22.36422813409467], + [-46.68276287878225, -22.35746469846039], + [-46.68700884581284, -22.35727463906954], + [-46.68729594864291, -22.353383243602035], + [-46.687404669698246, -22.35190950943193], + [-46.68759098577228, -22.349383797331466], + [-46.69070207869071, -22.346734706095464], + [-46.694570903284884, -22.348523336228467], + [-46.69435820151892, -22.347390189056583], + [-46.69378757214593, -22.344350171284127], + [-46.69353450400678, -22.343001933188315], + [-46.697595242520265, -22.34318477506527], + [-46.69709238478106, -22.341498500017444], + [-46.69687566431328, -22.34077174409123], + [-46.69572059037574, -22.336898198371962], + [-46.69570909066209, -22.33685963325591], + [-46.695217633122, -22.335211480826587], + [-46.69892474161035, -22.332286259127773], + [-46.69927261919249, -22.33061346713739], + [-46.700178501936485, -22.326257192802668], + [-46.701174792982684, -22.321465692274746], + [-46.70905839357026, -22.319689295550944], + [-46.709728195573874, -22.319538349721196], + [-46.71079355622409, -22.319298254585124], + [-46.71095796571148, -22.312760276066275], + [-46.712561581219596, -22.313716692123155], + [-46.713327004669665, -22.31417319070067], + [-46.71792777928807, -22.316916964834874], + [-46.72298720741015, -22.307079581783928], + [-46.72323556127236, -22.306596643138928], + [-46.71573119790531, -22.306586053990564], + [-46.712019764101115, -22.30276963238072], + [-46.7110779084927, -22.301801092579375], + [-46.705734230874974, -22.296305704092116], + [-46.70536083035523, -22.295921682354468], + [-46.71049144716204, -22.284968108868426], + [-46.70899114689919, -22.28366284980445], + [-46.702818571850536, -22.278292357619687], + [-46.70231261780532, -22.277852123018516], + [-46.70333069468755, -22.276874686309576], + [-46.70904317050786, -22.27138982768353], + [-46.710591452816956, -22.26990311583887], + [-46.7108670282172, -22.263920486922366], + [-46.70347499828399, -22.25517981225794], + [-46.698864920573776, -22.251018379507748], + [-46.69401520530866, -22.24664026553646], + [-46.68898634790792, -22.24859199743497], + [-46.68860072663883, -22.248741650280042], + [-46.693116833465226, -22.23760488932881], + [-46.68618398780921, -22.23031147179979], + [-46.683331009714855, -22.22730984258388], + [-46.68300563380112, -22.226967503336837], + [-46.6812705682802, -22.225778057019774], + [-46.67845234743927, -22.223845995787638], + [-46.67796916432727, -22.223514735128806], + [-46.680227599267695, -22.216856189792242], + [-46.677169973440286, -22.2015342024657], + [-46.67661246683499, -22.200025912463044], + [-46.67543536581761, -22.196841275137995], + [-46.673756397795906, -22.19229864421541], + [-46.67326727786807, -22.19097523352052], + [-46.670776051457565, -22.18423442378124], + [-46.67118242096252, -22.181929073451506], + [-46.67143938554189, -22.180471242445044], + [-46.67181954783359, -22.1783143904771], + [-46.674276785105405, -22.176278464885947], + [-46.66974759710151, -22.175286044317527], + [-46.66808124547999, -22.1765635098551], + [-46.66310918342809, -22.18037494842685], + [-46.65077392734965, -22.177508177491326], + [-46.646486085938875, -22.180068261526323], + [-46.64556125465618, -22.180620408668535], + [-46.640942470902175, -22.166672231704215], + [-46.64077727613653, -22.166173324954368], + [-46.6402397919823, -22.16455004416807], + [-46.640426337328805, -22.157909849661394], + [-46.640432408976416, -22.157693680202115], + [-46.63982749667966, -22.157528959324793], + [-46.631938880066016, -22.155380615925914], + [-46.61301690454731, -22.150225761186825], + [-46.60815057294577, -22.14312487980462], + [-46.60739123473245, -22.142016798675392], + [-46.60714715604091, -22.14166061766621], + [-46.60654166474817, -22.1414070236352], + [-46.60307023895518, -22.139953051461426], + [-46.601021115728585, -22.139094750860625], + [-46.59898084892435, -22.136879898039542], + [-46.598505423765694, -22.13636377868715], + [-46.59905770307897, -22.13590649692367], + [-46.60185792183172, -22.133587860817237], + [-46.603568209118194, -22.13217164124076], + [-46.61609116263502, -22.13062988680498], + [-46.61813123606048, -22.124778796210865], + [-46.618504108175884, -22.123709298568706], + [-46.62086401559823, -22.11693993845331], + [-46.62202009484716, -22.113623420454616], + [-46.62363382521, -22.108993656135212], + [-46.6299957800093, -22.108187690746107], + [-46.63164824587219, -22.107978304573695], + [-46.63431552156952, -22.10764029286656], + [-46.63633251694498, -22.105301879385074], + [-46.63778212437836, -22.103621197770504], + [-46.64029713529076, -22.100705139292756], + [-46.643659034800464, -22.096806862505396], + [-46.64541567190033, -22.094769832140106], + [-46.646473993756146, -22.094005567761375], + [-46.6490158872186, -22.092169877809358], + [-46.64998125491512, -22.091472688908794], + [-46.65142689981653, -22.091876614867044], + [-46.65248542673668, -22.092172367480764], + [-46.6542047826992, -22.092652739343293], + [-46.65624381937639, -22.093222400502366], + [-46.657684557334946, -22.09362489307911], + [-46.662168010170696, -22.094877323625447], + [-46.66257641083236, -22.094991401441035], + [-46.66363952672335, -22.095288354266284], + [-46.669018646813385, -22.09679074698205], + [-46.67003740735164, -22.097075265118356], + [-46.67089910544412, -22.097315913455116], + [-46.680839913264954, -22.0909291041125], + [-46.68644078081652, -22.093002982653275], + [-46.68712943824334, -22.09325796092161], + [-46.68792199585429, -22.093551404194873], + [-46.69147042681946, -22.09131552941509], + [-46.69273329273059, -22.090519755581393], + [-46.69347480321853, -22.09005249560331], + [-46.69433430076367, -22.090680906740825], + [-46.697789451348285, -22.09320700531657], + [-46.70044471569467, -22.095148197486008], + [-46.71116442759943, -22.092406284577443], + [-46.71137038841438, -22.092353595124447], + [-46.71455095673163, -22.091539893730292], + [-46.71461732103124, -22.091522914608916], + [-46.71534516668536, -22.091336695187714], + [-46.71949029990134, -22.0832294996846], + [-46.721677958319525, -22.079645933844652], + [-46.72289011092696, -22.077660220462857], + [-46.723363604691464, -22.076884535949745], + [-46.72341768368142, -22.076795942205507], + [-46.72322845593001, -22.07670427370489], + [-46.721045003413515, -22.075646510635192], + [-46.7208740691707, -22.07556370059457], + [-46.71996547694662, -22.075123523748584], + [-46.71675875881784, -22.073569938177872], + [-46.709566673988064, -22.074724883764503], + [-46.70609240360174, -22.0789469659841], + [-46.702838646643706, -22.07692204245378], + [-46.6985596941093, -22.074258933426968], + [-46.69637365012132, -22.072898321205844], + [-46.68392904035698, -22.073840519953265], + [-46.68229018256372, -22.07341290627491], + [-46.67145857025531, -22.07058624406811], + [-46.66480852612714, -22.06885042635119], + [-46.664760915179606, -22.068837997692764], + [-46.66442481043064, -22.068393450501592], + [-46.6629856184186, -22.066489876874314], + [-46.65995169742828, -22.062476826152253], + [-46.65849618150709, -22.060551488729214], + [-46.65805876234478, -22.05997286542464], + [-46.676340439233925, -22.05541363002813], + [-46.67932517680693, -22.048433148724325], + [-46.68167145952245, -22.04518414107091], + [-46.68539954898627, -22.03728030103123], + [-46.68098060941839, -22.026673965269183], + [-46.680884716543424, -22.026443788728137], + [-46.675194267022455, -22.022209452925345], + [-46.66224248337673, -22.02366393253677], + [-46.6621763417688, -22.02367135743691], + [-46.65768229135561, -22.020032126165408], + [-46.655186808214445, -22.018011191620637], + [-46.65474252018497, -22.01765138172149], + [-46.65016215053139, -22.009971789645363], + [-46.6498948768864, -22.009523645691825], + [-46.640318734218006, -22.00885978726407], + [-46.628056410213496, -22.01544022081032], + [-46.615110568869234, -22.01736038525163], + [-46.61286536805917, -22.006850515197563], + [-46.612436075839234, -22.00484088149834], + [-46.614202397459145, -22.001900182616648], + [-46.61797282096269, -21.99562235279563], + [-46.6184274282213, -21.994865371330167], + [-46.62198826153836, -21.99524088944911], + [-46.63097307772405, -21.981152213191546], + [-46.637439910734535, -21.980778981588756], + [-46.64418294052497, -21.97452957333551], + [-46.64510172051193, -21.972503153395873], + [-46.64693363642467, -21.968462530753893], + [-46.649830844589395, -21.962071584754515], + [-46.652414217208744, -21.956372278931703], + [-46.653798048099695, -21.953319089666323], + [-46.653618963517644, -21.941680879714774], + [-46.65583081381939, -21.940200140616334], + [-46.65644378461053, -21.939789771123795], + [-46.66727697294983, -21.932536363014062], + [-46.66639740483346, -21.92794308736254], + [-46.6653093104281, -21.92226063463575], + [-46.66498611769806, -21.920572751140117], + [-46.673140807599516, -21.9080653023362], + [-46.67126752605892, -21.90607192296304], + [-46.667163713662475, -21.901704774751806], + [-46.66427097511543, -21.89862621812574], + [-46.66375934405822, -21.89808170512157], + [-46.65335118257954, -21.896029287067588], + [-46.653142348118315, -21.89598809922994], + [-46.652793317146056, -21.89502435260143], + [-46.64917937933598, -21.885044931386627], + [-46.647510939484704, -21.880437386528943], + [-46.65381648262097, -21.87999964195688], + [-46.65779845221069, -21.874149499325718], + [-46.657998003038514, -21.873592225680948], + [-46.660756317798516, -21.865888642122204], + [-46.66612139893906, -21.85090150678254], + [-46.666775887911605, -21.850848714773768], + [-46.672249284047005, -21.850407117573024], + [-46.67707970481283, -21.850017239784073], + [-46.677141823542684, -21.850014594265538], + [-46.68046585604496, -21.846284649663197], + [-46.680890195797225, -21.845808688834662], + [-46.68549369629209, -21.84303638135444], + [-46.69068870453426, -21.837610949539577], + [-46.688232705734805, -21.833234243245755], + [-46.68793521350266, -21.83270408106218], + [-46.685586947826565, -21.82851909839893], + [-46.685472674230326, -21.828315438876466], + [-46.68390708870854, -21.827050089498314], + [-46.67250225388587, -21.817831377552846], + [-46.67104386693725, -21.816652411797715], + [-46.670809815790165, -21.816463201224767], + [-46.670725936041364, -21.816206486393448], + [-46.66921129466702, -21.81157079407633], + [-46.667747420687355, -21.807090269422922], + [-46.667699189490314, -21.80694264317889], + [-46.662827507051965, -21.801777118948774], + [-46.6561599478078, -21.79470666316809], + [-46.65165168671663, -21.7899255035567], + [-46.651175942737325, -21.789420938761427], + [-46.653884606868154, -21.779519652036033], + [-46.65396552227308, -21.77922384321523], + [-46.646013494170646, -21.77602860344516], + [-46.64145020994329, -21.770783188592087], + [-46.63987032222447, -21.7689670322758], + [-46.6394201235192, -21.768449497665877], + [-46.63065929940811, -21.768580752555362], + [-46.62654909159582, -21.766482048296414], + [-46.626004587513584, -21.76620400889388], + [-46.628200901262666, -21.750192028887152], + [-46.62874760927828, -21.74620536077047], + [-46.62902227383788, -21.74420232639797], + [-46.63081572312529, -21.740877600235585], + [-46.62873293735643, -21.738179932732173], + [-46.62610193794448, -21.73477205143478], + [-46.62556244068215, -21.734073229821632], + [-46.62845042271332, -21.72959313514171], + [-46.62755087910244, -21.72749173847398], + [-46.623088009196664, -21.71706541167509], + [-46.62242473799059, -21.715515745518708], + [-46.62329124646719, -21.714253129469895], + [-46.62435127889056, -21.71270848133699], + [-46.62984851408144, -21.70469732303347], + [-46.62960150677008, -21.70163655787319], + [-46.629257070786366, -21.697368554753854], + [-46.62914989854828, -21.696040562742777], + [-46.62754149846733, -21.695027264574666], + [-46.624340578302856, -21.693010591557062], + [-46.623857402455855, -21.692706167306003], + [-46.62126019038132, -21.676048110817057], + [-46.62117873403763, -21.67552564004745], + [-46.61306271388869, -21.67727113434735], + [-46.60896424446037, -21.678152408661887], + [-46.58560952387556, -21.6831720295666], + [-46.57896531417323, -21.684599372626572], + [-46.576922354550305, -21.68503818981618], + [-46.57522263715186, -21.684157517928476], + [-46.570666973518755, -21.681796970730367], + [-46.56585037409014, -21.679301014545256], + [-46.56616077789529, -21.671707473913827], + [-46.56633785959696, -21.66737423696909], + [-46.56658805561054, -21.661250371525405], + [-46.56667261377536, -21.659180305192773], + [-46.5572526322973, -21.65341274283944], + [-46.55648070802702, -21.652940077249603], + [-46.554956592609166, -21.65346192579231], + [-46.54864042055892, -21.65006023616618], + [-46.54824329740379, -21.649846345922537], + [-46.54859129947916, -21.648975106746946], + [-46.5488344616048, -21.64836633075384], + [-46.55295314692905, -21.63805381442937], + [-46.552189952395004, -21.637014594249724], + [-46.54805984970095, -21.63139048014202], + [-46.547674239849336, -21.630865357522076], + [-46.54734168526058, -21.63041248223298], + [-46.540891155895665, -21.62950857333776], + [-46.537865762777784, -21.629084538600473], + [-46.53498083526455, -21.62868013887827], + [-46.534842323749416, -21.628660721498203], + [-46.534825664244224, -21.628450163861885], + [-46.534412319961234, -21.62322599753853], + [-46.534273812208475, -21.621475448770614], + [-46.53425722284617, -21.621265782564368], + [-46.53290385907833, -21.620552299689145], + [-46.51970593022513, -21.613593581348933], + [-46.51861334296877, -21.613017434644416], + [-46.51820239588039, -21.612800729867747], + [-46.515950805311626, -21.60597144080944], + [-46.52425495543632, -21.60109353149572], + [-46.51841021688618, -21.59303408043233], + [-46.51882440938953, -21.59203924283575], + [-46.51945581984574, -21.59052263979798], + [-46.521968503758366, -21.58448692557782], + [-46.518029511371395, -21.57953669967512], + [-46.51293967831266, -21.57313963856754], + [-46.512144575012556, -21.57214027231382], + [-46.51220938632022, -21.570284991258504], + [-46.51226039509682, -21.568824691858747], + [-46.512340425870704, -21.566533311964516], + [-46.51059001391083, -21.565631539666093], + [-46.50306409879336, -21.561754048730258], + [-46.502719833505736, -21.561576664797684], + [-46.50002303545195, -21.554511375185008], + [-46.50076624414458, -21.553265666409825], + [-46.505325675714204, -21.545622855193567], + [-46.51007582402284, -21.53765917168544], + [-46.51108006493332, -21.535857795050937], + [-46.51316140924272, -21.53566324673756], + [-46.51496958080047, -21.535494210531755], + [-46.51705142465966, -21.535299564830098], + [-46.52003831261526, -21.53502025302999], + [-46.520083734740936, -21.534932019470673], + [-46.5218079507496, -21.531582581224093], + [-46.52414982251686, -21.521829346605287], + [-46.523913835450955, -21.521522213896713], + [-46.522554708042186, -21.51975330822331], + [-46.51607621708708, -21.511320913022338], + [-46.51922461312184, -21.50086950507895], + [-46.51897444453419, -21.500585509701146], + [-46.51189857530059, -21.492552338650995], + [-46.50886410551089, -21.48910701791475], + [-46.50931994678209, -21.487477580505953], + [-46.50945655564238, -21.486989252231574], + [-46.510998768009145, -21.481476067039537], + [-46.51154585874274, -21.479520154809872], + [-46.51220693748836, -21.47715662289434], + [-46.51167942598163, -21.475868317055255], + [-46.50985125209441, -21.471403349704016], + [-46.509227159181705, -21.46987907112762], + [-46.51215833370785, -21.467637823584056], + [-46.515259156557285, -21.46526671287702], + [-46.51953281749398, -21.461998520525874], + [-46.51964349345042, -21.45952023418405], + [-46.52012489649994, -21.448737359383948], + [-46.52017467950645, -21.447621983428775], + [-46.525262078778326, -21.445997530326277], + [-46.52645073425387, -21.44561795253422], + [-46.52846658422778, -21.444974198323614], + [-46.53575367597781, -21.449123328108367], + [-46.543420896429645, -21.443564745435996], + [-46.54710975503949, -21.440890089773575], + [-46.54769995221625, -21.440462141046073], + [-46.548711675672806, -21.440545469487287], + [-46.551086057597786, -21.440778884347097], + [-46.555303086445434, -21.441193357904083], + [-46.561387481836775, -21.441791178173553], + [-46.56334091890589, -21.440694510461775], + [-46.56666738233012, -21.438826921244623], + [-46.57036987825622, -21.43674806827808], + [-46.572244208769554, -21.4337421731529], + [-46.57585246150325, -21.42795507465771], + [-46.57648734807642, -21.426936745597207], + [-46.5912981329415, -21.436862191962426], + [-46.59361046081131, -21.43841158050639], + [-46.60186349470209, -21.443941093349046], + [-46.61179107435724, -21.442089467495855], + [-46.61206334888242, -21.442038675351927], + [-46.615231270612725, -21.441447670769666], + [-46.620014860141, -21.435196796605652], + [-46.617419307556574, -21.431945671073166], + [-46.61653991918768, -21.430844134781278], + [-46.61605159777457, -21.430232447508143], + [-46.61638448532772, -21.429923970371533], + [-46.61876124643324, -21.427721431232754], + [-46.620643016438194, -21.425977519222982], + [-46.619536568483554, -21.423669778453085], + [-46.618772945432774, -21.422077037763334], + [-46.61839445707041, -21.421287587651435], + [-46.62654047245929, -21.411468022335868], + [-46.6373155422774, -21.41067022598581], + [-46.63879051736766, -21.40199025682702], + [-46.64748317302196, -21.393587063915852], + [-46.64743198428441, -21.385903866352603], + [-46.64740295168658, -21.381551033757287], + [-46.647392134101246, -21.3799300539105], + [-46.64828158553293, -21.375807953536647], + [-46.646988868034555, -21.37449865328263], + [-46.645376660718945, -21.37286572378905], + [-46.64489480355385, -21.372377664324777], + [-46.647172397566735, -21.364174938830995], + [-46.64826349874471, -21.364136745793864], + [-46.653204593412866, -21.36396369705332], + [-46.659601151882896, -21.363739455406467], + [-46.66669730237084, -21.36127268454953], + [-46.66696574802486, -21.36176510185703], + [-46.673893955953005, -21.374472659673906], + [-46.67404693001707, -21.374501156992626], + [-46.680119650853825, -21.375632317438484], + [-46.68239809522577, -21.376056661907853], + [-46.68398857419531, -21.37635285838364], + [-46.69217945171913, -21.382727833644864], + [-46.692222551746646, -21.382927473149053], + [-46.69386596374441, -21.390539534546573], + [-46.69487485290427, -21.391733740543923], + [-46.70593539749488, -21.404824479635217], + [-46.714694572992975, -21.392642795001237], + [-46.720417049212294, -21.389622589698483], + [-46.72140019710073, -21.390165335186552], + [-46.724019406706795, -21.39161122234149], + [-46.72407755999971, -21.391625528842326], + [-46.73012325014822, -21.393112730447267], + [-46.73324484005556, -21.393880528496954], + [-46.73434260858068, -21.394150524680033], + [-46.73965995266515, -21.39072790743841], + [-46.747138638715924, -21.385913487680977], + [-46.753796486082, -21.381626884148513], + [-46.76210959207404, -21.374949587776943], + [-46.76175360928553, -21.373647811777406], + [-46.759106289282684, -21.36396646952439], + [-46.758810975352645, -21.362886442837663], + [-46.76467767476007, -21.360044617854523], + [-46.7763705953413, -21.36280574214036], + [-46.776646385251496, -21.36323224595385], + [-46.78024916279163, -21.368803646440416], + [-46.78146654052568, -21.370686126524152], + [-46.78617443576207, -21.368911884272173], + [-46.78731694435205, -21.36988849790692], + [-46.78833128744244, -21.37075554037462], + [-46.79173384474731, -21.37366387877367], + [-46.792926800759666, -21.373341926687086], + [-46.80022593975804, -21.371371826025218], + [-46.819602249089186, -21.366140102954347], + [-46.83081128177161, -21.366113325888083], + [-46.831458081640335, -21.366681257774204], + [-46.83604474125045, -21.370708463008373], + [-46.83520934424677, -21.38249926904813], + [-46.83570871565353, -21.38297990418632], + [-46.83704494760016, -21.38426598083746], + [-46.84205637816213, -21.389089045133936], + [-46.842122068573126, -21.38909199479335], + [-46.85575820350282, -21.389703733004023], + [-46.85608393054522, -21.39027350787549], + [-46.85822723515518, -21.394022558451702], + [-46.85850803153544, -21.3940830714416], + [-46.859443396387626, -21.394284643502615], + [-46.86354559674774, -21.39516860587324], + [-46.86531573666903, -21.395550011201742], + [-46.86551723641086, -21.39614072932772], + [-46.86606951739345, -21.397759781723426], + [-46.86809723720675, -21.403703958011654], + [-46.874191824653984, -21.404775413781632], + [-46.87633907742338, -21.405152855418024], + [-46.878725072730376, -21.405572229317713], + [-46.88400812610554, -21.406500677977693], + [-46.88476174797594, -21.40663310603409], + [-46.88771457955924, -21.40969355843516], + [-46.88847898365902, -21.410485796576296], + [-46.889172189425686, -21.411204234637964], + [-46.89349451827357, -21.415683695941723], + [-46.89357640531694, -21.415653319113776], + [-46.90026389833433, -21.413172336713107], + [-46.90595720125835, -21.418840665278452], + [-46.90828575809598, -21.421158845789208], + [-46.908512590754405, -21.421150597704838], + [-46.91037313741863, -21.42108293279146], + [-46.91567634632846, -21.420889949130654], + [-46.916896054971694, -21.420845539878776], + [-46.91717731963176, -21.421303092335506], + [-46.92074811943754, -21.427111713564948], + [-46.920838600480884, -21.427024796877475], + [-46.92542559636108, -21.42261827480471], + [-46.92927575252051, -21.42376304276539], + [-46.933024260595744, -21.42487748999403], + [-46.934221627692125, -21.42523345196207], + [-46.94059419920877, -21.42280020819452], + [-46.941000630367526, -21.422645008592976], + [-46.9490622130934, -21.41956632705289], + [-46.95663425827196, -21.424723915955674], + [-46.958502677391145, -21.423083647678116], + [-46.959790645616096, -21.421952914646372], + [-46.96277390521584, -21.419333734379936], + [-46.96357502330462, -21.419642512134036], + [-46.965945124795034, -21.420556000267933], + [-46.97039715374418, -21.422271793313705], + [-46.97431820791568, -21.41783039011941], + [-46.97477505434954, -21.41836737872637], + [-46.97482051394301, -21.41842081280927], + [-46.98130594125558, -21.426043448064082], + [-46.984339255684894, -21.42667544738931], + [-46.98684312875742, -21.421620497203616], + [-46.98876063544524, -21.42281871002332], + [-46.99072786694418, -21.424047955150076], + [-46.99270109490073, -21.425280906764588], + [-46.99347304167178, -21.424802525648253], + [-46.997428984700555, -21.42235088415348], + [-46.99964567001019, -21.420977040131664], + [-47.00645260791563, -21.421728689744597], + [-47.01120827876411, -21.422253663998003], + [-47.01136644429271, -21.421669905308484], + [-47.01279617405501, -21.416392753361663], + [-47.012813184176956, -21.416329965593924], + [-47.00818163000914, -21.411202519299103], + [-47.007685723578234, -21.410653491587258], + [-47.010030576064054, -21.407161040435636], + [-47.01022449592589, -21.40687220353069], + [-47.014639345921566, -21.400296009591703], + [-47.01478943042709, -21.400072434963462], + [-47.0162186319295, -21.397943365615138], + [-47.01438375363558, -21.394293997166926], + [-47.014165267373016, -21.39385944140347], + [-47.00900485193885, -21.39292004231546], + [-47.00870368576004, -21.392865213061334], + [-47.004553880786304, -21.383549413750817], + [-47.007574281281336, -21.375733224773175], + [-47.00825103795521, -21.373981762386954], + [-47.00943386154723, -21.370920452952813], + [-47.009507243087846, -21.37073052586881], + [-47.00837557136463, -21.36956735411321], + [-47.002953460476085, -21.363993997802808], + [-47.00026454318825, -21.361229878228997], + [-46.99731508659861, -21.35819778246654], + [-46.997272093445666, -21.358153583550244], + [-46.996810482447806, -21.357679024349082], + [-46.99689789659148, -21.357247898256315], + [-46.998205292477216, -21.350799381438616], + [-46.99855619124634, -21.34906848781996], + [-47.00009503926175, -21.349164844440228], + [-47.00059680801596, -21.349196260175525], + [-47.00360074521375, -21.349384305236825], + [-47.00843031252509, -21.346340158232614], + [-47.00882067466565, -21.346094094627016], + [-47.01803018991276, -21.34028835629533], + [-47.02136260032642, -21.33339327669831], + [-47.02305553097741, -21.329890109621676], + [-47.02372992398721, -21.32849453199758], + [-47.02256716131747, -21.32560683633733], + [-47.02144641420884, -21.322823396663274], + [-47.020958669552286, -21.321612027657565], + [-47.0238238178908, -21.31956816482948], + [-47.02757974706781, -21.315015340639764], + [-47.03051587663282, -21.311713106726437], + [-47.03515241792903, -21.311003062730073], + [-47.034045416034694, -21.308631776631458], + [-47.033834032822625, -21.308178969360057], + [-47.032983637884456, -21.306357300431543], + [-47.03027774221199, -21.300560617594908], + [-47.029764311997134, -21.29946068075487], + [-47.042103251562246, -21.290115539119384], + [-47.04233982061255, -21.289936346332528], + [-47.042015205191994, -21.28890482897936], + [-47.039504477223524, -21.280926226278698], + [-47.04250862414634, -21.27222389557959], + [-47.04389083487226, -21.268219482080244], + [-47.04419546636498, -21.26733689254197], + [-47.045337760606344, -21.265731150247284], + [-47.049676336523326, -21.259631892041114], + [-47.05127932739083, -21.25737819515505], + [-47.051387003473174, -21.256462330075042], + [-47.05190412931077, -21.252063509701838], + [-47.05209054498331, -21.25047769060757], + [-47.05225282130331, -21.246500510660425], + [-47.06306327449928, -21.239294944303175], + [-47.07725910549235, -21.240205309991715], + [-47.0774853777411, -21.238863972206236], + [-47.078102859500774, -21.235203359030766], + [-47.078862784996815, -21.230697910804572], + [-47.07888317078486, -21.230577041614602], + [-47.07675097014984, -21.229036313000023], + [-47.07491456796654, -21.227709285183767], + [-47.072702029323004, -21.226110399105504], + [-47.072303679989574, -21.22582252668763], + [-47.06798318230069, -21.214421306014845], + [-47.06793505395219, -21.214294293679462], + [-47.067689610170085, -21.214157799533066], + [-47.064556651222986, -21.21241547498005], + [-47.06218033570225, -21.21109387929664], + [-47.0617310041067, -21.210843976106233], + [-47.06229295477084, -21.210346668206096], + [-47.06532235960187, -21.20766564442831], + [-47.065540196218855, -21.207472852491385], + [-47.08654392939008, -21.207399176993572], + [-47.095622228287674, -21.209654886645687], + [-47.0959188057418, -21.210116190099047], + [-47.09700638207577, -21.211807806867125], + [-47.098460612909015, -21.214069657579284], + [-47.09985654849659, -21.20972025931884], + [-47.10110268144911, -21.20583731833344], + [-47.10279942061922, -21.200549849574752], + [-47.11011496690427, -21.193727785156355], + [-47.11714067904694, -21.187175011399088], + [-47.11849993824405, -21.185907139013075], + [-47.11853387438498, -21.17532853313941], + [-47.12361840803721, -21.167891781690876], + [-47.12319401119661, -21.166940827166602], + [-47.1220981525917, -21.164485265973674], + [-47.11727568911296, -21.153678424567147], + [-47.118570026756615, -21.149026053614605], + [-47.12205659407611, -21.147002895481645], + [-47.12455605984625, -21.14555244018823], + [-47.126789586798125, -21.14425625093661], + [-47.13340581747172, -21.13355166013479], + [-47.13347592079042, -21.133438226683865], + [-47.133198039547835, -21.13312846499557], + [-47.12620263907523, -21.12532999533171], + [-47.126844952095965, -21.121653727628168], + [-47.12376697297824, -21.116348776755988], + [-47.12243644237361, -21.114055471435446], + [-47.1216749023274, -21.112742848865043], + [-47.12150831889382, -21.112455715661447], + [-47.12092681207845, -21.112200932253035], + [-47.11406735378893, -21.10919530205697], + [-47.113305776240374, -21.108861576123402], + [-47.112759813685145, -21.108622330586208], + [-47.113121925345276, -21.104904317818672], + [-47.12035813676307, -21.102146817395855], + [-47.12144473102208, -21.10173271157835], + [-47.128094690837955, -21.099198168154558], + [-47.128847848799374, -21.098253017530062], + [-47.134754694723256, -21.090839810210404], + [-47.13701258634447, -21.08800582769858], + [-47.142255736854764, -21.08821302348273], + [-47.14090401654396, -21.080174736595378], + [-47.14068933202623, -21.078897589029353], + [-47.139070149401974, -21.069264736827616], + [-47.14607108611674, -21.059034678100527], + [-47.14678872659585, -21.049420791056093], + [-47.14695426064218, -21.04720282652127], + [-47.14754845980249, -21.039240060078605], + [-47.147648511348685, -21.037899103078534], + [-47.14783165958633, -21.035444292975487], + [-47.15148331660368, -21.028818874947184], + [-47.153952341514945, -21.02433872968267], + [-47.15699995077481, -21.018808222743168], + [-47.15109355931143, -21.010296759792617], + [-47.15101924968953, -21.008299757529745], + [-47.15093808980578, -21.006118742439625], + [-47.15061605883981, -20.99746562212279], + [-47.15002417594499, -20.996172095289086], + [-47.14443887983099, -20.983964782501282], + [-47.14370900981931, -20.982369438460378], + [-47.14953990463115, -20.96995418058799], + [-47.1609617640302, -20.966964321997633], + [-47.16126748062962, -20.966884282945927], + [-47.16450661691658, -20.96603621038649], + [-47.16881185107147, -20.95647702006566], + [-47.17172774239666, -20.955847942551472], + [-47.17788554035672, -20.954519264207136], + [-47.18124602543526, -20.953794058871026], + [-47.19253576039632, -20.94203703356064], + [-47.19000966423417, -20.928202226107473], + [-47.21042868920366, -20.924123224473117], + [-47.2245427005358, -20.91159683430916], + [-47.24001370706367, -20.885266114381302], + [-47.22732898856324, -20.856456272343664], + [-47.22695996404256, -20.855616037179537], + [-47.21445383413111, -20.827204300375502], + [-47.214150967940874, -20.823677534450532], + [-47.214940295332404, -20.821916432035067], + [-47.21527685875491, -20.821165494320415], + [-47.2247236271588, -20.800083905620735], + [-47.21488855331339, -20.793049366870886], + [-47.21414300387124, -20.7925160670298], + [-47.213834937509326, -20.792295701851792], + [-47.2071711212762, -20.77584323525037], + [-47.20703874116426, -20.775516368376763], + [-47.20650218060184, -20.775490760150497], + [-47.19945550850406, -20.77515429057304], + [-47.19538802687105, -20.77495994182591], + [-47.195268756212684, -20.774954241487848], + [-47.18960003748903, -20.771153719897306], + [-47.189125244998515, -20.770835385467905], + [-47.188787745547835, -20.770609100512804], + [-47.18866852361773, -20.769921377081456], + [-47.18762194450913, -20.763884123401994], + [-47.18723963451799, -20.761678685248498], + [-47.18603975841579, -20.756761521214397], + [-47.18529799668946, -20.75372163261278], + [-47.18421856641057, -20.74929776761173], + [-47.18294632397322, -20.744083476865104], + [-47.18233378240574, -20.74157288898528], + [-47.182261736776006, -20.741277596246405], + [-47.181200682271125, -20.74097422032987], + [-47.17810676691893, -20.740089567904644], + [-47.17582750876553, -20.73943781240277], + [-47.17516189444751, -20.739247473040283], + [-47.17681872333388, -20.738075162300643], + [-47.17917808841668, -20.736405698434147], + [-47.186215374033544, -20.73142573297994], + [-47.186078230495866, -20.73131311772075], + [-47.18512068546743, -20.730526823740984], + [-47.17957415718327, -20.725972017985697], + [-47.17589848322354, -20.72295333122611], + [-47.17416413965471, -20.72152892052491], + [-47.169962732207416, -20.718078152509996], + [-47.16947974586126, -20.717681443299366], + [-47.17001109173825, -20.716831970812812], + [-47.17043925323778, -20.7161474516248], + [-47.17309318609969, -20.711904312670665], + [-47.172810338450404, -20.711512285101538], + [-47.17120618441976, -20.709288882934814], + [-47.165932655792936, -20.70197913954946], + [-47.165567867072276, -20.701473471071907], + [-47.15839741131978, -20.704131887009495], + [-47.151615833369604, -20.70664574529685], + [-47.14903498557893, -20.707602340136845], + [-47.147247538663656, -20.70758066459249], + [-47.14016599280231, -20.707494607196793], + [-47.13718475557974, -20.707458290876847], + [-47.133549162338255, -20.70741393343657], + [-47.1152704780113, -20.70718975180594], + [-47.11344896150053, -20.69951984267532], + [-47.112772567621, -20.696671607082948], + [-47.112763310436, -20.696632625413674], + [-47.10970646924917, -20.69306789511157], + [-47.1042339759216, -20.68668567157441], + [-47.10195033780786, -20.684022224797445], + [-47.10120484105119, -20.683152715560855], + [-47.1013086767803, -20.68200390965931], + [-47.10174324514879, -20.677195602752732], + [-47.1024380175458, -20.669506982357518], + [-47.100554639323946, -20.666941971018417], + [-47.0977335640068, -20.663099718591887], + [-47.09675682781863, -20.661769373832303], + [-47.09650253460029, -20.65925136861035], + [-47.09634170924124, -20.65765887504873], + [-47.09588468703477, -20.65313341849198], + [-47.09686532924721, -20.64451455643168], + [-47.103443102590376, -20.641829555708533], + [-47.11042597616016, -20.63897879228002], + [-47.11265030219751, -20.63807062219874], + [-47.111011720102304, -20.630897200710645], + [-47.1091294697194, -20.622654727408232], + [-47.109009015184, -20.62212723192571], + [-47.108703932776024, -20.62079120247589], + [-47.11358362864968, -20.618087756893317], + [-47.119059705179424, -20.615053603227846], + [-47.12329097823945, -20.6127089447677], + [-47.12374236627644, -20.611455265015422], + [-47.12394525308371, -20.61089176061225], + [-47.1258242608228, -20.605672678219225], + [-47.1227311067216, -20.5946679067798], + [-47.12525940562524, -20.590417151658333], + [-47.1323653182024, -20.59077050132382], + [-47.135042247392605, -20.580555813926182], + [-47.13784045188834, -20.57509856176476], + [-47.13987358418235, -20.571133079280123], + [-47.14081978850422, -20.569287479995136], + [-47.14132779759217, -20.568296568771054], + [-47.14272139598247, -20.56557815852927], + [-47.142628224945746, -20.56549616730129], + [-47.13811044154268, -20.56152033447771], + [-47.13762401642777, -20.561092243249707], + [-47.13859909046355, -20.55602572380423], + [-47.13927474550941, -20.552514700197253], + [-47.141489626365086, -20.541003431828905], + [-47.14414858535167, -20.54080076245781], + [-47.14484031361917, -20.538390317122083], + [-47.1467051279835, -20.531891532137024], + [-47.147014066411266, -20.530814823791687], + [-47.14953168136247, -20.52701750585917], + [-47.15336709175599, -20.521232055017638], + [-47.15448592163433, -20.519544263390188], + [-47.17471644831477, -20.515633673828795], + [-47.17739034881455, -20.51511660649986], + [-47.1783601225433, -20.5149290643899], + [-47.18121243655403, -20.514377427193864], + [-47.18141220431632, -20.514338790155524], + [-47.18430522842241, -20.5137792220039], + [-47.18476091104274, -20.51369107901494], + [-47.18528548704136, -20.513334612622153], + [-47.188559757750596, -20.511109559293647], + [-47.190805939657416, -20.50958307082077], + [-47.20040609851958, -20.503058140772634], + [-47.202620064309286, -20.501553208218922], + [-47.21145724495484, -20.50228423331038], + [-47.21213291778172, -20.5017101030989], + [-47.21753602854558, -20.497118715589217], + [-47.221672784332384, -20.493603103402375], + [-47.22200642101979, -20.493319550505927], + [-47.22382622864325, -20.4917728899154], + [-47.22399424690411, -20.491630087824962], + [-47.22408601232502, -20.491552102276092], + [-47.22957023988566, -20.486891151771513], + [-47.25056581563438, -20.476732674054563], + [-47.25357305758814, -20.477939581049565], + [-47.253968264905616, -20.477333062019785], + [-47.25482164164102, -20.476023374399638], + [-47.255956123404424, -20.474282223815628], + [-47.256358337970596, -20.47366491028035], + [-47.25945344480298, -20.46891435294145], + [-47.26550254297935, -20.467519292521985], + [-47.26732003222543, -20.467100089915874], + [-47.26983882166185, -20.4665190962446], + [-47.27049495548115, -20.466023153708836], + [-47.27425999414295, -20.463177206828266], + [-47.27654813317187, -20.461447529999838], + [-47.276552067310824, -20.46144455599412], + [-47.278702156376816, -20.4598191662221], + [-47.28151160506595, -20.45769522337898], + [-47.29097864962971, -20.4505372967557], + [-47.291194553733696, -20.45019089238839], + [-47.29130416660193, -20.45001502471598], + [-47.29175921130836, -20.449284925249067], + [-47.2922239457154, -20.448539269315145], + [-47.29273387949559, -20.447721080648755], + [-47.28950076115672, -20.445003200271067], + [-47.28697452350999, -20.442879452067668], + [-47.286450824678056, -20.442439180072956], + [-47.287257401658835, -20.43513694016825], + [-47.29416175241771, -20.431852190665435], + [-47.29287581484836, -20.428193372504754], + [-47.29606844549683, -20.427243629364952], + [-47.289488636224156, -20.422128559051654], + [-47.28921531553453, -20.421916071029223], + [-47.28873490474254, -20.421542582471037], + [-47.28921530859209, -20.421245561087378], + [-47.28931115129986, -20.42118630367696], + [-47.293424820223635, -20.418642813090315], + [-47.29315403651906, -20.41849855807354], + [-47.28853936352356, -20.4160400774725], + [-47.28805837790955, -20.415783820232285], + [-47.289556399219805, -20.40980490492963], + [-47.28955780352603, -20.409799299746336], + [-47.28943187323974, -20.409675272301165], + [-47.28933596861344, -20.409580816645985], + [-47.285916039650765, -20.406212459191494], + [-47.2854238988412, -20.405727723972056], + [-47.28750925493762, -20.403174918515884], + [-47.288132977685436, -20.402411359129598], + [-47.29169545694638, -20.398049970216597], + [-47.291723435212575, -20.39801571620202], + [-47.28863268201689, -20.39402833087192], + [-47.28804472866283, -20.39326978567702], + [-47.28720597297026, -20.387908308861586], + [-47.293468217403884, -20.385767961308364], + [-47.29372936778364, -20.38567869723368], + [-47.29115252092909, -20.383650969945016], + [-47.290593181528614, -20.383210813405015], + [-47.29425037889103, -20.380852067655812], + [-47.29439950727643, -20.38075588238328], + [-47.294113981505255, -20.379181753330823], + [-47.2925035789233, -20.370303142702284], + [-47.295457358688004, -20.369193938069824], + [-47.29488028192775, -20.367881959103208], + [-47.294011710894104, -20.365907234300344], + [-47.29331960487943, -20.36433367742202], + [-47.29654174837789, -20.353778711073154], + [-47.29667456374527, -20.35334359798682], + [-47.29719813393483, -20.351628310523257], + [-47.29778893475851, -20.349692704389597], + [-47.298176214549436, -20.34842384666574], + [-47.29688920835369, -20.34682337452426], + [-47.29526170911012, -20.34479942486213], + [-47.289403563787104, -20.33751377323633], + [-47.290119231012646, -20.33433062411759], + [-47.29025725782738, -20.333716686014586], + [-47.28842456779008, -20.333118929801003], + [-47.28750448937122, -20.33281882543626], + [-47.28534583373918, -20.33211470866876], + [-47.28492812340956, -20.331978455023922], + [-47.2849481842912, -20.329566281878048], + [-47.28496772027689, -20.327216393295434], + [-47.2849870381384, -20.324891935369283], + [-47.285006709490766, -20.322524118112494], + [-47.28501245417418, -20.32183248025934], + [-47.28504822495468, -20.321576171869825], + [-47.285189351162664, -20.320564946533036], + [-47.285270260353876, -20.319985190212865], + [-47.28573783242217, -20.316634653538888], + [-47.28578803979294, -20.31627486240128], + [-47.283977828603675, -20.314604773301436], + [-47.282276668996275, -20.313035249739357], + [-47.281825768002186, -20.31261923227966], + [-47.277178596977826, -20.293597791030226], + [-47.2771126837207, -20.293327977977693], + [-47.27669681147553, -20.291625608841727], + [-47.276102800773955, -20.290856099194063], + [-47.27542039887415, -20.28997207305498], + [-47.27425309230539, -20.288459845425205], + [-47.272681659736655, -20.2864240277276], + [-47.271921505024615, -20.28543921329957], + [-47.27033715533028, -20.283386573335214], + [-47.27028715508777, -20.283321793424292], + [-47.269895565750154, -20.28281445138523], + [-47.26507961121424, -20.281106410145927], + [-47.264515967488485, -20.28090649598834], + [-47.26403211989345, -20.28073488230224], + [-47.26371846664468, -20.280255392993027], + [-47.26352885038967, -20.279965520584796], + [-47.26073621382128, -20.27569620140433], + [-47.26051451291278, -20.2753572599384], + [-47.258790512051625, -20.27272151660948], + [-47.25613237297719, -20.268657436430324], + [-47.254611371977894, -20.266331851974982], + [-47.25315952497062, -20.264111937178253], + [-47.25284221519108, -20.263626753092694], + [-47.2521689024865, -20.263403226435976], + [-47.25089258498985, -20.26297950554474], + [-47.246915393966155, -20.261659058810316], + [-47.2462344877446, -20.261432983893243], + [-47.23253790574347, -20.22751131968761], + [-47.231041725776976, -20.219141259104774], + [-47.244153383838395, -20.20563304307657], + [-47.254068804049574, -20.19431954155801], + [-47.25731587074359, -20.184659504632766], + [-47.25712071024494, -20.17278578524354], + [-47.25707667457631, -20.170107714277094], + [-47.257012284621304, -20.1661925024695], + [-47.25931856234823, -20.1642777103256], + [-47.266355501841566, -20.1584347476004], + [-47.26846440138486, -20.15668351586004], + [-47.27144904734219, -20.155733995199004], + [-47.27967297531506, -20.15302847714988], + [-47.28004760192333, -20.152905219999408], + [-47.29297465800965, -20.148651404426165], + [-47.309640972882, -20.12448801332126], + [-47.32149719330594, -20.118908132042584], + [-47.32724159488263, -20.116204188826508], + [-47.32914944999034, -20.11530607710958], + [-47.33309801005362, -20.11396137199861], + [-47.3339662384064, -20.1136656759675], + [-47.34109022557467, -20.111239215673137], + [-47.347505123552004, -20.10533325105054], + [-47.35864379906483, -20.10397123036909], + [-47.37081712379012, -20.088409936720645], + [-47.37282531170868, -20.085842418062697], + [-47.3745381149793, -20.083652459852495], + [-47.37656087269851, -20.08359093421449], + [-47.39408604111798, -20.083056895698654], + [-47.404926334764546, -20.082725683043282], + [-47.411497376021885, -20.074074049803052], + [-47.41820107826227, -20.064632435844036], + [-47.42577314739726, -20.05920578208151], + [-47.427987696897915, -20.057618542401215], + [-47.44026287994863, -20.048819332611252], + [-47.44413888657527, -20.028286181935613], + [-47.44420223322239, -20.02795053684954], + [-47.431342494892014, -20.02140799986201], + [-47.42583634216783, -20.01791206838968], + [-47.42548264153272, -20.017687488744404], + [-47.42542133129199, -20.01700518978512], + [-47.42522534243248, -20.01482410024498], + [-47.425091437958514, -20.013333923654162], + [-47.43777342155931, -19.996976978781955], + [-47.45024196672326, -19.987827821382478], + [-47.4538113384719, -19.982595761653407], + [-47.46668240445347, -19.963725079702485], + [-47.4682593555012, -19.96141263027549], + [-47.469773122786364, -19.96158146810043], + [-47.47397836458003, -19.962050430580522], + [-47.47448441090667, -19.9621068573358], + [-47.481244835040286, -19.96885059795043], + [-47.485406213239244, -19.969550936162637], + [-47.49457461021381, -19.97109357198264], + [-47.49769190070133, -19.971617962101632], + [-47.49817316494793, -19.97212181027978], + [-47.50524492972832, -19.97952496142704], + [-47.508498665859044, -19.9829308766011], + [-47.529829486064315, -19.983864579739098], + [-47.53806767173238, -19.984224498617685], + [-47.540124793142915, -19.984314312657837], + [-47.54061234980985, -19.98482157086758], + [-47.54920412004855, -19.993759848435825], + [-47.54956134379849, -19.993996898322344], + [-47.55260416744114, -19.996016030220492], + [-47.56751818085991, -19.995574956680997], + [-47.57861086421736, -19.995246074827268], + [-47.580398213283075, -19.995193016945123], + [-47.58093047350034, -19.995718588090195], + [-47.592358415155736, -20.007001804773186], + [-47.59412916980511, -20.021192063545257], + [-47.59440124791222, -20.023372330203085], + [-47.5947143564289, -20.02588136296943], + [-47.595164543078326, -20.026263061311486], + [-47.608788077280416, -20.037812715327487], + [-47.613956299081714, -20.042098703586486], + [-47.62490152556587, -20.04227570672275], + [-47.634730486962006, -20.049237489113793], + [-47.649621915621644, -20.038540155395886], + [-47.67059233692241, -20.022505712468167], + [-47.67535882570151, -20.01293366973988], + [-47.67543399090902, -20.0118387662164], + [-47.67598894486878, -20.003753937404678], + [-47.6761158703196, -20.001904575199962], + [-47.683552586879316, -19.99607772108769], + [-47.701305786553164, -19.98216436143538], + [-47.70420214844092, -19.979894014951732], + [-47.71265747009776, -19.978137059445107], + [-47.716513397128935, -19.97993413849854], + [-47.73297962683673, -19.987607005125337], + [-47.73364733809501, -19.9879180972442], + [-47.751071154576735, -19.990278941462503], + [-47.76164754970725, -19.98694330526835], + [-47.762974766908876, -19.98652466376276], + [-47.7655533757277, -19.98571126184827], + [-47.782151492528044, -19.98570944891074], + [-47.80055826608125, -19.985034347475636], + [-47.802302091507705, -19.985559898105272], + [-47.83165593625066, -19.99440352230385], + [-47.83673602580685, -19.99593346300674], + [-47.84257908780964, -19.993669711373165], + [-47.85119297246575, -19.99033197666819], + [-47.85252616569228, -19.989815334065096], + [-47.853891293392934, -19.990406473293415], + [-47.858929719710886, -19.992588132966812], + [-47.85971593844752, -19.992928551563264], + [-47.85991189640188, -19.993241427358317], + [-47.86128137721826, -19.99542797028688], + [-47.87050115826402, -20.010146864913224], + [-47.87144116472333, -20.011647378251702], + [-47.87579599030512, -20.0213986644333], + [-47.876168072827674, -20.028729421818557], + [-47.87141967780982, -20.03963667845908], + [-47.86784487994616, -20.04199988136097], + [-47.861407945994934, -20.04625477599004], + [-47.85993271686535, -20.047229850499903], + [-47.86002090129762, -20.048825877720837], + [-47.86029269081424, -20.05374499724938], + [-47.86031615487163, -20.054169678369526], + [-47.8607109094026, -20.05450978179097], + [-47.86608206750795, -20.059137125013], + [-47.869235948591665, -20.061854060745056], + [-47.86977307837266, -20.076141445797674], + [-47.87078682227573, -20.07923511395851], + [-47.878974849612, -20.10421912680189], + [-47.87914033865136, -20.104724015090255], + [-47.89355274549313, -20.123494371195203], + [-47.89379936898835, -20.123586407171988], + [-47.899365223170435, -20.125663380607847], + [-47.934068121393345, -20.107842554494983], + [-47.94346133900433, -20.09198755268012], + [-47.94548947602421, -20.077247962652716], + [-47.94817937968585, -20.057692324820064], + [-47.948446932406476, -20.055746799720477], + [-47.95103097549549, -20.053830884083883], + [-47.96830524634151, -20.04102068232582], + [-47.97593413123955, -20.035361976807575], + [-47.98141582225529, -20.036502004334668], + [-47.98452051018011, -20.03737525719346], + [-47.9848743768661, -20.037842306028256], + [-47.99117675498724, -20.046159942792265], + [-47.98971299962775, -20.07295203870721], + [-47.990486003284715, -20.07487034479113], + [-47.99391600352576, -20.08338182844513], + [-48.001721367626885, -20.102747687361482], + [-48.00218642195917, -20.103901399717696], + [-48.00228676034134, -20.104150318427152], + [-48.00541502023977, -20.107490668916025], + [-48.008572342841894, -20.110861870490766], + [-48.01981858610476, -20.120144384791384], + [-48.03815868085848, -20.116986345648513], + [-48.040479052008024, -20.12118218702038], + [-48.0493516498997, -20.137224145118164], + [-48.04959573280132, -20.137332907038545], + [-48.053718853339134, -20.139170075271668], + [-48.068077707330126, -20.14556701628738], + [-48.07040716395225, -20.146604649032124], + [-48.08195575286516, -20.148239985179128], + [-48.11295914975095, -20.143751571611226], + [-48.126512083170766, -20.13124512852541], + [-48.14097528641511, -20.12638411604275], + [-48.14114829046348, -20.12632596081446], + [-48.147685925270046, -20.124128175039722], + [-48.15310628351993, -20.11391365203628], + [-48.15847189616834, -20.103800603007887], + [-48.15889049305773, -20.103011565293986], + [-48.161433100007066, -20.10289831779827], + [-48.167713556574945, -20.103798799196138], + [-48.17857016639356, -20.096168950287908], + [-48.18243001004881, -20.074615849708046], + [-48.19003775062641, -20.064024860911633], + [-48.19301204336736, -20.059883716457758], + [-48.20337364901357, -20.045454788006644], + [-48.207735442634196, -20.039359055428278], + [-48.2166272136174, -20.03372943783225], + [-48.21848485382488, -20.032553201624275], + [-48.22362188221766, -20.029300288723046], + [-48.226350090671495, -20.029296148365308], + [-48.2383342145899, -20.029277461926075], + [-48.24084551912596, -20.02927344306639], + [-48.24142826862769, -20.029832593815808], + [-48.247616354654504, -20.035769755407237], + [-48.24409576362604, -20.04739276317172], + [-48.245209405081674, -20.051050182939708], + [-48.249632927791396, -20.065576542926973], + [-48.25338902361689, -20.07790943018988], + [-48.25004836475107, -20.08575548143693], + [-48.24142216215175, -20.0939745148427], + [-48.2230215803374, -20.111501900485138], + [-48.218954179182916, -20.115375426749225], + [-48.21771159962369, -20.125277321232538], + [-48.21823345020558, -20.125883200500244], + [-48.2238060508438, -20.132352751229064], + [-48.22479141568885, -20.13349665038262], + [-48.224907394870634, -20.13351886957618], + [-48.23737597199933, -20.135907117660153], + [-48.237835908583925, -20.136407527614384], + [-48.24129688551968, -20.14017293364212], + [-48.24149220614407, -20.14020262988442], + [-48.26506406879514, -20.143784815117627], + [-48.28338626470625, -20.13883212748656], + [-48.295456191434, -20.123996024744514], + [-48.31709813217888, -20.11333550394817], + [-48.32759687837477, -20.11373178743023], + [-48.33125251021471, -20.11386962541848], + [-48.339414561357536, -20.114177107367578], + [-48.340829871849515, -20.11497599938782], + [-48.34272528487333, -20.116045863144738], + [-48.35301795971131, -20.121854973556477], + [-48.37891253208856, -20.12226692238229], + [-48.38242228983089, -20.121120093136724], + [-48.38759594805772, -20.1194294126375], + [-48.39444836797969, -20.11718983463199], + [-48.403322926798246, -20.11428885039464], + [-48.40574023192313, -20.113498563300343], + [-48.438989896730476, -20.120208923055586], + [-48.4433774967537, -20.122179287256582], + [-48.44504374469589, -20.12292751879157], + [-48.45157915949658, -20.125862046692617], + [-48.465213147208125, -20.12872634339569], + [-48.4910792792781, -20.138112325213537], + [-48.514220055660104, -20.13776221881345], + [-48.51424812321288, -20.13775318800411], + [-48.51883525456295, -20.136933323759198], + [-48.53419194857005, -20.13418764857968], + [-48.53734625895459, -20.13362349723635], + [-48.55459187013678, -20.130287197108], + [-48.57203784008513, -20.131495581135685], + [-48.579934826832016, -20.132041990681163], + [-48.582181876096534, -20.13219740391818], + [-48.58645076828485, -20.133935866645576], + [-48.5985596544993, -20.138866343265654], + [-48.60060401634023, -20.139698654695177], + [-48.60224188698131, -20.14097500093319], + [-48.622522919727395, -20.156776625599957], + [-48.62676046261144, -20.160077578592155], + [-48.64688840613664, -20.166988661937726], + [-48.66571499491049, -20.16618890300543], + [-48.674242999521624, -20.161341535986093], + [-48.68955427636645, -20.163450039596515], + [-48.69292130605962, -20.162827370452078], + [-48.69309949434748, -20.162794009787625], + [-48.707070208591965, -20.160205141466502], + [-48.72949564684944, -20.150282834450643], + [-48.730684354221964, -20.150433941081708], + [-48.74200369211126, -20.1518724260828], + [-48.753685647984604, -20.153356212111248], + [-48.78109960710877, -20.163839436539806], + [-48.80221681939042, -20.16294415580312], + [-48.82283508918131, -20.16206755982825], + [-48.82570533947643, -20.161945336340015], + [-48.829243996603374, -20.16352578667405], + [-48.83025469522777, -20.163977171020907], + [-48.832415722811746, -20.164942272307623], + [-48.833951203222064, -20.166023213496977], + [-48.84191311360928, -20.17162777448771], + [-48.844421107210316, -20.1733930554199], + [-48.845808616505025, -20.17424828951953], + [-48.85533427989223, -20.180119202177554], + [-48.85535453414539, -20.180131684423852], + [-48.855355723322, -20.180140833672397], + [-48.85785005543928, -20.199330189010084], + [-48.853603561687, -20.209211745424753], + [-48.853977760913764, -20.211332468052106], + [-48.856296682577536, -20.22447370565531], + [-48.856719826052526, -20.22687146981492], + [-48.85720000794056, -20.22733668203282], + [-48.86771230500132, -20.23752029499085], + [-48.87218938775356, -20.241856834877485], + [-48.873829290013646, -20.24498659437933], + [-48.882484067023505, -20.261502165128103], + [-48.88507379104308, -20.266443345960642], + [-48.88678893348777, -20.279789565223687], + [-48.88823753489843, -20.29106061288907], + [-48.88872257451649, -20.294834305147983], + [-48.87963210535124, -20.308824347644432], + [-48.87721312987695, -20.312546548729994], + [-48.87562800846281, -20.314985530177584], + [-48.87598198220253, -20.317690545658703], + [-48.87651644128854, -20.32177469173726], + [-48.879992725241465, -20.34833592376912], + [-48.86924564317601, -20.379262195586943], + [-48.86702469221706, -20.398854283812934], + [-48.86756030023198, -20.400283610134903], + [-48.87814050597935, -20.4285130174952], + [-48.878568421834096, -20.4296545545783], + [-48.87900023943992, -20.430051685836354], + [-48.8864204183958, -20.436875369410693], + [-48.89982498716079, -20.44132248781848], + [-48.907328159270286, -20.436859577917957], + [-48.94190336230671, -20.416286258470667], + [-48.94940462738842, -20.41182106370161], + [-48.9629924914687, -20.40310796347534], + [-48.96885998055925, -20.393726746479008], + [-48.97062995399262, -20.386572698526617], + [-48.966203978193214, -20.368070207955896], + [-48.96417584330241, -20.28366679691347], + [-48.96174772766312, -20.26328840162142], + [-48.97198495242823, -20.207777869019672], + [-48.9840572872485, -20.173709391330828], + [-48.9922123230551, -20.16537130708589], + [-49.01396183422801, -20.154787031266682], + [-49.01900523965428, -20.15352473350496], + [-49.02823890080257, -20.151213232845343], + [-49.032909744043586, -20.150043745916463], + [-49.05918247163779, -20.15109484122083], + [-49.06082423753225, -20.151817785164756], + [-49.06715764615119, -20.154606472656333], + [-49.067441111689035, -20.15473127905113], + [-49.06749841340099, -20.15488214656734], + [-49.07838936071099, -20.18355157455613], + [-49.081035501257446, -20.190515814605174], + [-49.08926163625812, -20.212162042068783], + [-49.091637753756295, -20.216517156122755], + [-49.10446790820136, -20.240028813734835], + [-49.115677242618574, -20.260564260367918], + [-49.12068011328498, -20.27051530949506], + [-49.12108168508755, -20.270841538336374], + [-49.14552512139035, -20.290694782848114], + [-49.152737644323, -20.29528337900419], + [-49.16911565627054, -20.305701017063267], + [-49.17027901377009, -20.30644089210146], + [-49.17034707026134, -20.306625322758325], + [-49.17107119372367, -20.30858764604404], + [-49.17252306115694, -20.312521964057826], + [-49.17634087007046, -20.313259427603086], + [-49.18183626470225, -20.31432078420238], + [-49.18352384546287, -20.314646679196375], + [-49.19184010436667, -20.30760134324889], + [-49.203079472545625, -20.305395214880804], + [-49.203926013455245, -20.305229018601146], + [-49.20585334730682, -20.304850619863146], + [-49.22862840528209, -20.303344271937295], + [-49.25965408211761, -20.258747261018772], + [-49.25904306684243, -20.248079250350386], + [-49.26160672346944, -20.240818266545944], + [-49.26490627424705, -20.2314718412712], + [-49.26596633134387, -20.228468802482347], + [-49.29920711893384, -20.167063702655362], + [-49.300220185120196, -20.159369579795822], + [-49.30444395154145, -20.127279754548184], + [-49.305811130741276, -20.11688895815245], + [-49.30688367522243, -20.111699685034548], + [-49.306922874989446, -20.11151001751017], + [-49.308499533813446, -20.103880909395624], + [-49.3084158129505, -20.07754600901531], + [-49.30129775216813, -20.04122108128578], + [-49.298317416041584, -20.02600778185242], + [-49.29627136189117, -20.015562203958847], + [-49.28467027859485, -20.005444968076965], + [-49.283884073881644, -20.004759252510087], + [-49.282825108327025, -20.00486602159499], + [-49.26520230650833, -20.006641863018594], + [-49.262493923526826, -20.006914625091564], + [-49.25466352861256, -20.003784871253355], + [-49.24870236465433, -19.999888979421662], + [-49.24829930890081, -19.99962555050982], + [-49.24814619617571, -19.998426727180536], + [-49.247642817915676, -19.994485350164695], + [-49.246450006376655, -19.98514527845875], + [-49.24677615994038, -19.983533774367803], + [-49.249181310653285, -19.971648819288426], + [-49.249607438091516, -19.969542896798], + [-49.254436787407826, -19.967205503954766], + [-49.26116433203686, -19.963949043030954], + [-49.265133461277685, -19.962027601077565], + [-49.297498077737764, -19.96053409247835], + [-49.30342299827807, -19.962331714686353], + [-49.3088488539042, -19.963977715539567], + [-49.311582270880436, -19.964806857384186], + [-49.31293635795012, -19.96578552588871], + [-49.33264050604184, -19.980024288108957], + [-49.3327399442329, -19.98009613330678], + [-49.3564466643041, -19.98670579178536], + [-49.444479481563285, -19.980500374523434], + [-49.45820185529416, -19.975919556835066], + [-49.4634446907938, -19.972227458078702], + [-49.464045090794066, -19.971804623867804], + [-49.48519240294572, -19.956908688453574], + [-49.48541963886924, -19.956748595838288], + [-49.48752845581898, -19.95526285822121], + [-49.49677500762147, -19.939000406836822], + [-49.498727191111826, -19.933388539299262], + [-49.50225536752616, -19.92324504007956], + [-49.50341238744013, -19.919918278352878], + [-49.506321617460195, -19.918783506872327], + [-49.52208052528971, -19.9126354635489], + [-49.52813493867777, -19.910272936205164], + [-49.54005272061087, -19.90800161613869], + [-49.54059861196489, -19.9078975578581], + [-49.551443749247085, -19.90582986773033], + [-49.55230485069458, -19.90642852118595], + [-49.55498132459199, -19.90828920107501], + [-49.55916300739696, -19.911196136983587], + [-49.57352915287031, -19.91046795868014], + [-49.58124398956779, -19.91007643239136], + [-49.58313979977626, -19.909980168716505], + [-49.59352269481674, -19.91342985022774], + [-49.61206264945759, -19.919587841367118], + [-49.6131886669916, -19.919961768528907], + [-49.63436459159997, -19.93192086274525], + [-49.64760116094927, -19.932207165040445], + [-49.66698454524147, -19.932624641605024], + [-49.67593503142367, -19.932816702291255], + [-49.67689631036966, -19.930922212426577], + [-49.67692608862691, -19.930863524529865], + [-49.67758490683248, -19.92956509221563], + [-49.68155966848021, -19.930268981996317], + [-49.71210865835226, -19.9312502767958], + [-49.72288179621378, -19.92935251220315], + [-49.74257953769246, -19.925880789086094], + [-49.74936117206223, -19.92468498100503], + [-49.78241511328062, -19.924451871555245], + [-49.78577323430998, -19.925639709389216], + [-49.78681131056895, -19.926006882570476], + [-49.793159549415876, -19.92825212287467], + [-49.82164448653479, -19.931673338237314], + [-49.83252440220512, -19.932978846560683], + [-49.83523231636044, -19.933303669748515], + [-49.84133374624819, -19.937364794002562], + [-49.84747911097149, -19.9414547495301], + [-49.85553205790906, -19.946813641998375], + [-49.85863235355854, -19.946532141020242], + [-49.87236476289529, -19.945284597913155], + [-49.89117332338189, -19.94357413941103], + [-49.906145020107225, -19.93715579752533], + [-49.92408794850511, -19.931726403433686], + [-49.92835021343377, -19.930436348360015], + [-49.941006257784736, -19.92660501981321], + [-49.95754649614116, -19.921596177400254], + [-49.96211312434997, -19.920212944047446], + [-49.96546165687304, -19.920648100061864], + [-49.98017331661288, -19.922559171755342], + [-50.01214582812486, -19.92670812837868], + [-50.03858710323781, -19.918279019681467], + [-50.04408972804651, -19.916410433795935], + [-50.05592103364458, -19.906587634054276], + [-50.07947955163736, -19.88597102707837], + [-50.083271784853906, -19.88416516174279], + [-50.1014911756749, -19.87548733752881], + [-50.10309918174553, -19.874721312921984], + [-50.10950320218496, -19.874472668650508], + [-50.11324378299652, -19.874327328756827], + [-50.13036990869623, -19.873660886568587], + [-50.14258541057126, -19.875790090569048], + [-50.160473273001585, -19.878367976002632], + [-50.17171024383193, -19.87550284370916], + [-50.17508806633961, -19.874474563986332], + [-50.19795612523218, -19.867510990067622], + [-50.20153265796527, -19.866421572326903], + [-50.21560944849051, -19.86663755792335], + [-50.220845389250236, -19.868429425378793], + [-50.24511356637142, -19.87674678422015], + [-50.285588450827554, -19.867807932488347], + [-50.288199123439625, -19.868334238602664], + [-50.29757405894116, -19.87022386396301], + [-50.31182287252487, -19.873094850660657], + [-50.314653929150445, -19.872694075692742], + [-50.33502665688832, -19.869808643058054], + [-50.337390858728355, -19.869473637739983], + [-50.35271628460793, -19.864591609994903], + [-50.355367916952275, -19.8584320296035], + [-50.35571386168094, -19.857628381299953], + [-50.357029877793316, -19.854571120861664], + [-50.366984992131485, -19.847536046177236], + [-50.37074617057099, -19.84586457971345], + [-50.394111790000686, -19.822815029786543], + [-50.4001409450251, -19.816865816202952], + [-50.411132052813, -19.806018736939954], + [-50.417089848141565, -19.80112595358505], + [-50.421371692705456, -19.79980952399471], + [-50.43398030193827, -19.79593234792472], + [-50.43783629097032, -19.794746405388874], + [-50.45406779328862, -19.786220161033828], + [-50.461762565293746, -19.783379415915984], + [-50.46993267824152, -19.780362707387322], + [-50.47187513016339, -19.779645409754604], + [-50.47454837575775, -19.780767785553593], + [-50.48388277488393, -19.784686446876524], + [-50.48615518054904, -19.785640320303642], + [-50.48815029275091, -19.78722365289668], + [-50.492398010344516, -19.790594489311218], + [-50.49892529815429, -19.795773841769126], + [-50.51716978182956, -19.796397642933247], + [-50.52288352369638, -19.79879663863241], + [-50.52928404905169, -19.801483689580806], + [-50.53122482854897, -19.802298399531782], + [-50.54825700805286, -19.811180107748616], + [-50.56199291035418, -19.81356267185723], + [-50.56499514919657, -19.81378648677474], + [-50.57362440599492, -19.814429508074547], + [-50.57449629535631, -19.81449445469951], + [-50.57495971062689, -19.8149766955742], + [-50.58631771206195, -19.82679482459424], + [-50.60550292908562, -19.856077671761707], + [-50.60583064066174, -19.85626574336056], + [-50.61413429198034, -19.861030809017826], + [-50.61515592515188, -19.86168186279094], + [-50.636119917843025, -19.875039082260816], + [-50.63614108805367, -19.875052568505218], + [-50.6361559428793, -19.875074317045595], + [-50.6404383125443, -19.881343719530705], + [-50.65806051711835, -19.90713645233591], + [-50.67604701965095, -19.912861436903526], + [-50.676152351448884, -19.912894977534634], + [-50.68636786936234, -19.91614631328214], + [-50.708955144503356, -19.920210820205636], + [-50.73307872204106, -19.92942968646012], + [-50.78355803146124, -19.937218620778534], + [-50.78741017281512, -19.93890424345257], + [-50.79262526737182, -19.941186078282865], + [-50.79408130912295, -19.94182312203136], + [-50.79595776247949, -19.942910725968552], + [-50.81729267901067, -19.95832229166862], + [-50.84404024914149, -19.967636778407723], + [-50.84608314322973, -19.968472340375236], + [-50.85171036802247, -19.970773758575845], + [-50.85923476756519, -19.977476398881794], + [-50.87283005366326, -19.98958465841194], + [-50.8859552418598, -19.99037842591024], + [-50.897155837818175, -19.99014418867084], + [-50.908091056592866, -19.99424644429567], + [-50.90824295170599, -19.994602048734045], + [-50.91185933184373, -20.003067911259212], + [-50.912341272344285, -20.00333045702477], + [-50.93361614474933, -20.014918148854523], + [-50.93393892824136, -20.015310822187814], + [-50.935076971161585, -20.016695256504708], + [-50.93868131584852, -20.02107974888694], + [-50.94382714487844, -20.02733882353859], + [-50.9442950051539, -20.027785075063775], + [-50.949436388809524, -20.0326887485885], + [-50.95853588770717, -20.03318455386782], + [-50.9650112055193, -20.033537088326653], + [-50.96579178884788, -20.033579569364264], + [-50.96605776411215, -20.033977414725356], + [-50.97882201118577, -20.05306731225314], + [-50.98800519269813, -20.06679800900928], + [-51.000431379935485, -20.08537305360169], + [-51.00058447179555, -20.085152745127292], + [-51.00971298835503, -20.07201489336455], + [-51.017844653348554, -20.04838156270029], + [-51.01784471124458, -20.048381394408445], + [-51.0059927094128, -20.025288725419287], + [-51.00476333403992, -19.999206524560663], + [-51.00476332015493, -19.999206217560573], + [-51.01861120133383, -19.97361474540689], + [-51.020867228460695, -19.95907690788256], + [-51.02086726243197, -19.959076688951342], + [-51.002454664735744, -19.924784346386495], + [-50.99945928576534, -19.911708414936992], + [-50.99945927972038, -19.911708363469064], + [-50.9994273351664, -19.906365279685097], + [-50.99942732759292, -19.906364972628815], + [-51.00240917370004, -19.900801609729903], + [-51.02023365054885, -19.864791026799903], + [-51.018154540655125, -19.837271218245466], + [-51.018154522403854, -19.83727091154613], + [-51.02264893645745, -19.807487109578084], + [-51.03345359992984, -19.79066931188755], + [-51.035581234924486, -19.78906673189124], + [-51.03989503113784, -19.77710852455583], + [-51.039895094583535, -19.77710834866501], + [-51.02785752159352, -19.75656578352825], + [-51.0278574064007, -19.75656558691812], + [-51.04538853809081, -19.73754594895121], + [-51.04589995203769, -19.729041409349303], + [-51.04589996822448, -19.729041140157534], + [-51.03845110286909, -19.719523517548833], + [-51.03652980220268, -19.68700317567778], + [-51.03652978642971, -19.687002868766047], + [-51.02156869650371, -19.66000701069835], + [-51.01364981611009, -19.654665411959602], + [-51.01206820700513, -19.652320040125133], + [-51.00899394691928, -19.641962884572656], + [-50.990423115168475, -19.605392615483396], + [-50.98751002587765, -19.589498341000624], + [-50.97786850993483, -19.58249814557269], + [-50.96282598687255, -19.581694416419285], + [-50.946498107035794, -19.59168053432293], + [-50.937534569709136, -19.592261377769184], + [-50.92795377537439, -19.587790828821216], + [-50.92308540244697, -19.57605167600686], + [-50.923085374892295, -19.576051609558803], + [-50.92412382561254, -19.558608257313647], + [-50.93083674616939, -19.5422348375634], + [-50.950506427415405, -19.517509182491498], + [-50.962901547171676, -19.500569915960234], + [-50.963227272216734, -19.483629273697176], + [-50.96322727778886, -19.483628983864843], + [-50.94939589163488, -19.47104267875102], + [-50.934427004063025, -19.46743275433645], + [-50.93442671784476, -19.467434108832837], + [-50.934301741116286, -19.46802554521292], + [-50.93428792615435, -19.468090922480005], + [-50.88942242575428, -19.48088743881055], + [-50.84213312790268, -19.499141836042725], + [-50.83534568405944, -19.496882338147206], + [-50.82664686519227, -19.487459399806834], + [-50.82489909626841, -19.475031845151207], + [-50.824899059580375, -19.47503158426045], + [-50.82899978141299, -19.467026132159166], + [-50.868539359209045, -19.43391419090017], + [-50.87587017377227, -19.419911165333644], + [-50.875870220616676, -19.4199110758446], + [-50.87143723750253, -19.403843249840072], + [-50.86058787110763, -19.39207716161558], + [-50.8479407577854, -19.365308624150565], + [-50.84557263106524, -19.360192253052166], + [-50.837851036096474, -19.345642613507213], + [-50.83580088532161, -19.32707042862857], + [-50.82940083369527, -19.31047012180396], + [-50.81466943070724, -19.285776622551243], + [-50.78872805706218, -19.262679009723836], + [-50.771401280129226, -19.25931751156469], + [-50.7585548657645, -19.24658281726273], + [-50.7450861040568, -19.233228312262913], + [-50.74200731358885, -19.214359516009324], + [-50.74200729169076, -19.21435938178881], + [-50.742842078707966, -19.198204632489908], + [-50.74284209273102, -19.198204361086926], + [-50.73343211578906, -19.18579939501965], + [-50.67775528519441, -19.172507053509175], + [-50.67248279084897, -19.16369488966543], + [-50.67248272572091, -19.163694780807237], + [-50.67856601523744, -19.140636676222034], + [-50.67856607574806, -19.140636446828346], + [-50.67436455142912, -19.136194006848633], + [-50.65455324922159, -19.13340742399739], + [-50.654512815560125, -19.13340973952808], + [-50.58498183070959, -19.137378336418397], + [-50.584981235761084, -19.137377559682687], + [-50.57245095368791, -19.121016617852636], + [-50.55160139660225, -19.111802431579612], + [-50.54334841031739, -19.105917782149668], + [-50.505891567875075, -19.05109954583609], + [-50.49869870656004, -19.03401996806095], + [-50.49503171761499, -19.01286145744523], + [-50.49503167010491, -19.012861183279398], + [-50.50397366303847, -19.0044749849767], + [-50.503973697225376, -19.004474952912226], + [-50.50000644836932, -18.981153944162156], + [-50.500006408518274, -18.9811537098716], + [-50.50383134353021, -18.97096386483533], + [-50.511833577372556, -18.951957968147397], + [-50.51183360859554, -18.95195789398106], + [-50.50877740815451, -18.93572527527995], + [-50.501526943465564, -18.930103407508955], + [-50.47310758746965, -18.921419030095308], + [-50.46097849620193, -18.91364029236451], + [-50.441458512836945, -18.890783017569564], + [-50.42502527647571, -18.83690273464657], + [-50.41867683032257, -18.827622877313935], + [-50.39331486546359, -18.822382197276454], + [-50.37853035313257, -18.814642161091225], + [-50.370220068704825, -18.804386876508236], + [-50.352279100325234, -18.76029050198718], + [-50.32372402292339, -18.712197041061383], + [-50.30622205731908, -18.69546539296945], + [-50.28969508112043, -18.689650691548515], + [-50.26991540371378, -18.68416614091558], + [-50.25021893999039, -18.677884995271985], + [-50.21744209324287, -18.680515922847352], + [-50.19883257214411, -18.679073797262383], + [-50.18000343189313, -18.668454688447152], + [-50.16424378823944, -18.664346442032446], + [-50.09035692271321, -18.671265663985857], + [-50.07999909957051, -18.67223775628411], + [-50.06329389934795, -18.652668523473828], + [-50.05016109347011, -18.643535911606143], + [-50.03697796221034, -18.60986955948167], + [-50.028719064029545, -18.601460640337546], + [-50.01385837944527, -18.599474781565462], + [-49.98141088555721, -18.604639615386734], + [-49.97377246110917, -18.614313921986145], + [-49.93160778412692, -18.62398724546398], + [-49.90432794389244, -18.621298785320096], + [-49.88393367664272, -18.60902526325029], + [-49.87215790129247, -18.61225714300138], + [-49.86671671037444, -18.623294863984864], + [-49.85274828570978, -18.623158636151935], + [-49.836110104827604, -18.636683791457994], + [-49.81974956620144, -18.632571380142416], + [-49.794712516385616, -18.6438458352994], + [-49.78363561327296, -18.6413328988935], + [-49.774852288480396, -18.62644754757359], + [-49.773819419899574, -18.616474816756817], + [-49.76848639340032, -18.61098072384794], + [-49.757659847119136, -18.609703709127302], + [-49.73821736232757, -18.616919885696962], + [-49.7236049008601, -18.609773584363012], + [-49.705541327322656, -18.59539880362528], + [-49.69368936049525, -18.590635484820876], + [-49.671742239147505, -18.589243415952406], + [-49.64781964566235, -18.601808680286574], + [-49.64265411735908, -18.60132902193145], + [-49.64056863200643, -18.598815696389714], + [-49.63499490003309, -18.592096482972195], + [-49.63499476474249, -18.59209631986938], + [-49.65360726250885, -18.570564590872078], + [-49.65324672499604, -18.563824315179193], + [-49.65324671121491, -18.563824008585552], + [-49.646740201862805, -18.557725426274935], + [-49.59643714603075, -18.546394779726956], + [-49.57521055755224, -18.54232089576977], + [-49.55892235556476, -18.54676054734655], + [-49.54752471255993, -18.539617135633705], + [-49.542351155771975, -18.527418721154515], + [-49.54235109696438, -18.527418582485982], + [-49.547935792713574, -18.50779522207805], + [-49.54793584424434, -18.507795040986007], + [-49.54299451665588, -18.497869682910892], + [-49.533871748551476, -18.49250996458362], + [-49.49718644609825, -18.492596819827344], + [-49.49398301889659, -18.496537510967297], + [-49.49086461734739, -18.500371994919064], + [-49.48572000104448, -18.50943024340954], + [-49.48572000935011, -18.509430550121863], + [-49.4861458118413, -18.53226245609691], + [-49.48178778084574, -18.561024873976407], + [-49.432359202420415, -18.606738546976672], + [-49.41668957095531, -18.638545482967686], + [-49.40857853886257, -18.64480380845038], + [-49.39152081075581, -18.64660252517903], + [-49.37871315644601, -18.642342211044095], + [-49.37327149450937, -18.634999172259946], + [-49.36512655208721, -18.617359737122708], + [-49.34318650661782, -18.598014737006466], + [-49.33657317537954, -18.58371414883362], + [-49.33021739902304, -18.56548953804058], + [-49.3248079005796, -18.5607498554771], + [-49.3029368699219, -18.56643079450477], + [-49.292555024634396, -18.564001388950103], + [-49.28897968517232, -18.543353349272962], + [-49.282161539472725, -18.534186322927795], + [-49.27343223679714, -18.52866200120918], + [-49.24877438778271, -18.522912827180107], + [-49.24405000155711, -18.506275348725772], + [-49.22838255692854, -18.479849361530245], + [-49.2106264739801, -18.461889587513646], + [-49.2013519483132, -18.458825114839975], + [-49.19254379782644, -18.449716266971816], + [-49.19254369511233, -18.44971616074368], + [-49.20072961610073, -18.431950481838385], + [-49.21123788457162, -18.42350307541438], + [-49.21182153009493, -18.41764938646617], + [-49.211821557126726, -18.41764911533647], + [-49.205626309623085, -18.41178782531325], + [-49.20365490543331, -18.412249768394], + [-49.18583216446213, -18.416424962269332], + [-49.18317655660192, -18.416181759537725], + [-49.158105618078196, -18.413883893776894], + [-49.15454351959187, -18.40274876510617], + [-49.126240035456455, -18.38250284706932], + [-49.108765018841666, -18.383841314748352], + [-49.10714465642512, -18.38885155851087], + [-49.10714473251555, -18.38885166151696], + [-49.11378535585182, -18.397840748511282], + [-49.11378526226048, -18.397840914468304], + [-49.11143612294363, -18.402006302956707], + [-49.096854436968385, -18.40370114333291], + [-49.09121880623573, -18.413549614537786], + [-49.0819169962719, -18.413259415539628], + [-49.07699839983823, -18.416776119106807], + [-49.05372084973625, -18.402571156151282], + [-49.044767327601434, -18.389290534180688], + [-49.04195947430774, -18.376503606204707], + [-49.02959482838131, -18.368816012144144], + [-49.02370734162524, -18.367917843984245], + [-49.00592289189789, -18.37435499124771], + [-48.995955393509604, -18.370936274664974], + [-48.990580021575404, -18.35855233577848], + [-48.981460034123344, -18.356370353865035], + [-48.981459971568356, -18.356370338896937], + [-48.98415403797602, -18.341408984343833], + [-48.984154093661374, -18.341408675062823], + [-48.97660266910335, -18.341728413542143], + [-48.971097615030935, -18.330483048499456], + [-48.95946094853719, -18.323475178405328], + [-48.936732599221564, -18.30620393772697], + [-48.917712229441236, -18.305871546946314], + [-48.917707507205066, -18.30587619488106], + [-48.90786777665386, -18.315560248994554], + [-48.90707316526871, -18.316342214114012], + [-48.88285227195767, -18.318847774587482], + [-48.872710626430454, -18.332843169982443], + [-48.8441118664841, -18.340109428933324], + [-48.83204306427265, -18.346131548039853], + [-48.82798420756457, -18.375245059043987], + [-48.81632093386808, -18.379657418732688], + [-48.798239360825484, -18.3585522429581], + [-48.78417927826342, -18.351127631991172], + [-48.77015016587358, -18.355605108606266], + [-48.75570483987749, -18.34437741183781], + [-48.7305712347756, -18.353267956870695], + [-48.71591241817032, -18.34801319455485], + [-48.70854011625494, -18.345033587328167], + [-48.697706706547365, -18.350162821599103], + [-48.68284242317209, -18.343528900487247], + [-48.6683716194957, -18.345585936355807], + [-48.65607061870899, -18.342398713102433], + [-48.64712952574475, -18.3438873031727], + [-48.64105063717065, -18.340259171863654], + [-48.64105060821042, -18.340259154578213], + [-48.6415116965202, -18.333422948497617], + [-48.64151171573601, -18.333422663577704], + [-48.63378476857322, -18.327645215189268], + [-48.59723255337509, -18.33480791475952], + [-48.59114339341782, -18.334189471902985], + [-48.582325978815454, -18.327226343337117], + [-48.56137478268772, -18.32388337972102], + [-48.55370695169413, -18.331392717997947], + [-48.553706992628456, -18.331392993358296], + [-48.554427413759434, -18.33623910190525], + [-48.5544274194938, -18.33623940825615], + [-48.55450281881296, -18.346946253474005], + [-48.547204890317424, -18.35176412410773], + [-48.53107180673894, -18.351071395642563], + [-48.51560952833146, -18.366412731304305], + [-48.4927371954841, -18.352971915049405], + [-48.484766940083006, -18.353628922161306], + [-48.48138270004357, -18.36064659936041], + [-48.48138277878017, -18.36064676141044], + [-48.48687383189786, -18.371947350952393], + [-48.486873739102606, -18.371947447410783], + [-48.47901510065815, -18.3801157097437], + [-48.44562144456518, -18.35529836355613], + [-48.43653452330673, -18.3653029111857], + [-48.419483813760245, -18.36153181391994], + [-48.41343420136789, -18.356240430224013], + [-48.40567921483355, -18.356340521168544], + [-48.40361851844074, -18.37118428094721], + [-48.400457041584104, -18.3718720083587], + [-48.363509737976564, -18.369420179263287], + [-48.35357382009522, -18.366068135587817], + [-48.341597916362126, -18.36970354178362], + [-48.33457720989813, -18.374417296359315], + [-48.3242885034366, -18.381795488010937], + [-48.3135942793515, -18.384835075045782], + [-48.304647829196476, -18.38312073005401], + [-48.30448634418731, -18.380234811988867], + [-48.304486331207066, -18.38023450597726], + [-48.315704664491676, -18.373053493177085], + [-48.31570468198138, -18.373053481980627], + [-48.314909352901104, -18.364152404690536], + [-48.28825798913359, -18.348679932773074], + [-48.27903541988954, -18.331531495343853], + [-48.271847594240235, -18.33087758936339], + [-48.262369327464135, -18.331882511835015], + [-48.25536165980674, -18.343986494648004], + [-48.226772408171584, -18.34572338603643], + [-48.2267724110901, -18.345723692174857], + [-48.226657384002436, -18.357892142807035], + [-48.220918947777704, -18.36228346730892], + [-48.1959318903321, -18.3641929947135], + [-48.17284987805269, -18.374955443381538], + [-48.16132142372198, -18.372232174016702], + [-48.1597268226998, -18.38449040511955], + [-48.15076490000291, -18.395187988840803], + [-48.147758686331926, -18.408205146623928], + [-48.128655705861114, -18.416122189253596], + [-48.11782078803134, -18.42499459519636], + [-48.09577535668659, -18.42998299373629], + [-48.069004825235226, -18.427803133557152], + [-48.06671209543796, -18.4247182658004], + [-48.06137380225263, -18.413051218785448], + [-48.0557877168257, -18.413239889712983], + [-48.04800668204221, -18.416964469143316], + [-48.03934411008177, -18.433739507043192], + [-48.02842473503477, -18.43568903178283], + [-48.0135680302972, -18.44469325750646], + [-48.00929663479477, -18.45426647490928], + [-47.99787326714727, -18.454591512343086], + [-47.980872657682156, -18.44285877546244], + [-47.97601352812552, -18.452611015902434], + [-47.976013597932265, -18.452611198407084], + [-47.979868459851986, -18.462688957331444], + [-47.97986844676561, -18.462689207673264], + [-47.97917454051934, -18.475961040134933], + [-47.976344560719376, -18.477780161366216], + [-47.96904759467175, -18.47474284303199], + [-47.964922151630034, -18.477354509015726], + [-47.96216034841022, -18.49606876986502], + [-47.95489960085758, -18.50027771590953], + [-47.95261755409711, -18.493837230329483], + [-47.94051265260692, -18.48810143583857], + [-47.92951197535524, -18.487840733775865], + [-47.92539988505671, -18.471233604911188], + [-47.91423666975058, -18.466575475831473], + [-47.88790099382334, -18.476535089044283], + [-47.88554050067725, -18.4685091741826], + [-47.87545043434636, -18.47566824400235], + [-47.86320624255061, -18.469741508663592], + [-47.86320618596915, -18.469741481273044], + [-47.86437359148426, -18.463042387395948], + [-47.873615573569545, -18.459148140059245], + [-47.873615706667685, -18.459148083971556], + [-47.87128915523538, -18.45502814661355], + [-47.864508814532286, -18.449421347744128], + [-47.86041646068178, -18.44018867125598], + [-47.8494241151712, -18.44131742547034], + [-47.838755679415186, -18.451758040878907], + [-47.834539109217246, -18.451268299109465], + [-47.83081319353138, -18.4434871495042], + [-47.83081309855321, -18.443486951145033], + [-47.8370042168743, -18.43582584966706], + [-47.83700431656728, -18.43582572629556], + [-47.83073515661183, -18.425192597857947], + [-47.83073513849086, -18.425192567121087], + [-47.83114507285058, -18.414052579091766], + [-47.831145083766735, -18.414052282382055], + [-47.81528733241493, -18.406255530456367], + [-47.810535003725306, -18.40011362754433], + [-47.797509861692106, -18.406907513453163], + [-47.79751000917384, -18.406907746667834], + [-47.80070077741969, -18.411953198891656], + [-47.80070069415901, -18.411953360670744], + [-47.79845983959978, -18.416307291544015], + [-47.78917665153967, -18.417656520653644], + [-47.778979980773066, -18.42413325432629], + [-47.76999699576255, -18.418625962266724], + [-47.75908889094336, -18.410274392958318], + [-47.74945201082882, -18.412549750947917], + [-47.74676358256942, -18.409936177309643], + [-47.746763449874216, -18.40993604830653], + [-47.75683724623326, -18.39565526701209], + [-47.75683735332146, -18.39565511518436], + [-47.74256621536634, -18.37651784820038], + [-47.73617307567903, -18.37892512162739], + [-47.73325591277834, -18.375897651679733], + [-47.733255794407874, -18.375897528830542], + [-47.736006032108456, -18.37134134967016], + [-47.74053411765288, -18.363839188093383], + [-47.740533814201676, -18.363839165690013], + [-47.724860752057836, -18.36268140008273], + [-47.71681793705882, -18.362086777271838], + [-47.71033838901479, -18.37965273473932], + [-47.70420368828648, -18.380069517699813], + [-47.694003809135786, -18.374966694816052], + [-47.686067951157064, -18.36279428591803], + [-47.68606792561079, -18.362794246731085], + [-47.6864236969692, -18.357455965522064], + [-47.68642371707111, -18.357455663875168], + [-47.67932524854128, -18.35636292742985], + [-47.67067221421874, -18.35747337943335], + [-47.65753714446865, -18.327802684701], + [-47.65314905219148, -18.326245169561282], + [-47.646900367584315, -18.33030947664011], + [-47.646900401456136, -18.330309765546243], + [-47.64811828296666, -18.34069739984097], + [-47.64811825312109, -18.34069738542056], + [-47.63325852473613, -18.33351683957885], + [-47.62614822604384, -18.33429646295653], + [-47.62422776745002, -18.32263494824581], + [-47.61122616435763, -18.315389363180895], + [-47.61122592822642, -18.315389231576216], + [-47.627283054287474, -18.303137841720904], + [-47.632731138137444, -18.29161917854467], + [-47.63873344806641, -18.287677359233804], + [-47.638733609998326, -18.287677252884933], + [-47.629869915985566, -18.27725031017439], + [-47.61898364684419, -18.27171042921026], + [-47.61898350916108, -18.271710359139387], + [-47.625751750608956, -18.259429395360524], + [-47.62575186705236, -18.259429184053996], + [-47.61453495979211, -18.250882146959974], + [-47.6145349725563, -18.25088245259177], + [-47.61520136648561, -18.26229856988138], + [-47.607261863078534, -18.263887662078545], + [-47.60228226444703, -18.256286171617393], + [-47.60228220591764, -18.256286082266765], + [-47.603591288453046, -18.250711198757426], + [-47.60740362593408, -18.246937482794657], + [-47.607403807292066, -18.246937303267558], + [-47.59075072389694, -18.23580423415502], + [-47.58176218152052, -18.23510496415271], + [-47.581425685273516, -18.23170695239702], + [-47.58142566698741, -18.231706653445887], + [-47.58858577361561, -18.22703620716339], + [-47.588586039779486, -18.227036033537583], + [-47.58195027511305, -18.223830778834163], + [-47.57645053084247, -18.226001811617795], + [-47.5709184004712, -18.220324201960782], + [-47.5675321995726, -18.203864009992554], + [-47.56175463497245, -18.208631345870536], + [-47.557700559164736, -18.208035770237657], + [-47.543760835999365, -18.19523113197248], + [-47.53620420775584, -18.194874873389324], + [-47.534535252181875, -18.19861659798518], + [-47.53453530974713, -18.198616791811872], + [-47.54009474241819, -18.21733440118366], + [-47.54009472297501, -18.217334616034737], + [-47.53915131223326, -18.22775823315877], + [-47.53370341234173, -18.2307053063044], + [-47.527457711458446, -18.226243311418976], + [-47.52745761486978, -18.226243242411964], + [-47.53061282639133, -18.217848198096164], + [-47.530612919598745, -18.217847950083918], + [-47.51798178386997, -18.210597224394505], + [-47.518169286163065, -18.19887511163381], + [-47.518169284825, -18.19887480587165], + [-47.50520104004365, -18.192262285637327], + [-47.49714390789131, -18.199102312310135], + [-47.489863263933636, -18.19243059928283], + [-47.484896371610525, -18.19352938757243], + [-47.48489620207566, -18.193529425074836], + [-47.48808189108379, -18.186778517648875], + [-47.48808197735853, -18.186778334811464], + [-47.48357240076104, -18.180864205680912], + [-47.48337328369551, -18.18072536961511], + [-47.479951543474456, -18.17722156756182], + [-47.47142744315145, -18.180050613165665], + [-47.46853038203614, -18.176331630665928], + [-47.46392284349579, -18.17736037469405], + [-47.451203031683846, -18.15917180381204], + [-47.444507245174115, -18.15892697531526], + [-47.43584202926136, -18.167593113137766], + [-47.43000554110015, -18.16581404586792], + [-47.42731149661056, -18.161302945854366], + [-47.42731136189391, -18.16130272026964], + [-47.433782679739274, -18.157224092775035], + [-47.435332421604016, -18.15198443967513], + [-47.43533247648292, -18.151984254122667], + [-47.42875156857167, -18.1392852128944], + [-47.418317802068515, -18.140698448818913], + [-47.41237114196978, -18.147707066571158], + [-47.40819093463622, -18.14199211967181], + [-47.39683804476895, -18.141864876140264], + [-47.396504194376135, -18.137376747953102], + [-47.396504176925475, -18.137376444521983], + [-47.4054250438576, -18.13528469387257], + [-47.4072862936853, -18.131752796158136], + [-47.40728642545237, -18.131752546110793], + [-47.3957852946087, -18.12714514507126], + [-47.39375374943558, -18.116241878371895], + [-47.38605926701086, -18.121213053206343], + [-47.38394919212151, -18.117746910433567], + [-47.369485794593146, -18.115255910547695], + [-47.36840804136792, -18.113023187736125], + [-47.365896220248075, -18.107819392429395], + [-47.359212381082656, -18.106020455731883], + [-47.355843791954136, -18.10511371209362], + [-47.354676281861565, -18.096820540412615], + [-47.35467623926791, -18.096820237852775], + [-47.3613469488974, -18.09621295090089], + [-47.36134703699575, -18.096212942879017], + [-47.35775991249643, -18.08502228422365], + [-47.34684078967486, -18.088239915226417], + [-47.34339007874932, -18.080809977260706], + [-47.32273241997396, -18.069691126050177], + [-47.310311976804144, -18.069470469378764], + [-47.302399539250466, -18.073737078503648], + [-47.30196722631103, -18.07109159335941], + [-47.301967187204546, -18.071091354050797], + [-47.305510404382254, -18.06369955467797], + [-47.305510535186855, -18.06369928178005], + [-47.29761779703396, -18.061821603213268], + [-47.29242177333863, -18.064061065953315], + [-47.28317029563332, -18.058237469118673], + [-47.28317027500269, -18.058237456131323], + [-47.28396095143409, -18.040952062447293], + [-47.28673186667224, -18.04278895439396], + [-47.29331380484999, -18.029618637804095], + [-47.30074786816945, -18.027023981071142], + [-47.30074857035164, -18.027023735975412], + [-47.29569890601617, -18.026592028374196], + [-47.29569882321413, -18.026592021294192], + [-47.297230198541975, -18.020536131516742], + [-47.297230257750236, -18.020535897363498], + [-47.29397855374971, -18.01703493251383], + [-47.29397846748465, -18.017034839633844], + [-47.29681343126492, -18.00939461286647], + [-47.3115074940972, -18.006057574499266], + [-47.31556212830136, -17.995394698214852], + [-47.31914233533573, -17.99603766652674], + [-47.31976263999572, -17.985977459577263], + [-47.322916440834476, -17.984495994200653], + [-47.32291652491308, -17.984495954704485], + [-47.32128405022112, -17.979741662050365], + [-47.31392163152266, -17.97704373253643], + [-47.31381088534503, -17.963225548551495], + [-47.313810880446745, -17.963225242786486], + [-47.33364325836465, -17.95152500654281], + [-47.33467616688108, -17.937625586233224], + [-47.33688962846181, -17.935451971452135], + [-47.337277153525314, -17.938761959378937], + [-47.34055725989356, -17.937409098661476], + [-47.340557290259746, -17.937409086136725], + [-47.33936682661475, -17.928166712574804], + [-47.339366791975884, -17.92816644364652], + [-47.3447551061523, -17.92087788750801], + [-47.344755429399335, -17.920877450238542], + [-47.34234540102681, -17.921835892426024], + [-47.342345186787746, -17.921835977624657], + [-47.34411989060194, -17.91848113208131], + [-47.34411999222205, -17.918480939976828], + [-47.338370746483484, -17.912488029989305], + [-47.338370558290116, -17.912487833811788], + [-47.34416557271128, -17.908974897936503], + [-47.344165681130704, -17.90897483220948], + [-47.34233517660915, -17.90518192999303], + [-47.342335102423746, -17.90518177627413], + [-47.34519491191822, -17.898668283648778], + [-47.357030570088284, -17.89779050476384], + [-47.35809263456546, -17.892085797865033], + [-47.358092690308524, -17.892085498435225], + [-47.35579278750633, -17.89185477048188], + [-47.355792582498175, -17.8918547499141], + [-47.359303785660316, -17.88678548327036], + [-47.35930385249791, -17.88678538677027], + [-47.353673005315116, -17.870925420826087], + [-47.353672919927895, -17.87092518030643], + [-47.35949992252576, -17.866045684872027], + [-47.359500038318366, -17.8660455879031], + [-47.35628645047741, -17.860602107549262], + [-47.35628634335926, -17.86060192609709], + [-47.36228554584695, -17.853116670493254], + [-47.36689086372562, -17.83537600804], + [-47.37297107931397, -17.83099580388643], + [-47.3729712794761, -17.830995659681705], + [-47.36461653173002, -17.82449548666538], + [-47.363311284923896, -17.816975190537924], + [-47.352005238177526, -17.8151357958008], + [-47.350593062079504, -17.811263991592295], + [-47.35059297409138, -17.811263750348672], + [-47.35797445747957, -17.805346505886543], + [-47.35797479846607, -17.80534623252306], + [-47.35295320087712, -17.804879217101586], + [-47.34797812829033, -17.797308944422312], + [-47.34797798030143, -17.797308719226898], + [-47.35091246312359, -17.79562511733432], + [-47.35419687310204, -17.793742105040177], + [-47.35444610891458, -17.7875425918709], + [-47.354446121042486, -17.787542290164254], + [-47.34909129024831, -17.786435110267586], + [-47.34909115294017, -17.78643508187539], + [-47.35061436951962, -17.78318004835232], + [-47.350614484561724, -17.783179802507338], + [-47.3437902335104, -17.779842995916628], + [-47.339981470293345, -17.77713642619109], + [-47.339981326362604, -17.7771363239089], + [-47.34222811421515, -17.77378538416311], + [-47.34222824812117, -17.773785184445575], + [-47.33267657959551, -17.76662178672072], + [-47.332676415254205, -17.766621663462807], + [-47.33678722183338, -17.761838498954482], + [-47.33678727654314, -17.76183843529386], + [-47.335203117664605, -17.755673282788276], + [-47.33520304772125, -17.755673010580303], + [-47.34242180248901, -17.751794257007113], + [-47.34269405795232, -17.74446166022267], + [-47.34269406863671, -17.7444613724185], + [-47.332205029917056, -17.73411372082685], + [-47.32553328877157, -17.73304459038545], + [-47.32553322992691, -17.73304458095471], + [-47.32605930786713, -17.73000855302507], + [-47.326059356848376, -17.73000827034365], + [-47.317810148047805, -17.72663842910074], + [-47.31206186499899, -17.711519783786837], + [-47.31206183027682, -17.71151969245759], + [-47.3136492822154, -17.69902060868807], + [-47.31364931603015, -17.699020342408048], + [-47.305615538254564, -17.691344992466053], + [-47.2994835101276, -17.691459080352363], + [-47.29948326126046, -17.691459084978696], + [-47.301451543247786, -17.688928332171265], + [-47.30145164624515, -17.688928199737838], + [-47.2983157361788, -17.684008844603657], + [-47.286563559724016, -17.684217972174114], + [-47.27352713167704, -17.67464718493855], + [-47.270308681137294, -17.675292527153367], + [-47.270308646437776, -17.675292534110774], + [-47.270672079168385, -17.671119040176574], + [-47.271005099973365, -17.667303885352936], + [-47.27580527853605, -17.659624299411924], + [-47.2802322381454, -17.659309065712836], + [-47.280232370971675, -17.659309056253043], + [-47.27847444944878, -17.655596552460764], + [-47.2784743430199, -17.65559632769272], + [-47.28134269509741, -17.653249820162806], + [-47.2813427613376, -17.6532497659725], + [-47.27869989886379, -17.644230448424807], + [-47.26823068709973, -17.637720194796955], + [-47.26393172506937, -17.620461119009768], + [-47.26393168857701, -17.62046097249515], + [-47.265757760677936, -17.610446979845086], + [-47.27578571566525, -17.597857977109214], + [-47.28382708453117, -17.57758205073613], + [-47.30658928468045, -17.5584635859676], + [-47.31407345597874, -17.54409720693584], + [-47.320806837448785, -17.531166036979972], + [-47.33311338962618, -17.52345419307613], + [-47.35134203623942, -17.526945991768937], + [-47.37450168178034, -17.523924571437547], + [-47.384868823122936, -17.514347987250535], + [-47.398601340738175, -17.51222003121292], + [-47.41416668447664, -17.521525747372817], + [-47.43928106127144, -17.527704063297566], + [-47.4570638184968, -17.538401536619173], + [-47.46778324242246, -17.533058776963102], + [-47.47767515463, -17.51133462428326], + [-47.49245429662091, -17.52644180829731], + [-47.49775772493642, -17.52464738086438], + [-47.503528963045575, -17.5155051893044], + [-47.50569577172511, -17.493017292645455], + [-47.50569578988235, -17.493017104156234], + [-47.503197572780124, -17.481781346951923], + [-47.50319751484344, -17.481781086371775], + [-47.51202662040343, -17.47378730055129], + [-47.51425907204807, -17.460809192373556], + [-47.53667973919654, -17.457135901540767], + [-47.54114853113731, -17.454306859645875], + [-47.541148552028176, -17.454306846420078], + [-47.540314873481755, -17.445867743805024], + [-47.52728758322201, -17.44036780893152], + [-47.527143169196826, -17.429738550586332], + [-47.527143163113806, -17.42973824470644], + [-47.521391692159, -17.423876049852357], + [-47.52139114600663, -17.423875493163223], + [-47.52325736945819, -17.421757989401222], + [-47.527678204079, -17.424040855912484], + [-47.52983786000103, -17.413836183822735], + [-47.537728095549575, -17.40930627717312], + [-47.53772834026302, -17.40930613667025], + [-47.535114321904686, -17.407595925729446], + [-47.52362604194367, -17.412460016135526], + [-47.52362601371498, -17.412460028086226], + [-47.52397821103506, -17.40692304626517], + [-47.53208770704827, -17.401251550799582], + [-47.5332902251284, -17.394421498993687], + [-47.53878927853022, -17.388804124204825], + [-47.53878957240914, -17.38880382398759], + [-47.52839113107485, -17.38860915967469], + [-47.528390965628695, -17.38860915657314], + [-47.53228189208705, -17.381125247140357], + [-47.532281966821344, -17.38112510338648], + [-47.53047651068182, -17.377589431665942], + [-47.525260307906535, -17.38343354187958], + [-47.51870394436531, -17.380324341792623], + [-47.51853125626545, -17.375353197715313], + [-47.51853124694205, -17.37535289190558], + [-47.51389686839871, -17.374642510706146], + [-47.513896778523524, -17.374642496928562], + [-47.51614840884788, -17.366608124985213], + [-47.516148441096924, -17.366608009905498], + [-47.513953979755634, -17.35621307484745], + [-47.51395391413831, -17.356212764015407], + [-47.519567420359486, -17.356698408952216], + [-47.52164171481327, -17.352816053238158], + [-47.52164180317903, -17.352815887843498], + [-47.51684170202564, -17.34582228745556], + [-47.505114322923234, -17.340515211843652], + [-47.50455963263135, -17.337299768187254], + [-47.50455957809916, -17.33729945207121], + [-47.508753432259326, -17.33822565142841], + [-47.51211763362419, -17.334946579414364], + [-47.51211765423667, -17.334946559322876], + [-47.51117901486497, -17.325584179872617], + [-47.50988741676581, -17.33199316895164], + [-47.498589099931756, -17.33582508649167], + [-47.49503728538641, -17.344849917313653], + [-47.49078586231505, -17.34482929322757], + [-47.4879182743035, -17.349509816533168], + [-47.47880722414458, -17.348827371692646], + [-47.473186747415845, -17.3447032909831], + [-47.4639751701298, -17.355851357481548], + [-47.45650528785465, -17.350827523430244], + [-47.456505034807925, -17.35082735323638], + [-47.46078800232479, -17.348457410356588], + [-47.460788045527345, -17.348457386449997], + [-47.460007335721, -17.344154131714568], + [-47.44152600828216, -17.34838767442702], + [-47.441525881316416, -17.348387703504393], + [-47.44381647122901, -17.34194414042633], + [-47.45425668075863, -17.331904854144046], + [-47.45425677905683, -17.331904759611938], + [-47.450310668480284, -17.324056631741445], + [-47.44189510039424, -17.323018098182366], + [-47.43534080168101, -17.317009090959008], + [-47.42414894692144, -17.324033054286925], + [-47.421760041779585, -17.321267190577753], + [-47.42167537660542, -17.315972537445568], + [-47.42167537021097, -17.315972231622165], + [-47.42933457744632, -17.308041683264445], + [-47.42933477333362, -17.30804148042328], + [-47.421174157092885, -17.303918371242506], + [-47.419506975767185, -17.292358782996757], + [-47.41950693793265, -17.29235852066169], + [-47.42551355580455, -17.28363417232101], + [-47.43273374957397, -17.283491718913613], + [-47.43442277409145, -17.276222708463415], + [-47.43442283379484, -17.27622245150455], + [-47.427919153109166, -17.27152569014422], + [-47.41781197345188, -17.270466933992278], + [-47.41689855090092, -17.26470676821607], + [-47.41689850642575, -17.26470648774643], + [-47.42287009971957, -17.26056874060632], + [-47.422870438894684, -17.26056850557874], + [-47.40823430772719, -17.257583676428062], + [-47.40823420435483, -17.257583655342785], + [-47.411032727178075, -17.24923689138446], + [-47.411032805595404, -17.249236657485312], + [-47.40677655734103, -17.245692135549938], + [-47.39888114044514, -17.242650724717265], + [-47.387535831819356, -17.249818655212216], + [-47.38189691142106, -17.2433613027533], + [-47.38189675038346, -17.24336111833524], + [-47.38722212456788, -17.239141289933368], + [-47.38722239057496, -17.239141079139944], + [-47.37897870864452, -17.236281849491284], + [-47.37897853339807, -17.236281788704755], + [-47.38528254728462, -17.22705368102459], + [-47.385282665442, -17.227053508047952], + [-47.378568284246086, -17.21997871712669], + [-47.37428457488431, -17.222073358125403], + [-47.37428444168954, -17.22207342325243], + [-47.375944623126955, -17.217159759359067], + [-47.375944729931334, -17.217159443236863], + [-47.36944493296988, -17.217745661302565], + [-47.36609155968603, -17.22178009671662], + [-47.362610305972474, -17.22271286549461], + [-47.36261025219213, -17.222712879903973], + [-47.36414516980075, -17.21201112001673], + [-47.36414520118703, -17.212010901163303], + [-47.36080977452687, -17.204624191936357], + [-47.356038228804515, -17.20264290863763], + [-47.350531879070545, -17.20559833331815], + [-47.35019684669666, -17.196503336074148], + [-47.350196837142555, -17.196503030368884], + [-47.35726000301428, -17.194559977872597], + [-47.3630084464088, -17.186497933121114], + [-47.3630087351355, -17.18649752816376], + [-47.356640033736674, -17.188627170550674], + [-47.349589754869825, -17.186228917300017], + [-47.34275188174953, -17.189554825809726], + [-47.34014153478118, -17.18739193418603], + [-47.340141309742435, -17.187391747719317], + [-47.35316861127453, -17.180236150181063], + [-47.35316882504981, -17.180236032746713], + [-47.34845179219573, -17.176227738903165], + [-47.34845170189913, -17.176227662171325], + [-47.351951348706734, -17.16650437326407], + [-47.35195145598792, -17.166504075176384], + [-47.33386893571079, -17.165297796222692], + [-47.32939161988845, -17.15848130904103], + [-47.329391516467155, -17.158481151581636], + [-47.332255488370684, -17.1540377869794], + [-47.33225559460624, -17.154037622152604], + [-47.32764414534683, -17.148340687891572], + [-47.32364610535497, -17.155634703399556], + [-47.31100601059852, -17.146323210063922], + [-47.30733958163126, -17.159017614479207], + [-47.30294379670145, -17.15445505368995], + [-47.30294374827288, -17.15445500342251], + [-47.30413991079422, -17.146933989701747], + [-47.30413995171577, -17.146933732385147], + [-47.29578302806143, -17.138627927098607], + [-47.282674417999395, -17.14410458395982], + [-47.28267439355167, -17.144104594172678], + [-47.28338807656266, -17.130583512661804], + [-47.28338809214323, -17.130583217415925], + [-47.276313432256465, -17.127408262560127], + [-47.2763131819135, -17.127408150205806], + [-47.282136049156634, -17.1227662200109], + [-47.28213645973762, -17.122765892684132], + [-47.27589369768472, -17.123088107180088], + [-47.2751129707325, -17.117836437444957], + [-47.27511292755426, -17.117836146997988], + [-47.28192165096317, -17.114898412043758], + [-47.281921805091955, -17.114898345538432], + [-47.274614640052405, -17.104101563505836], + [-47.267111796896444, -17.113663680628765], + [-47.26442208549355, -17.097545255563613], + [-47.25930611616123, -17.1007640693308], + [-47.25519854123714, -17.092703417441015], + [-47.254973915281255, -17.098293018246203], + [-47.24814061778428, -17.098561848579408], + [-47.247693184646145, -17.081773526533674], + [-47.24769317669783, -17.081773220830286], + [-47.24242936182312, -17.087524686132706], + [-47.24061523236296, -17.083623121580658], + [-47.23178314321284, -17.08971950758223], + [-47.22228308091401, -17.085532544174153], + [-47.22228218903273, -17.085532151067753], + [-47.230712727036604, -17.086365436648986], + [-47.234143370360364, -17.082358630094205], + [-47.234143538012226, -17.082358434279353], + [-47.22884352677735, -17.079037477103142], + [-47.22375073217924, -17.082549893269526], + [-47.223756820306555, -17.075697777316158], + [-47.223756816585905, -17.07569747162394], + [-47.207645326436776, -17.080360574827502], + [-47.20764517176097, -17.08036061958716], + [-47.2103417920531, -17.07393129834213], + [-47.21034184662167, -17.073931168232757], + [-47.20783342793121, -17.066856950660597], + [-47.20550492914816, -17.070687200632815], + [-47.19805897295548, -17.072265563587443], + [-47.19100335325465, -17.06963104778164], + [-47.19100329324237, -17.06963102537226], + [-47.19158753197064, -17.06646962031187], + [-47.19622290705232, -17.066642958698516], + [-47.19617060903217, -17.060073989935013], + [-47.196170603976675, -17.060073684235352], + [-47.190254246063276, -17.061706403704182], + [-47.18739242392447, -17.05769711733771], + [-47.18206109172046, -17.063959111402443], + [-47.17514687921489, -17.054453773109913], + [-47.17514668974241, -17.0544535126183], + [-47.1816991039145, -17.052825352154844], + [-47.18441564370682, -17.035966430208315], + [-47.18441569105567, -17.03596613631492], + [-47.18027695615783, -17.035079930323324], + [-47.18014856191105, -17.035526230224356], + [-47.17900501348236, -17.03950108177937], + [-47.172675993821365, -17.043695389452555], + [-47.16693757177818, -17.04749793093852], + [-47.16464575298169, -17.045735381171365], + [-47.16464562598644, -17.045735283502744], + [-47.16842444868242, -17.039150157422533], + [-47.16842468145689, -17.03914975176048], + [-47.162643186191225, -17.041554320269494], + [-47.16219255110433, -17.034876303086246], + [-47.162192537000394, -17.034875997828436], + [-47.15962918477735, -17.02873699408313], + [-47.15714463057086, -17.033822444053907], + [-47.1550079942639, -17.026323395625028], + [-47.15178018079783, -17.032765375547687], + [-47.146806344822025, -17.031259603087488], + [-47.146806253553486, -17.03125957545573], + [-47.148946936392534, -17.024144823328726], + [-47.14894703570368, -17.024144493241174], + [-47.144359180366116, -17.025192719064485], + [-47.13839484412498, -17.01999801235833], + [-47.13839469070418, -17.01999787872954], + [-47.1406437007657, -17.017344628981498], + [-47.140643854194785, -17.01734444797088], + [-47.131724803973135, -17.010441024841267], + [-47.13172474399279, -17.01044097841329], + [-47.13275535032396, -17.00534047520456], + [-47.144730106984746, -17.009730487079946], + [-47.144839983930396, -17.003638204418408], + [-47.144839982870984, -17.003637898875837], + [-47.140253346619424, -17.00471856395198], + [-47.14014088866724, -16.997179045022964], + [-47.140140882575665, -16.9971787393523], + [-47.15108866820294, -16.997357106909572], + [-47.15108975172678, -16.99735712453379], + [-47.13150364420853, -16.99155327897883], + [-47.125896910128276, -16.981774609620036], + [-47.12589681960603, -16.981774451733255], + [-47.12853413941997, -16.977074496736968], + [-47.14411542526111, -16.97107727199041], + [-47.14411546287463, -16.971077257510935], + [-47.14319852123123, -16.965177956924233], + [-47.14319847193156, -16.965177639743352], + [-47.151616000792906, -16.967507447156645], + [-47.15831403138835, -16.964704652433497], + [-47.1583141860437, -16.964704587714092], + [-47.15191108755966, -16.955200046898494], + [-47.151910902512405, -16.95519977220699], + [-47.166557272821244, -16.952642454255532], + [-47.166557495059656, -16.952642415442917], + [-47.156893785131864, -16.94142619733758], + [-47.15689359228425, -16.94142597349321], + [-47.16436105049859, -16.938126308388323], + [-47.16928239408908, -16.940248077580232], + [-47.1694794978696, -16.93553695131685], + [-47.174161372067985, -16.9319441638708], + [-47.17416165535099, -16.931943946476103], + [-47.167588271563716, -16.929949826427666], + [-47.16003719914029, -16.920607025538835], + [-47.16003702146942, -16.920606805698124], + [-47.16418653157961, -16.918511620818595], + [-47.17284111315656, -16.918502458264747], + [-47.18089136172324, -16.902335321276777], + [-47.197054967238515, -16.91083950524967], + [-47.197055056031125, -16.910839551961143], + [-47.19339649540103, -16.897486976220524], + [-47.193396418441814, -16.89748669533176], + [-47.20131403743513, -16.894649843458428], + [-47.202948787822905, -16.890399326948643], + [-47.20294888995357, -16.890399061390227], + [-47.194589934516685, -16.88734748488517], + [-47.193144195331115, -16.883165180284493], + [-47.19314409326709, -16.883164885024122], + [-47.20158885786525, -16.882231684800953], + [-47.20158888183924, -16.88223168215116], + [-47.200870794781736, -16.875381161483322], + [-47.20087077473523, -16.87538085456864], + [-47.20767013057104, -16.876064808101066], + [-47.20930760921069, -16.865499048556682], + [-47.20930765317393, -16.865498764858383], + [-47.19997582050014, -16.861535416561928], + [-47.199975738293986, -16.861535381645535], + [-47.20592713539325, -16.83987465197909], + [-47.205927196913954, -16.839874428030587], + [-47.19349002271037, -16.825213136216483], + [-47.19348972846447, -16.82521278932094], + [-47.21286683633323, -16.828000218083613], + [-47.21274972360416, -16.823112482396112], + [-47.21274971602004, -16.82311217670225], + [-47.20742387751093, -16.819871499544522], + [-47.20742367419459, -16.819871375825873], + [-47.208975903889076, -16.818426746290616], + [-47.22032850272284, -16.807859935737294], + [-47.220328151046616, -16.807857973772926], + [-47.21949265823411, -16.803196802689932], + [-47.2194188612486, -16.802785088779274], + [-47.215641804753744, -16.80212957699307], + [-47.21564161745817, -16.802129544485982], + [-47.21902917534255, -16.796971945408224], + [-47.21902928151367, -16.79697178375506], + [-47.21636724353763, -16.79360941368895], + [-47.21636714973672, -16.793609295208537], + [-47.21956052756815, -16.786652160365218], + [-47.219560584770385, -16.786652035737294], + [-47.217197120412784, -16.780073466710256], + [-47.21882244369523, -16.77951981709601], + [-47.2308684653135, -16.775415928161056], + [-47.230868493923325, -16.77541591841301], + [-47.22989152315953, -16.767496504268813], + [-47.22339394904534, -16.76182833136816], + [-47.22339333916241, -16.76182779931321], + [-47.23205873889502, -16.76508597404447], + [-47.23595308872119, -16.755392184902927], + [-47.23595311430119, -16.7553921212249], + [-47.234471942111966, -16.744691132293823], + [-47.22650108530504, -16.74169232075114], + [-47.22650092450745, -16.74169226025178], + [-47.23105873161965, -16.734382081619387], + [-47.231058885054544, -16.734381835514682], + [-47.22305579656301, -16.731425965621934], + [-47.22161242378058, -16.726307984814824], + [-47.22161236743302, -16.726307785011535], + [-47.22331719623015, -16.722580462202643], + [-47.226072233974335, -16.720058753442714], + [-47.22761386874164, -16.71349175572085], + [-47.23836464016762, -16.709123289212254], + [-47.241510609563804, -16.70452614725022], + [-47.248703676938746, -16.70874751306029], + [-47.25144490685797, -16.70550542743295], + [-47.251445059163125, -16.705505247295054], + [-47.24566632722682, -16.70097773662577], + [-47.24569541882287, -16.685615918720668], + [-47.2456954151229, -16.685615613023046], + [-47.24759316401172, -16.682077345049812], + [-47.25519262969764, -16.686757022640794], + [-47.258918377960505, -16.678981917135648], + [-47.2589185015312, -16.678981659246688], + [-47.24837035327631, -16.67514732998748], + [-47.24837027306119, -16.67514730082624], + [-47.250757786700866, -16.66600545303098], + [-47.25978036454896, -16.667797486411104], + [-47.25978097335794, -16.6677976073168], + [-47.25381441195034, -16.663670717753202], + [-47.2538142856062, -16.66367063036147], + [-47.258176443153666, -16.655622853882658], + [-47.262054961802974, -16.655670876271866], + [-47.26386691663202, -16.66229668017533], + [-47.26580707397345, -16.659906691970736], + [-47.271921965126964, -16.6637174199725], + [-47.27719883608335, -16.660055826096848], + [-47.278277724310875, -16.648217059317755], + [-47.28697590447084, -16.644425364664365], + [-47.286976067938376, -16.644425293400648], + [-47.283569541543436, -16.639768906783075], + [-47.283569444965806, -16.63976877476764], + [-47.286475436550596, -16.63406553101658], + [-47.294060635592466, -16.63677452003076], + [-47.294644671072724, -16.626570756757665], + [-47.298033095203785, -16.625649835982696], + [-47.307065256047565, -16.632121570845047], + [-47.30706537679622, -16.63212165735906], + [-47.304426046402945, -16.624086854738742], + [-47.30442596186385, -16.62408659737238], + [-47.31623625516341, -16.616611951737127], + [-47.321231898264145, -16.618675434096144], + [-47.321232057667196, -16.61867549993615], + [-47.31592651678307, -16.606907671151664], + [-47.31592642678077, -16.606907471514205], + [-47.3185047915357, -16.603565733782727], + [-47.320497229898116, -16.607053481219356], + [-47.33430865523082, -16.617136845516352], + [-47.33791969812084, -16.61166879558656], + [-47.33791982217725, -16.6116686077255], + [-47.33290179702849, -16.60719424445503], + [-47.332901589374394, -16.607194059292556], + [-47.3384476673951, -16.603841452503634], + [-47.33844772899339, -16.60384141526581], + [-47.33692450759834, -16.597978976800405], + [-47.336924422142495, -16.59797864789963], + [-47.340949239051184, -16.59918408158536], + [-47.34477209787406, -16.595459311514865], + [-47.34477227495714, -16.595459138969783], + [-47.341573395089995, -16.59315902559328], + [-47.341572956814716, -16.593158710450716], + [-47.35075084421132, -16.593358813539115], + [-47.356836728806, -16.58874037850819], + [-47.364637507157326, -16.594725909609906], + [-47.366943088601154, -16.601095169346618], + [-47.376641955422905, -16.600877679826283], + [-47.376642036101195, -16.60087767801522], + [-47.3766403991715, -16.60087235943173], + [-47.374052940244326, -16.59246514228619], + [-47.37404961570332, -16.592454339809454], + [-47.374049573720555, -16.592454203394304], + [-47.37648339656975, -16.580239703193833], + [-47.3823975166586, -16.577559283517246], + [-47.387754459113744, -16.57931085813025], + [-47.38775443165857, -16.57931115223214], + [-47.386862106063326, -16.588868791309157], + [-47.3868621463717, -16.588868753815195], + [-47.396392520566636, -16.580003103906865], + [-47.396392605587394, -16.5800030248098], + [-47.393979749546794, -16.574140253571002], + [-47.393979635501786, -16.5741399764572], + [-47.400809905006795, -16.57228843637988], + [-47.41283754463695, -16.575865079945746], + [-47.4128376781921, -16.575865119656534], + [-47.409129196446194, -16.56683264531977], + [-47.40912908779472, -16.5668323806756], + [-47.41233876186293, -16.565516230014936], + [-47.41233891615105, -16.565516166746203], + [-47.409225137063174, -16.560871663642793], + [-47.4092248680885, -16.56087126243142], + [-47.4130033032486, -16.56225435667768], + [-47.41300335264559, -16.562254374758883], + [-47.41233382629649, -16.558496862254135], + [-47.4050378615169, -16.55650000667285], + [-47.40503761343328, -16.55649993876927], + [-47.41347781218729, -16.54812582982572], + [-47.42053015380079, -16.551799676881352], + [-47.42633863635417, -16.548344985515136], + [-47.428999228302814, -16.55238598284857], + [-47.43400094762853, -16.544860195941517], + [-47.434001063769436, -16.544860021181517], + [-47.43050918429127, -16.541184399661425], + [-47.43050877436153, -16.541183968151206], + [-47.4353093967129, -16.542686666913983], + [-47.44437465480188, -16.540772824069123], + [-47.44437470484482, -16.540772813502887], + [-47.442086304406715, -16.52920677444811], + [-47.44208624307613, -16.529206464462106], + [-47.445310298655954, -16.529460794856373], + [-47.447617678602846, -16.51737193034214], + [-47.45413202305859, -16.510200356919356], + [-47.459311263960835, -16.505943602640684], + [-47.46003310604399, -16.50510334328986], + [-47.4600331331104, -16.50510331178304], + [-47.45957160013076, -16.501535524953212], + [-47.45295253733417, -16.490692055584255], + [-47.45295241975905, -16.490691862960325], + [-47.456116142055514, -16.48741123086669], + [-47.45611616386559, -16.48741120825], + [-47.45378768108221, -16.465599647332837], + [-47.44789713945904, -16.464705716206396], + [-47.4454199588909, -16.450924856345075], + [-47.429485291405044, -16.442665691602016], + [-47.42948509500189, -16.442665589792696], + [-47.431804411043174, -16.440148887678006], + [-47.43180449233552, -16.44014879946543], + [-47.42359082498469, -16.420223708953202], + [-47.42359078734937, -16.420223617648304], + [-47.42714001447737, -16.394168628548588], + [-47.42714005341253, -16.39416834265537], + [-47.41928539734516, -16.39086700922664], + [-47.41908983067992, -16.383889670825294], + [-47.41908982218226, -16.383889365031603], + [-47.415109660591085, -16.380798327322246], + [-47.40358247714608, -16.375834117775963], + [-47.37838218963692, -16.346880303675757], + [-47.37127094719997, -16.33333531344994], + [-47.36623828310908, -16.33150589517613], + [-47.35807009384043, -16.311187129017814], + [-47.352936369408106, -16.30661312816769], + [-47.35293629969148, -16.3066130660502], + [-47.356168158357356, -16.29377731062318], + [-47.35616822159694, -16.2937770594344], + [-47.347624582186384, -16.287266317716703], + [-47.34762450982791, -16.28726626257249], + [-47.35081979057013, -16.274751090352506], + [-47.35081984367401, -16.274750882337262], + [-47.345008784472576, -16.26551235522689], + [-47.33486782566198, -16.258083764467276], + [-47.33379664334089, -16.248532512446253], + [-47.32796376073929, -16.249228817090486], + [-47.327963683468255, -16.24922882631364], + [-47.32905109814335, -16.244258475415705], + [-47.32905114251122, -16.244258272611322], + [-47.32242614947427, -16.2313242182621], + [-47.322426071332345, -16.23132406569602], + [-47.33015537868268, -16.214355291784845], + [-47.33015543350234, -16.214355171420426], + [-47.32900182157559, -16.210971397648578], + [-47.32313670193803, -16.209643618732578], + [-47.32313647751003, -16.209643567922008], + [-47.328225896386016, -16.203638001606883], + [-47.33628655528716, -16.201595611524805], + [-47.336286815408116, -16.201595545610083], + [-47.329926859550866, -16.195914763862685], + [-47.3299267508401, -16.195914666757197], + [-47.33242331218689, -16.19072210005876], + [-47.33242337748273, -16.190721964245828], + [-47.329923319294274, -16.18495691881402], + [-47.3299231851144, -16.184956609392838], + [-47.340474673736935, -16.18526454744437], + [-47.34047518016695, -16.185264562211632], + [-47.33136805735175, -16.179594547575157], + [-47.331368028670774, -16.179594529717598], + [-47.331920660362904, -16.17174726498286], + [-47.340646610131444, -16.16379657423271], + [-47.34497605588396, -16.164074850094234], + [-47.34497625241495, -16.164074862724316], + [-47.340390485902006, -16.156951275368584], + [-47.34039031284627, -16.156951006532324], + [-47.348589691750405, -16.155112139459852], + [-47.348589953750846, -16.155112080695385], + [-47.34092077770992, -16.14810764817414], + [-47.34092044184468, -16.148107341406124], + [-47.35033847309655, -16.1481363333805], + [-47.35033857991768, -16.14813633370697], + [-47.347488731958784, -16.140568925299338], + [-47.34748865507117, -16.1405687211283], + [-47.35269596380223, -16.132838590044628], + [-47.352696068857725, -16.132838434083325], + [-47.34997113367456, -16.129242618462605], + [-47.33772729744611, -16.128491904292638], + [-47.33772712538646, -16.128491893738115], + [-47.34145060370347, -16.121773648032892], + [-47.34145073686359, -16.12177340776162], + [-47.336525137251044, -16.119495746538863], + [-47.33652501243684, -16.119495688821242], + [-47.33893344259346, -16.114362005136226], + [-47.33893353855524, -16.114361800581744], + [-47.33183820109337, -16.107484864857216], + [-47.331838140339585, -16.10748480597086], + [-47.333884761225875, -16.09782505234295], + [-47.33388480837546, -16.0978248297868], + [-47.33153751526948, -16.09431292394219], + [-47.33153732627869, -16.094312641178462], + [-47.33711044544803, -16.093603057041474], + [-47.337110586752104, -16.093603039048293], + [-47.33309875081212, -16.08589458417473], + [-47.32926938271867, -16.090438137951622], + [-47.32351638175529, -16.08463253513856], + [-47.32219670741813, -16.090879995495417], + [-47.311308918700384, -16.088141134211096], + [-47.31130872553122, -16.088141085613422], + [-47.313122593434294, -16.085616354328195], + [-47.31312270603517, -16.085616197595556], + [-47.31041270457811, -16.082279794769313], + [-47.31041251782818, -16.082279564848974], + [-47.31662679775547, -16.07963733415279], + [-47.31662738551974, -16.079637084230203], + [-47.3081704516107, -16.078845175322], + [-47.30818771033296, -16.074825453574093], + [-47.308187706774085, -16.074825147858746], + [-47.31152024473164, -16.068425671202277], + [-47.31572407533303, -16.06733705458408], + [-47.315724431710855, -16.067336962292867], + [-47.30350118236306, -16.06018494268597], + [-47.303501074532136, -16.06018487958758], + [-47.30745178688498, -16.050540575611837], + [-47.308777591863624, -16.050541292397593], + [-47.308670780354376, -16.046430083601308], + [-47.3086485246678, -16.045573525373527], + [-47.3085584027464, -16.042105235752476], + [-47.308560158234506, -16.042104747024325], + [-47.30986960557788, -16.04174019172837], + [-47.31136043831852, -16.04132512595974], + [-47.31050781130647, -16.03945691197268], + [-47.30897359739252, -16.03609518308912], + [-47.30897319589843, -16.036094303333883], + [-47.3089731414488, -16.036094184023685], + [-47.308973052704665, -16.036093989567206], + [-47.31109072048227, -16.033158949199702], + [-47.31109082067571, -16.0331588103308], + [-47.30872652343416, -16.02952766398141], + [-47.29936858709641, -16.026199813610393], + [-47.29936853295477, -16.026199794355254], + [-47.299888183056815, -16.022942021177844], + [-47.30046576969976, -16.0170611277364], + [-47.300465801048674, -16.017060808526637], + [-47.29618616827648, -16.018510153949787], + [-47.29618609982671, -16.018510177130153], + [-47.2968102627871, -16.015088854772205], + [-47.29681031661203, -16.01508855972487], + [-47.28969326338943, -16.01386769184803], + [-47.2888118557567, -16.015952497570346], + [-47.2877116156896, -16.00968420686283], + [-47.28100724566452, -16.011712910651397], + [-47.27649969167146, -16.006174237420034], + [-47.27649973673423, -16.00617458816199], + [-47.277256211816024, -16.012062520300592], + [-47.277256180983684, -16.012062520510597], + [-47.26813493000443, -16.012124447641913], + [-47.26783511073397, -16.014754563312845], + [-47.26162529854338, -16.014135162291897], + [-47.25404296605256, -16.019201617943086], + [-47.23851776559626, -16.013534621736625], + [-47.23374983588169, -16.015752487880977], + [-47.22836420923543, -16.012632777288484], + [-47.228310282045996, -16.015770727434507], + [-47.22161333033324, -16.011680929253686], + [-47.219493800554034, -16.014252777511363], + [-47.216757685339076, -16.00506977256214], + [-47.2109941420654, -16.00368157280477], + [-47.21099408597578, -16.00368155929429], + [-47.2118456782712, -15.998472415485042], + [-47.21184572582372, -15.998472124595745], + [-47.20773046595239, -15.997382656970956], + [-47.207765744304766, -15.987470538096076], + [-47.20776574068385, -15.9874702324318], + [-47.197991573965695, -15.987245003198352], + [-47.19522746991804, -15.981443318941718], + [-47.18942050097713, -15.981270604626365], + [-47.18507638283526, -15.982914186449706], + [-47.18507623350253, -15.982914242947102], + [-47.18671166187592, -15.978714535760066], + [-47.18671176348776, -15.978714274817667], + [-47.18286016622213, -15.97714693181161], + [-47.18285999452332, -15.977146861939731], + [-47.18690041735693, -15.97131617277355], + [-47.18690061544983, -15.971315886895681], + [-47.18110137088422, -15.970759747076839], + [-47.17822227486189, -15.977308017652074], + [-47.170221731845956, -15.973213216494537], + [-47.16686643492485, -15.968058699794948], + [-47.16686628552804, -15.96805847028108], + [-47.16898925506206, -15.966912965239477], + [-47.16898953768492, -15.966912812740224], + [-47.16475096200962, -15.964681166244532], + [-47.16475043622204, -15.964680889405406], + [-47.16866328874326, -15.96446297017746], + [-47.1686636164313, -15.964462951924432], + [-47.16611302459073, -15.962281017810815], + [-47.16611263192607, -15.962280681895972], + [-47.168910813121954, -15.962500930372917], + [-47.170440095476316, -15.957905540682516], + [-47.170440183080615, -15.95790527742881], + [-47.16642520383725, -15.956129732344436], + [-47.166424931586334, -15.956129611943547], + [-47.16949914732487, -15.953972029564245], + [-47.169499283924715, -15.953971933691891], + [-47.162530862959706, -15.943881811480088], + [-47.15850240527939, -15.945638240456354], + [-47.15850212614748, -15.945638362155327], + [-47.160477161362536, -15.942522094367835], + [-47.160477308241546, -15.94252186261265], + [-47.15731666717753, -15.94101651806513], + [-47.15257005867272, -15.94302517277481], + [-47.151390687285804, -15.93937988534492], + [-47.148899822198544, -15.940411359294204], + [-47.148899646071364, -15.940411432227439], + [-47.15130077971517, -15.934995885204117], + [-47.15130088964633, -15.934995637254595], + [-47.14577112403508, -15.93229629739592], + [-47.142397855136224, -15.935495997209156], + [-47.13920978665124, -15.931135337324994], + [-47.13920968108514, -15.93113519292784], + [-47.14191834700653, -15.926646675771867], + [-47.14191856168947, -15.926646320010382], + [-47.13513949401155, -15.928170119033743], + [-47.131479526644334, -15.934260730467075], + [-47.13147957305341, -15.934260972596133], + [-47.13453441204604, -15.95019842617512], + [-47.13453435366438, -15.950198384257757], + [-47.12562289606105, -15.943799718777624], + [-47.11225020957556, -15.954467641367424], + [-47.10972116145115, -15.956484441809756], + [-47.089054269404976, -15.96173176786204], + [-47.07389200900504, -15.955343029145096], + [-47.052755296340095, -15.937924784592179], + [-47.02044060713655, -15.92883961826904], + [-46.95564498363682, -15.917375128127011], + [-46.929329291023244, -15.91124417751682], + [-46.824834514872485, -15.885729680610712], + [-46.82278774174045, -15.88578805292568], + [-46.81169054168957, -15.886104194142991], + [-46.81168988988598, -15.886102555253451], + [-46.80608589815407, -15.872011233679286], + [-46.80546844892088, -15.859406366705036], + [-46.80546843754806, -15.859406061417285], + [-46.823188223756254, -15.82464449294632], + [-46.82318827478087, -15.824644392824643], + [-46.820969918247386, -15.816906645009295], + [-46.820969865418974, -15.816906460737005], + [-46.823922932544725, -15.808949781383609], + [-46.82392300380098, -15.808949589381308], + [-46.814829398253885, -15.79590725628388], + [-46.81311562608658, -15.78721590943347], + [-46.81311558438911, -15.787215697962802], + [-46.82738151832615, -15.747586478630682], + [-46.82711410356686, -15.729982974810348], + [-46.827114097289105, -15.729982669323856], + [-46.84241977379419, -15.714682455596579], + [-46.85566908911449, -15.683136044800431], + [-46.85566910803579, -15.68313599973911], + [-46.855077780882446, -15.67741266155781], + [-46.85255938197709, -15.653038454454162], + [-46.85255946457058, -15.653038282185467], + [-46.856491714799105, -15.644836149937223], + [-46.85897926715809, -15.639646969578305], + [-46.85897932909068, -15.63964684037855], + [-46.854418541205675, -15.628152427396783], + [-46.85441852192437, -15.628152378800822], + [-46.85484997240389, -15.618312239404666], + [-46.877614616033, -15.612153744100848], + [-46.88254327302604, -15.610095831166499], + [-46.897026880689594, -15.593191206396893], + [-46.919492956523214, -15.588824588029134], + [-46.94294637735999, -15.567006591506816], + [-46.948654042185446, -15.557855853643801], + [-46.948654058374274, -15.557855827687609], + [-46.94708290529515, -15.539845237539476], + [-46.94418068517106, -15.518198438368707], + [-46.93239667100862, -15.48318347107773], + [-46.932396653434985, -15.483183418853827], + [-46.93324343355053, -15.460238688627468], + [-46.9332434417227, -15.460238467080792], + [-46.929279549907115, -15.439951467930365], + [-46.91509097487034, -15.414846746130051], + [-46.89698700061393, -15.402294826277275], + [-46.88383968752575, -15.392354172046325], + [-46.86631100163854, -15.386015537243486], + [-46.849445162796165, -15.373176369411388], + [-46.849445088033534, -15.373176312492667], + [-46.85068894952503, -15.368533631550523], + [-46.86638994909278, -15.365177673240282], + [-46.869446734024024, -15.361486601723097], + [-46.86944685502475, -15.361486455610462], + [-46.86092443092591, -15.350973703616694], + [-46.84792372118213, -15.346772826788731], + [-46.83586468029349, -15.326548693738118], + [-46.8358646198985, -15.326548592441467], + [-46.8371995172679, -15.321329016048006], + [-46.87366506353518, -15.285415512588576], + [-46.88928490430059, -15.282259305308227], + [-46.891287162319145, -15.278146214672974], + [-46.89128721798266, -15.27814610032431], + [-46.88797978951193, -15.26826012490664], + [-46.88797975874467, -15.268260032939896], + [-46.89145114196961, -15.235272099282437], + [-46.906312882803945, -15.236631160709175], + [-46.912796707322705, -15.246867205774565], + [-46.927621729619766, -15.255107590610598], + [-46.932869459481005, -15.247558698538421], + [-46.940832847108325, -15.230714033934001], + [-46.94083294326164, -15.23071383052095], + [-46.933446765563694, -15.223499130484356], + [-46.93344670549039, -15.223499071803223], + [-46.93731325510099, -15.2050323657997], + [-46.93731330090519, -15.205032147006017], + [-46.920563082717116, -15.178228182962817], + [-46.91404209829227, -15.158291372447275], + [-46.892942562731406, -15.125114133336512], + [-46.88896813239978, -15.111131865394912], + [-46.88896806296733, -15.111131621118929], + [-46.89697677994666, -15.10309969125679], + [-46.89773006821921, -15.094230027113257], + [-46.91000075632595, -15.087959345439897], + [-46.92600395409701, -15.07357511999913], + [-46.92502672146657, -15.057518568539804], + [-46.92502670794973, -15.057518263316554], + [-46.918022545883304, -15.049030947236796], + [-46.86413736953298, -15.020398211361128], + [-46.856865942410536, -15.010279167966093], + [-46.82983546461198, -15.009277342009932], + [-46.7818242480885, -15.01933496098658], + [-46.75322694444108, -15.032759247957811], + [-46.732593989928354, -15.036191498479546], + [-46.70019389180543, -15.053453617573476], + [-46.68163703822758, -15.05863435356727], + [-46.65637411821748, -15.081520433407185], + [-46.64098741410622, -15.087601491387835], + [-46.62541150649621, -15.089528675894034], + [-46.6105839903032, -15.084023575232644], + [-46.60027752258213, -15.087825189549447], + [-46.58797402216165, -15.08113742623022], + [-46.57527678390358, -15.083646271215766], + [-46.56090931263999, -15.070374221191727], + [-46.5512881905933, -15.063890212123525], + [-46.54454929533216, -15.065284526930126], + [-46.53196777228737, -15.05640865347895], + [-46.5261032812594, -15.056383081572347], + [-46.513836287058695, -15.06131515479491], + [-46.50256885168818, -15.052266072714065], + [-46.50256875092383, -15.052265991783399], + [-46.511831451963836, -15.029892808137012], + [-46.52003283614713, -15.020185870468527], + [-46.52064032702223, -15.013754652053308], + [-46.53077932275434, -15.005293393941177], + [-46.53077936932938, -15.005293355070057], + [-46.527274582655316, -14.988167349461783], + [-46.51672665582343, -14.982032348221717], + [-46.516726631013825, -14.982032333790814], + [-46.517257407087804, -14.972879555995654], + [-46.5209765092391, -14.96740896497164], + [-46.533698452996646, -14.961023126936155], + [-46.53369855401927, -14.961023076222519], + [-46.53239368698864, -14.957975617098235], + [-46.532393586276825, -14.957975381887925], + [-46.54080619426311, -14.951618467154447], + [-46.54080622658251, -14.951618442731055], + [-46.53933099722357, -14.941340930071203], + [-46.53933096141008, -14.941340680568777], + [-46.54464989338874, -14.930672793497743], + [-46.54650459942775, -14.925459462442523], + [-46.546504624761326, -14.925459391230575], + [-46.54231289106538, -14.896042365481518], + [-46.53039282652287, -14.883725637757658], + [-46.52248020348545, -14.854700000221598], + [-46.52152494771398, -14.85119492681173], + [-46.52152488976861, -14.85119471419397], + [-46.53386379772921, -14.828285798846112], + [-46.55847425490376, -14.822168647349487], + [-46.560448245300314, -14.815029719176195], + [-46.560448288571344, -14.81502956267839], + [-46.55768114214466, -14.807013608036227], + [-46.56203436872872, -14.800892032273763], + [-46.563388099686094, -14.798988285370566], + [-46.56586240077403, -14.786388964321192], + [-46.56586245167127, -14.786388705121736], + [-46.54319699172339, -14.768688474079328], + [-46.543196966041364, -14.76868845402093], + [-46.54416107104358, -14.75302797265941], + [-46.54416108859191, -14.7530276875426], + [-46.53741151279362, -14.747726776417872], + [-46.52236408371673, -14.745115760574897], + [-46.51025086541721, -14.738276133279896], + [-46.50747920010684, -14.732165230620609], + [-46.507479161641264, -14.732165145810924], + [-46.50969331042575, -14.716092007502981], + [-46.50969334201945, -14.716091778119711], + [-46.50341494424811, -14.70409142379035], + [-46.48998453695343, -14.710013947630078], + [-46.47653135985155, -14.705113196481717], + [-46.468998809777716, -14.708233437373242], + [-46.46310906444679, -14.731190141954984], + [-46.4473311807508, -14.731692711262792], + [-46.429604271417695, -14.752716210566488], + [-46.40450154886709, -14.760347218720847], + [-46.37695250583896, -14.78657921726377], + [-46.367918953118156, -14.789636183202381], + [-46.365753419572805, -14.795422169381458], + [-46.35497703056301, -14.794217007000048], + [-46.33636466951717, -14.803297341281569], + [-46.334307149524896, -14.812224810235298], + [-46.322169884940344, -14.814596612487312], + [-46.320230861211236, -14.836323898870615], + [-46.32023088989856, -14.836323969599968], + [-46.32488720388144, -14.847803840330956], + [-46.32488709745017, -14.847803863955942], + [-46.31740650444534, -14.84946421825688], + [-46.31444296906003, -14.854500569867058], + [-46.3004425478812, -14.858095037389045], + [-46.300442667275234, -14.858095313854493], + [-46.308858761446565, -14.87758219242988], + [-46.31813738095028, -14.883274437318315], + [-46.31813739516192, -14.883274742045332], + [-46.31930574130262, -14.900455152247387], + [-46.3154504237717, -14.900608513155808], + [-46.306082232467794, -14.91156921813347], + [-46.294640071413276, -14.908629372323285], + [-46.29213845029583, -14.921791681499041], + [-46.28683483551435, -14.928161959661786], + [-46.25697879129065, -14.928929777279107], + [-46.24735801276637, -14.9223626713481], + [-46.233672496575466, -14.921544731902513], + [-46.224439210559204, -14.941747992562158], + [-46.21569623673226, -14.943541827921214], + [-46.21127425156089, -14.936982191331733], + [-46.20577766375705, -14.9371801531851], + [-46.17552122014109, -14.949441964368889], + [-46.161524710920354, -14.931064461311538], + [-46.161524529234725, -14.931064222737573], + [-46.1663842286328, -14.908466884278022], + [-46.166384287696566, -14.908466609582907], + [-46.1613914157907, -14.906189689684062], + [-46.16121372524097, -14.906885704725507], + [-46.15944207809827, -14.913824841039883], + [-46.15051980414933, -14.922086987066963], + [-46.14571893585063, -14.926532165642575], + [-46.13871944343538, -14.92851239082392], + [-46.13230497189987, -14.921392436316575], + [-46.12027112894853, -14.92007571092365], + [-46.11036408213246, -14.937032368970412], + [-46.098187268911936, -14.938999682673966], + [-46.08811277610428, -14.936409874015906], + [-46.08480739846698, -14.932037232215892], + [-46.079494099704505, -14.90501276940821], + [-46.067274751535194, -14.909792849847385], + [-46.062312140644714, -14.908007329049411], + [-46.05210039001871, -14.884107635009777], + [-46.03754645039023, -14.874673854858694], + [-46.03754642014939, -14.87467389708489], + [-46.03754639514136, -14.874673932004361], + [-46.03557388339499, -14.877428154449305], + [-46.02125085396328, -14.88379606223367], + [-46.00385169715508, -14.902307603943555], + [-46.00719379332681, -14.925234045746958], + [-46.00728502333187, -14.925859882793723], + [-46.007284999271505, -14.925859886208489], + [-45.99580863266085, -14.927488352519402], + [-45.986938374471634, -14.941075749734688], + [-45.971719927133755, -14.949140852044552], + [-45.96605274481084, -14.965663341788368], + [-45.96605275649084, -14.965663427313016], + [-45.969698141866225, -14.992356808898032], + [-45.97849327382826, -14.998597867439184], + [-45.97849321587053, -14.998597964128079], + [-45.97483964684375, -15.004692821266872], + [-45.97483964555212, -15.004692955440687], + [-45.975465769607254, -15.03889918441738], + [-45.98741610934677, -15.051029552594315], + [-45.995475071980984, -15.054503356578701], + [-45.99547507052173, -15.054503490769935], + [-45.99555071480394, -15.059274373718083], + [-46.00153332110588, -15.06402157426113], + [-46.018468580980816, -15.08131857725674], + [-46.01950125298108, -15.093053482737513], + [-46.02802590803753, -15.102243240202261], + [-46.028447926609104, -15.114127350694247], + [-46.04369141448741, -15.118146632597602], + [-46.05044175110473, -15.133006083312614], + [-46.05044171547514, -15.133006150238224], + [-46.04613468790675, -15.14109587884926], + [-46.04342102981564, -15.146191235549324], + [-46.04342107210744, -15.146191280924027], + [-46.04707959898479, -15.150116417983583], + [-46.04707959973409, -15.150116551976543], + [-46.04774668753795, -15.163747445017714], + [-46.053275948275854, -15.17075055281128], + [-46.05425174878745, -15.171986409629682], + [-46.061853320690815, -15.175390668974234], + [-46.07869413111062, -15.175521891093346], + [-46.08063705284067, -15.182112932855059], + [-46.09280411614897, -15.18519338019137], + [-46.09766406795087, -15.192629129525587], + [-46.119216140086344, -15.192243305120023], + [-46.119216135330106, -15.192243439411643], + [-46.11888621118762, -15.202094755593581], + [-46.098791030199514, -15.216799773773769], + [-46.098791038239035, -15.216800371397515], + [-46.099079747403806, -15.238285446373496], + [-46.09232818729965, -15.247931017114974], + [-46.08491726737783, -15.245853347186674], + [-46.08122175406992, -15.248532265636303], + [-46.07705276592186, -15.264697409721471], + [-46.05808397353487, -15.26275840917545], + [-46.05259742228881, -15.259206500053542], + [-46.052597389034155, -15.259206478524336], + [-46.055528955395836, -15.250585281380205], + [-46.05552899286099, -15.250585171194974], + [-46.05069262465527, -15.246989850425837], + [-46.050884784886144, -15.241612900299437], + [-46.050884789823215, -15.241612766033962], + [-46.04744052734537, -15.241752644801602], + [-46.046999653193026, -15.236366818783978], + [-46.03853367418329, -15.230931329851677], + [-46.03853364165775, -15.230931308968017], + [-46.038567710875135, -15.230451114043165], + [-46.039497310584366, -15.217345947536508], + [-46.032052647003994, -15.213956689317216], + [-46.03164456401385, -15.206130126369505], + [-46.03164456306697, -15.206129992410746], + [-46.02717254748651, -15.200241646363306], + [-46.01042454302801, -15.195836028787449], + [-46.00088886391397, -15.196019218562016], + [-45.99435574063494, -15.200612977962429], + [-45.993054813098084, -15.195877557523419], + [-45.98447678006259, -15.195978212727859], + [-45.97683027186921, -15.177605832459028], + [-45.976830236078534, -15.17760574645939], + [-45.97954811277131, -15.174399512824024], + [-45.979548173341634, -15.174399441368452], + [-45.97504852622334, -15.169306695170045], + [-45.972391365281965, -15.170204029105316], + [-45.97244162791921, -15.15473452376242], + [-45.95652921548724, -15.141824789026343], + [-45.95372143000652, -15.139546604012592], + [-45.91869757143358, -15.133387510637181], + [-45.91869664640356, -15.133387345641811], + [-45.873455217974765, -15.15813989267352], + [-45.85763932633795, -15.148851566626432], + [-45.857639300339436, -15.148851551356731], + [-45.858807017571834, -15.144395163671636], + [-45.8588070532154, -15.144395027639328], + [-45.84430567124094, -15.145266838807624], + [-45.83875324134228, -15.137335947213483], + [-45.83430202222467, -15.136682941343636], + [-45.83257677590836, -15.124082098244223], + [-45.82783784651585, -15.122809639714172], + [-45.82666188136533, -15.116971526575039], + [-45.82094022532456, -15.118348580627975], + [-45.81954484929392, -15.11752472382039], + [-45.8116380412957, -15.112856151039068], + [-45.803185809475615, -15.118147732741743], + [-45.80169421934724, -15.119081483257348], + [-45.791747289716724, -15.115466101625117], + [-45.78925435039639, -15.112746522194636], + [-45.78925425745172, -15.112747541048401], + [-45.78899876168516, -15.115548202768018], + [-45.75671782433075, -15.118549892894492], + [-45.756717802386525, -15.118549908669166], + [-45.75212932080271, -15.121848232772853], + [-45.751082350186536, -15.122600790879355], + [-45.744278446261255, -15.118737161895659], + [-45.73965222792722, -15.120463220723806], + [-45.73090049805829, -15.116851268132349], + [-45.73071545073774, -15.116525360153867], + [-45.72882993209405, -15.113204513883256], + [-45.72882990419326, -15.113204464742758], + [-45.72160405287075, -15.112247712414721], + [-45.72160311566221, -15.11224758830694], + [-45.7239367228462, -15.10428596636573], + [-45.72393675178325, -15.104285867634289], + [-45.71591000142819, -15.103703908111582], + [-45.7159099451461, -15.103703904030011], + [-45.718883783287964, -15.097416192575615], + [-45.71888381947506, -15.097416116060229], + [-45.717011078380125, -15.093928815243437], + [-45.7129327135136, -15.097821983674063], + [-45.710699733512186, -15.093478857489277], + [-45.700914435506355, -15.09043355591575], + [-45.697152001678525, -15.092979220680249], + [-45.69324727992731, -15.089737849243944], + [-45.6938638314834, -15.084231151736468], + [-45.693863841558105, -15.084231018102585], + [-45.68580436724119, -15.086857747385865], + [-45.67973892116293, -15.083914764140017], + [-45.67880633580551, -15.079658394937223], + [-45.67478524720007, -15.080561700856329], + [-45.65579243635066, -15.048549367378673], + [-45.65579240504935, -15.048549314614146], + [-45.66039753081202, -15.038298731256972], + [-45.660397561731614, -15.038298662427692], + [-45.65549218504558, -15.025819008578639], + [-45.647307288145164, -15.023433156948421], + [-45.647307364772466, -15.02343331494675], + [-45.649543422670966, -15.028043789541217], + [-45.64954337807403, -15.028043842549234], + [-45.64614780659386, -15.03207969497432], + [-45.64397187428423, -15.01733460052654], + [-45.63957591735719, -15.023511779939575], + [-45.623261807874336, -15.020276666343277], + [-45.6171967682361, -15.014300602087665], + [-45.60852756048254, -14.99664671280872], + [-45.6073932401498, -14.996591093135752], + [-45.60096551285947, -14.996275813006012], + [-45.60096570528085, -14.996275061022436], + [-45.60242776208704, -14.990561067332957], + [-45.602685770796036, -14.989552664708734], + [-45.60268580098037, -14.989552546735117], + [-45.594495506580465, -14.984246679958444], + [-45.593457680433694, -14.975521116378662], + [-45.58675156710775, -14.978175365662349], + [-45.58675151526238, -14.978175386181363], + [-45.58839027050004, -14.973738917022482], + [-45.58839030988073, -14.9737388104068], + [-45.58425516549292, -14.9704057658117], + [-45.56702394983892, -14.95651536464949], + [-45.56754106632018, -14.945853421341056], + [-45.56754107220692, -14.945853287266223], + [-45.559099443538116, -14.94353205138178], + [-45.553653442854625, -14.945126944407484], + [-45.54904273488527, -14.939048487838049], + [-45.534703368447296, -14.93827785308961], + [-45.52067087821761, -14.953577732408965], + [-45.513962224421945, -14.953989003950891], + [-45.49846616020217, -14.946402103994405], + [-45.49002707924339, -14.960783183466546], + [-45.46982661188549, -14.95007514063099], + [-45.455106107482095, -14.953738279879909], + [-45.45531266069099, -14.949094331150919], + [-45.45531266634374, -14.949094197099821], + [-45.44905765962062, -14.942678491066914], + [-45.451037326745904, -14.93902066056859], + [-45.451188496682846, -14.938741335854159], + [-45.45118855733031, -14.93874122379236], + [-45.44247124113359, -14.935273123088974], + [-45.44042975089716, -14.929692031762508], + [-45.42913346321167, -14.91974752615856], + [-45.42102026002233, -14.926605791674895], + [-45.399771582549306, -14.917522418408662], + [-45.38110567747621, -14.89782999011954], + [-45.3707185028535, -14.894153429525309], + [-45.36891270325088, -14.889508780413564], + [-45.368912680588934, -14.889508722124742], + [-45.372071730018895, -14.88097367318315], + [-45.37207177193481, -14.880973559928346], + [-45.366300775357146, -14.877691862640516], + [-45.36395221079339, -14.871716915256517], + [-45.36395144574579, -14.871717444182107], + [-45.35716414971387, -14.876409686413046], + [-45.35554484835886, -14.877529081655176], + [-45.35191568103581, -14.8761042327235], + [-45.34989204164636, -14.868091434868157], + [-45.34989201772371, -14.868091340143135], + [-45.35284722921094, -14.864127322984915], + [-45.35284731675357, -14.864127205554748], + [-45.33008496057708, -14.85952763623335], + [-45.322471815481194, -14.852088300841496], + [-45.3180189495068, -14.852591162054368], + [-45.311412870930766, -14.841120941605261], + [-45.31141283325101, -14.84112087617887], + [-45.317128759226314, -14.832018219176762], + [-45.31712890079581, -14.832017993711018], + [-45.31013691122229, -14.836712927868835], + [-45.30598178568516, -14.834353740989656], + [-45.30254772811961, -14.828865686694272], + [-45.29560470657266, -14.827413601667164], + [-45.29544189704748, -14.827379548613326], + [-45.295441007229414, -14.827379362499675], + [-45.28566759300992, -14.832498121978793], + [-45.28566455270344, -14.832499714199077], + [-45.29013149510731, -14.825755359467198], + [-45.29013154639927, -14.825755282020788], + [-45.28688975159883, -14.821759755691764], + [-45.286889713307744, -14.821759708497009], + [-45.28700957140467, -14.82152168191289], + [-45.28871684736422, -14.818131106673036], + [-45.274387776550086, -14.811523766275384], + [-45.27115987430534, -14.798844880635766], + [-45.26307132163581, -14.802226889442473], + [-45.258689501907035, -14.789544363389187], + [-45.24741441470664, -14.783629159492996], + [-45.24193789394684, -14.78655090299278], + [-45.24193737142023, -14.786551181750909], + [-45.2330747578227, -14.776638211583094], + [-45.23163686926913, -14.77502982449025], + [-45.229241246776866, -14.76574508878294], + [-45.21663432616829, -14.757915146686317], + [-45.21663430585949, -14.757915134072014], + [-45.217092569438265, -14.755753295686159], + [-45.21709259397918, -14.755753179913205], + [-45.205550315345015, -14.744761553381492], + [-45.20028674115303, -14.746595385109146], + [-45.191275620478805, -14.749734468545299], + [-45.19127557173674, -14.74973425940131], + [-45.189582142537155, -14.742467999139972], + [-45.18188302548747, -14.74459744182276], + [-45.174266718149326, -14.741341307660331], + [-45.174139332846245, -14.740969403501923], + [-45.17199251244967, -14.734701630854644], + [-45.168806095682825, -14.733832559482897], + [-45.163581039462684, -14.732407364265327], + [-45.16358122062949, -14.73240754912603], + [-45.16643934038041, -14.73532390209762], + [-45.16643925277748, -14.735323952227654], + [-45.15685661368355, -14.740807136785882], + [-45.139936957226176, -14.742994099873377], + [-45.13626662897204, -14.747439748462131], + [-45.1265484184994, -14.745415639905085], + [-45.095826746690825, -14.753022151492454], + [-45.093052962689974, -14.752124648157608], + [-45.08275094755381, -14.748790943611143], + [-45.08275035046719, -14.748790246281494], + [-45.06236459418568, -14.724979464741908], + [-45.05410014064661, -14.699475273732412], + [-45.046791330622156, -14.689751749661554], + [-45.04498347968901, -14.695966374457694], + [-45.03913663028619, -14.690113288048867], + [-45.040300362531944, -14.680508568808749], + [-45.04030037331884, -14.680508435496469], + [-44.995725954866266, -14.667839425137704], + [-44.99661581108647, -14.658869147814404], + [-44.99661582044886, -14.658869014272025], + [-44.98591200016916, -14.66215781542702], + [-44.982547813148756, -14.65769984352757], + [-44.982547728154756, -14.657699730897804], + [-44.98336058464411, -14.651865911654083], + [-44.983360596613245, -14.65186577860658], + [-44.97391730282997, -14.652127764040904], + [-44.97391720253868, -14.652127766821199], + [-44.98057527140143, -14.643527466750195], + [-44.980575348344274, -14.643527367355686], + [-44.97092483374377, -14.638865136093154], + [-44.96058272091991, -14.63174623922007], + [-44.954772951692135, -14.637886822359668], + [-44.95476968051159, -14.634030834724337], + [-44.943004911980665, -14.630242492239235], + [-44.94300485414295, -14.630242473613484], + [-44.94657254163927, -14.62375354521963], + [-44.946572663604236, -14.623753323378466], + [-44.941332417187205, -14.627711694992527], + [-44.91665880891547, -14.619684854241255], + [-44.916990263908005, -14.614689087061942], + [-44.9169902711146, -14.614688953291116], + [-44.9079642830856, -14.61341066857929], + [-44.907964259124455, -14.613410665185409], + [-44.91018871352847, -14.603575014144678], + [-44.91018874460475, -14.60357487672567], + [-44.89646302879548, -14.60548086764195], + [-44.890995381766565, -14.597680082381514], + [-44.87944004490158, -14.595909402715996], + [-44.876551277899864, -14.5920901953785], + [-44.8765512697361, -14.592090329040127], + [-44.876547816461866, -14.592133103995971], + [-44.87593833942796, -14.599687363217338], + [-44.87593747896815, -14.599686564707488], + [-44.869173764041825, -14.593409604268075], + [-44.869173727980495, -14.593409570800818], + [-44.87082537148274, -14.589426269905799], + [-44.87082541085661, -14.5894261749442], + [-44.86196248620698, -14.579229388435925], + [-44.8612600760831, -14.579627911236022], + [-44.85894339213266, -14.580942286093403], + [-44.85894294916267, -14.580942106264523], + [-44.850686940670094, -14.577590312765214], + [-44.8433658152501, -14.58086321859152], + [-44.843886250159066, -14.566335720031006], + [-44.843886255341296, -14.566335586168899], + [-44.84752121294962, -14.575506869055445], + [-44.85008491523757, -14.571167575023953], + [-44.858773842233425, -14.571547295920503], + [-44.858773997510475, -14.571547302703499], + [-44.854108349265175, -14.567164396722253], + [-44.85410833306312, -14.567164381501708], + [-44.854936801775935, -14.562648952170006], + [-44.854936820070655, -14.56264881794106], + [-44.84994075758795, -14.56279620278856], + [-44.849939959492616, -14.562796226323806], + [-44.84690556344405, -14.558049179594837], + [-44.846909511664684, -14.55777899326423], + [-44.847088624477735, -14.545511330287082], + [-44.83988238277383, -14.540378892775308], + [-44.832857126116096, -14.542489099662438], + [-44.82433393586149, -14.539402169215519], + [-44.82433389390355, -14.539402154018326], + [-44.82641463397879, -14.534207943160686], + [-44.834869170693416, -14.535949657795957], + [-44.83486922761528, -14.53594966952137], + [-44.8317734948423, -14.527173844222999], + [-44.8317732965014, -14.527173281954303], + [-44.83627222487962, -14.518513511403789], + [-44.836272293577764, -14.518513379161552], + [-44.82401518555972, -14.518201617813954], + [-44.82451149578933, -14.513631711655675], + [-44.82451150578775, -14.513631578270743], + [-44.82971697013449, -14.51198893000768], + [-44.83547218505648, -14.504610835591585], + [-44.83547222796709, -14.504610780577707], + [-44.83321756111054, -14.499853147336736], + [-44.81379476765692, -14.504685139999808], + [-44.80918846184751, -14.497884916934176], + [-44.80918839421482, -14.4978848170866], + [-44.817055213117285, -14.494231608591262], + [-44.81824568624929, -14.490221248556606], + [-44.818245731553056, -14.49022109593637], + [-44.8047777787573, -14.496583731355697], + [-44.79430495456655, -14.496615373055796], + [-44.79434560985481, -14.487877220200279], + [-44.79434561295014, -14.48787708635812], + [-44.78755000695309, -14.488900793972702], + [-44.78202878477198, -14.482620978622181], + [-44.76935321717148, -14.477364044848555], + [-44.762827921576395, -14.47821088363376], + [-44.760261734145814, -14.475258997494931], + [-44.75672189875255, -14.478405964992275], + [-44.756721527201734, -14.47840629529714], + [-44.749469319887616, -14.47180805807463], + [-44.74821656935292, -14.464697413229453], + [-44.74799550231914, -14.46344264079724], + [-44.7434103349923, -14.46769644679529], + [-44.741765828752925, -14.467219717085682], + [-44.72563796224076, -14.457675238646521], + [-44.723799394541615, -14.449080711749895], + [-44.723087472877125, -14.449374136446325], + [-44.71905325007656, -14.451036812127512], + [-44.713788917159256, -14.445047150244486], + [-44.712859956229, -14.443990163343244], + [-44.71054616293945, -14.448152928390563], + [-44.70524576823179, -14.446608924049698], + [-44.70127325081075, -14.44981430154705], + [-44.698186048551825, -14.432073686014538], + [-44.69309969619188, -14.432651836403986], + [-44.69421762991275, -14.423512988209323], + [-44.694217640821314, -14.423512855031246], + [-44.687830291383264, -14.42156557663772], + [-44.68833357968104, -14.416707334978335], + [-44.688333589370956, -14.416707201587958], + [-44.67419017771826, -14.42452215237894], + [-44.669547086223986, -14.416224624546476], + [-44.66796637265617, -14.423877072390884], + [-44.66769198384578, -14.423378446059978], + [-44.664825887198354, -14.418170015266751], + [-44.66248772704682, -14.41755857480833], + [-44.65802260210764, -14.416390855818502], + [-44.65802253581567, -14.41639083848118], + [-44.65882346337022, -14.415094077786359], + [-44.663361921310525, -14.407745505798445], + [-44.66336175606873, -14.407745066818148], + [-44.66144814175133, -14.402661321411149], + [-44.65885905882965, -14.395782954537314], + [-44.652432612074875, -14.393595302940897], + [-44.65151700270179, -14.397300769946721], + [-44.64702395339508, -14.397945522325971], + [-44.645802195636755, -14.398120827980561], + [-44.64580213005226, -14.398120801231256], + [-44.641083483686344, -14.396196196698737], + [-44.641083420851224, -14.396196171069306], + [-44.64377009784441, -14.391951846834258], + [-44.643770169766555, -14.391951733210453], + [-44.63807365066751, -14.390220250504044], + [-44.63774848097713, -14.390529992200591], + [-44.63358037753277, -14.394500187021656], + [-44.63357993397428, -14.394498963305105], + [-44.6289747436115, -14.38179358940303], + [-44.62557602660468, -14.37613668077941], + [-44.616577046281584, -14.375164629448737], + [-44.61657617113467, -14.375164534900689], + [-44.611278071594036, -14.366395537297372], + [-44.6107180939641, -14.365468678251975], + [-44.60462950789103, -14.368262669744059], + [-44.60094210883214, -14.36533224352408], + [-44.59735839087685, -14.367935659827369], + [-44.589686726413305, -14.361397630468737], + [-44.58705076206544, -14.354441788989769], + [-44.580027792386346, -14.35136618596212], + [-44.577461251647904, -14.353877024700433], + [-44.575076801369796, -14.350071488021984], + [-44.57227250549073, -14.345596607444788], + [-44.564552202771374, -14.348629192138034], + [-44.56554657109846, -14.340087277536803], + [-44.565546581642025, -14.340087144332205], + [-44.55985457448134, -14.3405280048436], + [-44.557184192041404, -14.33706319397396], + [-44.5451019904753, -14.343090557501252], + [-44.540526112313, -14.331798861965531], + [-44.529135548163715, -14.328153249406142], + [-44.51888191618135, -14.330238859570658], + [-44.510825340035154, -14.322715390435265], + [-44.508850911008224, -14.325673662626366], + [-44.50342266406056, -14.322353575141456], + [-44.49842480037423, -14.327711365644051], + [-44.487158790725125, -14.328547219794743], + [-44.48715801397687, -14.328547277404196], + [-44.483524164315455, -14.322783124342335], + [-44.483121919146534, -14.322145054477003], + [-44.47315602920196, -14.317294076410095], + [-44.473155969713844, -14.317294047452231], + [-44.4749711979877, -14.314376607392807], + [-44.47497130714946, -14.314376431943874], + [-44.469550514131136, -14.316562852767966], + [-44.46546899418314, -14.310759871492301], + [-44.46113507814017, -14.313521307640531], + [-44.45361101157102, -14.312010498547345], + [-44.43988301088851, -14.303690010044589], + [-44.430682397382334, -14.28954855502678], + [-44.411968144621675, -14.28162896509926], + [-44.39943128461837, -14.278310170565712], + [-44.39713797311426, -14.273506167062058], + [-44.394554730218715, -14.277258170736454], + [-44.38996296377955, -14.276162984438562], + [-44.38996295377928, -14.276163117680916], + [-44.389495911909954, -14.280507090260057], + [-44.378456721080696, -14.277181909310771], + [-44.37848749890616, -14.270447025510235], + [-44.37848750207483, -14.270446891823843], + [-44.3736386448178, -14.27468217676615], + [-44.36980786668479, -14.271655847455945], + [-44.361571569762525, -14.272841078404083], + [-44.36026718012718, -14.27184675380931], + [-44.352875965552705, -14.266212268583988], + [-44.352875992477365, -14.266211510996925], + [-44.35302393776364, -14.26095178948236], + [-44.353023942513126, -14.260951655790414], + [-44.346022157945036, -14.26329259345298], + [-44.34602195186931, -14.263292662346885], + [-44.3518240988259, -14.257743964045305], + [-44.35182422713823, -14.257743841331958], + [-44.35007935761883, -14.257588071093215], + [-44.34019200710097, -14.256705156433704], + [-44.34019204541828, -14.256704399464846], + [-44.34057880497786, -14.249429092239021], + [-44.34057881139856, -14.249428958612684], + [-44.32074597084667, -14.24478530023218], + [-44.316466414831325, -14.240377971270993], + [-44.30232126793814, -14.25327135798427], + [-44.29307473919099, -14.252835975673808], + [-44.29080797785773, -14.252729772758752], + [-44.28950864363747, -14.251714249514723], + [-44.28435161587567, -14.247683540746781], + [-44.28435110830258, -14.247683144020588], + [-44.27994438708994, -14.250096875294801], + [-44.279944442181524, -14.250096975600467], + [-44.28127619356104, -14.252521689447155], + [-44.281276113862155, -14.252521688496467], + [-44.27657268933063, -14.252465535157421], + [-44.27485794852081, -14.251209445366989], + [-44.26860027225737, -14.246625373526658], + [-44.26859980244437, -14.246625029354282], + [-44.25440979839789, -14.252086310778955], + [-44.24748892335978, -14.26014749914098], + [-44.24702787203341, -14.259695325185989], + [-44.24441529598513, -14.257133017120363], + [-44.244415766396585, -14.257132689183317], + [-44.24882554914395, -14.25405840195516], + [-44.249603735119905, -14.25351586682257], + [-44.2496038237223, -14.253515805050476], + [-44.24928364768722, -14.253238118973725], + [-44.247469338894795, -14.251664568286019], + [-44.24000822881213, -14.257079681965026], + [-44.23869154846567, -14.25803523879343], + [-44.2396322690665, -14.248524125948066], + [-44.2396322785394, -14.24852399267244], + [-44.23505217766218, -14.246975617027877], + [-44.23505206307116, -14.2469755782874], + [-44.23768134760585, -14.244903458460424], + [-44.24060345113604, -14.240716735857355], + [-44.24060355779251, -14.240716583037552], + [-44.218042895929166, -14.245009607662464], + [-44.21531647482108, -14.23321008073673], + [-44.20902785680136, -14.237260270419215], + [-44.20902785445264, -14.237260404000883] + ] + ] + }, + "PA": { + "name": "Pará", + "coordinates": [ + [ + [-54.95423915994347, 2.5835953274130996], + [-54.935354578458394, 2.5184891572321226], + [-54.91949170755647, 2.499585872551528], + [-54.87218460010164, 2.433651324901336], + [-54.87618383304849, 2.4265992800992406], + [-54.87463010334508, 2.415230389512011], + [-54.867630149424784, 2.4088419120989646], + [-54.86601696508096, 2.4027980901114874], + [-54.80749458191263, 2.341580744961153], + [-54.80498725361491, 2.3291305861360287], + [-54.79418412625565, 2.3126394460568718], + [-54.8019652053348, 2.3076516910040876], + [-54.807157002398064, 2.2978004891550152], + [-54.80285439655024, 2.289957589430107], + [-54.809019670639636, 2.286330755172787], + [-54.81135495529315, 2.266284801741419], + [-54.79888249299414, 2.2454657882327687], + [-54.78152201500058, 2.223303601534931], + [-54.775047759683936, 2.2202497129204026], + [-54.77057191015921, 2.2083465089930416], + [-54.763046201092095, 2.2022267142990724], + [-54.76280927830549, 2.1923486242309176], + [-54.76941239810455, 2.1874965580662225], + [-54.76782685341555, 2.1808193693727183], + [-54.78315690235222, 2.174099997343865], + [-54.78141652926218, 2.1670630221753617], + [-54.791324441243276, 2.1612615418588463], + [-54.78957784650008, 2.156119014779633], + [-54.79846433877814, 2.1500494899939047], + [-54.80090551969793, 2.14246056640248], + [-54.8061893662234, 2.1388362295239087], + [-54.80351608729112, 2.132162398982835], + [-54.80915643098543, 2.122671961244693], + [-54.80462721560214, 2.1077866180219167], + [-54.813765524299534, 2.1007232207390496], + [-54.80610339815081, 2.0762778611152233], + [-54.81201542387397, 2.0709387989443226], + [-54.812767233308854, 2.0627232327478446], + [-54.80590416544509, 2.0536208485039027], + [-54.811271445296455, 2.039346217292479], + [-54.807188627992694, 2.0372793338294755], + [-54.803740258436996, 2.0257327619195267], + [-54.79491081498716, 2.0167270697318322], + [-54.79090629177155, 2.0071673526575555], + [-54.78081031363919, 1.99951671569909], + [-54.7689609527994, 1.9961141479328466], + [-54.77207983272795, 1.9783230301627774], + [-54.76393649882058, 1.9787038963560108], + [-54.7543772313435, 1.9705092641030906], + [-54.75580177716895, 1.9602162036185622], + [-54.76007208326825, 1.9601147924114823], + [-54.758300011978484, 1.9570483138722234], + [-54.76496340345011, 1.9438547002893094], + [-54.77152325965287, 1.940410059327898], + [-54.76585508923452, 1.9075614487734405], + [-54.761800577155086, 1.9054951903096538], + [-54.76346753096917, 1.892400619349988], + [-54.75899860275935, 1.8900641443780848], + [-54.75302443732779, 1.8756318568526802], + [-54.75313172288032, 1.8508972437668083], + [-54.74981043737408, 1.845848290578297], + [-54.74842123195592, 1.8422399220384202], + [-54.73971538301318, 1.8391898355027565], + [-54.74054828040522, 1.8319643279663376], + [-54.7339620930519, 1.8318892825093125], + [-54.750608019326044, 1.814160404436521], + [-54.746856749623035, 1.805680774395966], + [-54.75435807793037, 1.7977209662101583], + [-54.75260261793996, 1.7905924029290659], + [-54.74638069872852, 1.7863611440139548], + [-54.74471556727562, 1.7757139835012425], + [-54.71846969334413, 1.7709814670892308], + [-54.702185047977125, 1.7721886263787023], + [-54.700433796233675, 1.7756228590874734], + [-54.6921004973721, 1.767784952144781], + [-54.678961367185984, 1.768805342755017], + [-54.671133128745026, 1.7655699435115533], + [-54.65149878057132, 1.7715679066526637], + [-54.643577169716075, 1.7685132696796317], + [-54.625822191879344, 1.7805573858890724], + [-54.61165760303777, 1.7792301328553313], + [-54.60185404391884, 1.7844864646577976], + [-54.58099207579387, 1.7775743735754441], + [-54.57084828414696, 1.784367996547857], + [-54.57102593398725, 1.7775042526998044], + [-54.53693555044028, 1.7701661058925597], + [-54.52804556438513, 1.7648558346014591], + [-54.52390891630068, 1.7559232933033602], + [-54.51235954805287, 1.7533266089120096], + [-54.50849274592053, 1.7481875361692842], + [-54.501770123506596, 1.750999071902193], + [-54.49588328415259, 1.746857063890288], + [-54.48554995954577, 1.7512104642633866], + [-54.48466038161149, 1.7553660451867679], + [-54.471214421104705, 1.7514185278806595], + [-54.470551312943094, 1.7556617725204342], + [-54.46474636882195, 1.7591059908920406], + [-54.43454875636623, 1.7540138334624193], + [-54.42460035607311, 1.7603536623101874], + [-54.41783295668967, 1.7564828721653492], + [-54.40388535665012, 1.7596710157385516], + [-54.38738079044665, 1.7450686921915348], + [-54.37766207282635, 1.763600461109375], + [-54.35163209504262, 1.7539862022123227], + [-54.350768088261745, 1.747304232964294], + [-54.344137167629654, 1.7465928563170299], + [-54.344602518080556, 1.7405418584823993], + [-54.32949645131387, 1.7437296654898131], + [-54.323381374798764, 1.7374166512431184], + [-54.31682329605473, 1.7367060615090488], + [-54.30924507467688, 1.740964056824244], + [-54.30571603368899, 1.7368164344934804], + [-54.313352796526765, 1.7333705412084337], + [-54.30972132425225, 1.729312471783902], + [-54.30521784304945, 1.7292300113429113], + [-54.300382795654684, 1.7237296921274938], + [-54.293129605263395, 1.7259102984290458], + [-54.28983051476556, 1.7204965216564045], + [-54.2815826053256, 1.7237624471040398], + [-54.28288374028234, 1.7161739217930818], + [-54.292300203181355, 1.708660127068529], + [-54.28002461495911, 1.7075957618639126], + [-54.274435054660934, 1.710406371014361], + [-54.26674178774436, 1.7079811197723604], + [-54.26951924333928, 1.7047259971967295], + [-54.26560776287289, 1.6956975879822416], + [-54.26918438262625, 1.6941569907470762], + [-54.26268510644273, 1.6882968470659747], + [-54.26359979180086, 1.680077144883454], + [-54.24927686624608, 1.6837136142482816], + [-54.244387026696586, 1.6760435914495058], + [-54.23008073355667, 1.6758861890549424], + [-54.22830011624038, 1.6652313979976323], + [-54.2028836248214, 1.6489234183479091], + [-54.197409011996726, 1.63167987268475], + [-54.1910457838328, 1.6248246345771646], + [-54.18735253247309, 1.6279033908298033], + [-54.18634660876761, 1.6443725787555405], + [-54.1821599825597, 1.6579897521887523], + [-54.17830547366437, 1.6573643017265505], + [-54.176075923806316, 1.6478842153848507], + [-54.16885920518927, 1.6439192831244451], + [-54.15241216694645, 1.6392487675298328], + [-54.146795760609564, 1.643684133301644], + [-54.14360613631035, 1.6405272841604939], + [-54.14230222965016, 1.6284244551608165], + [-54.129747519727, 1.6238366505139292], + [-54.13343971876152, 1.617056482041148], + [-54.12302541895917, 1.6073163907848274], + [-54.12252094838925, 1.6017157723184376], + [-54.13132750317107, 1.596824476323244], + [-54.128298695533076, 1.591228546458042], + [-54.12277194699999, 1.5907848574705585], + [-54.118493839196425, 1.5813961343763547], + [-54.10194293340073, 1.5905463814086327], + [-54.10188781892787, 1.584221343106643], + [-54.110296025738265, 1.5749051623276114], + [-54.1174681250265, 1.558091040290177], + [-54.11446720575453, 1.5511394550018862], + [-54.09872125642934, 1.550440311196731], + [-54.084533574441345, 1.5262485981040144], + [-54.08897229743706, 1.5135974104730208], + [-54.08510612495594, 1.5053797125909867], + [-54.08869109572434, 1.4919146421567286], + [-54.086409381567954, 1.4882141222038225], + [-54.07790843491576, 1.4856072035948786], + [-54.07938246695631, 1.4948179922530394], + [-54.06910340272018, 1.500886576032125], + [-54.06238069123672, 1.4946621222138174], + [-54.05588278655367, 1.4934061622884236], + [-54.039941593453385, 1.5060765483212557], + [-54.024521244886095, 1.4997743611138465], + [-54.0211371108491, 1.5067361251333677], + [-54.027522800828145, 1.5167553839344046], + [-54.02021788867926, 1.515680202186644], + [-54.008993205555285, 1.5195816867752148], + [-53.99947052149086, 1.5046879093995789], + [-54.003414562100744, 1.4893229117824578], + [-53.99741187999679, 1.475688871676019], + [-53.986107389103424, 1.4789562873862316], + [-53.97607901657827, 1.472194361713604], + [-53.967020878517665, 1.4843126187238425], + [-53.955850361458765, 1.4798105701622593], + [-53.95402825336328, 1.4678875252056773], + [-53.94349563703152, 1.4712442700835073], + [-53.935112699271386, 1.4666481305750996], + [-53.9287082769609, 1.4690969407381913], + [-53.925829280876215, 1.4653944267880306], + [-53.93053012233453, 1.4576180241220822], + [-53.93033178563924, 1.4498478049479473], + [-53.94041421599103, 1.443239951899539], + [-53.93824883329236, 1.4353810562651952], + [-53.922444187176865, 1.442178640141774], + [-53.917473511134304, 1.4568208750727842], + [-53.89594227553344, 1.4550438788379472], + [-53.89319224113944, 1.4432989158812446], + [-53.88066781832739, 1.4401538835703542], + [-53.876687321852025, 1.4353705562165566], + [-53.88769644261452, 1.4077060169757998], + [-53.8827734903626, 1.4006653919656016], + [-53.87624945300935, 1.407449529793407], + [-53.85491665808798, 1.4015130792893102], + [-53.84425022661681, 1.4062259008469853], + [-53.841555682681395, 1.401980696528838], + [-53.851026018900484, 1.398445279585977], + [-53.85277854941352, 1.3936541261826194], + [-53.8502851294655, 1.3917602600802654], + [-53.830718545990116, 1.3937720656704524], + [-53.82354824743487, 1.3895328599209373], + [-53.80699635826796, 1.391721938395223], + [-53.8050010679804, 1.3971478810791405], + [-53.80743580779636, 1.401932090762795], + [-53.82271969130205, 1.413751326343927], + [-53.82043776366265, 1.4191754534244578], + [-53.803938495714355, 1.4234435866797739], + [-53.79163748652014, 1.4165911833424099], + [-53.78366835898567, 1.4027729207295285], + [-53.77455736199011, 1.3968214667769256], + [-53.76799875893366, 1.395835103282479], + [-53.76241822369739, 1.4083118454757992], + [-53.75505133293646, 1.3944935760401258], + [-53.732273418845644, 1.3862082426070697], + [-53.731300970668386, 1.395697434693643], + [-53.71535997129098, 1.4052952117198467], + [-53.71596945494635, 1.4178557244749426], + [-53.72400064816645, 1.428148123538626], + [-53.717134101417656, 1.4316814820674624], + [-53.69677505020526, 1.4228489231551829], + [-53.69575040034686, 1.4180612001079802], + [-53.713382406024195, 1.3963519133534665], + [-53.71140797826927, 1.3838825777474626], + [-53.701406755992295, 1.377838538937245], + [-53.68744285770654, 1.3857172183950877], + [-53.68299422599774, 1.3842751162708073], + [-53.68041782836367, 1.3724405601348395], + [-53.67049773046719, 1.371909292737908], + [-53.66480125916027, 1.3751695658302725], + [-53.66027611073754, 1.3997561284401492], + [-53.655190044952946, 1.4066301848038585], + [-53.64678010255159, 1.4075441367898915], + [-53.641218307487314, 1.3990551849442732], + [-53.64088747162534, 1.3883911819922616], + [-53.6450787547237, 1.38016232554912], + [-53.6434700748918, 1.3638062249073128], + [-53.648999029030826, 1.357022673808694], + [-53.66302482739113, 1.3494155165991208], + [-53.65091417818438, 1.3361435613161596], + [-53.641831789601014, 1.3348879571741572], + [-53.63319393226371, 1.3472788413933072], + [-53.59516518840452, 1.3580742657935418], + [-53.5706381670084, 1.3372225552783379], + [-53.565418034353556, 1.3396714791931041], + [-53.56380603979158, 1.3496143036728412], + [-53.54844001714076, 1.3484539956689385], + [-53.542109478880185, 1.3447550341045602], + [-53.53333395261652, 1.322349615975862], + [-53.54008395521709, 1.3169194709728453], + [-53.561190093587975, 1.3107511755449364], + [-53.562581783940836, 1.306502873395058], + [-53.55663906000406, 1.28472649855145], + [-53.55265934455964, 1.2802104995732362], + [-53.53046769859408, 1.2735453170460123], + [-53.52327633185124, 1.2612605626954567], + [-53.53052403281367, 1.2452543815775838], + [-53.54626991041604, 1.2284293570465679], + [-53.53894169250156, 1.2123482690451028], + [-53.53385741345675, 1.2100947315928243], + [-53.492972124598545, 1.2265823201273247], + [-53.473687482930174, 1.2392544789477178], + [-53.43871864430878, 1.232057187924138], + [-53.43369543397567, 1.2344100632006567], + [-53.43049392274324, 1.2431821197779003], + [-53.42647046547792, 1.2426431933760187], + [-53.42525307202543, 1.2214024655130553], + [-53.417387029303924, 1.2026987500753166], + [-53.40294007072433, 1.1938542438615762], + [-53.396030183421594, 1.179215639300917], + [-53.39982812135556, 1.1583323692189138], + [-53.404359841569736, 1.1510970372165201], + [-53.421224383526976, 1.1472842747615097], + [-53.43972303366673, 1.1535973120498562], + [-53.45330385884487, 1.1435529668535165], + [-53.45910726885738, 1.1336047542303889], + [-53.45577256418849, 1.0772959398569768], + [-53.45265867987889, 1.0711514623360454], + [-53.43591340822866, 1.0595045176599815], + [-53.43464149417635, 1.0479353998516292], + [-53.42741783984687, 1.0432407213511143], + [-53.4222795163448, 1.0336622247575848], + [-53.42130107292362, 1.0288746211061064], + [-53.429885636303766, 1.019737154072288], + [-53.42821147598278, 1.0115564438561717], + [-53.42678002349546, 0.9923512981550435], + [-53.417417894215326, 0.9891945422537397], + [-53.41075362604758, 0.9819679403937915], + [-53.41061970012688, 0.9565685435621221], + [-53.413689427550686, 0.9473459913492008], + [-53.41144460093826, 0.9292702488214308], + [-53.36130208418613, 0.8960384906570067], + [-53.354886954173516, 0.8881808108272813], + [-53.30224692914678, 0.8589238702584406], + [-53.28744628019697, 0.845643500884839], + [-53.27477898410807, 0.8248588713168648], + [-53.25509969576848, 0.8091397583555426], + [-53.21436087731647, 0.7856581286252793], + [-53.206942476478794, 0.7732772536027543], + [-53.202387170550594, 0.7757197552301034], + [-53.19022525244546, 0.7683124198505126], + [-53.18456034551302, 0.7474318127977094], + [-53.157359808018214, 0.729003326925048], + [-53.15102892350748, 0.7193310917884082], + [-53.14689101142409, 0.6997160410530451], + [-53.1398570438519, 0.693030503476359], + [-53.12408257391767, 0.6972848869807949], + [-53.116890355775695, 0.691500871142371], + [-53.10625142089503, 0.6839122565859674], + [-53.10569706654629, 0.6793918112662174], + [-53.11588694345214, 0.6565142683900337], + [-53.11555869087995, 0.6482864212068802], + [-53.12266520854051, 0.6300217074015734], + [-53.14727527357004, 0.6002656234544179], + [-53.15480099270286, 0.563286985022918], + [-53.14810900112116, 0.5519872985517338], + [-53.14833596659286, 0.5415901447884822], + [-53.15201786505154, 0.5318255326883915], + [-53.16266726127164, 0.522418994459204], + [-53.159586186210056, 0.5137412838569748], + [-53.169722097186245, 0.4936669811270524], + [-53.15950144135239, 0.4881560524982956], + [-53.155081703177245, 0.4801121003106145], + [-53.167698478583674, 0.44566201300448605], + [-53.1591931560278, 0.4202603185901755], + [-53.159887608993785, 0.4029012456689728], + [-53.175263773315606, 0.3816506856921893], + [-53.17400322685754, 0.3742382937424445], + [-53.16025149627772, 0.356251226257899], + [-53.15125066277368, 0.3518231648852528], + [-53.138748777871406, 0.33039655381836947], + [-53.134303705290584, 0.3001134970043832], + [-53.111887159014834, 0.28646479667601354], + [-53.09483527939932, 0.26214738288668155], + [-53.10636188784717, 0.23167853127912513], + [-53.094246652184815, 0.19524293576286808], + [-53.083331584544446, 0.1885554867438576], + [-53.07005636657961, 0.1694780351532367], + [-53.05208168481573, 0.1572754473820963], + [-53.039561021720736, 0.13593861227293455], + [-53.03647054645195, 0.11975543773341274], + [-53.02922078092431, 0.1046563530792609], + [-53.01108416528574, 0.09498334161326377], + [-53.01492080262439, 0.05962995071368335], + [-53.0036391793907, 0.04380586156293909], + [-52.985197870818645, 0.03557909522397376], + [-52.97724794288812, 0.023734697742295113], + [-52.976714451950635, -0.007689555456980281], + [-52.97097759154496, -0.0431709292602504], + [-52.95997296759364, -0.06328222455425808], + [-52.93269948385791, -0.14236688439403236], + [-52.90396902412246, -0.15499703267218531], + [-52.89755508951631, -0.15452739666800958], + [-52.87677768116708, -0.14281609145923507], + [-52.85551614516137, -0.14811164331820148], + [-52.844725884990886, -0.15978577389526927], + [-52.8360555666952, -0.1862079369917833], + [-52.75839288601809, -0.23973964490637886], + [-52.754384273182865, -0.2622461986788181], + [-52.74017138436947, -0.276664874967315], + [-52.71619972315946, -0.29275306163595666], + [-52.70085906165628, -0.29289949801930665], + [-52.68877709667242, -0.30419325331508706], + [-52.684129723625, -0.31437036944624036], + [-52.68180781813303, -0.3400208938891567], + [-52.69591064843682, -0.372057888557723], + [-52.69852881579416, -0.3872232170423161], + [-52.681033861876614, -0.4151405874901771], + [-52.679109992132474, -0.4237303036386167], + [-52.68472271778414, -0.43469015384006227], + [-52.69303102641874, -0.4422067281241926], + [-52.70264021733307, -0.45928745462866205], + [-52.69097646064085, -0.4772149623828146], + [-52.695394407352815, -0.49645653168635767], + [-52.68175979863585, -0.5164872728939391], + [-52.673585129665895, -0.5194438039798477], + [-52.667249681987, -0.5251663947995717], + [-52.66980717841336, -0.5382513296757692], + [-52.667722611948264, -0.5441909051288236], + [-52.639967597548996, -0.5849597225622455], + [-52.629144706245626, -0.5939013052561976], + [-52.6129488423287, -0.5949468303523748], + [-52.59299870274181, -0.5817501277722492], + [-52.56976414913768, -0.5760159158769402], + [-52.535139310096994, -0.5741409358095539], + [-52.52313788636661, -0.5891279931849728], + [-52.513143441375156, -0.6196986272897037], + [-52.51119005942222, -0.6399244821155037], + [-52.511003628972176, -0.6569224602400945], + [-52.51580881710685, -0.6636229766053134], + [-52.512473608587975, -0.6651561365515684], + [-52.51034739561661, -0.6792352227012313], + [-52.501692741735674, -0.6928122395489099], + [-52.497367443689704, -0.7113348026212224], + [-52.497836311331646, -0.7308000345457404], + [-52.50178473510444, -0.7468139189584286], + [-52.521591764457256, -0.7852613136990001], + [-52.52268282646059, -0.7917438083036298], + [-52.52114500336837, -0.8011852349276715], + [-52.50980992964405, -0.8135033084555409], + [-52.51771011687414, -0.8217982753797016], + [-52.53500047215014, -0.8420901423388978], + [-52.53861626265407, -0.8548578255978698], + [-52.52875007659636, -0.8591763137293158], + [-52.51689304807101, -0.8586662886829591], + [-52.496795534671016, -0.8495870961498075], + [-52.468366007521574, -0.8411447113407294], + [-52.45547810038778, -0.8303164950178754], + [-52.44428245589014, -0.8342192338523454], + [-52.41981149766173, -0.854747647768386], + [-52.403118635908285, -0.877197996560049], + [-52.4012562862269, -0.8875715727809708], + [-52.404783897905425, -0.9134684407824234], + [-52.41045203303375, -0.9175977996608825], + [-52.41391842234235, -0.9190331248089652], + [-52.429306960543684, -0.9203797829035177], + [-52.4394560963702, -0.9355963070414451], + [-52.436597016458805, -0.9483164150529219], + [-52.41988885082638, -0.9660120400903379], + [-52.41817525500039, -0.9990737342730163], + [-52.4144246959752, -1.0093197838630834], + [-52.416751798712895, -1.0256600677319427], + [-52.42919509316068, -1.0426898564166729], + [-52.42700058900142, -1.0508429839302675], + [-52.42002757633853, -1.0527486959743215], + [-52.400139351568576, -1.0436784732992792], + [-52.38308128989705, -1.0540393955686915], + [-52.3581166106672, -1.0626321149775562], + [-52.35198616081843, -1.0698218084906854], + [-52.33294918723035, -1.1159385328116966], + [-52.30094622320053, -1.1159561481726326], + [-52.27328360890984, -1.128577920877894], + [-52.238623279967115, -1.1262862059341645], + [-52.22210950938408, -1.134574964948479], + [-52.1735338380399, -1.1301785072444617], + [-52.1623515287773, -1.1340987796782322], + [-52.146693167960535, -1.14883735569418], + [-52.12022534209462, -1.1462438249339078], + [-52.11661185318353, -1.1500024203625008], + [-52.10672698524937, -1.1831133647600585], + [-52.1107527896501, -1.2047212400023875], + [-52.10983508128556, -1.2181610686484157], + [-52.10203676901352, -1.2260127865659967], + [-52.07042250010492, -1.2360289273181417], + [-52.05461165522045, -1.2342647244955776], + [-52.047028197612896, -1.2193540168923005], + [-52.04752689255155, -1.2143290773683146], + [-52.062924505129125, -1.1929364413632648], + [-52.06394466752541, -1.1859757853579511], + [-52.05502789158843, -1.1769952718594876], + [-52.04086420432455, -1.1701776055041768], + [-52.0112946534785, -1.1676466668901178], + [-51.9910862734429, -1.1718610164469236], + [-51.986999754283254, -1.1568802909482336], + [-51.993651508973166, -1.1320142117813923], + [-51.98645524299272, -1.1219860340777812], + [-51.97494929379545, -1.1206629789369869], + [-51.96555657040479, -1.1258540723331496], + [-51.96192158060371, -1.1344826515877844], + [-51.96589398169007, -1.159647823002422], + [-51.96150286723216, -1.1674009079938625], + [-51.95584066495416, -1.1697194680556509], + [-51.9468682420524, -1.1660516433100245], + [-51.93333677926069, -1.1375358531318405], + [-51.92592076283014, -1.1323609353482658], + [-51.89715111733305, -1.162092252625641], + [-51.88197772646827, -1.1663916203552314], + [-51.80906202398349, -1.1571454780236248], + [-51.77836532454228, -1.1404566208012081], + [-51.77933785044988, -1.1376370016985113], + [-51.747879906364666, -1.1072638743973535], + [-51.70039356316466, -1.06325551558118], + [-51.68719713381462, -1.0360546955629952], + [-51.685613593506325, -1.012907309760919], + [-51.689730249195144, -0.9976327417950194], + [-51.69555610585746, -0.924764850335414], + [-51.69232845122377, -0.9001751085196519], + [-51.68817200095994, -0.8232534400802692], + [-51.683549073021645, -0.7974921538707364], + [-51.665447968920546, -0.7619428920096356], + [-51.59550355286638, -0.6504856120765287], + [-51.511932796508276, -0.5639490953004667], + [-51.50305411837036, -0.5560152039525422], + [-51.486670691052154, -0.5456577552281014], + [-51.457756932458565, -0.5132813303455934], + [-51.4324477902493, -0.4733909041209264], + [-51.42069420004669, -0.42904189286070865], + [-51.40724367405697, -0.4173956070729517], + [-51.36247436955362, -0.3681567911648025], + [-51.36184391125302, -0.3582472065928915], + [-51.354734723146564, -0.3210866702491685], + [-51.345920219453795, -0.2961571243938289], + [-51.3280470586802, -0.2690297564877407], + [-51.302074854417214, -0.2517453534176731], + [-51.289564977488524, -0.228126473498356], + [-51.2656771766355, -0.19550528501456058], + [-51.216332819255584, -0.11866286546960031], + [-51.174868886224, -0.10458467751425923], + [-51.143331191874445, -0.10132904325827777], + [-51.11836469413998, -0.09758733897828448], + [-51.09700534233708, -0.08840885801980719], + [-51.084888961152515, -0.08758953070075441], + [-51.06564521072822, -0.07627565491586084], + [-51.0295639647963, -0.028324162034140822], + [-51.00744693986278, -0.0003952184594390217], + [-51.000444598550835, -0.00039516518827389566], + [-50.996883678167116, 0.003401569538022784], + [-50.98508750868216, 0.029370429521500183], + [-50.9748050028418, 0.04174356236967982], + [-50.934141405152175, 0.06963157835011882], + [-50.91100112401422, 0.07866879444110908], + [-50.908045616836816, 0.0794289569773591], + [-50.803491197247816, 0.10627458472333483], + [-50.75194275095385, 0.12607658643860417], + [-50.70756085428206, 0.15594168831368685], + [-50.67563524363614, 0.17912982579064407], + [-50.644795523007026, 0.20870036640290962], + [-50.623574696987994, 0.2317278716592454], + [-50.59964175445243, 0.24930906606164435], + [-50.55612198413699, 0.30666883118524585], + [-50.523866414863726, 0.3723421387088782], + [-50.5039737309536, 0.43503860287863955], + [-50.4859641174821, 0.4588559498236665], + [-50.47618324756372, 0.4814507544307728], + [-50.46723846230959, 0.5308728066591671], + [-50.452293915664846, 0.5709119100145417], + [-50.43652090854266, 0.6000573667269836], + [-50.40983569924922, 0.6232941665682492], + [-50.34721084709323, 0.6667952598113759], + [-50.31461571043478, 0.6779655742271165], + [-50.2478007202841, 0.6918497449431429], + [-50.19798197094484, 0.7008475427395403], + [-50.15694762017372, 0.7051318864435959], + [-50.09389012629102, 0.7020454672321759], + [-50.0920296263731, 0.6471337455310875], + [-50.059425023065714, 0.6163710675624902], + [-50.04077966614482, 0.5734912609762794], + [-50.03552970928897, 0.5088122677133619], + [-50.04347574627362, 0.48610691706881787], + [-50.050473217548955, 0.39971825954502566], + [-50.05249916870702, 0.37221895555033874], + [-50.061229237793164, 0.3383868606021645], + [-50.015002445934414, 0.33322592432208575], + [-49.98480378756777, 0.3231839166629933], + [-49.97813866442537, 0.3242683891342516], + [-49.97261695914457, 0.3189310791912427], + [-49.96722635496156, 0.3205591289439521], + [-49.95808697097156, 0.33123201381790013], + [-49.94614146381845, 0.3211896269027608], + [-49.935669049867805, 0.31820325749436523], + [-49.93043544658366, 0.32033914784666506], + [-49.91614169560069, 0.3124116728782996], + [-49.90331415597621, 0.3109625920854542], + [-49.847724243519245, 0.33429625777239874], + [-49.841507243972444, 0.33981375214559945], + [-49.83784213969499, 0.3396309020009956], + [-49.828029941095565, 0.32633366466830777], + [-49.814282355316685, 0.33383942845606274], + [-49.79611678649392, 0.33700295843012984], + [-49.783036844545954, 0.3355552422380662], + [-49.76314007854219, 0.3490299413767766], + [-49.75269859125346, 0.33735959089011847], + [-49.75388756106347, 0.3321139063227031], + [-49.73896412601597, 0.3225091345626807], + [-49.7336694121762, 0.32668522018469864], + [-49.74569991158869, 0.3409775617839776], + [-49.74213960953737, 0.34947874078432184], + [-49.734304805423456, 0.3524630670419241], + [-49.7344224657461, 0.3485734401374294], + [-49.730030406113066, 0.34884473779785663], + [-49.723973439591035, 0.3556274559866018], + [-49.713670945845, 0.3546307370896], + [-49.708618287792646, 0.3594243070296662], + [-49.677613760100954, 0.36593248661559036], + [-49.666192833602125, 0.35363052324243144], + [-49.66039110821221, 0.35236267817138045], + [-49.66696949351945, 0.3447664780973446], + [-49.662423459288746, 0.3438599679920428], + [-49.65439083443943, 0.349197464782332], + [-49.65005497456332, 0.34250269850041126], + [-49.6423386108863, 0.34186892738431873], + [-49.63386354716613, 0.3323708108135837], + [-49.63452884852652, 0.3291140462335445], + [-49.615699620986526, 0.3130131149224483], + [-49.60150617091906, 0.2666116214566482], + [-49.589642689323206, 0.24918524917852627], + [-49.56227784012364, 0.20293633535938185], + [-49.51910629795318, 0.1430545831535226], + [-49.48219987439502, 0.08707336485538515], + [-49.458000762570876, 0.064915899346843], + [-49.44883744309264, 0.07025114464740508], + [-49.43530907752629, 0.06771855077287572], + [-49.42969525370595, 0.06075413261432523], + [-49.42564377688041, 0.06165890053901017], + [-49.418223197007435, 0.05704551987515808], + [-49.41675121801912, 0.05252277159036602], + [-49.391033862392106, 0.04583155393714823], + [-49.38341692403133, 0.03262710213031376], + [-49.3891126486808, 0.022680057204503442], + [-49.398365353047616, 0.020508712200348354], + [-49.396946152606475, 0.01571663555006251], + [-49.37878142510148, 0.012370318435480787], + [-49.36758858042642, -0.0003819222246640724], + [-49.22367228663803, -0.06449677102217309], + [-49.17497412726125, -0.08618519910744007], + [-49.084925290859424, -0.12628053625031851], + [-49.008193684714826, -0.16043652103161177], + [-49.00003053802125, -0.18195730399863927], + [-48.97296586229138, -0.19807526724688249], + [-48.95442464936317, -0.20653028199326803], + [-48.930695412256405, -0.225954996278385], + [-48.91604631185944, -0.23159596264802446], + [-48.91356010166107, -0.2331552268486974], + [-48.90367405121005, -0.22813422700459868], + [-48.898470102691654, -0.23060946838028082], + [-48.896694857700915, -0.2233395987786386], + [-48.87642101146661, -0.21964835195500276], + [-48.84511577388017, -0.21862946336896244], + [-48.83180951784238, -0.222208588566415], + [-48.825507017643126, -0.21924312900562726], + [-48.81558667734868, -0.22238291047306447], + [-48.80702686166357, -0.21894658167867218], + [-48.792833018320145, -0.22003220517276498], + [-48.78494360614986, -0.22364084415951768], + [-48.77519969429196, -0.24039113380870014], + [-48.76439370630255, -0.2405742333904743], + [-48.74586725748536, -0.2507171376932829], + [-48.71769417192963, -0.2526597051934635], + [-48.70283318322934, -0.25714790567480306], + [-48.695164881410356, -0.25326268321241663], + [-48.676695197001976, -0.2536529727343189], + [-48.677612050160505, -0.250031719249308], + [-48.669307162455944, -0.24523792154117546], + [-48.637806292882225, -0.23198114350454388], + [-48.60650114027948, -0.23073463212582312], + [-48.59769587898205, -0.2352410253811132], + [-48.5878065731402, -0.23203196562977302], + [-48.568195656450456, -0.2358136492663067], + [-48.56727598426482, -0.23989341559562188], + [-48.5602789617497, -0.24214039313085464], + [-48.552420151945086, -0.23598832447584792], + [-48.535502988964346, -0.24046569349439878], + [-48.518831041833415, -0.23813541800307494], + [-48.508471762617134, -0.2444515646783459], + [-48.47269655123721, -0.2318597132303837], + [-48.44066653772287, -0.24398933352647623], + [-48.42574826245122, -0.25640776084976674], + [-48.41224698383485, -0.2572640371172838], + [-48.405920907641665, -0.26155535779346484], + [-48.400256881735885, -0.2717421559243179], + [-48.39280815483497, -0.2771568261260413], + [-48.38486501860628, -0.2977553029271224], + [-48.39047791640145, -0.3633007890223627], + [-48.395163021572166, -0.37148593154813286], + [-48.43380653009119, -0.40336760921705844], + [-48.444526648605766, -0.42495062087924124], + [-48.45720140963257, -0.4737413624534579], + [-48.47258741493942, -0.4990948338957465], + [-48.23608292821582, -0.5817558549786076], + [-48.17341094047364, -0.6037189566041746], + [-48.02449419774236, -0.6558815690632136], + [-48.000414843512964, -0.6643124150314074], + [-47.996665296676014, -0.6817031137251023], + [-47.99839194925709, -0.7017259624184322], + [-47.99696858249558, -0.7047919789136475], + [-47.994248432253094, -0.7025669492815314], + [-47.989745728394695, -0.7060759380542871], + [-47.98642015890094, -0.7058845453339011], + [-47.98344887091132, -0.6899068439688077], + [-47.977364146158045, -0.6920396020921182], + [-47.97609685119579, -0.6867874913764555], + [-47.97389039979122, -0.6752521841569318], + [-47.9626399621134, -0.6628164320289202], + [-47.96486603759105, -0.650175245921711], + [-47.96222180416243, -0.6367080168006368], + [-47.95266285835418, -0.6284220535496297], + [-47.939247186442856, -0.631806692404209], + [-47.92655584644771, -0.6217369132548787], + [-47.91953079145464, -0.6293734904724387], + [-47.91086136597313, -0.6130472094946421], + [-47.912250607913066, -0.6006767906145576], + [-47.90255598634908, -0.6026244762324046], + [-47.90074785869196, -0.5958781421128998], + [-47.908339337786934, -0.5881979773663958], + [-47.90519351351679, -0.5804771837382308], + [-47.89650689457422, -0.5723845604072356], + [-47.89819941214787, -0.5689701752935774], + [-47.90502462206505, -0.5711787865717659], + [-47.9041467858457, -0.5601261226694968], + [-47.89758818857453, -0.5528282646031762], + [-47.88675469473356, -0.5512695063436386], + [-47.86469535314384, -0.556686727133148], + [-47.85464308270372, -0.5734365916835653], + [-47.8574192159237, -0.5816130170916116], + [-47.85550051076931, -0.5855690374904203], + [-47.84208675760064, -0.5866691780937554], + [-47.84633076571435, -0.5914483500589836], + [-47.845084459903035, -0.5973723361535727], + [-47.84789259381662, -0.6015304743678628], + [-47.842333732739846, -0.6225829741187645], + [-47.849277372103955, -0.6309172801792053], + [-47.847836186301095, -0.6341354282693829], + [-47.851527197628045, -0.6352278150516745], + [-47.85383369021313, -0.652153685811132], + [-47.86380855589583, -0.6571374684216473], + [-47.86535768173679, -0.6678144527107868], + [-47.87119495077789, -0.6774691825754149], + [-47.86227755050903, -0.6818107522639569], + [-47.85480835164477, -0.6704537457081353], + [-47.84874821647132, -0.6673179489836507], + [-47.840969997758755, -0.6802377997175492], + [-47.83666629868029, -0.6791883880404055], + [-47.82224979976368, -0.6650808797785918], + [-47.82455422136948, -0.645966860308727], + [-47.82241487995655, -0.6395086511272317], + [-47.81908758675487, -0.6422738630794733], + [-47.81655463780424, -0.6343767021453486], + [-47.825005402464484, -0.6137773823427928], + [-47.82263704598663, -0.6029583581994581], + [-47.80849836241175, -0.5935377939198634], + [-47.81486329289728, -0.5894630580822277], + [-47.80805213113938, -0.5744380542524554], + [-47.8149207951727, -0.5611119452704609], + [-47.80858698131498, -0.5528785854368695], + [-47.800162088372836, -0.5503703319948287], + [-47.79078138958551, -0.5538848158308028], + [-47.78717120845329, -0.5612891708732114], + [-47.787643374852436, -0.5658748255839564], + [-47.80155271830126, -0.5775516539709077], + [-47.802307349408075, -0.5865890745500179], + [-47.79919704906132, -0.5891830217085556], + [-47.79433347803698, -0.5841437401069044], + [-47.77480709513838, -0.5804890682904015], + [-47.76810899605234, -0.5853102689988233], + [-47.772755873882026, -0.5912939638458515], + [-47.76288855546343, -0.6177684785806573], + [-47.76946942232255, -0.6364686214694731], + [-47.766475675935894, -0.6382720044197646], + [-47.75849093404046, -0.6307996830205163], + [-47.75776296394567, -0.6295357134425346], + [-47.75338791697156, -0.6219375749666668], + [-47.75591912090438, -0.6083837377139037], + [-47.75057976204966, -0.602434331864247], + [-47.74944837158271, -0.5940176390566971], + [-47.75799836571176, -0.5832861133742789], + [-47.76111995736791, -0.5761029540334454], + [-47.7637285620677, -0.5654885347343999], + [-47.76144988362973, -0.562528349409373], + [-47.73836026033803, -0.5642124300079245], + [-47.73141775898466, -0.5540386579139667], + [-47.733030881330535, -0.5492030916719374], + [-47.7215027009982, -0.5427266847158791], + [-47.71922662171404, -0.5371320534540257], + [-47.703911566388506, -0.535273459596165], + [-47.69396803623811, -0.5427787995292882], + [-47.69874962051763, -0.5491650760685564], + [-47.69016161170943, -0.573193875533549], + [-47.69624951772027, -0.5767260671780133], + [-47.698746631156084, -0.5931157343289007], + [-47.6865850078163, -0.5982613607470145], + [-47.68596757351288, -0.5961276173030674], + [-47.679560351830375, -0.5922560197517068], + [-47.66271934555499, -0.5805338811032364], + [-47.64827643231784, -0.5860920213489027], + [-47.6365056168891, -0.6037317172841781], + [-47.63287713810057, -0.6181969540408064], + [-47.627198821409806, -0.6261990793660519], + [-47.627560493077524, -0.6316829373215116], + [-47.63231193858062, -0.6361188793054735], + [-47.63224754535582, -0.6482101084070103], + [-47.64114215054563, -0.6548005222716806], + [-47.63077767260061, -0.6597036370641425], + [-47.63136589449032, -0.6682823499699955], + [-47.63373687163843, -0.6737095975879323], + [-47.64008234720996, -0.6892616805833448], + [-47.630946239578165, -0.6889420455497454], + [-47.62644834938088, -0.7014262382956816], + [-47.62031813182289, -0.6945117784174181], + [-47.60922103275842, -0.6973897843331222], + [-47.600844222105785, -0.6801255067333454], + [-47.5804850579692, -0.6381690494255176], + [-47.58219465896056, -0.6227828530038119], + [-47.5778084232577, -0.6096297103853953], + [-47.58409593158555, -0.5944133020727328], + [-47.58317438888431, -0.5927011105857815], + [-47.57847153673322, -0.587935291226763], + [-47.57944024553979, -0.581375080555817], + [-47.55988573790685, -0.5875543388937086], + [-47.55658559114309, -0.5972730013696683], + [-47.542365659925515, -0.6046716928524923], + [-47.529267171364545, -0.6243174215571211], + [-47.52544475977272, -0.6256605905396262], + [-47.48984888459835, -0.6032447793677517], + [-47.47041931507341, -0.5939004237171122], + [-47.44432910043343, -0.5892442204555856], + [-47.419188682678424, -0.5920516427469386], + [-47.41470188004174, -0.6021658312467415], + [-47.42169642802086, -0.627913710406801], + [-47.41993909718161, -0.6315850722956848], + [-47.42946954467978, -0.6473923343137515], + [-47.42910992214782, -0.6538425371277458], + [-47.425578103484156, -0.6554559467570013], + [-47.42033173911121, -0.6421526248426356], + [-47.417391505908824, -0.6504042348378721], + [-47.41363821996067, -0.6489259578096592], + [-47.40694226636368, -0.6574707066633736], + [-47.400253360812115, -0.6571689764124469], + [-47.38886705069094, -0.6443119725087135], + [-47.3881341457679, -0.6343654064723854], + [-47.37030443701693, -0.6313313762562883], + [-47.366745540169184, -0.6260016467234636], + [-47.37825334723973, -0.6197818201717828], + [-47.383033755012065, -0.6108933585762492], + [-47.380278727535675, -0.6084734372437612], + [-47.35388412231771, -0.608952915958647], + [-47.346830084942916, -0.6038590656764026], + [-47.32950555015604, -0.6005331453945103], + [-47.322496084292915, -0.5941902542222425], + [-47.29986062245666, -0.5988620914009165], + [-47.28286340323898, -0.6070324202880207], + [-47.28316461498437, -0.616203874605636], + [-47.28627354585233, -0.6171760225048056], + [-47.293354556811366, -0.6077379680807955], + [-47.293164158488494, -0.6156407743305381], + [-47.286387666378076, -0.6284948139235981], + [-47.28977959824971, -0.6287407907832092], + [-47.28997607364929, -0.6366278690263945], + [-47.293957372831095, -0.6375411174828074], + [-47.29321619395021, -0.6458213262016506], + [-47.27897357815911, -0.6415623077165487], + [-47.26935964088396, -0.6494082920248919], + [-47.26571833563857, -0.6447960511815736], + [-47.25942052289479, -0.6517408906156653], + [-47.252105809535756, -0.6464403695372062], + [-47.26369155859084, -0.6359010671587367], + [-47.2652809026789, -0.629545326012135], + [-47.262085796290165, -0.6264337002227904], + [-47.249303824931516, -0.6319862961841042], + [-47.24930769910932, -0.6282852536788421], + [-47.23596771689209, -0.6283478908317982], + [-47.21252711736748, -0.6375599131736867], + [-47.19944502743194, -0.66498646252274], + [-47.21455455439325, -0.6858703351339798], + [-47.21897375539998, -0.6864603350085222], + [-47.229918303600584, -0.6784283665054839], + [-47.241247438217684, -0.6844523894481033], + [-47.24650100058915, -0.7041558050660462], + [-47.24374115193923, -0.7072708457112122], + [-47.22852559384236, -0.6970341392213855], + [-47.22922286858945, -0.7050574917875302], + [-47.225058403695414, -0.7028862246054381], + [-47.21625437045654, -0.6978076146467261], + [-47.21755252704052, -0.6940467192741729], + [-47.21405377011313, -0.6905833803122449], + [-47.20154985546455, -0.689487874261689], + [-47.19499523513197, -0.6995369251278919], + [-47.1921096202274, -0.6945479973520935], + [-47.19525584129706, -0.6932333820031495], + [-47.19505434911254, -0.683292296721774], + [-47.184055126520676, -0.6719981279973368], + [-47.18472176530605, -0.6648134647968045], + [-47.17964020139121, -0.6631011995371987], + [-47.18192117409635, -0.6689770687352319], + [-47.16799614313345, -0.6632458474088123], + [-47.17135819987361, -0.6675696345669528], + [-47.1610274789855, -0.6677707565199685], + [-47.15875057369641, -0.6700132969956316], + [-47.16146881142013, -0.6734202586123534], + [-47.157800848590874, -0.6752630319191243], + [-47.16541812318071, -0.6829789786873124], + [-47.168609053664525, -0.6950186777918659], + [-47.16588939410683, -0.7286794001324394], + [-47.17380616763704, -0.7333167856100252], + [-47.17777968531005, -0.7439367642139603], + [-47.171541940308266, -0.7692906117641063], + [-47.17010997808847, -0.7765311644979179], + [-47.16717320797376, -0.773675445311197], + [-47.168999485369596, -0.7630601808681408], + [-47.16563248406787, -0.7606663068565647], + [-47.16067003278668, -0.7740286156922206], + [-47.15736348820908, -0.7692544004628289], + [-47.16069392806308, -0.7538521610785771], + [-47.1642264464303, -0.7526814182697801], + [-47.16691611458297, -0.7446562429424384], + [-47.14997279867314, -0.7147896636236585], + [-47.143914630544195, -0.7228356602973959], + [-47.14480798068286, -0.7321051394000998], + [-47.140304158911704, -0.7280927456946565], + [-47.14571978008631, -0.711191700240411], + [-47.14447050741132, -0.7060547533333509], + [-47.135055033127045, -0.7063281627144348], + [-47.14193907938782, -0.6979053108040779], + [-47.141305967538095, -0.6877590839625043], + [-47.136549652590865, -0.6854437744722933], + [-47.129860624109206, -0.6883621309140467], + [-47.12605026398548, -0.6829326283948614], + [-47.111719037204004, -0.6780619608069935], + [-47.106527767050686, -0.6700818446020521], + [-47.08868915869729, -0.6626597443961038], + [-47.091088000866165, -0.6696138576450366], + [-47.086393187896306, -0.6796974970993854], + [-47.078948222226984, -0.6835293031089454], + [-47.068666142660796, -0.704541720472547], + [-47.087914330328395, -0.7140070566402805], + [-47.079220161075796, -0.7179154519326904], + [-47.07833720691324, -0.7266952548083258], + [-47.072941614103854, -0.7236615062809928], + [-47.06960701646396, -0.7305700483493205], + [-47.072829908910464, -0.7314997214528528], + [-47.07219538302242, -0.7363296077969157], + [-47.08966688978163, -0.7492778459612384], + [-47.08638450614277, -0.7507710743829613], + [-47.07330310097563, -0.7449866918688869], + [-47.06919220739077, -0.7545781533144053], + [-47.076499271004835, -0.7588353641206685], + [-47.073495742423894, -0.7606440391505133], + [-47.072388982645045, -0.7723149914885284], + [-47.066694365439595, -0.7765242410892932], + [-47.06088493871379, -0.775105244798316], + [-47.06819714734576, -0.7700431116791642], + [-47.0667755118209, -0.7658231511410962], + [-47.06308264539073, -0.766105347474555], + [-47.06386231342428, -0.7504292362805679], + [-47.058081916702506, -0.7291787012694398], + [-47.059527868803364, -0.7050838026149265], + [-47.04991629064363, -0.7115411229796798], + [-47.05560759427159, -0.7380004880820337], + [-47.05485615830669, -0.7754257188314847], + [-47.063582993662834, -0.8004728343439529], + [-47.060827220183384, -0.8044119508489153], + [-47.05772455368644, -0.806279347989976], + [-47.05091883521632, -0.7936726658573341], + [-47.03376461147799, -0.8054358566967059], + [-47.02841537477541, -0.8028719039389353], + [-47.03947177814546, -0.7885984433326896], + [-47.0454171320325, -0.7898391531914097], + [-47.04927937101443, -0.7789733266608442], + [-47.04119430642442, -0.7681964883106657], + [-47.040918719436405, -0.7438574739184527], + [-47.04480784071397, -0.7334950386509176], + [-47.04111290072846, -0.7293320182538168], + [-47.03777726922096, -0.7304400010130732], + [-47.0376406680917, -0.7374238815057544], + [-47.03025150480708, -0.7408064520134204], + [-47.01905578439517, -0.7304019564698336], + [-47.022166660940066, -0.7282344332493009], + [-47.01885764480219, -0.7243074179689766], + [-47.00080620709281, -0.7143849999280242], + [-46.995414290969705, -0.715435965937923], + [-46.98222415012117, -0.7053546820258039], + [-46.97188549019146, -0.704190175887911], + [-46.95769589819308, -0.7134224384003309], + [-46.94966845482906, -0.7390992389857656], + [-46.95475040085703, -0.7409643174697558], + [-46.95247045728999, -0.7345890857172663], + [-46.95668775466161, -0.7315611443068053], + [-46.95938746618476, -0.7401028663775556], + [-46.95769649428013, -0.7475758360571712], + [-46.960857201149075, -0.7480386581563755], + [-46.9626628835123, -0.7536970497944028], + [-46.97030583263607, -0.7551814138572686], + [-46.96052309015946, -0.7596982053368755], + [-46.967417331256236, -0.7690907782392558], + [-46.9800252590474, -0.7773855147207954], + [-46.979586228286855, -0.782619514932086], + [-46.97663945387853, -0.7879991729018628], + [-46.968308647136936, -0.779359503715844], + [-46.959643110723015, -0.787155494769679], + [-46.96013621465722, -0.7930801591493678], + [-46.95042778469324, -0.7890031957986324], + [-46.951452783692794, -0.7869172701781381], + [-46.94600807196859, -0.7850178794778495], + [-46.935267783294485, -0.7902797473151539], + [-46.939264485721836, -0.7999410613995042], + [-46.9448176016457, -0.8004200192800229], + [-46.94903315603094, -0.7918415104260378], + [-46.94677665744414, -0.7985332034910833], + [-46.955298834787364, -0.805915736443671], + [-46.94827978773489, -0.8125452895841513], + [-46.94233789774781, -0.8348489551547823], + [-46.93257837318422, -0.8463472093098771], + [-46.93480127952322, -0.8541056742279478], + [-46.9418611938709, -0.8594050137231337], + [-46.95160405071368, -0.8572240506307138], + [-46.95588851638868, -0.8611838150491], + [-46.93544323318709, -0.876598277846318], + [-46.923722639942, -0.8740910225539431], + [-46.92044406563581, -0.878508492193459], + [-46.91747535655372, -0.8758203331843769], + [-46.921111898195825, -0.8721376829615733], + [-46.91985927874602, -0.8597053277351011], + [-46.9122774851965, -0.8592425310134232], + [-46.91113922889344, -0.8626157507941438], + [-46.90622419276264, -0.8581364102680039], + [-46.91155551815114, -0.8561261189555028], + [-46.9130019951308, -0.8512205868049281], + [-46.90963672077882, -0.8442214462217098], + [-46.913637263941695, -0.8272837842025939], + [-46.911965103955566, -0.8182712217072794], + [-46.89638579421001, -0.8085415750788834], + [-46.88460739229974, -0.808709401994402], + [-46.88069216668518, -0.8127946655832093], + [-46.87977111656248, -0.8062232130401793], + [-46.88636048467672, -0.7976564113591745], + [-46.88553120481188, -0.7940276620217882], + [-46.87991945858023, -0.7973482334310715], + [-46.88630727875843, -0.7867429451911002], + [-46.88352289493386, -0.7810459742080369], + [-46.88747460141191, -0.7817903356607427], + [-46.88593522196419, -0.7793737028517211], + [-46.88435319974568, -0.7696691976876643], + [-46.87277146187354, -0.7580018475269472], + [-46.86582679153569, -0.7635002486167357], + [-46.863945619578566, -0.7710269082648896], + [-46.85805573776503, -0.7694017964126347], + [-46.8596985915777, -0.7538067082231297], + [-46.847024719953765, -0.7467687782350865], + [-46.85180025281814, -0.7436358562916998], + [-46.862165101463304, -0.7452499326766316], + [-46.86414037754382, -0.7409637319632879], + [-46.857777379689416, -0.7362782728874689], + [-46.845694039942124, -0.7357025532268623], + [-46.829609960200486, -0.7491631063697963], + [-46.82985792169412, -0.7568363030051819], + [-46.83527629000615, -0.7616458554926486], + [-46.837105425946504, -0.7686667707197826], + [-46.8329754896613, -0.7675920503810135], + [-46.83163941692099, -0.7925625969097521], + [-46.85521942878057, -0.7891126604573839], + [-46.85699949833156, -0.7936302884723119], + [-46.8379935998127, -0.7963324353136476], + [-46.8334975963289, -0.8037839163275533], + [-46.83686405881907, -0.8154441020018057], + [-46.84664251895767, -0.8183778129475424], + [-46.847052920882284, -0.8250196937966908], + [-46.85763683445778, -0.8346502430675691], + [-46.85400426614351, -0.8362956569353499], + [-46.84055765937319, -0.8248832855168838], + [-46.83419204900881, -0.8275906673671858], + [-46.83575146401023, -0.8346741513285142], + [-46.85214129035813, -0.8479137323432484], + [-46.850664381624284, -0.8643062766632053], + [-46.84516269221577, -0.8613069192012553], + [-46.84599596740735, -0.8480010888757763], + [-46.83913713643584, -0.8452498006971564], + [-46.83872645504289, -0.8487225504196876], + [-46.83497322031812, -0.8470735272151914], + [-46.82594732354559, -0.8409462860609831], + [-46.8236622972434, -0.8282975376470376], + [-46.81672566112407, -0.8287973155824011], + [-46.812664559126475, -0.8529451964976933], + [-46.81561024032319, -0.858362129999131], + [-46.811665862906196, -0.8585341724725114], + [-46.81091161452491, -0.8630908392825185], + [-46.81152219896566, -0.8680269336995146], + [-46.82158091125859, -0.8746509257148531], + [-46.826468779051794, -0.8884525332567367], + [-46.82275026168693, -0.8930474836368113], + [-46.82683211715996, -0.8956584934318723], + [-46.821498954668215, -0.8984664162891467], + [-46.820690636397536, -0.9029063646910974], + [-46.8177762386399, -0.9001109844897126], + [-46.819084937434354, -0.8873614620017806], + [-46.80793920925182, -0.8770330492065264], + [-46.80176638453241, -0.8622552620411008], + [-46.78705126425806, -0.8810366129338292], + [-46.79749510980092, -0.8881718782391196], + [-46.79422372896747, -0.8979372151296098], + [-46.78889121770273, -0.9003931561858298], + [-46.79147372903804, -0.8891650332357339], + [-46.78241479374065, -0.8859891807069812], + [-46.78227810086194, -0.8828128104577051], + [-46.78541514367245, -0.8721950240164426], + [-46.78896814829009, -0.8704432838443243], + [-46.789247408036076, -0.8653207016868233], + [-46.78519647345252, -0.864351193172773], + [-46.79152772549849, -0.8609726066511556], + [-46.79436045325719, -0.8450781784266036], + [-46.783581824664765, -0.8340315025712826], + [-46.773162085118024, -0.8379241240426966], + [-46.76580585345728, -0.8514955299864742], + [-46.763888294458994, -0.8487905594476677], + [-46.76886302761364, -0.8306481558867949], + [-46.76636228687295, -0.8174991000048363], + [-46.757661110051494, -0.8250114563037637], + [-46.74702725008654, -0.8286165198157158], + [-46.74033310925868, -0.8628761033877888], + [-46.74210607667991, -0.8659745662420478], + [-46.73344411650354, -0.8943442747398732], + [-46.7331683690568, -0.9020148961404506], + [-46.74566826204273, -0.9136675519062845], + [-46.74630238372981, -0.9204233507673737], + [-46.74268954794371, -0.9209820924454702], + [-46.74030353853229, -0.9146525279716401], + [-46.72705378185282, -0.9046571950776499], + [-46.721886894171, -0.8960895464715855], + [-46.72169395828635, -0.884560726641683], + [-46.728885646954836, -0.863716366295255], + [-46.72160499053071, -0.8270978047356723], + [-46.703664677222335, -0.8216565777012026], + [-46.697967263101006, -0.827879688047924], + [-46.68966248578611, -0.8485703294115349], + [-46.677475823630495, -0.8554990222091348], + [-46.6812486207559, -0.8605025278691103], + [-46.67405101218942, -0.8616368704357775], + [-46.67341365586725, -0.8514628987904435], + [-46.66827253471818, -0.8526111320750289], + [-46.66618801957373, -0.8569574895953491], + [-46.66446875718683, -0.8497048836176845], + [-46.6681058434743, -0.8457390671931083], + [-46.67882742055753, -0.8438845610330038], + [-46.687914036665646, -0.8175535480677205], + [-46.685713377120464, -0.8068481783885653], + [-46.678411989751616, -0.8058671934033226], + [-46.67071495325198, -0.8145549933810051], + [-46.663168238979615, -0.8146022656095747], + [-46.661467716513656, -0.8110391195181558], + [-46.672298922391576, -0.7974783588381241], + [-46.66221517279173, -0.789890016637164], + [-46.664223756324276, -0.7869595714183086], + [-46.65210229511994, -0.7829809287806605], + [-46.63810577110726, -0.7882858789090595], + [-46.643549360844595, -0.7983312243147352], + [-46.646465319159944, -0.7954492040605391], + [-46.64847323982667, -0.7979821449328673], + [-46.639969292734065, -0.8112781618156626], + [-46.62502602077817, -0.8127936308842254], + [-46.615550197875194, -0.8261666372090027], + [-46.619021762428915, -0.8290161889239709], + [-46.61146557423919, -0.8341249990498555], + [-46.610555683149805, -0.8497116575919169], + [-46.61811153470526, -0.8543261734159505], + [-46.62255341924209, -0.8476717255900517], + [-46.62949845627196, -0.8475225983004466], + [-46.623830491174225, -0.8610647109268184], + [-46.627861210152176, -0.8627138218395926], + [-46.62630664211675, -0.8721201294320622], + [-46.63341367397299, -0.8764490584465413], + [-46.64099287474489, -0.8685611487891155], + [-46.645196928316345, -0.8688473735920145], + [-46.631944611519046, -0.8878987587962173], + [-46.652335533865596, -0.8936438814508437], + [-46.6469673790626, -0.9048556104823283], + [-46.643131789450095, -0.9045070093088766], + [-46.63271998683569, -0.9132944358590217], + [-46.63469104145136, -0.9286078490955578], + [-46.64311348707058, -0.9399822740805432], + [-46.652356619239, -0.9446828791050395], + [-46.66277736349806, -0.9409573459465758], + [-46.66657766515838, -0.9452788827347198], + [-46.662278428869854, -0.9475041538761548], + [-46.66466332128795, -0.9498502946131641], + [-46.67854995934668, -0.95562947846439], + [-46.68372314956849, -0.9522587647494545], + [-46.68779369919672, -0.962114853275636], + [-46.6753341509692, -0.9762453907005053], + [-46.67122566296153, -0.9732943378030867], + [-46.67402590484229, -0.9700712507651281], + [-46.656856822886134, -0.9662211158145335], + [-46.64758336631036, -0.9585591751738733], + [-46.6557785708925, -0.970434469934612], + [-46.64183482905103, -0.9674622834996538], + [-46.637857363837114, -0.9654051048812201], + [-46.616327141790244, -0.9545009119965665], + [-46.60683043834738, -0.95457918814116], + [-46.60177912654326, -0.9513486636869128], + [-46.59744231795029, -0.9709002732724482], + [-46.593078826797125, -0.9748834057631641], + [-46.58516055895394, -0.9766309263686302], + [-46.580960642369845, -0.9740290127854692], + [-46.568526738927, -0.947654317920834], + [-46.56496783788966, -0.9481569537275499], + [-46.56450257956211, -0.9392429612539611], + [-46.55686119712489, -0.9325270672581608], + [-46.5609748532212, -0.9283900179456576], + [-46.56004843662903, -0.9189837424638245], + [-46.56033505387321, -0.9080958643384633], + [-46.55102680664505, -0.9039606739609204], + [-46.54252634441812, -0.9176631440550614], + [-46.5468847527676, -0.9257903472405067], + [-46.54388499016287, -0.9295852787343997], + [-46.543166836349286, -0.9582978426866313], + [-46.53868945407498, -0.9724571398585816], + [-46.54093813503176, -0.9790180373411995], + [-46.537159607279015, -0.9776457393346617], + [-46.531022142451164, -0.9576706325539975], + [-46.53599670833571, -0.9589637506444809], + [-46.53610954990069, -0.9483289900624873], + [-46.525277733364675, -0.9471758220963976], + [-46.52894694897957, -0.9538461850654859], + [-46.51824677761653, -0.9453933258827628], + [-46.53169058258417, -0.9308319686565236], + [-46.523272202747556, -0.9184407882157417], + [-46.52214044909524, -0.9226071059956904], + [-46.51888498350393, -0.919812504010826], + [-46.52116923916372, -0.9057375905120661], + [-46.513110658452725, -0.8968072293584913], + [-46.50741468660864, -0.8967776588038627], + [-46.50880183085514, -0.8901631703502498], + [-46.51235414656013, -0.8888612454706829], + [-46.51099778563863, -0.8842765630142347], + [-46.500191393991784, -0.8744796252380472], + [-46.49658544459473, -0.8765714437864325], + [-46.484580347558094, -0.8731582347587525], + [-46.47483320047103, -0.8813057765889026], + [-46.470940871970335, -0.8868136761284635], + [-46.47177695302907, -0.8914058659977011], + [-46.46680006060879, -0.895170266145772], + [-46.45505477835779, -0.8744171165154465], + [-46.450157787683, -0.8702204648372716], + [-46.441523832939204, -0.8702829944694861], + [-46.44164093879216, -0.8660704883754703], + [-46.449696067456756, -0.862499478944058], + [-46.42699396671193, -0.8579271882491732], + [-46.41827033189831, -0.8714565057743462], + [-46.41888483790487, -0.882583849376717], + [-46.4232698037577, -0.8915037865238765], + [-46.43966416645686, -0.905496156460498], + [-46.44751857065417, -0.9044725238176613], + [-46.44924824139981, -0.8978596935246295], + [-46.45671939998988, -0.8996870163112106], + [-46.4687201458641, -0.9133387987329041], + [-46.46835551088821, -0.9205572465530223], + [-46.47946920935163, -0.9247848046516383], + [-46.483831341503404, -0.9310361954995716], + [-46.48180484580649, -0.9333908398267146], + [-46.473468999198715, -0.9283952046009472], + [-46.468827009154275, -0.9354512416855466], + [-46.47294232528501, -0.9394220572661239], + [-46.465630577816185, -0.9428760449254024], + [-46.4720779898619, -0.9485940188902168], + [-46.48077649578609, -0.9436986386959224], + [-46.47429848365447, -0.9562278902575523], + [-46.482884130001366, -0.9619132044158403], + [-46.4930579644239, -0.9607529153992117], + [-46.49122531595541, -0.9643542066124982], + [-46.50027967374992, -0.9733853592052324], + [-46.47083411142249, -0.9708901306459704], + [-46.46436267900405, -0.9760937506808929], + [-46.46452559626376, -0.9997921493438441], + [-46.47219577921043, -1.0044629731789476], + [-46.47761045052027, -0.9979302909160248], + [-46.486661343202826, -1.0003529633955173], + [-46.47830181400955, -1.0102609386437638], + [-46.480218360242894, -1.020271404806485], + [-46.4733889438875, -1.0168941688943518], + [-46.47194617572492, -1.0229875643479693], + [-46.475721707412774, -1.0336030545080357], + [-46.48305150595384, -1.0377268289001207], + [-46.47639065888446, -1.04323401999], + [-46.47061370037507, -1.0514050947474072], + [-46.46866745029034, -1.053338803898092], + [-46.4706951018244, -1.0391589181558023], + [-46.46541696708476, -1.0295261801271323], + [-46.45399933687468, -1.0321700351425285], + [-46.451772265858814, -1.0282746725517449], + [-46.46102671638623, -1.0243328135020404], + [-46.461221404224744, -1.0175373501168392], + [-46.444943523400106, -1.020816486789983], + [-46.42710736917932, -1.0138716458759582], + [-46.41288973495314, -1.0197998837594913], + [-46.41258158069955, -1.03984488527566], + [-46.41641111263878, -1.0498066486868245], + [-46.42538371279159, -1.0473710864702324], + [-46.43024830865546, -1.0532010747051213], + [-46.428745061059985, -1.0654085591160063], + [-46.42580397538119, -1.0651978422708372], + [-46.42420361093784, -1.064906145080594], + [-46.4263638335588, -1.0544727377708762], + [-46.42077172121103, -1.052264580762789], + [-46.40874552172371, -1.061917074444149], + [-46.41111240866587, -1.056641849491046], + [-46.406605581997944, -1.0440797042249557], + [-46.40788500088591, -1.0267804135688114], + [-46.41033469082886, -1.0178127076720955], + [-46.4241329302535, -1.0063772744100152], + [-46.418888186465594, -1.0050213006827255], + [-46.419223321592185, -0.9964428316182596], + [-46.41015959046224, -0.9961073477666952], + [-46.40279881224007, -0.9893321677561927], + [-46.39894016914417, -0.9912049566215254], + [-46.39044107484874, -0.9871605828126072], + [-46.39279740663477, -1.0171529459893358], + [-46.38216473742793, -1.0339272811089506], + [-46.382619776094764, -1.0419798113258758], + [-46.381076843048035, -1.0450641659777806], + [-46.37535485074233, -1.052314593447344], + [-46.37255509219155, -1.0508923851435077], + [-46.37747541711029, -1.037394926538502], + [-46.37758197948149, -1.0190622794647861], + [-46.373375139881155, -1.024478119509721], + [-46.35785582529338, -0.9985511728022763], + [-46.34983043070197, -0.9952340567793448], + [-46.34466112816467, -0.9966122790689445], + [-46.34649326778436, -1.0003981099829526], + [-46.336772673603114, -1.0157927609137891], + [-46.33382547554221, -1.042128815331441], + [-46.34794221691595, -1.0633988029778474], + [-46.34857301141439, -1.0716949704517136], + [-46.34355263984182, -1.0751673316507817], + [-46.3384957140428, -1.0716931423112603], + [-46.33263381675081, -1.0739461308737237], + [-46.319834987506226, -1.0718078473674522], + [-46.305553500056185, -1.0843642160162026], + [-46.30368753136545, -1.0796820439031414], + [-46.313055551549674, -1.0701874840175647], + [-46.3334084611202, -1.0692057719730945], + [-46.33330097024379, -1.0618379604049033], + [-46.32472309235136, -1.0538936373540446], + [-46.319779204305505, -1.0401318547469118], + [-46.32061331834816, -1.0220731796757516], + [-46.31729747417687, -1.0143574219815952], + [-46.31079967458301, -1.0151755360274428], + [-46.29857812615887, -1.0271218386755456], + [-46.29730072767783, -1.0470139423011156], + [-46.30105236696893, -1.055197624597141], + [-46.29719233472373, -1.0545517768075718], + [-46.29349734567387, -1.0481795517683017], + [-46.28380437311591, -1.0479325918211204], + [-46.29333402188522, -1.0414916233622438], + [-46.2912991971599, -1.035500894021599], + [-46.294634660130924, -1.0200483996973133], + [-46.30727152111351, -1.0094410857496463], + [-46.297139595741115, -0.9937396023629556], + [-46.289938059589595, -1.0000778228028975], + [-46.271799230711224, -0.9915924948079724], + [-46.26772034063009, -0.9961713180425421], + [-46.26651966480021, -0.9827978823446282], + [-46.27708201508426, -0.9881634741759885], + [-46.287076473881626, -0.9826839842489592], + [-46.272496617621485, -0.9653167094459357], + [-46.27438305382556, -0.9622731079043076], + [-46.268190890654786, -0.9430445936018248], + [-46.261494801621986, -0.9442664289044251], + [-46.2643282097374, -0.9387067339311471], + [-46.2612418603504, -0.9367660453370119], + [-46.25385935226084, -0.9477201687694008], + [-46.258050966684515, -0.933335773654522], + [-46.24339095765465, -0.9285165597260466], + [-46.25674439399755, -0.9268798464106152], + [-46.26249413676624, -0.9315155974620952], + [-46.269695028583165, -0.9290857391376629], + [-46.265074526499106, -0.9178388128351196], + [-46.25126894648469, -0.9121177325468712], + [-46.24730356847105, -0.9136487373149653], + [-46.244885469583835, -0.9104990871974399], + [-46.24179944152616, -0.9121323312657635], + [-46.241685613353894, -0.9065574375779364], + [-46.22485711155777, -0.9078135628197501], + [-46.21385449800796, -0.8966512420508274], + [-46.21433924740081, -0.8900403628801277], + [-46.20466013177309, -0.8863713656162587], + [-46.190105707966296, -0.8944145725078321], + [-46.185630073327374, -0.9035172183471049], + [-46.18710236855799, -0.9332859318524362], + [-46.202377213503, -0.9289839020492896], + [-46.210134369864775, -0.9301828358505597], + [-46.211025597406206, -0.9415474431623931], + [-46.22058126344717, -0.9520436317324765], + [-46.202712869916795, -0.9505258433733241], + [-46.20154904975409, -0.9649222164062504], + [-46.218550593651365, -0.9753830370893674], + [-46.229797290026475, -0.9679804759143028], + [-46.221686992645886, -0.978919847739052], + [-46.225027224935346, -0.9875136866817], + [-46.23252187905718, -0.9829781652009238], + [-46.23696640077777, -0.9918956292981493], + [-46.25244299921131, -0.9977136016082858], + [-46.234080848430885, -0.9963710998199952], + [-46.22166271653664, -0.9897370254861293], + [-46.218613094237455, -0.9802138046055672], + [-46.215054643521256, -0.9796930183960609], + [-46.215217121479114, -0.9905454098897309], + [-46.21899411065638, -0.9970882836990794], + [-46.21633200035194, -1.0133273693659177], + [-46.222746114376235, -1.0211662530884817], + [-46.21085356739368, -1.0198920452949574], + [-46.206609021040684, -1.0398650186612888], + [-46.2090519367667, -1.058669813951589], + [-46.21880294397188, -1.0608635798497943], + [-46.229191597802775, -1.0710063166073125], + [-46.24799431480427, -1.106595558518873], + [-46.261796702777204, -1.1230981709566044], + [-46.259772826332, -1.1388048676218048], + [-46.272788525205115, -1.1547807448101943], + [-46.27699114971234, -1.1691471074846642], + [-46.2728250162032, -1.1720007261153005], + [-46.267750633534654, -1.1603913691167638], + [-46.25353011064604, -1.1501241612595485], + [-46.24924236000916, -1.137498780956011], + [-46.24305597964046, -1.1325527249672787], + [-46.242885894464486, -1.118779130202784], + [-46.22997333408988, -1.0952113580077245], + [-46.194045028990494, -1.0664014068768766], + [-46.18649731641483, -1.0487304991338606], + [-46.18699530311707, -1.0175137755908397], + [-46.18021845009611, -1.0005617401385487], + [-46.171584606348056, -0.9928539271959905], + [-46.16160431419776, -0.99600194967264], + [-46.155669151287775, -1.0035279295851414], + [-46.16127324462784, -1.0141903684135178], + [-46.1562173610666, -1.0242751845162248], + [-46.15860314007166, -1.0401926530283547], + [-46.15610861409309, -1.0497199655401097], + [-46.160023905573695, -1.0566149713541513], + [-46.1616000925578, -1.0575784807356283], + [-46.17227089669569, -1.0715446059989189], + [-46.1850540037481, -1.1105174560000572], + [-46.20538471583184, -1.1315827979794075], + [-46.20144055073706, -1.135176906987294], + [-46.19905314051464, -1.1305363078527029], + [-46.184163636951716, -1.1280682729846845], + [-46.17199352396, -1.1463328531845596], + [-46.172714242200755, -1.1554717856303653], + [-46.166363461493, -1.15488092890644], + [-46.16650055603481, -1.151092359938807], + [-46.18208308593274, -1.1198636180342976], + [-46.174525522387135, -1.1132358014874648], + [-46.16577215826969, -1.0834709438511643], + [-46.15835781985982, -1.0803698344009818], + [-46.15121509487144, -1.101011146562291], + [-46.14891520198007, -1.125268032620586], + [-46.15446611282119, -1.135585977265537], + [-46.148860443741626, -1.1352384222476333], + [-46.14541401217098, -1.1204906644097832], + [-46.13974090313976, -1.1218462010115344], + [-46.146498414502446, -1.114796529909867], + [-46.14674563654946, -1.0925860046921583], + [-46.1510786308829, -1.07431893114037], + [-46.13738341607578, -1.0576446296593036], + [-46.104603702426225, -1.0411871522143008], + [-46.0964923380717, -1.040110752601927], + [-46.09007981871453, -1.0326060232111365], + [-46.09266200139466, -1.0271651590913453], + [-46.08727319476871, -1.019063927088338], + [-46.08215981446114, -1.0162279600691841], + [-46.072934948348355, -1.018580020923287], + [-46.071579114280595, -1.0327741665985417], + [-46.09482965632499, -1.0517527622949552], + [-46.10071864245864, -1.070974523925719], + [-46.08846811220278, -1.0902559619514909], + [-46.090298870218625, -1.0941502340397116], + [-46.083772040077505, -1.0921973242262137], + [-46.075716705672534, -1.1008649286988652], + [-46.073299981934596, -1.1109007082174163], + [-46.08713600848615, -1.1344347078091133], + [-46.08710149675735, -1.1576978546408572], + [-46.098166727055236, -1.1960750220408671], + [-46.10415312694611, -1.2020975765244657], + [-46.104153260595346, -1.2020977109816415], + [-46.112767228138715, -1.19682907132068], + [-46.130514999308176, -1.20672099211021], + [-46.14245265326813, -1.2194385135382504], + [-46.14245268538266, -1.2194385477511605], + [-46.14592180777325, -1.2271506947890662], + [-46.14279972784907, -1.2329293962412904], + [-46.13741388495477, -1.2428977827364138], + [-46.13741398300937, -1.2428981652454896], + [-46.14003847299067, -1.2531365289901828], + [-46.140038493624324, -1.253136609486027], + [-46.153930744448544, -1.2695141654262883], + [-46.15393085058476, -1.2695142905521177], + [-46.14018952954035, -1.2993433973833375], + [-46.126434794686425, -1.2989656515489554], + [-46.11910130678002, -1.3048572232345932], + [-46.123430892490624, -1.3193190524054699], + [-46.12260829746819, -1.321503149264677], + [-46.121598597129164, -1.3241840001313165], + [-46.11646215106072, -1.3259931550466295], + [-46.11504975023836, -1.3264906246287815], + [-46.09919763034875, -1.3232977604571885], + [-46.09526856575823, -1.3271398791827882], + [-46.09859900687505, -1.3348676623734859], + [-46.09859906594873, -1.3348677994467149], + [-46.103919959555625, -1.339167652625062], + [-46.10392002729104, -1.3391677073627328], + [-46.10414377299533, -1.3402741641612321], + [-46.1074656226817, -1.3567021999122486], + [-46.120975581128285, -1.3690899476032887], + [-46.12097561304517, -1.3690899768692877], + [-46.12475512266949, -1.3777984282193911], + [-46.13152888399112, -1.400406424542122], + [-46.13152891607749, -1.400406531638567], + [-46.14718333425236, -1.4153030010020247], + [-46.1471834373194, -1.415303099079994], + [-46.14626874678676, -1.4195250871971343], + [-46.129840019314095, -1.4294484782305155], + [-46.13317458116051, -1.4373308897215864], + [-46.13317463642493, -1.4373310203601324], + [-46.16953616222458, -1.4703664843167452], + [-46.16953629357473, -1.4703666036550571], + [-46.15985182195572, -1.4800947943198621], + [-46.15678102105707, -1.4925695861019035], + [-46.14918954095821, -1.4980748260047834], + [-46.13969631238324, -1.5143245811387165], + [-46.13775213156643, -1.5448932134423454], + [-46.13356715663319, -1.5536098807565975], + [-46.13128356166379, -1.578567442092877], + [-46.131283551556486, -1.5785675525324752], + [-46.14960214429436, -1.587998829795417], + [-46.15035360056864, -1.5943288816517416], + [-46.15041719511345, -1.5948646051393087], + [-46.150053435792664, -1.5952834050130542], + [-46.144744220782336, -1.6016017068121067], + [-46.144681214384754, -1.6095892422968296], + [-46.14468120674241, -1.609590210418978], + [-46.16025972853633, -1.6244892631140908], + [-46.16025977917182, -1.6244893115415937], + [-46.16174813988852, -1.6288529042385949], + [-46.161829334378744, -1.6306217990717662], + [-46.15888581171894, -1.6538678478219038], + [-46.15320896376638, -1.661533368768663], + [-46.15367046633881, -1.6776446721938907], + [-46.15367046817435, -1.6776447362994584], + [-46.170475481798555, -1.6963978928716188], + [-46.191156594835526, -1.7039887772178153], + [-46.20084898199235, -1.703157884498754], + [-46.20084903814306, -1.703157879685004], + [-46.20412703686958, -1.7196596720493345], + [-46.20412706271264, -1.7196598021529863], + [-46.22107675051083, -1.7280970709518446], + [-46.242740596437294, -1.7172770489534481], + [-46.26170383495797, -1.7287580750582237], + [-46.29116419516526, -1.7234330689493402], + [-46.30509411729053, -1.7277463748582316], + [-46.31128792587948, -1.7335665196492], + [-46.311287960938934, -1.7335665525937003], + [-46.31469717262629, -1.7416708970850425], + [-46.32397763497042, -1.7655595184149382], + [-46.319266975830956, -1.790722632256963], + [-46.31563956621882, -1.79886346811285], + [-46.31514870073839, -1.7999647056705324], + [-46.311128118655276, -1.8038984952123287], + [-46.30700200722596, -1.8042942771554993], + [-46.29794079302403, -1.7946691235104593], + [-46.28295271708624, -1.7990046633658212], + [-46.26916483448165, -1.7941000134372898], + [-46.25175936284495, -1.7941117492268557], + [-46.23584392753718, -1.7987248609765951], + [-46.2293264879612, -1.800613869299092], + [-46.219180145989604, -1.812909067432443], + [-46.21585504508174, -1.8169382325114485], + [-46.20861974048298, -1.830900578184119], + [-46.215270099318886, -1.8448520695848312], + [-46.215270115628044, -1.8448520911021251], + [-46.215270183570375, -1.8448522336377977], + [-46.227251367668345, -1.8556555853304575], + [-46.24327305931264, -1.877907014111776], + [-46.243273152400796, -1.8779071433978471], + [-46.242564991336494, -1.883754716356612], + [-46.23874263421057, -1.886116007189322], + [-46.230188372977636, -1.8837633769530944], + [-46.22757492000531, -1.8863208183922193], + [-46.22045029140837, -1.9148287258535526], + [-46.23071514938209, -1.9333137239012574], + [-46.230715238522826, -1.9333138847213347], + [-46.236637860522734, -1.9712601987115013], + [-46.247807054286476, -1.9927596939751637], + [-46.2478071414047, -1.9927598567512526], + [-46.24026088574976, -2.002153279131419], + [-46.239306951219476, -2.011492464085837], + [-46.2495358942737, -2.0397617328217774], + [-46.24956582024467, -2.0407530548908936], + [-46.24985519397167, -2.0503411535163583], + [-46.26266506788417, -2.0563380988396194], + [-46.26266515264704, -2.0563381385213337], + [-46.262712390623065, -2.0576678278339955], + [-46.26317436582336, -2.070675503605883], + [-46.26757038957194, -2.0806739024327663], + [-46.26766041073286, -2.080878650866009], + [-46.25995805104166, -2.0937643703397084], + [-46.25946624833945, -2.1017842688115573], + [-46.26296584992944, -2.1214657985686958], + [-46.26296586704331, -2.1214658948226215], + [-46.29284598694806, -2.148658689604971], + [-46.29284612454251, -2.1486588148259504], + [-46.285709125500404, -2.154035088125917], + [-46.27545082493411, -2.1562201710380213], + [-46.275905559990406, -2.158724514201894], + [-46.27590557817297, -2.158724614338698], + [-46.2884374824425, -2.1696187001436464], + [-46.31228517183688, -2.180768137324215], + [-46.32980291184762, -2.1982874875060756], + [-46.33675495303501, -2.2116904823826857], + [-46.336755040077925, -2.2116906452381477], + [-46.34220017639888, -2.2271567661204013], + [-46.34220022889157, -2.2271569152217907], + [-46.36166992008414, -2.2339175961887063], + [-46.37118013108575, -2.247982683909224], + [-46.377831896092985, -2.253500567512945], + [-46.39035361134725, -2.252603967150017], + [-46.406930891380966, -2.2322545438147943], + [-46.4282111704884, -2.2397483729768553], + [-46.428211282380516, -2.2397484123791815], + [-46.42626021566312, -2.2502121303919163], + [-46.41676304207309, -2.2583253672424974], + [-46.41405381056804, -2.2649586105975636], + [-46.4140697038523, -2.280430004201404], + [-46.419209575577845, -2.2914763927204493], + [-46.41920959565563, -2.2914764210989436], + [-46.419209658988024, -2.2914765572117566], + [-46.43068710475693, -2.3029575615637294], + [-46.43068719666613, -2.3029576535018275], + [-46.42950973300652, -2.3316914623695055], + [-46.42950972977403, -2.331691541212657], + [-46.46092207522887, -2.359949987926571], + [-46.465911152421064, -2.36937471583484], + [-46.46591124014789, -2.3693748783995043], + [-46.46576482218436, -2.373648075698722], + [-46.46293975494544, -2.3766679314242585], + [-46.4559686159776, -2.3841195404976583], + [-46.448485347082396, -2.381505284165048], + [-46.44419493308215, -2.380006432349298], + [-46.42591743816031, -2.3608702838101094], + [-46.41173454470859, -2.3613274948507983], + [-46.40751710650159, -2.3686993964879104], + [-46.40751708608201, -2.3686994321797967], + [-46.41990467066964, -2.3829789552373137], + [-46.41990470983767, -2.3829790003876723], + [-46.42701380509536, -2.3996219175792977], + [-46.42701385924549, -2.3996220443511245], + [-46.440126168401704, -2.4128184990683477], + [-46.44012626260728, -2.412818593878832], + [-46.43789554896011, -2.441619564245608], + [-46.43974030015972, -2.4483807482027204], + [-46.43673391053262, -2.459140018726654], + [-46.43190594545728, -2.4603239293608015], + [-46.436502186625496, -2.4706589890725326], + [-46.439772235283336, -2.4785866974717803], + [-46.42862175255751, -2.4934804755484765], + [-46.43633217424193, -2.50658589469182], + [-46.436332264507286, -2.506586050776872], + [-46.436187646839514, -2.5126277603700604], + [-46.41824315783943, -2.524582683931066], + [-46.418699952931, -2.527971217942344], + [-46.41869997181283, -2.527971358011024], + [-46.473074236225635, -2.544894294898397], + [-46.4811610372846, -2.542853994198634], + [-46.484308999362526, -2.533749174426689], + [-46.48792766477795, -2.5326161374734006], + [-46.494326257296045, -2.5365202936760256], + [-46.50031941885128, -2.548750114597638], + [-46.500319503954465, -2.548750278432589], + [-46.501855302738065, -2.5560140221005234], + [-46.489782845910625, -2.5626962261335864], + [-46.48724113558243, -2.5696759383019545], + [-46.49083170116923, -2.5814355170249415], + [-46.49083175374478, -2.581435689220144], + [-46.50013725787035, -2.578807649286851], + [-46.509218595256236, -2.589479200603701], + [-46.50921869217743, -2.589479314496924], + [-46.505003899998776, -2.6149303390480165], + [-46.50500388648843, -2.61493042061983], + [-46.50825300095682, -2.6174783563432826], + [-46.54036089700826, -2.622817290695056], + [-46.55516938640833, -2.630778771426934], + [-46.56372586406681, -2.6270183185250313], + [-46.574775531439485, -2.6287778859531006], + [-46.58478140333274, -2.6369901242547082], + [-46.58478147150766, -2.6369901802087026], + [-46.58933425997851, -2.6602065279298674], + [-46.58933427464697, -2.6602066027344637], + [-46.5937483923691, -2.6653853763376074], + [-46.605973640022945, -2.6391427742946814], + [-46.61111666408477, -2.6438262381800013], + [-46.621918981984656, -2.644537837565576], + [-46.62191910778391, -2.6445378458520654], + [-46.618638823546426, -2.6582237962776065], + [-46.6211154643692, -2.668141044442227], + [-46.62111549952992, -2.6681411852395653], + [-46.633771986098836, -2.6731229266247447], + [-46.633772085341604, -2.673122965687547], + [-46.633028021444844, -2.6820159383497324], + [-46.63302801925324, -2.682015964541452], + [-46.63599611395822, -2.6864376808478005], + [-46.64899894759041, -2.679153557632602], + [-46.65072564440774, -2.682132651079932], + [-46.65072573547546, -2.682132810326021], + [-46.646970793121326, -2.6890785974061324], + [-46.646970730356614, -2.689078713504521], + [-46.6639459124132, -2.6942126192166564], + [-46.671891566585984, -2.7110268168685936], + [-46.67189165048074, -2.711026981282409], + [-46.66641449985522, -2.7247007782917843], + [-46.67022564209644, -2.7307865397150994], + [-46.67022573648762, -2.730786695433759], + [-46.66808254713991, -2.7340387103427792], + [-46.65285851126587, -2.7294530508566317], + [-46.6529697720705, -2.736259747127431], + [-46.65296978867196, -2.736260763042612], + [-46.657054631875106, -2.7388877287456324], + [-46.657054750223296, -2.7388878048553402], + [-46.6560626682786, -2.741785116501285], + [-46.650863085842715, -2.7569693276330822], + [-46.65086306472021, -2.756969389313753], + [-46.645435862470734, -2.757621247450177], + [-46.64028214358431, -2.75053599140633], + [-46.6359141649794, -2.7545811773966387], + [-46.63194128814864, -2.7671323965467725], + [-46.63778635266068, -2.7815903238119892], + [-46.63664044369477, -2.7936944237828856], + [-46.627390991365765, -2.8044434781372822], + [-46.62280835317075, -2.8051860311741073], + [-46.61141951519639, -2.799858700798227], + [-46.61141946827206, -2.7998585584457367], + [-46.607757768019795, -2.7887503689534876], + [-46.60775773346552, -2.7887503718892854], + [-46.60234054437503, -2.789210614586726], + [-46.59897105995769, -2.7957006523135806], + [-46.60057890553939, -2.813111564104182], + [-46.59706054520702, -2.8176264830862157], + [-46.59314217349026, -2.8157272599460366], + [-46.59041989315304, -2.818095602074841], + [-46.589442485451954, -2.8231465386200414], + [-46.589442463235734, -2.823146653424027], + [-46.59433271627354, -2.825223348782926], + [-46.59433286286672, -2.825223411035008], + [-46.590529525865996, -2.8317999601776447], + [-46.58297624895957, -2.827563659240417], + [-46.58233765164306, -2.8285248018203113], + [-46.581059131790916, -2.8304490675648353], + [-46.58105935917319, -2.8304493175374], + [-46.582477920554375, -2.832008812292793], + [-46.58424854989488, -2.833955353619927], + [-46.578346936136974, -2.839161902811857], + [-46.575807592815146, -2.8414021275405252], + [-46.575807335023626, -2.841402354964426], + [-46.58183273092343, -2.8402652017629806], + [-46.58789176977726, -2.8449585029082254], + [-46.60081197566263, -2.834441198994055], + [-46.60373339469168, -2.8332227888181727], + [-46.613937987183384, -2.828966727691009], + [-46.618390110021735, -2.835704612651919], + [-46.618529276351104, -2.8359152197165303], + [-46.618529375421424, -2.8359153788002405], + [-46.614529479661016, -2.8370657630554477], + [-46.61057924614761, -2.8454990706814485], + [-46.61233989247101, -2.8574834598339507], + [-46.61233992295488, -2.857483667341052], + [-46.6150228950357, -2.8553940764903603], + [-46.6181108507322, -2.859289316048787], + [-46.622225820105086, -2.8585882955205073], + [-46.62222587351807, -2.8585882682184023], + [-46.636663278063196, -2.8512083463237365], + [-46.64029750774624, -2.8525911680752305], + [-46.640901809369744, -2.852821103698686], + [-46.64090192337981, -2.852821147079259], + [-46.64018683769881, -2.8562007291012264], + [-46.62969764383171, -2.8585679546254066], + [-46.63186101583268, -2.862305646185798], + [-46.63186110693888, -2.862305805694844], + [-46.6295284934761, -2.865868554681906], + [-46.62952842477692, -2.8658686596096112], + [-46.63516744361221, -2.8679112392705512], + [-46.63629687220652, -2.861092854848725], + [-46.641337997861356, -2.8643432378993094], + [-46.6413381129132, -2.864343312081575], + [-46.6394875734706, -2.870559783946266], + [-46.6341510792759, -2.8701452375847714], + [-46.63607827068969, -2.8760547657813524], + [-46.6360783184344, -2.876054912186575], + [-46.6422567053528, -2.8783988035115637], + [-46.64225688496215, -2.878398871649537], + [-46.63758729338318, -2.8832318501141034], + [-46.63758715429946, -2.8832319940625175], + [-46.6458022582127, -2.8838831822843614], + [-46.652672673186046, -2.878812933688642], + [-46.668634728272295, -2.8758377656275766], + [-46.67414024518889, -2.8787918547906455], + [-46.67964756403261, -2.8817468982602445], + [-46.68061115137819, -2.891620415569172], + [-46.68069645099492, -2.892494503949362], + [-46.67261847180772, -2.892745727784437], + [-46.6700626026444, -2.8956837884362177], + [-46.66256036440936, -2.904307617541798], + [-46.66561082183813, -2.9056279368581737], + [-46.66561093554542, -2.905627986073629], + [-46.66317133391465, -2.9167249163093927], + [-46.65888244818634, -2.9208570070980704], + [-46.65641865264469, -2.9232306883710635], + [-46.65380376002877, -2.931070151157705], + [-46.66728137288708, -2.9360925296294007], + [-46.667281401668916, -2.9360925403547298], + [-46.67166956502766, -2.947137277346836], + [-46.66628004326056, -2.9543155087425035], + [-46.65571765987945, -2.955842576719391], + [-46.64803463669902, -2.961711799724156], + [-46.64794003873515, -2.9717568958508838], + [-46.64794003729375, -2.9717570487997356], + [-46.66186544370122, -2.9731589335399815], + [-46.662014835549435, -2.976405686926087], + [-46.66202971640701, -2.976729110112681], + [-46.65208141803832, -2.9792014881364097], + [-46.649030780514174, -2.9835583501820557], + [-46.6498330801015, -2.9941952492043784], + [-46.649833085811245, -2.994195324910691], + [-46.65208340658621, -2.996531695886468], + [-46.66922416831242, -2.9932115562381916], + [-46.673366026806235, -3.0002822629302526], + [-46.67336611792654, -3.0002824210697527], + [-46.67186356664516, -3.0046219498025506], + [-46.6592989023259, -3.0097797997553064], + [-46.65929887837697, -3.0097798095861976], + [-46.660768028380076, -3.011762120858372], + [-46.67168250690756, -3.014437516291685], + [-46.66821409089204, -3.029510976284402], + [-46.66764929621884, -3.031965358691863], + [-46.66764926230829, -3.03196550605276], + [-46.67688404786805, -3.0330710150157496], + [-46.67688413544098, -3.0330710254989053], + [-46.67704419598562, -3.051910250365174], + [-46.672808445025154, -3.065551782260202], + [-46.67280842844618, -3.065551835651581], + [-46.68218812656175, -3.0752200698035383], + [-46.682188233395976, -3.075220179924092], + [-46.675799950884056, -3.0936745313581158], + [-46.67579990945285, -3.0936746510368898], + [-46.68123771548105, -3.095444191486224], + [-46.688175960246994, -3.0929308569335943], + [-46.706720516196974, -3.099948431509028], + [-46.703242909912895, -3.116210419039335], + [-46.70269036087586, -3.1187940469853777], + [-46.70269035452077, -3.118794076700549], + [-46.70879417654529, -3.127281304831327], + [-46.71599538414018, -3.125425713680161], + [-46.71560779672382, -3.124326893809011], + [-46.71204776496158, -3.1142342353271815], + [-46.71204800486766, -3.1142340906978823], + [-46.72114151373936, -3.1087518836658394], + [-46.73079239269293, -3.123820512629929], + [-46.73079248682986, -3.1238206712995735], + [-46.734978937271435, -3.1203884098295243], + [-46.74009069315859, -3.1228826361431827], + [-46.74781541592458, -3.1208938651753995], + [-46.74926003175535, -3.123526015882481], + [-46.74926012065048, -3.1235261779065957], + [-46.74423927236563, -3.1365110167013177], + [-46.74299654115375, -3.1361362056776265], + [-46.73598312967892, -3.1340209216186663], + [-46.73099626848765, -3.1268712895742308], + [-46.73079764521894, -3.126586525022435], + [-46.727790588073134, -3.1300169647797653], + [-46.72951715673876, -3.1447685230285876], + [-46.71964391690737, -3.1539409068394937], + [-46.71964388139895, -3.1539409398264664], + [-46.726991380489885, -3.1615700404319136], + [-46.73086740979203, -3.1614221540017406], + [-46.74880623977089, -3.1658140029625725], + [-46.74880637330407, -3.165814035653758], + [-46.74404847306621, -3.1795896909758894], + [-46.744048459579645, -3.1795897300221796], + [-46.75192365563409, -3.189061468146112], + [-46.76166306272126, -3.178044211467516], + [-46.77187829338072, -3.1772362832464305], + [-46.77187863423397, -3.1772362562862786], + [-46.759647475612766, -3.1864133487174437], + [-46.757171654346195, -3.1941896215497576], + [-46.75717161861095, -3.1941897337872796], + [-46.75901523895478, -3.1949278105141232], + [-46.77027877769278, -3.1994370149899165], + [-46.77113601255808, -3.2025311946566877], + [-46.75700045354722, -3.2087469329866423], + [-46.754785534648455, -3.215731976798769], + [-46.754785275707086, -3.2157327933864512], + [-46.75839216652227, -3.218295509618367], + [-46.75973536457608, -3.2164311756010573], + [-46.76257302235377, -3.2124924996729134], + [-46.7759229444854, -3.215977212553712], + [-46.77836404485669, -3.21661439102604], + [-46.78191028966444, -3.2222728918494083], + [-46.78191038375435, -3.2222730470803835], + [-46.77773256876854, -3.229920982733934], + [-46.77886536612874, -3.2410499814485587], + [-46.78451422570389, -3.246030534703762], + [-46.78518789125512, -3.2466244989756405], + [-46.79654640387441, -3.2395702883714312], + [-46.806182017473795, -3.2444926817453736], + [-46.8061821255751, -3.244492736969014], + [-46.802225869481745, -3.266433132558533], + [-46.802225853548386, -3.2664332209119453], + [-46.8106199613038, -3.27234604484924], + [-46.814672422172826, -3.267596940601901], + [-46.815211374506426, -3.2679965789006458], + [-46.819722273825114, -3.271341446486261], + [-46.819467276060394, -3.2751629992252016], + [-46.80861077689409, -3.2837450076747987], + [-46.8105218148034, -3.2902620317911038], + [-46.81052185594969, -3.290262172109405], + [-46.82599172025259, -3.2973470321054585], + [-46.822846445851006, -3.2981710439517884], + [-46.81257074987714, -3.300863008544139], + [-46.81337258704434, -3.3095561441737527], + [-46.81337259924895, -3.3095562764970934], + [-46.8219588623046, -3.312899666962923], + [-46.830209214832344, -3.3114346602471594], + [-46.839991230260736, -3.3241288322068088], + [-46.849674071890426, -3.318446751978168], + [-46.84967412466885, -3.3184467210060853], + [-46.85172539104977, -3.329441564317465], + [-46.848461699831866, -3.3356392403348183], + [-46.84846166210045, -3.3356393119848033], + [-46.85764464836117, -3.3422081175979956], + [-46.859145473360286, -3.3396462529155255], + [-46.86502207217697, -3.329614735653069], + [-46.87064754030085, -3.326178792713735], + [-46.87330829703411, -3.3283706065202003], + [-46.873599253605256, -3.3286102833977265], + [-46.87359946711867, -3.328610459280418], + [-46.87006228418498, -3.32822153222298], + [-46.8660131650153, -3.3342891852105634], + [-46.86825119365992, -3.340475640420597], + [-46.86825125086575, -3.340475798552238], + [-46.87231304244558, -3.340995147429638], + [-46.87579532581127, -3.3465867633334097], + [-46.875795418999246, -3.3465869227546396], + [-46.87804884300277, -3.345884943547125], + [-46.879199192136625, -3.3455265873334255], + [-46.87752368488137, -3.341659636405747], + [-46.87748839116356, -3.3415781812196643], + [-46.889463029387784, -3.3355612542282795], + [-46.88946309538158, -3.335561221067278], + [-46.88952519476731, -3.3360933828656956], + [-46.890262158775705, -3.342408998591195], + [-46.902327161685946, -3.3497625526693366], + [-46.90232737486454, -3.3497626825995788], + [-46.89951270913442, -3.350492626945704], + [-46.89782499173346, -3.3581352971492016], + [-46.89782491254018, -3.3581356557575583], + [-46.90030802488245, -3.35523332699882], + [-46.907455244760385, -3.3593683729699517], + [-46.90745540845086, -3.3593684676731304], + [-46.903793250426446, -3.3626688446786606], + [-46.90589866188898, -3.3675384725209607], + [-46.90980135740798, -3.3687630679535387], + [-46.910486589480996, -3.368978080143259], + [-46.91237259889126, -3.362059659179402], + [-46.91761178443887, -3.361654208254094], + [-46.91761191911145, -3.361654197831648], + [-46.91670163175897, -3.3650803231484567], + [-46.91670158744854, -3.3650804899213305], + [-46.92482211822518, -3.3648008832308505], + [-46.92482232416973, -3.3648008761388493], + [-46.92149112971201, -3.369615171875705], + [-46.923335492819795, -3.374616671315425], + [-46.923335544799905, -3.3746168122743634], + [-46.9276629665659, -3.3771118330414924], + [-46.93053868861159, -3.373812795462416], + [-46.93833596245392, -3.3757073681635825], + [-46.93833004862294, -3.37267728123133], + [-46.944628680262646, -3.3781967681223724], + [-46.944628823862544, -3.3781968939585623], + [-46.93776101696607, -3.382755051261272], + [-46.93830727503852, -3.3946090366560577], + [-46.93896761354475, -3.396846707113495], + [-46.93896766722768, -3.3968468890278363], + [-46.94250078026572, -3.3948639358589925], + [-46.945243075502816, -3.3903800360017335], + [-46.94898058141434, -3.392677869593865], + [-46.94898073773517, -3.3926779657002966], + [-46.944666388094866, -3.396901840486421], + [-46.94887870115426, -3.4069042158977236], + [-46.94031336305146, -3.414626859814451], + [-46.94228407535416, -3.417651895186923], + [-46.942284479266426, -3.4176525151872377], + [-46.94006376926949, -3.420686786037479], + [-46.94006365142177, -3.4206869470576735], + [-46.948512607268874, -3.4207354034791795], + [-46.94851274924676, -3.420735404292844], + [-46.947601548650454, -3.4235037033337563], + [-46.94760147313861, -3.4235039327425913], + [-46.9548057585979, -3.423093581925523], + [-46.95644886858746, -3.425921999210602], + [-46.956448959650935, -3.4259221583028987], + [-46.9534489466696, -3.4319873864533106], + [-46.95634195821639, -3.437514095949383], + [-46.95634204549312, -3.437514258967618], + [-46.9480891874135, -3.4379265549467775], + [-46.94201612659545, -3.4469612281903412], + [-46.94201609843412, -3.446961270083941], + [-46.94239056929998, -3.4473464375896685], + [-46.946872234760605, -3.451956112936857], + [-46.94687305159344, -3.4519569530996645], + [-46.947783175498444, -3.448398636979854], + [-46.9516471654583, -3.448192909550329], + [-46.9516473154066, -3.448192901566403], + [-46.947479203763564, -3.4597930142346534], + [-46.947479066872766, -3.4597933951967277], + [-46.95074787089269, -3.456625023550431], + [-46.956063185089135, -3.4616851543838365], + [-46.95606332149117, -3.4616852842370864], + [-46.94926115139244, -3.466310219969352], + [-46.94797148221995, -3.4764553085839958], + [-46.94797146229783, -3.4764554652904076], + [-46.95419519995119, -3.4767710393784736], + [-46.957855234848026, -3.4728121767034548], + [-46.969385314903036, -3.473578085292516], + [-46.96938549277413, -3.4735780971069423], + [-46.96005116707483, -3.4893383369293534], + [-46.959932727288, -3.495661641395191], + [-46.95993272593943, -3.4956617133769923], + [-46.96196766461005, -3.4976991444659054], + [-46.96405148727658, -3.4917673833895617], + [-46.96720017272186, -3.4938678686766935], + [-46.9666701387569, -3.490971013050419], + [-46.982728035364424, -3.4957455348299766], + [-46.982728266768035, -3.495745603632007], + [-46.977887739802966, -3.4989166682865904], + [-46.977572217609236, -3.5045153452561495], + [-46.970257000043, -3.5149371958568016], + [-46.97025693138, -3.5149372936769616], + [-46.980026202169874, -3.5189339235214243], + [-46.98002631824467, -3.5189339710073804], + [-46.97729926531394, -3.530399065268976], + [-46.97729923017097, -3.5303992130108277], + [-46.98935538735471, -3.5318093974852043], + [-46.996511923089315, -3.5397623816574444], + [-47.00344789324402, -3.5339897709816266], + [-47.003447966733766, -3.5339897098171105], + [-47.004001715361845, -3.542079841212366], + [-47.0040017202889, -3.5420799132000536], + [-47.004427774916515, -3.5425384399046127], + [-47.01014723273077, -3.5486937967551335], + [-47.010147736904706, -3.548694339352743], + [-47.01370565100322, -3.5459509190594534], + [-47.01815566667801, -3.5479448659286805], + [-47.01815576991949, -3.547944912188539], + [-47.01627203923036, -3.5630538208015863], + [-47.016272032585135, -3.563053874096427], + [-47.018461853863926, -3.5655542949391776], + [-47.03056050446909, -3.560210075630872], + [-47.03746075114094, -3.5613500609320097], + [-47.03746079888502, -3.5613500688196313], + [-47.038248481175934, -3.56431307782172], + [-47.03398937512957, -3.568718306909527], + [-47.033989331851274, -3.5687183516720578], + [-47.03449884230615, -3.5691715939242137], + [-47.03951905636789, -3.573637383970129], + [-47.03951796834539, -3.5736372363771833], + [-47.03626224467764, -3.57319558426126], + [-47.035608635282784, -3.5731069182560344], + [-47.03091162548242, -3.580630973592094], + [-47.02876147771624, -3.5784781567312063], + [-47.027233319462724, -3.5809477292129173], + [-47.02723326820228, -3.5809478120515554], + [-47.03467714020814, -3.585169503924486], + [-47.03467729746791, -3.5851695931117327], + [-47.0319632106498, -3.5880655252876994], + [-47.031963090657335, -3.5880656533186746], + [-47.0412402138242, -3.5895867102916137], + [-47.04124047994784, -3.5895867539234745], + [-47.0274265770928, -3.5988268053024037], + [-47.02742643174605, -3.598826902520852], + [-47.03210411405969, -3.6001264625974025], + [-47.032104245269544, -3.6001264990500235], + [-47.03058652511289, -3.604625747457442], + [-47.030586475856964, -3.604625893473519], + [-47.038170220772066, -3.6055185788786184], + [-47.03817027408842, -3.605518585154295], + [-47.04042038136207, -3.6154186124114203], + [-47.04042041135837, -3.6154187443913246], + [-47.04861951292542, -3.6196440805232832], + [-47.048619653150325, -3.6196441527864587], + [-47.045263979561994, -3.6255138856538855], + [-47.04526396744404, -3.6255139068502533], + [-47.05233493379389, -3.6354017285461753], + [-47.05233505620602, -3.6354018997233517], + [-47.04476319870055, -3.6333984231740675], + [-47.04607002612038, -3.6384483173042375], + [-47.040070984374445, -3.6441215135535963], + [-47.040070899766285, -3.6441215935648135], + [-47.04749065610646, -3.6476421593811286], + [-47.05557370042396, -3.646714175845693], + [-47.05557397801755, -3.6467141439748043], + [-47.053505225829284, -3.6488411532393195], + [-47.05354872180582, -3.6489118864508243], + [-47.057043417346684, -3.6545942455875857], + [-47.05704241244061, -3.6545940502890963], + [-47.056198831611816, -3.6544301042200913], + [-47.05087219817721, -3.65339488157069], + [-47.04590643824757, -3.6576512959503535], + [-47.04590638444678, -3.6576513420652352], + [-47.052709066594794, -3.6631943532223836], + [-47.052709195429706, -3.663194458200133], + [-47.04888607405012, -3.6686608614263587], + [-47.03701447677624, -3.667980868616929], + [-47.04076094821791, -3.6743386950956585], + [-47.04076103951641, -3.674338855861536], + [-47.04963014556365, -3.677047014854533], + [-47.05452077590123, -3.6850199915246935], + [-47.05452087040431, -3.6850201499868795], + [-47.048776499912265, -3.688974918474445], + [-47.050769669241916, -3.6989760122223814], + [-47.0462745695477, -3.7054548749289005], + [-47.05054912927255, -3.7159559651056298], + [-47.04811981737834, -3.7188921590315047], + [-47.04811972877026, -3.7188922661270234], + [-47.05714578238341, -3.721701206952409], + [-47.060845159889915, -3.7297777495394002], + [-47.05308888754628, -3.738082824376626], + [-47.053088842169984, -3.738082872962435], + [-47.05926974830576, -3.74332318409376], + [-47.05926989931589, -3.743323312123033], + [-47.053367376751076, -3.74657144734057], + [-47.053367335676775, -3.746571469943262], + [-47.06526878663789, -3.759378601111173], + [-47.06526890930212, -3.759378733109202], + [-47.05528521955616, -3.768295913236754], + [-47.055285093160734, -3.768296026126873], + [-47.05964148794674, -3.769296572852109], + [-47.05964166022051, -3.7692966124184033], + [-47.056128188717516, -3.7744585096231984], + [-47.05612811979902, -3.7744586108749916], + [-47.064689303653935, -3.77777384672091], + [-47.06468947199536, -3.777773911908791], + [-47.059210956592246, -3.7844572023685163], + [-47.059210936782264, -3.7844572265344145], + [-47.06404570517349, -3.7906103390742314], + [-47.064045798195906, -3.7906104574617503], + [-47.06323660495522, -3.7988993569261207], + [-47.06759098654277, -3.8028964490832773], + [-47.06806808131494, -3.803334395592206], + [-47.075743244175996, -3.804326775613836], + [-47.07574338729656, -3.8043267941184173], + [-47.07552058562836, -3.8049154697952465], + [-47.07440320647815, -3.807867722484207], + [-47.07824907936593, -3.8116987391761117], + [-47.078249205576356, -3.8116988648987213], + [-47.07510490912173, -3.814768354518003], + [-47.07261305043126, -3.8178770717522412], + [-47.072612991109175, -3.8178771457588376], + [-47.07801236602374, -3.8210977276555846], + [-47.07801243518889, -3.8210977689105357], + [-47.07895914542629, -3.8269570241047206], + [-47.07895917421078, -3.8269572022566742], + [-47.08481037636532, -3.825411176489798], + [-47.086678889468146, -3.8249174591104165], + [-47.08667885001518, -3.824917528853642], + [-47.081638596448, -3.8338272527911523], + [-47.080381236509105, -3.8360498367547695], + [-47.08038121997951, -3.8360498659733144], + [-47.08396932558114, -3.8405884443276546], + [-47.080531453986104, -3.844798285075572], + [-47.0794207334724, -3.846158395160672], + [-47.079420647388886, -3.8461585005721046], + [-47.084349667582636, -3.847763172482075], + [-47.08434970909877, -3.8477631859977803], + [-47.08873830737661, -3.861597858676244], + [-47.08873836146993, -3.8615980292026264], + [-47.09200039010497, -3.8608253876411602], + [-47.09372806733634, -3.8609196555496745], + [-47.101854214642074, -3.861363000457323], + [-47.104756886464884, -3.873297171851325], + [-47.106620020859246, -3.880957546213278], + [-47.11376547818637, -3.8777053211343993], + [-47.113765900336766, -3.8777051289908866], + [-47.12056784175766, -3.882046315044335], + [-47.122125883973304, -3.883040693271932], + [-47.124610665349266, -3.881417709669562], + [-47.12461054409545, -3.881417568582261], + [-47.12201060069141, -3.878392348620082], + [-47.12201064227978, -3.878392337907652], + [-47.128746041553754, -3.8766573832412097], + [-47.12874610157022, -3.8766573677813736], + [-47.12943104852841, -3.880899848982267], + [-47.12943108123678, -3.880900051576301], + [-47.1325357375356, -3.878668760882805], + [-47.13701172903932, -3.8856303212798915], + [-47.13701182566744, -3.8856304796838264], + [-47.13354295589518, -3.887357784311037], + [-47.132433117659644, -3.899588015367696], + [-47.13822315895204, -3.9038096675376805], + [-47.13892523112872, -3.9043215618604], + [-47.13891376236923, -3.89987502623145], + [-47.148705408028555, -3.8969195354099426], + [-47.148705499062565, -3.896919507931628], + [-47.1484910755341, -3.9145035280436837], + [-47.148491063028395, -3.9145045527035824], + [-47.173140680824474, -3.92383809393912], + [-47.17314082970768, -3.923838150311619], + [-47.170095937048146, -3.929201939646111], + [-47.17009585654996, -3.9292020814471207], + [-47.17580063068059, -3.9298950551561056], + [-47.175800826304865, -3.929895078918458], + [-47.169083357092035, -3.938603604142198], + [-47.16925069361301, -3.9434538424283585], + [-47.16925069841611, -3.9434539816559933], + [-47.175061752048755, -3.945055871441778], + [-47.17961586650566, -3.9418100492637906], + [-47.183727100678574, -3.947659756536317], + [-47.18372719003229, -3.947659883673867], + [-47.183546049553875, -3.957664723390844], + [-47.18137364591575, -3.959691649064149], + [-47.18137358684972, -3.959691459037972], + [-47.18027529190084, -3.9561580537073535], + [-47.18027527062066, -3.956158108287682], + [-47.17842173724269, -3.9609120562167766], + [-47.18154877992703, -3.967068097310264], + [-47.181548864009784, -3.967068259770856], + [-47.192802753024516, -3.968857669048754], + [-47.19280374201806, -3.9688578294170296], + [-47.193442985158036, -3.9753233548608407], + [-47.18754380764314, -3.9795834769646916], + [-47.19025077288098, -3.9837195110388923], + [-47.19735794465269, -3.985418681309553], + [-47.19973045437551, -3.9807639996153643], + [-47.19973035067522, -3.980763866649581], + [-47.19650562275338, -3.9766290738123757], + [-47.19650564882897, -3.9766290586235438], + [-47.20173370759361, -3.973583714806453], + [-47.2017337604795, -3.9735836840000256], + [-47.204468612009464, -3.988330047160893], + [-47.20446864222253, -3.988330210074899], + [-47.219970305093, -3.9881872818749384], + [-47.22248435945575, -4.000504759100045], + [-47.2226500039328, -4.001316343313815], + [-47.22265003887591, -4.001316514519707], + [-47.2389229023674, -3.9986455637891645], + [-47.24466865002153, -4.01225586846031], + [-47.267302730897434, -4.02590673663317], + [-47.26730281822023, -4.0259067892973475], + [-47.26739879386427, -4.03347445871931], + [-47.27516656731414, -4.031203975102141], + [-47.27723402757486, -4.030599647796613], + [-47.2772341239878, -4.030599619614535], + [-47.27709490662113, -4.034046386706195], + [-47.27709490104991, -4.03404652463225], + [-47.28537845979706, -4.036196641837626], + [-47.28537852750033, -4.036196659410692], + [-47.286747743289126, -4.045634152268464], + [-47.28674776989796, -4.0456343356778355], + [-47.29390010373539, -4.043216115490091], + [-47.293900283358475, -4.043216054757872], + [-47.293104862109516, -4.052285598242856], + [-47.29310484913764, -4.052285746140311], + [-47.303400753612905, -4.053754771822867], + [-47.306324725362394, -4.059216505450492], + [-47.30632481339192, -4.0592166682314295], + [-47.3103445802167, -4.056657539630212], + [-47.31003408453377, -4.052162067045151], + [-47.3121709785849, -4.051166351766604], + [-47.319418134503124, -4.047789357124916], + [-47.3244065886344, -4.062845435265456], + [-47.32478485443657, -4.06542152003114], + [-47.32521912655017, -4.068379064568253], + [-47.331262869717385, -4.069485215240973], + [-47.33126290895373, -4.069485222422061], + [-47.33321959365695, -4.075623919489367], + [-47.33140072168987, -4.091439779572884], + [-47.33140070869269, -4.091439892577774], + [-47.34305100232218, -4.097100255682969], + [-47.34305104013932, -4.097100274056394], + [-47.3471506355279, -4.108703298237517], + [-47.35063707924314, -4.115285137779633], + [-47.35063716691379, -4.115285300766091], + [-47.34344015418292, -4.127672115408231], + [-47.349745558229344, -4.141889012543615], + [-47.34252998808719, -4.148130106780509], + [-47.34718082680332, -4.157257829351387], + [-47.34718091315312, -4.157257992996775], + [-47.34371032633718, -4.168062170583948], + [-47.3402286093187, -4.177060491585173], + [-47.340228587389504, -4.177060548258511], + [-47.34725943980313, -4.183782514138603], + [-47.3531309621117, -4.176796592222999], + [-47.36582183630803, -4.180654799836519], + [-47.365821985662635, -4.180654845241371], + [-47.360260195288646, -4.191386778937238], + [-47.360260138964165, -4.191386887616741], + [-47.367876290218824, -4.194210853602907], + [-47.36577988464766, -4.20425322599299], + [-47.3654501830321, -4.2058325147745075], + [-47.36545015397834, -4.205832653942786], + [-47.3691809908397, -4.206570307434721], + [-47.36918112230242, -4.206570333427006], + [-47.36814695282626, -4.209870061894411], + [-47.36814693302925, -4.209870125060113], + [-47.37353211409001, -4.214799114804776], + [-47.371064202739376, -4.218223371817893], + [-47.37033921552891, -4.219229287947322], + [-47.370339011352755, -4.219229571239951], + [-47.37245007452309, -4.218358330545313], + [-47.37436157196682, -4.217569442366067], + [-47.374361727164526, -4.217569558562238], + [-47.379145595902905, -4.22115121411304], + [-47.3791457099146, -4.221151299472595], + [-47.376264109069005, -4.229926132888711], + [-47.371795496185165, -4.232337853501578], + [-47.37179544300468, -4.232337882202881], + [-47.37448861763086, -4.234876964387042], + [-47.37448872249541, -4.234877063251417], + [-47.37176127370532, -4.245600455089829], + [-47.371761229446875, -4.245600629091977], + [-47.37891981707644, -4.244978992883699], + [-47.38863165658755, -4.24989409622198], + [-47.401069553903525, -4.267838481940617], + [-47.40266593024377, -4.2682514121228285], + [-47.4113711138022, -4.270503104497323], + [-47.41718757300807, -4.278006321603454], + [-47.41751265531079, -4.278425674990033], + [-47.42966399011339, -4.2762150867839726], + [-47.42966408579956, -4.27621506937569], + [-47.42925044441664, -4.2868542447950935], + [-47.429250436278416, -4.28685445408234], + [-47.42963398676201, -4.286669060758697], + [-47.42963529556094, -4.286668197728824], + [-47.432377535833666, -4.284859934924727], + [-47.43323068498712, -4.284297353827083], + [-47.442041994360615, -4.287439897377913], + [-47.455813466414156, -4.305516256484035], + [-47.474726480117894, -4.315058258876082], + [-47.47472661777794, -4.315058328326709], + [-47.47173923702468, -4.32073471747986], + [-47.471739211503646, -4.320734765972198], + [-47.47953346667873, -4.328514326481287], + [-47.47953357007449, -4.32851442968135], + [-47.47642938995025, -4.341032964840795], + [-47.47642937808454, -4.341033012690611], + [-47.482685865234096, -4.348166188250197], + [-47.482685979086874, -4.348166318055907], + [-47.476306996267375, -4.3564541640813355], + [-47.47630695924413, -4.356454212182403], + [-47.4880955753532, -4.36718191188827], + [-47.48809566355935, -4.36718199215539], + [-47.48815153193838, -4.376741119051383], + [-47.48815153233981, -4.376741187794962], + [-47.49890887177747, -4.3881658773530665], + [-47.49890893734961, -4.3881659469924035], + [-47.502780242759634, -4.4037213078817254], + [-47.50278025499652, -4.403721357051648], + [-47.51877072213923, -4.4274293830915035], + [-47.531128576435535, -4.443882805970272], + [-47.53442178121988, -4.448215948722291], + [-47.563715761067485, -4.4745722232493055], + [-47.56371579978946, -4.474572258087008], + [-47.5814690340659, -4.51995010590289], + [-47.58146907910299, -4.5199502210194105], + [-47.607960530848295, -4.548742712487494], + [-47.611932966642996, -4.557372447729656], + [-47.611933043220795, -4.5573726065672435], + [-47.63766727027054, -4.571415066504325], + [-47.66301496322851, -4.597215128985081], + [-47.66335077018951, -4.597441549514785], + [-47.679947937256, -4.6086320834614165], + [-47.701367037444484, -4.604830033820262], + [-47.701555772862925, -4.604796528443809], + [-47.71191592541575, -4.606280996615828], + [-47.71175307302084, -4.603286119334435], + [-47.71527892767538, -4.603056395343631], + [-47.7248032118096, -4.606432830762867], + [-47.74224660102706, -4.598634146636796], + [-47.75078108255686, -4.600505742022507], + [-47.7540307064708, -4.590838332314322], + [-47.77086000543422, -4.59332929640329], + [-47.78628158345942, -4.586080007901671], + [-47.79255913969077, -4.586425583892421], + [-47.80511816175929, -4.597384235172553], + [-47.81614272948108, -4.614743097417071], + [-47.816142823370804, -4.614743256714161], + [-48.02536550123609, -4.778310347361692], + [-48.058351066606285, -4.804174719738323], + [-48.09221541521042, -4.83073003490326], + [-48.194617386468984, -4.911030960367268], + [-48.21236357442934, -4.924947820236785], + [-48.396258173434866, -5.070390195047765], + [-48.41903108935155, -5.08572539288486], + [-48.42166761809847, -5.083281909505925], + [-48.42728369578463, -5.075311417002849], + [-48.43153743946736, -5.074509949798206], + [-48.436774588864544, -5.078686215690901], + [-48.436774689975294, -5.0786862963191215], + [-48.43413957635835, -5.096249588596411], + [-48.434139565408564, -5.0962496615723225], + [-48.451920238759946, -5.112259913282424], + [-48.46305721930762, -5.120289502978217], + [-48.54908655877402, -5.188350417073902], + [-48.583349288772446, -5.215000328092844], + [-48.75513234703966, -5.34917934711297], + [-48.755132525972506, -5.349179486834738], + [-48.75674645848036, -5.352899040276378], + [-48.74547639341523, -5.369734958205562], + [-48.726247155986655, -5.376205870619703], + [-48.720281641787786, -5.373651083072144], + [-48.71674846816299, -5.3771794366347665], + [-48.68053380666779, -5.378773241029022], + [-48.65047046239527, -5.384932239710078], + [-48.62910672455143, -5.410072718602563], + [-48.61167755574225, -5.418658500536164], + [-48.59671605055025, -5.422558334132653], + [-48.55751941714067, -5.4167250180260575], + [-48.53104455424832, -5.424808485042788], + [-48.51388566838364, -5.429833585997071], + [-48.491532240087615, -5.425955726255535], + [-48.47655293031492, -5.418737296768692], + [-48.46457332113016, -5.412305840841702], + [-48.45343362308503, -5.410752591866045], + [-48.441769180058124, -5.408173694918938], + [-48.41954768847767, -5.401839372811775], + [-48.40142602093523, -5.403423958455283], + [-48.39349447316691, -5.394226619934082], + [-48.381592779251946, -5.395996532430092], + [-48.373469840439526, -5.4027509627295105], + [-48.367700902985945, -5.415040200802153], + [-48.351581841451484, -5.427850365088966], + [-48.343309098426445, -5.444883281705579], + [-48.34106818642232, -5.467078497719344], + [-48.32733119815663, -5.4869350590735255], + [-48.328072936666935, -5.496646002387804], + [-48.32550570774197, -5.493762659887066], + [-48.31912208313292, -5.500261762086964], + [-48.300691359054305, -5.5230204775564395], + [-48.29122659285481, -5.529978768887352], + [-48.27867354576, -5.540437155594092], + [-48.26149804618913, -5.548085033113395], + [-48.23799486196613, -5.55278495444303], + [-48.2284759362575, -5.551080143755585], + [-48.21258599095411, -5.5542537730814], + [-48.18209137689629, -5.573255377054041], + [-48.138137163233786, -5.602704018140911], + [-48.13223427191501, -5.618143979593015], + [-48.13544747516427, -5.6376494802365915], + [-48.13924112787156, -5.64691415442999], + [-48.17357924557906, -5.7099588164138515], + [-48.193937377107446, -5.720156024837214], + [-48.22002667252167, -5.728175777024836], + [-48.272526173023735, -5.725504835404048], + [-48.27955573184477, -5.729381945353019], + [-48.289148361408095, -5.7419574498573525], + [-48.29349526807884, -5.751209072250338], + [-48.29983128714442, -5.784679441930507], + [-48.2954418928039, -5.82167551147766], + [-48.29079732567406, -5.8394417307077], + [-48.27895106031982, -5.861097518225109], + [-48.24558588519427, -5.896246708049082], + [-48.23389000020686, -5.914498180385985], + [-48.229383627294744, -5.930425366131126], + [-48.23161281559931, -5.946152352966118], + [-48.25194143650065, -5.960386764593996], + [-48.28684863318563, -5.967615705747479], + [-48.30706453424297, -5.9748541142789104], + [-48.31432773246029, -5.979186369105373], + [-48.33469897999464, -6.004288103160951], + [-48.33835922733406, -6.028375937749518], + [-48.33269422962341, -6.038282343707167], + [-48.30196623758684, -6.047319168510191], + [-48.28577116552338, -6.070405135737512], + [-48.283141506353275, -6.081570875416043], + [-48.285547437182444, -6.091527104388819], + [-48.30383582083685, -6.116903963505454], + [-48.324498553211235, -6.1327325550903655], + [-48.36547035820196, -6.147387116111688], + [-48.39127478570306, -6.14671663016787], + [-48.40825220644624, -6.15341537290088], + [-48.43191871717454, -6.177306713391266], + [-48.43641221909963, -6.19341204900062], + [-48.41896642962529, -6.268256579070179], + [-48.41269204848324, -6.281342624645614], + [-48.41727387210665, -6.289472056827971], + [-48.41710379261039, -6.298599593628556], + [-48.41202918568999, -6.306079020181159], + [-48.38116285402636, -6.328617229192155], + [-48.37527871227811, -6.3467617813169905], + [-48.38130105702223, -6.375637926441035], + [-48.38644363966316, -6.380174839706088], + [-48.42435462653938, -6.357018645886637], + [-48.44768781719788, -6.351191812666953], + [-48.50019562631864, -6.3509404030648735], + [-48.511219593928764, -6.356945077284353], + [-48.53077699591106, -6.389686558417357], + [-48.548926539554245, -6.406923722968124], + [-48.56504663679563, -6.415132501560679], + [-48.57027243041635, -6.420762217435578], + [-48.61313385359733, -6.4537415558250215], + [-48.62605876630934, -6.47852232365745], + [-48.63185854519619, -6.487896016149602], + [-48.64531956808711, -6.507020812210932], + [-48.64669308054146, -6.523845746491772], + [-48.65808275551637, -6.539425236074008], + [-48.6639169068824, -6.562652079996947], + [-48.66433584239755, -6.570583853565267], + [-48.652196099269254, -6.612065410668623], + [-48.65193897424883, -6.6399635450715415], + [-48.655261878717496, -6.650552950090666], + [-48.66483473932998, -6.662775519125311], + [-48.682692671910544, -6.677919221538606], + [-48.73685763784179, -6.692793130417981], + [-48.756586083992474, -6.7171126238309435], + [-48.76907561222858, -6.730713593953616], + [-48.77797620037342, -6.736304580903997], + [-48.832190133873425, -6.754037939067062], + [-48.839855470449514, -6.750653948496095], + [-48.847057929553905, -6.748512330463175], + [-48.875025873615975, -6.752809489822474], + [-48.91382943904855, -6.757381254117302], + [-48.93948264245857, -6.766700461333151], + [-48.94608999093568, -6.769736160050856], + [-48.963688627552735, -6.779471422528255], + [-49.018859122715924, -6.784222155384695], + [-49.03113049761108, -6.801475032551924], + [-49.04374657612591, -6.815782954477271], + [-49.08338832776184, -6.84326241304192], + [-49.11524560468796, -6.869960892564894], + [-49.15043963560588, -6.888862178588715], + [-49.17191547345312, -6.892946357471839], + [-49.17946345720325, -6.898066780623081], + [-49.18389084298951, -6.907898444182432], + [-49.19226016631029, -6.913252471088488], + [-49.209501983911316, -6.925431703797091], + [-49.21455812039936, -6.9382798867550965], + [-49.21741881643117, -6.961480382289991], + [-49.215353428206384, -6.975744864932921], + [-49.20924212597138, -6.982999625762687], + [-49.19525250006148, -7.026275685858171], + [-49.19349891217408, -7.040712927117963], + [-49.1912783010759, -7.07493961693009], + [-49.1932866126342, -7.105023102275872], + [-49.19376928588396, -7.12982557911519], + [-49.18767243150954, -7.187689633350693], + [-49.18762717630719, -7.188117196140262], + [-49.187166315809016, -7.192491857750081], + [-49.183172851297016, -7.214610455645128], + [-49.18525722497378, -7.235182503918379], + [-49.20675946553252, -7.2707398985331215], + [-49.215896050291825, -7.297743891266217], + [-49.23144747788093, -7.325796634931105], + [-49.254305456038686, -7.349438245353898], + [-49.26579262280465, -7.367130379106398], + [-49.28432093247608, -7.388090960563276], + [-49.319686034319545, -7.431285024069345], + [-49.347220599790894, -7.461625574748645], + [-49.377939567136856, -7.497036844216362], + [-49.38392644768307, -7.546167394936312], + [-49.38204639204863, -7.566063331518599], + [-49.36093862766191, -7.614949651823057], + [-49.34161627639052, -7.6572771350449464], + [-49.3371088759611, -7.665416072975239], + [-49.32804974861242, -7.677804815833792], + [-49.29649844067575, -7.696452424886527], + [-49.263933969033424, -7.723468050495986], + [-49.23996787046377, -7.740734491626491], + [-49.22113436762281, -7.761609178227291], + [-49.2031127326022, -7.774506957457621], + [-49.15785571019114, -7.793796556705996], + [-49.15055222110537, -7.80220775088801], + [-49.148414887713834, -7.8073248561098225], + [-49.15862674595003, -7.824638629760006], + [-49.16488424748878, -7.832880303168123], + [-49.16679609322381, -7.849541748683487], + [-49.16774686980367, -7.854357269554546], + [-49.1663588170326, -7.880340617423494], + [-49.162747997574044, -7.900541160988085], + [-49.16321385301598, -7.92129319707631], + [-49.169612955618014, -7.954798680341215], + [-49.1819990766183, -7.976973322114762], + [-49.17560136967883, -8.009247837735467], + [-49.17325377264797, -8.020983441345239], + [-49.1748512646252, -8.050561837703425], + [-49.180138790262234, -8.067613228825886], + [-49.19313329699375, -8.076474731955635], + [-49.1993284270873, -8.087577958124202], + [-49.20165131918613, -8.108441191650991], + [-49.20729780530865, -8.122510227415669], + [-49.20383255239726, -8.140016502526523], + [-49.209551597735974, -8.175498743544978], + [-49.22208070010786, -8.205518089882464], + [-49.23635919393396, -8.232530816426769], + [-49.248629681919596, -8.255385692519035], + [-49.256000113728355, -8.287059849556616], + [-49.26510942317907, -8.323211635759773], + [-49.26999290655212, -8.3433388106151], + [-49.276211917594, -8.363692973424167], + [-49.28329234344985, -8.379565893192941], + [-49.29043390987253, -8.388438867330844], + [-49.31326754706776, -8.4029067370098], + [-49.33804815949068, -8.410745602882105], + [-49.349377704112925, -8.41838539638254], + [-49.37394601737017, -8.451230921689524], + [-49.391465204661344, -8.489787214100769], + [-49.39963057540224, -8.54712152817326], + [-49.40287580049224, -8.563486592736421], + [-49.40985558152627, -8.58001053898769], + [-49.45143888691974, -8.612505029899248], + [-49.46377215156983, -8.639428750926125], + [-49.47132800508294, -8.648104204494302], + [-49.481744245235724, -8.673739381359914], + [-49.489767033634095, -8.692045627070787], + [-49.543411780526135, -8.761403018184302], + [-49.56497368956604, -8.801045188772765], + [-49.57140760506083, -8.808598344913204], + [-49.58455044281035, -8.823330158376292], + [-49.59237687532675, -8.839499096420747], + [-49.6126317556816, -8.846235748712443], + [-49.6414631733653, -8.846726378530128], + [-49.68432322927836, -8.856482541094845], + [-49.72916808237186, -8.899338255372168], + [-49.74505258264788, -8.906170992142082], + [-49.75451616688864, -8.921969726977396], + [-49.77084825877001, -8.93849693929802], + [-49.78149605885656, -8.962103676778085], + [-49.79362752174341, -8.979440981416314], + [-49.842553181554045, -9.02733299623829], + [-49.850298635159774, -9.046722426183912], + [-49.850631678830744, -9.058907914088097], + [-49.862601613215126, -9.081505615877129], + [-49.86729486477003, -9.097098342194155], + [-49.89684233069713, -9.143680364678728], + [-49.91001717538855, -9.153529133690892], + [-49.90521434139815, -9.165312098186936], + [-49.90765888948811, -9.173829642276758], + [-49.94343746421226, -9.20089234593182], + [-49.96611056995577, -9.230870586683702], + [-49.99402157924371, -9.234102648811003], + [-50.00496761442396, -9.268766087847222], + [-50.019083051662996, -9.281218817304369], + [-50.037747481830735, -9.289411641481143], + [-50.04795128193611, -9.307457823136112], + [-50.050714520709235, -9.31307408539956], + [-50.055429530836015, -9.334705126525908], + [-50.0535281586869, -9.373455017284083], + [-50.058519735909464, -9.37985217830469], + [-50.06549467303937, -9.400807811162528], + [-50.09007781395745, -9.431601721754065], + [-50.10529849217925, -9.475416440468846], + [-50.10526891751943, -9.489559857940064], + [-50.101386905354836, -9.500290052087529], + [-50.107829826697, -9.504549391459156], + [-50.107910162195516, -9.50863608340737], + [-50.09413580562711, -9.526040851024046], + [-50.08952304869876, -9.545698854592015], + [-50.10343477308894, -9.562770433096354], + [-50.107292725576315, -9.572513370266329], + [-50.10733022912954, -9.594286011183], + [-50.12010374674163, -9.606995945850594], + [-50.1254088949369, -9.618743599297048], + [-50.13896520643576, -9.627465591759892], + [-50.14001751348108, -9.654509963123262], + [-50.15012742935688, -9.674732473832492], + [-50.15096537209039, -9.695613775098124], + [-50.15907658604301, -9.699395360441947], + [-50.16123898513632, -9.712833284088559], + [-50.197856067633566, -9.758840364651816], + [-50.203744399385855, -9.790919687328188], + [-50.21435405477, -9.813228399585794], + [-50.217575426442494, -9.83457253279619], + [-50.2247657124554, -9.841158794827294], + [-50.321585790350845, -9.835159467669047], + [-50.321585863607325, -9.835159463032486], + [-50.69623060147082, -9.81079432642699], + [-50.69623067471392, -9.810794321543305], + [-50.84284985432688, -9.800827212565762], + [-50.842849927568366, -9.800827207874452], + [-51.057962477756604, -9.787871796664447], + [-51.05796255099654, -9.787871792187861], + [-51.058822516374754, -9.78781873145045], + [-51.05882258961465, -9.787818726972798], + [-51.30424100124344, -9.772864246312214], + [-51.304241074474675, -9.772864241632375], + [-51.488119412027885, -9.76058395544426], + [-51.488119485251026, -9.760583950512121], + [-52.25528268943416, -9.70781299446192], + [-52.25528276263316, -9.70781298930197], + [-52.35950180244608, -9.700390046133679], + [-52.35950187564253, -9.700390040979732], + [-52.45844585127186, -9.693504825096161], + [-52.6182924459176, -9.682319771432589], + [-52.61930218467339, -9.682248881605355], + [-52.6193022578638, -9.682248876477319], + [-52.61992563385588, -9.682205289940406], + [-52.61992570704548, -9.682205284780656], + [-53.13333342828016, -9.645332013214441], + [-53.1333335014511, -9.645332007829007], + [-53.4515609383146, -9.621434259466579], + [-53.45156101147322, -9.621434253934602], + [-53.58838608362527, -9.61105283662135], + [-53.58838615678125, -9.611052831129072], + [-53.84019633515849, -9.592307124381737], + [-53.84019640830685, -9.592307118848284], + [-53.915134793349274, -9.586567160644801], + [-53.915134866493865, -9.586567155051869], + [-54.10655663296323, -9.571923619862426], + [-54.10655670610753, -9.571923614476923], + [-54.29455114854962, -9.558622400615358], + [-54.29455122169366, -9.55862239542014], + [-54.613393203869535, -9.53582964662525], + [-54.61339327699691, -9.535829641097799], + [-54.73233594076434, -9.52638509239927], + [-54.73233601388075, -9.526385086581064], + [-54.85945195395138, -9.516246719988619], + [-54.8594520270635, -9.516246714144176], + [-54.99552283503155, -9.50534306895334], + [-54.99552290813901, -9.50534306308096], + [-55.15211066912344, -9.492730346601709], + [-55.152110742225574, -9.492730340697328], + [-55.6040380217403, -9.455941967162213], + [-55.60403809482694, -9.455941961166156], + [-55.79180914272651, -9.44048718477812], + [-55.791809215807476, -9.440487178770873], + [-56.15645549786988, -9.410462899823893], + [-56.15645557093925, -9.410462893770555], + [-56.273731340315194, -9.40072825864372], + [-56.273731413380496, -9.400728252567164], + [-56.67181438959753, -9.367403768519015], + [-56.67181446250258, -9.36740376065152], + [-56.697812681942345, -9.374108273740067], + [-56.71123369346365, -9.37429403693443], + [-56.71826412373062, -9.383896831758914], + [-56.73469599976689, -9.394938903850752], + [-56.736411279555696, -9.396091444834838], + [-56.754202321093295, -9.40637109109298], + [-56.761040227253126, -9.405006422577852], + [-56.76104029953813, -9.405006410612428], + [-56.77225511312484, -9.39096632785876], + [-56.76953649016747, -9.37882161400146], + [-56.77572155096969, -9.364800164745311], + [-56.77545283863121, -9.329534467045237], + [-56.779097457308445, -9.317204667946545], + [-56.78511926692153, -9.316570693871881], + [-56.78511933976942, -9.316570685232026], + [-56.80334612316041, -9.267460792086451], + [-56.82003991959146, -9.246347468596083], + [-56.84412002981872, -9.240811552317817], + [-56.84412010176093, -9.24081153933455], + [-56.860264577799256, -9.231652903209508], + [-56.860264623980214, -9.23165287701019], + [-56.87229274899958, -9.239169857129257], + [-56.879477603581414, -9.239709330332927], + [-56.93811773416474, -9.23043899885479], + [-56.938117806742234, -9.230438988314999], + [-56.95217968655711, -9.223091012930558], + [-56.9521797224803, -9.223090994158238], + [-56.99547983406174, -9.233849990328185], + [-56.99547988112241, -9.23385000201789], + [-57.00814870935003, -9.223322504561962], + [-57.02256828728899, -9.219708395504291], + [-57.02256835898371, -9.219708381827788], + [-57.02334927627911, -9.219026291273856], + [-57.03397774038948, -9.20974261693964], + [-57.038857201152474, -9.198002635083], + [-57.0392572651648, -9.197040074863802], + [-57.04725902063225, -9.194325326362069], + [-57.048073799770734, -9.193539380961312], + [-57.06006234540891, -9.181974730040187], + [-57.060063413516936, -9.181973699668568], + [-57.058485013628214, -9.169598193137977], + [-57.05234816555592, -9.158469113896464], + [-57.05295932876751, -9.156844318651668], + [-57.06037178830732, -9.137137974448294], + [-57.04142540988213, -9.11510027973327], + [-57.03935483790646, -9.099662671255787], + [-57.03917176487973, -9.098297504782023], + [-57.04626164442731, -9.089001512121813], + [-57.06317704430008, -9.07858321211331], + [-57.062876730989835, -9.077404519733992], + [-57.05953448151002, -9.064285340968476], + [-57.0821600040711, -9.0477787566763], + [-57.083762678578566, -9.046609444128816], + [-57.089959067886255, -9.038225475546433], + [-57.09453503886175, -9.017118996792922], + [-57.13820383677937, -8.994619726814266], + [-57.13989927069023, -8.992820088431408], + [-57.16225660189916, -8.969087337421216], + [-57.188786840367456, -8.933164420006538], + [-57.203702591069145, -8.920827594390298], + [-57.21548108933633, -8.914537770149108], + [-57.216246444054676, -8.914129043825287], + [-57.245451584190924, -8.906074037922162], + [-57.2454521971114, -8.906074101343597], + [-57.2594984857562, -8.907527235546796], + [-57.26234347346868, -8.907821487286833], + [-57.264955397118946, -8.908665485688395], + [-57.286125279026905, -8.915505171098673], + [-57.28612589634294, -8.915505101930385], + [-57.2995143315536, -8.914004739414848], + [-57.305959609447555, -8.909912467418815], + [-57.310425630304806, -8.892818829465304], + [-57.317303643067824, -8.886213442095027], + [-57.31781717286703, -8.885720259881007], + [-57.384311497353224, -8.879565498800927], + [-57.38431157013556, -8.879565490581111], + [-57.38561940101755, -8.878395164811113], + [-57.403348065113775, -8.862529813337218], + [-57.416144251488845, -8.859003265246013], + [-57.419841112292026, -8.853047498210572], + [-57.41965431916062, -8.842476873379544], + [-57.41374505499355, -8.827561935858649], + [-57.413204407338846, -8.826197216649371], + [-57.41606193956065, -8.795887498768233], + [-57.42750771946096, -8.783247397260562], + [-57.427507735205616, -8.783247379872618], + [-57.452425776162755, -8.786620997054301], + [-57.46345931721406, -8.784750067535406], + [-57.46345938962108, -8.78475005656879], + [-57.484786089674856, -8.769391920527903], + [-57.48743389020653, -8.768158550693283], + [-57.53031292999091, -8.74818241786598], + [-57.53031337669014, -8.748182600569514], + [-57.558978218397684, -8.759904890492367], + [-57.56229295552099, -8.761260191427537], + [-57.58620518409708, -8.759399367050534], + [-57.58620525687338, -8.759399359355626], + [-57.586582916392246, -8.759234137224599], + [-57.59286573793747, -8.756485411665295], + [-57.60037622406091, -8.74237388525448], + [-57.60098160531752, -8.741236416668208], + [-57.600370751927294, -8.738461237375681], + [-57.59354160908309, -8.707427717640384], + [-57.59651171798867, -8.692900624564494], + [-57.59676254426812, -8.691673854176088], + [-57.60249053141417, -8.68067764427229], + [-57.605229865899645, -8.662842003571633], + [-57.6204871056164, -8.647752899824178], + [-57.620801835787304, -8.64708324820189], + [-57.62467150468841, -8.638849724172287], + [-57.62237377093844, -8.595029350247897], + [-57.62217302056027, -8.59119681145506], + [-57.63078468008472, -8.58539545986002], + [-57.644705275050555, -8.58198866510265], + [-57.64828686748273, -8.576792711155912], + [-57.648568970294846, -8.576383451164782], + [-57.64871612269836, -8.574563841322352], + [-57.65042967652332, -8.553379758276538], + [-57.63979856791658, -8.541713032778013], + [-57.638761516737596, -8.540574874624129], + [-57.638307930717005, -8.539422165322089], + [-57.63334916925079, -8.52681933676366], + [-57.634060106862684, -8.5189137704661], + [-57.637310963185584, -8.5139588543107], + [-57.637568281838455, -8.513566650197625], + [-57.63892805723809, -8.512730235126591], + [-57.65898061435816, -8.500395030622338], + [-57.660286095607816, -8.493429132863495], + [-57.660396603533066, -8.492839488249123], + [-57.659653296975314, -8.491636440406742], + [-57.65175488668018, -8.478851834970612], + [-57.65137890205567, -8.471675647431713], + [-57.65134602333309, -8.47104800382295], + [-57.65351619978452, -8.468320514683628], + [-57.681511199547515, -8.433134424344404], + [-57.68687067548815, -8.416262107716609], + [-57.68651541069373, -8.40775899251014], + [-57.68648439065354, -8.407016355544293], + [-57.67009183898958, -8.379347536129833], + [-57.66795109105272, -8.366883637412643], + [-57.66879617324944, -8.364326936172501], + [-57.67898208384094, -8.333511298059248], + [-57.67979139378448, -8.318992543379556], + [-57.664761447622915, -8.294891668838419], + [-57.663009341339496, -8.268510629720133], + [-57.64551816585771, -8.234275259529241], + [-57.643894308222535, -8.231096253731767], + [-57.64313871977009, -8.212183769158331], + [-57.644897468515225, -8.209570896359523], + [-57.66717294080958, -8.176476394599737], + [-57.67717170415115, -8.171404574612176], + [-57.70456434544497, -8.168032143451292], + [-57.704564418001475, -8.168032134137924], + [-57.705293541223284, -8.167332397218273], + [-57.715063468091245, -8.157956058421288], + [-57.719784449332884, -8.146613602436362], + [-57.7276939728939, -8.098325201916321], + [-57.728365817077446, -8.09422435783122], + [-57.73165570771922, -8.091348413293998], + [-57.7764533826927, -8.052183948657923], + [-57.801882766992826, -8.007054643462], + [-57.803922984829335, -8.003433804712316], + [-57.82875831275474, -7.972904617935365], + [-57.83179074936899, -7.9615246234358885], + [-57.83483887194662, -7.88221295666853], + [-57.83530514556297, -7.880617162896508], + [-57.840895077603086, -7.861486474210694], + [-57.873761565134, -7.801202384165651], + [-57.89691595240107, -7.681981153368348], + [-57.898874792283756, -7.67189926587065], + [-57.900046932852455, -7.6709104375032275], + [-57.91611661955414, -7.657353528783351], + [-57.93431139560522, -7.656781366246593], + [-57.93431146814346, -7.656781360263009], + [-57.934650485466435, -7.656542832133868], + [-57.93948153356921, -7.653143739137711], + [-57.94459356859578, -7.606190761237578], + [-57.94503116295813, -7.602173070636064], + [-57.947114900737205, -7.5970476228909645], + [-57.972504837251435, -7.534597111577707], + [-58.00209065310487, -7.488139357890453], + [-58.03271714268906, -7.45653369998143], + [-58.03502845999387, -7.454148384869904], + [-58.06033397091623, -7.397028281963779], + [-58.11852384724721, -7.353072286559415], + [-58.13836227176302, -7.349043387615508], + [-58.13836223705541, -7.349043565257518], + [-58.13708501162108, -7.355580863961427], + [-58.1369770239929, -7.356133596949329], + [-58.14729433328145, -7.343250161270151], + [-58.16993237939397, -7.31323245836191], + [-58.174733046971994, -7.271437752629992], + [-58.16800731984558, -7.231344161582144], + [-58.18221220902665, -7.179816848130837], + [-58.20867013032775, -7.136362309037768], + [-58.222698522146594, -7.124283377831744], + [-58.23984212949182, -7.095520265379074], + [-58.25275652015369, -7.083433696879366], + [-58.26849842829805, -7.07952943093113], + [-58.288176537330756, -7.061683396275477], + [-58.33534310172467, -6.986382085422863], + [-58.35553006169344, -6.9716684996384135], + [-58.380170563392916, -6.970513532454037], + [-58.386478034508876, -6.965326572890379], + [-58.394057581853886, -6.950108739314248], + [-58.4069254772968, -6.940440410559188], + [-58.43447629511025, -6.908816049039348], + [-58.46280628178471, -6.837289006625174], + [-58.47058201791475, -6.803640373351264], + [-58.48004867479754, -6.785216515543927], + [-58.4783908255409, -6.6996233292073395], + [-58.46511447397242, -6.6700507394031465], + [-58.449573629136, -6.653625001728064], + [-58.42169659280747, -6.6107246250797935], + [-58.38053737388183, -6.580520098174461], + [-58.34980650012398, -6.562410923861261], + [-58.332228294151285, -6.533009579029192], + [-58.32555542254602, -6.499302289977023], + [-58.31991587919336, -6.495005742326919], + [-58.293029063171026, -6.493892818923968], + [-58.26664291361611, -6.475570521829085], + [-58.255175911410994, -6.454127510107552], + [-58.033550108817685, -5.978129325086041], + [-57.87388522179072, -5.629855093638201], + [-57.860555077199805, -5.600736281869581], + [-57.70387476273912, -5.259287780462363], + [-57.65983358342224, -5.16316078624239], + [-57.476595662718864, -4.770423915528247], + [-57.350117987203376, -4.502029272173377], + [-57.25221308742402, -4.294024655296188], + [-57.24940759819286, -4.287994594553261], + [-57.213469785106966, -4.211644482790476], + [-57.21061113858558, -4.205565280780504], + [-57.13070069535026, -4.0356586529910095], + [-57.00041153644238, -3.759151758273513], + [-56.95600598728828, -3.6586500399905155], + [-56.955548910237475, -3.657611145851285], + [-56.91367743485764, -3.5623220596556093], + [-56.88716190699684, -3.499070818905513], + [-56.832351891865535, -3.3820670208502297], + [-56.83222421869083, -3.3817946191938244], + [-56.81002067624794, -3.3330036109072276], + [-56.76781495086606, -3.242915605708561], + [-56.76284278314317, -3.2322361489816616], + [-56.72345538812195, -3.146624617344854], + [-56.64769775827416, -2.9813550106843865], + [-56.57587432786054, -2.824141096093363], + [-56.558618042656335, -2.7867372273854296], + [-56.53738594019465, -2.740714385812842], + [-56.53632979951004, -2.7384263721558373], + [-56.487511708609546, -2.6329102219221086], + [-56.4621532062392, -2.57859308361875], + [-56.43312295923358, -2.516395148403623], + [-56.40208595542891, -2.4566497067884203], + [-56.40785582505187, -2.4501978669974007], + [-56.42535459963654, -2.4491685991115744], + [-56.43738142392372, -2.4402604482654677], + [-56.45524242791935, -2.43627216882015], + [-56.45707785793768, -2.4354619632722545], + [-56.46441129145503, -2.4316284510814543], + [-56.465519805155324, -2.4231487900618], + [-56.42075868928336, -2.360226231502454], + [-56.41268302336504, -2.3217502320670262], + [-56.389174801616626, -2.2785586297842033], + [-56.38424125379255, -2.2705106757954048], + [-56.3641319733748, -2.2593223890704084], + [-56.33156366762345, -2.2513984056548937], + [-56.26342509951153, -2.221092624187711], + [-56.220223925102935, -2.1958793668581174], + [-56.192000544330746, -2.1714829113317062], + [-56.14185355218758, -2.1002511198670746], + [-56.1023439956609, -2.048056284362521], + [-56.097485797172105, -2.0371716786122103], + [-56.098578249280024, -2.0269832495305757], + [-56.1450129572935, -2.0392441232622076], + [-56.16267865493157, -2.0419973963228397], + [-56.172455618554274, -2.03922511907834], + [-56.18663041576472, -2.0428594069397668], + [-56.193910583950334, -2.048921281420651], + [-56.196995745540484, -2.0569607217158277], + [-56.207569057638736, -2.0600185288750232], + [-56.22830386908385, -2.0562582187560237], + [-56.25607906060626, -2.0883535622987797], + [-56.28059993345503, -2.0931062692068467], + [-56.2973830284018, -2.1008446146290067], + [-56.2991489763873, -2.1054712494422776], + [-56.299738216423535, -2.1192126376633116], + [-56.308379595338785, -2.1210620420057076], + [-56.31668724208161, -2.140162692403057], + [-56.32069749543589, -2.1426234340606762], + [-56.34347262296135, -2.1495082294128167], + [-56.35107403063282, -2.1489064201839483], + [-56.36771053816524, -2.137113263015901], + [-56.36955760715135, -2.1375450142341106], + [-56.37498821227912, -2.1388142163136163], + [-56.39263104274863, -2.159244127232678], + [-56.41380796661788, -2.1759856518703353], + [-56.4266454411646, -2.1683562233823976], + [-56.436739704676675, -2.1576312488185962], + [-56.45346064721535, -2.154068715298546], + [-56.4706640450901, -2.167062081640316], + [-56.47781794915412, -2.170412249282128], + [-56.507551994880004, -2.1437363685531086], + [-56.519399239079576, -2.138339305549454], + [-56.52698949127995, -2.139231115158879], + [-56.54076557680824, -2.1538731632283694], + [-56.55713459243461, -2.1625801309995136], + [-56.56951484547485, -2.1747943557352456], + [-56.58033358269633, -2.1794410923350336], + [-56.5892742662879, -2.1745037842032855], + [-56.597715381206925, -2.17499058026986], + [-56.599438680136934, -2.1776138281714434], + [-56.607440092402314, -2.2050130444281244], + [-56.61283671368746, -2.210206244251184], + [-56.624354290659944, -2.204517871486485], + [-56.635349861378764, -2.2036337747097225], + [-56.6579309777751, -2.2106252560104886], + [-56.6789957307515, -2.2125989296528807], + [-56.70266509057717, -2.2012675506231485], + [-56.70769061147164, -2.1839368583048797], + [-56.72764551590206, -2.1768392546896878], + [-56.7433856510567, -2.178504218583355], + [-56.7608812045045, -2.1740928578670777], + [-56.76846134142854, -2.1657857538577585], + [-56.7693518177853, -2.140707820481648], + [-56.75108764623822, -2.1094720685097292], + [-56.73268659903206, -2.0917752449567035], + [-56.72682583691007, -2.081412630108248], + [-56.72130462995488, -2.059210270766644], + [-56.726524427184366, -2.030996756091815], + [-56.73346528154488, -2.022827965409132], + [-56.74780572244845, -2.0115383989352806], + [-56.76691438090112, -2.0087336678242758], + [-56.79312993130631, -2.0210311028066132], + [-56.81668634228145, -2.0230062039444685], + [-56.8498775375551, -2.0202074381330912], + [-56.85896573848499, -2.0159615636169876], + [-56.87455318697112, -1.9950164513784856], + [-56.88601894254248, -1.9836511109436483], + [-56.92359918383861, -1.9643443915741543], + [-56.94446307425403, -1.9638956598891288], + [-56.952690932374395, -1.9602657363901947], + [-56.961623416469386, -1.9514929865841653], + [-56.96624511797417, -1.934988966027047], + [-56.980129290882886, -1.923699756485428], + [-56.9882708752287, -1.9071962455957248], + [-57.02654693901437, -1.9151248301787935], + [-57.037128690967684, -1.9115893862114721], + [-57.055984675384856, -1.8647733625794005], + [-57.067989540269856, -1.8527055865668989], + [-57.07348906517921, -1.8317064041875382], + [-57.060403971358404, -1.8158070990946589], + [-57.06382318765813, -1.8085316480450397], + [-57.07045788234975, -1.802697471371047], + [-57.07934496792058, -1.8012239348986987], + [-57.08438093800751, -1.7938944049812369], + [-57.0852419526308, -1.7820802773171784], + [-57.09777501385897, -1.7751418801979417], + [-57.115743747710184, -1.7918190279858417], + [-57.12929250829975, -1.7641991109412747], + [-57.149111014276286, -1.7623720947058985], + [-57.163130145110784, -1.768617502947449], + [-57.16115965126383, -1.756105655545079], + [-57.171736069068025, -1.7498029645606004], + [-57.161716651003886, -1.7290786840269532], + [-57.16481628469174, -1.7209088094944067], + [-57.17891005324616, -1.7301802592867004], + [-57.18747870852667, -1.722266750648151], + [-57.19437564528052, -1.7277676006129092], + [-57.20112497156397, -1.7239899924097377], + [-57.20366910472492, -1.7109842812261855], + [-57.21559893708031, -1.7160467481460675], + [-57.22206213360857, -1.7238695358677885], + [-57.230661869782146, -1.7259568380175063], + [-57.244795716054945, -1.7205025483909904], + [-57.249096138465106, -1.7125776681490923], + [-57.24362801457771, -1.7043326673057582], + [-57.25381130948357, -1.6963319788160562], + [-57.26212904563581, -1.6970148961456], + [-57.25893681219778, -1.70714169870336], + [-57.26440034567918, -1.716860028740144], + [-57.27242898543927, -1.7187043202847592], + [-57.274317256626006, -1.709772532286454], + [-57.297526644913525, -1.7114903660857266], + [-57.30542821340267, -1.730314552827852], + [-57.327880153199445, -1.715937231305696], + [-57.34698618608256, -1.714060115557818], + [-57.34393833348272, -1.7231558849373134], + [-57.35243554165174, -1.7327963201613965], + [-57.373020184785396, -1.7141468089897531], + [-57.392606356621215, -1.723110725073505], + [-57.4009602414014, -1.7126453913380493], + [-57.39087532324092, -1.7067412363967522], + [-57.38790761292769, -1.6953255562371177], + [-57.397544384437815, -1.6917155537818764], + [-57.40410042747147, -1.6839935438573344], + [-57.40337673957706, -1.675563075147316], + [-57.411851117962975, -1.6733184361744586], + [-57.42748838086265, -1.6918322135998713], + [-57.439847764998575, -1.6885242717963094], + [-57.43535097833228, -1.6758769673865341], + [-57.43858614355867, -1.6665208439020816], + [-57.47512015717075, -1.6780350282090983], + [-57.48223273250183, -1.664464012464905], + [-57.48049144837556, -1.6554447920986415], + [-57.49355734240926, -1.6569426427442964], + [-57.501570125009145, -1.6524042446915121], + [-57.50709284377786, -1.6412980606447287], + [-57.52870286404469, -1.6527557437837663], + [-57.525117455304965, -1.626804034465625], + [-57.53914961597355, -1.6238935893148596], + [-57.545603121672364, -1.6105504938131976], + [-57.55337636711485, -1.6052520567743649], + [-57.56403982664098, -1.6052198194848566], + [-57.58582033815644, -1.5962477103592134], + [-57.5932978413646, -1.599730226096199], + [-57.59563088358132, -1.5894665822104097], + [-57.590042225979104, -1.580136515001669], + [-57.60249861740749, -1.5703318910352007], + [-57.61007319887858, -1.5749659888377956], + [-57.61137382304692, -1.5829215509348815], + [-57.621764177645396, -1.5861019128969467], + [-57.630268073348574, -1.5834939128310297], + [-57.653634119842785, -1.588718716768179], + [-57.656970501425036, -1.580868153725696], + [-57.6785908029803, -1.5943733145693018], + [-57.694072248289764, -1.5763239179835553], + [-57.70676686723496, -1.5759889394145175], + [-57.70251152287812, -1.5615706807905203], + [-57.70510102350835, -1.546945309095909], + [-57.71235231558537, -1.5356681095274234], + [-57.713077523996155, -1.50418205208059], + [-57.72978193355775, -1.5099731560292031], + [-57.74475092234615, -1.5014283718031405], + [-57.75043125617122, -1.5067807088957572], + [-57.761013050687986, -1.5023892760051842], + [-57.77323817363335, -1.5088354735083311], + [-57.78360328258497, -1.508040384153607], + [-57.781015718356834, -1.49997399974445], + [-57.783779309345356, -1.4881236397375917], + [-57.79118284854498, -1.4906735675215366], + [-57.797211352538156, -1.4857867123826598], + [-57.80156793336444, -1.4742722445309255], + [-57.80976612841757, -1.4701704629489571], + [-57.812593692580414, -1.4524226846765553], + [-57.82105893833131, -1.4505575738867358], + [-57.823950545490305, -1.4397922653745343], + [-57.841703785469676, -1.4364236015173772], + [-57.84623286453531, -1.4295447948804727], + [-57.864461044647285, -1.4254346700522242], + [-57.879776577619914, -1.423300088029308], + [-57.89412545575837, -1.4335660344905068], + [-57.90394602160919, -1.4260631851743553], + [-57.91026923113369, -1.4280977610535532], + [-57.91843599985197, -1.419841802447099], + [-57.910404542697265, -1.4102646279195814], + [-57.92058932727923, -1.4029049673200178], + [-57.93747138403761, -1.3983499709511154], + [-57.95165553566785, -1.4059035414862249], + [-57.96026207299892, -1.4016079413651876], + [-57.955405767521256, -1.3830922875678258], + [-57.97701108992733, -1.3750445879702775], + [-57.97645834600366, -1.3662763762145484], + [-57.970786574263585, -1.3591423620130891], + [-57.983985270791116, -1.3562353222385717], + [-57.996296766683905, -1.3443551571179386], + [-58.0008474529164, -1.3302100803179646], + [-57.99790248840298, -1.3204536131455988], + [-57.99076525557335, -1.3130855117337543], + [-57.99059640220046, -1.2920555417238344], + [-57.97448685422942, -1.2326690190905079], + [-57.964266745030805, -1.2232907976953775], + [-57.965398930383515, -1.2061195816793948], + [-57.97890263040762, -1.1931084126510596], + [-57.970816072865084, -1.1735600011866447], + [-57.97193455036586, -1.1626041246693748], + [-57.979091311357806, -1.1544383162530218], + [-58.007065387094165, -1.145761568827222], + [-58.015676796503556, -1.1291222003834431], + [-58.00967920954869, -1.1191177144212208], + [-58.017451490119505, -1.1061857663221986], + [-58.03246034789229, -1.101387623600344], + [-58.04215488947069, -1.1033770367678921], + [-58.08176740348463, -1.1265161815546245], + [-58.08415144330729, -1.1370226647851727], + [-58.08187699098336, -1.147543913082317], + [-58.094204038180024, -1.1605426414233266], + [-58.123597008279134, -1.164628069245921], + [-58.11921111697168, -1.186405604676032], + [-58.127734346522224, -1.1900549382527235], + [-58.15584923347169, -1.2259127454948462], + [-58.16255262337506, -1.229690505636166], + [-58.181040014415444, -1.2061296108721422], + [-58.1945177357897, -1.1997401676009996], + [-58.21518489474027, -1.1657134873342685], + [-58.24327444578406, -1.1566341613472806], + [-58.254676754608205, -1.1326238521066334], + [-58.268255456378796, -1.1319444617556889], + [-58.27373409359994, -1.1390446079344625], + [-58.32319411908865, -1.1433275912550402], + [-58.31979262179521, -1.1344240371696364], + [-58.33617315371037, -1.1237089119843273], + [-58.34432162865782, -1.1085472282334676], + [-58.352098944117515, -1.1122860639922745], + [-58.361233155182, -1.1051316296375344], + [-58.355651575498484, -1.0969421677303548], + [-58.36273422028399, -1.0938288979798456], + [-58.368399742637614, -1.0660573590496472], + [-58.38859319699805, -1.0504551040361803], + [-58.392599929607464, -1.0398562947055379], + [-58.39977006009028, -1.0440462781523483], + [-58.406244400656064, -1.038923702004937], + [-58.411595885473346, -1.044272105004762], + [-58.42998773237302, -1.0271497991908993], + [-58.41939964856321, -1.0102033963217492], + [-58.42495749905386, -1.0002604017700658], + [-58.42339951319103, -0.9914695433944596], + [-58.41065428605048, -0.981341969982951], + [-58.4150941225952, -0.9749792887792933], + [-58.41466787006894, -0.9670866369386037], + [-58.42751275634676, -0.9628779535820365], + [-58.429924374994876, -0.9518854663008847], + [-58.450736214328906, -0.926116089435473], + [-58.448455705819484, -0.9070098661691434], + [-58.452982913981536, -0.898228745101775], + [-58.433794156185776, -0.8920075140389534], + [-58.43595725294744, -0.8834996738024176], + [-58.4589480329976, -0.864027621197679], + [-58.466973850652536, -0.8642912794498805], + [-58.468108199696, -0.87314278522258], + [-58.476085862575886, -0.8676181411182319], + [-58.479961185341146, -0.8596100924937047], + [-58.48745230596926, -0.8597598814295204], + [-58.49370826113992, -0.8461495130753037], + [-58.49187707882377, -0.8318247251664513], + [-58.50090137607209, -0.8364023900044364], + [-58.50828096731192, -0.8333411632170928], + [-58.51215242277416, -0.8398107133753075], + [-58.51922998767768, -0.8358401745817422], + [-58.5205578428538, -0.8279880226013251], + [-58.560549007925744, -0.8046481317911217], + [-58.56123213377027, -0.7968621018345379], + [-58.567840675527734, -0.7927358326075639], + [-58.571307073157335, -0.7857148735732223], + [-58.5907883241909, -0.7737697701563397], + [-58.59253912036731, -0.7652473532853986], + [-58.60020887591794, -0.7645999196050016], + [-58.6136731995158, -0.7554809360189532], + [-58.632303307457974, -0.7229167743179912], + [-58.63667980348694, -0.718084390500397], + [-58.65660925252661, -0.7161106243054074], + [-58.66394060687377, -0.7131349071756263], + [-58.666424007945736, -0.7053779992835253], + [-58.68350396328546, -0.6872600540051064], + [-58.70508292109325, -0.6790051560785195], + [-58.70384303182357, -0.671420976355775], + [-58.70952062660773, -0.6484872743467217], + [-58.71685967517589, -0.6458972538248033], + [-58.71853651273787, -0.637643482414862], + [-58.7319029378068, -0.6273935169420398], + [-58.73390124281216, -0.6116627523686741], + [-58.72708834986852, -0.6078726607084337], + [-58.728037427283006, -0.5842403657791727], + [-58.73195026066896, -0.5773071540396246], + [-58.729086469509255, -0.562158245470709], + [-58.72147513282298, -0.5593110291881142], + [-58.710841559494355, -0.5471188273571139], + [-58.71006144957616, -0.5385931587925783], + [-58.71065036243011, -0.5215022759460581], + [-58.71662373238643, -0.5072564381808009], + [-58.722818573093825, -0.5021064245110148], + [-58.73528231831573, -0.4715506389674419], + [-58.72512171660699, -0.44225615933736445], + [-58.72966650829151, -0.43532151556361315], + [-58.736918773553924, -0.43246167380427575], + [-58.74392826426055, -0.4174756503719881], + [-58.76594495808233, -0.4090761701795466], + [-58.782033635128904, -0.38977431175108546], + [-58.79074048321691, -0.38542641009252443], + [-58.79797098735762, -0.3883420933881177], + [-58.802032928381735, -0.38141598253495895], + [-58.817718558758386, -0.37964617232139175], + [-58.82390851268366, -0.37400415458551206], + [-58.846485825632605, -0.3650992050870684], + [-58.87196964735053, -0.3430256554979112], + [-58.8748829809678, -0.29585790511431614], + [-58.87060044178528, -0.2806044203857092], + [-58.86544052196195, -0.2741277561328891], + [-58.8652942661833, -0.2655836366284917], + [-58.87166159749168, -0.26112158079667014], + [-58.8792138365712, -0.2293718529562981], + [-58.88093717802497, -0.1966145106592278], + [-58.86299554584436, -0.16097161599660087], + [-58.8630475566972, -0.1448059099111089], + [-58.86671031594477, -0.13791713008142217], + [-58.86378292104791, -0.07806601593095422], + [-58.87198392697824, -0.06452886804310311], + [-58.880463967905484, -0.06453787525884545], + [-58.88648034312697, -0.05922004048139271], + [-58.886622287925086, -0.03435781177171338], + [-58.8975297569303, -0.017306540748317292], + [-58.894934394969454, -0.010999251587000894], + [-58.89536245905471, 0.263471769672714], + [-58.89546046510264, 0.5917201871313187], + [-58.895351916964906, 0.9046876495889339], + [-58.8953925314922, 1.2276474057748954], + [-58.89539271535064, 1.2287349756089934], + [-58.88205877317896, 1.2287439478942888], + [-58.874555182189425, 1.2232321638415575], + [-58.86678399420735, 1.203165398118607], + [-58.85928307302141, 1.204071697548781], + [-58.85428803619582, 1.1834605133346667], + [-58.84594623954185, 1.1818358969052178], + [-58.83177844644155, 1.1879052940492707], + [-58.826782269607456, 1.1870939439433774], + [-58.824007258176266, 1.1832076080171412], + [-58.82511793326666, 1.1712718052358724], + [-58.82122788303551, 1.171001814907943], + [-58.80595299493074, 1.1812291843692935], + [-58.803446178241735, 1.175986857851986], + [-58.800113686007016, 1.1765323702284225], + [-58.791503950956354, 1.1904632871544474], + [-58.779284647220614, 1.1906511196494298], + [-58.77622881663266, 1.1854086409010478], + [-58.76984234450614, 1.1864974564335842], + [-58.764007711998765, 1.197081557150854], + [-58.75122645882279, 1.2084836333030078], + [-58.7395597725984, 1.1999014105131307], + [-58.7151151122643, 1.2376255116952464], + [-58.72094902594021, 1.2451273706705088], + [-58.72067184316485, 1.2554367408258262], + [-58.709841504630695, 1.2834784164892623], + [-58.71039331069159, 1.2898991406284306], + [-58.6945648852849, 1.2973235738774607], + [-58.68011351334079, 1.2962479039980788], + [-58.675951823664526, 1.2851276083508594], + [-58.6640079216822, 1.2793464261595193], + [-58.652613515004454, 1.2882184884351837], + [-58.639283187030614, 1.2854240559337529], + [-58.62873186769552, 1.2885042836634713], + [-58.614839436338606, 1.2829045330690345], + [-58.6081749040372, 1.2737769254422673], + [-58.588453403044184, 1.2698987693538768], + [-58.5853946196093, 1.2621237079823877], + [-58.57761646914704, 1.2746082322239458], + [-58.5776119354907, 1.2832001109418532], + [-58.56983742926421, 1.286009431579068], + [-58.56456128964368, 1.2946027479701196], + [-58.55956560780987, 1.2901754763447213], + [-58.546782350654695, 1.291810152852132], + [-58.540116407186744, 1.2879247851559028], + [-58.538168747307, 1.2676666850505933], + [-58.53595311327215, 1.2656790981814001], + [-58.52983471715178, 1.270657155214463], + [-58.52706446484127, 1.2695747477681822], + [-58.52289306973151, 1.2579089526034213], + [-58.519002929785806, 1.2581825205202128], + [-58.52011299620163, 1.2656895134653068], + [-58.51289162204172, 1.2776313051086121], + [-58.50428587413815, 1.2732043739180505], + [-58.504008205184284, 1.2690450697204323], + [-58.49622597987733, 1.267963150752905], + [-58.495059985380564, 1.2949166642694843], + [-58.483397557109264, 1.3003494413581693], + [-58.47611581932054, 1.3084937728753059], + [-58.470950541936844, 1.3193482758047954], + [-58.47428180869026, 1.3483790532701887], + [-58.45787249700621, 1.3714516035313045], + [-58.46484269349793, 1.3753362991322764], + [-58.47006303979995, 1.3708104517544901], + [-58.48503402405987, 1.3847300142990575], + [-58.47900831741807, 1.3871756551518883], + [-58.47964294105268, 1.390160515689216], + [-58.505115294031896, 1.4031658546259667], + [-58.50594712303063, 1.4095878367496144], + [-58.50154268049018, 1.4149263498659654], + [-58.503172207717725, 1.424875500186502], + [-58.49806047451966, 1.4301226408778076], + [-58.50233666964982, 1.4428722505452105], + [-58.5078929893964, 1.4448582233036957], + [-58.50872775472733, 1.4629461987884596], + [-58.49342608383829, 1.468202293185147], + [-58.48833673283926, 1.462054715114949], + [-58.47276743398938, 1.4610713885468096], + [-58.46192579438132, 1.466052626378035], + [-58.448445888042784, 1.4560208272686528], + [-58.44425841610186, 1.4564762676442513], + [-58.43939466606861, 1.4644391577967713], + [-58.41277541212019, 1.472685016084389], + [-58.403982110756026, 1.4697051689419776], + [-58.38558915216146, 1.4699883117123598], + [-58.37175532397948, 1.4815726767051594], + [-58.3766743610579, 1.4879931071254362], + [-58.38517645948942, 1.4886209928797898], + [-58.3903128949004, 1.4963058779193334], + [-58.39152899572726, 1.5063438195346013], + [-58.383584393967105, 1.5108709914396148], + [-58.393731866565396, 1.519908952430727], + [-58.39472475454511, 1.526511821656495], + [-58.38953885505138, 1.5353779457870442], + [-58.3630885395935, 1.5380171832892808], + [-58.35942200037651, 1.5463413363689853], + [-58.36039395632404, 1.5601800265405346], + [-58.34344874838538, 1.5665209266851654], + [-58.344536305265585, 1.5757444895050328], + [-58.33739523825534, 1.5811779983505598], + [-58.332376275664366, 1.5906759191021538], + [-58.32236771498185, 1.597014697351819], + [-58.31433541013016, 1.593943808819583], + [-58.317140396373524, 1.568437320859008], + [-58.29281553936143, 1.564291984869505], + [-58.28816637295142, 1.5724340544826394], + [-58.27173065765607, 1.567380395002577], + [-58.262256754622285, 1.5707319718813257], + [-58.25723003705265, 1.5691062264231064], + [-58.254475476378076, 1.5618717053665159], + [-58.2413379622276, 1.5541005948568414], + [-58.23600417751496, 1.5466870023830823], + [-58.21286431766761, 1.5647908878100865], + [-58.19734136933987, 1.5671506860223272], + [-58.19303618378661, 1.5722182021333007], + [-58.18381122845752, 1.5652574531435894], + [-58.160644874010444, 1.560114409058673], + [-58.15658681285064, 1.543656035701469], + [-58.153620095163696, 1.5430241211633058], + [-58.15520436092152, 1.5299974608731493], + [-58.14606337041759, 1.5153488592363853], + [-58.14955784652193, 1.5100096891958812], + [-58.1294267285065, 1.498894665612933], + [-58.111313994178644, 1.5011665649137909], + [-58.09758993702477, 1.5139263184250673], + [-58.08550339061078, 1.5148366817624386], + [-58.08495136564633, 1.5079622805343433], + [-58.06945082907023, 1.5073372331203767], + [-58.06522730143783, 1.5222654026151232], + [-58.06092865341152, 1.5253414499848632], + [-58.040558447734526, 1.520918798834205], + [-58.0271722986975, 1.5086235485741728], + [-58.023870274995794, 1.5107956311560151], + [-58.00422932304663, 1.5030255878704863], + [-58.00550357782571, 1.5167745818045266], + [-58.0004525591644, 1.5207569497570184], + [-58.00123008816639, 1.528173850091138], + [-57.99492339149054, 1.5387605814454324], + [-57.990279937462326, 1.5405717591242076], + [-57.98936930719952, 1.5476292365790798], + [-57.99431225817531, 1.5531447390623256], + [-57.98881215727082, 1.5624635706407024], + [-57.989863815330956, 1.5673476622632045], + [-57.98253787040921, 1.565813455308268], + [-57.97856016657574, 1.5727794231913546], + [-57.98386988420372, 1.5862566678861652], + [-57.98136393636491, 1.5962980802814841], + [-57.985285761360416, 1.6167398091411729], + [-57.9820356126366, 1.6178269651648798], + [-57.98031244705596, 1.6332059772791507], + [-58.002616217521286, 1.6456781191478222], + [-58.00236228749205, 1.6494766498535587], + [-57.990198146513116, 1.6514731339465596], + [-57.99009434862631, 1.6584388924176838], + [-57.981031143322234, 1.6593475384927605], + [-57.978838681887495, 1.6559119694490783], + [-57.97042396051376, 1.6543779583807592], + [-57.96186492200285, 1.6570961769409176], + [-57.95777916155357, 1.6542037788605402], + [-57.95942574014184, 1.6511267400204375], + [-57.9501992261151, 1.6476030143317182], + [-57.926758011932364, 1.6448090423783113], + [-57.91350710222474, 1.6476193242656285], + [-57.90472476955618, 1.6556755585484464], + [-57.90208739312798, 1.6677068572493567], + [-57.89498460357839, 1.6743137057054143], + [-57.88923191191089, 1.6742267542788505], + [-57.88464868194751, 1.6697046173206185], + [-57.87714871970498, 1.6717892178867069], + [-57.877120516487054, 1.6802923480429037], + [-57.852057660395495, 1.667819628734513], + [-57.85305772496863, 1.6778603225447533], + [-57.84698067363963, 1.6810285392116724], + [-57.84417241462478, 1.6888995262715016], + [-57.84006299598591, 1.6835650078016167], + [-57.83639497669677, 1.6865516802376375], + [-57.81950319434566, 1.6838444278693172], + [-57.80908803345032, 1.6883720054056632], + [-57.79979026647614, 1.6852102440575965], + [-57.79636848344816, 1.6910001527588705], + [-57.803651171014586, 1.7018530021105798], + [-57.79689378272065, 1.7032117126906394], + [-57.79225857582809, 1.7266444907230871], + [-57.780371930015455, 1.7192316011530093], + [-57.774308337256215, 1.7297275023545753], + [-57.766727082065195, 1.7225847423472238], + [-57.76022956850795, 1.7226778634235431], + [-57.75822663374214, 1.7186985986055008], + [-57.74496978187311, 1.7228639755796709], + [-57.73114883061312, 1.7188887566755764], + [-57.7196449559229, 1.7228719781618218], + [-57.71644852650747, 1.7207042106547228], + [-57.71839846541102, 1.7154554112713056], + [-57.71014261693632, 1.7176300731227556], + [-57.708171391577366, 1.7207067504736446], + [-57.71189922461226, 1.7285761067852288], + [-57.70509152765746, 1.7309312547518605], + [-57.697118308220226, 1.7207994580410024], + [-57.69804030199299, 1.7137440063380938], + [-57.68700814881004, 1.7064199780361087], + [-57.67506350270325, 1.7059725952833362], + [-57.672395543364985, 1.7108601572484654], + [-57.669506127881064, 1.6999130056244398], + [-57.66053573820906, 1.6891504996047564], + [-57.65551618843953, 1.6904189294801784], + [-57.6504217439152, 1.682369048968948], + [-57.63292298335057, 1.6914206404980334], + [-57.62934223416767, 1.6984797331915331], + [-57.6219473808277, 1.6997472111684955], + [-57.619396649056625, 1.695767250468788], + [-57.604760627272896, 1.6929676961208269], + [-57.59783564994127, 1.7004781501597919], + [-57.58392837378669, 1.7020194052124966], + [-57.581734075932125, 1.7060923131714922], + [-57.57603803181116, 1.702655908109417], + [-57.57709477210061, 1.6903526004577292], + [-57.57264324482256, 1.6887261882859128], + [-57.56450511363066, 1.6958743406575703], + [-57.553229149495245, 1.6924398454069858], + [-57.550341364742636, 1.7006733416947717], + [-57.53759833361396, 1.700495412941463], + [-57.53417841487999, 1.7081866448162473], + [-57.54129164730209, 1.7203968718154952], + [-57.531839200563546, 1.7214857847819374], + [-57.52609044611271, 1.7279998995875685], + [-57.518870122784136, 1.7211279036395166], + [-57.514227261682684, 1.723028399337043], + [-57.51670570575634, 1.7317126968206678], + [-57.514506584436326, 1.7472738949846613], + [-57.50851297656133, 1.7574074306267686], + [-57.50179149530897, 1.757952592861737], + [-57.49728652891594, 1.7668188621392167], + [-57.501870412535816, 1.7860883358329294], + [-57.49370490593295, 1.7925136912085684], + [-57.4870353113363, 1.7925155518989526], + [-57.48514402699273, 1.7999337212558133], + [-57.47764751229049, 1.794688079750403], + [-57.47620856970744, 1.7989406463575517], + [-57.47400980803879, 1.7958657658802286], + [-57.45089668313326, 1.806364646944893], + [-57.45178704072964, 1.8114325611002355], + [-57.44884104692728, 1.8119752744585265], + [-57.44476046601106, 1.8222893087852188], + [-57.43776051852666, 1.8268144580712622], + [-57.44498605102541, 1.8411068402436257], + [-57.431924349088476, 1.8584787701353993], + [-57.43236690601884, 1.8693367912407395], + [-57.429230850040376, 1.873861966363857], + [-57.43611963800666, 1.880552997656921], + [-57.432481771466975, 1.8908674575001025], + [-57.4334292561392, 1.9059762805506368], + [-57.427700795584094, 1.9094144363661023], + [-57.402873224171096, 1.912678398767727], + [-57.398424175952734, 1.9218158784981312], + [-57.38503305848123, 1.9274278693934335], + [-57.3757300749412, 1.9222752013561877], + [-57.367678654880876, 1.9237219941416328], + [-57.35703876195483, 1.9471569231595423], + [-57.36814914137272, 1.9521298952739876], + [-57.36911936081319, 1.956380967772551], + [-57.354227019649926, 1.9610899698815538], + [-57.35623115080752, 1.9704073209794009], + [-57.34561853281977, 1.9802710265589993], + [-57.33817605593719, 1.9752961722157545], + [-57.32925832992788, 1.9796403569928291], + [-57.313200155219256, 1.9771996214064087], + [-57.307117741269614, 1.9966525986761368], + [-57.27723002300379, 1.9829969277489383], + [-57.268810892097385, 1.9836311239396653], + [-57.26781381615513, 1.9798319829903401], + [-57.273429403769434, 1.9741310236681022], + [-57.262286672007356, 1.9617382844127234], + [-57.25645112374248, 1.9611058815966556], + [-57.25542458132748, 1.9503400414958005], + [-57.22922920295505, 1.937587177811028], + [-57.22912286442615, 1.9535111176921185], + [-57.21472946160533, 1.961292093662272], + [-57.199895916345774, 1.9786650019684997], + [-57.183340973451664, 1.9795717810947926], + [-57.179091685775454, 1.9901553322966261], + [-57.16395489966989, 1.9947714890310686], + [-57.14745826355535, 1.9890736739385502], + [-57.14083932924446, 2.0010165511430666], + [-57.11996816399213, 2.010155033395168], + [-57.11631873741976, 2.014859449084659], + [-57.1165943642817, 2.0278884350198334], + [-57.111626728949005, 2.029516183424244], + [-57.096287854361265, 2.017846894432141], + [-57.086677265387365, 2.026442163576017], + [-57.08156724346225, 2.0188419789513405], + [-57.08254463964851, 2.0075331907063627], + [-57.07345566000789, 2.0023767383924223], + [-57.0711168635714, 1.996586261356333], + [-57.071209325463116, 1.9687216487230945], + [-57.06393160198426, 1.9559658434832938], + [-57.056454811666384, 1.9567804805557953], + [-57.05378642903674, 1.9524379927666935], + [-57.04737010139158, 1.9531621461566238], + [-57.03195481082394, 1.9469199134760211], + [-57.02493215723979, 1.939771941658026], + [-57.02439599411348, 1.9278295682587958], + [-57.01420772242343, 1.9148927078917364], + [-57.00915196140183, 1.9169732948778104], + [-57.00070432171908, 1.907293250919202], + [-56.98281811705854, 1.9072927089146603], + [-56.976097496156136, 1.902949453188955], + [-56.971483045292906, 1.905572870405111], + [-56.968201586822744, 1.916610305028859], + [-56.959173848332256, 1.9243911238710674], + [-56.95051532390573, 1.9226711637814802], + [-56.94981765407248, 1.9194147103445949], + [-56.91970904035529, 1.9303604169291586], + [-56.90628917674994, 1.91516022324061], + [-56.90720793149304, 1.910455790410042], + [-56.89348258157173, 1.8993272015395597], + [-56.891454605848345, 1.901859542168931], + [-56.88682111774645, 1.8968834365999616], + [-56.866590099476255, 1.8930819904045508], + [-56.86453765041, 1.8966106377172647], + [-56.85864829280012, 1.8952528903117383], + [-56.85956814659415, 1.8905482990520632], + [-56.8562574630918, 1.8891907796310548], + [-56.84581919853331, 1.8932616019905275], + [-56.837820373941646, 1.8880133397777814], + [-56.830954903530476, 1.8888275086960513], + [-56.82862433400055, 1.8815890768989032], + [-56.82157144247858, 1.88321731046229], + [-56.82092690876162, 1.8792368192904387], + [-56.80926080092825, 1.8737159098602607], + [-56.79885098315499, 1.87253934284924], + [-56.80101572576309, 1.8660251369082745], + [-56.795760315076386, 1.8613202217620266], + [-56.79793093353033, 1.853358071774914], + [-56.7880369587216, 1.8543519132778432], + [-56.78865446832084, 1.864123493864034], + [-56.77384990830505, 1.8688258951014078], + [-56.76811878152675, 1.87597184511556], + [-56.76490266087262, 1.8883665197052277], + [-56.75353960649601, 1.8926165230331065], + [-56.749763723818496, 1.9028389042315965], + [-56.737602186406065, 1.9086277122100286], + [-56.73473152192132, 1.9172201165848648], + [-56.72684916930223, 1.9184855920400217], + [-56.72095648444858, 1.925814633815748], + [-56.704649004154675, 1.9239110421311445], + [-56.68234940094441, 1.9123254513575407], + [-56.67915221631324, 1.9209204828673028], + [-56.67345986187233, 1.9126862052152631], + [-56.6510432309259, 1.9171159069169794], + [-56.64915039204629, 1.9311384045320255], + [-56.6410163768877, 1.9313163771504263], + [-56.62993223767622, 1.94244170120868], + [-56.62145355017406, 1.9458778567387354], + [-56.60784559631919, 1.934294630560844], + [-56.59840231713193, 1.936463762384146], + [-56.59642683282512, 1.9258778138742148], + [-56.57976078813686, 1.9058803698744298], + [-56.56095555379279, 1.91103276285859], + [-56.55554408887703, 1.9172728061211528], + [-56.54665295611, 1.9153707272937643], + [-56.524907364171405, 1.9246833351442962], + [-56.51798867405504, 1.9322800361312584], + [-56.49557060553882, 1.9379734744175567], + [-56.48285066149492, 1.9540708236125428], + [-56.468954836228235, 1.949182543349346], + [-56.454156648335356, 1.9523438961133146], + [-56.451258941038596, 1.956143809977772], + [-56.44467751944617, 1.9485412172579468], + [-56.43701598283295, 1.951704731724521], + [-56.432072995737144, 1.9464560354110698], + [-56.422877882499556, 1.9457292716247727], + [-56.422570714319754, 1.9389441325144892], + [-56.41181654185902, 1.9282651091938947], + [-56.40359517404973, 1.9302537082416231], + [-56.396988129364615, 1.9232848667613596], + [-56.38998920045091, 1.9233732911337602], + [-56.38862545007757, 1.9328707329501114], + [-56.37206832692586, 1.9328650249527672], + [-56.36901849148275, 1.9372958948094674], + [-56.35821144065354, 1.9414529891362593], + [-56.33934583240048, 1.9353835523505287], + [-56.33493408218945, 1.9371010443237682], + [-56.32139845895286, 1.9236170628612683], + [-56.30904512558716, 1.9208985857339822], + [-56.30274022964413, 1.9116676032539033], + [-56.295268084775856, 1.908678485146801], + [-56.290767466039604, 1.9104872186919821], + [-56.289990129695965, 1.9065059759995813], + [-56.2722877625163, 1.8965469532254724], + [-56.26312202558395, 1.8855977753435296], + [-56.244042739112835, 1.8780805731575991], + [-56.23445998397884, 1.8986113705838326], + [-56.215019722028835, 1.9020414275417774], + [-56.20895564272044, 1.8943489761311816], + [-56.2009595224409, 1.8961538633578727], + [-56.198905703402936, 1.8925345148152906], + [-56.18243086913833, 1.8926167777414002], + [-56.17089921552013, 1.9004807845467107], + [-56.16851941450005, 1.8876340545092236], + [-56.160265083409065, 1.8914299533867778], + [-56.152623525618345, 1.890702926850576], + [-56.14112682389836, 1.8750475961699493], + [-56.1325479578568, 1.8698860675821882], + [-56.129900801965015, 1.859211784522757], + [-56.12018161303662, 1.8571250251209475], + [-56.11762177920513, 1.8509727815463735], + [-56.1128460098298, 1.8550407633249266], + [-56.098654208136224, 1.8465290404782586], + [-56.09018723860207, 1.8537635732610576], + [-56.08535097195042, 1.8530372395450747], + [-56.08135118698028, 1.8458887459812336], + [-56.07740552719315, 1.8450718480776769], + [-56.07546064333985, 1.8497745517163422], + [-56.066457323632605, 1.8518510590273611], + [-56.04992768766896, 1.8508462867501099], + [-56.043434394951625, 1.847225130655576], + [-56.0366511517586, 1.8502063491047276], + [-56.02901171592501, 1.8416074860235623], + [-56.024089371345745, 1.842600921246728], + [-55.99896244799371, 1.831280302772692], + [-55.9956868518285, 1.8348955413378512], + [-55.9832126533602, 1.8355212968445802], + [-55.979346030062885, 1.8419417262640558], + [-55.975982834908464, 1.8403113692085111], + [-55.97010463237871, 1.8482678268146733], + [-55.956377789487675, 1.8450943240582893], + [-55.934296680824254, 1.8714950597937043], + [-55.91487748238771, 1.8846880964426493], + [-55.903854724548324, 1.8880281618877683], + [-55.901934845943394, 1.9077468589574702], + [-55.920524703507354, 1.9189753962142486], + [-55.921987782982576, 1.933267975661757], + [-55.92954369899473, 1.9392418876559059], + [-55.92248434936682, 1.9503644358016723], + [-55.93634990183509, 1.986465640017623], + [-55.93513017860892, 1.996504124270978], + [-55.92915375967335, 1.997313758100996], + [-55.92271095141023, 1.9912502297395462], + [-55.91373960116688, 1.9905195250393817], + [-55.9079283518895, 2.0012802280492474], + [-55.906737015038296, 2.0134022015684856], + [-55.910792033960654, 2.0143971027208134], + [-55.9105123574625, 2.0219960542883064], + [-55.90204638249844, 2.0293172392615992], + [-55.90310284188103, 2.041077776902563], + [-55.908789412796466, 2.0474124121733666], + [-55.932820758736156, 2.0577406173958037], + [-55.926684293421474, 2.075102597173344], + [-55.92909581144181, 2.0786336482938954], + [-55.93810254672062, 2.078459018431089], + [-55.94870958269284, 2.0916725136842294], + [-55.96681667593108, 2.0884278112140815], + [-55.97298450795184, 2.103176590398786], + [-55.96973563511775, 2.1130340576452737], + [-55.97343238389521, 2.116203543561811], + [-55.97815932416225, 2.1151201794826444], + [-55.975520363043664, 2.1259719619687463], + [-55.98212687416133, 2.131857202594783], + [-55.989008403390244, 2.132043543152465], + [-55.99134828252104, 2.131320187585441], + [-55.99375991746949, 2.139554287340925], + [-55.98902297239802, 2.1433753857755096], + [-55.98665739225428, 2.145790707675842], + [-55.98903094135694, 2.1495483380689175], + [-56.00307258244331, 2.167602223644529], + [-56.01410060487164, 2.1653480011276676], + [-56.03506775404405, 2.1687977072630007], + [-56.04582139501929, 2.1771277025833387], + [-56.049706571685505, 2.1843670193124924], + [-56.05504675641637, 2.184640791584459], + [-56.05626585145022, 2.1893468257206448], + [-56.046872567457804, 2.1959436417740164], + [-56.03615284815549, 2.2134869985952013], + [-56.03782525514943, 2.219638492995521], + [-56.043374198187124, 2.2212702700380498], + [-56.04288061904636, 2.2277835231359857], + [-56.05804529811682, 2.233401878919502], + [-56.06879239469106, 2.2428147592858583], + [-56.07732353347519, 2.2374831902808414], + [-56.08798424908411, 2.2498827856089036], + [-56.09571112649381, 2.246089547406415], + [-56.09601728715496, 2.2413860453320615], + [-56.10893342340732, 2.244742027883106], + [-56.12037570127651, 2.250266213480141], + [-56.12304082563811, 2.258680524796521], + [-56.13887362470345, 2.265745129756262], + [-56.1370478414243, 2.2707200697155105], + [-56.12534379748343, 2.27822106189809], + [-56.128070919098064, 2.286454449780441], + [-56.11448739583055, 2.298568231139378], + [-56.11339818190656, 2.3110503449753086], + [-56.10717943330544, 2.3182849338002205], + [-56.09376189360256, 2.3211697091794923], + [-56.09193073467856, 2.329853761324319], + [-56.095602306673484, 2.338267535800651], + [-56.088879865055276, 2.351470402123752], + [-56.09220841863944, 2.3600663163889664], + [-56.08904244428264, 2.364043027863778], + [-56.09012286621644, 2.372277201767006], + [-56.08437373827406, 2.374986271291134], + [-56.08087362292884, 2.3731750172663975], + [-56.08090337534777, 2.3690132162083084], + [-56.07387620714026, 2.3708186098055943], + [-56.061183890220065, 2.3548898525201225], + [-56.059127341824826, 2.3429460913498352], + [-56.05060172528033, 2.334981072562619], + [-56.02956747024885, 2.3324331462187415], + [-56.02965054234867, 2.3395809964934493], + [-56.0218140253628, 2.3424690552967546], + [-56.022515231190965, 2.347443354915084], + [-56.026901227025114, 2.34708633317371], + [-56.02693017044272, 2.3553160944517875], + [-56.03301262431284, 2.3641877168451777], + [-56.03996547669232, 2.366272450847928], + [-56.036595686624906, 2.3742297000498955], + [-56.02468397898102, 2.38236224177286], + [-56.02323358781658, 2.3908635189195935], + [-56.01468733897401, 2.3998127174383606], + [-56.00701248258541, 2.4015276515720076], + [-56.00145380045443, 2.412920872456528], + [-55.98939935193252, 2.417737737918948], + [-55.98701509346955, 2.4203270027553607], + [-55.98940489235993, 2.421543623621063], + [-55.98941302603869, 2.4271200456352595], + [-55.98537467221695, 2.4292806450690185], + [-55.989426354499535, 2.4362303094264033], + [-55.9920705445587, 2.438602479955094], + [-55.99501347262474, 2.435621921163052], + [-56.00318447886058, 2.4458470226293043], + [-56.008935695870676, 2.4443164410944402], + [-56.01151176054123, 2.452819915249645], + [-55.989475382834726, 2.4694520323854756], + [-55.988126003016646, 2.478671890823918], + [-55.97748737853767, 2.4896094003829083], + [-55.97790211434283, 2.4963936309868195], + [-55.989522954809026, 2.501263817974792], + [-55.992877282571676, 2.5045476346968543], + [-55.98954660029818, 2.516925680224368], + [-55.979574059285575, 2.5188280089215835], + [-55.97823633481846, 2.527329405764917], + [-55.97367607514899, 2.525789035212975], + [-55.970516278539385, 2.529313259788649], + [-55.93460105854997, 2.5334472217202784], + [-55.9241572645083, 2.530541604439133], + [-55.92187104529231, 2.5228524721113406], + [-55.924427459585196, 2.5186015830505477], + [-55.91020373835629, 2.5200370384917656], + [-55.901595474717, 2.517226038478838], + [-55.8975134997584, 2.5055542968324667], + [-55.88626377369565, 2.503463680355628], + [-55.88079326982006, 2.4888959785214753], + [-55.87382342703855, 2.4878944924007884], + [-55.8661535152752, 2.481375869564013], + [-55.8545174044143, 2.4805525576173424], + [-55.850734064060134, 2.469060622295558], + [-55.83881912741931, 2.4621760730789957], + [-55.830212012201784, 2.4590930404101483], + [-55.783877213954, 2.4565182487554273], + [-55.78137456651433, 2.4616720471429687], + [-55.766629310823944, 2.455236845641168], + [-55.761512018695036, 2.4404880866790917], + [-55.76746077912654, 2.43786977232222], + [-55.75673119309607, 2.429901330481922], + [-55.7469617401584, 2.410445321171435], + [-55.7178814950966, 2.4020061468985614], + [-55.70762241227256, 2.403120927615594], + [-55.698344088659844, 2.421543184957911], + [-55.673986552317224, 2.413604236620493], + [-55.65723576759054, 2.4206052009430596], + [-55.64218814733233, 2.4159680778894383], + [-55.631596925414065, 2.4169056255052013], + [-55.61707176947611, 2.4198401785251233], + [-55.61265564062219, 2.4261679171018233], + [-55.60429132093075, 2.4300740690179894], + [-55.59348772458079, 2.433268030999724], + [-55.58968216399677, 2.4312963942259], + [-55.57462858924392, 2.4377514612123474], + [-55.57060209875792, 2.4235163054209536], + [-55.55142995754202, 2.42944344479271], + [-55.527927133611755, 2.428620492510644], + [-55.524735291400795, 2.435845441093951], + [-55.504239305388886, 2.439342710381561], + [-55.499712053910436, 2.4432369251760013], + [-55.48223615748979, 2.4386050646530064], + [-55.42937815799346, 2.438872083713055], + [-55.38532746446386, 2.418360378667547], + [-55.34557226188456, 2.4479878451009336], + [-55.35615489421877, 2.475558233294263], + [-55.32018472057807, 2.5153679063355376], + [-55.27729136875756, 2.5123529662433075], + [-55.234736129862036, 2.5033797708096235], + [-55.20754525730112, 2.5227773027804195], + [-55.17279625354586, 2.5593423780115265], + [-55.12340405723647, 2.567623688755426], + [-55.10301761076782, 2.5256398565243647], + [-55.05623857558502, 2.5531300081985617], + [-55.00863584661607, 2.587403256803405], + [-55.00373786034502, 2.590929930033126], + [-54.95423915994347, 2.5835953274130996] + ] + ] + }, + "PB": { + "name": "Paraíba", + "coordinates": [ + [ + [-34.86404021763348, -6.980854667710376], + [-34.85832327139381, -6.984356356776372], + [-34.84776669267765, -6.982089392313028], + [-34.849682505799144, -7.0000077104505145], + [-34.85920965585374, -7.0156637329496165], + [-34.865649900544454, -7.00474828444152], + [-34.86753713236004, -6.987730235352698], + [-34.86404021763348, -6.980854667710376], + [-37.23189467119971, -6.0276434551601445], + [-37.22272169536042, -6.042196525334058], + [-37.20443223961275, -6.038200293969756], + [-37.19432954284132, -6.048081637279834], + [-37.1739661468744, -6.0480644022815415], + [-37.17560755853435, -6.054987763572966], + [-37.17059530634063, -6.083103421862624], + [-37.17268664575131, -6.098877259415048], + [-37.16701005575597, -6.1104037034334775], + [-37.17512994103713, -6.1422303905119895], + [-37.16641565941894, -6.15395645673312], + [-37.156957731544146, -6.152535920300087], + [-37.16571815849711, -6.170421999693454], + [-37.17425559816332, -6.180151019412656], + [-37.19297800230725, -6.1831272017126695], + [-37.194272888058215, -6.198294287115058], + [-37.20161475422487, -6.205750631431526], + [-37.2343055637654, -6.213325277926879], + [-37.25156129215677, -6.226505058121484], + [-37.27058620894882, -6.2517608915561205], + [-37.274760174619075, -6.281472385884316], + [-37.28688277408453, -6.282311842740388], + [-37.306491545488726, -6.27811126943586], + [-37.31855700679158, -6.279700856804834], + [-37.32822554915646, -6.303249956777855], + [-37.333991176085114, -6.308385860894024], + [-37.36338623028391, -6.322211281057706], + [-37.37736167152317, -6.3444380759192605], + [-37.377879470069445, -6.350484003275302], + [-37.377573758326804, -6.369377366661349], + [-37.38247861117374, -6.3734567272425595], + [-37.38858161190885, -6.379779100169284], + [-37.3888637036039, -6.3910244174682145], + [-37.396156565971054, -6.4011890853529305], + [-37.39770257867894, -6.416330202390269], + [-37.3866267998571, -6.426081974057185], + [-37.38152677893585, -6.436019989998765], + [-37.3813454937859, -6.436843660526188], + [-37.38127947252621, -6.437141199999711], + [-37.390984910184294, -6.452887016205261], + [-37.397264302589164, -6.5146444024341985], + [-37.41574195897626, -6.5319240705500885], + [-37.436377553821885, -6.533288552410366], + [-37.436596564689204, -6.533285915962373], + [-37.444927706147936, -6.533114701616171], + [-37.46475654751416, -6.5327075160852575], + [-37.47397398480201, -6.538012093715978], + [-37.48316024276268, -6.5504545259623495], + [-37.48061465461943, -6.559863667386826], + [-37.474846918417285, -6.564494448701162], + [-37.480150523768174, -6.594193834189373], + [-37.48041593233589, -6.6052611093961175], + [-37.47603214656817, -6.608157180143899], + [-37.47456386096499, -6.61795691405791], + [-37.477247738503515, -6.64195430545647], + [-37.46622279203907, -6.660002475375149], + [-37.47523336274661, -6.672865206336985], + [-37.47101346982151, -6.680379499939443], + [-37.48473126700814, -6.710079944889734], + [-37.4559051754516, -6.705295542399865], + [-37.42701116109641, -6.700499072049814], + [-37.4073663158045, -6.697238194431917], + [-37.40000238156197, -6.699771800232988], + [-37.342745517201855, -6.701289778717449], + [-37.31433173802918, -6.6890175184905285], + [-37.298299651369, -6.691607674408496], + [-37.283748999901356, -6.693957946408179], + [-37.290200200198804, -6.71308688772494], + [-37.279950804962006, -6.724276766697683], + [-37.26395381848624, -6.732213353350536], + [-37.269395973720556, -6.762028154675826], + [-37.273982270926695, -6.7668330061810655], + [-37.25735984631316, -6.7804384285953985], + [-37.26062538794156, -6.787401923024477], + [-37.255450091489024, -6.798511593019373], + [-37.25517696590093, -6.811103853523506], + [-37.252090783749495, -6.813143393666629], + [-37.2346324393416, -6.824678329347914], + [-37.213929628948854, -6.82486148212051], + [-37.19070533074363, -6.825408070719044], + [-37.15226097716549, -6.798406500644098], + [-37.12896969710765, -6.766019908133815], + [-37.120094214024505, -6.76733457948664], + [-37.075451405981646, -6.754177131294815], + [-37.05945765913183, -6.749468210975289], + [-37.0352949429022, -6.734209455186266], + [-37.012220382758585, -6.716266315502207], + [-37.01002072219004, -6.714555596069818], + [-37.003626130461434, -6.709655787509997], + [-36.98997607643355, -6.709193663443668], + [-36.977656804170245, -6.721898738817209], + [-36.97183300914942, -6.74068875271818], + [-36.971921925185086, -6.76552581787353], + [-36.96460133931947, -6.774098598516125], + [-36.952697946103015, -6.775196272518288], + [-36.95913297766853, -6.783345787662893], + [-36.957170543327834, -6.790521249767079], + [-36.9315573430531, -6.768618178566476], + [-36.910251903928966, -6.756972817044807], + [-36.874369391438094, -6.743226919506499], + [-36.835065679371326, -6.731114658595158], + [-36.78916655421051, -6.7725090919600035], + [-36.7727651187075, -6.787108552282187], + [-36.76950141695111, -6.838791047858702], + [-36.76077882559918, -6.838010666089882], + [-36.73023464056211, -6.836439156250449], + [-36.74502536332152, -6.879556693205217], + [-36.75610080457547, -6.896367565570165], + [-36.76003444323759, -6.914582305710923], + [-36.76658010145078, -6.935909891390094], + [-36.75583874773964, -6.954308771801334], + [-36.73741186681526, -6.972850658047479], + [-36.731107467023556, -6.976229286527986], + [-36.71859033107811, -6.982776785386965], + [-36.712476175898786, -6.980061212177532], + [-36.69973907697204, -6.948383171895146], + [-36.69470788250635, -6.934532634616336], + [-36.68725491400934, -6.926005132934261], + [-36.6549153355539, -6.928280448621185], + [-36.6374848234408, -6.93384973626885], + [-36.6165681928521, -6.934058396735695], + [-36.609831492321234, -6.936879543316898], + [-36.56797748280869, -6.8748404275956965], + [-36.5668315883743, -6.866634975970401], + [-36.57411719807413, -6.857500883982582], + [-36.56983299746069, -6.848051513644366], + [-36.56019411447551, -6.840816709648398], + [-36.543705951715694, -6.842141992576119], + [-36.52920431836107, -6.825441475222115], + [-36.51000055168916, -6.817992346846792], + [-36.505530124264794, -6.808867730980192], + [-36.50134331648023, -6.777613161325203], + [-36.504791974424315, -6.7539822056957775], + [-36.520604078992605, -6.7457256717838465], + [-36.52525250507762, -6.736762206359434], + [-36.53355646552857, -6.733530294416499], + [-36.544242749673366, -6.731247714162641], + [-36.55891861159811, -6.7091518627612095], + [-36.55738259911177, -6.70614565881762], + [-36.547454061119915, -6.695193386644886], + [-36.54178417414805, -6.666108020690114], + [-36.520781413214486, -6.6106463446181145], + [-36.52355735566819, -6.602248681366933], + [-36.52194986160732, -6.597133004785115], + [-36.513849651006346, -6.594438423260754], + [-36.50799889754787, -6.595496247703713], + [-36.50195012520307, -6.601523829717107], + [-36.473519799800464, -6.614452008188974], + [-36.46055721420126, -6.634438793061278], + [-36.44938815577556, -6.62424290144326], + [-36.43826174256437, -6.629328744457691], + [-36.43589761338949, -6.625923245837348], + [-36.44120999516717, -6.599482240995311], + [-36.44442988029211, -6.5583654611420705], + [-36.44921294467924, -6.5539600502959345], + [-36.46229512506541, -6.550376082881774], + [-36.46273949100918, -6.550296678475644], + [-36.46922993766609, -6.54914205024908], + [-36.479307260865966, -6.539915461198829], + [-36.48266985313356, -6.519584139209028], + [-36.51931221948964, -6.502596350207543], + [-36.52588585393415, -6.501207552745994], + [-36.52825005023417, -6.479330575001967], + [-36.53086436498648, -6.47187794897839], + [-36.5310107087765, -6.452118198024236], + [-36.50753139510455, -6.400163842362797], + [-36.50441712690015, -6.386498167661219], + [-36.499887887561805, -6.358212414560543], + [-36.448825908349576, -6.361998539727044], + [-36.444822582010715, -6.362223016583583], + [-36.43034637821107, -6.362302667760489], + [-36.39460230293603, -6.294023126873758], + [-36.362645954164435, -6.310027066048868], + [-36.344029237245046, -6.30258307083034], + [-36.34350542138264, -6.3022793005345354], + [-36.307633041808174, -6.281546584362793], + [-36.295021476026456, -6.292155522783582], + [-36.287088191888216, -6.3011128596525685], + [-36.279914643092674, -6.308909947146169], + [-36.27917757270286, -6.317675721748906], + [-36.278519220372026, -6.349405146784687], + [-36.296380073451516, -6.370458197777393], + [-36.29928603964273, -6.382104818245957], + [-36.295262892152486, -6.394608109785108], + [-36.28296143228254, -6.397465833191887], + [-36.2691362880065, -6.40193527092702], + [-36.26228576522786, -6.4023226293859885], + [-36.25120473566265, -6.404471065381026], + [-36.249813832829204, -6.437407195923108], + [-36.22657689753985, -6.434075732768574], + [-36.204229815978294, -6.432267268929303], + [-36.174507449004636, -6.4308121011556905], + [-36.143793548379456, -6.425372188710162], + [-36.11023124700939, -6.4292282037571065], + [-36.10751670106905, -6.4263243645420465], + [-36.103157587304594, -6.421594995847358], + [-36.09861495480538, -6.4199722478953065], + [-36.096524344356155, -6.420307250217517], + [-36.09614755800613, -6.420246363298206], + [-36.08678788773359, -6.415883894708144], + [-36.08005707848469, -6.40523726469968], + [-36.07275115843378, -6.410470182932894], + [-36.07380623808807, -6.414919485601727], + [-36.06726896557723, -6.415135377338921], + [-36.06178171739458, -6.4102933731018314], + [-36.051292272155465, -6.432250598812619], + [-36.036754687525146, -6.444312697095105], + [-36.013328894141786, -6.455088416663477], + [-36.00838129081745, -6.465167020293808], + [-36.01225295216767, -6.473980046402012], + [-36.007399917712675, -6.474569166953055], + [-36.00539237371188, -6.481100546603392], + [-35.97769153194921, -6.488952990937161], + [-35.97228499703388, -6.487585641066273], + [-35.965285922179476, -6.484406847650068], + [-35.94422829785249, -6.493053397229976], + [-35.87040595166575, -6.4886843422810365], + [-35.85313619840582, -6.487661175209592], + [-35.817364731326464, -6.4855414724224945], + [-35.782675834459454, -6.483483887330356], + [-35.77997240836235, -6.483323355623486], + [-35.77337012402355, -6.482891581275602], + [-35.75027371052444, -6.4785390550116615], + [-35.74360769811356, -6.473932528880126], + [-35.74120198835861, -6.476351561814458], + [-35.72623861016927, -6.46965939742581], + [-35.72190334733281, -6.471713247472139], + [-35.71130349944737, -6.471141755328023], + [-35.69822848804196, -6.462938973486997], + [-35.68202060478644, -6.447976254018769], + [-35.67139556122082, -6.4517716841139015], + [-35.66520523729332, -6.45056274125549], + [-35.663651552838736, -6.446877881165964], + [-35.65731146091093, -6.445830099120872], + [-35.63684710196955, -6.454436420034066], + [-35.62042694293599, -6.457372184810838], + [-35.616922432363324, -6.462680812306919], + [-35.60023659669043, -6.460658434209234], + [-35.592212833528976, -6.471677964920681], + [-35.59176050417772, -6.477206008204296], + [-35.58143366091101, -6.485844199743742], + [-35.56423934329056, -6.48751649825862], + [-35.56484429801014, -6.491827329364087], + [-35.55856242722782, -6.4929290407434], + [-35.55214893177704, -6.490871430668395], + [-35.54674332114959, -6.481914186238004], + [-35.54081166192337, -6.483016837702793], + [-35.538006763176625, -6.479952958069064], + [-35.53368607083419, -6.483079924475617], + [-35.52714585289903, -6.4793215466461005], + [-35.5259388953484, -6.47627358830346], + [-35.51400360583757, -6.4782057643390045], + [-35.501459659015765, -6.477850376494545], + [-35.49584313654508, -6.483307564605131], + [-35.492032227678735, -6.480132720029339], + [-35.47936978263237, -6.486840669251932], + [-35.464274228621235, -6.482759606026987], + [-35.46009644291671, -6.476826080699229], + [-35.446747563581134, -6.486890974134163], + [-35.44270589319817, -6.479424799001699], + [-35.44177918459229, -6.482517839215432], + [-35.442149624198755, -6.486639830503371], + [-35.424021571445905, -6.488702056423001], + [-35.40780899734389, -6.489631449560371], + [-35.40079978330538, -6.491650898170757], + [-35.3798714006024, -6.502974529234413], + [-35.364563428276064, -6.512088429051614], + [-35.34131508896053, -6.53866446847181], + [-35.33082405180722, -6.544388620437159], + [-35.30276665916328, -6.544200482124872], + [-35.27461669078118, -6.543925146320422], + [-35.273270482765874, -6.5435234947906675], + [-35.25326275029012, -6.534057748270258], + [-35.232400863083456, -6.5318239116223085], + [-35.22448203181016, -6.521680231777137], + [-35.22351312563564, -6.5162796718971325], + [-35.21828729085014, -6.518652281878051], + [-35.20736262086639, -6.5437657274512135], + [-35.19952737370378, -6.549991280701928], + [-35.194059565793644, -6.5503663484504555], + [-35.170351957327505, -6.558439755082622], + [-35.15753823094931, -6.551755425899589], + [-35.14586054447807, -6.552806762342502], + [-35.13268438725987, -6.535809426976623], + [-35.123507547478475, -6.529908140937185], + [-35.11260379319983, -6.505165095684852], + [-35.103735582270104, -6.505892809972069], + [-35.10171322702681, -6.500199030342912], + [-35.095596319381016, -6.497725381086276], + [-35.067200778327425, -6.524707592025972], + [-35.057786901009024, -6.527838586841684], + [-35.03701834650662, -6.517172806493965], + [-35.02859624265235, -6.5055701971572075], + [-35.01885670947013, -6.5031091262899645], + [-35.01117224158197, -6.5061707186079145], + [-34.99212344634085, -6.501542586645162], + [-34.979748729919, -6.490180496415688], + [-34.97163036706335, -6.485287365995728], + [-34.968838313489194, -6.490173775689415], + [-34.96755963842067, -6.492412650462526], + [-34.96555490871723, -6.60316358129495], + [-34.96232177751496, -6.640230111227881], + [-34.9563788286578, -6.662592653687922], + [-34.947240267497236, -6.681071705615841], + [-34.931213669271386, -6.6882383544480675], + [-34.93476340986244, -6.698721843139401], + [-34.934168051268294, -6.710572929225301], + [-34.932002747697396, -6.7209112747043385], + [-34.934756235814, -6.7317907129854255], + [-34.929234603760044, -6.739923732362605], + [-34.93915334272909, -6.753441726199021], + [-34.93325550835143, -6.756812705240797], + [-34.93202672024488, -6.766484668012142], + [-34.93733116916766, -6.770810348310455], + [-34.92603755356809, -6.771041321157687], + [-34.91915434547044, -6.767229149607228], + [-34.91870970444415, -6.77043327982837], + [-34.91585028334043, -6.791253699185084], + [-34.908935871954114, -6.840679639584762], + [-34.902768703130704, -6.855065520565281], + [-34.90281610382417, -6.865312050231435], + [-34.888069390994836, -6.883996128106629], + [-34.86878935489813, -6.897862021593416], + [-34.85367254824461, -6.9003966098088885], + [-34.86306769828109, -6.9159829334030585], + [-34.8633216612195, -6.917209396957802], + [-34.86708631708352, -6.936892239650175], + [-34.86145290829946, -6.952623860356647], + [-34.850837706996025, -6.964642539169695], + [-34.855149634984954, -6.972195206303421], + [-34.863060731815125, -6.976200134263392], + [-34.868901556411, -6.979427670777134], + [-34.87095579486291, -6.985486349836263], + [-34.86838417775109, -7.006959904012914], + [-34.859651490573555, -7.027159522055901], + [-34.855181515612465, -7.027559286450224], + [-34.848682625405, -7.011451380857865], + [-34.83520565885338, -6.9987896889277055], + [-34.83556663885166, -6.979321073452212], + [-34.84188159296492, -6.966594837336794], + [-34.830267880677724, -6.96666045557808], + [-34.825842642977314, -7.007044609679226], + [-34.83023806251007, -7.0309219222257715], + [-34.84090322865056, -7.0427393415489385], + [-34.84373167469234, -7.055867001481504], + [-34.838374864143134, -7.068453240119515], + [-34.83049077709934, -7.073449808188647], + [-34.83406352736613, -7.0984158046211085], + [-34.82234690015524, -7.110963444228178], + [-34.822376360591, -7.130857518236924], + [-34.81012037529176, -7.145250778137536], + [-34.79737459216383, -7.1468397115800215], + [-34.79370821037746, -7.15453889059664], + [-34.79484976928663, -7.195804198926244], + [-34.80306302646551, -7.210594394208361], + [-34.805624529893585, -7.2401391228593495], + [-34.80463579374711, -7.260743612655429], + [-34.79907091683701, -7.278039172791235], + [-34.8008405140006, -7.294427171939072], + [-34.79792776298021, -7.300644704153399], + [-34.799718439830855, -7.306467919182122], + [-34.80183631829138, -7.31588649085223], + [-34.79919561232941, -7.321406610770583], + [-34.793986770500055, -7.32959441899682], + [-34.80004104282691, -7.357695811055076], + [-34.79720823628798, -7.366951625089968], + [-34.80234846352899, -7.383518587676062], + [-34.81150706097538, -7.45950676608665], + [-34.80370213890982, -7.472133556309614], + [-34.811092035236136, -7.478312574288112], + [-34.81497995596396, -7.4867655817766705], + [-34.80981712369387, -7.5119684802334055], + [-34.82036793066025, -7.528614261532286], + [-34.826202730599256, -7.547816825494088], + [-34.832312910025486, -7.549170313350538], + [-34.838636788321914, -7.54433643797302], + [-34.84040938235785, -7.543871488224246], + [-34.85389289527532, -7.539684984107616], + [-34.85806968191304, -7.537988470528462], + [-34.87076246705793, -7.549196398411196], + [-34.87364034671011, -7.54328568903581], + [-34.88878529806281, -7.535941617695132], + [-34.895588395749, -7.545112508320539], + [-34.9020885059149, -7.5436008024454395], + [-34.899945743178385, -7.537469055929604], + [-34.91053682199134, -7.538174966307918], + [-34.911067531196615, -7.5434801429220695], + [-34.91735807837978, -7.541807505402924], + [-34.92449352074902, -7.532648343958901], + [-34.932728018349856, -7.528558416629388], + [-34.950662914176476, -7.537659959022736], + [-34.96083244285627, -7.53880319932162], + [-34.96948639847994, -7.5211027634626735], + [-34.97911101284223, -7.5097357311197905], + [-34.98426932400006, -7.507925552132865], + [-34.985202141572756, -7.500825617203788], + [-34.985183596120635, -7.50004898084258], + [-34.99022842745296, -7.488917025990014], + [-34.98425155220482, -7.469359735337134], + [-34.98546156503617, -7.462045321321389], + [-35.01167589598508, -7.4452047362438245], + [-35.02960253332106, -7.425859665867457], + [-35.048145190130306, -7.417850616300923], + [-35.07039025035661, -7.3989150980322504], + [-35.07523008323731, -7.397451296666845], + [-35.07906585774759, -7.396345344147198], + [-35.08495149581666, -7.4027134537347345], + [-35.09783623119191, -7.408366270576788], + [-35.10936324548275, -7.407278129431873], + [-35.125462836106045, -7.402640960677144], + [-35.12620500920777, -7.399973941538894], + [-35.12631338744659, -7.399942226974043], + [-35.14842898108331, -7.394572644349425], + [-35.15383747127189, -7.392496197594981], + [-35.17211158699538, -7.388079747716508], + [-35.180851663582565, -7.395941148793689], + [-35.18979183363954, -7.397302117795339], + [-35.19078963135586, -7.397930638294795], + [-35.200150565642815, -7.387644646633753], + [-35.2246216732262, -7.379314135752603], + [-35.22935900653897, -7.378409271266919], + [-35.234419878287696, -7.3782330676230945], + [-35.24611229422592, -7.374646376009576], + [-35.2802232083846, -7.387694860761314], + [-35.30656374783723, -7.407955661423745], + [-35.316200348317786, -7.405729138721995], + [-35.32414158550291, -7.411359215691687], + [-35.33506383737722, -7.40684309091955], + [-35.332934042537254, -7.415371894020183], + [-35.33356108069985, -7.422795712467924], + [-35.34266644336014, -7.422072402143481], + [-35.343873023764004, -7.422512663782005], + [-35.34819713753382, -7.422298292367134], + [-35.35239706134824, -7.422436639969526], + [-35.34864433613493, -7.4349798466589805], + [-35.351147213947996, -7.440300410137402], + [-35.36295122017129, -7.442836306821029], + [-35.36899811378259, -7.4408412166479], + [-35.37600274967699, -7.4489241230096175], + [-35.38073398728216, -7.448861320503194], + [-35.38267814095117, -7.449168684814317], + [-35.40828168849795, -7.461171043829816], + [-35.415777181632855, -7.47219419394622], + [-35.42239949395935, -7.47521466259993], + [-35.434452623325384, -7.470828706085508], + [-35.441612270141135, -7.457014207292342], + [-35.45209873095768, -7.4529922120739025], + [-35.47539953216907, -7.444938140233115], + [-35.489333668136894, -7.450197671233429], + [-35.50334446283029, -7.456118111877606], + [-35.50764701912591, -7.486533465659093], + [-35.506312829327854, -7.497386084498441], + [-35.504061910229225, -7.499798748257559], + [-35.5019671678895, -7.512549289093051], + [-35.5048736774698, -7.514080653069111], + [-35.50922608548045, -7.5175298711345295], + [-35.51079600201101, -7.5282891027865695], + [-35.51974616402504, -7.535483192489732], + [-35.51995729699873, -7.550419809185254], + [-35.52420312912834, -7.558845080302552], + [-35.52725287746928, -7.569999275504324], + [-35.53731586783586, -7.5806812462909825], + [-35.537323209276906, -7.580761597062492], + [-35.53735142781618, -7.580759292962839], + [-35.537881249979186, -7.586678907761689], + [-35.531008884223645, -7.590046624259146], + [-35.515235770166576, -7.585058731476806], + [-35.51795664312205, -7.58974344380091], + [-35.52119876649519, -7.5964436963358715], + [-35.518140992883545, -7.606468677082607], + [-35.52585254478745, -7.607601547728704], + [-35.531729619123325, -7.621703556315417], + [-35.51511210874541, -7.643284395530221], + [-35.52699472960765, -7.645161935170051], + [-35.532853500531814, -7.654854717957464], + [-35.54794370739989, -7.657374744856716], + [-35.553465497081945, -7.658683578978636], + [-35.56083176196788, -7.659907423332133], + [-35.56584518160191, -7.656697062102866], + [-35.57346572415346, -7.655138867968401], + [-35.589111976161625, -7.650838740719422], + [-35.5975296612159, -7.654372761711677], + [-35.609703050734296, -7.6538166421958875], + [-35.61586767732165, -7.65898338115447], + [-35.619550713308776, -7.664119294700909], + [-35.622536153253186, -7.670029672683384], + [-35.626888625082856, -7.675572980755434], + [-35.64531035503963, -7.692446012198943], + [-35.65560187170956, -7.69708582757202], + [-35.657609668743625, -7.6972279105611925], + [-35.658940672792454, -7.697267481148058], + [-35.658940899396725, -7.697267522283772], + [-35.658941427229855, -7.697267618102009], + [-35.67519648060926, -7.700218242845849], + [-35.67519714934055, -7.700218371185039], + [-35.6752306651438, -7.700224803350832], + [-35.67523478346142, -7.700224915119261], + [-35.6809422666994, -7.7003797801268465], + [-35.68445247755684, -7.700226030198417], + [-35.69375643534784, -7.699818354907336], + [-35.69375779275931, -7.699818295411863], + [-35.69375871454228, -7.699815030330644], + [-35.695392835628944, -7.69402636068147], + [-35.695397185851284, -7.6940109495236255], + [-35.70011561853289, -7.691893970087238], + [-35.70011618792615, -7.691893714614252], + [-35.70012260772938, -7.691898059997999], + [-35.70822505562758, -7.69738237540436], + [-35.708227667108076, -7.697384143039884], + [-35.70822913543295, -7.697387519214068], + [-35.711630836413654, -7.705209408455781], + [-35.71164931249471, -7.705251893715941], + [-35.72144310703487, -7.709498576046292], + [-35.72144454425517, -7.709499199231604], + [-35.73658814812121, -7.70963575768873], + [-35.73658918173657, -7.70963577041519], + [-35.73659227871631, -7.709637740290416], + [-35.74314292432819, -7.713804359454412], + [-35.74314543215827, -7.713805954588369], + [-35.74494007499097, -7.717890830774583], + [-35.74625558076683, -7.720885197745375], + [-35.74629821973365, -7.720980541406976], + [-35.746496600607664, -7.721424135546917], + [-35.75185211498159, -7.7236999347348885], + [-35.75185217886754, -7.723699961882736], + [-35.764888031694845, -7.724936834654479], + [-35.771105634624064, -7.730253520971209], + [-35.77385349608448, -7.732603233898983], + [-35.77474428618703, -7.733364955254777], + [-35.780619533474315, -7.738388940267359], + [-35.78062237826807, -7.738389574156279], + [-35.788714532439954, -7.74019264742595], + [-35.7899708369942, -7.7404725642334515], + [-35.78997163145912, -7.740472741247105], + [-35.79190949115606, -7.740457631048877], + [-35.797521693397925, -7.740870183115217], + [-35.797528525762324, -7.740870685319016], + [-35.79753422915972, -7.740874561121823], + [-35.80328573118041, -7.744783051644469], + [-35.806138161184776, -7.746721447157448], + [-35.806138380828095, -7.746721596418096], + [-35.8158960674429, -7.746712508937338], + [-35.81589654979118, -7.746712508482161], + [-35.81589677523381, -7.746712614669598], + [-35.820361884832025, -7.748815750739784], + [-35.82036325510151, -7.748816180051692], + [-35.82087900997522, -7.7489777683110885], + [-35.82762065447021, -7.751089920885994], + [-35.829831852682375, -7.751782673936622], + [-35.82983300763454, -7.751783035773333], + [-35.82983808366223, -7.75178022092307], + [-35.83316603692822, -7.749934703151361], + [-35.83316722894973, -7.74993430010448], + [-35.84178614046805, -7.747019889672844], + [-35.84178625367577, -7.747019851390272], + [-35.84178657919365, -7.747019915602594], + [-35.8623219736533, -7.751070399745789], + [-35.86232417184592, -7.751070833286564], + [-35.86232478087378, -7.751070953402711], + [-35.868609159941855, -7.750115219019872], + [-35.870442882113174, -7.749836319794683], + [-35.872157111264976, -7.7495755845974434], + [-35.872157798614204, -7.749575480049275], + [-35.87215881231459, -7.749576177001514], + [-35.88173648295429, -7.756161133630336], + [-35.881740481412606, -7.756163882696468], + [-35.88173990053086, -7.756172903911592], + [-35.881088079071574, -7.766291834170186], + [-35.88108253740869, -7.766377829215703], + [-35.881082411511336, -7.7663797828733], + [-35.88150617758068, -7.767662345624921], + [-35.882943515059885, -7.772012722835281], + [-35.89353643110641, -7.783709548856151], + [-35.893536925902104, -7.783709952810001], + [-35.90321065430824, -7.791607795360058], + [-35.905636462407834, -7.79246299244108], + [-35.91482769235246, -7.790119296175795], + [-35.93292056212858, -7.784460538702833], + [-35.94339585480305, -7.790023206880269], + [-35.959064585720185, -7.787298375905375], + [-35.96999747135886, -7.78949603293948], + [-35.979331170635845, -7.802027672602489], + [-35.99278752843765, -7.80050141571441], + [-35.99826090963325, -7.813792449348521], + [-36.003331106923575, -7.812869746624668], + [-36.021626568709564, -7.810275374549642], + [-36.035450911622256, -7.796227586780069], + [-36.043286554212834, -7.793698127119695], + [-36.05391065430505, -7.8013963963780855], + [-36.06903008343792, -7.781009168793606], + [-36.103410894646586, -7.779462606086304], + [-36.117315455308805, -7.7858217649161885], + [-36.126859142945975, -7.784238860929841], + [-36.14340790384039, -7.781598658839953], + [-36.18231202503324, -7.783873839197972], + [-36.20099548597627, -7.789939604863185], + [-36.20652205597211, -7.77041432247468], + [-36.216671283657234, -7.764140784488504], + [-36.246342245869876, -7.785347165703979], + [-36.254232766238474, -7.796423244050728], + [-36.25437308869067, -7.801729697419415], + [-36.23957337389735, -7.81124776301035], + [-36.24004890018546, -7.817717286235794], + [-36.253329958362684, -7.829987596714144], + [-36.263544001069654, -7.831777152931188], + [-36.27114856226777, -7.830602460412149], + [-36.294398454449016, -7.811934549664358], + [-36.309167820631, -7.806723588467651], + [-36.336920863373315, -7.809460554657846], + [-36.36075689053909, -7.80575458245316], + [-36.37348939977636, -7.812656951994403], + [-36.3964652894348, -7.80873376881606], + [-36.407459244752694, -7.814112043490125], + [-36.42408317328245, -7.815814599039181], + [-36.42999888944942, -7.827147788222828], + [-36.42909283044435, -7.8670732907643], + [-36.440419078404325, -7.87828699667388], + [-36.432757777984236, -7.880021955779687], + [-36.42989364544419, -7.885104711285193], + [-36.43441396876841, -7.896354188503195], + [-36.445790667242875, -7.908204087675742], + [-36.4437318236863, -7.91436667731398], + [-36.4463364472317, -7.916415727654952], + [-36.464135177300406, -7.915385919462071], + [-36.48017066164178, -7.924799026900151], + [-36.48815055607231, -7.915420492750947], + [-36.49942384054837, -7.920350723973105], + [-36.51289133683486, -7.914907484462226], + [-36.53650114382673, -7.9016453597200345], + [-36.55205492348485, -7.8987499997307085], + [-36.56874068162652, -7.903191633073465], + [-36.57484558498846, -7.907536558481617], + [-36.578234501306994, -7.915283533303972], + [-36.572624659509046, -7.936009988648899], + [-36.580013501397325, -7.948676204745881], + [-36.574222461690006, -7.951710137575137], + [-36.57324287622441, -7.955987697706267], + [-36.57681580139439, -7.9596813192860765], + [-36.58689548620584, -7.958691766477431], + [-36.61191030618408, -7.947933320022326], + [-36.61349782119854, -7.956552693596241], + [-36.62268754576955, -7.9695448989226225], + [-36.623206248005346, -7.982117087592407], + [-36.62788667860845, -7.986442285769005], + [-36.62823196303631, -8.014106668599934], + [-36.62788706485287, -8.055784564186643], + [-36.63424484373225, -8.059344181899325], + [-36.65382681763711, -8.070419358137757], + [-36.6576120216082, -8.075594764731699], + [-36.65786559775892, -8.07616785549257], + [-36.65730802554819, -8.082112680492259], + [-36.64866875399584, -8.082766203609479], + [-36.64727339010685, -8.092525224442657], + [-36.637020070760556, -8.093282081714582], + [-36.62788844141777, -8.102893127710402], + [-36.62864678183469, -8.11108536254381], + [-36.64035422537679, -8.11994552456114], + [-36.66787937822152, -8.124300848442218], + [-36.68906458789932, -8.137804600057692], + [-36.694499431137075, -8.143901476806795], + [-36.68708534209901, -8.155713246963828], + [-36.7086958773924, -8.156344541719132], + [-36.72284325443946, -8.150999545485506], + [-36.725815968229014, -8.156483241970008], + [-36.7158160001492, -8.167351079189498], + [-36.72243959245579, -8.16836850685915], + [-36.724006619876654, -8.17250353547761], + [-36.742643709216665, -8.173024602759241], + [-36.75017690955194, -8.175738869022169], + [-36.75354266050416, -8.191512951743741], + [-36.76160415230612, -8.196328675604196], + [-36.77540828628606, -8.19075603888662], + [-36.787871867463835, -8.18986864343289], + [-36.7948820299021, -8.189816130974842], + [-36.8058123901892, -8.195478708439705], + [-36.81254532549062, -8.205328920965604], + [-36.861736228601586, -8.222461660282454], + [-36.8792628286432, -8.235679534372226], + [-36.89598371954265, -8.240854911918273], + [-36.90829814809844, -8.253129492560204], + [-36.92303239570461, -8.26986453613081], + [-36.94498026687337, -8.275288043948368], + [-36.9477599412602, -8.27915473413213], + [-36.94734217445391, -8.291098936614375], + [-36.951422595713325, -8.296934768870672], + [-36.95495726985134, -8.299385509644033], + [-36.97805131594204, -8.297451821786726], + [-36.99118865114474, -8.30298886305719], + [-37.01537867136752, -8.292109776271387], + [-37.0206818299643, -8.28970664620927], + [-37.04014581095676, -8.266420062181579], + [-37.08123607209621, -8.266409344586462], + [-37.08065314288869, -8.241117078737256], + [-37.066564375286305, -8.233034263424944], + [-37.067451351192084, -8.230137581914748], + [-37.08092813086208, -8.221926549564339], + [-37.089925368803904, -8.231200983043477], + [-37.10046110565414, -8.233741938025142], + [-37.12294733876099, -8.209101621339906], + [-37.12613221466172, -8.19153242034429], + [-37.11869392029229, -8.18042531946131], + [-37.1182925611061, -8.175387202204387], + [-37.126484654101695, -8.173719225622035], + [-37.141225006050284, -8.177269483749551], + [-37.16025760202409, -8.170435826831179], + [-37.163453524543506, -8.158723142933834], + [-37.15103627495759, -8.150076999058166], + [-37.15864610959196, -8.138904876927544], + [-37.153260865230706, -8.127502770765737], + [-37.14420461107118, -8.125031960872215], + [-37.142590169994, -8.117980348468969], + [-37.14785020979046, -8.10012802519496], + [-37.14373945617881, -8.08800121616513], + [-37.14554168030754, -8.082225535615125], + [-37.15687754558135, -8.064568544983267], + [-37.15812466639498, -8.051260149157466], + [-37.14843107694199, -8.035149515478093], + [-37.14960352227239, -8.023774116459466], + [-37.149686241997486, -8.022850454133648], + [-37.151826865139945, -8.009450792211071], + [-37.160451147843, -7.997188936660675], + [-37.17534208245801, -7.996894470395885], + [-37.1784252333798, -7.990622106765895], + [-37.18550312345932, -7.990480007053977], + [-37.18830731503123, -7.982994942841979], + [-37.193426638300146, -7.982902826741066], + [-37.19270761660864, -7.9606343645529405], + [-37.20742606588995, -7.952236924186405], + [-37.21290136752716, -7.954951283877964], + [-37.217312008545385, -7.956427226101304], + [-37.22146905563682, -7.9624451639243], + [-37.219620737854896, -7.972827855768346], + [-37.22881475927562, -7.972630362827051], + [-37.23079325312253, -7.969433195303582], + [-37.23737333601946, -7.9733430769173195], + [-37.24701486099336, -7.969392514426493], + [-37.26356722505378, -7.968213479605443], + [-37.277434252700154, -7.972015030573616], + [-37.2956078808931, -7.964957221144235], + [-37.30336829086788, -7.970248586585062], + [-37.31702506526914, -7.968101454966078], + [-37.33981503053221, -7.9798398132461905], + [-37.341315457893266, -7.9745650451084895], + [-37.355903066354195, -7.97590135886661], + [-37.35621129084347, -7.972766721107098], + [-37.34795472452046, -7.95544784390602], + [-37.350248035425494, -7.948630022912026], + [-37.3347621174376, -7.943082738860605], + [-37.317655421690716, -7.942806292552561], + [-37.314734909863525, -7.935970364104712], + [-37.30900774109698, -7.934213462453258], + [-37.308085632573196, -7.927096940617454], + [-37.31143212990195, -7.921685302637244], + [-37.30801566201301, -7.915022768943483], + [-37.313290858367274, -7.91142204036089], + [-37.32280141356924, -7.913034230690475], + [-37.31879883300838, -7.908992994749464], + [-37.30731037877688, -7.90734412125619], + [-37.303683273327906, -7.9042121042544755], + [-37.28742596697342, -7.903912921600925], + [-37.253415415361246, -7.88027975245024], + [-37.24412434501564, -7.87388208385504], + [-37.24689951683601, -7.8682155169649945], + [-37.24495736596474, -7.861621503883704], + [-37.25040171824308, -7.853691739564041], + [-37.24718196790038, -7.846840602733071], + [-37.22212475380465, -7.842286695338903], + [-37.22818667693828, -7.821555057162485], + [-37.24049362488785, -7.82313115371993], + [-37.24368786095953, -7.819038549059613], + [-37.23020890593415, -7.813145874086991], + [-37.23059356347889, -7.806777798002583], + [-37.22302974092167, -7.804099069243639], + [-37.217447897366306, -7.806722705049693], + [-37.19798974635938, -7.798952924720855], + [-37.19157054594682, -7.791206311043943], + [-37.183067312171346, -7.790754128238418], + [-37.17577222271205, -7.796365200645934], + [-37.170700270079365, -7.800266635059851], + [-37.171398218110696, -7.795208155614689], + [-37.16828716967241, -7.79515723747777], + [-37.15984538733418, -7.793253166840899], + [-37.15198291877816, -7.779881994651651], + [-37.156813201082514, -7.776905262541502], + [-37.15706444356578, -7.7730372849739435], + [-37.13897697315626, -7.745554737616214], + [-37.15063066859536, -7.72906942009854], + [-37.15052964420668, -7.715969562292163], + [-37.154574220322885, -7.706441008733419], + [-37.161072025787384, -7.698004265397384], + [-37.17409023818713, -7.684332361373339], + [-37.18014906488982, -7.667142786724128], + [-37.195163239470155, -7.652100262795269], + [-37.19735381111362, -7.645472708667998], + [-37.19670489641858, -7.629619297512212], + [-37.184135491427035, -7.615853263685091], + [-37.18059145910034, -7.602179510671052], + [-37.18055385705458, -7.602031438718723], + [-37.173259707144865, -7.58793517486142], + [-37.15580176446284, -7.56791867531447], + [-37.133765155543664, -7.550082607945158], + [-37.12155643442835, -7.536157001160539], + [-37.106137295648814, -7.531165423510046], + [-37.08622877428639, -7.517831987677495], + [-37.06834096482152, -7.517147024051365], + [-37.05385552421074, -7.504606918387739], + [-37.04319071892953, -7.50395237340266], + [-37.03044875715794, -7.498476122589219], + [-37.02619453152016, -7.497363088210054], + [-37.02602132955796, -7.497250013928465], + [-37.02523577344276, -7.496736184192778], + [-37.0105947561176, -7.489595432133943], + [-37.00328640106905, -7.496426835490492], + [-36.984258848537536, -7.482300133401991], + [-36.98545643204123, -7.4756404651413195], + [-36.995486878860056, -7.472627782348832], + [-36.99409594489467, -7.464749317907915], + [-36.997343590078415, -7.459431620845778], + [-37.0107640719911, -7.453674069096128], + [-37.013210354755884, -7.445022362375907], + [-37.02125799591175, -7.440235587630478], + [-37.02283446114714, -7.436065937625276], + [-37.02364872710849, -7.433906165046336], + [-37.01454128012083, -7.430406870763288], + [-37.01759776459453, -7.424611887569771], + [-37.02601110634185, -7.4225015905197305], + [-37.013393683965255, -7.404062627347566], + [-37.01373546918783, -7.403831457576908], + [-37.02795771380788, -7.385903385285934], + [-37.05002019829115, -7.37762742769412], + [-37.053218466383136, -7.379537284340196], + [-37.06946459145404, -7.382422888198381], + [-37.07298207178005, -7.3683144436328165], + [-37.08143070638564, -7.363573363356835], + [-37.08565540646408, -7.358295456959581], + [-37.09737949938821, -7.354007607868987], + [-37.101896492521824, -7.356670149749291], + [-37.106737085435185, -7.353929446584315], + [-37.12159647910195, -7.350953401430321], + [-37.12801077167469, -7.344041055979495], + [-37.1353476107593, -7.346703606547617], + [-37.140369801440045, -7.34216459133542], + [-37.144976266372154, -7.335084572057424], + [-37.15709981437744, -7.33825297386489], + [-37.16537367755316, -7.336634458898301], + [-37.16814300617209, -7.332001195842677], + [-37.16856315871326, -7.319990831205303], + [-37.176958073651086, -7.309591837730038], + [-37.19670521811095, -7.294708550799507], + [-37.21420745048834, -7.291341007119715], + [-37.23287620653036, -7.275128040959665], + [-37.2336438893538, -7.274435714566437], + [-37.26085083433792, -7.274199577080179], + [-37.27779531252636, -7.275224587858174], + [-37.28836434700193, -7.2883282494750885], + [-37.307844038945866, -7.28928101000792], + [-37.31399263491119, -7.289399842934558], + [-37.33262544409977, -7.289771204284898], + [-37.34607053491621, -7.309005326297069], + [-37.35731453799731, -7.3231536992240205], + [-37.34954208620416, -7.337067508215054], + [-37.385744739596745, -7.3567327296548894], + [-37.40817093704673, -7.358143129101302], + [-37.41268197683098, -7.36191245018308], + [-37.42554314275767, -7.352955119234779], + [-37.4318526971324, -7.356697101867647], + [-37.44478620654527, -7.360716139256376], + [-37.465953612513225, -7.358082476784509], + [-37.478781526113465, -7.360024869703904], + [-37.48592505088459, -7.362106479416485], + [-37.49806991736167, -7.366881399992404], + [-37.48698920405911, -7.395093133585479], + [-37.49470363751122, -7.399060488759231], + [-37.497012135255495, -7.403502225157047], + [-37.49956607590939, -7.407402622864728], + [-37.50572478734427, -7.419198488853055], + [-37.51367000036747, -7.424765673928348], + [-37.514206622315456, -7.433072784068704], + [-37.52173656214597, -7.439516735680084], + [-37.52743438088004, -7.4484190608560725], + [-37.52862097645708, -7.460106376090761], + [-37.5279887999039, -7.465348977244263], + [-37.53309709289962, -7.47299148034851], + [-37.5525674156527, -7.479653238667013], + [-37.57181386570561, -7.48915140202957], + [-37.58675950957506, -7.49914666335171], + [-37.60980054597442, -7.508069750588832], + [-37.611403114465716, -7.518606322923795], + [-37.61997432045523, -7.5259175309183295], + [-37.63040787316093, -7.532549032306383], + [-37.644571547644716, -7.529916244039967], + [-37.649857344600086, -7.530348638238021], + [-37.65955935565776, -7.523175294002792], + [-37.67666436834088, -7.535651737775313], + [-37.68218035521807, -7.5484138973444415], + [-37.706535951133056, -7.550621648120675], + [-37.71011815049427, -7.559563686756295], + [-37.70660130737985, -7.569504576338923], + [-37.711040743488624, -7.573790848316327], + [-37.72106077394973, -7.581930673102668], + [-37.72876147435623, -7.579767881915166], + [-37.7349795514074, -7.597252707381988], + [-37.74148212889541, -7.597570472981428], + [-37.744130218271025, -7.604048721326394], + [-37.745735614525024, -7.609368697861921], + [-37.75587683185385, -7.619559388140917], + [-37.75800777126984, -7.634157418077689], + [-37.764616557146226, -7.631419909026167], + [-37.767270971527175, -7.657516894447803], + [-37.76735970321793, -7.656587143664197], + [-37.76801278367676, -7.65663256561013], + [-37.76818320121125, -7.655934661711646], + [-37.76742818141858, -7.655875104976935], + [-37.76811449678679, -7.648711241856806], + [-37.771947090750956, -7.648273805773165], + [-37.77615247433786, -7.646666149513994], + [-37.776389319488814, -7.634749368884927], + [-37.78098939102874, -7.627081444685127], + [-37.79083660559346, -7.625981256675188], + [-37.80799944617491, -7.643997538687778], + [-37.8439386753933, -7.647209692153611], + [-37.857187458235, -7.652006291314354], + [-37.869678560510074, -7.667595314870342], + [-37.88062705574033, -7.683686551679255], + [-37.897382733030724, -7.6908637846145105], + [-37.903341338745285, -7.698054586287935], + [-37.903313790791394, -7.698086683260228], + [-37.903355383611476, -7.698136954830904], + [-37.89232639439272, -7.710974628795036], + [-37.89436372068668, -7.713662658987717], + [-37.913095947195615, -7.709509321759505], + [-37.917303583889314, -7.711766538556593], + [-37.91994727164829, -7.713184250362467], + [-37.92099495995584, -7.713746457514962], + [-37.923278923937545, -7.716137090276248], + [-37.92237971875388, -7.723674781526645], + [-37.94313021671683, -7.7410731103024775], + [-37.94470640889037, -7.746455785004278], + [-37.94757386778814, -7.756258967198716], + [-37.958456105319755, -7.766021001518301], + [-37.96483063085058, -7.772723337918142], + [-37.966703494079105, -7.7743690522722], + [-37.97135623383456, -7.77759683292562], + [-37.982996853014654, -7.772684819530272], + [-37.99029644890332, -7.778913446928978], + [-38.00074832977101, -7.778997734371995], + [-38.00548177837357, -7.77779905612935], + [-38.008174715682365, -7.766906242887378], + [-38.01249170345126, -7.765842838808975], + [-38.029943278197905, -7.749872358693734], + [-38.03961027535612, -7.748156162661287], + [-38.06950686100802, -7.7723613764429835], + [-38.07524350360113, -7.789162387115555], + [-38.073510885931974, -7.793555955419361], + [-38.07576969467527, -7.805420567140675], + [-38.06633338389183, -7.81770329535296], + [-38.069404218568856, -7.82615393583975], + [-38.077097211686954, -7.830616503109664], + [-38.08058056422005, -7.829218807348684], + [-38.08336706844582, -7.828099895707014], + [-38.09726827262206, -7.827363917719835], + [-38.12008388798955, -7.819010946315049], + [-38.12418140097951, -7.813017825363955], + [-38.12246453974455, -7.8074714204711855], + [-38.131185637844226, -7.803904822313394], + [-38.131453752297546, -7.795795511544119], + [-38.143791117303984, -7.783442313145997], + [-38.162431542054456, -7.779998191575388], + [-38.16270038390606, -7.779990425139474], + [-38.18401764519705, -7.795586043700838], + [-38.205890435236675, -7.807724081166211], + [-38.22195066088062, -7.820425057171847], + [-38.235492180640136, -7.8259951642104335], + [-38.23859761474723, -7.830762954531962], + [-38.25706461248371, -7.83110112826457], + [-38.26497116713334, -7.828013344210584], + [-38.276254376154256, -7.833856610546481], + [-38.286819842157264, -7.830261046436621], + [-38.297773179661206, -7.8139837960894765], + [-38.302601320543786, -7.7884357211842765], + [-38.2955634140394, -7.7796248654301845], + [-38.3012789786426, -7.768740853465365], + [-38.29984385356437, -7.763232578577551], + [-38.31678639531451, -7.764644450518841], + [-38.302183042117086, -7.745241328968726], + [-38.31090440591314, -7.739114790851216], + [-38.31590958510936, -7.728510014087405], + [-38.31205603841519, -7.7163507262586455], + [-38.31728431174833, -7.71556193981054], + [-38.31623144479728, -7.709187786334629], + [-38.32080045793576, -7.697995241897124], + [-38.326713013983166, -7.693741647384937], + [-38.33038618136035, -7.696184202414116], + [-38.33722484159722, -7.69361376782921], + [-38.34471883838933, -7.695033848699052], + [-38.3575231042708, -7.6771990703985615], + [-38.36164372404638, -7.686340861086707], + [-38.37010124600271, -7.692686629660332], + [-38.37096331587975, -7.698452331214859], + [-38.38228045872585, -7.707512276612102], + [-38.403957072285884, -7.714479562384326], + [-38.40122897431498, -7.7205553512747604], + [-38.40953401105462, -7.730530315901704], + [-38.412512932421556, -7.730144710287611], + [-38.42765155342066, -7.7300736837868325], + [-38.434242965068094, -7.720488349709206], + [-38.45009884602064, -7.71740911829279], + [-38.45711023393356, -7.718144002718535], + [-38.46400252188479, -7.7309282688544405], + [-38.4905475173432, -7.734698555644788], + [-38.49582594445472, -7.738845400493104], + [-38.496602096787186, -7.7500688349655125], + [-38.516630918281564, -7.749366211052912], + [-38.529708895451364, -7.755145309351944], + [-38.54621640638703, -7.749487363095375], + [-38.560156863430855, -7.757129054463719], + [-38.57213043855967, -7.7515116638609065], + [-38.57485302363178, -7.754375043780819], + [-38.579056738328994, -7.746635963597703], + [-38.58998404784693, -7.755719299983436], + [-38.59365325112885, -7.754386081499282], + [-38.597763685386084, -7.742072292579933], + [-38.607602022878176, -7.739515863389043], + [-38.60799445629492, -7.725984807201888], + [-38.616742822051485, -7.713527602730181], + [-38.625355069739626, -7.708355522574519], + [-38.62646367635698, -7.69476263389552], + [-38.6413435391651, -7.68650076949784], + [-38.64210902049771, -7.677673541854547], + [-38.651438510227344, -7.6771190268019405], + [-38.65073546240669, -7.668600787348808], + [-38.6586918304411, -7.662349263907062], + [-38.663622265195436, -7.657559942620886], + [-38.6699648511759, -7.660520082341292], + [-38.67280906139973, -7.65883255782911], + [-38.67899804723725, -7.646595019573955], + [-38.68676669919759, -7.635076761514302], + [-38.69601841112339, -7.63283971532878], + [-38.705432897773335, -7.622080481399848], + [-38.71513784723023, -7.6219563079311925], + [-38.717619884984785, -7.626925007489835], + [-38.71500000455863, -7.616309868829082], + [-38.71832494015168, -7.609392575055289], + [-38.71304827754253, -7.608390430275371], + [-38.71104976326033, -7.586671004096852], + [-38.70263939436619, -7.581058499174941], + [-38.68884282338014, -7.582223093906597], + [-38.67987038084632, -7.574760164851075], + [-38.67449351472228, -7.569368445125214], + [-38.655350986496146, -7.565580157808276], + [-38.65915677959523, -7.560657291716011], + [-38.65359803841305, -7.554605548179896], + [-38.65651352488873, -7.546230688969028], + [-38.65273667820526, -7.539712868206304], + [-38.65151808755656, -7.527840174150715], + [-38.65468363435274, -7.522259106751572], + [-38.64650122249159, -7.51757802200715], + [-38.64602159870696, -7.5019632916658265], + [-38.63092988247329, -7.487367168335127], + [-38.635849274835195, -7.47505510100773], + [-38.641716614229836, -7.465004845749612], + [-38.646198456906404, -7.463376436217404], + [-38.64494458996614, -7.460056217406641], + [-38.60335319701437, -7.457629385727683], + [-38.602870239164254, -7.453595733094913], + [-38.60582922411345, -7.444610232983044], + [-38.59610049912106, -7.438667852229105], + [-38.59504437429366, -7.433974880836536], + [-38.58427685425254, -7.433215394897827], + [-38.58452365915772, -7.416388553258667], + [-38.596151424077064, -7.414793090556448], + [-38.59041022852126, -7.401219298287517], + [-38.58362780465141, -7.398241354337767], + [-38.57650765924825, -7.376646563406124], + [-38.561209817081185, -7.35830178868192], + [-38.552237543428774, -7.340638132728933], + [-38.54940873067211, -7.33503537181729], + [-38.54910918885004, -7.325859236665529], + [-38.55038139220021, -7.3155020763457275], + [-38.54013662379262, -7.306255591094127], + [-38.53461315389025, -7.2938308996122565], + [-38.54265740652816, -7.278429274906118], + [-38.54217076551913, -7.2659395530900825], + [-38.55212605205273, -7.263598143523651], + [-38.55447114815497, -7.251895172481276], + [-38.55198740589201, -7.2435165016688785], + [-38.55695785402061, -7.23971979307199], + [-38.58310958687322, -7.248420645328721], + [-38.59513904490535, -7.246566901986999], + [-38.60067034077485, -7.234804661593963], + [-38.60545058300126, -7.236912946398182], + [-38.61539392396645, -7.230223798065072], + [-38.61944249242139, -7.220759785658186], + [-38.62307713680791, -7.207708238122634], + [-38.619820629334114, -7.197093701087059], + [-38.624828632007066, -7.191359568356254], + [-38.636576828325296, -7.1937930893702875], + [-38.6442294107692, -7.183797503736455], + [-38.67343777029402, -7.185329957355847], + [-38.687855591817026, -7.190199151888347], + [-38.6830411793565, -7.176018627733876], + [-38.67715545957639, -7.170974344733734], + [-38.67674427252875, -7.167610238963026], + [-38.685219356728645, -7.161382039458181], + [-38.67531866111592, -7.155759967461075], + [-38.67496071823515, -7.143847158792375], + [-38.677440910586, -7.130973360302038], + [-38.66856915075944, -7.117360564661168], + [-38.66218006740334, -7.110217302905379], + [-38.65717983283743, -7.09430432411969], + [-38.65982647993493, -7.085582131523042], + [-38.666713454575984, -7.081720500977715], + [-38.67147710953841, -7.070572362177849], + [-38.67726762874917, -7.067140817633463], + [-38.66987466370211, -7.0477430377707355], + [-38.67304131166015, -7.046268912436959], + [-38.689826950286815, -7.040267842633532], + [-38.69146666881241, -7.029178049911621], + [-38.7135424825062, -7.018121624124825], + [-38.71713935080453, -7.016979899918168], + [-38.73060906062755, -7.012066319127714], + [-38.75101715047784, -6.997349727829345], + [-38.7587109239631, -6.998499503125259], + [-38.765024289271196, -6.993933414720594], + [-38.76099011206181, -6.990092614552093], + [-38.75191359147981, -6.9886211141936], + [-38.7429035929468, -6.975041920695564], + [-38.748102072102206, -6.966743121239353], + [-38.74699082581099, -6.960618576534829], + [-38.75732669324651, -6.9582152345438955], + [-38.76537476779616, -6.947976150748879], + [-38.75574257562775, -6.940167413103901], + [-38.75751654821186, -6.9346558701706495], + [-38.76243457650035, -6.9265828506645395], + [-38.75879233177834, -6.925317209872456], + [-38.75895240386469, -6.916665020230753], + [-38.76523793913105, -6.910952648418654], + [-38.75630443713072, -6.903630346075052], + [-38.73031393209971, -6.896852280214287], + [-38.73155774709639, -6.88931044584714], + [-38.72868314744025, -6.887414502742695], + [-38.714038234085, -6.886185514354414], + [-38.71418642425991, -6.876822554261785], + [-38.709156222712224, -6.874464499757341], + [-38.70043538326129, -6.876641194243732], + [-38.68671661138048, -6.865830679708887], + [-38.678544662665395, -6.864104632203311], + [-38.67544237858812, -6.86186838388991], + [-38.67722667347312, -6.854366879404696], + [-38.67230008359492, -6.847016897885835], + [-38.6703604615812, -6.843409239838328], + [-38.67797047162704, -6.834552668634049], + [-38.67559525183254, -6.830251087683102], + [-38.66181373704503, -6.82371671457552], + [-38.65789914806728, -6.816599782742967], + [-38.65564551577433, -6.814205117864535], + [-38.6547942646534, -6.813301043525763], + [-38.64846415385042, -6.807425159192117], + [-38.6354853470985, -6.804659874656391], + [-38.64235122830621, -6.791719231678231], + [-38.64015834785859, -6.789235061966141], + [-38.629495387466015, -6.789941217430309], + [-38.61743843451737, -6.7940177897173015], + [-38.61395355527882, -6.782477742361902], + [-38.62905042648326, -6.777748554538954], + [-38.640293681836084, -6.764029136707529], + [-38.652705891990195, -6.75980360552799], + [-38.65242875248156, -6.757091462394026], + [-38.64999769109015, -6.752275788651493], + [-38.6575594977134, -6.740799599063979], + [-38.65600192677525, -6.7302833309165955], + [-38.66634475522737, -6.719848518726559], + [-38.67289849285451, -6.706760304779442], + [-38.670062086985574, -6.702587894181608], + [-38.673175991361916, -6.697260846726725], + [-38.66448815433907, -6.680229358518517], + [-38.66060897024039, -6.678841647198992], + [-38.6623860602355, -6.674357631125023], + [-38.651990337300205, -6.673222331761758], + [-38.64724224630324, -6.664035909806634], + [-38.64699096442278, -6.6542474479540275], + [-38.6571068555783, -6.6423294566096756], + [-38.65528894621061, -6.630518743356087], + [-38.64915495184023, -6.627625842261347], + [-38.64668490542317, -6.616020730438165], + [-38.62918606222927, -6.60462256723121], + [-38.632664647217425, -6.590576121260154], + [-38.642879056160744, -6.58121789544185], + [-38.63310694104436, -6.569250651897366], + [-38.63265745649342, -6.562477666531553], + [-38.62568692448038, -6.558023818343931], + [-38.62663169974624, -6.552994621298353], + [-38.607110363751374, -6.529555369280514], + [-38.610545790908155, -6.5323344328957615], + [-38.616137296655914, -6.528185752894668], + [-38.61231399758473, -6.51323192124559], + [-38.59499833335346, -6.500483026716652], + [-38.570436092748835, -6.470236071170924], + [-38.56984253821579, -6.454916910282891], + [-38.565681840310255, -6.451544446437149], + [-38.55643088885584, -6.447683677569891], + [-38.555471326650995, -6.4375509096162045], + [-38.554291446935075, -6.432804232694586], + [-38.524542919033095, -6.407124326143539], + [-38.51793557762449, -6.408773122435448], + [-38.526340060638724, -6.3947685732591015], + [-38.53085935388994, -6.39316772642666], + [-38.54274161495487, -6.402021455061175], + [-38.55154859819389, -6.398208524879152], + [-38.57343988695365, -6.403840535811477], + [-38.57775091989472, -6.402924676125047], + [-38.58238321580094, -6.400351941848341], + [-38.58157249410556, -6.396773571178359], + [-38.589339729322035, -6.395620424405231], + [-38.59415385257602, -6.396901940692805], + [-38.602073110520834, -6.389663425186792], + [-38.59496928651559, -6.386611315227962], + [-38.592491266135745, -6.37828741932414], + [-38.58298927962751, -6.374085436224814], + [-38.573133146357726, -6.374958846608629], + [-38.57610126668977, -6.36273337024313], + [-38.56737927069412, -6.361566943280665], + [-38.56528616088688, -6.356734848420177], + [-38.56333421582126, -6.356073534845873], + [-38.54509115448378, -6.353799031428278], + [-38.54987563138805, -6.350744044068515], + [-38.54503933288108, -6.344630312894592], + [-38.534133509876895, -6.3419678580005305], + [-38.51662555270853, -6.346276139592865], + [-38.50544749602315, -6.356550836150159], + [-38.49420179147486, -6.344859132545746], + [-38.48494135388928, -6.3401768896653135], + [-38.48125539167407, -6.337414484457033], + [-38.47501072957701, -6.333287445822457], + [-38.45841302310565, -6.330255569327455], + [-38.47606599831624, -6.345769226004067], + [-38.4905601530888, -6.366117164582381], + [-38.48310905499759, -6.381154837455612], + [-38.48626052694847, -6.398793263998966], + [-38.465835654605385, -6.396451545254183], + [-38.45209022016916, -6.392530986346204], + [-38.44886417684188, -6.394616913514978], + [-38.44798541131158, -6.403394200852079], + [-38.44163764394957, -6.40474374213334], + [-38.43837066108941, -6.409916499710316], + [-38.426067876208755, -6.414165520011093], + [-38.406059445998046, -6.41023268438388], + [-38.40306246137677, -6.40982545711617], + [-38.40176629686439, -6.409600726633099], + [-38.39157597974537, -6.416249375178577], + [-38.388213030783206, -6.4189913448774245], + [-38.38299533059634, -6.424795925728617], + [-38.381964784024525, -6.432099391651688], + [-38.37514636949011, -6.437420900358645], + [-38.37368995036339, -6.455822615293382], + [-38.363817456901934, -6.4536836393974895], + [-38.36100263028295, -6.462029189991975], + [-38.35524571779098, -6.457263027742597], + [-38.34382883790419, -6.456693563284084], + [-38.33935185363317, -6.460167751944623], + [-38.33281766633911, -6.458231984335477], + [-38.32846461935349, -6.460697753831989], + [-38.31828303186986, -6.473816917602962], + [-38.31601143323605, -6.482461695528602], + [-38.31283731008942, -6.488320632426157], + [-38.31252173021958, -6.4881751549284905], + [-38.31203519013072, -6.488914205366292], + [-38.30894184677664, -6.489568466018413], + [-38.29753826387645, -6.487248227414377], + [-38.29405590626733, -6.489443126752925], + [-38.28874720216984, -6.505658958583015], + [-38.26987376533551, -6.494482482734974], + [-38.26144102700497, -6.485187443177761], + [-38.256558636740884, -6.483251225393259], + [-38.25291547984415, -6.485464236582653], + [-38.23925612014477, -6.480339162597249], + [-38.22904951796549, -6.483388478248852], + [-38.22714719989292, -6.483989720849515], + [-38.20057947302172, -6.488321391116987], + [-38.19229201587299, -6.49837082136879], + [-38.173215302958404, -6.499874364877605], + [-38.16120088260076, -6.499155686075638], + [-38.14791026077345, -6.491529725304423], + [-38.135545721624446, -6.518518166887557], + [-38.12024013445846, -6.522422871941748], + [-38.117085632287804, -6.522710599763358], + [-38.09801588676673, -6.5095329715017725], + [-38.09542599090514, -6.493628512343231], + [-38.08304588698004, -6.48592998963506], + [-38.07089448929294, -6.463969200485765], + [-38.066646010128345, -6.460481716106847], + [-38.06196469471157, -6.459490306240111], + [-38.059271345389945, -6.453172366426899], + [-38.05398335847818, -6.453726524226006], + [-38.05148058442981, -6.442448223444736], + [-38.046376236949456, -6.440973135475456], + [-38.043426283653794, -6.443391411443058], + [-38.04395180105201, -6.4520181630510365], + [-38.03628499674394, -6.460034402906746], + [-38.04110237229452, -6.47121672814941], + [-38.03420073418986, -6.4758895133108885], + [-38.026787413631816, -6.474799229779612], + [-38.02184403218512, -6.468498326261445], + [-38.01297546168227, -6.468896210142741], + [-38.01999767803189, -6.44604773432008], + [-38.00825392318875, -6.4322352732524255], + [-38.014421813268854, -6.430435142659509], + [-38.0137245677511, -6.427470226130016], + [-37.98904630056275, -6.428678951350604], + [-37.98028812435013, -6.42712785787735], + [-37.9791132198012, -6.426736267257662], + [-37.96870741698711, -6.4187864566057575], + [-37.96805155879349, -6.405165701631651], + [-37.9554248331335, -6.398250185370191], + [-37.95523480895313, -6.408104788185508], + [-37.94546668163804, -6.422663258732818], + [-37.9281462263197, -6.421636159878621], + [-37.9194757611333, -6.411689595116183], + [-37.901561569744516, -6.39972219832636], + [-37.89028588867008, -6.400178610092665], + [-37.8862791186014, -6.397044148124953], + [-37.884291587094225, -6.391719667576533], + [-37.88854072290321, -6.387252513933757], + [-37.888254262060386, -6.364413237843619], + [-37.85985725086015, -6.374921100585555], + [-37.854272017429395, -6.366360321915579], + [-37.84067375467774, -6.361383971322057], + [-37.84414660285113, -6.354400808950296], + [-37.83428991056294, -6.342429445547725], + [-37.843225164473395, -6.333132224958584], + [-37.83376158000479, -6.321822889263707], + [-37.82270316205846, -6.317823359553222], + [-37.814785034998195, -6.3151874860086785], + [-37.81456605277262, -6.312356409806082], + [-37.82406012934986, -6.306078028241082], + [-37.81045111445383, -6.2917025047015045], + [-37.79454823705455, -6.289077510265885], + [-37.77172886867283, -6.2909926461091406], + [-37.75769294253353, -6.290816851222763], + [-37.75782715527555, -6.28782572785871], + [-37.771452290166145, -6.27310990168047], + [-37.770508239583656, -6.265680972373256], + [-37.760546797375596, -6.25413553786908], + [-37.77664356694593, -6.245919846991747], + [-37.76309678184159, -6.24118058997046], + [-37.762802665217706, -6.2353824937481805], + [-37.77564687178654, -6.231388581204973], + [-37.763876246048945, -6.218944768273906], + [-37.75311005413576, -6.214475520325569], + [-37.753565155472465, -6.198514414823608], + [-37.742404493051055, -6.189020882434679], + [-37.71643935704207, -6.1792821252539945], + [-37.70902746043807, -6.177049684655617], + [-37.69821362087509, -6.186648768478396], + [-37.68018971412446, -6.1891933552372125], + [-37.68012266344586, -6.189198330931091], + [-37.646743162875865, -6.189438093657443], + [-37.638506894361015, -6.179882868300185], + [-37.616280582320044, -6.1762435093997246], + [-37.599944795668094, -6.1740570778923525], + [-37.585168936500615, -6.16287195875839], + [-37.573802585717694, -6.158820099578187], + [-37.573753089931046, -6.158670013099337], + [-37.569652241976314, -6.155485060070546], + [-37.560684506389606, -6.164578128372986], + [-37.54002692836472, -6.16597664909273], + [-37.53638279272628, -6.152882431446697], + [-37.521908978363896, -6.151837610682054], + [-37.50292300820308, -6.1521870532293335], + [-37.503428556267174, -6.144443260398389], + [-37.48940146135326, -6.14448452207544], + [-37.483023487523624, -6.151727637006366], + [-37.47412836546641, -6.148785159784046], + [-37.458979986833405, -6.145049001327329], + [-37.45394511834868, -6.120120685834624], + [-37.445725752701854, -6.112249365675974], + [-37.42598687469266, -6.10904424805906], + [-37.407842687587014, -6.11282943119222], + [-37.392216662263, -6.108220569132455], + [-37.382371982396286, -6.085601302359035], + [-37.37881619213539, -6.0851801714992], + [-37.37159782824553, -6.082826519224495], + [-37.35446756271807, -6.086533556811846], + [-37.335813049101716, -6.067507326910602], + [-37.32885702814396, -6.064752234564608], + [-37.30923348261719, -6.057808103689429], + [-37.300628060772986, -6.05030801031659], + [-37.29560577145243, -6.050143299687827], + [-37.28695057791346, -6.058037593611901], + [-37.272511421611306, -6.055750665483432], + [-37.26361332921797, -6.046403852934824], + [-37.25650820591933, -6.028519500303303], + [-37.25064799809903, -6.025960385009562], + [-37.23189467119971, -6.0276434551601445] + ] + ] + }, + "PR": { + "name": "Paraná", + "coordinates": [ + [ + [-48.09764510651287, -25.31011130000609], + [-48.09766833217079, -25.310202309440637], + [-48.09780925443606, -25.31075450910386], + [-48.09782246467133, -25.31076104147314], + [-48.09780891209528, -25.31081562337938], + [-48.097816228135414, -25.31090013523502], + [-48.0978432755254, -25.310973125061068], + [-48.09799752766358, -25.311231703358242], + [-48.098091614812525, -25.311472962541337], + [-48.098151041859296, -25.311625345571212], + [-48.09822722769146, -25.31178451226392], + [-48.098475015368074, -25.312144080576285], + [-48.0984738045759, -25.312193579969755], + [-48.09873660438927, -25.31258414442775], + [-48.098967739858786, -25.312857500479193], + [-48.09950048302154, -25.313338105165453], + [-48.09988414134819, -25.313709749276864], + [-48.10058067237718, -25.314452647546204], + [-48.100675471468556, -25.31455375635543], + [-48.100932144683654, -25.314768058769364], + [-48.10173642908653, -25.315352174297225], + [-48.10202251238024, -25.31557806214772], + [-48.10234322280737, -25.31585064957438], + [-48.10286346977636, -25.316244283954827], + [-48.10335048739811, -25.31653683377774], + [-48.10389513302973, -25.316798211855687], + [-48.10422535882768, -25.31704671005944], + [-48.10444379794016, -25.31724121613131], + [-48.104884014513516, -25.317727835011308], + [-48.10515105478988, -25.317999362078258], + [-48.10576573864476, -25.318430214932196], + [-48.10604853826626, -25.31866956632165], + [-48.106518661576914, -25.319151444932288], + [-48.107006429572074, -25.31975566423138], + [-48.10728049917963, -25.319986630876787], + [-48.10813948335514, -25.32087010109408], + [-48.10814084470707, -25.320871300868966], + [-48.10861402262471, -25.32130053755409], + [-48.10923815550806, -25.321823781684373], + [-48.10969962327747, -25.322186283516785], + [-48.10995577745161, -25.322419601231882], + [-48.11024626935191, -25.322707822592257], + [-48.11065740344188, -25.323166695920023], + [-48.111298844076366, -25.32382309558572], + [-48.11146042839902, -25.323975441358858], + [-48.11179330641875, -25.32428928554423], + [-48.11225126532536, -25.324670660642408], + [-48.11314691478815, -25.325522250631977], + [-48.113189932936685, -25.325567885990335], + [-48.1133035096664, -25.32568837256604], + [-48.11381729336861, -25.32632836422156], + [-48.114156477717195, -25.326690803069695], + [-48.114555814298456, -25.32703294450133], + [-48.115191212994915, -25.327497916163832], + [-48.11623180774911, -25.32825947937868], + [-48.11685415787017, -25.328739348371748], + [-48.117426809257495, -25.329594606604093], + [-48.11798009902141, -25.33072253115486], + [-48.11835399307201, -25.33112400089351], + [-48.118736087353604, -25.331534272159836], + [-48.119723123050406, -25.332518004250705], + [-48.12059920165535, -25.33308953816767], + [-48.121623898641296, -25.333825672333827], + [-48.12205730088582, -25.334307692995775], + [-48.12275746719049, -25.334903499586467], + [-48.123022804204986, -25.335129285862415], + [-48.124165644898625, -25.336199535148342], + [-48.12571176087237, -25.337477160260534], + [-48.12765536693086, -25.339243759048387], + [-48.127665150286994, -25.339252651235405], + [-48.130291392578535, -25.341639601775626], + [-48.1302957908179, -25.341643599155503], + [-48.13066208659241, -25.342081326805868], + [-48.13116702039756, -25.342581627067002], + [-48.13177983645421, -25.343188812282346], + [-48.13262082017241, -25.34398653401075], + [-48.13292355974777, -25.344273696502334], + [-48.13447701976101, -25.345770801773426], + [-48.135607270314246, -25.346890055729016], + [-48.13586672801716, -25.34711632945279], + [-48.136022546124956, -25.347252218216642], + [-48.13641287323367, -25.34771243019742], + [-48.13651295090462, -25.34777636868222], + [-48.13660124562529, -25.347834663776514], + [-48.13670430327513, -25.347898569909486], + [-48.13681033656165, -25.347962624092997], + [-48.13690455138777, -25.34801832718235], + [-48.13698108945158, -25.348065655404856], + [-48.13705186565147, -25.34810466019073], + [-48.137160402498566, -25.34819312616871], + [-48.13726257344441, -25.348303124524037], + [-48.1373267904608, -25.3483718691821], + [-48.137402790707476, -25.348446257093528], + [-48.1374876979913, -25.348526142107772], + [-48.13757846144378, -25.34860614095979], + [-48.137666309000124, -25.348683466270266], + [-48.137739494955305, -25.348755092261573], + [-48.13780358500061, -25.34882924836344], + [-48.1378676751232, -25.348903404409075], + [-48.13792885134184, -25.348974796762356], + [-48.13798413388415, -25.349043457621793], + [-48.138045310276986, -25.349114849903856], + [-48.138109528153095, -25.34918359432362], + [-48.13817380979492, -25.349249632862136], + [-48.1382380915429, -25.349315671413333], + [-48.13830237336005, -25.349381709941948], + [-48.13837254689866, -25.34945057005269], + [-48.13843970727229, -25.34951666450963], + [-48.13850981724117, -25.349588230391646], + [-48.13858300426573, -25.349659856046607], + [-48.138655900972275, -25.349739597147554], + [-48.13873783223592, -25.349819423639925], + [-48.13882853375295, -25.349902127688367], + [-48.13892509897063, -25.3499930667892], + [-48.139021728008515, -25.35008130004652], + [-48.139124312642785, -25.350169649039962], + [-48.13922100567623, -25.35025517639786], + [-48.139305877714214, -25.350332443014896], + [-48.139381816713424, -25.350409535924555], + [-48.13945192986959, -25.350481011230137], + [-48.1395162108306, -25.350547139507885], + [-48.13957453850385, -25.350613061813004], + [-48.13964173574386, -25.350681863546455], + [-48.13971184708366, -25.350753428930847], + [-48.13978788796225, -25.35083043342307], + [-48.13987561109416, -25.3509131692394], + [-48.13996926385743, -25.35100134410807], + [-48.14007178622724, -25.35109239835037], + [-48.140180136879216, -25.351188979904617], + [-48.140303286774866, -25.351293879888015], + [-48.14042630951208, -25.351404191373156], + [-48.140552182812485, -25.351519972262928], + [-48.140683820882806, -25.351643986179614], + [-48.140818345179035, -25.351776177209764], + [-48.14095565649451, -25.35191654338525], + [-48.141101837731405, -25.352059788861023], + [-48.14125103480808, -25.352205709585853], + [-48.14140006720844, -25.352354424268185], + [-48.141560985134845, -25.352508693569494], + [-48.14173070951426, -25.352668547894858], + [-48.141900370682514, -25.35283110782233], + [-48.142081945568165, -25.352993808772297], + [-48.14226941290895, -25.35315933104298], + [-48.142456914238174, -25.3533276510193], + [-48.142647169517396, -25.35350134811962], + [-48.14283758818703, -25.35367234111054], + [-48.143016058389485, -25.353840485092665], + [-48.143176980328846, -25.353994752946456], + [-48.143323011428585, -25.354148821782907], + [-48.143454436268925, -25.35428636463317], + [-48.14357708314583, -25.35441290882299], + [-48.14359278556124, -25.354428897738444], + [-48.143685220677774, -25.354523019182967], + [-48.143793386400574, -25.354627715950965], + [-48.14389588678102, -25.354724181565146], + [-48.14399531016776, -25.35482058738776], + [-48.144091819526736, -25.354914229517362], + [-48.14419124322294, -25.355010635232226], + [-48.14429355336975, -25.355115218024196], + [-48.14439570083611, -25.35522250466889], + [-48.14449199202781, -25.355329677556444], + [-48.144561130845176, -25.35540629500227], + [-48.14456387843579, -25.355410559657688], + [-48.144591057573535, -25.35544067865404], + [-48.144690164503416, -25.35555061352204], + [-48.144786520225445, -25.35565508081399], + [-48.14488290406208, -25.355754134503844], + [-48.144973266549584, -25.35585586856094], + [-48.145057838390926, -25.355954692937537], + [-48.145142372556855, -25.356050899715118], + [-48.14522405831285, -25.356141546866816], + [-48.14530282773767, -25.356229520531798], + [-48.145378583691894, -25.356314728643603], + [-48.14540620352855, -25.356343503786924], + [-48.1454603969714, -25.356399964029208], + [-48.145539230314434, -25.356485231814272], + [-48.14561194510912, -25.356573087868963], + [-48.1456846957066, -25.356663651671056], + [-48.14575446847232, -25.356754157672015], + [-48.145830070018, -25.356850190821437], + [-48.14590269377517, -25.356946166171024], + [-48.145981148419665, -25.357047578482774], + [-48.14606261468944, -25.357151846484886], + [-48.1461439818102, -25.35725611249234], + [-48.1462283012379, -25.357365759642683], + [-48.14631857456847, -25.357475612462167], + [-48.14642072618389, -25.357582898364036], + [-48.14647789241375, -25.3576427205342], + [-48.146525891582414, -25.357692949675194], + [-48.14663688804795, -25.357808437929755], + [-48.14675079697069, -25.35792677986799], + [-48.14685887733023, -25.358039594594693], + [-48.146970001540836, -25.358149670979326], + [-48.14708106027542, -25.35826254332666], + [-48.147189077716874, -25.35837806367663], + [-48.14730888215714, -25.358499136400773], + [-48.147428748265575, -25.3586175934417], + [-48.147557359976815, -25.358744250867456], + [-48.14769785601271, -25.358876552751855], + [-48.14784111393143, -25.359022353100137], + [-48.147987312364734, -25.35916559353992], + [-48.14813344760427, -25.359311539681055], + [-48.14827667083446, -25.359454631943315], + [-48.14841406339288, -25.359592287181925], + [-48.14855443423958, -25.35973000003932], + [-48.14868004253911, -25.359862012546333], + [-48.14880571247684, -25.35999140932523], + [-48.148928434599036, -25.360115244557434], + [-48.149039700504225, -25.36022736230341], + [-48.14905407140666, -25.36024184320666], + [-48.14917682976531, -25.36036838598206], + [-48.14929955052317, -25.360492311143698], + [-48.149428328903845, -25.36061626334598], + [-48.14955979581286, -25.360748388739346], + [-48.14970020501897, -25.36088880849148], + [-48.14984032482378, -25.36103734368128], + [-48.14998339731334, -25.361191259850383], + [-48.150132170173286, -25.36135620480538], + [-48.150286581972054, -25.361534794176137], + [-48.15044996626494, -25.361716174054465], + [-48.150610309510455, -25.36190020192812], + [-48.15076780000595, -25.362078850545945], + [-48.15092240622229, -25.36224923170616], + [-48.15105072488024, -25.36238869429047], + [-48.151074159619625, -25.362414233588748], + [-48.15121729875698, -25.362565442982124], + [-48.15131886028613, -25.362669240092604], + [-48.151333600404875, -25.36268310193773], + [-48.15135474529591, -25.36270471225529], + [-48.15147740658134, -25.362831341352916], + [-48.15159126297555, -25.362952295516283], + [-48.15169637367338, -25.363065049338502], + [-48.15179280425042, -25.36316680680566], + [-48.15188330438589, -25.36326312551857], + [-48.151964936007104, -25.363356475204704], + [-48.1520347444619, -25.363441564984026], + [-48.152104779224494, -25.3635212450261], + [-48.152168695182674, -25.363603513620063], + [-48.152238666625934, -25.36368589942894], + [-48.15231446743771, -25.36377381219377], + [-48.15238712753119, -25.363864371168862], + [-48.15246575211162, -25.363963166720318], + [-48.15254732117704, -25.364059221972425], + [-48.15263186637848, -25.364155425019312], + [-48.15271356048388, -25.364246158707765], + [-48.15277885662693, -25.364321298919513], + [-48.15279227873132, -25.36433674456834], + [-48.152868107972466, -25.36441924351789], + [-48.15294099502703, -25.364504392531508], + [-48.15300510233328, -25.36457854338881], + [-48.15306920975477, -25.36465269419053], + [-48.153130339149854, -25.364726787363463], + [-48.1531915023164, -25.364803678436022], + [-48.153255483047595, -25.36488324084665], + [-48.153322378568376, -25.364965566694096], + [-48.15339526625369, -25.365050715532714], + [-48.15347404894392, -25.36513859525444], + [-48.153555680917165, -25.36523203443053], + [-48.153645995754076, -25.365336379568696], + [-48.15373919571212, -25.36544899192338], + [-48.153838290811585, -25.365564335097638], + [-48.15391515513634, -25.3656528804654], + [-48.1539432155355, -25.36568520511551], + [-48.154051055131696, -25.36580883855425], + [-48.154156016101226, -25.365932416229157], + [-48.154260877987426, -25.366055991890093], + [-48.15434022476596, -25.36615435568069], + [-48.15436269855969, -25.3661822157299], + [-48.15445878909939, -25.366302914556403], + [-48.15455478056997, -25.366423611380256], + [-48.15464487718548, -25.366541577318014], + [-48.15472898393326, -25.36665663003215], + [-48.15480742185588, -25.36676354211882], + [-48.15488886567104, -25.366865098186192], + [-48.15497047435653, -25.36696386013641], + [-48.15504900363724, -25.36706265273781], + [-48.15513057465164, -25.367158797056717], + [-48.155214999231866, -25.367260320411066], + [-48.155302400046835, -25.3673619915107], + [-48.155395731962955, -25.367469101194853], + [-48.155497935177436, -25.367579089454896], + [-48.155605841394255, -25.367700016149193], + [-48.15572544496523, -25.367834614057873], + [-48.15585664256099, -25.3679830616332], + [-48.155996686295374, -25.368139711068313], + [-48.15614839174696, -25.368307323904542], + [-48.15630307373699, -25.368475084416364], + [-48.15645484339602, -25.36863999114234], + [-48.15660667476164, -25.368802282132652], + [-48.15665514115719, -25.36885236795137], + [-48.15675572050617, -25.368956307728514], + [-48.15689887144357, -25.369107602441762], + [-48.15702724986614, -25.369245076143486], + [-48.15714691777232, -25.36937705749085], + [-48.15725780751452, -25.36949795061649], + [-48.15735988734842, -25.36961334950181], + [-48.15740569341184, -25.369748234310137], + [-48.157487333449744, -25.36984158156478], + [-48.15750657393031, -25.36989365826877], + [-48.15752511130503, -25.37003938562948], + [-48.157649689987004, -25.37035193216214], + [-48.15796761696439, -25.37085238558492], + [-48.15862463566257, -25.371938069738437], + [-48.15923135765638, -25.372631248782362], + [-48.15987674942338, -25.373302072326002], + [-48.160380203243136, -25.374062553663393], + [-48.160855692245, -25.374577436221585], + [-48.16116756201834, -25.374915140944623], + [-48.16160071229155, -25.375443906582678], + [-48.16164248231579, -25.37549477750248], + [-48.161989545488254, -25.375918544757898], + [-48.16256062178943, -25.376778501416283], + [-48.16304436872753, -25.377567470450188], + [-48.16371604533074, -25.37847556511454], + [-48.164520749360534, -25.379132119518992], + [-48.165005233509575, -25.37950656705124], + [-48.16519512670409, -25.379653330453156], + [-48.16544041442221, -25.380311640163814], + [-48.16549422514118, -25.38045605790899], + [-48.165773843133636, -25.381004305949503], + [-48.166513144891226, -25.38174044137072], + [-48.16699396996302, -25.382656395499605], + [-48.167647686350556, -25.38352776444394], + [-48.16802903833202, -25.3840106686849], + [-48.170139617102734, -25.38668320376382], + [-48.17063571118975, -25.387287695756978], + [-48.17087572425697, -25.387580149759515], + [-48.171689966364745, -25.388509186072078], + [-48.17181603959168, -25.38867890912345], + [-48.1721006200811, -25.38912275019005], + [-48.172301953517746, -25.389370801743624], + [-48.17242629086357, -25.389589489048678], + [-48.17305823687673, -25.390481715143256], + [-48.17330268031887, -25.39078545815651], + [-48.173530089011514, -25.391041620843435], + [-48.17395499599863, -25.391520250281705], + [-48.17429382941419, -25.391870293117204], + [-48.17475556055862, -25.392479870220825], + [-48.17511122115309, -25.393037416716822], + [-48.17588374008628, -25.394168799226776], + [-48.17590768270909, -25.39420386373556], + [-48.1762419550439, -25.394771644885022], + [-48.17652179753876, -25.395212774561013], + [-48.17675394434063, -25.395578716593], + [-48.177051981956325, -25.395979314770056], + [-48.177247083412105, -25.396216999019526], + [-48.17763333831984, -25.396687554504254], + [-48.178317508843065, -25.397545753677264], + [-48.178607509320436, -25.398006111698635], + [-48.17890408980764, -25.39836309478277], + [-48.179941229392504, -25.39968348523529], + [-48.18013426091508, -25.399999406748137], + [-48.180457172580304, -25.40046337119596], + [-48.18082719544562, -25.401037605186403], + [-48.18141467511482, -25.401830501395793], + [-48.18203439915976, -25.40265299799361], + [-48.18255324284864, -25.40334159656667], + [-48.18356258910274, -25.404775491839388], + [-48.1835746872961, -25.404794024358505], + [-48.18383610074404, -25.405194468008627], + [-48.18419554462082, -25.405904568777743], + [-48.18452111256201, -25.4063794955477], + [-48.18481612050642, -25.40686989823152], + [-48.185037046049736, -25.40716216579109], + [-48.185389526584494, -25.40763787741589], + [-48.185746722233134, -25.408064680341536], + [-48.18603821885435, -25.40848417825536], + [-48.18630383004497, -25.40895741198986], + [-48.1864661746306, -25.40920984441027], + [-48.18695140850975, -25.410100475680487], + [-48.18793029473888, -25.4115498257628], + [-48.18812735770389, -25.411861370599762], + [-48.18835131893488, -25.412215437925862], + [-48.188682396387, -25.412769174037763], + [-48.18878525891778, -25.412941213320124], + [-48.189140298548324, -25.413517760833173], + [-48.18931995084571, -25.413876910735542], + [-48.18955511892335, -25.41427574395107], + [-48.189957935804486, -25.414861776513817], + [-48.1906906288501, -25.41579485110142], + [-48.19094172930346, -25.416256791904814], + [-48.19098159530387, -25.41631151579397], + [-48.19128165678176, -25.41672313821355], + [-48.191552059940975, -25.41717552129955], + [-48.191735983242715, -25.4174966708016], + [-48.191862078821295, -25.417753548879542], + [-48.19235305314695, -25.41848094792369], + [-48.19253086127913, -25.418804596583147], + [-48.192835412726815, -25.41945597064269], + [-48.192951168821494, -25.419756144415793], + [-48.19302299901054, -25.42002236171355], + [-48.19324119321701, -25.420439628152142], + [-48.193444774765794, -25.420828947321933], + [-48.19355781984226, -25.42104512798501], + [-48.19394402182454, -25.422028326690484], + [-48.194154295061075, -25.422456456602855], + [-48.19456507188477, -25.423159848712626], + [-48.19518427915128, -25.424345656035275], + [-48.19562586033639, -25.4251996978348], + [-48.19609269556932, -25.42601902859751], + [-48.196832372592255, -25.427453477189196], + [-48.19727414710487, -25.42856622762602], + [-48.19736871506787, -25.42875062123502], + [-48.19761995005853, -25.429240489830377], + [-48.19775604003015, -25.429560269408775], + [-48.198004769838704, -25.43035440750218], + [-48.19808653616883, -25.430655413243887], + [-48.19820457611106, -25.431089950400672], + [-48.19838799843761, -25.43160175431858], + [-48.198703346453904, -25.432291495670977], + [-48.198846867689156, -25.432565215137373], + [-48.199079507438874, -25.432955776946937], + [-48.199357140964054, -25.43351918810516], + [-48.199413384106286, -25.433716887008178], + [-48.19947364103816, -25.43405895104809], + [-48.19964758714429, -25.4344996469855], + [-48.19990864077453, -25.435285986943875], + [-48.20011736037548, -25.435847450925134], + [-48.2005419725547, -25.436763602130004], + [-48.200801312476486, -25.437199067619503], + [-48.20105336113309, -25.43769205507548], + [-48.20109523318245, -25.437779688700758], + [-48.201240856089775, -25.438084460573595], + [-48.20133057064303, -25.43830896588174], + [-48.20152019979075, -25.43887990027898], + [-48.20171003053131, -25.439523839954287], + [-48.20181547971418, -25.439802877356573], + [-48.20202185287706, -25.440247257560248], + [-48.20232152139052, -25.44082164244881], + [-48.20295076696435, -25.442357916482987], + [-48.203202813158605, -25.442933467920138], + [-48.203541148353274, -25.44397673674782], + [-48.20364600941657, -25.44435033027214], + [-48.20375072254256, -25.444807750966376], + [-48.20397206709763, -25.445249978074564], + [-48.20426626396705, -25.44596737157128], + [-48.20434307721859, -25.44618836520911], + [-48.20461777623485, -25.446978675169884], + [-48.20477797748001, -25.447480294904896], + [-48.20487589174051, -25.447786880729808], + [-48.20495231565255, -25.4479677273824], + [-48.205193793750006, -25.448429376646562], + [-48.205458687203986, -25.449370358851127], + [-48.20574383675698, -25.450092901977488], + [-48.20594078841147, -25.450550544140782], + [-48.206216373399506, -25.45113231532762], + [-48.20640695265718, -25.451608344609305], + [-48.20724299386257, -25.457452980832585], + [-48.20753939210518, -25.458021128089744], + [-48.208235007715594, -25.459354508346003], + [-48.20838636365813, -25.459644635459327], + [-48.208635813622095, -25.460480173919464], + [-48.208819583524516, -25.460894158733367], + [-48.20911073641031, -25.46145745323462], + [-48.20921216222752, -25.461611885859124], + [-48.20948234630752, -25.462023270492487], + [-48.20970688487747, -25.46230330618975], + [-48.210866321812844, -25.463369580026864], + [-48.21088764380157, -25.463386996747115], + [-48.21120710299928, -25.463647943881636], + [-48.211873874381865, -25.464204027379967], + [-48.21209715297734, -25.464362396372664], + [-48.212386238793854, -25.464511999465763], + [-48.21263021574456, -25.46467373893937], + [-48.213064079171865, -25.464903605629868], + [-48.21366064465819, -25.465219670688295], + [-48.21440983113521, -25.465564800823206], + [-48.214925777441074, -25.465778264180596], + [-48.215125973272706, -25.465838644228775], + [-48.21612660798032, -25.465991642457883], + [-48.21666040868208, -25.466051584282248], + [-48.21709449925362, -25.46612911584867], + [-48.2171047043934, -25.46613093853956], + [-48.21711885500576, -25.46613346592458], + [-48.21777486812063, -25.466264844355923], + [-48.218287510634404, -25.46641064596308], + [-48.21851760850129, -25.466463114101785], + [-48.21872734547876, -25.46651093909519], + [-48.219445744468764, -25.466732675940417], + [-48.21960450923687, -25.466781678780315], + [-48.220088872526254, -25.46696438677922], + [-48.22061603599027, -25.467118757648386], + [-48.220871517593544, -25.46721320475606], + [-48.22119885078323, -25.46737759329928], + [-48.22151308681852, -25.467571240722503], + [-48.22207853694694, -25.46781593781675], + [-48.22233475273033, -25.4678915367837], + [-48.222654815540466, -25.46793125675265], + [-48.22276391918992, -25.467959040534772], + [-48.22346755719485, -25.46817296131217], + [-48.22360306401923, -25.468219504843812], + [-48.22393494676918, -25.468333498450953], + [-48.224195088931474, -25.468463311211913], + [-48.22454476985745, -25.46866348887451], + [-48.2249580408513, -25.468916936201236], + [-48.22526148418362, -25.469083210437468], + [-48.225735549048565, -25.46938193218573], + [-48.22643053863689, -25.469665790684555], + [-48.226884847478416, -25.469777343202544], + [-48.22769354544329, -25.4701269637448], + [-48.22853549069369, -25.47053983347035], + [-48.22901306872207, -25.470746659462776], + [-48.229298203172455, -25.47084481133421], + [-48.22971381771725, -25.470957790166903], + [-48.22998320678555, -25.471001320107153], + [-48.23046137395833, -25.471035166635318], + [-48.23090901598102, -25.47100860749897], + [-48.23127408576238, -25.47096316232004], + [-48.231391249232345, -25.470934422655354], + [-48.23167814786448, -25.470829838601336], + [-48.23193264891302, -25.47071616005342], + [-48.232070457757715, -25.470614987426142], + [-48.23239084693183, -25.47025466773815], + [-48.23250916666264, -25.47013460615678], + [-48.2326881207202, -25.46995301695281], + [-48.23288492570466, -25.46978888762266], + [-48.23314449826743, -25.469618542705177], + [-48.23331486108628, -25.469523848400733], + [-48.23357826117677, -25.469407717662055], + [-48.23424459016556, -25.4689554686029], + [-48.23458588229966, -25.468749844755493], + [-48.23501704546096, -25.468530754368224], + [-48.235342069167146, -25.468440868198602], + [-48.235529640353704, -25.46836291878455], + [-48.23565667251307, -25.468291527662704], + [-48.23565886305975, -25.46829029656818], + [-48.23707457461357, -25.468177567908576], + [-48.248628417891666, -25.467257048183804], + [-48.24862838429603, -25.467258524026107], + [-48.24862872860946, -25.467258496579916], + [-48.24862768554827, -25.46730431860088], + [-48.248631271871915, -25.467350752750043], + [-48.24864454321029, -25.46738054950157], + [-48.24866423430973, -25.46741673249787], + [-48.24868096622141, -25.467444264702397], + [-48.248703551312516, -25.467491962354384], + [-48.248735665975914, -25.46753697367289], + [-48.248762007962114, -25.46756886531282], + [-48.2487710428125, -25.46758952799886], + [-48.24878635843867, -25.467608886436903], + [-48.248811870129224, -25.46764113237384], + [-48.24883636653627, -25.467672094960133], + [-48.248854557498156, -25.467693299822457], + [-48.2488598489108, -25.467696883000496], + [-48.24888463080313, -25.467717403505418], + [-48.2489182903308, -25.467763876298477], + [-48.248942746354295, -25.467798716079415], + [-48.248954118357624, -25.46781074507857], + [-48.24896894269006, -25.46782642581906], + [-48.24899157431385, -25.467841064291683], + [-48.24902760778229, -25.467881578186898], + [-48.24907134990994, -25.46792815328636], + [-48.24909553280707, -25.46794410779423], + [-48.249114218963506, -25.46796094484523], + [-48.249138667183736, -25.467973288042504], + [-48.24918699721756, -25.468014205964106], + [-48.24923907843071, -25.46806347938712], + [-48.249299672225334, -25.46810782859483], + [-48.2493519848679, -25.468146938581377], + [-48.24941257621873, -25.46818763152362], + [-48.24941360447054, -25.468188604335914], + [-48.24944607803969, -25.468217864256356], + [-48.24947623275004, -25.468239483197873], + [-48.249503529221776, -25.46825905297233], + [-48.249528572036766, -25.46826811786461], + [-48.24957324118554, -25.46831622956398], + [-48.249619618094314, -25.468358643089434], + [-48.249653701726906, -25.46838650059874], + [-48.249685849517746, -25.468430079799337], + [-48.24973087722046, -25.468462440180808], + [-48.249770879502066, -25.46850759921967], + [-48.249789768121154, -25.468531736272727], + [-48.24980614958624, -25.468552669511865], + [-48.24984664064112, -25.46857634950866], + [-48.24985897822394, -25.468588021751103], + [-48.249892624462596, -25.468629875586753], + [-48.24992633832703, -25.46865989591751], + [-48.249939281785025, -25.468671421304887], + [-48.249978494728786, -25.468722778919197], + [-48.24999638337801, -25.4687462079054], + [-48.25004566630746, -25.468795428608992], + [-48.25010025815253, -25.46885745844442], + [-48.2501510329471, -25.468918682821588], + [-48.25016021674703, -25.468929756632686], + [-48.25021778107203, -25.468984216415127], + [-48.250258551650084, -25.469038361312553], + [-48.250293038111295, -25.469091669275976], + [-48.25030183219554, -25.469105262864336], + [-48.250375381257726, -25.469195609278096], + [-48.25040161058213, -25.46922145962236], + [-48.25044111155101, -25.469260389795537], + [-48.25046729488352, -25.469324574177698], + [-48.25046997022945, -25.46932799414548], + [-48.2505606900426, -25.469443964152827], + [-48.25076016176858, -25.469698954283405], + [-48.25100804987101, -25.470015834576184], + [-48.251132961360284, -25.47012700408408], + [-48.251356044205814, -25.470292532503052], + [-48.25151373097142, -25.470387531549925], + [-48.25171892292204, -25.470552994916492], + [-48.252114204985325, -25.470962326313835], + [-48.25232583866996, -25.471058786576695], + [-48.25242386409029, -25.4710846267148], + [-48.252468438917205, -25.471109104436994], + [-48.25251305158905, -25.471136290052968], + [-48.252557742026504, -25.471168801181005], + [-48.25259338608015, -25.47120132333665], + [-48.25265285305772, -25.471252880992523], + [-48.25269452268295, -25.471282718552768], + [-48.252736154497, -25.4713098482654], + [-48.2527807673078, -25.47133703377592], + [-48.25282538222755, -25.47136412908968], + [-48.25287005659442, -25.471388608599664], + [-48.25295042252359, -25.471434782308787], + [-48.25302182932223, -25.47147275692812], + [-48.25308433639034, -25.471499916608057], + [-48.25316174311793, -25.471540710712503], + [-48.2532093013103, -25.47156515384976], + [-48.25329563360588, -25.47161125868767], + [-48.253349193758694, -25.471638431171762], + [-48.253390840077905, -25.47167368247775], + [-48.253390247690625, -25.47167436419917], + [-48.253391171082555, -25.471675145798347], + [-48.25335830158135, -25.47171297214544], + [-48.2532987204048, -25.471710141706097], + [-48.25323614196758, -25.471699223807402], + [-48.25318557886218, -25.47168013863442], + [-48.25310514137563, -25.471650206635807], + [-48.25305749783861, -25.471633883279896], + [-48.25300991578889, -25.471614853921924], + [-48.25293243575333, -25.471590391577177], + [-48.25287886602596, -25.47157675458981], + [-48.25281038724156, -25.471563018781765], + [-48.252744788030256, -25.47154942714445], + [-48.25268227331875, -25.47153571277921], + [-48.25263466772566, -25.471522097210144], + [-48.252587010103476, -25.47149765192536], + [-48.25253634580331, -25.471478654902217], + [-48.252479818889356, -25.471459548027752], + [-48.25242919245077, -25.47144325885155], + [-48.25236076117833, -25.471418695040477], + [-48.252298254091386, -25.47139153498785], + [-48.252235647646906, -25.471364373048523], + [-48.25218508486855, -25.471345287588534], + [-48.25213150125137, -25.47132352856209], + [-48.252068932703104, -25.471299074438253], + [-48.25202429417502, -25.471277392724918], + [-48.251970686902524, -25.47126104757863], + [-48.2519022558073, -25.471236483534007], + [-48.25185162959517, -25.47122019417267], + [-48.25180101953462, -25.471211936423327], + [-48.25172650387112, -25.471214510549128], + [-48.251634048691336, -25.47122784790568], + [-48.251538711902406, -25.47124113116348], + [-48.25147013654235, -25.47124914060357], + [-48.25141950280409, -25.471246296621988], + [-48.25137478875057, -25.47121919896093], + [-48.25134213758485, -25.47117310640129], + [-48.25131548620233, -25.471129833492906], + [-48.25129477279352, -25.471070248295735], + [-48.2512769928815, -25.471021546797612], + [-48.25125623200661, -25.470972789426174], + [-48.25123250425947, -25.470932097992385], + [-48.2511998274146, -25.47089150952752], + [-48.25116120272923, -25.47085893112114], + [-48.251122500380646, -25.470821027132132], + [-48.25108091643579, -25.470783069087357], + [-48.25103628999344, -25.470747761208173], + [-48.250985697537025, -25.470712521969116], + [-48.25094412774226, -25.470682685702158], + [-48.250905441599706, -25.47065281325499], + [-48.250860791530414, -25.470622919261103], + [-48.2508072161256, -25.470587714274032], + [-48.25075072340089, -25.4705496571516], + [-48.25070317568975, -25.470511677507183], + [-48.250664511385374, -25.470476481295663], + [-48.25061694968265, -25.47043037978407], + [-48.25056932645225, -25.470386984310508], + [-48.25051578137853, -25.470367932628616], + [-48.25047906573185, -25.470364151027887], + [-48.25047021161249, -25.470363239073635], + [-48.25046758206778, -25.47036296822514], + [-48.2504622602758, -25.470362839054598], + [-48.25042912534046, -25.47035655371973], + [-48.25038062554614, -25.470365176717003], + [-48.2503526214796, -25.47037972409213], + [-48.250348746443144, -25.47038173709309], + [-48.250324567623935, -25.470393846120192], + [-48.250305685159795, -25.47040864381753], + [-48.2502683897151, -25.47042943282808], + [-48.250236057388435, -25.47044844300193], + [-48.25022706921075, -25.470453727715302], + [-48.2502222009682, -25.47046118262643], + [-48.25020935588365, -25.47048085280287], + [-48.25020046765813, -25.47052589417595], + [-48.250209088763846, -25.470558136411128], + [-48.250211026370685, -25.470565382895455], + [-48.25023305905449, -25.47059106488794], + [-48.250236379456595, -25.470597417953655], + [-48.250245424303856, -25.470607960864818], + [-48.25025165206458, -25.4706294153602], + [-48.25027718230835, -25.470663320102478], + [-48.2503026576346, -25.470692265946184], + [-48.25031761809527, -25.470719047202753], + [-48.25035676692514, -25.47075219078591], + [-48.25039193402862, -25.47077572748672], + [-48.25042298932246, -25.470795374179723], + [-48.250467296818286, -25.470814418483407], + [-48.250469858026904, -25.470816231115002], + [-48.250499385901975, -25.47083712863998], + [-48.25050979809209, -25.47084782739623], + [-48.25051769870456, -25.470855945501516], + [-48.250546885932096, -25.47088593604623], + [-48.250585476795756, -25.470937464054437], + [-48.2506240837868, -25.47099702357893], + [-48.250650770495426, -25.47104309456057], + [-48.25067455186781, -25.471094525357245], + [-48.25069523676754, -25.471137866878607], + [-48.25071005708073, -25.471181188677846], + [-48.25073971719038, -25.471240760932734], + [-48.25078120797811, -25.47130028429798], + [-48.250834771678775, -25.47134911504275], + [-48.25087345784592, -25.471378987424334], + [-48.250918110046314, -25.47140879115284], + [-48.25096564393177, -25.47143864892204], + [-48.25101627223353, -25.471476686129783], + [-48.25106083922598, -25.471514609738083], + [-48.25110250849523, -25.471544447759655], + [-48.251150103999386, -25.471571599434597], + [-48.251206668310004, -25.471593414626234], + [-48.25127214393908, -25.47161241895984], + [-48.25132278204315, -25.47163692045045], + [-48.25136144673078, -25.471672116411373], + [-48.25140602594694, -25.471718251895812], + [-48.25144469068472, -25.471753447838516], + [-48.25148921802656, -25.471788753649825], + [-48.25153686566079, -25.47182673486636], + [-48.25158149449701, -25.4718619522967], + [-48.25163792631022, -25.471902715049787], + [-48.251694492928145, -25.47192443988695], + [-48.251742136156814, -25.471940763600298], + [-48.251792845661775, -25.471949023276448], + [-48.251861350007786, -25.471957255406718], + [-48.25193581843453, -25.471965509077787], + [-48.25200736533197, -25.47197109102804], + [-48.25207586971505, -25.47197932306016], + [-48.252144374109925, -25.4719875550955], + [-48.25222776393982, -25.472001299887125], + [-48.25231121528561, -25.47201233858831], + [-48.25237369416233, -25.47202325500689], + [-48.25244519376695, -25.472039664544635], + [-48.252501760585325, -25.472061389086374], + [-48.252555382244715, -25.47208585581658], + [-48.2526029641943, -25.47210488527528], + [-48.25268046579714, -25.47212402408704], + [-48.25273101665534, -25.472134897379263], + [-48.25278170265432, -25.472148570607406], + [-48.252832291404424, -25.472162151773073], + [-48.25288293959639, -25.47217311709624], + [-48.252960320321506, -25.472197577568895], + [-48.25302287300044, -25.472213999686957], + [-48.25309142971162, -25.472233060958764], + [-48.253156889766686, -25.472244032895663], + [-48.253231457873454, -25.472252287790695], + [-48.25332079995651, -25.47225784145879], + [-48.25341020150888, -25.472260779246636], + [-48.25349360117184, -25.472260987633064], + [-48.25357116176481, -25.472255672289197], + [-48.25363669284853, -25.472250402360334], + [-48.25371119259414, -25.472239795738084], + [-48.25379772191091, -25.472229143643737], + [-48.25384840533264, -25.47222106885568], + [-48.25393479533672, -25.472207797163502], + [-48.25400635398929, -25.472199752254564], + [-48.25407190863655, -25.472189068204607], + [-48.25413157293415, -25.472183868644432], + [-48.25420014848003, -25.472175858040757], + [-48.25428959725166, -25.472167967477816], + [-48.25434323805197, -25.472165362216145], + [-48.25439982395908, -25.472160014684917], + [-48.25449819628391, -25.472157524945583], + [-48.254587559953706, -25.472157754135875], + [-48.254659130821956, -25.47215792088668], + [-48.254721695125, -25.472160716422117], + [-48.25478428303215, -25.472158098041298], + [-48.254843895079134, -25.472142068511282], + [-48.25494278891363, -25.472094739391057], + [-48.25502880997894, -25.47208019679075], + [-48.25544589826196, -25.472129783967112], + [-48.255708092189614, -25.472184412534727], + [-48.256059440581225, -25.472287903888923], + [-48.25660152907458, -25.472418876221674], + [-48.25710487621864, -25.472509236291575], + [-48.25725082840261, -25.47256096601398], + [-48.257541066271806, -25.47268185177232], + [-48.25775986582449, -25.472772982537933], + [-48.25809333823299, -25.472884617452188], + [-48.2583340329991, -25.473019423158632], + [-48.258356814623106, -25.47304935732113], + [-48.25842364487515, -25.473110157404324], + [-48.258527556446616, -25.473204692745657], + [-48.25925678880482, -25.473565925507067], + [-48.25926724364647, -25.473569747119317], + [-48.25992673105387, -25.473810811423622], + [-48.260933388863, -25.474086078186243], + [-48.26123404960594, -25.474189513343994], + [-48.261510921659294, -25.474311814888758], + [-48.26193238835095, -25.474474000145296], + [-48.26209750351727, -25.47453753791555], + [-48.262410048478436, -25.474686944065287], + [-48.26274632867721, -25.474876949216583], + [-48.26427368260184, -25.4754833459602], + [-48.264728942046446, -25.475735846564262], + [-48.26517830727671, -25.476007276518605], + [-48.265571211680445, -25.476208258079012], + [-48.265689550099786, -25.476252909934562], + [-48.2659314905031, -25.4763441992777], + [-48.26630974854444, -25.476436889123203], + [-48.266443705167994, -25.476483152650882], + [-48.26660150327816, -25.476556571453298], + [-48.26696453631267, -25.47678180857042], + [-48.267413949780064, -25.477020746797642], + [-48.268432240944975, -25.47744751339933], + [-48.26936234014986, -25.477990716073823], + [-48.26945003116983, -25.478041929428088], + [-48.269854514027436, -25.478364668887018], + [-48.27042896832772, -25.47869318862733], + [-48.27067309374104, -25.478782919528324], + [-48.270929232534634, -25.478864571570607], + [-48.27134326641997, -25.479040820223087], + [-48.27141448713112, -25.47907113778083], + [-48.27163765397548, -25.479204153168418], + [-48.272190956656964, -25.47965969160886], + [-48.27259848887725, -25.479958025969847], + [-48.272952483194324, -25.480245527339076], + [-48.273761412913956, -25.480955869712705], + [-48.27414522560966, -25.48127036329432], + [-48.27466185269504, -25.48159313294529], + [-48.27474040161301, -25.481642207116536], + [-48.275058527378256, -25.481951236279297], + [-48.27530844275572, -25.482132931957533], + [-48.27594167600488, -25.482536882158488], + [-48.27615063137986, -25.48267016872357], + [-48.27683037854899, -25.483010267469066], + [-48.27688884200726, -25.48303951834432], + [-48.277162778765494, -25.483224563258428], + [-48.277623892551034, -25.48353604431359], + [-48.278573586883944, -25.483997748404494], + [-48.278886082151764, -25.484182314775854], + [-48.279359106417495, -25.484553859420792], + [-48.27948397202286, -25.48468657369698], + [-48.279710083899495, -25.484857443172114], + [-48.279941974519296, -25.48508518066475], + [-48.28013832463273, -25.48525324136188], + [-48.28096254898006, -25.48581755266223], + [-48.28145971196198, -25.486089011379683], + [-48.28176131080874, -25.48631492697765], + [-48.28192677731316, -25.48643887069413], + [-48.282254140113594, -25.48666133638721], + [-48.282736353659146, -25.486943523271343], + [-48.28330761788067, -25.4873775189824], + [-48.28368831682663, -25.487583747485342], + [-48.2837034703745, -25.487591956259635], + [-48.2843705039275, -25.48788812100048], + [-48.28495709773106, -25.48812720493728], + [-48.28550783739226, -25.48841778164235], + [-48.28607951686052, -25.488670391947036], + [-48.28632803929052, -25.488757496788246], + [-48.286533197098365, -25.488829402300237], + [-48.28688655348793, -25.488953255676496], + [-48.287821853705466, -25.489222786607968], + [-48.28809305673029, -25.48926390064285], + [-48.28903190537739, -25.48927377752499], + [-48.28941624503766, -25.489328622578494], + [-48.289678392073945, -25.489396728655734], + [-48.29005461118691, -25.489547507777704], + [-48.29024114868229, -25.48962226681403], + [-48.29024950720288, -25.489625110129914], + [-48.2905449608463, -25.489725613601266], + [-48.29071777808927, -25.489769235772613], + [-48.291010783308785, -25.48981257326096], + [-48.291143795449095, -25.489832246471224], + [-48.293082693088586, -25.489895996830114], + [-48.29323606109754, -25.48990103840532], + [-48.29342638995456, -25.48990138918833], + [-48.29460410562586, -25.48990355422829], + [-48.29474463145683, -25.48990326273263], + [-48.294899962149735, -25.489967421325968], + [-48.29490031254263, -25.489967419014295], + [-48.29560087656137, -25.489962826913434], + [-48.300308638775796, -25.489931881196853], + [-48.315431854522814, -25.48983144622272], + [-48.31543005091842, -25.489832972800496], + [-48.312451546983944, -25.492353901655846], + [-48.310212414291186, -25.493771053294473], + [-48.27738032329232, -25.514543450632832], + [-48.290190311708706, -25.5464255212378], + [-48.29036752201483, -25.546867035802645], + [-48.29167117388775, -25.548083893267073], + [-48.29230911126051, -25.54826164746825], + [-48.29323245443214, -25.548029348784024], + [-48.29423266926525, -25.548464124988783], + [-48.29621148604174, -25.550250679609643], + [-48.29771889679096, -25.552611032674196], + [-48.29890199055839, -25.55509017368688], + [-48.29887547152278, -25.556257168953493], + [-48.30126631438387, -25.560132062728517], + [-48.301905031900915, -25.562351615257732], + [-48.301875652433864, -25.56368407855893], + [-48.3008380772593, -25.564914437736082], + [-48.299154609838425, -25.56629969179143], + [-48.29850580986896, -25.56653726869147], + [-48.29853883920017, -25.56716305669873], + [-48.2990842934656, -25.567423592176485], + [-48.29888744564125, -25.5680026638357], + [-48.2992488310969, -25.568258754840542], + [-48.299899618782476, -25.567937564920996], + [-48.3004489831904, -25.56794808534647], + [-48.30093035080173, -25.56695711480392], + [-48.30378069141001, -25.56675902959306], + [-48.30655989742537, -25.568480256896464], + [-48.30690345865043, -25.568692446944812], + [-48.30816487967222, -25.56971500048972], + [-48.308759900567594, -25.571808670120614], + [-48.3103116209642, -25.574293962067337], + [-48.31139093919351, -25.57531394313294], + [-48.31383314343445, -25.576941927381593], + [-48.32040019822927, -25.587059737138798], + [-48.3589953165465, -25.58643861898983], + [-48.36061336144758, -25.586986848414654], + [-48.362312417794264, -25.58756252760978], + [-48.36644536253003, -25.5889628629191], + [-48.36819241172632, -25.589721407001925], + [-48.36941542786419, -25.59025242355918], + [-48.37278408052518, -25.591715044074533], + [-48.37836954143233, -25.594795973442658], + [-48.37898043325032, -25.595132940732434], + [-48.38111404358578, -25.596309836758515], + [-48.381115140592506, -25.596310398755445], + [-48.38208742953487, -25.596808414026714], + [-48.38301625921177, -25.597284169419844], + [-48.38361706388382, -25.597591907733477], + [-48.385563065777866, -25.598588669270587], + [-48.386072653913466, -25.59913974888413], + [-48.38731479199446, -25.600483023504104], + [-48.387364444397555, -25.600536718368904], + [-48.3874769331634, -25.600616596056426], + [-48.39075218946628, -25.60294232095593], + [-48.392556587754335, -25.604223604940913], + [-48.39427493345706, -25.605443784163974], + [-48.40138308617032, -25.611142910491687], + [-48.402958511800094, -25.61251611114568], + [-48.405356635504674, -25.614606406528555], + [-48.41037883290972, -25.619358657719964], + [-48.410543523169316, -25.619514496266994], + [-48.41105503808143, -25.61999851685998], + [-48.411121230607, -25.620066632678757], + [-48.41503107365635, -25.624090077968866], + [-48.41552424157318, -25.624597575617596], + [-48.41601017761376, -25.625148890293584], + [-48.416539043011326, -25.62574890885252], + [-48.41803289143374, -25.62744373878135], + [-48.41865244958605, -25.628146651092706], + [-48.419262827662344, -25.62883914942884], + [-48.420817877595866, -25.630603415188986], + [-48.42132826084111, -25.63118246579725], + [-48.42325117583643, -25.633364088552547], + [-48.423877399046, -25.634074562844294], + [-48.424606422111005, -25.634901668855196], + [-48.42541479683648, -25.63581880164947], + [-48.42921884895668, -25.64083238136842], + [-48.429471664083266, -25.641125606679058], + [-48.43087997894373, -25.64276279983872], + [-48.43097964186687, -25.64290234757039], + [-48.43146623037405, -25.643583664260344], + [-48.432052482804565, -25.644404529681665], + [-48.43277951553964, -25.645422515723755], + [-48.43364987960298, -25.646641191379494], + [-48.43491622833594, -25.648414322967838], + [-48.435449260274886, -25.649160669531632], + [-48.435795367481916, -25.649645287599046], + [-48.43833516401896, -25.65320148875318], + [-48.4384998545453, -25.653432088309238], + [-48.43894949271276, -25.654061667096865], + [-48.439831117884594, -25.655296111719505], + [-48.43998970147891, -25.65555325829689], + [-48.44029643256254, -25.656050626479526], + [-48.44128177646896, -25.657648376853526], + [-48.44137384939478, -25.65779767460799], + [-48.4415855735236, -25.658140989043716], + [-48.442081740512506, -25.658945530721017], + [-48.442242617229354, -25.659234408296207], + [-48.44290656331522, -25.660426616542843], + [-48.44337924736023, -25.661275385294303], + [-48.444335608568316, -25.66299266576789], + [-48.44486311119931, -25.66393987137409], + [-48.44505415807047, -25.664235422862447], + [-48.445542140849966, -25.66499033655539], + [-48.446357671838165, -25.66625197137069], + [-48.44709819733679, -25.667748705437234], + [-48.44746948859814, -25.668499149467742], + [-48.45019850970736, -25.6728254531676], + [-48.45038772934376, -25.673056750651337], + [-48.45241646788999, -25.675536643115787], + [-48.453581486027524, -25.677259652979007], + [-48.45381383424895, -25.677603286353364], + [-48.45448010461901, -25.67858867255903], + [-48.45466483038523, -25.678861873061546], + [-48.45534081541343, -25.6797389282232], + [-48.45626755667827, -25.68094132670254], + [-48.457056457714216, -25.681964885556436], + [-48.45737852558676, -25.682382750680254], + [-48.457752176919485, -25.68286754466359], + [-48.45821411703972, -25.68346688640669], + [-48.458446167109585, -25.683767959775206], + [-48.45885876499405, -25.684360788660687], + [-48.461601773822274, -25.68830199924854], + [-48.463586479514134, -25.691153664883164], + [-48.46377221444964, -25.691472932388443], + [-48.46389737675393, -25.691688080054966], + [-48.46472189634675, -25.69310538185822], + [-48.46524212376867, -25.69399962247213], + [-48.46554641594018, -25.69452268366118], + [-48.465829692892875, -25.695009619906294], + [-48.46607904978183, -25.695519807253234], + [-48.46637718823606, -25.696129801472416], + [-48.46683854958159, -25.69707375226405], + [-48.4673893019633, -25.698200598821323], + [-48.467444473602555, -25.69831348067677], + [-48.467496973161985, -25.698407136537327], + [-48.46775001985862, -25.698858551864912], + [-48.46813573396901, -25.699546636840015], + [-48.468366200425194, -25.699957773227574], + [-48.4685314781866, -25.700252615788305], + [-48.4690820440544, -25.701234784325024], + [-48.469233962506564, -25.701458834914643], + [-48.46980585897357, -25.702302269369458], + [-48.46989581683361, -25.70243493912636], + [-48.4719224202092, -25.705423779649315], + [-48.47236641513162, -25.70598780743622], + [-48.473219279666615, -25.707071241105968], + [-48.47359963692159, -25.707805854101956], + [-48.47404549890951, -25.708666982924974], + [-48.474269008410104, -25.709098664334917], + [-48.47481799055216, -25.710158954885433], + [-48.47619514896191, -25.71281876924843], + [-48.477026398974424, -25.71406181700174], + [-48.47722508488968, -25.71435893046471], + [-48.47723820301615, -25.714378548429206], + [-48.47730226463375, -25.714474345256036], + [-48.47855343369463, -25.716345160873434], + [-48.4785539847, -25.7163459848719], + [-48.478909548532336, -25.716991273926418], + [-48.479667206699105, -25.7183662969114], + [-48.48119303942663, -25.72065211878477], + [-48.48135385997899, -25.720893041349797], + [-48.48177503404465, -25.721523993210454], + [-48.482561396629585, -25.722419508043473], + [-48.48388286786117, -25.72481281052535], + [-48.485652965927436, -25.72801861581108], + [-48.48580809759854, -25.728299572397784], + [-48.48691375101999, -25.729883951394037], + [-48.488047837547946, -25.73174404834491], + [-48.48910065825099, -25.733470852513577], + [-48.49219843474972, -25.73855173617928], + [-48.49221848700252, -25.738598333127264], + [-48.492388340143926, -25.738993020686134], + [-48.49263979531446, -25.739577326033135], + [-48.49478226174722, -25.742430212174018], + [-48.49608153425787, -25.74492370072487], + [-48.49873084732223, -25.749299234591113], + [-48.499755560792124, -25.750991622830767], + [-48.49982979546271, -25.751089592627423], + [-48.50055490601278, -25.752046538640737], + [-48.50094690455401, -25.752563869566742], + [-48.5015566172142, -25.753691076940033], + [-48.50299936797589, -25.756358363090094], + [-48.505141152675144, -25.759841183307426], + [-48.50521460660913, -25.76001373311633], + [-48.505288060543236, -25.760186282925208], + [-48.505415544164336, -25.76048575359351], + [-48.50552541656158, -25.760743852307524], + [-48.505635288958736, -25.761001952021676], + [-48.505646554065976, -25.761018328990897], + [-48.50593233078571, -25.76143378421242], + [-48.50649076110065, -25.762245617690784], + [-48.50836478716763, -25.765593443668227], + [-48.509611704521724, -25.76782097932526], + [-48.51188572241074, -25.771472535170474], + [-48.51319545860392, -25.774416327738027], + [-48.5152610471481, -25.779058990322234], + [-48.51743423203074, -25.78394348662091], + [-48.517583334875425, -25.78427861322964], + [-48.519193836759015, -25.78676930085018], + [-48.51992912605485, -25.788756037964447], + [-48.52035340699639, -25.789902435876098], + [-48.520470765639864, -25.790219536575], + [-48.52125257348596, -25.791465794452815], + [-48.521278348798425, -25.79152189038488], + [-48.52163277709501, -25.792293227450422], + [-48.52275403568879, -25.79473341149344], + [-48.52278444305749, -25.79479958541321], + [-48.523947590917516, -25.79698394129828], + [-48.52397447021473, -25.797034419226307], + [-48.5251644973738, -25.79926925303853], + [-48.52672575264045, -25.8022012398549], + [-48.52699264427814, -25.802893639165173], + [-48.527259535915874, -25.803586038475327], + [-48.527519798463416, -25.804261239802415], + [-48.52804461261757, -25.805622769445733], + [-48.52821433393118, -25.80606307900678], + [-48.52881745115369, -25.80762775044709], + [-48.529217415606865, -25.808665380412688], + [-48.52989740087885, -25.81042947165371], + [-48.53071137497901, -25.812541171547505], + [-48.531361707848674, -25.81422833486441], + [-48.53145300908765, -25.81502058570176], + [-48.531582775691234, -25.816146606470642], + [-48.53123350753194, -25.816801844582155], + [-48.53089555334539, -25.817435857657713], + [-48.53044769420892, -25.817659235001056], + [-48.52955619494659, -25.818103883675], + [-48.529669346618434, -25.819547362535076], + [-48.530517496509916, -25.82127977227721], + [-48.53120949958107, -25.82269323743476], + [-48.531448364367286, -25.82318113579866], + [-48.53182222979192, -25.824240931842333], + [-48.53226564522615, -25.8254978797079], + [-48.532901984460565, -25.827301709079528], + [-48.5331956417225, -25.82813413732803], + [-48.53372705004057, -25.82897396487964], + [-48.533866530436455, -25.82919439649943], + [-48.53452780533959, -25.83087535478084], + [-48.535331124340544, -25.832412119625793], + [-48.53574242694937, -25.83319894852223], + [-48.5358571642351, -25.833418443214335], + [-48.53609288212735, -25.834217384627834], + [-48.53658402923809, -25.83588207440543], + [-48.53707032026943, -25.837530306194957], + [-48.53733462063484, -25.83842612553687], + [-48.53777872107768, -25.839404969361766], + [-48.538114461276784, -25.841002614586092], + [-48.53808648746872, -25.844426296119142], + [-48.538084104507426, -25.84471795416453], + [-48.53719410702479, -25.845377658865853], + [-48.536365414489694, -25.846505002448627], + [-48.53634982177656, -25.846603560507404], + [-48.53619355165238, -25.847591266096728], + [-48.53511190200806, -25.847881030312355], + [-48.53472563424611, -25.84952450366399], + [-48.53521247846206, -25.849832054274355], + [-48.53586170475078, -25.85024218542117], + [-48.53598877334123, -25.850531230085995], + [-48.53619727595113, -25.851005517535935], + [-48.536449099103294, -25.85157834687155], + [-48.5388915971757, -25.849490808420324], + [-48.538959437887854, -25.84932911019967], + [-48.539363769172226, -25.848365389885085], + [-48.54077671602991, -25.848014199687256], + [-48.54087604152756, -25.848032937397914], + [-48.542390106114304, -25.84831857198636], + [-48.54390666202335, -25.848968700614837], + [-48.54411330823736, -25.84905728701907], + [-48.54739152662395, -25.851609388716803], + [-48.54848007388257, -25.8520380725726], + [-48.549448901319444, -25.852660291805236], + [-48.55009057767154, -25.852819315939254], + [-48.550120722083534, -25.85261971982468], + [-48.55225490246098, -25.852934476590185], + [-48.55434644337076, -25.854003698578], + [-48.55593818886555, -25.853615229846163], + [-48.55652451688947, -25.85347213610305], + [-48.55929918711142, -25.85602739127109], + [-48.55935047350368, -25.8560746211263], + [-48.56448274497444, -25.8575300002118], + [-48.56548253283144, -25.858786066430387], + [-48.565788863688944, -25.860597730761118], + [-48.56526795527723, -25.863050912609154], + [-48.56413015913455, -25.86493289319997], + [-48.5640701807513, -25.86517599440778], + [-48.56404797497959, -25.86526599948471], + [-48.562950022270606, -25.869716147288536], + [-48.56295037429748, -25.869723174288435], + [-48.562964948411604, -25.87001459328291], + [-48.56304947287321, -25.871704613251126], + [-48.563635453486725, -25.87283414967069], + [-48.56560983677333, -25.876639970343913], + [-48.56734638937956, -25.879987350656755], + [-48.56746799075265, -25.880221749328516], + [-48.5676576070725, -25.88202193799989], + [-48.56773432703442, -25.88275030686684], + [-48.56800390944306, -25.885309676399373], + [-48.5681135346762, -25.886350447209136], + [-48.56780157659478, -25.88753326127957], + [-48.56659606191775, -25.888793131993125], + [-48.566273058736165, -25.889130699988197], + [-48.56605277261245, -25.889360917666757], + [-48.5651908251337, -25.889709478251426], + [-48.563980660113174, -25.888941483719222], + [-48.562669401341445, -25.888917699579803], + [-48.56252810799204, -25.888990640005463], + [-48.56053947307444, -25.890017247996443], + [-48.560478295084856, -25.890093594186432], + [-48.56000864316391, -25.89067968864545], + [-48.56010712421063, -25.89140525944858], + [-48.561221109818135, -25.892451068300605], + [-48.56203831813278, -25.89321826199096], + [-48.56212813208255, -25.893373389746237], + [-48.563389898425925, -25.895552731307127], + [-48.56465166377108, -25.897732072867036], + [-48.565809717020784, -25.899732279708815], + [-48.566100281094556, -25.900234144916332], + [-48.56806368186713, -25.903625360559744], + [-48.568181992119, -25.90382970923683], + [-48.56983498926935, -25.907143489783557], + [-48.571866025804674, -25.911215132309312], + [-48.57304129242612, -25.913571203140368], + [-48.57421655904949, -25.915927273970496], + [-48.57509289920908, -25.91768408260633], + [-48.576152202491194, -25.919807680747745], + [-48.57686940280778, -25.92124545881202], + [-48.577318966512806, -25.922282539615587], + [-48.5780715070636, -25.924018541612412], + [-48.57895400426503, -25.92605433626287], + [-48.57925415507519, -25.926746742463607], + [-48.579554306885406, -25.927439149664288], + [-48.5801744607584, -25.928869755012602], + [-48.58052829825084, -25.929686008070004], + [-48.58107025913207, -25.930936233626138], + [-48.581433567745215, -25.931774335658076], + [-48.58145735411774, -25.931848658597225], + [-48.58384020944329, -25.939294251489567], + [-48.58442489460459, -25.94112118799008], + [-48.586801413976936, -25.94637560762079], + [-48.58768831794098, -25.948336529242866], + [-48.589030382534226, -25.951303798643238], + [-48.58917793335868, -25.951630028247493], + [-48.59017489553634, -25.95489497570442], + [-48.59126012114987, -25.958448976935017], + [-48.59267299408687, -25.963075985327723], + [-48.59348139821367, -25.965723421262798], + [-48.59397719626546, -25.967347107995984], + [-48.59530025375599, -25.971679985614237], + [-48.594538802555604, -25.97281102100872], + [-48.59415047691011, -25.97502441243208], + [-48.59152371880672, -25.977313193493714], + [-48.59169759480202, -25.977379045986897], + [-48.59257235651254, -25.97735346639336], + [-48.59462250334536, -25.977293521253685], + [-48.59456145431933, -25.977043519080443], + [-48.598947973719696, -25.977167039402747], + [-48.59920798865538, -25.977159432716], + [-48.599470528940714, -25.97718174520221], + [-48.599823924939045, -25.97719168943595], + [-48.599834982586366, -25.97721271819058], + [-48.59995486913271, -25.97722290651128], + [-48.600320115100835, -25.9776026294759], + [-48.60064411633314, -25.97810432857766], + [-48.60067296791644, -25.978230272507606], + [-48.60085767265079, -25.979036562059335], + [-48.600892368091145, -25.97911618696634], + [-48.60111344189685, -25.97962353737365], + [-48.601342671450034, -25.980051674746896], + [-48.60137674618015, -25.98014467468261], + [-48.601660914373284, -25.980685058290838], + [-48.61101201394709, -25.979467210735294], + [-48.611008562133776, -25.979487614047354], + [-48.61128829643977, -25.97943634219634], + [-48.6120213740336, -25.979548549036853], + [-48.61237320481036, -25.97989156503544], + [-48.61241189588924, -25.980416759984504], + [-48.61231456055319, -25.980990369342635], + [-48.61206742291982, -25.981661189156743], + [-48.61157620882307, -25.98222133768117], + [-48.6109361005886, -25.982646691630517], + [-48.61040191614617, -25.983073295889437], + [-48.6102189750916, -25.98415454474948], + [-48.61368905117248, -25.98112114598578], + [-48.6180440049762, -25.98167657611004], + [-48.618524887586915, -25.98155306499582], + [-48.61880357077636, -25.98154716116867], + [-48.61902753973218, -25.981542415503807], + [-48.61966485057503, -25.98183745364921], + [-48.61973072914184, -25.981891664359537], + [-48.620626243148074, -25.982005850576584], + [-48.62072614008846, -25.974252885518723], + [-48.621546092484664, -25.975073009982246], + [-48.62156539010049, -25.975041870194435], + [-48.62188915083788, -25.974858053212287], + [-48.62201460312349, -25.974786826831682], + [-48.62269342139048, -25.97487440882924], + [-48.623140213713555, -25.975254340549768], + [-48.623477134713625, -25.975951416634423], + [-48.6237460964623, -25.976660485921883], + [-48.62398807791596, -25.977320621283386], + [-48.624025098144664, -25.977370459274795], + [-48.633631939827985, -25.977613821815545], + [-48.633243433023495, -25.973191518595634], + [-48.63313932414096, -25.973058697627128], + [-48.633209128143655, -25.972801023940818], + [-48.63298938019026, -25.970299586658616], + [-48.63989719001179, -25.966959498578237], + [-48.63847925699579, -25.963061344481073], + [-48.63844741659299, -25.963007236685872], + [-48.63843323607825, -25.962934820641713], + [-48.637685171147275, -25.96087815416141], + [-48.644957423339974, -25.956030793778414], + [-48.64532219252155, -25.95639106019498], + [-48.64569542411396, -25.9564347894072], + [-48.64690309338606, -25.95671918085755], + [-48.64794757017083, -25.95706413479893], + [-48.64877458118811, -25.957457287391097], + [-48.6494793257183, -25.957862289347236], + [-48.65002084280579, -25.958340077796205], + [-48.65049398108507, -25.95895198246374], + [-48.65111621933333, -25.959652400699042], + [-48.6514267885062, -25.96015394883596], + [-48.65154665642823, -25.960813686557326], + [-48.65165211613241, -25.961705384348658], + [-48.651939226478284, -25.962556885595916], + [-48.65196120981101, -25.96262208453832], + [-48.65196516485633, -25.962629829527426], + [-48.652296469788034, -25.963278675615705], + [-48.6538684623518, -25.964830985005335], + [-48.65413954277514, -25.964960609344345], + [-48.654763103731376, -25.965304304532985], + [-48.655277456791225, -25.965806430064166], + [-48.655672566368665, -25.966310760116965], + [-48.66225614071289, -25.968552032010056], + [-48.6623599116784, -25.969175721750016], + [-48.66270932705886, -25.969110114373922], + [-48.66274835030243, -25.969130501260345], + [-48.66306182325871, -25.96929426734802], + [-48.66323673675483, -25.96977097788343], + [-48.6630844081639, -25.97061308843324], + [-48.662895452648094, -25.971519357099382], + [-48.66289103170621, -25.971540558114945], + [-48.66294234608987, -25.97240766206271], + [-48.66293703676866, -25.97264429791962], + [-48.66316068828379, -25.9739884228729], + [-48.66322343740906, -25.974100015541097], + [-48.66524505946577, -25.97575941984748], + [-48.66548190348309, -25.975802691907422], + [-48.665633435241276, -25.97583037646033], + [-48.66633860250923, -25.976162031402612], + [-48.66696152322122, -25.976713248614452], + [-48.66739500335272, -25.97705635636545], + [-48.66740948146795, -25.977070719324086], + [-48.66781465469137, -25.97747269016583], + [-48.66822031978933, -25.977839623002055], + [-48.668288604310774, -25.977901387806217], + [-48.668302744481224, -25.977931301767587], + [-48.66849089274922, -25.978329331253924], + [-48.668708944410874, -25.978602507403842], + [-48.669469872284736, -25.97922703358801], + [-48.67612904271682, -25.977552219673044], + [-48.6773897149008, -25.97851767173713], + [-48.67744148830907, -25.97853334166257], + [-48.67789302641596, -25.978848186355357], + [-48.678091967784866, -25.978986901779496], + [-48.678203385364654, -25.979140785845285], + [-48.68065028934647, -25.981014576239126], + [-48.70985230412366, -25.983261352904986], + [-48.71092092787938, -25.9832354895772], + [-48.81975604028116, -25.98199138664711], + [-48.819822019371195, -25.98199104118827], + [-48.87165692298105, -25.98163101647628], + [-48.878002285918136, -25.981585944023003], + [-48.88226618628368, -25.98155542789328], + [-48.890624024896844, -25.98149523712472], + [-48.89127886027269, -25.981490383620812], + [-48.96078060420317, -25.980969425483003], + [-48.96041923267903, -25.981297258276737], + [-48.96095041406251, -25.98129165265041], + [-48.960699285828056, -25.98151983342646], + [-48.95107218283031, -25.99026725917665], + [-48.95105630400249, -25.990281687090505], + [-48.95335841714873, -25.991404426733457], + [-48.95356446794568, -25.9914563567544], + [-48.95381550928183, -25.99152577900268], + [-48.95405314261603, -25.99161023729251], + [-48.95428071098489, -25.991715752614436], + [-48.954413593219556, -25.99189496822801], + [-48.95450830948091, -25.991965207595072], + [-48.9546926384063, -25.99205510003382], + [-48.954798445588175, -25.9920878870824], + [-48.95501268766572, -25.992130192439404], + [-48.95522028053637, -25.992124339812488], + [-48.95541113233503, -25.99211847323619], + [-48.955588466543546, -25.992238994710775], + [-48.95576918064405, -25.992326414172567], + [-48.95602028076874, -25.992338652415793], + [-48.95619097174809, -25.99240499690618], + [-48.95633816883812, -25.992528502471927], + [-48.956418365784785, -25.992691079243016], + [-48.95658224616948, -25.99287478776332], + [-48.956679217065776, -25.99300427348109], + [-48.956751105726624, -25.993058936575075], + [-48.95684160116147, -25.993103066734125], + [-48.96178789816001, -25.990887859239038], + [-48.96179693742304, -25.990578512973993], + [-48.96178669405062, -25.990582565872135], + [-48.96156630084085, -25.99051162653162], + [-48.961319713326134, -25.990388767266065], + [-48.96114667786572, -25.990195192772767], + [-48.96097370117856, -25.9899402812743], + [-48.960937180147994, -25.98970434736564], + [-48.961357282220725, -25.989506504081955], + [-48.961499220975064, -25.98927542163505], + [-48.961609621768446, -25.98909149728707], + [-48.96171468987081, -25.98899721296243], + [-48.96176150688193, -25.988945865817048], + [-48.96184739476095, -25.988851669035196], + [-48.961848145007835, -25.98882599184472], + [-48.96179184618109, -25.988721392707482], + [-48.96177271996735, -25.988685857762338], + [-48.96169427847706, -25.98837439897411], + [-48.96185442373565, -25.988258383481472], + [-48.96186495229263, -25.98825075611612], + [-48.96198443516268, -25.984161044688012], + [-48.9627411504342, -25.984490470745325], + [-48.962780453708795, -25.98447536438398], + [-48.96302784241957, -25.984380276629796], + [-48.96317796715311, -25.984404207178716], + [-48.963348629259045, -25.984504899671702], + [-48.963433895076335, -25.98462669942418], + [-48.96348678372502, -25.984740536273602], + [-48.96360742151788, -25.984814725915577], + [-48.96373690230962, -25.984878336529867], + [-48.96387231395052, -25.984894315122474], + [-48.964066607844565, -25.984910337537375], + [-48.964246191636185, -25.984915762995936], + [-48.96445528328026, -25.984847109359357], + [-48.96454952356776, -25.984815421072465], + [-48.9646584181829, -25.984855197746988], + [-48.9648023438408, -25.984865889313475], + [-48.965034896958024, -25.984897817614144], + [-48.96518203286487, -25.984972025175995], + [-48.965296820485676, -25.98500651383232], + [-48.965438089279154, -25.985056899409987], + [-48.96553524369675, -25.985056970116784], + [-48.96571776353032, -25.985070334567016], + [-48.96586786038128, -25.985126019118425], + [-48.9659944081213, -25.985179039740654], + [-48.96610035374327, -25.98522410642449], + [-48.966188595455776, -25.985314149165312], + [-48.96621499796118, -25.98542002609411], + [-48.96625609861797, -25.985549731980345], + [-48.96634142520036, -25.985608015727482], + [-48.96639143657221, -25.985650395579885], + [-48.966370785659805, -25.985698016645998], + [-48.96634691689484, -25.985789192725345], + [-48.966385125323725, -25.98586067461564], + [-48.966496981882905, -25.985881927279696], + [-48.9665764772051, -25.985876692039337], + [-48.96665002673681, -25.98593496682199], + [-48.96659695782225, -25.98601961498891], + [-48.9665644571627, -25.986149267097307], + [-48.966699832960245, -25.98620758569335], + [-48.96671394572422, -25.98621988216403], + [-48.96817481815375, -25.98685578042774], + [-48.97841378443888, -25.988929606129616], + [-48.978560472358865, -25.98959367244977], + [-48.97862126572654, -25.989597809963502], + [-48.97870370507096, -25.98959521571432], + [-48.97887744665083, -25.98955033718604], + [-48.979008100117866, -25.98952495478933], + [-48.97912185152452, -25.989502856444037], + [-48.97925110185978, -25.989443527048934], + [-48.979425688457425, -25.989402483518358], + [-48.97960027405507, -25.989361438987842], + [-48.97978913586671, -25.98936155841735], + [-48.979912145566836, -25.98940793504942], + [-48.980032268378494, -25.989487747692703], + [-48.98006935607176, -25.98963181259192], + [-48.980229518160264, -25.98973994411662], + [-48.98040965958997, -25.989916936586116], + [-48.98048400218578, -25.98999157536739], + [-48.980466696759706, -25.99016647343327], + [-48.98048083064993, -25.990390261408077], + [-48.980500736336026, -25.990552320360564], + [-48.980429106457144, -25.990668022585858], + [-48.98032596262417, -25.990832576910396], + [-48.98028581486156, -25.990943155040206], + [-48.98037443765228, -25.99105381278119], + [-48.980400102191666, -25.99116957671265], + [-48.98035135048633, -25.991305574870434], + [-48.98031406572646, -25.991413582991548], + [-48.980368338426906, -25.991539652837364], + [-48.98038540598655, -25.991670844796108], + [-48.98037665773064, -25.99188175683893], + [-48.98038227326965, -25.99202065683273], + [-48.98022766001518, -25.99213116330844], + [-48.980115961992794, -25.99225455665562], + [-48.980164507687704, -25.992385767519103], + [-48.980273180478896, -25.992473289197665], + [-48.980459165373425, -25.992499127637767], + [-48.980627989156176, -25.99251466612887], + [-48.98082728214493, -25.99255049252958], + [-48.98090160683629, -25.99265085431277], + [-48.98087291408478, -25.9927511514073], + [-48.98086138443573, -25.992859175450523], + [-48.98094432402101, -25.99292095920479], + [-48.98100148261937, -25.993016165039563], + [-48.98094989676954, -25.993116447203185], + [-48.98082956095808, -25.993306712581496], + [-48.980677787820696, -25.993445515050897], + [-48.98055175386063, -25.993602338443914], + [-48.98049722139864, -25.993810649624915], + [-48.98058291750115, -25.994008760381377], + [-48.98067719664353, -25.99420766011202], + [-48.980737099825916, -25.994457198950474], + [-48.980759812791234, -25.994691280900096], + [-48.98081971895458, -25.994935673738073], + [-48.98090542700961, -25.99512092349347], + [-48.980962466189226, -25.995373031340705], + [-48.98090794567014, -25.995565909520533], + [-48.980864865228895, -25.995766511666307], + [-48.980859039690166, -25.995897688694143], + [-48.980844639066675, -25.996015930746847], + [-48.980910310064196, -25.9962088855634], + [-48.98112772735157, -25.99630419191384], + [-48.981313706303524, -25.996345462355062], + [-48.98146249702882, -25.99636870390725], + [-48.98180581393352, -25.99648466387877], + [-48.98198891296839, -25.996551652330723], + [-48.98209474169033, -25.99662373801652], + [-48.98209176025923, -25.996780639037627], + [-48.982025836481455, -25.99691692324746], + [-48.98191412052585, -25.99705832359607], + [-48.98190537925128, -25.997264091638478], + [-48.98186228587685, -25.997482698785735], + [-48.98172185527466, -25.997752690231028], + [-48.98159010325203, -25.997899221640523], + [-48.98152984576944, -25.998108568838926], + [-48.98148681509001, -25.998244865979533], + [-48.98150069550146, -25.99834838922018], + [-48.98644602005869, -26.000687697322427], + [-48.98637613332978, -26.000805531484417], + [-48.98641355078917, -26.000815585286972], + [-48.98644491395508, -26.0008240131929], + [-48.98662520275868, -26.000831834648395], + [-48.98682553658147, -26.00082166204204], + [-48.98702872446423, -26.00082435242792], + [-48.98713168125984, -26.000919582123977], + [-48.98719456094991, -26.001032793942645], + [-48.987157242381166, -26.00119224706767], + [-48.98711131788038, -26.001379988220975], + [-48.98715413663668, -26.001534271103452], + [-48.98714828327945, -26.001714321135008], + [-48.98715385309543, -26.00192781413463], + [-48.98710506956335, -26.00211041029617], + [-48.98697328670304, -26.002300674709268], + [-48.986861572747806, -26.00244207805789], + [-48.986804510760976, -26.00251170323574], + [-48.98670128678469, -26.002637652557556], + [-48.986680414834034, -26.002675108623546], + [-48.98660098802164, -26.002817648874647], + [-48.986497850131805, -26.002966775198047], + [-48.9863575220058, -26.003095302632197], + [-48.98617425973341, -26.00323409319698], + [-48.9859652134837, -26.003408877842375], + [-48.985764779137476, -26.003547657459087], + [-48.985521520082315, -26.003544941194377], + [-48.985309699381695, -26.003601403839095], + [-48.9851007367124, -26.003663011475634], + [-48.98496954539258, -26.003728719877373], + [-48.98485452411212, -26.003786329229523], + [-48.984777214970805, -26.003837772467207], + [-48.98477307099731, -26.003849715480662], + [-48.98473706322757, -26.003953496597514], + [-48.98472264570958, -26.00410010165247], + [-48.98471681521887, -26.00424413968117], + [-48.98474245492074, -26.004403629616018], + [-48.984745231362155, -26.00451937861657], + [-48.984733646999466, -26.00470456766585], + [-48.98475361540971, -26.004792033612265], + [-48.984754150992416, -26.004797693515428], + [-48.98511281027035, -26.00498487148198], + [-48.98515415079963, -26.004972323415238], + [-48.98529439534531, -26.004956972989994], + [-48.985503306291086, -26.004969957359364], + [-48.98571794325192, -26.004980373711277], + [-48.9859297182004, -26.004990787071776], + [-48.98606705000074, -26.005047455660872], + [-48.986144249704786, -26.005147815435233], + [-48.9863072898734, -26.00527394795196], + [-48.98644173579494, -26.00536662555261], + [-48.9866733842774, -26.00549794386233], + [-48.986885125426234, -26.005562371226965], + [-48.98705106641641, -26.005637059730983], + [-48.987191266209926, -26.00568858431105], + [-48.98733972393459, -26.005711968863885], + [-48.987371550089904, -26.005716981768025], + [-48.98746025355715, -26.005740182501643], + [-48.987629119235265, -26.005727417990016], + [-48.9877207841998, -26.00561172270387], + [-48.9879327282804, -26.005388065045832], + [-48.98812748336354, -26.0051849754413], + [-48.98832545230739, -26.004940655823845], + [-48.988356638298555, -26.004902168726613], + [-48.98858570667233, -26.00473768102135], + [-48.98881472332267, -26.004647785321943], + [-48.989032281971376, -26.00457074365806], + [-48.989192544679334, -26.00457597917384], + [-48.989364218636744, -26.004635235659272], + [-48.98956735184393, -26.004725376051905], + [-48.989801920434346, -26.004882410354615], + [-48.990132691451784, -26.00504313236661], + [-48.99025567938138, -26.005151234002913], + [-48.990510285048366, -26.005305706244766], + [-48.990647598953636, -26.005390664836018], + [-48.990802039180544, -26.005542508380618], + [-48.990985036864494, -26.005784393845683], + [-48.991105126982056, -26.00594650649486], + [-48.99112505165955, -26.006105991446805], + [-48.99114494052792, -26.00631691940273], + [-48.991210624574, -26.006522729219853], + [-48.99130207071173, -26.006723408958614], + [-48.99137924557807, -26.00686749373623], + [-48.9915681901824, -26.00708102318107], + [-48.99165970594802, -26.007181388911903], + [-48.99174550664152, -26.007268890659002], + [-48.99191144964117, -26.007346148163073], + [-48.9920459393529, -26.007382231759014], + [-48.992200458169826, -26.00742347129471], + [-48.9923263389686, -26.00749298891934], + [-48.99266402954421, -26.00752661090042], + [-48.99278993619988, -26.007557545521973], + [-48.99287862178161, -26.007611608257857], + [-48.99288425431183, -26.00774793625123], + [-48.992887034772586, -26.007868830251994], + [-48.9929356114111, -26.00798460311386], + [-48.99299565101288, -26.00807723393935], + [-48.99321023529802, -26.008175091297726], + [-48.99332183488273, -26.00820344496224], + [-48.99341625642226, -26.008239506679427], + [-48.99346199392446, -26.008321840547303], + [-48.99345904141781, -26.008458163566623], + [-48.993541941327976, -26.008607393327186], + [-48.99359907616562, -26.00876689916656], + [-48.993730571618855, -26.009006182786884], + [-48.993885031798506, -26.009145163330256], + [-48.99403753197255, -26.00928494387957], + [-48.99422349219205, -26.00939821832556], + [-48.99440656553278, -26.00954750278307], + [-48.99460107299914, -26.009717369207547], + [-48.99472408882397, -26.009797170841384], + [-48.99484714342925, -26.009817813470686], + [-48.9949730978274, -26.009779297086688], + [-48.99512191849565, -26.009787091637058], + [-48.99534228550014, -26.00980264097147], + [-48.99557695858512, -26.00982334026306], + [-48.99577156150752, -26.00984659167601], + [-48.995929005002694, -26.009797802196008], + [-48.99614084661713, -26.009718174549004], + [-48.99636125737334, -26.009666844878247], + [-48.99694580668506, -26.009613130105542], + [-48.99720335699251, -26.00966727733038], + [-48.99745805124952, -26.009711134562924], + [-48.997661160685965, -26.0098629959599], + [-48.997775539788805, -26.010027671626304], + [-48.99783835096622, -26.010272059454707], + [-48.99790285367366, -26.010387942268267], + [-48.99796413834582, -26.010498043091207], + [-48.99799586170528, -26.01055814999966], + [-48.9980727685768, -26.01070387177805], + [-48.998178552700146, -26.010883977471515], + [-48.99830721502685, -26.01109238809793], + [-48.99841299119788, -26.011285352792413], + [-48.998495897117806, -26.01143715255307], + [-48.99855592582479, -26.011558074380485], + [-48.998627542308796, -26.011703706041082], + [-49.00031009005506, -26.011446225551087], + [-49.00051526339503, -26.011330120433673], + [-49.00064698157888, -26.011227298027286], + [-49.000798756705706, -26.011085902557326], + [-49.00093048879409, -26.01095735914892], + [-49.00106216522614, -26.01092141274774], + [-49.0012424819628, -26.010911211201275], + [-49.001477154076376, -26.01093961849312], + [-49.00162020700632, -26.01102456906656], + [-49.00173173505881, -26.011178951740614], + [-49.00176541560674, -26.01122350000219], + [-49.00317571402996, -26.01100765052756], + [-49.00356509548158, -26.01146622924929], + [-49.003617641051335, -26.01141905505045], + [-49.00379797169243, -26.011383129501876], + [-49.00394677350376, -26.011429497054944], + [-49.0041413029321, -26.011589061477995], + [-49.00424138197372, -26.01175372618747], + [-49.00435003711899, -26.011936400872216], + [-49.00445010921793, -26.012116499582774], + [-49.00458741331438, -26.01225288817723], + [-49.004791329778335, -26.01241115857184], + [-49.00495729672081, -26.012472968074086], + [-49.00515471203734, -26.01259909448583], + [-49.00534642120517, -26.012691780912434], + [-49.00547802412422, -26.01278701052111], + [-49.005558115783714, -26.012871928284998], + [-49.005497930060294, -26.013015942477967], + [-49.005411961388646, -26.013203671752258], + [-49.00537752881411, -26.013357985868005], + [-49.00536174377495, -26.01358210420251], + [-49.007107904929946, -26.015638431636813], + [-49.009484874702885, -26.015589744629022], + [-49.00953999361638, -26.015490219423445], + [-49.00958982236238, -26.015364316263174], + [-49.009648901061304, -26.015215043073177], + [-49.0097806589296, -26.015027331660292], + [-49.009960964140134, -26.01487564910298], + [-49.010115521813844, -26.014878286635177], + [-49.010223555426926, -26.014918407311022], + [-49.01029580583689, -26.0149452400942], + [-49.010610678960354, -26.01488364013606], + [-49.01090265695657, -26.014814313246713], + [-49.011271950007774, -26.014670426117704], + [-49.01145801363509, -26.014624203550696], + [-49.01174997274595, -26.014585741663744], + [-49.01191883251913, -26.014598672153298], + [-49.01200401391719, -26.014607332895885], + [-49.012122035468636, -26.014619332539365], + [-49.012448296051986, -26.014668335554823], + [-49.01266005029626, -26.014758446920133], + [-49.01280882437526, -26.0148768264783], + [-49.01296040487736, -26.015105811036147], + [-49.01300304327745, -26.015164161911265], + [-49.01319541508227, -26.01542742934806], + [-49.01332973650082, -26.01551090805169], + [-49.01387787752798, -26.01549966039269], + [-49.01408557978196, -26.015394341649408], + [-49.014174343036196, -26.015360196378012], + [-49.014285970356035, -26.015317256036766], + [-49.01447487317708, -26.015319901464796], + [-49.014666621134616, -26.01535598688661], + [-49.014702981384694, -26.015381259778298], + [-49.01479251400058, -26.015443489511746], + [-49.01483316523327, -26.015480053244126], + [-49.01648783557503, -26.015446076375206], + [-49.01662432375457, -26.01541332796048], + [-49.01684187946898, -26.015354250297086], + [-49.01705814321091, -26.01530402863829], + [-49.01734153416996, -26.015234685774757], + [-49.01761346019451, -26.015196204948136], + [-49.01783668040196, -26.015263164276732], + [-49.01794410540533, -26.015416157723607], + [-49.020683372662624, -26.015359840366855], + [-49.02965205217427, -26.003905135566335], + [-49.04091776802698, -26.003988349721137], + [-49.04107769082248, -26.004412723498305], + [-49.041216951192354, -26.004363401635974], + [-49.04138579508874, -26.00440973712738], + [-49.041580394105274, -26.004458649540883], + [-49.04176068602213, -26.004497268996992], + [-49.04206688868002, -26.004589930075102], + [-49.04232442629183, -26.00472630730387], + [-49.04257624680252, -26.004842104548544], + [-49.04279086903895, -26.004927027903772], + [-49.04297688101852, -26.004975936343268], + [-49.04328023644401, -26.005009433425748], + [-49.04348342937297, -26.005024904810764], + [-49.043549233951914, -26.005104654616858], + [-49.04354634735615, -26.005216639633566], + [-49.04355265149691, -26.005247183616518], + [-49.04358350918553, -26.00539669953348], + [-49.0437294254813, -26.00557677910368], + [-49.04379706399274, -26.005636272902727], + [-49.043861047476504, -26.00569255171269], + [-49.04393255542441, -26.005864900507937], + [-49.043901033911375, -26.006032085615338], + [-49.04378651604227, -26.006199254974337], + [-49.04376411211188, -26.00624378404533], + [-49.04365194146048, -26.00646673440119], + [-49.04370338679732, -26.006766707266234], + [-49.04364609044176, -26.007005908456794], + [-49.043745181231344, -26.007103913163284], + [-49.043817768809845, -26.00717570394812], + [-49.04381908502665, -26.007232460948092], + [-49.043823434743416, -26.007420060948157], + [-49.04396361821579, -26.0076541555395], + [-49.04412385644867, -26.007800799063837], + [-49.044151960608914, -26.007811467979355], + [-49.0443356306562, -26.007881194427267], + [-49.044369922626416, -26.00810240833879], + [-49.04434743071255, -26.008151470410418], + [-49.04422961016372, -26.00840847278583], + [-49.044132255473535, -26.008603940094808], + [-49.044129391480524, -26.008609084103842], + [-49.04400340978247, -26.00883541150175], + [-49.04379729761625, -26.009028284140435], + [-49.0436484267052, -26.009223740605556], + [-49.04350813688828, -26.009434631045874], + [-49.04344511550445, -26.009672821253716], + [-49.04346824069817, -26.00969823418534], + [-49.0435738735833, -26.009814314873175], + [-49.04367686077511, -26.010015852575055], + [-49.04368253752705, -26.010211338571597], + [-49.04374256399069, -26.010535443412287], + [-49.04376822268046, -26.010959856364238], + [-49.043764074126535, -26.01108448238558], + [-49.043759575610295, -26.01121964340873], + [-49.043679767323844, -26.01131722408668], + [-49.04383285767162, -26.011723418665273], + [-49.043862887012736, -26.011746028132364], + [-49.04397306741017, -26.011725841796807], + [-49.04400313751866, -26.011720332705174], + [-49.044183471957226, -26.01163034115181], + [-49.04425790006591, -26.01157376692218], + [-49.04438958714254, -26.01144261151352], + [-49.04451556197444, -26.011252294118158], + [-49.04464148466786, -26.011293472739062], + [-49.04481320350993, -26.01132179822024], + [-49.04497633924798, -26.011332116726106], + [-49.045007800737224, -26.011427292637425], + [-49.04508218260207, -26.01157391942205], + [-49.04503923174335, -26.011661365558492], + [-49.045170881403834, -26.01168711116098], + [-49.04529679720255, -26.011756581783878], + [-49.045213763411226, -26.011908325046296], + [-49.045064924935495, -26.01195202450092], + [-49.04501699287364, -26.011990628648963], + [-49.0449819088283, -26.01201888575733], + [-49.04498190783785, -26.01202145775755], + [-49.045036243808184, -26.012219524606657], + [-49.04504226784637, -26.01222282958861], + [-49.04520508587724, -26.01231215310094], + [-49.045230814495184, -26.012448483032546], + [-49.04514204975407, -26.01262032231375], + [-49.045133434214996, -26.012754074349296], + [-49.04521927791843, -26.012844116095206], + [-49.0451877583864, -26.01300615720215], + [-49.045134817408545, -26.013073089367385], + [-49.045110459418744, -26.013103885443492], + [-49.044881483532095, -26.013129565139838], + [-49.04464677280276, -26.013204114856947], + [-49.044709715475, -26.013312157673653], + [-49.044875708349934, -26.013355915173186], + [-49.04489001744964, -26.01336620613058], + [-49.04503024137676, -26.013453685711298], + [-49.045179047426984, -26.013564315267693], + [-49.045188772485204, -26.013568770238507], + [-49.045330724336196, -26.013633791812406], + [-49.045508150528356, -26.013749570282304], + [-49.04566553771107, -26.013885922814474], + [-49.04580575379149, -26.01401455639806], + [-49.045900170780705, -26.01417147512262], + [-49.04595737666778, -26.01434381996117], + [-49.045880046216354, -26.014580264212224], + [-49.04587377623862, -26.014593486232233], + [-49.04581418645091, -26.01471914942178], + [-49.045871398223014, -26.014860628258116], + [-49.04601733836638, -26.014999550825124], + [-49.04612066921961, -26.015109651519396], + [-49.04617185964226, -26.015164196367788], + [-49.0461918495133, -26.01537511732193], + [-49.04613676771797, -26.015493555497358], + [-49.04609735486446, -26.015578301622742], + [-49.04596279003041, -26.01577789204503], + [-49.04581105011677, -26.015975923519257], + [-49.04586823044429, -26.016266590366108], + [-49.0460055757136, -26.016449237962114], + [-49.04612002192301, -26.016642170628337], + [-49.046189075587066, -26.01674093742575], + [-49.04624592013359, -26.01682224325906], + [-49.04635177933491, -26.017022890951885], + [-49.04646331345629, -26.0174640756443], + [-49.046534835357086, -26.017623563438416], + [-49.04652048104258, -26.01782419049603], + [-49.04644604109673, -26.01792449272884], + [-49.046440266934084, -26.018155986762523], + [-49.04648887402381, -26.018392633631585], + [-49.04663481330139, -26.018567566200986], + [-49.046815103649756, -26.0187219276647], + [-49.04695245789062, -26.018896859260128], + [-49.047020211207304, -26.018947609807427], + [-49.051803769607574, -26.017273090947416], + [-49.05225384208797, -26.017699937057483], + [-49.05241144087108, -26.017705475611333], + [-49.05251731986189, -26.017849531299987], + [-49.05249708704126, -26.017921006366308], + [-49.052494939908115, -26.017928591043265], + [-49.05520997906478, -26.02050341266174], + [-49.06070203063035, -26.015995975036482], + [-49.06069562162827, -26.015888299340027], + [-49.06083586920088, -26.01588059391367], + [-49.06084385192177, -26.015879571785526], + [-49.061783956397534, -26.01510794858453], + [-49.06180217114806, -26.015022862921516], + [-49.06194814558226, -26.014971429474844], + [-49.061951852669814, -26.01497014014151], + [-49.06242734201403, -26.014579857872167], + [-49.062414712915036, -26.014523901027886], + [-49.06255841614987, -26.014421578584592], + [-49.062644646057635, -26.01440149298994], + [-49.06868334687591, -26.00944451765678], + [-49.06964028701684, -26.00532934865053], + [-49.06958136620415, -26.00528369664436], + [-49.069446857995366, -26.0051139320413], + [-49.06937531325199, -26.004996663250637], + [-49.06920646294398, -26.004839757752677], + [-49.06900984191865, -26.004790666346317], + [-49.06900040586947, -26.004788310374806], + [-49.06881152091645, -26.00474972494565], + [-49.06872280503809, -26.004615970205997], + [-49.06874284248195, -26.00444363513356], + [-49.068639817427304, -26.004279015435262], + [-49.068536792545125, -26.004160693740022], + [-49.0685024528902, -26.004024368835058], + [-49.06863410301348, -26.003906051427446], + [-49.06863696749886, -26.003764582409218], + [-49.06851104834613, -26.00359996178036], + [-49.06843378058392, -26.00348421200713], + [-49.06858546471909, -26.00334602253734], + [-49.06866845988301, -26.003294580281963], + [-49.068694912977, -26.00328937020133], + [-49.068877377624865, -26.003253429644918], + [-49.0690004364874, -26.00334345727742], + [-49.069134942379875, -26.003428340874784], + [-49.06927231214089, -26.0034746424609], + [-49.06942399262781, -26.003430917997523], + [-49.06958425899826, -26.003346038505242], + [-49.06954705883289, -26.003075960599958], + [-49.06945548187522, -26.002924201867827], + [-49.069312389926914, -26.00283417429617], + [-49.06920936338004, -26.002805878606967], + [-49.06916489500913, -26.002757432738797], + [-49.0691149235922, -26.00270299088675], + [-49.0691664393627, -26.002582099722257], + [-49.06927829656395, -26.002507494377628], + [-49.06937273794938, -26.002502351090598], + [-49.069384658037535, -26.002512304055127], + [-49.069452838541636, -26.002569232851865], + [-49.06958162679646, -26.002489496455606], + [-49.06975048031868, -26.002435481939344], + [-49.06981630285931, -26.002504931744188], + [-49.06976478528052, -26.002677266912194], + [-49.06972471553999, -26.002793015041643], + [-49.06977622903862, -26.00286760889029], + [-49.06986780950756, -26.002888187613586], + [-49.06999373488418, -26.002844460228367], + [-49.07010535097912, -26.002741573882624], + [-49.07022696510123, -26.002806264588095], + [-49.071105386637484, -25.999028261525293], + [-49.07303254864799, -26.000946595880507], + [-49.07306425493333, -26.00093735777851], + [-49.07314465814301, -26.00090119153191], + [-49.073295290812496, -26.00090772707499], + [-49.07352879998297, -26.000953430369183], + [-49.07360201765223, -26.00104888915321], + [-49.073612547742364, -26.001060984121985], + [-49.073748957910325, -26.001217662718364], + [-49.07379023417174, -26.001240392594507], + [-49.07396819429906, -26.001338393060735], + [-49.074140350651334, -26.001503430549025], + [-49.07423458839801, -26.00159551026909], + [-49.07420254084439, -26.00175217037682], + [-49.07420159885751, -26.00175677638004], + [-49.07400251336977, -26.001854756991015], + [-49.07395099628725, -26.001860806647212], + [-49.074172044476676, -26.002080832252965], + [-49.07424908820013, -26.002062571256186], + [-49.074420998906184, -26.002054438733644], + [-49.07447446226662, -26.002089693573655], + [-49.0745736789353, -26.002155121276758], + [-49.07454439899642, -26.00220516836906], + [-49.074517026053435, -26.00225195545523], + [-49.07443708853709, -26.002344648733526], + [-49.07487007368057, -26.002775625015506], + [-49.07499642385088, -26.00272003203075], + [-49.07510476540644, -26.00274461070341], + [-49.075114671884364, -26.002861491681085], + [-49.07506257230537, -26.002967229158685], + [-49.07521340510351, -26.003117360493203], + [-49.07532340257825, -26.003076139061637], + [-49.07547130168474, -26.003203085620893], + [-49.075454784838286, -26.003357616587394], + [-49.075762535325275, -26.003663932546917], + [-49.07588035394126, -26.003606820405572], + [-49.07595554429655, -26.00361573117784], + [-49.076044487202616, -26.00375665191712], + [-49.07604030843275, -26.003940409007708], + [-49.07826237441406, -26.006152039057383], + [-49.078281088720665, -26.006154896283252], + [-49.07841386949494, -26.00621003588361], + [-49.07859680750155, -26.006269860331866], + [-49.07878171319394, -26.00624313776844], + [-49.07893551504567, -26.006294898304702], + [-49.078918850646716, -26.00647528736728], + [-49.078896827644044, -26.006499889435794], + [-49.07880281263281, -26.006604913728303], + [-49.07877802634863, -26.006665253141854], + [-49.0788783743376, -26.006765126010546], + [-49.082236005877995, -26.005790815591034], + [-49.08221160444417, -26.00558841630598], + [-49.0821393156245, -26.005451570516566], + [-49.08221331048338, -26.00532869928371], + [-49.082390866975224, -26.00525666373954], + [-49.082513909243936, -26.005187392361155], + [-49.08283997305927, -26.005031493360285], + [-49.08300069849194, -26.00496291186751], + [-49.08321171333185, -26.00494579022541], + [-49.08346036214702, -26.004878820465546], + [-49.08371217214433, -26.00485708269905], + [-49.083891012118926, -26.004913061159392], + [-49.08402636217094, -26.005039768756472], + [-49.08418028432794, -26.005173325297548], + [-49.08419478043697, -26.005185903254397], + [-49.08422604576788, -26.00521330473103], + [-49.0909342365842, -26.003266335097333], + [-49.091054708124815, -26.003596694907532], + [-49.09119997867205, -26.003641032867137], + [-49.091407782828504, -26.00371258924025], + [-49.0915344238987, -26.003854186864412], + [-49.09154594409575, -26.003893781832062], + [-49.091600493028395, -26.004081260678404], + [-49.09172537038208, -26.004300888313104], + [-49.09183275550889, -26.004479780998253], + [-49.091846464652704, -26.004502617957968], + [-49.09200763939269, -26.00478413148633], + [-49.0921244616589, -26.00498954614456], + [-49.09205903949751, -26.005289508362743], + [-49.09202120704896, -26.00548080449015], + [-49.09192843444568, -26.00569368378588], + [-49.091863792941176, -26.00581533983593], + [-49.093481100050596, -26.0102500248161], + [-49.09726785937906, -26.009344515495894], + [-49.09737171197812, -26.009239599465637], + [-49.09755033960329, -26.008934169903004], + [-49.09769795937449, -26.008703462439392], + [-49.09786755976096, -26.008612439917904], + [-49.09799693039379, -26.008633619525853], + [-49.09814777272409, -26.008817062078894], + [-49.09816344366309, -26.00905074504613], + [-49.098157807064084, -26.009131689949932], + [-49.103131334542475, -26.00794218433705], + [-49.10339784846027, -26.00684047297729], + [-49.10337510457638, -26.006800842054233], + [-49.1033838658559, -26.00659772101473], + [-49.10347045583317, -26.006540325471384], + [-49.103672655336474, -26.005704454913523], + [-49.10354473279051, -26.00559177546186], + [-49.10331247441545, -26.005489676161737], + [-49.103230667086706, -26.005495409410923], + [-49.103056570387125, -26.005507608941052], + [-49.10290242159055, -26.00547092540762], + [-49.102934440280244, -26.0053510463026], + [-49.10306880610589, -26.00515020888127], + [-49.10307449207554, -26.00513554986304], + [-49.10313550474975, -26.004978257667517], + [-49.10325527584911, -26.00486750229628], + [-49.103403932144175, -26.004776093838377], + [-49.103579606936, -26.004786817304915], + [-49.103738366682464, -26.00480476182322], + [-49.10388020938341, -26.00482992739338], + [-49.103883694803436, -26.00483202602956], + [-49.1039641354559, -26.004499483523134], + [-49.10575571476155, -26.001335671174253], + [-49.10575836827209, -26.00130620045931], + [-49.10580332673065, -26.001251588728334], + [-49.10704156965376, -25.999064808217163], + [-49.10741967556098, -25.9994636665426], + [-49.10752282346115, -25.999333560969433], + [-49.1077077111523, -25.99930680240546], + [-49.10780776665729, -25.999327442102516], + [-49.10790463167792, -25.99948992481809], + [-49.107913302361716, -25.999663248802637], + [-49.10788762474513, -25.99979544488897], + [-49.10786594006888, -25.99990708096193], + [-49.10785739136054, -25.999925402040805], + [-49.11221895224008, -26.004526044883313], + [-49.11232072941167, -26.004538312700955], + [-49.11240654313592, -26.00463397944581], + [-49.112400155974356, -26.004717171234137], + [-49.112882079670946, -26.00522548084995], + [-49.115299623674574, -26.00350229402267], + [-49.115277519019806, -26.003455830637627], + [-49.115266729677785, -26.00337658166549], + [-49.11544895510419, -26.003282004105156], + [-49.11565699507936, -26.003247557379797], + [-49.12271035296916, -25.998219456594207], + [-49.12267623993912, -25.998172977798877], + [-49.12264840549962, -25.998087155878377], + [-49.12259395564006, -25.99791927403376], + [-49.12270265843758, -25.997740542692004], + [-49.12290588694066, -25.997642571067626], + [-49.12313179494993, -25.99765417738085], + [-49.12336414131039, -25.997752481679818], + [-49.12336519057774, -25.997752604236105], + [-49.12381950927199, -25.997428703450094], + [-49.123741722418195, -25.997348971506064], + [-49.12374005698936, -25.997236008504316], + [-49.12382052618421, -25.997196052256967], + [-49.12396554206688, -25.997266428819884], + [-49.12401853878376, -25.997286806819435], + [-49.12436661213929, -25.997038648937053], + [-49.1243837205617, -25.99692011752621], + [-49.12445030021846, -25.99675191931338], + [-49.12458937866778, -25.996713018887732], + [-49.12473473049577, -25.99676834344869], + [-49.12474167372964, -25.996771247683196], + [-49.125544110765425, -25.99619914023675], + [-49.126310014810535, -25.99663666147682], + [-49.12645381052493, -25.996682643211535], + [-49.12649127556693, -25.99674020530128], + [-49.12828098127193, -25.99776253965501], + [-49.12828628222788, -25.997718876696645], + [-49.128331252902925, -25.997580402551392], + [-49.1284506580559, -25.997484678182136], + [-49.128605225783275, -25.997502520712683], + [-49.128719933703074, -25.997617520370486], + [-49.12878163385667, -25.997855791197047], + [-49.1287739960391, -25.998044157870055], + [-49.12976119141611, -25.998608051392374], + [-49.12966630468022, -25.99840250853694], + [-49.12960497210476, -25.998318630718572], + [-49.12952404834549, -25.99820795995826], + [-49.129470047337726, -25.997999943110145], + [-49.129491490643616, -25.997789519032178], + [-49.12961634160925, -25.997637424642992], + [-49.129763209190756, -25.997625011195097], + [-49.12985941232545, -25.99781873091393], + [-49.12987263797336, -25.997977075883142], + [-49.129926526998744, -25.998189964731953], + [-49.13008310410036, -25.998305718262227], + [-49.130203845737114, -25.998338007896628], + [-49.13034652630038, -25.99832551946143], + [-49.130540368931186, -25.998272541868158], + [-49.130685893731695, -25.998320335427973], + [-49.130767111506096, -25.998434731187654], + [-49.1308520133809, -25.998571778937368], + [-49.13095031217332, -25.99867142364407], + [-49.13105162417557, -25.998823823344907], + [-49.131010424587274, -25.99898118847973], + [-49.13092216596335, -25.999182879760557], + [-49.1309071611062, -25.99923830380953], + [-49.13090145893691, -25.99925936618668], + [-49.13115455282944, -25.999403929945856], + [-49.13114850260426, -25.99936317108227], + [-49.13127971293495, -25.99930153667914], + [-49.13144960496782, -25.999383648166745], + [-49.131559710938085, -25.99951738483953], + [-49.13175271140884, -25.999690258262287], + [-49.13189748333269, -25.999771915826393], + [-49.13190451864532, -25.999832295571544], + [-49.13199352751323, -25.999883135222017], + [-49.13192058335043, -25.99997016885056], + [-49.13192561435483, -26.000013346755217], + [-49.13191977283866, -26.00014953978113], + [-49.13191690207634, -26.000216468793894], + [-49.13199728398784, -26.000368492558234], + [-49.132117020789046, -26.000445934198428], + [-49.13226598302797, -26.000339445738373], + [-49.132276815019814, -26.000324857704545], + [-49.13236529195298, -26.000205712427988], + [-49.13236445638676, -26.000055119421496], + [-49.132511073009255, -26.000053991974983], + [-49.13259137093453, -26.00020977773983], + [-49.13263155909346, -26.000474010633393], + [-49.13269293330207, -26.000727330461586], + [-49.13271108082541, -26.00084664741348], + [-49.13273312246105, -26.00099156335504], + [-49.132751792624966, -26.001281760315585], + [-49.13267400139827, -26.00157775157016], + [-49.13260642690651, -26.001791108788687], + [-49.13249565217661, -26.00199016213793], + [-49.13247990221505, -26.002018464187536], + [-49.13229643899504, -26.002169507755305], + [-49.13201015001907, -26.002235882631066], + [-49.13176425944081, -26.0023624793874], + [-49.131571495631945, -26.00236654097459], + [-49.13154060006182, -26.002249287061613], + [-49.131601430833996, -26.002118706868593], + [-49.131615381781764, -26.002088758824325], + [-49.13164067716034, -26.001893459735584], + [-49.131537598445455, -26.001820081045018], + [-49.131302129591795, -26.001861020764476], + [-49.13112644550399, -26.002038556310097], + [-49.130939291183495, -26.00216694688768], + [-49.130747950844786, -26.002295260478014], + [-49.13069837422013, -26.002452475638364], + [-49.13080376630225, -26.002621519327583], + [-49.13080756034127, -26.00262760531641], + [-49.130926378293175, -26.002746440961783], + [-49.13100785102669, -26.002849547719876], + [-49.131096607974634, -26.00300172245871], + [-49.130981047894764, -26.00311257681728], + [-49.13080495017222, -26.00312070135396], + [-49.130677087551916, -26.00310099374218], + [-49.130583721098986, -26.003086604025633], + [-49.1303599764367, -26.003165394711615], + [-49.13034113270648, -26.003259166774647], + [-49.13046865964001, -26.0033631013926], + [-49.13058701144056, -26.00344193203698], + [-49.130625494700844, -26.00346756492124], + [-49.130597440071234, -26.00359881501456], + [-49.13053997090463, -26.003619979190827], + [-49.13047074570386, -26.003645472403207], + [-49.13029088089464, -26.003634705950226], + [-49.1301138623228, -26.00368422149222], + [-49.13004677727932, -26.003749374700405], + [-49.129976866234145, -26.003817273917296], + [-49.1299551719697, -26.004038985996736], + [-49.12978015977219, -26.004186412538527], + [-49.129683946340286, -26.004180915831174], + [-49.12958665038324, -26.00403611511871], + [-49.129570077579906, -26.0038400661574], + [-49.129564483345895, -26.003783806171], + [-49.129542705434446, -26.00356476922414], + [-49.129436953454885, -26.003423581537692], + [-49.12928589485504, -26.00343591899831], + [-49.129198552080474, -26.00359621627387], + [-49.12922400183787, -26.003769839206907], + [-49.12925782363165, -26.0039436121144], + [-49.12928762737987, -26.004109784033616], + [-49.12935025438319, -26.00430666285482], + [-49.1294479702717, -26.0044326495648], + [-49.12956385900005, -26.00449496821572], + [-49.129710229663914, -26.004505132770642], + [-49.129785324882846, -26.004477793540296], + [-49.129858026094816, -26.004451327317355], + [-49.12999619069492, -26.004453814896813], + [-49.13010278453754, -26.004557374578415], + [-49.130145655258175, -26.004701196456523], + [-49.130148569324746, -26.004715679448573], + [-49.13018986326799, -26.00492087433517], + [-49.130303663635644, -26.004889042986665], + [-49.13033958938376, -26.00478051987073], + [-49.13034710620259, -26.00472340384447], + [-49.130364797775975, -26.004588985782508], + [-49.13036120095862, -26.00437434478058], + [-49.1304587561714, -26.004319634480215], + [-49.13056543600034, -26.00441943216138], + [-49.13061249373915, -26.004563330026706], + [-49.13062186694833, -26.004608595000914], + [-49.130657874752046, -26.004782485901696], + [-49.13074755554947, -26.004893270635204], + [-49.13085716460211, -26.005049586310854], + [-49.131004203859575, -26.00521786787318], + [-49.13101891301958, -26.005243839829955], + [-49.13112913421801, -26.005438453505903], + [-49.131208764253074, -26.005624344274604], + [-49.13132331420067, -26.005746866933087], + [-49.13147186221159, -26.005847414486784], + [-49.1315962099626, -26.005906118111604], + [-49.13165097084749, -26.006080266955266], + [-49.131624334985844, -26.0061477630404], + [-49.13153297416578, -26.006300461327736], + [-49.13150306371952, -26.006482871429842], + [-49.13149419988358, -26.00653692446004], + [-49.131570649736126, -26.006677584235646], + [-49.13158077279491, -26.00668174420503], + [-49.131695167459796, -26.006728761859435], + [-49.13185426815073, -26.006731624375135], + [-49.132011526143245, -26.006817269901326], + [-49.132025424681906, -26.0069455108667], + [-49.13191849059725, -26.007045227198333], + [-49.131710316199616, -26.007177001840216], + [-49.131602543252, -26.00731434617666], + [-49.13158675647443, -26.007442447044685], + [-49.13210940517496, -26.007879405238313], + [-49.132181307711036, -26.007845286445704], + [-49.13235000231441, -26.007813720930077], + [-49.132383201433164, -26.0078075078285], + [-49.13259891070769, -26.007901734177196], + [-49.132692360591896, -26.00803140490032], + [-49.13267686801698, -26.0081628819553], + [-49.13260044010725, -26.00827448119476], + [-49.13259371289232, -26.00828430419352], + [-49.133016784713746, -26.008638004218238], + [-49.13306457438923, -26.008621584801823], + [-49.13309655147491, -26.00860792670365], + [-49.13326755793319, -26.0085348871784], + [-49.133460408728546, -26.008527060590456], + [-49.13354892071799, -26.00869052233064], + [-49.13347414099827, -26.00885104856796], + [-49.13337267030577, -26.008935532137116], + [-49.13379459747046, -26.009288269236688], + [-49.13381747389645, -26.009233663544997], + [-49.13391653786235, -26.009111218235926], + [-49.13408033448936, -26.009091575735763], + [-49.13414777094213, -26.009135561532954], + [-49.13417529612689, -26.009153513450155], + [-49.134126141434045, -26.009291914608223], + [-49.134014700922734, -26.009472277565305], + [-49.13417145389402, -26.009603323825477], + [-49.134229562797884, -26.00953846330786], + [-49.134244802413725, -26.00941827425426], + [-49.134298395083725, -26.009268660082153], + [-49.134337954495706, -26.009066091949506], + [-49.1343133336007, -26.008854839011935], + [-49.13431339035122, -26.00878800500777], + [-49.134313499869776, -26.008659089999743], + [-49.13441809163458, -26.008476510670263], + [-49.13458071745349, -26.008509549176903], + [-49.134782702865415, -26.00865622857031], + [-49.134808245609534, -26.008826088502637], + [-49.13487951060847, -26.009011826296614], + [-49.134867819826276, -26.00935099335241], + [-49.134867695839326, -26.00935460635295], + [-49.13490546569281, -26.009539743248954], + [-49.134935818924504, -26.00956699915801], + [-49.135008133476475, -26.00963193494164], + [-49.13510292914144, -26.009701397656972], + [-49.135070187576225, -26.00985515176586], + [-49.135118173164564, -26.009957653625808], + [-49.135166324725496, -26.010052629484754], + [-49.13525726831755, -26.010106966210877], + [-49.13543173883982, -26.010047118675857], + [-49.1354345478482, -26.010046154667215], + [-49.13562036738787, -26.00997796809704], + [-49.135647483341906, -26.00993465301188], + [-49.135715912225855, -26.009825342796926], + [-49.135782399895405, -26.0096609015846], + [-49.135853909446055, -26.00945890735474], + [-49.135908922882884, -26.00924532217444], + [-49.13609499038139, -26.00916584660291], + [-49.13623534032861, -26.009258714180785], + [-49.136407428709255, -26.009431203666807], + [-49.13657733774262, -26.009513308153974], + [-49.13686473324412, -26.009586227282803], + [-49.13706788846416, -26.00968022066941], + [-49.13729566287546, -26.00979724198236], + [-49.13748784578044, -26.009819514398142], + [-49.13772817654264, -26.009748538661672], + [-49.137913407178196, -26.009706690094845], + [-49.13803374288376, -26.00975778773116], + [-49.13797621815472, -26.009896038914658], + [-49.1379444014387, -26.010008400018222], + [-49.13795329193614, -26.010131274998468], + [-49.13795541005459, -26.010160539993695], + [-49.13795722015585, -26.010185557989658], + [-49.13798697091623, -26.010354921909098], + [-49.137987059606296, -26.010539382919724], + [-49.13791345469485, -26.010647232150323], + [-49.13770318393648, -26.01068486779324], + [-49.13762251067979, -26.010708474040438], + [-49.137509242319354, -26.010741618387517], + [-49.13733598483438, -26.010810032919437], + [-49.137261293101155, -26.010966799156353], + [-49.13742162820423, -26.011078483674385], + [-49.13742216220795, -26.011078855672796], + [-49.137648094217255, -26.01109043898506], + [-49.13778057504601, -26.011160576585578], + [-49.13779397766717, -26.011311394553633], + [-49.137788793517316, -26.01154469558327], + [-49.13767675256556, -26.011685732933017], + [-49.13746346930078, -26.011858833593173], + [-49.137251273857764, -26.011983014247054], + [-49.1372316318417, -26.012001186307973], + [-49.13714056771587, -26.012085433469043], + [-49.13772372114354, -26.01257291728506], + [-49.137926616044695, -26.012597890225557], + [-49.13821486140916, -26.01263317934931], + [-49.138489372911074, -26.012720923517982], + [-49.13868701233261, -26.012875046924872], + [-49.13877419754172, -26.013098711672303], + [-49.13885744669159, -26.01331101343123], + [-49.13898742293191, -26.013494037045884], + [-49.13902471069328, -26.013660449911498], + [-49.14124397859928, -26.015515525550455], + [-49.14286305546613, -26.011088359296718], + [-49.14679479689049, -26.009868247326352], + [-49.14692305830763, -26.010296836834424], + [-49.147019289158656, -26.01025572537649], + [-49.14728071898386, -26.010177583574976], + [-49.14751846417079, -26.010223244852924], + [-49.147751938353366, -26.01027259314408], + [-49.14791398326794, -26.01033195665356], + [-49.14794766909011, -26.01051325156137], + [-49.147844099161546, -26.010650683885096], + [-49.14766341219381, -26.010865789448296], + [-49.147534469197275, -26.01101406084999], + [-49.14734399642449, -26.01129244344683], + [-49.14725949220067, -26.011421027437756], + [-49.14785040772607, -26.013395517945284], + [-49.14798462199336, -26.013385629615183], + [-49.14815881603134, -26.013464031088613], + [-49.14818823045081, -26.013546438049527], + [-49.1484137266142, -26.013270886367383], + [-49.14838689597936, -26.013189540377365], + [-49.14820782632875, -26.01295294590959], + [-49.148173151059176, -26.012920519013484], + [-49.14795749338293, -26.012718841659215], + [-49.1478560643932, -26.012570216959883], + [-49.14782204562599, -26.012403974053992], + [-49.147921263563816, -26.012273992743953], + [-49.14808724753795, -26.012344720241998], + [-49.14824402561284, -26.012452925770297], + [-49.14839251263775, -26.012557219323657], + [-49.14851658932407, -26.012598906947755], + [-49.14854635148875, -26.012608906857643], + [-49.148732166027855, -26.012540703287133], + [-49.14883706873685, -26.01234306395599], + [-49.148842473575414, -26.01229373293654], + [-49.148858063109714, -26.012151453880833], + [-49.14886616348304, -26.01197467084584], + [-49.148989836639714, -26.0118752414631], + [-49.14917767155361, -26.011904948892095], + [-49.1492885584012, -26.01200480555992], + [-49.14931026773595, -26.012175314410065], + [-49.15070545691377, -26.010470340856212], + [-49.15072907335404, -26.010346458072288], + [-49.15084997125914, -26.01018298269429], + [-49.15095636032722, -26.01016372043989], + [-49.15122852541713, -26.009831114439727], + [-49.15939080769205, -26.008188096556005], + [-49.15947934499796, -26.00800892825623], + [-49.15966254025746, -26.007869138689582], + [-49.1598695298456, -26.007790004053806], + [-49.15991227117171, -26.0075611329105], + [-49.1598162599945, -26.007356145191718], + [-49.159828138916694, -26.007321787153533], + [-49.15992362829114, -26.007045606846678], + [-49.160057072250304, -26.006882346430455], + [-49.16028565581942, -26.006773481727194], + [-49.16053260290485, -26.006781639974456], + [-49.160715088992355, -26.006863940422537], + [-49.160963238590085, -26.00700763867391], + [-49.16112076754122, -26.00708196519765], + [-49.161188416944285, -26.007112473992972], + [-49.16130325262873, -26.00716426364567], + [-49.161507334697234, -26.00721683102617], + [-49.161542323855635, -26.007219226919624], + [-49.161804274041764, -26.00723716912162], + [-49.162041767269315, -26.00729409340034], + [-49.16230268051294, -26.00739634166088], + [-49.16335315032504, -26.00604008832846], + [-49.16331487760964, -26.00593195044064], + [-49.163299903530365, -26.005660645470964], + [-49.163367178061414, -26.00545856225451], + [-49.16340267516074, -26.005177370130422], + [-49.163315036019895, -26.00497253138626], + [-49.163223789764714, -26.004741278651522], + [-49.16322818003716, -26.00454184062691], + [-49.163323769860135, -26.00438543232649], + [-49.163493480216, -26.00428680680334], + [-49.163674922763406, -26.00422603524659], + [-49.16390506980396, -26.0042414245455], + [-49.16404125173272, -26.004334190135307], + [-49.16407689523304, -26.00442720503175], + [-49.1640848243443, -26.00444789800877], + [-49.16417445315571, -26.004562422741877], + [-49.164323609070316, -26.004636596291004], + [-49.16442317183629, -26.00465854976793], + [-49.167165596416176, -26.0011175244297], + [-49.16798191604073, -26.001186660134124], + [-49.16816716098705, -26.00103017436569], + [-49.168487258051016, -26.00094927138472], + [-49.16873196550661, -26.0010590156444], + [-49.168791710286875, -26.00119935946991], + [-49.1688083738843, -26.001256649709585], + [-49.17012564173018, -26.00136819423072], + [-49.17013843436557, -26.00128723236654], + [-49.170181894567826, -26.00102449421941], + [-49.170338477246425, -26.000759997727126], + [-49.17039869106275, -26.000642234536855], + [-49.170412870019526, -26.000614503492063], + [-49.17043786910334, -26.000608396415505], + [-49.17065710083886, -26.00055483774377], + [-49.17092840915599, -26.00059728991847], + [-49.17106500201589, -26.000671233505855], + [-49.17113763779572, -26.000796746291204], + [-49.171266517509466, -26.000840437900404], + [-49.17138636329681, -26.000914085538827], + [-49.1713576937783, -26.001075446635273], + [-49.171168550085135, -26.001105975214035], + [-49.17114464548869, -26.001241070294395], + [-49.17115927717363, -26.001455712620643], + [-49.17299306515974, -26.001610961881205], + [-49.173072562326126, -26.00140320742127], + [-49.17320237017025, -26.001213521014787], + [-49.17344190831498, -26.000978998271044], + [-49.17345918032543, -26.00096208821748], + [-49.173735273845885, -26.000786284365347], + [-49.173972201450226, -26.0006775456364], + [-49.174237116401414, -26.000629532825506], + [-49.17451350230406, -26.00082264399287], + [-49.17466575513365, -26.0011377835456], + [-49.17465103515503, -26.001427381606373], + [-49.17467320299937, -26.001627659549722], + [-49.174679006220366, -26.001680091534944], + [-49.1746905344395, -26.001754649351223], + [-49.1751051600659, -26.00178974353652], + [-49.175142331468535, -26.001752284125025], + [-49.175384188967314, -26.00160975137924], + [-49.17561282752157, -26.00149709867536], + [-49.17567774965266, -26.0014580734751], + [-49.17579532888991, -26.001387395112456], + [-49.17585387643914, -26.001200209923503], + [-49.17576596356568, -26.00106713518447], + [-49.17570793298913, -26.000979293356746], + [-49.17557413020316, -26.000921922761957], + [-49.17544237242928, -26.00086542816091], + [-49.17530824915736, -26.00067859955986], + [-49.17533831816508, -26.000646369466338], + [-49.175432630189206, -26.000545280173075], + [-49.17561076328549, -26.0006350126344], + [-49.17573026399762, -26.00068898027275], + [-49.17582412455701, -26.000731368988593], + [-49.176046993072646, -26.000882123316813], + [-49.176185303362686, -26.001069025905014], + [-49.176146373124055, -26.001316789037393], + [-49.176093728023275, -26.001617010214414], + [-49.17608738508097, -26.001906756249618], + [-49.1759652453919, -26.002129066634513], + [-49.17587622540889, -26.002235099912067], + [-49.175804978422434, -26.002319964134056], + [-49.175784623426324, -26.002344209197542], + [-49.17576456646014, -26.002376105260453], + [-49.17575450340058, -26.002392108964717], + [-49.17704933105522, -26.003957243328014], + [-49.177028328190126, -26.003801036481676], + [-49.177027741171194, -26.00379666548322], + [-49.17699658093677, -26.003502516562264], + [-49.17705455976456, -26.00339042137923], + [-49.177225504381056, -26.003360173855782], + [-49.177401885357376, -26.00341985232078], + [-49.177574782281376, -26.00346948779581], + [-49.17772686087833, -26.003455540330886], + [-49.17791746938064, -26.003372406744596], + [-49.17799467716724, -26.003227381501027], + [-49.178160691338704, -26.003083925986463], + [-49.1783011589725, -26.003093062558285], + [-49.17832052354231, -26.003223158506298], + [-49.17829483002894, -26.003382402593335], + [-49.1783097523722, -26.003457063551906], + [-49.17832485971974, -26.003532649509932], + [-49.17846292675422, -26.00365153509498], + [-49.17861296669115, -26.003730707641303], + [-49.17879102063402, -26.003779506100546], + [-49.17885950699662, -26.00379827589257], + [-49.17907775395516, -26.003805458226807], + [-49.17928047297083, -26.003845636610162], + [-49.17946607167577, -26.003822298042405], + [-49.17962257716725, -26.003775156562142], + [-49.179760871529965, -26.003714384136753], + [-49.179906202985435, -26.003670371690696], + [-49.18003136164015, -26.00370252531038], + [-49.180028453125935, -26.003835554326553], + [-49.17984034284088, -26.00397385390824], + [-49.1796816547137, -26.004120769400572], + [-49.17950925634026, -26.004217536932078], + [-49.179322637805335, -26.004287435505425], + [-49.17927606761657, -26.00429009664776], + [-49.179100252903616, -26.004300143184985], + [-49.1789000700982, -26.004313242796666], + [-49.17867666736648, -26.00437250948191], + [-49.17855099143219, -26.004533313874134], + [-49.17849163083525, -26.00470859706498], + [-49.17855343692546, -26.004929271888297], + [-49.17862772583311, -26.00508695367011], + [-49.17877827668514, -26.005142845213605], + [-49.17885779797053, -26.00512843097004], + [-49.17891207216543, -26.005118592803854], + [-49.17908809856718, -26.005025219261455], + [-49.17936222607016, -26.004847075415025], + [-49.17957605549869, -26.00471777075532], + [-49.17974881881149, -26.00460437522178], + [-49.179990070732714, -26.00457536448377], + [-49.18018843784176, -26.00464540688205], + [-49.18034863898476, -26.00476800739971], + [-49.18048257407621, -26.00490677999841], + [-49.18050389695364, -26.005116759944652], + [-49.18044526523524, -26.005258787131353], + [-49.180367403558186, -26.005433744378543], + [-49.18016452920286, -26.005570097005243], + [-49.17996390547029, -26.005603153619454], + [-49.17984995894359, -26.005592407966713], + [-49.17979027666779, -26.005586780148523], + [-49.17963246775931, -26.005524106626826], + [-49.17941849771966, -26.005490385278236], + [-49.17923006785301, -26.00547374985244], + [-49.17909293429595, -26.00548130927156], + [-49.178883966689064, -26.005557467913547], + [-49.178592716874974, -26.005672096808723], + [-49.17850192372752, -26.005713016975292], + [-49.180027249401626, -26.00755663529989], + [-49.18018018673527, -26.007563267065443], + [-49.180334081664114, -26.007635852599527], + [-49.18052142771302, -26.00770237403117], + [-49.180678660656994, -26.007775170555142], + [-49.18076514743079, -26.007883162296913], + [-49.18076579595699, -26.00802290930251], + [-49.18072842049292, -26.008208563426678], + [-49.18074713517222, -26.0083685913781], + [-49.180818528930466, -26.00848962416674], + [-49.1809931085751, -26.00846276163228], + [-49.18112096178042, -26.008371862237055], + [-49.18122291087341, -26.00828050392076], + [-49.18144980365765, -26.008231276225462], + [-49.18159266952627, -26.008300337793006], + [-49.18161247502338, -26.008410478738444], + [-49.1815016001535, -26.008571546085612], + [-49.18136917507795, -26.008702290497055], + [-49.181332891431666, -26.008838058615144], + [-49.18143244192553, -26.00885644931216], + [-49.181597372279064, -26.008762875803523], + [-49.181726822217115, -26.008598808399537], + [-49.181840380273165, -26.008484367046567], + [-49.182008064800684, -26.00843409353179], + [-49.18216674956336, -26.008456855048554], + [-49.182248010576195, -26.00863461981008], + [-49.18222391879589, -26.00872069688819], + [-49.18215723315492, -26.008892526101075], + [-49.18212520981329, -26.00893062618379], + [-49.18253969175531, -26.008921525839806], + [-49.18258699893077, -26.00887681778804], + [-49.18277101026724, -26.008756964219735], + [-49.182909017678504, -26.00870949279578], + [-49.18315542837278, -26.008614028038224], + [-49.18328545621352, -26.008423354630967], + [-49.183311569211796, -26.008393128549596], + [-49.18344116920295, -26.008243114145827], + [-49.18355755442074, -26.0081686457864], + [-49.18368649007937, -26.008197535394256], + [-49.18378727300244, -26.00832906509352], + [-49.183808900170426, -26.008349280028565], + [-49.18393239013003, -26.00846470465772], + [-49.184033753955866, -26.00856962935381], + [-49.184218126867265, -26.008602823792717], + [-49.1844142557174, -26.00860628119392], + [-49.184626565400826, -26.00854680954242], + [-49.18468633142118, -26.008484133356546], + [-49.184785689454856, -26.008379936047525], + [-49.18484221452542, -26.00833435387251], + [-49.18494887809988, -26.008366176548467], + [-49.184957149621965, -26.008496077530193], + [-49.18494694180207, -26.008555784564514], + [-49.18495339862786, -26.0087688295563], + [-49.18493318071146, -26.008868951200487], + [-49.18665825252549, -26.00883103415335], + [-49.18667480697719, -26.008769206299366], + [-49.18665180437878, -26.008635721362445], + [-49.186565899781186, -26.00857409262145], + [-49.18654245661811, -26.008557273692166], + [-49.18640473852249, -26.008421768105485], + [-49.186380938057795, -26.008324865173076], + [-49.18650769844516, -26.008283846783666], + [-49.18663968322915, -26.008342730383813], + [-49.1867035858246, -26.00842883819316], + [-49.18675476330142, -26.008497800040615], + [-49.186893859166084, -26.008570116619673], + [-49.18700893660254, -26.008555507267484], + [-49.1870438364795, -26.00848292715696], + [-49.186970621389285, -26.008275364369556], + [-49.186904336887814, -26.00821705356885], + [-49.186847125455074, -26.008166724740896], + [-49.18672413643578, -26.008034806109453], + [-49.18661994044821, -26.007889909419916], + [-49.18659606799556, -26.00779633248779], + [-49.186733927431064, -26.0077555090646], + [-49.18684856994048, -26.007760854714775], + [-49.18695247334083, -26.00774937639681], + [-49.18713749614286, -26.00775263483202], + [-49.18730655707503, -26.007808844318646], + [-49.18744471009763, -26.007924394902965], + [-49.187520172811176, -26.008028860678], + [-49.18760238466614, -26.008163388434127], + [-49.18771506950361, -26.008258528095002], + [-49.18784320929588, -26.00832399670714], + [-49.188019672260126, -26.008380335171257], + [-49.188189966985775, -26.008380005651087], + [-49.18838260978334, -26.00837341506236], + [-49.1885294706193, -26.008429231616798], + [-49.18862017232404, -26.008514003344246], + [-49.18850995934515, -26.00864514468786], + [-49.18834525295542, -26.008728748195367], + [-49.1882367066969, -26.008783396529786], + [-49.188231411651145, -26.00879643814078], + [-49.19193429790292, -26.008714938603593], + [-49.19190791466783, -26.00942124647406], + [-49.19192732981669, -26.009415318290014], + [-49.19215637051, -26.00933949558639], + [-49.19238666018718, -26.009257970878547], + [-49.19246974943156, -26.009228556623228], + [-49.19271115332801, -26.00919287388384], + [-49.19289269607732, -26.009186082328835], + [-49.193036799739126, -26.00919859488934], + [-49.19317248953925, -26.009257537477886], + [-49.19318126997678, -26.009364281456648], + [-49.193051330124554, -26.00955163986351], + [-49.1928539831174, -26.009774410478137], + [-49.19264880115112, -26.010017005117746], + [-49.19245587603841, -26.010206582717082], + [-49.192255331929964, -26.01040600634034], + [-49.19211029606225, -26.010606405793993], + [-49.19201372834215, -26.010791022098736], + [-49.19197593595159, -26.010996634225], + [-49.19197745525251, -26.01107516822452], + [-49.1919811629864, -26.01126673922333], + [-49.19203661087523, -26.011440720063124], + [-49.19212514794495, -26.011625262802365], + [-49.1922309583015, -26.01186666749183], + [-49.19233785347578, -26.012058186175256], + [-49.19253356303485, -26.012251264587587], + [-49.192683625972094, -26.012330423133257], + [-49.19271040309828, -26.012333574051578], + [-49.19281655859821, -26.01234606572787], + [-49.19297924132818, -26.012355578231407], + [-49.1931182742052, -26.01243121381052], + [-49.19310834059868, -26.012547484846998], + [-49.19307293780697, -26.012643346960246], + [-49.19299631992393, -26.01276177320055], + [-49.19297151226554, -26.012881110282624], + [-49.19294996969604, -26.01302046735576], + [-49.19292436517136, -26.013176388442247], + [-49.19292807682355, -26.013346132439832], + [-49.19287669316609, -26.0134959856047], + [-49.192685644737196, -26.013599093193857], + [-49.192563377232204, -26.01360359956768], + [-49.192348086411386, -26.01362975922693], + [-49.192263644466394, -26.013657705159517], + [-49.19348404127941, -26.014449135728267], + [-49.193526695401374, -26.01441900366708], + [-49.19356114671479, -26.014196699550194], + [-49.19361787955477, -26.014089441371134], + [-49.1936692494099, -26.013992324209106], + [-49.19391268396606, -26.013863518458454], + [-49.19415765090292, -26.01383454970841], + [-49.19431692356831, -26.01383069222148], + [-49.194507983633386, -26.013897259641112], + [-49.194665016675785, -26.013996500166495], + [-49.194859272842045, -26.01408641257754], + [-49.19511665824446, -26.014167450795327], + [-49.195451038105396, -26.01428311177951], + [-49.19558630197849, -26.01436200637021], + [-49.19577962330297, -26.014495153786488], + [-49.19598767376949, -26.014649430158695], + [-49.19614492577545, -26.014738691682787], + [-49.19626720891667, -26.014903861317713], + [-49.19624930037558, -26.015046608379883], + [-49.196107661936416, -26.01509070081506], + [-49.19583837661964, -26.01504605163563], + [-49.195725938124355, -26.015041971979095], + [-49.19566081483765, -26.015039609177965], + [-49.19550336050452, -26.015130002663902], + [-49.19536572566905, -26.015330535094986], + [-49.19537379222806, -26.015470411077672], + [-49.19541886694738, -26.01561093694726], + [-49.19548933255724, -26.0156933417362], + [-49.19551995882233, -26.015729155644525], + [-49.195735990157836, -26.01583941099003], + [-49.19577133598282, -26.015871239267863], + [-49.19756518603948, -26.016112536154107], + [-49.19757019698078, -26.01610447539787], + [-49.197680261983635, -26.015979979054947], + [-49.19783226295604, -26.01579965858103], + [-49.1980235273482, -26.015686566990603], + [-49.198243891953844, -26.01559727431227], + [-49.19850823382481, -26.015528713500782], + [-49.198612721128, -26.01549062117943], + [-49.198751092478055, -26.015426505753183], + [-49.19875539146508, -26.015418152739542], + [-49.19882066526783, -26.01529131753353], + [-49.198828047663476, -26.015121768502066], + [-49.19888673436871, -26.014976408315192], + [-49.199010376642484, -26.014908706933745], + [-49.199128296240815, -26.01493406257459], + [-49.19917779685465, -26.015041394428955], + [-49.199181879446336, -26.0151945094244], + [-49.19913066576104, -26.01533667458834], + [-49.19901073981888, -26.015488567962755], + [-49.198940229187215, -26.01566699218746], + [-49.198932920779505, -26.015833216218525], + [-49.19902488491437, -26.016031122947716], + [-49.199091664815214, -26.016195317752008], + [-49.19922193584394, -26.016335370721496], + [-49.19993978411959, -26.01643191594764], + [-49.199986484466805, -26.01641727102829], + [-49.20025851632114, -26.01633553419248], + [-49.20041793696212, -26.01632501870452], + [-49.20060972690552, -26.016358321120006], + [-49.20064087041488, -26.016458676029938], + [-49.20063122451092, -26.01652490601707], + [-49.200925517145535, -26.016564483649084], + [-49.200950707757514, -26.01646410308304], + [-49.20107797805947, -26.01639979169067], + [-49.20120940494095, -26.01648526829325], + [-49.201303463723036, -26.016586726011], + [-49.20134272428253, -26.016620590242944], + [-49.202611313956965, -26.016791184272424], + [-49.20254781560194, -26.016738259214574], + [-49.20249220673682, -26.01657093637589], + [-49.20250244348263, -26.016491525340495], + [-49.20251445818417, -26.01639832129897], + [-49.20259577791253, -26.01623339404192], + [-49.20276026733823, -26.016159752535284], + [-49.20294530414002, -26.01616298996965], + [-49.20314668338701, -26.016266323359286], + [-49.203239155436776, -26.016440945085524], + [-49.2032974574882, -26.016654892918307], + [-49.20339043445283, -26.016806234641873], + [-49.20351409936318, -26.016908208268912], + [-49.203520561048826, -26.01691344848568], + [-49.20590867337201, -26.01723454382489], + [-49.20598047998074, -26.017199474742412], + [-49.20620694983709, -26.017170162048384], + [-49.20639148572401, -26.017196676485497], + [-49.20656420068455, -26.017256253960316], + [-49.206729944540015, -26.01729574645548], + [-49.206860407942926, -26.017254775054504], + [-49.20695515696643, -26.017153293759527], + [-49.20697689849874, -26.017003957685443], + [-49.20699792015291, -26.016887879615247], + [-49.207099495305805, -26.016813133300868], + [-49.2071841817476, -26.01683457504295], + [-49.20723753535335, -26.01693531688491], + [-49.207241555957545, -26.01709175688064], + [-49.20727960258426, -26.017215519770517], + [-49.20733658521829, -26.01731965260159], + [-49.20745306805999, -26.017411516249997], + [-49.20754278193557, -26.01754283598234], + [-49.20755384463277, -26.017716032957335], + [-49.20747788261495, -26.017821938732784], + [-49.20765830229279, -26.01819531887352], + [-49.20779948438344, -26.018169701229148], + [-49.207967027934544, -26.01812604871458], + [-49.20802988603603, -26.018081634520048], + [-49.208173808268526, -26.017979944074774], + [-49.208348320924735, -26.017956374539853], + [-49.20855826000907, -26.01800661790032], + [-49.20868243383427, -26.018085306524554], + [-49.20877563576249, -26.018226668246626], + [-49.20870898312301, -26.0183985084592], + [-49.20862526415987, -26.018503511720606], + [-49.20858103158009, -26.018665762864106], + [-49.20853679900035, -26.018828013007614], + [-49.20847814740554, -26.01900267019582], + [-49.20847348743772, -26.019016546210896], + [-49.208489044017135, -26.019153225170168], + [-49.20856625843908, -26.01917786293526], + [-49.20870789687793, -26.019133757499826], + [-49.20880582906289, -26.01907169519715], + [-49.20889182722522, -26.019017195931376], + [-49.20907284642264, -26.01886398736989], + [-49.209264680716856, -26.018724273776087], + [-49.20944498203597, -26.01860432121856], + [-49.209626433160174, -26.01843115565489], + [-49.20981158630051, -26.018258054079777], + [-49.20999102576571, -26.018178008526842], + [-49.21013428357359, -26.01823041309142], + [-49.21018372419988, -26.018341067945787], + [-49.21011599374313, -26.018562797164112], + [-49.21003809508002, -26.018741097411407], + [-49.20993892516236, -26.018875775721586], + [-49.20978388206503, -26.019026113203324], + [-49.20962237177748, -26.01913308570283], + [-49.20953230158469, -26.019184111980845], + [-49.209479941472615, -26.01921377514245], + [-49.20927642822781, -26.01937990077341], + [-49.20913177030032, -26.019563688225176], + [-49.20904952373073, -26.019771854487328], + [-49.209063481057804, -26.01984312644828], + [-49.20908286751199, -26.019942115393924], + [-49.20912463915199, -26.020065110272323], + [-49.209237928892655, -26.020133627929372], + [-49.209324809606166, -26.02022497366819], + [-49.20938535228064, -26.020335822488605], + [-49.20931309330472, -26.020424391714158], + [-49.20915431355434, -26.020404986198844], + [-49.2090497906144, -26.020273408511816], + [-49.20892866791478, -26.0202247158799], + [-49.20882554638057, -26.020199627193996], + [-49.20880927031424, -26.020200467243885], + [-49.208632811595486, -26.02020957178403], + [-49.20863197958147, -26.020210310952386], + [-49.209927177835624, -26.02289057043307], + [-49.21007877592415, -26.022915587497884], + [-49.21024945258876, -26.02289860397494], + [-49.21036852999231, -26.022870738609218], + [-49.21052874949918, -26.022823629116715], + [-49.21065892995087, -26.02279595771699], + [-49.21084404974045, -26.02279586015065], + [-49.21091171049578, -26.02292013894998], + [-49.2108485439091, -26.02310202315235], + [-49.210740535203115, -26.023303085492948], + [-49.210695801708745, -26.02348861763912], + [-49.21073030427051, -26.023599020539248], + [-49.210751209610834, -26.02366591547858], + [-49.21077936172607, -26.02366460139246], + [-49.210906866247825, -26.023658649002037], + [-49.21102396734303, -26.02355090063833], + [-49.21117502247296, -26.023413801169305], + [-49.21129043321099, -26.023212866806062], + [-49.211475227412116, -26.023056394232853], + [-49.21164960309275, -26.023039472698454], + [-49.21180709306239, -26.02311873922069], + [-49.21195660609748, -26.023224482768637], + [-49.212148567658566, -26.023422083191143], + [-49.21221565451136, -26.023572968993538], + [-49.21218863723127, -26.023795408087302], + [-49.212122489506875, -26.023943970297175], + [-49.21206572012291, -26.02417254448236], + [-49.2120463928262, -26.024381808552008], + [-49.21201021116917, -26.024514257669374], + [-49.21196163468325, -26.024706375827677], + [-49.21184758771375, -26.024844122183502], + [-49.21173217697576, -26.025045056546734], + [-49.21156829409022, -26.025261781059047], + [-49.211505465338284, -26.02539139292592], + [-49.214383025969674, -26.024733541314074], + [-49.214429546909905, -26.02462516727222], + [-49.214559470760655, -26.02443779086523], + [-49.214751664993614, -26.024281442269316], + [-49.21489600361892, -26.024283955827688], + [-49.21503492052068, -26.02436622340674], + [-49.21509859830887, -26.024503739218773], + [-49.21513468894499, -26.02456168957233], + [-49.21758521290053, -26.024001398329034], + [-49.21783852694002, -26.024226295047487], + [-49.217905019067544, -26.024179955614102], + [-49.21816523599478, -26.024131248815372], + [-49.21835704393813, -26.02416452722986], + [-49.218518670850756, -26.024223895738267], + [-49.21866499378448, -26.024306288294394], + [-49.218643408228324, -26.02444897436752], + [-49.218544387286805, -26.02457700667694], + [-49.218449999202754, -26.024661866970032], + [-49.218412708002624, -26.02473605856351], + [-49.21941590754237, -26.02562669331218], + [-49.21947899684854, -26.025528480863372], + [-49.21962135716525, -26.025451107423816], + [-49.21983587811959, -26.025461490767654], + [-49.220067400409974, -26.02554203606294], + [-49.22035450992869, -26.025620220187943], + [-49.220578915138184, -26.02568733250436], + [-49.22080652044909, -26.02577778881215], + [-49.221100315121774, -26.025889356918267], + [-49.221318606079805, -26.025896475250363], + [-49.22141903442738, -26.025874930941864], + [-49.22151747946631, -26.02577350463546], + [-49.22158318726347, -26.025644892428076], + [-49.22168831845638, -26.025576852102912], + [-49.22180212111181, -26.025622078756754], + [-49.22182203859803, -26.02572888870097], + [-49.22182678834311, -26.025921802695972], + [-49.221839018846126, -26.026041787664393], + [-49.22189700295971, -26.026272358498183], + [-49.22192544993299, -26.026499089422234], + [-49.22192617895474, -26.026504056420226], + [-49.22195774089789, -26.02671923233422], + [-49.222091678003075, -26.026861291931105], + [-49.222216156779815, -26.026926666553216], + [-49.22221734778527, -26.026926762549543], + [-49.22237508850575, -26.026939407067218], + [-49.2225333783414, -26.02698207958481], + [-49.222752582791074, -26.027118964920323], + [-49.22289989520419, -26.02732779547962], + [-49.22288018597632, -26.027555667551116], + [-49.22276687312745, -26.027724536906245], + [-49.222765435129325, -26.027726679910764], + [-49.222616245683184, -26.027777322370046], + [-49.22242904524725, -26.027873881947865], + [-49.22251572699777, -26.027975196687393], + [-49.22266981490285, -26.02804108421888], + [-49.22288226421062, -26.028147909573725], + [-49.22303706699382, -26.028180539101317], + [-49.22308426521304, -26.028185311957092], + [-49.22319592973191, -26.028196604615708], + [-49.22338447258622, -26.028209858039094], + [-49.22360603963346, -26.028236992362032], + [-49.22373364952377, -26.02832903497578], + [-49.22382289048558, -26.02848362571012], + [-49.2237613136314, -26.02859234790399], + [-49.22354500298189, -26.02866511456985], + [-49.223349057095625, -26.028651733169198], + [-49.223270186695174, -26.02863473440977], + [-49.223197954328455, -26.02861916763021], + [-49.223041576813586, -26.028659704110986], + [-49.22294158374391, -26.028756611516908], + [-49.223644270468405, -26.029380392321976], + [-49.223676136143816, -26.029357605202172], + [-49.223904839621895, -26.029225167495362], + [-49.22407105075424, -26.029071681978948], + [-49.22416736750878, -26.028897021675522], + [-49.22431912951605, -26.02872664920255], + [-49.22447693678701, -26.028619595714055], + [-49.22473203194208, -26.02863732993384], + [-49.225008904266424, -26.028675404087906], + [-49.22523659056518, -26.02876252839494], + [-49.22532690534403, -26.02886723312341], + [-49.22540127325388, -26.029024891903454], + [-49.2255242552867, -26.029160105533432], + [-49.22566218535937, -26.029288923117292], + [-49.22586125000948, -26.029501975518016], + [-49.22605618571666, -26.029734916932473], + [-49.22615689066557, -26.029873069630728], + [-49.226306711652214, -26.029965495176334], + [-49.22654970592981, -26.03002959343533], + [-49.2267685048025, -26.03001342376447], + [-49.226911924586375, -26.030059160327447], + [-49.226918673378385, -26.030262224316605], + [-49.22687054682025, -26.030434393472383], + [-49.22672427152437, -26.030521687924523], + [-49.22651201682997, -26.03057789457731], + [-49.226477373679984, -26.03057729368332], + [-49.22624552967569, -26.03057327439319], + [-49.22601626864501, -26.03055931909462], + [-49.22575205575059, -26.03062127790684], + [-49.22566321401603, -26.0307927411872], + [-49.2257461277629, -26.030897315938315], + [-49.22575895288048, -26.030914038899905], + [-49.22577619606583, -26.0309365231905], + [-49.22843028183535, -26.03086770971823], + [-49.22843006705683, -26.030855495716327], + [-49.22842822907326, -26.03059595870943], + [-49.228456786083825, -26.03030035160775], + [-49.2285002817845, -26.030171352468287], + [-49.22863709075177, -26.030007372041396], + [-49.228828633093585, -26.029880936448574], + [-49.2290733400784, -26.029865211698343], + [-49.22936174737761, -26.02988351281588], + [-49.2297208349203, -26.029886401716123], + [-49.22995159369458, -26.029830509006636], + [-49.23012790404546, -26.02972376846153], + [-49.23036108317372, -26.02949328473626], + [-49.23063078412848, -26.02917523289488], + [-49.23077656085926, -26.028938211437005], + [-49.230907314212956, -26.028883915033834], + [-49.23105920584571, -26.028879890568344], + [-49.231172873525544, -26.028931762222694], + [-49.2312865378558, -26.02915663888537], + [-49.2314239006765, -26.029485060480358], + [-49.231491227143835, -26.029798962289163], + [-49.23154744856301, -26.030112672131917], + [-49.23160177065802, -26.030342265976596], + [-49.231682267819686, -26.030559913740426], + [-49.23171996638285, -26.030782348909366], + [-49.23454036348487, -26.030709105312965], + [-49.23656042099506, -26.031059242950672], + [-49.23677070729163, -26.031029881173197], + [-49.236998116988545, -26.030957285472983], + [-49.237281541840325, -26.030862367599987], + [-49.23755557500186, -26.030860442760265], + [-49.23775821804203, -26.030907191141445], + [-49.237992752470404, -26.031021028428164], + [-49.23816002472021, -26.03116364792229], + [-49.23839811918908, -26.0312842001984], + [-49.238591942441296, -26.0313973346097], + [-49.23882285084153, -26.031507781907276], + [-49.23898216726222, -26.03170485342838], + [-49.23894466283824, -26.031900501552514], + [-49.238822525960074, -26.03207139993475], + [-49.23864671852423, -26.03215487047755], + [-49.23854691020171, -26.032182295784633], + [-49.23845304389832, -26.032208089073556], + [-49.23824121813135, -26.03224435872434], + [-49.238197809952354, -26.032246007857502], + [-49.23800035113838, -26.032253511462983], + [-49.237836375974545, -26.03223802692703], + [-49.237739567690774, -26.032797550805768], + [-49.23781803944187, -26.03280679804776], + [-49.23799627776433, -26.03295626350851], + [-49.23809935296153, -26.033157663202168], + [-49.23815893580769, -26.033315060026972], + [-49.238345215052405, -26.033434719461784], + [-49.23851277525355, -26.033564035954296], + [-49.23871699367595, -26.03371061933534], + [-49.239029118465616, -26.033832447384444], + [-49.239250770500476, -26.03385623170627], + [-49.23942167012788, -26.03382923618121], + [-49.23965001531697, -26.03388640548406], + [-49.23980618951884, -26.034028831012055], + [-49.23989495856655, -26.034206691748263], + [-49.23987603321049, -26.03439933081537], + [-49.23978289756599, -26.034599396110128], + [-49.23973190576631, -26.03471046327169], + [-49.23972076381004, -26.03473473230701], + [-49.23970119956392, -26.034957303377336], + [-49.239749751349954, -26.035111182235813], + [-49.23990756027115, -26.03517711575514], + [-49.23996785852775, -26.035176951570374], + [-49.24007419298021, -26.035176661244442], + [-49.2402369107099, -26.03518611974608], + [-49.24035671364172, -26.035297975384122], + [-49.240334371220925, -26.03547724846102], + [-49.240189591819316, -26.035534640907557], + [-49.240121667680825, -26.03557484311755], + [-49.23993832430696, -26.035683356684633], + [-49.23976343936338, -26.035896600230636], + [-49.23960990966234, -26.03615013371312], + [-49.23955297431706, -26.03638869689886], + [-49.23959661729464, -26.03659905077493], + [-49.239653816861676, -26.036684902603618], + [-49.23966837400594, -26.03670675155995], + [-49.23968987987518, -26.036913396503753], + [-49.23953737740441, -26.036961176973414], + [-49.239488580253735, -26.036976466123743], + [-49.23925852135763, -26.03699911482998], + [-49.23907045841797, -26.036962601404724], + [-49.238733841922624, -26.036946814435787], + [-49.238502790197344, -26.037016023147277], + [-49.23829337966591, -26.03711221979356], + [-49.238084039122256, -26.037205091439684], + [-49.237742513818326, -26.0372457754883], + [-49.23746775577854, -26.037280958332133], + [-49.23718630558464, -26.03728275519482], + [-49.23702828535082, -26.037399799684643], + [-49.237023255122246, -26.037415906432493], + [-49.237280889584326, -26.03772022337081], + [-49.237524925690934, -26.037724435177733], + [-49.23779159486031, -26.037732851360765], + [-49.237804866931285, -26.037736680320325], + [-49.23797560284499, -26.03778593279929], + [-49.238099392744175, -26.037884553424473], + [-49.23824831088988, -26.038020203974447], + [-49.238256288475256, -26.038166729956835], + [-49.238256224138446, -26.038343059965374], + [-49.23829677845391, -26.03838092484286], + [-49.238354244901, -26.038434579669232], + [-49.238540313531566, -26.03839121209679], + [-49.238657332637814, -26.03828676673328], + [-49.23866065251256, -26.038249713721342], + [-49.238671918087654, -26.038123995680845], + [-49.23865788723823, -26.03791415171405], + [-49.23865403659558, -26.037747734718042], + [-49.238821951085015, -26.037687417200488], + [-49.23896915687277, -26.037729880751247], + [-49.23910319796654, -26.037868600346886], + [-49.239192678892316, -26.03801320507936], + [-49.239271908623536, -26.03811770884143], + [-49.23938822450288, -26.03821952448964], + [-49.23939527924697, -26.03840928447697], + [-49.23928837035984, -26.038560482811704], + [-49.239225340369444, -26.03863448400844], + [-49.2391934183742, -26.038671963107973], + [-49.239118756814534, -26.038873621346394], + [-49.239095205601394, -26.039109430429594], + [-49.23907955433487, -26.039322087487566], + [-49.239101983045444, -26.039485496426487], + [-49.239117564708515, -26.039644021386135], + [-49.239123275951435, -26.039702117371377], + [-49.23924685388733, -26.039810711997628], + [-49.239374913704914, -26.039882787608462], + [-49.23962056353099, -26.039823810852646], + [-49.239832969200556, -26.039760933198608], + [-49.24003242513954, -26.039784333588134], + [-49.24021202423045, -26.039870605041603], + [-49.240411348844944, -26.04007366144003], + [-49.24058469335956, -26.040279597918207], + [-49.24073334885842, -26.0405093654732], + [-49.24089544634935, -26.040721761986152], + [-49.240987711450174, -26.040909664712068], + [-49.241053142597565, -26.041140355522174], + [-49.2411490387267, -26.041331647237108], + [-49.24128051960916, -26.041417086838017], + [-49.24142679690466, -26.04132977938544], + [-49.24158189598791, -26.041176082902727], + [-49.241733010103935, -26.04103562443285], + [-49.2419929700795, -26.041000178634164], + [-49.24223691819868, -26.041021014887093], + [-49.242550699707955, -26.04106634192713], + [-49.24285351914468, -26.041104825000424], + [-49.24312630152644, -26.041162753166677], + [-49.24326568535549, -26.041225038742194], + [-49.243499609894556, -26.04136879903155], + [-49.243707765296975, -26.041505461399627], + [-49.243794052121565, -26.04162671914065], + [-49.24371640142397, -26.041795060386562], + [-49.24361149184628, -26.042026144718985], + [-49.24351234093033, -26.042160845029304], + [-49.243366558549425, -26.04222487547928], + [-49.24318816990205, -26.042255074027597], + [-49.243133781627435, -26.042243755194004], + [-49.24299646593404, -26.0422151766137], + [-49.242746316575115, -26.042137675377123], + [-49.242554400643726, -26.042107753964203], + [-49.242382708150544, -26.04217133749363], + [-49.242348412828456, -26.04239032760898], + [-49.24241505376834, -26.042564478412757], + [-49.24251906680753, -26.042722639101097], + [-49.24252968490794, -26.042737280069286], + [-49.242648565032155, -26.04290120071237], + [-49.24272374580865, -26.04302226748744], + [-49.24286015114907, -26.043223745078453], + [-49.242988373593626, -26.043462168696426], + [-49.243114099814626, -26.043643991319257], + [-49.24327762306141, -26.043789866824568], + [-49.24338854421821, -26.04397143349286], + [-49.24337019076497, -26.04413746655679], + [-49.24318305231759, -26.044230727135083], + [-49.243175272880954, -26.044245820803738], + [-49.243828913821595, -26.04446655387293], + [-49.243875698893916, -26.044395691018565], + [-49.24389711447311, -26.044259653946632], + [-49.24384912058881, -26.044079171085446], + [-49.2438567929207, -26.043892992053234], + [-49.243909240383715, -26.043690948883025], + [-49.24396239829233, -26.043606416716102], + [-49.24401272920574, -26.043526380558013], + [-49.244060339848346, -26.043377485405166], + [-49.244115069571855, -26.04324202123101], + [-49.244286479113796, -26.04319173870304], + [-49.244437394917774, -26.043234259242247], + [-49.24451592377137, -26.043372017007737], + [-49.244549040603665, -26.04355557191476], + [-49.24448598500699, -26.04373414411632], + [-49.24440162624224, -26.043892215382368], + [-49.244385701286646, -26.04392205643256], + [-49.24437055593501, -26.04411143348772], + [-49.244393914487084, -26.04423160742164], + [-49.24446261507275, -26.044309310214572], + [-49.24460605885691, -26.044355028776742], + [-49.244832072798225, -26.044348937083296], + [-49.244964462230556, -26.044313762675685], + [-49.24505552052802, -26.04428956939525], + [-49.24520194079896, -26.04419560494189], + [-49.245373636292044, -26.044132019412366], + [-49.24553273799357, -26.04413808292473], + [-49.24561888684271, -26.04426599066645], + [-49.24567577650251, -26.044376760496988], + [-49.245667398293, -26.04459619853283], + [-49.24557800765743, -26.044794280816078], + [-49.245435299157066, -26.045009010757735], + [-49.25222513949673, -26.04730160931901], + [-49.25235294343475, -26.04766739559642], + [-49.25248835911862, -26.047709872749977], + [-49.25262704807006, -26.047805406328752], + [-49.25264927923682, -26.047824475261447], + [-49.25276161207897, -26.04792083192111], + [-49.252824358039994, -26.04810489273685], + [-49.252742592400395, -26.04829312799627], + [-49.25262508038026, -26.048420865362655], + [-49.25261821848578, -26.048426629510523], + [-49.253183769713026, -26.050045241408064], + [-49.2532298291001, -26.050050556580512], + [-49.253436284144684, -26.05009401994883], + [-49.25356665422318, -26.050232662555008], + [-49.2536374421064, -26.050386917344703], + [-49.253619526580394, -26.050532997406272], + [-49.25349355071173, -26.05071049480092], + [-49.25344366659682, -26.050789053941575], + [-49.253608816254726, -26.05126169973119], + [-49.253644705447314, -26.051265363362024], + [-49.25379320401526, -26.051247947905495], + [-49.2538495631734, -26.051226087731497], + [-49.253998572591314, -26.05116829327159], + [-49.25417418506351, -26.051094782729354], + [-49.25432011141969, -26.051024090278315], + [-49.254472030052575, -26.05102004081189], + [-49.254596904768825, -26.051068758430795], + [-49.254617351170815, -26.051152283371767], + [-49.25460299668529, -26.051305078422736], + [-49.25460209968412, -26.051305774425483], + [-49.254456152488245, -26.05141900587856], + [-49.25429555904343, -26.051482792374287], + [-49.25414286354507, -26.05152342584481], + [-49.25396019997969, -26.051580180407985], + [-49.2538524215881, -26.051598294739556], + [-49.25374217621955, -26.051643363174538], + [-49.25395544327923, -26.052253708134305], + [-49.25403890477775, -26.052233620195796], + [-49.2541802132769, -26.05220609976081], + [-49.25437599120007, -26.052229417161044], + [-49.25443380970123, -26.052296948986623], + [-49.25450580037662, -26.052394665770027], + [-49.25448408361926, -26.052483646840713], + [-49.25446929578452, -26.05254423588883], + [-49.254339756875474, -26.05271502129414], + [-49.25420665692589, -26.05287909071], + [-49.25417660236796, -26.052886632730026], + [-49.25531045650624, -26.056131452992144], + [-49.2551713251046, -26.056603284161426], + [-49.255175585105114, -26.056605557903076], + [-49.255382479076545, -26.056629064268986], + [-49.25553006880369, -26.05665488181705], + [-49.255650686601996, -26.056730141450153], + [-49.25566506683587, -26.056775897408112], + [-49.25568537816626, -26.056840526348555], + [-49.25557533416611, -26.056965067692072], + [-49.25539778640927, -26.056965281237098], + [-49.255393859392555, -26.05696528524912], + [-49.25522556996459, -26.057042250769207], + [-49.255060276674996, -26.057152536281638], + [-49.25499258084425, -26.057209446533435], + [-49.25474039049437, -26.058064668995883], + [-49.25477702607247, -26.058109185194137], + [-49.25489956219622, -26.05826858782505], + [-49.25489997049093, -26.058346290827327], + [-49.254900296726234, -26.058408335829093], + [-49.25497179748747, -26.058529332614984], + [-49.25505091424408, -26.058640479377008], + [-49.25511229678593, -26.05871472519192], + [-49.25522145459744, -26.058806423860926], + [-49.2552403477411, -26.05882312780363], + [-49.25535959564747, -26.05892856144228], + [-49.25551247477377, -26.059054278978564], + [-49.25563887488587, -26.0592061595972], + [-49.25572433885813, -26.05936731934201], + [-49.255687912252235, -26.059513083460445], + [-49.255527234819596, -26.059580198956734], + [-49.255327597904575, -26.05956347156895], + [-49.25515828499541, -26.05951399308661], + [-49.25500896690962, -26.05939499053969], + [-49.254855664856585, -26.05928922800556], + [-49.25475789604428, -26.059184416301086], + [-49.254625276194844, -26.05910923970486], + [-49.254600540036414, -26.059095217780143], + [-49.25445621175447, -26.059028352577666], + [-49.253812475275645, -26.06121127133231], + [-49.253881290792435, -26.06143621509351], + [-49.2539458391007, -26.061710134907656], + [-49.25392742766066, -26.061879496971763], + [-49.25387925478722, -26.061967593123637], + [-49.253815681954194, -26.062083855324044], + [-49.25360916157371, -26.062216721964095], + [-49.253520968926054, -26.062199742350685], + [-49.25339857826188, -26.06261475202893], + [-49.253441528617955, -26.062683456499755], + [-49.253493771155995, -26.06276702234317], + [-49.25348730637449, -26.062832293365943], + [-49.2534796256341, -26.062909840392958], + [-49.253597915836615, -26.0630948530381], + [-49.2536560922769, -26.06314575486182], + [-49.25381765121524, -26.063211737368682], + [-49.25397614302753, -26.063247724883666], + [-49.25410871972739, -26.06328326747822], + [-49.254134851979785, -26.063320633399538], + [-49.25417701538718, -26.063380921272802], + [-49.25413876632689, -26.063513388216407], + [-49.25731326992527, -26.06411426850875], + [-49.257126438354526, -26.06446141624313], + [-49.25714121013554, -26.064467133218926], + [-49.25737400646905, -26.064557234507973], + [-49.257609477752744, -26.06463113078805], + [-49.257796253925896, -26.064730811218823], + [-49.25781480165879, -26.064904132169517], + [-49.257711239849996, -26.06507203749512], + [-49.257560957587856, -26.065172601961166], + [-49.25739364398841, -26.06520300747633], + [-49.257164660895825, -26.06517247117819], + [-49.256943576749755, -26.065118781854782], + [-49.25677420771801, -26.065115881764985], + [-49.25604520343254, -26.06647038750329], + [-49.256137471423095, -26.066474780390926], + [-49.25636183365885, -26.066548489705248], + [-49.25660506091366, -26.066605886960733], + [-49.25680315409828, -26.06669578035633], + [-49.25686277794639, -26.066853169180234], + [-49.256844158543416, -26.06703250724544], + [-49.25678032077489, -26.067166126447407], + [-49.25675113888069, -26.06722720653972], + [-49.25660762576079, -26.067357828986292], + [-49.25646894446108, -26.067435301415824], + [-49.25629722296783, -26.067498900945978], + [-49.25610413423149, -26.06752221054003], + [-49.25608410903084, -26.067542289787227], + [-49.256619620448525, -26.067745325836853], + [-49.25665162634444, -26.0677278758677], + [-49.256871831984974, -26.067648471187805], + [-49.2569971486284, -26.06767723280418], + [-49.25703455838033, -26.06783424069627], + [-49.257004308419454, -26.067878846791146], + [-49.25699765728845, -26.06788865472422], + [-49.25865848995801, -26.06851832724148], + [-49.25868263524409, -26.06831894365555], + [-49.25864145048835, -26.068165198775144], + [-49.25855876269073, -26.068047339023945], + [-49.25845079267069, -26.067899105349095], + [-49.25841651803261, -26.06776876544856], + [-49.258493668814765, -26.06762369820512], + [-49.25867307529088, -26.06754691965069], + [-49.258857843154225, -26.067566715083963], + [-49.25905971234273, -26.067653343467754], + [-49.25921993951387, -26.067782508981253], + [-49.259224808579376, -26.06779434596682], + [-49.25928333936596, -26.067936634793273], + [-49.259383272874864, -26.068223527498983], + [-49.259455809118045, -26.06847096528717], + [-49.25955062944522, -26.068715456006675], + [-49.259676011870695, -26.068904088414047], + [-49.260599048691226, -26.069254020317807], + [-49.26066680295119, -26.06917702559805], + [-49.26079723436568, -26.06913933119567], + [-49.26092213108262, -26.069188043814137], + [-49.26095813295756, -26.069250417319722], + [-49.261393929129675, -26.069094533406123], + [-49.261413529734824, -26.069070015299232], + [-49.261545508879856, -26.06895915388886], + [-49.26175362064347, -26.068926113248043], + [-49.26193403476318, -26.06890133563702], + [-49.262824898028356, -26.06858266464559], + [-49.26290654805698, -26.068526607688266], + [-49.26310615831922, -26.068370321068176], + [-49.26331980478035, -26.06825087040648], + [-49.26360874153775, -26.06812477851317], + [-49.263879937549426, -26.06808615667823], + [-49.26414274070059, -26.068093968871125], + [-49.26417615055105, -26.068099293570917], + [-49.2647714269548, -26.06788634545638], + [-49.264745233168206, -26.06780149600719], + [-49.26470097028594, -26.06761775713507], + [-49.26472606788008, -26.06748177905206], + [-49.26486774331806, -26.067437619614907], + [-49.26507074231035, -26.067471025992546], + [-49.265354630753635, -26.067532428122952], + [-49.26560604190542, -26.067553352351286], + [-49.26567764000521, -26.067562159706274], + [-49.266927653839275, -26.06711497123129], + [-49.26684222356078, -26.067334833952035], + [-49.266926860471926, -26.067269794280413], + [-49.26711162933505, -26.067289578713453], + [-49.26722478911404, -26.067368028369117], + [-49.26728023303218, -26.067548631206588], + [-49.267262612404316, -26.06766714826588], + [-49.26724569476149, -26.067780931322716], + [-49.267219545351395, -26.067966796411135], + [-49.26715503701357, -26.068215220620168], + [-49.26714278382691, -26.068444573667747], + [-49.26727947413479, -26.06863654325596], + [-49.267483933535274, -26.06877643663372], + [-49.26766091782196, -26.06891724109593], + [-49.267698114105364, -26.06895025198298], + [-49.26780997995748, -26.069049533643526], + [-49.26783161081712, -26.069252850585773], + [-49.26784325843273, -26.06940276455653], + [-49.26781784173411, -26.069511370639255], + [-49.26781068681902, -26.069541944662618], + [-49.26767031981366, -26.069699248100868], + [-49.2676088957671, -26.06975634929202], + [-49.26751919769898, -26.069839733571374], + [-49.267413332340084, -26.069864336897677], + [-49.26735914615632, -26.069876930064805], + [-49.267062453959, -26.06989516197744], + [-49.26678685405389, -26.069966983827477], + [-49.26661478262235, -26.07004722435974], + [-49.26646666064617, -26.070221028822495], + [-49.266361633095286, -26.070458779155608], + [-49.26629006766425, -26.070690446385562], + [-49.266160246804944, -26.07087454279259], + [-49.2661196307197, -26.07089787691836], + [-49.26600277347435, -26.070965012280368], + [-49.265832528724154, -26.07095878180334], + [-49.26576946881055, -26.070788030989693], + [-49.265762088113064, -26.07061157500475], + [-49.26576603802136, -26.0705828199913], + [-49.26578397460518, -26.07045225393055], + [-49.26570606035186, -26.070258764504153], + [-49.26524584987559, -26.071443074137008], + [-49.26526072051973, -26.071551212586343], + [-49.2652509520753, -26.071709485623256], + [-49.265291092015275, -26.07191311850872], + [-49.26540549423929, -26.072108036165666], + [-49.26551673637467, -26.07228302183133], + [-49.26552737248321, -26.072299753799427], + [-49.26563758077696, -26.072517887470198], + [-49.265773989134075, -26.07272315905979], + [-49.26584529793286, -26.072854127846327], + [-49.26598974521176, -26.07302959441004], + [-49.26602155452582, -26.0730815917599], + [-49.266532102857354, -26.073653602648275], + [-49.26659242795821, -26.07360545758259], + [-49.26680347787263, -26.073609056934085], + [-49.26692711981027, -26.07371762955877], + [-49.26695791439584, -26.073837926469345], + [-49.26696526749224, -26.073855149447475], + [-49.267010855089964, -26.073961927312048], + [-49.26702522289324, -26.07415846627629], + [-49.26702223261739, -26.074202730192212], + [-49.26895706557259, -26.076370398542355], + [-49.26887546043011, -26.076441368302245], + [-49.26899056190241, -26.076441483333245], + [-49.269166608966856, -26.076524329795685], + [-49.26922276476289, -26.076671674629303], + [-49.26922841510148, -26.076754946615573], + [-49.269162791945575, -26.076787847818707], + [-49.26909364178128, -26.076822517032788], + [-49.268895079335586, -26.076928924647753], + [-49.26868918284536, -26.077031880285176], + [-49.26848356630618, -26.07712153192119], + [-49.26827153184168, -26.07723820957812], + [-49.268046415393776, -26.077374110276015], + [-49.26787571638275, -26.077564168808973], + [-49.267790671655, -26.077732396077668], + [-49.267775136379136, -26.077941732134448], + [-49.26786405141772, -26.078116249868696], + [-49.26795485915533, -26.078208929593472], + [-49.26798008036026, -26.07823467151702], + [-49.26813824623416, -26.07828727103301], + [-49.2683120660251, -26.078300213499194], + [-49.26850704909616, -26.07836342090246], + [-49.26863482097651, -26.078452099513388], + [-49.26864276857637, -26.078601948495468], + [-49.26854502041663, -26.078670150798867], + [-49.26854373741281, -26.078670597802894], + [-49.26839948798695, -26.078720902248506], + [-49.268232580313956, -26.07873136676209], + [-49.268085171549465, -26.07869558521381], + [-49.26795069851441, -26.07857352262191], + [-49.267852971688946, -26.07846539391772], + [-49.26770703966698, -26.07835977136187], + [-49.26759750291588, -26.078284710695378], + [-49.267487755201564, -26.07821962802994], + [-49.26727419206252, -26.078159429683854], + [-49.26708535224425, -26.078156210264257], + [-49.26689084275306, -26.078246049866177], + [-49.26675906857146, -26.078346939275605], + [-49.26664852565765, -26.07849476862181], + [-49.26648314538071, -26.07860839213514], + [-49.26633299709434, -26.078702314600754], + [-49.26626201730812, -26.078714135702487], + [-49.26605321938849, -26.07889570966891], + [-49.26605308893646, -26.0789770064732], + [-49.26606307004811, -26.07903790534959], + [-49.26959811401504, -26.081014715608443], + [-49.2709471537591, -26.08032403715997], + [-49.27085956792058, -26.080158953746057], + [-49.27080369107534, -26.079998307911048], + [-49.270803977508024, -26.079847804903785], + [-49.27080405834802, -26.079805349901683], + [-49.27071884132527, -26.07963089715623], + [-49.270561867243, -26.07952176263426], + [-49.27051659304366, -26.079520160773377], + [-49.270380501444514, -26.079515348191652], + [-49.27017488390539, -26.079605002827712], + [-49.270095107258086, -26.07952379706954], + [-49.27010337247711, -26.079307685034923], + [-49.27019288708587, -26.079102936750868], + [-49.270330046989194, -26.078922288321376], + [-49.27046922420271, -26.078821521889108], + [-49.27067741995406, -26.078785142247455], + [-49.27088050993463, -26.078815215624235], + [-49.27105376782364, -26.078854761093275], + [-49.27125801490972, -26.078911463467616], + [-49.271493454206286, -26.07898866474694], + [-49.27166831547918, -26.07912804721519], + [-49.271739075376416, -26.079285620004324], + [-49.271748954509285, -26.07930962597499], + [-49.271802500229306, -26.07943974081581], + [-49.27194508617395, -26.079528667381208], + [-49.27201307750226, -26.07953875817248], + [-49.27212233102985, -26.079554971837233], + [-49.27227812965467, -26.079544314357708], + [-49.27243547100973, -26.079460488870243], + [-49.27248432242964, -26.07925172071111], + [-49.27248810876748, -26.079072128691884], + [-49.27252095633168, -26.07891964658438], + [-49.27266634578572, -26.078875542135382], + [-49.272788116388696, -26.07889757476191], + [-49.27303053579091, -26.078994854020568], + [-49.27315516855715, -26.079056858639877], + [-49.27329541814078, -26.079121726984255], + [-49.2751146476158, -26.078190238001714], + [-49.27503696551202, -26.078476837284224], + [-49.275045362434064, -26.078476822802298], + [-49.2751887202437, -26.07852916336372], + [-49.27533480024105, -26.078628126918623], + [-49.275398998959055, -26.078745662726096], + [-49.27539473902431, -26.078767743740165], + [-49.27537404934114, -26.07887499080836], + [-49.2752278890222, -26.07895568226127], + [-49.275104225750354, -26.079023448644413], + [-49.27497000399827, -26.07924074806642], + [-49.274832220205674, -26.07945133349907], + [-49.27471637155842, -26.07967559886484], + [-49.274708577404894, -26.079688369969304], + [-49.27452610659432, -26.080361552840728], + [-49.2745313313962, -26.080371118463354], + [-49.27467797329548, -26.080443478015383], + [-49.27480785280794, -26.080432377615402], + [-49.27489900509677, -26.08040581733397], + [-49.27501283945737, -26.080372648982436], + [-49.275202875067066, -26.080319319395745], + [-49.27544747308911, -26.080313495643153], + [-49.2756914432215, -26.080337603893824], + [-49.27590152730774, -26.08038775124982], + [-49.27604342137496, -26.080509935818405], + [-49.27604456841148, -26.08051830581532], + [-49.27606651311019, -26.08067843475457], + [-49.276029966530075, -26.080830856873416], + [-49.27593822764796, -26.08096570516122], + [-49.27578599106381, -26.080983081630148], + [-49.27558967122578, -26.08098307323409], + [-49.27535332108859, -26.080949114959555], + [-49.27510935395609, -26.080925007708984], + [-49.27489507993973, -26.080898076366875], + [-49.27469030225358, -26.080947827998838], + [-49.27459073641299, -26.081102504311612], + [-49.274620839121624, -26.081256057225442], + [-49.27470159226344, -26.081467029986], + [-49.27467510191538, -26.08166952507604], + [-49.27458978523701, -26.08185105934612], + [-49.27450985328037, -26.081952836596244], + [-49.274425219284254, -26.08199651164044], + [-49.27622979142219, -26.08266037644428], + [-49.27639618682975, -26.08261367982184], + [-49.27653332496694, -26.082495078395063], + [-49.276562193995844, -26.082470112305266], + [-49.27675321043376, -26.082370219713383], + [-49.27687533597543, -26.08237562033794], + [-49.27700388772108, -26.082427707944717], + [-49.27701184632124, -26.08257755692648], + [-49.27695440855362, -26.08270392210855], + [-49.27694581758837, -26.082722823135718], + [-49.27684185288189, -26.082885534500015], + [-49.27708847942287, -26.082976259644735], + [-49.278646701140914, -26.080965144908824], + [-49.27861519198855, -26.080943071925766], + [-49.27857634380676, -26.080938845045093], + [-49.278434101141116, -26.080923365481983], + [-49.278291787147474, -26.08082114091557], + [-49.278228004355746, -26.080683652106025], + [-49.27830493017356, -26.08054855186375], + [-49.278471978821784, -26.080531424349132], + [-49.27869310096829, -26.08058508067108], + [-49.278871799672544, -26.08067461462721], + [-49.28012554937616, -26.079056389909383], + [-49.28385026388292, -26.078839564091584], + [-49.28385914840772, -26.07883684670512], + [-49.28386574991468, -26.07883866240412], + [-49.287007634464565, -26.078655688678907], + [-49.293543919510554, -26.084170249396774], + [-49.293521225284124, -26.08403458117807], + [-49.29348144826892, -26.083811004291572], + [-49.29343664847099, -26.08365055442313], + [-49.2934139257937, -26.083497130486954], + [-49.29339504610802, -26.083337118538665], + [-49.29338824829855, -26.083130730551318], + [-49.29339095981953, -26.08300102453781], + [-49.29347520468098, -26.082869365273083], + [-49.29359138493245, -26.082804784912813], + [-49.29373963954923, -26.08280063045619], + [-49.293886296448456, -26.082872970007603], + [-49.29398726637638, -26.083004425702033], + [-49.29401905869299, -26.083052264606035], + [-49.29410577755646, -26.083182753344225], + [-49.29422778378943, -26.083371120976153], + [-49.29430521585444, -26.083565390745513], + [-49.29432018556101, -26.083735317706253], + [-49.29424593794425, -26.08392037594219], + [-49.29413801524444, -26.08412150128251], + [-49.29403763755215, -26.084316099599373], + [-49.29396015515247, -26.08452139412953], + [-49.294952527596315, -26.085358566511413], + [-49.295019462730004, -26.08537066661827], + [-49.29514818356691, -26.08544673022492], + [-49.29520897621513, -26.085549508041872], + [-49.2952197413298, -26.08556770800944], + [-49.295218548965444, -26.085582980920453], + [-49.296485738339776, -26.08665195813346], + [-49.29641066237667, -26.08700719504989], + [-49.29647818025411, -26.087036142192456], + [-49.29659878506591, -26.087114693824073], + [-49.29665252662589, -26.08720210066207], + [-49.296656932727615, -26.0872240166494], + [-49.296672662090685, -26.08730224960404], + [-49.29664766648597, -26.087434907686255], + [-49.296562100858026, -26.08762975895752], + [-49.29648317939734, -26.087861318209757], + [-49.296386296758264, -26.08806595951621], + [-49.29634927126882, -26.088242666637306], + [-49.2963464227726, -26.088379026651467], + [-49.29636530645856, -26.088539040599667], + [-49.296325564777376, -26.0886681247271], + [-49.2962144003086, -26.088669580069585], + [-49.29611189365073, -26.08861129538299], + [-49.296078016960905, -26.08858114294162], + [-49.29546468760192, -26.09148304757727], + [-49.29553736899602, -26.091464792265697], + [-49.29558696614294, -26.09144770011224], + [-49.29567543040514, -26.09141721283863], + [-49.29581321286346, -26.091382937412888], + [-49.295985665899934, -26.091462361884776], + [-49.296025935397964, -26.091548547764198], + [-49.29605303973306, -26.09160655668299], + [-49.29608220061476, -26.09180666660108], + [-49.29611946340572, -26.09197364249295], + [-49.29607874889656, -26.09214928662538], + [-49.29597311379159, -26.092240661954385], + [-49.295743304833884, -26.092246771662385], + [-49.29548435666199, -26.0922291004593], + [-49.295325118972315, -26.092226417949632], + [-49.29530710700862, -26.092228596731974], + [-49.295025513845474, -26.093560849520262], + [-49.2950288487944, -26.093570572915677], + [-49.29508182548977, -26.09369456475738], + [-49.29519629971586, -26.0938894594125], + [-49.295215599328316, -26.09402951835865], + [-49.29515573984967, -26.094234783551144], + [-49.29499399460231, -26.094351830054084], + [-49.29478394850358, -26.094298386698867], + [-49.294537635109165, -26.094207734454013], + [-49.294302432762926, -26.094117270174866], + [-49.294007006332016, -26.09407236608304], + [-49.29377816920217, -26.094031911786292], + [-49.293534171069695, -26.094007836536857], + [-49.29323791078625, -26.094002840449143], + [-49.29300914464411, -26.093959059151935], + [-49.2928067175405, -26.093895758772835], + [-49.29263035252464, -26.09382624331327], + [-49.29239494421531, -26.093745751035083], + [-49.292218578199524, -26.09367623457548], + [-49.292052905305425, -26.093626861083745], + [-49.29185251151281, -26.093643439701523], + [-49.29184375697751, -26.093649540054013], + [-49.29246187423209, -26.094567206947303], + [-49.29264328660226, -26.09462493530548], + [-49.292710297921055, -26.09463360809941], + [-49.29279935934483, -26.094645135825594], + [-49.29282062544601, -26.094647888760147], + [-49.29282459446177, -26.09464755974791], + [-49.292987620106594, -26.0946340702453], + [-49.29321750005215, -26.094624639536853], + [-49.293599005692364, -26.094627745361915], + [-49.293895614914305, -26.094616111447866], + [-49.2941253568844, -26.094613330740096], + [-49.29435887285819, -26.09460728602056], + [-49.29456590881811, -26.09462741038365], + [-49.294701471669725, -26.094699560968877], + [-49.29478414548114, -26.094820724719096], + [-49.29478210452877, -26.09483560472597], + [-49.294762292990825, -26.094980051792707], + [-49.29468056135455, -26.09516831105196], + [-49.294558024553986, -26.095359209437035], + [-49.29443030432804, -26.09544355783386], + [-49.29422886571973, -26.09551002845697], + [-49.29410897045218, -26.095574545828875], + [-49.29398817034427, -26.09568229920521], + [-49.29394828768783, -26.09581803233351], + [-49.29402047634057, -26.095909078114744], + [-49.294194463106926, -26.095915338579086], + [-49.294321001541725, -26.09588752918819], + [-49.29445948487724, -26.095819997758902], + [-49.29451789303193, -26.09579498957799], + [-49.294638912352475, -26.0957431752032], + [-49.294751333600246, -26.095681857854355], + [-49.29489282507469, -26.095647645417152], + [-49.29504438478165, -26.09566350795097], + [-49.29512831137181, -26.095724808694786], + [-49.29518150003041, -26.09583882253548], + [-49.295191812442106, -26.095935976507626], + [-49.29519388252475, -26.09595547550204], + [-49.29513018305476, -26.096167329706624], + [-49.29505690126615, -26.09630582893787], + [-49.29499431259941, -26.09646447013707], + [-49.29496921601216, -26.096601812219806], + [-49.29486910327103, -26.096783111535306], + [-49.29476926948074, -26.0969511068496], + [-49.294643580565854, -26.097115339243278], + [-49.29452823783424, -26.097316341606636], + [-49.29443895376164, -26.09750230244215], + [-49.29487435228687, -26.098148655907636], + [-49.294984064108625, -26.098195690237368], + [-49.29508245882457, -26.098273868937316], + [-49.295146688543596, -26.09839139474413], + [-49.29516550524229, -26.09855473469256], + [-49.29507111216077, -26.098639644986786], + [-49.29486003591366, -26.098812417643973], + [-49.29461729722723, -26.09890480739541], + [-49.29443478562534, -26.09895163495957], + [-49.29422243893187, -26.099007940615962], + [-49.29401030120164, -26.099054269271367], + [-49.29376804942906, -26.099123378020344], + [-49.29353355262703, -26.099175981744953], + [-49.29336915804023, -26.099206350252597], + [-49.29326949768436, -26.099224760560293], + [-49.29307265993224, -26.099248057167653], + [-49.29293639820321, -26.099209162585836], + [-49.292861339386846, -26.09907814381186], + [-49.29295670729644, -26.098946673512767], + [-49.29308197928511, -26.098802400121148], + [-49.293196350188786, -26.098647961762598], + [-49.29325195274978, -26.098469243584198], + [-49.29327457310474, -26.098273334506665], + [-49.29329110719418, -26.09801411044543], + [-49.29330023525156, -26.097754761407025], + [-49.29327177224675, -26.09752139448532], + [-49.293214536439415, -26.097372626655716], + [-49.2931944711563, -26.097320473715403], + [-49.2931590321015, -26.097277451825892], + [-49.29288280789543, -26.09712066167329], + [-49.292742715519005, -26.09713319709952], + [-49.292569231333964, -26.097279984639762], + [-49.29247261264557, -26.097471318944955], + [-49.29244992230282, -26.097670554022844], + [-49.29248592931515, -26.09789739492109], + [-49.29252647419586, -26.098084387803585], + [-49.29255451727448, -26.09833770972732], + [-49.29255034401186, -26.098537256748262], + [-49.29248175073462, -26.09880558397027], + [-49.292399457196595, -26.099020449232274], + [-49.29235503351586, -26.09915491737453], + [-49.29229669676678, -26.09928701455952], + [-49.29222333799045, -26.0994288397912], + [-49.29213544310071, -26.099557110067106], + [-49.29199933183398, -26.09964016648967], + [-49.291981581799156, -26.099650998544814], + [-49.291844414229935, -26.099655337967498], + [-49.29170500538649, -26.099589773394317], + [-49.2916123167289, -26.099520580677027], + [-49.29159557261015, -26.09950807972816], + [-49.29150486587704, -26.099416721003863], + [-49.29139913711671, -26.099335089326356], + [-49.29127007345665, -26.099306295722684], + [-49.29124751108623, -26.099316539893554], + [-49.28976710191273, -26.102658982608364], + [-49.29047774686574, -26.102765480229827], + [-49.29049773720314, -26.10275243024027], + [-49.29069856192233, -26.10271589662012], + [-49.29085390163345, -26.102728499142046], + [-49.2910009984598, -26.102780886691058], + [-49.291074404406196, -26.102854892807564], + [-49.293138406057594, -26.103164175442267], + [-49.293354545802785, -26.10312244645365], + [-49.29337239280633, -26.103199235496675], + [-49.29442178406811, -26.103356469063215], + [-49.29440143303833, -26.103324609236097], + [-49.29423371648474, -26.10310342774411], + [-49.29413077729362, -26.102904920053362], + [-49.294110149208564, -26.102641597106455], + [-49.29417004469221, -26.102437671913776], + [-49.29434374669452, -26.10224237537082], + [-49.294574297969625, -26.10205504665297], + [-49.2947954515362, -26.101955302967706], + [-49.294949414366286, -26.10200093849512], + [-49.29506999127379, -26.102104649127654], + [-49.29509646121901, -26.102324457054873], + [-49.295099072312304, -26.102346147047616], + [-49.2950874711753, -26.10258717309297], + [-49.295117707914564, -26.102748297006183], + [-49.29516390080547, -26.102931528871117], + [-49.295332561114165, -26.103086949357607], + [-49.2955591214235, -26.103177270663], + [-49.29560614566766, -26.10318875151855], + [-49.29581051072918, -26.10323864789078], + [-49.296062844789965, -26.103234266113077], + [-49.296257173877216, -26.103302288516957], + [-49.296269084358464, -26.103415942484734], + [-49.29627864374467, -26.103507155458875], + [-49.29613071849401, -26.10360774891866], + [-49.29612292475169, -26.103611339296727], + [-49.29670105895837, -26.103697952394544], + [-49.296756487386965, -26.10366615499254], + [-49.297017902237776, -26.103596105184273], + [-49.297253752282806, -26.10360614445787], + [-49.29747228152975, -26.1036890597876], + [-49.297700625376265, -26.103655165082632], + [-49.29789831259246, -26.103489374466847], + [-49.29801621004933, -26.103213044092698], + [-49.29809195471189, -26.103038532852423], + [-49.29824843488866, -26.102908803365036], + [-49.2983860196758, -26.102961549943107], + [-49.29847394747013, -26.10307218367646], + [-49.298564958368374, -26.103206778401287], + [-49.298633319043056, -26.103307877194595], + [-49.298879885601025, -26.10370534845025], + [-49.298969170049155, -26.104037725719937], + [-49.30072713175679, -26.104301050666418], + [-49.30059679329923, -26.10457125627124], + [-49.30064506464658, -26.104631989045902], + [-49.30074466054639, -26.10475729674377], + [-49.30073453402861, -26.104896026780395], + [-49.30060088936566, -26.105135639201684], + [-49.30046735067544, -26.1053679436224], + [-49.300242317116485, -26.105738037330383], + [-49.29998609806324, -26.106012769130952], + [-49.299810514551574, -26.10633958668486], + [-49.299635871794806, -26.10660064523341], + [-49.29954585343236, -26.10674991389281], + [-49.29909124498339, -26.107692313372958], + [-49.29908959503347, -26.10780741696447], + [-49.299258897179136, -26.10791899444695], + [-49.29948620529808, -26.107958164747775], + [-49.299679710603385, -26.108084639156182], + [-49.299799042837975, -26.108276025795853], + [-49.299889237073245, -26.108500438526555], + [-49.30017130600992, -26.108693707664575], + [-49.30030617850535, -26.108936429258254], + [-49.30030324726795, -26.109141015275306], + [-49.30007436755742, -26.109211445983618], + [-49.29977298834036, -26.10922988291341], + [-49.299429352356256, -26.10935744697775], + [-49.29922310121399, -26.109552371621138], + [-49.29915952545437, -26.10968749282237], + [-49.299130766563145, -26.10974861391344], + [-49.29897427838638, -26.109878343400965], + [-49.298727460347784, -26.109882410162], + [-49.29871378829019, -26.109882635204162], + [-49.29843870068817, -26.10976983104776], + [-49.29827564506778, -26.10978986655111], + [-49.29825832326988, -26.109862743607355], + [-49.29831448981364, -26.109977604904056], + [-49.29890597848639, -26.110388277836222], + [-49.299130208858706, -26.11035515493894], + [-49.299512333590265, -26.11038149976191], + [-49.299788989783856, -26.11038470090913], + [-49.30006428533143, -26.110482885064304], + [-49.30024162153957, -26.11060185952209], + [-49.30024228458432, -26.110612929520517], + [-49.300254753426806, -26.110821243490175], + [-49.30017013792013, -26.111046803759866], + [-49.30014722491725, -26.11125006338269], + [-49.30082594833379, -26.11172128496138], + [-49.30099183465249, -26.111633610249264], + [-49.3012303180168, -26.11146098050725], + [-49.301427803287254, -26.11130980089254], + [-49.30169705425493, -26.111261757060493], + [-49.30193271135468, -26.11128640133485], + [-49.30208553348463, -26.111412396868488], + [-49.30228696887983, -26.111553568252912], + [-49.30252940436872, -26.111673290509927], + [-49.302690678452166, -26.111777459016686], + [-49.30271216132023, -26.11198232295836], + [-49.30269681033747, -26.11200417600657], + [-49.30255431549779, -26.11220703845379], + [-49.30242224042649, -26.112337052866103], + [-49.30253396249004, -26.112491803527583], + [-49.3027206954064, -26.112523189953023], + [-49.302914310684784, -26.11264234836051], + [-49.30300130872469, -26.112818737099147], + [-49.30296562340168, -26.113037557217652], + [-49.302878861455895, -26.11314653252271], + [-49.303369393852634, -26.113487078455336], + [-49.30390601105588, -26.112120674569066], + [-49.303850402479625, -26.112061225451523], + [-49.303681928115985, -26.111891204964575], + [-49.30368673786274, -26.11155510593678], + [-49.30386846992666, -26.111367202369067], + [-49.30413935408836, -26.111368551533804], + [-49.30420556009841, -26.111357908187234], + [-49.304745188981215, -26.109983777818453], + [-49.310718448290764, -26.11002417522806], + [-49.310711826562695, -26.10989490820776], + [-49.31090929683241, -26.109743714592977], + [-49.311260326041456, -26.109667362507363], + [-49.31141331068531, -26.10966495703534], + [-49.31143991979729, -26.1096645389533], + [-49.311528946172004, -26.109663139678624], + [-49.31182072973488, -26.10974687478174], + [-49.31201734211395, -26.10988927718055], + [-49.312046275316995, -26.10991023309216], + [-49.31221929027, -26.110034286575477], + [-49.314678155954994, -26.110050818466394], + [-49.31483113479814, -26.10980333349718], + [-49.31496569121467, -26.10949794707074], + [-49.31515399172167, -26.109419718486905], + [-49.31530797855184, -26.109465330013503], + [-49.315354312416574, -26.10964124887718], + [-49.31538883091935, -26.10973500177409], + [-49.31543218055073, -26.109852738644726], + [-49.31564178298089, -26.10999399300338], + [-49.31595100231406, -26.109997538049498], + [-49.31607173183452, -26.109998921676993], + [-49.31626835668226, -26.110001176070455], + [-49.3166346362337, -26.10999806494026], + [-49.316943848566794, -26.110001607986348], + [-49.31729343415702, -26.110027534908617], + [-49.317450755402085, -26.110069409394423], + [-49.31790184126646, -26.11007242898646], + [-49.31805831745456, -26.110036290548976], + [-49.31835187055374, -26.109995803641624], + [-49.31840965778359, -26.110075826647282], + [-49.321705468442495, -26.11009783452575], + [-49.32193451443163, -26.11044065716698], + [-49.321950932564754, -26.110431536551165], + [-49.32217824868314, -26.110470667850983], + [-49.32240318842874, -26.110677849164393], + [-49.32261947427572, -26.11092146950571], + [-49.3228433822941, -26.111201714824823], + [-49.323108598324296, -26.111438585014806], + [-49.32349442526251, -26.11177913783627], + [-49.323703408856304, -26.11196421319787], + [-49.32392763479303, -26.112222539515077], + [-49.324159277955914, -26.112532104811244], + [-49.32436506839533, -26.112943684190906], + [-49.32448454860348, -26.113127740828677], + [-49.32449535611947, -26.113515177809397], + [-49.3244836090392, -26.113770817854803], + [-49.32445526634246, -26.113882640946326], + [-49.32443189659265, -26.113974847021776], + [-49.32442197996884, -26.114163604625805], + [-49.32447476753111, -26.114242607987336], + [-49.32454911240099, -26.114319653672375], + [-49.3247772713014, -26.114300332967346], + [-49.324909739262374, -26.114141070552634], + [-49.32491511027061, -26.114137199535946], + [-49.32504951947677, -26.114040354117495], + [-49.32536750168112, -26.114000132134368], + [-49.32537830173399, -26.114001922101163], + [-49.32552589045653, -26.11402637564638], + [-49.3256517000725, -26.114047220258794], + [-49.32588419001734, -26.11429834055005], + [-49.32612430713385, -26.114586089819078], + [-49.32630787589569, -26.114843964261578], + [-49.32638627103779, -26.11505679302708], + [-49.32634882335712, -26.11518305714729], + [-49.326344643412284, -26.11520231016088], + [-49.326314006817064, -26.115343432260467], + [-49.32640949181098, -26.115497982971302], + [-49.32648880570747, -26.115645041731618], + [-49.32662631852208, -26.11570506930915], + [-49.326782269833856, -26.11561184382435], + [-49.32687384167399, -26.115466730536472], + [-49.32694634047101, -26.11533172430784], + [-49.326990856346455, -26.11524882916731], + [-49.327121568771226, -26.115213777762516], + [-49.32727861769936, -26.11528177428007], + [-49.32736424820552, -26.11531884901699], + [-49.32751132824946, -26.115428555566766], + [-49.32753338140593, -26.115445004499314], + [-49.32759631725963, -26.115599183310444], + [-49.32756922686386, -26.115788876400924], + [-49.327478067914655, -26.115904762686426], + [-49.32733066752883, -26.11596885514382], + [-49.32701361807895, -26.115943325121947], + [-49.32675363184731, -26.115911134923515], + [-49.32643585858852, -26.115936748905575], + [-49.32643026858692, -26.11594261892299], + [-49.326270634541835, -26.116110254421887], + [-49.32634129553958, -26.116293752210293], + [-49.32647849943618, -26.11637569878964], + [-49.32671314680815, -26.116473370068622], + [-49.326885031569304, -26.11648065053816], + [-49.326949029852656, -26.116483361340606], + [-49.327151847893354, -26.116529515716014], + [-49.32727246680157, -26.11663319534731], + [-49.32725371838638, -26.11680836641147], + [-49.327114042144814, -26.116901777846017], + [-49.32682479232495, -26.11696661700659], + [-49.32783358267757, -26.11738086742609], + [-49.32792922546146, -26.11738604734614], + [-49.328084454964134, -26.11734396586538], + [-49.32818426781207, -26.11719163855176], + [-49.328229074895795, -26.11689984140302], + [-49.32822525369504, -26.116851250413085], + [-49.32820837080818, -26.11663652945756], + [-49.3283589623479, -26.11634593398217], + [-49.32857094515072, -26.1163191123267], + [-49.32878200119908, -26.116358048676293], + [-49.32891724661408, -26.116578816266475], + [-49.3289135395966, -26.116841850287273], + [-49.32890840868318, -26.116870450304184], + [-49.32887821019308, -26.11703875540342], + [-49.32906125109153, -26.117333141848615], + [-49.329171159647046, -26.11761938951934], + [-49.3292407929179, -26.11787594931343], + [-49.329343938046215, -26.118001062554416], + [-49.32973382244506, -26.118161156676194], + [-49.3298823100438, -26.117978234335915], + [-49.32998189454452, -26.117734745019753], + [-49.32998345753663, -26.117730922014733], + [-49.3301965730392, -26.11762372635281], + [-49.33038991639962, -26.11776476676074], + [-49.33068039531735, -26.117943447869884], + [-49.330775473420715, -26.11812721958271], + [-49.3309754132257, -26.118377950974022], + [-49.33110651070777, -26.118620999577747], + [-49.33114991519841, -26.118701470446506], + [-49.33118594321471, -26.118757412843465], + [-49.332970598913775, -26.119490183556916], + [-49.33306754543252, -26.11950516155172], + [-49.33331961157445, -26.11952263677365], + [-49.333586724114205, -26.11962797795224], + [-49.33382983443955, -26.119703814203866], + [-49.33396592463653, -26.11986613178912], + [-49.33397136657526, -26.119901080334536], + [-49.33472846332136, -26.120211923911093], + [-49.33447973440167, -26.122708817568785], + [-49.33453744685352, -26.122704541122406], + [-49.33483864712404, -26.122700643191628], + [-49.33486876730376, -26.12271412209908], + [-49.33507320552357, -26.122805605470653], + [-49.335086916276566, -26.12298845243468], + [-49.334987005456455, -26.123148090748774], + [-49.33476605900939, -26.123278671436037], + [-49.33470796089183, -26.123313007616723], + [-49.33463967845786, -26.12353877183557], + [-49.334744443186956, -26.123613034514484], + [-49.33494860687288, -26.12356419188192], + [-49.33514586319581, -26.123427579267705], + [-49.33523036341685, -26.12339083300531], + [-49.3353751577956, -26.12332786655579], + [-49.3356929430544, -26.123302231573035], + [-49.33573592128873, -26.12331563744074], + [-49.3358042476612, -26.123336948230367], + [-49.335838808849665, -26.12334772812388], + [-49.33604071613629, -26.123459626503994], + [-49.33603856370985, -26.12361306351593], + [-49.335970795139346, -26.123802296731807], + [-49.33597554907572, -26.124043503725566], + [-49.335973587089114, -26.124049228731742], + [-49.33596872912222, -26.124063394747257], + [-49.335890684653684, -26.124291004996287], + [-49.33571835329944, -26.12439136253231], + [-49.33554879120762, -26.12429444405284], + [-49.33542114896353, -26.124110307440816], + [-49.33540379385374, -26.124100907494128], + [-49.33518689448191, -26.12398342616019], + [-49.33501497401842, -26.124054556693892], + [-49.33482554681242, -26.12421318128474], + [-49.33463611860648, -26.124371805875548], + [-49.33453548797748, -26.124582589193803], + [-49.3344186842511, -26.124785881561717], + [-49.3344253801531, -26.124931037773848], + [-49.336669470608726, -26.126150288186544], + [-49.337137883081134, -26.125898202197828], + [-49.337318765361125, -26.12576870763433], + [-49.33758113096467, -26.125632827818897], + [-49.33776078557246, -26.12559101226225], + [-49.33797023105828, -26.12574684562035], + [-49.338166190337326, -26.12586339201872], + [-49.33822752373768, -26.12589987083042], + [-49.3385191743557, -26.12599816993249], + [-49.33886026702027, -26.126053179880152], + [-49.33922577179015, -26.12610846375246], + [-49.33951081296319, -26.126097067871136], + [-49.339861673225705, -26.12603526078457], + [-49.33991757202998, -26.12592097860795], + [-49.33997898081507, -26.12579542941387], + [-49.340214678914215, -26.125820013686226], + [-49.34041578041961, -26.12599036207044], + [-49.34053396798407, -26.126269389714633], + [-49.34056873330742, -26.126578633617726], + [-49.3405701613618, -26.12659133761374], + [-49.34046303945162, -26.126735309949737], + [-49.34046232245227, -26.12673627495196], + [-49.34024848114136, -26.126894630618292], + [-49.33999456249117, -26.12700868840702], + [-49.339926251220426, -26.127014168618363], + [-49.339595279908934, -26.127040719642228], + [-49.33930921400897, -26.127125182529333], + [-49.339225990150034, -26.12725578179101], + [-49.33924042471198, -26.127387483750862], + [-49.33949320108247, -26.127464253972217], + [-49.339540313337885, -26.127478561827143], + [-49.33989461089244, -26.127752945741364], + [-49.340288678868355, -26.128093545534952], + [-49.34035509526727, -26.128152619367377], + [-49.34216561280241, -26.129136181545142], + [-49.34420928964691, -26.12870706164283], + [-49.344156012287016, -26.128597506596673], + [-49.34436150761717, -26.128453665956506], + [-49.344616716100305, -26.128557350170986], + [-49.344620503122265, -26.128558888159304], + [-49.34467124659059, -26.12861005798309], + [-49.34562622665393, -26.128409521986466], + [-49.34548866536405, -26.128174040462216], + [-49.34527086789771, -26.128032744130895], + [-49.34497169008066, -26.12789053305115], + [-49.34491717017919, -26.12771453521385], + [-49.34515450384096, -26.127622204476967], + [-49.34545429349401, -26.127720576553383], + [-49.34591562817651, -26.1279084571333], + [-49.34624665132523, -26.128102179116237], + [-49.34642148869448, -26.128242519710884], + [-49.34727906958481, -26.12806242517115], + [-49.347547201492205, -26.12849237016253], + [-49.34756813740887, -26.128482421042765], + [-49.347705274333244, -26.1285716556217], + [-49.34770390670061, -26.128669837629225], + [-49.347702901753564, -26.128742031309297], + [-49.34916819451031, -26.13109153104821], + [-49.349287066159924, -26.130959503809002], + [-49.34953660576282, -26.130574995024656], + [-49.34964738587876, -26.130218158670335], + [-49.34976315187762, -26.130087918307968], + [-49.349798242068914, -26.130098858199755], + [-49.34988471854033, -26.1301258199333], + [-49.35004484195272, -26.13031761744438], + [-49.35015532137348, -26.130567319110845], + [-49.350313717250735, -26.13088332563136], + [-49.35054668008822, -26.13110516891808], + [-49.35082979578067, -26.131232572046564], + [-49.3510637353607, -26.131385601328088], + [-49.351079850469525, -26.131396143278547], + [-49.3510869085566, -26.13141113425719], + [-49.35119053683571, -26.131631228943874], + [-49.351204171616885, -26.131821380907937], + [-49.351145881727014, -26.13191572709131], + [-49.35092553494413, -26.13195710377421], + [-49.35058463622491, -26.131887514826325], + [-49.35034750450866, -26.131965240562383], + [-49.35028819789224, -26.13213265075131], + [-49.350464295456874, -26.13234654721366], + [-49.35075606004768, -26.132437510314166], + [-49.35101689706061, -26.13241120250647], + [-49.351198178230575, -26.132252465940567], + [-49.351328699442575, -26.132161773533927], + [-49.351477628684606, -26.13205829006985], + [-49.351755148658164, -26.132002937209627], + [-49.351884145547544, -26.132092074813446], + [-49.35195407503519, -26.132141849598792], + [-49.3520614667841, -26.132218291269094], + [-49.35222524787885, -26.132322425765906], + [-49.35229545434819, -26.132367064550227], + [-49.35241590831182, -26.132485336181407], + [-49.35242242237594, -26.13249488616164], + [-49.352551523646596, -26.13268416276837], + [-49.3525326293185, -26.13288205583331], + [-49.3525229466629, -26.132983457866587], + [-49.3524929317874, -26.133049868961514], + [-49.35237178428989, -26.133317919345078], + [-49.352271481580175, -26.133506795661496], + [-49.35224296751826, -26.133522520750198], + [-49.352115630242, -26.13359274214633], + [-49.35194614012251, -26.13348853566733], + [-49.35192305363235, -26.133385559735377], + [-49.35190015114622, -26.13328340480289], + [-49.35172394460869, -26.133076815341187], + [-49.35157866964912, -26.132987495787646], + [-49.35142251439304, -26.13309536127421], + [-49.35128233128909, -26.133225327712115], + [-49.35120674860257, -26.13339255795134], + [-49.35109820488508, -26.133588648293486], + [-49.35104571665934, -26.133851137464493], + [-49.351053949888005, -26.133887514994598], + [-49.3527326248252, -26.13388641558877], + [-49.35292014104258, -26.133689447660753], + [-49.35307711007974, -26.13352312716973], + [-49.35332502411974, -26.133255517394165], + [-49.35348006567672, -26.133228021913574], + [-49.3537640111505, -26.133296970037517], + [-49.35398821849781, -26.133399696347077], + [-49.35413981498483, -26.133620630885282], + [-49.35424275000236, -26.13377267157175], + [-49.3542993475618, -26.13385626939933], + [-49.354329955586046, -26.13388535128824], + [-49.355163729956665, -26.133884788706972], + [-49.355028300173494, -26.134142395179925], + [-49.355033197769174, -26.13413925413808], + [-49.35511831292474, -26.134084667872905], + [-49.355330626645014, -26.134035887214466], + [-49.3556208826463, -26.13423644332286], + [-49.355765250852116, -26.134391519881202], + [-49.35573779656777, -26.1346104459732], + [-49.35567901283271, -26.134746022159476], + [-49.35566211790878, -26.134784985212953], + [-49.35539935241583, -26.13495012603127], + [-49.35501480831466, -26.135091980225656], + [-49.354745117458286, -26.135169349062583], + [-49.354565540936896, -26.135233718620285], + [-49.35450787876942, -26.135254387799392], + [-49.354448704639445, -26.13524485211927], + [-49.35420028086177, -26.135717374994133], + [-49.3543201103509, -26.13588074940062], + [-49.35430018326568, -26.136143603470682], + [-49.35427972128573, -26.136171823534937], + [-49.35414250442011, -26.136361069965623], + [-49.35410472861459, -26.136397819664893], + [-49.35496207328754, -26.136543012389858], + [-49.355052425786276, -26.13648816815425], + [-49.35547807195346, -26.136317541831694], + [-49.35584532725804, -26.13624856969304], + [-49.35622602339907, -26.13638436051944], + [-49.35631311944162, -26.136560717255623], + [-49.35629616451949, -26.136768932158226], + [-49.35691071353359, -26.136872997670093], + [-49.35691967711195, -26.13684518138776], + [-49.3568335927957, -26.13659576064614], + [-49.35669887921429, -26.136331181054466], + [-49.35654076225415, -26.135993263532978], + [-49.35650334966869, -26.135881347645206], + [-49.35641570829748, -26.135619175907966], + [-49.35647672844834, -26.135327549709825], + [-49.356674688578615, -26.135139761091164], + [-49.356991489110506, -26.135187144112503], + [-49.35725743297925, -26.13538011329572], + [-49.35746458509511, -26.13570396366502], + [-49.35797949295414, -26.136140861085583], + [-49.35846134480987, -26.13661392760943], + [-49.35884675091653, -26.136998225428865], + [-49.3591198340942, -26.13726434759214], + [-49.35922321520705, -26.137440885277847], + [-49.35924201391176, -26.137605020224846], + [-49.359245004023926, -26.137631128216448], + [-49.35912913905292, -26.137768681579434], + [-49.35894103349267, -26.137832353163564], + [-49.358608550726196, -26.137740951189677], + [-49.35841073314846, -26.137660900722054], + [-49.35763928393194, -26.138371559813255], + [-49.35763632778989, -26.13858510122551], + [-49.357607528296555, -26.138678084787923], + [-49.360229929338956, -26.137634634521973], + [-49.36023053307592, -26.13759096316487], + [-49.36039523325719, -26.137453951650834], + [-49.360697592226266, -26.13736962871226], + [-49.360906913096, -26.137365252478784], + [-49.36100095593228, -26.137327831059057], + [-49.36098722729495, -26.13739139190971], + [-49.36115217451871, -26.13746238730818], + [-49.361321484693235, -26.137581197787828], + [-49.36133544239293, -26.13774943274999], + [-49.36128225951843, -26.137842028917465], + [-49.36121032668816, -26.137967272144028], + [-49.361043707027, -26.138243111668533], + [-49.360868041577206, -26.13858462022298], + [-49.360783421102454, -26.138817527492222], + [-49.3607788823345, -26.139146330516688], + [-49.360889202811094, -26.139410644183528], + [-49.360947009506944, -26.139528672008304], + [-49.36096837876414, -26.139572301943517], + [-49.36097690684326, -26.139583532917502], + [-49.36108031480279, -26.13971970960168], + [-49.36125152094297, -26.139827342075115], + [-49.36150423392064, -26.13980092529205], + [-49.361664440372756, -26.139740117794123], + [-49.36176609465961, -26.13970153347824], + [-49.36206824668339, -26.139631820540718], + [-49.36240947932071, -26.139679465485838], + [-49.362661182572104, -26.139726112708104], + [-49.362699658349804, -26.13988731059405], + [-49.36269103264267, -26.139973923623444], + [-49.36268075799159, -26.14007710065851], + [-49.36266254497462, -26.140093050715354], + [-49.3624665207916, -26.140264717327568], + [-49.36218808006469, -26.14038584919343], + [-49.36216336597323, -26.140389528270028], + [-49.36195968221961, -26.140419844901533], + [-49.361665567258186, -26.140496954814434], + [-49.36125780672358, -26.140550875078343], + [-49.360906615543946, -26.14063465516822], + [-49.36069338307001, -26.1407492018319], + [-49.36062201993561, -26.140830015479462], + [-49.36271196341959, -26.14181136657072], + [-49.3627560334912, -26.14170023947618], + [-49.3630497465621, -26.141652353565306], + [-49.36350241037511, -26.14188392517112], + [-49.364052241745824, -26.142153113477107], + [-49.36439146693091, -26.14234688343277], + [-49.364679743480735, -26.142693547550994], + [-49.364730166202975, -26.14275898769513], + [-49.366704179968, -26.143685819088375], + [-49.36663761394108, -26.14394755872565], + [-49.366796364997505, -26.143871687032963], + [-49.366951117636525, -26.14386609855354], + [-49.367029599781695, -26.14407889731706], + [-49.36702296236083, -26.14423841834248], + [-49.36701744184239, -26.144371077363694], + [-49.36701347575994, -26.14461646238348], + [-49.36711506436645, -26.144924517078323], + [-49.36713365006064, -26.145348573033818], + [-49.36705576900514, -26.14568386328533], + [-49.366806255404946, -26.146068401069847], + [-49.366498756833046, -26.146525372036287], + [-49.36627546784485, -26.14677866073565], + [-49.366213326424074, -26.146890651690068], + [-49.36880725649201, -26.145390023390362], + [-49.368803014847614, -26.145548402034333], + [-49.36880784997054, -26.14554983185463], + [-49.36901816723865, -26.145647162206128], + [-49.36917120834337, -26.1457657817357], + [-49.36925532635623, -26.145937500480454], + [-49.369289983773605, -26.146008250375235], + [-49.36929918210537, -26.146085066349027], + [-49.369311890563765, -26.146191185312887], + [-49.369295342635034, -26.146228427365337], + [-49.369227882925514, -26.146380253578872], + [-49.36908649815122, -26.146597917023453], + [-49.36895365430249, -26.146786443440636], + [-49.36890240574967, -26.14696125960477], + [-49.368891150564075, -26.147187671646545], + [-49.36904238516213, -26.147437807185693], + [-49.36924165318986, -26.14774693657785], + [-49.369254207309616, -26.147764300539528], + [-49.36935349725636, -26.14790163623612], + [-49.369407058433595, -26.14815069007778], + [-49.369395604302774, -26.148391715120635], + [-49.36923125147651, -26.14862141163667], + [-49.36918809652209, -26.148681722772196], + [-49.36909564793094, -26.14889262106503], + [-49.36901184023787, -26.14906707632994], + [-49.3690251061302, -26.149286455295524], + [-49.36904040477378, -26.14932777082565], + [-49.37000940190123, -26.149156553584998], + [-49.37015279876496, -26.14897741179272], + [-49.37030182271119, -26.14879637032548], + [-49.37049837922413, -26.148710854714004], + [-49.37072629120626, -26.148713379008022], + [-49.37096837583403, -26.148869522262704], + [-49.37112447179784, -26.148959517191216], + [-49.371750678814514, -26.148848860301488], + [-49.3717016884396, -26.149083454313065], + [-49.37184557114303, -26.14901808254956], + [-49.37212252828075, -26.14900653269107], + [-49.3722763851664, -26.149066698216277], + [-49.37236372115527, -26.14922843595051], + [-49.372343234236396, -26.149535138023182], + [-49.372207486182766, -26.14993556645582], + [-49.372089719733374, -26.150211960829058], + [-49.37208746674023, -26.150216287836166], + [-49.371932543212644, -26.15051378732515], + [-49.3718562767193, -26.150732178567974], + [-49.37172433562408, -26.150854951980435], + [-49.37141975225821, -26.15110004593155], + [-49.37126192193353, -26.151189259418466], + [-49.370478158267865, -26.154942062544833], + [-49.37054553594244, -26.154883057754535], + [-49.37072762989192, -26.15466584218376], + [-49.37081254528326, -26.154411013912927], + [-49.37103463459998, -26.154245395219682], + [-49.371270795589986, -26.1542407004878], + [-49.371537508268716, -26.154382496665523], + [-49.371641422245574, -26.1545224913478], + [-49.37170038374896, -26.154635968673738], + [-49.37290249425549, -26.153559083257363], + [-49.37636860067075, -26.15438912812103], + [-49.376658512087474, -26.15437330079438], + [-49.37686996005433, -26.154390248139464], + [-49.37713719259587, -26.154495504314237], + [-49.37724188997221, -26.154598243994556], + [-49.38323383328602, -26.156032900069892], + [-49.38727641371541, -26.1556153682755], + [-49.38749856286361, -26.155991101228793], + [-49.38767873418492, -26.15596785067243], + [-49.38774345242909, -26.155959499471408], + [-49.38809526944282, -26.155831815376686], + [-49.388429414770684, -26.155806244339633], + [-49.388672132234305, -26.155918517589956], + [-49.38874241737329, -26.156138517378228], + [-49.38868226000614, -26.156371704571264], + [-49.38866377706296, -26.15640727762964], + [-49.38856522136607, -26.156596959940615], + [-49.388461980482326, -26.157005058272276], + [-49.38840976320517, -26.157252946441186], + [-49.38837957265375, -26.15748117526581], + [-49.390018988391624, -26.160253850664528], + [-49.391963207398916, -26.15815311151025], + [-49.39500543099843, -26.151899522456528], + [-49.40000635971075, -26.150670827915427], + [-49.400287953443396, -26.151127584626764], + [-49.40033778553807, -26.151083923269216], + [-49.40037076262758, -26.15107054316648], + [-49.400583366204835, -26.150984279504573], + [-49.40084374835345, -26.150994411696985], + [-49.401054009648966, -26.15109900204732], + [-49.40123033118858, -26.151305533505678], + [-49.401292790210306, -26.15150352131718], + [-49.40128872349175, -26.15158182433189], + [-49.40128179097165, -26.151715327356985], + [-49.40123823259275, -26.151926779497785], + [-49.40117632372049, -26.152291494699547], + [-49.40112385882296, -26.15248343471079], + [-49.40270546764792, -26.15504873151852], + [-49.40278245921239, -26.15508076878929], + [-49.4031824196791, -26.155280271553227], + [-49.403186808706174, -26.15528246053967], + [-49.4031896767251, -26.155284221530803], + [-49.40355016310708, -26.155505629417796], + [-49.403710015632065, -26.155726591927497], + [-49.40367214397517, -26.156120795055376], + [-49.40359416197837, -26.156470716306654], + [-49.40359201889553, -26.156486622760365], + [-49.406741925452046, -26.161595119537953], + [-49.410543505151765, -26.158355997791578], + [-49.4105416887675, -26.158348675786858], + [-49.41048573466751, -26.158123085954838], + [-49.41028506499453, -26.157908997572527], + [-49.410214641882256, -26.157696315785742], + [-49.41015314258504, -26.157425267969803], + [-49.41023738713845, -26.157214254702804], + [-49.410500521517605, -26.157019788880834], + [-49.41076198936384, -26.156949534067238], + [-49.41114556073556, -26.15688059587451], + [-49.411562962890244, -26.156717023574362], + [-49.41221730681329, -26.15649023753677], + [-49.41273238538808, -26.15632771493326], + [-49.41296248434026, -26.156294764663325], + [-49.41662965415207, -26.15316971357929], + [-49.41665778177175, -26.15373856958397], + [-49.41673337311081, -26.15362306544133], + [-49.41697051682405, -26.15354522370294], + [-49.41713941313677, -26.153700501182296], + [-49.41716818143682, -26.153746975094034], + [-49.417298803799255, -26.15395798769366], + [-49.417516837239724, -26.154091868019805], + [-49.4176660820233, -26.154130551557248], + [-49.417752129475176, -26.154152855290555], + [-49.417987130793186, -26.154235761562752], + [-49.418230450621536, -26.154442995812218], + [-49.41824918622369, -26.15457976675734], + [-49.41826754381378, -26.15471378370367], + [-49.41818321628835, -26.154932112970904], + [-49.418139784882975, -26.155136264110812], + [-49.418103226870066, -26.155435489231717], + [-49.41813052349479, -26.155830399156606], + [-49.418166351044505, -26.156196168054326], + [-49.41826886143465, -26.156445728742106], + [-49.418403350129836, -26.15673947933162], + [-49.418569914102555, -26.157070112822296], + [-49.41878143319025, -26.157380661172912], + [-49.418785517230525, -26.157386656160423], + [-49.41909115460643, -26.157667629217908], + [-49.41930841726699, -26.15785996054774], + [-49.41950106587761, -26.158066644954314], + [-49.419586624390334, -26.158367178695855], + [-49.41948280870252, -26.158826450029633], + [-49.41941060579303, -26.158930688256394], + [-49.419291877941916, -26.15910209362937], + [-49.41904221243102, -26.15950864441496], + [-49.418940892043445, -26.159781956736364], + [-49.41868287455254, -26.160203047548215], + [-49.418423688391705, -26.160711813365857], + [-49.418100449647994, -26.161139501380568], + [-49.41779281216681, -26.16161850734795], + [-49.41745290346301, -26.162075239415163], + [-49.41723569011965, -26.162489440100114], + [-49.41710697034137, -26.16282267906278], + [-49.41722974726601, -26.165305535377588], + [-49.417290144279995, -26.165401072953465], + [-49.41944610034085, -26.16446029346463], + [-49.41954683218791, -26.164377979965995], + [-49.42007379075227, -26.16393786631795], + [-49.42050091050122, -26.163657449983983], + [-49.42078042192205, -26.163455834110593], + [-49.42136152852908, -26.163228221299466], + [-49.42183641179065, -26.163028697819055], + [-49.42223705501187, -26.162901453571013], + [-49.422629555198064, -26.162774121348328], + [-49.42307874771198, -26.162669316950016], + [-49.423544705158314, -26.162528152498634], + [-49.42387963626427, -26.162444044455757], + [-49.424173960167565, -26.162352192539], + [-49.42441817921835, -26.162354805780076], + [-49.42477626978694, -26.16236594266755], + [-49.42514162863823, -26.162442924533998], + [-49.425424709386846, -26.1625847966575], + [-49.425496035252394, -26.162731713439317], + [-49.42549114354451, -26.162813601456477], + [-49.42548556587768, -26.162906986476], + [-49.425424312843184, -26.163227869673946], + [-49.42529047230086, -26.163496822096263], + [-49.42501262141266, -26.16357423596171], + [-49.42476103610668, -26.163513085742135], + [-49.424451981693124, -26.163487857701973], + [-49.42417442272225, -26.163543349565888], + [-49.42391207712415, -26.163679387384477], + [-49.42367415263105, -26.163815686127016], + [-49.42347693131313, -26.16395241974322], + [-49.42329560317529, -26.16411855331071], + [-49.42298402247693, -26.164283292282978], + [-49.422722548631135, -26.164353569097255], + [-49.42240447643002, -26.16439400708665], + [-49.422038141853484, -26.164390083224976], + [-49.42166356826948, -26.164393376388986], + [-49.4212403424203, -26.164381531703825], + [-49.420995144644344, -26.164451979467515], + [-49.420973525009295, -26.164571583537512], + [-49.4209687780895, -26.164597849552948], + [-49.42098207822185, -26.164617658512036], + [-49.42107256712264, -26.16475242323414], + [-49.4211859887475, -26.16478942288256], + [-49.4213968409092, -26.164858206228995], + [-49.42167139373311, -26.165029223379975], + [-49.42189661648442, -26.165236250685137], + [-49.42206485299056, -26.1654426661672], + [-49.422056546261246, -26.16552273719494], + [-49.42203683390345, -26.165712748260773], + [-49.42200998148619, -26.16589515134858], + [-49.42199019940663, -26.166158014416435], + [-49.42193775721447, -26.166427836585843], + [-49.42186176566956, -26.1666316378269], + [-49.42187053985528, -26.166667724245777], + [-49.4226794474096, -26.16685530683089], + [-49.42290390312663, -26.16663548858817], + [-49.42314183461978, -26.166499189845545], + [-49.4233223909778, -26.166391507281755], + [-49.42360829292884, -26.1663214913915], + [-49.42400758353537, -26.166296533149886], + [-49.42444874298684, -26.166184331776115], + [-49.42478213053326, -26.166217127740715], + [-49.4250822761321, -26.1663007228097], + [-49.42524364024549, -26.16641206331084], + [-49.425360895517024, -26.166613922951154], + [-49.42541876714458, -26.166713550773643], + [-49.4256436130061, -26.166949802080293], + [-49.425824769883064, -26.166977194517887], + [-49.42590364126486, -26.166989121273016], + [-49.42625428660608, -26.16694902418208], + [-49.426542417923926, -26.166710950280873], + [-49.426773079134136, -26.166508799559086], + [-49.42708282635514, -26.166482879595602], + [-49.4273841446238, -26.166478791658786], + [-49.42767654907748, -26.166533069751143], + [-49.428034374728945, -26.166566123639534], + [-49.428489126020864, -26.166658675228028], + [-49.42872300266984, -26.166829252505018], + [-49.42886344310156, -26.167047151073355], + [-49.42882691509009, -26.16734638119395], + [-49.42875177914699, -26.1674449754297], + [-49.42866119321543, -26.167563844714152], + [-49.42839089352743, -26.16768519055731], + [-49.42825754184784, -26.16791761397726], + [-49.42826278070871, -26.168136901966093], + [-49.428275866884405, -26.168152955800984], + [-49.42852049557663, -26.16820967261251], + [-49.42857755311151, -26.168369117798143], + [-49.42859347002587, -26.168374277943528], + [-49.42887763447214, -26.168435771061414], + [-49.429170905678184, -26.1684242851495], + [-49.42944004469649, -26.16839061731192], + [-49.42985736387728, -26.168234299010773], + [-49.43020150971528, -26.16806988993693], + [-49.43043090828307, -26.167962719221347], + [-49.43069965741144, -26.16795827538551], + [-49.430918111742656, -26.16806290970873], + [-49.43103005681115, -26.16821756336423], + [-49.431108568987405, -26.168437629125147], + [-49.43113811679336, -26.168615450037333], + [-49.43114627901607, -26.168664568013057], + [-49.43123409089694, -26.168797039743055], + [-49.43144901113619, -26.16888158707674], + [-49.43150139343832, -26.16890219291434], + [-49.43172091246662, -26.16892645223232], + [-49.431899727319866, -26.168950278676792], + [-49.43201244716818, -26.169046477328518], + [-49.431929683203386, -26.169147903588165], + [-49.43181283387803, -26.169193031952556], + [-49.43178237079317, -26.169204797047534], + [-49.431553164170374, -26.16929735576239], + [-49.431340433562525, -26.16937547442568], + [-49.43107013487458, -26.16949682526893], + [-49.43088047475731, -26.169677494862857], + [-49.430641483567506, -26.169894177610935], + [-49.43043563635258, -26.170067366254912], + [-49.430164852802285, -26.170225248100536], + [-49.4298128498466, -26.170367648198408], + [-49.42979027334222, -26.17038923198808], + [-49.431487846011485, -26.17086397818526], + [-49.431560563044066, -26.170824731774296], + [-49.43194717156151, -26.170529231565375], + [-49.431949365563526, -26.170527308558427], + [-49.43230964089116, -26.170211551430864], + [-49.43268877318069, -26.169864819243983], + [-49.433018764342535, -26.16953948621048], + [-49.43329108945205, -26.16926469335727], + [-49.433578152072066, -26.169106979461112], + [-49.43392046443293, -26.169081389395927], + [-49.434106938458875, -26.1691418328174], + [-49.43438016966859, -26.169415119973795], + [-49.43456375252065, -26.169694759409104], + [-49.434681725230256, -26.170010240049372], + [-49.43476732574477, -26.17031076078992], + [-49.434958472797156, -26.17063432620272], + [-49.4351212043407, -26.170856509701586], + [-49.435190422997216, -26.17095101648831], + [-49.43539766217489, -26.171289367851372], + [-49.43563115693438, -26.171489153129592], + [-49.43578333631603, -26.17168076766057], + [-49.43600637970157, -26.172055825975217], + [-49.43605205636174, -26.172140296527903], + [-49.43655480568473, -26.172280873011786], + [-49.43725155320271, -26.169683118019115], + [-49.437263561653296, -26.16933612100424], + [-49.43723667588816, -26.1689046850783], + [-49.43722443666137, -26.16859763410952], + [-49.4371963962267, -26.168253877189112], + [-49.43715864752004, -26.168111206303315], + [-49.437087813194175, -26.16784349451763], + [-49.43699941442442, -26.16747933378448], + [-49.437027207565535, -26.167223859692427], + [-49.43728256979732, -26.16700002889321], + [-49.43736167298472, -26.166960899646387], + [-49.43752844437963, -26.16687840412578], + [-49.43785650209181, -26.16669918710151], + [-49.43810376652159, -26.16650554439354], + [-49.43868746673945, -26.16432903816952], + [-49.451548773772174, -26.162073023841934], + [-49.459132102757515, -26.162661392790966], + [-49.45949964741985, -26.163404590310222], + [-49.45957415582488, -26.163366460455673], + [-49.459708384137556, -26.16329889103649], + [-49.45990276259035, -26.163201042429453], + [-49.460057683951256, -26.163123055945686], + [-49.46042676672567, -26.162914992792647], + [-49.46081942085311, -26.162772941567486], + [-49.46114590700405, -26.162710582549867], + [-49.461405467399, -26.162786368743333], + [-49.46157405882283, -26.162970820222032], + [-49.46158759469246, -26.163182884183975], + [-49.46151243292904, -26.163328252420815], + [-49.4614452222559, -26.163488318633078], + [-49.46150134633288, -26.163707195462603], + [-49.461507225445644, -26.163730119444796], + [-49.46174009639755, -26.163981012724722], + [-49.4619573549881, -26.16415487405162], + [-49.461989914226486, -26.164180929950685], + [-49.462272111250456, -26.164395801076246], + [-49.46248880310493, -26.164639220406222], + [-49.46263980084507, -26.164925800941717], + [-49.46265739606295, -26.164963126887596], + [-49.46272402188784, -26.16510446768284], + [-49.46302551850603, -26.165714152755783], + [-49.46328763956339, -26.16622111594932], + [-49.463573428946404, -26.166786784070222], + [-49.463844407724096, -26.16721085423448], + [-49.46391659046404, -26.167323818011795], + [-49.46408917113692, -26.16782984248405], + [-49.46422076471776, -26.168357364084326], + [-49.464328693972995, -26.168826178757072], + [-49.46426745296953, -26.169154384954005], + [-49.46407453382004, -26.16959083256322], + [-49.46385766242785, -26.169990493246164], + [-49.463707244929225, -26.170288540720392], + [-49.46348421592258, -26.170534675419628], + [-49.463187960357, -26.170862038562433], + [-49.46389589214458, -26.17229330205261], + [-49.464238513668306, -26.172501283107724], + [-49.46439841022341, -26.172729485614084], + [-49.464533031921974, -26.17302319320026], + [-49.464699842870786, -26.17334646468683], + [-49.464746009277796, -26.173472967984736], + [-49.46606332666608, -26.174581028938587], + [-49.46634492161723, -26.174583959585426], + [-49.466695668928544, -26.174536456491843], + [-49.4669998323676, -26.17431308554005], + [-49.46722295734632, -26.17405963984021], + [-49.467348785270595, -26.173900081445247], + [-49.46746302620178, -26.17375521608668], + [-49.46778234104181, -26.173619690089332], + [-49.46813252451874, -26.173616021998328], + [-49.46836759583684, -26.173698848267406], + [-49.468403966281386, -26.174035378160387], + [-49.468376618032124, -26.174261631249706], + [-49.468542882146934, -26.1746287427385], + [-49.46859648138552, -26.174892375576412], + [-49.46860946742162, -26.175148279540597], + [-49.46837744462884, -26.175460097269372], + [-49.468284870127256, -26.17569298056207], + [-49.468150926643986, -26.175976586984664], + [-49.46815209786407, -26.176032711982074], + [-49.468155959589964, -26.176217793973425], + [-49.468152212672706, -26.176338028577305], + [-49.46913297411579, -26.1771629367936], + [-49.46923446995056, -26.177200954630933], + [-49.46980131809603, -26.177391894868062], + [-49.47037789302207, -26.177514815073604], + [-49.47081605135343, -26.17763629171032], + [-49.47116445835495, -26.17777144962706], + [-49.471585765781796, -26.177936593317057], + [-49.47201446146464, -26.17816027198496], + [-49.472523869681076, -26.178433498402285], + [-49.47255629488585, -26.17845089030152], + [-49.47305779602154, -26.17871185474316], + [-49.47347703405603, -26.179037733442254], + [-49.473652113013294, -26.179353772902203], + [-49.473697488245, -26.179624623765502], + [-49.47368493050808, -26.17996794981085], + [-49.47375765637056, -26.180112121586635], + [-49.47385168148571, -26.180298517296844], + [-49.474042296734, -26.180673176709426], + [-49.474290187144454, -26.18102650594294], + [-49.47447313321982, -26.181364548378625], + [-49.47470427469845, -26.181754243664876], + [-49.47484812094763, -26.181969532544585], + [-49.47583539741276, -26.182799797896298], + [-49.476009319483225, -26.182856590615756], + [-49.47647997698237, -26.18298569215052], + [-49.476992284579886, -26.183094198555064], + [-49.4770241067412, -26.18310093845601], + [-49.4773973467377, -26.1832071092941], + [-49.47789254031432, -26.18332915775212], + [-49.47829686389283, -26.183552576495256], + [-49.478846504290516, -26.183828232786084], + [-49.47921797181196, -26.18407321963193], + [-49.47951624899078, -26.184310140705907], + [-49.47983895227473, -26.184547312703486], + [-49.47995051348309, -26.184738462358922], + [-49.47997980659034, -26.184994532271922], + [-49.4798150844432, -26.185138988788026], + [-49.47958343954125, -26.185421601515248], + [-49.47946836869472, -26.185589297877023], + [-49.479384269806935, -26.185711858141286], + [-49.47936281566333, -26.185766087015892], + [-49.47947196552752, -26.18585787002956], + [-49.48316231315711, -26.183204555896932], + [-49.48316311303439, -26.18314195731289], + [-49.48307765743357, -26.18281954457399], + [-49.48308186718728, -26.182490060555377], + [-49.48308232505175, -26.182454212553413], + [-49.483150261502416, -26.182235683337836], + [-49.483363541942026, -26.182113648670665], + [-49.483472453318996, -26.182091058330613], + [-49.48366563598757, -26.182050987727397], + [-49.48405008410646, -26.181916096526198], + [-49.48432887171527, -26.181765502654155], + [-49.48455169177528, -26.181533947955337], + [-49.484856212102045, -26.181281307001473], + [-49.48521725981184, -26.1810657838718], + [-49.4855859836947, -26.180886875718922], + [-49.486002721036165, -26.180774228417317], + [-49.48644202203531, -26.180807965047595], + [-49.48649018937849, -26.180811663950028], + [-49.48690862505318, -26.18051077720317], + [-49.48683170572341, -26.180837889481136], + [-49.48688132403435, -26.180841699677977], + [-49.487312580970915, -26.1808680423332], + [-49.48768628582844, -26.18093764016861], + [-49.48773271475697, -26.1811281190269], + [-49.48754255280941, -26.18135271262362], + [-49.48735201797256, -26.181606532222087], + [-49.48727472984642, -26.181919972468275], + [-49.48700515815717, -26.18229992831532], + [-49.4867673606405, -26.182429027059193], + [-49.48646507865043, -26.182506309003347], + [-49.48643771426594, -26.182513370919214], + [-49.48583297664077, -26.18508496072461], + [-49.48585363206355, -26.18511615695312], + [-49.48605383293337, -26.185381284332998], + [-49.486071870056406, -26.185393342276875], + [-49.48640911035712, -26.18561877422848], + [-49.486455539697985, -26.185656081084247], + [-49.48673154072408, -26.185877849226824], + [-49.48696412778924, -26.186157924505768], + [-49.48709807771107, -26.186510063093554], + [-49.48712580628879, -26.1868903430132], + [-49.48712892081691, -26.18728498700982], + [-49.48712640922232, -26.18731089963824], + [-49.48911640313422, -26.190131614776273], + [-49.4891529343829, -26.190137097740042], + [-49.48928743099393, -26.190147103320427], + [-49.48960855745278, -26.19017099331871], + [-49.49001467550636, -26.190255534052735], + [-49.490339275237666, -26.190346547041155], + [-49.49060557411137, -26.190539271213062], + [-49.490813944016814, -26.190804479567053], + [-49.49102138719896, -26.191142754924844], + [-49.49121366197922, -26.191393183328717], + [-49.4912747204763, -26.191715346143152], + [-49.491123779146825, -26.19205726361956], + [-49.490934721867674, -26.19219417421182], + [-49.49057512571539, -26.192292800335668], + [-49.49008635867142, -26.1923024098613], + [-49.48956567429377, -26.192260537485627], + [-49.489276443723945, -26.19217239938685], + [-49.489143825004064, -26.192131985800135], + [-49.48907905183077, -26.19212286987117], + [-49.48753774753045, -26.193857982739612], + [-49.48758524666873, -26.194293671698585], + [-49.4876540673115, -26.194645147489524], + [-49.48769334784136, -26.194739568368398], + [-49.487788405123695, -26.19496806707537], + [-49.48792971136922, -26.195135713637043], + [-49.488031738268546, -26.19525675832054], + [-49.48836983690034, -26.19556715127027], + [-49.48870858733851, -26.19582639321706], + [-49.48898875500205, -26.196209263348653], + [-49.489187773232736, -26.196569376733166], + [-49.489314434871766, -26.196855670342316], + [-49.489446544348255, -26.19735393993782], + [-49.48960401365305, -26.197779391453018], + [-49.489720953727605, -26.198189813094377], + [-49.48981590167372, -26.19845181204369], + [-49.491285266290646, -26.200415460581247], + [-49.49141021174732, -26.20048708585659], + [-49.49177901141238, -26.200771933709568], + [-49.49211057753945, -26.200958017677138], + [-49.49250701302961, -26.20116668744261], + [-49.493017825898995, -26.201347292850436], + [-49.49337437596501, -26.201489781739255], + [-49.49357508869818, -26.201718367115983], + [-49.493693160441254, -26.20204110675225], + [-49.49373738603547, -26.20240693661969], + [-49.49374912946201, -26.20276512758843], + [-49.49379400286247, -26.2030798114531], + [-49.493826176801235, -26.20328842635586], + [-49.49386173083865, -26.20351895924829], + [-49.49393932780262, -26.203684211084084], + [-49.495687262300024, -26.203614377736372], + [-49.49585023293598, -26.20342233203674], + [-49.49620299566572, -26.203221317931987], + [-49.49659465328344, -26.20294809070476], + [-49.49660563630075, -26.202940428670345], + [-49.496925914862715, -26.202731774666876], + [-49.49742498130529, -26.202554172105607], + [-49.49788111223738, -26.202551511680877], + [-49.49853898759821, -26.20269705762829], + [-49.49905815144718, -26.202863112009062], + [-49.49947968784857, -26.20302086369464], + [-49.49982775099034, -26.20319248360991], + [-49.5001586993115, -26.203429698579512], + [-49.50043310524916, -26.203629800725146], + [-49.50064014957171, -26.204004604083863], + [-49.50062905742316, -26.204238340121876], + [-49.50049672447255, -26.20439776353752], + [-49.50027471516471, -26.204563582233487], + [-49.50010574097102, -26.204700372763288], + [-49.500060756919474, -26.20473678890431], + [-49.49984551006213, -26.205012292580765], + [-49.49964513170254, -26.205400803212356], + [-49.49934630013212, -26.20584354815227], + [-49.499236911729575, -26.206120132498047], + [-49.49897963608492, -26.206497521307234], + [-49.49860584969808, -26.20707102848329], + [-49.4984204857838, -26.207558755069414], + [-49.498442235692146, -26.20777089800464], + [-49.49844621897363, -26.208099780996918], + [-49.498445296250246, -26.20817274700088], + [-49.49844252108172, -26.208392048012794], + [-49.49827069091059, -26.20853788655169], + [-49.49818728382748, -26.2086086768133], + [-49.497793412033644, -26.208838509047183], + [-49.49717798979303, -26.209197616975093], + [-49.496726926809316, -26.20944147638784], + [-49.49639663476614, -26.209796179424856], + [-49.49640126185378, -26.210073915414604], + [-49.49643591481207, -26.210284745309394], + [-49.49645419931772, -26.210395990253883], + [-49.496426066320716, -26.210688008346093], + [-49.49623357106678, -26.211095273953553], + [-49.49593557124675, -26.211472233890134], + [-49.49570429523596, -26.21172564461642], + [-49.49555063493771, -26.211818323097802], + [-49.495334937519, -26.211948416773616], + [-49.49507413845389, -26.211960371588564], + [-49.49494587028414, -26.211798291986856], + [-49.49473005611986, -26.211474548656227], + [-49.494711232856645, -26.211425658105956], + [-49.491688410494135, -26.210265985330775], + [-49.491617086380245, -26.21031007036221], + [-49.491435961191385, -26.21046168093026], + [-49.491171623178445, -26.210751287760335], + [-49.491035273471105, -26.210956533703612], + [-49.4909830695277, -26.212275523096316], + [-49.4910031926612, -26.2123641133113], + [-49.491021034732675, -26.21288313926355], + [-49.49106275107554, -26.213446254141964], + [-49.49104163344568, -26.21382603321378], + [-49.49116748533564, -26.214178085826063], + [-49.49122787178078, -26.21435865240396], + [-49.49310541974981, -26.215486706658375], + [-49.493203244120465, -26.215506954486752], + [-49.4936908855267, -26.2155923189645], + [-49.49403998036526, -26.21568357587519], + [-49.49449421188074, -26.215834365458335], + [-49.49478639144638, -26.21591773254666], + [-49.49510226433878, -26.21605980156187], + [-49.495434706218056, -26.21618011652494], + [-49.495904218108365, -26.21641144606136], + [-49.49625998942534, -26.2166196919528], + [-49.496663707229494, -26.216901504695347], + [-49.4969130502576, -26.21715251291984], + [-49.49712880245031, -26.2174835652505], + [-49.49729117738924, -26.21780773974783], + [-49.497459789216194, -26.218102691711703], + [-49.498398275782606, -26.218666476612764], + [-49.498193308919355, -26.21895459565188], + [-49.49831038738282, -26.219016586580214], + [-49.49878074302404, -26.219182143112512], + [-49.49889347668929, -26.219230219760856], + [-49.49899139426722, -26.21927197845538], + [-49.4990463741222, -26.2194333052859], + [-49.498929762408025, -26.219636730653345], + [-49.4988526252114, -26.21967105389493], + [-49.49852836438476, -26.219815333910443], + [-49.49818388463437, -26.220001822989868], + [-49.497921591012414, -26.220130687811544], + [-49.49759376822106, -26.220288114838354], + [-49.497248822609194, -26.220511134919743], + [-49.49689489621155, -26.220799831030106], + [-49.49681370053082, -26.220893844979003], + [-49.496635616665806, -26.221144162986608], + [-49.49658959836393, -26.22127047901615], + [-49.500086785954686, -26.221629994093693], + [-49.5002330604079, -26.221571876607324], + [-49.50063473934784, -26.221371349348864], + [-49.50111878936087, -26.22109858183183], + [-49.50155443202497, -26.220788782465657], + [-49.50186841745174, -26.220552038480726], + [-49.501965639583936, -26.220478733175767], + [-49.5021627759254, -26.220349197557745], + [-49.502431096219766, -26.22038845971953], + [-49.50277930033571, -26.220552761633204], + [-49.503085031803344, -26.22085547668173], + [-49.503479533905825, -26.221224862453447], + [-49.50374519300442, -26.221476019626426], + [-49.50388784882724, -26.221791697184813], + [-49.50400653040634, -26.222070594817495], + [-49.50407643474766, -26.222341690602697], + [-49.50409599632259, -26.222729199546887], + [-49.50408426536917, -26.223014083587525], + [-49.50417903363441, -26.223237891294232], + [-49.50433121807652, -26.223444050821254], + [-49.50444111081495, -26.22377401148221], + [-49.50442946983377, -26.22405158352239], + [-49.50429518746593, -26.224364449946503], + [-49.5041827486912, -26.224547427300617], + [-49.504112216832524, -26.224662208522854], + [-49.504000630998064, -26.224816536639903], + [-49.50435976939685, -26.226548007853367], + [-49.51184215726223, -26.22138409166327], + [-49.51228182424179, -26.22172623153016], + [-49.5124347386571, -26.221640594455465], + [-49.51265511746367, -26.221606271765758], + [-49.51292198320163, -26.221762421933096], + [-49.5131153166799, -26.22193246833044], + [-49.51347041121926, -26.22219913222318], + [-49.51381662794565, -26.222524164144286], + [-49.5142278210076, -26.222864462862326], + [-49.514550057490155, -26.223152707857952], + [-49.5149613395245, -26.22348569257551], + [-49.51528330209035, -26.223795852572078], + [-49.51550862090316, -26.224017346869953], + [-49.51569975952482, -26.22422700227462], + [-49.515838089698526, -26.22437873184365], + [-49.51625806760135, -26.224667950533316], + [-49.5167350627494, -26.224957741044456], + [-49.51687056459691, -26.225027920621397], + [-49.51712355917924, -26.22515894983132], + [-49.51739875789686, -26.225300558972066], + [-49.5176899727679, -26.22546425206282], + [-49.518175760756776, -26.225702974545587], + [-49.51850670310814, -26.225947448513054], + [-49.51891086480253, -26.22619996625131], + [-49.519103799420044, -26.22640651665011], + [-49.519246499244, -26.226722178207282], + [-49.519320143580636, -26.226940516174462], + [-49.52056793599437, -26.224452071784118], + [-49.5219700635169, -26.223255135018057], + [-49.52200886543394, -26.22319856552125], + [-49.52235762287735, -26.222668583423633], + [-49.52267388115307, -26.222130974427696], + [-49.522938985912695, -26.22177554959408], + [-49.52338309449769, -26.221436532200325], + [-49.5238831216607, -26.221185767632683], + [-49.52442295727621, -26.221008475941243], + [-49.52471166614159, -26.22091463093308], + [-49.5287054722875, -26.2175048511013], + [-49.528755889276106, -26.21801091484754], + [-49.5289094892741, -26.21786716486502], + [-49.52925283335454, -26.21776827678941], + [-49.529545951641595, -26.217778502872093], + [-49.529821694191824, -26.217876248010107], + [-49.53016965439003, -26.218062403922964], + [-49.53057363513864, -26.218329499661404], + [-49.530888297419175, -26.21857378367907], + [-49.53114594845489, -26.218817498875158], + [-49.53141799214384, -26.21921481902784], + [-49.53165062960886, -26.219597564303594], + [-49.531663395761896, -26.219882687266605], + [-49.53151100990965, -26.220348856748668], + [-49.53147819267259, -26.220575482667922], + [-49.53413432714232, -26.21551555174287], + [-49.53673825949755, -26.21474311236294], + [-49.53699861980455, -26.21452065950968], + [-49.53724754543709, -26.214150439726698], + [-49.537331145116944, -26.213975056463212], + [-49.53738968889284, -26.213852236278722], + [-49.53762178062195, -26.213525694548885], + [-49.53790084914413, -26.213353078673578], + [-49.5381295219286, -26.213304192957168], + [-49.53818975421461, -26.213311910768684], + [-49.53828465266523, -26.21332407247173], + [-49.53843855939604, -26.213343794990042], + [-49.53849786177964, -26.2133778688047], + [-49.53869738307012, -26.21349251218125], + [-49.53919194189707, -26.213680101634726], + [-49.53952550044146, -26.213712635590642], + [-49.539875076139054, -26.213767248496797], + [-49.53994460514255, -26.213791891000483], + [-49.540797012664044, -26.213538993778073], + [-49.54091122265544, -26.214108001614647], + [-49.541140558147966, -26.214188989538542], + [-49.541552178316245, -26.214297254250653], + [-49.541660177885234, -26.214325660912777], + [-49.54198415583903, -26.214475012899662], + [-49.542210134456695, -26.214645318193693], + [-49.54238697894801, -26.214837060641678], + [-49.54232198547854, -26.21504642884718], + [-49.54231913350184, -26.215055616856127], + [-49.54230874716137, -26.215238202890415], + [-49.54224797008353, -26.2155445180836], + [-49.54223426677108, -26.21599745013076], + [-49.54224571334124, -26.216392171098637], + [-49.54234809587931, -26.21667817678069], + [-49.54238145462744, -26.21683544267769], + [-49.54239429491539, -26.216895972637996], + [-49.542384305970124, -26.216921201669535], + [-49.54229342146832, -26.217150740956306], + [-49.542268785714896, -26.21724192103429], + [-49.54219102349356, -26.21752972128043], + [-49.54205766087882, -26.217776859700436], + [-49.541987726083484, -26.217907139920694], + [-49.54187426541556, -26.218118502278], + [-49.541756404660255, -26.218318646040405], + [-49.542694962114346, -26.222994164402653], + [-49.54271835888266, -26.22301419067982], + [-49.54297577300242, -26.22327980587586], + [-49.54311110256975, -26.22353690745429], + [-49.54323685454692, -26.223910837063787], + [-49.54329848583574, -26.224177043873155], + [-49.5433025829651, -26.2242060478606], + [-49.5433175494373, -26.224311995814656], + [-49.5433295318154, -26.224396815777975], + [-49.54324971469856, -26.22471387503085], + [-49.54314515030022, -26.22498528236091], + [-49.542989603799796, -26.225286456851006], + [-49.54279336865767, -26.225466144467358], + [-49.54252056739101, -26.22569804932409], + [-49.54228113538437, -26.22596055307665], + [-49.542110205350816, -26.22614048761375], + [-49.54183870468109, -26.226266455465485], + [-49.541332510536584, -26.226269022051188], + [-49.540674393768725, -26.226277651112863], + [-49.53994054761716, -26.226270392411575], + [-49.539698526485694, -26.226244107169457], + [-49.53917388903285, -26.22618712781229], + [-49.538356895144695, -26.226080656370215], + [-49.53756389676797, -26.22608036385393], + [-49.53707362798325, -26.22615874639025], + [-49.53675150209572, -26.226284202400436], + [-49.53671305607215, -26.226320528521192], + [-49.536529572959545, -26.22649389609753], + [-49.53651107907782, -26.226544992155905], + [-49.53646735708472, -26.22666579116683], + [-49.537878267776264, -26.229232736618194], + [-49.53800435729599, -26.229361528506377], + [-49.53822782459848, -26.229711856809693], + [-49.53840077747978, -26.230004993980998], + [-49.545664492164576, -26.225020411847638], + [-49.55205639983144, -26.22503504561341], + [-49.55156398333079, -26.225594725527078], + [-49.55183203537868, -26.22553341014603], + [-49.552202993029326, -26.2255521829835], + [-49.552405934088306, -26.225602867347874], + [-49.552455306345955, -26.225615198193193], + [-49.552723568023, -26.225754045353554], + [-49.55289922924415, -26.22587684980397], + [-49.552936258642966, -26.225939363688447], + [-49.55299842131237, -26.22604431049433], + [-49.55295421676502, -26.226210366634287], + [-49.552825752826855, -26.226368029038223], + [-49.55262164947638, -26.22650224667899], + [-49.552478152100825, -26.226563139129247], + [-49.55230788965514, -26.226635388663507], + [-49.552020080741, -26.226715810566198], + [-49.551571083426786, -26.226870326974723], + [-49.55119030517172, -26.226964969168943], + [-49.5508941551924, -26.227037738097717], + [-49.55060671616288, -26.227087888999034], + [-49.550199893029564, -26.227242813275314], + [-49.55008104443785, -26.227280187457378], + [-49.54760905072375, -26.230089630068637], + [-49.54776599666834, -26.230351894929512], + [-49.54785261801047, -26.230495120123457], + [-49.55121863686414, -26.2336613865718], + [-49.55122196414607, -26.233660547124327], + [-49.551252146245155, -26.233652933029642], + [-49.551590399434716, -26.233588143968678], + [-49.551945431725464, -26.233531085855134], + [-49.55235098526243, -26.233482089583333], + [-49.55261230544286, -26.23349978676416], + [-49.55282199672292, -26.233600221107576], + [-49.5529791393909, -26.23385906061698], + [-49.55316901252077, -26.234201464024277], + [-49.553458089719406, -26.23471132812201], + [-49.55363082086343, -26.235076268583267], + [-49.553794934028936, -26.235456260071658], + [-49.55389183781827, -26.235812891770607], + [-49.5539970876726, -26.23617717444337], + [-49.5540497993196, -26.236324348214968], + [-49.555071394415876, -26.237285207460204], + [-49.56065701518221, -26.236794437764093], + [-49.567245183427694, -26.233241404254873], + [-49.56841019235619, -26.231134088996065], + [-49.56844903908954, -26.230979647079486], + [-49.56872426757508, -26.23054339121333], + [-49.56892302490793, -26.230151800587432], + [-49.56898438618344, -26.2300954307225], + [-49.57092801434031, -26.226579441952815], + [-49.57090279996534, -26.226174312352953], + [-49.57093375128612, -26.22570541625311], + [-49.57100442682858, -26.225509123030196], + [-49.57105593849512, -26.225366054867735], + [-49.57132142734799, -26.225035648032993], + [-49.57168097219508, -26.22460020590263], + [-49.57195261039144, -26.224351994049055], + [-49.572098920497204, -26.224218301589353], + [-49.57237256447262, -26.223910677729123], + [-49.57247470152693, -26.223781332558904], + [-49.573043796378826, -26.222751743847123], + [-49.57305363965925, -26.222691312585688], + [-49.57309128656415, -26.22236626946575], + [-49.57318833960696, -26.222011528159392], + [-49.57325899888717, -26.221747342936148], + [-49.57336366922554, -26.22146078160617], + [-49.57357717329363, -26.221243379935267], + [-49.57372310810128, -26.22103289147633], + [-49.57391928824113, -26.220853158859967], + [-49.574115468380974, -26.22067342524357], + [-49.574187979357, -26.220587411015618], + [-49.57433608630825, -26.220411724550075], + [-49.574474765704714, -26.22010278311335], + [-49.57454887393351, -26.219821476879336], + [-49.57455431087704, -26.219800839862174], + [-49.57460909576772, -26.219453252688428], + [-49.574722195142314, -26.21916677233206], + [-49.57497033706665, -26.21887402755204], + [-49.57524929550747, -26.218761419630262], + [-49.577901366418246, -26.213962701427416], + [-49.577933346610166, -26.214864773426996], + [-49.57809049431348, -26.214726783742826], + [-49.5784484526498, -26.214419950618506], + [-49.578721523797476, -26.214157703760588], + [-49.57895913734837, -26.214038903014675], + [-49.5791451479995, -26.21400285143096], + [-49.57937995344401, -26.21411862369498], + [-49.57956315698881, -26.21431714612126], + [-49.57973693081464, -26.214598823577575], + [-49.5798688953445, -26.214849827164834], + [-49.57993737350058, -26.215073920951117], + [-49.579950072715086, -26.215115478911546], + [-49.5800545628284, -26.215547842585863], + [-49.58017447847556, -26.216101437212334], + [-49.58026158569758, -26.216581024941355], + [-49.580357060265065, -26.216881921643324], + [-49.580391650833036, -26.216990938535293], + [-49.58042921802284, -26.217257711418775], + [-49.58044607555682, -26.217377421366454], + [-49.58048263652539, -26.217846976254016], + [-49.58050268138936, -26.218048626192097], + [-49.5805278154726, -26.21830147611441], + [-49.580521301549055, -26.21884629013755], + [-49.5804905701709, -26.2193000582361], + [-49.58041067711443, -26.21963226948843], + [-49.580363620491056, -26.220040472638082], + [-49.58024926652078, -26.220432892998748], + [-49.58019658579843, -26.22056274516465], + [-49.58008412139123, -26.220839959518912], + [-49.57996994836324, -26.221217245879014], + [-49.57985478265254, -26.221677768242547], + [-49.57983421776986, -26.221989646308657], + [-49.57984700914011, -26.2223303232702], + [-49.579994766088966, -26.22267229480816], + [-49.58013499471327, -26.222938514369424], + [-49.58022256880329, -26.22312433109543], + [-49.58035713247817, -26.223409849674603], + [-49.58053782183143, -26.22382024410948], + [-49.58071053100438, -26.224192721569338], + [-49.58091053965127, -26.224398970942552], + [-49.58106692557888, -26.22472588645336], + [-49.58122358542002, -26.225030100963064], + [-49.58121969966064, -26.225355475976798], + [-49.58117426951842, -26.225627479120682], + [-49.58104565863952, -26.225800300525112], + [-49.58083025417791, -26.2261766162029], + [-49.58071053019084, -26.22631168457927], + [-49.58069874816465, -26.226317872616345], + [-49.58060954696651, -26.2263647228965], + [-49.580498287719415, -26.22642315924599], + [-49.58028730984406, -26.226428696908094], + [-49.58018085921648, -26.22638337724205], + [-49.580069071557425, -26.22633578459261], + [-49.57983324142921, -26.226303244332556], + [-49.57944566662114, -26.226261676548717], + [-49.57920131448571, -26.226236621315415], + [-49.57893936850868, -26.226271938137625], + [-49.578811211485466, -26.226406921540566], + [-49.5786912185848, -26.226564686917904], + [-49.57868088415449, -26.226723507951103], + [-49.578702481445845, -26.227033990884877], + [-49.57872719253523, -26.2272106740081], + [-49.58358117334332, -26.230163866810216], + [-49.59172824232795, -26.230110754696103], + [-49.59136175583144, -26.228987964345038], + [-49.59110770579686, -26.228748523948145], + [-49.59080329849676, -26.228488177903237], + [-49.59056033047782, -26.228233014665317], + [-49.59020010676088, -26.2279261637953], + [-49.58976847163257, -26.227591393149467], + [-49.58939314976213, -26.227261404326804], + [-49.58908607223543, -26.226945322289783], + [-49.58906405905435, -26.226922663358796], + [-49.58875099920204, -26.226528911340296], + [-49.58856473531983, -26.226246703924023], + [-49.58847959031518, -26.22608039219074], + [-49.58838463412644, -26.225877209488047], + [-49.58833595908268, -26.225660678640082], + [-49.588262865543456, -26.225342775868317], + [-49.58818917119712, -26.225075436098667], + [-49.5881005406446, -26.2247711763757], + [-49.58803676744737, -26.224531513575027], + [-49.587962990127174, -26.22427100980556], + [-49.587936397663015, -26.223921366887712], + [-49.58796469491372, -26.223696374798052], + [-49.58797947650264, -26.22331495075011], + [-49.58797250540683, -26.223039053770933], + [-49.587970985227905, -26.22273562677455], + [-49.58795000762801, -26.22234466783889], + [-49.58792706365922, -26.222119186909996], + [-49.58789997835306, -26.221810918993814], + [-49.58777685120704, -26.2213909003787], + [-49.58775429211562, -26.221133240448516], + [-49.5877006060151, -26.220907463616097], + [-49.58762697065159, -26.22063552484614], + [-49.58754875809086, -26.220317571090465], + [-49.587511919583086, -26.219967834204617], + [-49.58751977572873, -26.21973805117903], + [-49.58753853370798, -26.219453206118978], + [-49.587572335858184, -26.2191960880119], + [-49.58764216810957, -26.218925523791643], + [-49.587687036040826, -26.21859955364956], + [-49.58777245728804, -26.218310748380308], + [-49.58782175525475, -26.218141527746436], + [-49.58758307575419, -26.217410152082582], + [-49.58795401594793, -26.217846021623497], + [-49.58800968913776, -26.217752158633473], + [-49.58815512012162, -26.21758804917639], + [-49.58837108279835, -26.21752575349833], + [-49.58857532490429, -26.217587469857573], + [-49.58880392952325, -26.217755154140647], + [-49.58889898967649, -26.21794914484307], + [-49.58896227003101, -26.218230178645555], + [-49.58899551702601, -26.218451161542024], + [-49.589069208371946, -26.218718501311734], + [-49.589071132410645, -26.218726406305745], + [-49.58913761374849, -26.21899958109806], + [-49.58928669089702, -26.219391763631627], + [-49.589303618741084, -26.219431824365707], + [-49.58994459793578, -26.220184965239884], + [-49.58996784486779, -26.220188171496414], + [-49.59004578124044, -26.220198920251818], + [-49.59029663538639, -26.220219703464426], + [-49.59059995392545, -26.22028453451241], + [-49.59091703647946, -26.220338130517266], + [-49.591192854945525, -26.220414316651574], + [-49.59146818356944, -26.220531872787667], + [-49.59168698600439, -26.22066268110118], + [-49.591843702368735, -26.22084346460984], + [-49.59198995375934, -26.221042537151305], + [-49.59207035761906, -26.22117662189931], + [-49.592225932351646, -26.2214539344119], + [-49.592377472711654, -26.22163926493667], + [-49.59249298297054, -26.22183804357472], + [-49.59255600241329, -26.222142056377873], + [-49.59253196165687, -26.22249025145456], + [-49.592531261693146, -26.22250039945676], + [-49.59253927845596, -26.222688960432162], + [-49.592582836477746, -26.22290544229619], + [-49.59257052110013, -26.22308001833542], + [-49.59268404665187, -26.223307592005945], + [-49.59703458800099, -26.22187252692242], + [-49.5972756638647, -26.221729093556316], + [-49.59754940332652, -26.22154780369614], + [-49.5978022678233, -26.221398495901703], + [-49.59802891640325, -26.221299507189624], + [-49.598275898123596, -26.221214501413748], + [-49.598470771905106, -26.22120255780168], + [-49.59865970992764, -26.221259515208473], + [-49.5988224310335, -26.22136679469768], + [-49.5989182689416, -26.221496425397014], + [-49.59904458006923, -26.221649331000748], + [-49.59918653617497, -26.221779398555174], + [-49.599322608504316, -26.221973771128294], + [-49.599458574868756, -26.22217733670184], + [-49.599675768830046, -26.222446033020333], + [-49.5998740397194, -26.222716914398294], + [-49.60001982126816, -26.22295735194095], + [-49.60016020788278, -26.22322072250068], + [-49.600182331201665, -26.223278903431265], + [-49.600279503602444, -26.22353446112677], + [-49.600363688923, -26.223783506862926], + [-49.600448037190866, -26.224018761598476], + [-49.60056798370014, -26.224277338222382], + [-49.60062185974875, -26.224489318053614], + [-49.60072104025797, -26.22477068374277], + [-49.60077836287232, -26.225125207563547], + [-49.6008086523741, -26.22522167046863], + [-49.60086233526325, -26.225392638300317], + [-49.60092537970666, -26.22569664910297], + [-49.600972943119274, -26.226009707954354], + [-49.601029945839116, -26.226391816776182], + [-49.601037943723064, -26.226611587751556], + [-49.6010412252012, -26.22673161474159], + [-49.60105227481135, -26.227135806707746], + [-49.601093470605846, -26.227554540579238], + [-49.601095079768385, -26.227853372574884], + [-49.601090969102096, -26.228202717588648], + [-49.601088740851914, -26.228392079132558], + [-49.60320935457431, -26.22701285021238], + [-49.603496240247516, -26.22551963970356], + [-49.60347221411, -26.225331094101062], + [-49.60347622480734, -26.224989848087777], + [-49.60348097126528, -26.224585923071995], + [-49.603501245789836, -26.224182144007468], + [-49.603534742681134, -26.223858664901613], + [-49.603553133817165, -26.223615058843276], + [-49.60358157924205, -26.223176525753058], + [-49.60363192221878, -26.222856608594245], + [-49.603697136474594, -26.22259255438884], + [-49.603761046931325, -26.222381890187577], + [-49.60379405765071, -26.22227307908371], + [-49.6038683425145, -26.221897672849526], + [-49.60390364826523, -26.22153582873788], + [-49.60393838020208, -26.221222733628164], + [-49.60397433974023, -26.22080517751435], + [-49.6039994336968, -26.219990517433864], + [-49.604003440394465, -26.21964927342059], + [-49.60395457838092, -26.219182158573126], + [-49.60392058864653, -26.218770903679005], + [-49.603877854197904, -26.21844314381264], + [-49.60380585250707, -26.218084842037975], + [-49.603782496958516, -26.217968618111154], + [-49.603747946406784, -26.217605187218894], + [-49.603749101476815, -26.216846006213615], + [-49.60367875477934, -26.216225456433246], + [-49.603723621979086, -26.21571047229128], + [-49.60376105203934, -26.215167560172596], + [-49.60385780226903, -26.214862017868107], + [-49.60411944658558, -26.214397840045393], + [-49.60434023140003, -26.214107399351416], + [-49.604485307417946, -26.21395270089548], + [-49.604650561438305, -26.213776488376137], + [-49.60478049145431, -26.21363794196778], + [-49.60505651120917, -26.21327140510013], + [-49.60529355385106, -26.212918428354996], + [-49.60550608279173, -26.212669693687065], + [-49.60571084969913, -26.212420884043507], + [-49.60601505851684, -26.212298382087877], + [-49.60603651668757, -26.21229583800381], + [-49.60613208669606, -26.21179826609243], + [-49.60762252885374, -26.212307312797957], + [-49.60768001065904, -26.21231800685865], + [-49.60807469175243, -26.212426205619227], + [-49.60822761562672, -26.212513968976932], + [-49.61211061126292, -26.21384005723542], + [-49.613713615202265, -26.209919358052506], + [-49.613699885015734, -26.209682509945715], + [-49.613734505979146, -26.209376376836616], + [-49.61375327698243, -26.20909795277738], + [-49.61381926997231, -26.208764251569708], + [-49.61391541938752, -26.20850744726749], + [-49.61396491362991, -26.208257170111757], + [-49.614191153221036, -26.208161782401017], + [-49.614456079289674, -26.208103304057126], + [-49.61474437691542, -26.20739811578527], + [-49.61501366751221, -26.20812425389204], + [-49.61506529572851, -26.208109800654842], + [-49.61517024706015, -26.20808041932508], + [-49.61534853390364, -26.208102985765006], + [-49.615612366417224, -26.20820499293624], + [-49.61568084981018, -26.20823147072118], + [-49.6161283016401, -26.208472473315584], + [-49.61643627779261, -26.208691273348173], + [-49.61675120824406, -26.208979786358913], + [-49.61690386075895, -26.209204094879475], + [-49.6170016912009, -26.209469680572226], + [-49.61707191542218, -26.209708506351774], + [-49.617083835629536, -26.20974904831435], + [-49.617119811726106, -26.20999315820147], + [-49.61715408738085, -26.21038351709397], + [-49.61728943741433, -26.210760891668862], + [-49.617410883849686, -26.21099883628749], + [-49.61751777689964, -26.21115306595165], + [-49.61764755318213, -26.211342334543993], + [-49.617769001617546, -26.21158028016247], + [-49.61786891739541, -26.21167180884856], + [-49.6179149527537, -26.211713980703855], + [-49.61806050002297, -26.211882502246567], + [-49.61817378555814, -26.21215519789074], + [-49.61821744971476, -26.212406347753603], + [-49.61821316512409, -26.21277545476722], + [-49.61810756372766, -26.213047344099216], + [-49.61810512472493, -26.213049322106865], + [-49.617903787502144, -26.213212598739673], + [-49.617808528794924, -26.21339279903911], + [-49.617712380380254, -26.213649606341416], + [-49.6175987615372, -26.214073411698624], + [-49.61756424060015, -26.214194610781547], + [-49.621574064476725, -26.215656015186042], + [-49.623848538196796, -26.214478555094995], + [-49.62387586836489, -26.21438274996942], + [-49.62421312464895, -26.21408639890932], + [-49.62437886404597, -26.214007284388337], + [-49.624556613471675, -26.213922437829623], + [-49.62478285706235, -26.213827034118417], + [-49.62498581255332, -26.213731412480442], + [-49.62514356239277, -26.213516965984624], + [-49.625295159667, -26.213163162508145], + [-49.62539145302799, -26.21289242220556], + [-49.625557448741006, -26.21263625968388], + [-49.62580297192687, -26.212415113912137], + [-49.62587125797852, -26.212353608697477], + [-49.626059978977345, -26.212146409104296], + [-49.626286627434816, -26.21201617639192], + [-49.626559854091454, -26.21188637453296], + [-49.62691127289391, -26.211708540428475], + [-49.62725681362449, -26.211518586342244], + [-49.62756043562667, -26.21144479138778], + [-49.627756024951246, -26.211314273773027], + [-49.62820081407212, -26.211116420374832], + [-49.628630717913644, -26.210862708023427], + [-49.629014284476156, -26.210587670817755], + [-49.62956861976894, -26.21031421607528], + [-49.6303794280505, -26.210015276526335], + [-49.63103370609379, -26.209826319469443], + [-49.631579632565796, -26.20960849575334], + [-49.63227296469498, -26.209398996573597], + [-49.632740631047774, -26.20923616010329], + [-49.633160602573945, -26.20917039078294], + [-49.63355552658587, -26.20925761954101], + [-49.63372130942486, -26.209366864957097], + [-49.63522456990047, -26.20858844129838], + [-49.63280981417334, -26.206691867269733], + [-49.63279765355904, -26.20672121992712], + [-49.63274235184101, -26.206854710100856], + [-49.632437225344844, -26.207060834059934], + [-49.63206368007115, -26.20714095523421], + [-49.631505365495435, -26.20708702998948], + [-49.63108661257027, -26.20704832530606], + [-49.63050445508113, -26.20704293113622], + [-49.630086104022965, -26.20696940345138], + [-49.62944329578949, -26.206838074472156], + [-49.62902647022594, -26.206632224782606], + [-49.62858668145635, -26.206398301165198], + [-49.62828636936403, -26.20618656610929], + [-49.62806351765677, -26.20598947780992], + [-49.627856430936184, -26.20577164146097], + [-49.627665912936294, -26.205463414059977], + [-49.62752972916874, -26.205155689488187], + [-49.627409069467554, -26.204848108867544], + [-49.627248795866436, -26.204609808371405], + [-49.627087719531126, -26.204441149877724], + [-49.62686478585066, -26.20425101957846], + [-49.62661321223972, -26.20385166836929], + [-49.62643061421995, -26.20352957194335], + [-49.626317151738185, -26.203270804300022], + [-49.62625637730039, -26.202965615491134], + [-49.62612683993857, -26.2027554578983], + [-49.62593713967318, -26.202377579494588], + [-49.62582312737772, -26.20216756785284], + [-49.625825865473736, -26.201930781844368], + [-49.62588357858947, -26.201638786663114], + [-49.62599562493738, -26.20134729831117], + [-49.62599890279618, -26.201341969423844], + [-49.62597550318758, -26.20132358791341], + [-49.62927975331414, -26.19355044363256], + [-49.629361500371225, -26.193113186739517], + [-49.62946017093525, -26.192633519429844], + [-49.629696617734226, -26.192322288687183], + [-49.629855852567516, -26.19219506704138], + [-49.63038804282734, -26.190942962224952], + [-49.63441864793791, -26.18969557506858], + [-49.6368633165206, -26.19097690674436], + [-49.636812903540395, -26.191171302525834], + [-49.63699686472382, -26.19130324474882], + [-49.63720370752307, -26.191541964098448], + [-49.637215228592886, -26.19180604406182], + [-49.63721628669115, -26.19183029105839], + [-49.63717356682826, -26.192171188192173], + [-49.637053793447755, -26.192462618568097], + [-49.636910737967725, -26.192753832017267], + [-49.63677560246766, -26.19303118644162], + [-49.63650924416461, -26.19324464527841], + [-49.63645406911835, -26.193293147451673], + [-49.63634458202665, -26.193389390795687], + [-49.63621221750091, -26.193487531254736], + [-49.63554299192255, -26.19606792417263], + [-49.63569854236272, -26.19625298082197], + [-49.6359963682783, -26.196680594885244], + [-49.63623370139679, -26.196968352138793], + [-49.63650984568118, -26.197256468270286], + [-49.63674006055385, -26.197488441546263], + [-49.63681476432793, -26.197606753311273], + [-49.63696116484509, -26.197838614850674], + [-49.636996538154634, -26.19813844173902], + [-49.636938532145976, -26.198458300920834], + [-49.63671729252065, -26.198797549615804], + [-49.63645820341027, -26.199052867429856], + [-49.636106373768875, -26.199272501535468], + [-49.63600019849381, -26.19931770786917], + [-49.635802152980744, -26.19940202949168], + [-49.63542743810666, -26.199586624669323], + [-49.63510705446491, -26.19977171967626], + [-49.63478603103581, -26.200012526684972], + [-49.63449533397876, -26.200316297598345], + [-49.63439159827686, -26.2005071537696], + [-49.634248996427644, -26.201056932514575], + [-49.63428890027208, -26.201393952245837], + [-49.63436275985394, -26.201721986013155], + [-49.634419540056385, -26.20203552266737], + [-49.646168073579055, -26.209882682750365], + [-49.65083379145757, -26.207213377825617], + [-49.64869676356964, -26.195776484364096], + [-49.64898569697015, -26.19561739155154], + [-49.64898613618069, -26.195614384045612], + [-49.649088153305286, -26.19527648172581], + [-49.64936994569573, -26.19506897884017], + [-49.64965112229332, -26.194915683956335], + [-49.65001428960816, -26.19485801081436], + [-49.65040750910374, -26.19481416457773], + [-49.65042351816714, -26.194813029527385], + [-49.65044989187333, -26.19481115906544], + [-49.65372282637953, -26.19300888043848], + [-49.65319140521694, -26.1871633842764], + [-49.66052370602237, -26.186969802161855], + [-49.661152690130805, -26.187852087071352], + [-49.66141980331443, -26.187989853963177], + [-49.66184045986994, -26.188190190638846], + [-49.662177902122885, -26.188403325576285], + [-49.6623724805563, -26.188560951963414], + [-49.66255058739164, -26.18884041040177], + [-49.66282480434534, -26.18930370753684], + [-49.663051294733016, -26.189672944822533], + [-49.66305470576901, -26.18967850581178], + [-49.66305688679881, -26.18968382680487], + [-49.663216418980376, -26.19007301630107], + [-49.663363107101475, -26.190460613837715], + [-49.663635582651395, -26.191079757977434], + [-49.66382032484746, -26.191588220336744], + [-49.66924656615485, -26.187551121307184], + [-49.66944080098444, -26.187145226728646], + [-49.66971054224618, -26.186659730882273], + [-49.669874887638336, -26.18632312236685], + [-49.669911487502915, -26.186248159252088], + [-49.66998095052715, -26.186178498033886], + [-49.67034681565451, -26.185811588884448], + [-49.67073022911621, -26.185511871679413], + [-49.670758202149784, -26.18549000559146], + [-49.67076935318039, -26.18548570955649], + [-49.671016070856105, -26.185390672780507], + [-49.67145485943898, -26.185320072399975], + [-49.6719317810531, -26.18521592889954], + [-49.67226531002946, -26.185103718850524], + [-49.67260646401219, -26.18498479877742], + [-49.67275407962363, -26.18494128243635], + [-49.67380235597358, -26.184161250121115], + [-49.67384857064442, -26.184866013471687], + [-49.673899049051975, -26.184874407709724], + [-49.67432070026985, -26.184986614381845], + [-49.6743292733383, -26.184994925354907], + [-49.67457471829759, -26.185232855580885], + [-49.674730497932735, -26.185484993089037], + [-49.67488627956787, -26.18573713059715], + [-49.674912181174015, -26.186123639513394], + [-49.674916562294776, -26.186408302497867], + [-49.674835110227654, -26.186738193752312], + [-49.674794490051596, -26.186995349878707], + [-49.67466982585816, -26.18733984926906], + [-49.67462165364991, -26.187596935419133], + [-49.674595884921935, -26.18769533349965], + [-49.67453489556579, -26.187928218690224], + [-49.674395354230285, -26.188252250127658], + [-49.674287299582986, -26.18846136046646], + [-49.674125555995374, -26.188744530974027], + [-49.6741052910395, -26.188780841492903], + [-49.67427526551102, -26.191372753971233], + [-49.6806047572487, -26.186112274145962], + [-49.690429791498076, -26.188566056431377], + [-49.685442132114765, -26.18396759645421], + [-49.684935303670024, -26.18382830397123], + [-49.68380506701267, -26.18360139353193], + [-49.68311950653927, -26.183452978691612], + [-49.68248991324833, -26.183290555675175], + [-49.682039625357824, -26.18303579209465], + [-49.68154448711869, -26.18273996865563], + [-49.681086584222115, -26.182491917098904], + [-49.68062913716997, -26.182203209540983], + [-49.68033780982609, -26.18191598545996], + [-49.67995610201814, -26.181607624663606], + [-49.67958942230052, -26.18130617481991], + [-49.67932920677452, -26.180937909641422], + [-49.67901628897132, -26.180555619628855], + [-49.67876302468489, -26.180241629428124], + [-49.67850251226267, -26.179900466250302], + [-49.678227048724295, -26.17954561511953], + [-49.67778750277819, -26.179006322506353], + [-49.67753404855176, -26.17870799630595], + [-49.67722763514396, -26.178420629272107], + [-49.677019306180426, -26.178140915929554], + [-49.67690906166129, -26.177868857278096], + [-49.676919552683, -26.1776046552467], + [-49.67703673081845, -26.17725330888017], + [-49.677206988101574, -26.176882109346614], + [-49.67726871690673, -26.17676435815302], + [-49.67737671456598, -26.176558343814417], + [-49.67739318249611, -26.176545625894413], + [-49.6767173501581, -26.17592237620299], + [-49.68862461283241, -26.176929385031986], + [-49.69896785224731, -26.161484550124918], + [-49.71066786703059, -26.154345212479313], + [-49.71148261117386, -26.15519721808758], + [-49.71161148397686, -26.155074572205002], + [-49.71188961826986, -26.154847221331202], + [-49.71193140331396, -26.154813065199914], + [-49.71225674843496, -26.15474812917592], + [-49.7125584937968, -26.1547710852252], + [-49.7126272112196, -26.15480538600849], + [-49.71276140704507, -26.154872369585078], + [-49.71290392392175, -26.154943508135524], + [-49.713241222221924, -26.15517007307075], + [-49.713553826151994, -26.15558617308181], + [-49.71376814671674, -26.156014971402367], + [-49.71399874093076, -26.156335483672628], + [-49.714309531509414, -26.156920988687556], + [-49.71464726467138, -26.157369507618967], + [-49.71486913726844, -26.157798373915558], + [-49.71507554593108, -26.158260986260366], + [-49.71529632391734, -26.158791488559253], + [-49.71556371462944, -26.15920041171254], + [-49.715824015439296, -26.15973689244683], + [-49.72364923443273, -26.167918297141288], + [-49.7238909999847, -26.16803104436882], + [-49.72440901896147, -26.168235076733115], + [-49.724866169140505, -26.168557529287884], + [-49.72508872464618, -26.168703665584417], + [-49.725263567829025, -26.168818472031727], + [-49.72553261597167, -26.169078306180264], + [-49.72570300687883, -26.169384725639393], + [-49.72582737285296, -26.169758514242723], + [-49.72591435153668, -26.170098096964477], + [-49.72592403928718, -26.170281065931785], + [-49.72592489644066, -26.170297254924492], + [-49.726641414698115, -26.171046270264004], + [-49.72883895055969, -26.169682289437283], + [-49.73690377007245, -26.157196635744164], + [-49.73663459395642, -26.156998358319846], + [-49.73616337035179, -26.156580955811172], + [-49.735834294824066, -26.156286746852658], + [-49.73531778602711, -26.155868954486824], + [-49.7349438541512, -26.155533697670144], + [-49.73450953001872, -26.155197922043925], + [-49.73411266715058, -26.154889571299123], + [-49.7338106563116, -26.154743567253185], + [-49.73352578636575, -26.154551367153754], + [-49.73317426966395, -26.154236611265937], + [-49.73276301247215, -26.15386035456723], + [-49.73239691452471, -26.153498042725897], + [-49.731932756134434, -26.153128114193738], + [-49.73147658862063, -26.152717596636773], + [-49.731096422246, -26.152260296840858], + [-49.73070123578138, -26.151796092092173], + [-49.730290596382446, -26.151365638391745], + [-49.72987873342481, -26.151050376693707], + [-49.72949677969931, -26.150762476901104], + [-49.72903099690644, -26.150548399371672], + [-49.72852819469383, -26.150266234959705], + [-49.727852061639716, -26.149955469094294], + [-49.727453858265264, -26.1497758473513], + [-49.727139340010105, -26.14953595334532], + [-49.72696897210489, -26.14922953188567], + [-49.726723911593645, -26.148847918662426], + [-49.72651681016511, -26.148446298319676], + [-49.7263442253932, -26.148176674866722], + [-49.72596627324137, -26.147516071065297], + [-49.72553628358001, -26.146780480428585], + [-49.725358887461596, -26.14642656299162], + [-49.72513794152842, -26.14590963169372], + [-49.725029353387534, -26.145474988040718], + [-49.7251851063173, -26.1450290695552], + [-49.72541716924111, -26.14475679682718], + [-49.725506197211885, -26.144652342547953], + [-49.72565408099584, -26.144549479700146], + [-49.72488567584547, -26.143702205929948], + [-49.727238910280064, -26.143394390855914], + [-49.72805442495114, -26.142844564540663], + [-49.728684767237624, -26.142490809558925], + [-49.72923048974185, -26.142285410841918], + [-49.72961574627308, -26.142261608628317], + [-49.72996188813688, -26.142366228536396], + [-49.73035288934863, -26.142511894302586], + [-49.73093253438773, -26.142665949474296], + [-49.73162143633624, -26.142821026632912], + [-49.7358331333113, -26.14226988016537], + [-49.74028434211744, -26.13850780567033], + [-49.7485837959121, -26.13994099231702], + [-49.74947468147777, -26.13315354892133], + [-49.74938707050632, -26.132699911439907], + [-49.749211826583924, -26.132135967000472], + [-49.749015436020706, -26.13142953162957], + [-49.74900889577464, -26.131373123650942], + [-49.74894621941707, -26.130832593856194], + [-49.74889850832464, -26.13034426301344], + [-49.748971688697665, -26.129844704789857], + [-49.74913735774916, -26.129161646277264], + [-49.749258096479046, -26.128444331906895], + [-49.749282745074225, -26.128313029831045], + [-49.749394001247005, -26.127720372488756], + [-49.74937647328303, -26.127232303550926], + [-49.74917069136323, -26.126701984207035], + [-49.74900334055887, -26.12615969274214], + [-49.7489735970604, -26.126063310837267], + [-49.748976327638964, -26.125951504830233], + [-49.74898683201712, -26.125521288803178], + [-49.74904407163277, -26.125101616628655], + [-49.74927510890681, -26.124663080906675], + [-49.749649400840724, -26.124239304733088], + [-49.749918796598784, -26.123884078889052], + [-49.75012142409623, -26.123275874259125], + [-49.75040649515318, -26.12272258436853], + [-49.750759056653806, -26.122210529264716], + [-49.750930580911415, -26.12205939490122], + [-49.751254419857005, -26.119591359293523], + [-49.76463926428735, -26.113803059398798], + [-49.76802874673805, -26.104750053974186], + [-49.77415830659756, -26.101488569837798], + [-49.77422626265191, -26.101381477617313], + [-49.77461296758006, -26.10120170940114], + [-49.77482198312457, -26.10113540640375], + [-49.775581140479034, -26.100731428092157], + [-49.77581515598902, -26.101222417594833], + [-49.77591053617624, -26.101239551309614], + [-49.77601929377375, -26.101275897966083], + [-49.77613188739232, -26.10131352561046], + [-49.776263999118136, -26.10135767719318], + [-49.77674442009583, -26.101605607674163], + [-49.777031038271666, -26.10185662176613], + [-49.777095942764326, -26.101913463560493], + [-49.77742392767445, -26.10230922051946], + [-49.777526513263254, -26.102608242190893], + [-49.777552514794074, -26.102717102106972], + [-49.77762058118359, -26.103002066887466], + [-49.777595046182384, -26.103287674963056], + [-49.777606592569875, -26.103633389920688], + [-49.7776933903545, -26.10400005464062], + [-49.77790175933863, -26.1042863979786], + [-49.778216052666224, -26.104546506982945], + [-49.77851567377417, -26.104765834034257], + [-49.77883039094605, -26.104985284037976], + [-49.77908439399219, -26.10523811823247], + [-49.77928537495743, -26.1055275545935], + [-49.77929263702851, -26.105538012570495], + [-49.779292876036145, -26.10553971956964], + [-49.7793629682687, -26.106040072339862], + [-49.7795472607026, -26.106468528751027], + [-49.77955148198062, -26.106793848732025], + [-49.779545621232444, -26.106865220749324], + [-49.779517002462384, -26.107213724833535], + [-49.779376735549, -26.107646282268366], + [-49.77927238790754, -26.107851995593887], + [-49.77922517006992, -26.10794508174116], + [-49.77919188318433, -26.108010702845004], + [-49.77903036265584, -26.108307548349224], + [-49.77873121747407, -26.108584978287997], + [-49.778394787704215, -26.10900915334175], + [-49.778098943029526, -26.109155808272305], + [-49.777592844070995, -26.109199073867874], + [-49.77720216976104, -26.109026432103057], + [-49.776577425512585, -26.10886541107624], + [-49.77594486233615, -26.108731428073543], + [-49.77532795501581, -26.10854335702229], + [-49.775003317447656, -26.108453241234923], + [-49.7684867131069, -26.110309710581426], + [-49.7684154357049, -26.110476756061143], + [-49.773808695719595, -26.11875820886459], + [-49.7766960119344, -26.11980593811764], + [-49.78263532910821, -26.114264737112773], + [-49.786842783912256, -26.10077193234327], + [-49.78683158369693, -26.100636281879147], + [-49.78688071543459, -26.100257188731096], + [-49.78699679482299, -26.099973517370152], + [-49.78716878307446, -26.099726346810435], + [-49.787588957117144, -26.098378680956653], + [-49.78770484526483, -26.099098004701602], + [-49.78784482341952, -26.098950409713897], + [-49.788216619204384, -26.098750154544863], + [-49.7886096736042, -26.09868560730618], + [-49.788925967178216, -26.098749187307178], + [-49.78924109119345, -26.098927960309858], + [-49.78924492222439, -26.09893180629774], + [-49.789547364670184, -26.099235415337997], + [-49.78960296034763, -26.09935004416046], + [-49.78973215592184, -26.099616418747893], + [-49.78994678543121, -26.100031548063054], + [-49.79003972579343, -26.100540555760368], + [-49.79008771284231, -26.10101734960003], + [-49.79010352952204, -26.101175653547216], + [-49.79014937549252, -26.101634532393973], + [-49.79013571877179, -26.102237543425723], + [-49.790137564959096, -26.102800019409383], + [-49.79009489166932, -26.10328758753493], + [-49.790035271016905, -26.10395798671043], + [-49.790045828794895, -26.104405332668705], + [-49.78998806843801, -26.104891880841876], + [-49.78993668155797, -26.10549458999279], + [-49.78982560239095, -26.10634588632736], + [-49.7897812215228, -26.106686011461058], + [-49.78968120256559, -26.107321421764766], + [-49.789668295829166, -26.107403411803997], + [-49.789526214618256, -26.10801892324077], + [-49.78949909075935, -26.10808469432516], + [-49.789386949342415, -26.10835661767399], + [-49.78924344433408, -26.1086474332432], + [-49.789865609091436, -26.112508556060163], + [-49.80222378353508, -26.11000629489615], + [-49.80649655007322, -26.103551350995442], + [-49.80792686433782, -26.09209742678288], + [-49.80764486262454, -26.091500347382244], + [-49.807618627277, -26.09143905446641], + [-49.80742364769398, -26.09098353709119], + [-49.80725457224626, -26.090534910634126], + [-49.807205271672316, -26.09018212279704], + [-49.80719376323181, -26.089822860840684], + [-49.807309642670845, -26.08955272448057], + [-49.80743340885438, -26.08946618009176], + [-49.80753000399774, -26.089398635788182], + [-49.8078992709273, -26.089238955626037], + [-49.80829773719963, -26.089127052933776], + [-49.80841408355547, -26.08819518162338], + [-49.809509932228536, -26.089019460117978], + [-49.809644199510146, -26.08904971412244], + [-49.81009453433162, -26.089290525695873], + [-49.81046948680832, -26.08952395050744], + [-49.81073473742835, -26.089654988667302], + [-49.81076232259679, -26.089668615579992], + [-49.81125078442169, -26.089869065033795], + [-49.8118522188026, -26.090090747130443], + [-49.81238622171478, -26.090264447441005], + [-49.81282988916652, -26.090417091037004], + [-49.81292297574797, -26.090466393742194], + [-49.8131676602762, -26.090595990966907], + [-49.813368747149994, -26.09086189132632], + [-49.81341853154249, -26.091167239162644], + [-49.813447570114306, -26.091283330068507], + [-49.81349836211446, -26.091486380903728], + [-49.813541141267194, -26.091737458763358], + [-49.81366610808232, -26.092070515361634], + [-49.81370139961347, -26.092172029541327], + [-49.816081320611026, -26.09396193570263], + [-49.824690334537344, -26.093065585727487], + [-49.8307438303924, -26.083211633855928], + [-49.8302778569754, -26.081192289113893], + [-49.83013616749616, -26.0808244176005], + [-49.82980530268445, -26.079940828666004], + [-49.829525792667596, -26.07920674056577], + [-49.82926845292842, -26.07852026739434], + [-49.82907120254788, -26.077861375032494], + [-49.828920344916696, -26.07708764752678], + [-49.82876975318167, -26.07628681002076], + [-49.8286853314089, -26.075662684301758], + [-49.828717583689425, -26.07518423521084], + [-49.82874617243829, -26.074554116429848], + [-49.82844276565267, -26.073239097632], + [-49.829093728732545, -26.072137317545657], + [-49.82911803221763, -26.072049763018562], + [-49.82924377975204, -26.071535729633343], + [-49.829423127197344, -26.0709407990808], + [-49.82963820058113, -26.0705494514108], + [-49.82978557660071, -26.070137236955013], + [-49.8300455113313, -26.06978690214239], + [-49.83042455219428, -26.06960014995001], + [-49.83059802813552, -26.069591138503185], + [-49.83108528431314, -26.0687663798485], + [-49.83304399373208, -26.070397627911056], + [-49.83333500801252, -26.07053797373833], + [-49.83407792869467, -26.07094364538273], + [-49.83442315285958, -26.07112933128813], + [-49.83491164565468, -26.07132291874079], + [-49.8354596330423, -26.071605070003425], + [-49.83590234385468, -26.07185250859938], + [-49.83631481756575, -26.072106485290544], + [-49.836674290132294, -26.072380377148644], + [-49.83723999122228, -26.07282453035115], + [-49.8376657826991, -26.073261590995724], + [-49.83805385301695, -26.073698348759482], + [-49.838365957224866, -26.074188718761626], + [-49.83870115334624, -26.0746318296921], + [-49.83910240348188, -26.075265201409092], + [-49.83932304689403, -26.07562646017059], + [-49.84019695494205, -26.076354142837975], + [-49.84360865778056, -26.07291076672692], + [-49.83834520550299, -26.069809996436366], + [-49.83828024089528, -26.069811570137908], + [-49.837368844213266, -26.069845700015613], + [-49.83661374131882, -26.069914306398875], + [-49.835707176022176, -26.07004270925882], + [-49.83519479962551, -26.069977686878527], + [-49.83500818905074, -26.06977291647262], + [-49.834823362774266, -26.069385189065475], + [-49.83468479129892, -26.068896178514663], + [-49.834410108381164, -26.068439982392803], + [-49.834113723004265, -26.06788874334172], + [-49.83393651573397, -26.067494304910532], + [-49.83371497390912, -26.06700464562154], + [-49.83350858712208, -26.0665083262848], + [-49.83337114920557, -26.065904122733038], + [-49.83329333082935, -26.065374928991044], + [-49.833275131993254, -26.064920745059226], + [-49.8332417161452, -26.064479857174977], + [-49.83321624217349, -26.063998508266717], + [-49.83316039715267, -26.063537252453756], + [-49.83306055044759, -26.062946896782787], + [-49.832893611144755, -26.06227469532558], + [-49.832627751766424, -26.061689810178372], + [-49.83245876226897, -26.061227667722648], + [-49.832326892164346, -26.06082680714818], + [-49.832166239387234, -26.060283407667914], + [-49.83207949452542, -26.059896451950745], + [-49.83208392778543, -26.05944244694734], + [-49.8320650032358, -26.05906279901592], + [-49.832107377566565, -26.058586065893106], + [-49.832162383367745, -26.058217120728116], + [-49.83217196415893, -26.0581528606994], + [-49.83220315388713, -26.0579228364619], + [-49.83142040137351, -26.053417982603065], + [-49.83564375804512, -26.052450134054226], + [-49.836033094308554, -26.053176473322182], + [-49.83623334795557, -26.05319720399721], + [-49.836427210664695, -26.05342913537984], + [-49.8366200187892, -26.053769484763198], + [-49.83689454375673, -26.054239231885564], + [-49.83705530868643, -26.05456385037035], + [-49.837345528484164, -26.054972735444515], + [-49.83760378653478, -26.055481443617246], + [-49.837604588544224, -26.05548302261471], + [-49.83790030717892, -26.05610201966644], + [-49.838076657785656, -26.05658454509811], + [-49.83825182286013, -26.057189039530694], + [-49.838276486438986, -26.05731183344992], + [-49.83829244609363, -26.05739129199617], + [-49.84211544490934, -26.06452235246305], + [-49.862056229355495, -26.05587541628851], + [-49.863894671005504, -26.04931744481904], + [-49.86388003697632, -26.04892735479717], + [-49.86403390838898, -26.04861003431945], + [-49.86411576840962, -26.048528705356233], + [-49.86466485839331, -26.04656983920906], + [-49.870751077253445, -26.04375088495351], + [-49.86963258692151, -26.041906938397837], + [-49.86962578473298, -26.04190018583267], + [-49.869177054296166, -26.041496942261634], + [-49.86883346348542, -26.04114193635706], + [-49.86829462451223, -26.040697341071702], + [-49.86759747784708, -26.040244755286636], + [-49.867178285797394, -26.03990949262006], + [-49.866639389850405, -26.03947165833446], + [-49.866212234942424, -26.039181523691674], + [-49.8658534491206, -26.038839944834265], + [-49.8656081746187, -26.03845857461936], + [-49.8654521720236, -26.038215038118793], + [-49.86540750856696, -26.03814531326174], + [-49.86531249093322, -26.037826084570444], + [-49.865243358937626, -26.03764363979374], + [-49.86515797470803, -26.03741830306951], + [-49.86515460917824, -26.037285192083726], + [-49.865147006981495, -26.036984515115826], + [-49.86503013594096, -26.03658379849573], + [-49.86504216720077, -26.03637977546319], + [-49.86504811183516, -26.03627898744715], + [-49.865208797565515, -26.036036259946158], + [-49.865564449839596, -26.03598183382431], + [-49.865714849378364, -26.035958818349958], + [-49.866079178998525, -26.036048352502565], + [-49.86550649069043, -26.03510408728728], + [-49.869565595030195, -26.03421438768662], + [-49.869566145694264, -26.034213584232173], + [-49.869915488165056, -26.03395873213558], + [-49.86996876330188, -26.033936658967935], + [-49.87044549852647, -26.03373914046736], + [-49.871065359528146, -26.03358800051338], + [-49.8714958530751, -26.03352351315519], + [-49.87187387527009, -26.033424741963692], + [-49.87261509049279, -26.03319997962827], + [-49.873167069208826, -26.033048316888664], + [-49.8737946521637, -26.03287689791066], + [-49.87459613166549, -26.032659360384546], + [-49.875412698230605, -26.032441932810702], + [-49.87619685471178, -26.0322378063388], + [-49.87685418097505, -26.032114033265326], + [-49.87768532981106, -26.031950915643694], + [-49.87831877389467, -26.03180655364612], + [-49.87843357427228, -26.03178039128415], + [-49.878583845837596, -26.031764472809783], + [-49.87909036174303, -26.03171081921074], + [-49.87966374804717, -26.031688050399406], + [-49.88028250448936, -26.031652068445123], + [-49.88073478346837, -26.031675816015042], + [-49.880978578815785, -26.03171212981299], + [-49.891776480130055, -26.029343790291247], + [-49.89827364031147, -26.034279975878647], + [-49.90413834723821, -26.02686435457419], + [-49.91530539023834, -26.025043130908674], + [-49.93122247673314, -26.030677625166387], + [-49.931315347494085, -26.03069275101053], + [-49.93175160882333, -26.030824650623966], + [-49.9319977529026, -26.030952007467548], + [-49.93531128939987, -26.032124658931522], + [-49.94066652526893, -26.02546897686626], + [-49.93530892309304, -26.019844716550082], + [-49.93496616589507, -26.019673917831057], + [-49.93466611295359, -26.019495571787523], + [-49.934535030907405, -26.019366664207116], + [-49.93447174840238, -26.01930443140973], + [-49.93434687743192, -26.018930818818184], + [-49.934352326498846, -26.018840432487046], + [-49.934254029701286, -26.0187372341766], + [-49.934367868665106, -26.018582625984834], + [-49.93437342083273, -26.01849052874951], + [-49.93444393897039, -26.018192863536566], + [-49.93456657561591, -26.017970117156047], + [-49.935040640801404, -26.017668903012], + [-49.94182737368329, -26.008450524586845], + [-49.94235422344595, -26.008909183600306], + [-49.94266072215274, -26.008919849844055], + [-49.94314249351183, -26.009011384315098], + [-49.943578965707545, -26.00910936992927], + [-49.9441579758158, -26.009289688089048], + [-49.944774506160044, -26.009490598129254], + [-49.945224983887975, -26.00971065469449], + [-49.94589238928721, -26.010128771565526], + [-49.94638945267703, -26.010469358978757], + [-49.94646202017191, -26.01051908274705], + [-49.94693417541172, -26.010847711239524], + [-49.94740609675598, -26.01120344273163], + [-49.94793092526905, -26.011545995056704], + [-49.948410223723236, -26.011922109524505], + [-49.94885254370668, -26.012216641112506], + [-49.94924532425639, -26.012452499859464], + [-49.94959703091327, -26.012759943733947], + [-49.94995604070603, -26.01309454258419], + [-49.95027675760191, -26.013496634553313], + [-49.95064236084357, -26.01393970037857], + [-49.951037534472434, -26.014450738107602], + [-49.951418284751355, -26.014887130884944], + [-49.951722273314644, -26.015478840899846], + [-49.9520178992117, -26.01616536593758], + [-49.952321545931795, -26.016797737951936], + [-49.95265358856098, -26.017633616868622], + [-49.95284721016186, -26.01804292833663], + [-49.953498071407154, -26.018609407773795], + [-49.96019038225315, -26.0201562321093], + [-49.95950844800613, -26.020758911576596], + [-49.95991333927114, -26.020853816734178], + [-49.96034210154015, -26.020978799369846], + [-49.96083078324447, -26.021151638813713], + [-49.96096077008469, -26.021228705398592], + [-49.96110838503882, -26.02131622292723], + [-49.96126539330213, -26.021473185423353], + [-49.961368501840454, -26.021758528085513], + [-49.96138895290106, -26.022009409011073], + [-49.96120574013551, -26.022265639582255], + [-49.96082687336643, -26.022473060775834], + [-49.960365176197826, -26.022666346232555], + [-49.95997199402613, -26.0227855674748], + [-49.95926870097783, -26.023011036696392], + [-49.95881844955063, -26.023125623119746], + [-49.958361752102924, -26.02324184956349], + [-49.9574297932334, -26.023500825508773], + [-49.95680198244803, -26.023713286491255], + [-49.95612863860357, -26.02395930461695], + [-49.955756495710915, -26.024074637589028], + [-49.9483913819452, -26.03058258745995], + [-49.94842921619624, -26.03080853377318], + [-49.948453137557905, -26.03087593969482], + [-49.948569051310336, -26.031202569315383], + [-49.948791542902576, -26.031631073594287], + [-49.94911201393166, -26.03206704756225], + [-49.949418711323375, -26.032353837579212], + [-49.949673096280385, -26.032584812764163], + [-49.950138706100944, -26.03281174627952], + [-49.95074023741181, -26.033019307364462], + [-49.95125863245345, -26.03324660671237], + [-49.95204026391424, -26.03355708022226], + [-49.95260331540652, -26.033852450425695], + [-49.953083117681935, -26.03418111289186], + [-49.95353252193536, -26.034536664453395], + [-49.954116195410386, -26.03506257558261], + [-49.95474542294461, -26.03555492256853], + [-49.9552545287384, -26.03598543393751], + [-49.95565092987554, -26.036367715665804], + [-49.95609924662571, -26.036852015225506], + [-49.95649519297202, -26.037288512953037], + [-49.95693563484765, -26.037813425536115], + [-49.9572705012811, -26.0383376004539], + [-49.95746646075874, -26.03876471781608], + [-49.957642679633125, -26.039314871236204], + [-49.95779533283081, -26.039973283726898], + [-49.95792530395997, -26.040638309289374], + [-49.95801120737708, -26.04116749099676], + [-49.958140421846174, -26.04192060555815], + [-49.95817358195482, -26.04217507710264], + [-49.97277362723728, -26.05829287299113], + [-49.97760027086097, -26.05327390740728], + [-49.96925568500635, -26.04388617847911], + [-49.96904537720273, -26.04371053987768], + [-49.968641993744846, -26.04325369517629], + [-49.96834281035696, -26.04296021713756], + [-49.96794675103553, -26.04253053441168], + [-49.96770095560745, -26.04216966420606], + [-49.96767866003753, -26.04211179430942], + [-49.96630864761024, -26.040570273367372], + [-49.96393541450061, -26.02913811056749], + [-49.96378907424214, -26.028786350138958], + [-49.96361412779428, -26.028087135720785], + [-49.963655814426915, -26.027791105539233], + [-49.96339759572375, -26.02654708217869], + [-49.964469355498345, -26.024922232078413], + [-49.96465717050441, -26.024326638557024], + [-49.964851667845565, -26.023949295954694], + [-49.96499703335317, -26.02366727350449], + [-49.96514728260997, -26.023315558041443], + [-49.96515867055361, -26.023288902006367], + [-49.96571435253353, -26.022689647266926], + [-49.9662408898584, -26.022236362937683], + [-49.96925372842288, -26.017668176652457], + [-49.9757976270019, -26.014140693528407], + [-49.977893847534354, -26.01417920394689], + [-49.97793082317771, -26.01417094684816], + [-49.97836095681827, -26.014133246484977], + [-49.978926816026195, -26.01409647569118], + [-49.979042978517676, -26.014098743322453], + [-49.97946211229092, -26.014106927992234], + [-49.9800124936186, -26.01411748124556], + [-49.98066055751284, -26.01416936118712], + [-49.98102980516219, -26.014198998014297], + [-49.98127988376976, -26.014241345806017], + [-49.98384188411176, -26.01428831191229], + [-49.99354112323792, -26.011585563964868], + [-49.99384115872416, -26.011840627965654], + [-49.993908818468306, -26.011838655233927], + [-49.994224815744566, -26.01182944323112], + [-49.994797635243636, -26.011860432411304], + [-49.99539284294163, -26.01191867651903], + [-49.99579898211343, -26.012043403224265], + [-49.99621243342128, -26.012195284905204], + [-49.99666262133101, -26.01246261346439], + [-49.99697045622394, -26.012620554480232], + [-49.997202551958715, -26.01281864173493], + [-49.99741917281351, -26.013064059036658], + [-49.99764940141117, -26.01348575928773], + [-49.99790287481577, -26.01383307346815], + [-49.998050619857764, -26.01420000398342], + [-49.998182833046044, -26.014621043545663], + [-49.99837303348291, -26.015044082923726], + [-49.99847565728377, -26.015397161582726], + [-49.99865447903363, -26.015655880003923], + [-49.99875422169343, -26.015742431337433], + [-50.00826065903513, -26.013192521541743], + [-50.01002389443701, -26.013607586070677], + [-50.01007616643161, -26.013597817809913], + [-50.010566221504554, -26.013607856252325], + [-50.010897878942345, -26.01362361619785], + [-50.01122143961034, -26.01370708816601], + [-50.01141659284765, -26.013816811541094], + [-50.01142221492198, -26.013829893522676], + [-50.011473295324144, -26.01394875597999], + [-50.01153459832817, -26.013963185539676], + [-50.011534652941656, -26.014215780086094], + [-50.01155349042892, -26.014590257072033], + [-50.01153476274393, -26.014723894313722], + [-50.01153499618937, -26.015805348411227], + [-50.01158661531346, -26.016065353901897], + [-50.011597386391564, -26.0165872358447], + [-50.011638153674305, -26.017129643691312], + [-50.01164904170011, -26.017637965634307], + [-50.011683335454165, -26.01805156950713], + [-50.01166590749034, -26.01833607154995], + [-50.01172316018188, -26.018709166351567], + [-50.011766171417825, -26.01898051720294], + [-50.01181521739199, -26.01943487802699], + [-50.01188023901049, -26.019780918805104], + [-50.011899181832575, -26.020228303725144], + [-50.01188729384291, -26.020756805739666], + [-50.01189869963374, -26.021204144683672], + [-50.011917480534564, -26.02167186560335], + [-50.01189853328919, -26.02214222564284], + [-50.01183406297446, -26.02264327982562], + [-50.01180104518363, -26.022988674915418], + [-50.01175316922502, -26.023306863053513], + [-50.0117341729947, -26.023781104092976], + [-50.01167870303082, -26.02410601525505], + [-50.011674345073075, -26.02463456324554], + [-50.011694119502856, -26.024980302167418], + [-50.01169641299561, -26.025617320132092], + [-50.01166809957188, -26.02630834819158], + [-50.01162615640451, -26.026823095302177], + [-50.01153991460289, -26.02722234455882], + [-50.0113865821511, -26.0275262740329], + [-50.01113514432566, -26.027838864818428], + [-50.010951522800134, -26.028156154388274], + [-50.010662491754935, -26.02845240929413], + [-50.010282801410014, -26.02876838848738], + [-50.00993327619111, -26.029084564584664], + [-50.00953755322828, -26.029515630823767], + [-50.00943751433642, -26.029616838676517], + [-50.00775797664386, -26.03211637637683], + [-50.007743532034354, -26.03214651441216], + [-50.00751364979085, -26.03258545712373], + [-50.007406019517596, -26.03288651945279], + [-50.00698576432391, -26.033541067760297], + [-50.00674803417983, -26.03401385249553], + [-50.00654036121412, -26.034500386134606], + [-50.00631045797064, -26.034939331846424], + [-50.00599028024393, -26.035350564846386], + [-50.00573808974859, -26.035748696630915], + [-50.005320149494125, -26.036128761943157], + [-50.00492539105921, -26.036437852184722], + [-50.00479783021758, -26.036521437015452], + [-50.00322428494782, -26.038862900599838], + [-50.00664666567116, -26.04588535556221], + [-50.01717378197653, -26.038353969355597], + [-50.017307828372175, -26.038199965726594], + [-50.01789292572849, -26.037668477889042], + [-50.01844840069646, -26.037069031148903], + [-50.018935105800125, -26.036577556622632], + [-50.01928676969257, -26.03617570752194], + [-50.0196609080613, -26.035615710356875], + [-50.02005078717848, -26.034974502145534], + [-50.02043949584601, -26.03447559893138], + [-50.020889858136464, -26.033814465528568], + [-50.021354411909236, -26.03326185107567], + [-50.02171971084898, -26.032857663931885], + [-50.022084455050724, -26.032521237786707], + [-50.022539030944934, -26.03226671835219], + [-50.023084435059985, -26.031972132630333], + [-50.02372843032215, -26.03161042359793], + [-50.02421273455186, -26.031410300066174], + [-50.024795633928846, -26.031143052223825], + [-50.02531870281789, -26.030814414574632], + [-50.02573558755423, -26.030559620259876], + [-50.02613326403694, -26.030260288008396], + [-50.02664634889609, -26.02993464039081], + [-50.027158953989414, -26.029669576771955], + [-50.027700926968926, -26.029344110062443], + [-50.028570858081075, -26.028960131312125], + [-50.02933408911913, -26.02867067989694], + [-50.03002935414357, -26.028450037694743], + [-50.03086883090489, -26.02826492203203], + [-50.03138873420442, -26.02818139788631], + [-50.03213627526459, -26.027646349761497], + [-50.04019557017531, -26.026927008771146], + [-50.04874686472666, -26.031994888656868], + [-50.048809834910976, -26.031997484734816], + [-50.04944519076454, -26.032053359708247], + [-50.04967454812531, -26.032158184972634], + [-50.04990596249827, -26.03226394923025], + [-50.05036666526561, -26.032483189751918], + [-50.05076917399305, -26.03275400045649], + [-50.051094291566706, -26.033067607405545], + [-50.05144804139521, -26.03341601126137], + [-50.05176313012997, -26.03378148423973], + [-50.051764917838156, -26.03378329983766], + [-50.056625232499805, -26.036663138381808], + [-50.057040742530404, -26.03647122229008], + [-50.05753451130448, -26.03614534673253], + [-50.05796039003212, -26.03587964138845], + [-50.05849308376545, -26.035502068709363], + [-50.059151203920315, -26.035099295631916], + [-50.059771057780054, -26.03466166267803], + [-50.06055468132271, -26.03422502620221], + [-50.060916073161984, -26.034056359058766], + [-50.061775831495524, -26.033741363334098], + [-50.06270299910995, -26.033426775394606], + [-50.06336882727736, -26.03327504327981], + [-50.06430383483769, -26.03319419330334], + [-50.06499776152797, -26.03314648909367], + [-50.06588380928996, -26.033169193267884], + [-50.06669207709974, -26.033286627685087], + [-50.06736484268293, -26.033489787529906], + [-50.06786390171109, -26.03373516692623], + [-50.06839914174325, -26.034060496844624], + [-50.072932149868805, -26.03496799979094], + [-50.077249512979094, -26.04671686211321], + [-50.077679551432915, -26.046522816957793], + [-50.07805731892376, -26.046248106766523], + [-50.078426734702184, -26.045800233610944], + [-50.07865106718062, -26.045429389914453], + [-50.078770068881056, -26.044971358558506], + [-50.07904404578722, -26.044401734713855], + [-50.07926124691465, -26.043693282057813], + [-50.07951145460908, -26.043094734290612], + [-50.07969848228825, -26.042559192721775], + [-50.07990547867792, -26.04192856509419], + [-50.08017257909884, -26.040986703291225], + [-50.08033100948956, -26.04040773181591], + [-50.08041346198781, -26.039681167590878], + [-50.08043708778297, -26.039092739546295], + [-50.080404002766016, -26.038356829690404], + [-50.080321428221424, -26.03779400998332], + [-50.08022799130785, -26.037403944301825], + [-50.080087676521636, -26.03684048877901], + [-50.0799961676002, -26.036190772105012], + [-50.07991307035738, -26.035705564395492], + [-50.07988911665002, -26.035038947506656], + [-50.079811471551814, -26.033818062818224], + [-50.07984588378317, -26.03307389974729], + [-50.07985299605448, -26.032113183774772], + [-50.079925642581884, -26.031404145580122], + [-50.07984480416401, -26.030615993879124], + [-50.07983061743038, -26.029932115960097], + [-50.07975824965751, -26.029299829223916], + [-50.079761268078975, -26.02889303823549], + [-50.07970726285679, -26.028382042434426], + [-50.079604646668976, -26.027931343785248], + [-50.07944648206513, -26.027177371329053], + [-50.07940370704371, -26.02645005350333], + [-50.079358559264804, -26.02604297366851], + [-50.0794004826456, -26.025584481558663], + [-50.079596195836274, -26.025170187956125], + [-50.07976237124234, -26.02484227144334], + [-50.08013967993404, -26.024619488251627], + [-50.08070904573021, -26.024475754443365], + [-50.08119165819889, -26.024340153911268], + [-50.08158681470927, -26.024307895652715], + [-50.08207382755465, -26.024333849449416], + [-50.08480731513179, -26.023502410167595], + [-50.08886869042718, -26.02824315084697], + [-50.09205097283724, -26.043638857508014], + [-50.09397106924003, -26.04533046449522], + [-50.094092570922264, -26.045363193621117], + [-50.09468847615124, -26.045557131707454], + [-50.09516884686479, -26.04574173316326], + [-50.095937493186426, -26.046031905692587], + [-50.09643690211502, -26.046251246085564], + [-50.09688626390166, -26.0464872936373], + [-50.096899860129696, -26.046531128591564], + [-50.096980396480745, -26.046790787320173], + [-50.097024726734105, -26.04731902814984], + [-50.09713573767225, -26.047951522760737], + [-50.097145299909094, -26.04812680489114], + [-50.09939484382273, -26.05010842104058], + [-50.10058212266487, -26.050028667400873], + [-50.10549016506692, -26.055871676030065], + [-50.10895766135739, -26.058270538214014], + [-50.10898467027384, -26.058028018337247], + [-50.108971247026474, -26.057214309425795], + [-50.108965464897494, -26.05667762947424], + [-50.10897018533711, -26.05601983649586], + [-50.108984350918035, -26.05538806648595], + [-50.10899789283582, -26.054842850473115], + [-50.109059481021795, -26.054315222305657], + [-50.109187082263446, -26.05398705191611], + [-50.109489708351646, -26.053434851979507], + [-50.10979189667568, -26.052943237040935], + [-50.110238406702486, -26.052478421639552], + [-50.110866536266485, -26.052213730646365], + [-50.111485582487106, -26.051871084686482], + [-50.112230049128, -26.05150318932711], + [-50.11282889277329, -26.051290249424525], + [-50.11373534007291, -26.051174285532966], + [-50.114275207117394, -26.05112545380966], + [-50.11487281643616, -26.051085603901136], + [-50.11558504877539, -26.05118489761825], + [-50.116267891263675, -26.051353262425152], + [-50.11665239133999, -26.05147663918872], + [-50.116899983966746, -26.05188486837378], + [-50.1169546930538, -26.05210423418637], + [-50.11696429123394, -26.052142720989277], + [-50.11838165141785, -26.051754840087668], + [-50.12067759217856, -26.062528359457005], + [-50.12089617469461, -26.0621231260068], + [-50.12116930796346, -26.061648637160047], + [-50.1214629906045, -26.060992501258134], + [-50.1217186118273, -26.060269992481757], + [-50.12187672927748, -26.05970828800812], + [-50.122044481767816, -26.05914663950365], + [-50.12241578042622, -26.058413042357948], + [-50.122759272357435, -26.057523488310093], + [-50.12313996119096, -26.056824560132483], + [-50.12337527889465, -26.05624597741294], + [-50.12355364588581, -26.05554588988263], + [-50.123723665128765, -26.054663978389474], + [-50.123847037843085, -26.05395136403588], + [-50.123938634507084, -26.05325943178278], + [-50.124019005007554, -26.052792486552576], + [-50.12413723903925, -26.052420969195765], + [-50.12443077574777, -26.05178212729361], + [-50.12471375692192, -26.051273059417742], + [-50.12513166962361, -26.05075610411075], + [-50.125597014930335, -26.05034328264604], + [-50.126294171862064, -26.049845220444713], + [-50.12689419383104, -26.049459125547575], + [-50.127362465484104, -26.049131579068536], + [-50.127770073516125, -26.04870975078906], + [-50.12818809714999, -26.048175462482877], + [-50.128703356678976, -26.047511895873075], + [-50.12927743287528, -26.04670152408375], + [-50.12992995161677, -26.045692523055106], + [-50.13038900199488, -26.044794951638917], + [-50.13076971076005, -26.044078697462925], + [-50.13109026259935, -26.043699663459606], + [-50.131305027896715, -26.043294064796328], + [-50.131693069982816, -26.042906749577558], + [-50.13203125581228, -26.042761507504252], + [-50.132435789528955, -26.04277243720945], + [-50.13271388539888, -26.042955766309134], + [-50.13324787382996, -26.043267148582526], + [-50.13369817009551, -26.0436245581209], + [-50.13420614666891, -26.04399959647373], + [-50.134325061735105, -26.04406873537857], + [-50.134734801153, -26.043443424820737], + [-50.14432334665118, -26.05006190904715], + [-50.148394729164266, -26.05927425677245], + [-50.14840501736701, -26.05926489310661], + [-50.1487164548597, -26.058807870136693], + [-50.14895164055912, -26.058229249418375], + [-50.149205269811404, -26.057771906633693], + [-50.14943005390974, -26.057305748941882], + [-50.1497717138048, -26.056664802886456], + [-50.15013348824826, -26.05588778277474], + [-50.1503205437135, -26.055300228211344], + [-50.150575749054006, -26.054609184435815], + [-50.150656590213636, -26.05405567121058], + [-50.150807408202034, -26.053130354783775], + [-50.1508495992691, -26.052593941681188], + [-50.15073669523533, -26.052195166067087], + [-50.150452616197704, -26.051466540021238], + [-50.15010364842842, -26.050365364205742], + [-50.14988584634681, -26.049810208936915], + [-50.14958601218359, -26.048811456957637], + [-50.14939773185103, -26.0481612316], + [-50.1490770565403, -26.047146747688274], + [-50.14870940935497, -26.045958910937365], + [-50.148453253012775, -26.045377581792636], + [-50.14827358235844, -26.044890865397292], + [-50.147950161634824, -26.04428317646952], + [-50.14765553209889, -26.043692964448308], + [-50.14732149090906, -26.043232374545553], + [-50.14693994014809, -26.042676314800534], + [-50.14653877650944, -26.042172082114995], + [-50.14613726307342, -26.041719782427503], + [-50.14582239403164, -26.041276618462017], + [-50.14540215821222, -26.040746317838995], + [-50.14522168300106, -26.040373139438966], + [-50.14505090179626, -26.039991359008503], + [-50.14497686475591, -26.03954952527201], + [-50.14494107556456, -26.039028924417785], + [-50.144964011553675, -26.038492400376576], + [-50.14496845402438, -26.037843256401246], + [-50.14496202016327, -26.03737582244994], + [-50.1449754460451, -26.036821947440078], + [-50.144929712462385, -26.036466821607736], + [-50.14478830610846, -26.036015957087276], + [-50.14455051638796, -26.035573215874788], + [-50.14432134029895, -26.035282331625563], + [-50.14396730646897, -26.03493414277925], + [-50.14366120197407, -26.034620844777436], + [-50.14321144640675, -26.034185574242564], + [-50.14272304674679, -26.033767401830165], + [-50.14218660981929, -26.03333165257242], + [-50.14195829324049, -26.032914925327706], + [-50.14181690588723, -26.032464060806877], + [-50.14177118730516, -26.03210893797429], + [-50.14186174847451, -26.03154684271808], + [-50.141932399925736, -26.031077561520004], + [-50.14197402733329, -26.03062770441364], + [-50.141986518755495, -26.030212310398387], + [-50.14200941577963, -26.029684455356623], + [-50.14178128510026, -26.02924176211266], + [-50.1414848386462, -26.028928521079596], + [-50.141169010179546, -26.028632483107483], + [-50.14079604710219, -26.028240918323608], + [-50.14050935462092, -26.027910419260234], + [-50.14036678494229, -26.02763265373276], + [-50.140378922567045, -26.027269195715423], + [-50.14064035487277, -26.02707157689108], + [-50.14130656272459, -26.02684158877393], + [-50.14176990207279, -26.026697023300564], + [-50.14232943788865, -26.02657030151838], + [-50.14291840452098, -26.02636584164665], + [-50.14331449548785, -26.02619493038987], + [-50.1436529151471, -26.026006387318667], + [-50.14405881705265, -26.025809561032077], + [-50.14490897012488, -26.025442080334482], + [-50.145503622503774, -26.025167057448833], + [-50.14634435443461, -26.024773554783], + [-50.1469141269527, -26.024560317973076], + [-50.14740665925182, -26.02437261940875], + [-50.148333443879146, -26.02406614046232], + [-50.14916348434217, -26.02381971082162], + [-50.149848039777886, -26.023719616637656], + [-50.150484256114694, -26.02364521860659], + [-50.150494872803414, -26.023645130234694], + [-50.1514847140783, -26.023188537714535], + [-50.155081443918, -26.024262276470417], + [-50.155098673614134, -26.024266212803468], + [-50.15595933294091, -26.024462840037128], + [-50.15681535420855, -26.024649269286055], + [-50.157526732977395, -26.024860874996303], + [-50.15825187990536, -26.02509852066077], + [-50.158799918254196, -26.025372245958753], + [-50.1635544954901, -26.02679132485021], + [-50.1640268590641, -26.026705146074057], + [-50.16477045002957, -26.02642352771066], + [-50.165524064798674, -26.02608137531895], + [-50.16617067573515, -26.025894442260142], + [-50.16707791441337, -26.02562235737211], + [-50.167695326398295, -26.025478538404045], + [-50.16823487453566, -26.02545547367768], + [-50.16889911649645, -26.025510974547018], + [-50.169419112722444, -26.02553107588059], + [-50.1699729162014, -26.025574970842623], + [-50.17185167857477, -26.02512121595218], + [-50.17974785796685, -26.028714496884195], + [-50.18251819705284, -26.03439685575553], + [-50.176492662574525, -26.034067413025138], + [-50.1715192335279, -26.04254398284479], + [-50.1646487061851, -26.043132674817826], + [-50.16454654813198, -26.042489050019107], + [-50.16432232235694, -26.042510212144517], + [-50.16377439601303, -26.042489998901083], + [-50.16326403075676, -26.042452604538422], + [-50.16294634730098, -26.042416256558425], + [-50.16250458564962, -26.042206121986574], + [-50.162275405507316, -26.041901930739677], + [-50.16213345142147, -26.04152031521813], + [-50.16206862462203, -26.04113046444996], + [-50.162157470733035, -26.040810693185115], + [-50.16230440691542, -26.040447958737033], + [-50.162451170198956, -26.040111190287757], + [-50.162694557714005, -26.039731666531758], + [-50.16292883488507, -26.039274191809707], + [-50.1630079340237, -26.03897167657513], + [-50.16320396986593, -26.038470713978377], + [-50.163334202483, -26.037727036607386], + [-50.16334346782354, -26.037549401588812], + [-50.16335631890892, -26.037303029562903], + [-50.16330107918367, -26.036921882763586], + [-50.163295519597526, -26.036894323337272], + [-50.15586460411258, -26.04201350650973], + [-50.157208093778046, -26.04859666201472], + [-50.166085892046446, -26.05922324996168], + [-50.166480115425415, -26.059337173177063], + [-50.16713336326416, -26.059626323064553], + [-50.16741172803397, -26.05978362016215], + [-50.167843093120794, -26.060114846758175], + [-50.16812036253303, -26.060436586848976], + [-50.16824772584791, -26.06063696542795], + [-50.16833013369871, -26.060766619155547], + [-50.16844321466689, -26.06114806176896], + [-50.16853639192684, -26.061624606440144], + [-50.16858116712186, -26.06213551126439], + [-50.168586336003635, -26.06221580528276], + [-50.17076363884064, -26.06482146552135], + [-50.170885754020375, -26.06477046270715], + [-50.171173868624, -26.064621027792555], + [-50.17128216885086, -26.06456485644875], + [-50.17160184615789, -26.06430690443972], + [-50.17196981359753, -26.064031900276927], + [-50.17229872518135, -26.063834586234513], + [-50.172636701143375, -26.063723873157475], + [-50.1730893851271, -26.06375226270372], + [-50.17338779453771, -26.0637971367437], + [-50.17373261319715, -26.0641105806177], + [-50.17401894102237, -26.064527582672728], + [-50.17405547518129, -26.06459420118832], + [-50.17416608693442, -26.064563226843617], + [-50.17465593734167, -26.065615847144656], + [-50.174663710017235, -26.065627404534293], + [-50.17469131730458, -26.065671407442903], + [-50.17493070179628, -26.06605295165065], + [-50.175140451996796, -26.066391634956098], + [-50.17536867475105, -26.0668515901946], + [-50.17564324678831, -26.067588762266606], + [-50.1756731996366, -26.067801738457337], + [-50.18112246483872, -26.07950964545649], + [-50.18163675687679, -26.0793447472744], + [-50.18210105975009, -26.079078880800935], + [-50.182602378322855, -26.078871039747472], + [-50.18384380705406, -26.078003384357356], + [-50.18400793456207, -26.07779061876197], + [-50.18416321355008, -26.07737074429067], + [-50.18451277740026, -26.076965762194664], + [-50.18487270585022, -26.07644831607258], + [-50.18517424639848, -26.076017123132477], + [-50.18551472086977, -26.0755255490713], + [-50.18583597422716, -26.075025222072416], + [-50.18608949147352, -26.07456781728832], + [-50.18632384657204, -26.074093003566713], + [-50.186520050273266, -26.073557401971787], + [-50.18677462787615, -26.072935554194956], + [-50.18695071200531, -26.07252967665609], + [-50.18725216958722, -26.072107144715847], + [-50.18746572551993, -26.071865913045887], + [-50.18793081588395, -26.07147020057852], + [-50.188259771432506, -26.07126419253584], + [-50.18867533540906, -26.071075945213888], + [-50.189119692573364, -26.07090515779832], + [-50.18972853001182, -26.070631358861494], + [-50.19017261034529, -26.070503840443912], + [-50.19023712049689, -26.070474616238766], + [-50.19058817732164, -26.070315581121907], + [-50.19104217752574, -26.07014483067542], + [-50.19140719212462, -26.06991384251856], + [-50.19178445280517, -26.069690750321847], + [-50.19197969308174, -26.0693022567205], + [-50.19221487367166, -26.068697584005143], + [-50.19244982339706, -26.068127538288273], + [-50.19260796263301, -26.06751381982096], + [-50.19286323279503, -26.06677943604972], + [-50.19303116396938, -26.066139809552702], + [-50.19331315157224, -26.065743128673393], + [-50.193931806914144, -26.065434751707325], + [-50.19417594671151, -26.065432539727905], + [-50.19421082075214, -26.06524907065906], + [-50.202002101206354, -26.063128652966984], + [-50.20224474789376, -26.062803115187002], + [-50.2026695163387, -26.062216890862036], + [-50.20310676890271, -26.06164784549584], + [-50.203552373285845, -26.061277930089496], + [-50.20405533717985, -26.060977554494254], + [-50.204595124283784, -26.060945691762647], + [-50.20517300481857, -26.060983265903975], + [-50.20584640526142, -26.06115115772974], + [-50.20651952787359, -26.061362323553293], + [-50.20718285054741, -26.061599404406472], + [-50.20734093064756, -26.061675387037443], + [-50.20801923518535, -26.0614907310542], + [-50.20865839758021, -26.059961853033172], + [-50.20863034611861, -26.05971990388372], + [-50.208592963234146, -26.059280832033537], + [-50.20857652840559, -26.059087791099433], + [-50.208521945166865, -26.058576849309357], + [-50.20855379945735, -26.05810962323862], + [-50.208787264027734, -26.057755944512664], + [-50.20926093100404, -26.05750735100807], + [-50.209745882923016, -26.057360483439194], + [-50.2098434240273, -26.05712714945348], + [-50.21077891895776, -26.057102705097492], + [-50.21112341682128, -26.05703211505741], + [-50.212020507860714, -26.056863553186993], + [-50.212917333069484, -26.056738258314375], + [-50.213775359287524, -26.05665603656345], + [-50.21470089475142, -26.056565491596103], + [-50.21546305775295, -26.056528783149812], + [-50.21629147329144, -26.056558942485996], + [-50.21702310370124, -26.056657849128392], + [-50.21775451324657, -26.056791370769034], + [-50.218370468210594, -26.056898338782297], + [-50.21838456521283, -26.056903745087432], + [-50.21871346046343, -26.056895132288577], + [-50.21914991685248, -26.057205627026807], + [-50.219514049795876, -26.057371481074693], + [-50.22003263800434, -26.057642401389444], + [-50.22042533510016, -26.058016551101492], + [-50.22068374326375, -26.058294817251767], + [-50.220691139986876, -26.058302028557318], + [-50.22409898205256, -26.060726183413255], + [-50.22554543525501, -26.058751063134064], + [-50.22547056813761, -26.058578366845595], + [-50.22536720403665, -26.058153733207412], + [-50.225234418293574, -26.057850652655436], + [-50.225196183791645, -26.05776338378441], + [-50.2251938261395, -26.057600471803354], + [-50.22518936690638, -26.057292391839056], + [-50.22518880675153, -26.057253715843625], + [-50.225335740824896, -26.05686493839838], + [-50.22578107530618, -26.056520922990778], + [-50.22633206143005, -26.056229367239954], + [-50.22709616434667, -26.055915853805548], + [-50.22712411141687, -26.055904387716556], + [-50.22772261114711, -26.055716935805616], + [-50.22780260738837, -26.055668746691982], + [-50.23406942278649, -26.047109939381482], + [-50.23592460960768, -26.036264697136218], + [-50.23688004012782, -26.03589224618548], + [-50.23712643691408, -26.03567325499033], + [-50.23764875967816, -26.035320934336678], + [-50.23823809299247, -26.035038178462777], + [-50.23895255189284, -26.03477333818543], + [-50.23981093476405, -26.034604400438617], + [-50.24032102222212, -26.034550791774695], + [-50.24542160448993, -26.032562138965027], + [-50.245748590872076, -26.0322309495228], + [-50.245883898792194, -26.032069271099488], + [-50.246029952705975, -26.031894752642465], + [-50.246436738922384, -26.03152454136143], + [-50.24662363028869, -26.031422166768063], + [-50.246890957812624, -26.03127573291919], + [-50.24748934750407, -26.03107955100969], + [-50.2479623088128, -26.0309173825009], + [-50.24858866023386, -26.030877127490236], + [-50.24908953430615, -26.030879540879734], + [-50.24978331100591, -26.030839602652115], + [-50.24983192984041, -26.030842407151855], + [-50.2515119900024, -26.03018724694573], + [-50.25193293262316, -26.03105651597462], + [-50.25206462246757, -26.031110212297556], + [-50.2523814124947, -26.03129349326561], + [-50.252623205215855, -26.031477502474786], + [-50.252736221020356, -26.031563510105162], + [-50.25300397942475, -26.031893697220124], + [-50.253088603396264, -26.032051705936524], + [-50.25319452461221, -26.03224948158158], + [-50.253394500975226, -26.03263993291009], + [-50.25349809997362, -26.033038579547924], + [-50.25365837195746, -26.033627916989623], + [-50.253847649993084, -26.03420008533917], + [-50.25405563748171, -26.03486755862172], + [-50.254244213992656, -26.035560910964733], + [-50.25446231021626, -26.036150544220316], + [-50.254600489861105, -26.036564845318722], + [-50.255114512214845, -26.0376262041614], + [-50.25510674121664, -26.037660325400964], + [-50.25526336890806, -26.038024871506842], + [-50.25543415435579, -26.038467115925236], + [-50.255596078259295, -26.038780587381375], + [-50.25566273704279, -26.038909633157605], + [-50.25575676596832, -26.039299572826586], + [-50.255762819383364, -26.039905475762865], + [-50.255605725713615, -26.040406734231645], + [-50.25542905516784, -26.04095983175956], + [-50.25512791959484, -26.041382505697456], + [-50.2549488686038, -26.0415717622597], + [-50.254769237612884, -26.0417616298236], + [-50.25444892989223, -26.04216690382454], + [-50.254098689730434, -26.042745145909198], + [-50.25382561181986, -26.04330645074671], + [-50.25381494833837, -26.043332086919584], + [-50.2520039700854, -26.05128238823776], + [-50.26236087091142, -26.045716714013295], + [-50.262521056662614, -26.0455925745978], + [-50.263072840168945, -26.045145070854893], + [-50.263281619408005, -26.044987767194495], + [-50.263518624679314, -26.044809196444824], + [-50.26359882577118, -26.04474876819124], + [-50.26430453905097, -26.044336630950216], + [-50.2649614085727, -26.044036784858072], + [-50.26559100815636, -26.043781105850467], + [-50.265888460904634, -26.043660310901952], + [-50.26633271099072, -26.04347198148593], + [-50.2668824416514, -26.04328647257558], + [-50.26829520180053, -26.04252709583547], + [-50.269022643413635, -26.0433101303414], + [-50.26924243471918, -26.043407736123683], + [-50.269510009295324, -26.043781167234318], + [-50.269535696357494, -26.043862383704024], + [-50.27671301606357, -26.051587369929738], + [-50.27673872494193, -26.05159958736619], + [-50.27703586430931, -26.051769940782666], + [-50.29648230610771, -26.054951496943552], + [-50.29688297765305, -26.054832117188766], + [-50.29733636211627, -26.05473028573461], + [-50.29799153479002, -26.054724566622124], + [-50.29849208116708, -26.054804705001608], + [-50.298895806486264, -26.054970962686493], + [-50.29927015002637, -26.055223641459317], + [-50.29967282409452, -26.055580309132615], + [-50.30001769492381, -26.05593671799237], + [-50.30042189296553, -26.056414508042767], + [-50.305578649041315, -26.059927753069026], + [-50.30600789877584, -26.060030637344113], + [-50.30645926770333, -26.060300950866253], + [-50.30706393988102, -26.06072773588108], + [-50.30748521854079, -26.061214294482937], + [-50.30750070212845, -26.06123712821173], + [-50.31642127947525, -26.067313452010552], + [-50.31690493245751, -26.067565839565408], + [-50.31758656209156, -26.068027532326887], + [-50.31797206113453, -26.068369660278236], + [-50.31819983458638, -26.068524789523536], + [-50.318221147422214, -26.068590721185732], + [-50.31847840689757, -26.068819034382642], + [-50.31896757956504, -26.06923661076896], + [-50.31959133102877, -26.069715357715552], + [-50.32009969784441, -26.070150329038295], + [-50.32061738493865, -26.07064593132592], + [-50.32100008954394, -26.07115826304814], + [-50.32132108712253, -26.071727910964977], + [-50.32162553626215, -26.072456276922328], + [-50.32181598173016, -26.072881210272563], + [-50.32202468402846, -26.073496640548314], + [-50.3221377244169, -26.07398182814365], + [-50.32218234524311, -26.07464848294531], + [-50.32220723433104, -26.075401609803656], + [-50.32225278048168, -26.075896818616275], + [-50.32217174906343, -26.076632183818333], + [-50.322109437134415, -26.07747148895143], + [-50.322106427352516, -26.078034074915443], + [-50.32205419245437, -26.078366206057186], + [-50.32198671987758, -26.07879522924035], + [-50.3219436430627, -26.07964326931068], + [-50.321976226938524, -26.08020596680325], + [-50.32217624040317, -26.080824585294945], + [-50.326440602778945, -26.082049417703036], + [-50.3269986154895, -26.08206870877479], + [-50.32748994162329, -26.082096780184266], + [-50.32836617575973, -26.08223035834069], + [-50.32919431662875, -26.082346413653926], + [-50.32934131837717, -26.082382557175684], + [-50.32983913691167, -26.082504957556186], + [-50.33046454921748, -26.08268938151896], + [-50.33097418814772, -26.082899275853936], + [-50.33145478406098, -26.083135010280568], + [-50.33183810525911, -26.083543437007407], + [-50.33191944051065, -26.08362285676418], + [-50.33205573954574, -26.08366199660603], + [-50.33202724989927, -26.083728126942276], + [-50.332212022246665, -26.083908546768217], + [-50.33254667864184, -26.084417061644068], + [-50.332550503728726, -26.084435000630293], + [-50.332650127992665, -26.08490221226957], + [-50.332599661501405, -26.085334776397037], + [-50.33250261796937, -26.08580534467194], + [-50.332490872147034, -26.08586230070522], + [-50.33220871100739, -26.086371775575653], + [-50.331897912543226, -26.086829193542993], + [-50.33150928830702, -26.087424762750576], + [-50.331121120729044, -26.087933775963922], + [-50.330722994350396, -26.08850333320442], + [-50.330344459812125, -26.089012384386642], + [-50.32998517637273, -26.089526355506198], + [-50.32960612721034, -26.09013062968224], + [-50.32923639432676, -26.090795523823278], + [-50.32889616511861, -26.091348017878076], + [-50.328448641428544, -26.09214239826007], + [-50.32816554197186, -26.092824958119515], + [-50.32791176930754, -26.09342477489103], + [-50.32777262533873, -26.09360305568538], + [-50.325673773372216, -26.09847378267922], + [-50.3257329655393, -26.098581374664583], + [-50.32986212552568, -26.098700422798206], + [-50.32989178828974, -26.098809650286093], + [-50.330678590857076, -26.098753586502887], + [-50.33159391584863, -26.098809403537036], + [-50.332132272105945, -26.099071347773663], + [-50.332631580579985, -26.09942833312873], + [-50.3330344207239, -26.099802218794345], + [-50.33337875514143, -26.100305687638496], + [-50.33359737339568, -26.100898348882033], + [-50.33357499364086, -26.1014868369057], + [-50.33352424735618, -26.10197133302971], + [-50.3333096044281, -26.10246378968353], + [-50.33330691644534, -26.102974448649906], + [-50.33333750267104, -26.103503052507087], + [-50.33335113066278, -26.1037385704435], + [-50.33331742413354, -26.104647262477332], + [-50.33329923500475, -26.104885436516426], + [-50.33325530810871, -26.105460613610916], + [-50.33321133601871, -26.106490420667825], + [-50.33311895392999, -26.107570703877307], + [-50.33300564399589, -26.108208166191226], + [-50.33298981328445, -26.108297230235067], + [-50.332705951377285, -26.109118302085886], + [-50.33252968868641, -26.109630567613895], + [-50.33247101612212, -26.109801085789726], + [-50.33232285248189, -26.110045268249035], + [-50.33211127199569, -26.110393967904947], + [-50.33179026286865, -26.110946561898285], + [-50.33174449791822, -26.111006510041467], + [-50.3314214252685, -26.11142970405207], + [-50.33108196144596, -26.111826412118038], + [-50.33077177946941, -26.112153999094936], + [-50.3303358343163, -26.112567601471724], + [-50.32991962290101, -26.112894732791926], + [-50.329873349834514, -26.11292598993904], + [-50.32911223574052, -26.113440121360036], + [-50.32867664231357, -26.113784484741583], + [-50.32816379767002, -26.114154480370903], + [-50.327679824180244, -26.114533250906096], + [-50.32712837541103, -26.114911728659685], + [-50.326654036960946, -26.115290532163815], + [-50.326562363155766, -26.11542733364593], + [-50.32619925119886, -26.11785927025236], + [-50.326225083009135, -26.118012499328472], + [-50.326173577272485, -26.118635461443954], + [-50.32621800926926, -26.119343409242], + [-50.32624421740729, -26.11985419011517], + [-50.326057710146394, -26.120485231667114], + [-50.32589195187051, -26.120839390174584], + [-50.32567934518383, -26.121341139972227], + [-50.325394196776095, -26.12325071497222], + [-50.3255172986286, -26.12368301715388], + [-50.3255737238329, -26.123783643220758], + [-50.33158445728612, -26.122854509835918], + [-50.331741810341384, -26.122437255103737], + [-50.3321094018994, -26.122196456933384], + [-50.33256224794597, -26.1222416514633], + [-50.33295629847198, -26.122468362168505], + [-50.333092490892945, -26.12262135764607], + [-50.333170595798066, -26.122609281642948], + [-50.333207685399536, -26.122750764135475], + [-50.333397138258476, -26.122963589699854], + [-50.333598843991645, -26.123190335027832], + [-50.333636726317096, -26.123232920901597], + [-50.3339039154883, -26.123753375993008], + [-50.33406588660441, -26.124117587438235], + [-50.33429488534224, -26.12456863465898], + [-50.33437860299496, -26.125148898339656], + [-50.334376196809416, -26.125607622309314], + [-50.334123416380905, -26.12601335509418], + [-50.33378455507965, -26.126288892168873], + [-50.33337798467015, -26.126607418459145], + [-50.333090237285134, -26.126808937374317], + [-50.33268458615651, -26.12694571567682], + [-50.332143647708655, -26.12714250841244], + [-50.33150662862189, -26.12727830146421], + [-50.3310043562651, -26.127457937075967], + [-50.33034729068031, -26.12774077718043], + [-50.32972975695253, -26.127946696163338], + [-50.329680910815924, -26.127962984320078], + [-50.329034410586196, -26.12807275140465], + [-50.32839814995142, -26.128070039465175], + [-50.327829512493345, -26.12804164630891], + [-50.327290210846904, -26.127935479063957], + [-50.32670349141896, -26.12768196698462], + [-50.325915251468295, -26.127254480572034], + [-50.3252811642249, -26.1268449606586], + [-50.325079778831885, -26.126703508322237], + [-50.324599245508026, -26.126365983905618], + [-50.32400335069822, -26.12602585786266], + [-50.323521755393884, -26.125945882428336], + [-50.322943109169415, -26.125986663298175], + [-50.32242119300542, -26.12623541896734], + [-50.32223852874131, -26.12652291615539], + [-50.32359108845113, -26.13489678276131], + [-50.32754953850055, -26.130402910067534], + [-50.32759113593447, -26.13016008390625], + [-50.3277002207169, -26.12974079058753], + [-50.328049692542606, -26.12933452148935], + [-50.32849152960942, -26.129144524074118], + [-50.328663450560725, -26.12913824599827], + [-50.32872537118581, -26.129067944229345], + [-50.32877130433841, -26.129134307372595], + [-50.329079417948655, -26.129123055172077], + [-50.32953245668335, -26.12934086768701], + [-50.33014446407805, -26.129811209666], + [-50.33046284606601, -26.13023232160004], + [-50.330673605180834, -26.130796886870755], + [-50.330738499880695, -26.13115694963073], + [-50.33078791248912, -26.13151007644142], + [-50.330815741394964, -26.131708950334847], + [-50.33078425066778, -26.132042478209495], + [-50.33250774120869, -26.134532327587404], + [-50.34087427375914, -26.130604286423026], + [-50.34155259830941, -26.129957781526397], + [-50.34156460191338, -26.129747196675588], + [-50.34171664774448, -26.129295936220945], + [-50.34206696790366, -26.128721713134066], + [-50.34261846227515, -26.127992421408376], + [-50.34314315958337, -26.12727501876861], + [-50.34368064137389, -26.126665612078348], + [-50.34439120231006, -26.126164862818076], + [-50.345235076988615, -26.12571263812185], + [-50.34624756173302, -26.125353695871222], + [-50.34642423391096, -26.125314361307733], + [-50.35276027224366, -26.119274327672123], + [-50.35290242348409, -26.119233968423305], + [-50.353333119367676, -26.11893067545494], + [-50.354256854517175, -26.118514694496746], + [-50.354912422368834, -26.11830149239034], + [-50.355634045066246, -26.1182324730574], + [-50.35636866310353, -26.11823545867613], + [-50.35641115316714, -26.118237724458105], + [-50.35974031645148, -26.117292370037713], + [-50.36108208379101, -26.110469522954585], + [-50.36130293384979, -26.110565655643594], + [-50.36157615193192, -26.110290822481137], + [-50.36200352869795, -26.110292547095796], + [-50.36245653542874, -26.110510244608854], + [-50.36286869861114, -26.11088368324063], + [-50.36344438110233, -26.111416866328483], + [-50.36346694427835, -26.1114377632536], + [-50.36368287302629, -26.111601575894397], + [-50.365844734323346, -26.11254252341535], + [-50.36621232634732, -26.1126361042499], + [-50.366252683541425, -26.112643152118544], + [-50.36656437230598, -26.112697591342634], + [-50.3702041982822, -26.110477368536362], + [-50.364363534078095, -26.106336842904682], + [-50.36146857598508, -26.094671749966103], + [-50.37114794113596, -26.080384113400246], + [-50.37212928893524, -26.07979861093888], + [-50.372165400759016, -26.07967910782703], + [-50.372600804727774, -26.079221046456734], + [-50.37315363174312, -26.07890492269367], + [-50.37375877911463, -26.078624373758117], + [-50.37440294926583, -26.078442026133157], + [-50.38216989329371, -26.07380734747409], + [-50.38226172140254, -26.07368274964756], + [-50.382763457034066, -26.073071649076102], + [-50.38306780127368, -26.072565880134814], + [-50.38363568975603, -26.07184890935833], + [-50.38420387400513, -26.071072972586272], + [-50.38475085995426, -26.070746715843043], + [-50.385658503054685, -26.070337577938776], + [-50.38664435689879, -26.07003484877145], + [-50.38755143641819, -26.069731818859474], + [-50.388551439429854, -26.069205150666225], + [-50.38944653591546, -26.068654503814965], + [-50.39017066497752, -26.068173934511453], + [-50.39097442161775, -26.0675050469667], + [-50.39196150434101, -26.066919382820473], + [-50.39263254465249, -26.066556494678547], + [-50.39352707355636, -26.066111933819617], + [-50.394454542223876, -26.065825569839753], + [-50.39561207483528, -26.06528762713683], + [-50.396400587192005, -26.06506661060127], + [-50.397215611423505, -26.064786746985057], + [-50.39735383840106, -26.064744514743445], + [-50.399582418527714, -26.063414088103393], + [-50.403404178270236, -26.05769897039508], + [-50.403527765433246, -26.057743525734306], + [-50.40381155438142, -26.05746700626927], + [-50.40450860293793, -26.057139510039693], + [-50.4049553303077, -26.05702328260243], + [-50.40563690281541, -26.05720266237697], + [-50.406239469232254, -26.05744069040215], + [-50.40689404228505, -26.057785013248992], + [-50.40770545054562, -26.05827138657436], + [-50.408189644293735, -26.058714762964215], + [-50.408555744972126, -26.05901086275032], + [-50.40889435461551, -26.059578008600784], + [-50.409153952168296, -26.060203800701917], + [-50.40915140736121, -26.060757879659437], + [-50.409158436486734, -26.061033673611448], + [-50.40915913759915, -26.06106120560672], + [-50.40916252614161, -26.06119411758359], + [-50.408844689318315, -26.061817756557158], + [-50.408604880425614, -26.062594946263616], + [-50.40811533183334, -26.06345373477249], + [-50.4080893119133, -26.063500675852634], + [-50.40766535521638, -26.064265520157388], + [-50.407575404352706, -26.064411625568187], + [-50.40737062490879, -26.065425675296275], + [-50.40746198895909, -26.065667698688852], + [-50.407529297488495, -26.065733181482663], + [-50.41219963405547, -26.065986970318225], + [-50.417388441416485, -26.06234145617072], + [-50.41796587637956, -26.061733464984908], + [-50.4185442729147, -26.061523372128203], + [-50.418558101969296, -26.06152284408335], + [-50.4191086951427, -26.061501850299262], + [-50.41980388333076, -26.0615869040363], + [-50.420201838203305, -26.06163787604744], + [-50.43470533594004, -26.06100028935903], + [-50.43983660941982, -26.05145868072447], + [-50.44012789257889, -26.051246676366837], + [-50.440515027949914, -26.050724698851887], + [-50.441055068291526, -26.050255027143738], + [-50.44210747417452, -26.049645674785875], + [-50.442831976558196, -26.04927849995248], + [-50.450174773860866, -26.04393342496653], + [-50.4496827653804, -26.040114671060294], + [-50.449641920767505, -26.04003707124915], + [-50.44962365355475, -26.040002365311754], + [-50.44924187318304, -26.03964901889225], + [-50.44435749939925, -26.037993236937655], + [-50.44364932587186, -26.037930880897864], + [-50.44287620276018, -26.0376924184291], + [-50.44264375978279, -26.037434371207784], + [-50.44261505519605, -26.037402504754564], + [-50.442002024503516, -26.03719466563295], + [-50.442517171069895, -26.036724958000736], + [-50.4425265900577, -26.03661836666568], + [-50.442883412177956, -26.036030134564005], + [-50.44354220535019, -26.03539579948691], + [-50.44426648088477, -26.034785274195347], + [-50.44488760436276, -26.034518077205625], + [-50.444981984972486, -26.03447747651235], + [-50.44513678983167, -26.03433631707409], + [-50.445715822527454, -26.03418324339811], + [-50.44640872830087, -26.033943877325168], + [-50.44795550172591, -26.03346587235205], + [-50.449505464444755, -26.033058587361694], + [-50.45104321722192, -26.032427258432165], + [-50.452711088517034, -26.032043928056517], + [-50.45361705157707, -26.03188197213187], + [-50.454077046629806, -26.03197255683257], + [-50.45440075147017, -26.0318869586259], + [-50.4545630523492, -26.0320682619568], + [-50.45465267162277, -26.032085909751157], + [-50.4554518409799, -26.03235977013079], + [-50.455896531117446, -26.032691369655442], + [-50.456405885411506, -26.03324717894833], + [-50.45674478391267, -26.03377883179684], + [-50.45697808359071, -26.034463385973204], + [-50.45699811741728, -26.034650495890013], + [-50.45701488132711, -26.034807065746588], + [-50.459139015452, -26.03717968410023], + [-50.4596069050198, -26.028936191238298], + [-50.45956400075802, -26.02883296612497], + [-50.45950042757415, -26.0283493863782], + [-50.459608102435965, -26.02770133309162], + [-50.45968152903322, -26.027621305421846], + [-50.45971469378351, -26.027036926663524], + [-50.460527563813116, -26.0270806407484], + [-50.46069993514554, -26.02700942861494], + [-50.46136976318836, -26.026834835457624], + [-50.462261828892714, -26.026849609560593], + [-50.46296992912415, -26.026934500253688], + [-50.464408913102865, -26.02721052955526], + [-50.46463204918514, -26.02730129928589], + [-50.46854132218089, -26.027511354086826], + [-50.46980611825283, -26.02487127016705], + [-50.46979804543414, -26.024776204296614], + [-50.46970881153507, -26.02413930564889], + [-50.46954110507987, -26.023443203261834], + [-50.469504827928866, -26.02268858845373], + [-50.46959858343659, -26.022217336195602], + [-50.46994096957306, -26.021900162115134], + [-50.470426844094995, -26.021783872549044], + [-50.471070045355184, -26.021691678469892], + [-50.47136001569529, -26.02162754575956], + [-50.471517728553465, -26.021298312654572], + [-50.471947687200725, -26.021514456135705], + [-50.472304160473584, -26.02145994848557], + [-50.473090612352586, -26.021627570915413], + [-50.47362766835057, -26.021829741151613], + [-50.47438712586967, -26.022185890650235], + [-50.47518580669014, -26.022577531017884], + [-50.47582687705273, -26.02301581089261], + [-50.47660769767763, -26.023627801296108], + [-50.47681071640226, -26.023958994374304], + [-50.47724204059339, -26.024175798862796], + [-50.477000894248754, -26.026295715454324], + [-50.4770293765752, -26.026434988648333], + [-50.47752474871837, -26.027218578961527], + [-50.47783777583163, -26.027679377898945], + [-50.477993132533626, -26.02819860534271], + [-50.47795160152288, -26.02874076942381], + [-50.47769921058699, -26.02951802716664], + [-50.47743454575587, -26.030083040970343], + [-50.47706539202695, -26.03052982412535], + [-50.47643786571656, -26.031244971908766], + [-50.47607196569419, -26.03446114210093], + [-50.48201866043679, -26.031295780502166], + [-50.48199605059443, -26.03113914304429], + [-50.48172764923521, -26.03046372545962], + [-50.48162900264272, -26.030245667620154], + [-50.48114964374056, -26.02953308795467], + [-50.48036524575659, -26.02883500757289], + [-50.47961998316805, -26.02819599905773], + [-50.47919034612167, -26.02736938453572], + [-50.47900894212525, -26.026802929181322], + [-50.479220548302344, -26.026379211536028], + [-50.47952360922958, -26.026050099584168], + [-50.48037790618043, -26.025663820847335], + [-50.48125721545392, -26.025584128998716], + [-50.48193959806139, -26.02553916578616], + [-50.48272609194026, -26.025706734214186], + [-50.483368654853905, -26.02577952611918], + [-50.48388021504321, -26.025804739454546], + [-50.48423471821358, -26.02573513730967], + [-50.484694740252614, -26.025524401835998], + [-50.485295399355365, -26.025185463918163], + [-50.48635996383724, -26.024717290505887], + [-50.48723985454851, -26.02449609766885], + [-50.48792178462286, -26.024568998445528], + [-50.48858994329815, -26.024806898250304], + [-50.489139427097776, -26.025197674425364], + [-50.489913242256236, -26.025723014183612], + [-50.49016675242779, -26.025698852050883], + [-50.49367543108881, -26.026965360435497], + [-50.494157554314654, -26.02688749494406], + [-50.49485456543049, -26.02645348372205], + [-50.49559134228611, -26.025913491381548], + [-50.496302197706676, -26.02529089013369], + [-50.49688163182397, -26.024726819307205], + [-50.49754141957906, -26.023738583262563], + [-50.49806856129415, -26.02312717761087], + [-50.4987652607365, -26.022775650381593], + [-50.49957900273803, -26.02269562974418], + [-50.500405106588694, -26.02281606004611], + [-50.501336397467526, -26.02308680799053], + [-50.501370122246, -26.023105548504514], + [-50.50166260624715, -26.02294613537666], + [-50.501792582095554, -26.023340303949578], + [-50.501912422093454, -26.023406897084886], + [-50.501963116542214, -26.02346762091387], + [-50.5023564490248, -26.023938782586804], + [-50.50283884914698, -26.02473014293735], + [-50.50320291106707, -26.02559186666537], + [-50.50338348904844, -26.026405863994924], + [-50.50356290524705, -26.027526366296833], + [-50.50361180420686, -26.02846963104129], + [-50.50381215756869, -26.0294645815737], + [-50.50465813142787, -26.03202976833629], + [-50.50951902008696, -26.028821552169962], + [-50.509813569221386, -26.028396629875093], + [-50.51051220660132, -26.02752633669189], + [-50.510973123653905, -26.027067950239644], + [-50.51199809410814, -26.026634840949647], + [-50.51294301264492, -26.02655515888353], + [-50.51295164713252, -26.02655579113036], + [-50.51355713411958, -26.026156111931638], + [-50.5152084643648, -26.027100620703106], + [-50.51556773810943, -26.027246767271535], + [-50.5163402559623, -26.027673478713428], + [-50.5170386478627, -26.028147388335952], + [-50.52189232764217, -26.030923233664826], + [-50.52872627834013, -26.03459364075885], + [-50.53456755396089, -26.03631464655128], + [-50.535857942371564, -26.03639563224447], + [-50.53703857443435, -26.036457927391012], + [-50.5380356536052, -26.036484327139366], + [-50.53891432966857, -26.036604699263304], + [-50.53996342661698, -26.036772704826664], + [-50.54057872673364, -26.037175267778522], + [-50.54160043893593, -26.03768507939436], + [-50.542355722614296, -26.038335626863034], + [-50.543443038131905, -26.038857378263128], + [-50.543653963442594, -26.038991193487774], + [-50.547543008732454, -26.040136562705687], + [-50.54763354176046, -26.040139237013705], + [-50.5513582651901, -26.038709268692234], + [-50.55154304732266, -26.03800870859495], + [-50.55161423057369, -26.037692403566385], + [-50.551760728165064, -26.036887933358752], + [-50.551947586109755, -26.03593297985265], + [-50.55214756720457, -26.035002155301278], + [-50.552399780795604, -26.03414222157192], + [-50.55249296096105, -26.033787588300825], + [-50.55508156410346, -26.022283007661343], + [-50.5551800138274, -26.021554052871036], + [-50.555313280574445, -26.02125306891059], + [-50.555508516553104, -26.020385264626935], + [-50.55601707917231, -26.019489003218787], + [-50.55622622846837, -26.018644933776468], + [-50.55671344520462, -26.018082209249695], + [-50.55703013163772, -26.017703611072236], + [-50.56158150155873, -26.00968155717424], + [-50.56172862283319, -26.008870594907165], + [-50.56204705375474, -26.007775043988882], + [-50.562391363981774, -26.006980087953576], + [-50.56290531025409, -26.006274091355866], + [-50.563405966660476, -26.005615221796333], + [-50.564196045211766, -26.004697761321896], + [-50.56490666033302, -26.00400408508207], + [-50.565524555158454, -26.003581313114804], + [-50.56673327968708, -26.002983262241447], + [-50.567560750696195, -26.002643558582026], + [-50.56829590094056, -26.002456866206717], + [-50.5697521185483, -26.002378157469423], + [-50.57070944068653, -26.00243959934259], + [-50.57133809042629, -26.002735961260957], + [-50.572358764600125, -26.003493106850673], + [-50.5724368291314, -26.003540220080886], + [-50.572806516807674, -26.003419980423477], + [-50.57369586005557, -26.004300438005817], + [-50.574464353549715, -26.0048421338378], + [-50.57524966591721, -26.00538646521726], + [-50.576112855638165, -26.00619034331406], + [-50.57719937284602, -26.006888678693915], + [-50.57832596006689, -26.007799759919184], + [-50.57888828357309, -26.00835530802378], + [-50.57965960006189, -26.009194320415038], + [-50.580468826542976, -26.01049318363135], + [-50.58116055083868, -26.01161489125025], + [-50.58130119316448, -26.01182902761639], + [-50.586558879242745, -26.017032867594445], + [-50.58715752389447, -26.017535204022504], + [-50.58727368874033, -26.017628584632977], + [-50.58836146066101, -26.018503004984797], + [-50.58890539868559, -26.018956231158494], + [-50.58936901611614, -26.01934253060185], + [-50.58981276989587, -26.020086342069888], + [-50.5904925268266, -26.020877883761887], + [-50.59060534188187, -26.021026985376878], + [-50.590636849266446, -26.02106862749433], + [-50.59168188420361, -26.022102782794633], + [-50.59314606858061, -26.025140584045708], + [-50.59310968496903, -26.025769108485314], + [-50.59320522510774, -26.026188499306716], + [-50.59353408489081, -26.02729927810743], + [-50.59363385964544, -26.027636285743526], + [-50.593630908502575, -26.02860300764403], + [-50.59350857067698, -26.03002007588357], + [-50.59336060284001, -26.03121044823238], + [-50.59330450244407, -26.032417555279284], + [-50.59312920791208, -26.033961542677513], + [-50.5929406446394, -26.03558365811029], + [-50.59271379267059, -26.03682100071157], + [-50.59255194476967, -26.038258895078013], + [-50.5923909337866, -26.039425626472198], + [-50.59226877852884, -26.040293591563294], + [-50.5921395401985, -26.042525489167836], + [-50.59156149287979, -26.042885281929493], + [-50.59115092361707, -26.043889490019776], + [-50.590084784516115, -26.044947890383842], + [-50.58913693366147, -26.045947619368036], + [-50.58753172277609, -26.04735832045384], + [-50.58676743858424, -26.04808743686895], + [-50.58557254165073, -26.048320212746564], + [-50.584102495073985, -26.048422601537503], + [-50.58285522583144, -26.048631652588494], + [-50.582298876445925, -26.048649970811095], + [-50.58184843116964, -26.04893028042445], + [-50.5811495717265, -26.048580022224765], + [-50.58084781430439, -26.048544033155235], + [-50.5794841784143, -26.048210466646285], + [-50.5779849742629, -26.047699805599404], + [-50.57697787590691, -26.04738669592307], + [-50.57614960850205, -26.047129185656296], + [-50.57507569147334, -26.046466220236532], + [-50.574898160272966, -26.046347023829405], + [-50.57451645069218, -26.04609073910415], + [-50.57415911827622, -26.045850821297382], + [-50.573203805166095, -26.045046700505367], + [-50.57239239721001, -26.04438442022753], + [-50.57195239824933, -26.044092494696198], + [-50.57119718549678, -26.043591436936932], + [-50.570253777569306, -26.043152782344666], + [-50.56860242832475, -26.042523657803756], + [-50.56841974933018, -26.04246106440689], + [-50.56752764247274, -26.04215538935207], + [-50.56610754442373, -26.041839554021088], + [-50.565757531686415, -26.04176171017186], + [-50.56397260344218, -26.04176873199543], + [-50.56306887700804, -26.041756910104645], + [-50.557910708771374, -26.0418717524107], + [-50.55681056488812, -26.041926429343928], + [-50.555720733283344, -26.042135708876042], + [-50.55457775926238, -26.04254524655964], + [-50.55416990886082, -26.04268062593518], + [-50.55100595104623, -26.044642942849865], + [-50.55164664561831, -26.053721122172036], + [-50.55841800380854, -26.06168945468049], + [-50.56460707153159, -26.064243862411463], + [-50.56476893686144, -26.064297663924634], + [-50.56492605676389, -26.064363014404343], + [-50.566223690217626, -26.06490273510703], + [-50.56627553354695, -26.06493242090627], + [-50.57123979077621, -26.066980961757153], + [-50.57548548525879, -26.067725786048022], + [-50.57573729735214, -26.06773323571398], + [-50.576642655288985, -26.06779450074859], + [-50.577664036369356, -26.067773561413002], + [-50.578988755917734, -26.068059869051712], + [-50.58090337972743, -26.068559856737988], + [-50.58225529996932, -26.068913140780275], + [-50.58663133919872, -26.06968047099292], + [-50.58776171385643, -26.069878720423535], + [-50.58864174415122, -26.07002641727438], + [-50.58915811360339, -26.07011308057604], + [-50.591226158093114, -26.07037764678327], + [-50.593050105158824, -26.070535337800163], + [-50.59528028864031, -26.07088262546613], + [-50.59563042022082, -26.07083851843044], + [-50.59985805007788, -26.069839873980712], + [-50.60057160362211, -26.06949247531458], + [-50.603422760911876, -26.06841467010933], + [-50.6053183975728, -26.06790124196545], + [-50.608169158614004, -26.067011912739005], + [-50.61032383223831, -26.06622706177794], + [-50.61392328995886, -26.06499755513924], + [-50.61639566906531, -26.06426051313182], + [-50.61870710612888, -26.06367634063304], + [-50.620742562538744, -26.063209395023836], + [-50.62345315884303, -26.062779276199205], + [-50.62484457404428, -26.062664502656645], + [-50.62624890558186, -26.062620474063237], + [-50.627613408619425, -26.062741385580594], + [-50.62849186838499, -26.063038046668936], + [-50.62899345354555, -26.06331684899342], + [-50.6293436047519, -26.063511477823795], + [-50.630470466950904, -26.064162339056338], + [-50.63147844184921, -26.065107658643452], + [-50.63161019729897, -26.065335115185068], + [-50.63216003234933, -26.06628432227209], + [-50.63282302970117, -26.067193881992896], + [-50.63283999186373, -26.067217151934564], + [-50.63352700768446, -26.068467869536065], + [-50.6342112924746, -26.069713616146963], + [-50.63424172079, -26.06976128604164], + [-50.635047769144656, -26.07102405425109], + [-50.63554301469586, -26.071991674608157], + [-50.64099452235696, -26.078859025537366], + [-50.64252108729425, -26.082942532276768], + [-50.642747331283175, -26.083409958539413], + [-50.64288313334827, -26.08391094906254], + [-50.645444052674925, -26.09076053308551], + [-50.64941733227289, -26.094874241101582], + [-50.65144446980541, -26.095861441512767], + [-50.65311616744868, -26.097062576880695], + [-50.65415062884746, -26.098102117359325], + [-50.655381394092224, -26.09940140316152], + [-50.65663744384196, -26.10129667380804], + [-50.65704191252997, -26.10229958135834], + [-50.65716401333241, -26.1028935752333], + [-50.65726203029185, -26.102995032357786], + [-50.65720851932041, -26.103110085710497], + [-50.65734527671222, -26.103775371183385], + [-50.65749601528129, -26.104508677599497], + [-50.657335394520004, -26.105722694979924], + [-50.65697679675575, -26.107384032956396], + [-50.656342710346, -26.108915409853665], + [-50.65572242394702, -26.110187411737105], + [-50.65462754482879, -26.112256696083094], + [-50.653797101667024, -26.113551851654396], + [-50.65259853580995, -26.115046639410835], + [-50.6516622655298, -26.11666751729074], + [-50.65109562149567, -26.11747982005411], + [-50.65048949844291, -26.118327396942973], + [-50.64983010236071, -26.11946957497148], + [-50.64932849554267, -26.120517756492976], + [-50.64863147457895, -26.121548259127398], + [-50.64802718029911, -26.122847074996088], + [-50.647850238626674, -26.12352093598785], + [-50.64751687027653, -26.125506952844265], + [-50.64751748358589, -26.12556428439901], + [-50.65258099873172, -26.13325791046904], + [-50.672754461204036, -26.143314684355946], + [-50.677186442582794, -26.145808078367494], + [-50.678383521598455, -26.147993771168913], + [-50.67930122207282, -26.14883855345585], + [-50.681108495456826, -26.151068180227483], + [-50.68236556921876, -26.15270916288312], + [-50.6832686524867, -26.154090114736512], + [-50.6839085805867, -26.15569457142843], + [-50.6846879504377, -26.157591041624244], + [-50.68565203851419, -26.161086436010976], + [-50.68589588710204, -26.161708184739716], + [-50.68735582303671, -26.164372996590462], + [-50.69741786911754, -26.18163833176027], + [-50.69750194553167, -26.181746234340327], + [-50.697669321628496, -26.181929340760544], + [-50.7047587747479, -26.188707861620745], + [-50.731792612047926, -26.203370321282296], + [-50.73099631064198, -26.205055197915154], + [-50.73162329741724, -26.206303157467072], + [-50.731951604667294, -26.207511140223193], + [-50.731855431064, -26.208443091419326], + [-50.7316643421066, -26.20962909889608], + [-50.731296564160864, -26.210503338998112], + [-50.73083727393015, -26.211645244367997], + [-50.730181663731166, -26.21299193336046], + [-50.72952584301252, -26.21445694433842], + [-50.729034288697164, -26.21536450084581], + [-50.7285427862629, -26.21624274235698], + [-50.72757208069264, -26.217568494395014], + [-50.72672651958261, -26.218635967052904], + [-50.7260157772434, -26.21951181928987], + [-50.725080781778956, -26.22058198924328], + [-50.72399274978574, -26.221675868700196], + [-50.72301587559629, -26.222609983810056], + [-50.722283501648924, -26.22360407310361], + [-50.722007697330326, -26.224070269274453], + [-50.71517826772585, -26.238513076754824], + [-50.71848935647107, -26.244739010978815], + [-50.73229167798155, -26.24973030929046], + [-50.74351467733397, -26.248516928859498], + [-50.74669413395643, -26.244945946316413], + [-50.746680953063596, -26.24467213155539], + [-50.74648538746948, -26.243740957327248], + [-50.74599709247795, -26.242514800108374], + [-50.74561007714369, -26.241102956578313], + [-50.74523727052022, -26.239851154979753], + [-50.74507951199495, -26.238407835693977], + [-50.74510126371912, -26.23733661676408], + [-50.74537256956861, -26.235309677134317], + [-50.74572929744331, -26.233939593134547], + [-50.74605900451477, -26.23264483321429], + [-50.74648967969414, -26.23108764231011], + [-50.74643301879055, -26.229701456221537], + [-50.74705996746863, -26.22928186181421], + [-50.747064322863935, -26.229268207332847], + [-50.74751250601035, -26.228118513001167], + [-50.74822867157063, -26.22704747777155], + [-50.74995405692282, -26.225650977242616], + [-50.75104349945653, -26.22493624972922], + [-50.752812300311874, -26.224111187980352], + [-50.754112037153746, -26.223507267755547], + [-50.75533681365052, -26.22313929474757], + [-50.75664646002259, -26.22286524212138], + [-50.75842761299754, -26.221672896522392], + [-50.79328693809463, -26.227694684467913], + [-50.80159382916329, -26.231860699550122], + [-50.8024687922909, -26.232299451470773], + [-50.81175943781378, -26.238188355366848], + [-50.82264836132851, -26.24446095619029], + [-50.82299916090913, -26.244577002218367], + [-50.82496734691728, -26.245308764569042], + [-50.82586845350312, -26.24626614743594], + [-50.82603218312039, -26.246409912608186], + [-50.827600983455106, -26.247313434536423], + [-50.82778889346944, -26.248118712915865], + [-50.828223366843254, -26.248649333263337], + [-50.828622054517766, -26.25037246869122], + [-50.829033566285425, -26.25234976503997], + [-50.829565112970435, -26.253698480078743], + [-50.82990948254076, -26.254716694787398], + [-50.83011597364649, -26.25649137984664], + [-50.83033078918879, -26.25860848282912], + [-50.830362577057016, -26.259146961148687], + [-50.83214913623148, -26.266801131681596], + [-50.83935806133335, -26.271497409611293], + [-50.84665534229317, -26.267281526365924], + [-50.85637619450302, -26.252656060656147], + [-50.85684781069569, -26.251905604506472], + [-50.85710934048096, -26.25155283181719], + [-50.863123556532464, -26.24250177686856], + [-50.865096852624525, -26.24218737842928], + [-50.86609165010801, -26.241853595185944], + [-50.86746447913205, -26.24171757863247], + [-50.86784516480166, -26.2417494513267], + [-50.868654679825184, -26.241620449290412], + [-50.871094101111666, -26.24215958891737], + [-50.87167945296171, -26.243375584519967], + [-50.87209243270373, -26.243854765896824], + [-50.87292264972511, -26.24498841696246], + [-50.873484609995636, -26.245960875945674], + [-50.8737253736823, -26.246377511081555], + [-50.87434077913333, -26.247828712815465], + [-50.87448379109728, -26.248165953288854], + [-50.874659669282, -26.248524410649505], + [-50.8751803287495, -26.24958556675668], + [-50.875455637637984, -26.250260910738717], + [-50.875777270180855, -26.251049888549506], + [-50.876492668721085, -26.252666988924506], + [-50.87722344399735, -26.25420424325971], + [-50.877915759097824, -26.255980357687235], + [-50.878770893996474, -26.25778936856659], + [-50.879467435849875, -26.25901313606142], + [-50.879497813192486, -26.25906650695213], + [-50.87949952826772, -26.259083147943887], + [-50.87962342970688, -26.260285963351667], + [-50.88013701282582, -26.261999149383517], + [-50.880171836932426, -26.263452643050936], + [-50.879948637548814, -26.26411014711562], + [-50.882021637774606, -26.27802483060094], + [-50.89357097091356, -26.287934762266943], + [-50.89978359282258, -26.28917996426723], + [-50.901963263471224, -26.28943439970219], + [-50.90920840751284, -26.284837202116805], + [-50.909063057739914, -26.28047944077497], + [-50.90894935635277, -26.28009825745164], + [-50.90850351631444, -26.278098164246593], + [-50.907830855484185, -26.275399821905502], + [-50.90724420601048, -26.272216109350246], + [-50.906850906971655, -26.270649411902628], + [-50.9067075616106, -26.268756948669235], + [-50.906713246358215, -26.26674329195662], + [-50.906846639997504, -26.265063522766397], + [-50.90687626658484, -26.26469044672423], + [-50.90688892113432, -26.2643249087375], + [-50.906943177915714, -26.262757800794603], + [-50.90700489333818, -26.261095805841187], + [-50.90709483663715, -26.259375710802406], + [-50.90712317288001, -26.25770272896213], + [-50.90764708804887, -26.25600843247036], + [-50.90786646978331, -26.254509428965772], + [-50.90815061309191, -26.25311610989575], + [-50.908098170350236, -26.251543028651074], + [-50.909448166159216, -26.25065473429018], + [-50.90998012353252, -26.249923152606552], + [-50.911815755551224, -26.248356187716418], + [-50.91407009808214, -26.246500277472585], + [-50.91529417657153, -26.245896485477655], + [-50.91582964666036, -26.245632357730035], + [-50.917071754294334, -26.244802573709364], + [-50.91742350075701, -26.24456759057077], + [-50.91817845898918, -26.24412151311806], + [-50.91922568469796, -26.24350274571584], + [-50.921946550088286, -26.241883376878043], + [-50.924195005224306, -26.240425736593007], + [-50.924271852314, -26.240371672344633], + [-50.92591913523679, -26.239212770021492], + [-50.92855283210496, -26.23755359048092], + [-50.93088180200879, -26.236204456910265], + [-50.932994102534046, -26.234977386044328], + [-50.933085311782726, -26.234947916744197], + [-50.9335307968741, -26.234803987931002], + [-50.93542166622078, -26.233559097462162], + [-50.93687286491319, -26.23386552516344], + [-50.93779032795744, -26.233754979211174], + [-50.93902434862337, -26.233673134100826], + [-50.93932811209668, -26.23373204107681], + [-50.939752502155045, -26.233814339645956], + [-50.94003738953672, -26.23386958668549], + [-50.941103069079084, -26.234167214078248], + [-50.94140314663968, -26.234251021062462], + [-50.94192512239351, -26.23464971525599], + [-50.9419252283943, -26.234649796255603], + [-50.94228395697408, -26.23492380001411], + [-50.94240143663429, -26.23503276110421], + [-50.942537122555805, -26.235061405224872], + [-50.942589911243054, -26.235207568599037], + [-50.94303910191283, -26.235624183381134], + [-50.94356799251717, -26.236222971520032], + [-50.94370649310323, -26.23647231101825], + [-50.94405199805987, -26.23709432176634], + [-50.94467774853413, -26.23853905944893], + [-50.944702579341346, -26.23871094033917], + [-50.94480282459987, -26.239404861895558], + [-50.94494295926903, -26.240159295309155], + [-50.94497853320041, -26.24035081216032], + [-50.94496783059119, -26.240456404179607], + [-50.94488831349375, -26.241240946322765], + [-50.94484725343975, -26.241754801379674], + [-50.94480035666238, -26.24234170244464], + [-50.94449272693718, -26.24344166830108], + [-50.94404558775183, -26.244324039657986], + [-50.94325287158972, -26.24530963915423], + [-50.94255132614214, -26.246379139332614], + [-50.94191579288064, -26.247428823293504], + [-50.941219940075506, -26.24864901642959], + [-50.940433101795186, -26.24960020491175], + [-50.94027754877373, -26.249788249504928], + [-50.932173146962896, -26.26751009354346], + [-50.932131100803815, -26.268005235809657], + [-50.93205727137495, -26.268751904505173], + [-50.937087739653364, -26.27816786751759], + [-50.93710503291065, -26.278187043588478], + [-50.93780131672986, -26.27915632810747], + [-50.93822609890875, -26.27955878755284], + [-50.9446817075873, -26.282466806018977], + [-50.95326087553278, -26.269580979461495], + [-50.970104007712976, -26.26411948358012], + [-50.97167044691412, -26.255365624154837], + [-50.97153790785274, -26.254691248035996], + [-50.97158436905585, -26.253723586034848], + [-50.97169237289444, -26.251878272967808], + [-50.971965932836504, -26.25038076929091], + [-50.97228813653909, -26.24950578735185], + [-50.97282492418973, -26.248164146768996], + [-50.97302436128035, -26.247798351634373], + [-50.97317587969779, -26.246951425304136], + [-50.973502534686894, -26.246735479201703], + [-50.97352414491763, -26.246681429664946], + [-50.97413152326739, -26.245925895752347], + [-50.9747967672203, -26.24526000263165], + [-50.97537323084252, -26.244601128807165], + [-50.97624723046976, -26.243893708994342], + [-50.97699047003527, -26.24329995960119], + [-50.97836199211999, -26.242457320144307], + [-50.97891248285606, -26.24209467135952], + [-50.979191451229, -26.241910895454858], + [-50.980081217870854, -26.241434652552282], + [-50.98141794301844, -26.2408846601649], + [-50.98273871544554, -26.24041837481746], + [-50.983825395266905, -26.239910412750618], + [-50.99143846270158, -26.234875963744226], + [-51.000462029771754, -26.230441631265784], + [-51.00198395466522, -26.2308547397413], + [-51.00234786748746, -26.230876072685327], + [-51.003168920036806, -26.23093175592546], + [-51.004057909193826, -26.231068315924738], + [-51.00502700445978, -26.231152667663952], + [-51.00583555957972, -26.231359178920926], + [-51.00766162954331, -26.23222827665971], + [-51.009275904503475, -26.23281892615296], + [-51.009367942346564, -26.232858765141216], + [-51.01653857686922, -26.234804456785675], + [-51.03737558616746, -26.240270172914066], + [-51.037921795233075, -26.240325656830603], + [-51.03888402648309, -26.240413499586012], + [-51.03917771778021, -26.24044031059564], + [-51.03977350037233, -26.240485190588252], + [-51.04054723873875, -26.240543474981028], + [-51.04110448345556, -26.240656321091453], + [-51.04172190546588, -26.240781353997622], + [-51.04267930015651, -26.24098077074996], + [-51.04366416450972, -26.241313799387346], + [-51.04452074322751, -26.2416184504601], + [-51.04532677199505, -26.241984600692074], + [-51.046242759956115, -26.242290039564754], + [-51.04689012870107, -26.242563727344724], + [-51.04798322668072, -26.242942613609955], + [-51.0488797464887, -26.243230017550548], + [-51.049415710332774, -26.243394509722734], + [-51.04958471522963, -26.243446378146356], + [-51.04972719298566, -26.243490105660438], + [-51.05017532414718, -26.243575241140924], + [-51.05078361208126, -26.243690801078237], + [-51.05172993563397, -26.24386773486975], + [-51.05258015548169, -26.24396795699675], + [-51.0529850503397, -26.244021899627565], + [-51.0534696735635, -26.244086464988538], + [-51.054665721010146, -26.244235711945336], + [-51.05488554494881, -26.244248047204724], + [-51.05570477044692, -26.244294014444606], + [-51.05660441446003, -26.24438604540639], + [-51.05732746538291, -26.244386804976973], + [-51.05811345668232, -26.244175199371973], + [-51.05870301132169, -26.244119705182683], + [-51.06287400741393, -26.243148841148695], + [-51.06796300939605, -26.24056148451581], + [-51.068625861206876, -26.240082694741584], + [-51.069398897542825, -26.23940912025857], + [-51.0698298146587, -26.239016382877367], + [-51.0701793607526, -26.238697807756942], + [-51.07159177275793, -26.23756205820409], + [-51.072216497555864, -26.237069719582717], + [-51.0788729041175, -26.22951178707475], + [-51.07909449132144, -26.22892336846865], + [-51.07928990577344, -26.228358039909157], + [-51.07935450819132, -26.227912092768744], + [-51.0793549811797, -26.227908828767692], + [-51.081108009651324, -26.228248604816596], + [-51.08164814435405, -26.22837568497895], + [-51.081963316275534, -26.228533174892313], + [-51.08248638929536, -26.2287536560958], + [-51.08293683918339, -26.229013080536678], + [-51.08319666520574, -26.229248965622432], + [-51.08321339733602, -26.229264156563634], + [-51.083437736784376, -26.229648780253818], + [-51.08534822694558, -26.230453205075733], + [-51.08583345260362, -26.23318666347265], + [-51.08583701413577, -26.23318879706391], + [-51.085866946330555, -26.233206727960138], + [-51.08593150635064, -26.23314862275307], + [-51.08608807846028, -26.233506219164695], + [-51.08620478037825, -26.233856336711582], + [-51.08621868660679, -26.233898055657683], + [-51.08626639839101, -26.234041196472432], + [-51.086271279471184, -26.234055842453504], + [-51.086348987748394, -26.234288974151877], + [-51.086523710268, -26.234969859446384], + [-51.08664579475028, -26.235451167952544], + [-51.086771918438124, -26.23597821643712], + [-51.08692263137946, -26.236542576832523], + [-51.08698533565448, -26.23678978557883], + [-51.0870750509106, -26.237247889197754], + [-51.087232972571805, -26.238221053498055], + [-51.0874354487825, -26.239525394591183], + [-51.087515834374926, -26.240073831225693], + [-51.08752171457917, -26.240117473198403], + [-51.08752582169705, -26.240141971180343], + [-51.08756991211892, -26.240442783979947], + [-51.08772768783961, -26.241430260278122], + [-51.087791744677915, -26.24181223699644], + [-51.087957229956, -26.242926896246512], + [-51.08795997804372, -26.242945411234082], + [-51.08811897883565, -26.24419049448348], + [-51.08817983334018, -26.244494846225926], + [-51.088215956243324, -26.244677949072603], + [-51.08829670868245, -26.245188764712434], + [-51.08832787945317, -26.24534466158054], + [-51.088391844034646, -26.245664563309816], + [-51.088569494912335, -26.246670280537757], + [-51.08859601850371, -26.246787357428133], + [-51.08869201164412, -26.247211088031715], + [-51.08874123596108, -26.24748138581918], + [-51.08875563242984, -26.247580630753493], + [-51.08876736581189, -26.247661526699996], + [-51.08877257764435, -26.24767088129055], + [-51.09451381154547, -26.24992435962886], + [-51.09417802881609, -26.253836658194857], + [-51.09472862925421, -26.25428003648525], + [-51.09475016738765, -26.25429127441083], + [-51.09475037538886, -26.25429138241011], + [-51.09585733424604, -26.254868948582608], + [-51.09641423517415, -26.25503356767892], + [-51.09653453080677, -26.255069126267593], + [-51.09656914598892, -26.25507941114932], + [-51.09659722813638, -26.25508766005329], + [-51.09698910522298, -26.25520979771251], + [-51.097397195411084, -26.2553406473156], + [-51.097668953919346, -26.255440154383237], + [-51.09780886468248, -26.255488142903733], + [-51.09794842557831, -26.255568513419718], + [-51.098055461369135, -26.255655204044164], + [-51.098087639606796, -26.255681264931287], + [-51.09819869255051, -26.25580096853647], + [-51.09821908681963, -26.255846087459915], + [-51.09825747632618, -26.25593101431574], + [-51.09830070384551, -26.256014301155695], + [-51.09834002031787, -26.256090052010016], + [-51.09834368843503, -26.256114780993375], + [-51.09836620615457, -26.256266592891], + [-51.09834810687069, -26.256457142918684], + [-51.098297157365145, -26.25662617106079], + [-51.098294017395716, -26.256636587069508], + [-51.098171754632126, -26.25681278645048], + [-51.097981609469215, -26.256958670065266], + [-51.09788049937068, -26.2570333573927], + [-51.097767664105156, -26.25707915776473], + [-51.097610597577365, -26.257104723289135], + [-51.097578757470416, -26.25710990639545], + [-51.09735347279189, -26.257165527144423], + [-51.097176213353514, -26.257232357729627], + [-51.09713871326682, -26.257247975853193], + [-51.09700693896251, -26.257302856287367], + [-51.09697208891627, -26.25732563140069], + [-51.09684935075324, -26.25740584079994], + [-51.09672790867618, -26.257505539191577], + [-51.09663022681501, -26.25763422949805], + [-51.09657293903927, -26.257744176671725], + [-51.096559468535766, -26.257877196693894], + [-51.09655861658083, -26.257888902694674], + [-51.096550049033894, -26.258006651703063], + [-51.096547000108046, -26.258027521709614], + [-51.09654465216511, -26.258043590714724], + [-51.0965392552963, -26.258080528726488], + [-51.096532722455116, -26.25812524474066], + [-51.09652911454291, -26.258149940748496], + [-51.096515395876345, -26.258243835778362], + [-51.096451612270165, -26.258401049965666], + [-51.09644120433435, -26.258426703996236], + [-51.09636763255647, -26.2585520052221], + [-51.09625227324923, -26.25883166856182], + [-51.09615897749213, -26.258981207849942], + [-51.09610937262126, -26.259060718003113], + [-51.09599062006184, -26.259282781364295], + [-51.09585928765978, -26.25955511075902], + [-51.09576780552414, -26.2598529430152], + [-51.0957657892909, -26.260040034989398], + [-51.09577082545898, -26.26031714492415], + [-51.09579735816312, -26.260461304809585], + [-51.09584433780146, -26.26056966063247], + [-51.09592322064426, -26.26069628334475], + [-51.09592855577193, -26.260721911322296], + [-51.09593423735647, -26.2607492028312], + [-51.09814476365347, -26.26256580442534], + [-51.09823961058122, -26.26252859022373], + [-51.098517219413175, -26.262459026300856], + [-51.098931081859526, -26.262405034916302], + [-51.0992247737421, -26.262332011939947], + [-51.09951013270993, -26.26228770198648], + [-51.09979498786942, -26.26229016402651], + [-51.09997961859119, -26.262284563405583], + [-51.10027650979968, -26.26228712940512], + [-51.10047692558802, -26.26228221773084], + [-51.100540956840035, -26.262280695515464], + [-51.100736226608696, -26.262276055858507], + [-51.10081004389924, -26.262274301610223], + [-51.10084256805422, -26.26228003049969], + [-51.10104633202503, -26.262315923807044], + [-51.10121788509602, -26.262407362213093], + [-51.101312514122284, -26.262562904867096], + [-51.101342564034844, -26.26275387173253], + [-51.10136208800685, -26.26296947062901], + [-51.10136408710636, -26.26299154261836], + [-51.10134525810318, -26.263250453636505], + [-51.10127033684188, -26.263501683844908], + [-51.101090172509885, -26.263838364392864], + [-51.100939714672755, -26.26402417486721], + [-51.10085728869223, -26.264109161130026], + [-51.100774862711816, -26.26419414639276], + [-51.10067876173464, -26.264293231699266], + [-51.100582660757375, -26.264392318005573], + [-51.10048719537382, -26.26449070584789], + [-51.10187406485904, -26.265630322413216], + [-51.101949910321885, -26.265882602711745], + [-51.1019549135018, -26.26589024612044], + [-51.10204479979223, -26.266114112778375], + [-51.102055702242694, -26.266234490235863], + [-51.10398479998506, -26.272650708418237], + [-51.104305438388295, -26.273553718216977], + [-51.104378635957076, -26.273531451613607], + [-51.104520345041784, -26.273413929156682], + [-51.104701832422734, -26.273329133559795], + [-51.10499288777238, -26.273130136613805], + [-51.10519890907414, -26.273002372941875], + [-51.10530683724085, -26.272937510589585], + [-51.10535238331113, -26.272910138440803], + [-51.10551681801049, -26.27291875088508], + [-51.105567205380986, -26.27295905770813], + [-51.105612308712615, -26.27299513754983], + [-51.10562685835378, -26.273135596476116], + [-51.10548488337245, -26.273278304929576], + [-51.1053387794191, -26.273431773395078], + [-51.105201924654516, -26.273621775822946], + [-51.10516362572045, -26.27367494794275], + [-51.10506505419934, -26.27388639723777], + [-51.10496300945523, -26.274047440553524], + [-51.10498459350548, -26.274279738439926], + [-51.10499277725504, -26.274452527382028], + [-51.1050009610045, -26.274625315324084], + [-51.10500544539547, -26.274956396250914], + [-51.10501065950589, -26.275219114187163], + [-51.105009268079, -26.27534913721209], + [-51.105759031071, -26.274816577073796], + [-51.105826823541086, -26.274674315531897], + [-51.10594156008318, -26.274452210184073], + [-51.106155300535725, -26.274353297481], + [-51.106388871158465, -26.274276144707358], + [-51.10665295025534, -26.27418161062195], + [-51.10793188364779, -26.273273140085614], + [-51.110163898898826, -26.274245053468434], + [-51.11032968868068, -26.274184032438992], + [-51.11061198027762, -26.274053316510347], + [-51.11082961079055, -26.27396522479216], + [-51.11100677227296, -26.273909171204746], + [-51.111162836072374, -26.273950087671395], + [-51.111370257394334, -26.274067007951487], + [-51.11160542096351, -26.27421655013228], + [-51.112121600557195, -26.274580792327676], + [-51.112373087088315, -26.274705284457777], + [-51.11251194104825, -26.274801622972692], + [-51.11260412868555, -26.27486558365054], + [-51.11276731778495, -26.27497187708156], + [-51.11307070282892, -26.275169486023717], + [-51.11331359554909, -26.27534787917326], + [-51.113569481948865, -26.27543642529483], + [-51.11377339606255, -26.275506534594793], + [-51.114150115775125, -26.275552933316344], + [-51.11436110886712, -26.275610926594624], + [-51.1147032656946, -26.275718643421882], + [-51.11505175392832, -26.27591810621141], + [-51.11526933241173, -26.27606405345189], + [-51.11544218606633, -26.276294763828155], + [-51.11574706304099, -26.276474202768338], + [-51.11591307079529, -26.27674824958434], + [-51.11730210894495, -26.277352987558757], + [-51.1174768713972, -26.277287996790484], + [-51.11777075791398, -26.277126760827798], + [-51.11810081671388, -26.27699858073727], + [-51.11840764793552, -26.276994643703105], + [-51.118618142308634, -26.277120877970752], + [-51.118973122894865, -26.277398982724176], + [-51.11925576191498, -26.277610976733282], + [-51.11947287358686, -26.277802763966925], + [-51.11966063419363, -26.278007401297362], + [-51.11978871704683, -26.27832942580812], + [-51.11984226060679, -26.278458828368088], + [-51.12226906828618, -26.27951526368982], + [-51.13065902259023, -26.279577889460377], + [-51.13068537829124, -26.27936205885855], + [-51.130695493217345, -26.279093605872426], + [-51.13113565524662, -26.278913928419005], + [-51.131413001456515, -26.27893591847902], + [-51.13174747741551, -26.27908283232394], + [-51.13219082608939, -26.279296158789446], + [-51.13266373174759, -26.279476982160936], + [-51.132976761775396, -26.279595103477103], + [-51.13517419974046, -26.27961138944249], + [-51.13529224179343, -26.279584223269406], + [-51.135462894585864, -26.279613526558446], + [-51.13665527232572, -26.279622347198544], + [-51.13804112661024, -26.28607325235323], + [-51.139209922730025, -26.28601067622577], + [-51.139848893022396, -26.285807559767736], + [-51.14025931471957, -26.285336308466484], + [-51.140643634737316, -26.28520822619158], + [-51.141499755177634, -26.285205281300936], + [-51.14210892127773, -26.28511947225909], + [-51.14338357170658, -26.284948315984934], + [-51.14326163678373, -26.28460391045885], + [-51.143254669034704, -26.28418976755699], + [-51.14311128323444, -26.283895680094222], + [-51.14312537415864, -26.28362310709576], + [-51.14336190512062, -26.283625080296524], + [-51.14366444398053, -26.283779099247067], + [-51.14393350657836, -26.283902539316017], + [-51.144248251110206, -26.283965761241685], + [-51.14462014853864, -26.28394866098869], + [-51.145076178687965, -26.28378276347831], + [-51.14539471572418, -26.283482404456617], + [-51.14547807125832, -26.283048795253332], + [-51.14574164452537, -26.282616686441095], + [-51.14608594036513, -26.28200345338881], + [-51.146518661235994, -26.28155255800877], + [-51.147019893007624, -26.281011336413545], + [-51.147577431008045, -26.280470585628162], + [-51.147942337686956, -26.280039331473592], + [-51.148510703899234, -26.27953907064423], + [-51.14888529924694, -26.279259391429605], + [-51.14925822425935, -26.279141292191362], + [-51.1497191654688, -26.279225914619154], + [-51.15005579934089, -26.279349902459685], + [-51.15043863093902, -26.279363177164097], + [-51.150787673399805, -26.279376170982744], + [-51.15131671267615, -26.279410854189425], + [-51.151686824810206, -26.279565413911232], + [-51.15185431107854, -26.279708196319596], + [-51.152029299065326, -26.279845216694323], + [-51.152740336004854, -26.27993316677877], + [-51.152911359046634, -26.279878540717874], + [-51.153440510281335, -26.279903116925706], + [-51.153942921323434, -26.279907271227607], + [-51.154561445215066, -26.28000328012057], + [-51.154976822449, -26.280138006692788], + [-51.15505735456857, -26.280219739696395], + [-51.15637726320911, -26.280382970943762], + [-51.1638520394518, -26.28347276034833], + [-51.16381839626466, -26.291481020733276], + [-51.169845870226496, -26.291556641360955], + [-51.18106554988298, -26.298992622507328], + [-51.193443423944736, -26.301864307303045], + [-51.193487590916966, -26.301834074432218], + [-51.1937476015941, -26.301745251568054], + [-51.19414286054663, -26.301834788242246], + [-51.195813222065595, -26.301227539783053], + [-51.19603040083345, -26.30103627796845], + [-51.19638905994276, -26.300715966813343], + [-51.19669603401042, -26.30043561782597], + [-51.1971710831395, -26.300247506252006], + [-51.19741831839594, -26.300310073402905], + [-51.197822665542944, -26.30043448701001], + [-51.197975512602106, -26.30044141563504], + [-51.203202899328815, -26.298540764172504], + [-51.204193592865046, -26.298091052799094], + [-51.204538892439345, -26.297760869758054], + [-51.204891293522195, -26.297440468624288], + [-51.20550199499013, -26.29720291159976], + [-51.206247571131655, -26.29699672011233], + [-51.20681250170844, -26.296829494229666], + [-51.20714603881122, -26.296750770405588], + [-51.207411349847106, -26.296630326219315], + [-51.20746851108637, -26.296743811541408], + [-51.207680388019824, -26.29678585729713], + [-51.20794747349339, -26.29712126032917], + [-51.2080085340916, -26.29720576110636], + [-51.20833648930412, -26.297659615909872], + [-51.20856918589092, -26.298055340046947], + [-51.208879646256655, -26.29856276989946], + [-51.2089434701162, -26.298947057611006], + [-51.20889405176881, -26.29939104969493], + [-51.20887934660168, -26.29954474171266], + [-51.21085835880515, -26.303473418363325], + [-51.21122337928571, -26.303979709936538], + [-51.21122128096212, -26.304193848533345], + [-51.21178412761948, -26.305311125455283], + [-51.21187442273366, -26.305376369466476], + [-51.2119622770595, -26.30560935312476], + [-51.21195664616811, -26.305653578032498], + [-51.217018549518045, -26.31570054809345], + [-51.218135871181936, -26.31585716272822], + [-51.21832192105702, -26.315765260640315], + [-51.218632210004664, -26.315692974601514], + [-51.21901372733051, -26.31564259131681], + [-51.219489976263844, -26.31564631270055], + [-51.21988288285876, -26.315649381367102], + [-51.22013167040357, -26.315779401498474], + [-51.220345465494184, -26.315834436762785], + [-51.22063145855359, -26.315812359796695], + [-51.22083148539067, -26.316059406071272], + [-51.22093611716512, -26.316249632192395], + [-51.222096446891975, -26.3164122417927], + [-51.22671355664076, -26.322506607718864], + [-51.243069760321575, -26.32467259156634], + [-51.24502988244634, -26.3292257458129], + [-51.24523297695382, -26.32929544369529], + [-51.24534743857887, -26.32933472429886], + [-51.24590578842469, -26.329477735374184], + [-51.24650057610573, -26.329546311339946], + [-51.246952675118564, -26.329592450794824], + [-51.247392566215744, -26.329670516284956], + [-51.247878779081404, -26.32988768559089], + [-51.24843412725477, -26.330350869614232], + [-51.24865766336738, -26.330640752798626], + [-51.249200718669634, -26.331146540855503], + [-51.24964881945284, -26.33161959024126], + [-51.2502331406009, -26.33224099998278], + [-51.25164516656219, -26.332864409212032], + [-51.25307666632133, -26.33512915413064], + [-51.25360646444944, -26.335697114999913], + [-51.2541083907224, -26.336235197189303], + [-51.254556485506434, -26.336708204574112], + [-51.25495554571719, -26.337330266096817], + [-51.25525793816166, -26.338101022919204], + [-51.25542833285013, -26.338579284247064], + [-51.25554800673842, -26.338915183774986], + [-51.255593996984686, -26.3391115165207], + [-51.25644734329988, -26.34046141886122], + [-51.25626388416215, -26.341889387377876], + [-51.25631599517403, -26.342101591545376], + [-51.256592496453365, -26.34309630241195], + [-51.25680003933461, -26.3438234275649], + [-51.256891597360315, -26.34421903217675], + [-51.25698335729742, -26.344593288791977], + [-51.25690768186815, -26.345040995962478], + [-51.25660452005219, -26.34561506188226], + [-51.25634877825972, -26.345910409694838], + [-51.25578001770933, -26.346325760548716], + [-51.255042533484826, -26.34674239097627], + [-51.254341589072624, -26.347079126295103], + [-51.25390990535035, -26.347321697716225], + [-51.2530413393721, -26.347684513600093], + [-51.25242901706018, -26.34796006862924], + [-51.25205025910713, -26.34833545884471], + [-51.251766223127696, -26.348613498756876], + [-51.25172310503432, -26.34868576858239], + [-51.254076315157455, -26.350320273316065], + [-51.26015181993775, -26.358899447413606], + [-51.259958000290176, -26.361495064174918], + [-51.26013139146044, -26.361888333719115], + [-51.260438215349986, -26.36252110455151], + [-51.260590114981596, -26.363002725940788], + [-51.260615203844964, -26.363661402727075], + [-51.26065606471364, -26.364306185462418], + [-51.26050810534449, -26.365075640816247], + [-51.26023689065224, -26.365648021628104], + [-51.25985582769007, -26.366261602805896], + [-51.25956636932499, -26.36673941818419], + [-51.25939005592672, -26.369100294994585], + [-51.25740970178592, -26.37158107590466], + [-51.25741279637112, -26.37163236507822], + [-51.25742357760959, -26.37215559993987], + [-51.257470313593, -26.372583498697615], + [-51.2574955566644, -26.372814624566686], + [-51.25723644008567, -26.37292569942733], + [-51.25678409079444, -26.373290960896348], + [-51.25610698473045, -26.37368803712455], + [-51.255696844044046, -26.37372665777503], + [-51.25551507562761, -26.37395434101269], + [-51.252876766697014, -26.376157640440482], + [-51.253138914963806, -26.376358024711102], + [-51.25374548339758, -26.37683184055418], + [-51.25434106113054, -26.377149164464857], + [-51.2551856120629, -26.37751305951865], + [-51.25581046089079, -26.37782484933056], + [-51.256157297331676, -26.378073254101277], + [-51.25618283037873, -26.37809651746361], + [-51.258206998388104, -26.379136119681796], + [-51.2602959572687, -26.379303885773563], + [-51.26052381990407, -26.379256552000903], + [-51.26088563304735, -26.37918139178326], + [-51.2613440809864, -26.379202988217603], + [-51.2618298981949, -26.379262506551314], + [-51.262451420611285, -26.379479450391933], + [-51.26293503879566, -26.379773559687273], + [-51.26316915101313, -26.380076960830625], + [-51.26329071991404, -26.380413035350944], + [-51.26334190865227, -26.380539737151782], + [-51.263449176199316, -26.380805243734574], + [-51.26351992431586, -26.381241481408455], + [-51.263578934056476, -26.381599426137612], + [-51.26357891034472, -26.381601962318904], + [-51.26879575111111, -26.386056240901013], + [-51.26896181778822, -26.386130949910488], + [-51.26951903983548, -26.386559639927537], + [-51.27018870424581, -26.38696682156534], + [-51.27064402629903, -26.387256644956675], + [-51.27068562000091, -26.387283120519847], + [-51.27337140321317, -26.388060778170203], + [-51.27500869749913, -26.388853087974788], + [-51.275460943440315, -26.38885644322278], + [-51.276046852914575, -26.38888313122001], + [-51.27641060965523, -26.38894839496698], + [-51.2766714641844, -26.38906205005531], + [-51.277043730541735, -26.389265906745866], + [-51.277402393360276, -26.38959255245869], + [-51.27749926314895, -26.38968731310978], + [-51.2777361150775, -26.38991901025654], + [-51.27784557078981, -26.390221462823778], + [-51.277846580066345, -26.39022630893112], + [-51.278266505155266, -26.390429498591068], + [-51.27799966636818, -26.39175282783059], + [-51.278017702290896, -26.391841141917777], + [-51.27813767593832, -26.3923559504073], + [-51.278308048555736, -26.39281526773581], + [-51.278391742539355, -26.39320690837322], + [-51.278375565164254, -26.393608980349192], + [-51.278210453855166, -26.393931745848633], + [-51.27801875218953, -26.394433064403625], + [-51.27782972731377, -26.394643932006716], + [-51.277337474990325, -26.395277085560707], + [-51.27726702637911, -26.395386042295115], + [-51.27595270790696, -26.40190327244599], + [-51.275956477677155, -26.40190546924178], + [-51.28265529170076, -26.400965443086132], + [-51.2831412550975, -26.400676810698666], + [-51.2839703387411, -26.400034944996907], + [-51.28475582210519, -26.39936850244874], + [-51.285195721341914, -26.39900306102011], + [-51.28538576775141, -26.39868047043564], + [-51.285713104671636, -26.398347717384663], + [-51.28597613722337, -26.398226758511214], + [-51.28631307849819, -26.398206889365497], + [-51.28696007583131, -26.398379217123843], + [-51.28738268320597, -26.398538723650248], + [-51.28786673025306, -26.398799225946924], + [-51.2883626386303, -26.399126844189823], + [-51.28884627986375, -26.399432026478934], + [-51.28920530954411, -26.39972512419566], + [-51.289526721165686, -26.40004028903626], + [-51.28979824858454, -26.400355089047142], + [-51.29005689914008, -26.400714688093085], + [-51.2904261678962, -26.401253645725834], + [-51.290647710159305, -26.4015792529051], + [-51.29083071678288, -26.402027468191484], + [-51.29105246595289, -26.40233073037434], + [-51.29136192729119, -26.402589945266655], + [-51.29163478910466, -26.402759516301643], + [-51.2919699112182, -26.402940713121726], + [-51.29216692419381, -26.403221448393506], + [-51.292201901464146, -26.403489829220785], + [-51.29217410966757, -26.403802440253465], + [-51.2921832754276, -26.40398135969913], + [-51.29236579730317, -26.404222460960266], + [-51.29218129020758, -26.40461527298941], + [-51.29217845144629, -26.40469622306104], + [-51.29202522446933, -26.40508612150663], + [-51.291786443074926, -26.405455885185724], + [-51.28766479025482, -26.41422991404192], + [-51.287835472703755, -26.41438530017142], + [-51.292252956729854, -26.416291452710585], + [-51.29242455244983, -26.416338961905844], + [-51.29281042739457, -26.416431158569722], + [-51.293308159982146, -26.416568858842446], + [-51.293980116466024, -26.416752514511156], + [-51.294564148874926, -26.417002557466716], + [-51.29521075344385, -26.417230706212788], + [-51.29589478116495, -26.417459122830916], + [-51.296605582147826, -26.417486632397615], + [-51.29722906977577, -26.417513503262562], + [-51.29790286041979, -26.417496046964466], + [-51.298033795908005, -26.417486579519082], + [-51.2984645915143, -26.417455430053636], + [-51.29890057456834, -26.417525620550332], + [-51.29912449976062, -26.417594274771663], + [-51.29947215592639, -26.417775544547908], + [-51.29978239293996, -26.417956542451876], + [-51.30014333678319, -26.418048530200377], + [-51.300566957739825, -26.41810745374136], + [-51.30087821228696, -26.418176735664172], + [-51.300976391439, -26.418356199292912], + [-51.30082417299717, -26.418634401757256], + [-51.30057216014977, -26.41891188156284], + [-51.300270452006274, -26.419166656542718], + [-51.29988213118133, -26.41934259783415], + [-51.29960648462587, -26.419474665749593], + [-51.29958751562235, -26.419491977810917], + [-51.2995770456203, -26.419501532844794], + [-51.29925427555944, -26.419796100888597], + [-51.29910774573423, -26.41997787035292], + [-51.29897670989048, -26.42014041976807], + [-51.298699448081464, -26.42045122265331], + [-51.29837548436741, -26.42082927268462], + [-51.298160266951804, -26.421174060351127], + [-51.29793948235675, -26.421417142104815], + [-51.297291426327064, -26.422609898751013], + [-51.29448555706873, -26.426664372734688], + [-51.29335257893044, -26.43088983730674], + [-51.293356139569575, -26.430905101824774], + [-51.29340268932055, -26.431276022591902], + [-51.29334984047114, -26.431599635708007], + [-51.293346181151264, -26.432001809640404], + [-51.293319400889885, -26.432202714691975], + [-51.293377915917105, -26.432627683407443], + [-51.29332374567446, -26.433096516499138], + [-51.29333225854549, -26.433532287383258], + [-51.29336612833131, -26.43392355418958], + [-51.293413897514526, -26.434158512979593], + [-51.29335993117868, -26.4346049970751], + [-51.29319388829265, -26.435028318558235], + [-51.293079270909494, -26.435284435898886], + [-51.29287691735777, -26.435584600530586], + [-51.29268744567016, -26.43584017112718], + [-51.29236013070427, -26.436161767181744], + [-51.29202125326751, -26.436382731295815], + [-51.29184168666568, -26.436524252620263], + [-51.291687709848496, -26.437098431256718], + [-51.28866458900238, -26.438653543518495], + [-51.28844247239601, -26.43889260702609], + [-51.28807892171718, -26.43907987323113], + [-51.28778636935513, -26.439105285404445], + [-51.27455424276824, -26.445910597292304], + [-51.280349002264956, -26.454179902413387], + [-51.278767351191725, -26.458444862518437], + [-51.27818033449661, -26.45833798960667], + [-51.278071302072696, -26.458479749589117], + [-51.277767806673694, -26.45891321154076], + [-51.27747946711125, -26.459056313498028], + [-51.27704066726555, -26.4592765059542], + [-51.27655164135653, -26.459529842575648], + [-51.27595072180284, -26.459737660588377], + [-51.27528895729445, -26.459777445842175], + [-51.27509857127822, -26.459719058504284], + [-51.274766314504866, -26.459617162659878], + [-51.27440640914287, -26.45940222493228], + [-51.27412168594598, -26.45915432695407], + [-51.273713526633706, -26.458760278426585], + [-51.27349150755104, -26.458479330240543], + [-51.27334508444689, -26.45812073981155], + [-51.27316091533013, -26.457795385504944], + [-51.27306122033733, -26.457655546873106], + [-51.27300077173534, -26.457570757096356], + [-51.27284892304452, -26.457367227171357], + [-51.27153089698046, -26.45712720302053], + [-51.267794744939664, -26.460911638142825], + [-51.25397406202693, -26.463463562488826], + [-51.25963268885818, -26.469672597537564], + [-51.25964098172729, -26.469677033367454], + [-51.25964427760007, -26.46968531257824], + [-51.260569973108694, -26.470700963337713], + [-51.25979941571422, -26.47098886410253], + [-51.25979000327132, -26.471085830582993], + [-51.25968534201155, -26.47159895684025], + [-51.25954533666533, -26.47188837526199], + [-51.25915594120712, -26.47215357254057], + [-51.25855428192992, -26.472428340542535], + [-51.25809116265251, -26.472570085097225], + [-51.25752967531409, -26.472554679018522], + [-51.25683101936873, -26.47252706441085], + [-51.25625674311934, -26.47254507436921], + [-51.25558210469579, -26.4726181836596], + [-51.25542800234147, -26.472622034839503], + [-51.250944155490316, -26.47429702423936], + [-51.254268418820885, -26.476009650837156], + [-51.25442773518532, -26.475977102948487], + [-51.25482838025537, -26.47584606760525], + [-51.255364834539314, -26.475872466767267], + [-51.255775954547225, -26.475953777346774], + [-51.25589865499036, -26.476178144883892], + [-51.25619324240743, -26.476705453774432], + [-51.25629740623142, -26.47705490108996], + [-51.264993529816365, -26.481534239344754], + [-51.26548124357702, -26.48157760507722], + [-51.265767046309236, -26.481713806073387], + [-51.26587881097009, -26.48199019459601], + [-51.26658275120163, -26.482352745479467], + [-51.26605338490358, -26.48322379467484], + [-51.26605243287428, -26.483232372799645], + [-51.265923038420986, -26.483722969145752], + [-51.265782412356046, -26.484079417556554], + [-51.265516454015355, -26.484490787385134], + [-51.26503716832257, -26.485023451919243], + [-51.26461361153928, -26.485592802864467], + [-51.26125927363294, -26.49111161010744], + [-51.26129901537975, -26.491127208042116], + [-51.26381803188102, -26.490781963605894], + [-51.26388511187285, -26.490759880733076], + [-51.26453656244784, -26.490507806554852], + [-51.265225868988395, -26.49021132525583], + [-51.26642795415065, -26.48980695522443], + [-51.266953322776416, -26.489687990451166], + [-51.267401302218424, -26.489836570889846], + [-51.268047426176906, -26.49015420661762], + [-51.26809196597454, -26.490196092181925], + [-51.268202386861205, -26.490180953900012], + [-51.274282605537564, -26.497045398482097], + [-51.27383143586839, -26.497297183688566], + [-51.27380585721379, -26.4976612204395], + [-51.27371349910271, -26.498196798649815], + [-51.27365807537845, -26.498788510722715], + [-51.27329450760225, -26.49895339393433], + [-51.272719869445005, -26.498993814892664], + [-51.27177064480528, -26.499042621130986], + [-51.27114484200541, -26.49921671823797], + [-51.27040732146586, -26.49932294874052], + [-51.26993746571705, -26.499470194991673], + [-51.26903019997385, -26.499976463289098], + [-51.27052573552877, -26.502407158538592], + [-51.27075219233986, -26.502512224932136], + [-51.27118619543426, -26.502828268384743], + [-51.271432333044764, -26.503209946467194], + [-51.271740345172795, -26.503654743325423], + [-51.271737330529845, -26.503978715271874], + [-51.27169489451172, -26.504307310216042], + [-51.272288337070876, -26.505271762556838], + [-51.27146929846881, -26.505466358034603], + [-51.271345577768436, -26.50583037424749], + [-51.27104213027619, -26.50624148220498], + [-51.270714234448036, -26.506596546257168], + [-51.270100986123566, -26.50687126930179], + [-51.2694999644713, -26.507056721322154], + [-51.268962305652764, -26.507142092145415], + [-51.26823822369478, -26.507136692624385], + [-51.26723981847451, -26.50709572504903], + [-51.26660262310735, -26.50714682621945], + [-51.26607726443322, -26.50725461999591], + [-51.265527463423, -26.50730636886708], + [-51.26484076266446, -26.507312403215522], + [-51.264166341050526, -26.507340869517574], + [-51.26352905872989, -26.507403127685794], + [-51.263127512460144, -26.50744797917532], + [-51.263054398834086, -26.507465345125187], + [-51.26489147125002, -26.510850973274483], + [-51.2649567704368, -26.510933005107404], + [-51.26520261617495, -26.51134494518524], + [-51.26556099829218, -26.511738646881412], + [-51.26584500086958, -26.51207593084321], + [-51.266178942650996, -26.51241358663389], + [-51.266388566688256, -26.512694452861307], + [-51.266422575385874, -26.513063384672343], + [-51.26620720992261, -26.51339693734384], + [-51.265905915447036, -26.51357343934038], + [-51.26587473738669, -26.513589073443985], + [-51.26564249193731, -26.513705534216026], + [-51.26557693267591, -26.513706587440154], + [-51.2651679840453, -26.513713158838495], + [-51.264886909331864, -26.513703922670455], + [-51.25697821811317, -26.520239094677287], + [-51.251405856257385, -26.520822773685516], + [-51.24740216805585, -26.53720414653075], + [-51.24743047068171, -26.537274407938572], + [-51.247600294597895, -26.537800788254838], + [-51.24760895733451, -26.538203050146976], + [-51.24741878083171, -26.538503251739435], + [-51.246954739829505, -26.538711994287176], + [-51.24614138125518, -26.53888456203742], + [-51.24541681942999, -26.538912563511808], + [-51.24522192582345, -26.538930435503982], + [-51.24027105207175, -26.53969951899802], + [-51.23982158433405, -26.540009372446704], + [-51.23966569065927, -26.540134537508333], + [-51.240270685240574, -26.543370610956718], + [-51.24068694680922, -26.543546363799965], + [-51.241371051808066, -26.543834444402897], + [-51.24176572813294, -26.544004872019013], + [-51.2418187984456, -26.544027787832867], + [-51.242266762989516, -26.544198787266517], + [-51.2423509757523, -26.544534593913127], + [-51.242222679739015, -26.54489112228306], + [-51.24206951557658, -26.545236287740302], + [-51.24162933914396, -26.545556915184775], + [-51.24117774419173, -26.545765731690025], + [-51.240588998583156, -26.545951153669076], + [-51.24012726954963, -26.545914104256518], + [-51.239703540435535, -26.54582148572476], + [-51.23918044767798, -26.5456722445439], + [-51.239107922183635, -26.54564092497651], + [-51.23242883570721, -26.547867033324014], + [-51.23239733837819, -26.548102116286085], + [-51.23240876131579, -26.548312839206293], + [-51.23241854411881, -26.548493304138123], + [-51.232277726053574, -26.548849727551115], + [-51.23200072391037, -26.549082207454138], + [-51.23168744309873, -26.54919151450501], + [-51.231199544476766, -26.54927712915789], + [-51.23047566832035, -26.549226857644374], + [-51.229551018766024, -26.549275578798667], + [-51.22949533151885, -26.5492706839901], + [-51.228714974055094, -26.549202085673127], + [-51.22851181564696, -26.54917237237251], + [-51.22377179991572, -26.550751789711587], + [-51.223977189061756, -26.55090136333068], + [-51.22400115707541, -26.55090333747209], + [-51.224487113540654, -26.55101882778764], + [-51.22449022270366, -26.551054386770144], + [-51.22451082180242, -26.551289975481474], + [-51.229929589975725, -26.555235869746856], + [-51.22917899599721, -26.559459896366874], + [-51.22917555977865, -26.559568735101095], + [-51.229319997754985, -26.560133258498], + [-51.22946264050738, -26.56088290186536], + [-51.229445830329354, -26.5613296628368], + [-51.22924134152352, -26.561808490444452], + [-51.22884928404274, -26.562308208690183], + [-51.22853098238458, -26.56293138965963], + [-51.22838873392849, -26.56343303704997], + [-51.228336626411085, -26.564069802105735], + [-51.22833208662746, -26.56412527611057], + [-51.22814063363866, -26.564548337684435], + [-51.22801185131717, -26.564596222116087], + [-51.227463672948765, -26.564800049953153], + [-51.22686122675356, -26.56509702695814], + [-51.22645732994026, -26.565529610257403], + [-51.22601544219191, -26.56601408367675], + [-51.22561196119118, -26.566401987983166], + [-51.22495781153994, -26.56687732213085], + [-51.224443766281574, -26.56707443485241], + [-51.22365364045744, -26.567403464493538], + [-51.22257841851758, -26.567506832153768], + [-51.22186660154894, -26.56749012559303], + [-51.220916824887155, -26.56753859283423], + [-51.22006573856958, -26.567512437807814], + [-51.215958817185914, -26.570082431554855], + [-51.21945050671624, -26.572600984393727], + [-51.22010562998382, -26.5725954366413], + [-51.22060339883123, -26.572789236900352], + [-51.22081290992079, -26.573081338127267], + [-51.22094606431161, -26.573518079587704], + [-51.22094824534011, -26.57352271057936], + [-51.22106126381814, -26.573762755654933], + [-51.22383915189324, -26.575766230634816], + [-51.22425896149962, -26.575808638806855], + [-51.22482072394771, -26.57584651487622], + [-51.225268227730794, -26.57607342530048], + [-51.22538977869618, -26.576420697817447], + [-51.22534840722924, -26.576822564881866], + [-51.22513575789013, -26.57694698358601], + [-51.22489613450788, -26.577087182379515], + [-51.224857157952606, -26.577114374160182], + [-51.22728524503642, -26.585506646420527], + [-51.225806333447366, -26.589144646931373], + [-51.225802323835595, -26.58927816893109], + [-51.225757700776455, -26.59001516894209], + [-51.22570166819723, -26.590640361013755], + [-51.225570368444714, -26.591297006337136], + [-51.22547934663307, -26.591664976578123], + [-51.2251747594648, -26.59215418152741], + [-51.224684187917056, -26.59249670614212], + [-51.22438650662638, -26.592637073574405], + [-51.22411276063103, -26.593310395821817], + [-51.22718143018455, -26.595809430215816], + [-51.22747381135959, -26.595817384945033], + [-51.22784764232155, -26.595920829644182], + [-51.22848199815901, -26.59621621341351], + [-51.22893885540385, -26.59677834673954], + [-51.22940798979399, -26.597362915019076], + [-51.229790319543454, -26.59787977760912], + [-51.22987431960548, -26.598002295017537], + [-51.237822388038, -26.604473747766743], + [-51.23753627883369, -26.604897733823126], + [-51.23797269250089, -26.60509703116189], + [-51.238330741867884, -26.605546656846794], + [-51.23834922666079, -26.60571579475065], + [-51.238388175331686, -26.606072185547813], + [-51.23835984352965, -26.60614606163062], + [-51.23820875058551, -26.606540039072396], + [-51.23797795324453, -26.607152732744986], + [-51.23755834574408, -26.6079092130372], + [-51.23733371642197, -26.60828475673473], + [-51.23727896358727, -26.608376292904758], + [-51.23691419405509, -26.608601312112036], + [-51.2368138779088, -26.60866319544414], + [-51.23628567425538, -26.609016643187044], + [-51.23579603429007, -26.609259571819063], + [-51.235230982200626, -26.60954571170138], + [-51.23460238232403, -26.609943078780038], + [-51.23410960971656, -26.610509065360347], + [-51.23360348043328, -26.611164318969156], + [-51.23321033637743, -26.611764578201235], + [-51.23239065631639, -26.61253788086247], + [-51.2323650025062, -26.612560425252028], + [-51.22986466749233, -26.616264936894346], + [-51.232993982839226, -26.61481599405576], + [-51.23334101829887, -26.615124255550523], + [-51.233390827189986, -26.615081636940168], + [-51.233730560543435, -26.614838468822096], + [-51.234192878443814, -26.61484202423578], + [-51.23440228563235, -26.61515644845668], + [-51.23441005275058, -26.615648072334785], + [-51.23433765321403, -26.6160095232896], + [-51.237822184100054, -26.61910451783764], + [-51.2392522780566, -26.62771373789908], + [-51.23931971132844, -26.627789023134124], + [-51.23933476102761, -26.628174559007547], + [-51.23933658205995, -26.628221209140808], + [-51.239356777066874, -26.628342773078487], + [-51.24179196874955, -26.6280198193459], + [-51.241854918321025, -26.62794218240277], + [-51.24219680792419, -26.627520527311397], + [-51.2424862602124, -26.62731046835877], + [-51.243123588832695, -26.62731532917016], + [-51.24397207589058, -26.627455860230214], + [-51.2447080056281, -26.627629067670153], + [-51.24472760108051, -26.627630439665005], + [-51.257203808250274, -26.6259749017447], + [-51.257622752679616, -26.625838730675298], + [-51.25836093833238, -26.625754912156346], + [-51.25849868672467, -26.625803011693456], + [-51.25863411671226, -26.62578503318246], + [-51.258696834074655, -26.62587220127534], + [-51.25888414124176, -26.625937605323376], + [-51.259190263306536, -26.626365004187875], + [-51.25925422594687, -26.626454305950634], + [-51.25956329273644, -26.626814135818243], + [-51.25980861383413, -26.627307548878466], + [-51.25993901300772, -26.627598617518814], + [-51.26106437419656, -26.62916262216055], + [-51.26142693198562, -26.629319480922998], + [-51.262061760733886, -26.629592363688225], + [-51.26225940459096, -26.62983962896042], + [-51.262181380648244, -26.630163036164745], + [-51.262335912961895, -26.63079409950941], + [-51.26273321778207, -26.631076385088726], + [-51.26311917303299, -26.631235689731202], + [-51.26345482421973, -26.631428130539884], + [-51.263251521904934, -26.631784113168276], + [-51.26309967113638, -26.631984071650656], + [-51.263096109732146, -26.631986155654108], + [-51.26596877037836, -26.635978045008724], + [-51.266222944505174, -26.636129874098867], + [-51.26674408235764, -26.636535955227465], + [-51.26684868133817, -26.63666616884219], + [-51.26697882355801, -26.63682818036282], + [-51.266968112700155, -26.63687184439099], + [-51.26687759064046, -26.637240883485646], + [-51.26743319902053, -26.638012904559485], + [-51.26805584425102, -26.63790459576141], + [-51.26806027253301, -26.637901211433263], + [-51.268287223562226, -26.63769063069483], + [-51.26873778412811, -26.63762695015852], + [-51.26918875750542, -26.63751858362978], + [-51.26937862319208, -26.63726303902766], + [-51.269406118164014, -26.636995115986235], + [-51.26924885014085, -26.63643534563767], + [-51.269151468552344, -26.63615532102784], + [-51.26956483482268, -26.636057849626205], + [-51.27012775389753, -26.636006177701375], + [-51.27020086805352, -26.636207816410078], + [-51.27039708857107, -26.636611465655566], + [-51.27054743574392, -26.636743048112642], + [-51.27073182418239, -26.636904424446794], + [-51.271155603446246, -26.63703046396489], + [-51.27141774266576, -26.63706592605674], + [-51.271916620002, -26.63690207337407], + [-51.27209724240186, -26.636823020768833], + [-51.27234334194654, -26.636715310944048], + [-51.272609756234125, -26.6362927441119], + [-51.27341338682343, -26.635896507427667], + [-51.27422701059469, -26.63576847465574], + [-51.27505177302974, -26.635785757816592], + [-51.27613908149524, -26.635793805076457], + [-51.2767890621171, -26.635787438842797], + [-51.27736054303337, -26.636160335803467], + [-51.27735307109758, -26.636286999988666], + [-51.277570643529984, -26.636249137416925], + [-51.27641733157576, -26.638602970609387], + [-51.276347977488015, -26.63888102974441], + [-51.2762349684572, -26.63897515197835], + [-51.27480770626739, -26.641887932731297], + [-51.275043401008595, -26.641896700631296], + [-51.27512011433352, -26.64189955436696], + [-51.27586950564995, -26.64196095477758], + [-51.27681855292916, -26.642057341494347], + [-51.277593238206556, -26.642085405824343], + [-51.27866766881025, -26.64213802011839], + [-51.280670452131794, -26.642175146222], + [-51.282006253331815, -26.64235254659153], + [-51.28330402861332, -26.642585516080338], + [-51.28400157057241, -26.642847589628197], + [-51.28427314425801, -26.64321825661984], + [-51.28421914689213, -26.643653569718694], + [-51.283839878333225, -26.64412001693036], + [-51.28381569703004, -26.644306753976245], + [-51.28375916765917, -26.644743296083522], + [-51.2835175905705, -26.64518839982588], + [-51.28337384388307, -26.645868830184533], + [-51.28340682211254, -26.646360636972883], + [-51.283439594436445, -26.6468747847574], + [-51.283122707181256, -26.647352849752274], + [-51.283095890593735, -26.64794479172634], + [-51.28309133800325, -26.648045278721924], + [-51.28310003380005, -26.648458705609485], + [-51.28313228636003, -26.649028714384634], + [-51.283152451680095, -26.649553949210393], + [-51.283171895330334, -26.65015738602299], + [-51.28291738237933, -26.650647096801027], + [-51.28272742074128, -26.650913839401422], + [-51.2825746673384, -26.651200155869873], + [-51.28242042688771, -26.651711351298612], + [-51.28241994689258, -26.651712943299987], + [-51.282338774454274, -26.651826393942574], + [-51.28291096382255, -26.652958977427577], + [-51.28310170203473, -26.652971383702454], + [-51.28325837371708, -26.652981574161274], + [-51.283431632238276, -26.653172773526823], + [-51.28349115586357, -26.653497203257096], + [-51.28367506528556, -26.65388957754579], + [-51.28374544043246, -26.653964813496785], + [-51.28425844105659, -26.653990096553557], + [-51.2843748692561, -26.6539170561317], + [-51.28475346014522, -26.653528811906348], + [-51.28504321328819, -26.653285152957764], + [-51.28534556643528, -26.653030413968022], + [-51.28579791219863, -26.6527767744618], + [-51.286287342304654, -26.652568093819053], + [-51.286650238605034, -26.652526064578364], + [-51.28683599117758, -26.652717348900726], + [-51.28674583504519, -26.653007159153077], + [-51.2866437915783, -26.65322985045967], + [-51.28669245839716, -26.65337544226307], + [-51.28690423560052, -26.65345519651818], + [-51.28732768505442, -26.653625874026325], + [-51.287726544216746, -26.65375168262826], + [-51.288275805806556, -26.65383390072101], + [-51.288688082595336, -26.653859257296684], + [-51.289013782599966, -26.6537834341907], + [-51.289116739641884, -26.653460201901073], + [-51.28939591283624, -26.653004194031464], + [-51.289621206618804, -26.652972323262208], + [-51.289693548154126, -26.653263319954878], + [-51.289666201137074, -26.653520072997534], + [-51.28991353439123, -26.653812347087506], + [-51.290359190555264, -26.65389380353689], + [-51.29066032026826, -26.653773106524376], + [-51.29101083646996, -26.653719802328347], + [-51.29116012441656, -26.653799094798465], + [-51.291345486178045, -26.654035059113017], + [-51.291732682911324, -26.654071395772558], + [-51.29210595125425, -26.65426403844876], + [-51.2923805435726, -26.654310725493943], + [-51.29258413744784, -26.65440016503869], + [-51.29899481372968, -26.65471557786099], + [-51.29932815677194, -26.65451754352787], + [-51.29940608871023, -26.654194120324664], + [-51.299547124621775, -26.65380412291752], + [-51.300049332635744, -26.653561971236783], + [-51.300448610608626, -26.653643059845226], + [-51.30080978371088, -26.653790902571494], + [-51.30099414594491, -26.65413856186638], + [-51.30107750124064, -26.654597210486692], + [-51.30113823683361, -26.654678220261086], + [-51.30124935769958, -26.654826434905953], + [-51.30345892950827, -26.654935045721682], + [-51.30363818756411, -26.6548055946241], + [-51.30435156506391, -26.654710184185955], + [-51.30480194972221, -26.654668737642858], + [-51.305102190835605, -26.654642967613782], + [-51.30540243094908, -26.654617197584653], + [-51.305929523112056, -26.654386377815523], + [-51.30613152598814, -26.654164391164574], + [-51.306333528864144, -26.653942404513536], + [-51.30636070488161, -26.653920539424394], + [-51.306925327244144, -26.65346626257122], + [-51.30720333095554, -26.653133099680925], + [-51.30782267854356, -26.652679460639156], + [-51.308563408058696, -26.652327268158597], + [-51.309128118327855, -26.652085533262134], + [-51.30972852060131, -26.652045152201712], + [-51.310304615441275, -26.65192638924093], + [-51.310844002749185, -26.651717983424867], + [-51.311381089143886, -26.6517665175645], + [-51.31184267546701, -26.651870368952988], + [-51.31216566674566, -26.652096118794198], + [-51.312538556276806, -26.652333395461028], + [-51.312924742481144, -26.652481390100313], + [-51.3134347257655, -26.652764328285418], + [-51.31406960261004, -26.653059326037603], + [-51.31411100655398, -26.653093509328517], + [-51.318156614648814, -26.654674807277562], + [-51.31818383126106, -26.654675000528997], + [-51.318770913860504, -26.654723853495433], + [-51.31906852022594, -26.654994089414465], + [-51.31942709716875, -26.655171365045177], + [-51.31956323017188, -26.655224570589066], + [-51.31972861707859, -26.65526689408336], + [-51.32019050625974, -26.655337199476726], + [-51.320383219364025, -26.65554504725031], + [-51.32379059124497, -26.656876681325684], + [-51.32512444107607, -26.653670046977307], + [-51.325156405349745, -26.653198307794028], + [-51.32499854946081, -26.652672111445955], + [-51.32481648309111, -26.652056370199695], + [-51.325196503217505, -26.651489279005585], + [-51.32531045997606, -26.651089760694486], + [-51.32545191464868, -26.65064386629806], + [-51.325482050292536, -26.650063124313025], + [-51.32548668907029, -26.649538065404617], + [-51.32580323141322, -26.649082237406624], + [-51.32644180350711, -26.648963841229445], + [-51.32719325487303, -26.648801550672065], + [-51.32795817681712, -26.64852763209118], + [-51.328486682267304, -26.648129158350752], + [-51.32879098241671, -26.647639732401995], + [-51.329168211866495, -26.647385429153612], + [-51.3297071373605, -26.647221637329228], + [-51.33008200594496, -26.647235442033807], + [-51.33056808860526, -26.647395260325187], + [-51.33130581148636, -26.647366919787373], + [-51.33188235080016, -26.64724890435002], + [-51.33189247534121, -26.647243674322286], + [-51.331896528940035, -26.647246002105447], + [-51.33204460884719, -26.647215690271057], + [-51.33244486034476, -26.647184977897233], + [-51.33267910687879, -26.64755528901348], + [-51.33290482881645, -26.647825012730287], + [-51.336546072583104, -26.64991586768497], + [-51.336737956081706, -26.649900914840593], + [-51.33713115514236, -26.64969787121892], + [-51.337594810470186, -26.649567034646687], + [-51.33810651194909, -26.649659970862636], + [-51.33883089320416, -26.649732040349207], + [-51.338871125174, -26.649734666357592], + [-51.339660894181705, -26.649673107493395], + [-51.33995738205737, -26.649561116498678], + [-51.34040812852277, -26.649474871961697], + [-51.34106619612797, -26.649563559661203], + [-51.34216909483432, -26.649477575271252], + [-51.34225837191396, -26.64944301958547], + [-51.34264063466919, -26.649255755305465], + [-51.34296853158118, -26.648922866243062], + [-51.34354505717996, -26.648748106290196], + [-51.343781965437, -26.648816778458656], + [-51.3438670409785, -26.64909666610733], + [-51.343940198184946, -26.64930943981083], + [-51.344070789128224, -26.649329294650666], + [-51.34600419986304, -26.64917851455564], + [-51.346092478810085, -26.649045016439842], + [-51.346518025267194, -26.648980922984745], + [-51.34706759370957, -26.64902940207856], + [-51.34751717074226, -26.649077190517325], + [-51.34794097705116, -26.64921417402653], + [-51.34863908681789, -26.64943124757257], + [-51.34901232220598, -26.649634910242316], + [-51.34954746854381, -26.649906717339206], + [-51.350058197495166, -26.650111324534176], + [-51.35079516275268, -26.65017225097827], + [-51.35146819546444, -26.650400314608028], + [-51.351862387554206, -26.650748239175275], + [-51.3525665526786, -26.65104324968351], + [-51.35309739813759, -26.652049472642023], + [-51.35335208097009, -26.65223663755905], + [-51.35399397205627, -26.652578273120824], + [-51.35445376510306, -26.652622544840806], + [-51.35561753598205, -26.65242279186496], + [-51.35628152370155, -26.652427328571836], + [-51.356510109540366, -26.652873979689613], + [-51.35676884802467, -26.653676910629017], + [-51.35693928429647, -26.65414580144779], + [-51.36067425380271, -26.65613344363115], + [-51.36196114831264, -26.656056397203365], + [-51.36289022837122, -26.656122048981036], + [-51.36361759187261, -26.65648305739329], + [-51.36417896269433, -26.65684293937909], + [-51.36483717030867, -26.657529881961825], + [-51.36539553764129, -26.658245823883252], + [-51.365887027433814, -26.658535496476837], + [-51.375749611304286, -26.65909095382382], + [-51.3758814364946, -26.65899911749514], + [-51.376647834234994, -26.65867785591428], + [-51.37737732572908, -26.65880146036705], + [-51.37807189596903, -26.65913255089663], + [-51.37848466706823, -26.659244868959842], + [-51.38153244195206, -26.659416319805878], + [-51.38862068089992, -26.662657426740907], + [-51.38899990067522, -26.662705171359548], + [-51.39002748476947, -26.6629196857602], + [-51.39075477039734, -26.663310245161863], + [-51.391614620694796, -26.66373134409843], + [-51.39192903260183, -26.664111777930067], + [-51.39220640616652, -26.664447395899273], + [-51.39281505439404, -26.6651741084805], + [-51.39637344695849, -26.668151929111136], + [-51.396690519912404, -26.668304603564984], + [-51.396920419130964, -26.66860963777803], + [-51.40589439197217, -26.67611826377857], + [-51.40558533257745, -26.676340834833272], + [-51.40578750257357, -26.6766315242978], + [-51.405814184118654, -26.677432880033578], + [-51.40554249018858, -26.67817295381562], + [-51.404806141230075, -26.67888033721376], + [-51.40397089548478, -26.679498049973372], + [-51.40277037424435, -26.680113378998332], + [-51.401239237886884, -26.680548503206413], + [-51.39907547382988, -26.681187182561114], + [-51.39879445298982, -26.681230942453556], + [-51.39374757214099, -26.684864718533824], + [-51.39326280910031, -26.685362574792524], + [-51.39305059797547, -26.68693383019247], + [-51.39306849466564, -26.68801047590133], + [-51.39307279679301, -26.688269253831248], + [-51.39310623929519, -26.689054093548343], + [-51.393128445620725, -26.689575234360497], + [-51.39351693043038, -26.690794391755773], + [-51.39354439653419, -26.69195812841274], + [-51.39375824263952, -26.692479230561243], + [-51.393915559924125, -26.692862580934936], + [-51.39395496092055, -26.6935236686575], + [-51.39397102114192, -26.693793128544595], + [-51.393804724935165, -26.694834951898354], + [-51.39382793938398, -26.695849824601712], + [-51.39360155035915, -26.696524808241815], + [-51.393338976604824, -26.69776327188715], + [-51.39335235997655, -26.69893588970784], + [-51.398715162678634, -26.710870855070542], + [-51.40664944392852, -26.71481922110712], + [-51.409294763961206, -26.715559202786018], + [-51.41027992522184, -26.71631559820708], + [-51.4114271132861, -26.717196402189618], + [-51.41151843222564, -26.717241836365424], + [-51.40714137324181, -26.70057917296244], + [-51.4102928345478, -26.699182821159663], + [-51.410644613017034, -26.698931220683473], + [-51.41128775365713, -26.698471233553537], + [-51.41135808172715, -26.698420933320627], + [-51.412631557734066, -26.698146510908874], + [-51.435338947244375, -26.688081683181778], + [-51.439548719948995, -26.667169158398664], + [-51.45577855360829, -26.654043266835515], + [-51.45473332660732, -26.64061090692733], + [-51.464424853787975, -26.6272024483162], + [-51.46880742323213, -26.621172053154854], + [-51.47535713900312, -26.619422108355327], + [-51.48753074159979, -26.623142734883828], + [-51.485471460113985, -26.616496645932173], + [-51.485304810418036, -26.616156677027092], + [-51.48500886763267, -26.615552955187958], + [-51.48492374329825, -26.614728815007787], + [-51.48409083887801, -26.612040389933536], + [-51.48539834501992, -26.61081497935984], + [-51.4796931868054, -26.60940832798236], + [-51.48013217594419, -26.607627253857537], + [-51.48051347339732, -26.60644041780049], + [-51.48150544494465, -26.60539991759483], + [-51.48284668487268, -26.60388587528449], + [-51.48434937233522, -26.602111207473115], + [-51.48633017104571, -26.600410718988638], + [-51.487859117715345, -26.598659964081296], + [-51.489226863646586, -26.597122256685342], + [-51.49024762288133, -26.59574893845527], + [-51.49220589567851, -26.593157323249198], + [-51.49406540021531, -26.59047184190345], + [-51.49424816672849, -26.589597700153927], + [-51.49513544006852, -26.58895533224643], + [-51.49591470911366, -26.58789977457537], + [-51.49693323656055, -26.586811804289948], + [-51.497871784784444, -26.585747137276638], + [-51.49904721339599, -26.585016787367422], + [-51.5008623806859, -26.58407611928842], + [-51.503849093810786, -26.582928178195836], + [-51.506068253837014, -26.582013159710627], + [-51.508279998158834, -26.581407692180857], + [-51.50982343080747, -26.581273965860937], + [-51.51139053328459, -26.58154466536719], + [-51.51244706595578, -26.582107481577086], + [-51.51256651970997, -26.582171114148505], + [-51.51260919197949, -26.582193845995416], + [-51.51382478249717, -26.58327106253694], + [-51.51530628709364, -26.584349768155615], + [-51.517103161212965, -26.58595342756072], + [-51.51778460864685, -26.586618904804965], + [-51.52496148140427, -26.589970835910165], + [-51.526353684982375, -26.590262777490317], + [-51.52837180100121, -26.590702220386916], + [-51.530496033653996, -26.591189800903415], + [-51.53272740833249, -26.5915828350687], + [-51.53408168014902, -26.591899590295235], + [-51.53605860810826, -26.59227485749381], + [-51.53614998825589, -26.592272660894547], + [-51.537732477438155, -26.59203467659022], + [-51.53916724335773, -26.591368424761516], + [-51.54114729388555, -26.590798191017484], + [-51.5425016718757, -26.590456966393035], + [-51.545436923364726, -26.590845155110657], + [-51.54821738342677, -26.591046441407457], + [-51.55011373600657, -26.59126607776983], + [-51.551724748030814, -26.59139113614477], + [-51.55294834388775, -26.591142097951604], + [-51.5541996727581, -26.590637475720975], + [-51.556128484372394, -26.58990405118944], + [-51.55784899734201, -26.589215959370925], + [-51.55964734472578, -26.588551508276364], + [-51.561026916211404, -26.588303230540273], + [-51.562456455197605, -26.588357431559984], + [-51.564091183812174, -26.588831190768897], + [-51.56616795021558, -26.589307303440222], + [-51.56835643527076, -26.589830503711436], + [-51.570017121089705, -26.590327612822623], + [-51.57178362713742, -26.590546277630228], + [-51.57196037077454, -26.59052904801973], + [-51.57230553701859, -26.59049539982752], + [-51.57282744789966, -26.590444521024814], + [-51.57441435061884, -26.59028982254331], + [-51.57449033989277, -26.590282415280832], + [-51.57472338173254, -26.590259696475783], + [-51.575140107023444, -26.590170027047687], + [-51.5757778019988, -26.59003281086237], + [-51.57683222226485, -26.589805924248903], + [-51.577016389891995, -26.58977947561464], + [-51.579954877896704, -26.58935747249446], + [-51.581907509894556, -26.588926046804502], + [-51.58589288381134, -26.58773804322119], + [-51.58797672453665, -26.587121207117267], + [-51.59006029145958, -26.586550816003143], + [-51.59315231985634, -26.585613452466376], + [-51.59505462964432, -26.58494913400421], + [-51.59747517862565, -26.58454322567735], + [-51.59890520130389, -26.584527382704763], + [-51.600153068345904, -26.58453382836056], + [-51.601919661283596, -26.58472891816603], + [-51.60321799852934, -26.58496807059038], + [-51.604722518808366, -26.585487240230403], + [-51.606199411076446, -26.586261971905312], + [-51.60728725417262, -26.58689520796776], + [-51.60829696705346, -26.5875512812965], + [-51.60979870122294, -26.58851205683925], + [-51.61078229409868, -26.58919121825268], + [-51.61179307228348, -26.58968452761531], + [-51.61293546089871, -26.5899227665802], + [-51.61449484149703, -26.590000359130556], + [-51.616212420231946, -26.58973000721259], + [-51.61795762697633, -26.589204037259055], + [-51.620532510597926, -26.588572690440174], + [-51.622953722069255, -26.588050033130088], + [-51.6244624635586, -26.58791803790513], + [-51.62617770888259, -26.588019531904305], + [-51.62820359436135, -26.58833176677008], + [-51.629892795579266, -26.588433083859016], + [-51.63147942738104, -26.588301400361022], + [-51.63296477187004, -26.58772749832208], + [-51.6340360163853, -26.586849333799552], + [-51.635630997308134, -26.585346026601993], + [-51.63706932119705, -26.58398090091748], + [-51.638928296277506, -26.581804609962326], + [-51.64109966521607, -26.579536863940888], + [-51.64287991637783, -26.57745319023864], + [-51.64457751351121, -26.576136260639586], + [-51.64653321898605, -26.575122756067415], + [-51.6480199203711, -26.57429294608565], + [-51.649662602383906, -26.573463845559882], + [-51.650523502648625, -26.572956472681597], + [-51.651595305658844, -26.571961855186125], + [-51.653138070019054, -26.57061051113543], + [-51.6544972010839, -26.56936157570025], + [-51.65588171365129, -26.56820575315401], + [-51.657344975934095, -26.566910812367116], + [-51.65893650093475, -26.56589543806509], + [-51.66042156230925, -26.565298004032478], + [-51.6626653184361, -26.564634209370347], + [-51.66459127338543, -26.564224810754105], + [-51.66669667485968, -26.564234698409248], + [-51.66841133736196, -26.564382211392864], + [-51.66973502509209, -26.564713859694724], + [-51.67113640833521, -26.56509234671382], + [-51.67248459526619, -26.565679797866835], + [-51.67416772175029, -26.566780225725], + [-51.67597363653077, -26.568067150108195], + [-51.67669857560349, -26.56857031745498], + [-51.67742351367631, -26.56907348480163], + [-51.67908026345678, -26.570266723726487], + [-51.68058079580969, -26.57150571818456], + [-51.685966688284424, -26.57542455341648], + [-51.68927869435148, -26.578159625175317], + [-51.6912977699991, -26.579679832747424], + [-51.693172701163995, -26.580990119873615], + [-51.6946507541225, -26.5816942015355], + [-51.696053636569296, -26.581886450586374], + [-51.69787373968976, -26.581848053236175], + [-51.69896652238219, -26.58169016845683], + [-51.70063030007383, -26.581697542640818], + [-51.70203408471947, -26.581703750733368], + [-51.70336127195176, -26.581453882157085], + [-51.704324249920084, -26.581248895842386], + [-51.70500938693579, -26.580849371547092], + [-51.7054717376211, -26.580579761998166], + [-51.70656746791271, -26.5798638983466], + [-51.707141971251325, -26.57917879150916], + [-51.70808284111601, -26.57827621044544], + [-51.708919053062175, -26.57748942171871], + [-51.71009330526631, -26.57668086281584], + [-51.711579076023334, -26.57594340480632], + [-51.71368739728595, -26.575441122561685], + [-51.71561232391557, -26.5751937438941], + [-51.717172436782064, -26.575107497461136], + [-51.71888699654766, -26.575086480471516], + [-51.72061426416727, -26.575020041448525], + [-51.723117276352134, -26.574598302801263], + [-51.72592819172713, -26.573936118136984], + [-51.72722970744632, -26.57359293767116], + [-51.73003990531809, -26.57304689897903], + [-51.732016836048906, -26.57277626013177], + [-51.73357629240991, -26.57280605966873], + [-51.73503166545311, -26.572858649563738], + [-51.73651158480092, -26.57319030030203], + [-51.73812174547021, -26.573475979595788], + [-51.74004157529267, -26.57420463769328], + [-51.741650136363, -26.5748157479091], + [-51.743232880229215, -26.575403491220527], + [-51.74431114834926, -26.575822337340153], + [-51.74603864181504, -26.576415009142643], + [-51.747484837919984, -26.57695287394322], + [-51.748289071767175, -26.5771603742324], + [-51.74842303037731, -26.577178215172832], + [-51.76522658710653, -26.58296377533078], + [-51.76859126334761, -26.583911237232694], + [-51.768701297929354, -26.58394410883857], + [-51.771561321051166, -26.584798517594333], + [-51.77288580675472, -26.585125130867354], + [-51.774182414825425, -26.585562152209306], + [-51.774382936918975, -26.585629737488983], + [-51.775893188511134, -26.58599030610113], + [-51.778470133280464, -26.586793522858233], + [-51.779373831816095, -26.58700760963402], + [-51.780500126676465, -26.58732229960304], + [-51.781849453478756, -26.587648925786407], + [-51.783037354922236, -26.58804141751863], + [-51.784423093591215, -26.588534413530496], + [-51.78639075315982, -26.58892987752584], + [-51.78769119418881, -26.589123258913578], + [-51.78988521212558, -26.58916492220503], + [-51.79111246185096, -26.589125237909204], + [-51.79158185280304, -26.589080025776425], + [-51.80777444802491, -26.585606011843886], + [-51.810988972121756, -26.58396855002697], + [-51.81098952623195, -26.583847573514344], + [-51.81101981586775, -26.583735834437192], + [-51.811178617958205, -26.583150026032737], + [-51.81128050076845, -26.582551910831366], + [-51.811331998146834, -26.582130942760713], + [-51.81086259182519, -26.581796734496084], + [-51.81067908483021, -26.581275160276704], + [-51.81101592106207, -26.580788740221294], + [-51.81175048177917, -26.58004886383589], + [-51.81273404738627, -26.57905497964264], + [-51.81321952926084, -26.578580175062385], + [-51.813630703789784, -26.578094011746032], + [-51.814040262851236, -26.57796250234258], + [-51.81487021050839, -26.57804309640757], + [-51.81587336014688, -26.578190808846664], + [-51.816528126093694, -26.57826861252725], + [-51.818175320645146, -26.578496227683488], + [-51.81896784039275, -26.578632080864853], + [-51.81909462302955, -26.578662406411706], + [-51.81967346793689, -26.578800865342576], + [-51.82052791398006, -26.57894801530321], + [-51.82104781363696, -26.579082877441877], + [-51.82162455367594, -26.579483942310944], + [-51.82252623516931, -26.58015215296843], + [-51.82300687369024, -26.5807523561225], + [-51.82329067002843, -26.581030447052488], + [-51.82357446736653, -26.581308537982526], + [-51.82378869037149, -26.5815737061603], + [-51.82420304824937, -26.582086601569856], + [-51.82443926457845, -26.582406222655948], + [-51.82457262189346, -26.582586665140013], + [-51.82461463014997, -26.582607208987064], + [-51.82486941770614, -26.582731807059222], + [-51.82516621451903, -26.58287694997838], + [-51.825859406109856, -26.5830678404928], + [-51.826646121638525, -26.5833888756443], + [-51.82739900868234, -26.584089780814487], + [-51.82815140820572, -26.584901505956847], + [-51.829003949379214, -26.585678794894346], + [-51.83686757586387, -26.59065209441851], + [-51.83690076104716, -26.590651328686764], + [-51.838766641960916, -26.59076184309725], + [-51.83984333085609, -26.591131320213584], + [-51.842897734055846, -26.59274889804374], + [-51.84459196868527, -26.593641350848177], + [-51.84635611013794, -26.59444432846581], + [-51.84919490005697, -26.59379709137562], + [-51.8497913737484, -26.593492837598042], + [-51.850822252651575, -26.59298649810617], + [-51.85279684254235, -26.592073228402437], + [-51.853479009786426, -26.59196467903119], + [-51.85439734029912, -26.591701740870306], + [-51.85508157116567, -26.591504547515363], + [-51.85567706296671, -26.591373552454996], + [-51.856185142093395, -26.591397428660894], + [-51.85679140562482, -26.59165438345907], + [-51.857186133178836, -26.5921101219484], + [-51.857740464961985, -26.5929321347782], + [-51.85829484169726, -26.593743052610698], + [-51.85873845517026, -26.594365180883365], + [-51.859305321859495, -26.59515395967747], + [-51.85977363752797, -26.59579832885686], + [-51.860192747614185, -26.596353869233234], + [-51.86065262128114, -26.596768140340522], + [-51.86069943610275, -26.596804546388437], + [-51.86160191494797, -26.59720936204415], + [-51.862517906958885, -26.597522740735773], + [-51.86371819992576, -26.59802546237553], + [-51.86384716922156, -26.59808219490692], + [-51.86996853529273, -26.599407479220737], + [-51.87043034996631, -26.599477132351705], + [-51.87176822713101, -26.599669875588074], + [-51.87283383577344, -26.599761980810268], + [-51.87393709352506, -26.5998447389021], + [-51.87612507811254, -26.598898646449737], + [-51.877354062041114, -26.59844813124188], + [-51.877778598847, -26.598293403272525], + [-51.87871503751827, -26.597726940203028], + [-51.87872045731115, -26.597720974624377], + [-51.878958040990945, -26.597200819927686], + [-51.87876255412113, -26.596490877807646], + [-51.87860350021758, -26.595969465508464], + [-51.878433221949706, -26.5951450303305], + [-51.87843553044916, -26.59456870447768], + [-51.87858666144637, -26.59397068810646], + [-51.87903574010201, -26.593251707718505], + [-51.87969537574297, -26.592566649579734], + [-51.88047955220537, -26.591726828044074], + [-51.88122843365183, -26.590915640625106], + [-51.881863299193384, -26.590230457573735], + [-51.88226216732389, -26.589666459320963], + [-51.88243806341992, -26.589068515862827], + [-51.882652583077565, -26.58810495136734], + [-51.88316733473388, -26.585718393198643], + [-51.883477321828, -26.585456902177427], + [-51.88366477588498, -26.585298773559895], + [-51.8840619538422, -26.58515593019958], + [-51.884459131799545, -26.58501308683926], + [-51.88534005125228, -26.584772006801725], + [-51.886047139349174, -26.584607966355524], + [-51.88636923877893, -26.584642221211745], + [-51.88711240822598, -26.58475537256344], + [-51.88775647222944, -26.584857128267185], + [-51.88813367217718, -26.584906517041766], + [-51.89292717656695, -26.58317985572365], + [-51.89324926520804, -26.582823808467538], + [-51.89399452929751, -26.58239386095841], + [-51.89474024985767, -26.58184200048087], + [-51.89574607759954, -26.58132418707753], + [-51.89643649832493, -26.580860797770782], + [-51.89720642165677, -26.58046416116568], + [-51.897900745086744, -26.580388704739715], + [-51.89858245670775, -26.58036862234313], + [-51.89904091663179, -26.58039218772126], + [-51.899660819813114, -26.580327578554435], + [-51.90020711683216, -26.580063246701243], + [-51.90077831880555, -26.579765738769396], + [-51.90310542821821, -26.580493180370436], + [-51.90432823606459, -26.58072024399897], + [-51.90444879075397, -26.5807544151568], + [-51.92420573983288, -26.584115489474716], + [-51.92426784604505, -26.584116262759103], + [-51.924336285236414, -26.584137688178252], + [-51.928334856176036, -26.584817566059808], + [-51.94012958076275, -26.57558934612058], + [-51.94077727656776, -26.574489466160394], + [-51.94138196948949, -26.57392169818343], + [-51.943226025388675, -26.572222027145962], + [-51.94381361437439, -26.571684568221137], + [-51.94471456160601, -26.571147972190108], + [-51.94551366135948, -26.570823668459678], + [-51.94665279483558, -26.570356030568778], + [-51.94690606906943, -26.570286309278433], + [-51.94789812408294, -26.569509895437836], + [-51.94940056855802, -26.570148067876794], + [-51.94981128066369, -26.570197526464213], + [-51.95071924673661, -26.570306261228858], + [-51.952025731221475, -26.57060586553346], + [-51.95283984458366, -26.570866185586855], + [-51.95353492270454, -26.57117932904583], + [-51.95422105238612, -26.571629107498186], + [-51.95489189336861, -26.5723909119175], + [-51.95501769232508, -26.57253376942833], + [-51.959874164548296, -26.574596145514384], + [-51.97162043013963, -26.56793777151272], + [-51.97309343427284, -26.568219836215814], + [-51.97307903611705, -26.568198490850914], + [-51.97298387639875, -26.567891195273322], + [-51.97310750983596, -26.56787922583982], + [-51.97331319008166, -26.567978003085543], + [-51.97356041700971, -26.56796634521534], + [-51.97380768088424, -26.567942405348404], + [-51.97408229302811, -26.56795538037449], + [-51.97438425244154, -26.568005269293515], + [-51.9748375370804, -26.567969564702018], + [-51.97582568180801, -26.56815627715793], + [-51.976456360706116, -26.568477189839324], + [-51.97726574904564, -26.568737134906073], + [-51.97836323990434, -26.569083765930298], + [-51.97969429352912, -26.56939412213884], + [-51.97982118827637, -26.56950791719676], + [-51.98122489956581, -26.56977662466506], + [-51.98513039812581, -26.565945719405534], + [-51.98513698476343, -26.56565973295346], + [-51.98515270898308, -26.56500881808143], + [-51.98577381276581, -26.565083213865044], + [-51.985990062734714, -26.56510911609338], + [-51.98630499827161, -26.565404650896845], + [-51.98635898982686, -26.565711833619414], + [-51.98645035938872, -26.56589142672166], + [-52.003302714902865, -26.566272960338132], + [-52.00391811443754, -26.565974572454202], + [-52.00434207525656, -26.565778356010252], + [-52.00483632137709, -26.565816336250997], + [-52.00541359686041, -26.56563342726082], + [-52.006156318979535, -26.565217536751625], + [-52.006912301849006, -26.56496134415012], + [-52.00763983010868, -26.565048980551303], + [-52.00848971673238, -26.56556676539716], + [-52.00883136361009, -26.56614480402377], + [-52.00885897798796, -26.56639831492868], + [-52.009996551538684, -26.566423952885675], + [-52.010084677464846, -26.56635050953071], + [-52.01012166047631, -26.566319689408658], + [-52.010675901417954, -26.5658051055941], + [-52.011694797214325, -26.5648371192647], + [-52.012173420220954, -26.564483931755994], + [-52.01536689217571, -26.557628764189815], + [-52.0166108111524, -26.557091412476918], + [-52.01662600976006, -26.556614504162084], + [-52.016572383507715, -26.556147655485127], + [-52.01632690690514, -26.555545278525575], + [-52.01705431626921, -26.55565743591999], + [-52.01757658653239, -26.55547436312442], + [-52.01840099288483, -26.55526739526654], + [-52.019005507688235, -26.555133631165866], + [-52.019472784840836, -26.55497499755782], + [-52.02002325303431, -26.554521774739573], + [-52.02029850548579, -26.554187750251224], + [-52.02121894973327, -26.548666237694956], + [-52.03006591723566, -26.546681150341474], + [-52.031627553757325, -26.54321380346814], + [-52.031808334057175, -26.54312388426152], + [-52.031791384364546, -26.54305130438375], + [-52.03175515354355, -26.542896160556467], + [-52.03171078853817, -26.542706181768022], + [-52.032023370921664, -26.541825223914955], + [-52.0331109773338, -26.54116631425553], + [-52.03479813794875, -26.54024144055075], + [-52.03675911255741, -26.539983362685003], + [-52.03815643726614, -26.539799464792505], + [-52.03992642790358, -26.539085608909364], + [-52.04310307813063, -26.537505211292213], + [-52.043781494914185, -26.536244662907073], + [-52.04418279023749, -26.535499029701743], + [-52.044666642304406, -26.535535409978515], + [-52.04674763476751, -26.535691889226012], + [-52.04747744211547, -26.53532876116437], + [-52.05157751806338, -26.53171891159162], + [-52.052408461191646, -26.53081541693641], + [-52.05298492379959, -26.53047970461877], + [-52.055194744905066, -26.528533898361434], + [-52.05612389109129, -26.528881212228953], + [-52.0565691739938, -26.528849559774798], + [-52.05761881146025, -26.528696491102675], + [-52.05828430008718, -26.528926342679508], + [-52.058930709137755, -26.52949900522424], + [-52.059329612769595, -26.530079444199053], + [-52.060262531564746, -26.530428131332478], + [-52.065242517846855, -26.52314611545324], + [-52.06627013440649, -26.523424918784674], + [-52.06683968941859, -26.52335321200242], + [-52.06774761200849, -26.5238257587124], + [-52.078471076017976, -26.52673448834022], + [-52.08164111901883, -26.52346681352263], + [-52.082482879668795, -26.521600307780698], + [-52.082630312898175, -26.520683358842298], + [-52.08274666819047, -26.519959702642044], + [-52.08278245612316, -26.51991213952913], + [-52.08316455140528, -26.51940432032401], + [-52.08393481227502, -26.51838066935441], + [-52.08803395185556, -26.509289880291043], + [-52.08858203654017, -26.509663289420835], + [-52.0888665316121, -26.50952251001909], + [-52.08930236122323, -26.509727734414568], + [-52.08981968407088, -26.510506479482988], + [-52.09387666860065, -26.513270274684118], + [-52.09494821512669, -26.510564639119103], + [-52.09493051240053, -26.5104250492647], + [-52.09518075635337, -26.509960770514542], + [-52.09519267511417, -26.509947364011783], + [-52.09752538997417, -26.504056791241876], + [-52.09762429396408, -26.503560659739932], + [-52.09783278215897, -26.50318922811057], + [-52.09796255853539, -26.502952784970738], + [-52.098055788551015, -26.502717343210286], + [-52.097854757003105, -26.500494578487327], + [-52.09770673296877, -26.500286186412723], + [-52.09758993679092, -26.500121758875004], + [-52.09711369482792, -26.49941462877088], + [-52.09684484633154, -26.49885654588784], + [-52.096721584002026, -26.49820576551624], + [-52.096619079522185, -26.497501915086726], + [-52.09647502219214, -26.496869652783342], + [-52.09655931900473, -26.4962935376543], + [-52.09689269412265, -26.49579219162096], + [-52.097288799593755, -26.495086481425506], + [-52.097309413079415, -26.494464294407845], + [-52.09730363784212, -26.4944004290729], + [-52.09704218798998, -26.49379736567889], + [-52.09679408965745, -26.493257878716747], + [-52.097113568146455, -26.492298499246225], + [-52.09670644530124, -26.487795921540858], + [-52.09875537833128, -26.484340483816045], + [-52.09884846061152, -26.484078784144273], + [-52.09897604823993, -26.483968319810547], + [-52.10037106228672, -26.481615540552838], + [-52.11112317142309, -26.4765555373782], + [-52.11211949196342, -26.475444796687416], + [-52.11353170834961, -26.475409789694776], + [-52.11463204132244, -26.475560178751763], + [-52.1150882712242, -26.475814723059838], + [-52.11603533773109, -26.475996056650477], + [-52.11689587979647, -26.476382839486536], + [-52.117670247635765, -26.47679518762018], + [-52.119075739077694, -26.477465468440425], + [-52.12021853659047, -26.477930100252344], + [-52.120731102546365, -26.47793084802859], + [-52.13069382304649, -26.475697079609773], + [-52.13403121814665, -26.470449814836286], + [-52.13459858087967, -26.47063725634287], + [-52.13509735703516, -26.469952762888955], + [-52.135843917739905, -26.46990239225716], + [-52.137049825246834, -26.46985264799648], + [-52.13756601473317, -26.470187438066077], + [-52.13831160879385, -26.47067673027602], + [-52.13928687775572, -26.4711663286711], + [-52.14043426673018, -26.47173324843249], + [-52.141265944241276, -26.472248341328722], + [-52.14232804174541, -26.4723268565384], + [-52.142844232231994, -26.472661628607238], + [-52.14301583059152, -26.473047340882967], + [-52.14442286232434, -26.472869313945747], + [-52.14557107416584, -26.47294792784934], + [-52.14669049111907, -26.47307789483933], + [-52.14818358030095, -26.472925659588345], + [-52.14944741245878, -26.47251612922783], + [-52.15079781171871, -26.471824021645002], + [-52.151458878174545, -26.471336605446186], + [-52.152493793297054, -26.470438495044718], + [-52.15341390685668, -26.469514536058238], + [-52.154075114862785, -26.468924320890032], + [-52.155310878996694, -26.468077846760497], + [-52.15651745236507, -26.467539702641552], + [-52.158125988195955, -26.46697634510385], + [-52.159242353398554, -26.466709716222997], + [-52.15930347657401, -26.466695118010467], + [-52.16056683407531, -26.466593873557947], + [-52.1619740383526, -26.46631289864892], + [-52.163381079191296, -26.466160401701593], + [-52.16390634799621, -26.466075566862568], + [-52.18564730303536, -26.44536797402526], + [-52.190513313752874, -26.446154190880847], + [-52.19107213813424, -26.44672003019334], + [-52.19151995570026, -26.447084878604755], + [-52.19208912924074, -26.447614317421927], + [-52.192547124319496, -26.44813741663579], + [-52.19443124616771, -26.45007650135182], + [-52.19514617501444, -26.450774058599205], + [-52.1957638423992, -26.4514528501977], + [-52.19627749658738, -26.451951104220733], + [-52.19699109967915, -26.452705691454863], + [-52.19703282622043, -26.45275504694465], + [-52.20217094732489, -26.457956511606564], + [-52.20249706798341, -26.45813842522706], + [-52.20311391287922, -26.458249469000755], + [-52.203298254097874, -26.4590976258366], + [-52.203582681594696, -26.45938553192712], + [-52.20416115617043, -26.459664490844546], + [-52.20510975993588, -26.460134612328535], + [-52.2066144368206, -26.46082088576929], + [-52.208020563690624, -26.461363448603866], + [-52.20908137048429, -26.461739992716875], + [-52.20938592881685, -26.461868150191975], + [-52.21855827947122, -26.465234066025292], + [-52.21885940411072, -26.46526166185973], + [-52.21962451800397, -26.465240190144762], + [-52.220475987331504, -26.465240878115658], + [-52.221142375838724, -26.46521931875177], + [-52.222080203600456, -26.465242160408444], + [-52.22251449858823, -26.465308782842836], + [-52.222608305842904, -26.465669012289677], + [-52.23213354749183, -26.464629869329297], + [-52.24047470995385, -26.46371973711237], + [-52.241336053656156, -26.463398413452317], + [-52.242558184856755, -26.462813725283418], + [-52.24267276722046, -26.462751338066475], + [-52.248939468715264, -26.455057657795624], + [-52.254561585837095, -26.45549908879569], + [-52.26162876837489, -26.454923778134642], + [-52.26167767157237, -26.454882962675168], + [-52.262109630722705, -26.45476167217454], + [-52.26240577399795, -26.454860503647307], + [-52.263373036797525, -26.454781729820912], + [-52.26822096249175, -26.458451203705668], + [-52.26870874106316, -26.458775030401757], + [-52.26890685908015, -26.458970337007575], + [-52.271649347799396, -26.461045957719488], + [-52.27242960912067, -26.46140595131224], + [-52.2731575628806, -26.461616159651268], + [-52.27416933474672, -26.46182648397835], + [-52.27507014930622, -26.461837906763474], + [-52.275822867385486, -26.461871361069537], + [-52.27663731641396, -26.461838555176268], + [-52.277451809053915, -26.46171736931074], + [-52.27816763482364, -26.461485669831788], + [-52.279006871928516, -26.461220877923264], + [-52.28009297731503, -26.46080152118322], + [-52.281092698413346, -26.46039317074776], + [-52.28217880579933, -26.459973801007713], + [-52.28342537451869, -26.4594881967163], + [-52.284400413762725, -26.45913504635113], + [-52.28491960268734, -26.458885551578668], + [-52.28501154185113, -26.458841370264782], + [-52.28603161102454, -26.458432388756666], + [-52.287049327949745, -26.457969082274083], + [-52.28797561559059, -26.457522114112408], + [-52.28867804487382, -26.457176011036548], + [-52.305027064605916, -26.440701230843025], + [-52.305892964127864, -26.440698928379028], + [-52.306611623821844, -26.44063094701442], + [-52.30732652810845, -26.440695104936044], + [-52.30934988342658, -26.44068968399171], + [-52.309589828981615, -26.440536289420695], + [-52.31073337444342, -26.439857935557807], + [-52.31149127881915, -26.439500928968027], + [-52.312249145927346, -26.439310582325042], + [-52.31304686297542, -26.439298805482796], + [-52.31432323056966, -26.439215666955423], + [-52.31522732308317, -26.43921579572953], + [-52.31605164054835, -26.439275431769094], + [-52.31723490087424, -26.439668442421056], + [-52.31820547190238, -26.439954277866015], + [-52.31980852164489, -26.44052590596191], + [-52.32034453998121, -26.440659726433754], + [-52.32139487959429, -26.440656820264156], + [-52.32220167220506, -26.440585679401398], + [-52.322760096693834, -26.440430972457847], + [-52.32357114005924, -26.440252474620245], + [-52.324315709166115, -26.4400739670198], + [-52.3249406131747, -26.439978776819668], + [-52.325279714164054, -26.440586155414127], + [-52.325286242240864, -26.440597848387164], + [-52.3255654066823, -26.44113358221843], + [-52.32559197404259, -26.44141929803184], + [-52.3255768641385, -26.441622001663923], + [-52.32703921989449, -26.44230342499716], + [-52.32863123817378, -26.442629607792227], + [-52.328825888304465, -26.442487514142883], + [-52.32924250145867, -26.4421548487624], + [-52.32947896124585, -26.441897785000734], + [-52.32962534386059, -26.441681040547824], + [-52.32994624415312, -26.44146430347177], + [-52.330221053314474, -26.44125844055679], + [-52.330844611143014, -26.441123656373772], + [-52.3310202078224, -26.441085583602852], + [-52.33194942082271, -26.44025363044665], + [-52.33647579544404, -26.442885237376345], + [-52.33945319896092, -26.438202530028533], + [-52.33953967771053, -26.437898949362605], + [-52.339917368047665, -26.437472470414132], + [-52.341929913260564, -26.434306957011593], + [-52.34405229991797, -26.435635300467634], + [-52.34539790007367, -26.435542418199812], + [-52.34542173915895, -26.43554077211519], + [-52.34698000724601, -26.436685687178116], + [-52.3469836302944, -26.436693500162676], + [-52.34749066614994, -26.437787144347734], + [-52.3531149043788, -26.441306619648884], + [-52.3596428754227, -26.437340248813413], + [-52.361114872228356, -26.43558433102578], + [-52.362078003683166, -26.434839680825473], + [-52.36244865685817, -26.434553108593875], + [-52.36620425963196, -26.433239189596872], + [-52.366379048939, -26.433246788335428], + [-52.36733536423164, -26.432665603163723], + [-52.368036166226155, -26.433318818667527], + [-52.368523068065315, -26.433339979274198], + [-52.36891800467201, -26.433357145856572], + [-52.36940730643172, -26.433779981969103], + [-52.373638411946175, -26.437436345644983], + [-52.37553607953091, -26.43907623832143], + [-52.3763721965218, -26.440674999905458], + [-52.39799267832172, -26.428841723098078], + [-52.399993225846586, -26.425152796172377], + [-52.40052558920094, -26.423624480989346], + [-52.40081637460039, -26.42363487084496], + [-52.40108711695954, -26.423135599790488], + [-52.40128600522582, -26.423651649642437], + [-52.40175809016486, -26.42366851456391], + [-52.40229544328783, -26.426270729739997], + [-52.40303650812206, -26.42819340486371], + [-52.40454892138476, -26.42904689058948], + [-52.41121924377321, -26.431375265143853], + [-52.413980050853475, -26.433051262700403], + [-52.41666101173873, -26.435658930231615], + [-52.41816148354857, -26.436727418959542], + [-52.419185785044874, -26.437305257964727], + [-52.42804258979281, -26.438911453430645], + [-52.429640215492746, -26.438950523623216], + [-52.4307026469853, -26.43939374199168], + [-52.43543986427047, -26.440252501618513], + [-52.44255366315439, -26.438096841690463], + [-52.44948991859555, -26.44094610164149], + [-52.459122699064096, -26.44108545416396], + [-52.46563121988205, -26.437209416206294], + [-52.46967224068101, -26.431441585909667], + [-52.469985033974865, -26.427542183733784], + [-52.47008916610171, -26.427253841457457], + [-52.470406672402724, -26.426818635465047], + [-52.4706363242662, -26.42658730471898], + [-52.47092914121911, -26.426321068758014], + [-52.4711197237439, -26.42604726216656], + [-52.4712550521789, -26.425801354764005], + [-52.471562656843446, -26.425683153699875], + [-52.47201093470853, -26.425713635080538], + [-52.472396452205174, -26.425715609696045], + [-52.472624211369826, -26.425780187856663], + [-52.47301000268063, -26.425739887485413], + [-52.47330151753186, -26.425677966459972], + [-52.47346755161552, -26.425551989906605], + [-52.47363448607952, -26.425285100397783], + [-52.47387987500379, -26.425053839595197], + [-52.4741858868104, -26.424743065601994], + [-52.47435964801751, -26.424638267013776], + [-52.47461725634372, -26.424382562494916], + [-52.476699421876454, -26.4214099681816], + [-52.495724552744846, -26.42011430000264], + [-52.49836063678704, -26.41821666661947], + [-52.499633184048356, -26.416401451057396], + [-52.50249675445811, -26.415238988417965], + [-52.50461469558703, -26.41371413485844], + [-52.50508141569309, -26.41315896959268], + [-52.50947831623436, -26.41021221068916], + [-52.5121999123298, -26.408252435127643], + [-52.51287887318434, -26.407387627553852], + [-52.51316342228827, -26.407163541608373], + [-52.51347884094819, -26.40703824451791], + [-52.5135516941042, -26.407010115265855], + [-52.51385731775866, -26.406892113208055], + [-52.514147966078774, -26.406711577225682], + [-52.51439318903028, -26.40648729242141], + [-52.514622676920965, -26.406262931673805], + [-52.514851114830044, -26.40604366292823], + [-52.51490752380755, -26.40598951874416], + [-52.51520920394864, -26.405532996816806], + [-52.515377024665135, -26.405096968363477], + [-52.515639322685004, -26.404647304575406], + [-52.51581331167253, -26.40449313700319], + [-52.51616001757792, -26.40439616779063], + [-52.51658567857077, -26.404250258311237], + [-52.516822298018845, -26.404145711496877], + [-52.517199661635374, -26.404182757128034], + [-52.51767949649251, -26.404185065402952], + [-52.517802527784774, -26.404144109974872], + [-52.51799258961126, -26.40408084170098], + [-52.5181152658883, -26.403992490796945], + [-52.5182477592887, -26.403870737468882], + [-52.51838004500796, -26.40369226805481], + [-52.518440244880246, -26.403611049866438], + [-52.518449761700964, -26.40333630392669], + [-52.518451452460326, -26.403054475017413], + [-52.51846113615705, -26.40275154808675], + [-52.518525377439026, -26.402533433930948], + [-52.51884958944647, -26.402253154862237], + [-52.519220826760574, -26.402001285614695], + [-52.519678081781656, -26.401834379028937], + [-52.520016708811305, -26.40177259083334], + [-52.520425497580256, -26.401816824349016], + [-52.52072837391458, -26.40185496224747], + [-52.52100717014276, -26.40189006823344], + [-52.52103797940684, -26.40188749635435], + [-52.52249811682967, -26.400835827508413], + [-52.522587422018375, -26.400713935958933], + [-52.522671846971974, -26.400630053684466], + [-52.52284854887483, -26.400454488109894], + [-52.52320372934472, -26.4002518559031], + [-52.5233909521031, -26.400192743574443], + [-52.52375521588298, -26.39993037113713], + [-52.52395394343543, -26.399982906599938], + [-52.52397626308599, -26.399973706222504], + [-52.52437846986228, -26.399799474836954], + [-52.524717541550224, -26.399660170666305], + [-52.525024647488806, -26.399605263581407], + [-52.52537024619975, -26.39969145630963], + [-52.525668275007476, -26.3998408341869], + [-52.525981201496464, -26.400131198962136], + [-52.52622375340143, -26.40035077101459], + [-52.526521285581474, -26.400584694864516], + [-52.526795765266876, -26.400726912828812], + [-52.52719643919096, -26.40081336135882], + [-52.527479164627664, -26.400892204315294], + [-52.52787545537875, -26.400943403873168], + [-52.5282532826531, -26.400902921528974], + [-52.52864721370892, -26.40079910114864], + [-52.52900172767455, -26.40070918490524], + [-52.529284781862955, -26.400731662879966], + [-52.52953620405363, -26.400782173958707], + [-52.52986636948657, -26.4008189647591], + [-52.53015674810863, -26.400933069675833], + [-52.53054172594071, -26.401012392264448], + [-52.53081670325371, -26.40107005625594], + [-52.53114616221401, -26.401226617017404], + [-52.531444323928675, -26.40135484690114], + [-52.53173478548867, -26.40145485682238], + [-52.53212746347516, -26.401562392373364], + [-52.53239420303708, -26.401683425372482], + [-52.532676262970234, -26.401874988292224], + [-52.53288761256746, -26.40205212547112], + [-52.53319015468717, -26.402268044308723], + [-52.5334998346727, -26.40250606432825], + [-52.53802050616272, -26.40370069803514], + [-52.53806696870774, -26.40368246128224], + [-52.53837403367649, -26.40363457419447], + [-52.53875918738418, -26.403685689791597], + [-52.53901840066722, -26.40375031083683], + [-52.53929326607326, -26.403829093820896], + [-52.539512863421585, -26.403942848991765], + [-52.53962254018894, -26.404020863570224], + [-52.53966072621046, -26.404218322364557], + [-52.53966393827028, -26.404266838784963], + [-52.555989429499135, -26.411900355254158], + [-52.55610262085479, -26.411759939580083], + [-52.55627736821809, -26.411464806053687], + [-52.556255085100965, -26.41123219221493], + [-52.55633479059677, -26.41104936299163], + [-52.55658764169915, -26.410853228149687], + [-52.55687231664339, -26.410593825215244], + [-52.55703950872748, -26.410242294735763], + [-52.55711261819812, -26.40983397361487], + [-52.55713856845534, -26.409418392666204], + [-52.55715593424169, -26.409129595704307], + [-52.55720504393203, -26.408791622645257], + [-52.55734100370816, -26.40839767729297], + [-52.55745204941872, -26.408236127949568], + [-52.557563095129375, -26.408074578606154], + [-52.557965158995614, -26.407921393212153], + [-52.55831930723898, -26.407894813946424], + [-52.55868096379248, -26.407931678631645], + [-52.55868302780088, -26.407931787624182], + [-52.55897194297919, -26.40794708557868], + [-52.55938083968391, -26.407977116096212], + [-52.5594156060071, -26.407979706770007], + [-52.55946334623881, -26.4079222359273], + [-52.559616539950646, -26.407994679547993], + [-52.559884095784376, -26.40801461627137], + [-52.560144854073044, -26.40807920530993], + [-52.560522009873715, -26.408158411924436], + [-52.56081223865105, -26.40830768382755], + [-52.5614009189562, -26.408542848625913], + [-52.56173119232592, -26.40856547342885], + [-52.56230540457541, -26.408575103357965], + [-52.5627852584291, -26.40857726062944], + [-52.56317051907356, -26.408614221229374], + [-52.56373623679005, -26.408736538149597], + [-52.56425416679053, -26.40896432520506], + [-52.56474099038972, -26.409128560394624], + [-52.56521192605249, -26.40932090563147], + [-52.56558850631954, -26.409505781210754], + [-52.56614610622337, -26.40967737614273], + [-52.566436277062984, -26.40984072804063], + [-52.56684782362127, -26.409835518560328], + [-52.56726460135607, -26.40986556304881], + [-52.56763421587746, -26.409888348709654], + [-52.568129773822655, -26.409897603921685], + [-52.568642081019995, -26.40972374313723], + [-52.56894245702372, -26.409464389146105], + [-52.56914029285009, -26.409253897507202], + [-52.56954312609319, -26.408959769159196], + [-52.57005554119697, -26.40876476738185], + [-52.570543926551636, -26.40864715966386], + [-52.57096875616085, -26.408641999135504], + [-52.5713384426197, -26.408650684800897], + [-52.57169243598659, -26.408652253525204], + [-52.57217252965286, -26.40861210581001], + [-52.57267599159685, -26.40861433299569], + [-52.57321074344287, -26.408567382085863], + [-52.573604069961476, -26.408569121668346], + [-52.57394201951636, -26.408626982430686], + [-52.57442102305348, -26.40878410465003], + [-52.5748215931002, -26.4088986051669], + [-52.57483267810616, -26.408902044442094], + [-52.57899200764708, -26.40821229363329], + [-52.58005456582914, -26.408725671196027], + [-52.580683085269655, -26.408821136075534], + [-52.58114792185688, -26.409253915500855], + [-52.58344576304733, -26.410364051061432], + [-52.585645966647505, -26.410470311610535], + [-52.5886828877984, -26.41125639038717], + [-52.59083096521862, -26.412646614153527], + [-52.59273559147595, -26.414851555217396], + [-52.59416828994289, -26.415543541548278], + [-52.60265238370531, -26.41542002770187], + [-52.60756588222704, -26.413428130383043], + [-52.60875347353759, -26.41276554347198], + [-52.61006942073242, -26.412348285872028], + [-52.61023983684917, -26.41234403020916], + [-52.611312338442566, -26.41190918697949], + [-52.61671323053079, -26.407626355220884], + [-52.619095776733566, -26.401400198151688], + [-52.62110672773271, -26.395468203888765], + [-52.63370097883888, -26.391051670479207], + [-52.63507639997527, -26.385819064715914], + [-52.63651504952638, -26.385092590474105], + [-52.63712062070129, -26.384282221257223], + [-52.63724295693328, -26.384229039834754], + [-52.637472692368995, -26.384129173041405], + [-52.637971896315705, -26.38391216531752], + [-52.63915125200635, -26.383761328546527], + [-52.644910561901355, -26.380852651840225], + [-52.6582323039435, -26.374743310192933], + [-52.66328883193729, -26.369251540803678], + [-52.67857924138367, -26.35263990337184], + [-52.679920022314114, -26.353183923023252], + [-52.68067514911311, -26.35321050821395], + [-52.680832977068, -26.35328990561516], + [-52.68354914585086, -26.354656343352616], + [-52.68576188581524, -26.355554038821875], + [-52.69247865089712, -26.353329646315515], + [-52.70056890111156, -26.357993025046767], + [-52.70294199414377, -26.357407195962395], + [-52.7033816467902, -26.357154885448104], + [-52.70883300214624, -26.354998577590777], + [-52.71884847602657, -26.357322026998297], + [-52.72560417981277, -26.348293839283983], + [-52.73775326995757, -26.342132126037125], + [-52.74195815448425, -26.345433236067308], + [-52.74509236952182, -26.34515831998122], + [-52.74537286358437, -26.344885507342205], + [-52.74680495750633, -26.34476734020186], + [-52.749082981334894, -26.344579371024594], + [-52.74985660879431, -26.3446954201807], + [-52.75004533571832, -26.344723731277174], + [-52.75169497403466, -26.344578948312858], + [-52.7519376707035, -26.34500759055543], + [-52.75220246928402, -26.345047311556563], + [-52.75463971580875, -26.346676183126352], + [-52.75641793993046, -26.348552466989293], + [-52.75687729689409, -26.349723313890465], + [-52.75672430509316, -26.352591698378706], + [-52.75672179582369, -26.35263134462659], + [-52.75971506622085, -26.353072919943003], + [-52.76344424455882, -26.353622258808496], + [-52.775384099054556, -26.347877860996658], + [-52.77677244842009, -26.348285749071316], + [-52.77711098127408, -26.348254692121298], + [-52.77749514757684, -26.348219449741897], + [-52.777516265648416, -26.348217511666082], + [-52.77833559665022, -26.348744972030616], + [-52.78095662258961, -26.349514931878062], + [-52.783730576172836, -26.348197784144144], + [-52.7850432635858, -26.34829326234861], + [-52.79114824442607, -26.35235648105644], + [-52.795797877210155, -26.349312788075114], + [-52.7967795430647, -26.348271470790493], + [-52.79732874972545, -26.348176300833952], + [-52.79757766247813, -26.348133167947047], + [-52.799519321037096, -26.347796737626027], + [-52.81440998541851, -26.344399549517668], + [-52.81777068267949, -26.344601262464465], + [-52.818913248125284, -26.344475856897432], + [-52.8252932836519, -26.344549400703514], + [-52.827885857175986, -26.345207904867387], + [-52.835612455323776, -26.345670808416966], + [-52.83654939120532, -26.34614769927454], + [-52.839371961544934, -26.347111015872134], + [-52.83952248594895, -26.347089179047018], + [-52.839750337545894, -26.34702948924176], + [-52.839744746104834, -26.347159299212638], + [-52.839739774283764, -26.34723654149912], + [-52.84252198411595, -26.348186002458245], + [-52.845246329309035, -26.345525867011535], + [-52.84798300856251, -26.343934291935515], + [-52.87145463274304, -26.358920808421725], + [-52.87158547927714, -26.35889924890986], + [-52.87191179613778, -26.358815434754398], + [-52.87223776629688, -26.35879853557438], + [-52.87257744039903, -26.35875735835382], + [-52.87290356742247, -26.358710041184896], + [-52.873134710029774, -26.358650163366605], + [-52.87342720465264, -26.358541871343665], + [-52.873597433864724, -26.35844523976124], + [-52.87383564725374, -26.358330638938305], + [-52.87413458720083, -26.358289287865983], + [-52.87428569697834, -26.35833511529822], + [-52.87429727503789, -26.358338626254724], + [-52.87444610406738, -26.35844265767282], + [-52.87456677486156, -26.35874124211841], + [-52.87469414276302, -26.359058103532586], + [-52.874706376981, -26.359319740387186], + [-52.87470580147969, -26.3594315713461], + [-52.874704970201684, -26.359593486286673], + [-52.87467675275321, -26.35991472998331], + [-52.87797358574132, -26.36046995421054], + [-52.88065010405478, -26.36037313923885], + [-52.88224082889165, -26.360073876662774], + [-52.882246830909374, -26.360072747641368], + [-52.882273755009024, -26.360072252543457], + [-52.886806164796276, -26.359988972068876], + [-52.88759322457248, -26.360121759264537], + [-52.90829050954556, -26.35937040087195], + [-52.910415634240216, -26.35840342050733], + [-52.91071708390731, -26.358123263664254], + [-52.91457603791283, -26.356431516255444], + [-52.914829533538466, -26.356394846518324], + [-52.91675057005102, -26.355520603441917], + [-52.917804160495415, -26.356118554574813], + [-52.91894003673742, -26.356281240402033], + [-52.919971160297685, -26.35642892458424], + [-52.92047404412787, -26.356636058669324], + [-52.922022292841135, -26.35727376877351], + [-52.923474441253646, -26.358594033960436], + [-52.92444549291757, -26.359484030070025], + [-52.925601015825094, -26.360543108516], + [-52.925787360417125, -26.360648845581], + [-52.92925608996648, -26.36107791685681], + [-52.929685589996424, -26.3608817294055], + [-52.929894034119336, -26.360733591703053], + [-52.930167496751615, -26.360644200740296], + [-52.930535903768195, -26.360560483428927], + [-52.93093371415889, -26.36053537798721], + [-52.93119490512651, -26.360531035036004], + [-52.93152131341329, -26.3605428908402], + [-52.93180043432956, -26.36051202083389], + [-52.93219621742593, -26.360423068424595], + [-52.93250532316949, -26.36032848833392], + [-52.93285563240365, -26.36030852006341], + [-52.93310486042128, -26.360325404147325], + [-52.933401300880604, -26.360400967035922], + [-52.93375699966044, -26.360498023699865], + [-52.93398794906227, -26.360615889810678], + [-52.93428428861676, -26.36071272269133], + [-52.93459249921632, -26.360809599528476], + [-52.9348832703915, -26.360826633460707], + [-52.93524577802993, -26.360886475114253], + [-52.93561345575969, -26.360962296742606], + [-52.935874237131436, -26.36104835875705], + [-52.93619616605854, -26.36120665451986], + [-52.93638843943503, -26.36135142676128], + [-52.93654156720624, -26.361617066098024], + [-52.93655320944054, -26.361882181951334], + [-52.936558126600595, -26.361980868953424], + [-52.93759186079048, -26.362108666500863], + [-52.95044125926906, -26.362284636421382], + [-52.96824239342941, -26.35438511987309], + [-52.96831563652026, -26.354348182941372], + [-52.96833493981728, -26.354344042650272], + [-52.981881242492534, -26.348330505331973], + [-52.98210438215804, -26.3473707913296], + [-52.98320850557815, -26.347428303271432], + [-52.98342826893538, -26.346878541687282], + [-52.98369375795086, -26.346214392981615], + [-52.98452142971118, -26.346357017899766], + [-52.98509738613213, -26.346412735772333], + [-52.98565439702696, -26.34658975966593], + [-52.98611342100085, -26.346644062966444], + [-52.986595774300234, -26.346751205160675], + [-52.98668970255426, -26.346817586802224], + [-52.987929930118206, -26.346594305626525], + [-52.988021554650864, -26.346523827039565], + [-52.988328457005466, -26.346345461988946], + [-52.988846961540055, -26.346252221130662], + [-52.989235281293624, -26.34631682868537], + [-52.98971714711269, -26.34654003083472], + [-52.99016386360906, -26.3467209051295], + [-52.99068020602527, -26.346825602200006], + [-52.9910851075977, -26.34683601671564], + [-52.991509882653105, -26.346937215122146], + [-52.991994539873254, -26.347247268226354], + [-52.99222363625812, -26.347363310342402], + [-52.99261843380056, -26.347597936805254], + [-52.992919963486706, -26.347720259653823], + [-52.993377524972736, -26.347889761913134], + [-52.9937936620504, -26.348003128346217], + [-52.99398047947047, -26.34816240359943], + [-52.99411392111566, -26.34863882292109], + [-52.994175056270905, -26.34884451661529], + [-52.994216656057155, -26.34898448040727], + [-52.994360594658204, -26.34944226969795], + [-52.994504689091954, -26.349862730002904], + [-52.99460453199205, -26.350318742572995], + [-52.99721849834817, -26.35185455147646], + [-52.9973690900479, -26.351900080712568], + [-52.997754654301346, -26.352078097231107], + [-52.99802592324561, -26.352328927137115], + [-52.99897221766948, -26.352884879865048], + [-52.99901701478676, -26.352907083281945], + [-52.999492705712505, -26.3531590414411], + [-52.99984541244194, -26.35339787554694], + [-53.015883964521635, -26.362818594596465], + [-53.01631637130189, -26.36275849101784], + [-53.01668591109717, -26.362848032628772], + [-53.016973054813135, -26.362988869520592], + [-53.01733400700713, -26.363174128124395], + [-53.017801335167384, -26.36348492728805], + [-53.018252459001005, -26.363736756534664], + [-53.01864633528639, -26.36391475702061], + [-53.01908120385952, -26.364122348344548], + [-53.01955558573362, -26.364363709510094], + [-53.02000694230265, -26.364556612779346], + [-53.02050753115743, -26.36477176085942], + [-53.02099955637797, -26.36507525693506], + [-53.02136833806622, -26.36536363446813], + [-53.02191738709971, -26.36579986728137], + [-53.022177909413514, -26.366095620207947], + [-53.022424797606305, -26.366375897190558], + [-53.022833828442465, -26.36688533548697], + [-53.022871615890466, -26.36692192168165], + [-53.02785356444297, -26.36984704967741], + [-53.029522929583194, -26.370800978954634], + [-53.02976438232485, -26.37083010050319], + [-53.03020022477307, -26.370787242923395], + [-53.03077569588182, -26.370774266819815], + [-53.03111051820357, -26.370787787587407], + [-53.031170209439296, -26.37079019836763], + [-53.031720460116674, -26.370924438296864], + [-53.032073343147786, -26.371080170940715], + [-53.03245913427002, -26.371228637466704], + [-53.032910160269644, -26.371517230697105], + [-53.033287067155314, -26.371842422184187], + [-53.03355743553018, -26.37214330807156], + [-53.03376145209461, -26.372541633162665], + [-53.034006404013084, -26.37298426808573], + [-53.03421955181069, -26.373484585695145], + [-53.04057420318927, -26.377115116460555], + [-53.04066334770261, -26.377112675009048], + [-53.04108487661215, -26.377184107434466], + [-53.041409696521534, -26.37733622418172], + [-53.04174040262372, -26.377526144892023], + [-53.04205138993854, -26.377779644648793], + [-53.04205279294894, -26.37778078864323], + [-53.042382902779515, -26.378132651289942], + [-53.04243043533622, -26.378175516949728], + [-53.046801943884155, -26.380672629058154], + [-53.05646684343045, -26.383647107977463], + [-53.05667057955589, -26.38366753662571], + [-53.05723696476834, -26.38368535153983], + [-53.05798387297952, -26.38377385676266], + [-53.058531959391, -26.383850993719676], + [-53.05920652935324, -26.383944683205666], + [-53.059766684785785, -26.384016451120473], + [-53.060236470852566, -26.384082562369183], + [-53.06071499122973, -26.38421011756085], + [-53.060850535903114, -26.38424624904853], + [-53.06152486318125, -26.384410103506482], + [-53.06201857158214, -26.384530260645192], + [-53.062657078310366, -26.384602240272], + [-53.063113509225154, -26.384645847578696], + [-53.063522978161544, -26.38473337603987], + [-53.064058329426885, -26.385010197961538], + [-53.06448562674755, -26.38516794832847], + [-53.06481042475446, -26.38534160506515], + [-53.06512328356985, -26.38548283585894], + [-53.06532110187358, -26.38556587615455], + [-53.07345379348087, -26.38713834087906], + [-53.07354892456412, -26.38709605726018], + [-53.07402566446098, -26.3868976305905], + [-53.076351770547504, -26.387414321835152], + [-53.07638813572089, -26.387422398698234], + [-53.07642449989418, -26.387430476561313], + [-53.076599073797084, -26.387484934897817], + [-53.07680332042205, -26.387674430069886], + [-53.07695176259892, -26.38781125646855], + [-53.0769562418932, -26.387815385239474], + [-53.08049476640259, -26.388499306829242], + [-53.080519776454025, -26.38850488252296], + [-53.08172457306744, -26.388860983295636], + [-53.083255916880326, -26.38913618343229], + [-53.08340164070223, -26.389103270242664], + [-53.0839325125651, -26.389073681304183], + [-53.08439404830657, -26.38907491460769], + [-53.08495908390594, -26.389179781488416], + [-53.08538569293626, -26.389273941882042], + [-53.08581303087568, -26.38934742328145], + [-53.08618194273507, -26.389451766882907], + [-53.08664292526889, -26.38962870611622], + [-53.08701460485548, -26.38981158692743], + [-53.09066638684734, -26.390467676823448], + [-53.09374039228752, -26.38429455981914], + [-53.09374183341053, -26.3842004532598], + [-53.09376079788119, -26.382962004700076], + [-53.09428811614217, -26.383023719736713], + [-53.094727307769695, -26.38279746721569], + [-53.09500522541516, -26.382488103321755], + [-53.09538724807923, -26.382096320079096], + [-53.09583829528375, -26.38176673355705], + [-53.09632318969108, -26.38167496881272], + [-53.09687724045248, -26.38160405280556], + [-53.097638801229664, -26.38158535301419], + [-53.09822738921451, -26.381535191871375], + [-53.09898887408478, -26.381537153071555], + [-53.099692404110534, -26.38162165045071], + [-53.10014167778565, -26.38183986070914], + [-53.10063657638068, -26.382223563731625], + [-53.10109712747234, -26.382524485914455], + [-53.10139608704856, -26.382845666682762], + [-53.1015796711899, -26.383166551875522], + [-53.10177472846804, -26.383508137017355], + [-53.10184882238201, -26.383569088210972], + [-53.10756956928114, -26.381421814253983], + [-53.10867822957623, -26.37872344531329], + [-53.10867390064506, -26.37870243663701], + [-53.10873949858124, -26.37841282151564], + [-53.1087693664052, -26.3783491064321], + [-53.108823851083976, -26.378232875279814], + [-53.10894301738149, -26.377978661946894], + [-53.10901682689552, -26.37789930874301], + [-53.10950057158465, -26.376721867692133], + [-53.124414295745574, -26.37432746465196], + [-53.127834921745176, -26.37142959594233], + [-53.127852592198444, -26.371313238165325], + [-53.128096636801864, -26.371023325388077], + [-53.12840840738628, -26.37067305538674], + [-53.128733859748266, -26.370262304360253], + [-53.12903228700854, -26.369851491433252], + [-53.12918246116345, -26.36931930010218], + [-53.129359364857066, -26.368883999632473], + [-53.12956342543385, -26.36840035208288], + [-53.12974032112748, -26.367965053613233], + [-53.12980889379711, -26.367614223506887], + [-53.12970222810568, -26.36710783010989], + [-53.12959512422407, -26.366780784639918], + [-53.12982538815908, -26.36657555987824], + [-53.13028494350399, -26.366491905222563], + [-53.13085249236452, -26.366432708159422], + [-53.13135249197093, -26.366373354344745], + [-53.131974170870606, -26.36627797209746], + [-53.13262257730885, -26.366279476711554], + [-53.13298832709589, -26.3659293315117], + [-53.13316523973461, -26.36548192404715], + [-53.133194087995136, -26.364852629203007], + [-53.133195531755085, -26.364356407404347], + [-53.13337226066712, -26.363969521915255], + [-53.13380665395967, -26.363232248624257], + [-53.13421363875163, -26.362628047378756], + [-53.134286406958246, -26.362498487277538], + [-53.13537378438191, -26.35908390976971], + [-53.14053246054603, -26.357207956761044], + [-53.14266701755293, -26.35252542900125], + [-53.14270846658715, -26.352240227459912], + [-53.14273470740835, -26.35217896738896], + [-53.1429260011046, -26.351732395871633], + [-53.143038644510796, -26.351286812643163], + [-53.14313087920582, -26.35092196345617], + [-53.143267610036666, -26.350329230200636], + [-53.14316075271922, -26.349905385770708], + [-53.14294908723631, -26.349310662797468], + [-53.142910070681005, -26.348778041163342], + [-53.14304612260443, -26.34842736180923], + [-53.14330379687507, -26.348052751017796], + [-53.14348029505976, -26.34772636950492], + [-53.143495331652865, -26.347181769676936], + [-53.143753745721966, -26.34654089599397], + [-53.14399824239578, -26.346045225301577], + [-53.14421575791344, -26.34553738871354], + [-53.144594731022636, -26.345247770440672], + [-53.14489182319278, -26.345260543342516], + [-53.145391127724274, -26.345406903444875], + [-53.14599847666132, -26.34555350214958], + [-53.14616144470223, -26.345587077940202], + [-53.15352649689818, -26.344062616161956], + [-53.15783554040596, -26.34888134168833], + [-53.15823824815456, -26.349017654664348], + [-53.158723991799086, -26.349200243799963], + [-53.159088015260714, -26.349443085358295], + [-53.15941090260881, -26.349915796971654], + [-53.15965281654362, -26.350364128893165], + [-53.160070413973365, -26.350776527183047], + [-53.16039005761248, -26.350950652829336], + [-53.16079100142368, -26.351148270188986], + [-53.16096887833853, -26.351218868690175], + [-53.16138646565178, -26.351384606083414], + [-53.161966807651375, -26.351567379870225], + [-53.162297129230616, -26.35158897133982], + [-53.16926180781848, -26.348083381379432], + [-53.17292555764859, -26.347054737723603], + [-53.17873805489701, -26.34461164704098], + [-53.180969719343395, -26.344795852917656], + [-53.184455168903035, -26.34381693765002], + [-53.188185769164754, -26.339839332213753], + [-53.189380915877045, -26.337589902804122], + [-53.18994488944708, -26.337029687963486], + [-53.192067383827954, -26.33492133803657], + [-53.1931177211632, -26.334580291973005], + [-53.197585801386175, -26.329815355948746], + [-53.19898365234744, -26.330337889279452], + [-53.1992324509196, -26.330358179572777], + [-53.19935904317976, -26.330478211632133], + [-53.20170607146211, -26.33135550787149], + [-53.23209724988091, -26.311972822980383], + [-53.23886927458135, -26.303967468618097], + [-53.2388695904439, -26.30380965980116], + [-53.23891202938683, -26.3035414187596], + [-53.239062224707375, -26.303267983323018], + [-53.23932606664622, -26.303037659448975], + [-53.239643841640394, -26.302775224389887], + [-53.23990164865398, -26.30256635652887], + [-53.24019541070435, -26.302336081544524], + [-53.24030365296561, -26.302084047253395], + [-53.24025622274351, -26.301853230527218], + [-53.24023865677872, -26.30165465767716], + [-53.240346982845864, -26.301359695404148], + [-53.24041339678102, -26.301070031283484], + [-53.24047967303162, -26.30085012613341], + [-53.24057569880642, -26.300721492834548], + [-53.24076142411014, -26.300635929186384], + [-53.240935105539066, -26.300587909566673], + [-53.241204620179516, -26.300507845607285], + [-53.24137231458611, -26.300459815009717], + [-53.24158796700136, -26.300374298251263], + [-53.241755619505035, -26.300347731644543], + [-53.24191096702476, -26.300334840077316], + [-53.2420729135666, -26.30032140148594], + [-53.24234229052244, -26.300311092497207], + [-53.24242847113334, -26.300314381346627], + [-53.24346956448026, -26.299539398691604], + [-53.24349029912117, -26.299500077612276], + [-53.24356313716965, -26.299469742988716], + [-53.24599752742271, -26.297657529008056], + [-53.24788735592826, -26.29806669052107], + [-53.24796307797955, -26.298002420762625], + [-53.248322535565755, -26.297836618508338], + [-53.24879570660004, -26.2976763548323], + [-53.249137313852245, -26.297451497669233], + [-53.24929320280123, -26.29731221615424], + [-53.249574788218645, -26.297173126175576], + [-53.2497486631616, -26.29701777360113], + [-53.25008423648848, -26.29681437245101], + [-53.250341774059315, -26.296728906538057], + [-53.25061734850282, -26.296600538577003], + [-53.25083319940777, -26.296402320866147], + [-53.250989255944035, -26.29617181638977], + [-53.25125889424387, -26.296016608462047], + [-53.25152835098055, -26.2959579884936], + [-53.25185169686932, -26.295888717330957], + [-53.25207955772169, -26.295669050585115], + [-53.25230147245471, -26.29542790987038], + [-53.25257134319608, -26.29514927699497], + [-53.252769106349504, -26.29502078632084], + [-53.25308675053629, -26.294801249243896], + [-53.253446335782066, -26.29456030702133], + [-53.25357043057675, -26.294463280727705], + [-53.25380422959856, -26.293574424109284], + [-53.25381221738205, -26.293509443124066], + [-53.25382846575094, -26.2933567941298], + [-53.253780935687715, -26.29316111138923], + [-53.25369619937786, -26.292941519796198], + [-53.25366469622307, -26.29271246501089], + [-53.25361204964386, -26.292407044336493], + [-53.25356457345123, -26.292182737608027], + [-53.2535278380609, -26.29190596686259], + [-53.253496317949335, -26.29168645507328], + [-53.253480930487356, -26.291376319263353], + [-53.2534708460883, -26.291075733429818], + [-53.25350881447936, -26.290689341456044], + [-53.25354429730739, -26.290401468449087], + [-53.25365762888304, -26.289552402396307], + [-53.253690044815315, -26.289290047389702], + [-53.2538286936187, -26.289132811946114], + [-53.25406312477873, -26.288975720149246], + [-53.254281556965715, -26.28883768740321], + [-53.25452117546925, -26.28875216755638], + [-53.254728795026395, -26.28870476681119], + [-53.25486178362975, -26.288728819310485], + [-53.25501067544359, -26.288786292736663], + [-53.25522333371104, -26.288891568907204], + [-53.25540405688117, -26.289001569193456], + [-53.255549253314975, -26.289109666679426], + [-53.26218809501768, -26.288268716125007], + [-53.25975237843533, -26.27999254602609], + [-53.265462634306125, -26.27207242686097], + [-53.265443501440856, -26.272054806477396], + [-53.26516941461687, -26.27165582566004], + [-53.265048759691716, -26.271329531245637], + [-53.26513796723603, -26.271155724991733], + [-53.265332290040185, -26.270953078362727], + [-53.26566386571567, -26.270830343193175], + [-53.26606831830138, -26.270627990789343], + [-53.26631906170894, -26.270512386914774], + [-53.26657560955239, -26.270267407074584], + [-53.266729627944095, -26.270006720619172], + [-53.26688378497535, -26.269666316197767], + [-53.267013768719906, -26.269282394884268], + [-53.2671598008194, -26.268963721483324], + [-53.26730608422688, -26.268491982147662], + [-53.26754921539221, -26.268108213416888], + [-53.26783281654399, -26.267688266552568], + [-53.26803567019866, -26.267224727004812], + [-53.26821412315621, -26.26684812150948], + [-53.26823894673948, -26.26651478556191], + [-53.26815037455726, -26.26632623496981], + [-53.267900708365424, -26.26582583010626], + [-53.26775594297235, -26.26541583681695], + [-53.26772415944368, -26.26510416106869], + [-53.267716659906924, -26.26477077724032], + [-53.26756356315689, -26.2645096639174], + [-53.267555961882195, -26.26423425906423], + [-53.267693790246554, -26.263980799665543], + [-53.26789640949109, -26.263647711062355], + [-53.268292918620304, -26.263351129728772], + [-53.268600453615605, -26.26309790670444], + [-53.26887558468723, -26.262888121780684], + [-53.26906159401783, -26.262808661129316], + [-53.26945761939158, -26.262787469678546], + [-53.26981317477887, -26.262802457361307], + [-53.27024148737099, -26.26280304878202], + [-53.27065607897869, -26.262818350246942], + [-53.27127015265493, -26.262906164945093], + [-53.271658065129614, -26.262913946511578], + [-53.27198137023283, -26.26289264832881], + [-53.27222448336493, -26.262501629601463], + [-53.27237057623493, -26.262132219222572], + [-53.27242769697109, -26.26180617115283], + [-53.27249311873464, -26.261258432148328], + [-53.27247774457824, -26.26079458340548], + [-53.27247817543173, -26.26054092851361], + [-53.27252707053105, -26.260301834436675], + [-53.272802115831496, -26.26014276949142], + [-53.27302030667516, -26.260150314683766], + [-53.27328696076452, -26.260172419691088], + [-53.273537401924834, -26.26022349174565], + [-53.273957564682945, -26.260267545177545], + [-53.27428078398242, -26.26028972497635], + [-53.27472517386335, -26.260341056315703], + [-53.27497563395807, -26.260377630376425], + [-53.27525022843766, -26.260479460319935], + [-53.27532235419908, -26.26050729587814], + [-53.279617701476944, -26.259930253594135], + [-53.27991519823637, -26.259705175453604], + [-53.28010938027811, -26.259555292802467], + [-53.280230163297176, -26.259408428824763], + [-53.27945034344436, -26.25343528896627], + [-53.279384163483144, -26.253345976165363], + [-53.27915015169572, -26.253142745116165], + [-53.27898079811566, -26.25293234983164], + [-53.27888432437985, -26.252627837319064], + [-53.27875565716382, -26.25224355895974], + [-53.27871550132595, -26.252091311173736], + [-53.27900659888227, -26.25197574115062], + [-53.2792554290667, -26.25194218801935], + [-53.27878873524066, -26.24836697111691], + [-53.28005097320197, -26.24768126728439], + [-53.28012787744613, -26.247424613987704], + [-53.2801660950107, -26.247297070901954], + [-53.28057758143679, -26.247054124490383], + [-53.28132705121264, -26.246611626919286], + [-53.28224097765538, -26.246491515366355], + [-53.28329100425202, -26.24592105325854], + [-53.283859194488045, -26.246278831108945], + [-53.28405970071516, -26.246252479000987], + [-53.28432628256211, -26.24644231893585], + [-53.28467067278811, -26.246652205575224], + [-53.285048392228056, -26.24688208008301], + [-53.28541505544654, -26.24707204464876], + [-53.28590400820909, -26.24728211175484], + [-53.286370783708904, -26.247452253959974], + [-53.28692652153877, -26.247622506837043], + [-53.28732665656537, -26.247742695309494], + [-53.287826921828355, -26.247833087425626], + [-53.28827150911022, -26.24797327672538], + [-53.28874947347088, -26.248103532906374], + [-53.28911614668934, -26.24829349147177], + [-53.28949389608445, -26.248513383983276], + [-53.289804972096604, -26.248703271753644], + [-53.29011597433433, -26.248943029502655], + [-53.29050482286081, -26.249182883964394], + [-53.29096250311703, -26.249527584126785], + [-53.29159570449866, -26.249977188596155], + [-53.29212895110298, -26.25033690047314], + [-53.29277328148083, -26.25077653190561], + [-53.29331766108129, -26.251126272745644], + [-53.29368420175104, -26.25141595326772], + [-53.29423962661848, -26.251815570045178], + [-53.29496171155596, -26.25231512116435], + [-53.29545356808852, -26.252692767185675], + [-53.295886903916, -26.252962592469608], + [-53.29646467968598, -26.253322352181566], + [-53.29699795233601, -26.253692025053358], + [-53.29749793163666, -26.254011784069537], + [-53.29793119664469, -26.25432148533616], + [-53.29834224847993, -26.254611209693504], + [-53.29877549753303, -26.25493087895576], + [-53.29930871731851, -26.255330450814238], + [-53.29984189423953, -26.255759941659775], + [-53.30046396771632, -26.25623940015552], + [-53.3008527515594, -26.2565490345859], + [-53.30131932587202, -26.256898652711815], + [-53.30173036975266, -26.257198337064278], + [-53.302048176168604, -26.257471696772342], + [-53.302392527801885, -26.257771314370938], + [-53.3028371014004, -26.257981281638603], + [-53.303415174358705, -26.258161478426477], + [-53.30383756864887, -26.25832154579767], + [-53.30412665894745, -26.25837174670874], + [-53.304133703984306, -26.25837412468174], + [-53.30439344734398, -26.258461815684726], + [-53.304315455506575, -26.258561462929265], + [-53.30425962202239, -26.25872097706574], + [-53.3045375743248, -26.25878113701357], + [-53.30493774944229, -26.25892122447533], + [-53.30496143129391, -26.259089801314488], + [-53.305014822213906, -26.2594698609516], + [-53.30505087250705, -26.25961949292341], + [-53.30528922056334, -26.25976950201503], + [-53.30743714928221, -26.260666220533253], + [-53.30837068936491, -26.26051091110907], + [-53.30897157259948, -26.260292154986082], + [-53.30958358283006, -26.260063436826456], + [-53.31010655691111, -26.259874514978016], + [-53.31030694897634, -26.259725131303373], + [-53.310318317204874, -26.259545619339864], + [-53.31067435302821, -26.259436302073016], + [-53.31082094012753, -26.259418123155218], + [-53.3140371619081, -26.257080462280662], + [-53.319815688408944, -26.25422521899526], + [-53.3272295045627, -26.254555469557406], + [-53.327511500031285, -26.254288702146393], + [-53.327578307445535, -26.254105006980204], + [-53.32813609969742, -26.254146390901536], + [-53.32885332930847, -26.254136880256315], + [-53.32945675631261, -26.254086417049322], + [-53.32994635980241, -26.25401542327175], + [-53.3305385023479, -26.253873060146663], + [-53.33098265929881, -26.25372034457282], + [-53.33156357615444, -26.253435036551995], + [-53.33205340471891, -26.253159848863188], + [-53.33263440620429, -26.252792861877893], + [-53.33327236871527, -26.25238508870008], + [-53.334103953526665, -26.25188560884722], + [-53.334662126112214, -26.251559426928406], + [-53.33528872844193, -26.251121000805977], + [-53.335730565796375, -26.25083877729761], + [-53.33620314660281, -26.250546482401354], + [-53.33632327479382, -26.249452169059037], + [-53.345731815766825, -26.246855382738236], + [-53.34885703423671, -26.25178274698545], + [-53.34909652059806, -26.2518032084756], + [-53.34966608775622, -26.25181478136489], + [-53.350025156135466, -26.25182618003245], + [-53.35067528321372, -26.251754530660634], + [-53.35102826309166, -26.25166042739711], + [-53.35142456518011, -26.25157746496866], + [-53.35176514806247, -26.251494456746116], + [-53.3521738461212, -26.251394846279094], + [-53.35266925332442, -26.2512564385086], + [-53.35299743423632, -26.251190076324487], + [-53.35340612332009, -26.251096015855], + [-53.35377935423995, -26.250994726519775], + [-53.35412618721336, -26.2509267342675], + [-53.35463581372025, -26.25084373041985], + [-53.35497790622823, -26.250778627134007], + [-53.35656936562199, -26.249145385248376], + [-53.35864067768611, -26.249894545188862], + [-53.35889954684496, -26.249823000105092], + [-53.35962483683896, -26.24967185648984], + [-53.36009016394019, -26.249535668829285], + [-53.36013625804823, -26.249521927664926], + [-53.36047088183185, -26.249422173471505], + [-53.36089390777657, -26.24928595196742], + [-53.36140157768997, -26.249073940183806], + [-53.36180765667515, -26.248960461732192], + [-53.36231527279482, -26.248793960928698], + [-53.362628324367144, -26.24866524182791], + [-53.36316975664621, -26.248506348895834], + [-53.363558886671846, -26.24841561049681], + [-53.364083356094675, -26.248302214607197], + [-53.36457393766746, -26.2482494748162], + [-53.36497991706522, -26.248227013324605], + [-53.36545352785072, -26.24823494056929], + [-53.36586793045172, -26.248250409029712], + [-53.36621268701384, -26.248313989726245], + [-53.366276404294375, -26.248103651583804], + [-53.366296225974835, -26.24779685764651], + [-53.36630136770056, -26.247511968753816], + [-53.36636016612212, -26.247336692613995], + [-53.366521485439904, -26.24727544604446], + [-53.366726732198664, -26.247275592285273], + [-53.36703460431689, -26.247271427148327], + [-53.367220325884084, -26.247245261472962], + [-53.36757229456846, -26.247109639231283], + [-53.36799758342421, -26.246952152727886], + [-53.36833978801265, -26.24680337352813], + [-53.36867707176198, -26.246694035329043], + [-53.368974470089704, -26.2465242883042], + [-53.369145712668114, -26.246292107773773], + [-53.36926824523079, -26.245875809505186], + [-53.369327072473176, -26.245661085382835], + [-53.36939576427461, -26.245341177270674], + [-53.369469273399275, -26.245088549110807], + [-53.36963562197946, -26.244860746596604], + [-53.3698556620764, -26.244703108852544], + [-53.37005126410293, -26.244549838197035], + [-53.37029568256847, -26.244453580335723], + [-53.37054495223106, -26.244396772438876], + [-53.37077465692079, -26.24436186560472], + [-53.37096519982395, -26.244405824880282], + [-53.3710823917345, -26.24451109640008], + [-53.3712386946902, -26.244594478784872], + [-53.37141459345962, -26.244620897122516], + [-53.37161008008257, -26.24459911540899], + [-53.37175669952486, -26.244577299876372], + [-53.372005903545286, -26.244599383944653], + [-53.372206233424826, -26.244630200189878], + [-53.37239701134877, -26.24467854546268], + [-53.372424834277915, -26.24469021374592], + [-53.375579657935354, -26.241998944174394], + [-53.37581273058897, -26.24234097510438], + [-53.37656265397953, -26.24209095720149], + [-53.376542988583424, -26.24223996520798], + [-53.37653795540063, -26.242424047144745], + [-53.376591557454304, -26.24261254786271], + [-53.376659840442805, -26.242774761538005], + [-53.376752535640975, -26.242963287111227], + [-53.37692338630694, -26.243191310377785], + [-53.37707960773982, -26.243379876715967], + [-53.377095081920395, -26.24340707864664], + [-53.37719184404993, -26.24357718021307], + [-53.37728938848494, -26.24381392174689], + [-53.37742786031033, -26.244103362105864], + [-53.37753029676352, -26.244340110621607], + [-53.37761318216435, -26.244581227207725], + [-53.37767165137542, -26.24480041389394], + [-53.37768616924503, -26.244980124760264], + [-53.377693410343205, -26.24510075291767], + [-53.37954644533398, -26.247819800207612], + [-53.380120032629605, -26.247930657441636], + [-53.38046176738637, -26.248479997932474], + [-53.380623587488074, -26.248811187186185], + [-53.3807373174198, -26.248985711600096], + [-53.383946988663844, -26.24701107966747], + [-53.38402617600542, -26.246820438478995], + [-53.384105417602505, -26.246667337253847], + [-53.38423450618103, -26.246689825766115], + [-53.38442630982265, -26.24671618351735], + [-53.38465644819948, -26.24657459279499], + [-53.384688706143656, -26.24653270015492], + [-53.38487204524389, -26.246405807532916], + [-53.385009575157966, -26.24627515208201], + [-53.385155471865374, -26.246092207623462], + [-53.38525139735435, -26.245901764353313], + [-53.385376437188405, -26.245763630952002], + [-53.3855554810702, -26.24581229426764], + [-53.385771943497396, -26.245950626404767], + [-53.38594584090441, -26.24611908868603], + [-53.386124829176254, -26.246253665963554], + [-53.386341312501756, -26.246369587110593], + [-53.38653698168256, -26.246470553341332], + [-53.386740977911046, -26.24657526053961], + [-53.38705321977695, -26.246732322313708], + [-53.38734045863526, -26.246908046172074], + [-53.38754443399945, -26.247042632357054], + [-53.387806688748576, -26.24721460430961], + [-53.38802734105554, -26.247323052444404], + [-53.388285442721504, -26.247480080418846], + [-53.38845611189474, -26.247599705733744], + [-53.38871450890382, -26.247832003673594], + [-53.3888726989802, -26.247940418039615], + [-53.38903918034167, -26.248104866349873], + [-53.38909744186234, -26.248172135104237], + [-53.389209745244536, -26.248385111593446], + [-53.38926796305356, -26.248515879319655], + [-53.38938020682582, -26.248814767770767], + [-53.38945919406798, -26.249023989384984], + [-53.38958395473381, -26.249289265804777], + [-53.38965876107834, -26.249524411422936], + [-53.38972954049252, -26.24955806914589], + [-53.38994191946352, -26.249599275341158], + [-53.39013344057821, -26.249689028591973], + [-53.390337455739, -26.24977878879661], + [-53.390458161676946, -26.24988717930134], + [-53.39067047607217, -26.250021765455198], + [-53.390832810299635, -26.250160060792425], + [-53.39098678171702, -26.250346909138962], + [-53.391128317698005, -26.25044783856976], + [-53.39126153556342, -26.25053008703984], + [-53.39153217407214, -26.250642292987713], + [-53.39176117335919, -26.250739534096333], + [-53.392035974900246, -26.25085547602702], + [-53.3922101238071, -26.25091361935623], + [-53.392455821901216, -26.250954839427976], + [-53.39263071575069, -26.250999755760407], + [-53.392759818278385, -26.251011031277244], + [-53.39293467934858, -26.251104506587982], + [-53.39295975186393, -26.250977519551775], + [-53.393093880121484, -26.250925293078467], + [-53.39321466156754, -26.250925356631168], + [-53.393422910302476, -26.250917996863226], + [-53.39363119280005, -26.25085834211859], + [-53.393893590684016, -26.250839804155174], + [-53.394056019283816, -26.25083988955362], + [-53.394339163787684, -26.250940891459965], + [-53.39454317599937, -26.251041850659437], + [-53.39468887801279, -26.25114651407309], + [-53.394638791591824, -26.25131457618358], + [-53.394638719100875, -26.25142663513372], + [-53.39471360197158, -26.251557408797968], + [-53.39489675932709, -26.25170691605289], + [-53.39503824966451, -26.2518862834488], + [-53.395183967576045, -26.251968534872365], + [-53.39540466666269, -26.252028413028317], + [-53.3956420268107, -26.25208829912237], + [-53.395808548951955, -26.25220417945388], + [-53.39593758100571, -26.25233124591925], + [-53.39605411801337, -26.25245830643089], + [-53.396198903960716, -26.25254917785402], + [-53.396411251203254, -26.252650141022432], + [-53.39655693935246, -26.252784687422736], + [-53.39671510764967, -26.25294165076669], + [-53.396885813687526, -26.25303138409437], + [-53.397031552463346, -26.253083752531168], + [-53.397168962208454, -26.253136115998768], + [-53.39727719599864, -26.253222081559475], + [-53.39748538617498, -26.253311832748267], + [-53.39768109620318, -26.253379165993245], + [-53.39782264118431, -26.25348008942384], + [-53.39786006576399, -26.253577225241767], + [-53.397905808459306, -26.253693042020544], + [-53.397922354352566, -26.253876079877454], + [-53.39795727115795, -26.254024877681637], + [-53.398120886189126, -26.254118903033536], + [-53.39834997343546, -26.254207090145513], + [-53.3985725722306, -26.254201327323504], + [-53.39871661568236, -26.254183783797828], + [-53.39892614126911, -26.254142786039996], + [-53.399168363270164, -26.254166390132184], + [-53.39945639954722, -26.254213502044138], + [-53.39989500148696, -26.25428417238773], + [-53.40015026296331, -26.25440172638957], + [-53.40030733794363, -26.254489874768186], + [-53.40046438513752, -26.25462499512596], + [-53.40057556545578, -26.25482468162482], + [-53.40065404638623, -26.254965636270985], + [-53.40073248961033, -26.255171178888457], + [-53.40073889075533, -26.255417787754357], + [-53.40073221274526, -26.255640903679293], + [-53.40069936350511, -26.25583465071431], + [-53.40062063944265, -26.25610470588514], + [-53.40060527468064, -26.256169497913024], + [-53.40057469615414, -26.25629844596861], + [-53.400515647897365, -26.2565097960929], + [-53.40050245362307, -26.256680067065574], + [-53.40056382470002, -26.256867087754543], + [-53.40064882884158, -26.257049146358163], + [-53.40080583835589, -26.257254725684493], + [-53.400988997260455, -26.257524903885], + [-53.40115903930359, -26.257836176115717], + [-53.40129644247853, -26.257983029540878], + [-53.40145997917716, -26.258223840827203], + [-53.40166282086088, -26.258429440983605], + [-53.40185255460291, -26.258658522178138], + [-53.402019683954435, -26.25882005848654], + [-53.402202964951634, -26.258890602775896], + [-53.40233384394229, -26.259002223240863], + [-53.402379599698726, -26.259131418013528], + [-53.40248419136686, -26.259413300499872], + [-53.40257565922684, -26.25974802101108], + [-53.40267143502444, -26.260034863303805], + [-53.42274578126291, -26.276034046857067], + [-53.431779680616906, -26.27928140086699], + [-53.44104089911797, -26.28095231096432], + [-53.44395213483952, -26.283747956690874], + [-53.4443067172886, -26.283920246308405], + [-53.44454378549694, -26.283993469394616], + [-53.44483630898798, -26.28408381926715], + [-53.44514883502857, -26.28427849101813], + [-53.445687103830984, -26.284457628937528], + [-53.446129862387615, -26.284660103201045], + [-53.446563936947626, -26.28487035749329], + [-53.4470414275968, -26.28506504763126], + [-53.44714558621343, -26.285116008221205], + [-53.44724974583015, -26.285166968811186], + [-53.447384328626825, -26.28523281428142], + [-53.44751891142361, -26.28529865975156], + [-53.448048473904194, -26.28563347663241], + [-53.44836100787383, -26.2858125693902], + [-53.44860408262289, -26.285999435402346], + [-53.448832769318805, -26.28618630146808], + [-53.449041112081915, -26.2864043005951], + [-53.44923210049679, -26.286560020814925], + [-53.44943175733435, -26.28680137196373], + [-53.449597696060735, -26.287045612236412], + [-53.44964155148695, -26.287103575047187], + [-53.44976263466374, -26.28726360952474], + [-53.4499449363664, -26.287489392744927], + [-53.45012722445969, -26.287800805926416], + [-53.45030952616233, -26.28802658614665], + [-53.45051786235178, -26.28833800123132], + [-53.450572657546324, -26.28841278438589], + [-53.45669754460798, -26.292306695289987], + [-53.45714713549747, -26.292434294733763], + [-53.457694148977, -26.29253553965434], + [-53.458267209765786, -26.292683492456792], + [-53.458657934704355, -26.292792506954637], + [-53.45933519801958, -26.29297160335545], + [-53.45961304954187, -26.293080607272955], + [-53.45964776748749, -26.29325965706247], + [-53.459647759877214, -26.29334503302371], + [-53.459647752304996, -26.29343870498109], + [-53.45967379579198, -26.293524337845408], + [-53.45976061485871, -26.29368782244824], + [-53.459838753751164, -26.293820168097604], + [-53.45992557664012, -26.293944729718195], + [-53.46007318278875, -26.294077080109172], + [-53.46019473794812, -26.29423278358644], + [-53.46031629507177, -26.294380702067283], + [-53.46038575296779, -26.294520832745267], + [-53.460454690267525, -26.29469503912534], + [-53.46119303293981, -26.29516436494075], + [-53.46441777474153, -26.2939859719937], + [-53.46543043204713, -26.29353637199289], + [-53.465496817904885, -26.293227092329488], + [-53.46647341819698, -26.292721703927906], + [-53.46770847201135, -26.2921221436082], + [-53.46778014010698, -26.292085220358473], + [-53.46832311183075, -26.29180547946675], + [-53.46902206168535, -26.291428528039162], + [-53.469338934996244, -26.2912408819463], + [-53.46950604816015, -26.291141921369913], + [-53.469673161324074, -26.29104296079349], + [-53.470199687267325, -26.29082459593496], + [-53.47072621221041, -26.290606232076296], + [-53.471530262079256, -26.290366634195188], + [-53.47217153281776, -26.290229860872632], + [-53.47293712240661, -26.290178975048352], + [-53.47298560892057, -26.29018169604118], + [-53.4749849702081, -26.28929383663496], + [-53.47604106046472, -26.29061970859338], + [-53.47615220438109, -26.290644706877], + [-53.47685951366962, -26.290794101177692], + [-53.47912771021546, -26.291273177520814], + [-53.479890040893025, -26.291463356597653], + [-53.47987047001617, -26.29194379345094], + [-53.47983354501102, -26.292410139375157], + [-53.47983175010797, -26.2924327973715], + [-53.479525068250815, -26.29293019328525], + [-53.47907484578598, -26.293410330740976], + [-53.47917998792983, -26.293575872274147], + [-53.48076784947117, -26.294383480996906], + [-53.48186786111555, -26.29495050064441], + [-53.482470358376446, -26.29539705219816], + [-53.4833790241151, -26.295920110577313], + [-53.48393378465109, -26.296246511363485], + [-53.484431203583384, -26.296487076402194], + [-53.48485198666456, -26.296821960682916], + [-53.48505277038543, -26.297036582837382], + [-53.48527265041205, -26.297302694897194], + [-53.48556899823069, -26.297680390621327], + [-53.48590382213202, -26.297826469308205], + [-53.486315172511816, -26.298015496690468], + [-53.486702503526324, -26.29814397418996], + [-53.48709474767868, -26.298298667659072], + [-53.487420014505666, -26.298436155385264], + [-53.48776442836402, -26.29856507604428], + [-53.48832899279882, -26.298642664907074], + [-53.48878832861005, -26.298668705185243], + [-53.48922851042917, -26.298711890526857], + [-53.48959210412278, -26.298789342137695], + [-53.48993639864763, -26.299064105730128], + [-53.490232852956844, -26.299330258504494], + [-53.49038989308193, -26.299449794865083], + [-53.49067280310898, -26.299665139713074], + [-53.490950236681165, -26.299785429625057], + [-53.491165524727016, -26.299840722798127], + [-53.49135209663353, -26.299888641081555], + [-53.491639143005756, -26.29995745998131], + [-53.492241850444096, -26.300223807615186], + [-53.49269821027954, -26.300476194800154], + [-53.49322428386704, -26.30083686067592], + [-53.493526634867635, -26.301030753461145], + [-53.49362602752535, -26.301094493061836], + [-53.494065987716965, -26.301437942265995], + [-53.4942763455982, -26.30163088914081], + [-53.49719660278843, -26.302797193459], + [-53.52270655427547, -26.292519372717575], + [-53.524457361012274, -26.29245031549086], + [-53.524894331695755, -26.2923704645932], + [-53.5254848966079, -26.292313739418322], + [-53.525930036073554, -26.292276323776512], + [-53.526000699306195, -26.292270384515795], + [-53.5266316575944, -26.292263374167288], + [-53.52699177893433, -26.292266810823403], + [-53.52768959807585, -26.29232276984667], + [-53.54327459295302, -26.291706754568498], + [-53.544312968799595, -26.291436068624268], + [-53.54451922558062, -26.29144112285259], + [-53.5447421955604, -26.291476168004575], + [-53.544998591960656, -26.291576194001777], + [-53.5452661324706, -26.29169121695042], + [-53.54550579792389, -26.291816226998314], + [-53.545622813063694, -26.291971192489832], + [-53.545773262532485, -26.29217114683572], + [-53.54594874396387, -26.292273183389845], + [-53.54669929210851, -26.29248431451043], + [-53.546952959024125, -26.29242373831775], + [-53.54725867831077, -26.292241122262244], + [-53.54765496588378, -26.29204837887349], + [-53.54805124259608, -26.29188608347078], + [-53.54850409098141, -26.291825296809655], + [-53.54894559665034, -26.291835553157817], + [-53.54952293900448, -26.291886437980324], + [-53.55013424548339, -26.291937327676084], + [-53.55013419527383, -26.29210987159593], + [-53.550247277688946, -26.29254633097101], + [-53.55048485121275, -26.293124912815387], + [-53.55053683000064, -26.293308182674963], + [-53.55485858454972, -26.287645137396527], + [-53.5704858184893, -26.275872772227622], + [-53.57748745777671, -26.274720410194227], + [-53.577593628004145, -26.27464036328209], + [-53.577816352309945, -26.27452890850298], + [-53.57807532989771, -26.274449965573353], + [-53.57832394568154, -26.27442210965827], + [-53.5785932784137, -26.274366387679045], + [-53.57879528068602, -26.27426421997287], + [-53.57903871802515, -26.274143476120805], + [-53.57918374504615, -26.274032017631612], + [-53.57933913295606, -26.273888049119137], + [-53.57954328582614, -26.273696401446838], + [-53.57965724052027, -26.27353849709547], + [-53.57985407156053, -26.273171600532756], + [-53.579916229958364, -26.272990473385654], + [-53.58010269217367, -26.272888303737492], + [-53.58025807655172, -26.272846508177054], + [-53.58052740651774, -26.272841871173828], + [-53.58076047852121, -26.27287438728857], + [-53.58085001307213, -26.27287902117772], + [-53.584827555669435, -26.26189039414719], + [-53.58481566979749, -26.261615981433515], + [-53.58479347351573, -26.261353932639334], + [-53.584771276945375, -26.26102885887471], + [-53.584723188067464, -26.260657345228527], + [-53.5847064997457, -26.260382142420013], + [-53.584732390594645, -26.260110140451], + [-53.584769376393076, -26.259818236449966], + [-53.58482115735208, -26.259549551382786], + [-53.585003509120845, -26.259353256794395], + [-53.585181054315285, -26.259253740178526], + [-53.585395586417356, -26.25910446544795], + [-53.58552134527011, -26.258971779040866], + [-53.585728474509445, -26.25864006542364], + [-53.585835735990656, -26.258441038116743], + [-53.58592820138732, -26.25823537686816], + [-53.5860428587436, -26.2580031795493], + [-53.586194503311404, -26.25778756608452], + [-53.58633134958196, -26.257518879700005], + [-53.58642750844517, -26.257193802493813], + [-53.586549547393275, -26.25686654819191], + [-53.58658652729804, -26.25659786218009], + [-53.58670118294307, -26.256428687831708], + [-53.586786250859596, -26.256342441554672], + [-53.58684235178312, -26.256323454458297], + [-53.58696444395651, -26.25598609453334], + [-53.58799629856986, -26.256190909029332], + [-53.58815846823089, -26.256199772500604], + [-53.588439571427244, -26.256236250434448], + [-53.588768756769234, -26.256266092191908], + [-53.588986981613836, -26.256276035372665], + [-53.58926068767673, -26.25628929234498], + [-53.58948261151959, -26.256295916513608], + [-53.58968669822121, -26.256285951756645], + [-53.589956710209755, -26.256285941748825], + [-53.59021192728095, -26.256315785782245], + [-53.59053741967017, -26.25635889454721], + [-53.590840718993256, -26.25640531939329], + [-53.59109223511162, -26.256448429434272], + [-53.59141032961036, -26.25652138921269], + [-53.59182036844575, -26.256594336647915], + [-53.59190591684774, -26.25661370531946], + [-53.59218655616621, -26.256677244242102], + [-53.5924269802135, -26.256713719327525], + [-53.592667402215206, -26.25674024141759], + [-53.59285603578416, -26.25671369272599], + [-53.593048366260305, -26.2566639240315], + [-53.59310476236875, -26.256642521830987], + [-53.59324069463005, -26.256590936347827], + [-53.59348205808803, -26.256498034490598], + [-53.593659594403626, -26.25642504586222], + [-53.59390370794772, -26.25634873698688], + [-53.5941108428123, -26.256371942202687], + [-53.59438086328695, -26.25647807114488], + [-53.594743359495205, -26.256670436701146], + [-53.595105858916355, -26.256909239235576], + [-53.595379575358976, -26.257005412168468], + [-53.59555711923684, -26.25705515448229], + [-53.595771650265235, -26.257108209656366], + [-53.59601578182746, -26.2572541396763], + [-53.596226621085584, -26.25736026783931], + [-53.59647074949592, -26.257473027874735], + [-53.596666791532606, -26.257542669110155], + [-53.59687392753391, -26.257595723311788], + [-53.597044076430244, -26.257655415648507], + [-53.59725491761235, -26.257744957819114], + [-53.597439878125336, -26.257927381042673], + [-53.59759894537625, -26.25807331838007], + [-53.59762768562061, -26.258102258787904], + [-53.604424303322766, -26.259450613520997], + [-53.60618240677085, -26.259199768341603], + [-53.606362971283225, -26.25912741615568], + [-53.60676891102331, -26.258964810716257], + [-53.60702780743829, -26.25884867080404], + [-53.607179449780126, -26.258802207259578], + [-53.60744945866154, -26.25877894326204], + [-53.60810414911742, -26.258792103810475], + [-53.60863306379378, -26.258735622861572], + [-53.60883649450761, -26.2587289531048], + [-53.609235950710236, -26.258672492639285], + [-53.60950226574535, -26.258685712638297], + [-53.609601903710626, -26.25871181248042], + [-53.62065963196295, -26.2571333163221], + [-53.621229103767206, -26.257494978655334], + [-53.621245558232836, -26.257493360326887], + [-53.62153857809101, -26.257446839253962], + [-53.621566171272555, -26.257464433142566], + [-53.62187619531295, -26.257662109890354], + [-53.62254926374244, -26.25809127017159], + [-53.62285423436249, -26.25820133297973], + [-53.62302666227847, -26.25826356230586], + [-53.623081957572175, -26.258283519089677], + [-53.623370790109014, -26.258855086750668], + [-53.625123198142155, -26.259967928497474], + [-53.62582591542173, -26.259987367026202], + [-53.62585980947641, -26.260246818423244], + [-53.62932738341641, -26.25885567743269], + [-53.62960185559553, -26.25832389970047], + [-53.629641731682064, -26.2583110055575], + [-53.631152485963526, -26.257822515141626], + [-53.631159782979545, -26.257820196115432], + [-53.63160718896243, -26.257677974510372], + [-53.63234333357953, -26.257443970869303], + [-53.633285859654734, -26.25714541548738], + [-53.63328748963239, -26.257139252484237], + [-53.63355644095094, -26.256122652961626], + [-53.633735753496595, -26.255444876613296], + [-53.633750557294036, -26.255388921584505], + [-53.63389536684739, -26.25517622214419], + [-53.63455671719051, -26.25494218878287], + [-53.636670248468626, -26.255281067719746], + [-53.63670596453547, -26.255267187592825], + [-53.63674925061649, -26.255250365439], + [-53.63710663828509, -26.25511147616876], + [-53.637280436610226, -26.255043933551033], + [-53.63729666464059, -26.255037627493376], + [-53.638225608548964, -26.253842056588578], + [-53.63870782446303, -26.253221435080782], + [-53.63916617656065, -26.253531556219407], + [-53.639552242397045, -26.253406456835425], + [-53.639619638543024, -26.2533846175938], + [-53.63963216149967, -26.253365206556175], + [-53.639672266360954, -26.253303036435813], + [-53.64046302585717, -26.25299953062345], + [-53.640200715116855, -26.252393229892704], + [-53.64011838405947, -26.252228343279057], + [-53.64003562689185, -26.25203973667825], + [-53.63992391782441, -26.251896034164307], + [-53.639897742609534, -26.25187005127454], + [-53.63973976531289, -26.251713227939785], + [-53.6395714308736, -26.25153355165462], + [-53.639444192901884, -26.251423061182948], + [-53.63936929519366, -26.251328325508126], + [-53.638913036779, -26.250947362395195], + [-53.637999833544754, -26.250315607109773], + [-53.63771821161428, -26.25011903725609], + [-53.63866454554842, -26.249133163187118], + [-53.640622856354426, -26.247095725835162], + [-53.64068912864667, -26.24710665458211], + [-53.6409153046805, -26.247151963715023], + [-53.6410699300212, -26.2471031351602], + [-53.641144638665764, -26.24696616694614], + [-53.64122981527055, -26.246594228804657], + [-53.641216413606934, -26.246460221918447], + [-53.64113503130173, -26.246240493327306], + [-53.64106178713836, -26.246045178694057], + [-53.641037371563826, -26.24593938283573], + [-53.64118385838954, -26.24578475836169], + [-53.64146869260832, -26.245605718382023], + [-53.64176980377465, -26.24540226335313], + [-53.64262430843104, -26.244865144414238], + [-53.6424696819705, -26.244669830085304], + [-53.6423964373965, -26.24438499549474], + [-53.64233133081494, -26.2440920238776], + [-53.64229063828522, -26.24379091317297], + [-53.6421929798088, -26.243546769654333], + [-53.64216856382381, -26.243351454838578], + [-53.642225530247856, -26.24318055370694], + [-53.6424371207887, -26.2429119950438], + [-53.642705680022594, -26.242749231117333], + [-53.64307189590389, -26.24243184289935], + [-53.64351135501523, -26.242106316411565], + [-53.64385315562058, -26.241748237304225], + [-53.6440159184683, -26.2415854747733], + [-53.644365857028646, -26.241211119643378], + [-53.64480531725962, -26.241129737039262], + [-53.645082015568256, -26.241194840973805], + [-53.645407541831226, -26.24121111574906], + [-53.6456679628192, -26.241219252771547], + [-53.645871416337854, -26.24117042303423], + [-53.64612369854948, -26.241015798164717], + [-53.646465500751944, -26.24078792899541], + [-53.64661401336523, -26.24145748312108], + [-53.64817445832792, -26.239771674090452], + [-53.650134827920695, -26.239213247027095], + [-53.6536600560952, -26.236447241165646], + [-53.65382083792711, -26.23453866147548], + [-53.65147186478733, -26.229180656813824], + [-53.650467504409065, -26.228370403954454], + [-53.64782473503995, -26.223629894091147], + [-53.6479223818521, -26.221111014926592], + [-53.644888212716644, -26.2178217508295], + [-53.64234146345957, -26.216518422963087], + [-53.64182881655335, -26.215637126297153], + [-53.643059119283066, -26.212852094027408], + [-53.64564350151029, -26.210626386434587], + [-53.649590200373765, -26.20920274637144], + [-53.65221214865933, -26.207397615438033], + [-53.65409709757749, -26.206098823016276], + [-53.65416042859453, -26.204305531635487], + [-53.65186626479234, -26.20224299918849], + [-53.651356141080704, -26.20118302759902], + [-53.65102371672954, -26.196565478042135], + [-53.65158523325245, -26.195140747624727], + [-53.65392420782027, -26.193841246510726], + [-53.65773259178001, -26.19364366238295], + [-53.658798707126834, -26.19309019866567], + [-53.660622501727474, -26.188276482154336], + [-53.661855719943546, -26.187343397994894], + [-53.664945170332366, -26.18693904064996], + [-53.665535169642936, -26.184572012578755], + [-53.66695061530761, -26.182500236283865], + [-53.670863089127394, -26.180008151864705], + [-53.67278503392674, -26.176690088276164], + [-53.67407263243698, -26.174468116532317], + [-53.67738170007846, -26.17154394457586], + [-53.67986470609076, -26.165205149344438], + [-53.682813880807366, -26.162802648484156], + [-53.683658845537494, -26.162510260468903], + [-53.6851434820702, -26.162759922803982], + [-53.68832207756062, -26.16165664346194], + [-53.6905733458994, -26.15907104729678], + [-53.700733474049215, -26.153453087048153], + [-53.70281680303792, -26.150270327800463], + [-53.70461641060852, -26.14612839407678], + [-53.706594206408546, -26.14386239878247], + [-53.708548547503995, -26.142553985113416], + [-53.70865745538932, -26.141786996077187], + [-53.707516816185056, -26.14002281119084], + [-53.70800635761835, -26.138199650243063], + [-53.7100263086132, -26.136598906471352], + [-53.71069563256528, -26.133216402606532], + [-53.71691093940802, -26.127168678316874], + [-53.71772093520266, -26.12713867530581], + [-53.72244788309079, -26.129932380292235], + [-53.72407453243408, -26.13003208116571], + [-53.72713635652316, -26.128722818359282], + [-53.73161966437182, -26.125363625236027], + [-53.73550203446547, -26.120567147058402], + [-53.73973033055291, -26.11833818934008], + [-53.741457641697515, -26.11897221657502], + [-53.741958974642166, -26.118782665793404], + [-53.74173658116214, -26.11579374608055], + [-53.743155741916624, -26.113307799987442], + [-53.74318223422062, -26.109418522783393], + [-53.73910931356573, -26.10352712987032], + [-53.738254338572645, -26.100485605544282], + [-53.738847913675414, -26.096538681247726], + [-53.73858089378103, -26.095241152876408], + [-53.74001425138899, -26.08986510713985], + [-53.739745653558984, -26.087925822086735], + [-53.73991344491551, -26.08436894719129], + [-53.73943115707714, -26.083690720321993], + [-53.738948869238854, -26.08301249245257], + [-53.73783890010446, -26.081451575355583], + [-53.737818500119005, -26.081251911528856], + [-53.73774597261543, -26.08054202814487], + [-53.73765304612655, -26.079632481934183], + [-53.73760384779138, -26.07959795313462], + [-53.73600646090852, -26.07847684864202], + [-53.73537880647067, -26.076686728854835], + [-53.73390794640285, -26.07608198563781], + [-53.73425404478196, -26.074358027184], + [-53.73427781832719, -26.074239610152922], + [-53.734309867714096, -26.074079968110844], + [-53.7343472799984, -26.07389361106181], + [-53.7346595167093, -26.073583500047402], + [-53.73501310738192, -26.073232315898647], + [-53.734991740083984, -26.072526702321273], + [-53.73477016890919, -26.071787152507486], + [-53.73399892791083, -26.071301552621236], + [-53.73367309718209, -26.07118031489587], + [-53.73335484278903, -26.070907529215845], + [-53.73326093787711, -26.070781925627227], + [-53.73305742490072, -26.070509715518686], + [-53.73288692927727, -26.06985048047505], + [-53.73269180895681, -26.069496236375155], + [-53.73279031385119, -26.06917609016306], + [-53.732735376313194, -26.068882464510686], + [-53.73253836037503, -26.068613466376394], + [-53.73177303894559, -26.06890520008979], + [-53.731289206195335, -26.068465813108062], + [-53.731056909880344, -26.06836125402537], + [-53.73067306664228, -26.068612552335363], + [-53.730189350333745, -26.06870819309336], + [-53.729772589458626, -26.06862673768748], + [-53.72942402544926, -26.068461930067727], + [-53.72916828582656, -26.06830848809615], + [-53.728937171480396, -26.06797697611913], + [-53.72906030288309, -26.067748700770558], + [-53.72906353262947, -26.067690555786733], + [-53.729018308289454, -26.067651791974285], + [-53.7289213998072, -26.067622720349867], + [-53.72864212544905, -26.067765029322466], + [-53.728557663340645, -26.067808068616614], + [-53.72799714200539, -26.067520236846956], + [-53.72774047547826, -26.067388436868267], + [-53.72776256067124, -26.067194079880178], + [-53.72732316650217, -26.06640845590009], + [-53.72725496802048, -26.06613756328585], + [-53.727395150402764, -26.065891295882523], + [-53.72735915564831, -26.06553515718944], + [-53.727186768121534, -26.065555995822326], + [-53.727097733126456, -26.065408236226087], + [-53.72722654795788, -26.065050202919284], + [-53.727457659867014, -26.064847505155694], + [-53.72751070103866, -26.064623971066293], + [-53.727482284348625, -26.06449515523484], + [-53.72739324814611, -26.064301930660537], + [-53.72759783853611, -26.064006411040886], + [-53.727847893591374, -26.063820763198486], + [-53.72801459693107, -26.0635441867109], + [-53.72824570753772, -26.063275186979524], + [-53.728406728098896, -26.063051652487434], + [-53.72866057160828, -26.062962616584], + [-53.728954197371245, -26.062678461626838], + [-53.729403160713886, -26.062617840981805], + [-53.72996199798626, -26.062454923976695], + [-53.73015143271034, -26.062244650372264], + [-53.73028972000796, -26.061981333984296], + [-53.73018931733883, -26.061475540604256], + [-53.73018931605142, -26.061193281741286], + [-53.730217730108464, -26.06096406474651], + [-53.730244731880795, -26.060892796680456], + [-53.730335573114765, -26.060653027458116], + [-53.73048000813949, -26.060325011078643], + [-53.731152237134246, -26.059573136936674], + [-53.731376313538576, -26.059265368250387], + [-53.73152209794979, -26.05902104282535], + [-53.73153154596196, -26.058796965898967], + [-53.73121432501449, -26.058401458273952], + [-53.73098619667139, -26.05806804428648], + [-53.73100374416218, -26.0579425072821], + [-53.7311981245982, -26.057884462585406], + [-53.73145594759829, -26.057680632722917], + [-53.73149509321611, -26.05756589463254], + [-53.73147214561009, -26.057451156773833], + [-53.731362805206345, -26.057229780289063], + [-53.731185971774735, -26.05705564903308], + [-53.73097944238385, -26.05691391387207], + [-53.73054478336065, -26.056375321754274], + [-53.73038009760648, -26.05590152159839], + [-53.73077708340505, -26.054446937824185], + [-53.73109212999783, -26.053669924026668], + [-53.73140717759066, -26.052892911229208], + [-53.73307505538563, -26.05152944867229], + [-53.732735216278066, -26.048484310418193], + [-53.734110307964734, -26.048864139106797], + [-53.7349513834395, -26.046768013989265], + [-53.73502206212812, -26.04510823853218], + [-53.734287150438, -26.0444407605963], + [-53.73521639276157, -26.04355790556103], + [-53.739160928377885, -26.04233120845104], + [-53.740079700739166, -26.043000797699584], + [-53.7417207507781, -26.042371008886924], + [-53.74288167396032, -26.041055263198338], + [-53.74385090628127, -26.04057950181574], + [-53.74448886785054, -26.041735976873642], + [-53.74399566853989, -26.042934677129153], + [-53.74377346882479, -26.044488583201233], + [-53.74484937739995, -26.045519466686606], + [-53.74676847014118, -26.045701559439934], + [-53.74787825347383, -26.04445969990566], + [-53.7479438567868, -26.042283612721562], + [-53.74824631011193, -26.04101957820963], + [-53.75268762026317, -26.038643443803043], + [-53.7541901063111, -26.04163456273854], + [-53.755268190645715, -26.04261121623978], + [-53.75682731218111, -26.0419368877521], + [-53.758130298082584, -26.040448858617587], + [-53.75768620220932, -26.037757420589312], + [-53.75618915393778, -26.036466871804286], + [-53.755904256222244, -26.034122300011962], + [-53.75873913962611, -26.031974322486974], + [-53.75995821461247, -26.031886993982283], + [-53.762179620738046, -26.035644642857836], + [-53.76406401298441, -26.036624360347563], + [-53.765067009036464, -26.035187226308153], + [-53.76806769481549, -26.032992398185662], + [-53.770298111519864, -26.03226574421842], + [-53.77162777890386, -26.031302051728613], + [-53.77103333763766, -26.02820423546514], + [-53.77154796915958, -26.026597490332303], + [-53.77234960637392, -26.025354948950163], + [-53.776599030788724, -26.02297505826088], + [-53.778848218908585, -26.022764595970745], + [-53.78056682091544, -26.02207039389786], + [-53.78024010349849, -26.02048219389711], + [-53.77720814096051, -26.01836633124969], + [-53.77690039477063, -26.016812451160337], + [-53.780818616266934, -26.015589980141126], + [-53.78290004429673, -26.014176911068606], + [-53.78332042128569, -26.0131855639872], + [-53.78200796188688, -26.01040262325154], + [-53.78034089870722, -26.00926280103069], + [-53.78193243279424, -26.008028620699616], + [-53.79296261810856, -26.00665479621823], + [-53.792685530363364, -26.00517410298152], + [-53.79181782328254, -26.003864959864167], + [-53.79259919919769, -26.0025735295844], + [-53.792953589999726, -25.99983819460928], + [-53.79448268214337, -25.99932497915654], + [-53.796150326137536, -25.999547577823925], + [-53.79656845592287, -26.00092646858399], + [-53.79768517916887, -26.0020761678495], + [-53.799151416595926, -26.002113413358693], + [-53.805265016751186, -25.996244805436536], + [-53.80117847933326, -25.990590640478693], + [-53.801041539736715, -25.989470298542404], + [-53.80251678636426, -25.985814892842143], + [-53.80409419003445, -25.984941492387915], + [-53.806231670722745, -25.98538755719221], + [-53.807738061734305, -25.986400504070453], + [-53.808183586272285, -25.988801169221237], + [-53.80942937315665, -25.990429340766855], + [-53.81401403932393, -25.990154589789093], + [-53.81548084749524, -25.991013958887617], + [-53.81672954226944, -25.990203185627198], + [-53.8178790485196, -25.990232618320793], + [-53.818014468381605, -25.98790311896925], + [-53.81904228372462, -25.986513465820558], + [-53.81945710721114, -25.983662595684688], + [-53.81909973451466, -25.982254959716276], + [-53.81737976504802, -25.983064258735677], + [-53.815852951084366, -25.98295491148889], + [-53.81348733609805, -25.981524835025848], + [-53.8144892930302, -25.98006477500911], + [-53.81681605573439, -25.97948915561034], + [-53.820097290511306, -25.976425250881686], + [-53.823213940798894, -25.975797253559957], + [-53.82720695066696, -25.97680308515459], + [-53.82879628871395, -25.976443923399057], + [-53.83385208884854, -25.974482091496256], + [-53.83651024493224, -25.972416300597573], + [-53.83690238045482, -25.97046887610229], + [-53.83531796691629, -25.968083248204938], + [-53.835370513255214, -25.965483744301594], + [-53.834044363588376, -25.9648413665718], + [-53.83054031457462, -25.964294829923038], + [-53.829321858039755, -25.964474827381395], + [-53.828294822831104, -25.9634789187089], + [-53.83017584744051, -25.960820194009287], + [-53.83520942559498, -25.95997934464045], + [-53.83631889576813, -25.95914747791297], + [-53.837121700318995, -25.956224772370422], + [-53.83942899764714, -25.955585580076388], + [-53.84001950994305, -25.954529256398047], + [-53.840209678977125, -25.94604566291167], + [-53.841128995096796, -25.9446927301547], + [-53.84087440644566, -25.943212138841897], + [-53.84226510772834, -25.940207903148707], + [-53.84235152503436, -25.93603423690484], + [-53.84343033073709, -25.93402524888075], + [-53.84190454894585, -25.93285017315787], + [-53.84096420653766, -25.9328383126715], + [-53.835126503361394, -25.932761384483076], + [-53.833870421532104, -25.932245451423654], + [-53.832794514578666, -25.930681760212664], + [-53.833796634804564, -25.928626720497167], + [-53.8342650798438, -25.92057307675303], + [-53.832956901105135, -25.92099671541902], + [-53.83186820667601, -25.922195956881527], + [-53.830237630345536, -25.92538124837803], + [-53.82654656897263, -25.929294297195188], + [-53.82382155185967, -25.929868694067967], + [-53.82095847207914, -25.92864573234498], + [-53.82001325743314, -25.926606421877516], + [-53.82037634851592, -25.924139981746233], + [-53.82075761100692, -25.9228487889652], + [-53.82373881232578, -25.918379002072044], + [-53.82335012909609, -25.91731342304843], + [-53.81965379380866, -25.914210137355862], + [-53.8191478358208, -25.912849239914383], + [-53.822012823611765, -25.9125350583983], + [-53.827548853227555, -25.9114071373338], + [-53.828500591963284, -25.9117025246413], + [-53.829624422310154, -25.91309751376148], + [-53.831133492017635, -25.91382950877476], + [-53.83367125008006, -25.916252399113496], + [-53.834320976551766, -25.916286540674857], + [-53.83510705153615, -25.91588666794368], + [-53.8357187129368, -25.912415836389098], + [-53.83380964801093, -25.91150922295441], + [-53.83383117828157, -25.908251644492623], + [-53.83256408217308, -25.907241043715995], + [-53.82368023220395, -25.905413514716578], + [-53.82231637396792, -25.904450546273107], + [-53.820373027693904, -25.89997018672873], + [-53.82082870352146, -25.898253037882544], + [-53.82450890834982, -25.89642789608421], + [-53.82922159001443, -25.896179878658103], + [-53.83385337775608, -25.896673582161956], + [-53.835881616674506, -25.896386144749624], + [-53.83598789087392, -25.894585508248625], + [-53.83530447335663, -25.893025883569294], + [-53.835543412960575, -25.89054932191014], + [-53.83812678483777, -25.888496925308647], + [-53.84506982186516, -25.889446855972675], + [-53.84772836875262, -25.889320592130417], + [-53.850696032909056, -25.88460920542194], + [-53.8499901024266, -25.88417521226855], + [-53.84363285765546, -25.884141422967602], + [-53.84003866830672, -25.883357628744122], + [-53.83972909765453, -25.88279584717638], + [-53.84065573264638, -25.88008534607392], + [-53.84007493010715, -25.878659442946038], + [-53.83689987099064, -25.878699236748112], + [-53.83459039086893, -25.879822211788483], + [-53.831496177665606, -25.879119109656475], + [-53.83053622328247, -25.87846538555413], + [-53.828279597474626, -25.875428970459424], + [-53.82451089220919, -25.873477474450723], + [-53.82434901730282, -25.872963678307524], + [-53.82558893245399, -25.871803478269182], + [-53.82914172136393, -25.87053949667649], + [-53.83321718254297, -25.87002792676431], + [-53.835460514360875, -25.870433062213863], + [-53.83718244968124, -25.869814891111904], + [-53.836565956985275, -25.86683819988576], + [-53.83281416330434, -25.86147135051216], + [-53.833025730411435, -25.86000570845265], + [-53.83439834152419, -25.859395290648965], + [-53.83520115431988, -25.859602907558944], + [-53.83925152294457, -25.861857727366804], + [-53.84242457653685, -25.86148570674265], + [-53.84391521690371, -25.860618977625947], + [-53.84572279842428, -25.85843561798501], + [-53.845066074602435, -25.857887015702453], + [-53.83970890291896, -25.857083269038647], + [-53.83761568754263, -25.85577392147789], + [-53.83685451353516, -25.855045540671803], + [-53.83510474691257, -25.851426684978613], + [-53.84091750286438, -25.84553531028472], + [-53.84113531290934, -25.8422851360909], + [-53.84292864258485, -25.840146019484795], + [-53.8440764456761, -25.84037020810394], + [-53.84861805671572, -25.84344038267982], + [-53.849857987009116, -25.843416395078243], + [-53.85082236835963, -25.84119418059761], + [-53.84991262176378, -25.83647964533189], + [-53.84509687660408, -25.831167051889096], + [-53.844919299707335, -25.828900324677594], + [-53.842620399474875, -25.82733808500243], + [-53.839176801170375, -25.827098726923374], + [-53.83706899460271, -25.826637835987462], + [-53.83647689012186, -25.825670439668727], + [-53.8367193756832, -25.82339514789754], + [-53.83922330078324, -25.817035196751753], + [-53.832706772686315, -25.814387609278683], + [-53.82833494762875, -25.814266975577883], + [-53.824146915557066, -25.816653076950473], + [-53.820893248614155, -25.817671801529528], + [-53.82015920812633, -25.817034531570663], + [-53.820197583888024, -25.813413169219444], + [-53.82273200564492, -25.81247572427284], + [-53.82426471016247, -25.811166041229853], + [-53.82801941899528, -25.810394254669053], + [-53.82929483051457, -25.809729605261865], + [-53.82820521366264, -25.8046455238279], + [-53.82372862633211, -25.802111855702616], + [-53.822830899946005, -25.800960793604645], + [-53.822444075262375, -25.798236134388677], + [-53.82301750085006, -25.794153258281], + [-53.823765631506625, -25.793268669942336], + [-53.826903939934546, -25.791564627139262], + [-53.82796887351931, -25.791522563207675], + [-53.83247359405135, -25.79297566676642], + [-53.840840957241824, -25.793095182639817], + [-53.842861874571376, -25.792469136446083], + [-53.84407676388232, -25.791364699483513], + [-53.84162344082027, -25.78951252351479], + [-53.83444858882642, -25.787393243204434], + [-53.833049731481445, -25.785979000098255], + [-53.83162881897963, -25.78255451906988], + [-53.83267087042781, -25.780286461327567], + [-53.8370414374265, -25.775308793578997], + [-53.84414474683585, -25.771381918168736], + [-53.84352286599225, -25.771239535547675], + [-53.847844257842105, -25.769813414218106], + [-53.85376647224588, -25.769249909514564], + [-53.85632007037179, -25.767942704685588], + [-53.85700913320797, -25.766924289635202], + [-53.85379227936552, -25.765271047401708], + [-53.85137096581088, -25.762836852601822], + [-53.85003862441678, -25.76091374050415], + [-53.84962343805928, -25.758944628025194], + [-53.847978469594956, -25.7583580014209], + [-53.84673231874906, -25.758482163982787], + [-53.841593442497405, -25.761788495404485], + [-53.8403206969639, -25.760895285569717], + [-53.84270101092237, -25.75414513409418], + [-53.84245388100183, -25.752583277786968], + [-53.839701967927915, -25.752507160030884], + [-53.83567266372404, -25.754290825087505], + [-53.83442845390243, -25.753754142967203], + [-53.83434072017134, -25.752330559998565], + [-53.83532036435931, -25.750273622386764], + [-53.84099366949759, -25.748073840442746], + [-53.846370601095124, -25.74598816153945], + [-53.84803581979852, -25.744617873045307], + [-53.84909596843906, -25.74171242855926], + [-53.850929483113674, -25.741977890627048], + [-53.85476374729572, -25.744335885230107], + [-53.859923814313966, -25.744954742777047], + [-53.86381164886789, -25.746023560816145], + [-53.86559677994148, -25.745086457659127], + [-53.866286994276955, -25.742848509215854], + [-53.86409140857408, -25.736654263457446], + [-53.86387545373911, -25.733756537705833], + [-53.8626531357359, -25.73072156375537], + [-53.85959593548217, -25.727957425473427], + [-53.85865419479214, -25.725436298223077], + [-53.8586229404597, -25.724056106027287], + [-53.86150920664168, -25.7202848662069], + [-53.86114646571563, -25.718588427398338], + [-53.86098492272777, -25.717830041375603], + [-53.86161090213674, -25.71765281314321], + [-53.86545859117939, -25.718201619602663], + [-53.867626804339885, -25.720977471175015], + [-53.868932233785806, -25.720942543350862], + [-53.870208425396974, -25.72030189593766], + [-53.87010167029105, -25.71858765319082], + [-53.86945447082491, -25.71721593827696], + [-53.86718365837014, -25.716229087191255], + [-53.86790253403606, -25.71492720517623], + [-53.87107185242145, -25.71430901273242], + [-53.872437831746026, -25.71442214361], + [-53.87429094105726, -25.71370794409456], + [-53.876562416944566, -25.7121293294601], + [-53.879289102893686, -25.708656374086452], + [-53.8762909651257, -25.707723219673145], + [-53.86740400905627, -25.707111532930004], + [-53.86592809204661, -25.706488251712553], + [-53.86492290994136, -25.70547544294421], + [-53.86523346528689, -25.70397731554127], + [-53.86695857751333, -25.702678166796094], + [-53.86803757620637, -25.699990122139848], + [-53.86934504440566, -25.698789858893797], + [-53.87279427090699, -25.69687024006902], + [-53.87365250083354, -25.695516994564816], + [-53.872985988288384, -25.694584869501643], + [-53.87154221002009, -25.694765942762142], + [-53.86676747187207, -25.697134756273496], + [-53.86093308436079, -25.70069752711501], + [-53.858149865872505, -25.7036555709528], + [-53.85831774915223, -25.70491855470104], + [-53.85725913855531, -25.707834917170054], + [-53.85551515265479, -25.708112121494462], + [-53.85131225030716, -25.7066627397885], + [-53.850369182459545, -25.70388158566608], + [-53.850901129281496, -25.700759831249222], + [-53.8533455920575, -25.69790719661496], + [-53.85464546521873, -25.694036986727706], + [-53.85484717878597, -25.692005298992584], + [-53.850276325454324, -25.69128848127578], + [-53.84343259950253, -25.690214353146335], + [-53.842567256340814, -25.688410808245038], + [-53.84351618441245, -25.68723837031515], + [-53.8512311872497, -25.68449332112142], + [-53.85409109408804, -25.683774078891375], + [-53.855903823613275, -25.684027723053312], + [-53.85923190360277, -25.680753404362072], + [-53.85968336456916, -25.679725706202746], + [-53.85801401289171, -25.67621273513441], + [-53.85523688858979, -25.674539178248345], + [-53.85726639793984, -25.67080415059682], + [-53.85864973794744, -25.66927818923706], + [-53.861096428857394, -25.66378421592024], + [-53.862041788703145, -25.662787667918387], + [-53.86212686867476, -25.65982249408242], + [-53.86362162776899, -25.65911891590163], + [-53.86626110837514, -25.658968806207806], + [-53.87143037253285, -25.65785324063102], + [-53.874180243054546, -25.65782133446698], + [-53.87298708441157, -25.655941853823894], + [-53.87598578893549, -25.65504898616943], + [-53.88420845527411, -25.658929074777912], + [-53.8875609599924, -25.66202783680524], + [-53.88878479843341, -25.662281520143882], + [-53.8900421697468, -25.661813988720166], + [-53.890570661644425, -25.660045160650334], + [-53.890093669687815, -25.65887133800685], + [-53.88834400173917, -25.656469821693634], + [-53.88581602172761, -25.654661632963947], + [-53.88462271208491, -25.65278224732557], + [-53.88315252850957, -25.64890954171058], + [-53.88170976467176, -25.647625691695485], + [-53.87911965533537, -25.648462148864983], + [-53.87676214350047, -25.64678121943265], + [-53.87620537222739, -25.644930281419533], + [-53.878949367634846, -25.641541258960345], + [-53.88026089461648, -25.640512395621496], + [-53.88167545581038, -25.64100820913766], + [-53.88511579887787, -25.64434360373086], + [-53.8869602653318, -25.645228753458053], + [-53.89059316401943, -25.644102281571744], + [-53.89362233059786, -25.644313034248412], + [-53.89556410190863, -25.643311571560293], + [-53.89514922719498, -25.640585216467095], + [-53.8927040598097, -25.635511349069848], + [-53.892568389551435, -25.63021890123003], + [-53.88931684698376, -25.62751117562386], + [-53.88870847301512, -25.62643473141535], + [-53.889149710013534, -25.625199311402326], + [-53.89095230639959, -25.62365529650678], + [-53.89309357899866, -25.623007857907695], + [-53.894566896551, -25.62331673829989], + [-53.90126407416033, -25.627797754255386], + [-53.902756143675205, -25.629641102802893], + [-53.908817787578855, -25.6326788818227], + [-53.909183259510435, -25.63526976916254], + [-53.909820842969054, -25.636208939326902], + [-53.91311657034918, -25.63661533091104], + [-53.914541299225675, -25.634143760879688], + [-53.91448584620199, -25.62951213142335], + [-53.91684566572721, -25.62956945765163], + [-53.916983383167064, -25.632005841910768], + [-53.919153268333254, -25.633242812245154], + [-53.92073644833441, -25.633343875326997], + [-53.92142550706605, -25.630302251311264], + [-53.91856822839244, -25.628153235985025], + [-53.918042803941375, -25.626238378899053], + [-53.91509798015345, -25.62279662254598], + [-53.916545712215445, -25.617010432105534], + [-53.91828814563846, -25.616859766728375], + [-53.92267717947662, -25.61785509196804], + [-53.923901425402555, -25.618442470135665], + [-53.92571291603061, -25.62095282715393], + [-53.928040817125996, -25.62249755774585], + [-53.930460990798714, -25.622987073528826], + [-53.93404445189273, -25.622887634297427], + [-53.94034873542863, -25.62143794366275], + [-53.94204295167217, -25.620174885023072], + [-53.94271062640397, -25.618929462180425], + [-53.94289974512723, -25.616942755488854], + [-53.9419039956031, -25.61515507308835], + [-53.94305915569508, -25.612498964155918], + [-53.94321064965379, -25.612149688771833], + [-53.94628713091616, -25.611817764536216], + [-53.9484562638533, -25.61234119122829], + [-53.948732731555594, -25.62006093827536], + [-53.95031373774292, -25.622651247093472], + [-53.9533211697091, -25.623861816321543], + [-53.95373874429428, -25.625444330966253], + [-53.95082061352177, -25.627317322837836], + [-53.94898729807105, -25.630196213173356], + [-53.94692654987732, -25.631532334138143], + [-53.94537200538995, -25.631965945684247], + [-53.94747827693451, -25.640441879558427], + [-53.95084349853739, -25.64439764005575], + [-53.951927624475665, -25.647757731320276], + [-53.95609944077994, -25.64746928797922], + [-53.95695772224261, -25.645130729985222], + [-53.960651361770594, -25.64504240631607], + [-53.96220611983112, -25.644292698925653], + [-53.963153753520835, -25.642379282383867], + [-53.96362247221614, -25.636845136469894], + [-53.96326551615698, -25.63511192168027], + [-53.96123404756789, -25.632341104635742], + [-53.960737704467, -25.630706237312406], + [-53.96106589336445, -25.628874807029064], + [-53.963597139371196, -25.625135694543754], + [-53.965288968239015, -25.621129148311546], + [-53.965233217913934, -25.614215572049876], + [-53.96687443287834, -25.612490043842243], + [-53.97501858037195, -25.615832448909966], + [-53.976711315563705, -25.614784725163318], + [-53.97767550695774, -25.6123485628323], + [-53.97815379446867, -25.6100928562126], + [-53.97803800302951, -25.606309736580364], + [-53.976593720659984, -25.605126108546177], + [-53.97490127609694, -25.605424613673268], + [-53.97295811144781, -25.605009940095325], + [-53.97131874004756, -25.60397065170903], + [-53.97032264705415, -25.60230050725828], + [-53.971237889059395, -25.600702956680166], + [-53.97720387673639, -25.595116453408227], + [-53.98017958065268, -25.59301365344647], + [-53.98970500216806, -25.589970810665395], + [-53.99082090891758, -25.589051057996873], + [-53.99142229691445, -25.58658498503215], + [-54.00110715317369, -25.581368663774214], + [-54.0039536674623, -25.57811988088278], + [-54.00883100227398, -25.56986197503822], + [-54.010742670747334, -25.56804475588104], + [-54.013453436433, -25.566324026708536], + [-54.016145323673925, -25.565408438190406], + [-54.02038275707664, -25.564890672728804], + [-54.02454772811988, -25.565460524971236], + [-54.026751270609246, -25.5663113633488], + [-54.02994441463396, -25.56851598634832], + [-54.0316657479528, -25.570811132764998], + [-54.035110138797855, -25.577220255644054], + [-54.03752172459526, -25.580418742021855], + [-54.04164672732738, -25.584498622569427], + [-54.04588541591411, -25.585796303135062], + [-54.05037649674985, -25.585846277407803], + [-54.054601989442546, -25.584074612615186], + [-54.05868917198266, -25.580603142223104], + [-54.06056623466137, -25.57842151037959], + [-54.06203824980064, -25.576432297942645], + [-54.06533066839158, -25.569150773499857], + [-54.06907431295782, -25.563290674639685], + [-54.0714405161806, -25.561076170997737], + [-54.07419018686426, -25.5595564965663], + [-54.077671870705245, -25.55906182787492], + [-54.080148183055805, -25.559675216341507], + [-54.08220022209715, -25.56121133890146], + [-54.08366446904973, -25.563179249420845], + [-54.08536308802226, -25.575607230576573], + [-54.089755504041115, -25.585302948127918], + [-54.09042194454419, -25.592649406784325], + [-54.08948437343428, -25.607503473470867], + [-54.09003260348373, -25.612400132853363], + [-54.09086083975499, -25.614918976441313], + [-54.093235741913894, -25.617992880969144], + [-54.09595022227019, -25.619744109924177], + [-54.0989721084135, -25.619886521577737], + [-54.10099941306147, -25.61891566552687], + [-54.10299622950126, -25.61725967495096], + [-54.11118025262401, -25.604380676218984], + [-54.121978523272844, -25.580772563430028], + [-54.12507507825141, -25.568441202414267], + [-54.124843774640354, -25.56516378001219], + [-54.123981910695676, -25.56030269379837], + [-54.12185131362923, -25.55638505581113], + [-54.11584791882923, -25.549290362925465], + [-54.1131042206501, -25.54470599456367], + [-54.1044604007313, -25.534280138235424], + [-54.09792563824512, -25.52320964937092], + [-54.094017530384015, -25.51380534784499], + [-54.09321883683587, -25.510075966773314], + [-54.09382491628105, -25.501487436034402], + [-54.09511932942791, -25.499414938314555], + [-54.09739236166268, -25.497277690993354], + [-54.10013163910148, -25.496161931402778], + [-54.10308011627807, -25.495494607798463], + [-54.10950797675837, -25.49622653852433], + [-54.11442967871775, -25.49866454394193], + [-54.12758952248617, -25.507846620140253], + [-54.1366902548196, -25.51581723204145], + [-54.14462231013098, -25.521346670564753], + [-54.14452390309733, -25.521414468895262], + [-54.146268148979246, -25.52249234582448], + [-54.149375198837056, -25.525846282463707], + [-54.150403247867715, -25.527725515632476], + [-54.15201792006505, -25.530078943361598], + [-54.15335349777031, -25.532757608956487], + [-54.15434971277362, -25.533768466704196], + [-54.15918332952941, -25.53998275536807], + [-54.16154257888457, -25.54157881671731], + [-54.16415135285268, -25.542234870636104], + [-54.16810188672894, -25.542510219751087], + [-54.17410077336759, -25.54183432472915], + [-54.17995890328801, -25.53956061708478], + [-54.18143041017314, -25.53885561497063], + [-54.183796209702024, -25.53739032492624], + [-54.18757421345489, -25.535562123805207], + [-54.190207595998565, -25.534781521393956], + [-54.191491022294606, -25.5347536706176], + [-54.1943474939363, -25.53537275661998], + [-54.19682640889035, -25.53568538419547], + [-54.19962270159386, -25.53658518126853], + [-54.20296046529197, -25.538176527944767], + [-54.206346413678695, -25.540545840018527], + [-54.207044499287846, -25.541474611909482], + [-54.20815399173687, -25.543821805497792], + [-54.208994965114016, -25.54679853874916], + [-54.20885174739909, -25.550282172404916], + [-54.209014446665854, -25.55286630240255], + [-54.20826211237963, -25.5551412149875], + [-54.205817988772175, -25.557970046598395], + [-54.20459756682609, -25.558910540653358], + [-54.20201637282807, -25.560213075599965], + [-54.19929553962755, -25.561356885153725], + [-54.198098944098824, -25.561709650436246], + [-54.193953339259004, -25.56247345051844], + [-54.19112764115859, -25.56283733488194], + [-54.183489223181475, -25.5651299771897], + [-54.180853742420645, -25.56630854140271], + [-54.179878857311564, -25.56724852554048], + [-54.176076054379436, -25.571929910237078], + [-54.17526113834701, -25.57342752347904], + [-54.17448413067352, -25.57431307390732], + [-54.17348394590174, -25.577113456144062], + [-54.17351737811724, -25.57890161406168], + [-54.17412899414216, -25.581310123486805], + [-54.17565466327206, -25.58392695538418], + [-54.17651171950616, -25.584648964794397], + [-54.179040939383505, -25.58534094897083], + [-54.18287380384534, -25.585829968381724], + [-54.184605619500246, -25.585757384946636], + [-54.19034665089946, -25.584999904888843], + [-54.200207489753296, -25.58253056734058], + [-54.201382177639545, -25.582052343204417], + [-54.20579618658353, -25.57956294703536], + [-54.20810211116923, -25.577717329404955], + [-54.208848799114115, -25.576696245162697], + [-54.21124206563803, -25.574771017249013], + [-54.21482013104652, -25.5725813380459], + [-54.21953980499888, -25.568321837690966], + [-54.22162773876648, -25.56668394876526], + [-54.224212133043316, -25.565001941005967], + [-54.22576324905638, -25.564267487599786], + [-54.22996226660611, -25.563404312354567], + [-54.23115743563644, -25.563385278892003], + [-54.23346448846512, -25.564020709912825], + [-54.2348200707901, -25.564606181521096], + [-54.23573793997134, -25.565271781723983], + [-54.23779621715104, -25.569919023494943], + [-54.23809697922051, -25.57102791976652], + [-54.23807934336803, -25.572175245209365], + [-54.23673519711448, -25.57644345492481], + [-54.23620906877683, -25.577649373240327], + [-54.235737941482235, -25.581025222171775], + [-54.23510601811486, -25.583625933126726], + [-54.2343236142287, -25.585125623243158], + [-54.23468086945645, -25.590188130156857], + [-54.235682672762664, -25.593456893629103], + [-54.23665338240059, -25.595061175120694], + [-54.237825524194136, -25.59632662204102], + [-54.23900306564077, -25.597291461103904], + [-54.24007249329579, -25.597944144741202], + [-54.24140639010194, -25.59842938947796], + [-54.24387579407667, -25.598750252047328], + [-54.24499568992587, -25.598747477850704], + [-54.247408101912114, -25.598454560966335], + [-54.250621940687594, -25.59772785531276], + [-54.251457212414536, -25.596814725678506], + [-54.25568141801709, -25.593305947752512], + [-54.25810504433917, -25.590880730987752], + [-54.25954484595146, -25.589704712230784], + [-54.26143095069082, -25.587339067449882], + [-54.26282135097843, -25.585909455016992], + [-54.26343609715678, -25.584823339305164], + [-54.26441035399264, -25.583829547194796], + [-54.26601389030645, -25.581144807649153], + [-54.2667702817177, -25.580222706316928], + [-54.27110090146669, -25.571829837669277], + [-54.27373673449612, -25.567201448319963], + [-54.274706185119065, -25.565944918373262], + [-54.27738536498674, -25.560808175142174], + [-54.27798819768524, -25.559845686409563], + [-54.27983002986939, -25.558053080487124], + [-54.28081934969992, -25.557267666208762], + [-54.28329560710523, -25.556584987299495], + [-54.28490714256846, -25.556348970386793], + [-54.28760389579897, -25.55634189227893], + [-54.2905998853782, -25.556625732888026], + [-54.29246405121648, -25.5571618186021], + [-54.29549542356868, -25.55846911851303], + [-54.29523688003622, -25.5585472694399], + [-54.30538300399242, -25.56275185605553], + [-54.32016273621504, -25.56703593620093], + [-54.32754821061893, -25.57144176601889], + [-54.328994834451464, -25.572730238869443], + [-54.33043543507969, -25.575075734156048], + [-54.33812686905867, -25.595601935849906], + [-54.33881788917366, -25.59707980342968], + [-54.34090444908578, -25.599216073392785], + [-54.34213258520664, -25.60401537510448], + [-54.34324186041025, -25.605854207907534], + [-54.346215334822254, -25.60786916159466], + [-54.348995298131534, -25.608693000670716], + [-54.35160334116795, -25.608929566719485], + [-54.3557426299618, -25.608181174549653], + [-54.359907371665976, -25.60564352728067], + [-54.36432440814186, -25.60133501205014], + [-54.367050212843175, -25.597471118942472], + [-54.36899634311902, -25.59585135751811], + [-54.37110341549977, -25.594790812175116], + [-54.3748252981744, -25.594772294166273], + [-54.37979645344794, -25.59569913891906], + [-54.38651715769454, -25.599247042603153], + [-54.38929805725647, -25.603409957783867], + [-54.389883616772465, -25.60592682016303], + [-54.389770299131186, -25.613960792079254], + [-54.38865837243324, -25.617701664172582], + [-54.3884661065685, -25.622901487978574], + [-54.391379059390495, -25.630727878592737], + [-54.39438133870602, -25.63531613168317], + [-54.398467781423314, -25.640051204592826], + [-54.404186888228594, -25.644235542639002], + [-54.40724095216352, -25.645643322309184], + [-54.41068668040032, -25.648568199641137], + [-54.42018600654276, -25.654136716592657], + [-54.42487972528988, -25.657762622794056], + [-54.42588041683895, -25.659094728255496], + [-54.426823238729284, -25.66402857089611], + [-54.426605291489906, -25.67219457909683], + [-54.424852528925655, -25.68099871474488], + [-54.423462703328234, -25.68517118464317], + [-54.42337638462236, -25.689215296681198], + [-54.426212959389055, -25.693786164355068], + [-54.430185716825, -25.69591286910691], + [-54.43374494271811, -25.696056678545567], + [-54.43502589051981, -25.695708954891078], + [-54.43741429361214, -25.694162799721763], + [-54.43885411257872, -25.69177639162284], + [-54.44127047115023, -25.68379241500523], + [-54.44293588639698, -25.67107628692344], + [-54.44563864570517, -25.66368710189119], + [-54.44832000743953, -25.659452688149102], + [-54.46179143711462, -25.643896863014945], + [-54.46535049019857, -25.641045829168853], + [-54.468214722872304, -25.637535295330288], + [-54.47210952385874, -25.63506755099555], + [-54.47763577357095, -25.63023846083501], + [-54.48261275013001, -25.627092616792027], + [-54.48424156096841, -25.626063622214005], + [-54.489578402638394, -25.62115257082075], + [-54.4960192003448, -25.616301672214394], + [-54.49937917404527, -25.615046378210828], + [-54.50108278199349, -25.61507575174152], + [-54.504213716848355, -25.61620142023467], + [-54.50613131903852, -25.617865598012568], + [-54.51127523047962, -25.619147508783886], + [-54.515109718400176, -25.62454993413712], + [-54.52002805931957, -25.626537293344366], + [-54.52213630925025, -25.628219530378903], + [-54.52482768852623, -25.6288922887835], + [-54.52757569657199, -25.62816930077864], + [-54.53533130822427, -25.62213037185414], + [-54.537495265574314, -25.618430604788085], + [-54.53715523058477, -25.615641772693145], + [-54.53427014286052, -25.607402146404148], + [-54.533916668808764, -25.601562397123768], + [-54.53447126445197, -25.598898458563188], + [-54.53604648299211, -25.597196614577488], + [-54.54144754594232, -25.595579931039826], + [-54.54766983972261, -25.591144833021577], + [-54.54952121395262, -25.589825218768087], + [-54.54988694461394, -25.589698543454936], + [-54.550660187012106, -25.589430719678568], + [-54.55382177172714, -25.588335661326575], + [-54.55405301214506, -25.588255567496187], + [-54.55655071292788, -25.587884123240382], + [-54.55797777259274, -25.588061212725425], + [-54.559020692732496, -25.58819063169472], + [-54.562025781728885, -25.58966566043828], + [-54.56481562450834, -25.591035036057647], + [-54.565281191141636, -25.59126355615816], + [-54.56667167273073, -25.591451342773247], + [-54.56740760150296, -25.59151033794658], + [-54.56951764845088, -25.59167948984158], + [-54.57091486874884, -25.59158182459635], + [-54.57568716942624, -25.591248243679438], + [-54.57629429725247, -25.59141425327826], + [-54.57934341144587, -25.59224798521749], + [-54.58081850031218, -25.59265132438207], + [-54.58258028351291, -25.593133056411872], + [-54.5836919576874, -25.59343702601347], + [-54.58995948356889, -25.592698684645807], + [-54.59027591947148, -25.592661407465933], + [-54.5929964686138, -25.593075547890905], + [-54.594218662654555, -25.592834997389623], + [-54.59387399800118, -25.584693850467765], + [-54.593859202342266, -25.584344374728683], + [-54.594061775319716, -25.5802794893405], + [-54.59424630890498, -25.576576575808996], + [-54.59430576561682, -25.57538349828216], + [-54.59432434196473, -25.575010751430007], + [-54.594581199123006, -25.569856576474116], + [-54.594927691318965, -25.562903746231914], + [-54.595071700519085, -25.560014022378187], + [-54.594916885366466, -25.559224943427836], + [-54.59410498559142, -25.555086778931965], + [-54.59410985092038, -25.554719673128513], + [-54.59413183836965, -25.553060733016665], + [-54.59414506582747, -25.552062741550902], + [-54.594170256177485, -25.55016204056847], + [-54.594183146751725, -25.549189485089098], + [-54.59419467279427, -25.54831980855465], + [-54.5942034247895, -25.54765945290819], + [-54.59420551707133, -25.54750162599267], + [-54.59420692158925, -25.547395668049404], + [-54.594238902610066, -25.54498260434122], + [-54.59424205752706, -25.54474456746866], + [-54.59426103169696, -25.54454989351068], + [-54.59443806195178, -25.542733594902955], + [-54.59460358571066, -25.54103534926976], + [-54.59498929483923, -25.537078031124647], + [-54.59631738847366, -25.53427787772909], + [-54.596798171445265, -25.533264193499946], + [-54.59722057501672, -25.532641909262995], + [-54.598020135312765, -25.531463997921616], + [-54.59904816883589, -25.529949501911403], + [-54.59936776085022, -25.52862831347404], + [-54.60006592895963, -25.52574210751889], + [-54.60053647962013, -25.523796864875354], + [-54.6006327621184, -25.52339883574372], + [-54.600857459613906, -25.522469942436448], + [-54.601088162112774, -25.519576651258262], + [-54.60111318675688, -25.519262816347297], + [-54.60124041986327, -25.517667162800617], + [-54.60116222289739, -25.51642485382529], + [-54.601084026931915, -25.515182543850052], + [-54.600866603346994, -25.511728324698947], + [-54.60074275590127, -25.509760760321765], + [-54.60065832646236, -25.50841941542793], + [-54.600527494485725, -25.506340882142066], + [-54.60064421062195, -25.505848592988368], + [-54.60095794761215, -25.50452530857534], + [-54.60110028233953, -25.503924970387953], + [-54.60122497134862, -25.503399054223884], + [-54.60147768931354, -25.502333137891316], + [-54.60156763587741, -25.50195375677292], + [-54.60159428345203, -25.50184136573788], + [-54.601620060040474, -25.501732641704038], + [-54.601883188839466, -25.50062281335777], + [-54.60224354308642, -25.499102906883774], + [-54.60249637505022, -25.49803650755128], + [-54.602189190217686, -25.496118335839473], + [-54.602107396599756, -25.49560758644876], + [-54.602064847237884, -25.495341894765655], + [-54.60201475963485, -25.49502912613879], + [-54.601998377110505, -25.494926829260862], + [-54.60196637008616, -25.49472696849928], + [-54.60171608407622, -25.493164091363486], + [-54.60152011080501, -25.491940369823045], + [-54.60148942352749, -25.487975307263433], + [-54.601488754129036, -25.487888850316676], + [-54.601467151264366, -25.48509755003459], + [-54.6019669731499, -25.48361333701207], + [-54.60282670090279, -25.48270805328752], + [-54.60312317894892, -25.48249982328702], + [-54.61207168833179, -25.476214881090396], + [-54.61641802779068, -25.472026415092078], + [-54.61785821405809, -25.469934318868084], + [-54.61812506890169, -25.468830888506382], + [-54.61839378671634, -25.467719758142184], + [-54.61941628179242, -25.46349180775687], + [-54.619515259495046, -25.461170898747316], + [-54.61964887059618, -25.45803787108418], + [-54.6197296781615, -25.45613652889659], + [-54.61973765032944, -25.455948950976747], + [-54.61979617422125, -25.454571944565153], + [-54.61846545550955, -25.452555599787996], + [-54.6084040570448, -25.446745686272426], + [-54.60360723637017, -25.44182160330301], + [-54.60038964097625, -25.43491859051342], + [-54.59757680232555, -25.42656326903738], + [-54.595339367560605, -25.422352393955784], + [-54.59245402306164, -25.416923689030483], + [-54.59021651838088, -25.411194439829508], + [-54.58860481648455, -25.404735094688558], + [-54.5885246928837, -25.400716737338335], + [-54.58790681592296, -25.398111400192185], + [-54.58340631742231, -25.39057307557465], + [-54.57985693100311, -25.38585801871298], + [-54.57279718732901, -25.37862548354559], + [-54.56963076401573, -25.37298704076114], + [-54.5654055320808, -25.368211036458302], + [-54.55902414842351, -25.36310821545754], + [-54.55207725310483, -25.35849557628765], + [-54.54234688289149, -25.349800131937002], + [-54.5342445150568, -25.336009708372973], + [-54.52604855765912, -25.32656012962183], + [-54.521688862144956, -25.319750432918546], + [-54.51868233496448, -25.315980599376825], + [-54.51419022279249, -25.312429825281], + [-54.508264999362865, -25.308558888739185], + [-54.50566053606558, -25.30578666410089], + [-54.50123575807034, -25.29934845138778], + [-54.498042312874624, -25.290621234360042], + [-54.49149012345593, -25.276145079194883], + [-54.491350181633635, -25.268760612941385], + [-54.49082205239614, -25.265556904750664], + [-54.488934817408946, -25.260094644938142], + [-54.48799206217411, -25.25520335026148], + [-54.486459673727545, -25.252031820807716], + [-54.48401789014936, -25.239526659081886], + [-54.48234806603512, -25.23364291768379], + [-54.47793895492783, -25.225133055019114], + [-54.475350166486315, -25.221408737815658], + [-54.471409685185705, -25.212721121483106], + [-54.46976705235313, -25.20642368120062], + [-54.46437638688619, -25.194987199825597], + [-54.45684891397464, -25.18570103418092], + [-54.44895886536198, -25.174070326189707], + [-54.44663117544898, -25.17203634401618], + [-54.44415771091965, -25.171087817769937], + [-54.44135099446728, -25.171519583983695], + [-54.438354999908185, -25.171177333338992], + [-54.437840409755744, -25.17041245568796], + [-54.43079736624953, -25.159941814825917], + [-54.43037271940697, -25.155384353976398], + [-54.43054512196621, -25.15024651623156], + [-54.43100311356875, -25.147360113154456], + [-54.431235025815575, -25.14590245911334], + [-54.43212478788541, -25.143690926049427], + [-54.43232527601467, -25.137540151772196], + [-54.4339412859642, -25.132078517840785], + [-54.438125189700706, -25.125993643710757], + [-54.441322401182696, -25.121929161112885], + [-54.4461220986787, -25.118238033344177], + [-54.4552385567888, -25.109458493397952], + [-54.459354702591625, -25.104561203859888], + [-54.46127045905389, -25.099885506384442], + [-54.46184691525858, -25.095254580866886], + [-54.458707275813666, -25.085415670121694], + [-54.45795946428722, -25.078918403584122], + [-54.458265153600166, -25.073165330708147], + [-54.46205180866081, -25.064538932526354], + [-54.46265438485554, -25.0618947927869], + [-54.46273403051771, -25.05750461098081], + [-54.46145879469745, -25.044602356033497], + [-54.45991961979905, -25.03949410264396], + [-54.45820601074375, -25.033805914228125], + [-54.45712277126917, -25.027327682917367], + [-54.45564938899967, -25.022754482973642], + [-54.45426169046191, -25.019627171891656], + [-54.45115461273461, -25.015267432882055], + [-54.4479365653952, -25.004560872865618], + [-54.44532226345889, -24.999331988508676], + [-54.44309900953587, -24.990664288639326], + [-54.44162861778134, -24.96391075317897], + [-54.44193435460387, -24.9580122793747], + [-54.44295761674131, -24.953676110034614], + [-54.44243020001041, -24.949623490272078], + [-54.4321548014485, -24.93055081101067], + [-54.43033306195959, -24.922546070245428], + [-54.42795825988953, -24.916851194219827], + [-54.42578997423944, -24.913579546066003], + [-54.423155928957726, -24.907800465037226], + [-54.41884608662828, -24.89489346318624], + [-54.4161748740767, -24.883416209474696], + [-54.41565139759496, -24.877813417545173], + [-54.41617814615453, -24.869622226194107], + [-54.41551764328433, -24.86652132036627], + [-54.410595318056636, -24.851112362130454], + [-54.410459614920896, -24.845967957509238], + [-54.40990577412593, -24.84302650919451], + [-54.40412603065713, -24.83022225962752], + [-54.40279461620407, -24.825666043071358], + [-54.40118226909026, -24.822304006879904], + [-54.40007117946914, -24.818223823244193], + [-54.39862731829343, -24.809038526679352], + [-54.396872140602625, -24.80451135465644], + [-54.393318794934174, -24.797694084514617], + [-54.391898145079296, -24.792192789798683], + [-54.390987248850436, -24.78554003084977], + [-54.38775911670386, -24.777449763205706], + [-54.385120821933526, -24.77196055994269], + [-54.38270829096275, -24.768761036574094], + [-54.37000165496862, -24.75867569377312], + [-54.36220797399319, -24.75015006505706], + [-54.35995458550278, -24.74693442509087], + [-54.358373439087394, -24.74368735067745], + [-54.3543965677521, -24.732202766583814], + [-54.351681940907895, -24.718729904955097], + [-54.35009535819011, -24.71403830634725], + [-54.34778940763686, -24.709694117176284], + [-54.341627132737415, -24.700152426960855], + [-54.339400692307514, -24.695771804507974], + [-54.33857620827231, -24.692717776200492], + [-54.338200909969544, -24.69132654333681], + [-54.33671032747674, -24.688209001496233], + [-54.33581592641302, -24.685199347417463], + [-54.33362864351845, -24.679760485393746], + [-54.33067654400464, -24.673834869425022], + [-54.32979142785765, -24.67125487207188], + [-54.3279043444834, -24.667080948248728], + [-54.32589750379715, -24.663153715724754], + [-54.32603025056664, -24.661393911205433], + [-54.326615694789375, -24.65365672431298], + [-54.325538768451246, -24.646349249246786], + [-54.32531243997371, -24.63905617006967], + [-54.31932319715955, -24.615084764019187], + [-54.31834069374806, -24.605369263912415], + [-54.31801727374482, -24.591098692895883], + [-54.31915152978167, -24.58011116378004], + [-54.32108484726115, -24.572079451143388], + [-54.32187803456279, -24.56878438006246], + [-54.322863603041, -24.565846397086986], + [-54.325203128419226, -24.56048240051787], + [-54.32721397012614, -24.55405649372751], + [-54.33015835877319, -24.545759734571696], + [-54.332766455711855, -24.540321897074374], + [-54.335596328853725, -24.53337856159937], + [-54.33642020902235, -24.530719805064674], + [-54.33822995074066, -24.521440448582872], + [-54.33840187230757, -24.518207153733368], + [-54.33835757981294, -24.514197035095673], + [-54.338019936073785, -24.510812307179854], + [-54.33802991752888, -24.50790437773974], + [-54.33758528833801, -24.50102515712949], + [-54.33300862805936, -24.488433159645183], + [-54.3318402021837, -24.48679353978268], + [-54.33089856303479, -24.482835926366896], + [-54.33027115084514, -24.480947738676825], + [-54.33032944265667, -24.479470630274538], + [-54.32958747986806, -24.473359386312186], + [-54.329193743154875, -24.47140477681012], + [-54.32792008919583, -24.468663932927935], + [-54.326489017306585, -24.46605703054198], + [-54.326280872644446, -24.464900989928953], + [-54.324103863440904, -24.461390160738734], + [-54.324124903074484, -24.460361823224996], + [-54.32353847925678, -24.458989916099995], + [-54.32035798044213, -24.455626524460563], + [-54.31698391256244, -24.451696507827315], + [-54.31654092344976, -24.450843382897297], + [-54.313396847242785, -24.446894743435866], + [-54.312641085352155, -24.445167435113973], + [-54.309582292273824, -24.442111410851535], + [-54.30738173670919, -24.438295222894144], + [-54.30653134085197, -24.43734268248991], + [-54.30509868830828, -24.436204431292932], + [-54.3045188258704, -24.43537772584075], + [-54.302438635219204, -24.433540172365518], + [-54.30159989717562, -24.43207027019884], + [-54.299946190627864, -24.430399752088103], + [-54.29907731618357, -24.429091497941435], + [-54.29713716468661, -24.42718317199391], + [-54.29267550924785, -24.423467782140655], + [-54.287086151744965, -24.41453615618323], + [-54.28457157068509, -24.411298008021305], + [-54.28173147155959, -24.405261705546966], + [-54.278099278656676, -24.39754215183673], + [-54.27777615138455, -24.39539224316581], + [-54.276331721473255, -24.39393955016401], + [-54.27574059563158, -24.39092613292622], + [-54.273901243272725, -24.38686861175514], + [-54.26793958424448, -24.376201676014265], + [-54.26502395459721, -24.372885341313193], + [-54.26081331146194, -24.3680977850676], + [-54.25963788610365, -24.365399475755822], + [-54.258994965778676, -24.361371298241004], + [-54.259011917744886, -24.35807959295218], + [-54.25904793592174, -24.35108268358951], + [-54.26362905470148, -24.33377314141976], + [-54.265813744927975, -24.328666582308557], + [-54.265867710547546, -24.326197269445366], + [-54.26732727394353, -24.32354943662025], + [-54.26714581998663, -24.32159063132933], + [-54.27000379401436, -24.311246444624945], + [-54.27039035418467, -24.306311823896316], + [-54.271779986992144, -24.3042806969936], + [-54.274218097354954, -24.29784097969996], + [-54.275793942245194, -24.294986102573798], + [-54.2779746853378, -24.292659157987746], + [-54.27880529584613, -24.290511619160945], + [-54.28528346739257, -24.2824725692102], + [-54.2909387570854, -24.27673070598039], + [-54.300670284261976, -24.269908066678695], + [-54.30792538489201, -24.26365591397767], + [-54.31663629829342, -24.257430185027705], + [-54.323325184896966, -24.251370779264672], + [-54.32487136096881, -24.247179265988553], + [-54.32500912872901, -24.2432697236262], + [-54.32404897048325, -24.240886498380213], + [-54.325018437521564, -24.23336747199565], + [-54.32532064448541, -24.23102127418896], + [-54.32381663720279, -24.219886255670154], + [-54.32380881169349, -24.21484395644799], + [-54.32884792987479, -24.20710942855958], + [-54.328809422851556, -24.20361103360763], + [-54.32945514839046, -24.202078433124196], + [-54.32888922645783, -24.197117681865322], + [-54.329036373144774, -24.192705213745167], + [-54.330054790507724, -24.186856253280347], + [-54.331066059555766, -24.18399297521196], + [-54.33429829785337, -24.179520497047978], + [-54.34336906821151, -24.163628479169176], + [-54.34336505679167, -24.147771945862193], + [-54.34375621809478, -24.14613782935291], + [-54.34495882857293, -24.141111717789094], + [-54.341573082454445, -24.1313794902591], + [-54.33855453357945, -24.125664003207376], + [-54.33788586318096, -24.12277277818453], + [-54.33380938456975, -24.116730890094352], + [-54.33195048234902, -24.114537419952065], + [-54.326606138043644, -24.1102234134487], + [-54.30713031805698, -24.09866313444597], + [-54.30507260468356, -24.096106781192944], + [-54.29965054291931, -24.089371426231803], + [-54.29163536640774, -24.076364223913615], + [-54.28634998405776, -24.069375309565956], + [-54.27724988503358, -24.062729925634155], + [-54.27384294161936, -24.061324988419468], + [-54.26397492270157, -24.05823214711161], + [-54.26034173564709, -24.057384939820604], + [-54.26018866414798, -24.057382186367803], + [-54.260188348148226, -24.05738249036877], + [-54.25575287668194, -24.057302391225043], + [-54.24994811428545, -24.056376624411303], + [-54.245788397905336, -24.05444854526618], + [-54.245191101700016, -24.05397618406202], + [-54.22105013339254, -24.043145426880045], + [-54.16967203103821, -23.999563979874218], + [-54.169491802701565, -23.999469444586396], + [-54.169491754701326, -23.999469420586642], + [-54.16657325248154, -23.99793870020099], + [-54.15365692154865, -23.992390259472945], + [-54.14073988464569, -23.988878074990783], + [-54.13313830377958, -23.984667572089066], + [-54.13019213666542, -23.982583574597637], + [-54.120767944251114, -23.97460451207443], + [-54.11803182382481, -23.971804137200223], + [-54.117965717505314, -23.971706516587304], + [-54.11751013038406, -23.971302607757973], + [-54.101726661227374, -23.951937454705934], + [-54.10081418925015, -23.94933902813515], + [-54.09852760728279, -23.94439589926767], + [-54.09681679399449, -23.937954194740847], + [-54.080419519142794, -23.891227526555664], + [-54.08056190181315, -23.890167464646513], + [-54.080388649990155, -23.8894538004852], + [-54.07989262428488, -23.881231530454333], + [-54.0831929568779, -23.867755178769258], + [-54.0836926074375, -23.86685642119001], + [-54.08394737628237, -23.86495922304686], + [-54.08806671021623, -23.84450495727393], + [-54.087654038087884, -23.84339794726543], + [-54.08752475075536, -23.8431753861768], + [-54.087304428643215, -23.842460087097855], + [-54.083060752319746, -23.831074680422446], + [-54.086022932678496, -23.8251357230155], + [-54.08388337210567, -23.806930279523577], + [-54.08356742678568, -23.805467779253664], + [-54.07567048763487, -23.764460048685873], + [-54.07317445376544, -23.760196947247497], + [-54.07286313430369, -23.759705419450814], + [-54.072826207046724, -23.759602130738056], + [-54.06309083255682, -23.74297097913875], + [-54.06244768646313, -23.742256099833174], + [-54.05791610381165, -23.73537598019595], + [-54.05540935020164, -23.731078201153107], + [-54.05416172648758, -23.728460237849074], + [-54.05347783523713, -23.726543543191458], + [-54.052599915262086, -23.725043020850304], + [-54.05248437772521, -23.72215747820371], + [-54.05238189269885, -23.72161236055849], + [-54.052436306225104, -23.720956800983224], + [-54.05108358463467, -23.687147201589106], + [-54.0445691709567, -23.668631643148434], + [-54.03807994361525, -23.659723446406584], + [-54.03508573236966, -23.65636802705852], + [-54.033237984202515, -23.653075498464393], + [-54.03219076520122, -23.651637560431748], + [-54.03203733636826, -23.64938378202881], + [-54.031340989330076, -23.64653977408103], + [-54.031448570399, -23.640733795698665], + [-54.030597392158995, -23.628224694137078], + [-54.02736835065682, -23.60765640633817], + [-54.02668771430435, -23.604864080351362], + [-54.023913542503486, -23.59774144559337], + [-54.023635795866454, -23.595104075890237], + [-54.02432608112414, -23.58826951161407], + [-54.023978597762046, -23.58605465758826], + [-54.01928998575209, -23.574432634684765], + [-54.01830586719266, -23.573053785528792], + [-54.01827275275623, -23.57297221668483], + [-54.014384536526556, -23.563394785006334], + [-54.01319038125478, -23.562038707832805], + [-54.00896789301826, -23.549514618780577], + [-54.00844315194308, -23.54753595627902], + [-54.00730897691991, -23.544722775128964], + [-54.00629238686479, -23.53334020134939], + [-54.0056957782192, -23.528727723568327], + [-54.005669314244614, -23.526362131724852], + [-54.00430308315805, -23.511056736180926], + [-53.99799448444446, -23.496063847129122], + [-53.9972729447906, -23.494975593659742], + [-53.995145724528726, -23.49088167406817], + [-53.991431402790475, -23.480461658651596], + [-53.98149934125676, -23.456841785784125], + [-53.98146799067256, -23.45681209066757], + [-53.964645436884076, -23.444696292159147], + [-53.96416597777, -23.444475202199783], + [-53.96242214713675, -23.444183135358237], + [-53.960678317503124, -23.44389106951601], + [-53.96066926047912, -23.443892144546695], + [-53.96045235090465, -23.443917875281816], + [-53.95140642894013, -23.44499094193407], + [-53.94123470538356, -23.44679421409517], + [-53.932535709652434, -23.44642501224383], + [-53.925595760622485, -23.443626384519565], + [-53.91502635459322, -23.43794335668842], + [-53.91492326532504, -23.437866786714782], + [-53.879523149491085, -23.42116628974741], + [-53.87707473645736, -23.42026486875201], + [-53.875030025549, -23.41890639009948], + [-53.84316017997023, -23.400946839054868], + [-53.83707546074812, -23.398043205640693], + [-53.82971377744983, -23.393504435025267], + [-53.826840167865925, -23.392365386406997], + [-53.82502997154426, -23.391956148798023], + [-53.82258851234179, -23.389575066293048], + [-53.81650185640442, -23.38612153976685], + [-53.8135373714877, -23.385081971672914], + [-53.79957443714548, -23.38199786055355], + [-53.79066878643738, -23.380415244781403], + [-53.790668718436415, -23.380415059781715], + [-53.78458351881651, -23.37803930369096], + [-53.77644128733526, -23.375814787540744], + [-53.77596724401987, -23.37560824025647], + [-53.771586479259796, -23.37260687062527], + [-53.76684282638718, -23.368609802695882], + [-53.76308424344364, -23.36058948962541], + [-53.762203812787064, -23.35931905876309], + [-53.74957112244705, -23.34341936644731], + [-53.748964363104704, -23.342759070798152], + [-53.741803455145295, -23.336115351292698], + [-53.73460065451406, -23.325812525622414], + [-53.731606519711015, -23.320799803567795], + [-53.73080339879587, -23.319788331238588], + [-53.730258078458434, -23.318542112008654], + [-53.72570037531224, -23.310910437841294], + [-53.72014872595051, -23.298086994677856], + [-53.716366556451625, -23.28678615042568], + [-53.71486792859878, -23.283359178120307], + [-53.712814660436095, -23.278174372993604], + [-53.7118086931655, -23.275457658963237], + [-53.709261046005054, -23.27091209926048], + [-53.706075948562436, -23.263729567391643], + [-53.70544904526782, -23.258596053897556], + [-53.705448693259775, -23.258594312899643], + [-53.70527750119464, -23.257747884380336], + [-53.70371006276858, -23.25206430021885], + [-53.69351535413023, -23.221369082859265], + [-53.67269567451172, -23.187011016224126], + [-53.66984206410258, -23.18473818837978], + [-53.668478370311924, -23.182827385857934], + [-53.668591766824434, -23.181597804039416], + [-53.666813976662425, -23.17730054593186], + [-53.65981565969159, -23.165744232729924], + [-53.65986525107193, -23.16456332605474], + [-53.659508775366156, -23.163286417057655], + [-53.65999734573782, -23.161417818751026], + [-53.660290444664135, -23.154438542946103], + [-53.64267165250406, -23.132069517735665], + [-53.63951528457069, -23.12933963185818], + [-53.63730241839409, -23.125876356433128], + [-53.63654865959003, -23.125008964502406], + [-53.6349874629777, -23.096095819860206], + [-53.63455040265946, -23.09299409306006], + [-53.634145249000284, -23.082926952989958], + [-53.63272213992522, -23.070745410293057], + [-53.633164732056926, -23.064798623505805], + [-53.632359023895496, -23.052090248971183], + [-53.632508998215336, -23.050143790738225], + [-53.631993638988384, -23.040580862194687], + [-53.63192197272386, -23.039845026987532], + [-53.631902057147855, -23.038881198479178], + [-53.630862870036424, -23.019588942942065], + [-53.63059465334291, -23.01850302410418], + [-53.63037381903365, -23.013982249891104], + [-53.63053544124366, -23.013508012614018], + [-53.63044154562466, -23.011764002385554], + [-53.63396029628625, -23.00336920580877], + [-53.63408467747403, -22.99847361984409], + [-53.63341672519164, -22.9975440943772], + [-53.63290551444299, -22.99692833414243], + [-53.62881324831636, -22.991424223325613], + [-53.62223292290568, -22.98197813076852], + [-53.6165973230229, -22.974132516804048], + [-53.61523573532517, -22.97076105499348], + [-53.61319766121043, -22.966565102740898], + [-53.6126238637731, -22.964293157182443], + [-53.607383020831385, -22.95131273092296], + [-53.590533887759086, -22.937270355027696], + [-53.58978729781874, -22.93671451124096], + [-53.584870659891685, -22.934471385626665], + [-53.57591337019678, -22.932164996491093], + [-53.57124871936478, -22.928969488445404], + [-53.570903187460665, -22.928543123775185], + [-53.57073072118097, -22.928471055400355], + [-53.56073982554817, -22.916142570237067], + [-53.55940220043946, -22.905940729935864], + [-53.546977284054705, -22.89031628990807], + [-53.54625296953271, -22.889744180539168], + [-53.536096844719786, -22.88342237053631], + [-53.53440623084444, -22.882545938439485], + [-53.53152502000471, -22.881530660445257], + [-53.524059345234136, -22.880586559622802], + [-53.515713133885704, -22.87734677871475], + [-53.512617465663176, -22.876145398500736], + [-53.50361805781536, -22.872262491014013], + [-53.485238176313416, -22.864332260311727], + [-53.471479146783565, -22.85578297151844], + [-53.45133409498194, -22.842414953827138], + [-53.43012743374325, -22.833433588636044], + [-53.424179515439974, -22.82772890667552], + [-53.4221779733486, -22.826715751702796], + [-53.419955261990665, -22.82502815174474], + [-53.41219139193129, -22.816148790089997], + [-53.41092026088609, -22.814399048103517], + [-53.41036593483879, -22.81384917432709], + [-53.39999033857568, -22.807502571004374], + [-53.39920606644495, -22.807205225612986], + [-53.380261889850374, -22.8049132288637], + [-53.378008610267976, -22.80371253877299], + [-53.37292442851769, -22.799005323452935], + [-53.369610250607224, -22.792810540935623], + [-53.365432612591334, -22.78595063420423], + [-53.363797405048466, -22.783609310121367], + [-53.36371455908796, -22.783531656896944], + [-53.35618237256429, -22.77847291537437], + [-53.3561711812355, -22.778468317036737], + [-53.35251173907944, -22.776159073000436], + [-53.3382809185784, -22.77082648785967], + [-53.329562530957865, -22.76568926054408], + [-53.327840237151456, -22.765043623450115], + [-53.31129463087512, -22.758844613325277], + [-53.24738864335629, -22.73609763204928], + [-53.24460449994594, -22.735176514504218], + [-53.24047381343972, -22.733949896455613], + [-53.24047381843896, -22.73394968745567], + [-53.23885072156078, -22.733467914936615], + [-53.23759569793503, -22.733203797616405], + [-53.221831919241666, -22.731557496060464], + [-53.219090672340776, -22.73171659296887], + [-53.215529616814095, -22.73240075428175], + [-53.2124910814923, -22.732442701150248], + [-53.20719636931664, -22.73173931765317], + [-53.199475082179674, -22.728812298925597], + [-53.19400314884149, -22.7258258378983], + [-53.189366168556624, -22.722426265314212], + [-53.185841891450835, -22.719212821035843], + [-53.18143516649542, -22.714113590364178], + [-53.18143542449407, -22.714113039363617], + [-53.18131708310971, -22.713937610040183], + [-53.18091927780593, -22.713613405004335], + [-53.15969133692169, -22.689113904180342], + [-53.15936217290417, -22.68892730288411], + [-53.14808364179426, -22.67856053147678], + [-53.14363766768507, -22.672098798393474], + [-53.14269434146909, -22.67122601878679], + [-53.1393790156266, -22.66655805833466], + [-53.13187426234168, -22.656991072494396], + [-53.12783874326139, -22.65232914098882], + [-53.127108557944986, -22.65135058895293], + [-53.12511858934808, -22.648989834269518], + [-53.12145684886027, -22.643893437073984], + [-53.12063801854401, -22.64267833661386], + [-53.10557863184189, -22.622489094980917], + [-53.10183091510591, -22.626086971283275], + [-53.0950573691678, -22.63845808736024], + [-53.09197889321795, -22.645328340646085], + [-53.09013254068711, -22.65342087949156], + [-53.0882616394077, -22.658924144413124], + [-53.08826120841114, -22.658925412414053], + [-53.085778541387135, -22.657249859065857], + [-53.08441789779468, -22.655553594105104], + [-53.07519861269009, -22.64182022908274], + [-53.06955282924025, -22.638388907581003], + [-53.06383431107481, -22.636166348843737], + [-53.05758745049233, -22.63373844387716], + [-53.05627266401005, -22.63310226935039], + [-53.04565051938936, -22.62494099161695], + [-53.0391942118391, -22.618665883746033], + [-53.039000037077805, -22.618893164284252], + [-53.03128161973469, -22.60889099785496], + [-53.024991112404074, -22.604677747638988], + [-53.020310410338304, -22.60214000361609], + [-53.01451367265339, -22.600105440979217], + [-53.01214749016783, -22.599274652880926], + [-52.98533282704726, -22.57682950816771], + [-52.972899250433784, -22.5709645721235], + [-52.947997996097584, -22.568426214657446], + [-52.92847926559425, -22.566437244709523], + [-52.92847930659169, -22.566436539709667], + [-52.92521672213679, -22.566103962242682], + [-52.90583656865158, -22.572687329682967], + [-52.8588368539333, -22.608481184687314], + [-52.85524706481757, -22.608805955010453], + [-52.84533612387571, -22.609701989263996], + [-52.829534428927374, -22.60316236487321], + [-52.829534382923505, -22.603161380873726], + [-52.81591354018295, -22.597523483172857], + [-52.78333801974955, -22.602542048917684], + [-52.783312393696605, -22.602549678996336], + [-52.78047884383962, -22.60339345070019], + [-52.77583541448811, -22.604844264938762], + [-52.77561420912106, -22.604934761609577], + [-52.77561384012052, -22.604934909610712], + [-52.764785104227705, -22.609117111534868], + [-52.76478437022614, -22.609117307537172], + [-52.76478437822646, -22.609117391537104], + [-52.750775537577596, -22.612849381695796], + [-52.745414602400935, -22.61633690950391], + [-52.740131897873304, -22.618574382490603], + [-52.73289596464015, -22.62312566988047], + [-52.727377957669525, -22.625722896488945], + [-52.72290288401083, -22.62723305215974], + [-52.718469458815726, -22.628017506942992], + [-52.71569242835216, -22.627569151893486], + [-52.70872501379532, -22.628542497635443], + [-52.70824649116944, -22.628513664160785], + [-52.70216822251447, -22.628147412532428], + [-52.69757898950957, -22.627487255283484], + [-52.690473585210306, -22.624837318660312], + [-52.67814193996912, -22.618822510675194], + [-52.66351101292773, -22.612398540048687], + [-52.66351040592435, -22.61239813605069], + [-52.66350713990872, -22.612396702061464], + [-52.65642417712742, -22.60767977299154], + [-52.65167183422088, -22.603086862510438], + [-52.64463789033545, -22.598020452373593], + [-52.63335675916414, -22.59301338058944], + [-52.63055599001571, -22.591030354066437], + [-52.62042210541832, -22.58078846633556], + [-52.61183053581558, -22.57495254727902], + [-52.61038838177399, -22.574279207035676], + [-52.60743577874311, -22.573830224470633], + [-52.604781489931646, -22.572631711208814], + [-52.600353982779765, -22.57014291793887], + [-52.59493062510617, -22.56893095338127], + [-52.58981748726653, -22.566577635210848], + [-52.58539587859369, -22.56641420715658], + [-52.58180083940747, -22.567861386985257], + [-52.57624712041751, -22.572454679956202], + [-52.57201935266512, -22.58337666173694], + [-52.567601810682476, -22.589728481583528], + [-52.56361214008853, -22.593889209789108], + [-52.55435966916391, -22.601205771524718], + [-52.54960041470415, -22.608007163312905], + [-52.545850267062576, -22.612224631754977], + [-52.539411572050376, -22.616231579711], + [-52.538283540337076, -22.616477713176337], + [-52.52977979720329, -22.61814881135418], + [-52.523967297701894, -22.620377781901233], + [-52.521277563067635, -22.622296781741383], + [-52.51225417008559, -22.63080091839687], + [-52.50710024600102, -22.633946279588994], + [-52.5051250496503, -22.634491751617563], + [-52.5031495982971, -22.635037014646663], + [-52.499296559752565, -22.634711276838573], + [-52.49574636623096, -22.63357480133053], + [-52.49060531186143, -22.631133186214424], + [-52.479431397259965, -22.62459613426766], + [-52.47396466998839, -22.61998782081758], + [-52.46810710802571, -22.616359654278614], + [-52.45552045255976, -22.611102153283763], + [-52.45202125037837, -22.610013090562592], + [-52.44797948326875, -22.609148854466582], + [-52.446165208038224, -22.608761232257805], + [-52.446165074036536, -22.608760886258313], + [-52.4411825651753, -22.607695494159476], + [-52.438102386956494, -22.60732972789818], + [-52.43351853338144, -22.607648000125902], + [-52.426977007671496, -22.609392336034627], + [-52.42184343827389, -22.61107982455966], + [-52.41317329569732, -22.613929317776133], + [-52.40584893621474, -22.617547319555836], + [-52.40322361194735, -22.618427598487113], + [-52.396190082824425, -22.620785062733912], + [-52.39237862426422, -22.622642760072797], + [-52.38096338632313, -22.62702652138108], + [-52.370940084513016, -22.62938241794258], + [-52.369083665100014, -22.62981855460189], + [-52.35921438954762, -22.62990030134299], + [-52.34986893194612, -22.631165832090826], + [-52.34238168332628, -22.63159871828542], + [-52.335884937500886, -22.633307190016534], + [-52.32740768321525, -22.633616254315946], + [-52.319934581739055, -22.635748106952786], + [-52.31360838076818, -22.63699432927369], + [-52.30584692974976, -22.637298929325627], + [-52.304133949557624, -22.637119239704056], + [-52.30090795781825, -22.635926886077197], + [-52.29672388282178, -22.633303386836765], + [-52.2911524594581, -22.62904730536891], + [-52.29043281792425, -22.62871284870018], + [-52.290432468922006, -22.628712551701415], + [-52.29043282892102, -22.62871194570041], + [-52.28910393655875, -22.62758412815114], + [-52.287915372079894, -22.626575405131355], + [-52.27916691823547, -22.62087222892135], + [-52.27391072923013, -22.620042150469363], + [-52.27131094989603, -22.619231502765984], + [-52.26112456147475, -22.61688722502384], + [-52.25088524677931, -22.61590847304036], + [-52.247565569080315, -22.6170394990097], + [-52.240604139450475, -22.620365728645663], + [-52.23554960786258, -22.62616169668264], + [-52.231330402322435, -22.634002323564133], + [-52.230072151878645, -22.639192625014232], + [-52.22857079567596, -22.64299906460495], + [-52.229263201188374, -22.649472878652723], + [-52.228852322374195, -22.656850761867595], + [-52.22901797056506, -22.665096197052375], + [-52.22784853931737, -22.671366168930007], + [-52.22485329061569, -22.67499171721148], + [-52.22485033461895, -22.674995293219606], + [-52.223049476437126, -22.67601796452166], + [-52.218991363528126, -22.675267887318658], + [-52.21563295349537, -22.67301617235955], + [-52.21404543525714, -22.672440611441793], + [-52.20996020624784, -22.667793017393997], + [-52.20593668997748, -22.664406202799377], + [-52.201539666848355, -22.661396049252], + [-52.197653887073244, -22.65941249183287], + [-52.189269557613905, -22.65686175549027], + [-52.183243121403954, -22.655863797412827], + [-52.167321587398554, -22.650808043029514], + [-52.16396717410435, -22.649311819803266], + [-52.157149917159686, -22.645201298979142], + [-52.156183636046215, -22.641860161866287], + [-52.15732590432544, -22.62916426176843], + [-52.1601245451296, -22.62209035204131], + [-52.16240924917888, -22.61135727189348], + [-52.16302755142645, -22.606108835405927], + [-52.16299276660986, -22.603673859172147], + [-52.16299283460991, -22.60367382917196], + [-52.16296409031129, -22.601657803806056], + [-52.161437159462075, -22.589933228684963], + [-52.157343696837735, -22.577796496576553], + [-52.15280786228148, -22.569715845723103], + [-52.15242791863396, -22.569038970075056], + [-52.14923350447715, -22.54973594509263], + [-52.14804666768644, -22.546944686492164], + [-52.14508025735308, -22.5430939146467], + [-52.143825004363585, -22.540026455327187], + [-52.14382494136292, -22.54002629932742], + [-52.142569418376354, -22.53695911100742], + [-52.13935229540431, -22.531747701286687], + [-52.13602566314629, -22.52739704566699], + [-52.128073639512614, -22.520405520943918], + [-52.12302063626944, -22.51847544096354], + [-52.119092668417125, -22.517317512321682], + [-52.11251129743992, -22.516859606629613], + [-52.10968375097412, -22.516777710322017], + [-52.10632324336928, -22.517144456529355], + [-52.10004438312995, -22.51859426439688], + [-52.090088157924605, -22.521732507088426], + [-52.07950951910258, -22.526684288208383], + [-52.0699042470923, -22.53380077278429], + [-52.06526328859842, -22.536229223369606], + [-52.06051899631138, -22.538248279376408], + [-52.05653963208054, -22.539299738289056], + [-52.05444421415996, -22.539554709638093], + [-52.052349069236186, -22.539808746985997], + [-52.04654474062537, -22.539892775727942], + [-52.042873538715696, -22.53962522902903], + [-52.03493176728522, -22.53947071536075], + [-52.03339511789992, -22.53964692601522], + [-52.030006742768045, -22.53990539731047], + [-52.02882321622861, -22.539995678906156], + [-52.02582891127294, -22.540224090002408], + [-52.013122207738114, -22.54217906334266], + [-52.00306609336557, -22.54598294110742], + [-52.0010409366913, -22.546248453226273], + [-51.99868156643217, -22.546091862470757], + [-51.99732370756824, -22.546536223506145], + [-51.994374058107795, -22.54941412379449], + [-51.99165425171008, -22.551249573641638], + [-51.977734825056416, -22.556583132807987], + [-51.97085759244463, -22.560229830893846], + [-51.96873341226429, -22.560731063251684], + [-51.961345827416494, -22.563939425000317], + [-51.95601587392009, -22.565343063913154], + [-51.952546433464356, -22.565600415430705], + [-51.94751112495737, -22.566730410507688], + [-51.940983580431514, -22.5678258001393], + [-51.93484722568551, -22.571897351852833], + [-51.931452053728776, -22.576480514089557], + [-51.927680479306986, -22.57845018910694], + [-51.92678916771263, -22.579393662595077], + [-51.92522332103883, -22.58037536012963], + [-51.92125765298714, -22.583482032464293], + [-51.917292429931116, -22.58658835579824], + [-51.909969029132164, -22.595160996053302], + [-51.90199947450931, -22.6024070076005], + [-51.89937447443988, -22.603417010356164], + [-51.89509804452057, -22.607992253293325], + [-51.89370766963995, -22.609039088279513], + [-51.89259458987576, -22.610143704407452], + [-51.890647044849395, -22.61365170550663], + [-51.89051516925381, -22.613889244851975], + [-51.88237449906259, -22.621429741862237], + [-51.87944371443186, -22.62483623398417], + [-51.8741339395669, -22.62869947024519], + [-51.869095193819135, -22.63092882406561], + [-51.86603409226923, -22.631650832217083], + [-51.85665871713173, -22.63216152363743], + [-51.85629812301077, -22.632181165730312], + [-51.85629807500954, -22.632180864730532], + [-51.85284336427001, -22.63236935119996], + [-51.850737241602246, -22.632733779523594], + [-51.84756698904774, -22.63270934217464], + [-51.84430130901792, -22.631505704388037], + [-51.84304488910997, -22.630723442390664], + [-51.83916159327038, -22.629017697594417], + [-51.83267766731213, -22.628013267537522], + [-51.826686472725974, -22.627788750796494], + [-51.822793338155556, -22.626169140996247], + [-51.818571009780435, -22.623777792368603], + [-51.81222360619431, -22.622469349940296], + [-51.80387357192462, -22.621144114584926], + [-51.7952658298839, -22.620128102928433], + [-51.78997835645736, -22.62014656695933], + [-51.788039061868474, -22.61981299491457], + [-51.786819209542266, -22.61944599669552], + [-51.78456114714081, -22.617758679919838], + [-51.781888550261684, -22.616325543341752], + [-51.77948882108357, -22.616258080629088], + [-51.7749570933192, -22.61490110366296], + [-51.7720911418124, -22.614610462409374], + [-51.77063725475075, -22.614824360765258], + [-51.7618341931492, -22.616119484135034], + [-51.75428427085752, -22.61774874962962], + [-51.75428417185732, -22.617748787629925], + [-51.754272555827654, -22.617751293664583], + [-51.75209485946925, -22.618565594075903], + [-51.74798410319832, -22.623796136364785], + [-51.74776467145067, -22.62407534096737], + [-51.74593129184171, -22.62506405529858], + [-51.74495793814268, -22.62521464521123], + [-51.73746046814505, -22.62460644402981], + [-51.736817978311514, -22.624691250954857], + [-51.73617548747778, -22.624776055879806], + [-51.7348156710845, -22.625950012736475], + [-51.733507108786526, -22.62909850400704], + [-51.732968285198695, -22.632291245939847], + [-51.73200809495868, -22.63797621360377], + [-51.72928462375201, -22.6456226691773], + [-51.72851461680911, -22.650355407476038], + [-51.72719420592121, -22.658471121704444], + [-51.72633800728845, -22.661948120539336], + [-51.72495505801699, -22.664318370210875], + [-51.72315090867653, -22.666498508199712], + [-51.71864421324697, -22.669504791192914], + [-51.71791890610504, -22.669582010372274], + [-51.71203856814872, -22.67061007695163], + [-51.706313431914275, -22.670844131228854], + [-51.699641389218506, -22.669852326629485], + [-51.69492596384836, -22.667667311360326], + [-51.69081277150478, -22.664917754385158], + [-51.687955794873055, -22.66345874833282], + [-51.68156302373884, -22.6612220961278], + [-51.67276609637282, -22.659207540126978], + [-51.6628208790487, -22.657728110463836], + [-51.646856346659426, -22.65682500081791], + [-51.638718215567664, -22.65712683729345], + [-51.63093129781294, -22.658336826514297], + [-51.62894643032814, -22.6586630654285], + [-51.6283488685486, -22.658724622216543], + [-51.62605012232038, -22.659138235057878], + [-51.61945486730185, -22.661428398457325], + [-51.61631241556834, -22.66307745158574], + [-51.614322821926926, -22.664795939227318], + [-51.611814428955675, -22.66663030940807], + [-51.60477825281637, -22.67303480129564], + [-51.59820865566405, -22.678706814929768], + [-51.59440299216436, -22.683352432450654], + [-51.59194758808914, -22.685682689374282], + [-51.58964994781104, -22.686945867038286], + [-51.58500803936376, -22.68840471372088], + [-51.57781392879321, -22.68970121311626], + [-51.57330674494046, -22.692063285208906], + [-51.57330676394084, -22.692063374208818], + [-51.56571941039333, -22.69603983124779], + [-51.562897324639884, -22.697102401527314], + [-51.560039304012776, -22.697663519013734], + [-51.555807911547056, -22.697013313869064], + [-51.55271339318429, -22.69587320739928], + [-51.54925979169269, -22.693035486340328], + [-51.5485383802057, -22.692443279625177], + [-51.54396539334016, -22.690000733847352], + [-51.53810097437352, -22.688484876761883], + [-51.53230833898967, -22.68764132532292], + [-51.526211192267475, -22.68728198269811], + [-51.5202800082806, -22.688410362282298], + [-51.51768346965855, -22.690448422681605], + [-51.516575712967374, -22.69131833083826], + [-51.51265987177571, -22.692456887369623], + [-51.508791798965675, -22.692511383964153], + [-51.499371727084444, -22.691013694502352], + [-51.48683591867477, -22.685478893123218], + [-51.475420868199926, -22.679701853394395], + [-51.47237386389585, -22.67767125489472], + [-51.46650548337205, -22.67283831035531], + [-51.45639630386321, -22.65914594912047], + [-51.45356572925208, -22.656235036115397], + [-51.450253445337204, -22.654280176369706], + [-51.446879814068794, -22.6534369225998], + [-51.44379033594354, -22.65322528886332], + [-51.43702994692551, -22.65256876416372], + [-51.43572082176672, -22.65263988505777], + [-51.425195138031775, -22.653995394216555], + [-51.423423606148816, -22.654596806391904], + [-51.41689489204348, -22.659185943036164], + [-51.41364833003338, -22.66234362315043], + [-51.41173664502601, -22.66420297151752], + [-51.41045197002149, -22.66545276512445], + [-51.40573678532534, -22.667533199812503], + [-51.40248579932816, -22.66839014735256], + [-51.39759149949349, -22.668295436959465], + [-51.38657258289216, -22.66585850522439], + [-51.38539403232673, -22.665398940815937], + [-51.38114441002359, -22.661647985131683], + [-51.3786454139256, -22.66000818585962], + [-51.37411862284621, -22.65861760057701], + [-51.36830686504474, -22.659143156779045], + [-51.3626679773346, -22.66039682733638], + [-51.36008947213708, -22.661703406779594], + [-51.36008973914054, -22.66170414577863], + [-51.359563721284566, -22.661970868297015], + [-51.35388347674974, -22.6638984828571], + [-51.345141661383224, -22.66510839663988], + [-51.33978564283457, -22.665849775432388], + [-51.333539710730655, -22.667594378695256], + [-51.33351247453917, -22.667565576780984], + [-51.32116704478529, -22.671050290863082], + [-51.312307313044414, -22.674024927670754], + [-51.31137819446785, -22.674190243401412], + [-51.30696419122162, -22.67497472037311], + [-51.300282989858125, -22.674472538284366], + [-51.29867195674608, -22.673992438143944], + [-51.29766083228258, -22.673691168193656], + [-51.28718024822364, -22.66888532806827], + [-51.28189669570052, -22.666962366044455], + [-51.27798498550508, -22.666690284680232], + [-51.27326196751754, -22.66669756067139], + [-51.26948011257418, -22.667535500737102], + [-51.26566890787178, -22.668182463919443], + [-51.25917342519647, -22.672361049478678], + [-51.25565669077155, -22.676001170305724], + [-51.252873859799486, -22.679921756916038], + [-51.24334885429627, -22.6900613544972], + [-51.24058582739422, -22.69689366159107], + [-51.239922956662895, -22.701116628882716], + [-51.23823046953896, -22.706243057080986], + [-51.23610105269623, -22.70897633695438], + [-51.23610108469932, -22.70897720295412], + [-51.23557948922443, -22.709645806393134], + [-51.235002140270765, -22.710230435010505], + [-51.22880505075126, -22.716502345373822], + [-51.2210192423763, -22.720904863738813], + [-51.21639392319953, -22.723109920089005], + [-51.21639392519964, -22.723109952088997], + [-51.21420654733088, -22.724152769402192], + [-51.214206448330465, -22.7241527474025], + [-51.2142031493247, -22.72415431941203], + [-51.2120562303746, -22.725133783615167], + [-51.21110714246052, -22.725518041365024], + [-51.20591834507533, -22.727933999348707], + [-51.20316879516917, -22.728652881375034], + [-51.19514187576707, -22.729811620947775], + [-51.19244924736918, -22.72916891301192], + [-51.187485247579126, -22.730377364508847], + [-51.183003634424416, -22.732748116400227], + [-51.17643324046616, -22.73929172783416], + [-51.17088220748507, -22.744818184411272], + [-51.16488179487631, -22.749447742454507], + [-51.16033127297637, -22.751096570659293], + [-51.157136465632846, -22.753013873815814], + [-51.15477499044355, -22.753855601669752], + [-51.15004921105223, -22.7555393363848], + [-51.1450308443184, -22.756251871106755], + [-51.128392052828154, -22.760477554626103], + [-51.122979599700905, -22.76060117958557], + [-51.117567163569454, -22.760724803540935], + [-51.10372493488682, -22.763289451006294], + [-51.10305031100026, -22.763414358978], + [-51.099594570990824, -22.763662041132825], + [-51.09041969989156, -22.763193053245526], + [-51.07583023482751, -22.766416445777082], + [-51.067054692079246, -22.76507469380476], + [-51.062057879720996, -22.76560542044003], + [-51.058083687265615, -22.766542748007186], + [-51.05427777804703, -22.768258037971133], + [-51.045671820057706, -22.774284410468685], + [-51.03559196418231, -22.77978762237332], + [-51.01866972352551, -22.788458095970565], + [-51.01161071396892, -22.79278274814705], + [-51.00928726811852, -22.793415854892146], + [-51.00601715288356, -22.79430723238481], + [-51.00484578345835, -22.794195049841505], + [-50.99776904840922, -22.793426145731985], + [-50.995053984336394, -22.792635326808902], + [-50.991779746251765, -22.79064943468107], + [-50.98666102133745, -22.786477116245845], + [-50.98388015943256, -22.784922586606385], + [-50.979146544857635, -22.783095641727577], + [-50.97639634962486, -22.782586232859032], + [-50.972358067866146, -22.782933741656812], + [-50.9686431463244, -22.78389801642651], + [-50.96208376026624, -22.7867142942991], + [-50.959718486813536, -22.788392323020748], + [-50.95737445484515, -22.790777971591464], + [-50.95663018941952, -22.791701081657088], + [-50.952406782410584, -22.798034522243388], + [-50.946104815376415, -22.804418269919374], + [-50.94505689323157, -22.80514606090041], + [-50.94116369702433, -22.805811225227615], + [-50.93885315438586, -22.80562349802108], + [-50.9378153886397, -22.805285152103426], + [-50.93213432599487, -22.80147747821207], + [-50.92816026519247, -22.798235616244472], + [-50.91952233808841, -22.796416567746967], + [-50.90737068106944, -22.795556530395302], + [-50.90448847518426, -22.79558637981927], + [-50.89580160535754, -22.794786291306348], + [-50.89271885879803, -22.795411908240993], + [-50.88918715001039, -22.7970173863715], + [-50.87649875880488, -22.806965685279803], + [-50.863714294913926, -22.814175885787538], + [-50.854940716759, -22.820454659689734], + [-50.85236542904707, -22.823763090833943], + [-50.85075032768162, -22.824719856441142], + [-50.8493036420819, -22.826612642451128], + [-50.846583818988464, -22.828486561180398], + [-50.84610317564803, -22.82887846653948], + [-50.84285529156229, -22.831884752683465], + [-50.8399337093511, -22.838051847522888], + [-50.83809399266964, -22.840618651607524], + [-50.83601483983757, -22.84779908687856], + [-50.83519546569649, -22.854478608528293], + [-50.83338843200725, -22.859655550231086], + [-50.83113362336526, -22.862659582484262], + [-50.827866388710945, -22.86552254471128], + [-50.82625992670574, -22.86658019628696], + [-50.82421848351623, -22.86626619828394], + [-50.824090668287106, -22.86662390961789], + [-50.82409123829107, -22.866624470616205], + [-50.82127619026385, -22.874500709973038], + [-50.81748133382221, -22.880027365453078], + [-50.815719684112, -22.88133254545655], + [-50.809013694829645, -22.884312946719263], + [-50.80749248727486, -22.88541808504224], + [-50.802346280393394, -22.88750578684471], + [-50.79828525341247, -22.88903875453712], + [-50.79667019845246, -22.890416562104708], + [-50.79666976844939, -22.89041608810607], + [-50.796105705116766, -22.89089813370127], + [-50.7934199001328, -22.89483992612169], + [-50.79283234955269, -22.89909456138387], + [-50.793606318413026, -22.905603677429603], + [-50.79416114798423, -22.907257405632418], + [-50.79596969634707, -22.90991055406542], + [-50.797997200295, -22.91544549054741], + [-50.79897100820692, -22.92204973099143], + [-50.800967257207915, -22.92879992542738], + [-50.80564087308615, -22.936571798914095], + [-50.80661463187708, -22.94078570660676], + [-50.8058294019242, -22.943949500561704], + [-50.80446039688709, -22.94622299032249], + [-50.799518232663054, -22.950060753374224], + [-50.79640343421972, -22.95166576831819], + [-50.79243050980947, -22.951526060960063], + [-50.78958201466133, -22.950893945362107], + [-50.788114681899025, -22.95042050270544], + [-50.78016330176546, -22.9471251153097], + [-50.778415315558476, -22.946810064453576], + [-50.77619149179254, -22.946820877953602], + [-50.771374680376134, -22.948137378895137], + [-50.76863761646153, -22.94746026496471], + [-50.75913216340769, -22.948140663665065], + [-50.75419306123699, -22.949953822904224], + [-50.75079831823253, -22.951986022610193], + [-50.74918993554361, -22.954030356098688], + [-50.74813676767658, -22.956917653880378], + [-50.745691403181425, -22.96047003166104], + [-50.74108565659374, -22.962996694855267], + [-50.73683820151933, -22.963837587172325], + [-50.733207192563064, -22.963783671777517], + [-50.72999498754362, -22.962985165232613], + [-50.72409927745218, -22.959650882765644], + [-50.713551550539634, -22.956477275836036], + [-50.711683721728114, -22.95523090940216], + [-50.710306878455945, -22.953928849541516], + [-50.707600655558366, -22.948522440950935], + [-50.70318703201695, -22.942631422374223], + [-50.7006846782317, -22.93792456411131], + [-50.69397138151349, -22.924040421967657], + [-50.69179915776799, -22.921059436566633], + [-50.68831944580127, -22.917598437009172], + [-50.684618388268206, -22.91154150833279], + [-50.68461878026859, -22.911541197331747], + [-50.683109758598604, -22.909071233946523], + [-50.68255073255023, -22.906683886793008], + [-50.680409344912, -22.903697121290065], + [-50.67791172879491, -22.901529066743162], + [-50.67585379094148, -22.900163863843805], + [-50.673025002070915, -22.898707664188567], + [-50.67047059040835, -22.89791466467421], + [-50.66401388675958, -22.89615599756662], + [-50.6620531792166, -22.89596426827093], + [-50.65839474097147, -22.896148156863802], + [-50.657891770459194, -22.896224167315427], + [-50.648974340639995, -22.897571736047343], + [-50.645359529851426, -22.899624092342034], + [-50.63776439445787, -22.90742402066601], + [-50.63036263365387, -22.910168841874356], + [-50.62078311125902, -22.91264698141003], + [-50.61758051247171, -22.914869719494853], + [-50.61318469553638, -22.923034766530407], + [-50.612071196170085, -22.92408970366591], + [-50.60899171416445, -22.92464095253783], + [-50.60427601822788, -22.923665496274303], + [-50.59309817576374, -22.91417729940879], + [-50.59239660647749, -22.913640482482066], + [-50.59229232484036, -22.913560687790216], + [-50.58927602333839, -22.9109338257284], + [-50.58146144931847, -22.905758932737616], + [-50.5777102878171, -22.904494149677554], + [-50.57771027281694, -22.904494119677608], + [-50.57752466595099, -22.904431536218794], + [-50.576101067857635, -22.904708447308977], + [-50.57296823429636, -22.904559863369865], + [-50.56780196438512, -22.90614398816341], + [-50.5581569453775, -22.911215094611446], + [-50.55486731084942, -22.91213592703557], + [-50.54814469727478, -22.911895511455093], + [-50.54211238398133, -22.91250131581198], + [-50.54211201997761, -22.912500604813037], + [-50.5409608742946, -22.912616068124787], + [-50.5379995699614, -22.913847594572626], + [-50.53523354137278, -22.914798333477982], + [-50.530477743811545, -22.91963672282921], + [-50.527188787828706, -22.93232132836732], + [-50.52724025406427, -22.935309311995788], + [-50.52616387474327, -22.93694155097965], + [-50.52490773505253, -22.938356117498547], + [-50.52358791639965, -22.939551937217583], + [-50.520998622103065, -22.94100223358034], + [-50.519376899134755, -22.941531268219705], + [-50.514947590668385, -22.94338484485999], + [-50.51369380434493, -22.94401567443017], + [-50.51148656225308, -22.945126074715077], + [-50.508343828073805, -22.945710870735837], + [-50.50654634121409, -22.945864354907815], + [-50.50273586164249, -22.94495628595911], + [-50.5001427876158, -22.944115526493775], + [-50.498440028874136, -22.943014785479708], + [-50.49349346434648, -22.938855714026943], + [-50.491880934272636, -22.93815550272112], + [-50.486589695787394, -22.937348761015635], + [-50.486333554897186, -22.937354371752782], + [-50.48607741300709, -22.93735998249], + [-50.486077345006315, -22.93735983049016], + [-50.48320670002661, -22.93742184875092], + [-50.47651704616685, -22.940069056825315], + [-50.46546425259131, -22.944442833335152], + [-50.462678237782484, -22.945065728308787], + [-50.45989222297212, -22.94568862228167], + [-50.456651892751836, -22.945180847635203], + [-50.45416127560731, -22.944497658842742], + [-50.450574255082635, -22.942477866288392], + [-50.450213023478234, -22.942382328333178], + [-50.44882016229156, -22.942013948361055], + [-50.44220835047074, -22.94251716433053], + [-50.440356253891096, -22.942817465633077], + [-50.43304755285031, -22.94668359738423], + [-50.43213244087909, -22.946768561007502], + [-50.43076955445295, -22.946894863914416], + [-50.427820318714865, -22.945926837445697], + [-50.42617966167781, -22.944673476235394], + [-50.42504018436059, -22.94280374162379], + [-50.42504015436031, -22.942803693623862], + [-50.42312801705505, -22.939667699308078], + [-50.421288234743706, -22.93764693271351], + [-50.419409033756736, -22.934569306295714], + [-50.41874436404205, -22.931775123374468], + [-50.42061772482451, -22.918058287844932], + [-50.42044846397229, -22.916188741445254], + [-50.41941457638631, -22.914420573517894], + [-50.416893380542746, -22.913259160815905], + [-50.40056214233873, -22.90812751390805], + [-50.39865812706335, -22.907676846385836], + [-50.3965107498419, -22.90780136952584], + [-50.38760963490579, -22.908319144970097], + [-50.38735128061506, -22.90820777671574], + [-50.38650914740516, -22.907844009146118], + [-50.38216220167812, -22.90596721068811], + [-50.38085178889169, -22.905930196438167], + [-50.37954137510493, -22.905893182187924], + [-50.36509610221742, -22.91445486901494], + [-50.35971623002217, -22.91654648227926], + [-50.35905054901352, -22.917555597127333], + [-50.35975070379695, -22.919742050007688], + [-50.36004630514271, -22.920429610125392], + [-50.36010421740708, -22.92194671987762], + [-50.359518165842196, -22.923003644495804], + [-50.357909674242364, -22.924843287994932], + [-50.35557559941999, -22.926792524562764], + [-50.35482544229574, -22.927857386650196], + [-50.351077522786674, -22.93081380220651], + [-50.34732588049002, -22.933539188786227], + [-50.34588066540876, -22.935061422836995], + [-50.344042971643326, -22.94069720379405], + [-50.3423148284052, -22.94457444253154], + [-50.341742845859144, -22.94622221308075], + [-50.34065288876683, -22.948560478075105], + [-50.33662553613307, -22.95088424146909], + [-50.330161097618586, -22.95105879193854], + [-50.326073405815116, -22.95160002959272], + [-50.323780099129905, -22.951753478137658], + [-50.3189620329631, -22.951170359930764], + [-50.31604354140317, -22.949632083342085], + [-50.30951618996451, -22.94810106805355], + [-50.306657524076925, -22.946700179280533], + [-50.305180728514465, -22.94541432955665], + [-50.3039648606758, -22.943464591119053], + [-50.30216119506637, -22.93921002146666], + [-50.30091276598884, -22.938424474064725], + [-50.29615385982931, -22.937479630680244], + [-50.290463545937214, -22.938218873868895], + [-50.28988707212435, -22.938293785508797], + [-50.28568974425298, -22.938036183483717], + [-50.28456297343295, -22.937798866705485], + [-50.28180436200902, -22.936428771627536], + [-50.28009310617544, -22.935312164552784], + [-50.27603553995596, -22.93209114325249], + [-50.27385435615244, -22.931489256489968], + [-50.27060088883197, -22.932188289722394], + [-50.257874124285536, -22.93701153774028], + [-50.25703713064965, -22.937120487117493], + [-50.25515616972555, -22.93736532645932], + [-50.25231371977206, -22.937735321530962], + [-50.252313589770516, -22.937735000531323], + [-50.248077560424576, -22.938286393558652], + [-50.24707377908311, -22.93896597738602], + [-50.24643492319237, -22.940592770136963], + [-50.24580170305191, -22.94695867567972], + [-50.24463009007471, -22.95003802288822], + [-50.24371474153435, -22.9514662134349], + [-50.24144850725252, -22.953527853799798], + [-50.23800402257262, -22.95463469055523], + [-50.23107672361244, -22.954602174260028], + [-50.22799860444307, -22.953962016037543], + [-50.22472095131817, -22.95204398042908], + [-50.22117100727011, -22.949538771613483], + [-50.220336281974056, -22.949146556000255], + [-50.21734844173475, -22.948387542517935], + [-50.213460546654765, -22.948953138541665], + [-50.20435797129286, -22.953274595237634], + [-50.2043577932925, -22.953274681238117], + [-50.19530352769901, -22.95204657298586], + [-50.19362891101535, -22.952147121735187], + [-50.19296445509667, -22.952288662615917], + [-50.19136519247833, -22.952629334142774], + [-50.1855483687413, -22.95449225158447], + [-50.183859608906836, -22.95426147038305], + [-50.18105639614472, -22.953148289371143], + [-50.175728934854604, -22.94978259658732], + [-50.16915062936196, -22.948621622270252], + [-50.1653583180236, -22.946897424069558], + [-50.157771465724935, -22.93932766178644], + [-50.153459138580054, -22.93610667808825], + [-50.15189900845483, -22.935647899516706], + [-50.14851961419776, -22.935616572079766], + [-50.136117822765826, -22.93991543604002], + [-50.13494917749224, -22.940198067337118], + [-50.13398383421982, -22.940259343065247], + [-50.13356145227231, -22.94043297925492], + [-50.130567351554724, -22.941663788687958], + [-50.12759559679043, -22.942250428074157], + [-50.12153314557042, -22.94182951722086], + [-50.11587571808338, -22.940279596245247], + [-50.113498812245616, -22.93867898399896], + [-50.112009928577585, -22.937676139228405], + [-50.11017080820308, -22.936234683456917], + [-50.10559832907058, -22.931479884478296], + [-50.09531224266873, -22.924385997659694], + [-50.09531221066868, -22.924386022659885], + [-50.09518212290504, -22.924296348028665], + [-50.09518216090498, -22.92429628402855], + [-50.09329161680771, -22.92299314638822], + [-50.08987170869283, -22.92244755104186], + [-50.08133481138905, -22.922282586105727], + [-50.07856848472388, -22.92328812487982], + [-50.07354684187743, -22.92762582794175], + [-50.07201553759715, -22.928612133236648], + [-50.07030864246876, -22.928620459044843], + [-50.067936173885364, -22.928003797739], + [-50.062852870867545, -22.924143151124408], + [-50.05938773502918, -22.919471443961573], + [-50.05744295300602, -22.915812779498076], + [-50.05320496773605, -22.905757051589685], + [-50.04831824428456, -22.902452660380877], + [-50.04573701167926, -22.902361527636337], + [-50.04426247281274, -22.90310919176799], + [-50.03773356537676, -22.908636084028316], + [-50.034850717880275, -22.90952257111456], + [-50.032297488384394, -22.909436410288173], + [-50.03048851265509, -22.90937508137017], + [-50.0231663953727, -22.910946573910838], + [-50.0185233794908, -22.910605238950147], + [-50.018521188482374, -22.910605077956365], + [-50.01670595564358, -22.910823791048845], + [-50.01509947483891, -22.911739130546522], + [-50.013798995118414, -22.914786207159594], + [-50.013766713249446, -22.914861845249234], + [-50.01105287326734, -22.921220481790847], + [-50.01055428229172, -22.92238870117671], + [-50.00652340619353, -22.927417767434346], + [-50.004619644323725, -22.928948411761453], + [-50.00335774622314, -22.929394916298847], + [-50.002096375123394, -22.929841233834633], + [-50.0009823698868, -22.929167113968827], + [-49.99734712494024, -22.930144802160864], + [-49.99533916588324, -22.93020784479484], + [-49.99242922083059, -22.92821447897887], + [-49.990874681977076, -22.92569994336356], + [-49.990872978312794, -22.923970930384623], + [-49.99198073417273, -22.92056433431035], + [-49.99231943509791, -22.91711041239352], + [-49.99664434172345, -22.908547323351044], + [-49.9966445617242, -22.9085473343504], + [-49.998919221213924, -22.90404317901903], + [-49.99931838875548, -22.90223858791845], + [-49.99854385500474, -22.900723616104937], + [-49.99605631566981, -22.898475067098886], + [-49.992186647309836, -22.89744021495128], + [-49.98994839553047, -22.897227918223418], + [-49.98663026604306, -22.897993486510718], + [-49.97567500027507, -22.904983465134002], + [-49.97198207862266, -22.909179082444115], + [-49.96620978353868, -22.914628966569648], + [-49.96620913354055, -22.91463024857145], + [-49.96620675353925, -22.914632495578136], + [-49.964125890421286, -22.918738913378718], + [-49.962514822129634, -22.92380189985924], + [-49.96184305636918, -22.93135138469537], + [-49.96184310036961, -22.931351495695242], + [-49.96184302937205, -22.931352285695393], + [-49.96595805542137, -22.941792431098662], + [-49.96612251991668, -22.94512375961554], + [-49.96687766000801, -22.946760072487344], + [-49.97220446193467, -22.951226479516706], + [-49.97466328515701, -22.95498552958959], + [-49.97440448282922, -22.95700358630002], + [-49.97378681806163, -22.958063344025085], + [-49.972990405347645, -22.959032032252487], + [-49.9728429084009, -22.959211509665025], + [-49.972695410454044, -22.95939098707759], + [-49.972400415560394, -22.959749941902682], + [-49.972208094866296, -22.96097191043307], + [-49.97100870811373, -22.963290622781546], + [-49.96979809521641, -22.964967221166646], + [-49.966793393861586, -22.967269832582424], + [-49.96331291630371, -22.969427777334516], + [-49.961070744470334, -22.971046524615506], + [-49.958977781074765, -22.97354971447251], + [-49.95695211470409, -22.976901910136238], + [-49.95496740707481, -22.97890930069368], + [-49.95442500590449, -22.979153287214174], + [-49.95388260373418, -22.97939727373474], + [-49.95148199054379, -22.980168996466006], + [-49.940516569354976, -22.983115190209734], + [-49.937592144517446, -22.983356791409204], + [-49.93569941014212, -22.982900024717562], + [-49.93310653988619, -22.98295172198614], + [-49.93122502690668, -22.98352007625857], + [-49.92663897462104, -22.985777665106426], + [-49.92529382499124, -22.986774339874035], + [-49.92103191950074, -22.990444420810555], + [-49.92002313141244, -22.990927780636664], + [-49.91886920734402, -22.991273095869584], + [-49.91609354749418, -22.991044039646905], + [-49.91448939722326, -22.990911660141187], + [-49.913471835097724, -22.99139384799129], + [-49.91236297265236, -22.992185555096885], + [-49.91011557733683, -22.994589332391143], + [-49.90958868561867, -22.99526169986675], + [-49.90890185198591, -22.996138167790402], + [-49.9067307462682, -22.99772359687169], + [-49.90518987252622, -22.998600548187746], + [-49.90213553732868, -22.999800762742808], + [-49.9008232612271, -23.000925133418583], + [-49.90005077854689, -23.00249429258308], + [-49.90058402404384, -23.005414084091427], + [-49.90065445654825, -23.005795379894394], + [-49.90090611127122, -23.006347210189812], + [-49.901948497326345, -23.007953336270422], + [-49.90375672719652, -23.00956661420451], + [-49.90552717878988, -23.010526307243282], + [-49.90690590926194, -23.011273969379204], + [-49.90832657673771, -23.012281397396848], + [-49.90974506064589, -23.01403369541958], + [-49.90976685681739, -23.014061800358355], + [-49.910870119780874, -23.016791671263242], + [-49.912581308283855, -23.021755497459953], + [-49.91314379158124, -23.022746186881168], + [-49.91337506092441, -23.023813970231224], + [-49.91368535685848, -23.026499061357587], + [-49.913681948350025, -23.027872674365437], + [-49.913682252351556, -23.027872821364607], + [-49.913678961115316, -23.029329224372024], + [-49.91387396698123, -23.030596179823352], + [-49.916368882430596, -23.035276430814285], + [-49.91673819213644, -23.036909810774933], + [-49.91620766995529, -23.038967935260796], + [-49.91546116192603, -23.04009345035488], + [-49.914760101486145, -23.041652794320733], + [-49.91401261902376, -23.04478023441485], + [-49.91311423099545, -23.046988875934336], + [-49.91273677485358, -23.049497585990892], + [-49.91206777133928, -23.05160757386698], + [-49.91100478168071, -23.05228411585135], + [-49.90925997600466, -23.053104391750317], + [-49.90786186640964, -23.053564038675948], + [-49.90184594458759, -23.053912392566012], + [-49.899708676730874, -23.05450607256545], + [-49.89716194743334, -23.05633570371437], + [-49.89411893145888, -23.058207404256247], + [-49.891194542590085, -23.060894238466147], + [-49.8902645311584, -23.06210316707765], + [-49.88952259629084, -23.063579265161767], + [-49.88723259304919, -23.0651422515908], + [-49.88579462415458, -23.065557379626917], + [-49.88434771303429, -23.065304358686546], + [-49.883070389937224, -23.06425984026832], + [-49.88246232023216, -23.063198462972075], + [-49.881612848893305, -23.060993302350035], + [-49.881006546113085, -23.05990673104821], + [-49.87951551354001, -23.060174408230722], + [-49.878431144911744, -23.06119175927467], + [-49.87551538352981, -23.06646084146738], + [-49.87500984175281, -23.067702346889032], + [-49.87370425677536, -23.069470119556502], + [-49.87175934328599, -23.070880501016344], + [-49.86979112680724, -23.07171068253944], + [-49.86788076035869, -23.072180910898734], + [-49.86209844923254, -23.07127728010781], + [-49.85835343114231, -23.071465986606437], + [-49.856679185878356, -23.07203508830187], + [-49.854730890453745, -23.073166635768228], + [-49.853153474311675, -23.073665223191593], + [-49.85104122183515, -23.073744181110975], + [-49.845458141095556, -23.07182397174014], + [-49.84190188821869, -23.07095368069417], + [-49.840387066706974, -23.070048993929486], + [-49.838871541193456, -23.069144444166167], + [-49.837371183414135, -23.068447119361274], + [-49.83586949862961, -23.06774960655942], + [-49.83412416592422, -23.066432400434085], + [-49.834123544920445, -23.06643193243577], + [-49.83015467455909, -23.07137571658384], + [-49.82973776806947, -23.072609444761095], + [-49.82895621612061, -23.07411116896127], + [-49.827453120700156, -23.075360432178933], + [-49.82584447152263, -23.07588584968559], + [-49.82316872449606, -23.07612532617557], + [-49.81985522465794, -23.077442999459233], + [-49.81843895886337, -23.07787066742585], + [-49.81623247920478, -23.078308983602952], + [-49.81437189902051, -23.07911603181594], + [-49.81318724913715, -23.080479910143712], + [-49.81271118164342, -23.081474064485747], + [-49.812042019754564, -23.082869591372233], + [-49.81156648438098, -23.0835942677101], + [-49.810149408799816, -23.087755886718554], + [-49.80993390735905, -23.089696072342107], + [-49.80834424084132, -23.09315368782715], + [-49.80706882762404, -23.09482333341409], + [-49.80397726568408, -23.09494957006534], + [-49.79993066433801, -23.09388503537243], + [-49.79876322851781, -23.09402798863927], + [-49.79740076923344, -23.094553748455986], + [-49.79603830894862, -23.095079509272598], + [-49.794342002982944, -23.096994711040022], + [-49.792976221093326, -23.10039587590224], + [-49.79218082941542, -23.10291542315862], + [-49.78964435710073, -23.103834824264265], + [-49.77913831376986, -23.101785629608084], + [-49.7737671437893, -23.102633607629954], + [-49.77072099917801, -23.103732843157267], + [-49.76827803694898, -23.105494356009228], + [-49.76553788509237, -23.106175370674528], + [-49.76341339291434, -23.10606530460674], + [-49.76059303656343, -23.10454412345837], + [-49.755446595057165, -23.103147058803305], + [-49.75184710780542, -23.09824679176398], + [-49.7502317590537, -23.09799982926672], + [-49.75023094605033, -23.097999705269107], + [-49.74840014593449, -23.099109513396765], + [-49.745761028902805, -23.099931696774345], + [-49.74070441639025, -23.099657745873298], + [-49.73917612069842, -23.10086390115833], + [-49.737738285699876, -23.10309988221107], + [-49.735796706915345, -23.105050993663586], + [-49.73092684127043, -23.106367906269156], + [-49.728792109715, -23.107382732241433], + [-49.727591204881115, -23.108483617612013], + [-49.727591157882316, -23.10848403761213], + [-49.726016033786635, -23.10992759803317], + [-49.72581008749057, -23.114666074704875], + [-49.72662209738699, -23.117393496496472], + [-49.72925292661002, -23.12214735225436], + [-49.73051209462391, -23.126546908828832], + [-49.735369821867295, -23.1333787014028], + [-49.735368554614276, -23.13422041642242], + [-49.733840675391214, -23.13801750876203], + [-49.732840069477454, -23.139784833590447], + [-49.73095397954915, -23.141935576899503], + [-49.72965524912974, -23.142967527546496], + [-49.72859536323054, -23.143583248518436], + [-49.72695191540425, -23.143656862108877], + [-49.724283263761556, -23.144944596585823], + [-49.72339714621316, -23.14577766907684], + [-49.72184496428722, -23.146635955427858], + [-49.71914314811062, -23.148716662013832], + [-49.716958418583374, -23.14888273711586], + [-49.71711581307077, -23.150689434714916], + [-49.716705627555356, -23.151912974885946], + [-49.716595554693676, -23.152079660196787], + [-49.716594821690045, -23.152079397198825], + [-49.71506333461807, -23.154399931523745], + [-49.71369897714117, -23.15549032035596], + [-49.71173710481473, -23.156690638858763], + [-49.710394667265604, -23.157122804615415], + [-49.70628378335487, -23.15598640306343], + [-49.70511588398382, -23.15535804530815], + [-49.70351839630096, -23.15389609373208], + [-49.70284664178034, -23.153578617598814], + [-49.70183384200783, -23.15356998042409], + [-49.70162637537468, -23.15422311201787], + [-49.70229759524449, -23.15556614817623], + [-49.70425107400499, -23.157566803771434], + [-49.704009522134506, -23.158797584473312], + [-49.70167632342287, -23.159995768011527], + [-49.70006801398533, -23.161987786545247], + [-49.6990315837195, -23.164609081498185], + [-49.69895401507074, -23.164804330719196], + [-49.69795463155872, -23.165472824523544], + [-49.695063395780814, -23.166059988604868], + [-49.69054049108049, -23.16545894820816], + [-49.68892421952139, -23.165894250727032], + [-49.683788543191866, -23.164265154008575], + [-49.680347963594414, -23.164919933617437], + [-49.67878495886956, -23.165551241990922], + [-49.67848231899212, -23.16685057286797], + [-49.67928757810864, -23.168729052671157], + [-49.679816399822016, -23.169572616218268], + [-49.68215313436638, -23.171682246755648], + [-49.68373058811075, -23.174100921416567], + [-49.68298489533631, -23.175626959534952], + [-49.67961680937728, -23.1751725109177], + [-49.67817310987836, -23.175432172950572], + [-49.67592164469562, -23.177928947293797], + [-49.67174740041406, -23.185024816120485], + [-49.667170211315025, -23.18926895599851], + [-49.66610150842895, -23.191740346045407], + [-49.663661899019466, -23.19468950592918], + [-49.66192154986325, -23.202123133986195], + [-49.656124744278, -23.209442283359223], + [-49.65421671327898, -23.21252663176848], + [-49.652866969042925, -23.219490514730566], + [-49.654616438662046, -23.223805757969572], + [-49.655181224679914, -23.22836408152031], + [-49.65518171068303, -23.228364469518922], + [-49.655232457211326, -23.228773720388673], + [-49.65353167710822, -23.23494930330973], + [-49.652040356708966, -23.237436788543828], + [-49.65018434784098, -23.2380577997438], + [-49.64539793928638, -23.239660243153], + [-49.64494490008883, -23.24072549144849], + [-49.64526126322475, -23.24224006360908], + [-49.64654654243177, -23.24420226707691], + [-49.64695258443876, -23.245575133982467], + [-49.64706695285859, -23.247710422724246], + [-49.64761971534682, -23.250284078253838], + [-49.647569105440105, -23.252201234449878], + [-49.642992700096215, -23.254242795291905], + [-49.64164043342051, -23.255267810098676], + [-49.64053220636082, -23.256814127239114], + [-49.63946586348326, -23.25989444030801], + [-49.63879116702467, -23.260826453219966], + [-49.63819768323723, -23.262176138917596], + [-49.63758061167877, -23.26514812772916], + [-49.63731204852408, -23.267236741541296], + [-49.63679097067932, -23.267571283006937], + [-49.6360876805363, -23.26802192598511], + [-49.636010382373605, -23.268365235211267], + [-49.6355721211068, -23.27030733949356], + [-49.63563696022878, -23.2717960213567], + [-49.634234990776385, -23.27355669832632], + [-49.63286219525137, -23.274652186194903], + [-49.632755614083806, -23.2747222594947], + [-49.6296145376413, -23.277243809347], + [-49.62861440436233, -23.27921113120116], + [-49.627951357031534, -23.28169425112958], + [-49.62761104762545, -23.28226241809777], + [-49.62732754612382, -23.28273684290447], + [-49.62692725082471, -23.283405867043463], + [-49.6262681786119, -23.287139856999787], + [-49.626680787940614, -23.28890493990082], + [-49.627371637689954, -23.290176731008795], + [-49.62951390935885, -23.29586839619267], + [-49.63134564264288, -23.299965420193576], + [-49.63186277979396, -23.30490540989469], + [-49.63157008185061, -23.306168776751228], + [-49.629691139185496, -23.308710899083994], + [-49.62920184909662, -23.31167553854205], + [-49.62794804458138, -23.313552857106707], + [-49.624594378589606, -23.317064011596855], + [-49.623743933530854, -23.318926385033368], + [-49.62314614285468, -23.322748179823332], + [-49.62314608685562, -23.322748536823525], + [-49.62324938924773, -23.324880433599752], + [-49.623352495631664, -23.32700979437644], + [-49.62314638344121, -23.328403127995987], + [-49.62206050820191, -23.33108615311776], + [-49.6220605612044, -23.331086848117693], + [-49.62215989382503, -23.33237933887933], + [-49.62422059000562, -23.33647745023495], + [-49.62658254141169, -23.339388141708177], + [-49.628135471584315, -23.34253850645248], + [-49.62988250074039, -23.34424704960852], + [-49.63175983714589, -23.344667878360355], + [-49.63311668139846, -23.343507128523925], + [-49.63526746046818, -23.340477857408413], + [-49.636678401032114, -23.340262064448197], + [-49.63836696249658, -23.343042155795285], + [-49.63864361202679, -23.34926591219747], + [-49.63835567244076, -23.350022076026438], + [-49.63835563344234, -23.350022579026614], + [-49.637561353346534, -23.35210956131346], + [-49.63632310764385, -23.354516311854695], + [-49.63390228347662, -23.356910863712134], + [-49.63267051335191, -23.35705770417029], + [-49.62745794202812, -23.35650518976767], + [-49.623146570580275, -23.357321233876313], + [-49.62139611983501, -23.357262472779958], + [-49.61986995847868, -23.35615563902267], + [-49.61227239270506, -23.355143225274315], + [-49.612271556701565, -23.355143113276643], + [-49.60765899543638, -23.35788048928154], + [-49.604622372184785, -23.359437261834998], + [-49.60358919152489, -23.360413047759756], + [-49.60212259388714, -23.36310500095436], + [-49.59913882500208, -23.364714490362054], + [-49.597227058001, -23.365980052756736], + [-49.59587755721071, -23.367581270588605], + [-49.595859739710285, -23.369273044695095], + [-49.5969079808094, -23.372667205872943], + [-49.59645496575744, -23.376509408269676], + [-49.59522717947086, -23.378124837762535], + [-49.59256316647901, -23.380555025305853], + [-49.591454883549915, -23.381839466453343], + [-49.590867846095996, -23.38328183514649], + [-49.59086792909836, -23.383282460146223], + [-49.59086781709883, -23.383282735146494], + [-49.591536971352454, -23.388367539444136], + [-49.59209974325284, -23.389517854906146], + [-49.59293896320129, -23.39006409557306], + [-49.59527050912347, -23.38890234600094], + [-49.59688771881963, -23.386968066404847], + [-49.59847953267579, -23.38541511989278], + [-49.601565575095975, -23.38445737121276], + [-49.60378819322427, -23.384394472981203], + [-49.603788364225096, -23.38439452398072], + [-49.60552894543621, -23.38490555911813], + [-49.60847726338587, -23.386694004909288], + [-49.61327122078877, -23.388340337516865], + [-49.61806989134124, -23.38851063306085], + [-49.62107198389583, -23.38920821365851], + [-49.62175615823685, -23.390959291791336], + [-49.622147973321084, -23.394782897806557], + [-49.62147734212278, -23.397909080782952], + [-49.6187894026225, -23.39869090135184], + [-49.61576286653471, -23.398164682830195], + [-49.61209672429715, -23.39498563201878], + [-49.60954760656419, -23.39402392113947], + [-49.60831585731306, -23.393832608588262], + [-49.60761686780765, -23.39386798354982], + [-49.60585122507428, -23.394744636529747], + [-49.60553822241233, -23.394900043412516], + [-49.60553767741062, -23.39490015741405], + [-49.6008833675574, -23.39720871754066], + [-49.59898202025981, -23.39867638391996], + [-49.59874829172728, -23.399084326588692], + [-49.59874081434611, -23.39928055761616], + [-49.59874109934751, -23.399280647615313], + [-49.5987177203635, -23.399918791701822], + [-49.5999512984681, -23.40097259527698], + [-49.60014694150573, -23.401064596731292], + [-49.60420533271992, -23.401968805377585], + [-49.60520855797677, -23.403330597606832], + [-49.60414164437122, -23.408301816759252], + [-49.602984323208226, -23.408963182027776], + [-49.59497576259632, -23.40698008042791], + [-49.59390167327717, -23.407196769447157], + [-49.59306669177363, -23.407995079815276], + [-49.592170977954936, -23.41301242449477], + [-49.59092836892998, -23.416239416088093], + [-49.58979253095949, -23.416632745287203], + [-49.58637343651386, -23.416451699869928], + [-49.58481504561942, -23.415833766218718], + [-49.58378953449812, -23.415146148070416], + [-49.581482711171816, -23.414340373509784], + [-49.58075851159738, -23.41468848255202], + [-49.58006573687563, -23.415562808524477], + [-49.5799790533541, -23.417020125818137], + [-49.579060116507584, -23.4205408635173], + [-49.578841984614286, -23.42203501418105], + [-49.57884203361566, -23.42203537318094], + [-49.57884195461713, -23.42203591418116], + [-49.57896708610939, -23.42295224986227], + [-49.582255570892315, -23.42944462986451], + [-49.58156279940189, -23.431903970892716], + [-49.5812705393043, -23.43220753672316], + [-49.57897322400039, -23.432612980181727], + [-49.576008571448035, -23.431885824471653], + [-49.57254710620381, -23.429090096079282], + [-49.56961132479504, -23.425946954196675], + [-49.56753235187346, -23.426523357044438], + [-49.56708967448249, -23.42690999829917], + [-49.56703746947253, -23.42817994749158], + [-49.56703743647535, -23.42818084049165], + [-49.56772753539501, -23.429795291615825], + [-49.57226726607079, -23.435129337078905], + [-49.57284061749037, -23.436724255527558], + [-49.572336618122065, -23.438096758989865], + [-49.57010078244871, -23.43923100730117], + [-49.569484635286514, -23.440794054085142], + [-49.57039770427732, -23.442476992584407], + [-49.573417251104004, -23.444433881182995], + [-49.57608475295848, -23.44407424368562], + [-49.577074186363596, -23.44276591186343], + [-49.578375889282825, -23.43822789405286], + [-49.57959606022783, -23.437426161601557], + [-49.58045244579829, -23.437228685191833], + [-49.583585150382014, -23.437470324409382], + [-49.5892407257021, -23.436272806495225], + [-49.589241570705425, -23.436272862492785], + [-49.590572216000325, -23.436360795760354], + [-49.59289421635952, -23.437458871277844], + [-49.596105687714584, -23.44087255537141], + [-49.59862359431793, -23.446661811486024], + [-49.60211929088011, -23.44981127976343], + [-49.6036518471651, -23.451782735518204], + [-49.60372652452136, -23.453014845347177], + [-49.60273019422004, -23.454359217190646], + [-49.60211790992357, -23.45466369392154], + [-49.60083989545368, -23.45567302654633], + [-49.599515338638334, -23.456933346310098], + [-49.59836978019536, -23.458405042577628], + [-49.59853428386436, -23.45872241312545], + [-49.59912436985129, -23.459860838503143], + [-49.60053628893048, -23.460394378550504], + [-49.60123649131555, -23.460923203598576], + [-49.601686825753745, -23.461752273358627], + [-49.602149594624706, -23.468136103259205], + [-49.603038305880595, -23.47112934685361], + [-49.601956570996165, -23.47330030796528], + [-49.59926653390625, -23.476332482629687], + [-49.59904264041679, -23.47764719230147], + [-49.600323030689424, -23.478990748741516], + [-49.60199642299939, -23.479294674042276], + [-49.603755253361, -23.478913440080504], + [-49.61376563379844, -23.47310233772508], + [-49.615346135383184, -23.472690725263266], + [-49.616038671285274, -23.473987034352195], + [-49.61316828254069, -23.483358263716024], + [-49.61386550830601, -23.487321112871253], + [-49.61548565652346, -23.48976806638014], + [-49.616508713872214, -23.490520375519953], + [-49.620539900503154, -23.49155980819053], + [-49.62156265876914, -23.492588726337715], + [-49.62184529590312, -23.493814964576593], + [-49.620551133031846, -23.49592514228586], + [-49.61994859890211, -23.497172512020654], + [-49.619622255126735, -23.498213160970902], + [-49.61975609396774, -23.49982090564044], + [-49.61877186819354, -23.50221098848506], + [-49.61405944455079, -23.506463496896203], + [-49.61328280825424, -23.50876203815425], + [-49.614169331771095, -23.51062161370999], + [-49.61530122857798, -23.510784076523077], + [-49.61698391080468, -23.509845515750232], + [-49.62046577745232, -23.50699208484762], + [-49.622217077198165, -23.506433852892258], + [-49.62773194323988, -23.508920517405574], + [-49.62898262820696, -23.510200897912284], + [-49.62983639845751, -23.512317217561836], + [-49.62999093987396, -23.514072431174377], + [-49.62985315858542, -23.514743515581813], + [-49.62874166381281, -23.517576160797894], + [-49.62685753240242, -23.520190695189466], + [-49.62468295917954, -23.52379279242933], + [-49.61808200086312, -23.527275981161026], + [-49.615868846164666, -23.528073464430236], + [-49.611898143608855, -23.52910443266554], + [-49.60753288847704, -23.532216551075415], + [-49.604539927566904, -23.53353706055939], + [-49.60067223952714, -23.53611419954932], + [-49.60098045110764, -23.53774397373034], + [-49.60187742867337, -23.538700109229424], + [-49.6052003410261, -23.540746477915985], + [-49.60618323742076, -23.54215466918467], + [-49.60583940295712, -23.545713351262997], + [-49.6048103168258, -23.548045236238686], + [-49.60181683981542, -23.55204370081109], + [-49.60092749515268, -23.5528548263466], + [-49.59923191283315, -23.553482789152277], + [-49.599209380219385, -23.55512755926678], + [-49.60015438507376, -23.55791747768525], + [-49.60048054451423, -23.55888137779402], + [-49.6014868536516, -23.55988296998332], + [-49.60316656122139, -23.5608503932694], + [-49.60767491127454, -23.564157526634414], + [-49.60845577443719, -23.565722229474797], + [-49.60836087725537, -23.56727666278928], + [-49.60745349181157, -23.56877395139789], + [-49.60473076999513, -23.572220471195003], + [-49.602205486949856, -23.574474037398993], + [-49.60164344497895, -23.575721510025183], + [-49.60231330907472, -23.57829143621032], + [-49.602146144259386, -23.58153788278129], + [-49.602483156028704, -23.583186499878632], + [-49.603314802431726, -23.584463412566297], + [-49.60739439328609, -23.58668802909793], + [-49.60901370912715, -23.58930094959533], + [-49.610456974367374, -23.59043378754614], + [-49.614560411930356, -23.590744067945927], + [-49.61662591517372, -23.59147176112208], + [-49.619346003520086, -23.59478409451735], + [-49.61934628952543, -23.59478536851651], + [-49.61937562275563, -23.594821100434494], + [-49.61937659179754, -23.594832559432085], + [-49.61965137268409, -23.598081876745475], + [-49.62020983267042, -23.60073934723878], + [-49.62163840578234, -23.60753730738219], + [-49.6217446800656, -23.60899830112162], + [-49.62142466955825, -23.61160342610026], + [-49.620398305308804, -23.612691917038156], + [-49.61878706652456, -23.61338546162199], + [-49.61831724396603, -23.613451526954766], + [-49.618317248966186, -23.613451591954664], + [-49.61467977689978, -23.61396359127232], + [-49.614069686745836, -23.615207942035774], + [-49.614595737136405, -23.615925636566292], + [-49.61604116599653, -23.61723784450902], + [-49.61448118019982, -23.619067272980146], + [-49.61404086937458, -23.62021728626019], + [-49.614342845510095, -23.62200999445576], + [-49.61406381381759, -23.62361510729192], + [-49.61269246297005, -23.624018869188845], + [-49.608164849322456, -23.62387305401069], + [-49.6068184433262, -23.624204477833928], + [-49.60674102014743, -23.62543589708937], + [-49.60674104514762, -23.62543592108926], + [-49.60674099015043, -23.62543679908947], + [-49.60820473041173, -23.6268469169844], + [-49.60870864154385, -23.628110075593522], + [-49.60800673907618, -23.632655233714296], + [-49.60871267613166, -23.63456298276917], + [-49.61037389980421, -23.636169707107538], + [-49.61111699330469, -23.63667277801574], + [-49.613440814555325, -23.63770074945763], + [-49.61684733360067, -23.63863577082567], + [-49.61761118431498, -23.64007565369972], + [-49.61654152749281, -23.641042117760087], + [-49.60384788328696, -23.644014979832466], + [-49.602753932487424, -23.64561501798033], + [-49.60322033727361, -23.65159812783471], + [-49.602600256291815, -23.652605880622374], + [-49.59736438658056, -23.65474818652926], + [-49.594385958251586, -23.656536221025842], + [-49.59144096890304, -23.6573844043986], + [-49.58900702674557, -23.657410831296893], + [-49.58577371799838, -23.65936535251983], + [-49.58620393824616, -23.66433172645659], + [-49.58307564704587, -23.66364097529991], + [-49.58307513204349, -23.663640862301357], + [-49.581263212280014, -23.66397679044604], + [-49.58067791873664, -23.665077474139647], + [-49.580678247738646, -23.665077697138713], + [-49.58306552122155, -23.666694347425494], + [-49.58365915108442, -23.67076077287161], + [-49.58363718104371, -23.670773576934295], + [-49.582157712106145, -23.671576702153295], + [-49.58034248243939, -23.67881836352933], + [-49.580087832116135, -23.679011153257456], + [-49.579540322416996, -23.679424476822817], + [-49.57894915633492, -23.67947432250029], + [-49.57728824429064, -23.676867063124416], + [-49.57509954145646, -23.676416338312837], + [-49.57513784898573, -23.67653096520798], + [-49.5758885761023, -23.678700667150864], + [-49.575888588102465, -23.6787007021508], + [-49.57608781279065, -23.679277474604856], + [-49.5763196430871, -23.680895199000094], + [-49.5755354819435, -23.6820424442601], + [-49.57387034532128, -23.682554540996716], + [-49.57267789225545, -23.68359190841064], + [-49.57073749561345, -23.684411490937254], + [-49.5695663639402, -23.685542247293903], + [-49.56915056198149, -23.68722258152801], + [-49.56858742721733, -23.688531072167578], + [-49.56761979327725, -23.687558222877822], + [-49.567312096706694, -23.686243791705955], + [-49.56573188975594, -23.685964434174625], + [-49.565731515754344, -23.68596436817573], + [-49.5622025990603, -23.68618609318217], + [-49.56295446523701, -23.68747538209564], + [-49.563966741294024, -23.6884324122596], + [-49.56179619286968, -23.69256840055057], + [-49.560551211240615, -23.692602171079805], + [-49.560152178855, -23.69114815916079], + [-49.55971157764521, -23.690690453393596], + [-49.55971155364502, -23.690690428393662], + [-49.559270898438115, -23.690233598626467], + [-49.55765161734449, -23.690255737214898], + [-49.55677829501619, -23.69145076773026], + [-49.557673206881624, -23.692483769230524], + [-49.55786740275685, -23.694018421733148], + [-49.556984279419645, -23.694923029266704], + [-49.55556640034612, -23.695917738318588], + [-49.55467847742784, -23.69725199388072], + [-49.55514936405926, -23.69869726059669], + [-49.555951168631196, -23.700046582371304], + [-49.55618901451371, -23.70153310374863], + [-49.55480420463143, -23.703144887729216], + [-49.5514775250826, -23.70288553814749], + [-49.5506895715473, -23.703324276395687], + [-49.54990161801183, -23.703763015643794], + [-49.5496655885997, -23.704506293338785], + [-49.549665422600796, -23.70450681433932], + [-49.550673026907845, -23.707334381583504], + [-49.553511349939484, -23.71157773568675], + [-49.55444136645958, -23.714555347153222], + [-49.55590334751823, -23.720966806228265], + [-49.555982583363615, -23.722620710060315], + [-49.5551487980058, -23.725849611536663], + [-49.55417961913207, -23.727288766335715], + [-49.55417953413161, -23.72728873033594], + [-49.55365458374216, -23.728068401852052], + [-49.549290240317866, -23.73291063240188], + [-49.548899345787504, -23.735285381594082], + [-49.5492585671788, -23.736782428627404], + [-49.55035751521877, -23.738226831559494], + [-49.551790623035224, -23.73922399152718], + [-49.5541783697067, -23.738495086725226], + [-49.555706920956645, -23.737724382360202], + [-49.56068116341504, -23.733095865083694], + [-49.561941727057444, -23.732151615473704], + [-49.56286785360747, -23.732156506844788], + [-49.56451624175096, -23.732709185183438], + [-49.56621079643803, -23.734563401433384], + [-49.567790203543176, -23.73726852003684], + [-49.56794691034417, -23.739116434652306], + [-49.56807484089689, -23.740625013338285], + [-49.56775789773928, -23.742129733287822], + [-49.56424304427568, -23.748369905478235], + [-49.56427922380695, -23.750571330448167], + [-49.56503872005825, -23.75216452734271], + [-49.56648457802278, -23.75348723127743], + [-49.56798787953337, -23.754014127022124], + [-49.57138555079372, -23.754099604367152], + [-49.573533369962064, -23.754982779289193], + [-49.573929478673286, -23.75652951921226], + [-49.5722600543188, -23.757427916987645], + [-49.56834844296996, -23.75819816913319], + [-49.56499069619307, -23.759997871736807], + [-49.56137842439552, -23.761486539053216], + [-49.56097137788194, -23.761796547220353], + [-49.56136572819337, -23.762928767137293], + [-49.56238302190047, -23.763172814253767], + [-49.56340039761094, -23.76341778836994], + [-49.56429065328063, -23.764687657880934], + [-49.56388400392345, -23.76504363904872], + [-49.5626129064523, -23.767240935734886], + [-49.5628454534365, -23.76935157214341], + [-49.56362635276198, -23.77034529395573], + [-49.564497182040604, -23.770627951488756], + [-49.566315583971125, -23.771217077336665], + [-49.56701182167438, -23.772419078395554], + [-49.5665995519275, -23.77534125666309], + [-49.56695666722717, -23.778294350743096], + [-49.568419850704785, -23.77885436759812], + [-49.57101412562871, -23.778856551216407], + [-49.570930285419074, -23.779186644465465], + [-49.57048995600482, -23.78015800274953], + [-49.56923620869542, -23.78059877233137], + [-49.56753784722087, -23.780604199164184], + [-49.56628949465939, -23.781261351737378], + [-49.56553477049518, -23.78296165094004], + [-49.565033118425255, -23.78559098045305], + [-49.56118441311122, -23.79016880555473], + [-49.560148491374555, -23.794098312632418], + [-49.561308827091594, -23.795368762371908], + [-49.563571271500685, -23.802421370162016], + [-49.56156428544135, -23.806465382008877], + [-49.56053572856907, -23.812420655133206], + [-49.56101303548604, -23.815414147871657], + [-49.561358300146324, -23.816404409920544], + [-49.562894768697795, -23.818975083626796], + [-49.564174587157034, -23.82003001401417], + [-49.56867898752833, -23.82154776322515], + [-49.57314538384428, -23.827537186679105], + [-49.57602069402224, -23.827882310489155], + [-49.57602073402241, -23.827882314489052], + [-49.57690860878363, -23.827989165959842], + [-49.576908730783224, -23.82798890095947], + [-49.578508586558605, -23.828180931401622], + [-49.58584409698122, -23.827391382448322], + [-49.58796098488924, -23.827629355414004], + [-49.5907910625559, -23.828467948360583], + [-49.59347467668053, -23.830791802766093], + [-49.59351193912397, -23.83088079666224], + [-49.59447829105158, -23.8333155169724], + [-49.59373208018572, -23.83627140418769], + [-49.59313035717032, -23.837540078942457], + [-49.590583952669206, -23.839684960276475], + [-49.58828142243511, -23.84074554288271], + [-49.58712917581366, -23.84127580718857], + [-49.58697402195355, -23.84149301863802], + [-49.58681786008953, -23.84171024009036], + [-49.5871400598395, -23.842750275200707], + [-49.58761685981269, -23.842793633840376], + [-49.590068463503385, -23.842290573824023], + [-49.59733251343307, -23.83788698494956], + [-49.59899591075576, -23.837282003180746], + [-49.60152648055296, -23.837314436951768], + [-49.60449399719103, -23.837988224490605], + [-49.6085049709073, -23.83986935707735], + [-49.608086918511056, -23.841111789305682], + [-49.596462887832864, -23.846086370664594], + [-49.595948804932185, -23.847289071167385], + [-49.59634755295467, -23.848913379073657], + [-49.59801251954512, -23.849862838341682], + [-49.60081969656563, -23.849941945319763], + [-49.60695813123401, -23.84851187973121], + [-49.60937272539289, -23.84907706084151], + [-49.610434232542445, -23.84969295182196], + [-49.611036359387136, -23.85073821812742], + [-49.61120362092584, -23.85218472268697], + [-49.610592316652635, -23.853681180474954], + [-49.609290367190006, -23.854426305218833], + [-49.60610759324004, -23.854792601331926], + [-49.602681189915174, -23.855915111161238], + [-49.6001851699869, -23.85757947934423], + [-49.59937351063077, -23.85898365970389], + [-49.599674665146296, -23.860271783878236], + [-49.602428718128095, -23.86335089008573], + [-49.60298650239247, -23.86486438753124], + [-49.60293093441694, -23.86877171779609], + [-49.601952685411824, -23.86958184761703], + [-49.599518799617904, -23.87033064060086], + [-49.597643470390665, -23.871205259989974], + [-49.594566591811386, -23.873041244842753], + [-49.59239514628862, -23.875345457119007], + [-49.59231879005936, -23.875954602354582], + [-49.59193734689498, -23.878994353531755], + [-49.58881972496939, -23.88667789666991], + [-49.58750908506223, -23.88936975249714], + [-49.58581576581213, -23.89091889038698], + [-49.58456433244257, -23.890162205945654], + [-49.5817051145205, -23.884571180960908], + [-49.579154257882095, -23.880778486142763], + [-49.57847881680403, -23.880044582051916], + [-49.576323608686195, -23.878022977152224], + [-49.57515048554395, -23.877538801490648], + [-49.57406851445761, -23.878444868610476], + [-49.57626438794514, -23.883482626486078], + [-49.576128073862215, -23.890107839075323], + [-49.57684719005739, -23.893482226119808], + [-49.57737974712573, -23.89437423762317], + [-49.5779969236072, -23.896472339920255], + [-49.57784520395787, -23.89792786939762], + [-49.57567254548471, -23.899955998674148], + [-49.57312274226798, -23.90042253398254], + [-49.569985826627665, -23.89995487794082], + [-49.568987950169976, -23.90095160182545], + [-49.569289322547114, -23.9021965150018], + [-49.56881755820897, -23.903812064401016], + [-49.566535891741204, -23.90626220000303], + [-49.56551345662922, -23.91004424304524], + [-49.56363862986962, -23.912832202495423], + [-49.554931650387886, -23.91578720849322], + [-49.55409298638438, -23.917033484931853], + [-49.55479522417346, -23.91853416197219], + [-49.55747760741133, -23.921753477402802], + [-49.557456805306366, -23.92322068250917], + [-49.555763254088504, -23.923604335366587], + [-49.55123024897241, -23.923113076317037], + [-49.546900473954416, -23.923600682715264], + [-49.54420850953058, -23.92446893044141], + [-49.542208371284964, -23.92696459124409], + [-49.540652845184894, -23.927817895720366], + [-49.53740161737255, -23.92802828202224], + [-49.53626893509549, -23.92864420128124], + [-49.53267558986261, -23.930596163619917], + [-49.53267516585993, -23.93059583162111], + [-49.53162391102293, -23.929773654596953], + [-49.53136878404349, -23.928594020284788], + [-49.5312350483233, -23.927057497613095], + [-49.53123511932196, -23.927057049612934], + [-49.53123507932037, -23.927056597612975], + [-49.53164943497312, -23.92441600133646], + [-49.531228459561746, -23.92300179548971], + [-49.52995133954237, -23.922677317126954], + [-49.52745678075027, -23.922919372261624], + [-49.52661877573859, -23.921802102615505], + [-49.52509588958205, -23.91758074781368], + [-49.5240642127068, -23.916723646728638], + [-49.52280285796692, -23.917054616342043], + [-49.52279231004145, -23.918270684416136], + [-49.52187123318272, -23.919361178085506], + [-49.52064661192866, -23.919794108597785], + [-49.5193719876444, -23.92116172728687], + [-49.51882058628238, -23.922273760901852], + [-49.51737189400763, -23.92384262709555], + [-49.5130106658042, -23.925205030596718], + [-49.5120714481908, -23.9263895273221], + [-49.5120717891936, -23.926389958321092], + [-49.512071417193624, -23.926390427322243], + [-49.512949883335686, -23.92749993285576], + [-49.5145687228176, -23.928457102269473], + [-49.515734192547, -23.92970830298778], + [-49.5158673313407, -23.930972694654212], + [-49.51530016314477, -23.93185629030651], + [-49.515047256971066, -23.932093100037445], + [-49.510067731886835, -23.931833585246313], + [-49.508848917233635, -23.933029722770932], + [-49.508513004948405, -23.93421465977461], + [-49.50986975115576, -23.936865340000395], + [-49.5108392605391, -23.937645947260936], + [-49.51267735443208, -23.938177958031286], + [-49.512678336436075, -23.938177990028507], + [-49.51482412997162, -23.93825401890224], + [-49.51982720788346, -23.936958945562182], + [-49.523789012211424, -23.93490721316842], + [-49.524933100116314, -23.935643258925484], + [-49.52481713929471, -23.937008536305626], + [-49.523512385064585, -23.939015921106197], + [-49.523309498357335, -23.94110398676092], + [-49.52156683423347, -23.94659185193915], + [-49.52025810431638, -23.947516055713407], + [-49.51434291066708, -23.944911979522693], + [-49.5131258358636, -23.94517564700976], + [-49.51220022934086, -23.946075804687688], + [-49.511910315886134, -23.94774773157807], + [-49.510713906308034, -23.948349857018734], + [-49.508659581770154, -23.948465627892112], + [-49.50610781069013, -23.948102832167745], + [-49.50438925156708, -23.94766342005971], + [-49.50338044430802, -23.949032307992994], + [-49.50346968043958, -23.949264669747055], + [-49.50346995044129, -23.949264891746296], + [-49.50405479384702, -23.950784630133732], + [-49.50562895550553, -23.95331736773309], + [-49.50612110417606, -23.954430060369], + [-49.50613590929678, -23.955334198360887], + [-49.50475242837021, -23.956932715374293], + [-49.50181811802427, -23.957814648791334], + [-49.50050285915149, -23.958466362573777], + [-49.50009981212962, -23.95891949174263], + [-49.50013460090815, -23.959699871673227], + [-49.50067859440703, -23.96011221713493], + [-49.50610301331857, -23.961574479690366], + [-49.50762122670325, -23.963202776412217], + [-49.50958168337168, -23.964410587853173], + [-49.5111610060464, -23.9648747403551], + [-49.51385259704925, -23.964758628654682], + [-49.51417349472676, -23.96488781974185], + [-49.51509220587492, -23.96742301320735], + [-49.517195009419275, -23.970199948293693], + [-49.51722396193121, -23.970612554225884], + [-49.51689919996226, -23.97099142516866], + [-49.51556767528623, -23.97083458097193], + [-49.51231657319764, -23.971857917308625], + [-49.511237385023925, -23.97244631941683], + [-49.509702770080395, -23.971852816783773], + [-49.50864516899024, -23.96890358869817], + [-49.50770935291441, -23.96788335833558], + [-49.50494061531943, -23.96820883426306], + [-49.50106776335612, -23.969979610400504], + [-49.49904301325288, -23.972257564275008], + [-49.498038755082256, -23.974532018233013], + [-49.495957590155676, -23.976337045251267], + [-49.49537698282738, -23.976607457921254], + [-49.494151649099436, -23.978085230480893], + [-49.494151890102316, -23.978085801480308], + [-49.494151617102375, -23.978086130481135], + [-49.494735686042716, -23.979466620865285], + [-49.496109883381784, -23.98271693106292], + [-49.496200898947095, -23.983074605816547], + [-49.49624429469977, -23.983246989699087], + [-49.496819902683384, -23.98553350814152], + [-49.49611805912282, -23.987052748207056], + [-49.496913337561935, -23.988043708971052], + [-49.49738711627937, -23.988893707648778], + [-49.49881780003334, -23.99337750572841], + [-49.49859202828465, -23.994298017409417], + [-49.49819659420771, -23.994726121557022], + [-49.49670616442325, -23.99472120682052], + [-49.49370933779605, -23.993534171346393], + [-49.49273704016847, -23.99386876414005], + [-49.492046316749814, -23.99512250716432], + [-49.49137556209852, -23.996874177151028], + [-49.490883116234805, -23.997770629594513], + [-49.49056708919694, -23.998119950512073], + [-49.489770921056675, -23.99957600984621], + [-49.48687211542384, -24.000928884190067], + [-49.48767316059472, -24.004484266039437], + [-49.48729450443394, -24.00575254517263], + [-49.48664776838864, -24.00706610507448], + [-49.48528860914108, -24.00707122496247], + [-49.48188946936741, -24.00571444562989], + [-49.48103818528416, -24.006661570102263], + [-49.48148685896104, -24.009294812925017], + [-49.483954185107436, -24.012412671991942], + [-49.48800947441143, -24.012586788396252], + [-49.49012465843002, -24.01312371636443], + [-49.4925359933138, -24.014754997526488], + [-49.492335104997295, -24.015185181118156], + [-49.49233521399881, -24.015185525117865], + [-49.49198428419617, -24.015938023151556], + [-49.48781672274892, -24.015849899076024], + [-49.486622588446544, -24.01712304554349], + [-49.4906221388318, -24.01914970317546], + [-49.490512327346394, -24.02060337454641], + [-49.4880636056357, -24.022598315634188], + [-49.48825944516074, -24.02400059512852], + [-49.48762055838626, -24.025089822000197], + [-49.485005090790835, -24.02436715545886], + [-49.48203461288355, -24.02454648496796], + [-49.48105058787806, -24.023607543746586], + [-49.48082375266412, -24.020565473273827], + [-49.48007204859076, -24.01992978739912], + [-49.47816590241554, -24.020581848878912], + [-49.47484886644569, -24.0205499273665], + [-49.474356766192486, -24.021037269793982], + [-49.474356963195454, -24.021037942793512], + [-49.47435673419542, -24.02103816979417], + [-49.47540963549065, -24.024633891928712], + [-49.47422652367439, -24.027805143442887], + [-49.47359058140793, -24.02815850027689], + [-49.47155724742327, -24.02665789703244], + [-49.47005142116425, -24.02624048232279], + [-49.466807654074984, -24.02638622060647], + [-49.46391021606098, -24.027925999957063], + [-49.46389255321624, -24.027991918010276], + [-49.46389215421538, -24.02799213801148], + [-49.46291618980002, -24.031635629955733], + [-49.46173123365566, -24.033536394424928], + [-49.461730998655995, -24.033536769425655], + [-49.46195810154011, -24.034126404800922], + [-49.462502255697196, -24.036494901344334], + [-49.46312448445963, -24.038657583655265], + [-49.46267099893174, -24.03960910999256], + [-49.46267001693069, -24.039609912995452], + [-49.461454674588616, -24.040603851514277], + [-49.460037045836685, -24.043180119678784], + [-49.45884776192472, -24.04427113512746], + [-49.45812123071341, -24.04562810326367], + [-49.458066349886025, -24.047213066488037], + [-49.45840962300713, -24.048916126578163], + [-49.45800733804445, -24.049975458774316], + [-49.454313339615325, -24.05318969948136], + [-49.45239272281, -24.05573744308639], + [-49.45031492872533, -24.056911947082163], + [-49.44515996233515, -24.058280688889425], + [-49.44056629262052, -24.0583244230301], + [-49.438290608004756, -24.059276639580457], + [-49.440670225429265, -24.06344667096052], + [-49.440484698886166, -24.067324218663465], + [-49.43945021436576, -24.069237792708204], + [-49.43813780587939, -24.069420292470948], + [-49.435340077532935, -24.068108166415172], + [-49.43156415553468, -24.068607473236884], + [-49.43025335644289, -24.069199075012246], + [-49.432480361171706, -24.07245382879098], + [-49.43241860198268, -24.07305741799503], + [-49.43328385788974, -24.07409854356702], + [-49.43585707796008, -24.075585125272113], + [-49.43448268152462, -24.076442443243074], + [-49.43259552512596, -24.076721387654814], + [-49.430427649698395, -24.077313574883387], + [-49.42947934013293, -24.078527695651484], + [-49.431427066350146, -24.080478609167876], + [-49.43200412931956, -24.081573322566424], + [-49.43231105388121, -24.086091647892413], + [-49.43187052947215, -24.0873578472104], + [-49.43047796772279, -24.089026309271564], + [-49.42747923176175, -24.08776836879584], + [-49.42622541603896, -24.088992261439607], + [-49.42534691161789, -24.090757090034458], + [-49.42245503082572, -24.09266179139699], + [-49.42145417078213, -24.091443562204127], + [-49.41972921560803, -24.091310946132843], + [-49.418286290522, -24.091763324281604], + [-49.41617541837791, -24.09325879738987], + [-49.41672880475625, -24.094794302878984], + [-49.41515188590764, -24.095470570421735], + [-49.412677826059685, -24.09335234439801], + [-49.411477544295664, -24.093621822843403], + [-49.410765343744146, -24.095159081953398], + [-49.409347003309186, -24.09489317299674], + [-49.4053493496325, -24.096339149496995], + [-49.405151398647526, -24.09774764513105], + [-49.40828528215102, -24.098418173201726], + [-49.40789554294345, -24.09968669137715], + [-49.405171278363, -24.102641992310495], + [-49.405469711369975, -24.104066274525632], + [-49.40917545310859, -24.107382821084105], + [-49.4096197784815, -24.10874660787778], + [-49.409536302337685, -24.108800077119188], + [-49.409536188336816, -24.108799959119494], + [-49.40834063827722, -24.109565939576843], + [-49.40439606864163, -24.109789088872688], + [-49.40278874953877, -24.11042734950134], + [-49.40075724561181, -24.11219250239809], + [-49.39441576801691, -24.114593840652883], + [-49.39281368500872, -24.115549258281657], + [-49.392317294819996, -24.11753432179964], + [-49.389567125866215, -24.12011910679302], + [-49.38886560074816, -24.11912591574943], + [-49.38882077243006, -24.117907453816635], + [-49.38739998962227, -24.116361069801364], + [-49.38520180035751, -24.11645610709017], + [-49.38364805737215, -24.115598475488014], + [-49.37846020824444, -24.11858340846731], + [-49.37609155992961, -24.118272270220107], + [-49.37131360270991, -24.11487394169397], + [-49.369783816822675, -24.115784436111074], + [-49.369207709165956, -24.117431843842837], + [-49.368788498599706, -24.118630851103124], + [-49.36711550454276, -24.119362208920165], + [-49.365154664324876, -24.11890558649637], + [-49.363180353302305, -24.119994435192364], + [-49.363179744302165, -24.1199950801941], + [-49.36317933830129, -24.11999530519529], + [-49.362622593128826, -24.12058563481657], + [-49.363364314325096, -24.121850402765485], + [-49.36539511674049, -24.12257853200359], + [-49.36540020376531, -24.124346206082457], + [-49.36342139015734, -24.127328550892884], + [-49.36189499451281, -24.12860209532073], + [-49.35783993047993, -24.130907933026794], + [-49.35600501162247, -24.131591891304367], + [-49.35353512471397, -24.131815127370132], + [-49.352005164646975, -24.133264115817774], + [-49.34995026053126, -24.132948657668372], + [-49.34994948152791, -24.132948537670586], + [-49.34790493658341, -24.133849530557487], + [-49.34399451612061, -24.13557189281621], + [-49.34278631395102, -24.137209828355893], + [-49.342342789882906, -24.138879131714447], + [-49.340946562105074, -24.139377146728176], + [-49.33893251458991, -24.13742582936853], + [-49.33742927607796, -24.137536789665177], + [-49.337032791343354, -24.138072428826767], + [-49.33683919143895, -24.139796625475938], + [-49.33664461053092, -24.14152077312797], + [-49.337168468750626, -24.144809026816624], + [-49.337168473750744, -24.144809057816552], + [-49.33726242712566, -24.14539990458137], + [-49.33542135012412, -24.14722931793996], + [-49.33358057711884, -24.149057561297862], + [-49.33292644983257, -24.15061139025283], + [-49.33362307138895, -24.152326235360466], + [-49.33548152383707, -24.15355131512258], + [-49.33826323790373, -24.154187431213927], + [-49.33939906568441, -24.154872457007826], + [-49.340812528735825, -24.15767031712514], + [-49.340532494408585, -24.164073177279644], + [-49.341010301096475, -24.168722630170926], + [-49.34028489658093, -24.170583309347165], + [-49.3402930536106, -24.17528511158351], + [-49.34392627695287, -24.188233914903748], + [-49.34678472292306, -24.191682987912156], + [-49.346976673837354, -24.192904091428964], + [-49.34650789861032, -24.196018493939647], + [-49.34545394382318, -24.199055605121348], + [-49.34453842571108, -24.200370882813655], + [-49.34234037896345, -24.202097477199878], + [-49.34201140783573, -24.20361259122437], + [-49.34328522977082, -24.204765790640703], + [-49.353263383719046, -24.20879927028151], + [-49.35622976997913, -24.209564252822847], + [-49.35717008368, -24.210738746190394], + [-49.35730723963878, -24.212033857865677], + [-49.35642524830719, -24.21500241555022], + [-49.353676355553134, -24.219116809646994], + [-49.35114461102682, -24.221290985019102], + [-49.34682688570937, -24.22265395446627], + [-49.345170890767676, -24.224578140315515], + [-49.33737473894905, -24.228046283842456], + [-49.335704932455094, -24.229533008708007], + [-49.33520752230588, -24.231527595243108], + [-49.33253523689257, -24.232435914948873], + [-49.33065964682105, -24.233698332391896], + [-49.32918013639502, -24.23469346468543], + [-49.323145295694225, -24.236467039069495], + [-49.322446390480394, -24.237796868146297], + [-49.32167442345064, -24.239264983440357], + [-49.32029125171144, -24.238592882363182], + [-49.3199760167967, -24.240447037371393], + [-49.31997609679782, -24.240447270371266], + [-49.31997598379965, -24.240447937371616], + [-49.32053691456962, -24.24207763485785], + [-49.320091033388465, -24.244297124261056], + [-49.31767667911028, -24.24407169716299], + [-49.31636468757187, -24.244842168964347], + [-49.313173170742694, -24.243887460048242], + [-49.31317864148163, -24.245563167129262], + [-49.31215364279379, -24.247424307171613], + [-49.30967850981934, -24.248824670339797], + [-49.3086212025069, -24.24995421543279], + [-49.30852585931683, -24.2511809067771], + [-49.30584135726372, -24.251921657506514], + [-49.305369111907865, -24.253242137935853], + [-49.30536929490959, -24.253242433935384], + [-49.30626092634634, -24.254684777466686], + [-49.30608710491048, -24.255929944037156], + [-49.30608700391261, -24.25593066503744], + [-49.3066455101569, -24.257408086524343], + [-49.30914091497668, -24.259160402479264], + [-49.30883601202948, -24.260699536441912], + [-49.30606052131933, -24.2595961903274], + [-49.30309143473022, -24.25963087483219], + [-49.3026443765398, -24.263021293311546], + [-49.301427330121335, -24.263426092820737], + [-49.30167647713392, -24.265192446211152], + [-49.301064173512316, -24.26659658304756], + [-49.29917718772752, -24.268547224566966], + [-49.29956184316497, -24.271745267654104], + [-49.30059487461647, -24.274490377856612], + [-49.30169752571795, -24.275588236761905], + [-49.301702333857826, -24.276794577818933], + [-49.298399248849556, -24.28031578349079], + [-49.29861407474182, -24.28354822406596], + [-49.2977061740995, -24.284409309718594], + [-49.29648439916213, -24.284668865235172], + [-49.295673393238665, -24.285921176633366], + [-49.297040744807425, -24.28801904383909], + [-49.29800358114622, -24.287005622019663], + [-49.29800379214701, -24.287005602019033], + [-49.29800459814726, -24.287004753016753], + [-49.299507924592476, -24.286861070699512], + [-49.29914145806064, -24.288299172834563], + [-49.29722472887007, -24.290750580473162], + [-49.29571536377149, -24.29100304581441], + [-49.29433986849946, -24.289879792689916], + [-49.29433961149769, -24.28987958269069], + [-49.293111224682676, -24.29018303922904], + [-49.291916848963886, -24.291645975738994], + [-49.28917992133364, -24.292284707620023], + [-49.28990035837195, -24.29351136262914], + [-49.29126000515662, -24.294217293775013], + [-49.29049432159133, -24.29669245711745], + [-49.28963269257998, -24.298562907699], + [-49.28814695665262, -24.29854667595626], + [-49.28746821139601, -24.299548987961792], + [-49.287367701102625, -24.303089637462733], + [-49.28627053504952, -24.303172782612613], + [-49.28656700697422, -24.304562888846522], + [-49.284107864788, -24.306474814010766], + [-49.28337291766609, -24.307581652184364], + [-49.284276280562025, -24.30855367165365], + [-49.28350729926098, -24.30935498490653], + [-49.281584312368786, -24.31014845646682], + [-49.28050542887695, -24.308327834448416], + [-49.27866735267644, -24.30688542462785], + [-49.275179348758556, -24.30597191956578], + [-49.27433350231519, -24.30857688314966], + [-49.273967291911276, -24.308882595217707], + [-49.27309887447336, -24.309174515723818], + [-49.272681216894824, -24.30802565184934], + [-49.27236891591821, -24.30780877373055], + [-49.27028846619885, -24.307665792681252], + [-49.26915632094453, -24.308317019964694], + [-49.26814898947804, -24.309932353950654], + [-49.26664713997708, -24.310354441278694], + [-49.26587581366312, -24.310570604501457], + [-49.2626426245642, -24.312238267865833], + [-49.261592051644975, -24.31289376791574], + [-49.26117348330989, -24.313280686138846], + [-49.258624599109986, -24.31734670069554], + [-49.25602152213419, -24.31715119713733], + [-49.25470297120624, -24.318408112993033], + [-49.253514144374655, -24.319542951469604], + [-49.25090390210194, -24.319855166963134], + [-49.24987191682943, -24.325948198309955], + [-49.25089867817559, -24.327492639468982], + [-49.250925554392566, -24.329280606506742], + [-49.249342936007146, -24.331003017150195], + [-49.24623873765861, -24.33128258305827], + [-49.2451695441481, -24.33266607820971], + [-49.241839426949376, -24.33178911568794], + [-49.24001137715223, -24.33192101293013], + [-49.23652675709895, -24.330095196784665], + [-49.23168003957851, -24.330885577707093], + [-49.23137174229099, -24.33174514264638], + [-49.23106348000057, -24.332603807585624], + [-49.22934861898579, -24.334005662586065], + [-49.22475437368419, -24.3407189251821], + [-49.221476110558285, -24.340978075579862], + [-49.213836779938525, -24.33972006334638], + [-49.21245397165285, -24.340072873325035], + [-49.211884909995966, -24.339370402903974], + [-49.2108487171621, -24.339159437852405], + [-49.21040900007497, -24.338766385082607], + [-49.21014711100082, -24.338756337830745], + [-49.2092377314718, -24.339366321472905], + [-49.208467731536686, -24.338816041636246], + [-49.206413682138354, -24.33874502450336], + [-49.20522776190748, -24.33947146994392], + [-49.204734002927374, -24.33946581435482], + [-49.204447004066836, -24.33984074620132], + [-49.20426007915469, -24.340084086752643], + [-49.20426043915737, -24.34008447275159], + [-49.20426004615763, -24.340084986752785], + [-49.205149812952385, -24.341040787275798], + [-49.201677800499326, -24.34319122935076], + [-49.20114571423212, -24.34490473999162], + [-49.2015790293177, -24.345597558801327], + [-49.20464958388847, -24.34805071219343], + [-49.20703331616982, -24.34887436443385], + [-49.20780507056621, -24.349849859294075], + [-49.208928184935786, -24.352751381281834], + [-49.210597700775324, -24.353690298570243], + [-49.21189957480114, -24.354233009882734], + [-49.21311841719281, -24.35410114738614], + [-49.214338748153416, -24.354426895916305], + [-49.21662187690066, -24.356381285515248], + [-49.22078250250763, -24.36137794394245], + [-49.223927168885545, -24.363976347111304], + [-49.22883879175932, -24.37109699751436], + [-49.230190297134, -24.37226716271853], + [-49.2321152330279, -24.375552265417664], + [-49.23828651110613, -24.37951095398073], + [-49.23861558008603, -24.382042489201666], + [-49.23992412039558, -24.384992947639326], + [-49.24814294622523, -24.3932085425781], + [-49.24967843651813, -24.39792795846918], + [-49.25289396682088, -24.4044897426474], + [-49.2539677546595, -24.40552947662731], + [-49.25442784549513, -24.40815249147022], + [-49.253944780693644, -24.40993442497071], + [-49.25070206398127, -24.414355749569978], + [-49.24786643872847, -24.406790637238213], + [-49.246147847297784, -24.404868707052465], + [-49.24418549496378, -24.402674175548086], + [-49.243564253480905, -24.402379080313228], + [-49.2414709957873, -24.402562997336126], + [-49.23831782448167, -24.404963735545273], + [-49.23777181641508, -24.40586898217179], + [-49.236921221675274, -24.40897152181575], + [-49.23601674475264, -24.410042958482652], + [-49.23592818950887, -24.411531828833834], + [-49.23783311561042, -24.415180221599677], + [-49.24098420419807, -24.419563075829863], + [-49.24115082596655, -24.422505675540428], + [-49.24692206974734, -24.428271311319158], + [-49.24817342600563, -24.430970470892113], + [-49.24931972993129, -24.431948576657263], + [-49.25065119718644, -24.432226272845128], + [-49.2531298563639, -24.434643157866837], + [-49.25370033077137, -24.436427419337303], + [-49.25370650156237, -24.43810394342464], + [-49.25343629790914, -24.43909894326453], + [-49.25265148524837, -24.440396704604275], + [-49.25298679019549, -24.44202799074166], + [-49.25238568281468, -24.4431944205447], + [-49.25098504958067, -24.445910361746346], + [-49.2513567704183, -24.447757765792648], + [-49.253912678464204, -24.450042881578177], + [-49.253257998418036, -24.45136813154586], + [-49.25214543337402, -24.45206201079243], + [-49.25278039584054, -24.4534961020541], + [-49.25384236022392, -24.454702157071633], + [-49.25401670719749, -24.45623531866532], + [-49.2517316509216, -24.457928354351452], + [-49.25045456583702, -24.457929774028877], + [-49.24976626739971, -24.4583090440346], + [-49.24606469788692, -24.458669487714637], + [-49.245804198657666, -24.45890452247938], + [-49.246014011871836, -24.459885727937483], + [-49.246008609208985, -24.462023065088378], + [-49.24528667369764, -24.463872197284218], + [-49.2457851916358, -24.46560018495813], + [-49.24895838439776, -24.463890076712076], + [-49.24939503852899, -24.46516483553474], + [-49.249590780688386, -24.46701675708729], + [-49.248401993980565, -24.468187287585017], + [-49.247390922776354, -24.46958868958562], + [-49.24872466168059, -24.470629466809218], + [-49.24945297629416, -24.471996245796895], + [-49.25081821009556, -24.471229260815598], + [-49.25420540662005, -24.470944470038365], + [-49.25389618119536, -24.47350017008835], + [-49.25401015360287, -24.473776672777166], + [-49.25503643887991, -24.47441048885888], + [-49.25653292674798, -24.474381737543855], + [-49.25803892014531, -24.4733353501384], + [-49.25958055711631, -24.473284513691542], + [-49.25958065611682, -24.473284573691267], + [-49.26114186561801, -24.474235036248956], + [-49.26355000750573, -24.474318456311018], + [-49.26431910563952, -24.474918098129955], + [-49.265761831769154, -24.478216803170216], + [-49.26591996073368, -24.479762952807985], + [-49.26592002373404, -24.479762978807837], + [-49.266784565371886, -24.480398023352674], + [-49.26856383522926, -24.480619361233472], + [-49.26904242551277, -24.4818872969292], + [-49.27028660206621, -24.48176942133249], + [-49.27168828874493, -24.483823735411427], + [-49.2706865971892, -24.48510939937914], + [-49.27071382188296, -24.48614795036301], + [-49.27139867827273, -24.48836634551961], + [-49.27180988586666, -24.490669876470864], + [-49.27059649168369, -24.49143908001939], + [-49.26996191423079, -24.492619996922013], + [-49.26996211723313, -24.492620455921468], + [-49.26996188023379, -24.492620896922134], + [-49.27004101817075, -24.492800822704485], + [-49.27168084478891, -24.49340242300697], + [-49.27334260183667, -24.49323452119951], + [-49.274536767536986, -24.493506002768008], + [-49.27624698995646, -24.494258383874573], + [-49.27849116414996, -24.494618443415117], + [-49.280152620958795, -24.495250359653813], + [-49.28159607897217, -24.495614236505865], + [-49.28475252351197, -24.495311731369988], + [-49.2882550276826, -24.496817919337527], + [-49.290477687616836, -24.498285122998833], + [-49.29195979981284, -24.50039225683597], + [-49.293148239114906, -24.50055533040977], + [-49.295004266591846, -24.500288747028737], + [-49.295004864594574, -24.500288833027017], + [-49.29572892984207, -24.500393243939588], + [-49.29614218589879, -24.5008006387679], + [-49.296930095525376, -24.50238621557974], + [-49.296843511008305, -24.50378157190932], + [-49.29509714464085, -24.505976594084256], + [-49.29519429219642, -24.5068921268554], + [-49.291675996659784, -24.509924690203096], + [-49.290172246330904, -24.510984972612356], + [-49.29056276522235, -24.512526198571575], + [-49.29003634090898, -24.51390923417337], + [-49.28876687245827, -24.51379764683811], + [-49.287585113845665, -24.51469406730719], + [-49.287902063673485, -24.5157236394501], + [-49.28690160281599, -24.51662930239566], + [-49.287576767188064, -24.517980808521063], + [-49.28670480737068, -24.518749946087308], + [-49.28712020109256, -24.52079057600378], + [-49.28767334785068, -24.52210495347959], + [-49.28881150562694, -24.523327655257596], + [-49.287316572033355, -24.523724275605026], + [-49.28812579205328, -24.52481873032715], + [-49.28794772257361, -24.52575181089597], + [-49.288026009237434, -24.526430747708503], + [-49.28846459844087, -24.527138924480333], + [-49.28843126574869, -24.52755495360075], + [-49.28791875118692, -24.528849643158086], + [-49.28714682673294, -24.5296083794354], + [-49.28689771542606, -24.53096171523416], + [-49.28567076893117, -24.530500998757688], + [-49.28412655060707, -24.532765182356638], + [-49.28426064700286, -24.534168293049937], + [-49.28315172058216, -24.534748044292257], + [-49.281846281727745, -24.534563189058698], + [-49.28081633280512, -24.53519583007535], + [-49.28037363126334, -24.536416091427448], + [-49.28074016636665, -24.537755294444995], + [-49.28131228926675, -24.538509996833515], + [-49.282180378145924, -24.53920596036201], + [-49.28256437174659, -24.539513815268638], + [-49.283092658321856, -24.539936554764264], + [-49.28414007328918, -24.541316814812706], + [-49.286146164093765, -24.541833380035786], + [-49.28700795176748, -24.542765547594687], + [-49.28832543112605, -24.543370058815103], + [-49.28832558012699, -24.543370126814594], + [-49.289642291481414, -24.543974286036732], + [-49.29008690319776, -24.543668620731932], + [-49.29053089691057, -24.543362672428895], + [-49.29053142691392, -24.54336301742733], + [-49.29272806464386, -24.544792214147602], + [-49.29269039302363, -24.54725202139634], + [-49.292948324243625, -24.548171661701492], + [-49.29301062216387, -24.549806748613705], + [-49.29340164734307, -24.55229071862169], + [-49.29299940551749, -24.55338076684884], + [-49.29379880722328, -24.553528173541086], + [-49.29619647153051, -24.552584918540802], + [-49.29699981550125, -24.55193972517676], + [-49.2969399934551, -24.550554232272237], + [-49.29755839635141, -24.550100554454996], + [-49.298643550981446, -24.55018566031546], + [-49.300167942417204, -24.55115008995203], + [-49.301608998865376, -24.550485063738765], + [-49.30329482505882, -24.550617635860203], + [-49.30455696116854, -24.547467994027624], + [-49.306041392064564, -24.546882634692988], + [-49.3059302246357, -24.548327656094983], + [-49.306982841852374, -24.54833154604414], + [-49.30711776857422, -24.549824774735196], + [-49.307540235304856, -24.550413510542835], + [-49.3082624975264, -24.550510701454254], + [-49.30904323365091, -24.549648538143618], + [-49.31028458728071, -24.55041852258671], + [-49.30990088540885, -24.552048796788398], + [-49.31025445326166, -24.553903732864484], + [-49.31201119722034, -24.55417533878474], + [-49.313235933958644, -24.554995237277325], + [-49.31645774231248, -24.55599955098614], + [-49.31566816198437, -24.559115324444665], + [-49.315910198922595, -24.560546118819413], + [-49.315902422972066, -24.560569299843294], + [-49.31510688603867, -24.56294170527937], + [-49.31557693086088, -24.56350127494556], + [-49.31581430379264, -24.563784285272053], + [-49.31814462974395, -24.564544750550276], + [-49.318146166737684, -24.567130147684125], + [-49.31732924998448, -24.56813986510931], + [-49.315121154584595, -24.569699461602124], + [-49.31401612088, -24.57047922885131], + [-49.31383212557918, -24.57146711943868], + [-49.31423278373042, -24.572775823346348], + [-49.313569590737266, -24.57440283535918], + [-49.31217983566382, -24.57511638543174], + [-49.3124256921829, -24.576708548804223], + [-49.31242561188781, -24.57806156787766], + [-49.313067383996405, -24.579367852085067], + [-49.31198202348847, -24.580181823280064], + [-49.31134066446071, -24.58148610421274], + [-49.31324045338493, -24.583017917779415], + [-49.31283674003083, -24.583380122971267], + [-49.31282084503196, -24.586560402189026], + [-49.31328397545425, -24.58672431685288], + [-49.313850035164585, -24.586565329200344], + [-49.31640174158068, -24.587201220823054], + [-49.316823436200906, -24.588044270643238], + [-49.317033285507, -24.588465743056226], + [-49.31647492704505, -24.588974496705312], + [-49.31501497446082, -24.59077136004263], + [-49.3120659131659, -24.59148963064754], + [-49.310258361323655, -24.592750466965683], + [-49.30848525241798, -24.59337907914948], + [-49.30462514783436, -24.596212789514478], + [-49.30406554086356, -24.597439391206816], + [-49.306565428290384, -24.599571900062855], + [-49.30845410689042, -24.60188175170194], + [-49.30967119962828, -24.602705094210425], + [-49.308870827852154, -24.603976478604768], + [-49.31011569560141, -24.604770957030574], + [-49.31145468053203, -24.603786546086468], + [-49.31145620853943, -24.60378693508211], + [-49.31270940566483, -24.604105682457384], + [-49.31359651600718, -24.605194396937645], + [-49.312371600556936, -24.605611255520056], + [-49.31392361131813, -24.607204362094624], + [-49.314564937317876, -24.60876377231384], + [-49.314143769791066, -24.609670421586696], + [-49.31305827089908, -24.610374466779984], + [-49.312738436817106, -24.611292366758967], + [-49.31392936770628, -24.61247520136009], + [-49.31509318531187, -24.61475528009804], + [-49.31454140293804, -24.616142508776594], + [-49.31281465748254, -24.61713470185063], + [-49.31220265958132, -24.61843987570017], + [-49.31142393120735, -24.61865348297598], + [-49.31087483153292, -24.6188039625807], + [-49.309731703165276, -24.619725076954097], + [-49.30754416313028, -24.622228835449885], + [-49.308594280562076, -24.624588296523896], + [-49.31020631649257, -24.62558429088961], + [-49.31065094672998, -24.62743577169593], + [-49.31206550306529, -24.630781231760448], + [-49.31453988517444, -24.63255708565594], + [-49.31492476147286, -24.633920266608545], + [-49.31333964625282, -24.634817749268944], + [-49.313874984747066, -24.635777542762252], + [-49.313430557860876, -24.636033969069253], + [-49.313462126313425, -24.63698710902818], + [-49.31329136525496, -24.637166466534694], + [-49.31384606606499, -24.63848088199041], + [-49.31517732258243, -24.63853307511846], + [-49.316896809810494, -24.639489125164], + [-49.314176144601014, -24.642552868246174], + [-49.31287600906294, -24.64245933102576], + [-49.31114265992124, -24.64068486697596], + [-49.309873149263076, -24.64109487069247], + [-49.30881750838641, -24.642629422846976], + [-49.30684379196209, -24.643342667629046], + [-49.307295600727166, -24.64447550137544], + [-49.307477112046804, -24.644931593871796], + [-49.30871168284158, -24.645746527322583], + [-49.31020328158745, -24.646252165008175], + [-49.309012753889455, -24.647419691536236], + [-49.307703591613524, -24.64769871736174], + [-49.305980405823185, -24.649452065471877], + [-49.30465382889887, -24.649852127354578], + [-49.30321004316451, -24.64958192954169], + [-49.30213555044134, -24.650323122709015], + [-49.3021822718595, -24.65210816767029], + [-49.3017631435975, -24.653374236959138], + [-49.30035170797872, -24.654532785130133], + [-49.300093977139724, -24.655448064930297], + [-49.30308947424274, -24.658622230383855], + [-49.30497868262696, -24.658852275896102], + [-49.30765083802535, -24.65847342409511], + [-49.30759072138793, -24.660077688356438], + [-49.308620404971144, -24.661351974426168], + [-49.310150760058214, -24.662481501029273], + [-49.31178537610939, -24.66262247027537], + [-49.31248417480892, -24.66402336031416], + [-49.30995803163798, -24.666016576779487], + [-49.30854336461558, -24.66620402291043], + [-49.30836943638767, -24.666624686439622], + [-49.308367943746795, -24.667587601495555], + [-49.306736263097626, -24.668131292277838], + [-49.30548689395174, -24.669524629992164], + [-49.305486672497956, -24.671111839078357], + [-49.30586635760861, -24.674140469135192], + [-49.304231442816075, -24.673503067863958], + [-49.301704898604605, -24.674628624284875], + [-49.30023220376701, -24.674936677591262], + [-49.299903697843156, -24.67504983255435], + [-49.29772840371803, -24.67579713393093], + [-49.294631225290345, -24.676373266982427], + [-49.294177981942, -24.678225546404512], + [-49.292484097192634, -24.6788139563698], + [-49.29151981992289, -24.679559383219132], + [-49.29094883680921, -24.680755790948265], + [-49.2906515271778, -24.68206164488649], + [-49.289953070635576, -24.683281982988312], + [-49.28845057525943, -24.684902323454136], + [-49.284205402540266, -24.688149131998134], + [-49.27860066174365, -24.693512318621462], + [-49.276149816617966, -24.694866741834588], + [-49.2749252004729, -24.695090420412853], + [-49.27342234542202, -24.695089162787987], + [-49.2720942198066, -24.69386652458383], + [-49.270566814144225, -24.693718578021105], + [-49.27056627914187, -24.693718526022664], + [-49.27035453732386, -24.693728259639528], + [-49.26764444385074, -24.693851864534057], + [-49.26615215678275, -24.6941201978923], + [-49.264731441046436, -24.693255799975816], + [-49.26322725420159, -24.693029209339006], + [-49.26184092863687, -24.69360619540626], + [-49.261064347559184, -24.695051791750586], + [-49.25956595457489, -24.69649716419508], + [-49.257868217289555, -24.696940891160327], + [-49.256491100905016, -24.696986661169127], + [-49.25487722960684, -24.69675742684976], + [-49.253040277193584, -24.69675263319213], + [-49.251791402350854, -24.697378889861778], + [-49.25039780450348, -24.69759792892767], + [-49.2490886702318, -24.697311595717316], + [-49.247304759878645, -24.69754980791874], + [-49.244906523172034, -24.697249752873052], + [-49.23750987257783, -24.6996009725174], + [-49.23314750408147, -24.699051194160344], + [-49.23137203633535, -24.699455214344205], + [-49.22847034725282, -24.698770540731264], + [-49.225915972160024, -24.699115565172704], + [-49.22372730719886, -24.69907583152703], + [-49.22073429501038, -24.699901343271257], + [-49.215298739913756, -24.702719007234528], + [-49.21228747224455, -24.70285559998556], + [-49.21032272451643, -24.702338200655348], + [-49.20838510342247, -24.701397403218063], + [-49.20742751546508, -24.70022208992044], + [-49.20531381718396, -24.697995730908076], + [-49.20481094764161, -24.696412459263236], + [-49.205227932783295, -24.694821566949205], + [-49.206427649342245, -24.692156729294336], + [-49.20681850346268, -24.689440898982813], + [-49.20647975713608, -24.68772865285324], + [-49.20547961566637, -24.68645380867026], + [-49.204314718937866, -24.68558263599112], + [-49.20008933584137, -24.68441574716482], + [-49.195432583008674, -24.683824947623528], + [-49.19492809901287, -24.683548541067047], + [-49.194064287639236, -24.682717535514666], + [-49.19262220184362, -24.68013510051993], + [-49.19253428169383, -24.679906380759256], + [-49.19253350068364, -24.67990434876137], + [-49.19253319268257, -24.67990437976229], + [-49.19199754667487, -24.678510094220318], + [-49.1908393370279, -24.67736613749846], + [-49.18970495163229, -24.67655439472949], + [-49.18759129388957, -24.67418916369073], + [-49.18611914266056, -24.673241407889194], + [-49.18101277125772, -24.672144065597582], + [-49.17973498048946, -24.672542712323715], + [-49.178289160970174, -24.672632432514774], + [-49.17670298408046, -24.672490669095616], + [-49.17531075593577, -24.67262621013399], + [-49.172845355514426, -24.673928865358878], + [-49.17178138477939, -24.675241287529122], + [-49.17031591883118, -24.676094980829216], + [-49.1689689925671, -24.675568104689532], + [-49.166834590864646, -24.674389969781643], + [-49.16426116047256, -24.672370885082856], + [-49.16299122162511, -24.671874356720497], + [-49.161340434392386, -24.671997861502955], + [-49.1599006239248, -24.672673038714397], + [-49.15834436678584, -24.67242568619664], + [-49.1583442457856, -24.67242576219699], + [-49.15748097905523, -24.67235477368782], + [-49.15441378916739, -24.672496597565083], + [-49.15056983015979, -24.67408504479071], + [-49.14861929112083, -24.6757677185503], + [-49.1423569551567, -24.675573043632834], + [-49.13890670909682, -24.675825573619356], + [-49.13653935823167, -24.6757383274513], + [-49.13529140627448, -24.676051075079048], + [-49.133955967472986, -24.677087816013067], + [-49.13320424175254, -24.678621656298205], + [-49.13270572439592, -24.68025374285951], + [-49.1318979241874, -24.681423696279822], + [-49.13028720312541, -24.682418168006283], + [-49.1266412441874, -24.684668007704857], + [-49.12520016226652, -24.6843520588429], + [-49.124120790658274, -24.683127348867544], + [-49.122842500847874, -24.682941928544444], + [-49.12284173384442, -24.682941817546578], + [-49.121446932940124, -24.683442418611598], + [-49.11989369870207, -24.68605168229371], + [-49.11881522169172, -24.686730027458815], + [-49.11519490238324, -24.687403359961607], + [-49.11206265570355, -24.68884358111321], + [-49.11080996149333, -24.688513795703457], + [-49.10978280873427, -24.68747352158774], + [-49.10934267702639, -24.68633973377044], + [-49.10989576767431, -24.681549803805304], + [-49.1096522958812, -24.6792947643338], + [-49.10965227488035, -24.67929457533385], + [-49.10940873409027, -24.677040121862486], + [-49.106058886185124, -24.67520297938192], + [-49.10487285371975, -24.675009610787047], + [-49.10487218371661, -24.675009500788985], + [-49.10403872704873, -24.67521251620812], + [-49.10320428337659, -24.675415498630073], + [-49.101883395458096, -24.676115902493397], + [-49.10056115753428, -24.676816467360506], + [-49.099626989898574, -24.67830272617025], + [-49.098560549167736, -24.681649866507605], + [-49.09755483257494, -24.68236543046377], + [-49.089539291523465, -24.68103170646514], + [-49.08830715299278, -24.6811635360266], + [-49.085712192935304, -24.68042501944549], + [-49.084838142661, -24.67934457487744], + [-49.0846409119456, -24.67734417828534], + [-49.084873347479906, -24.673466518305], + [-49.08367524709938, -24.67273394069713], + [-49.080300516708256, -24.67310016544578], + [-49.0751426926229, -24.67390785236277], + [-49.07331537806532, -24.67559795976125], + [-49.071873372294114, -24.678221965126973], + [-49.07131420612029, -24.682877786117164], + [-49.0706182227575, -24.684456270250344], + [-49.069535565493254, -24.6853592444418], + [-49.0648725226033, -24.68651683196341], + [-49.061756340613584, -24.685832866877703], + [-49.05467551168821, -24.68287077100832], + [-49.05231387230179, -24.68118654266118], + [-49.04816869791471, -24.67638077117766], + [-49.04672305904732, -24.67319020706399], + [-49.04530597767758, -24.66952957382678], + [-49.0459752935634, -24.6681304737843], + [-49.04597591725784, -24.6665914046519], + [-49.043784129587316, -24.664621793782707], + [-49.03786735082804, -24.660911192462066], + [-49.03767678822417, -24.6595090298888], + [-49.03797666682197, -24.65787896288761], + [-49.03973410669918, -24.65548726263563], + [-49.03997566005761, -24.653856167802182], + [-49.03658095323301, -24.65209185239695], + [-49.035035164633676, -24.650541487700387], + [-49.033342172866064, -24.642433721857362], + [-49.03421156164382, -24.64134655626885], + [-49.03553536388608, -24.641312704467655], + [-49.03775695237868, -24.643491384280633], + [-49.0389828339821, -24.64425849482832], + [-49.040309557843884, -24.644401214032627], + [-49.04145032829884, -24.64377321670422], + [-49.042754450251216, -24.641064844728998], + [-49.04251032887608, -24.63979060532061], + [-49.040501179303014, -24.63733800187632], + [-49.03747833658863, -24.63632626246263], + [-49.03515043056285, -24.63498792902515], + [-49.03502113978446, -24.634913746389593], + [-49.03453098883326, -24.634632518771113], + [-49.032676299262114, -24.63432287706388], + [-49.03094685696561, -24.634817944066835], + [-49.02523251819795, -24.639866296894734], + [-49.02155867630785, -24.642479124658898], + [-49.018842261468535, -24.643108040502774], + [-49.01550419940261, -24.642368222006475], + [-49.012578071906084, -24.640145250195175], + [-49.011223157249766, -24.637187146813588], + [-49.00883027122908, -24.635054708477906], + [-49.0075979458385, -24.634356515945235], + [-49.00514513175194, -24.63373046091387], + [-49.003669660701966, -24.634000376163527], + [-49.0011767819254, -24.635841314468568], + [-48.9997339296846, -24.638346702827395], + [-48.999731496689236, -24.638350925834754], + [-48.99973706472307, -24.63835420381912], + [-48.99976439005847, -24.638419589746814], + [-49.000018391633965, -24.638578589033752], + [-49.00025139297668, -24.638694588377057], + [-49.00047339438481, -24.638842587754784], + [-49.00068539549811, -24.638916587154306], + [-49.0007066786138, -24.638925161094097], + [-49.00089639664515, -24.639001586557733], + [-49.00107639762877, -24.639075586048925], + [-49.00135139877764, -24.63908558526228], + [-49.00158339964556, -24.639064584595985], + [-49.001726583225825, -24.63906458418593], + [-49.00178440046012, -24.63906458402034], + [-49.002038401489365, -24.639064583292868], + [-49.002260402316885, -24.63904358265512], + [-49.00244040271988, -24.638948582131043], + [-49.002512536872885, -24.638908032920817], + [-49.00260940307826, -24.638853581638482], + [-49.002800403450316, -24.638736581080764], + [-49.00304340410854, -24.638641580376248], + [-49.00323340476848, -24.63860957982918], + [-49.00340340491451, -24.638451579328013], + [-49.00357240552709, -24.638430578842094], + [-49.00378340605226, -24.638334578229063], + [-49.00396340674722, -24.63832457771258], + [-49.00417540738637, -24.63826057709962], + [-49.004386408279046, -24.638271576496276], + [-49.004587409165644, -24.638292575922417], + [-49.00477740986331, -24.63827157537631], + [-49.00495341065546, -24.638294574874234], + [-49.00505941165184, -24.63845957458542], + [-49.00516941286729, -24.6386835742906], + [-49.00519894139498, -24.638802345216654], + [-49.00586992593786, -24.63962421636863], + [-49.00675534293883, -24.642654159104335], + [-49.00744123607122, -24.643920528252725], + [-49.007286655708675, -24.646906120963617], + [-49.00780049343961, -24.6497121297426], + [-49.01077318620481, -24.654862635681404], + [-49.011144195228965, -24.656467087760692], + [-49.01064217104485, -24.65991127350732], + [-49.009894543281334, -24.660860908736122], + [-49.00918628061992, -24.660922101772712], + [-49.00850478006067, -24.66098147673233], + [-49.00368096333777, -24.657155830218997], + [-49.003661201317335, -24.657173198277142], + [-49.003066465297216, -24.65670558593978], + [-49.0011746066282, -24.65583413128337], + [-48.99659390591815, -24.655795662406074], + [-48.9913783466115, -24.65575186234357], + [-48.99129084325396, -24.655751127594176], + [-48.99055243078886, -24.65619643075003], + [-48.99002848437797, -24.65698626432324], + [-48.98986638922981, -24.657134493801028], + [-48.9898599865674, -24.657240268829103], + [-48.989554088911255, -24.65770139974768], + [-48.98966314345654, -24.658604108518055], + [-48.98973504715457, -24.659304136376203], + [-48.989411335225405, -24.664651575793783], + [-48.989409603316666, -24.664680176801305], + [-48.98891994396732, -24.66573819430134], + [-48.98881161993902, -24.66585781862265], + [-48.98832623581205, -24.666393841062554], + [-48.98723175304827, -24.665718755136325], + [-48.986815423475434, -24.665461959305514], + [-48.97909436614486, -24.665465995421393], + [-48.97667038209168, -24.666277606438214], + [-48.97489727549157, -24.667325209613054], + [-48.9755658992293, -24.668495641807606], + [-48.97559003847252, -24.668537897742464], + [-48.975922501821834, -24.67057424798028], + [-48.97539421212231, -24.672158645640938], + [-48.973759207422965, -24.673014517403242], + [-48.96896190058306, -24.67378548921275], + [-48.96597788562109, -24.673250844705525], + [-48.96375679216271, -24.67370699610666], + [-48.96266943401909, -24.67466029030936], + [-48.96259252442486, -24.676324551687095], + [-48.96157122184635, -24.678528319819517], + [-48.96157113684588, -24.678528286819745], + [-48.96154654492826, -24.678581345895225], + [-48.96119273246444, -24.679737915017792], + [-48.96108655822289, -24.680084204354543], + [-48.96108663622499, -24.680084728354355], + [-48.961086521225816, -24.680085103354713], + [-48.96150258146358, -24.682862668426928], + [-48.961500337699576, -24.684970373633025], + [-48.961500299818056, -24.685004889636435], + [-48.958920249973616, -24.68577491109695], + [-48.957336399762205, -24.685550780610246], + [-48.95556913223661, -24.684579380576704], + [-48.95111700689345, -24.677815138669956], + [-48.95094633487802, -24.676556830037317], + [-48.95006615111607, -24.675338670438197], + [-48.94855762909858, -24.674207495644126], + [-48.94294183332275, -24.672768281564583], + [-48.94133569125801, -24.672904354169834], + [-48.933926579493985, -24.6747615745307], + [-48.93149082232604, -24.67614380562791], + [-48.924339939526774, -24.6753564179824], + [-48.922894252748236, -24.675678688144288], + [-48.91984397260757, -24.678966830185054], + [-48.91984300960648, -24.67896765718796], + [-48.91978404458441, -24.67903121636267], + [-48.91852572011283, -24.68038757809255], + [-48.91796726290369, -24.680989643747942], + [-48.91796657990421, -24.680990622749956], + [-48.91572756606404, -24.683404235387123], + [-48.91444947624493, -24.68322510901977], + [-48.91314089895459, -24.682361493670438], + [-48.91134878995193, -24.67953072350304], + [-48.91093904006484, -24.678883493607714], + [-48.91093641403473, -24.678877841614632], + [-48.91069805930645, -24.678365027243462], + [-48.911325842886946, -24.676621432275294], + [-48.91207175236763, -24.675875522070573], + [-48.91250944542734, -24.674789387711588], + [-48.91281445056097, -24.674466045808256], + [-48.913253590751715, -24.67400003050763], + [-48.91275232921275, -24.672687340806515], + [-48.91039524454686, -24.67120751038547], + [-48.90578301762063, -24.670872128513846], + [-48.901644865740536, -24.670571253289793], + [-48.901362776521495, -24.670550707092413], + [-48.89921306923219, -24.670394389208646], + [-48.89858627252315, -24.670348715991864], + [-48.89858624052218, -24.670348470991915], + [-48.898107606453685, -24.670313608353595], + [-48.89556260445404, -24.670128235592905], + [-48.89556255945432, -24.67012837659306], + [-48.891129177290836, -24.669805315201423], + [-48.88862205577772, -24.67030206640052], + [-48.8886219187784, -24.670302432400888], + [-48.88544485698741, -24.67093158352285], + [-48.878935585774364, -24.66868359183825], + [-48.876272546872435, -24.66925396348505], + [-48.87511384499766, -24.669501801811943], + [-48.87266597281073, -24.67002538584004], + [-48.87000861546053, -24.67016633242365], + [-48.86586165452882, -24.667818146983233], + [-48.86409234501427, -24.668315203073405], + [-48.86003446148443, -24.670661057875655], + [-48.85714205775935, -24.673608430424807], + [-48.85434066426583, -24.675637724616752], + [-48.85236803873848, -24.675497394216137], + [-48.84834297346529, -24.674370254548197], + [-48.84770000852276, -24.673105713240393], + [-48.847703236431634, -24.67161116006916], + [-48.848587318594, -24.670309700412933], + [-48.85263826014146, -24.66768121660391], + [-48.855864360357394, -24.666234591268854], + [-48.85680574764624, -24.665195241478475], + [-48.858718371119366, -24.66217210771178], + [-48.85966542017203, -24.659592888740573], + [-48.858971825561255, -24.658191936563778], + [-48.85547512550462, -24.6561988722961], + [-48.85377583613471, -24.656654993178066], + [-48.85022920122718, -24.6582815354399], + [-48.84908596165398, -24.660358410915986], + [-48.84483392914815, -24.664705102479566], + [-48.84338362552421, -24.665376695676798], + [-48.84086772157487, -24.66546885484026], + [-48.83725218948838, -24.66185330872164], + [-48.83583304753336, -24.661218531685], + [-48.832750031855596, -24.657377152021727], + [-48.83092146004715, -24.65610163407516], + [-48.830354790024415, -24.655893076661677], + [-48.830354731024315, -24.65589311666182], + [-48.830191883155365, -24.655833120117755], + [-48.82778111529594, -24.65494586086629], + [-48.82445228488653, -24.655289892357334], + [-48.823303710900106, -24.655788876674084], + [-48.82125493033785, -24.657783959713985], + [-48.82038932895979, -24.659590079373615], + [-48.820333969805255, -24.66283852789412], + [-48.81961096803187, -24.664064295084373], + [-48.81828226637304, -24.664875766948324], + [-48.81683048550804, -24.664600745039824], + [-48.81600344083628, -24.665687854510292], + [-48.815581890222155, -24.667773013941524], + [-48.814695057675074, -24.669848460692975], + [-48.81330278853392, -24.671475222829677], + [-48.81239069057933, -24.67463471977552], + [-48.81127550286065, -24.675466967036385], + [-48.811019019464446, -24.67565809678631], + [-48.811018336459334, -24.675657429788195], + [-48.810982964196945, -24.675622856884658], + [-48.81039861327603, -24.675759745559585], + [-48.808697784068286, -24.67627068644712], + [-48.80826359771373, -24.676393774693885], + [-48.80822390009882, -24.676554338824847], + [-48.80425339278304, -24.677114790161735], + [-48.80292126498507, -24.67671769589836], + [-48.80124773649305, -24.675352632493404], + [-48.79606015569368, -24.676939109397257], + [-48.795164827955915, -24.678970880170944], + [-48.78867342664567, -24.68168156190245], + [-48.787525069101285, -24.682900505301216], + [-48.78700490258365, -24.684253725933452], + [-48.78505725593525, -24.684934482537958], + [-48.78411387386256, -24.68692667744518], + [-48.78264296937574, -24.688550354806665], + [-48.78161171861988, -24.691034668020826], + [-48.78169538727036, -24.692298940930307], + [-48.781309600462606, -24.69369910018755], + [-48.78022125939626, -24.69586719852769], + [-48.77911829950649, -24.697224473815268], + [-48.77758861568483, -24.696180150034134], + [-48.77575819565823, -24.69573040517486], + [-48.7738902438443, -24.695681782468274], + [-48.77094167340281, -24.696454521922487], + [-48.769522530264204, -24.69577139686718], + [-48.76580270626974, -24.69026179276583], + [-48.763095964612894, -24.687743121140347], + [-48.76178031091337, -24.68530049157941], + [-48.75933814449536, -24.680768188960442], + [-48.7577530205718, -24.680346601400334], + [-48.755006729934635, -24.681701404340277], + [-48.753552985007026, -24.682885101598913], + [-48.753552999010004, -24.682885959599062], + [-48.75355294700994, -24.682886001599197], + [-48.75363614644935, -24.688207038999465], + [-48.75583837764008, -24.690608353046922], + [-48.75621282126263, -24.693279120304073], + [-48.75429785310789, -24.694657418894916], + [-48.75288661077981, -24.69567241201494], + [-48.750727134149614, -24.695736686141263], + [-48.745216844781815, -24.693742064510865], + [-48.743567716079305, -24.69258253304139], + [-48.74241463872217, -24.69122063514211], + [-48.74153200772191, -24.68846100630748], + [-48.74044271871015, -24.687417332264808], + [-48.73758563823578, -24.68660359025305], + [-48.73658043357004, -24.68556013197103], + [-48.7350029501137, -24.684974054363572], + [-48.73500225810994, -24.684973797365465], + [-48.73230819696754, -24.68700428523595], + [-48.730586339607434, -24.68750403016872], + [-48.72844545773802, -24.686004852041755], + [-48.72682940974982, -24.68530907652759], + [-48.72210861458073, -24.68477460581242], + [-48.71905629176245, -24.68350715528594], + [-48.715832076471926, -24.683781196434175], + [-48.71286129925769, -24.68318269475621], + [-48.711216047500606, -24.683179852405324], + [-48.707889879934946, -24.68408663191697], + [-48.70647112596066, -24.68345160284599], + [-48.704278351223955, -24.680874488717368], + [-48.70160889725155, -24.6808679442559], + [-48.70047241004852, -24.68218285963091], + [-48.69986091383269, -24.685807400814248], + [-48.69714110338552, -24.688966099894383], + [-48.69572244209121, -24.69000635203249], + [-48.69302785805582, -24.693846431128737], + [-48.69197043202784, -24.69452846220171], + [-48.69035743378116, -24.694344657733758], + [-48.689304753999984, -24.6930300795395], + [-48.68916431826993, -24.69121562270536], + [-48.689164399269, -24.691215279705073], + [-48.689164356266936, -24.691214723705148], + [-48.6893570283053, -24.69040297405798], + [-48.68954984733977, -24.689589861410134], + [-48.69086500313819, -24.68705340737488], + [-48.69130868922188, -24.684476319795216], + [-48.690776068272335, -24.683071158120217], + [-48.68908262679674, -24.680850858617728], + [-48.68874872462113, -24.677957385191668], + [-48.69393615329604, -24.67394138904251], + [-48.694498095677496, -24.672488358272552], + [-48.69455376845903, -24.671175944949074], + [-48.69394143494612, -24.66999485452732], + [-48.69297339453641, -24.66927477116739], + [-48.69177242961326, -24.668685116480763], + [-48.69013476781098, -24.668364682059913], + [-48.69013392780691, -24.668364518062344], + [-48.688694009189355, -24.66963084028541], + [-48.68827909972139, -24.66999522150229], + [-48.68514225955399, -24.67138352752748], + [-48.67919029512099, -24.67138053031215], + [-48.6774401323868, -24.67210372833984], + [-48.676689766434606, -24.67391370768862], + [-48.677358204781044, -24.675863836054873], + [-48.67478546400171, -24.678162154605722], + [-48.67193941984307, -24.6797944788415], + [-48.672839238193724, -24.681464727520165], + [-48.67491436103378, -24.683330469908743], + [-48.67541633921096, -24.68454553164952], + [-48.672832700188486, -24.686490509187667], + [-48.672578071582684, -24.68780124807512], + [-48.67327397464829, -24.689338256310545], + [-48.67676414959977, -24.691880601791212], + [-48.677525539586796, -24.693019310789047], + [-48.676810333466626, -24.694440713990073], + [-48.67410961933564, -24.69708553395181], + [-48.67235911458737, -24.697806809984485], + [-48.671974981600926, -24.699161572243273], + [-48.67361062679959, -24.69930226864565], + [-48.67655674036151, -24.69825686119632], + [-48.67766151509345, -24.698903580161055], + [-48.67547520757508, -24.702284990766977], + [-48.671750421951415, -24.703961775496527], + [-48.67033400188782, -24.70359565244679], + [-48.668975615208886, -24.70386263531474], + [-48.667945201969125, -24.70504145337513], + [-48.66491301824549, -24.707030648189452], + [-48.66185273423284, -24.707199421846102], + [-48.661852483233204, -24.707199816846913], + [-48.66095356270455, -24.707249451389394], + [-48.659811767381846, -24.70647436550939], + [-48.66163428562186, -24.704628736127642], + [-48.661279387217945, -24.6996280114771], + [-48.65824689240894, -24.694803293398298], + [-48.658945301736104, -24.693756803292505], + [-48.65863931435987, -24.69254055399612], + [-48.65544452336632, -24.691400054852156], + [-48.645526754172614, -24.690389706664156], + [-48.64383524560485, -24.68961749532632], + [-48.642108147338305, -24.690160100262503], + [-48.641220942166235, -24.688527071544183], + [-48.64155385733552, -24.686989663402468], + [-48.64525090292668, -24.683557218536556], + [-48.64578060189794, -24.682017784841076], + [-48.6446903664317, -24.68143080483311], + [-48.64330133401471, -24.681517350755595], + [-48.6415308196599, -24.680607289619243], + [-48.64052677627624, -24.679348195278138], + [-48.63827677001411, -24.678160887452794], + [-48.63399842972622, -24.678249822503954], + [-48.63271861684369, -24.67747417500089], + [-48.631527262024555, -24.67779360739547], + [-48.632031558687466, -24.679151968158887], + [-48.631278223547426, -24.68032328443541], + [-48.63008524777912, -24.680955910876754], + [-48.628639543994126, -24.681003392950434], + [-48.62558438589159, -24.679364109323526], + [-48.62177735302386, -24.67456348738039], + [-48.61891302579749, -24.67265365517351], + [-48.61708564851267, -24.6691658988354], + [-48.615830676444425, -24.668896922325317], + [-48.61372329193705, -24.67101895453577], + [-48.611917965717666, -24.671376440656974], + [-48.61191728271534, -24.67137657565893], + [-48.60777645786833, -24.66905994797407], + [-48.60449567846027, -24.668789499150773], + [-48.60163410640728, -24.66959619529703], + [-48.59930372860369, -24.671312131076917], + [-48.59755706754147, -24.671942648067862], + [-48.59383805982023, -24.674786102902388], + [-48.59135937231073, -24.677365219218597], + [-48.590999881044986, -24.680394842648795], + [-48.58971887088802, -24.681023061332446], + [-48.58827699549938, -24.68029615927907], + [-48.58699412008877, -24.679071772709364], + [-48.58603962510081, -24.67697793109614], + [-48.58513270753226, -24.672278959984794], + [-48.58394103502829, -24.67150791422018], + [-48.5825009630427, -24.671194352216173], + [-48.5825001770389, -24.671194180218333], + [-48.581216766676576, -24.672061688940033], + [-48.58049550917826, -24.680512430148276], + [-48.57940772484805, -24.68322774058148], + [-48.57949478265621, -24.686031223730406], + [-48.57742173629054, -24.687566969763726], + [-48.577028708083546, -24.688876030050693], + [-48.575662454261796, -24.690006019043857], + [-48.57266863371465, -24.691131358603588], + [-48.57135292861945, -24.692712291518504], + [-48.57166171570448, -24.694436382895294], + [-48.56877957244788, -24.69610573321891], + [-48.567971135506035, -24.698595148839622], + [-48.56847319843289, -24.700035470634344], + [-48.56966314861946, -24.701304374473857], + [-48.56519510548541, -24.70673028078238], + [-48.56216165003803, -24.70764058342532], + [-48.560476150826325, -24.709937122482092], + [-48.56057928651746, -24.71120192537254], + [-48.55845137545516, -24.71141575637484], + [-48.553886659494985, -24.710194830008927], + [-48.552577193777694, -24.710102476669295], + [-48.552576225773485, -24.71010240867201], + [-48.55174526609012, -24.711510724204814], + [-48.552877411851, -24.715688644626457], + [-48.55227627116396, -24.71711067651674], + [-48.55138404123261, -24.717927188137374], + [-48.54846801249281, -24.718313950374775], + [-48.54505042284425, -24.718452944982612], + [-48.54646842358549, -24.72108765938348], + [-48.546216501793694, -24.722347687271515], + [-48.5450439937988, -24.72319269768289], + [-48.54402368800892, -24.72569131590534], + [-48.54305808062337, -24.726463697725922], + [-48.54124789052917, -24.726281918778596], + [-48.53861042202033, -24.726694768237294], + [-48.53861038801989, -24.72669471823735], + [-48.53821799060509, -24.726756132347003], + [-48.53432916856251, -24.728545631514258], + [-48.53110503224998, -24.730627406859426], + [-48.52964043809955, -24.732082720178674], + [-48.530885368307764, -24.733583442905513], + [-48.53072275877018, -24.734809763539943], + [-48.532248607342545, -24.737259496615703], + [-48.53130585891637, -24.73888230249655], + [-48.529910009179815, -24.739782945543592], + [-48.52974687650463, -24.739782856001206], + [-48.528950412207614, -24.739782245235435], + [-48.52895036620797, -24.739782418235567], + [-48.52832715562864, -24.739782074983776], + [-48.52704840732972, -24.739186491483963], + [-48.526055427186016, -24.73769310605123], + [-48.52447173058421, -24.736788476360456], + [-48.52294042648132, -24.73656080862106], + [-48.52052942467391, -24.738094055606112], + [-48.51701890635391, -24.739342355631678], + [-48.51563593647248, -24.739295533501835], + [-48.513468841238264, -24.740700730783608], + [-48.51196809323374, -24.741059113043097], + [-48.5099385224296, -24.740643011669974], + [-48.508139746869624, -24.738828495442203], + [-48.50739969283301, -24.737055322253017], + [-48.50708379997942, -24.736299432025945], + [-48.50549965949564, -24.735430610334884], + [-48.50427156044247, -24.73543975177641], + [-48.50255336654991, -24.737880962952282], + [-48.50077339604564, -24.73784109893211], + [-48.499771997352426, -24.73946060697824], + [-48.50099888785713, -24.739883496604794], + [-48.503665357895905, -24.739585830090828], + [-48.50443941062209, -24.74063119507749], + [-48.504554804813765, -24.742030521962068], + [-48.50260826529568, -24.745160030881152], + [-48.502362552687266, -24.74646874976437], + [-48.50291424483221, -24.747020735300485], + [-48.502914293832305, -24.747020700300293], + [-48.50313765151036, -24.74724414270762], + [-48.503630337212506, -24.74773720840021], + [-48.507525856488016, -24.751635738059182], + [-48.50816424627715, -24.752865157451286], + [-48.50800531936848, -24.755163556236912], + [-48.507945843022405, -24.75602364153089], + [-48.508713164548226, -24.758795101788937], + [-48.5083535992303, -24.76181071824319], + [-48.507140703554455, -24.764878854098974], + [-48.50775776847909, -24.76528410642796], + [-48.5083321971327, -24.765661356872332], + [-48.51079979128965, -24.76445539277166], + [-48.51162384470604, -24.764455839459814], + [-48.51255118055038, -24.764456342858068], + [-48.51471890109241, -24.767584948235438], + [-48.51716666019245, -24.769053201580732], + [-48.517806553484625, -24.77072370102944], + [-48.517552169071216, -24.773578486162098], + [-48.51827513450094, -24.774891085324523], + [-48.51747158002692, -24.7763289017914], + [-48.51627796842835, -24.777320435288445], + [-48.5161386702183, -24.778909395912606], + [-48.51718998854494, -24.780675929219356], + [-48.51877586504331, -24.781541178891974], + [-48.52777006567895, -24.78371609293931], + [-48.52922056421771, -24.784759034013984], + [-48.52980105252906, -24.786209528592657], + [-48.53127328609902, -24.786939114559758], + [-48.533214798536406, -24.787350033160752], + [-48.53488650276952, -24.7871444434308], + [-48.5359434545915, -24.787866077562796], + [-48.536134185672225, -24.789134059209285], + [-48.5369732282166, -24.790040382980177], + [-48.54634063868678, -24.795843636457345], + [-48.548290584892065, -24.796765956100298], + [-48.549356885497446, -24.79770658523265], + [-48.55200376575853, -24.80192429038014], + [-48.555477556982446, -24.805413167090997], + [-48.55622012541206, -24.80669666918076], + [-48.55585974717896, -24.81060722474986], + [-48.55661117149242, -24.81243472289103], + [-48.55772336366293, -24.81348409790498], + [-48.55966517619841, -24.821583614574443], + [-48.556921368618774, -24.823292439551853], + [-48.55622047808353, -24.824285945668443], + [-48.55746664548908, -24.8252393842894], + [-48.561800752531376, -24.827025791318334], + [-48.56275178679846, -24.828887524897496], + [-48.56272114480952, -24.830694769237898], + [-48.564938416863846, -24.83477350555427], + [-48.56441584674613, -24.83743694940254], + [-48.56658365468545, -24.842422122981958], + [-48.567308211699604, -24.84712996159463], + [-48.56828040466772, -24.847992409969677], + [-48.5682150287049, -24.849259227331284], + [-48.565357768953675, -24.854583449145387], + [-48.56493771929565, -24.85666641862341], + [-48.565134684572385, -24.86032808557943], + [-48.567142133941545, -24.864450832483552], + [-48.56564032938406, -24.865532068878448], + [-48.564167093547304, -24.86502766497071], + [-48.5627740667329, -24.865607210987704], + [-48.557162119479685, -24.866213568926355], + [-48.554939345347755, -24.867419978374514], + [-48.55019642057201, -24.867989230849286], + [-48.54946577065473, -24.869200309083997], + [-48.5491630244155, -24.871557493272878], + [-48.54792006854062, -24.872819225961837], + [-48.54730587689981, -24.874263153900994], + [-48.548581680381815, -24.876959968680044], + [-48.549856495862, -24.8796567474608], + [-48.54752058040689, -24.88032062015351], + [-48.54589043105128, -24.87750692835879], + [-48.545251923030854, -24.879456717438984], + [-48.54705690716188, -24.881402791616793], + [-48.54705695716209, -24.88140277761671], + [-48.54728672296124, -24.88165057300271], + [-48.54947161803357, -24.882821042995857], + [-48.55394859056406, -24.88279489034141], + [-48.555330041331125, -24.882214137355497], + [-48.556830095599906, -24.88281053719971], + [-48.55881036456083, -24.88507879892066], + [-48.559912081254936, -24.88834036826316], + [-48.55990134896024, -24.889734270488983], + [-48.557425564460026, -24.891728977769688], + [-48.556557310188424, -24.893296026445018], + [-48.556557431190974, -24.89329663544465], + [-48.55655727019128, -24.893296925445235], + [-48.55694605144945, -24.89524542061957], + [-48.55841534560481, -24.897018067712875], + [-48.55977367813835, -24.90167606952329], + [-48.56138996720078, -24.901188431882055], + [-48.5620318384193, -24.898123422637536], + [-48.56294756950456, -24.896444645812146], + [-48.564190168177866, -24.895419520153556], + [-48.56775054264813, -24.894440696943764], + [-48.57102935396503, -24.894640648693265], + [-48.57252674014325, -24.895505965575396], + [-48.5729961971863, -24.896998308453433], + [-48.573301029210036, -24.903374224473378], + [-48.57071778060212, -24.904000643874003], + [-48.568834247103105, -24.90380628517922], + [-48.56761012991351, -24.90436404672186], + [-48.566864784860016, -24.911703654852843], + [-48.566864820860665, -24.911703803852756], + [-48.56686474486291, -24.911704553853134], + [-48.567637548765845, -24.914834941100022], + [-48.567637653767726, -24.914835367099684], + [-48.56689576206868, -24.917292413542356], + [-48.56688360903011, -24.917295946577173], + [-48.56687360522706, -24.91736579361524], + [-48.56635664690724, -24.917902398153974], + [-48.5656907012263, -24.918222059084375], + [-48.56597750769229, -24.91918031340543], + [-48.56812977993445, -24.920434048483664], + [-48.568642446187745, -24.920468866036156], + [-48.56888546525426, -24.920484890349933], + [-48.57033613727419, -24.920186500198987], + [-48.571729150149736, -24.92050169429625], + [-48.57235766076116, -24.92371998096055], + [-48.57205581664334, -24.925223954023842], + [-48.56982973853362, -24.928782389824995], + [-48.5706459620478, -24.93203450196198], + [-48.56936420537454, -24.932521737662338], + [-48.56783765898682, -24.931928013906372], + [-48.56689050634754, -24.933187991765557], + [-48.56689070435036, -24.933188574765108], + [-48.56689046635041, -24.933188889765823], + [-48.56752099333358, -24.935048647236876], + [-48.56730592430112, -24.935886372962678], + [-48.56333427654808, -24.939922203780476], + [-48.56447082936447, -24.940823151684324], + [-48.566567352045254, -24.941391731820254], + [-48.5681657468591, -24.94202139837598], + [-48.56916225365964, -24.942795710657773], + [-48.57014099076958, -24.943974432045568], + [-48.570142690811565, -24.945738754284758], + [-48.56940222837019, -24.947388801612977], + [-48.56449902439488, -24.949278172779437], + [-48.56352491279573, -24.949997950641567], + [-48.563448138283306, -24.950818773973417], + [-48.56478927077678, -24.95195940632882], + [-48.56935073410717, -24.951758871363623], + [-48.57092930185099, -24.952098865932772], + [-48.57298580881863, -24.95455171543668], + [-48.57313781043222, -24.955422265125367], + [-48.57205173383523, -24.956862641405767], + [-48.570245879330585, -24.958038317692164], + [-48.56916182896166, -24.95925100493571], + [-48.56841267614773, -24.960510061235524], + [-48.56829808488051, -24.96173997573077], + [-48.56910772057505, -24.963293157647975], + [-48.568940924032205, -24.964213951248723], + [-48.56877403648866, -24.965134569849553], + [-48.56855958229876, -24.965632373526965], + [-48.567939582633024, -24.967069216485278], + [-48.56783766069875, -24.97275973456154], + [-48.568349953242134, -24.97404574928493], + [-48.571528552559734, -24.97843874786523], + [-48.57428467657283, -24.97975499421805], + [-48.57519506419473, -24.980578389744966], + [-48.57585919139488, -24.983619777275454], + [-48.5767541606219, -24.984929582912024], + [-48.580601164267634, -24.987433942321267], + [-48.58342489523935, -24.987488709301683], + [-48.58706260172219, -24.986411746812756], + [-48.587063173725134, -24.986411906811167], + [-48.58892713528725, -24.98693211158155], + [-48.590882419935205, -24.989405472355866], + [-48.59091283028255, -24.99092603047515], + [-48.5897483739417, -24.993989353202128], + [-48.58969962824828, -24.99530270651861], + [-48.59035737552209, -24.99633021578646], + [-48.592016953313625, -24.997164489177436], + [-48.59523001707625, -24.99639422393069], + [-48.59551800180175, -24.996546686131687], + [-48.59566987471167, -24.996627089710262], + [-48.59719432948014, -24.999074001700794], + [-48.59755142995539, -25.001397634996707], + [-48.59852274810911, -25.003754306547954], + [-48.599364465382855, -25.00572101641529], + [-48.60049465713451, -25.006603570315217], + [-48.60129836460212, -25.01099843761474], + [-48.6001301407685, -25.011592571021804], + [-48.59919396329441, -25.014626428094978], + [-48.59767819037716, -25.015909176584596], + [-48.59822549724843, -25.017242329204482], + [-48.599886364676756, -25.018257536608886], + [-48.59996409492548, -25.019107401501376], + [-48.59971415414249, -25.019764471301464], + [-48.59865459325193, -25.02050114141883], + [-48.595733539698834, -25.019235925570687], + [-48.59231653055421, -25.0204362044651], + [-48.590454143467404, -25.019765566678707], + [-48.58933648628703, -25.020198505920046], + [-48.58883669326906, -25.022545067660392], + [-48.58878379551224, -25.024424461065074], + [-48.58971115110145, -25.02579483060896], + [-48.59115375333267, -25.027016458664257], + [-48.58847162230134, -25.028230667468694], + [-48.59005072661483, -25.03018188323376], + [-48.58616216148656, -25.030799570394706], + [-48.584840815976634, -25.03283812543468], + [-48.582005122762844, -25.035350022852864], + [-48.58220596635693, -25.03644109442893], + [-48.58383793265348, -25.03890287911389], + [-48.584272309396674, -25.0420772703065], + [-48.58284877879918, -25.042761859455563], + [-48.581124782262464, -25.047315120986106], + [-48.58185947087435, -25.049794722229112], + [-48.583495713138625, -25.05049690666056], + [-48.58312877825859, -25.052138932928926], + [-48.58041039498364, -25.053619837878394], + [-48.580099939685724, -25.053620247763394], + [-48.573942324289746, -25.051405949008917], + [-48.57029515173958, -25.05132351038777], + [-48.56953709936346, -25.051555124578744], + [-48.56928503179608, -25.052568487435728], + [-48.56956555815436, -25.053783985803253], + [-48.569484871320114, -25.05480179417275], + [-48.56750244332173, -25.05576107795177], + [-48.56578132655747, -25.05879475327142], + [-48.562423959648854, -25.059420260921225], + [-48.56236492067088, -25.059718015955504], + [-48.56230290025257, -25.06003080632522], + [-48.56207245261854, -25.059901469897447], + [-48.56175460452435, -25.059722428621605], + [-48.561562002065486, -25.059643027554298], + [-48.561443278427866, -25.059622992913784], + [-48.56144188160717, -25.059622757409354], + [-48.56144285284091, -25.059640929417206], + [-48.56144500830734, -25.059771991053744], + [-48.56155288023245, -25.06002395605892], + [-48.56159033601345, -25.060149035976977], + [-48.5615933958149, -25.060284742630163], + [-48.561577848830574, -25.06034929178005], + [-48.56148480301822, -25.060454446867663], + [-48.5613281667809, -25.060538339398096], + [-48.56113137588962, -25.060618412939352], + [-48.56100487033274, -25.060701897682673], + [-48.56093380453574, -25.0607180615876], + [-48.56093270544233, -25.060718311581017], + [-48.560862189112164, -25.060701538163112], + [-48.56083260757478, -25.060644190057605], + [-48.560821739992555, -25.060512506936895], + [-48.560796976786186, -25.060447024627113], + [-48.560749378529714, -25.06039380297367], + [-48.560613263426475, -25.060362141998496], + [-48.560323750415456, -25.060380940222373], + [-48.56009332138408, -25.060373361330498], + [-48.559871743477444, -25.06038415956129], + [-48.55979614239382, -25.06037398108703], + [-48.559655967796, -25.060327179565096], + [-48.559582392482355, -25.06032588068891], + [-48.55958157860973, -25.06032586638248], + [-48.55951131550084, -25.060351336782283], + [-48.55940396716026, -25.060438113627978], + [-48.559336251063655, -25.060466906491637], + [-48.559335913951706, -25.060467049833353], + [-48.55923029909945, -25.060471360141992], + [-48.559126865286544, -25.060475616003686], + [-48.558909405254646, -25.060413643103114], + [-48.558764815370026, -25.0604300501962], + [-48.558763516253514, -25.060430197682116], + [-48.55870215860166, -25.060466284009618], + [-48.55866545428773, -25.060523354425595], + [-48.55861099027299, -25.060716510934682], + [-48.558565348616135, -25.060769553244487], + [-48.55842831638889, -25.060814142268566], + [-48.55839318421533, -25.060871870295458], + [-48.55839871308993, -25.0609378488108], + [-48.55847446142859, -25.061120511412682], + [-48.55846016958885, -25.06125160012667], + [-48.558386493621256, -25.06143415114751], + [-48.55842008803771, -25.06156891592085], + [-48.558402116167166, -25.061765651104594], + [-48.55845208345992, -25.06197920873964], + [-48.55844042255272, -25.062122525421525], + [-48.55839550034093, -25.06232414235726], + [-48.55834798080625, -25.06245685052956], + [-48.55826808633027, -25.062568176645332], + [-48.55794607702985, -25.062741316045955], + [-48.55786363986186, -25.062845921074874], + [-48.55779102682607, -25.063104665951265], + [-48.55782448138455, -25.06337634820228], + [-48.55779670411653, -25.063437897545807], + [-48.55774494265587, -25.063489665443566], + [-48.55760445733221, -25.063522667340767], + [-48.557603474750366, -25.063522898164216], + [-48.55745736080445, -25.063500636783605], + [-48.55739462378701, -25.06346629939176], + [-48.55737045158846, -25.063406061210927], + [-48.55737737961191, -25.063341551329742], + [-48.55740547036796, -25.063279194922128], + [-48.55740540993439, -25.063212313588732], + [-48.55736155850693, -25.063085141917583], + [-48.55738063307248, -25.063022727347324], + [-48.55765991992187, -25.062710522382282], + [-48.557666230131176, -25.062647175652934], + [-48.55760311789703, -25.062618971131112], + [-48.55760248589672, -25.062618688724136], + [-48.55748688728579, -25.062691609129583], + [-48.55741596182154, -25.062705424410577], + [-48.55707655505182, -25.06280643098872], + [-48.556974945236966, -25.06289844492474], + [-48.556937223700736, -25.062956761651254], + [-48.556921675642414, -25.063021219869672], + [-48.556928840528464, -25.063084607859835], + [-48.55698225068741, -25.06320444565708], + [-48.557072597794395, -25.063330487408724], + [-48.55726631282844, -25.063600565717977], + [-48.55747917314778, -25.063789727755836], + [-48.55790455629403, -25.06407526139996], + [-48.55813777559003, -25.064332179534837], + [-48.558427772175584, -25.064554289811305], + [-48.55843813459355, -25.064559126694256], + [-48.558573083107746, -25.06462211683518], + [-48.55879643776335, -25.06464203760456], + [-48.5589472702806, -25.064676289285583], + [-48.559152846036305, -25.064758284602984], + [-48.55915551415458, -25.0647636536497], + [-48.55918532671327, -25.064824345373218], + [-48.55918989399951, -25.064888863974446], + [-48.55915391802817, -25.06501409037266], + [-48.558964807552805, -25.065311083905183], + [-48.55880810460659, -25.06562367045472], + [-48.558691912687856, -25.065855446766673], + [-48.55848117281601, -25.06608872331918], + [-48.558368398696885, -25.066173965603394], + [-48.558177889830475, -25.06628148571174], + [-48.55808436905268, -25.06638022211172], + [-48.558074835083275, -25.0664462234815], + [-48.558133778851115, -25.066566964348702], + [-48.55824118975385, -25.06665221949182], + [-48.55849467481793, -25.066781937824494], + [-48.558547344264255, -25.066834341103398], + [-48.558600484063604, -25.066957964815405], + [-48.55859929827241, -25.06702274975041], + [-48.55855881661915, -25.06715024843223], + [-48.55847966297988, -25.06733397264349], + [-48.5583401640445, -25.067572482555697], + [-48.558244582420855, -25.067690139007897], + [-48.55803239693382, -25.067876186521126], + [-48.55791287023489, -25.067947056666178], + [-48.557705904178086, -25.068019826957958], + [-48.55757715062315, -25.06809623109427], + [-48.55749151770403, -25.068186883460246], + [-48.55747392510047, -25.068254466962184], + [-48.557475959956925, -25.068326705916476], + [-48.557497646836744, -25.068397372985824], + [-48.557573652249886, -25.068527240094518], + [-48.557718704627774, -25.068718174229755], + [-48.55785732798878, -25.068988428468924], + [-48.557930255242674, -25.069053711115696], + [-48.558077793415045, -25.069149374670598], + [-48.55820841955041, -25.06927833529361], + [-48.558273271441024, -25.069406032890747], + [-48.558331997665114, -25.069677679612425], + [-48.55841231135865, -25.06988018374849], + [-48.55868494413579, -25.070223945443896], + [-48.558711382706775, -25.070274924327926], + [-48.55873344578327, -25.070406611072592], + [-48.55870448374933, -25.070482852854386], + [-48.55860787843457, -25.070627028081773], + [-48.55856752062443, -25.070763193366965], + [-48.55858125878674, -25.07103978587803], + [-48.558727241972754, -25.071463777729356], + [-48.558734791320646, -25.071567787597466], + [-48.558710056503415, -25.071730655224066], + [-48.55863541567219, -25.071861563010998], + [-48.55861318066388, -25.071938366711993], + [-48.55846594667348, -25.07224678832495], + [-48.5583772814532, -25.072380263117964], + [-48.55825435344768, -25.072467503983432], + [-48.55793857843762, -25.07255481977608], + [-48.55773859385458, -25.07266489035969], + [-48.557626824249844, -25.07278904885324], + [-48.55758994747151, -25.072874546739175], + [-48.55759653333071, -25.072942167229428], + [-48.55764245754701, -25.072995001434858], + [-48.557712075955656, -25.07304235898234], + [-48.557783937790624, -25.07306655743889], + [-48.55804190249085, -25.073110968027], + [-48.558300003416875, -25.073133538252304], + [-48.55851467225532, -25.073187434485344], + [-48.55860628630538, -25.073225044859683], + [-48.55871840573679, -25.07333799604213], + [-48.55879102418167, -25.07347394444392], + [-48.558796382613224, -25.073558512978504], + [-48.55874301857592, -25.073705836582366], + [-48.558751210544514, -25.073792437403565], + [-48.55878247307499, -25.073855048544758], + [-48.558852541333295, -25.073919742336738], + [-48.55900935421929, -25.073967812040753], + [-48.55924968207904, -25.07408215027352], + [-48.559473921652916, -25.07411328846463], + [-48.559625720654786, -25.074134367466375], + [-48.55972011255899, -25.074166878265768], + [-48.559848602403065, -25.074258977862534], + [-48.55992805109403, -25.074395399145953], + [-48.55999220340956, -25.074728509326576], + [-48.5601367522651, -25.075047733436435], + [-48.56013953726343, -25.075051659692132], + [-48.56022683604944, -25.075309408889662], + [-48.56022766147967, -25.075312761971915], + [-48.56026288526995, -25.075460550785472], + [-48.56027451826246, -25.075688551284948], + [-48.56023682592673, -25.075865196586978], + [-48.56007412965927, -25.076093669430865], + [-48.560022607929525, -25.076198061949448], + [-48.559984053426106, -25.076478127665013], + [-48.55999393960486, -25.076574653790825], + [-48.56001128626958, -25.07674402199062], + [-48.560002621244294, -25.076831158152505], + [-48.55997369715338, -25.076890432683243], + [-48.559869242425, -25.07700541707002], + [-48.55983696077818, -25.07707907743793], + [-48.559831139121385, -25.07714775766965], + [-48.55985333662722, -25.077232784014715], + [-48.559894797712, -25.07729592400497], + [-48.560097771363644, -25.077475264124473], + [-48.560144272255805, -25.07754913726593], + [-48.560140091512736, -25.077630029210606], + [-48.56009996987051, -25.077684245648857], + [-48.55996862788456, -25.077780736383243], + [-48.55979566574442, -25.077867065342467], + [-48.559703278566, -25.07791320130871], + [-48.559640101118426, -25.077960630100648], + [-48.55926272047673, -25.078295141980387], + [-48.559006395026884, -25.078452213690284], + [-48.55864072712707, -25.078640790267528], + [-48.55840115946569, -25.078797324322593], + [-48.55834962614047, -25.07884223642353], + [-48.558268041238975, -25.078913279680872], + [-48.55817874693236, -25.079063170930574], + [-48.55808771979604, -25.079370261403717], + [-48.55802102122413, -25.07948017957241], + [-48.55794980301638, -25.07955816255875], + [-48.557811618680184, -25.079709595288776], + [-48.55778031237551, -25.07980890417161], + [-48.557786260296695, -25.080238174419474], + [-48.55778082296267, -25.08035731449452], + [-48.55777054997341, -25.080580260769224], + [-48.55768490413549, -25.080980584725463], + [-48.5576214110637, -25.081468100588783], + [-48.557574827149736, -25.08161806276614], + [-48.55750800531486, -25.08175406285864], + [-48.55746561596519, -25.081817537529794], + [-48.55740810430011, -25.081863975372453], + [-48.55705083198702, -25.082083282586964], + [-48.55686002345745, -25.082294319582452], + [-48.55684231938758, -25.082307476267367], + [-48.556569110287384, -25.082510656981764], + [-48.556505291975625, -25.082580186575495], + [-48.556432249395776, -25.082744875545302], + [-48.55643526718803, -25.083002067397793], + [-48.55657579678447, -25.08338147622643], + [-48.55661630274192, -25.083547584588022], + [-48.556718383911786, -25.08452052154079], + [-48.556712835513984, -25.084725395922526], + [-48.55670685662788, -25.084946164013537], + [-48.55653428601067, -25.08560084286272], + [-48.556426802152416, -25.08578292532973], + [-48.55635392298435, -25.08587441839262], + [-48.556007907502995, -25.086259709631257], + [-48.5558020527372, -25.086439448352678], + [-48.555008858414276, -25.086814297525404], + [-48.55469085080701, -25.087036772343968], + [-48.55444280663244, -25.08722971282821], + [-48.5538042433398, -25.087613152108187], + [-48.553490394278086, -25.08778081655754], + [-48.552721545719216, -25.088101900071408], + [-48.55250010937781, -25.088217565001305], + [-48.55236427322842, -25.08830991215793], + [-48.55222212493116, -25.088435549917474], + [-48.551659462606345, -25.08899848894127], + [-48.55148070227036, -25.08912604861627], + [-48.55096501481739, -25.089435055869775], + [-48.550940235971375, -25.089452512986618], + [-48.55070064056104, -25.089621311519494], + [-48.550467167590696, -25.089808618583618], + [-48.55017771932189, -25.09007930021537], + [-48.54997046363, -25.09032363045855], + [-48.54976162405526, -25.0905330048865], + [-48.549382739402674, -25.090815294051055], + [-48.548997107936444, -25.0912470257793], + [-48.5483823789925, -25.091820101150695], + [-48.548024806676395, -25.091987571483433], + [-48.54799694803616, -25.09218179410415], + [-48.547947152396354, -25.092367711356584], + [-48.54785066444534, -25.09249942456595], + [-48.54773133601616, -25.09258364604677], + [-48.54713185269847, -25.092923474060477], + [-48.547009061222305, -25.0930272232831], + [-48.5467504746101, -25.093245607735206], + [-48.54653794766413, -25.093455457432604], + [-48.54642172935934, -25.093607241045394], + [-48.546067481394786, -25.093910687297402], + [-48.54573184466608, -25.094170485767783], + [-48.545597280492444, -25.094496430524387], + [-48.545542527399164, -25.094572964131373], + [-48.54546910143712, -25.094616696270414], + [-48.54538804968138, -25.094665085698708], + [-48.54510910150904, -25.094790978031316], + [-48.544927294349094, -25.094837067155076], + [-48.544748245281305, -25.094859193499104], + [-48.54474788395276, -25.0948591250311], + [-48.54460941343217, -25.094832886218725], + [-48.54441680347947, -25.094715161054904], + [-48.5443507133381, -25.094694300297586], + [-48.544243323477325, -25.094681781131975], + [-48.54424259561687, -25.094681900895743], + [-48.5441571065719, -25.0946959674239], + [-48.54318229563547, -25.0950434602702], + [-48.543120041637614, -25.095088549640227], + [-48.54308728176035, -25.095150644615764], + [-48.54300300470351, -25.095459549077113], + [-48.542938456986015, -25.09560451401961], + [-48.54277907675536, -25.095837621944593], + [-48.542730645195974, -25.09589034121081], + [-48.542658666392164, -25.095916134819408], + [-48.54231857802631, -25.09596663704308], + [-48.54224670899778, -25.095991890747545], + [-48.54214269832733, -25.09610777034596], + [-48.54201238769293, -25.09645833129802], + [-48.54194456482614, -25.096538978980707], + [-48.54180212356281, -25.096633642716025], + [-48.54154879495062, -25.09674686545572], + [-48.54130124199797, -25.096957840696806], + [-48.54120992960711, -25.09699378265972], + [-48.54110083654869, -25.097011829703444], + [-48.54110008828903, -25.097011777984644], + [-48.54063008396995, -25.09697929109768], + [-48.540629631601604, -25.096979391055296], + [-48.540321952662644, -25.097047377025433], + [-48.54011312649401, -25.097056548164463], + [-48.54006044928345, -25.097058833076105], + [-48.54006034520096, -25.097058821455622], + [-48.53958188839742, -25.09700540268375], + [-48.53923962118607, -25.096926885452643], + [-48.53897233024334, -25.096895732923386], + [-48.53872972976366, -25.096893781490234], + [-48.5387294375248, -25.09689383024495], + [-48.53841039685989, -25.096947055952427], + [-48.53828291244157, -25.096952971976958], + [-48.538282578633236, -25.096952967559087], + [-48.5378275883535, -25.09694694519126], + [-48.53782662864974, -25.0969469898113], + [-48.53746428191225, -25.0969638361479], + [-48.537464137509915, -25.096963822697], + [-48.53714235451221, -25.096933848695482], + [-48.53673897518075, -25.09686811971902], + [-48.536560933628316, -25.096859565613983], + [-48.53656008738956, -25.096859627074], + [-48.53634652816563, -25.096875137136834], + [-48.536118533944865, -25.096910970618616], + [-48.53611746601991, -25.09691097569136], + [-48.53553566855662, -25.09691373811203], + [-48.53553520598927, -25.09691377379451], + [-48.53524688965912, -25.096936014227015], + [-48.53475357652148, -25.097005522411706], + [-48.534752501706926, -25.097005532017338], + [-48.53451704012178, -25.09700763614118], + [-48.534149350142584, -25.09697128532044], + [-48.5331818324137, -25.09677540042844], + [-48.532800500101025, -25.096658311126586], + [-48.53255925104246, -25.09663353738901], + [-48.53255797634175, -25.096633577124702], + [-48.532443328132395, -25.096636310609185], + [-48.53244324950088, -25.096636312483895], + [-48.532295507926335, -25.0966573849097], + [-48.532017193333246, -25.09669708055497], + [-48.532016466969, -25.096697041974068], + [-48.5313737185855, -25.096662900961377], + [-48.531373207861186, -25.096662980554388], + [-48.53083949125166, -25.096746155659527], + [-48.53083878563808, -25.0967461067951], + [-48.53006557271505, -25.096692558992785], + [-48.53006475030535, -25.096692628380424], + [-48.529257986783335, -25.096760693611486], + [-48.52925757427882, -25.096760660192594], + [-48.5290966889109, -25.096747626060786], + [-48.528725706720834, -25.096717434653325], + [-48.52826603382114, -25.096597583965533], + [-48.52816964329645, -25.0965852365101], + [-48.52816897926493, -25.096585351086535], + [-48.52808092340285, -25.096600544804637], + [-48.52785047623622, -25.09668930458674], + [-48.52775682561648, -25.096703357162887], + [-48.527756289632485, -25.096703287125244], + [-48.5276689417653, -25.096691873258482], + [-48.52753964205673, -25.0966520052258], + [-48.527255512869885, -25.0965643968831], + [-48.52658143774857, -25.096460099168233], + [-48.526153523350104, -25.09627434385497], + [-48.52607992441313, -25.09611610913077], + [-48.525930835430394, -25.09579557265002], + [-48.52588114228726, -25.095688733638458], + [-48.52580831340318, -25.095597641383666], + [-48.52558655240828, -25.09532026818064], + [-48.52548747762191, -25.095081874465983], + [-48.52531427787041, -25.094872388834595], + [-48.52481960590397, -25.09450256795005], + [-48.524421475012325, -25.09402442636466], + [-48.52319433826796, -25.09282889688055], + [-48.52285672543511, -25.092574693467647], + [-48.522389736517184, -25.09234490865212], + [-48.5223769184098, -25.092338601390537], + [-48.52197796732726, -25.092162615438863], + [-48.521550171722815, -25.092114669954757], + [-48.52105011146485, -25.091900167334988], + [-48.520811194373834, -25.091755464764752], + [-48.52027612387333, -25.091704458468733], + [-48.519846652868786, -25.091705308282062], + [-48.519633501429475, -25.09165914239298], + [-48.518484942912465, -25.09156808181974], + [-48.51753880170289, -25.091411807526057], + [-48.5166179586047, -25.091367325840988], + [-48.51661740029308, -25.091367412111467], + [-48.516254868604086, -25.091423430114947], + [-48.51625387717695, -25.091423450990938], + [-48.51572251014312, -25.09143463873821], + [-48.51539565111283, -25.09129179389264], + [-48.51488654511364, -25.091197068657888], + [-48.51384591892643, -25.09122908417819], + [-48.51347322211773, -25.09114268837154], + [-48.512944328945444, -25.090914047378227], + [-48.51280074403803, -25.090834290484327], + [-48.51245382146739, -25.09056646075801], + [-48.51207973810352, -25.0902401406508], + [-48.51184000409947, -25.089979794076324], + [-48.51160728790203, -25.089377588941872], + [-48.51192278042178, -25.089008956548394], + [-48.512452615299765, -25.088788778369793], + [-48.51301260061783, -25.08868508148356], + [-48.5135062090425, -25.088526116452986], + [-48.5136797693527, -25.088446713966277], + [-48.51375847912562, -25.088289004237325], + [-48.513778092110336, -25.088147361830824], + [-48.513728346475844, -25.08775482087472], + [-48.513641533356626, -25.087587837579846], + [-48.513403012791265, -25.0872920436826], + [-48.51304667025807, -25.087015032309495], + [-48.51261554815395, -25.08678478158528], + [-48.5123436927402, -25.086603592487414], + [-48.512070903430406, -25.08644901246423], + [-48.511966538641566, -25.08636594182702], + [-48.51162215621869, -25.08602712280534], + [-48.51125564989555, -25.085620962640313], + [-48.51103198832156, -25.085321082584084], + [-48.51092239616771, -25.085104616953902], + [-48.51084193407065, -25.08489342371685], + [-48.51038236195526, -25.084390645047677], + [-48.510320293077996, -25.084322740368062], + [-48.510126586568994, -25.0841393396129], + [-48.509759806875074, -25.083884258425865], + [-48.50885080995633, -25.0836445290119], + [-48.5084605742294, -25.08363761276975], + [-48.50845976548252, -25.083637700854254], + [-48.50807360624526, -25.083679758791927], + [-48.5080734293129, -25.083679731539018], + [-48.50775330651613, -25.083630422662576], + [-48.507171529601614, -25.083382462797413], + [-48.506210931093, -25.082941213963586], + [-48.50580725797339, -25.082582476704236], + [-48.50570938210079, -25.08249549568458], + [-48.50549253611677, -25.082275869120064], + [-48.505289880869185, -25.08203647635512], + [-48.50492556917235, -25.081606118997726], + [-48.50466421040502, -25.081265252528], + [-48.50465420637938, -25.08123611614744], + [-48.50449156512769, -25.08076242698877], + [-48.50449382642821, -25.080558128316742], + [-48.50467348810231, -25.080285523328453], + [-48.50481857025598, -25.080065385540102], + [-48.505546059742166, -25.07935765940263], + [-48.505811296937914, -25.079169876954108], + [-48.5062140428949, -25.078954892516926], + [-48.506459110040545, -25.078784279139217], + [-48.506632866608044, -25.078562645940107], + [-48.50658421826275, -25.078332310139377], + [-48.5060746512004, -25.07819982384857], + [-48.50607399717091, -25.07820005788517], + [-48.50522474052967, -25.078503950826978], + [-48.50495643394648, -25.078574349450953], + [-48.504706273869864, -25.07866906700275], + [-48.50450809782524, -25.078744101543876], + [-48.503871865748074, -25.07898499280757], + [-48.50378135234983, -25.079024056822377], + [-48.50349165374634, -25.07914908517968], + [-48.50349088501267, -25.079149015985166], + [-48.50333872231122, -25.079135319587277], + [-48.503226100040884, -25.07902024453293], + [-48.503208957209786, -25.078868779384177], + [-48.50322051256987, -25.078714457881357], + [-48.503286351112706, -25.078468539013663], + [-48.50335295839485, -25.078321461895776], + [-48.503418317495886, -25.078030768537968], + [-48.50344656956834, -25.077634755125242], + [-48.503415069760116, -25.077365446435966], + [-48.50342587334513, -25.077233495378383], + [-48.50341169072544, -25.077111954365584], + [-48.50346272727038, -25.076882393014586], + [-48.50356532101771, -25.07634872861909], + [-48.50362664756436, -25.076267634523923], + [-48.50370045073921, -25.076170041915066], + [-48.503707269004444, -25.07603423304837], + [-48.503657729158405, -25.075872565432647], + [-48.503563550993356, -25.075698413538625], + [-48.50338100729377, -25.075478820415025], + [-48.50310153108194, -25.074805780462476], + [-48.50348597897523, -25.074373612703884], + [-48.50343714591402, -25.073678912460082], + [-48.50344530890752, -25.07330584647112], + [-48.503636650240615, -25.072720334493287], + [-48.50391901072963, -25.072238100520767], + [-48.50399480288661, -25.072108656825403], + [-48.5042319760275, -25.071466693236932], + [-48.50449973850332, -25.071065592174573], + [-48.50467052616328, -25.070734394482123], + [-48.50474585547213, -25.070588312396897], + [-48.50487405954651, -25.070394432423672], + [-48.50498803491971, -25.070222069584194], + [-48.50512453409817, -25.069946018962252], + [-48.505184241468065, -25.06935675614279], + [-48.505119481662945, -25.069114867248025], + [-48.505014584959966, -25.068907412554278], + [-48.50490691363222, -25.068773747057204], + [-48.50471510259316, -25.06853562778221], + [-48.50442070397807, -25.06817015151156], + [-48.50425429986202, -25.06790759924254], + [-48.50418684232379, -25.067603388831113], + [-48.50423269529117, -25.067451918020556], + [-48.504385551855236, -25.066946968147413], + [-48.50434416275676, -25.066379193920536], + [-48.50431965167167, -25.066042950212488], + [-48.50427368902272, -25.0659627225643], + [-48.50409436457192, -25.065649711300708], + [-48.5040536600584, -25.065598084178383], + [-48.50373933761039, -25.06519941472582], + [-48.50323178539237, -25.06478472898911], + [-48.50300714076091, -25.064511538459193], + [-48.50267320388467, -25.064155188805803], + [-48.50232444513076, -25.063665011948338], + [-48.50195168743296, -25.063039068054724], + [-48.501942011574904, -25.06302282004095], + [-48.50174456553718, -25.062532661952353], + [-48.501593869013035, -25.062097263100412], + [-48.501433882559695, -25.061372621666862], + [-48.50135112769677, -25.061090265301498], + [-48.50117251586607, -25.060756203524495], + [-48.501156049906605, -25.060735953576124], + [-48.50099482984928, -25.060537683260282], + [-48.50053243025135, -25.06027895773264], + [-48.50049839794274, -25.06025163984346], + [-48.50041103257319, -25.060035248916144], + [-48.500181707023806, -25.059709007106644], + [-48.49991137517208, -25.05946565407025], + [-48.499626971289935, -25.05926982339426], + [-48.49939449825907, -25.05909874714173], + [-48.49909626523831, -25.05893850244011], + [-48.498849477813465, -25.058826884044375], + [-48.498549549036774, -25.058750189515013], + [-48.498223170966014, -25.05868498851632], + [-48.49788441723771, -25.058583758301996], + [-48.49751872932968, -25.058517893087224], + [-48.49713896796915, -25.058499549513336], + [-48.496781598475, -25.05846245500416], + [-48.49658958825835, -25.058442524220887], + [-48.496131448763606, -25.058410916072344], + [-48.49587131925774, -25.058311007785715], + [-48.49549204463041, -25.058268788347437], + [-48.495192605460176, -25.058168215581635], + [-48.49492107342978, -25.057984533670588], + [-48.494624549426014, -25.057740729683385], + [-48.494368065488295, -25.05746178132831], + [-48.494029319066, -25.057360542799035], + [-48.49379588635877, -25.057237201982332], + [-48.493564397550294, -25.057018374108576], + [-48.49341225849443, -25.056765066208417], + [-48.49327249455689, -25.056547786955917], + [-48.493159666577604, -25.056295142721222], + [-48.49294492841673, -25.05589749794845], + [-48.49278138951227, -25.055560417384154], + [-48.4925659246946, -25.055198579708524], + [-48.49237715339642, -25.05481331282866], + [-48.49233283784306, -25.05465147918347], + [-48.49229174985881, -25.054501431749465], + [-48.49212724219473, -25.05421209401856], + [-48.49210297204919, -25.054165748539734], + [-48.491975838324784, -25.053922977546303], + [-48.49182273375125, -25.053717411757994], + [-48.49179628851699, -25.053512424010172], + [-48.491788771903416, -25.053454159391883], + [-48.49179411903499, -25.053191571261515], + [-48.49175869898543, -25.052999933837466], + [-48.4916048665705, -25.052830175389712], + [-48.49147553890325, -25.052744410410558], + [-48.491319033207844, -25.052705945765872], + [-48.491135835633514, -25.0526909097089], + [-48.491134806729356, -25.052691108929324], + [-48.490794857737406, -25.052756930727995], + [-48.490794644535754, -25.05275695354978], + [-48.490409533139164, -25.052798176580115], + [-48.490198446077436, -25.05281593617231], + [-48.49007101571247, -25.052836218919182], + [-48.489783724724205, -25.0527836013356], + [-48.48941903306413, -25.052669974567227], + [-48.48906793161996, -25.052532696975472], + [-48.48867849589079, -25.052347010397476], + [-48.488443131464415, -25.05231914857936], + [-48.488301677420154, -25.052185416183946], + [-48.488054427638794, -25.052097653138564], + [-48.487752576213246, -25.05211642483571], + [-48.487752191461496, -25.05211657635534], + [-48.487461879883185, -25.052230903956335], + [-48.48724760868294, -25.052454135344043], + [-48.48704570906939, -25.052713395517866], + [-48.48680425634424, -25.05298392559892], + [-48.48643055554382, -25.053311915403473], + [-48.486111700637665, -25.053521434020833], + [-48.48573000989821, -25.053598548677755], + [-48.48572983312319, -25.053598555899093], + [-48.48490354977098, -25.05363230731885], + [-48.484196234958986, -25.053608381253085], + [-48.4838303282509, -25.05355441969991], + [-48.483701981230666, -25.053420905320824], + [-48.48365859163373, -25.05297839407024], + [-48.4837037521177, -25.052692602352295], + [-48.48376079601987, -25.052466711470252], + [-48.48379187795311, -25.052228440608154], + [-48.48366743344313, -25.051903954228436], + [-48.48354709114862, -25.051654330655108], + [-48.48351654021903, -25.05159095932411], + [-48.48348210881013, -25.051351577929655], + [-48.483525805784176, -25.051137400708157], + [-48.48353533780838, -25.051127769929927], + [-48.48383710998578, -25.050822870152185], + [-48.48396745746318, -25.050691171038345], + [-48.48416911573193, -25.050443850986294], + [-48.48441544289795, -25.04993460991969], + [-48.4845790098983, -25.049626944216687], + [-48.48472752402485, -25.049414542442534], + [-48.484915345025684, -25.04920280636765], + [-48.48522449839048, -25.04882596677896], + [-48.48534534379055, -25.04868473491879], + [-48.48549336816134, -25.048496203722134], + [-48.48562828965972, -25.048307450399903], + [-48.48576418507537, -25.048070953819714], + [-48.48588795182821, -25.047786492050367], + [-48.486051511978815, -25.04747882416943], + [-48.4861915454502, -25.047039418683045], + [-48.4863041558547, -25.04665924827662], + [-48.48653200671267, -25.046412367665678], + [-48.48673121771026, -25.04628440097045], + [-48.48702238689114, -25.04614605056339], + [-48.487247071034176, -25.046054334002505], + [-48.48742080659922, -25.04589011539812], + [-48.487503557014264, -25.045688537166406], + [-48.48746887491844, -25.045461091836255], + [-48.48747254971704, -25.045280874421387], + [-48.48747276902781, -25.04527011904894], + [-48.487424985032966, -25.04504245199643], + [-48.48722022021829, -25.044800188417152], + [-48.48705305832348, -25.04464214044732], + [-48.486978584402095, -25.044437901384313], + [-48.486868699681466, -25.04404202432444], + [-48.48686825573287, -25.0434211412117], + [-48.48688164352275, -25.042764672376823], + [-48.486929224661196, -25.042359520484503], + [-48.48695133209462, -25.041918117634935], + [-48.48686789570789, -25.041510748308152], + [-48.48670828403191, -25.040982690480735], + [-48.48671023128408, -25.040887204086033], + [-48.48657365958049, -25.040514755066372], + [-48.486226003587866, -25.04021037234542], + [-48.48575800103007, -25.040023350503386], + [-48.48534216241637, -25.039849150513362], + [-48.48498988385097, -25.039771545187513], + [-48.48466502668022, -25.03963470397999], + [-48.484364180598746, -25.039605728009736], + [-48.4839718682864, -25.039563261859566], + [-48.48343373468484, -25.039601902869272], + [-48.48327759171439, -25.039617002896783], + [-48.482908458625104, -25.0396526997617], + [-48.4824239494517, -25.039632546548823], + [-48.48208477538584, -25.039555156627564], + [-48.481851144682025, -25.03944373601303], + [-48.481370539276995, -25.039232607378704], + [-48.48107311062054, -25.03903652436633], + [-48.480882689086314, -25.03873479708911], + [-48.480838578045024, -25.038328092660326], + [-48.48088788335419, -25.03783939363582], + [-48.48090830255991, -25.0374815433776], + [-48.48087363371844, -25.037254097408603], + [-48.48066913810459, -25.036999890799425], + [-48.48038725656883, -25.036684671653852], + [-48.48012913864535, -25.036489254090437], + [-48.479911300745336, -25.036246760109016], + [-48.479497192507324, -25.03598899509172], + [-48.47903531987668, -25.035503560559427], + [-48.4788070701141, -25.035129549760374], + [-48.47863293396817, -25.034672878187763], + [-48.478562140722204, -25.034289600207693], + [-48.47858232098191, -25.033943686319677], + [-48.47864253555929, -25.03356263239851], + [-48.478777936678334, -25.033350013021874], + [-48.478968912991505, -25.03298311835263], + [-48.47903306928798, -25.03286372080561], + [-48.47915964404249, -25.03262815906286], + [-48.47922758768694, -25.03250991332383], + [-48.47948528423716, -25.032084450667387], + [-48.47972841445489, -25.031730379641832], + [-48.4797903315904, -25.031265774520715], + [-48.47977193759753, -25.03088338592084], + [-48.479770444600035, -25.030870096733405], + [-48.47972758666294, -25.03048861701833], + [-48.479627222411224, -25.030263780409832], + [-48.47959698359042, -25.03019603906708], + [-48.47957031760998, -25.03013630158125], + [-48.47953961963958, -25.030067531508163], + [-48.47938607497402, -25.029885827689586], + [-48.47938546844608, -25.02988525410636], + [-48.479360362229514, -25.02986151157552], + [-48.479221626439355, -25.029596479738633], + [-48.47914863672622, -25.029320623612158], + [-48.47906083888485, -25.029128095391652], + [-48.478882803699754, -25.028862396357667], + [-48.47871738136864, -25.02862079094304], + [-48.478601675879425, -25.02851136805392], + [-48.47847482292445, -25.028306236769655], + [-48.478321281845375, -25.028124532138435], + [-48.47809133725693, -25.027834071309744], + [-48.47778474607313, -25.027446789765754], + [-48.47751745692522, -25.02706017509086], + [-48.47735521350826, -25.02666340396147], + [-48.47727246178939, -25.026415264116274], + [-48.47720704766458, -25.026219112257653], + [-48.477150582053135, -25.025776377713868], + [-48.47704220563136, -25.025308881837283], + [-48.476893553720394, -25.024888461441076], + [-48.47687150518598, -25.02468510900153], + [-48.47673693093388, -25.0242171680422], + [-48.47664116821381, -25.02377376594109], + [-48.47653206218025, -25.02334207706463], + [-48.47645956939925, -25.023042348724548], + [-48.47620490399581, -25.02267982648949], + [-48.476090182924075, -25.022522659266176], + [-48.47605430353944, -25.022354891442063], + [-48.47577197610834, -25.022063537943637], + [-48.47565652332594, -25.02194217760766], + [-48.47543847355193, -25.021711615078466], + [-48.475376640644335, -25.021531466250842], + [-48.4753196936583, -25.0211126029367], + [-48.4752852813084, -25.02087322062815], + [-48.47518634953433, -25.020584982499997], + [-48.47515486904018, -25.0202023714807], + [-48.47511786240675, -25.01944953034804], + [-48.475036916929405, -25.01892280025344], + [-48.47497499620774, -25.018610523038816], + [-48.47494455228244, -25.018456988456123], + [-48.47491814038982, -25.01832378794997], + [-48.47483279866776, -25.018011900824828], + [-48.474892523688005, -25.017654719415166], + [-48.47487487583196, -25.01723652377624], + [-48.47487057120023, -25.016806614965294], + [-48.47487545685067, -25.016567900396584], + [-48.474871396297374, -25.0161260558008], + [-48.47489280040577, -25.015720463568876], + [-48.47494308865857, -25.015184023401027], + [-48.47497856781843, -25.014730910696596], + [-48.47493179079987, -25.014455498586496], + [-48.474678611130805, -25.014021360711368], + [-48.474487261769674, -25.01376737146415], + [-48.47407226011761, -25.013557340330923], + [-48.47379914489595, -25.013457178949515], + [-48.47344719445276, -25.013367616733092], + [-48.473133562547446, -25.013326464729534], + [-48.47278063535236, -25.01328464384643], + [-48.47248034699944, -25.01323177750694], + [-48.47221984354252, -25.013155707575446], + [-48.471791749838545, -25.012945447723126], + [-48.47128457774999, -25.012757720938918], + [-48.470910348695334, -25.012476736021004], + [-48.47062878869549, -25.012149568063023], + [-48.47041051999483, -25.01193093561875], + [-48.470099095529896, -25.011782356335644], + [-48.4697874271428, -25.01164571213315], + [-48.46939643540756, -25.011543536228707], + [-48.469032130559754, -25.01141793409257], + [-48.468693288599894, -25.011328584372848], + [-48.46821110085371, -25.01120097247738], + [-48.46771655070456, -25.011037328906227], + [-48.467391054198686, -25.01093626388327], + [-48.46711893103935, -25.010788348376376], + [-48.466583129589814, -25.010719516897225], + [-48.466098006197704, -25.010735126409106], + [-48.46558570601888, -25.01079803020572], + [-48.46533659520238, -25.010805721841802], + [-48.46511539683627, -25.010730310308052], + [-48.46500241657402, -25.010489586686827], + [-48.46499642826193, -25.010143229511666], + [-48.46501369411962, -25.009940546900353], + [-48.46516610812145, -25.009537192163332], + [-48.46513637448527, -25.009071031595862], + [-48.465130875758895, -25.008700803029594], + [-48.465006760135196, -25.008364370937514], + [-48.46500284215598, -25.00834622028265], + [-48.46491104725068, -25.007920964728164], + [-48.464910265374634, -25.007763932601545], + [-48.46491023860112, -25.007758555458235], + [-48.46490849064568, -25.007407508318845], + [-48.4649175608047, -25.006965889208473], + [-48.46494841390065, -25.00673955857081], + [-48.464837643103365, -25.006391414189537], + [-48.464558073961264, -25.005968751590434], + [-48.46413296162162, -25.005615244699097], + [-48.46366586130404, -25.005392358369654], + [-48.46324943611568, -25.005253914273656], + [-48.46264743802833, -25.00521975993943], + [-48.46183465243249, -25.00524170315882], + [-48.46124256177884, -25.00536292987007], + [-48.46062427499774, -25.005483706625036], + [-48.45982163855199, -25.005649089704693], + [-48.459633518158974, -25.00570011649316], + [-48.4589520381286, -25.005884962399275], + [-48.45823019528585, -25.00594425955878], + [-48.457471271906336, -25.005895460802044], + [-48.456636960945495, -25.00569015107758], + [-48.455934612523535, -25.005439336319085], + [-48.45535088281397, -25.005154729698397], + [-48.454950520377515, -25.004873260584986], + [-48.4545279027569, -25.00440037300022], + [-48.45430396373806, -25.003823428987566], + [-48.45426983604864, -25.003666190028845], + [-48.454184312602706, -25.00327215029537], + [-48.45401153497091, -25.002755781023943], + [-48.45379971321512, -25.002226803081818], + [-48.453595328284294, -25.001972567053446], + [-48.45322117412637, -25.00169154297775], + [-48.452869276063275, -25.001601935649973], + [-48.45237577355478, -25.001390503272187], + [-48.451761936106784, -25.00129640437134], + [-48.45106927123722, -25.001212891202687], + [-48.45076976461715, -25.00112417734468], + [-48.45018064534722, -25.001102134418808], + [-48.4497775964692, -25.000951943904774], + [-48.44941334643925, -25.000826297557246], + [-48.44931208259413, -25.000679732738593], + [-48.44914620090834, -25.000439642074962], + [-48.44887412473644, -25.0002916965363], + [-48.44871992132693, -25.000145773395236], + [-48.4487075846059, -25.00003571023198], + [-48.4486835718668, -24.999821478097704], + [-48.44867567243931, -24.999751002444036], + [-48.44857762818385, -24.99954866616398], + [-48.4485123192525, -24.999413886193167], + [-48.44825605617388, -24.99913487385988], + [-48.447945433761426, -24.998950446024043], + [-48.44761974182062, -24.99886127677408], + [-48.44713442194278, -24.99888876337703], + [-48.44672990372575, -24.998810178395587], + [-48.4466384539984, -24.998794269372556], + [-48.44627299925851, -24.998730692560063], + [-48.44592284416326, -24.998557521399952], + [-48.445548965855494, -24.998264544610592], + [-48.445537350673554, -24.998192706645852], + [-48.4452331554198, -24.997697951045556], + [-48.44524278574657, -24.997232467150205], + [-48.44518298248134, -24.996956825780035], + [-48.445120327085895, -24.996763379602548], + [-48.445109095132146, -24.996728701310463], + [-48.4449427919346, -24.996534807928526], + [-48.444831344578, -24.996222459795863], + [-48.44460153617182, -24.995931956923698], + [-48.44430328292317, -24.995783553952606], + [-48.444055439686885, -24.99573153480787], + [-48.44369936687606, -24.995844810609864], + [-48.44369906656792, -24.995845019003877], + [-48.443380358819034, -24.996066180332587], + [-48.443379999141776, -24.996066209210323], + [-48.44301291806531, -24.996095680918597], + [-48.442515501900644, -24.996075186129115], + [-48.44207071880061, -24.996043655442207], + [-48.44172113956976, -24.996049015616695], + [-48.441703772624706, -24.99604928188639], + [-48.44138995393014, -24.99602000251283], + [-48.44108997371852, -24.995955141538378], + [-48.44094962354235, -24.99577363046499], + [-48.44074354479686, -24.995602927638625], + [-48.44060443229156, -24.99536173907287], + [-48.44051907375181, -24.995062236492696], + [-48.44051894219793, -24.99506177490099], + [-48.440393421668865, -24.99479694077506], + [-48.44019031386811, -24.994483012019508], + [-48.439959035458266, -24.99426411566764], + [-48.43972627335098, -24.994116831606643], + [-48.43947917840361, -24.994028998928165], + [-48.43912929457067, -24.9938438780161], + [-48.438817215137675, -24.993731045695206], + [-48.43857036926134, -24.99363127616313], + [-48.43841395868019, -24.99359276267069], + [-48.43799735960581, -24.99346618842466], + [-48.43768354901418, -24.993436901803378], + [-48.43724051162249, -24.99332180959694], + [-48.436866423049345, -24.993040749035185], + [-48.43647899247337, -24.99277139731874], + [-48.43615778667385, -24.992467367498108], + [-48.43586351762785, -24.992127982527347], + [-48.435670300248965, -24.9919694348751], + [-48.435375042418784, -24.991677790710913], + [-48.43505210722754, -24.991457306715642], + [-48.43480551723831, -24.991345596085413], + [-48.43452038400031, -24.99119740114784], + [-48.434273299236445, -24.9911095605052], + [-48.43394615250298, -24.99109197598869], + [-48.433723028256956, -24.99111200494859], + [-48.4337222583895, -24.991112408073096], + [-48.43339191363833, -24.991285385339925], + [-48.43339154163602, -24.99128554690904], + [-48.43288956033135, -24.99150356756029], + [-48.43261231547747, -24.99160623807875], + [-48.43217816832249, -24.991694259077157], + [-48.431863372125086, -24.991712702119642], + [-48.43147124192415, -24.991670110457978], + [-48.43115843167021, -24.991593069099178], + [-48.430888632958236, -24.991337675456762], + [-48.43063118632074, -24.991118313783616], + [-48.43031024835409, -24.990802337372557], + [-48.430155831221136, -24.99066833282499], + [-48.42985934857153, -24.990436355708063], + [-48.42949589863738, -24.99027485839853], + [-48.429120844531546, -24.990041521775634], + [-48.42876900181992, -24.98995186126158], + [-48.42845545265225, -24.989910620694882], + [-48.42801957020765, -24.990082177165345], + [-48.428019287967416, -24.990082376284263], + [-48.427474447415236, -24.99046675587283], + [-48.427179330209064, -24.990709488592028], + [-48.42704792831719, -24.990817565596178], + [-48.42672841042394, -24.99106276900251], + [-48.426727591813986, -24.99106317693], + [-48.42645041655534, -24.99120123372232], + [-48.42605580402735, -24.991277981138403], + [-48.42562439153431, -24.991234694280138], + [-48.42493106541437, -24.991186870942407], + [-48.42418510851046, -24.991150072348873], + [-48.42353057318489, -24.991126793662712], + [-48.423191828445, -24.991037346924113], + [-48.4227475719763, -24.990981889659786], + [-48.422434023460724, -24.99094063634099], + [-48.42210663227717, -24.99093496118851], + [-48.42161049269238, -24.990854721909784], + [-48.42107531624544, -24.99076186447873], + [-48.42056458733079, -24.990753006322493], + [-48.4200299110462, -24.990636274693234], + [-48.41949648264199, -24.99045986494138], + [-48.419118706247424, -24.9903577923093], + [-48.41894010293297, -24.990339155944525], + [-48.41881756927852, -24.990298440392507], + [-48.41880063717979, -24.990292814221135], + [-48.41869377973159, -24.990257308029854], + [-48.418377248867756, -24.990106130690588], + [-48.41805360299721, -24.989921418148775], + [-48.41779618403138, -24.989702036258407], + [-48.417590399252056, -24.989519369297547], + [-48.41751925392963, -24.989466142030363], + [-48.417345328767105, -24.989336019857635], + [-48.416972050201906, -24.989019107956402], + [-48.416584679827686, -24.988749708744137], + [-48.41598878466657, -24.988428927236004], + [-48.415599670593174, -24.988243072291258], + [-48.415240875501304, -24.988036525280855], + [-48.41510779348629, -24.987959913784834], + [-48.414654954659085, -24.98768937204228], + [-48.41430762880786, -24.98738484486067], + [-48.4141431371945, -24.987107375139214], + [-48.41391516936196, -24.986733285138484], + [-48.41380680737887, -24.98627769787186], + [-48.413777016136926, -24.985823476881087], + [-48.41382879268973, -24.985227399578328], + [-48.41391810446375, -24.98471555169976], + [-48.41389716071106, -24.98446445691449], + [-48.41401826196187, -24.984311348289808], + [-48.414054443356946, -24.983834395132234], + [-48.41402115389818, -24.98354726698806], + [-48.413961175441415, -24.983283553933436], + [-48.413761152159914, -24.982826372966127], + [-48.41354678648128, -24.982428640184995], + [-48.41327810831431, -24.982095630217177], + [-48.412983157303465, -24.981703659065708], + [-48.41287911524938, -24.98160513914069], + [-48.412870545380834, -24.981556973766647], + [-48.41285199130918, -24.98145269391582], + [-48.412631647425634, -24.98111728293017], + [-48.412380711173036, -24.980795155240443], + [-48.41230755306263, -24.98066954068816], + [-48.41212948697786, -24.980486837959685], + [-48.41201058369086, -24.98037424320208], + [-48.41166410991608, -24.980271504438868], + [-48.411498593922744, -24.980213361256308], + [-48.41102656454151, -24.980315672507945], + [-48.410705187474186, -24.980462051972413], + [-48.41044557580395, -24.980554242929095], + [-48.410126802421765, -24.980576324636], + [-48.40971740583126, -24.980583011835307], + [-48.409396026722334, -24.980729388247653], + [-48.409395875062096, -24.980729559137107], + [-48.40896134264209, -24.981219183836338], + [-48.40866505246902, -24.981614678838127], + [-48.40838504227734, -24.981924696319783], + [-48.40779411132343, -24.982174202045446], + [-48.40728773350284, -24.982240016895805], + [-48.40652924976719, -24.98226824103837], + [-48.40601262263894, -24.982328310797875], + [-48.40549222548823, -24.982567917243593], + [-48.40549211704792, -24.982568063768838], + [-48.40514901404928, -24.983031664309717], + [-48.40475512133647, -24.983743208848598], + [-48.40448621546897, -24.98427732900463], + [-48.40423623165416, -24.984632174619406], + [-48.40398653652447, -24.984973209040128], + [-48.40398584311611, -24.984973587407364], + [-48.40361852120952, -24.985174020508698], + [-48.40326826977541, -24.98525079988842], + [-48.402891486758236, -24.985147511097335], + [-48.402561904210756, -24.98496215159844], + [-48.4021233510398, -24.984913044951405], + [-48.40157669745812, -24.98495875824074], + [-48.40096856186888, -24.98504484213452], + [-48.40037238173934, -24.985283104876515], + [-48.40037190353637, -24.985283432698743], + [-48.400018641194485, -24.985525603487208], + [-48.39951980483334, -24.986180034212158], + [-48.39892655722766, -24.986998599651457], + [-48.398413137579624, -24.987625139417734], + [-48.39841263253634, -24.987625306390694], + [-48.39761937153047, -24.98788756463259], + [-48.39688796010167, -24.988068182964394], + [-48.39621541182773, -24.988332721985497], + [-48.39569409908016, -24.988613721959357], + [-48.39569394634434, -24.988613836713217], + [-48.39537064613491, -24.98885673861556], + [-48.39543854882371, -24.989230949978815], + [-48.39579144819058, -24.989748308840028], + [-48.39602254305196, -24.990291165418146], + [-48.39594182778494, -24.99052461778152], + [-48.39573726601193, -24.99088024189068], + [-48.39536718213759, -24.991177703957675], + [-48.39512123528048, -24.99133918336235], + [-48.39512112887743, -24.99133919412033], + [-48.39477183652324, -24.991374509223068], + [-48.39391276341968, -24.991138406003714], + [-48.393222419234526, -24.990808546612705], + [-48.392906534690674, -24.990692483923453], + [-48.392330131988665, -24.990710008465186], + [-48.39196237410375, -24.99089697750379], + [-48.39134953920486, -24.991203986838215], + [-48.3913491812295, -24.99120422185716], + [-48.39079614736474, -24.991567298860588], + [-48.389627573439846, -24.9923480936772], + [-48.38862567253198, -24.99313180547813], + [-48.38776101675775, -24.993876474206303], + [-48.38669964653592, -24.994603864297215], + [-48.38669926074081, -24.994604056314923], + [-48.38584169295136, -24.99503088033338], + [-48.38584103379309, -24.99503125998962], + [-48.38547332630269, -24.995245449019375], + [-48.38547330007353, -24.99524546429771], + [-48.384570783201546, -24.99563022947258], + [-48.38379502122694, -24.995754736623557], + [-48.38303763110016, -24.99572759208259], + [-48.38258389983347, -24.995678158623072], + [-48.38205264433143, -24.995710251939556], + [-48.38170703888711, -24.995566010971483], + [-48.38095140878078, -24.995455993735728], + [-48.38069496946465, -24.995396214253972], + [-48.380191678660296, -24.995539317741738], + [-48.380191424969915, -24.995539584611652], + [-48.37974419323042, -24.996010047833167], + [-48.379015552189394, -24.99663885832695], + [-48.37837377799834, -24.997248387998635], + [-48.37818156672257, -24.99766287472993], + [-48.378065142030785, -24.998210030148883], + [-48.37795251770804, -24.998578162678314], + [-48.377932832073114, -24.998888237718965], + [-48.3778587343604, -24.99929286752889], + [-48.37782941640781, -25.000056466516934], + [-48.37789278512949, -25.00077394305125], + [-48.377985135006696, -25.001360598250653], + [-48.37798758539337, -25.001862092593512], + [-48.378004399353685, -25.002304143731504], + [-48.37770030740361, -25.003050956189846], + [-48.37740432513928, -25.003415853058616], + [-48.37740385541409, -25.003416001419417], + [-48.377153716625955, -25.003495006470693], + [-48.37632889060485, -25.0034685110359], + [-48.37602741755904, -25.00347512892471], + [-48.374985181393996, -25.00381490611426], + [-48.37419101290421, -25.004194875790144], + [-48.374190980344856, -25.00419493720232], + [-48.37395897737686, -25.004632530183475], + [-48.37376724572664, -25.005023139084848], + [-48.37364074220294, -25.005426839470296], + [-48.373556321343386, -25.005699951246765], + [-48.373208187549736, -25.006051977569147], + [-48.37210235559263, -25.00691593645508], + [-48.371200333626696, -25.007437252319498], + [-48.37120017559733, -25.00743732086295], + [-48.37075071826602, -25.00763226675682], + [-48.37075042148495, -25.007632459978232], + [-48.37017941497883, -25.008004215505988], + [-48.36979248302344, -25.00833166769656], + [-48.36953651874855, -25.008661436755734], + [-48.36938380277982, -25.0090646682935], + [-48.36931793143626, -25.00969628255695], + [-48.36925663859446, -25.01011307131066], + [-48.36901122154285, -25.01056241824567], + [-48.368435827112805, -25.011125314366197], + [-48.36807507488418, -25.011453224620215], + [-48.36748962999008, -25.01187266767402], + [-48.36719435968595, -25.01220173541356], + [-48.366975889260345, -25.01261573784322], + [-48.36690880945496, -25.013045493426947], + [-48.36688482584874, -25.013199146576408], + [-48.366860776908965, -25.013712107305253], + [-48.366841566761785, -25.01399830839868], + [-48.3666158524579, -25.014137579351708], + [-48.36595180414366, -25.014555622088853], + [-48.365951578952135, -25.014555692218522], + [-48.365516526696695, -25.014691176361534], + [-48.36551593985664, -25.014691474547543], + [-48.36503966136879, -25.014933444890815], + [-48.36434115541667, -25.0151240236511], + [-48.36394746234131, -25.01515285778002], + [-48.36377580168994, -25.015115239123567], + [-48.3632953878635, -25.01500995744923], + [-48.362811287619124, -25.014977488331237], + [-48.36203980688739, -25.01490409864668], + [-48.36163276182951, -25.01494462878727], + [-48.3613561817058, -25.015011352929115], + [-48.36135604202877, -25.015011544584052], + [-48.361167200201585, -25.01527065924597], + [-48.36074560159757, -25.01599146213465], + [-48.36037146217116, -25.016331052633504], + [-48.360370949209255, -25.01633129363651], + [-48.35988173973132, -25.0165611358247], + [-48.3593039078688, -25.01662250290663], + [-48.359030644345914, -25.016534072014814], + [-48.35879871828451, -25.01635086205846], + [-48.358487440450816, -25.016202058674814], + [-48.35820983408865, -25.016316515071964], + [-48.35820974309078, -25.016316611846836], + [-48.358022121974955, -25.016516143501068], + [-48.35804141678739, -25.01683884416698], + [-48.358179358123095, -25.01712783686282], + [-48.3583147279173, -25.017411440749488], + [-48.358317300052214, -25.017416829438954], + [-48.35824797762142, -25.017594684520493], + [-48.358109332093846, -25.017950394491336], + [-48.357773961948354, -25.01831454519706], + [-48.3575980655306, -25.018574078756416], + [-48.35759244136748, -25.01883664035761], + [-48.357836189577604, -25.01907975840719], + [-48.358077638260646, -25.019430287714556], + [-48.35806971440954, -25.01980026096835], + [-48.35800965374036, -25.020157367943543], + [-48.35789489943592, -25.020620954701847], + [-48.35773701472256, -25.021262861694037], + [-48.357556255426154, -25.02174915238485], + [-48.35738935995918, -25.02219987190458], + [-48.35720680749622, -25.02276970416405], + [-48.35685243932478, -25.023408114193213], + [-48.356658574218116, -25.023894170106214], + [-48.35641794150889, -25.024116732098022], + [-48.3564177322122, -25.024116671939883], + [-48.35597515201135, -25.023989460436646], + [-48.35569133607324, -25.0237814433057], + [-48.355416524953114, -25.023764612278622], + [-48.35541597428851, -25.023764872636487], + [-48.35517819125884, -25.023879756317907], + [-48.35500565518526, -25.024593037455546], + [-48.35487906538236, -25.024996714230795], + [-48.3545295424904, -25.025408360037687], + [-48.354157404784544, -25.02565245414141], + [-48.354157150013194, -25.025652515583516], + [-48.35378859488062, -25.02574139779871], + [-48.35326644320339, -25.025648521494233], + [-48.352863042476564, -25.025546306188012], + [-48.35281029778136, -25.025532941432516], + [-48.35240321672848, -25.02557344311629], + [-48.35211351030004, -25.025639914126632], + [-48.35211331143731, -25.02564008836356], + [-48.35173957360269, -25.025967543580474], + [-48.35164198820611, -25.026240403538043], + [-48.351322750212944, -25.026461554880914], + [-48.35132227850795, -25.026461759360647], + [-48.35092594445261, -25.026633565699743], + [-48.350504735219914, -25.026721566358653], + [-48.35050450119765, -25.026721751499814], + [-48.350206575820124, -25.02695744729269], + [-48.35009149491832, -25.02704849008298], + [-48.34985855704939, -25.027521898688697], + [-48.349902744394726, -25.027904738387647], + [-48.34998725437205, -25.028240541058764], + [-48.350313462551256, -25.028914950477237], + [-48.350592406900056, -25.029349734132676], + [-48.350715960016245, -25.029698172036763], + [-48.35088060585453, -25.029963769045956], + [-48.35104371385529, -25.03030097313339], + [-48.35113568615138, -25.03089956886207], + [-48.35119066915349, -25.031390052912563], + [-48.35134042392297, -25.031738957748097], + [-48.35163427147766, -25.032090431975924], + [-48.35225150234623, -25.03263869700307], + [-48.35244235367514, -25.032904759842797], + [-48.3524814141808, -25.033094052443392], + [-48.35233249369804, -25.03382932916278], + [-48.35223358556258, -25.034083010204863], + [-48.35194875423305, -25.034531617984424], + [-48.35163720873285, -25.035003626892927], + [-48.35146325444196, -25.03529229561506], + [-48.35133824745643, -25.035499737597135], + [-48.35127610371146, -25.035952315149753], + [-48.351148204278175, -25.036415658875136], + [-48.350933478763736, -25.036650610684124], + [-48.35066866207379, -25.03677721656421], + [-48.35066838444381, -25.03677730180895], + [-48.350154179540766, -25.036935184382006], + [-48.34984974588508, -25.037031774504705], + [-48.34979791967523, -25.03704821774498], + [-48.34935329726124, -25.037004464853123], + [-48.34908153895638, -25.036844405730417], + [-48.348977026080085, -25.036637375745233], + [-48.348899141652176, -25.036483093712523], + [-48.34889300029144, -25.036470928214015], + [-48.3488267436758, -25.03593881915246], + [-48.348825953387994, -25.035932472308378], + [-48.34877285296756, -25.035845675874555], + [-48.34864871930669, -25.035642770026072], + [-48.348006320158476, -25.03504628445677], + [-48.34767934511625, -25.035016566949135], + [-48.34767886148122, -25.035016785696556], + [-48.346739773362586, -25.03544152927453], + [-48.34639430292287, -25.03566219899803], + [-48.34639410353787, -25.035662206435582], + [-48.345528701937475, -25.035694485565614], + [-48.3455284336658, -25.03569468804475], + [-48.34514238773263, -25.035986056487292], + [-48.34489991070376, -25.03629213708018], + [-48.344639190636805, -25.036836672234884], + [-48.344277012955416, -25.037224184559445], + [-48.34391843360774, -25.037444613385414], + [-48.343521325332034, -25.037628534888366], + [-48.34352123930751, -25.037628542551953], + [-48.34285169335758, -25.037688188525028], + [-48.34227787696408, -25.037558529292987], + [-48.34178394733843, -25.037370602714848], + [-48.34109841547257, -25.036952402316572], + [-48.3406232549358, -25.036502149423377], + [-48.34015836455303, -25.03618340849701], + [-48.33968884025461, -25.036079485821908], + [-48.33909678345607, -25.03618826871664], + [-48.339096468153805, -25.0361884441166], + [-48.33832747310696, -25.036616225852338], + [-48.33786610500572, -25.037348174909425], + [-48.33776254925942, -25.03789551317955], + [-48.337781272958836, -25.038242080359066], + [-48.33802192018988, -25.038628443074803], + [-48.33809613717438, -25.03883273682259], + [-48.33799593163428, -25.039224928024115], + [-48.33775291524541, -25.03955486362264], + [-48.337301845414174, -25.039809433941418], + [-48.3373014881639, -25.03980955481107], + [-48.3365753990897, -25.040055212684788], + [-48.33643054342251, -25.040104221174317], + [-48.33593119707591, -25.040166896941884], + [-48.335644288029144, -25.040102054031777], + [-48.3355050911183, -25.039872715275102], + [-48.33552335152714, -25.039634262946098], + [-48.335512521269685, -25.039202225413913], + [-48.335509278776726, -25.039072877384708], + [-48.33529716093848, -25.038579571994465], + [-48.33493578636528, -25.03832236770656], + [-48.33444367423115, -25.03805087685099], + [-48.334290865645556, -25.03784517086056], + [-48.33422465746827, -25.037270910526733], + [-48.33419594154329, -25.03678089623858], + [-48.33412379713853, -25.036481126227056], + [-48.33381302204716, -25.03630840098058], + [-48.333341955468775, -25.036276064748446], + [-48.332776610222155, -25.036361423624353], + [-48.3322269256199, -25.036565838566258], + [-48.33210285169919, -25.036611978388265], + [-48.33130326304318, -25.036621489064338], + [-48.33100166670204, -25.036451935744097], + [-48.33051349660746, -25.03617749102652], + [-48.3301598106804, -25.0361711327095], + [-48.33015955851907, -25.03617134125879], + [-48.329919625180274, -25.036369776856482], + [-48.3297484697478, -25.03701140360304], + [-48.32958687938872, -25.037211460270765], + [-48.32958655674748, -25.03721149790548], + [-48.32852270980789, -25.037335587109755], + [-48.327825844767574, -25.037442438340197], + [-48.327172936104596, -25.03733517627083], + [-48.32631664933945, -25.036937715039517], + [-48.32567373744372, -25.036973893895833], + [-48.324731868088534, -25.03689723394275], + [-48.32425717739043, -25.037031948627245], + [-48.324256958059294, -25.03703208755329], + [-48.32372568243152, -25.03736859974397], + [-48.32362310135907, -25.03786818592648], + [-48.32350263619084, -25.039191235513744], + [-48.3234440374736, -25.040682544799], + [-48.3233718170491, -25.042197486022825], + [-48.3235163158819, -25.042785098062463], + [-48.32380491772622, -25.043375307524467], + [-48.32388821607817, -25.04346113825594], + [-48.32409974242717, -25.043679094581297], + [-48.32423192309075, -25.044230667381687], + [-48.32440392400767, -25.044759079889566], + [-48.32440340039789, -25.04478319201603], + [-48.324391484158895, -25.04533192403444], + [-48.32448695749521, -25.04576344590074], + [-48.32487012368413, -25.04622402992719], + [-48.32500464158623, -25.046668194050586], + [-48.32515459294715, -25.04700518584794], + [-48.32517768472569, -25.04714886901553], + [-48.325522851012316, -25.047549072395867], + [-48.32581976169528, -25.047757382958032], + [-48.32604935674153, -25.04804805301487], + [-48.32605313195574, -25.048477922504894], + [-48.32616352660281, -25.048826139929385], + [-48.326338907861974, -25.049199405697788], + [-48.32648420308841, -25.049751213376435], + [-48.326614585380426, -25.050386324920805], + [-48.326642491709826, -25.05091214047275], + [-48.326588165313055, -25.051603619980995], + [-48.32660711468104, -25.05193825128758], + [-48.3264840237626, -25.052174812837656], + [-48.32629542656274, -25.0524101943291], + [-48.326295005913074, -25.052410302720492], + [-48.32599228626207, -25.052488305988764], + [-48.32550676584629, -25.05251537523415], + [-48.32499582062491, -25.05250616792001], + [-48.32499537822901, -25.052506308987216], + [-48.32469241813217, -25.05259622140524], + [-48.32438538996543, -25.052853332989038], + [-48.324258923363296, -25.0532450373559], + [-48.32424907084756, -25.053698538421525], + [-48.32426516142847, -25.0541644460552], + [-48.32405165070306, -25.054339680436467], + [-48.324051361799896, -25.054339690696196], + [-48.323828668605024, -25.05434759897355], + [-48.323529672021394, -25.05423475739562], + [-48.32305037056604, -25.05397539656738], + [-48.3226784756298, -25.053598582694224], + [-48.322533194983734, -25.05304677257747], + [-48.322343163588386, -25.05274487199445], + [-48.321763992142046, -25.05225686672944], + [-48.32123281710203, -25.05197268691577], + [-48.32087066005118, -25.051751250569833], + [-48.32027632121534, -25.05135847748091], + [-48.31984918238143, -25.05111198793488], + [-48.31912825665526, -25.050513963938283], + [-48.31861123577706, -25.050182275631073], + [-48.318324316375865, -25.05011739814871], + [-48.31785242671818, -25.050120811274756], + [-48.31770857751089, -25.050106273156047], + [-48.31730687053115, -25.04989605301594], + [-48.316974307922585, -25.049519937404714], + [-48.31665718768503, -25.049036650518406], + [-48.316392472411636, -25.04855431046817], + [-48.31600803366017, -25.048153377532742], + [-48.31560737628179, -25.047895416837985], + [-48.31532384521931, -25.0476753900091], + [-48.31487078886759, -25.047416479885708], + [-48.31441487044526, -25.047261792964935], + [-48.31435041103765, -25.047239922624183], + [-48.31417626072371, -25.04721507116478], + [-48.3140629810355, -25.04719890590333], + [-48.31398006024733, -25.047186579431614], + [-48.31351432269989, -25.04711734498509], + [-48.31311922672213, -25.047205705406544], + [-48.31311901943094, -25.047205821039537], + [-48.3127875501234, -25.04739072348804], + [-48.31246350571047, -25.047826594731905], + [-48.31217086774178, -25.048024256864498], + [-48.31174644201381, -25.0482553483826], + [-48.311746264060844, -25.048255386531924], + [-48.31123291546067, -25.048365436405494], + [-48.3106965738824, -25.048319904420936], + [-48.31024560943002, -25.048212627103503], + [-48.3100446733023, -25.048164827082672], + [-48.30976245390761, -25.047940342206303], + [-48.30964533312945, -25.047847180820117], + [-48.30926196271892, -25.047398495982154], + [-48.30919969508474, -25.047301792802415], + [-48.30909908610287, -25.04714554421399], + [-48.30904918406961, -25.047068044789707], + [-48.30891972100117, -25.046866984090748], + [-48.30888082633066, -25.04682043598687], + [-48.3086259728126, -25.046515433048583], + [-48.308171309151405, -25.045731166377145], + [-48.30767839354794, -25.044898449644723], + [-48.30741606950362, -25.044308690180433], + [-48.307203018126124, -25.043863089887314], + [-48.30714482078737, -25.043527747462644], + [-48.30716522355358, -25.043193830636085], + [-48.30724956100137, -25.042932706259663], + [-48.307383950703404, -25.042779938903994], + [-48.30775909274531, -25.04240469956025], + [-48.3079772948458, -25.04201467483296], + [-48.30806710437899, -25.04150293366375], + [-48.308024872595695, -25.041036553794918], + [-48.30776828901987, -25.04018424510174], + [-48.307734421889315, -25.03991577291612], + [-48.30771243729963, -25.039741495859708], + [-48.307962828898596, -25.039077461364368], + [-48.3081681846304, -25.038675264076627], + [-48.30834812184827, -25.03823678915728], + [-48.30841302982229, -25.037664901748684], + [-48.30837805257226, -25.037452922847887], + [-48.30833201977628, -25.037173941252142], + [-48.308084107745195, -25.036524750427624], + [-48.30779272980844, -25.03606579261669], + [-48.30762737718537, -25.035930859315894], + [-48.307626627653704, -25.0359307459413], + [-48.30723874390254, -25.03561421769666], + [-48.30671295392444, -25.035688254030035], + [-48.30641410149698, -25.035669200980742], + [-48.30618951086826, -25.035654882023476], + [-48.305955031065466, -25.035590934450582], + [-48.305745127142316, -25.035408497519608], + [-48.30564639175027, -25.035322681880118], + [-48.30538858463014, -25.0351269837411], + [-48.304719228685244, -25.03517453039342], + [-48.3043270403819, -25.03513159542163], + [-48.30358718318977, -25.034807755588336], + [-48.30322197800218, -25.034729491456716], + [-48.302853900938715, -25.034782500572312], + [-48.3021379364556, -25.035163474107204], + [-48.30161573153006, -25.035394574086027], + [-48.30161547142254, -25.03539464287265], + [-48.30151635580426, -25.035438505862437], + [-48.30097380557596, -25.035679360604576], + [-48.30036837156681, -25.035799682161304], + [-48.3000880132999, -25.035798576529462], + [-48.30008727668258, -25.03579877132209], + [-48.299601523839, -25.03579685427158], + [-48.2996008151217, -25.03579665393571], + [-48.299529766995974, -25.03579637343013], + [-48.29924425204734, -25.03569586233962], + [-48.29923972174594, -25.035694581728634], + [-48.29910030074791, -25.035645500421722], + [-48.298573179481316, -25.03518224054547], + [-48.29829311079176, -25.0348070449555], + [-48.29823342626804, -25.034668831629542], + [-48.29804368858939, -25.03422944816982], + [-48.29781994287637, -25.03367619577708], + [-48.29764493136172, -25.033290972050157], + [-48.29710732746602, -25.032111193823688], + [-48.29680787598626, -25.031425236528598], + [-48.29662186524973, -25.03094430198676], + [-48.29661609394675, -25.0306099127551], + [-48.296675029791075, -25.030312517458597], + [-48.29682853235765, -25.0298855173306], + [-48.29702080552337, -25.02948309999604], + [-48.2973183870648, -25.02905872113385], + [-48.297746426087365, -25.02866059248231], + [-48.29829313101634, -25.02822880475423], + [-48.298588351817536, -25.027911828483305], + [-48.298670862849846, -25.02773424806824], + [-48.29867388724302, -25.027688328474404], + [-48.298690497228655, -25.027436136701443], + [-48.298618651092504, -25.027333568409514], + [-48.298618511501076, -25.02733267184867], + [-48.2985637659491, -25.027254516473242], + [-48.29845215734616, -25.0269659558322], + [-48.29837592157321, -25.02685712024715], + [-48.29846209269699, -25.02651246276724], + [-48.29861218497437, -25.026240600409796], + [-48.29902580601778, -25.025901897120317], + [-48.29934372088279, -25.025662082700332], + [-48.29941185226915, -25.025610687268507], + [-48.29958656865789, -25.025410904895384], + [-48.29963265707612, -25.025101335336586], + [-48.29962452437903, -25.024874351291455], + [-48.29936648669477, -25.024690579087686], + [-48.298869551816225, -25.024645727552507], + [-48.298515672991215, -25.02459616929668], + [-48.2985152866425, -25.024595830909686], + [-48.29847798870835, -25.024590607557094], + [-48.298271036717836, -25.0244674559571], + [-48.29818111330734, -25.02430314122136], + [-48.298180236026255, -25.024302372841646], + [-48.298132125092074, -25.024214460692697], + [-48.29782457642032, -25.023898459384977], + [-48.2976713256901, -25.02371659055208], + [-48.29734492806178, -25.02366289766782], + [-48.297095024746284, -25.02370610575965], + [-48.29648703474608, -25.023945755334363], + [-48.296079957528285, -25.023986101093804], + [-48.29566161425296, -25.023942669573348], + [-48.29545806965381, -25.023664373306026], + [-48.295268670568696, -25.023338579458745], + [-48.29511385404273, -25.02322831210688], + [-48.29483559701525, -25.023378338765696], + [-48.29452634847373, -25.023742670951876], + [-48.29452613703706, -25.023742793896133], + [-48.294526037350344, -25.023742911338548], + [-48.29420750269864, -25.023928129107908], + [-48.29364272881851, -25.023989473057107], + [-48.29328719574391, -25.02407845095441], + [-48.29308271365221, -25.02444463604337], + [-48.293007270103956, -25.02489693381216], + [-48.29284040228912, -25.0253356265875], + [-48.292543077531136, -25.02574806383778], + [-48.29213493926951, -25.02643307141719], + [-48.29197670845351, -25.027074878894734], + [-48.2920390477766, -25.027816217345233], + [-48.292087614292, -25.02827693073627], + [-48.29209326891694, -25.028330571720257], + [-48.29202201156406, -25.028591924886655], + [-48.291900170543514, -25.02880326625552], + [-48.29188256010083, -25.02883381266635], + [-48.29187342069882, -25.028849665521445], + [-48.291836107292326, -25.028914387867676], + [-48.291833262362466, -25.02891932256608], + [-48.29183158624569, -25.02892222988902], + [-48.29183129655129, -25.028922732381], + [-48.29183119586526, -25.028922796765563], + [-48.291830984778606, -25.028922948173634], + [-48.291086742443824, -25.0293988661857], + [-48.29007931310751, -25.02992961019119], + [-48.289759108553326, -25.030198195090495], + [-48.28954376216279, -25.030456917222633], + [-48.28954426702583, -25.031029985045212], + [-48.28956021126393, -25.03209282216151], + [-48.28960316006756, -25.032523399884983], + [-48.28962550325141, -25.032572084553454], + [-48.289840752895905, -25.033041100747067], + [-48.28997565630978, -25.033461417745936], + [-48.28995178822086, -25.033580959915053], + [-48.28990202922348, -25.033830174487633], + [-48.289693214923126, -25.0343874834898], + [-48.28962168538333, -25.0346607685077], + [-48.28959625321114, -25.03522142401064], + [-48.289556671827086, -25.03582957605365], + [-48.289429070535256, -25.036268979439306], + [-48.289342340200676, -25.036637496396914], + [-48.28935777763999, -25.037127265406806], + [-48.2895290930299, -25.037679573297797], + [-48.28967657318037, -25.03812399759948], + [-48.28973130943569, -25.038614483902368], + [-48.28972695672984, -25.038647453685723], + [-48.289684138086855, -25.038971784271677], + [-48.2894024900425, -25.03926511084472], + [-48.28909805456234, -25.03940281754329], + [-48.288997715329614, -25.039409678413342], + [-48.288997552835625, -25.039409848255254], + [-48.28882214763231, -25.039421841668904], + [-48.28838754795304, -25.039521343261317], + [-48.287988778412874, -25.039788477038194], + [-48.287705548652845, -25.04015340326106], + [-48.287557763560045, -25.040462617839932], + [-48.28751322547745, -25.04055580565004], + [-48.287179170650795, -25.040848169959837], + [-48.286811070712446, -25.040901137471185], + [-48.28629471164781, -25.0405454789897], + [-48.28619882454761, -25.040356642156517], + [-48.28619828459208, -25.04035631452526], + [-48.28605578736443, -25.0400756839025], + [-48.285594461992844, -25.03960164398911], + [-48.28520339377886, -25.039594494278145], + [-48.28509668841268, -25.039592543256703], + [-48.284743404314085, -25.039365537049672], + [-48.28474209534839, -25.039364339042848], + [-48.28414076672269, -25.03897794601233], + [-48.28408440018839, -25.038910402818555], + [-48.283604538149, -25.038335387550127], + [-48.28357619352695, -25.038297255739536], + [-48.28357491496019, -25.038296085526103], + [-48.28344765547097, -25.038124883783226], + [-48.28308245783279, -25.03763358167923], + [-48.28292111504361, -25.03722471623451], + [-48.282625362888794, -25.03696859316143], + [-48.28230157206997, -25.036795526786342], + [-48.28183553608403, -25.03653628571724], + [-48.280945926001, -25.035875313622995], + [-48.28026511621787, -25.03525397691646], + [-48.27948821537427, -25.034236903121442], + [-48.27921972852321, -25.033933519181407], + [-48.27874377299328, -25.033530824444117], + [-48.27822043278083, -25.032900426510707], + [-48.27821399729715, -25.032004913457587], + [-48.2782394791089, -25.03144426613832], + [-48.278290366625406, -25.03091990015784], + [-48.27835013652705, -25.030586714557998], + [-48.278539834689866, -25.03030366418098], + [-48.27876961679405, -25.029985532067453], + [-48.27847362658238, -25.0297413364905], + [-48.27789783365935, -25.029706907348793], + [-48.2765315716047, -25.02867901849478], + [-48.27647038131659, -25.027889949158297], + [-48.276611113580685, -25.027450801544397], + [-48.276618820395356, -25.027101869047815], + [-48.27662297458109, -25.026913782090208], + [-48.27660125965964, -25.026710427782977], + [-48.276533742849196, -25.02620776873135], + [-48.27660036650312, -25.025564305926384], + [-48.276622768493525, -25.024549935599488], + [-48.27669748033566, -25.024133454246115], + [-48.27695502988853, -25.02374420176482], + [-48.27695515156626, -25.023744149092032], + [-48.276955271890955, -25.023743967236097], + [-48.27724631687336, -25.02361797683171], + [-48.27765629314477, -25.023446410736973], + [-48.277986532387665, -25.023321175642458], + [-48.278161918661965, -25.02308581942411], + [-48.27832830601838, -25.02267101645948], + [-48.27857255540987, -25.021696524659], + [-48.278586511288786, -25.021064033587], + [-48.278331482177286, -25.020152026691445], + [-48.278113640720036, -25.01933620980717], + [-48.27797562997945, -25.01905909310356], + [-48.27780122575654, -25.018649984673594], + [-48.27759190649771, -25.01826108385506], + [-48.27738588232122, -25.01787830265111], + [-48.277236094732416, -25.01754127654816], + [-48.27709914129632, -25.017216424177533], + [-48.27683983888679, -25.017092285704276], + [-48.2765538165239, -25.016991534263123], + [-48.27570489620326, -25.01686852361112], + [-48.27535233732104, -25.016814304330193], + [-48.27519912986557, -25.016632415705853], + [-48.27485553503639, -25.016172447303482], + [-48.27464264557946, -25.015726814367696], + [-48.274361901620345, -25.015387383876767], + [-48.2739873736649, -25.01514174115056], + [-48.27363429337396, -25.015111385778972], + [-48.27314760998172, -25.015197963667283], + [-48.272795585152615, -25.015119871332104], + [-48.272473183791256, -25.01488712034317], + [-48.27218278151869, -25.014392307306217], + [-48.271947933566345, -25.013755250786065], + [-48.27184009314267, -25.01329960465306], + [-48.271694019895484, -25.01279550217775], + [-48.27150295161522, -25.011956293095558], + [-48.27137964254153, -25.011607809975732], + [-48.27146903895944, -25.011119969519545], + [-48.27151571589289, -25.01078654617471], + [-48.27160511085448, -25.010298705458442], + [-48.2716688406517, -25.009786516242574], + [-48.27160424879014, -25.009152585234165], + [-48.27161612169091, -25.008615566738946], + [-48.27189624175679, -25.00779694638088], + [-48.2720916278394, -25.007274052402494], + [-48.272188661996786, -25.007014366717485], + [-48.27250674192381, -25.00625613427076], + [-48.272750901559185, -25.005878579640715], + [-48.2729547183221, -25.005548038670206], + [-48.273029160619785, -25.005143492045743], + [-48.27294592937002, -25.004759929694785], + [-48.27252142625589, -25.004405920953868], + [-48.27214587860293, -25.00420801144321], + [-48.27167866458501, -25.004008418422114], + [-48.271305757787324, -25.003691169477577], + [-48.27086061340206, -25.003086067175232], + [-48.27080015021957, -25.00285812377152], + [-48.27087459695265, -25.00245357855869], + [-48.27104598553665, -25.001812041240772], + [-48.271081936616355, -25.001370973296872], + [-48.2710118079238, -25.00098765078676], + [-48.27082461593106, -25.00056636328499], + [-48.27062406628121, -25.000156768899387], + [-48.27042035167385, -24.99989037932519], + [-48.26991802460675, -24.999498633180586], + [-48.269917989787984, -24.999498606026606], + [-48.2696991760847, -24.999327960138267], + [-48.26945486063943, -24.99912051666931], + [-48.269511462836, -24.998930538946095], + [-48.26951160547623, -24.998930414089777], + [-48.26951166555687, -24.99893021243635], + [-48.26983215388639, -24.998649680351974], + [-48.26991565443363, -24.99842460314644], + [-48.26996127172193, -24.998138914735154], + [-48.26992982988636, -24.997942687033287], + [-48.26991528627768, -24.997932418725792], + [-48.26991522576338, -24.997851542923467], + [-48.26963585089958, -24.997452438594635], + [-48.26936587755729, -24.997220646767108], + [-48.26888559961809, -24.997020806928976], + [-48.26805150571977, -24.996826402659195], + [-48.26725185695641, -24.996811705689172], + [-48.266650386881665, -24.99680064826661], + [-48.26640343966786, -24.996712537713773], + [-48.26617513599552, -24.996374059651455], + [-48.266175354210795, -24.996373768493676], + [-48.26617532455128, -24.996373724521067], + [-48.26640480103528, -24.996067540068598], + [-48.26672673028704, -24.995727239093387], + [-48.26676107912785, -24.99567437325604], + [-48.266902826218015, -24.99545621160462], + [-48.26667295470989, -24.995189355911], + [-48.26602616191465, -24.994819306119762], + [-48.264914443345184, -24.99355724776243], + [-48.26462173546385, -24.99316982884033], + [-48.26425827160895, -24.993019878733236], + [-48.263576054778795, -24.993067017098202], + [-48.2630883983721, -24.99320130377868], + [-48.26243858495873, -24.993559435543816], + [-48.261978142923425, -24.994243233179976], + [-48.26172663370367, -24.994954730798167], + [-48.26145719766576, -24.995880977758926], + [-48.26127958410827, -24.996922146524668], + [-48.261011643312706, -24.997288302028537], + [-48.261011302219025, -24.997288768148618], + [-48.260473191729126, -24.997713659589763], + [-48.25965020317784, -24.998199909221405], + [-48.25920207178246, -24.99832297146297], + [-48.25895539315769, -24.99822291507552], + [-48.25872392926031, -24.998027630744932], + [-48.258484671019154, -24.997593431975172], + [-48.25820560084118, -24.997182375670075], + [-48.257771784224396, -24.99666101801556], + [-48.25728002704833, -24.996389299113964], + [-48.25687569101364, -24.99631020795049], + [-48.25620787678869, -24.996297884206157], + [-48.255617037923415, -24.99635860945258], + [-48.25541260828173, -24.996443438242586], + [-48.25541268751541, -24.996443134780904], + [-48.25528664069352, -24.9964954381859], + [-48.25505253229287, -24.99641948462548], + [-48.25505571573495, -24.996276280901984], + [-48.25540890286922, -24.995709751386723], + [-48.25563999428263, -24.995331983809226], + [-48.255742357324046, -24.99518049688784], + [-48.25604634837949, -24.994730618096376], + [-48.25631718741449, -24.99432979759453], + [-48.25659674618753, -24.993535326598703], + [-48.2566393043932, -24.993418447011624], + [-48.25663936124872, -24.99341835912921], + [-48.25677825345243, -24.993036910688183], + [-48.257173619818374, -24.992339829650476], + [-48.257548202769506, -24.991988582229798], + [-48.25794738174856, -24.991709418695265], + [-48.25849085737467, -24.991420975975633], + [-48.258811573992794, -24.991310860808976], + [-48.258952853710724, -24.99126235339693], + [-48.259378219161874, -24.990983669833415], + [-48.2594881024524, -24.990747279378812], + [-48.25941615943138, -24.990447490064565], + [-48.25913445148578, -24.990155772785382], + [-48.2582117954971, -24.98939449369137], + [-48.25821189324764, -24.989394087913993], + [-48.257758211443466, -24.989019752277443], + [-48.25758178854328, -24.98870609592572], + [-48.25760230073527, -24.988372194294815], + [-48.257645290744314, -24.988205847144304], + [-48.25795359611534, -24.987889191059757], + [-48.25857614494861, -24.98757832766233], + [-48.258979013800136, -24.987132088062992], + [-48.25911009437873, -24.986537575070177], + [-48.25909534673226, -24.986421523045372], + [-48.25909510946072, -24.98642125937095], + [-48.25909051692633, -24.98638511969894], + [-48.25907648266445, -24.986274680899804], + [-48.25892386385563, -24.986068912758665], + [-48.25847380698248, -24.985690522002017], + [-48.25828508822269, -24.985340825395337], + [-48.258055236727486, -24.985073939956806], + [-48.257733204095906, -24.98482923153096], + [-48.257451247004624, -24.98454944596028], + [-48.257314600895576, -24.984442578834962], + [-48.25731310043158, -24.984440911334698], + [-48.25701364601157, -24.984206715519214], + [-48.256477247950414, -24.983587954371664], + [-48.25617016921577, -24.983259948056038], + [-48.255836110919624, -24.982967259127978], + [-48.25572011770154, -24.98267056120482], + [-48.25571960151999, -24.98266998753979], + [-48.25569963265378, -24.98261890917173], + [-48.25561328347247, -24.98237854546556], + [-48.255266137369034, -24.982085614948957], + [-48.255059832772105, -24.981938545296813], + [-48.254614940862545, -24.981918395168282], + [-48.254140153111216, -24.982012213563614], + [-48.254140051060084, -24.982011874662028], + [-48.254062524209196, -24.98202719388692], + [-48.2536550526087, -24.982091301716387], + [-48.25351368322947, -24.981969305704368], + [-48.25355472329029, -24.98130150469054], + [-48.25355256183364, -24.98110523577734], + [-48.25355242396585, -24.98110515381025], + [-48.25355025108067, -24.980907842168122], + [-48.253295558825315, -24.9805807992304], + [-48.25297062921149, -24.98046735180235], + [-48.25266594373988, -24.980336296367586], + [-48.25266419734392, -24.980335098041564], + [-48.25247774649886, -24.98025489893685], + [-48.25215440954539, -24.980069847651944], + [-48.25200287046226, -24.97981633860688], + [-48.25200658578888, -24.979649267640188], + [-48.252137953035394, -24.979042828791986], + [-48.2522786964421, -24.978603702593208], + [-48.252316139897424, -24.978414369605684], + [-48.252316094916544, -24.978414355198492], + [-48.252333853419934, -24.978324559167643], + [-48.25235039522012, -24.97816966419578], + [-48.25214489662885, -24.9779867904867], + [-48.25180847478062, -24.977801497717515], + [-48.25156157736349, -24.97771336643295], + [-48.25085804059371, -24.9775451648431], + [-48.25045244344164, -24.977525729562494], + [-48.25004286331825, -24.977685296852826], + [-48.24960630071187, -24.977880179470432], + [-48.249340012686275, -24.97807815258668], + [-48.24929147854792, -24.978494759231257], + [-48.24935356468244, -24.979236096083618], + [-48.24939291906918, -24.979821811641433], + [-48.249369200929145, -24.980298914087935], + [-48.24936908505237, -24.980299304825603], + [-48.24921242171833, -24.980869062108205], + [-48.249212404955315, -24.980869123072026], + [-48.24921231437864, -24.98086945248188], + [-48.249032544805765, -24.981295912735675], + [-48.248781038199844, -24.98200726890554], + [-48.24873087369214, -24.9824957342437], + [-48.24882578510906, -24.982939215183443], + [-48.2489500717143, -24.98323997720819], + [-48.248983239188256, -24.983515176660507], + [-48.24911822827533, -24.983923583230784], + [-48.24914980189218, -24.984270384327914], + [-48.24910467685733, -24.984532197071985], + [-48.24910460377341, -24.984532319397704], + [-48.24910456030694, -24.984532571586424], + [-48.24891408234739, -24.984851386799182], + [-48.24852454855533, -24.98528590366062], + [-48.24796586398561, -24.985669535226318], + [-48.247366300920824, -24.986124038534275], + [-48.24699384010621, -24.986379789828558], + [-48.24651397170778, -24.986752935856746], + [-48.24613751672224, -24.987187687531065], + [-48.24601127215396, -24.98756705037048], + [-48.24606476347446, -24.988105239004977], + [-48.24608994290403, -24.988738445520784], + [-48.24602745815191, -24.989190951060078], + [-48.246027384820735, -24.98919106787981], + [-48.246027351830925, -24.989191306785223], + [-48.24586437549705, -24.9894509340632], + [-48.24522896510277, -24.9897495630661], + [-48.24466407793121, -24.989822665684336], + [-48.24377264980497, -24.98985389824004], + [-48.24322085545479, -24.98992723796132], + [-48.24275512121145, -24.990252878361403], + [-48.24248152612424, -24.990773095332433], + [-48.24218333996296, -24.991221224955684], + [-48.241756346228776, -24.99157145706047], + [-48.24096379120022, -24.991867151069254], + [-48.24087289820529, -24.99189947013477], + [-48.24087209922421, -24.9918997542303], + [-48.24019795361158, -24.992139459643592], + [-48.24010190783655, -24.992177953887367], + [-48.24010165426148, -24.992178055517783], + [-48.23982786075673, -24.992287788889456], + [-48.23946499237449, -24.992698896108262], + [-48.238870434195285, -24.992926623720518], + [-48.23816069808138, -24.993032825365425], + [-48.23771363892773, -24.99310808890181], + [-48.2371444629827, -24.99337209595981], + [-48.236474814726066, -24.994028199699056], + [-48.235618637601824, -24.994824092204244], + [-48.235357940243915, -24.9953562411122], + [-48.23566975349712, -24.996054367680745], + [-48.23586082360266, -24.99629668867592], + [-48.23586496539024, -24.99629944732007], + [-48.236248041067455, -24.9965545944914], + [-48.236465301626446, -24.996797401714637], + [-48.23652035673232, -24.99726402357014], + [-48.23648829203582, -24.997526072784034], + [-48.23648823196216, -24.997526294858133], + [-48.2364882198877, -24.997526393536354], + [-48.236368750949666, -24.997968031471004], + [-48.23635968665827, -24.998001539057817], + [-48.23590994030931, -24.998781109731688], + [-48.235641639023804, -24.999062641494106], + [-48.23537360372507, -24.999332239239056], + [-48.23486906425359, -24.999633252317523], + [-48.23439178082023, -24.999887017185216], + [-48.23398557639289, -25.000476376983972], + [-48.23371538728795, -25.000550542072286], + [-48.23345055373464, -25.000676935171835], + [-48.23309699946707, -25.000670354471826], + [-48.23283751490628, -25.00055807903159], + [-48.232825222762386, -25.000522035161257], + [-48.232618384591234, -25.000398801052953], + [-48.232515768194965, -25.000301383808935], + [-48.23231026835374, -25.000118482532553], + [-48.232130690608244, -24.999948002019476], + [-48.231923586529696, -24.999836700459323], + [-48.231594886128896, -24.999890270835905], + [-48.231236517239715, -25.000098486294707], + [-48.23093079303139, -25.000295743147532], + [-48.23063869781546, -25.00046937654009], + [-48.2304401378349, -25.00056118377382], + [-48.2301913412438, -25.00055654798346], + [-48.23000882076647, -25.00051733185535], + [-48.229878410812375, -25.000491024954606], + [-48.22946259921877, -25.00034001550358], + [-48.22932016640333, -25.00026573075695], + [-48.22904732440526, -25.000165138300957], + [-48.22885171052244, -25.0001256767327], + [-48.2285911601255, -25.000061127586893], + [-48.228199665284095, -24.999994136363213], + [-48.22793938643518, -24.99992965325421], + [-48.2280655452867, -25.000134586512193], + [-48.228385407324346, -25.00047482498506], + [-48.228499533253924, -25.0005562494643], + [-48.22861547439223, -25.0006613753183], + [-48.22887599811329, -25.00094408926092], + [-48.229338876118504, -25.001529187503927], + [-48.22985923662508, -25.002094690305103], + [-48.23057698069806, -25.003109487593917], + [-48.23079243721737, -25.003393073632985], + [-48.23104277325381, -25.003640399946725], + [-48.23170193573403, -25.004587863365362], + [-48.23196907076799, -25.004916448980456], + [-48.232130938819175, -25.005081719882003], + [-48.232418469205314, -25.00548567632276], + [-48.232608451792366, -25.00569117712187], + [-48.232847274139154, -25.005895872405603], + [-48.23319296235793, -25.006139736863105], + [-48.23389481202826, -25.00671266723088], + [-48.23400752097718, -25.00695508146312], + [-48.23400740976764, -25.00695526870426], + [-48.23400745475731, -25.006955365467917], + [-48.23389877913267, -25.007138339822962], + [-48.23361713656029, -25.007328472376685], + [-48.23318697535862, -25.007570436074147], + [-48.23259135919361, -25.007652295742297], + [-48.232260949066614, -25.007641179361283], + [-48.231976842617435, -25.007649604846016], + [-48.23167520624377, -25.00768459545391], + [-48.231346093108634, -25.007677471841514], + [-48.23098660384206, -25.00764713072906], + [-48.23075857535852, -25.007747021451053], + [-48.230642603211386, -25.007937166705414], + [-48.23059105163458, -25.008133836635118], + [-48.23050854841716, -25.00859073314534], + [-48.2305085002911, -25.00859099966237], + [-48.23041988028897, -25.008819917075805], + [-48.23032208823711, -25.008995087036183], + [-48.230321982393626, -25.008995095759857], + [-48.230293436015785, -25.009046229366273], + [-48.23016158836439, -25.00924203495409], + [-48.22986092209204, -25.009401213692193], + [-48.22942597832585, -25.009379117947805], + [-48.229020814182206, -25.009226002595383], + [-48.22872580769333, -25.009049311571047], + [-48.22844644369257, -25.008819939402795], + [-48.228039452308394, -25.008395608833098], + [-48.227497650948436, -25.008122625846656], + [-48.2272742450835, -25.00804743707175], + [-48.22706767076583, -25.007901902250786], + [-48.22674350098479, -25.007595436364472], + [-48.22664980627016, -25.00749058139647], + [-48.22664957713871, -25.00749064639251], + [-48.22657412391461, -25.00740620547636], + [-48.22620674359208, -25.006916373526167], + [-48.22598942809681, -25.006869993879288], + [-48.22575530874982, -25.007046920016542], + [-48.22550324591221, -25.0072687219911], + [-48.22517426765179, -25.00745831489264], + [-48.22495057865306, -25.007607278814202], + [-48.224390783008495, -25.007844358500765], + [-48.22416799608596, -25.00802799091761], + [-48.22391739663309, -25.008153709532948], + [-48.22368119932975, -25.008171857636384], + [-48.22338132473872, -25.00812844378039], + [-48.223076141738765, -25.00815811635953], + [-48.22290977496512, -25.008361977889372], + [-48.22292346655371, -25.008610891069672], + [-48.22297868364441, -25.008859186577457], + [-48.223109481631845, -25.00909337273601], + [-48.22328795797537, -25.0092947893163], + [-48.22352382527632, -25.009449900789868], + [-48.223782633256405, -25.009558153531927], + [-48.22385263382761, -25.009566780122043], + [-48.224034661553034, -25.009589212331868], + [-48.22434162444896, -25.00958628272137], + [-48.22467596560398, -25.009620953405108], + [-48.224881661081014, -25.0097835309539], + [-48.22496479438903, -25.00992567195915], + [-48.22527227531975, -25.01045139870309], + [-48.225643827951544, -25.01089691360719], + [-48.22620125248444, -25.011338677979623], + [-48.22632555189883, -25.011523107221414], + [-48.22646843500674, -25.011964622799013], + [-48.226555423671705, -25.01214799452726], + [-48.22674177995819, -25.012360564215708], + [-48.22709656525846, -25.012569959805923], + [-48.227497393619494, -25.01277534064449], + [-48.227544469901524, -25.01280342475069], + [-48.227825941322685, -25.012971340459245], + [-48.228373425709506, -25.01325679283643], + [-48.22837944642551, -25.01326057973606], + [-48.22878211017263, -25.01351384545839], + [-48.22931338513002, -25.013925963537822], + [-48.22973841513896, -25.014196223256448], + [-48.23008638005108, -25.014486506296837], + [-48.23026210890555, -25.01463310393198], + [-48.23064312045045, -25.01512183018906], + [-48.23079637809221, -25.015243175046916], + [-48.23100017975654, -25.01528352144388], + [-48.23119237269637, -25.015285117661787], + [-48.23138754788632, -25.0153259345173], + [-48.231734691961414, -25.015470563957695], + [-48.23190976944559, -25.01555583021036], + [-48.232121531103, -25.015680014720132], + [-48.23239684382087, -25.01584146745675], + [-48.23238461428001, -25.01585878258709], + [-48.232242758273756, -25.016410341146734], + [-48.232255218371726, -25.01659214031995], + [-48.232319915634065, -25.01678962318954], + [-48.2325314104093, -25.017197939942452], + [-48.23268626584715, -25.017451337854734], + [-48.23283978802242, -25.01760084151857], + [-48.23319882150904, -25.017820681131642], + [-48.233248790894244, -25.017863330597304], + [-48.23328423784993, -25.017893584969812], + [-48.23331145061146, -25.017916811350638], + [-48.233342334084014, -25.017966117499995], + [-48.23330528096867, -25.017999609331564], + [-48.2333053353366, -25.017999740489724], + [-48.233254421152935, -25.018045761085652], + [-48.232975481517386, -25.01809209459734], + [-48.23187833293367, -25.0181321190555], + [-48.231629098892185, -25.018156623383824], + [-48.231412305140026, -25.018227213900833], + [-48.231242738072275, -25.018351385669117], + [-48.23110970655432, -25.018475967395165], + [-48.23095357445164, -25.01871192852791], + [-48.23087023204166, -25.018925963703953], + [-48.23082338935569, -25.019144050024455], + [-48.23076534997409, -25.01959887460751], + [-48.23076529136277, -25.019599109383982], + [-48.23071935169206, -25.01980349844591], + [-48.230719340422375, -25.01980354858555], + [-48.23071929886236, -25.01980373348874], + [-48.2306572274404, -25.019983421730164], + [-48.230553133046456, -25.020146804885652], + [-48.23041736375732, -25.02026086666443], + [-48.229892241289065, -25.020323269636965], + [-48.22969019451767, -25.020411729491588], + [-48.229615380183375, -25.020583893513944], + [-48.22973808754702, -25.02128449327668], + [-48.229746190329394, -25.02162043650915], + [-48.229710127147655, -25.021889949898192], + [-48.229710085981615, -25.02189006927117], + [-48.22971007175401, -25.02189017559855], + [-48.2296225639804, -25.022143928795064], + [-48.22948366544314, -25.02232660536078], + [-48.2292896029086, -25.022456273454356], + [-48.22907288272344, -25.022562867852034], + [-48.228804645755105, -25.0226701252601], + [-48.22853696448402, -25.022580755085432], + [-48.227900912455254, -25.022070029223215], + [-48.22761207989712, -25.021903918083378], + [-48.227295480861855, -25.021823108320635], + [-48.22693032046532, -25.021831813861535], + [-48.22666925896958, -25.021884243956023], + [-48.22658199945778, -25.021915282487832], + [-48.22596610247842, -25.022261501567147], + [-48.2255577003788, -25.02243571189778], + [-48.22510909759541, -25.022508189479886], + [-48.22464993782748, -25.022618460203688], + [-48.224335360521415, -25.022755886635363], + [-48.22404141483258, -25.0229491063654], + [-48.22384444285378, -25.023132947798878], + [-48.22369499435803, -25.023352690965993], + [-48.22333819627055, -25.02377719717788], + [-48.22271489966305, -25.024332443444866], + [-48.222390210614286, -25.024672268869686], + [-48.22223391787186, -25.024769153541754], + [-48.22173654327525, -25.024895845753875], + [-48.22149689676648, -25.02505244458437], + [-48.22094289972807, -25.02557324294502], + [-48.22074824529342, -25.02579448300183], + [-48.22066605456194, -25.02593002213596], + [-48.220579654965576, -25.026151211946114], + [-48.220446326233244, -25.026397964273016], + [-48.220212955578724, -25.026618659457224], + [-48.219901391663576, -25.026692060252554], + [-48.219078318452624, -25.026521527094776], + [-48.21876003003118, -25.02650663359492], + [-48.218430529841235, -25.02653213816128], + [-48.21813719430202, -25.02657898459487], + [-48.21785997054582, -25.02665798745069], + [-48.217658764567766, -25.026734713916575], + [-48.21733349752299, -25.0269105472606], + [-48.217055003052636, -25.026922926567067], + [-48.216796995428886, -25.02696231042668], + [-48.216544698869235, -25.027051433656016], + [-48.216358210568806, -25.027151806550762], + [-48.21616074117727, -25.027317398407057], + [-48.216041081180144, -25.02756368030011], + [-48.21598445781334, -25.02780798525018], + [-48.215902978223845, -25.028341589200437], + [-48.2158761750595, -25.028660617212324], + [-48.215876168697584, -25.028660692935365], + [-48.21589445553421, -25.02888566103881], + [-48.21594052798656, -25.029069173873296], + [-48.215953999543665, -25.029231410244265], + [-48.21595398346683, -25.029231461291555], + [-48.21595399526248, -25.029231603346023], + [-48.21590438143514, -25.029389137096096], + [-48.21578486633268, -25.029523612296067], + [-48.2152536558301, -25.029954481749765], + [-48.215014497968724, -25.030051958678776], + [-48.215014228357305, -25.03005187928192], + [-48.21497954723198, -25.030066014721044], + [-48.214632950914975, -25.030027930381795], + [-48.21398519653261, -25.029748839536005], + [-48.21392008955441, -25.029720787386047], + [-48.21388097916914, -25.02970393617178], + [-48.21384463457811, -25.029682113605414], + [-48.21374132492562, -25.029620082782213], + [-48.21365338800203, -25.02956728219588], + [-48.21347612595084, -25.02940762386922], + [-48.21347425039537, -25.029406121300998], + [-48.21315416272307, -25.02911781947162], + [-48.2128954697434, -25.028801723215313], + [-48.212685623335055, -25.02848491891602], + [-48.21248271763259, -25.028277346278486], + [-48.21223108280676, -25.02806976114207], + [-48.21185154110146, -25.027833333962487], + [-48.2114392427735, -25.027626431448684], + [-48.21101247018865, -25.02752528940336], + [-48.210624278078875, -25.027491919872695], + [-48.21021407426028, -25.027490261731213], + [-48.20990019658353, -25.027521184156097], + [-48.20955088297401, -25.027669294976377], + [-48.209277296689464, -25.027941736126103], + [-48.20919668862715, -25.028264908718914], + [-48.20906475073306, -25.029560456227728], + [-48.209082920440586, -25.02984216085231], + [-48.2090829326305, -25.02984234984547], + [-48.20918410382925, -25.030381181675477], + [-48.20918411598222, -25.030381246401085], + [-48.20918413845939, -25.0303813661128], + [-48.2091805192333, -25.030781877941962], + [-48.20911129091447, -25.0312103948362], + [-48.20901654886157, -25.031562720012328], + [-48.20858287719324, -25.032588098928457], + [-48.20847913337739, -25.03297039480742], + [-48.208433945253766, -25.03331688273197], + [-48.208434335868766, -25.03359266639738], + [-48.208474461413644, -25.033844479529506], + [-48.208563390871014, -25.034042244857247], + [-48.208707275329566, -25.03421000077135], + [-48.20895050527222, -25.034355980555976], + [-48.209232265672966, -25.034462616962177], + [-48.20937610865585, -25.034632266593757], + [-48.20937612803226, -25.03463243691386], + [-48.20940452260296, -25.034851555327617], + [-48.2094045433004, -25.034851715047726], + [-48.20937381540531, -25.035342680166835], + [-48.20940842754376, -25.035580137774478], + [-48.20948210652865, -25.0358391605674], + [-48.20962365007914, -25.036075455182388], + [-48.20987010872818, -25.036293416805854], + [-48.21012239680298, -25.036455176954004], + [-48.21051164666413, -25.036766964109606], + [-48.21066137124833, -25.036930767315873], + [-48.21078109298464, -25.037089765465037], + [-48.21085105465609, -25.037259109034014], + [-48.2108510671557, -25.03725926986509], + [-48.21091546051441, -25.03766902386024], + [-48.21099554570583, -25.03788620311311], + [-48.21114856102024, -25.03807100374962], + [-48.211341090234455, -25.03819491149118], + [-48.21192659946076, -25.03832579402153], + [-48.21231993878495, -25.03841371819134], + [-48.21283171141509, -25.038638731947376], + [-48.21303961659284, -25.03869605735043], + [-48.21342841543863, -25.038695503511725], + [-48.21381693898529, -25.038658937112068], + [-48.21411529225722, -25.0386631816312], + [-48.21433216455755, -25.03879710812431], + [-48.214903327829916, -25.03943184298186], + [-48.215111738844314, -25.039703589068576], + [-48.21529288612828, -25.040024636925555], + [-48.215511865625295, -25.040490690371637], + [-48.215752584742646, -25.041283555049212], + [-48.2158254294461, -25.041825468113714], + [-48.21597054752615, -25.04234716867983], + [-48.21601146149935, -25.042596912395123], + [-48.21597940876168, -25.04277066527957], + [-48.21597941666936, -25.042770710244273], + [-48.21597047487241, -25.042819182109987], + [-48.21585590180086, -25.043028017501715], + [-48.21569979896224, -25.04323354712605], + [-48.215591840884436, -25.043527456383263], + [-48.2158109977935, -25.045006663479665], + [-48.21590934265554, -25.04574839823604], + [-48.21594126946102, -25.046137216095207], + [-48.21594125831139, -25.046137344897016], + [-48.21594268736426, -25.046450922546953], + [-48.21594268794558, -25.046451050111752], + [-48.21586436173557, -25.04711209711497], + [-48.21586434695736, -25.047112221837068], + [-48.21585175094892, -25.04771774188328], + [-48.21585174839199, -25.047717864799246], + [-48.21582793125069, -25.048035582964815], + [-48.215827922587124, -25.04803569853496], + [-48.215756357766544, -25.048247957040758], + [-48.21558204336648, -25.048465597664293], + [-48.21539066424371, -25.048644926394804], + [-48.21522034335272, -25.048874282533614], + [-48.21515227817789, -25.049274192326994], + [-48.21515225857783, -25.04927430748464], + [-48.215165993041246, -25.04998546130122], + [-48.21516599387531, -25.049985504488745], + [-48.21516599523746, -25.04998557501963], + [-48.21508869396125, -25.050289320122268], + [-48.214696027227184, -25.0509850204726], + [-48.21463264747377, -25.05146209134267], + [-48.21463263319966, -25.051462198785845], + [-48.21463540959935, -25.052119010112822], + [-48.214635410045666, -25.05211911569994], + [-48.21459338245906, -25.052414213669035], + [-48.214593367685694, -25.052414317400263], + [-48.214516034812604, -25.052688642765673], + [-48.214187905441584, -25.053355501813726], + [-48.214064091465254, -25.05390211393446], + [-48.2140563294858, -25.054424727965657], + [-48.21405632804914, -25.0544248246936], + [-48.2140046853371, -25.054672104644848], + [-48.21400466580323, -25.054672198178295], + [-48.21388484588881, -25.054919555465684], + [-48.21375890259145, -25.05509162691862], + [-48.21340944762534, -25.055404518821348], + [-48.21326876073564, -25.055593278209383], + [-48.21323425403294, -25.055910188030584], + [-48.21323424420579, -25.055910278282884], + [-48.213262035020264, -25.056257778397637], + [-48.21326204210867, -25.056257867032304], + [-48.21333899147666, -25.056780095303495], + [-48.213338986198025, -25.05678018276571], + [-48.2133586095774, -25.057046495997177], + [-48.21335861589489, -25.057046581733317], + [-48.21332879808694, -25.057313862013817], + [-48.21332878859795, -25.057313947070813], + [-48.21324111514492, -25.05753709090044], + [-48.212869937954494, -25.057920773055113], + [-48.21219019360246, -25.05836850401224], + [-48.211661624950004, -25.05861061580463], + [-48.2114871289214, -25.058830863439194], + [-48.21154380179382, -25.059175579912562], + [-48.2115438143131, -25.059175656061697], + [-48.21162680465991, -25.05945589876426], + [-48.21179741016884, -25.060240370745817], + [-48.21183597042445, -25.060439932785503], + [-48.212270018326485, -25.06224614398536], + [-48.21236829581429, -25.062836904508924], + [-48.2123682857133, -25.06283693162409], + [-48.21236829186878, -25.062836968625597], + [-48.212229050818536, -25.063210747111377], + [-48.21218479169756, -25.063389525139865], + [-48.21218477693496, -25.06338958477109], + [-48.21216232368675, -25.063554513444927], + [-48.212162315413124, -25.063554574217875], + [-48.21215865910009, -25.06383410157058], + [-48.21240597960185, -25.06402969873031], + [-48.2129411526656, -25.064376532771178], + [-48.213744501436366, -25.064763776035768], + [-48.21424251306994, -25.06497068757864], + [-48.214300238138385, -25.06499467077196], + [-48.21476201934156, -25.065257730505213], + [-48.215289177534274, -25.06563969070729], + [-48.215721639076634, -25.066147924614675], + [-48.2158830387674, -25.06636672051853], + [-48.21596760257352, -25.066526500466107], + [-48.216007333271456, -25.066671000487474], + [-48.216022661465864, -25.06703144133638], + [-48.215948397659005, -25.06757700051201], + [-48.21585096091792, -25.06794245421139], + [-48.21576926455769, -25.068343487557826], + [-48.21558894339351, -25.06977981302128], + [-48.21549337451188, -25.07012824567356], + [-48.215425948064926, -25.070283819403766], + [-48.21532981482843, -25.07043822249738], + [-48.21519509239341, -25.070585945205195], + [-48.21506253495859, -25.070703658053656], + [-48.21487726171221, -25.07083472939974], + [-48.214729934723934, -25.070935199245827], + [-48.21449290097084, -25.07105644832129], + [-48.214492887111135, -25.071056481013926], + [-48.21391957424661, -25.071349742916297], + [-48.21362721595262, -25.07151922854092], + [-48.21331518752961, -25.071760987861122], + [-48.21317171900888, -25.071915018231024], + [-48.21317169828364, -25.07191504048198], + [-48.21307225033276, -25.072058885338723], + [-48.213072232837725, -25.07205891064412], + [-48.21302402887466, -25.07215796388405], + [-48.213024015409594, -25.07215799155312], + [-48.212974631121426, -25.072370093282338], + [-48.213055246921996, -25.07257744860694], + [-48.2132066362805, -25.07273523694022], + [-48.213386042909534, -25.072889671073465], + [-48.213819942169515, -25.073159575307084], + [-48.21387056334235, -25.07319106372815], + [-48.21430430736561, -25.07349023798962], + [-48.21451157125083, -25.073679124792175], + [-48.21465176823306, -25.0738543889325], + [-48.21476274153711, -25.074051303551926], + [-48.214825387465766, -25.074229623395176], + [-48.21483942100939, -25.074299524568495], + [-48.214866614296916, -25.07443497434168], + [-48.21488798614431, -25.07465953482971], + [-48.2149395399831, -25.074881413347114], + [-48.21504079221951, -25.075096374030338], + [-48.21517772409195, -25.07528466148417], + [-48.21552389470323, -25.075675497999434], + [-48.21593191557199, -25.07606108766428], + [-48.21593752423529, -25.07606550168411], + [-48.21608767633705, -25.076183671250174], + [-48.21612897896794, -25.076237888830235], + [-48.216174087299436, -25.07629710205537], + [-48.216192030436595, -25.076353884537994], + [-48.216232894012045, -25.076483200397124], + [-48.21624305465765, -25.076642527012893], + [-48.216247667272405, -25.07671485627861], + [-48.2162243196467, -25.076980359084917], + [-48.21611629563073, -25.077401117058084], + [-48.21586492558791, -25.077597633495174], + [-48.21555260106503, -25.077698799337767], + [-48.21518209417, -25.07773940229136], + [-48.21414315488876, -25.077731984089073], + [-48.21385771392136, -25.07775721292782], + [-48.213624358980894, -25.077792624666102], + [-48.21328011168048, -25.077876848091844], + [-48.21309641062574, -25.077907327457087], + [-48.21290542976989, -25.07797484713796], + [-48.21270667530003, -25.078096548971594], + [-48.212582235576946, -25.078235978391625], + [-48.212307201116545, -25.07867641757189], + [-48.21217082388504, -25.07886597650699], + [-48.211963994277426, -25.079059986235148], + [-48.21154057981091, -25.079310023753955], + [-48.21133885591673, -25.079405495441037], + [-48.2110700528994, -25.079483371806795], + [-48.21071155958959, -25.079531405712245], + [-48.210203001281805, -25.079647093761707], + [-48.210041960506885, -25.07972248329296], + [-48.20998456955686, -25.079876256444013], + [-48.20996387751075, -25.080089556863346], + [-48.20997503751133, -25.08028775468173], + [-48.21003220487542, -25.080545745107926], + [-48.21013124604334, -25.080827354180567], + [-48.210295744026716, -25.08106705959436], + [-48.210525399350374, -25.081251860846898], + [-48.21079647872863, -25.081414610056846], + [-48.211141833497514, -25.081559486092267], + [-48.211481933978284, -25.081702157976416], + [-48.21221204400394, -25.082008435334036], + [-48.2123245611821, -25.082055634982474], + [-48.21244286153817, -25.082114998360286], + [-48.21285666184134, -25.08232264311144], + [-48.213080834914685, -25.08246546650917], + [-48.21314056447687, -25.08262355874176], + [-48.21315720308196, -25.08266759251501], + [-48.21298928904643, -25.082915312245966], + [-48.21237449685956, -25.083279971185554], + [-48.21224891781627, -25.083464492973718], + [-48.21228013834427, -25.083853296414418], + [-48.2124540725493, -25.084555931844072], + [-48.21238262217053, -25.084823154934238], + [-48.212181132319195, -25.08499966840071], + [-48.2119042726518, -25.085209416938813], + [-48.21150657603877, -25.08565269213566], + [-48.210881749465, -25.086166232834422], + [-48.21065268125281, -25.086422539553045], + [-48.21037870265892, -25.08688068192587], + [-48.21020072035761, -25.087034081634442], + [-48.20999594534709, -25.087136712788556], + [-48.209811384204464, -25.087204439851348], + [-48.20940526261237, -25.087297866605425], + [-48.20924540454493, -25.087381759772423], + [-48.20910692984186, -25.087505851448743], + [-48.20901614058291, -25.08764199923081], + [-48.20901612899564, -25.087642025948355], + [-48.20895402867967, -25.087785214761002], + [-48.208954021908596, -25.08778524516024], + [-48.20888749517081, -25.088083921543653], + [-48.20888748473951, -25.088083951274193], + [-48.208836004558314, -25.088230675861872], + [-48.208836005040475, -25.088230709383776], + [-48.208696668882226, -25.088392685457737], + [-48.208453087608945, -25.088497832312335], + [-48.2081594393151, -25.088564766575146], + [-48.20776283613276, -25.088710075585006], + [-48.20740163328144, -25.088871752109227], + [-48.20708624230159, -25.089106212519724], + [-48.20687236957555, -25.08935169904611], + [-48.206697816135204, -25.089607090902003], + [-48.20669779726601, -25.089607125105363], + [-48.206531524914816, -25.08990851884637], + [-48.20653150840274, -25.08990855637033], + [-48.20629140660289, -25.090454189496224], + [-48.206291398006755, -25.090454232324], + [-48.20609787544112, -25.090719773329266], + [-48.20567269139019, -25.091106292057155], + [-48.20532693615723, -25.091315991251737], + [-48.20503126207969, -25.091471677251384], + [-48.20479793306999, -25.091626733243558], + [-48.20450063037532, -25.092071879023166], + [-48.20414618900104, -25.092498388152055], + [-48.20414616280395, -25.092498434803826], + [-48.20403547339487, -25.092695550379783], + [-48.204035455900716, -25.092695602213475], + [-48.20395833059131, -25.092924117580413], + [-48.20395831384989, -25.092924170577046], + [-48.20382119398345, -25.093145019829574], + [-48.20358902611097, -25.093283671704405], + [-48.20333996283822, -25.093407024560374], + [-48.20313796623784, -25.09354362785706], + [-48.20292839526815, -25.093760492205416], + [-48.20277309694303, -25.093992097989116], + [-48.20271386406973, -25.094222296880666], + [-48.20268709725398, -25.094449196817877], + [-48.20272843989353, -25.094648685618164], + [-48.202826007197196, -25.09483353364769], + [-48.20295824362334, -25.09497987156643], + [-48.20336828904617, -25.095311931101268], + [-48.204331612836654, -25.096602217907908], + [-48.204504301822475, -25.096861125206523], + [-48.20472063644788, -25.09724024313129], + [-48.20498266562527, -25.09774538561668], + [-48.20529731535084, -25.098472969340133], + [-48.20534189260211, -25.098656816920677], + [-48.205341881648756, -25.09865689095496], + [-48.20530699684167, -25.098892678462846], + [-48.20530698784593, -25.09889275364896], + [-48.20511893496917, -25.099108762988347], + [-48.204888365384875, -25.099303034440187], + [-48.20373251544931, -25.10015322629873], + [-48.20297328969777, -25.100762732454157], + [-48.202392224191925, -25.101155500962168], + [-48.20143081394059, -25.101725807476143], + [-48.20059552212358, -25.102367162157094], + [-48.200318951169024, -25.102531138300144], + [-48.20006436895641, -25.10264779220741], + [-48.19978634570599, -25.10271888263608], + [-48.199092802849215, -25.10281920890613], + [-48.19878359827612, -25.102906041562076], + [-48.19815142428419, -25.103209570855018], + [-48.19792742517378, -25.103336544977573], + [-48.197595090956746, -25.103611810198917], + [-48.19707811795984, -25.104117484792354], + [-48.19640207662052, -25.104666531461127], + [-48.19615483517912, -25.104804252610112], + [-48.19557780389449, -25.10507930455191], + [-48.19521736851522, -25.10530439992838], + [-48.19505796409635, -25.1054581296456], + [-48.194649390229465, -25.105929298733862], + [-48.1945678142115, -25.106105421742583], + [-48.19456334435617, -25.106296823971437], + [-48.19458870784676, -25.106501155354316], + [-48.19471561778784, -25.107002312102424], + [-48.1947307130685, -25.1070877630983], + [-48.19475616437038, -25.10723183701306], + [-48.1948728683542, -25.107615759727068], + [-48.19487954761138, -25.10776162310362], + [-48.19487949993893, -25.10776170490838], + [-48.19487950133937, -25.10776173549144], + [-48.19476954291948, -25.1079504210857], + [-48.194617834958564, -25.108114131869712], + [-48.19452536550215, -25.10820205692902], + [-48.1942479556644, -25.108465832323102], + [-48.194098202888334, -25.108671308379364], + [-48.19405691079352, -25.108904452707893], + [-48.19411349365068, -25.109156480335763], + [-48.19421080854469, -25.10938256833128], + [-48.194411908027114, -25.10959491979234], + [-48.194936870256534, -25.110815422583094], + [-48.19500820205899, -25.111020624168034], + [-48.19503615372697, -25.111298278997925], + [-48.19499003762348, -25.111581660529453], + [-48.194990002162, -25.11158173327008], + [-48.1949899933584, -25.111581787367747], + [-48.19470809411035, -25.11216003139928], + [-48.19460675225516, -25.112446117513645], + [-48.19460671917578, -25.11244625030799], + [-48.19444602107883, -25.113091354632722], + [-48.194445971173465, -25.113091486082986], + [-48.19431672934538, -25.113431906612092], + [-48.19431668320072, -25.113432040696907], + [-48.193879499676726, -25.114264705863725], + [-48.193546270629525, -25.11495035266494], + [-48.193385835189694, -25.11518320019586], + [-48.1931492621427, -25.11532571885922], + [-48.19258556434695, -25.115396524397617], + [-48.19125115682164, -25.115519044054615], + [-48.1909229451335, -25.11558591522568], + [-48.19063111335106, -25.115695888199593], + [-48.19034530606483, -25.115854433448735], + [-48.190074658234806, -25.116069484930133], + [-48.189941980326715, -25.11627993243352], + [-48.189863006042145, -25.11645375451555], + [-48.1898239982709, -25.116539615172268], + [-48.18974937258293, -25.116816575400026], + [-48.18970325146915, -25.11706918248214], + [-48.18963765417371, -25.11729795785819], + [-48.18963759639881, -25.117298109819433], + [-48.189546638187224, -25.117537350328167], + [-48.18954661934969, -25.117537385015996], + [-48.189546575020884, -25.11753750161056], + [-48.18928032656115, -25.118027775114946], + [-48.18905390788919, -25.11828481262238], + [-48.188710763721815, -25.11883886762132], + [-48.18837752807769, -25.119586424736017], + [-48.18837747436022, -25.119586587788863], + [-48.187981156363385, -25.120789548711922], + [-48.18798108723779, -25.12078971245393], + [-48.18789060507712, -25.121004042524948], + [-48.187890525108145, -25.121004202658924], + [-48.18759713310899, -25.121591702445162], + [-48.1875970639683, -25.121591869765485], + [-48.18730980554235, -25.122037973529228], + [-48.18720246664154, -25.122300074721892], + [-48.18713709726541, -25.122566121393884], + [-48.18694232152114, -25.123721272065684], + [-48.186692490806955, -25.124571000091205], + [-48.18646982783346, -25.125446868379274], + [-48.1864221233198, -25.125631142834404], + [-48.18629251554056, -25.126128597234548], + [-48.186292476210355, -25.1261286553314], + [-48.1862924431559, -25.126128782198904], + [-48.18613526412406, -25.126360959635637], + [-48.186040890120964, -25.126465107469347], + [-48.18593254210729, -25.126556175746227], + [-48.185865347137174, -25.126603267225736], + [-48.18565213408973, -25.1267069614301], + [-48.18537159448366, -25.126789974285227], + [-48.18502639338065, -25.12693059358329], + [-48.18460542458953, -25.127172193183966], + [-48.184358875290556, -25.12727281513838], + [-48.18414709200511, -25.127314088631753], + [-48.18373509502752, -25.127324392635494], + [-48.18345177841341, -25.12734688862839], + [-48.183244711623146, -25.12738563355327], + [-48.18305690782338, -25.127453169926692], + [-48.18294477282674, -25.127519077254743], + [-48.182799311075335, -25.12765067634431], + [-48.182551551569446, -25.12805005382217], + [-48.18238746788399, -25.128206926021917], + [-48.181606197508714, -25.128645962076764], + [-48.18148602438451, -25.12869059927714], + [-48.18122731200412, -25.12873792357864], + [-48.181108821015705, -25.128782682697896], + [-48.18103882432024, -25.12882646982026], + [-48.180936165624566, -25.128919898289546], + [-48.18085064267733, -25.129037324111568], + [-48.18078165537309, -25.12923331505069], + [-48.1807088252446, -25.12971542730633], + [-48.18072236289537, -25.130131504847135], + [-48.180780486378836, -25.13053985851152], + [-48.180853888386864, -25.13077769027631], + [-48.18093907940367, -25.131053718917105], + [-48.18103444139718, -25.131523963300545], + [-48.181157641288834, -25.131934548415067], + [-48.181249139415556, -25.13212425734893], + [-48.181441288186896, -25.132394389849576], + [-48.181497972463326, -25.132520268905793], + [-48.18152967951156, -25.132667600556612], + [-48.1815415508042, -25.132893062267502], + [-48.18152388107352, -25.13310993043309], + [-48.18140000998761, -25.1336001854279], + [-48.181399928530915, -25.13360040256769], + [-48.18131574542595, -25.13382480967851], + [-48.181315717042324, -25.133824864672675], + [-48.18131565670498, -25.13382502551392], + [-48.18122290710393, -25.134004730510572], + [-48.18099222295157, -25.134371942939758], + [-48.1807139399522, -25.134770012672075], + [-48.18041772737062, -25.135094105362278], + [-48.18016604019705, -25.13524921566169], + [-48.17981268619264, -25.135372339466837], + [-48.179529616154845, -25.13540484782457], + [-48.17931061129026, -25.13538443279701], + [-48.17876467975327, -25.135286229007054], + [-48.1786184843701, -25.135276675365315], + [-48.178392129749746, -25.135287070840647], + [-48.177255333150505, -25.135363492298634], + [-48.1770938354372, -25.135420151385887], + [-48.17684695668513, -25.13556857945844], + [-48.176727470500296, -25.135682077421656], + [-48.17660788567232, -25.135855852879054], + [-48.17635587991247, -25.13631334184578], + [-48.176217725921376, -25.136621888948934], + [-48.17615249578234, -25.136824403098846], + [-48.176123930959584, -25.13701886337387], + [-48.17612061793833, -25.137158489215775], + [-48.17614471935547, -25.13743787572399], + [-48.176127583905654, -25.137652586905954], + [-48.1760561103726, -25.13785498185839], + [-48.17605605948175, -25.137855053967638], + [-48.17605600269703, -25.137855214767463], + [-48.175979966656115, -25.13796295324452], + [-48.17586609227492, -25.138060765576263], + [-48.1756849922525, -25.1381720944795], + [-48.175021718970534, -25.138485472137127], + [-48.17435057684655, -25.138886408293647], + [-48.1740176563972, -25.13905565806689], + [-48.17353048558086, -25.139345318237076], + [-48.17317414828604, -25.139635850637475], + [-48.17295531699669, -25.13984851493924], + [-48.17290740269501, -25.139945177944764], + [-48.17269856273167, -25.140550203678202], + [-48.17261710743404, -25.140922955876178], + [-48.17257565257414, -25.141048407310148], + [-48.17257557319549, -25.141048530591146], + [-48.172575532576836, -25.141048653512065], + [-48.172507057657086, -25.141155000197504], + [-48.1723942813797, -25.14125653014484], + [-48.171876711356376, -25.14157420889107], + [-48.1716542048805, -25.141735364965317], + [-48.17120966880804, -25.142118595993935], + [-48.17101163237137, -25.142254590822063], + [-48.170884394774355, -25.14232110134711], + [-48.16998595636368, -25.142702420677622], + [-48.16913271667545, -25.143131071230133], + [-48.168875202199956, -25.14321521156674], + [-48.168522918224234, -25.14328625888487], + [-48.16836795956668, -25.143299537629883], + [-48.16816787898584, -25.1433521090461], + [-48.16803407017834, -25.14340685043545], + [-48.167849232126734, -25.143524865029985], + [-48.16757619758038, -25.14367999421579], + [-48.16709527091601, -25.14391678038626], + [-48.166805558814765, -25.144107142704044], + [-48.16656586269967, -25.144338166534467], + [-48.16639555659875, -25.144470714919652], + [-48.165810359251296, -25.144830750935117], + [-48.16554717178457, -25.14494563784647], + [-48.164706668823136, -25.145448138748005], + [-48.16399370802215, -25.145690936721714], + [-48.16375654029814, -25.145786556577672], + [-48.16347542457746, -25.145922031187162], + [-48.16261491631406, -25.146178778722117], + [-48.16216896694675, -25.14627418347191], + [-48.16184044870966, -25.14637589932346], + [-48.16171244304603, -25.146376693333355], + [-48.16150824092748, -25.146341464884088], + [-48.1613401615641, -25.14631429313945], + [-48.16103197969038, -25.14626447187473], + [-48.160903764653966, -25.146214367022356], + [-48.16079871206184, -25.146144402847575], + [-48.160699518173445, -25.146052623153363], + [-48.16053863871653, -25.14585047231197], + [-48.160358113467275, -25.14555915035448], + [-48.160196058365116, -25.14524941313265], + [-48.16001951701473, -25.145028035134], + [-48.16001686691713, -25.14502471197735], + [-48.159710780704, -25.144710135339704], + [-48.159415751299036, -25.144500355971417], + [-48.15907332601265, -25.14442366954822], + [-48.1588084191885, -25.144411456263683], + [-48.15850060584609, -25.144441191574874], + [-48.15817915805389, -25.14450315004619], + [-48.157995163321594, -25.14450304651403], + [-48.15780871964545, -25.14445461852396], + [-48.15760119406902, -25.144306343511307], + [-48.15753922219833, -25.144276909101933], + [-48.157200087571084, -25.144186655730127], + [-48.1564054676858, -25.14418429678383], + [-48.15625226565082, -25.144194438078085], + [-48.15605939888704, -25.14424546560891], + [-48.15604873823853, -25.144309012824724], + [-48.156082646905084, -25.14436867952476], + [-48.15619015839923, -25.14452478020322], + [-48.15626822637595, -25.144608215525643], + [-48.1563913040969, -25.144674468085565], + [-48.15669138337584, -25.14477732803191], + [-48.15684083129975, -25.144847876745757], + [-48.156934141778066, -25.144923844157614], + [-48.15701293671753, -25.14502299441081], + [-48.15711873535828, -25.14525305625417], + [-48.15720966362706, -25.145752551868327], + [-48.15722039582127, -25.14626891561227], + [-48.15728234319878, -25.14673563984862], + [-48.15731436621706, -25.146872423041618], + [-48.15737570944626, -25.146993165681653], + [-48.15742247071258, -25.14704585998251], + [-48.15753770163948, -25.147142822233807], + [-48.15765522658264, -25.147217810558924], + [-48.15770027838365, -25.147271554828784], + [-48.15775945377329, -25.14738747314389], + [-48.15777298155804, -25.147453967112956], + [-48.157778377247325, -25.147648893187224], + [-48.15771696874846, -25.147984299269808], + [-48.15770723110147, -25.148237588983694], + [-48.157765295652055, -25.148773540800864], + [-48.157828520303696, -25.148945754751526], + [-48.158171159051136, -25.149325917053563], + [-48.158258660894695, -25.149477301010645], + [-48.15829878826752, -25.149593846025475], + [-48.158318075004054, -25.149715585614878], + [-48.158298727299865, -25.150199608283522], + [-48.158292063419665, -25.150427239436826], + [-48.15831180188988, -25.15067920017408], + [-48.15836000536623, -25.150798065974318], + [-48.15840226008558, -25.150848507862914], + [-48.158514415566074, -25.150928626437764], + [-48.158663360364265, -25.15096135470373], + [-48.15913370140644, -25.15095215624733], + [-48.15962353651033, -25.151000180036476], + [-48.15990624317139, -25.15107057664799], + [-48.160037019483234, -25.15113011641335], + [-48.160092625142646, -25.151177746002986], + [-48.160331914265605, -25.151508997271], + [-48.16091446155047, -25.152147324723057], + [-48.1611730109235, -25.15252469481641], + [-48.161231875933126, -25.152632845690157], + [-48.161262707199526, -25.15275282131044], + [-48.161236049753825, -25.153069133752737], + [-48.16128026690181, -25.153184764058654], + [-48.1613191658703, -25.15323035825423], + [-48.16154247717811, -25.153408439221316], + [-48.161728281673575, -25.15362640735379], + [-48.1619502162272, -25.15395822610471], + [-48.162479069377156, -25.154599850166278], + [-48.16269642371247, -25.15487698645296], + [-48.162836918101746, -25.155103740062945], + [-48.16308185386236, -25.15534585113165], + [-48.16326283415803, -25.155459771510763], + [-48.163463302412005, -25.155558454202637], + [-48.163945901000936, -25.155710189720345], + [-48.16429069618956, -25.155934450849603], + [-48.164362158878674, -25.155952514289837], + [-48.164433042659596, -25.155957030995314], + [-48.164575789869474, -25.15591085759296], + [-48.164851689246355, -25.155755258451], + [-48.16485199009506, -25.155755312027168], + [-48.165375376036685, -25.15546013489523], + [-48.16551765036844, -25.155412958633296], + [-48.1661423044807, -25.155338474552874], + [-48.16663487286595, -25.155303599928043], + [-48.16694076184159, -25.155332557572795], + [-48.16707417122156, -25.155364348847446], + [-48.16724035052938, -25.155471123514534], + [-48.167567283577895, -25.155820828029885], + [-48.1675813285261, -25.155847405389107], + [-48.167581612212004, -25.155847385754562], + [-48.16771930965846, -25.156107951324575], + [-48.167869382801236, -25.156323965424214], + [-48.16793932417602, -25.1563735812894], + [-48.16808245437415, -25.15642667337657], + [-48.168180540093275, -25.156481159189212], + [-48.168433241961864, -25.156696700488094], + [-48.16868629323881, -25.157013043722802], + [-48.16874424399991, -25.15713110079924], + [-48.16875361930897, -25.157201665684337], + [-48.16869551256135, -25.157433728346636], + [-48.16867496989337, -25.157666329290922], + [-48.16861360268229, -25.15796654928851], + [-48.16854325888133, -25.1589342668893], + [-48.16845293293838, -25.159457902708766], + [-48.16839775710386, -25.15998356466163], + [-48.16839764092701, -25.159983887677292], + [-48.1682080952494, -25.160510893713088], + [-48.16820804658893, -25.160510991629135], + [-48.1682079662089, -25.160511215113868], + [-48.167953566149606, -25.161023123959566], + [-48.16777454459873, -25.161526342023546], + [-48.16772308702123, -25.161715036608303], + [-48.16769996119029, -25.162063543183585], + [-48.167667318001676, -25.162201794093885], + [-48.16766721866184, -25.16220199029209], + [-48.16766718754446, -25.162202122080956], + [-48.167590305952494, -25.162353964689952], + [-48.167403345127696, -25.162648260997067], + [-48.16709433827894, -25.163066463051585], + [-48.166990661827256, -25.163244862469874], + [-48.166938895699346, -25.16337078354007], + [-48.16675698361336, -25.164162824083697], + [-48.1667286211701, -25.16442460174281], + [-48.16674497617162, -25.16476357690626], + [-48.166861155235736, -25.165798210920933], + [-48.16694285466355, -25.166300053121056], + [-48.167036978538455, -25.166551904251246], + [-48.16713641445586, -25.166745563556667], + [-48.167687356465066, -25.167567350191224], + [-48.167782844966155, -25.167738825345797], + [-48.16783479596356, -25.167867777066075], + [-48.167885316633125, -25.168058604440017], + [-48.167907110544924, -25.168243918694102], + [-48.16788838860046, -25.168436127434436], + [-48.16788827481347, -25.168436482447678], + [-48.16780781310238, -25.168687520840127], + [-48.16781427512321, -25.168755413077275], + [-48.167846421764935, -25.168814592821253], + [-48.167889257830296, -25.168866036338688], + [-48.16794374922043, -25.168893699785368], + [-48.168086105589836, -25.16893369350852], + [-48.168218416755714, -25.168944979681715], + [-48.168555160079684, -25.16893175430272], + [-48.168641363562784, -25.16893928511787], + [-48.16882897299318, -25.16895567467398], + [-48.16890823174382, -25.168983102052074], + [-48.16890909078869, -25.168983795034862], + [-48.169119238723304, -25.169056516077802], + [-48.16948284619301, -25.169253967012313], + [-48.169596190223835, -25.16933518449533], + [-48.16962740659042, -25.169366198585877], + [-48.16974158852474, -25.169479640465216], + [-48.16998438313597, -25.16981194050918], + [-48.17011145335739, -25.1701258510551], + [-48.1701119365677, -25.170126397130534], + [-48.170170702190745, -25.17027156968204], + [-48.170479773978215, -25.170808261204414], + [-48.17086796331603, -25.171392757614512], + [-48.17097097744203, -25.171492004373924], + [-48.17127562515822, -25.171653762108605], + [-48.171612356867726, -25.17177020179698], + [-48.172336170941364, -25.171939701986084], + [-48.17247604557377, -25.171984336687643], + [-48.17258702919794, -25.172037951740023], + [-48.17295144141723, -25.172213994670678], + [-48.17295182600104, -25.17221459553266], + [-48.17306855160447, -25.17227098384908], + [-48.173189492161015, -25.17237129410703], + [-48.17327263138525, -25.17247683754685], + [-48.17332373088508, -25.17259575553914], + [-48.17333113278336, -25.172624262027067], + [-48.17339166642937, -25.172857391225143], + [-48.1734275104985, -25.172957785657893], + [-48.17343143673741, -25.1729639198139], + [-48.1734433791382, -25.17300157520248], + [-48.17355448529099, -25.173312767941646], + [-48.17378699328444, -25.173696210466442], + [-48.17416743136135, -25.174218016689913], + [-48.17435015647815, -25.17453300932976], + [-48.17459612779323, -25.174884489717133], + [-48.174597220615226, -25.174886565010866], + [-48.174819395354774, -25.175308478413495], + [-48.17482043393518, -25.175310450687626], + [-48.174998182281186, -25.175753585342267], + [-48.17511954876695, -25.176626609813784], + [-48.17533863864464, -25.177308481852105], + [-48.175472823998724, -25.17744531897709], + [-48.17601392751694, -25.17779960244055], + [-48.176192949242285, -25.177916814724206], + [-48.176193305944985, -25.177917492075085], + [-48.17631940317471, -25.178000052362982], + [-48.17706870095316, -25.17864485342432], + [-48.177186328038346, -25.178722529708445], + [-48.177386505793095, -25.17885471877517], + [-48.17774063131382, -25.17908856724669], + [-48.1780507320295, -25.179354913403717], + [-48.17870415420241, -25.179745751325356], + [-48.179049331606976, -25.17988435552318], + [-48.179101730718536, -25.17992569170129], + [-48.17912857599669, -25.179987205040312], + [-48.17911971699708, -25.1800739550774], + [-48.179119753412145, -25.180073972479782], + [-48.17911533645468, -25.180117224438295], + [-48.1791152814357, -25.180117389382563], + [-48.17911525826455, -25.18011761628082], + [-48.1790477220732, -25.180320086332095], + [-48.178935407621005, -25.180572235611503], + [-48.17875162379316, -25.180913440108284], + [-48.17866473181189, -25.18116417974636], + [-48.178540948997856, -25.18181781157278], + [-48.178540931107996, -25.18181788347307], + [-48.17854086926259, -25.181818210044327], + [-48.178425895688385, -25.182280292784974], + [-48.17831592728589, -25.18265854916377], + [-48.1781068340716, -25.183128576278815], + [-48.17810708314142, -25.183194956854344], + [-48.178127171833026, -25.18325273166001], + [-48.17816831590208, -25.183300530921002], + [-48.17832757151517, -25.183391281654927], + [-48.17849961971712, -25.183516476553642], + [-48.17876050101941, -25.18376744370725], + [-48.17903917086336, -25.18398671538562], + [-48.179406376881666, -25.18419838110592], + [-48.17960875005049, -25.184277229541763], + [-48.18029142633455, -25.184454032897168], + [-48.18084750439234, -25.184564530692207], + [-48.18119519606781, -25.18468070911659], + [-48.18144038730954, -25.18481300086613], + [-48.181516286247856, -25.184853951636864], + [-48.181645947079545, -25.18489504528828], + [-48.181784619939066, -25.18490653201095], + [-48.18197407703531, -25.184891657590665], + [-48.18255610381406, -25.185328774027873], + [-48.185082785797725, -25.1866907268523], + [-48.18519082667404, -25.186777902347284], + [-48.18540081708148, -25.18697871018356], + [-48.18588093247166, -25.18728825355722], + [-48.186144477588904, -25.187420054884296], + [-48.186218921866775, -25.18743879758441], + [-48.18646569756668, -25.18744159923231], + [-48.186902047503594, -25.187398827896953], + [-48.187094020987985, -25.18740919508447], + [-48.191509903862084, -25.188817603524164], + [-48.19237709980698, -25.18977197526101], + [-48.193610183072614, -25.190271118471276], + [-48.19357739917475, -25.19037225386652], + [-48.193429112725134, -25.190628244368032], + [-48.1932713194767, -25.191043596847326], + [-48.19317176335966, -25.19122106322149], + [-48.19317174192602, -25.191221101428496], + [-48.1930822925356, -25.191441300822664], + [-48.192944955893886, -25.191643535590615], + [-48.19288825302583, -25.19175913791981], + [-48.19267816713255, -25.192223037692717], + [-48.19259949939099, -25.19243143961517], + [-48.1925780167562, -25.19269389789446], + [-48.192557394369025, -25.193571183543785], + [-48.19262866625097, -25.194022377008466], + [-48.192661424756544, -25.194466341775442], + [-48.19266138095082, -25.194466450159446], + [-48.19266140552794, -25.194466783242735], + [-48.192525134075254, -25.19480394482057], + [-48.192447310598105, -25.19492789884641], + [-48.1922725276742, -25.195093415967733], + [-48.19200162908801, -25.195268025849153], + [-48.19183396360179, -25.195408591132853], + [-48.19171304481174, -25.1955476982178], + [-48.1915353717562, -25.195804481212235], + [-48.19142061181508, -25.196003623672386], + [-48.19124538573009, -25.196387057943966], + [-48.191067781793926, -25.196658009058233], + [-48.191019842982826, -25.19682367899505], + [-48.19093323031199, -25.197287124166284], + [-48.19090374331057, -25.197374653841056], + [-48.19046842707068, -25.197676024248363], + [-48.190450563961306, -25.197682400436364], + [-48.190167676376234, -25.197726563732473], + [-48.1896183987273, -25.19776160054249], + [-48.189281689501556, -25.197881983098526], + [-48.18915210520521, -25.19796632838828], + [-48.188884383948746, -25.19820506171144], + [-48.188550363191595, -25.19846301749089], + [-48.18828163599579, -25.198603009237868], + [-48.187920901201714, -25.198883917245276], + [-48.18764329426792, -25.199013180805412], + [-48.187159532040575, -25.199131842600657], + [-48.18679546591355, -25.19924258427408], + [-48.18667507363281, -25.199328185020967], + [-48.186630251789886, -25.199396815529575], + [-48.186578664166525, -25.19980882382574], + [-48.18665975204168, -25.20051325242679], + [-48.18665255992562, -25.20074403534941], + [-48.18665252956234, -25.200744188408493], + [-48.18665251977098, -25.200744502599573], + [-48.186612019092685, -25.20094866354708], + [-48.1864463279561, -25.20133913006878], + [-48.186376713510874, -25.201457381340134], + [-48.18626644449216, -25.20164469024396], + [-48.18619458136712, -25.201766760434012], + [-48.18610394694876, -25.20195128716804], + [-48.186028797782555, -25.202049028424028], + [-48.18578181584591, -25.202213246601477], + [-48.18576056591249, -25.202227375630454], + [-48.18564635523871, -25.20233727689444], + [-48.18559755450902, -25.20242941625921], + [-48.18558134203828, -25.20246002655745], + [-48.18548087670563, -25.202718270946153], + [-48.185371804011396, -25.202885029903204], + [-48.18527456321751, -25.202985869208995], + [-48.18516046130223, -25.203073753887267], + [-48.18491880627307, -25.20323491880325], + [-48.184906159940866, -25.203240529229962], + [-48.18484625516595, -25.203267105398847], + [-48.184626524716485, -25.203337546522054], + [-48.18422834743999, -25.203430034398327], + [-48.18381840614228, -25.20349495471332], + [-48.18361357056722, -25.203568926707526], + [-48.18355567015829, -25.203610957147884], + [-48.18352083852929, -25.203672016385536], + [-48.18350458279438, -25.20373386700339], + [-48.183504388477694, -25.20386694896664], + [-48.183539515056346, -25.204034288314624], + [-48.183592102665926, -25.204141139951545], + [-48.183727427399084, -25.204277452067732], + [-48.18390496317768, -25.204415060826012], + [-48.18390469608938, -25.204415374150788], + [-48.18406873542449, -25.204542521202356], + [-48.18419489268006, -25.204697969737552], + [-48.184276169248115, -25.204937387175967], + [-48.18429516118948, -25.20514213923918], + [-48.184360369832035, -25.205403725771788], + [-48.18437352282325, -25.205456489301667], + [-48.184436130118684, -25.205576255643983], + [-48.18451373323191, -25.20567798929492], + [-48.18461433582932, -25.205763015805005], + [-48.18496388004082, -25.205969553750897], + [-48.18555414932738, -25.20640907003903], + [-48.18593460714822, -25.20680686877549], + [-48.18617443101502, -25.206923873295448], + [-48.186229548970495, -25.20696832769048], + [-48.18628414045514, -25.207087399311995], + [-48.18627918656135, -25.207151825568943], + [-48.18620939275777, -25.20727962787755], + [-48.186110836535555, -25.207385766527512], + [-48.186000940968945, -25.207467415016705], + [-48.185798174342416, -25.207550362659788], + [-48.18548858832805, -25.2075769516894], + [-48.1851900506463, -25.20765789367939], + [-48.18497142720903, -25.207766075553756], + [-48.18446854444803, -25.208050129681332], + [-48.18413754959417, -25.20820949978484], + [-48.18392249816671, -25.208330471662062], + [-48.183639258307004, -25.208530906835207], + [-48.18354674583871, -25.20860773913747], + [-48.18346208880247, -25.208678047283364], + [-48.18326774913092, -25.208870149475025], + [-48.18303568245641, -25.209099543112174], + [-48.182689062798616, -25.209351376794086], + [-48.182056604146695, -25.20971813596766], + [-48.18186437499518, -25.209795503477967], + [-48.18167767179515, -25.209895625934372], + [-48.18153963422004, -25.209919883762957], + [-48.18145669273856, -25.2099507872766], + [-48.181085032211996, -25.21015268845453], + [-48.18101565680772, -25.210158764306453], + [-48.180953064175945, -25.210128784010195], + [-48.1809430894323, -25.21006235878599], + [-48.18108166781493, -25.209528445996302], + [-48.18108262050037, -25.20934943143225], + [-48.18098084650828, -25.20900972768947], + [-48.18085001175474, -25.208730199773605], + [-48.18074348826271, -25.20842875657247], + [-48.18066503856919, -25.20809707776017], + [-48.1806602996498, -25.20795414011221], + [-48.18073290260698, -25.20761009329742], + [-48.180742061968786, -25.207483844230385], + [-48.180728410048395, -25.207422041228504], + [-48.18066188784476, -25.20730012330201], + [-48.1806050975944, -25.207250852423023], + [-48.180598124035036, -25.20724736814178], + [-48.180351222994204, -25.207124005753307], + [-48.180049765074564, -25.207039023508564], + [-48.17973013357153, -25.207002332202947], + [-48.17952555151968, -25.207030551978406], + [-48.17925453374155, -25.207135288526302], + [-48.17918144525086, -25.207147609388365], + [-48.17903922652767, -25.20715545210453], + [-48.17890915506523, -25.20712688988489], + [-48.17878471791916, -25.207064776255255], + [-48.17840685294225, -25.2066975106023], + [-48.178187008960535, -25.20654893120661], + [-48.177993797718905, -25.20627353410833], + [-48.17792675240099, -25.206256100980344], + [-48.177796842329876, -25.206315162184453], + [-48.17696680252856, -25.20681952886117], + [-48.17671789332518, -25.206954732299945], + [-48.17655099887213, -25.207069033244146], + [-48.17616751770919, -25.207336209093356], + [-48.176012531271695, -25.207454526916315], + [-48.175783513185436, -25.20767321804855], + [-48.17529239388236, -25.20802261614823], + [-48.1748370091455, -25.208375041906397], + [-48.174715646123985, -25.208437512129976], + [-48.174366995429395, -25.20854914679095], + [-48.17378024152302, -25.208765865291266], + [-48.17318351464148, -25.209062070584512], + [-48.17289246804808, -25.20917895458508], + [-48.172228081306365, -25.20942404973074], + [-48.17180207881125, -25.209556215523026], + [-48.17151217413933, -25.209602191552484], + [-48.171148512518975, -25.209586385725544], + [-48.170691854307314, -25.209594425687214], + [-48.170543015246764, -25.209575332526754], + [-48.170416918186916, -25.209512187586085], + [-48.17024814682412, -25.20937287670574], + [-48.170054040624024, -25.209162514443673], + [-48.1697814473373, -25.20894911448233], + [-48.16950875974771, -25.208795539889486], + [-48.16922090554226, -25.208667301729708], + [-48.16901849453748, -25.20860585188863], + [-48.16866727019715, -25.208545701024875], + [-48.16739860181573, -25.208449013391583], + [-48.16712271748576, -25.208395085914056], + [-48.16671419925912, -25.20817501382176], + [-48.16655570535851, -25.208114673586895], + [-48.16601009520824, -25.207997999714244], + [-48.16579330005434, -25.207992397450276], + [-48.16564463943871, -25.208004254455368], + [-48.165498133004036, -25.208038711982738], + [-48.16537220487013, -25.208096845490132], + [-48.16502577171182, -25.20836073073302], + [-48.164651229339555, -25.20861766877628], + [-48.16425070235462, -25.208784591449653], + [-48.164109601264364, -25.208829709048633], + [-48.16374815319506, -25.208911113374928], + [-48.16302855550868, -25.209132636874973], + [-48.162119190659126, -25.209367656909], + [-48.162011863618034, -25.209440492326028], + [-48.1619847035679, -25.20949939751595], + [-48.16196220481797, -25.20970062433638], + [-48.16196206418666, -25.20970113216823], + [-48.161835211671644, -25.210159205578112], + [-48.161835078312976, -25.21015971692322], + [-48.16169198646236, -25.210559152964876], + [-48.16161238600601, -25.210836304180113], + [-48.16161237828471, -25.21083637866471], + [-48.1615061728689, -25.21186088940495], + [-48.16144631933147, -25.212127562613713], + [-48.16144626862176, -25.212127710162846], + [-48.16144618527032, -25.21212808152891], + [-48.16133693518016, -25.212445963782596], + [-48.16117236059035, -25.21274139653044], + [-48.16108466056905, -25.212848808095657], + [-48.16096285904838, -25.212925425001128], + [-48.160707325649376, -25.213049914213627], + [-48.160591083662815, -25.21314766289051], + [-48.16050981277769, -25.213255829283067], + [-48.16044586980794, -25.21336040669652], + [-48.16021162056603, -25.21374351452158], + [-48.15984375882936, -25.214262525369755], + [-48.1597299724759, -25.214557760026274], + [-48.15959985644528, -25.21506140921147], + [-48.15959971917951, -25.215061936700117], + [-48.15955907921761, -25.215107627417368], + [-48.159494310072006, -25.215111705985557], + [-48.15936094415221, -25.2150583379146], + [-48.15929986440088, -25.2150189027826], + [-48.15908359178973, -25.214815319586407], + [-48.15878325342844, -25.214605336674786], + [-48.158659859275005, -25.21454548228729], + [-48.158521856360125, -25.21451241793927], + [-48.158445243905405, -25.21452673576089], + [-48.158322072302006, -25.214589607843802], + [-48.158118202966044, -25.214778522626496], + [-48.15809841285239, -25.21484209059184], + [-48.158101619129525, -25.214904543588506], + [-48.15813507336837, -25.21503142840065], + [-48.15821851409439, -25.21522262109714], + [-48.15830967269147, -25.215568267079973], + [-48.158318272982434, -25.215936508241395], + [-48.15830495108842, -25.216099941462158], + [-48.15821033377165, -25.21658576055606], + [-48.15821018474946, -25.216586296469746], + [-48.158160216566806, -25.216765991748904], + [-48.15816007158186, -25.216766529317503], + [-48.158108318948635, -25.216884827040435], + [-48.157963019921596, -25.217088674422374], + [-48.15786648636252, -25.217174707962695], + [-48.1576430419958, -25.21730937351877], + [-48.157420249993656, -25.217467151948952], + [-48.15722932277351, -25.21755994097392], + [-48.15694804647117, -25.217758553259195], + [-48.1567084341933, -25.21789308652965], + [-48.15652615356805, -25.218023489327862], + [-48.156373543125035, -25.218161952764273], + [-48.15629157088339, -25.2182701027914], + [-48.1562684813802, -25.218333493997914], + [-48.156230531200315, -25.218575997458725], + [-48.15623039730474, -25.218576428253773], + [-48.15623037942147, -25.218576542528847], + [-48.156130876412064, -25.21889668247223], + [-48.1559601741139, -25.219173130250063], + [-48.155828824140734, -25.219327162112176], + [-48.155726391394936, -25.21940747216911], + [-48.15571727536939, -25.219414619355216], + [-48.15563595737427, -25.21944770438262], + [-48.15520716266806, -25.219518674285805], + [-48.155067128113444, -25.219559922455915], + [-48.15494772898302, -25.21963089496262], + [-48.154756991939934, -25.21983034406073], + [-48.15470086251033, -25.21995615310731], + [-48.154672968789384, -25.220083812169534], + [-48.154654542136214, -25.22055999632851], + [-48.1545897143209, -25.22094568159878], + [-48.15455759030602, -25.221096724215595], + [-48.154530787757615, -25.221222745530312], + [-48.15453068027275, -25.221223066847873], + [-48.15453063043388, -25.221223301182444], + [-48.15445600599389, -25.221446384902162], + [-48.154340714710365, -25.22202832438707], + [-48.15434058801055, -25.222028726514885], + [-48.154340556979164, -25.222028883146905], + [-48.15423119176479, -25.222375992448683], + [-48.154031979906534, -25.22290076105383], + [-48.15385742550988, -25.2231632348702], + [-48.15365955621406, -25.22331932109507], + [-48.15345309655318, -25.223439597905724], + [-48.15333993794426, -25.223561853313008], + [-48.153262184340925, -25.223706836580448], + [-48.15323979700827, -25.2239322119268], + [-48.153220042158054, -25.22418404194006], + [-48.15304865165743, -25.224936467939237], + [-48.15304855178659, -25.224936767254174], + [-48.15304849008592, -25.224937038126306], + [-48.152978635257575, -25.225146394231448], + [-48.15285732856016, -25.22543091814823], + [-48.1527642307152, -25.225598948750797], + [-48.15262137450302, -25.22579074474726], + [-48.15228936902836, -25.226177052931348], + [-48.15220482532668, -25.226301483250086], + [-48.15205783633103, -25.22654282904836], + [-48.15168643551515, -25.22708692165193], + [-48.151498562129, -25.2274180756997], + [-48.15140430044086, -25.22763616549298], + [-48.15123903050312, -25.228237967327942], + [-48.1512390145904, -25.228237999464017], + [-48.15123886323253, -25.22823855060495], + [-48.15118181289146, -25.228353764974067], + [-48.1510604815062, -25.228524137040264], + [-48.1508090408342, -25.228892413986447], + [-48.15066788064947, -25.229032444458678], + [-48.150506313674214, -25.229132918290933], + [-48.150145931229915, -25.22927629743911], + [-48.14983260075764, -25.229388640120856], + [-48.14966441524191, -25.22950486684279], + [-48.14957584322545, -25.229597634723316], + [-48.14941160470163, -25.229825289147954], + [-48.1490358148112, -25.23022915139456], + [-48.148737313073646, -25.2305901086198], + [-48.148580465695304, -25.230717742153544], + [-48.148353227982945, -25.23083914327397], + [-48.147797532653385, -25.230981180262475], + [-48.1476348276165, -25.231023967534476], + [-48.14753798886865, -25.23106703448783], + [-48.14739637149449, -25.23116689735852], + [-48.14703358114461, -25.231485190031385], + [-48.1467705067386, -25.23164993139567], + [-48.14659230335953, -25.231740333451665], + [-48.1460281283158, -25.231994543658555], + [-48.14550275945603, -25.23216305546589], + [-48.145055587033184, -25.23227117522476], + [-48.14486799074056, -25.23236013007684], + [-48.14444538435163, -25.232626816886444], + [-48.14412732183493, -25.232788233672835], + [-48.14393075349273, -25.232917168803223], + [-48.14359098721528, -25.2330011930113], + [-48.14331861324534, -25.233092385695375], + [-48.14307453811891, -25.23314009021269], + [-48.14277032170346, -25.233163259247323], + [-48.142502909487575, -25.233139856244307], + [-48.142316306509095, -25.23311837783288], + [-48.14211662233078, -25.23314717823139], + [-48.141756173417185, -25.233288278111075], + [-48.141311726667226, -25.23341529808472], + [-48.14107052975449, -25.23350952646366], + [-48.14096087187381, -25.233553333157005], + [-48.140797485770754, -25.23364618027676], + [-48.139773120500266, -25.234300492040035], + [-48.13950778156018, -25.23448502731054], + [-48.139384447556665, -25.234553563117217], + [-48.1392536879956, -25.234579092840892], + [-48.13912633463879, -25.234573557036047], + [-48.13900801711263, -25.23452533414522], + [-48.138890553028624, -25.23444915457363], + [-48.138650690385134, -25.23423218083144], + [-48.1384483332463, -25.23401927241357], + [-48.1381907401051, -25.233716500940215], + [-48.13796473890594, -25.233572795751193], + [-48.137838693858924, -25.23354111587665], + [-48.13776274323559, -25.233552005785636], + [-48.13767758086114, -25.233617309776626], + [-48.137435902797165, -25.233990171066278], + [-48.13674414270207, -25.235187090257536], + [-48.1364195003685, -25.235827333308958], + [-48.136106237054804, -25.236286783103925], + [-48.13586239724413, -25.236713289343452], + [-48.135699357341174, -25.236917939081994], + [-48.13545936567619, -25.23713796947586], + [-48.135203451845555, -25.237292359773722], + [-48.13491223657433, -25.23744597423135], + [-48.13467903992608, -25.237494687237465], + [-48.13453438282927, -25.23749079656798], + [-48.134280284985856, -25.23739860625047], + [-48.134139870801185, -25.23737034370416], + [-48.13394281067647, -25.23738844526654], + [-48.13380173823867, -25.237443186444615], + [-48.13367446453553, -25.237577873505902], + [-48.13349132594357, -25.237983445906888], + [-48.133177332657056, -25.238570467229717], + [-48.133122137781164, -25.238661901623768], + [-48.13299266096663, -25.238876388890855], + [-48.13290465030531, -25.238965546786993], + [-48.1327842384372, -25.239065625429102], + [-48.132472089917755, -25.239265389494193], + [-48.1321850270881, -25.239516442781376], + [-48.13191146812733, -25.239864129367934], + [-48.131756208386975, -25.240204182078024], + [-48.131684144996946, -25.24047456809774], + [-48.131683989524504, -25.2404748924297], + [-48.13168390639615, -25.240475204331645], + [-48.13162673609812, -25.240594467569576], + [-48.13158032442304, -25.2406485191223], + [-48.13147302361292, -25.240701387398698], + [-48.131369053333195, -25.240722286715087], + [-48.13118296531982, -25.240703871560473], + [-48.130733010635524, -25.24058242179367], + [-48.130344357245605, -25.24057973929818], + [-48.13011395831573, -25.24056398054811], + [-48.12986658887895, -25.2404935697284], + [-48.12963903497498, -25.24049185208741], + [-48.12940127497757, -25.24051068972025], + [-48.12913075314062, -25.240606401994224], + [-48.12900700381904, -25.24062880986966], + [-48.1287359841602, -25.24061487572729], + [-48.12767994380849, -25.240476482784242], + [-48.12757383687892, -25.240474327810283], + [-48.12737185602865, -25.24052002664052], + [-48.12718535918228, -25.240540129014263], + [-48.127069219892476, -25.240487878277523], + [-48.1270006702715, -25.24039062395333], + [-48.12696134963513, -25.240295021356147], + [-48.126906361479875, -25.23997560093917], + [-48.126901675725875, -25.23996567412246], + [-48.12686204019822, -25.239881705707067], + [-48.12680687820291, -25.23981845991141], + [-48.126703298611865, -25.239746872330613], + [-48.12661905000441, -25.239739186656664], + [-48.12652373529801, -25.239788584907668], + [-48.12644221695223, -25.239871458247123], + [-48.12639580713537, -25.239929568625872], + [-48.126355172952, -25.24001698711345], + [-48.12627319775121, -25.240386107061667], + [-48.12624584343282, -25.24067576999821], + [-48.12625664626344, -25.241076713571058], + [-48.12624506017174, -25.24137507531915], + [-48.12619563944518, -25.241649600307756], + [-48.126195423609225, -25.2416499999984], + [-48.126195379884564, -25.24165024288234], + [-48.126063013771876, -25.241895361444044], + [-48.12598819149043, -25.242001374749705], + [-48.12575002049752, -25.24222719781196], + [-48.125642762708125, -25.242307584129936], + [-48.125465672652055, -25.242404206269377], + [-48.12529689636471, -25.24251010386926], + [-48.1248600133378, -25.242558262107238], + [-48.12465273893172, -25.24270262706299], + [-48.12433256954287, -25.242925621103428], + [-48.12379195630293, -25.24297166478055], + [-48.1236643848384, -25.243101372779424], + [-48.123422680270984, -25.243681369220305], + [-48.12328577310232, -25.244207378304957], + [-48.123286487497836, -25.245057042441463], + [-48.12328621766167, -25.245057297301187], + [-48.123286217999315, -25.245057698884363], + [-48.12303151603244, -25.24529826381886], + [-48.12221457265746, -25.245622161866304], + [-48.121336234846076, -25.245907139372065], + [-48.11944860524863, -25.24691133018865], + [-48.11838618544929, -25.247476502919103], + [-48.1160165476923, -25.24942704261169], + [-48.115781689962844, -25.249630980085964], + [-48.11554062558905, -25.24983397760366], + [-48.11521965646254, -25.25008554937406], + [-48.11489800906705, -25.250365756630575], + [-48.11467420538045, -25.250547476039635], + [-48.11427197733731, -25.250862044821627], + [-48.1142216235844, -25.25085466100675], + [-48.114174594740646, -25.2508451464346], + [-48.11408697007227, -25.25082051317802], + [-48.1140152248812, -25.250790460520058], + [-48.11392934396573, -25.25075869890407], + [-48.11384034819776, -25.25072544382383], + [-48.11374351432895, -25.25069060292597], + [-48.113657498162034, -25.25066456839249], + [-48.11356528603016, -25.250634115234323], + [-48.11348097978291, -25.250602384138155], + [-48.113379490693035, -25.250564586998422], + [-48.113268724660664, -25.250519445944327], + [-48.11323531711458, -25.250496057616754], + [-48.11297892232301, -25.2504012099201], + [-48.11064032150404, -25.249536068662433], + [-48.11020399867109, -25.249338716630515], + [-48.1091020376108, -25.248840283254502], + [-48.10812098592068, -25.24775414235273], + [-48.10669461206394, -25.246174933789536], + [-48.10643385966588, -25.24588623655721], + [-48.10598118633841, -25.245385046053997], + [-48.10534030650456, -25.244056691], + [-48.1049482281975, -25.243244014338792], + [-48.10345964212934, -25.243678250951238], + [-48.10218706092867, -25.243237833693577], + [-48.10056488572263, -25.243506889375876], + [-48.10030211915506, -25.243550470291183], + [-48.09985216558081, -25.242661668747207], + [-48.09919402138748, -25.242083961710758], + [-48.098647068746175, -25.241716474923184], + [-48.0981548954542, -25.241385789861024], + [-48.097698588016236, -25.241199328424692], + [-48.09727615683917, -25.241207173540953], + [-48.09638975145942, -25.241351077105925], + [-48.09593244528932, -25.241474329215343], + [-48.09588739715274, -25.241486470392974], + [-48.095528390106566, -25.241506752137497], + [-48.09546448432791, -25.241510362337706], + [-48.09517862482003, -25.2414240679886], + [-48.094682113031666, -25.24105119567624], + [-48.094598976064134, -25.240967717350756], + [-48.09458428449978, -25.24094360872205], + [-48.09451705183509, -25.24083328083725], + [-48.094256414991555, -25.24054183891605], + [-48.09388737153035, -25.24020747674191], + [-48.09359903541299, -25.240058689206904], + [-48.093355984481676, -25.240053903365933], + [-48.09300029375064, -25.24017981289008], + [-48.0917494603745, -25.24087072533083], + [-48.090536076685886, -25.241271812683255], + [-48.09033805919461, -25.241310603429472], + [-48.090038889587476, -25.241369208916982], + [-48.08914520912362, -25.2413602499002], + [-48.08846429727252, -25.24130720775801], + [-48.088161285403395, -25.241270641289123], + [-48.08797474405905, -25.241225905039958], + [-48.087484259000284, -25.241071403191487], + [-48.087120203838296, -25.240982016723787], + [-48.08602551021885, -25.24080331357985], + [-48.08546576496299, -25.24067441769577], + [-48.085041049672306, -25.24062434316296], + [-48.084306241927294, -25.240580955549117], + [-48.08371064899818, -25.24061141855118], + [-48.08306515920847, -25.240791131131175], + [-48.08260261069716, -25.241461276435746], + [-48.08253976464736, -25.241803954644137], + [-48.08251835657958, -25.243380708273854], + [-48.082574793706925, -25.243609661348327], + [-48.082691116559424, -25.24427075374192], + [-48.08270996473083, -25.24437787222347], + [-48.08270945126633, -25.244378056700647], + [-48.08281676176993, -25.244987922785974], + [-48.082773695231154, -25.245053405475648], + [-48.08272102567247, -25.24513348948029], + [-48.082726380780834, -25.24513893429459], + [-48.08273069920654, -25.245145093887455], + [-48.08273386774856, -25.24515180672027], + [-48.08273580326428, -25.245158896668915], + [-48.08273645493952, -25.245166177818316], + [-48.08273584984414, -25.245173209493363], + [-48.08273404682755, -25.245180069409848], + [-48.082731090015635, -25.245186589845115], + [-48.08272705172213, -25.245192611344038], + [-48.08272203065176, -25.245197986641834], + [-48.08269619675624, -25.24517124180431], + [-48.08269198051162, -25.245177652598894], + [-48.08266501309268, -25.245206678875974], + [-48.08259784677603, -25.24527897300631], + [-48.082578130659826, -25.245300194312332], + [-48.08207295738807, -25.24492200793892], + [-48.08157770183231, -25.244551242451276], + [-48.080945979463216, -25.244158327466423], + [-48.08059791438402, -25.243917747324232], + [-48.08042655338101, -25.24379930318196], + [-48.08037289954219, -25.243749424663818], + [-48.07999583579946, -25.24339889123873], + [-48.079799386424725, -25.24321626299265], + [-48.07928224198584, -25.242762174901884], + [-48.07868821928563, -25.242369997316516], + [-48.07868681452034, -25.242369171253433], + [-48.07865096521462, -25.24234809003361], + [-48.07768404646931, -25.24177948691786], + [-48.077475596843755, -25.24168604576439], + [-48.07731250169831, -25.241575197424908], + [-48.07726717840164, -25.241545029545925], + [-48.07703149856152, -25.241486969615995], + [-48.076905089500876, -25.241430303816628], + [-48.07661128410161, -25.241298598119798], + [-48.075861656080356, -25.241099100710418], + [-48.07513097663464, -25.24090464182671], + [-48.07466469152235, -25.240855993918792], + [-48.07319372049303, -25.240702516544044], + [-48.072863804248094, -25.24066809188715], + [-48.07213083131056, -25.240591608116954], + [-48.0719605775402, -25.240568284835774], + [-48.070777594495205, -25.24040622092271], + [-48.06963208968357, -25.240209155034247], + [-48.06937349601575, -25.240195343227562], + [-48.06874714802775, -25.240161887247776], + [-48.06731820014082, -25.240085550972196], + [-48.067268586294794, -25.240082900286527], + [-48.06660695928066, -25.240149067304134], + [-48.06588700817556, -25.240293205592952], + [-48.06524141635076, -25.240460159620852], + [-48.06514697122809, -25.240484583423072], + [-48.064484201361395, -25.240598180036418], + [-48.06416606830156, -25.24061548038386], + [-48.063917161532764, -25.240629015666016], + [-48.06308863172355, -25.240598534406526], + [-48.06270391838758, -25.240531092026238], + [-48.06234775306178, -25.240444690048008], + [-48.06198150611708, -25.24020540886202], + [-48.06116727610288, -25.239673439263754], + [-48.060429880764765, -25.23935926299523], + [-48.06018868718891, -25.23925649842425], + [-48.060068898714704, -25.239205460323547], + [-48.05910654158383, -25.238708507318186], + [-48.05892516994349, -25.23861484747561], + [-48.058899371426456, -25.23859860250145], + [-48.05859251390631, -25.238405377999758], + [-48.05851067852922, -25.237795404434447], + [-48.05850943020161, -25.237771639771136], + [-48.05850065947555, -25.237604666529474], + [-48.05846066204258, -25.236843212141494], + [-48.058444566743276, -25.236536796910823], + [-48.058441567077324, -25.236494535479927], + [-48.05837249705336, -25.235521425826988], + [-48.05805156632407, -25.234825569219737], + [-48.05770118493377, -25.23429117955899], + [-48.0575396346786, -25.234044786967413], + [-48.05726787918086, -25.23330930493897], + [-48.05699417078343, -25.232654992258293], + [-48.05719093368475, -25.232496677652172], + [-48.05787584269686, -25.23210473601923], + [-48.05876043433432, -25.23143289950031], + [-48.059216741558885, -25.230677016702973], + [-48.05930338507517, -25.230533488501283], + [-48.05941363417626, -25.230350856079294], + [-48.05973624916251, -25.229102785026065], + [-48.05985617504831, -25.228638830552185], + [-48.05986421889233, -25.228607711362024], + [-48.05994557403736, -25.228292971885995], + [-48.05981261772275, -25.22780370345322], + [-48.059527197884286, -25.22763578279911], + [-48.059373730663516, -25.227611129131958], + [-48.05866225955329, -25.227496833020712], + [-48.05829026554565, -25.227465345667714], + [-48.05803630492876, -25.227443848682334], + [-48.05746352050333, -25.22718908012857], + [-48.05725243828527, -25.22694151828976], + [-48.057358675466276, -25.226538043269333], + [-48.05766156142525, -25.225976339965346], + [-48.058119939931494, -25.22497153687377], + [-48.058488770856755, -25.223680988139165], + [-48.058566229948404, -25.222465843412273], + [-48.058509904806144, -25.22129173926619], + [-48.05850196113203, -25.221126152688317], + [-48.0583875564022, -25.21986658185095], + [-48.05826144352691, -25.219093489009385], + [-48.05769185552321, -25.218572991306505], + [-48.05767153579627, -25.21855442274724], + [-48.05700037343196, -25.218378813769522], + [-48.05661107349987, -25.218533179757525], + [-48.056601090332386, -25.2185506672653], + [-48.05635948596059, -25.21897388338966], + [-48.055997589910255, -25.21998060148094], + [-48.05543982204097, -25.2211050449908], + [-48.055439281168276, -25.2211056379109], + [-48.05434975824128, -25.22229998712958], + [-48.05434972871941, -25.222300012801057], + [-48.0543492095692, -25.22230058189258], + [-48.05129421776012, -25.224957029073703], + [-48.0497237723077, -25.226061224581276], + [-48.048405202961575, -25.226724332260883], + [-48.048163083197224, -25.22677734507979], + [-48.04789662858741, -25.22683568553167], + [-48.04704725105575, -25.227021653816106], + [-48.04655020378621, -25.22697529142476], + [-48.04594022729013, -25.226918393175566], + [-48.04537041563336, -25.226542007223934], + [-48.045143012044186, -25.225969631748335], + [-48.0449496047846, -25.22499243726384], + [-48.04492396805054, -25.224059113801935], + [-48.0450399447503, -25.22308862161168], + [-48.04504484639346, -25.223047604195305], + [-48.04520420525176, -25.222442363446874], + [-48.04507131334617, -25.221953087297813], + [-48.04468716654812, -25.221694914029083], + [-48.04326755883565, -25.220740822031203], + [-48.04236236717594, -25.220157921251506], + [-48.042356720568876, -25.220154285069388], + [-48.041650942476046, -25.219748397515556], + [-48.041633449183536, -25.219738337183944], + [-48.04065506536466, -25.21923040515153], + [-48.04065100212457, -25.219228295682097], + [-48.03955279647204, -25.218760184574577], + [-48.038401605847994, -25.218493752306184], + [-48.03715090826474, -25.21834703673589], + [-48.03541514281156, -25.218312206292136], + [-48.03391557354894, -25.218484847424303], + [-48.03318840266024, -25.218632476977202], + [-48.0310812243445, -25.218995720362084], + [-48.02981783000219, -25.219375904247883], + [-48.028550389278344, -25.21991813933515], + [-48.027716518508136, -25.220509400385783], + [-48.02732664357058, -25.22119183210363], + [-48.02721272804957, -25.221391226498334], + [-48.02709663687298, -25.222200057040578], + [-48.02751283865233, -25.22293839578908], + [-48.02879498246464, -25.22377536651284], + [-48.02959095915526, -25.224764782097093], + [-48.029902830862824, -25.225825484226032], + [-48.02972762489743, -25.2270792258634], + [-48.02937337097002, -25.227761546994806], + [-48.029372910428975, -25.22776181791746], + [-48.02937272697473, -25.22776217126275], + [-48.027447602205676, -25.228894641677346], + [-48.02743948580871, -25.22889941611143], + [-48.02607950537653, -25.22927761486575], + [-48.02491236340377, -25.229659686296223], + [-48.02432404823298, -25.229992077107052], + [-48.02408118687915, -25.23012928949923], + [-48.023779252010684, -25.230650114473516], + [-48.023992731416335, -25.231789958992653], + [-48.024952348788275, -25.233350673948898], + [-48.025709723861695, -25.234582433891262], + [-48.0267409574773, -25.235819866590205], + [-48.029541063071726, -25.238715234268092], + [-48.03050595196139, -25.239480053565], + [-48.03242846750026, -25.24100389098984], + [-48.03466344068818, -25.242346591209714], + [-48.04110754620109, -25.245856140344337], + [-48.04257218490929, -25.246827483865513], + [-48.04633808984767, -25.249789125463046], + [-48.04719375994416, -25.250462023262187], + [-48.04723582001392, -25.2504950229604], + [-48.0472760245039, -25.25052663961378], + [-48.047997250198634, -25.251093804615447], + [-48.049051086311934, -25.251922516299874], + [-48.05150804906212, -25.254080602094227], + [-48.0521341229209, -25.254907252656153], + [-48.05257223073183, -25.25548571042176], + [-48.05284966864848, -25.2558520236888], + [-48.0542179578324, -25.258542249614173], + [-48.055427902456785, -25.261546377669514], + [-48.0558347035179, -25.262114067810256], + [-48.05717949851801, -25.263990684868684], + [-48.05997768862256, -25.266836256613814], + [-48.063028099139224, -25.268608901898926], + [-48.06668347303929, -25.27033018120259], + [-48.06742875879969, -25.270692892427995], + [-48.0674322686652, -25.270694600574938], + [-48.07048677708284, -25.27218109092132], + [-48.07481799179515, -25.274042383018813], + [-48.07875106234961, -25.276783282957048], + [-48.080254667361274, -25.278588383690572], + [-48.08025493935094, -25.27858945822705], + [-48.081236446980064, -25.278979871897302], + [-48.08213918231993, -25.279535076039785], + [-48.08434274377778, -25.282534022027047], + [-48.08626259821163, -25.285043730568947], + [-48.08835397829101, -25.28779860906385], + [-48.09004025257366, -25.2901961963858], + [-48.09204190114286, -25.293002995153444], + [-48.09297200480876, -25.294183344958917], + [-48.0929733205069, -25.294183696521326], + [-48.095495523423075, -25.296008756932753], + [-48.097617948284544, -25.298776960770557], + [-48.099152144551425, -25.3008994932094], + [-48.09963935890414, -25.30420619791955], + [-48.09963895796231, -25.304206650710775], + [-48.09963902202873, -25.30420708551793], + [-48.09890712570329, -25.305033622537145], + [-48.0978436645824, -25.30623457000227], + [-48.09733312983253, -25.306811095595243], + [-48.096921524649765, -25.307275898499356], + [-48.09764510651287, -25.31011130000609], + [-49.529383639166554, -26.224311719982396], + [-49.52940486926915, -26.22452480032435], + [-49.52987935458513, -26.223621016770633], + [-49.52970885251728, -26.22379470042703], + [-49.52953463575456, -26.22404873397523], + [-49.529514580784515, -26.224078657038344], + [-49.52943056890991, -26.224204006302642], + [-49.52939354196524, -26.224259252419216], + [-49.529383639166554, -26.224311719982396] + ] + ] + }, + "PE": { + "name": "Pernambuco", + "coordinates": [ + [ + [-40.19570443457279, -7.358183643716904], + [-40.15715332921658, -7.371492024210006], + [-40.150884333327156, -7.3740377820232625], + [-40.12777434370054, -7.3819500908601405], + [-40.08747466920455, -7.383128249082649], + [-40.00911578423955, -7.375603545468414], + [-39.998609815474985, -7.373549504447563], + [-39.92636573941478, -7.341034408281556], + [-39.904580503219066, -7.338378904323065], + [-39.89015152121968, -7.33986433826768], + [-39.863974229292566, -7.3277277126623455], + [-39.85146912318254, -7.325245559106715], + [-39.828716905970545, -7.332405892323059], + [-39.81538870679922, -7.328729935822915], + [-39.80648348098956, -7.330438041901087], + [-39.78924825656197, -7.332030876735584], + [-39.771326428520005, -7.3275128817544495], + [-39.74134356726973, -7.326852482457343], + [-39.71551824277741, -7.334960738652245], + [-39.69753366383767, -7.342201585178579], + [-39.65311023657916, -7.372298188550025], + [-39.64391661790172, -7.385377690221492], + [-39.63964120070841, -7.3958407048571795], + [-39.62892910849979, -7.425664545084922], + [-39.608710200027076, -7.423762712108711], + [-39.59902504311061, -7.428809599267408], + [-39.59309995951383, -7.432387392054771], + [-39.57655601799965, -7.427931141230078], + [-39.571296680871335, -7.430781980390022], + [-39.566021322133714, -7.448961993675621], + [-39.55747705880679, -7.472580990694022], + [-39.552850152333185, -7.480692975441524], + [-39.54587507706052, -7.483977877503038], + [-39.54327134713716, -7.4847966992647175], + [-39.502382975470915, -7.464184665723525], + [-39.489754996893396, -7.47245949165305], + [-39.475534421145916, -7.4727066849758], + [-39.467879150554126, -7.4696268836587425], + [-39.458515421338504, -7.474246694454973], + [-39.45570010605582, -7.501897196751506], + [-39.469710998599396, -7.520604881691212], + [-39.48255303418564, -7.530087318407547], + [-39.4850365007175, -7.538422815142074], + [-39.476549361446914, -7.5533639106215915], + [-39.47247623431501, -7.575218227134045], + [-39.44724177447852, -7.572328189570333], + [-39.43495622637538, -7.573759087814731], + [-39.431207330451954, -7.5780586893758715], + [-39.42329560224078, -7.586842085516526], + [-39.41967895193485, -7.6044485539845], + [-39.38407845706565, -7.608558404316548], + [-39.38399515415824, -7.608607398133549], + [-39.3727180226174, -7.614204256256268], + [-39.36800319079301, -7.6239469986936585], + [-39.35482181481883, -7.630164380848934], + [-39.34286762487527, -7.635654201515248], + [-39.338466850348766, -7.644683254143779], + [-39.33210947153454, -7.648203686329304], + [-39.332015551469766, -7.648244409719612], + [-39.32146355475505, -7.654262170925974], + [-39.31141186313501, -7.65527296795765], + [-39.30558973216811, -7.665968010459617], + [-39.28377503249919, -7.664244780959733], + [-39.27242508351154, -7.660169963896648], + [-39.26641932540228, -7.664801851305339], + [-39.265361563315125, -7.669867391894378], + [-39.25206173067894, -7.678907517073175], + [-39.251054500880095, -7.680955514789644], + [-39.24748705371088, -7.690685219384053], + [-39.250411505318155, -7.698479473310273], + [-39.25258837885855, -7.704967322683341], + [-39.24419597294594, -7.705379487141959], + [-39.23476175894568, -7.6968374064049785], + [-39.2227660987543, -7.696840193268517], + [-39.20835887496231, -7.689516788914528], + [-39.1902477418233, -7.698957722832235], + [-39.189376434969894, -7.700150341464891], + [-39.181157471484966, -7.709514212993699], + [-39.171025201338054, -7.715276781188497], + [-39.146572955622815, -7.718302375427193], + [-39.14373663548888, -7.718583529712983], + [-39.133976872699655, -7.7253144157571425], + [-39.12387735764874, -7.743282547163322], + [-39.10637801847874, -7.760262814663116], + [-39.10264127948329, -7.771074773582709], + [-39.10035832229879, -7.77574425068386], + [-39.10193999311311, -7.786487068867432], + [-39.09057932942274, -7.809641110627915], + [-39.09174480112235, -7.824849455432291], + [-39.0878414830405, -7.8362082400625725], + [-39.0957914654027, -7.846472569843148], + [-39.095460116255744, -7.853300628789149], + [-39.091322017254484, -7.8582189559660085], + [-39.064904157407575, -7.83954074546074], + [-39.05378004204594, -7.8193411708276646], + [-39.02641761922011, -7.824671619847306], + [-39.01806645235537, -7.812702582691134], + [-39.01371590498778, -7.812909535797673], + [-39.00461253007682, -7.835972511160279], + [-39.00143323177707, -7.840162635128859], + [-38.98226928290363, -7.8461621829052905], + [-38.974663621677195, -7.8430110302851554], + [-38.96622672523352, -7.8456702337800275], + [-38.962138392603165, -7.844211196458783], + [-38.959385907651175, -7.838300014307885], + [-38.9649650912664, -7.82986508162029], + [-38.95407396031531, -7.82155427248273], + [-38.95288007932682, -7.810582242368779], + [-38.93998992342534, -7.795142329026448], + [-38.94640745802083, -7.781434143320827], + [-38.941047394966255, -7.7714494676879085], + [-38.94198916337489, -7.7631797677098655], + [-38.94187280246306, -7.762538851207348], + [-38.9396028630257, -7.758809288248744], + [-38.93407634211651, -7.758866762435652], + [-38.9276517643538, -7.7538428854360495], + [-38.920243706022575, -7.754603966922445], + [-38.916135750748424, -7.758574804593177], + [-38.91827261214171, -7.747203747006226], + [-38.915602582607576, -7.744523799735133], + [-38.900378168989846, -7.744912233447776], + [-38.89483558521481, -7.750490245913084], + [-38.881422583867646, -7.747469011895044], + [-38.88087758854464, -7.744008481327838], + [-38.88114642986276, -7.741661337024817], + [-38.881210112545205, -7.741108978879], + [-38.880937849909124, -7.725001374582268], + [-38.86976963023436, -7.711578509731077], + [-38.85177014985057, -7.715974151318674], + [-38.84612754241416, -7.720451811802042], + [-38.83450736570444, -7.7197045474633335], + [-38.828134565473455, -7.719651257003228], + [-38.82198745078869, -7.714831173109581], + [-38.815049188530026, -7.697427588497426], + [-38.815129626997205, -7.68801645121019], + [-38.82426649592706, -7.678381139415526], + [-38.819715202583104, -7.664864610567511], + [-38.81585150498632, -7.664094594061818], + [-38.81221691686456, -7.668834054718481], + [-38.792515601553646, -7.668133569860453], + [-38.790773048682254, -7.671186599546679], + [-38.78614096511649, -7.6686266102111444], + [-38.78009623173061, -7.661616462161799], + [-38.775454403536415, -7.662470297195497], + [-38.760637979350506, -7.656037715234357], + [-38.75449266961018, -7.659778954211512], + [-38.74282760215624, -7.660358928310248], + [-38.74184772430005, -7.648410244071624], + [-38.73499116227164, -7.639494393131219], + [-38.73562380742673, -7.634162175567016], + [-38.72375213425318, -7.626921002233645], + [-38.717619884984785, -7.626925007489835], + [-38.71513784723023, -7.6219563079311925], + [-38.705432897773335, -7.622080481399848], + [-38.69601841112339, -7.63283971532878], + [-38.68676669919759, -7.635076761514302], + [-38.67899804723725, -7.646595019573955], + [-38.67280906139973, -7.65883255782911], + [-38.6699648511759, -7.660520082341292], + [-38.663622265195436, -7.657559942620886], + [-38.6586918304411, -7.662349263907062], + [-38.65073546240669, -7.668600787348808], + [-38.651438510227344, -7.6771190268019405], + [-38.64210902049771, -7.677673541854547], + [-38.6413435391651, -7.68650076949784], + [-38.62646367635698, -7.69476263389552], + [-38.625355069739626, -7.708355522574519], + [-38.616742822051485, -7.713527602730181], + [-38.60799445629492, -7.725984807201888], + [-38.607602022878176, -7.739515863389043], + [-38.597763685386084, -7.742072292579933], + [-38.59365325112885, -7.754386081499282], + [-38.58998404784693, -7.755719299983436], + [-38.579056738328994, -7.746635963597703], + [-38.57485302363178, -7.754375043780819], + [-38.57213043855967, -7.7515116638609065], + [-38.560156863430855, -7.757129054463719], + [-38.54621640638703, -7.749487363095375], + [-38.529708895451364, -7.755145309351944], + [-38.516630918281564, -7.749366211052912], + [-38.496602096787186, -7.7500688349655125], + [-38.49582594445472, -7.738845400493104], + [-38.4905475173432, -7.734698555644788], + [-38.46400252188479, -7.7309282688544405], + [-38.45711023393356, -7.718144002718535], + [-38.45009884602064, -7.71740911829279], + [-38.434242965068094, -7.720488349709206], + [-38.42765155342066, -7.7300736837868325], + [-38.412512932421556, -7.730144710287611], + [-38.40953401105462, -7.730530315901704], + [-38.40122897431498, -7.7205553512747604], + [-38.403957072285884, -7.714479562384326], + [-38.38228045872585, -7.707512276612102], + [-38.37096331587975, -7.698452331214859], + [-38.37010124600271, -7.692686629660332], + [-38.36164372404638, -7.686340861086707], + [-38.3575231042708, -7.6771990703985615], + [-38.34471883838933, -7.695033848699052], + [-38.33722484159722, -7.69361376782921], + [-38.33038618136035, -7.696184202414116], + [-38.326713013983166, -7.693741647384937], + [-38.32080045793576, -7.697995241897124], + [-38.31623144479728, -7.709187786334629], + [-38.31728431174833, -7.71556193981054], + [-38.31205603841519, -7.7163507262586455], + [-38.31590958510936, -7.728510014087405], + [-38.31090440591314, -7.739114790851216], + [-38.302183042117086, -7.745241328968726], + [-38.31678639531451, -7.764644450518841], + [-38.29984385356437, -7.763232578577551], + [-38.3012789786426, -7.768740853465365], + [-38.2955634140394, -7.7796248654301845], + [-38.302601320543786, -7.7884357211842765], + [-38.297773179661206, -7.8139837960894765], + [-38.286819842157264, -7.830261046436621], + [-38.276254376154256, -7.833856610546481], + [-38.26497116713334, -7.828013344210584], + [-38.25706461248371, -7.83110112826457], + [-38.23859761474723, -7.830762954531962], + [-38.235492180640136, -7.8259951642104335], + [-38.22195066088062, -7.820425057171847], + [-38.205890435236675, -7.807724081166211], + [-38.18401764519705, -7.795586043700838], + [-38.16270038390606, -7.779990425139474], + [-38.162431542054456, -7.779998191575388], + [-38.143791117303984, -7.783442313145997], + [-38.131453752297546, -7.795795511544119], + [-38.131185637844226, -7.803904822313394], + [-38.12246453974455, -7.8074714204711855], + [-38.12418140097951, -7.813017825363955], + [-38.12008388798955, -7.819010946315049], + [-38.09726827262206, -7.827363917719835], + [-38.08336706844582, -7.828099895707014], + [-38.08058056422005, -7.829218807348684], + [-38.077097211686954, -7.830616503109664], + [-38.069404218568856, -7.82615393583975], + [-38.06633338389183, -7.81770329535296], + [-38.07576969467527, -7.805420567140675], + [-38.073510885931974, -7.793555955419361], + [-38.07524350360113, -7.789162387115555], + [-38.06950686100802, -7.7723613764429835], + [-38.03961027535612, -7.748156162661287], + [-38.029943278197905, -7.749872358693734], + [-38.01249170345126, -7.765842838808975], + [-38.008174715682365, -7.766906242887378], + [-38.00548177837357, -7.77779905612935], + [-38.00074832977101, -7.778997734371995], + [-37.99029644890332, -7.778913446928978], + [-37.982996853014654, -7.772684819530272], + [-37.97135623383456, -7.77759683292562], + [-37.966703494079105, -7.7743690522722], + [-37.96483063085058, -7.772723337918142], + [-37.958456105319755, -7.766021001518301], + [-37.94757386778814, -7.756258967198716], + [-37.94470640889037, -7.746455785004278], + [-37.94313021671683, -7.7410731103024775], + [-37.92237971875388, -7.723674781526645], + [-37.923278923937545, -7.716137090276248], + [-37.92099495995584, -7.713746457514962], + [-37.91994727164829, -7.713184250362467], + [-37.917303583889314, -7.711766538556593], + [-37.913095947195615, -7.709509321759505], + [-37.89436372068668, -7.713662658987717], + [-37.89232639439272, -7.710974628795036], + [-37.903355383611476, -7.698136954830904], + [-37.903313790791394, -7.698086683260228], + [-37.903341338745285, -7.698054586287935], + [-37.897382733030724, -7.6908637846145105], + [-37.88062705574033, -7.683686551679255], + [-37.869678560510074, -7.667595314870342], + [-37.857187458235, -7.652006291314354], + [-37.8439386753933, -7.647209692153611], + [-37.80799944617491, -7.643997538687778], + [-37.79083660559346, -7.625981256675188], + [-37.78098939102874, -7.627081444685127], + [-37.776389319488814, -7.634749368884927], + [-37.77615247433786, -7.646666149513994], + [-37.771947090750956, -7.648273805773165], + [-37.76811449678679, -7.648711241856806], + [-37.76742818141858, -7.655875104976935], + [-37.76818320121125, -7.655934661711646], + [-37.76801278367676, -7.65663256561013], + [-37.76735970321793, -7.656587143664197], + [-37.767270971527175, -7.657516894447803], + [-37.764616557146226, -7.631419909026167], + [-37.75800777126984, -7.634157418077689], + [-37.75587683185385, -7.619559388140917], + [-37.745735614525024, -7.609368697861921], + [-37.744130218271025, -7.604048721326394], + [-37.74148212889541, -7.597570472981428], + [-37.7349795514074, -7.597252707381988], + [-37.72876147435623, -7.579767881915166], + [-37.72106077394973, -7.581930673102668], + [-37.711040743488624, -7.573790848316327], + [-37.70660130737985, -7.569504576338923], + [-37.71011815049427, -7.559563686756295], + [-37.706535951133056, -7.550621648120675], + [-37.68218035521807, -7.5484138973444415], + [-37.67666436834088, -7.535651737775313], + [-37.65955935565776, -7.523175294002792], + [-37.649857344600086, -7.530348638238021], + [-37.644571547644716, -7.529916244039967], + [-37.63040787316093, -7.532549032306383], + [-37.61997432045523, -7.5259175309183295], + [-37.611403114465716, -7.518606322923795], + [-37.60980054597442, -7.508069750588832], + [-37.58675950957506, -7.49914666335171], + [-37.57181386570561, -7.48915140202957], + [-37.5525674156527, -7.479653238667013], + [-37.53309709289962, -7.47299148034851], + [-37.5279887999039, -7.465348977244263], + [-37.52862097645708, -7.460106376090761], + [-37.52743438088004, -7.4484190608560725], + [-37.52173656214597, -7.439516735680084], + [-37.514206622315456, -7.433072784068704], + [-37.51367000036747, -7.424765673928348], + [-37.50572478734427, -7.419198488853055], + [-37.49956607590939, -7.407402622864728], + [-37.497012135255495, -7.403502225157047], + [-37.49470363751122, -7.399060488759231], + [-37.48698920405911, -7.395093133585479], + [-37.49806991736167, -7.366881399992404], + [-37.48592505088459, -7.362106479416485], + [-37.478781526113465, -7.360024869703904], + [-37.465953612513225, -7.358082476784509], + [-37.44478620654527, -7.360716139256376], + [-37.4318526971324, -7.356697101867647], + [-37.42554314275767, -7.352955119234779], + [-37.41268197683098, -7.36191245018308], + [-37.40817093704673, -7.358143129101302], + [-37.385744739596745, -7.3567327296548894], + [-37.34954208620416, -7.337067508215054], + [-37.35731453799731, -7.3231536992240205], + [-37.34607053491621, -7.309005326297069], + [-37.33262544409977, -7.289771204284898], + [-37.31399263491119, -7.289399842934558], + [-37.307844038945866, -7.28928101000792], + [-37.28836434700193, -7.2883282494750885], + [-37.27779531252636, -7.275224587858174], + [-37.26085083433792, -7.274199577080179], + [-37.2336438893538, -7.274435714566437], + [-37.23287620653036, -7.275128040959665], + [-37.21420745048834, -7.291341007119715], + [-37.19670521811095, -7.294708550799507], + [-37.176958073651086, -7.309591837730038], + [-37.16856315871326, -7.319990831205303], + [-37.16814300617209, -7.332001195842677], + [-37.16537367755316, -7.336634458898301], + [-37.15709981437744, -7.33825297386489], + [-37.144976266372154, -7.335084572057424], + [-37.140369801440045, -7.34216459133542], + [-37.1353476107593, -7.346703606547617], + [-37.12801077167469, -7.344041055979495], + [-37.12159647910195, -7.350953401430321], + [-37.106737085435185, -7.353929446584315], + [-37.101896492521824, -7.356670149749291], + [-37.09737949938821, -7.354007607868987], + [-37.08565540646408, -7.358295456959581], + [-37.08143070638564, -7.363573363356835], + [-37.07298207178005, -7.3683144436328165], + [-37.06946459145404, -7.382422888198381], + [-37.053218466383136, -7.379537284340196], + [-37.05002019829115, -7.37762742769412], + [-37.02795771380788, -7.385903385285934], + [-37.01373546918783, -7.403831457576908], + [-37.013393683965255, -7.404062627347566], + [-37.02601110634185, -7.4225015905197305], + [-37.01759776459453, -7.424611887569771], + [-37.01454128012083, -7.430406870763288], + [-37.02364872710849, -7.433906165046336], + [-37.02283446114714, -7.436065937625276], + [-37.02125799591175, -7.440235587630478], + [-37.013210354755884, -7.445022362375907], + [-37.0107640719911, -7.453674069096128], + [-36.997343590078415, -7.459431620845778], + [-36.99409594489467, -7.464749317907915], + [-36.995486878860056, -7.472627782348832], + [-36.98545643204123, -7.4756404651413195], + [-36.984258848537536, -7.482300133401991], + [-37.00328640106905, -7.496426835490492], + [-37.0105947561176, -7.489595432133943], + [-37.02523577344276, -7.496736184192778], + [-37.02602132955796, -7.497250013928465], + [-37.02619453152016, -7.497363088210054], + [-37.03044875715794, -7.498476122589219], + [-37.04319071892953, -7.50395237340266], + [-37.05385552421074, -7.504606918387739], + [-37.06834096482152, -7.517147024051365], + [-37.08622877428639, -7.517831987677495], + [-37.106137295648814, -7.531165423510046], + [-37.12155643442835, -7.536157001160539], + [-37.133765155543664, -7.550082607945158], + [-37.15580176446284, -7.56791867531447], + [-37.173259707144865, -7.58793517486142], + [-37.18055385705458, -7.602031438718723], + [-37.18059145910034, -7.602179510671052], + [-37.184135491427035, -7.615853263685091], + [-37.19670489641858, -7.629619297512212], + [-37.19735381111362, -7.645472708667998], + [-37.195163239470155, -7.652100262795269], + [-37.18014906488982, -7.667142786724128], + [-37.17409023818713, -7.684332361373339], + [-37.161072025787384, -7.698004265397384], + [-37.154574220322885, -7.706441008733419], + [-37.15052964420668, -7.715969562292163], + [-37.15063066859536, -7.72906942009854], + [-37.13897697315626, -7.745554737616214], + [-37.15706444356578, -7.7730372849739435], + [-37.156813201082514, -7.776905262541502], + [-37.15198291877816, -7.779881994651651], + [-37.15984538733418, -7.793253166840899], + [-37.16828716967241, -7.79515723747777], + [-37.171398218110696, -7.795208155614689], + [-37.170700270079365, -7.800266635059851], + [-37.17577222271205, -7.796365200645934], + [-37.183067312171346, -7.790754128238418], + [-37.19157054594682, -7.791206311043943], + [-37.19798974635938, -7.798952924720855], + [-37.217447897366306, -7.806722705049693], + [-37.22302974092167, -7.804099069243639], + [-37.23059356347889, -7.806777798002583], + [-37.23020890593415, -7.813145874086991], + [-37.24368786095953, -7.819038549059613], + [-37.24049362488785, -7.82313115371993], + [-37.22818667693828, -7.821555057162485], + [-37.22212475380465, -7.842286695338903], + [-37.24718196790038, -7.846840602733071], + [-37.25040171824308, -7.853691739564041], + [-37.24495736596474, -7.861621503883704], + [-37.24689951683601, -7.8682155169649945], + [-37.24412434501564, -7.87388208385504], + [-37.253415415361246, -7.88027975245024], + [-37.28742596697342, -7.903912921600925], + [-37.303683273327906, -7.9042121042544755], + [-37.30731037877688, -7.90734412125619], + [-37.31879883300838, -7.908992994749464], + [-37.32280141356924, -7.913034230690475], + [-37.313290858367274, -7.91142204036089], + [-37.30801566201301, -7.915022768943483], + [-37.31143212990195, -7.921685302637244], + [-37.308085632573196, -7.927096940617454], + [-37.30900774109698, -7.934213462453258], + [-37.314734909863525, -7.935970364104712], + [-37.317655421690716, -7.942806292552561], + [-37.3347621174376, -7.943082738860605], + [-37.350248035425494, -7.948630022912026], + [-37.34795472452046, -7.95544784390602], + [-37.35621129084347, -7.972766721107098], + [-37.355903066354195, -7.97590135886661], + [-37.341315457893266, -7.9745650451084895], + [-37.33981503053221, -7.9798398132461905], + [-37.31702506526914, -7.968101454966078], + [-37.30336829086788, -7.970248586585062], + [-37.2956078808931, -7.964957221144235], + [-37.277434252700154, -7.972015030573616], + [-37.26356722505378, -7.968213479605443], + [-37.24701486099336, -7.969392514426493], + [-37.23737333601946, -7.9733430769173195], + [-37.23079325312253, -7.969433195303582], + [-37.22881475927562, -7.972630362827051], + [-37.219620737854896, -7.972827855768346], + [-37.22146905563682, -7.9624451639243], + [-37.217312008545385, -7.956427226101304], + [-37.21290136752716, -7.954951283877964], + [-37.20742606588995, -7.952236924186405], + [-37.19270761660864, -7.9606343645529405], + [-37.193426638300146, -7.982902826741066], + [-37.18830731503123, -7.982994942841979], + [-37.18550312345932, -7.990480007053977], + [-37.1784252333798, -7.990622106765895], + [-37.17534208245801, -7.996894470395885], + [-37.160451147843, -7.997188936660675], + [-37.151826865139945, -8.009450792211071], + [-37.149686241997486, -8.022850454133648], + [-37.14960352227239, -8.023774116459466], + [-37.14843107694199, -8.035149515478093], + [-37.15812466639498, -8.051260149157466], + [-37.15687754558135, -8.064568544983267], + [-37.14554168030754, -8.082225535615125], + [-37.14373945617881, -8.08800121616513], + [-37.14785020979046, -8.10012802519496], + [-37.142590169994, -8.117980348468969], + [-37.14420461107118, -8.125031960872215], + [-37.153260865230706, -8.127502770765737], + [-37.15864610959196, -8.138904876927544], + [-37.15103627495759, -8.150076999058166], + [-37.163453524543506, -8.158723142933834], + [-37.16025760202409, -8.170435826831179], + [-37.141225006050284, -8.177269483749551], + [-37.126484654101695, -8.173719225622035], + [-37.1182925611061, -8.175387202204387], + [-37.11869392029229, -8.18042531946131], + [-37.12613221466172, -8.19153242034429], + [-37.12294733876099, -8.209101621339906], + [-37.10046110565414, -8.233741938025142], + [-37.089925368803904, -8.231200983043477], + [-37.08092813086208, -8.221926549564339], + [-37.067451351192084, -8.230137581914748], + [-37.066564375286305, -8.233034263424944], + [-37.08065314288869, -8.241117078737256], + [-37.08123607209621, -8.266409344586462], + [-37.04014581095676, -8.266420062181579], + [-37.0206818299643, -8.28970664620927], + [-37.01537867136752, -8.292109776271387], + [-36.99118865114474, -8.30298886305719], + [-36.97805131594204, -8.297451821786726], + [-36.95495726985134, -8.299385509644033], + [-36.951422595713325, -8.296934768870672], + [-36.94734217445391, -8.291098936614375], + [-36.9477599412602, -8.27915473413213], + [-36.94498026687337, -8.275288043948368], + [-36.92303239570461, -8.26986453613081], + [-36.90829814809844, -8.253129492560204], + [-36.89598371954265, -8.240854911918273], + [-36.8792628286432, -8.235679534372226], + [-36.861736228601586, -8.222461660282454], + [-36.81254532549062, -8.205328920965604], + [-36.8058123901892, -8.195478708439705], + [-36.7948820299021, -8.189816130974842], + [-36.787871867463835, -8.18986864343289], + [-36.77540828628606, -8.19075603888662], + [-36.76160415230612, -8.196328675604196], + [-36.75354266050416, -8.191512951743741], + [-36.75017690955194, -8.175738869022169], + [-36.742643709216665, -8.173024602759241], + [-36.724006619876654, -8.17250353547761], + [-36.72243959245579, -8.16836850685915], + [-36.7158160001492, -8.167351079189498], + [-36.725815968229014, -8.156483241970008], + [-36.72284325443946, -8.150999545485506], + [-36.7086958773924, -8.156344541719132], + [-36.68708534209901, -8.155713246963828], + [-36.694499431137075, -8.143901476806795], + [-36.68906458789932, -8.137804600057692], + [-36.66787937822152, -8.124300848442218], + [-36.64035422537679, -8.11994552456114], + [-36.62864678183469, -8.11108536254381], + [-36.62788844141777, -8.102893127710402], + [-36.637020070760556, -8.093282081714582], + [-36.64727339010685, -8.092525224442657], + [-36.64866875399584, -8.082766203609479], + [-36.65730802554819, -8.082112680492259], + [-36.65786559775892, -8.07616785549257], + [-36.6576120216082, -8.075594764731699], + [-36.65382681763711, -8.070419358137757], + [-36.63424484373225, -8.059344181899325], + [-36.62788706485287, -8.055784564186643], + [-36.62823196303631, -8.014106668599934], + [-36.62788667860845, -7.986442285769005], + [-36.623206248005346, -7.982117087592407], + [-36.62268754576955, -7.9695448989226225], + [-36.61349782119854, -7.956552693596241], + [-36.61191030618408, -7.947933320022326], + [-36.58689548620584, -7.958691766477431], + [-36.57681580139439, -7.9596813192860765], + [-36.57324287622441, -7.955987697706267], + [-36.574222461690006, -7.951710137575137], + [-36.580013501397325, -7.948676204745881], + [-36.572624659509046, -7.936009988648899], + [-36.578234501306994, -7.915283533303972], + [-36.57484558498846, -7.907536558481617], + [-36.56874068162652, -7.903191633073465], + [-36.55205492348485, -7.8987499997307085], + [-36.53650114382673, -7.9016453597200345], + [-36.51289133683486, -7.914907484462226], + [-36.49942384054837, -7.920350723973105], + [-36.48815055607231, -7.915420492750947], + [-36.48017066164178, -7.924799026900151], + [-36.464135177300406, -7.915385919462071], + [-36.4463364472317, -7.916415727654952], + [-36.4437318236863, -7.91436667731398], + [-36.445790667242875, -7.908204087675742], + [-36.43441396876841, -7.896354188503195], + [-36.42989364544419, -7.885104711285193], + [-36.432757777984236, -7.880021955779687], + [-36.440419078404325, -7.87828699667388], + [-36.42909283044435, -7.8670732907643], + [-36.42999888944942, -7.827147788222828], + [-36.42408317328245, -7.815814599039181], + [-36.407459244752694, -7.814112043490125], + [-36.3964652894348, -7.80873376881606], + [-36.37348939977636, -7.812656951994403], + [-36.36075689053909, -7.80575458245316], + [-36.336920863373315, -7.809460554657846], + [-36.309167820631, -7.806723588467651], + [-36.294398454449016, -7.811934549664358], + [-36.27114856226777, -7.830602460412149], + [-36.263544001069654, -7.831777152931188], + [-36.253329958362684, -7.829987596714144], + [-36.24004890018546, -7.817717286235794], + [-36.23957337389735, -7.81124776301035], + [-36.25437308869067, -7.801729697419415], + [-36.254232766238474, -7.796423244050728], + [-36.246342245869876, -7.785347165703979], + [-36.216671283657234, -7.764140784488504], + [-36.20652205597211, -7.77041432247468], + [-36.20099548597627, -7.789939604863185], + [-36.18231202503324, -7.783873839197972], + [-36.14340790384039, -7.781598658839953], + [-36.126859142945975, -7.784238860929841], + [-36.117315455308805, -7.7858217649161885], + [-36.103410894646586, -7.779462606086304], + [-36.06903008343792, -7.781009168793606], + [-36.05391065430505, -7.8013963963780855], + [-36.043286554212834, -7.793698127119695], + [-36.035450911622256, -7.796227586780069], + [-36.021626568709564, -7.810275374549642], + [-36.003331106923575, -7.812869746624668], + [-35.99826090963325, -7.813792449348521], + [-35.99278752843765, -7.80050141571441], + [-35.979331170635845, -7.802027672602489], + [-35.96999747135886, -7.78949603293948], + [-35.959064585720185, -7.787298375905375], + [-35.94339585480305, -7.790023206880269], + [-35.93292056212858, -7.784460538702833], + [-35.91482769235246, -7.790119296175795], + [-35.905636462407834, -7.79246299244108], + [-35.90321065430824, -7.791607795360058], + [-35.893536925902104, -7.783709952810001], + [-35.8935372089544, -7.78370960638862], + [-35.891781857578444, -7.779993469369402], + [-35.88955049091888, -7.777925983337012], + [-35.88706989008632, -7.7765689654587815], + [-35.882943515059885, -7.772012722835281], + [-35.88150617758068, -7.767662345624921], + [-35.88108318933126, -7.766379840353572], + [-35.88108253740869, -7.766377829215703], + [-35.881056844172, -7.7662985673186755], + [-35.881088079071574, -7.766291834170186], + [-35.881656004049866, -7.7661694088230995], + [-35.883110581881, -7.764160477534836], + [-35.883395875931015, -7.761876355365979], + [-35.88173990053086, -7.756172903911592], + [-35.88173648295429, -7.756161133630336], + [-35.881735223510944, -7.756156796053542], + [-35.88162818247035, -7.7557867982872475], + [-35.87712879248119, -7.751306996133448], + [-35.87215881231459, -7.749576177001514], + [-35.872157111264976, -7.7495755845974434], + [-35.87215676493088, -7.749575463983814], + [-35.87112353092494, -7.749467144985015], + [-35.870442882113174, -7.749836319794683], + [-35.86958215594376, -7.750303161346766], + [-35.868609159941855, -7.750115219019872], + [-35.86727627822061, -7.749857759032372], + [-35.86232417184592, -7.751070833286564], + [-35.862323747187304, -7.751070937307268], + [-35.8623219736533, -7.751070399745789], + [-35.85069577642498, -7.747546381226765], + [-35.84178657919365, -7.747019915602594], + [-35.84178614046805, -7.747019889672844], + [-35.84178521999952, -7.7470198352709145], + [-35.835850607374994, -7.747645248478568], + [-35.834645145485844, -7.748291183175994], + [-35.83316722894973, -7.74993430010448], + [-35.83316681471668, -7.749934760633972], + [-35.83242144683197, -7.750763183829944], + [-35.82983808366223, -7.75178022092307], + [-35.829831852682375, -7.751782673936622], + [-35.82983106820885, -7.751782982768336], + [-35.828536940185366, -7.7516855213866975], + [-35.82762065447021, -7.751089920885994], + [-35.82533368577438, -7.749603353303801], + [-35.82087900997522, -7.7489777683110885], + [-35.820546285187646, -7.748931041106955], + [-35.82036325510151, -7.748816180051692], + [-35.82036266261702, -7.748815808236333], + [-35.817371096054465, -7.7469328518026], + [-35.81589677523381, -7.746712614669598], + [-35.8158960674429, -7.746712508937338], + [-35.81373128174142, -7.746389121166094], + [-35.81282898474785, -7.745742929320261], + [-35.81060599050538, -7.745353375908676], + [-35.80814954323902, -7.746708623088441], + [-35.806138161184776, -7.746721447157448], + [-35.806134629973045, -7.746721469662501], + [-35.804215907311026, -7.745711524493234], + [-35.80328573118041, -7.744783051644469], + [-35.8003580635003, -7.74186075574595], + [-35.79753422915972, -7.740874561121823], + [-35.797521693397925, -7.740870183115217], + [-35.79481831152646, -7.739926045620326], + [-35.79190577853059, -7.740456643869954], + [-35.7899708369942, -7.7404725642334515], + [-35.78994972821153, -7.740472737860074], + [-35.789254462704726, -7.74047806468801], + [-35.788714532439954, -7.74019264742595], + [-35.78660987770151, -7.739080085452691], + [-35.78062237826807, -7.738389574156279], + [-35.78061578269485, -7.738388813478338], + [-35.775365048813924, -7.734196498147042], + [-35.77474428618703, -7.733364955254777], + [-35.77438957410789, -7.732889801590643], + [-35.77385349608448, -7.732603233898983], + [-35.77298122647849, -7.73213695006331], + [-35.771105634624064, -7.730253520971209], + [-35.76761220850571, -7.726745516207669], + [-35.764888809436265, -7.724936892133359], + [-35.759038075175496, -7.722449572948219], + [-35.751852956605326, -7.723700019375266], + [-35.75185211498159, -7.7236999347348885], + [-35.74729138826142, -7.723241250053244], + [-35.74629821973365, -7.720980541406976], + [-35.74625635849963, -7.720885255234366], + [-35.74494007499097, -7.717890830774583], + [-35.74314439856392, -7.713805938429293], + [-35.74314292432819, -7.713804359454412], + [-35.74141987584403, -7.7119588985762], + [-35.73659227871631, -7.709637740290416], + [-35.73658814812121, -7.70963575768873], + [-35.73228427109189, -7.708504332782177], + [-35.72825858953615, -7.708035669843905], + [-35.72144310703487, -7.709498576046292], + [-35.72144079372803, -7.709499072555107], + [-35.71919884409087, -7.708764235070244], + [-35.716954226126816, -7.7086212459923775], + [-35.7136593541154, -7.707406739687973], + [-35.71164560016585, -7.7052509069782165], + [-35.711630836413654, -7.705209408455781], + [-35.70942476656935, -7.699008691325037], + [-35.70822913543295, -7.697387519214068], + [-35.7082266335535, -7.697384126892519], + [-35.70822505562758, -7.69738237540436], + [-35.70680938270826, -7.695810990251311], + [-35.70012260772938, -7.691898059997999], + [-35.70011561853289, -7.691893970087238], + [-35.70011515438468, -7.691893698478787], + [-35.697279970900105, -7.691976683428924], + [-35.69539252984126, -7.6940107861479685], + [-35.695392835628944, -7.69402636068147], + [-35.69545125261569, -7.6970027378671135], + [-35.69375871454228, -7.699815030330644], + [-35.693756759199445, -7.699818279219407], + [-35.69375643534784, -7.699818354907336], + [-35.689951229763565, -7.700707647598967], + [-35.68445247755684, -7.700226030198417], + [-35.683374649834256, -7.700131619310222], + [-35.6809422666994, -7.7003797801268465], + [-35.67523478346142, -7.700224915119261], + [-35.675197258301345, -7.700218300351748], + [-35.67519714934055, -7.700218371185039], + [-35.67519648060926, -7.700218242845849], + [-35.658941427229855, -7.697267618102009], + [-35.65894145047796, -7.697267538665032], + [-35.658940899396725, -7.697267522283772], + [-35.658940672792454, -7.697267481148058], + [-35.657609668743625, -7.6972279105611925], + [-35.65560187170956, -7.69708582757202], + [-35.64531035503963, -7.692446012198943], + [-35.626888625082856, -7.675572980755434], + [-35.622536153253186, -7.670029672683384], + [-35.619550713308776, -7.664119294700909], + [-35.61586767732165, -7.65898338115447], + [-35.609703050734296, -7.6538166421958875], + [-35.5975296612159, -7.654372761711677], + [-35.589111976161625, -7.650838740719422], + [-35.57346572415346, -7.655138867968401], + [-35.56584518160191, -7.656697062102866], + [-35.56083176196788, -7.659907423332133], + [-35.553465497081945, -7.658683578978636], + [-35.54794370739989, -7.657374744856716], + [-35.532853500531814, -7.654854717957464], + [-35.52699472960765, -7.645161935170051], + [-35.51511210874541, -7.643284395530221], + [-35.531729619123325, -7.621703556315417], + [-35.52585254478745, -7.607601547728704], + [-35.518140992883545, -7.606468677082607], + [-35.52119876649519, -7.5964436963358715], + [-35.51795664312205, -7.58974344380091], + [-35.515235770166576, -7.585058731476806], + [-35.531008884223645, -7.590046624259146], + [-35.537881249979186, -7.586678907761689], + [-35.53735142781618, -7.580759292962839], + [-35.537323209276906, -7.580761597062492], + [-35.53731586783586, -7.5806812462909825], + [-35.52725287746928, -7.569999275504324], + [-35.52420312912834, -7.558845080302552], + [-35.51995729699873, -7.550419809185254], + [-35.51974616402504, -7.535483192489732], + [-35.51079600201101, -7.5282891027865695], + [-35.50922608548045, -7.5175298711345295], + [-35.5048736774698, -7.514080653069111], + [-35.5019671678895, -7.512549289093051], + [-35.504061910229225, -7.499798748257559], + [-35.506312829327854, -7.497386084498441], + [-35.50764701912591, -7.486533465659093], + [-35.50334446283029, -7.456118111877606], + [-35.489333668136894, -7.450197671233429], + [-35.47539953216907, -7.444938140233115], + [-35.45209873095768, -7.4529922120739025], + [-35.441612270141135, -7.457014207292342], + [-35.434452623325384, -7.470828706085508], + [-35.42239949395935, -7.47521466259993], + [-35.415777181632855, -7.47219419394622], + [-35.40828168849795, -7.461171043829816], + [-35.38267814095117, -7.449168684814317], + [-35.38073398728216, -7.448861320503194], + [-35.37600274967699, -7.4489241230096175], + [-35.36899811378259, -7.4408412166479], + [-35.36295122017129, -7.442836306821029], + [-35.351147213947996, -7.440300410137402], + [-35.34864433613493, -7.4349798466589805], + [-35.35239706134824, -7.422436639969526], + [-35.34819713753382, -7.422298292367134], + [-35.343873023764004, -7.422512663782005], + [-35.34266644336014, -7.422072402143481], + [-35.33356108069985, -7.422795712467924], + [-35.332934042537254, -7.415371894020183], + [-35.33506383737722, -7.40684309091955], + [-35.32414158550291, -7.411359215691687], + [-35.316200348317786, -7.405729138721995], + [-35.30656374783723, -7.407955661423745], + [-35.2802232083846, -7.387694860761314], + [-35.24611229422592, -7.374646376009576], + [-35.234419878287696, -7.3782330676230945], + [-35.22935900653897, -7.378409271266919], + [-35.2246216732262, -7.379314135752603], + [-35.200150565642815, -7.387644646633753], + [-35.19078963135586, -7.397930638294795], + [-35.18979183363954, -7.397302117795339], + [-35.180851663582565, -7.395941148793689], + [-35.17211158699538, -7.388079747716508], + [-35.15383747127189, -7.392496197594981], + [-35.14842898108331, -7.394572644349425], + [-35.12631338744659, -7.399942226974043], + [-35.12620500920777, -7.399973941538894], + [-35.125462836106045, -7.402640960677144], + [-35.10936324548275, -7.407278129431873], + [-35.09783623119191, -7.408366270576788], + [-35.08495149581666, -7.4027134537347345], + [-35.07906585774759, -7.396345344147198], + [-35.07523008323731, -7.397451296666845], + [-35.07039025035661, -7.3989150980322504], + [-35.048145190130306, -7.417850616300923], + [-35.02960253332106, -7.425859665867457], + [-35.01167589598508, -7.4452047362438245], + [-34.98546156503617, -7.462045321321389], + [-34.98425155220482, -7.469359735337134], + [-34.99022842745296, -7.488917025990014], + [-34.985183596120635, -7.50004898084258], + [-34.985202141572756, -7.500825617203788], + [-34.98426932400006, -7.507925552132865], + [-34.97911101284223, -7.5097357311197905], + [-34.96948639847994, -7.5211027634626735], + [-34.96083244285627, -7.53880319932162], + [-34.950662914176476, -7.537659959022736], + [-34.932728018349856, -7.528558416629388], + [-34.92449352074902, -7.532648343958901], + [-34.91735807837978, -7.541807505402924], + [-34.911067531196615, -7.5434801429220695], + [-34.91053682199134, -7.538174966307918], + [-34.899945743178385, -7.537469055929604], + [-34.9020885059149, -7.5436008024454395], + [-34.895588395749, -7.545112508320539], + [-34.88878529806281, -7.535941617695132], + [-34.87364034671011, -7.54328568903581], + [-34.87076246705793, -7.549196398411196], + [-34.85806968191304, -7.537988470528462], + [-34.85389289527532, -7.539684984107616], + [-34.84040938235785, -7.543871488224246], + [-34.838636788321914, -7.54433643797302], + [-34.83166467885876, -7.551962232308536], + [-34.837083617493555, -7.553557221853119], + [-34.840114831636185, -7.553814515275493], + [-34.83783746321167, -7.565588318500752], + [-34.83480411890761, -7.5638110599723465], + [-34.82958439804212, -7.581433013477001], + [-34.824554868982666, -7.58693946756577], + [-34.82410758510955, -7.5978298385988605], + [-34.810900841738125, -7.615522058345071], + [-34.807611069085496, -7.625506709889377], + [-34.82051812922932, -7.645081112062721], + [-34.8208524703263, -7.645716932693176], + [-34.822338260592986, -7.64854177374528], + [-34.83027636841097, -7.672130532408838], + [-34.8339746473298, -7.683582774517625], + [-34.83926918660527, -7.683027103110251], + [-34.84130244428269, -7.682773444203632], + [-34.84635673599037, -7.688730313313727], + [-34.8422508994633, -7.69546011104271], + [-34.83168063766474, -7.700576722860161], + [-34.83377735331855, -7.711586964205736], + [-34.831138666883255, -7.72669042173045], + [-34.82613428701623, -7.726613871675952], + [-34.82305491208528, -7.743703732909452], + [-34.83766141580962, -7.792019465447633], + [-34.83658117543947, -7.810086968357728], + [-34.84738759291281, -7.812610789014984], + [-34.847753128640136, -7.816051529676533], + [-34.84211229145496, -7.827381587315154], + [-34.84469044196198, -7.837099426987051], + [-34.84083548412154, -7.8444830438241135], + [-34.836827611466425, -7.844931914606973], + [-34.83291900744434, -7.8738060680122945], + [-34.824138937481486, -7.887004305341424], + [-34.824026585161945, -7.906975728079355], + [-34.81969451709983, -7.917800486817185], + [-34.82876127418157, -7.9586724080186055], + [-34.837400707211856, -7.989373937131342], + [-34.83789896275688, -8.006158719161965], + [-34.863185124444335, -8.036712540329873], + [-34.86470419633959, -8.039987384958684], + [-34.86065040644606, -8.044668425747364], + [-34.8596360758257, -8.048659196748181], + [-34.879935506845726, -8.090479995724289], + [-34.91221491293381, -8.16265630318968], + [-34.9185376157362, -8.184998056932713], + [-34.91663410466271, -8.208102963107484], + [-34.924870619143505, -8.224642183613573], + [-34.921600624471964, -8.223485638620144], + [-34.92003755567144, -8.227172715560418], + [-34.94020262896529, -8.254536901969656], + [-34.94421788000248, -8.279873999160099], + [-34.95013388984719, -8.290239397489104], + [-34.950564626259336, -8.297319463016319], + [-34.939474837994695, -8.303111720643411], + [-34.95147074208866, -8.33760933205225], + [-34.9486075070661, -8.343042377067885], + [-34.94232170620571, -8.3435256881814], + [-34.94063555621843, -8.351805313275472], + [-34.946665479636366, -8.35908373582524], + [-34.9553062714756, -8.355175806778702], + [-34.96128308165779, -8.366077737630103], + [-34.9522957737225, -8.375768524684602], + [-34.967485980358305, -8.409814521445591], + [-34.97744348126601, -8.406805491667063], + [-34.985533715775446, -8.410737350410125], + [-35.0009808587205, -8.411583267063962], + [-35.00592921826675, -8.414728956227302], + [-35.00860271962671, -8.41253553484218], + [-35.014873350772156, -8.423339448605104], + [-35.005841752672964, -8.427787945107017], + [-35.00618258523269, -8.431364773165607], + [-35.012551395105874, -8.433586150523123], + [-35.018929953191694, -8.425711195905388], + [-35.028308897937755, -8.427177261289998], + [-35.029923828963234, -8.421554657133784], + [-35.03393447750939, -8.42798842153741], + [-35.05739259516186, -8.465639041192135], + [-35.04922849956371, -8.470465923016194], + [-35.02808092578339, -8.466485433513384], + [-35.027133570194124, -8.473304819783571], + [-35.03377320019213, -8.487553252492992], + [-35.02668998924349, -8.507625627505346], + [-35.022170742973096, -8.508371364079895], + [-35.02180810187476, -8.505712778334217], + [-35.01928582070561, -8.496420288125778], + [-35.00990488881553, -8.496520363017204], + [-34.998302202525, -8.473165227118919], + [-34.99431800669702, -8.46390562161747], + [-34.995739308852094, -8.452610610671409], + [-34.985766509531665, -8.460746919408964], + [-35.00074031235563, -8.491309494923534], + [-34.996635227203484, -8.508060357267887], + [-35.00224924981227, -8.516211753066697], + [-35.004077680128965, -8.526205022435146], + [-34.99929169380613, -8.539598963166457], + [-35.00203396152231, -8.547531883541403], + [-35.00647295786276, -8.558121356804914], + [-35.00478131142022, -8.566011154031964], + [-35.00933644793604, -8.567594357283175], + [-35.016058771624834, -8.56313028836439], + [-35.02332770394711, -8.565477189318017], + [-35.03055580986687, -8.573326964350978], + [-35.037259213442034, -8.589374543217145], + [-35.043141722346824, -8.59590092117305], + [-35.04340984806676, -8.604958473340893], + [-35.04634787993624, -8.605962646997087], + [-35.045933358276606, -8.615337190801231], + [-35.05675877477104, -8.626382860720314], + [-35.07116271933917, -8.6554877449813], + [-35.069206272285484, -8.672342808826578], + [-35.08077961761289, -8.680157113370642], + [-35.08565473293901, -8.691376788236553], + [-35.07929931308342, -8.703347048036578], + [-35.07892615283749, -8.711001067371457], + [-35.08709651021245, -8.71982304802295], + [-35.090525567440174, -8.729877678173095], + [-35.08637522776408, -8.746983489499382], + [-35.105347320623004, -8.768442505435083], + [-35.10663566822066, -8.77652303795896], + [-35.103103035630085, -8.785229281255772], + [-35.107472209068476, -8.794659770787847], + [-35.11911279346545, -8.802966064784403], + [-35.12183180394404, -8.812859518811576], + [-35.132139963740414, -8.826786447910413], + [-35.13424229023137, -8.84124887356022], + [-35.130438498119254, -8.862846952466498], + [-35.1296911174175, -8.86711624954001], + [-35.13757811846706, -8.876727515787223], + [-35.15263036076017, -8.913733478048341], + [-35.15520884685979, -8.903163215939545], + [-35.16285716074839, -8.89743878572751], + [-35.1708664252142, -8.89102616014653], + [-35.2006328793933, -8.888247187821783], + [-35.209138319388174, -8.891794029197191], + [-35.21149607944707, -8.888880311700271], + [-35.220154724192746, -8.889301879941545], + [-35.2350610676581, -8.883226888186675], + [-35.24365264411605, -8.885178766388407], + [-35.24446081728147, -8.884974882336063], + [-35.24422295746066, -8.885308372330076], + [-35.25282809212443, -8.88726346653472], + [-35.27762496312513, -8.875191446019906], + [-35.28769515137884, -8.876584138692778], + [-35.299336975632144, -8.87366435005363], + [-35.30637405050495, -8.871897756602088], + [-35.35079893329177, -8.860741683098768], + [-35.38301814949827, -8.852742846069871], + [-35.40003192495326, -8.85034158822265], + [-35.40755401389836, -8.842417867092074], + [-35.40905757644359, -8.838017411812357], + [-35.414375532347, -8.836440948337685], + [-35.41673917367997, -8.838863539010994], + [-35.43196076112022, -8.836036452091609], + [-35.43591786149212, -8.84096008797586], + [-35.450858158937955, -8.841367090515893], + [-35.45986680137382, -8.837800881307126], + [-35.461885884537104, -8.830190394025774], + [-35.466803085261674, -8.828293264854457], + [-35.46238922248847, -8.818859860596826], + [-35.47017086217137, -8.813156189209213], + [-35.47625535163527, -8.818300267818422], + [-35.48062543729246, -8.819963906754927], + [-35.48216951952831, -8.82618157996481], + [-35.49351936890552, -8.825358162469806], + [-35.49579969846642, -8.828331757348305], + [-35.500395966847904, -8.824992760662447], + [-35.50042102836265, -8.820196652023654], + [-35.50430387212799, -8.822328278895162], + [-35.511568786398406, -8.817564704737396], + [-35.51781658044337, -8.816786866969798], + [-35.53149377524481, -8.82830044589771], + [-35.535220928292716, -8.819484240988498], + [-35.53985981895231, -8.82111124526504], + [-35.55701048760502, -8.831513492194592], + [-35.56372435295071, -8.831676118980521], + [-35.56752466295119, -8.835473624682104], + [-35.57021773893338, -8.842820201967832], + [-35.58256613498441, -8.846497203464171], + [-35.59415460862991, -8.854884094218205], + [-35.59623902051239, -8.861021239108897], + [-35.60553655742469, -8.865182498743405], + [-35.61382757784158, -8.864424208301468], + [-35.62917535775317, -8.879364600343065], + [-35.652028084051096, -8.882285941750991], + [-35.65755994322599, -8.88068783686328], + [-35.66476905806446, -8.891011871679035], + [-35.670035111011224, -8.895275081946531], + [-35.687544390374065, -8.898535801534866], + [-35.70031994555406, -8.906620097825565], + [-35.713744548676054, -8.904827441934215], + [-35.72036522443429, -8.907858264443577], + [-35.72335126480523, -8.909502503055139], + [-35.72906523168139, -8.910568395728527], + [-35.748442514027644, -8.917181579347716], + [-35.76096057832834, -8.908110437712786], + [-35.773285506022106, -8.906169040246704], + [-35.77823173746899, -8.898918023252193], + [-35.78302403717851, -8.89757198324651], + [-35.779181501135234, -8.888671619479949], + [-35.78372043449167, -8.882031381478981], + [-35.776915047326526, -8.869086221637339], + [-35.7760232733965, -8.858487897271639], + [-35.781367600131325, -8.860995489429213], + [-35.78763937891086, -8.851160494029731], + [-35.79065970629537, -8.853443649414563], + [-35.795113889219046, -8.847715021343387], + [-35.807938799089406, -8.860417630139548], + [-35.81995228146482, -8.856904355733338], + [-35.82301918748375, -8.857449261453475], + [-35.82699354585002, -8.870124260724326], + [-35.83709359869574, -8.86877166862867], + [-35.84504362806972, -8.872510511206265], + [-35.84918168687352, -8.871842234762662], + [-35.85128077203804, -8.868055728171644], + [-35.86197353661133, -8.858399227864608], + [-35.886990088329945, -8.86309911915184], + [-35.89624285571078, -8.854298214077817], + [-35.901030919391765, -8.862442199877394], + [-35.911462711258444, -8.861319576305082], + [-35.91643362893103, -8.867613820637855], + [-35.92431846751726, -8.88465781509016], + [-35.942577690204274, -8.885629393841722], + [-35.95066142749144, -8.892325108301746], + [-35.96129658809928, -8.894398637882126], + [-35.965342935368405, -8.903174253776745], + [-35.97415390484229, -8.90172644629705], + [-35.98420187121974, -8.905247435350024], + [-35.98709398059594, -8.90331779115193], + [-36.00542589297014, -8.91303078688872], + [-36.03315026512934, -8.90844054239878], + [-36.0332954420746, -8.908449825520433], + [-36.06397663700745, -8.915367941990391], + [-36.0840276984888, -8.942260349672692], + [-36.086450286687636, -8.944097876155327], + [-36.12686841258921, -8.955759173416523], + [-36.12731982811441, -8.956141105431024], + [-36.12962813414757, -8.971357545862748], + [-36.126851837138034, -8.981306865639535], + [-36.11222951930547, -8.987818552852438], + [-36.10437057184604, -8.998959796473455], + [-36.10950756737698, -9.00845249410398], + [-36.11381522543181, -9.009244198765005], + [-36.11512958410631, -9.01343108650616], + [-36.111532467626404, -9.017703442145397], + [-36.12070228339827, -9.02747688884903], + [-36.1273199873148, -9.033699892273283], + [-36.1389314941979, -9.036040315330208], + [-36.14284723852683, -9.040354031140811], + [-36.15176741064492, -9.042724965335907], + [-36.1548231829799, -9.039990571880224], + [-36.16417396047376, -9.040519222731074], + [-36.17516957999475, -9.044181425631447], + [-36.17950488637205, -9.041047076305365], + [-36.18898708829377, -9.046325841337142], + [-36.19576504813416, -9.04481690600015], + [-36.19926898216261, -9.048877257356274], + [-36.204760492247665, -9.06909786707223], + [-36.21037927988436, -9.073168983467452], + [-36.22195333579586, -9.073333699710888], + [-36.22250873227524, -9.086464165123267], + [-36.236498604571224, -9.103520275529515], + [-36.245562317600196, -9.099074659558953], + [-36.26688341365783, -9.102411381470837], + [-36.26703601651829, -9.111121208706248], + [-36.26611296952798, -9.112059512327722], + [-36.26072538879935, -9.118552903136907], + [-36.263582974325296, -9.126034834103564], + [-36.257758651033754, -9.138390572004766], + [-36.246291396470596, -9.143630386046226], + [-36.242276058237145, -9.147495235609753], + [-36.239100256697, -9.160022266175746], + [-36.2251271771251, -9.167353438906275], + [-36.22428576913576, -9.171320479209474], + [-36.24791014590131, -9.177891273183507], + [-36.25315970923114, -9.173337740237892], + [-36.252543734869015, -9.181276384694527], + [-36.25602800489078, -9.182010532065094], + [-36.26156490535391, -9.177308603887486], + [-36.260177845181275, -9.170833669768756], + [-36.27113577985799, -9.171068751300753], + [-36.27421005761771, -9.166234267372348], + [-36.28779916190156, -9.173332861886466], + [-36.29501529578685, -9.172473019899465], + [-36.29724107347508, -9.176812581581167], + [-36.30055912747771, -9.175810875783473], + [-36.30785800227802, -9.178499379388924], + [-36.309831857837985, -9.172393024909784], + [-36.312364355428514, -9.179948607647177], + [-36.32156030134554, -9.185411242660072], + [-36.327684754611084, -9.200798241543874], + [-36.33892905572847, -9.207042040049256], + [-36.353955899948524, -9.201224044848846], + [-36.3489287357357, -9.214767505805682], + [-36.35364289835552, -9.220152379997142], + [-36.358385281880324, -9.218318618500955], + [-36.3657433810789, -9.222658141710468], + [-36.375912205703784, -9.216730519842228], + [-36.38229694912676, -9.220065039547217], + [-36.390078845620074, -9.224906394880724], + [-36.402951414104315, -9.223455001220529], + [-36.40750925656408, -9.221037985740052], + [-36.40870325530377, -9.221956437747403], + [-36.41533931343567, -9.22970435970798], + [-36.419841076523944, -9.22959913867205], + [-36.42440736124799, -9.226053915451025], + [-36.42333947320452, -9.215682984888153], + [-36.43704272454424, -9.212131035065786], + [-36.44127437771934, -9.219110157156942], + [-36.454297398568315, -9.2256925498103], + [-36.45369923210736, -9.232420866345057], + [-36.45773501696562, -9.233109563177102], + [-36.46255623931728, -9.239282045965664], + [-36.47616139098329, -9.243803586460904], + [-36.481371134815845, -9.239500268456874], + [-36.48792648698939, -9.241652418195642], + [-36.489847639339324, -9.252671585751402], + [-36.49272871435528, -9.25420928220255], + [-36.49137565307603, -9.262439167385056], + [-36.49869054232906, -9.264943462640392], + [-36.500409165847245, -9.262817355749277], + [-36.50335704945456, -9.271008106301167], + [-36.54933839578337, -9.285506721621537], + [-36.5718780288383, -9.292614072293771], + [-36.57279660646825, -9.320032773143454], + [-36.568244330621006, -9.318305003016969], + [-36.56394450647644, -9.322813221057729], + [-36.5675076841871, -9.332165976607131], + [-36.57611612279076, -9.33190990007831], + [-36.58630413600452, -9.338116167237462], + [-36.593110421115234, -9.334857723965934], + [-36.60508539251261, -9.341539413511427], + [-36.60775779023082, -9.333495624158411], + [-36.61288342862532, -9.333959916617392], + [-36.61478790015442, -9.331057469546044], + [-36.61503313356192, -9.323699094493824], + [-36.6196670156486, -9.328833699763281], + [-36.62346892640722, -9.326625232765345], + [-36.62489321914916, -9.331862829396488], + [-36.62791701846723, -9.332366313862963], + [-36.628766472718944, -9.328309861716692], + [-36.634654767253096, -9.32693495385298], + [-36.63549331845604, -9.320816258418834], + [-36.64067693812986, -9.32038953878117], + [-36.64472359806127, -9.314402953832078], + [-36.649774452669575, -9.315437189495459], + [-36.65719667673674, -9.311127769586793], + [-36.679670132914, -9.287530881842311], + [-36.68493275333198, -9.283024685695022], + [-36.693881824936, -9.27536368591832], + [-36.72832134347609, -9.273280172560003], + [-36.75882113713363, -9.271432217411398], + [-36.773438516090664, -9.279609309591416], + [-36.79718263385481, -9.293054854203993], + [-36.83607737718017, -9.288660577588292], + [-36.83974765313298, -9.288246035782501], + [-36.844237102951396, -9.282374565624647], + [-36.84840608447698, -9.276727390492765], + [-36.87129715905453, -9.268116788155579], + [-36.87981834267382, -9.276406854454551], + [-36.87480755710282, -9.276992964612848], + [-36.88416948243704, -9.28094691906328], + [-36.889828714047, -9.283671304933234], + [-36.900863527444145, -9.282940768872637], + [-36.91585711991485, -9.299053237795901], + [-36.92171910688065, -9.313644613175398], + [-36.92735210906951, -9.325443576390855], + [-36.920980120450636, -9.332519851021704], + [-36.922306911240085, -9.339794278346957], + [-36.937913679029556, -9.352853773681511], + [-36.936804252049455, -9.361246603155836], + [-36.9304738814044, -9.370068748675683], + [-36.93688624186578, -9.377457463422006], + [-36.94404378585907, -9.38237301907453], + [-36.95246847769085, -9.382575850246047], + [-36.97620802134274, -9.362099092271718], + [-36.97698845346819, -9.361420962183896], + [-37.00340083948918, -9.352645926328474], + [-37.02432593334472, -9.315747828148885], + [-37.04556522940145, -9.31591446594201], + [-37.055375142805005, -9.30748058966308], + [-37.05762036268312, -9.317573082757175], + [-37.06170622203716, -9.304194909553466], + [-37.05723550241584, -9.28182130828331], + [-37.08093963131884, -9.254034624671414], + [-37.10630566156191, -9.23981651699549], + [-37.11650984463261, -9.240963806008839], + [-37.12995403301706, -9.260095639922612], + [-37.14242937082831, -9.268112488019272], + [-37.1643692190465, -9.275738689898402], + [-37.1694216306225, -9.27246726115081], + [-37.16913701625149, -9.265743473638352], + [-37.16911456363345, -9.265625227870519], + [-37.168317877966935, -9.251859241130642], + [-37.15898197805245, -9.239135004107407], + [-37.198348989344105, -9.215515683475509], + [-37.20756804291251, -9.21834838225655], + [-37.23436280758507, -9.240083508226764], + [-37.233926160677505, -9.232182718291], + [-37.22881695962715, -9.225569446134172], + [-37.232389593722914, -9.222350421344288], + [-37.23359006870653, -9.206619298565238], + [-37.239205897888475, -9.20335211076956], + [-37.24681872426702, -9.190415858904831], + [-37.24326486799712, -9.1860713532552], + [-37.26007682964625, -9.1650593185362], + [-37.26243382809188, -9.160051500473505], + [-37.26259144076321, -9.158915242366755], + [-37.282319426853036, -9.148875489395966], + [-37.28796168272209, -9.136383051394803], + [-37.29683858335572, -9.120823136078371], + [-37.31109063352309, -9.107578607481875], + [-37.31073198673875, -9.100452525493386], + [-37.315552599287386, -9.09430574989174], + [-37.32773572522182, -9.093259500376716], + [-37.33686036396869, -9.080916953945007], + [-37.34057277951867, -9.079557147026572], + [-37.39233351223631, -9.055759400949128], + [-37.400858308381764, -9.052215725454086], + [-37.41848834438172, -9.043863866854496], + [-37.43365396020875, -9.029836270926364], + [-37.44600997615151, -9.026644643359482], + [-37.46940300376502, -9.02770955680697], + [-37.48558034159865, -9.0094139332638], + [-37.49378829785093, -9.000725702994322], + [-37.49251259591046, -8.998308882158774], + [-37.4896005870235, -8.988588324022814], + [-37.4895599897466, -8.988384831151148], + [-37.48909315963629, -8.986014235441369], + [-37.48703723381541, -8.975590805040829], + [-37.490371089146144, -8.965940755585155], + [-37.50006965816632, -8.968008429266822], + [-37.524350487779984, -8.964997750241965], + [-37.53013276005572, -8.96310412375717], + [-37.532436841888554, -8.961368462014939], + [-37.54109436742292, -8.958432905675373], + [-37.54672917430404, -8.96149643259335], + [-37.562446257755596, -8.973988357100133], + [-37.583639564003086, -8.970201327307276], + [-37.60086753349837, -8.9761564053877], + [-37.614600294335524, -8.989192903952773], + [-37.616801888218006, -9.000671460495598], + [-37.611545169532064, -9.005914150213325], + [-37.62617052848511, -9.014409833777048], + [-37.643915302116284, -9.018377935891525], + [-37.659124563724255, -9.006520980916182], + [-37.66409560330815, -8.99957942048102], + [-37.66167876655921, -8.987282733573192], + [-37.68601651916181, -8.99878994382389], + [-37.68950045008839, -8.990334512857599], + [-37.69887648981979, -8.992498721443171], + [-37.70218442357942, -8.989310877585632], + [-37.70338854573352, -8.986182332532417], + [-37.68853670254452, -8.978793910723626], + [-37.684049004492195, -8.968438954038886], + [-37.69012350732392, -8.95619118991242], + [-37.702217530377254, -8.948230199015994], + [-37.703303444777994, -8.938165206194054], + [-37.707910371874306, -8.927835402533654], + [-37.72170621401219, -8.915557898793415], + [-37.72669384716332, -8.906098354309542], + [-37.72459643034801, -8.9041271697703], + [-37.734323355632235, -8.897686955829382], + [-37.7352247198601, -8.887636959980934], + [-37.741625960773064, -8.887695841462936], + [-37.746142624391126, -8.88316678898912], + [-37.748788237117125, -8.870316318902525], + [-37.75887217807114, -8.856586327534256], + [-37.769372781049654, -8.864145297071673], + [-37.77606649693097, -8.862549510115471], + [-37.782696194700634, -8.865223484039454], + [-37.78792163954769, -8.873921906214294], + [-37.793202228506644, -8.875479198462864], + [-37.80126303378404, -8.884747800180518], + [-37.81183317652999, -8.884782063831183], + [-37.82912116208372, -8.893808313957093], + [-37.82903722980726, -8.89714565025164], + [-37.82284993690573, -8.900069225410295], + [-37.82131422501394, -8.915622689478209], + [-37.82852795867123, -8.921821067321138], + [-37.83366766347557, -8.926446936219632], + [-37.82626432253691, -8.932751999939082], + [-37.826028955700146, -8.934272325757552], + [-37.83912880390434, -8.978416215851768], + [-37.846038585281505, -8.984806222345306], + [-37.852306977069794, -8.997731901752125], + [-37.85312339571264, -9.000174800335007], + [-37.867181941638115, -9.01166640754387], + [-37.87451647700527, -9.011550100884616], + [-37.87962815941256, -9.015449092660543], + [-37.875257677084356, -9.024657201827893], + [-37.87829120567736, -9.0369911873702], + [-37.88273783293415, -9.040698890952656], + [-37.889798229015575, -9.034829537914414], + [-37.90496265879461, -9.040271100817527], + [-37.907905049970765, -9.052253551725698], + [-37.93916936353188, -9.083288677354112], + [-37.94271405512657, -9.09225425014901], + [-37.95162610130835, -9.097345016355815], + [-37.9543343858844, -9.109560352414158], + [-37.95759803349639, -9.11566516801175], + [-37.97148962063415, -9.125727965250125], + [-37.979381909893654, -9.148398553603336], + [-37.99101680141756, -9.155411860100962], + [-37.99951280835324, -9.15227898704431], + [-38.01104297336042, -9.156063577313168], + [-38.025817019677994, -9.155541815685282], + [-38.030321504423306, -9.164983805593721], + [-38.044570651321095, -9.16885109867603], + [-38.05277486823519, -9.1678544318724], + [-38.06612780557387, -9.174255607952269], + [-38.079292188712756, -9.170568876676914], + [-38.092317019438646, -9.17276073042472], + [-38.10260841255443, -9.180243432789037], + [-38.11927615246305, -9.201838921869323], + [-38.14393779550207, -9.218240693857503], + [-38.156335524960596, -9.24239970580638], + [-38.15639519342754, -9.249162659362929], + [-38.15639969026253, -9.249680132288093], + [-38.15801122722451, -9.263865538704474], + [-38.177037451543065, -9.28868940769303], + [-38.180708441610925, -9.291712957132964], + [-38.2020616970701, -9.29684136152931], + [-38.23761897797902, -9.329830541849972], + [-38.25057470651042, -9.290516741571881], + [-38.26264320190699, -9.266727802539064], + [-38.28754156175145, -9.217165489721806], + [-38.28010692944101, -9.206295163517071], + [-38.28762973691702, -9.17392007937427], + [-38.305887772282844, -9.153594187525771], + [-38.31290193207351, -9.148402914219531], + [-38.31952194326214, -9.138265442586595], + [-38.321430360725856, -9.116916753155017], + [-38.30462165057311, -9.09682369561706], + [-38.32028954065588, -9.091325615204456], + [-38.325895182329525, -9.078028772078316], + [-38.32107059771841, -9.070069813058362], + [-38.29707459387806, -9.055752835278001], + [-38.28998787755077, -9.047197911769796], + [-38.28890896749577, -9.040379786175663], + [-38.29643103581186, -9.022887514970805], + [-38.31696360952144, -9.001330009981453], + [-38.32077804823949, -8.99077836074283], + [-38.34026563935614, -8.990444505806721], + [-38.35618895909, -8.997178194696755], + [-38.38592697245795, -9.024861905439375], + [-38.403544273874964, -9.037269453883535], + [-38.4154794214395, -9.0386061240349], + [-38.449127486476776, -9.026395178378818], + [-38.46243379420092, -9.017276250323253], + [-38.50354025738322, -8.981447511426085], + [-38.514109150767275, -8.960034973353979], + [-38.51983852748099, -8.947619165313052], + [-38.5168261480784, -8.933271797533841], + [-38.50207414718537, -8.91665706339777], + [-38.48960216211915, -8.911077061224493], + [-38.47934576275297, -8.901780010015045], + [-38.47332045398294, -8.889581958859754], + [-38.46983470850996, -8.8657785377149], + [-38.47986199334635, -8.850125168588452], + [-38.50646983619623, -8.833271476600908], + [-38.54116713956629, -8.823522879986166], + [-38.55509498264521, -8.823394134641537], + [-38.57287247405376, -8.832385343125386], + [-38.60385131327813, -8.8806270876213], + [-38.60761269374567, -8.893300498157455], + [-38.60926684211985, -8.955157509514738], + [-38.62412549690277, -8.980083437644938], + [-38.63071188699956, -8.985203817490916], + [-38.640737228796326, -8.987304737074087], + [-38.66578326535874, -8.978168688878627], + [-38.6744090010531, -8.971793869929163], + [-38.690172648443514, -8.945313617443235], + [-38.693827326873766, -8.931925766339473], + [-38.69365469498344, -8.918740994095206], + [-38.69609735171252, -8.890562444435034], + [-38.706569999823216, -8.862297172155722], + [-38.71154146262869, -8.858427231511566], + [-38.71712287045545, -8.853188321813022], + [-38.739709574827316, -8.844883832792192], + [-38.75668021171669, -8.831241761503074], + [-38.78874157950043, -8.799694677487155], + [-38.80409585929905, -8.789217693163177], + [-38.854959185049665, -8.784563842372217], + [-38.86813013116872, -8.783902032964214], + [-38.88479520181705, -8.789641574375185], + [-38.92496300844523, -8.794784211333425], + [-38.94371828282058, -8.804272260903568], + [-38.95396850598974, -8.804100090892815], + [-38.96515758746648, -8.79431863308153], + [-38.97745726870477, -8.793123418752277], + [-38.991936488668756, -8.767588606849966], + [-39.014682783332056, -8.75390408607678], + [-39.03023139335573, -8.738521370318237], + [-39.04282827442909, -8.733385363587997], + [-39.06471091590958, -8.731637170615745], + [-39.090165757789364, -8.723949514327387], + [-39.11405932503376, -8.7181076850917], + [-39.126176648078115, -8.715750591365545], + [-39.15382879273498, -8.708611355787166], + [-39.16959412627937, -8.692075451668707], + [-39.17406970238803, -8.701381713466189], + [-39.181020104411054, -8.706337633737794], + [-39.20080520615786, -8.711024415482619], + [-39.217655525516655, -8.708496460180353], + [-39.222264856463525, -8.711704205035465], + [-39.22854591818239, -8.71035211549651], + [-39.234292046734936, -8.705373193404526], + [-39.24487615524602, -8.686036764121528], + [-39.248041796493155, -8.668804471155683], + [-39.24668633891952, -8.64762718524578], + [-39.241670282139935, -8.641789073837831], + [-39.24389517162275, -8.631719074620289], + [-39.2443975155335, -8.630791453714664], + [-39.253246597720334, -8.620020475080372], + [-39.266503025060075, -8.610976387671624], + [-39.27272214075892, -8.596530311165052], + [-39.27264750602706, -8.58382768855583], + [-39.28644596545438, -8.56379560765132], + [-39.31248429877172, -8.558348194735725], + [-39.33595213767392, -8.558823731150419], + [-39.34516719148642, -8.558537236614509], + [-39.357384306494644, -8.547078364434439], + [-39.36447888650031, -8.53788615312057], + [-39.38638892276201, -8.533527732142774], + [-39.407651663330405, -8.538387983893935], + [-39.416063959474535, -8.542164566752222], + [-39.4278653611024, -8.558694756118257], + [-39.43551343838222, -8.5633385063159], + [-39.44732606914077, -8.56235882568335], + [-39.4565828761648, -8.568256762624156], + [-39.46126954571302, -8.58207685301442], + [-39.47613420620301, -8.592829902090665], + [-39.515005692354435, -8.602546824325616], + [-39.529135026552055, -8.612909761713224], + [-39.55504934516594, -8.622170047303031], + [-39.55753779152214, -8.628871015981195], + [-39.56454395768585, -8.630323546885688], + [-39.56968961671475, -8.63710430614532], + [-39.59183911100907, -8.64815921973293], + [-39.610048602223884, -8.657247492999835], + [-39.62260710594827, -8.655535382307315], + [-39.646027834731875, -8.659729365823182], + [-39.660893559955504, -8.657390709254448], + [-39.68559147886837, -8.660332209184055], + [-39.692000058974166, -8.66426260497831], + [-39.693058565422135, -8.680548788837312], + [-39.684581214216884, -8.705027116347603], + [-39.675042065696545, -8.736704258910585], + [-39.67752381902426, -8.760926160790628], + [-39.67173564372834, -8.777618431575368], + [-39.67681822652928, -8.788553999050485], + [-39.6864040502253, -8.793109817739014], + [-39.70049884614359, -8.799989058130476], + [-39.70543912250019, -8.799589085671142], + [-39.747807084655136, -8.794078005940083], + [-39.75877007275448, -8.799728283827713], + [-39.78244419303396, -8.81435974536421], + [-39.79268421929332, -8.819928003336964], + [-39.81999180708001, -8.813525420086085], + [-39.829744669168804, -8.81437272025203], + [-39.886837738685415, -8.825028206644332], + [-39.8929787992244, -8.828831024711986], + [-39.90309122099895, -8.853861490101334], + [-39.90128031126071, -8.864195883117405], + [-39.88234399124503, -8.89820094181738], + [-39.873477586200686, -8.934075961684208], + [-39.89004567263561, -8.966852752717028], + [-39.89140810855101, -8.967958520035246], + [-39.90694494108804, -8.981665650728942], + [-39.91577167878646, -8.997550155844797], + [-39.916573237766706, -8.998732831918286], + [-39.95805550635201, -9.048629030892329], + [-39.97924668266306, -9.055079883206835], + [-39.9960511482477, -9.060995693108056], + [-40.00569135676993, -9.0597603282754], + [-40.00572051172789, -9.059759653493774], + [-40.06558329536679, -9.063102672465753], + [-40.07355992631759, -9.075399566259646], + [-40.09248982349215, -9.08595301895272], + [-40.107440079265785, -9.097508239265148], + [-40.119887534523436, -9.102134451856156], + [-40.129437054154, -9.110245317450993], + [-40.13407399410196, -9.109587683109996], + [-40.151123841580656, -9.107169217790148], + [-40.16502133471692, -9.106525321588872], + [-40.17415675887776, -9.090596885521073], + [-40.20884708150704, -9.06381972558009], + [-40.231588052051485, -9.054759859831547], + [-40.239002932963686, -9.054402739234366], + [-40.25581029625206, -9.063260836199605], + [-40.270879336830276, -9.07917055397322], + [-40.27886588363417, -9.09457596789343], + [-40.2887001678545, -9.127444309600113], + [-40.29403108260484, -9.15210538251513], + [-40.285834301003874, -9.181851605074733], + [-40.29009944829665, -9.1956503314314], + [-40.300525846852715, -9.231245812516807], + [-40.30531378600812, -9.260087009050082], + [-40.30955434115957, -9.275544560020835], + [-40.31905026736093, -9.287307163720572], + [-40.3325507670165, -9.317609888912873], + [-40.33613839879793, -9.327206694307629], + [-40.33506214070353, -9.353939805352445], + [-40.3564157959379, -9.377032393465445], + [-40.37143393907199, -9.378754864930674], + [-40.391296902489344, -9.372204924642553], + [-40.41166460349696, -9.354208989095207], + [-40.420908091389556, -9.352610024556908], + [-40.43591653925399, -9.36219675769347], + [-40.45568674830439, -9.405936419030455], + [-40.467773200672454, -9.420606309979565], + [-40.47785223843303, -9.419333283672922], + [-40.49502586855442, -9.409299657914149], + [-40.506287428056645, -9.408432255099846], + [-40.510744484130804, -9.407216975051055], + [-40.52913250214282, -9.413939765314478], + [-40.538239674888665, -9.420616995716346], + [-40.54180015761794, -9.426056467027548], + [-40.54838484862541, -9.449032331872285], + [-40.56520302265512, -9.464047694581541], + [-40.58152386854568, -9.467684434447923], + [-40.59514069285218, -9.46740736592061], + [-40.623182895970984, -9.482935674093977], + [-40.65369450670193, -9.47353928166691], + [-40.656785328491075, -9.472946176953208], + [-40.68133875446711, -9.467259136338535], + [-40.713464927210694, -9.450744669701521], + [-40.713688317638734, -9.450507827618745], + [-40.72219532195785, -9.445986580941625], + [-40.745334331342924, -9.443388593770337], + [-40.7767669774954, -9.454489436738616], + [-40.76730555738789, -9.445741776134087], + [-40.759611878213576, -9.429113374855843], + [-40.76499118822383, -9.413254262709973], + [-40.74524816854362, -9.404661123057906], + [-40.74350944395311, -9.398319260365104], + [-40.74255716045645, -9.383351129262351], + [-40.74649560429988, -9.37109006172844], + [-40.73811936829213, -9.355282054968482], + [-40.74141979351632, -9.346821336767908], + [-40.73730320786041, -9.336908498665327], + [-40.742323228379846, -9.327247580150576], + [-40.75560574748393, -9.313581454369096], + [-40.75160534679591, -9.308065460659963], + [-40.74399866993274, -9.306262929915711], + [-40.73945859009385, -9.296626349654185], + [-40.72010501807867, -9.30593436441687], + [-40.708307842882476, -9.296115341988113], + [-40.70742569975662, -9.291691662790466], + [-40.707605827434406, -9.285383958337322], + [-40.6872510279247, -9.278370765394728], + [-40.68116500805411, -9.263520243900633], + [-40.680500882477546, -9.257729107917585], + [-40.68925357983823, -9.257023469993616], + [-40.686472708572175, -9.24359210527291], + [-40.69102370198268, -9.234100358352473], + [-40.69451742342337, -9.233493072129027], + [-40.68072110382143, -9.21223622355927], + [-40.68057883137901, -9.200342771056722], + [-40.670660982897694, -9.188745648786933], + [-40.67210930976134, -9.172424600459493], + [-40.66741286935253, -9.159097413454038], + [-40.6777459774923, -9.151283428944325], + [-40.6851111599512, -9.137647419380643], + [-40.706212198275104, -9.142043330849283], + [-40.722289283806916, -9.133853823341576], + [-40.73255442276485, -9.124042788186927], + [-40.7504024536955, -9.117922335882286], + [-40.757077383446685, -9.119880208100557], + [-40.75680177309775, -9.105014015324837], + [-40.76318782025022, -9.106977125763187], + [-40.772808378484015, -9.101857575878881], + [-40.7772773260183, -9.100705477440268], + [-40.78611220627021, -9.105224589851389], + [-40.78948038430293, -9.098984577846313], + [-40.80412063480283, -9.098372888539219], + [-40.811974803425585, -9.084435190762699], + [-40.82102456829355, -9.07992839043036], + [-40.81916372761851, -9.069131905472382], + [-40.82360609979024, -9.062149466240305], + [-40.82524759688246, -9.038223483820826], + [-40.832224725564856, -9.031200241671884], + [-40.832089676759715, -9.023592075182215], + [-40.83502922286609, -9.00873027152031], + [-40.84686023544922, -8.995577207819851], + [-40.85097385549776, -8.985254584090658], + [-40.85161234359031, -8.952535558587392], + [-40.861339003496035, -8.948054154504785], + [-40.866294521472746, -8.923425671443892], + [-40.881250069349804, -8.915664311968877], + [-40.8834586867365, -8.904892450716932], + [-40.89505749563934, -8.889129155145131], + [-40.896420635760904, -8.871061254899324], + [-40.90006051624909, -8.867649580922297], + [-40.90257770315089, -8.86110866862597], + [-40.91499507774205, -8.849559802678861], + [-40.92135348653107, -8.835466660699021], + [-40.946399301184826, -8.845033111825032], + [-40.95905533931745, -8.842017005130515], + [-40.960921056222666, -8.830795450639714], + [-40.979109713126846, -8.823453186078044], + [-40.98977423319369, -8.829476670753795], + [-41.00036538222717, -8.82883412944437], + [-41.0212566570009, -8.843597007156738], + [-41.03133540360117, -8.834994430853804], + [-41.024975867738526, -8.80776335833267], + [-41.03625022599467, -8.785911818271375], + [-41.04233454723686, -8.784055218034815], + [-41.05481360551723, -8.786952454479541], + [-41.06669417087815, -8.781083957125459], + [-41.071472749906455, -8.783189923171143], + [-41.078557695848716, -8.788808215943293], + [-41.08208425845432, -8.784374407230851], + [-41.09487566134995, -8.781863349986432], + [-41.10177620852228, -8.782000107689612], + [-41.10597190805771, -8.770587139642243], + [-41.111171677476094, -8.770126548130854], + [-41.115903829644736, -8.763700608613947], + [-41.113031675860114, -8.759762511152706], + [-41.124584618913964, -8.752709261743469], + [-41.12900447749968, -8.743428761082999], + [-41.126855614872746, -8.728962988608313], + [-41.121730358076924, -8.724358286212532], + [-41.123217140477806, -8.718742840918548], + [-41.11193729528108, -8.70875315143136], + [-41.11372514751522, -8.70383282375584], + [-41.16291392540618, -8.710021188769298], + [-41.172446303030384, -8.707244124607772], + [-41.17641985502802, -8.711229788426737], + [-41.18245138204734, -8.707854160292552], + [-41.18600776823803, -8.710681833876079], + [-41.1975769380485, -8.706555485200973], + [-41.204946536623154, -8.709522566899041], + [-41.225280595239454, -8.704705198106376], + [-41.230182033911255, -8.706399798660323], + [-41.23985585541293, -8.710898402149212], + [-41.23858261444209, -8.7197665869858], + [-41.260638388710824, -8.720751862593028], + [-41.269997492166404, -8.73104857025279], + [-41.281552178404546, -8.736135772341777], + [-41.29499807231856, -8.735580535908356], + [-41.30994933976342, -8.726167036720364], + [-41.33436555059198, -8.727696855325748], + [-41.35835042643801, -8.707655359741024], + [-41.33693111480318, -8.708392351232208], + [-41.30795751021067, -8.69062213395834], + [-41.296166073533406, -8.672517446680793], + [-41.28744865725829, -8.660874258672127], + [-41.2687402549783, -8.663259609753267], + [-41.25133314664761, -8.66164389958076], + [-41.239505372489106, -8.655861840324638], + [-41.23380375140905, -8.647649572284362], + [-41.21781118037882, -8.646055765827857], + [-41.2065591885563, -8.633330297264946], + [-41.20800882096382, -8.618405077844368], + [-41.20776189049869, -8.610306880255383], + [-41.21264367837256, -8.602672688376096], + [-41.202893262648104, -8.59931171224342], + [-41.19858129393692, -8.5925123247217], + [-41.179921724499046, -8.593302574515693], + [-41.17864349226878, -8.588412080115964], + [-41.16934131334801, -8.583650497382742], + [-41.1523324929323, -8.546086253493051], + [-41.1495089563431, -8.533952393852616], + [-41.13464282853724, -8.533573785176026], + [-41.12674836830408, -8.54199103738064], + [-41.11147958127433, -8.533666268044337], + [-41.104087835650375, -8.522403817455732], + [-41.09797324448769, -8.52078634356375], + [-41.09050562621216, -8.51266070401019], + [-41.08469988061292, -8.500993522472882], + [-41.078942760035034, -8.472538322202377], + [-41.05111447994365, -8.480508930019536], + [-41.047991122291656, -8.44908109298288], + [-41.04794180752612, -8.448767109420272], + [-41.03900657629519, -8.431864258975795], + [-41.007395987999686, -8.420964199560986], + [-41.00337267458906, -8.405055135100737], + [-41.00069176067433, -8.400761084695777], + [-40.979246325921906, -8.398283527460688], + [-40.965574446088404, -8.412163933360022], + [-40.965525303128004, -8.416493884670363], + [-40.95789439268917, -8.419433400578656], + [-40.957110737606676, -8.423502141928296], + [-40.93811048390078, -8.435015246158715], + [-40.92686765256443, -8.446379690073249], + [-40.91441517605222, -8.436274644256617], + [-40.90902519607194, -8.427364756545801], + [-40.902867089543555, -8.423484850815674], + [-40.90186582401697, -8.407992990464814], + [-40.90763211119447, -8.399022375050018], + [-40.89453577149685, -8.392537829374444], + [-40.88988709263295, -8.386785063246702], + [-40.89268318931785, -8.37182800183842], + [-40.897763196095156, -8.367952929464641], + [-40.89318094908336, -8.357402344433968], + [-40.86999789158189, -8.358573870937132], + [-40.862514478672104, -8.36502664140647], + [-40.86180630511731, -8.370689781582344], + [-40.85736273788033, -8.375679698907057], + [-40.85860813074338, -8.379645995457688], + [-40.83658292999316, -8.380834349883129], + [-40.82544387494351, -8.368531870444647], + [-40.82530032935527, -8.368372906492198], + [-40.81933574854236, -8.362392517446247], + [-40.8226937399825, -8.337758352116255], + [-40.81841931291093, -8.330179380455295], + [-40.81952621654019, -8.321944087730884], + [-40.7928049235672, -8.32006649929132], + [-40.786451139894034, -8.306475744731694], + [-40.77989700692034, -8.301967894350602], + [-40.78010687940316, -8.296308070756604], + [-40.78169562800301, -8.29315055735052], + [-40.778252631465094, -8.286172970847662], + [-40.78399999155876, -8.261883768127174], + [-40.78249924960454, -8.253339073862625], + [-40.76933594046803, -8.249493623654615], + [-40.76431002977397, -8.244028877419035], + [-40.74452217764171, -8.240107001249081], + [-40.73688638080164, -8.22826726662549], + [-40.72921544620271, -8.224949791066006], + [-40.711078680922505, -8.225096595153737], + [-40.70559269926273, -8.220738142932447], + [-40.700605619060575, -8.202642797802717], + [-40.6943915192825, -8.200911369689203], + [-40.684429779419354, -8.187811598118977], + [-40.67527405830519, -8.184896708482261], + [-40.6690470403307, -8.17751598486203], + [-40.66670184448787, -8.162385364368813], + [-40.658523551998385, -8.156591333981869], + [-40.64358401819618, -8.157571913484382], + [-40.64279838188384, -8.150109634159502], + [-40.63833263614533, -8.147251842339015], + [-40.632858319279414, -8.139336367260022], + [-40.601336027459745, -8.150205614553991], + [-40.60115834981451, -8.14408542392426], + [-40.58952083847536, -8.137840035371074], + [-40.59125340860156, -8.123551419483034], + [-40.596518282619606, -8.118060584982882], + [-40.59936277336854, -8.115659686060939], + [-40.60388575924685, -8.10372274970218], + [-40.5987748862763, -8.080892713941699], + [-40.58223757547939, -8.044726694654868], + [-40.57575818706554, -8.030503246150113], + [-40.54366395443016, -7.958467445992143], + [-40.544933424826716, -7.94769876214068], + [-40.54331942974964, -7.907542443720887], + [-40.53803378798684, -7.864345918104737], + [-40.54204392378186, -7.838681680439739], + [-40.54596262582154, -7.830118338236705], + [-40.55131438613507, -7.822465769697089], + [-40.56842308746053, -7.8087932668261795], + [-40.62866196921153, -7.79259861092041], + [-40.65375231558891, -7.782227640484585], + [-40.672090223052344, -7.764863404651393], + [-40.67567489672993, -7.752717614326625], + [-40.6744329675022, -7.742721618258077], + [-40.66657085082345, -7.726395676257824], + [-40.63562155640247, -7.699863771724857], + [-40.62556002588122, -7.677210113850793], + [-40.622039609879124, -7.659220212993358], + [-40.626579237136866, -7.631717873594824], + [-40.64439466522107, -7.596677096864158], + [-40.65393929070075, -7.586155647471097], + [-40.66267542964677, -7.579534095698051], + [-40.66564641460059, -7.576261601311373], + [-40.667830071862035, -7.573781391986285], + [-40.69409846616784, -7.538752967011378], + [-40.70934885770939, -7.5038350304877905], + [-40.71495440787342, -7.480551708161464], + [-40.713244186708124, -7.47303792085445], + [-40.70464719311451, -7.458598359361679], + [-40.70121928288496, -7.4563902706510685], + [-40.6601907251043, -7.448402406195698], + [-40.65839290270097, -7.446331305386556], + [-40.65569879577507, -7.441401589195629], + [-40.65561559419494, -7.441248502082249], + [-40.65234127127905, -7.433376186420899], + [-40.58926086818516, -7.408686110734136], + [-40.548482153982576, -7.3927256783765785], + [-40.540558975436, -7.344883945733235], + [-40.541526663032556, -7.332303297203693], + [-40.523740868008424, -7.3184837848351645], + [-40.50048723394185, -7.328029605068048], + [-40.476266211192744, -7.34476129383704], + [-40.45909184161704, -7.355128129789764], + [-40.43361057974472, -7.36721267438932], + [-40.39389716121205, -7.368202919677268], + [-40.374541363500164, -7.3630222744111125], + [-40.361003124363464, -7.355635390051617], + [-40.35081277595065, -7.334206008536033], + [-40.338034621679135, -7.3238287224577165], + [-40.32941363448897, -7.318592504579882], + [-40.3181638592497, -7.303433982688791], + [-40.27902272917324, -7.299425809262693], + [-40.263015111610066, -7.3010557262625], + [-40.247553000965816, -7.31375345913484], + [-40.220779659761924, -7.341305202713024], + [-40.19570443457279, -7.358183643716904] + ] + ] + }, + "PI": { + "name": "Piauí", + "coordinates": [ + [ + [-41.75052487315227, -2.8018020262159444], + [-41.73488748020902, -2.8074859492548034], + [-41.72894159118778, -2.8034624957256566], + [-41.68402934542132, -2.844166926277616], + [-41.659163646227505, -2.860282444922598], + [-41.65567682134134, -2.8676050424045183], + [-41.633189557089196, -2.886441284853536], + [-41.59349947027925, -2.9055288920737237], + [-41.581164447585145, -2.9073848716646955], + [-41.56038916054621, -2.90106452494302], + [-41.55892125327988, -2.8982984138181194], + [-41.53341750387738, -2.909836269983665], + [-41.51044649277615, -2.9113538074820453], + [-41.495133981110484, -2.902413849843599], + [-41.48129700078442, -2.8967471411755743], + [-41.44533506304254, -2.9052041670577085], + [-41.44041178977429, -2.910266301607704], + [-41.43767236785334, -2.909339185593601], + [-41.43793404805325, -2.911905640198722], + [-41.43481100339135, -2.906856538515423], + [-41.418391472163215, -2.9103418991563443], + [-41.39977759198021, -2.904037013522462], + [-41.37466347681783, -2.917519390210738], + [-41.36763222188783, -2.9166130569924653], + [-41.3508167160861, -2.9231549229631493], + [-41.338496884896486, -2.927634827557829], + [-41.33194554735373, -2.921557962824554], + [-41.322692493950775, -2.921359500979153], + [-41.321576139668636, -2.9354562500962893], + [-41.32296862659419, -2.951517552576969], + [-41.317056567908146, -2.960419622406161], + [-41.298455009461634, -2.968441527474798], + [-41.283522722339086, -2.967688277203434], + [-41.27244235319583, -2.9707317636012065], + [-41.26955506253094, -2.985119727173012], + [-41.25713672015215, -3.0046848437602605], + [-41.25582574792786, -3.020236926092153], + [-41.24901737155642, -3.0287300947007108], + [-41.25533144474642, -3.032774900069554], + [-41.253778456525374, -3.0376291672682623], + [-41.26056222230539, -3.0480663488441415], + [-41.2614749587523, -3.0538908846144595], + [-41.26136126844575, -3.067113948046166], + [-41.256540165889376, -3.0717323000708228], + [-41.256663265173636, -3.08805457430216], + [-41.267973650597575, -3.093878764953331], + [-41.27230434813858, -3.100953848381153], + [-41.285832220677705, -3.103314263067626], + [-41.28547213260071, -3.1133168498950616], + [-41.2998728816336, -3.1279833460427886], + [-41.302455459834626, -3.1301579138863556], + [-41.31916839357904, -3.1453814366747785], + [-41.31936215599265, -3.1501159380952912], + [-41.328722516457916, -3.161631588131302], + [-41.326017511994955, -3.1690221296731886], + [-41.322496971895475, -3.17983120238096], + [-41.36051619886682, -3.244224736493389], + [-41.38681439490245, -3.288785961724279], + [-41.390268853008, -3.294641204793089], + [-41.40027189451141, -3.31863410162714], + [-41.39797702468403, -3.3275836059008785], + [-41.412329714681796, -3.3407339631834057], + [-41.41436345204144, -3.3499757392620313], + [-41.42353001908439, -3.3680429397015956], + [-41.41872978818323, -3.3705245466873612], + [-41.40271393182409, -3.362431232215827], + [-41.40068464646874, -3.3779215268503258], + [-41.40358088095805, -3.3966152963673553], + [-41.39387048784354, -3.3996028506578417], + [-41.38883437372876, -3.412869299397864], + [-41.3560405103898, -3.410867278573716], + [-41.347982084894774, -3.4146612003884296], + [-41.34479217638429, -3.4193545889872743], + [-41.343925088383386, -3.440533454953416], + [-41.34800815967523, -3.452554936567761], + [-41.33870740877061, -3.4599012233736657], + [-41.32964114169486, -3.4658543343584642], + [-41.3278358450367, -3.4913768415734516], + [-41.32000777742019, -3.4942350566344254], + [-41.306352844308925, -3.4883064074259926], + [-41.29922736794555, -3.4910579704102345], + [-41.32060047766337, -3.4978947704721564], + [-41.32418665744292, -3.5034055450131527], + [-41.32569137987645, -3.536449339353781], + [-41.33688199260792, -3.5539299287620962], + [-41.36467403536745, -3.558034667456135], + [-41.367507339714535, -3.5619565314005364], + [-41.37125869073947, -3.567829676992972], + [-41.370638412541375, -3.5749022595536224], + [-41.362020815084456, -3.5832158733961985], + [-41.35325037705418, -3.5856222931634893], + [-41.34491680979517, -3.588775079985828], + [-41.33132828334002, -3.624720417357078], + [-41.33911011660434, -3.670455859172724], + [-41.34370558239782, -3.676008968193841], + [-41.3417606649732, -3.680808351743911], + [-41.32655582095082, -3.6873553961559145], + [-41.30767762905478, -3.684839399248674], + [-41.290813743077834, -3.689725157132032], + [-41.27934728344634, -3.7007836307460167], + [-41.255445415124875, -3.7032965976756835], + [-41.239352145778, -3.712681957394003], + [-41.23944263608123, -3.720786188936882], + [-41.25190178608926, -3.7233762022352077], + [-41.25737598248068, -3.7299368298123547], + [-41.261196029912554, -3.757578819552438], + [-41.254136191982084, -3.7750775478368346], + [-41.264841804926554, -3.7916142796520425], + [-41.30082745548182, -3.826334398536403], + [-41.295173306395405, -3.8302139059950435], + [-41.28747727484557, -3.822293378484675], + [-41.28268644104288, -3.826847192714487], + [-41.27686963551851, -3.82565684290222], + [-41.268594715338494, -3.8445291439087814], + [-41.27054867992544, -3.8531197311648313], + [-41.26777059043636, -3.861885565163893], + [-41.25996834633717, -3.864786863570256], + [-41.258870547778905, -3.8703141030411827], + [-41.2476228628722, -3.8823239516565833], + [-41.24570775307497, -3.8963374157930084], + [-41.22788309052423, -3.915351372998374], + [-41.22025327265008, -3.9415412423054574], + [-41.22903778124271, -3.968411854852422], + [-41.23426378631756, -3.967834219581895], + [-41.240131247782884, -3.97923386973994], + [-41.24437591460846, -3.9797949637652557], + [-41.2442045959847, -3.986425393078079], + [-41.24925372316576, -3.989904978622776], + [-41.24574275549033, -4.006617084870506], + [-41.23884273812737, -4.015440253439956], + [-41.25442334646259, -4.0277126540988055], + [-41.25674067872606, -4.03488365955235], + [-41.25019378055112, -4.037788356727107], + [-41.24032048564853, -4.030884696956049], + [-41.22080778543874, -4.026704350726861], + [-41.208918619464136, -4.02561834506607], + [-41.19948652929535, -4.018391612895663], + [-41.19262143294202, -4.0206960464233505], + [-41.18287086974502, -4.018108513520301], + [-41.18382050883273, -4.024436980380234], + [-41.17182876771848, -4.032513386597028], + [-41.15996421444155, -4.03174725503585], + [-41.14311181618547, -4.036849067196936], + [-41.120359125459125, -4.036375198657394], + [-41.114296646256676, -4.040600871135783], + [-41.11412931897333, -4.051855501890894], + [-41.127172768286194, -4.0614256829093565], + [-41.12224946324382, -4.077221829576192], + [-41.13941129685919, -4.12102302089354], + [-41.14318808962369, -4.124278835791045], + [-41.12812895738871, -4.139360130450736], + [-41.12616469429534, -4.152866254460817], + [-41.118343918056304, -4.165259740118363], + [-41.09090011844624, -4.170367724058699], + [-41.09910184311234, -4.181875005716737], + [-41.09928668292978, -4.1821355350119145], + [-41.1359193369151, -4.23354658508781], + [-41.11913864422802, -4.306560402192402], + [-41.11944932747688, -4.324290212311441], + [-41.120186021276766, -4.330601762514906], + [-41.133437235512396, -4.340179956362978], + [-41.14921818942907, -4.367364574727103], + [-41.15088869501244, -4.370699141922971], + [-41.16002605031903, -4.381531852498596], + [-41.160716948026305, -4.389332171084168], + [-41.159705199425844, -4.410589487042366], + [-41.17714941700628, -4.441301188483736], + [-41.17655232011739, -4.447026242510358], + [-41.1775864771662, -4.467711748344205], + [-41.1893619850686, -4.4887147230254705], + [-41.19079076814144, -4.515562931112711], + [-41.20380535508473, -4.528455244583883], + [-41.207946126147306, -4.547772041077147], + [-41.21412683518735, -4.5527106357073075], + [-41.22209456473778, -4.5676923640307345], + [-41.240754353596806, -4.568486919117244], + [-41.24255424055014, -4.5715471402631795], + [-41.239872714941, -4.573559565959911], + [-41.221229854914846, -4.578969768941031], + [-41.223055502667904, -4.589825500437279], + [-41.23345086885787, -4.610222470954269], + [-41.229345487352894, -4.620128365216308], + [-41.2028310137429, -4.638228594113456], + [-41.185614823950345, -4.662000903081309], + [-41.17502493935756, -4.6653692264957956], + [-41.17392095924892, -4.668578073138109], + [-41.18173127896351, -4.673836817471026], + [-41.20250740428953, -4.701928307898625], + [-41.23409897518922, -4.733774060109205], + [-41.236665089654224, -4.738784659046333], + [-41.23524878289004, -4.746561870986822], + [-41.24954803469698, -4.7560756365884815], + [-41.24802413990975, -4.761583815584967], + [-41.24193387476225, -4.765060503521644], + [-41.21278091949667, -4.772058103440175], + [-41.20803045137995, -4.776801561919816], + [-41.209990907556104, -4.78337993458204], + [-41.22396623819518, -4.790707816842949], + [-41.225445195766355, -4.7978523985359285], + [-41.232480651388705, -4.804569040065655], + [-41.23284829363004, -4.81577102442254], + [-41.24247891476449, -4.825268317804709], + [-41.23989181471618, -4.848878612117663], + [-41.23993011171126, -4.85641308545843], + [-41.249588858640124, -4.869722848326838], + [-41.228118293600524, -4.89102052417879], + [-41.234943110331436, -4.905776980417525], + [-41.22296502589841, -4.926541225441831], + [-41.22138182272343, -4.938262503070408], + [-41.210603117481, -4.938648596163218], + [-41.20962667966444, -4.945992904258084], + [-41.20380630930245, -4.949782077016092], + [-41.198567672554844, -4.9374877151933765], + [-41.18902524013086, -4.940651659133089], + [-41.18023156324806, -4.947577794405543], + [-41.15093743023692, -4.992143498712959], + [-41.14648578492492, -4.992231451504034], + [-41.13829323822666, -4.98452017350946], + [-41.13548231799952, -4.997851224706341], + [-41.12261511427844, -5.008101533584949], + [-41.12124167113821, -5.023979643433948], + [-41.131891376913565, -5.04808903459227], + [-41.097020852709306, -5.053181716313721], + [-41.095879830172905, -5.061650072729851], + [-41.08818373826019, -5.065646398958473], + [-41.08736341394743, -5.073348825458028], + [-41.080448120207016, -5.078724396662002], + [-41.080140832753735, -5.0911257187057], + [-41.05242960143568, -5.103436283758108], + [-41.040282235816356, -5.091417338669604], + [-41.034016913122954, -5.091097709840987], + [-41.02642110630303, -5.109730391916708], + [-41.01409111743409, -5.105838999376647], + [-41.01185183851112, -5.123634722242469], + [-40.98861969712107, -5.138780363015869], + [-40.9824784945967, -5.1535564295649605], + [-40.96843563960507, -5.1493940747536335], + [-40.958509976622985, -5.154553084855663], + [-40.94933645743818, -5.166910265069524], + [-40.937762492867535, -5.166622664810762], + [-40.929003995085765, -5.171705550066186], + [-40.9253065658826, -5.182130718376594], + [-40.93201516611133, -5.201297560706346], + [-40.92204439167984, -5.226485012828595], + [-40.92663875507684, -5.232119910595022], + [-40.93401832659115, -5.2368154156631865], + [-40.94041433907424, -5.237800615266353], + [-40.94111965456619, -5.241998275582974], + [-40.933081895103115, -5.245260621427922], + [-40.91122361649049, -5.267986948147754], + [-40.91187496243606, -5.270958713501259], + [-40.91965862247378, -5.2711949120003245], + [-40.924259723366234, -5.27487099608872], + [-40.921960715182834, -5.284391527548712], + [-40.926773821553574, -5.292080789316735], + [-40.923475794155664, -5.3011531507073295], + [-40.91322181002088, -5.308085005824967], + [-40.91274991201767, -5.309008816917885], + [-40.913529612864416, -5.319512628331993], + [-40.91846938788946, -5.338288891812728], + [-40.93373870739643, -5.349437918221667], + [-40.93611964581992, -5.3660010703944945], + [-40.92900511714178, -5.375851112518604], + [-40.914916147040515, -5.393177401591058], + [-40.91156593145995, -5.407410256351313], + [-40.91771573344779, -5.416324351586611], + [-40.93820805645806, -5.416386846758113], + [-40.942477781767835, -5.419739569912589], + [-40.94178102138474, -5.431003895228447], + [-40.93705628805302, -5.438574583133036], + [-40.92121833371148, -5.450879437664203], + [-40.91583018493237, -5.466214802081329], + [-40.91852886957553, -5.473940096430892], + [-40.92917349641002, -5.483366950163901], + [-40.929337439339584, -5.493121130449287], + [-40.933072161039306, -5.50075105455972], + [-40.92877609818351, -5.5069814047491885], + [-40.92889553757054, -5.517881651293263], + [-40.93647112416778, -5.526421285404996], + [-40.931770502764486, -5.53646188065562], + [-40.93297308626094, -5.547313334901428], + [-40.91450193026136, -5.567425303211608], + [-40.912607512367615, -5.590064523792965], + [-40.90130065649913, -5.611904818873568], + [-40.90288065293765, -5.629692726425262], + [-40.9077748746405, -5.6423797547502925], + [-40.91124963658874, -5.656592034734769], + [-40.92913874282508, -5.663163545709905], + [-40.93878595027989, -5.673373664248589], + [-40.9303941521098, -5.686247018792021], + [-40.92516650735944, -5.709182739584144], + [-40.913558109708205, -5.72677940189033], + [-40.91776963420873, -5.744826180275283], + [-40.909811725636864, -5.765749331222249], + [-40.905835603828145, -5.801487463024416], + [-40.90907405937847, -5.825583803931308], + [-40.905662423061564, -5.8493092834080676], + [-40.893660975919744, -5.8838424111512495], + [-40.89360947498455, -5.8840704349018145], + [-40.89753624171454, -5.901330457302817], + [-40.888603936309266, -5.912666486960275], + [-40.88023302640926, -5.9177003319336166], + [-40.87365144336846, -5.9667912144940995], + [-40.87559033153224, -5.977863800882505], + [-40.88737177900326, -5.989359891778426], + [-40.88789452584916, -5.995365676594566], + [-40.88811922580851, -5.9979423793768385], + [-40.88983636655074, -6.004015766556434], + [-40.90396437324578, -6.020909875392336], + [-40.90756447230176, -6.044694510394171], + [-40.90632275497978, -6.04655024349967], + [-40.902220736124015, -6.049237095532616], + [-40.88429683217477, -6.047823837137598], + [-40.87286290026719, -6.0566606001958485], + [-40.85773008018175, -6.105332573183129], + [-40.84575574243679, -6.135028050746806], + [-40.850359085186234, -6.152589739583698], + [-40.852861822392576, -6.17509406302756], + [-40.847247193823556, -6.203046588659724], + [-40.85224137044226, -6.224253465998499], + [-40.83412633196924, -6.244459464384135], + [-40.82057993461607, -6.263231566588832], + [-40.810521948962204, -6.287096532022196], + [-40.80419859001305, -6.292903087893648], + [-40.7875302701847, -6.3042898706559996], + [-40.78202731016775, -6.316596067868018], + [-40.78015264610576, -6.327705968614505], + [-40.7793323055779, -6.343321160340519], + [-40.7903645944577, -6.371922510127545], + [-40.80010553651837, -6.381735384420934], + [-40.80517212413556, -6.393164719003518], + [-40.79640379916502, -6.426790592889397], + [-40.79379321128296, -6.4602226784091625], + [-40.79660303052627, -6.470734444044258], + [-40.78995701247541, -6.500664568628756], + [-40.792139821068645, -6.51289423757178], + [-40.787685918690066, -6.523812569127935], + [-40.74586971604306, -6.565580097677789], + [-40.74024346261766, -6.5775294082484415], + [-40.73643719596517, -6.600243143534882], + [-40.72202033553477, -6.617716207541551], + [-40.72299864193047, -6.621526744720473], + [-40.73225787503239, -6.653618793110038], + [-40.72611068541829, -6.663238210054101], + [-40.710200571376426, -6.676162981646516], + [-40.649157579000246, -6.678863001299521], + [-40.632436938464444, -6.6989374460915245], + [-40.61643945509113, -6.710435697448235], + [-40.60222526179989, -6.716045552878727], + [-40.56179639715345, -6.720404365839242], + [-40.51740614913755, -6.730528933866001], + [-40.49270928601994, -6.7319686844141495], + [-40.47390570924016, -6.734911556481325], + [-40.47195589633702, -6.744968486995665], + [-40.459745420652226, -6.7542717450106196], + [-40.457054223342624, -6.762636403287672], + [-40.45204826273644, -6.783809695273217], + [-40.44294885183386, -6.789908202599111], + [-40.43900903364563, -6.806722297950663], + [-40.432416953063324, -6.812858042462066], + [-40.416854441418764, -6.812567306052863], + [-40.404156320901656, -6.802522209697865], + [-40.388809241693, -6.7970331110887825], + [-40.37052878376867, -6.803104906216064], + [-40.370596376533186, -6.808027983832424], + [-40.38165048292339, -6.8193520849981155], + [-40.38713126845353, -6.830110270892413], + [-40.40223810759217, -6.840023891202686], + [-40.407569909368675, -6.85132736900582], + [-40.410774269581935, -6.8556142006805585], + [-40.42853838606565, -6.864288772909234], + [-40.42898015889263, -6.884894494964273], + [-40.433827810221224, -6.895942733207184], + [-40.425038831083185, -6.935304082431046], + [-40.42449273539681, -6.937235670820961], + [-40.429140008424525, -6.94853715856188], + [-40.429327926044124, -6.994664295344377], + [-40.411092002766715, -6.9991100125248344], + [-40.406268407380765, -7.005360973585094], + [-40.427870124768944, -7.015385500843441], + [-40.42803232612258, -7.018510986099523], + [-40.43870346227077, -7.016493681827384], + [-40.43203610759343, -7.025720197342439], + [-40.429854473258004, -7.0279101407821845], + [-40.42695999318485, -7.0294946638752975], + [-40.42773653572833, -7.03391542116965], + [-40.44330028866479, -7.048129813190303], + [-40.44427791233658, -7.055966425472062], + [-40.45941518331163, -7.078569831370628], + [-40.469439945613296, -7.0876783628529925], + [-40.47045178616035, -7.094004577632534], + [-40.489757960938235, -7.11872431971386], + [-40.484388401737746, -7.133232894844712], + [-40.49572890833511, -7.169652238615007], + [-40.49481056374775, -7.18237831595692], + [-40.501315477396155, -7.1886869793699], + [-40.50613510360659, -7.210893834294201], + [-40.51028696534401, -7.224389699053261], + [-40.515556103254575, -7.269868597414809], + [-40.515296128215745, -7.275203760329133], + [-40.51164991480364, -7.2994648348991165], + [-40.5142872733434, -7.307866359023521], + [-40.523740868008424, -7.3184837848351645], + [-40.541526663032556, -7.332303297203693], + [-40.540558975436, -7.344883945733235], + [-40.548482153982576, -7.3927256783765785], + [-40.58926086818516, -7.408686110734136], + [-40.65234127127905, -7.433376186420899], + [-40.65561559419494, -7.441248502082249], + [-40.65569879577507, -7.441401589195629], + [-40.65839290270097, -7.446331305386556], + [-40.6601907251043, -7.448402406195698], + [-40.70121928288496, -7.4563902706510685], + [-40.70464719311451, -7.458598359361679], + [-40.713244186708124, -7.47303792085445], + [-40.71495440787342, -7.480551708161464], + [-40.70934885770939, -7.5038350304877905], + [-40.69409846616784, -7.538752967011378], + [-40.667830071862035, -7.573781391986285], + [-40.66564641460059, -7.576261601311373], + [-40.66267542964677, -7.579534095698051], + [-40.65393929070075, -7.586155647471097], + [-40.64439466522107, -7.596677096864158], + [-40.626579237136866, -7.631717873594824], + [-40.622039609879124, -7.659220212993358], + [-40.62556002588122, -7.677210113850793], + [-40.63562155640247, -7.699863771724857], + [-40.66657085082345, -7.726395676257824], + [-40.6744329675022, -7.742721618258077], + [-40.67567489672993, -7.752717614326625], + [-40.672090223052344, -7.764863404651393], + [-40.65375231558891, -7.782227640484585], + [-40.62866196921153, -7.79259861092041], + [-40.56842308746053, -7.8087932668261795], + [-40.55131438613507, -7.822465769697089], + [-40.54596262582154, -7.830118338236705], + [-40.54204392378186, -7.838681680439739], + [-40.53803378798684, -7.864345918104737], + [-40.54331942974964, -7.907542443720887], + [-40.544933424826716, -7.94769876214068], + [-40.54366395443016, -7.958467445992143], + [-40.57575818706554, -8.030503246150113], + [-40.58223757547939, -8.044726694654868], + [-40.5987748862763, -8.080892713941699], + [-40.60388575924685, -8.10372274970218], + [-40.59936277336854, -8.115659686060939], + [-40.596518282619606, -8.118060584982882], + [-40.59125340860156, -8.123551419483034], + [-40.58952083847536, -8.137840035371074], + [-40.60115834981451, -8.14408542392426], + [-40.601336027459745, -8.150205614553991], + [-40.632858319279414, -8.139336367260022], + [-40.63833263614533, -8.147251842339015], + [-40.64279838188384, -8.150109634159502], + [-40.64358401819618, -8.157571913484382], + [-40.658523551998385, -8.156591333981869], + [-40.66670184448787, -8.162385364368813], + [-40.6690470403307, -8.17751598486203], + [-40.67527405830519, -8.184896708482261], + [-40.684429779419354, -8.187811598118977], + [-40.6943915192825, -8.200911369689203], + [-40.700605619060575, -8.202642797802717], + [-40.70559269926273, -8.220738142932447], + [-40.711078680922505, -8.225096595153737], + [-40.72921544620271, -8.224949791066006], + [-40.73688638080164, -8.22826726662549], + [-40.74452217764171, -8.240107001249081], + [-40.76431002977397, -8.244028877419035], + [-40.76933594046803, -8.249493623654615], + [-40.78249924960454, -8.253339073862625], + [-40.78399999155876, -8.261883768127174], + [-40.778252631465094, -8.286172970847662], + [-40.78169562800301, -8.29315055735052], + [-40.78010687940316, -8.296308070756604], + [-40.77989700692034, -8.301967894350602], + [-40.786451139894034, -8.306475744731694], + [-40.7928049235672, -8.32006649929132], + [-40.81952621654019, -8.321944087730884], + [-40.81841931291093, -8.330179380455295], + [-40.8226937399825, -8.337758352116255], + [-40.81933574854236, -8.362392517446247], + [-40.82530032935527, -8.368372906492198], + [-40.82544387494351, -8.368531870444647], + [-40.83658292999316, -8.380834349883129], + [-40.85860813074338, -8.379645995457688], + [-40.85736273788033, -8.375679698907057], + [-40.86180630511731, -8.370689781582344], + [-40.862514478672104, -8.36502664140647], + [-40.86999789158189, -8.358573870937132], + [-40.89318094908336, -8.357402344433968], + [-40.897763196095156, -8.367952929464641], + [-40.89268318931785, -8.37182800183842], + [-40.88988709263295, -8.386785063246702], + [-40.89453577149685, -8.392537829374444], + [-40.90763211119447, -8.399022375050018], + [-40.90186582401697, -8.407992990464814], + [-40.902867089543555, -8.423484850815674], + [-40.90902519607194, -8.427364756545801], + [-40.91441517605222, -8.436274644256617], + [-40.92686765256443, -8.446379690073249], + [-40.93811048390078, -8.435015246158715], + [-40.957110737606676, -8.423502141928296], + [-40.95789439268917, -8.419433400578656], + [-40.965525303128004, -8.416493884670363], + [-40.965574446088404, -8.412163933360022], + [-40.979246325921906, -8.398283527460688], + [-41.00069176067433, -8.400761084695777], + [-41.00337267458906, -8.405055135100737], + [-41.007395987999686, -8.420964199560986], + [-41.03900657629519, -8.431864258975795], + [-41.04794180752612, -8.448767109420272], + [-41.047991122291656, -8.44908109298288], + [-41.05111447994365, -8.480508930019536], + [-41.078942760035034, -8.472538322202377], + [-41.08469988061292, -8.500993522472882], + [-41.09050562621216, -8.51266070401019], + [-41.09797324448769, -8.52078634356375], + [-41.104087835650375, -8.522403817455732], + [-41.11147958127433, -8.533666268044337], + [-41.12674836830408, -8.54199103738064], + [-41.13464282853724, -8.533573785176026], + [-41.1495089563431, -8.533952393852616], + [-41.1523324929323, -8.546086253493051], + [-41.16934131334801, -8.583650497382742], + [-41.17864349226878, -8.588412080115964], + [-41.179921724499046, -8.593302574515693], + [-41.19858129393692, -8.5925123247217], + [-41.202893262648104, -8.59931171224342], + [-41.21264367837256, -8.602672688376096], + [-41.20776189049869, -8.610306880255383], + [-41.20800882096382, -8.618405077844368], + [-41.2065591885563, -8.633330297264946], + [-41.21781118037882, -8.646055765827857], + [-41.23380375140905, -8.647649572284362], + [-41.239505372489106, -8.655861840324638], + [-41.25133314664761, -8.66164389958076], + [-41.2687402549783, -8.663259609753267], + [-41.28744865725829, -8.660874258672127], + [-41.296166073533406, -8.672517446680793], + [-41.30795751021067, -8.69062213395834], + [-41.33693111480318, -8.708392351232208], + [-41.35835042643801, -8.707655359741024], + [-41.36537453440046, -8.705618851535183], + [-41.38126566599222, -8.70730750708753], + [-41.3939177004243, -8.72439055426036], + [-41.40032794551368, -8.7464105302569], + [-41.411405118744774, -8.77440348513251], + [-41.42428051486419, -8.80259066268237], + [-41.43193503906942, -8.797111049138959], + [-41.46265912874555, -8.828788057277], + [-41.47219757239869, -8.843149780920672], + [-41.487856822837465, -8.843938694137256], + [-41.49455424548789, -8.861161300768904], + [-41.50219734485932, -8.863555602774063], + [-41.51058165265382, -8.876260608266334], + [-41.50745046905999, -8.892476298723189], + [-41.52166305593703, -8.901898148564428], + [-41.522761859936686, -8.905230837736344], + [-41.53135910738361, -8.927739592840762], + [-41.54486607991793, -8.937989700311118], + [-41.54453400458536, -8.960584631681154], + [-41.55984651323455, -8.966915159776192], + [-41.56718930539865, -8.969571443048682], + [-41.570069524345676, -8.955064896225855], + [-41.578366434672574, -8.954799553650524], + [-41.58969990995727, -8.955155282148048], + [-41.59692213526168, -8.958937153888206], + [-41.60580742095006, -8.957439240910661], + [-41.60994426109416, -8.967307870116604], + [-41.621221420790604, -8.970898215134081], + [-41.62410937463521, -8.981708181112971], + [-41.6290103493218, -8.984925372662879], + [-41.66941617488845, -8.99011440191302], + [-41.67007249648928, -9.00371276221494], + [-41.680465911579006, -9.012317610571923], + [-41.7236150786718, -9.0135754312666], + [-41.72880557712046, -9.020875779856397], + [-41.7330139869851, -9.046329363188086], + [-41.733014923811254, -9.046355051601047], + [-41.733034456522674, -9.046475132254837], + [-41.7310226590074, -9.069853260095982], + [-41.73519591596862, -9.094735261173502], + [-41.758944550595, -9.116691880805885], + [-41.776064613440134, -9.125700473763239], + [-41.80008172680734, -9.148062068685675], + [-41.80013766415813, -9.165197036877043], + [-41.81988463149485, -9.189036696745434], + [-41.831252018945854, -9.228978386205938], + [-41.83829856105192, -9.242428986570292], + [-41.84782985439171, -9.24399108013973], + [-41.859718829053975, -9.2376406277578], + [-41.87053143691102, -9.23746698142508], + [-41.88494364843601, -9.253502145219674], + [-41.90469116610938, -9.259639976099416], + [-41.90961220123164, -9.273829657062416], + [-41.917943653591294, -9.278501761600419], + [-41.92477869046605, -9.27783257560118], + [-41.937450268555786, -9.267305584252291], + [-41.94917210197959, -9.263722454576111], + [-41.9583057229996, -9.262114038337362], + [-41.97227651625349, -9.248673478001571], + [-41.99991537606901, -9.266007498548854], + [-42.02193958286219, -9.249790996094779], + [-42.035001531901365, -9.256174187055347], + [-42.0581661782067, -9.254926018148389], + [-42.06922846919281, -9.257576481102149], + [-42.09949798117131, -9.280916860252134], + [-42.12122178137849, -9.283956225355466], + [-42.1419616656455, -9.288164227794747], + [-42.17949864534371, -9.285301103210905], + [-42.194240186960855, -9.29171946223449], + [-42.206444333682846, -9.292816361222199], + [-42.226062790857426, -9.283333662215515], + [-42.24366640004178, -9.288891415848434], + [-42.26156677405127, -9.304758413374785], + [-42.267907889163304, -9.309692746140259], + [-42.289973791327704, -9.30953053173186], + [-42.31258291810403, -9.316191298967825], + [-42.32039016094602, -9.321044415928439], + [-42.32588559471845, -9.333446177770249], + [-42.35511196512582, -9.349907544861345], + [-42.35953247203292, -9.37764789644639], + [-42.364155135400324, -9.38166911356759], + [-42.39889353100984, -9.397120793591663], + [-42.42520558516837, -9.417139707588303], + [-42.42828497615629, -9.439817564417693], + [-42.440591444950854, -9.45620584204329], + [-42.45177784124014, -9.462137807664034], + [-42.47094890072319, -9.458894620550556], + [-42.489075845878425, -9.462071749863963], + [-42.49122590270658, -9.469642138579646], + [-42.48603184079178, -9.483820763308351], + [-42.491115979281076, -9.493153662165142], + [-42.52194569429932, -9.503005535651825], + [-42.5491677099714, -9.49591373582189], + [-42.569186287828074, -9.501787705595378], + [-42.58648884706375, -9.496808687833537], + [-42.59500309130579, -9.504825479020292], + [-42.60290656714077, -9.516845642132134], + [-42.62172662190799, -9.54137180760565], + [-42.632358097531316, -9.538440296720184], + [-42.64022675190025, -9.543862973518241], + [-42.65461689998, -9.54143444469228], + [-42.6672569372809, -9.548158178525632], + [-42.679923060045745, -9.54918326732737], + [-42.69119551469804, -9.545471257004015], + [-42.71222806825748, -9.530262409526141], + [-42.720867503011725, -9.531344754212244], + [-42.72203628239903, -9.537218041173244], + [-42.71622254118397, -9.55118042714389], + [-42.71817583201384, -9.55827542098362], + [-42.7324498972586, -9.569143747512138], + [-42.742206826436416, -9.582106839325302], + [-42.757754197275275, -9.589314295321147], + [-42.76089638196445, -9.609449468907997], + [-42.76517320308329, -9.616784084824852], + [-42.78453831728615, -9.62080160981303], + [-42.80463399101944, -9.622384695176507], + [-42.82055747514219, -9.619264302569738], + [-42.82153575741173, -9.598880716897447], + [-42.829781250371134, -9.581296999741673], + [-42.82819804003432, -9.56055398634298], + [-42.83714345559129, -9.550405567276865], + [-42.84797720436761, -9.549690773251191], + [-42.862638198010494, -9.560417369842757], + [-42.86803597767471, -9.564048441315883], + [-42.87672797419426, -9.561657226432132], + [-42.904020753740525, -9.526787548664567], + [-42.928447383289544, -9.527280046597115], + [-42.946253002571204, -9.518446337996785], + [-42.951365538806584, -9.510414219235011], + [-42.95181359160471, -9.497683026837953], + [-42.962145263387185, -9.469850736922092], + [-42.962896486301794, -9.457085835068682], + [-42.95636969987918, -9.438672695052825], + [-42.95823942281053, -9.429357531591876], + [-42.97026117728639, -9.409552664800483], + [-42.98786734231486, -9.401371313895531], + [-42.997922299798, -9.404579290204014], + [-43.006306539686676, -9.409446526109557], + [-43.01272852768868, -9.40779568245852], + [-43.04008972650686, -9.414688446846865], + [-43.05218124700819, -9.413011673241423], + [-43.056947020155135, -9.41916805859197], + [-43.05931355787528, -9.396984629798881], + [-43.0666136799889, -9.394080153423634], + [-43.074550724366915, -9.39971860349564], + [-43.08289199410335, -9.397358164294243], + [-43.085274566188495, -9.391390442814723], + [-43.09574039071212, -9.38555111201187], + [-43.104101068965264, -9.386476203880003], + [-43.10742001821706, -9.378524785817051], + [-43.11169004069609, -9.380544425323297], + [-43.11962275841226, -9.371930240728028], + [-43.123872223044955, -9.379082325239], + [-43.129714463388034, -9.380061342824773], + [-43.1331656952127, -9.38731399252254], + [-43.14721863879046, -9.37633746373577], + [-43.15862931355325, -9.377068600095004], + [-43.173931586614984, -9.41125605693304], + [-43.19170193907896, -9.42046348036925], + [-43.19872537634482, -9.41802830313216], + [-43.20225913932244, -9.406448502689946], + [-43.20785828671867, -9.40128485767003], + [-43.214293005419044, -9.399680277486626], + [-43.2186366079521, -9.40065352122632], + [-43.22899997859935, -9.402976513476093], + [-43.242347433285516, -9.411915479096557], + [-43.2666718816301, -9.411937791455935], + [-43.27287282151996, -9.42281240099592], + [-43.27877166238869, -9.424606530088544], + [-43.2851197960637, -9.420059892410654], + [-43.29316331448816, -9.400983786257225], + [-43.30191664356522, -9.393895809130203], + [-43.31500541277057, -9.389412125412342], + [-43.32420297977594, -9.376733581321883], + [-43.33607840461327, -9.368644611499459], + [-43.3535578212361, -9.368987121562421], + [-43.36132376190788, -9.364443347640972], + [-43.37642429678313, -9.348936271289903], + [-43.392073091831165, -9.322719187303107], + [-43.39923907533361, -9.30820956138754], + [-43.42782504819561, -9.272617870617779], + [-43.43813053817051, -9.26616869098535], + [-43.45870254483235, -9.261370242144718], + [-43.48545990252868, -9.265316811101133], + [-43.49752867776865, -9.272556328671143], + [-43.52555853265045, -9.300077203917612], + [-43.54088247828289, -9.308275684272221], + [-43.5438038221029, -9.30887885496482], + [-43.572824705326184, -9.316275912250267], + [-43.6049936345115, -9.350151342564477], + [-43.621633178648764, -9.371568209778536], + [-43.689143835111516, -9.419713073826657], + [-43.751419397167055, -9.434102501839382], + [-43.7697282948837, -9.44208130499023], + [-43.78216760284269, -9.452684198276483], + [-43.78617562295582, -9.457676171994818], + [-43.799446919383925, -9.479681970686244], + [-43.81630720768909, -9.491986792440953], + [-43.82103668595811, -9.499956431763657], + [-43.84969193294236, -9.548082343934844], + [-43.85257995430185, -9.562168353303946], + [-43.84154456251047, -9.58607811462255], + [-43.84264973653469, -9.61269994387119], + [-43.83397652367805, -9.617959316635005], + [-43.83431073823689, -9.622617172183906], + [-43.8401701129936, -9.626552442981799], + [-43.841950701745155, -9.637457756908153], + [-43.82683621320627, -9.649560238128124], + [-43.80002273575346, -9.691879112567054], + [-43.799548126498856, -9.692524341135027], + [-43.79346949833848, -9.711983495979151], + [-43.797661237693006, -9.727710040353964], + [-43.78492027411584, -9.762415667092519], + [-43.76717552147885, -9.770726311939837], + [-43.76156699759133, -9.777912321383633], + [-43.72142631315154, -9.793388095454473], + [-43.71781654742058, -9.802452787326446], + [-43.7083948298011, -9.805737947098116], + [-43.693459850925876, -9.805288795106032], + [-43.68287040798879, -9.815776255563625], + [-43.664844756454755, -9.823686049622522], + [-43.65324403553955, -9.839086639729379], + [-43.65353774512703, -9.845288767226755], + [-43.66526056648005, -9.855907186286172], + [-43.66639634783354, -9.86907907531295], + [-43.677447241397516, -9.886559179115455], + [-43.694621151228255, -9.891283069202796], + [-43.69642297162076, -9.901235867518599], + [-43.705473547524214, -9.90641114207007], + [-43.70903382708058, -9.913250770757715], + [-43.70617523040083, -9.922084571412602], + [-43.69283708292086, -9.925558300556833], + [-43.69045256275093, -9.929530569397215], + [-43.68956314108905, -9.93909650577002], + [-43.70295103217443, -9.966143915963418], + [-43.68467480144491, -9.982796487003204], + [-43.66954331091425, -9.987430173283384], + [-43.6651716472425, -9.991059556540959], + [-43.662282380485124, -10.004065404438014], + [-43.669478963819095, -10.030786814531805], + [-43.69027970089307, -10.04466671427905], + [-43.69264560029143, -10.060244155316953], + [-43.69264867648281, -10.060290554515865], + [-43.69291305418219, -10.07742704323264], + [-43.72992590232625, -10.072286938203417], + [-43.74586211319097, -10.072888104866571], + [-43.76212338728338, -10.075805295665386], + [-43.768584078033896, -10.085700935631708], + [-43.773111060126816, -10.098815537444468], + [-43.76596970316428, -10.120723462883639], + [-43.76695437659669, -10.136091109453204], + [-43.768458277724854, -10.143481811711487], + [-43.77486810569359, -10.168333988620079], + [-43.78481341793843, -10.191709505337233], + [-43.80908734488508, -10.221471721360702], + [-43.83458767042822, -10.246019889154322], + [-43.83804882183356, -10.266086527084111], + [-43.83404004159128, -10.277667994846567], + [-43.83828842173729, -10.304657453450845], + [-43.8477424284209, -10.316332143782436], + [-43.87167961685218, -10.330468004149921], + [-43.88471145304916, -10.344052275842714], + [-43.895092094916585, -10.354521990955377], + [-43.898766907710396, -10.367350795522077], + [-43.91478911040159, -10.384186128975566], + [-43.91622497816973, -10.426749946761376], + [-43.928030655623864, -10.43445937454971], + [-43.942658287066884, -10.435928324947131], + [-43.94440967588213, -10.435769647256185], + [-43.97692873455232, -10.431407550850423], + [-43.99812041637417, -10.41009554328782], + [-44.007700699770815, -10.40537385939844], + [-44.02332216501155, -10.408100707646206], + [-44.02988581903071, -10.41699306074734], + [-44.03586157261052, -10.435456330064214], + [-44.0347438236148, -10.44903983159862], + [-44.02583848531242, -10.475501586641572], + [-44.02961434821235, -10.484112175051926], + [-44.041548764616735, -10.493267307509479], + [-44.05100493257907, -10.506269358374437], + [-44.058839690274205, -10.538370431653696], + [-44.07281534325806, -10.58108765823315], + [-44.08228421041031, -10.588820274980376], + [-44.1007453042382, -10.591753382859643], + [-44.11061548235626, -10.597226691850796], + [-44.123333454247, -10.620937355495856], + [-44.13131202065595, -10.634916015657396], + [-44.152948047636585, -10.644109955951805], + [-44.1655335155549, -10.642931700049882], + [-44.1783106837583, -10.631456115695011], + [-44.192978157404035, -10.628609466509367], + [-44.2086401063022, -10.61535430397752], + [-44.214088258967635, -10.614477213684037], + [-44.241451603622814, -10.627367685783085], + [-44.264012200227306, -10.624699971207638], + [-44.28290227426389, -10.607120523312794], + [-44.30175357407291, -10.57207291825816], + [-44.314539844830485, -10.557392632222413], + [-44.333092312977605, -10.548795095593519], + [-44.34437121871144, -10.549696142500833], + [-44.398640318585734, -10.606211143725822], + [-44.42364036006274, -10.61329602884259], + [-44.4436713979114, -10.606666981793829], + [-44.45630271639782, -10.608128740483927], + [-44.463623358301426, -10.615285839927049], + [-44.476728103661465, -10.63933352943606], + [-44.50450641111774, -10.650768234237406], + [-44.52225633057174, -10.649832865970849], + [-44.55106929972887, -10.628609396728498], + [-44.577770208297096, -10.626797241465487], + [-44.58950530368396, -10.6324475999607], + [-44.60898036517362, -10.662605917587747], + [-44.626989424587784, -10.675606639989423], + [-44.655247086960365, -10.67672381393961], + [-44.66661173047594, -10.682370263916072], + [-44.66957377628506, -10.692192670605996], + [-44.661311490400124, -10.732722455303112], + [-44.6627726882898, -10.75058995997536], + [-44.666766098102876, -10.758908528274231], + [-44.68513621377224, -10.769088943319804], + [-44.71180437198172, -10.761209796611885], + [-44.723890300556874, -10.767734503840916], + [-44.75121593894323, -10.782169178327141], + [-44.75832886034371, -10.78901069620401], + [-44.75891474545297, -10.804873001403115], + [-44.77816151755186, -10.804055262268259], + [-44.78805076560264, -10.80854919616393], + [-44.81031166882885, -10.846611789654213], + [-44.80816983950518, -10.85593099226819], + [-44.81113115716219, -10.87045419892381], + [-44.82216252864602, -10.875182117648029], + [-44.84428713018006, -10.900060170777554], + [-44.85072258527483, -10.8988625122557], + [-44.8550120544057, -10.884521024635164], + [-44.86378890471667, -10.885253606087357], + [-44.88441763616697, -10.902337929625135], + [-44.89743252173335, -10.902966676355977], + [-44.90116797091641, -10.910043920092226], + [-44.90997178568906, -10.911982927946008], + [-44.93120549129255, -10.92878334999414], + [-44.96836465257416, -10.900536146842875], + [-44.973905635376745, -10.891501409715932], + [-44.99503210286886, -10.88392119562892], + [-45.002119911530585, -10.887044652081522], + [-45.01658427676253, -10.884625645782931], + [-45.03067893849046, -10.866677678965564], + [-45.045458098900525, -10.859672032878164], + [-45.04998910221394, -10.852170634137686], + [-45.06326785315306, -10.84829077680512], + [-45.07322265931274, -10.840448780011318], + [-45.08685908302343, -10.840003094276822], + [-45.10528293804141, -10.846846092523537], + [-45.11650611067864, -10.840798318862936], + [-45.153781023301285, -10.839116234428403], + [-45.1539376320383, -10.839110843280285], + [-45.21556253903725, -10.830248158464293], + [-45.21914076216429, -10.826160337787911], + [-45.21920926183492, -10.817401521460239], + [-45.24803682412105, -10.821992725100026], + [-45.25742865141847, -10.81187027431459], + [-45.26616432706167, -10.781445383852796], + [-45.27283687827005, -10.773264778554287], + [-45.28936462848266, -10.765645569357954], + [-45.322359199546455, -10.7602900457116], + [-45.35659536586888, -10.73339384289494], + [-45.35820440627236, -10.732232235375589], + [-45.36910173071092, -10.679974064714802], + [-45.377089601160904, -10.663141761164466], + [-45.390198307077796, -10.648324616694529], + [-45.41443656399783, -10.645140664131825], + [-45.429782461701905, -10.634105026954144], + [-45.4373134879677, -10.615590554094284], + [-45.43677845675409, -10.576797709249085], + [-45.4403334944063, -10.569521770744647], + [-45.44731705191731, -10.55636176823341], + [-45.440357839181104, -10.5416876546098], + [-45.43816354823248, -10.525548747206626], + [-45.447241951538366, -10.507447102631934], + [-45.42649439128507, -10.48459325741106], + [-45.400254905817036, -10.463098633771203], + [-45.39600575700808, -10.452043491611812], + [-45.3959803576425, -10.445049816722717], + [-45.424482630108145, -10.426514349524563], + [-45.429917235331025, -10.403929617503948], + [-45.42575839347021, -10.370307814419405], + [-45.42992124523116, -10.360194378865774], + [-45.456810432087195, -10.338594741155404], + [-45.47325250017378, -10.315356570209552], + [-45.48463876682375, -10.304920860656967], + [-45.49067700146239, -10.301044404309296], + [-45.517313523436705, -10.286464208919696], + [-45.52233975143579, -10.27667674406218], + [-45.52334186654892, -10.244164056236178], + [-45.52617265833557, -10.236951114295918], + [-45.55655626982783, -10.216924630639848], + [-45.567296775338754, -10.201507713056987], + [-45.57130217860998, -10.186911363296096], + [-45.565419708975085, -10.160000871780694], + [-45.56744247204168, -10.139545709798208], + [-45.58387538513545, -10.117014744634837], + [-45.59835775309341, -10.108351161735726], + [-45.60571194578138, -10.108778338821066], + [-45.6392265055236, -10.126225791107549], + [-45.64874969874826, -10.127356791187244], + [-45.66929093526746, -10.14538799588651], + [-45.68470475522736, -10.153338250978889], + [-45.703855056617094, -10.157011481836502], + [-45.71623218099809, -10.15263363784939], + [-45.72307616726851, -10.155180683537264], + [-45.726624167809845, -10.156877216991155], + [-45.726624255676114, -10.156877379880278], + [-45.734981888021444, -10.172187714090184], + [-45.73424213581411, -10.185057914361357], + [-45.72680648847624, -10.207125827394247], + [-45.73383673807735, -10.228618301266463], + [-45.733836791042975, -10.228618360414266], + [-45.74400976627221, -10.239978366710355], + [-45.79372754141646, -10.267694121164041], + [-45.84320160941598, -10.259277060928552], + [-45.8778432336258, -10.239357902760153], + [-45.925761639921745, -10.250284137438205], + [-45.94630153174074, -10.258850450705536], + [-45.95527815408684, -10.21846422756175], + [-45.945715129189985, -10.206841981988557], + [-45.94560250366624, -10.196463905891331], + [-45.93829357288769, -10.1909137285117], + [-45.93117099569974, -10.19084716903899], + [-45.92425073454771, -10.171179602270877], + [-45.91539425458661, -10.164186535652318], + [-45.913490248134, -10.158408626629866], + [-45.90000527307761, -10.152790245539872], + [-45.897728896958, -10.136592539197673], + [-45.88625919941616, -10.11408409041489], + [-45.878528122424754, -10.110321032317321], + [-45.87442868720941, -10.085239473123108], + [-45.870554844110714, -10.08020773450107], + [-45.8699206488077, -10.069313738943416], + [-45.87752041366265, -10.063802735487593], + [-45.880180431724604, -10.058615627001844], + [-45.874839460392465, -10.054987695512901], + [-45.876979366698855, -10.050992525921297], + [-45.865354999395926, -10.006999449816927], + [-45.85480384047621, -9.996358225494353], + [-45.85701799999074, -9.984777851694703], + [-45.85266353102473, -9.982190975037458], + [-45.84699954385587, -9.962304965598207], + [-45.84899471679018, -9.95631465187213], + [-45.842271156340914, -9.941579612979023], + [-45.84648174388508, -9.924568741287798], + [-45.852641998532256, -9.919817572819003], + [-45.858034984514575, -9.90753593065259], + [-45.85994927773225, -9.888086781922404], + [-45.86353204602481, -9.881443419598835], + [-45.861549616460216, -9.874464448502872], + [-45.86598443594103, -9.871669791111199], + [-45.86027541777772, -9.852102713231151], + [-45.85535523425898, -9.847940116618462], + [-45.85608876505554, -9.842160842482729], + [-45.85140612481669, -9.83883416075382], + [-45.84571651825104, -9.80858679858551], + [-45.83872105943907, -9.796920222904806], + [-45.8284656214886, -9.791723998842789], + [-45.82140631346773, -9.773148752709833], + [-45.82311053752132, -9.763272978629317], + [-45.820663297041385, -9.756825733136395], + [-45.82699887413851, -9.74651447096754], + [-45.820339568514406, -9.740146491725888], + [-45.82858271799218, -9.724827039874382], + [-45.82570986895719, -9.7169407585857], + [-45.831594294756336, -9.713420089461547], + [-45.828623085057224, -9.703467482108296], + [-45.83800522148847, -9.696478437202245], + [-45.82915192833816, -9.680153904436274], + [-45.83270414954541, -9.653239001008298], + [-45.82491099248222, -9.636777380715447], + [-45.82574911987159, -9.626518081385749], + [-45.81952360211199, -9.624988631182891], + [-45.81993971021316, -9.618379256158615], + [-45.825358609135826, -9.607508228486697], + [-45.83657225461953, -9.602309794930965], + [-45.83767663048628, -9.591685622147946], + [-45.83344164771207, -9.590838196532648], + [-45.833261358010624, -9.58792012346354], + [-45.84204806782637, -9.576441550927907], + [-45.841409408366154, -9.56232364296183], + [-45.82736983618268, -9.545964719487234], + [-45.8319278476249, -9.536813320649925], + [-45.8207569921814, -9.526411154122718], + [-45.821689753639596, -9.519457301670874], + [-45.810076004088856, -9.503905542463352], + [-45.79813929067293, -9.495621842110358], + [-45.79658129628253, -9.48752985522483], + [-45.78888718495135, -9.48259866072554], + [-45.78313073158956, -9.479797752768418], + [-45.78946985559826, -9.470316907058105], + [-45.78891525419486, -9.464634556430962], + [-45.795118834288786, -9.46053228388412], + [-45.787915560256074, -9.458440509842607], + [-45.794638167405594, -9.450366615939162], + [-45.793062886902625, -9.445915978296052], + [-45.797786741337006, -9.442500851633683], + [-45.7939832866723, -9.438442901247432], + [-45.80132173269813, -9.435071856360741], + [-45.802728482190155, -9.425320262656307], + [-45.79782848116218, -9.417273331920011], + [-45.8179733585841, -9.389405250631967], + [-45.82415134278689, -9.374967124301483], + [-45.847123759877746, -9.356397824718863], + [-45.863197065853385, -9.359175661751737], + [-45.87501308350035, -9.35383143286309], + [-45.87947937114813, -9.346229062845246], + [-45.88737156945194, -9.348829258425496], + [-45.89366313069693, -9.342201791047996], + [-45.890926171650776, -9.331555100683055], + [-45.896238855155026, -9.32799857481957], + [-45.89739861204792, -9.31903028607778], + [-45.902272450850006, -9.317891561884553], + [-45.900238648498785, -9.312975516813458], + [-45.90705156389293, -9.298035906835308], + [-45.90585200642553, -9.292074671969026], + [-45.897079606557654, -9.290407175035343], + [-45.895923519218016, -9.281546236984997], + [-45.903477361161286, -9.26847597359384], + [-45.89848810534625, -9.263172486630713], + [-45.901858594564715, -9.252172069111506], + [-45.89659441575096, -9.235362395981861], + [-45.90318524661162, -9.231576935767375], + [-45.89864749888335, -9.209697630628616], + [-45.90564447801884, -9.19119344944586], + [-45.89968525967887, -9.191452461648916], + [-45.89706272812468, -9.186537420697125], + [-45.905381369774176, -9.174981680885535], + [-45.913315360109415, -9.16756888873029], + [-45.92831407823602, -9.134791924309544], + [-45.92716384677038, -9.116662033394057], + [-45.92479847029289, -9.11241487804488], + [-45.927579752723055, -9.102685670425194], + [-45.92389216067831, -9.100214297985803], + [-45.9231179435924, -9.090332782150378], + [-45.931038779680485, -9.08874637971173], + [-45.932703141518324, -9.085142878330855], + [-45.92737381003887, -9.080749517932425], + [-45.92931917754649, -9.069748761586865], + [-45.9378656764417, -9.06369357831016], + [-45.9404067094034, -9.056194937317548], + [-45.93578482800877, -9.039193973776966], + [-45.945394360476605, -9.024997837375025], + [-45.943449501981156, -9.015335173728444], + [-45.95911272342173, -9.001758045307046], + [-45.96736872158518, -8.979003265644465], + [-45.98081231204029, -8.966835485794379], + [-45.99085384886281, -8.950290314280917], + [-45.99428239631673, -8.926885438250448], + [-45.985160954832494, -8.918539172242296], + [-45.98592158485999, -8.910441644910431], + [-45.97965841825828, -8.902853571272091], + [-45.982969533360915, -8.890068390480696], + [-45.98005488115481, -8.884090809154195], + [-45.967604868440574, -8.87591096613677], + [-45.972684980261896, -8.869151617148407], + [-45.9715353192285, -8.862425336941294], + [-45.95990261508835, -8.85102991947177], + [-45.957318535265074, -8.840538316749912], + [-45.94897120110221, -8.844964633533674], + [-45.94551769414346, -8.840397545114097], + [-45.9453486430453, -8.831491887757194], + [-45.95865882932115, -8.826197124518883], + [-45.960754389562155, -8.818900405123195], + [-45.953497119356626, -8.807296111132496], + [-45.939161179869, -8.795869046811497], + [-45.9383885263513, -8.78495974040484], + [-45.934993550799604, -8.77912348376381], + [-45.92800967882371, -8.777376019258353], + [-45.90761399003377, -8.758688797302817], + [-45.891602916375376, -8.76281179791913], + [-45.88933546516038, -8.739676401196508], + [-45.87437603101218, -8.731415919256477], + [-45.86331562391775, -8.729826319362772], + [-45.86460890561145, -8.715903757035269], + [-45.85329294062728, -8.709836914738343], + [-45.83993689520506, -8.715298557125244], + [-45.82096032457193, -8.665643173904414], + [-45.81160545682608, -8.656100665885148], + [-45.81896998791527, -8.654029802782263], + [-45.82102252452862, -8.649574755573182], + [-45.81553634522901, -8.633246803995164], + [-45.80382064149375, -8.621994244823716], + [-45.79866030322513, -8.620976401765093], + [-45.797464600269834, -8.613055053904997], + [-45.778121513293776, -8.617840570671166], + [-45.765627226353885, -8.609597870355955], + [-45.78144851352335, -8.59842186072894], + [-45.793931311467894, -8.592442214862775], + [-45.79376868967965, -8.584421031625448], + [-45.771400764391714, -8.573948858429882], + [-45.76135651196812, -8.561857531701193], + [-45.76079019385506, -8.549654744920767], + [-45.75545896314772, -8.544735790482646], + [-45.75335782167381, -8.539933270336464], + [-45.75681854321139, -8.527769767386205], + [-45.73845308548893, -8.501195512656697], + [-45.74599778907586, -8.493720270129833], + [-45.74217768208536, -8.48106585109973], + [-45.74157967178096, -8.468227489919501], + [-45.742521638192436, -8.447977565297526], + [-45.73466339363573, -8.436679856505505], + [-45.72854733107574, -8.42988037892211], + [-45.73319067886447, -8.422220285138257], + [-45.73106733321922, -8.412735320108306], + [-45.71922085806431, -8.4032424165624], + [-45.72155997089394, -8.394410970313237], + [-45.71144071115585, -8.3880463026448], + [-45.70615757682696, -8.388827946298127], + [-45.70033621881194, -8.381346998283602], + [-45.70348676958194, -8.368522613811967], + [-45.691603857238704, -8.363041027384156], + [-45.68752688921952, -8.355570795481556], + [-45.68749381725191, -8.336784677207486], + [-45.678998347281826, -8.32286271512071], + [-45.676555175945616, -8.304467558572991], + [-45.671302398612376, -8.294805003843365], + [-45.664553011374174, -8.288500350956765], + [-45.66154734026985, -8.250041054938391], + [-45.64875089811362, -8.23798835932297], + [-45.60813270444062, -8.2049724089636], + [-45.61285487262893, -8.19468940592165], + [-45.6111251787617, -8.187008481427885], + [-45.606907106525234, -8.185717202823188], + [-45.59954932637911, -8.175087478744908], + [-45.59127095284908, -8.17338610885238], + [-45.581460518534136, -8.156064666141258], + [-45.58658250400603, -8.13659374270332], + [-45.585427467251705, -8.129016513684773], + [-45.57510122218823, -8.113974743523444], + [-45.584761339227555, -8.100260762376625], + [-45.567287360880606, -8.071685587084366], + [-45.56772214520749, -8.053673601522274], + [-45.56142587798649, -8.047921670870464], + [-45.57628039254857, -8.029111428746617], + [-45.56294096037234, -8.014594808813776], + [-45.55415111688881, -8.017252349054763], + [-45.54982852430579, -8.01450987594462], + [-45.55117170996093, -8.00807050428398], + [-45.567079489128346, -7.997149076135777], + [-45.55938186925847, -7.981733623671917], + [-45.55684976161103, -7.973701856676917], + [-45.54867514377391, -7.969299316654666], + [-45.545073546924876, -7.960737995300496], + [-45.5561433163229, -7.954343088314088], + [-45.5474481239988, -7.947346357370887], + [-45.54457721297227, -7.939719765699601], + [-45.541363006164495, -7.92898155565741], + [-45.54387325338548, -7.920983568617721], + [-45.53919008551549, -7.9194311500854715], + [-45.53206927948603, -7.923227726059454], + [-45.52362424034029, -7.912211281839549], + [-45.524193349292716, -7.908445206345856], + [-45.543010735370494, -7.897728424206295], + [-45.53988539571586, -7.893374653064411], + [-45.52083894061617, -7.888098321945059], + [-45.52202934690097, -7.8831708222565], + [-45.5369443387639, -7.871992221906847], + [-45.54036892067168, -7.864718202126313], + [-45.536640903630406, -7.861582072486651], + [-45.52496129652548, -7.8569524925799925], + [-45.52639671838685, -7.840030624498855], + [-45.51577775122889, -7.834333784985446], + [-45.510040542241434, -7.820327755595141], + [-45.510901869347215, -7.802417184181592], + [-45.498880556487485, -7.798019219843286], + [-45.50063692153728, -7.785663036130526], + [-45.493878875018765, -7.7886817414530825], + [-45.489940335619, -7.786554833389864], + [-45.492825254385274, -7.777159289879362], + [-45.484696771106236, -7.763673554328203], + [-45.49184839616046, -7.756909416932274], + [-45.496487259502125, -7.750318975633806], + [-45.493537639271615, -7.747003324635488], + [-45.489877203014245, -7.746018507030064], + [-45.48665747776929, -7.750902197450967], + [-45.48223762427765, -7.751373930947383], + [-45.48150153202642, -7.74348316444655], + [-45.48689249267356, -7.729047496308367], + [-45.483628519467054, -7.719474216055665], + [-45.480116019957094, -7.714625098204368], + [-45.46857195790038, -7.7141193778928185], + [-45.468907443477335, -7.689151828097202], + [-45.457364918235626, -7.689683382673247], + [-45.44940481607413, -7.6856935150209225], + [-45.44914154719443, -7.682112849379919], + [-45.46073325397609, -7.677999532414467], + [-45.45599395457536, -7.670686432371342], + [-45.43993436370517, -7.678022472736967], + [-45.4352507980008, -7.675742239846126], + [-45.43706289819926, -7.66769510755544], + [-45.43274245290046, -7.661522093201671], + [-45.41781686597492, -7.658577966591604], + [-45.41427748775831, -7.654637014850891], + [-45.41567271725556, -7.645136652928261], + [-45.40407680639125, -7.644057850278225], + [-45.39902836812059, -7.640064983120782], + [-45.39865019270059, -7.623507090383388], + [-45.394072078868504, -7.613032064414723], + [-45.382004437310876, -7.613140208743327], + [-45.373638144634185, -7.618805136632795], + [-45.34325686685878, -7.593499013348864], + [-45.339762992938816, -7.580265336371262], + [-45.32307209095691, -7.574931569975932], + [-45.298534427392575, -7.574844666491795], + [-45.28505371556122, -7.5663644355044894], + [-45.26136314542689, -7.5708723764417165], + [-45.25064971285152, -7.55866483696111], + [-45.23125623489484, -7.549035781066111], + [-45.223045701495224, -7.56045939954482], + [-45.222683324978426, -7.566637037688611], + [-45.217762920835554, -7.5679659530958885], + [-45.20427558747787, -7.5518004725095125], + [-45.18358392859112, -7.543400990484774], + [-45.17442879610047, -7.528869470631488], + [-45.15456661647753, -7.512783704609283], + [-45.14656387702873, -7.520988011808977], + [-45.13715618708871, -7.521563586366064], + [-45.111772232260066, -7.510337101006203], + [-45.08512456877055, -7.502536821760051], + [-45.06937356127338, -7.503826913786026], + [-45.04718161428525, -7.51260302449249], + [-45.01859152787872, -7.49557787386451], + [-45.0044020809829, -7.496773016282672], + [-44.98879692683166, -7.482356796063307], + [-44.98356237716761, -7.482338629489455], + [-44.9691720948215, -7.483447674500573], + [-44.95745405389023, -7.475737990329807], + [-44.937227486219705, -7.470041255972239], + [-44.93211120498636, -7.472404017447007], + [-44.924442522595946, -7.470311641556972], + [-44.9202053260292, -7.454323797354514], + [-44.909871353282874, -7.443282273106353], + [-44.901395548714895, -7.426056287032696], + [-44.89663279079138, -7.424248427257262], + [-44.88267578337741, -7.427573457490627], + [-44.86894262598012, -7.422308124131458], + [-44.863008733280395, -7.411297235466326], + [-44.85267462179836, -7.402061449809742], + [-44.85405869126138, -7.396449277657119], + [-44.848488817500936, -7.386360998787228], + [-44.82248734457022, -7.377215835242241], + [-44.81673236532044, -7.361226826527921], + [-44.78676992982919, -7.371490568118816], + [-44.780955998532974, -7.378242829928155], + [-44.74317869506181, -7.3617939085671535], + [-44.72989223837539, -7.391062528512041], + [-44.71221898987752, -7.397902881159473], + [-44.70474451638111, -7.392663774374818], + [-44.700312196731744, -7.395420546446199], + [-44.687978140064445, -7.394554948379606], + [-44.67900281911306, -7.358959967779293], + [-44.67205400003584, -7.352485277898248], + [-44.6633526676644, -7.3318283933927075], + [-44.656358088072544, -7.3270645721640735], + [-44.64621493000706, -7.3259157519922455], + [-44.64027112017264, -7.314872513387293], + [-44.61813818057961, -7.309145088890513], + [-44.59611419522409, -7.276961787524125], + [-44.59559712339201, -7.269063160375136], + [-44.57975322555509, -7.257628270545761], + [-44.572952440963746, -7.2482976312231955], + [-44.567904699672184, -7.231636858482362], + [-44.564243821714385, -7.22758094814066], + [-44.54862889227646, -7.2260081001824705], + [-44.54107863577993, -7.226000035240447], + [-44.52284912529069, -7.219604384198271], + [-44.514684172200944, -7.196379817815722], + [-44.500842378031, -7.18475420718502], + [-44.4908967899557, -7.182840481216852], + [-44.486229434544164, -7.176452979877019], + [-44.46407079854431, -7.161685471852918], + [-44.43770713339621, -7.1557494384146665], + [-44.40684528949731, -7.131355242451551], + [-44.39159779357262, -7.124353714073372], + [-44.380039980075075, -7.119045947922785], + [-44.36382172139838, -7.121322141196436], + [-44.33305122344382, -7.108750075900945], + [-44.31590390788554, -7.118013474266791], + [-44.306203161504264, -7.117193494455649], + [-44.285048544165726, -7.084836985211572], + [-44.27446439038372, -7.07101781826973], + [-44.279000891408984, -7.046022963362323], + [-44.27489546900749, -7.031418420970246], + [-44.26479589822405, -7.021006480144833], + [-44.261984637905094, -6.998745721184846], + [-44.24887812602493, -6.998746584509042], + [-44.2359053589301, -6.998757847578236], + [-44.206014778681826, -6.963480862185908], + [-44.201430011971084, -6.932538632393075], + [-44.192876232141494, -6.926070818007628], + [-44.176039319278026, -6.9279309914365275], + [-44.173545312504224, -6.924362608703916], + [-44.17670871291466, -6.90587088793507], + [-44.16089982660419, -6.872823049831701], + [-44.13917688720924, -6.864130041366747], + [-44.12512822968333, -6.83560802995545], + [-44.11990254547892, -6.832811641190024], + [-44.115180306207144, -6.838375777107886], + [-44.11418182489679, -6.8528930746031325], + [-44.109015491634715, -6.85763495432938], + [-44.104405318090414, -6.856569892145988], + [-44.09871426017551, -6.839966549309452], + [-44.113044134630094, -6.823178365762407], + [-44.1162799628283, -6.805809503951155], + [-44.107158353523126, -6.802393206263992], + [-44.08887872893243, -6.8033231648903625], + [-44.07699196954241, -6.821148951189936], + [-44.06970165408057, -6.821400456446928], + [-44.059067239465506, -6.808460399062901], + [-44.06087312415379, -6.790769765296626], + [-44.057463999141014, -6.774464720749123], + [-44.05337549908195, -6.768331670597278], + [-44.04290124854594, -6.769457134076758], + [-44.037945573243974, -6.764356476204452], + [-44.03339816249968, -6.760426975218946], + [-43.987738751894256, -6.757300961661067], + [-43.970738638292694, -6.744244407806995], + [-43.96121496297539, -6.741921499544045], + [-43.94934716136016, -6.751767015517703], + [-43.9451079087546, -6.765533205087416], + [-43.930477605534044, -6.771076980044811], + [-43.91379976444698, -6.752684766111717], + [-43.87992362009868, -6.757805749655027], + [-43.853766619059435, -6.735635094918836], + [-43.82013209908977, -6.727300651726418], + [-43.80819191248823, -6.720296463500631], + [-43.800599612061426, -6.707706815156758], + [-43.79747415079559, -6.7031809157083755], + [-43.79086221556093, -6.702355547957844], + [-43.774849306113346, -6.714960144447055], + [-43.7607414471914, -6.702461152012411], + [-43.753827648516854, -6.703511319054009], + [-43.728720111509034, -6.7048252894130975], + [-43.71499652277814, -6.698757021629794], + [-43.707175497010915, -6.699841189969903], + [-43.698548429082415, -6.709575162527516], + [-43.67272760280114, -6.706293144790118], + [-43.65969726373551, -6.710135209448489], + [-43.6590068182403, -6.710355859967623], + [-43.6375179804836, -6.719586530346134], + [-43.62159964480825, -6.73503204796471], + [-43.59893116716325, -6.743715805963399], + [-43.584382554526286, -6.757508575414748], + [-43.57591228781943, -6.756875615210072], + [-43.57156210430571, -6.7489802813972455], + [-43.56134224669376, -6.749389835799994], + [-43.55140017105774, -6.759888740349221], + [-43.546286029828146, -6.783106570489052], + [-43.53732637569611, -6.792232130201771], + [-43.5068962480455, -6.800429946484558], + [-43.495302088783916, -6.809295874098886], + [-43.489565897919974, -6.8198662876401945], + [-43.48196186947149, -6.835122546623113], + [-43.45484392118609, -6.846230278914933], + [-43.44436776443082, -6.838636687505276], + [-43.42004563172693, -6.843859094971336], + [-43.40915338099486, -6.841685459040094], + [-43.39948704704686, -6.833274531530931], + [-43.39158943955538, -6.834387818636625], + [-43.387880423850895, -6.817682468824477], + [-43.364097479313386, -6.819335151420564], + [-43.34899245066324, -6.79810231780936], + [-43.302295075091834, -6.801245189470267], + [-43.2787334929699, -6.7966415296004445], + [-43.263197831988435, -6.785962748767316], + [-43.25123381310675, -6.770313031624416], + [-43.244703320831384, -6.766377187376418], + [-43.21514585758065, -6.763094298010579], + [-43.17845756371622, -6.766747585170262], + [-43.16874180873046, -6.769757578173321], + [-43.152677876290845, -6.782801444139678], + [-43.14603719954859, -6.783126557421525], + [-43.13082127387081, -6.781024562747794], + [-43.105120850954236, -6.770773665003534], + [-43.08212141902175, -6.748106863370138], + [-43.06579027894328, -6.749266737292358], + [-43.04687469377458, -6.761485881648116], + [-43.03340122947546, -6.762683023393432], + [-43.017329234862544, -6.760944982880864], + [-43.001077379476975, -6.754455913085753], + [-42.991371129557095, -6.745464376732272], + [-42.982601612037065, -6.72258604659272], + [-42.97404121683468, -6.714685911573027], + [-42.96207062538373, -6.709625555022369], + [-42.94972859624525, -6.704912327529612], + [-42.91978493355258, -6.67033553906069], + [-42.914344656083294, -6.653057290394303], + [-42.915403559876395, -6.646095792159931], + [-42.91723304891159, -6.637332588495377], + [-42.90411755929099, -6.597678770796997], + [-42.89122771249098, -6.582062192601928], + [-42.88392620125072, -6.568907026248331], + [-42.88461205426223, -6.560517334866031], + [-42.88945376101231, -6.538532883874026], + [-42.871236115551646, -6.512102841054321], + [-42.885122842700405, -6.508942050075352], + [-42.886698870606565, -6.505131568148734], + [-42.883011542622725, -6.494007852576732], + [-42.86892273196795, -6.487454749333578], + [-42.86676750458797, -6.4824631630176555], + [-42.87109523015965, -6.466278912126642], + [-42.86956740800298, -6.450362072288387], + [-42.87723044705395, -6.4287918289045365], + [-42.87776389264576, -6.417893403901366], + [-42.85773610858283, -6.39013240298775], + [-42.85653578790966, -6.370612199479043], + [-42.85237543133206, -6.35913402211268], + [-42.83143157173164, -6.3424295539872295], + [-42.82934338203682, -6.3374471567097945], + [-42.83709106616688, -6.325378097304144], + [-42.85472748615954, -6.333684413495579], + [-42.86020011694432, -6.33056995421191], + [-42.85070741777634, -6.307375423794882], + [-42.84701294029891, -6.282519219760662], + [-42.85547845424368, -6.267124865648497], + [-42.85528132137103, -6.253569955484396], + [-42.85522187713899, -6.253096429561667], + [-42.86255915881376, -6.239467127376498], + [-42.86793400955426, -6.233469700221767], + [-42.87720402442855, -6.225818676500769], + [-42.89327580734494, -6.226062009950981], + [-42.91664771266158, -6.213431141082644], + [-42.933912539692415, -6.193065744843624], + [-42.95187574114824, -6.187724889995093], + [-42.96859609881804, -6.178276757725179], + [-42.97546080948631, -6.16756654586961], + [-42.97939396945121, -6.138173563429339], + [-42.98244869340125, -6.12841448089581], + [-42.994815402643695, -6.1159179532575285], + [-43.01134479371884, -6.111037312101858], + [-43.034106883965755, -6.111371944322592], + [-43.04998850035793, -6.0997722378318], + [-43.06004415110671, -6.071536329013256], + [-43.07501184875266, -6.054732029188753], + [-43.07539978810709, -6.040302673218673], + [-43.0562107657638, -6.0273531957157145], + [-43.050289645228176, -6.015490374840798], + [-43.048632890932616, -6.000565439257995], + [-43.051263784647716, -5.989588819895002], + [-43.05546961048117, -5.986423576987357], + [-43.0735148815058, -5.974320084824657], + [-43.081751101803164, -5.961228674016394], + [-43.087682124430444, -5.945231067104207], + [-43.08767851293529, -5.921810911004113], + [-43.095374485448154, -5.91041983975568], + [-43.09943066086098, -5.906604883219439], + [-43.0994305276176, -5.899578253911705], + [-43.07656691564235, -5.867108030089997], + [-43.07695576990753, -5.864744431472433], + [-43.09592555668279, -5.834553913193914], + [-43.0917073998681, -5.8064408883062795], + [-43.09804348470159, -5.793146613376079], + [-43.10171564983218, -5.762375886908065], + [-43.09705649648169, -5.745774475774874], + [-43.09401529877731, -5.740892541832703], + [-43.08018482396274, -5.741948122205978], + [-43.076866637147106, -5.728942528504343], + [-43.08794982130735, -5.68348334594867], + [-43.088183790718915, -5.6704799728082085], + [-43.08398098226261, -5.659407676649334], + [-43.08426553295337, -5.640485317745127], + [-43.09109821579697, -5.633786553023228], + [-43.099009456580404, -5.633214153987043], + [-43.095086101119016, -5.615476229860916], + [-43.089406167103164, -5.604802155946812], + [-43.08065177775984, -5.599873202955196], + [-43.04881671291416, -5.591986608938891], + [-43.03455813046427, -5.592216375169193], + [-43.027451506119085, -5.579143959502564], + [-43.02743939015728, -5.57911620334119], + [-43.02439975592846, -5.560672284273715], + [-43.01133831820234, -5.548469327830893], + [-43.00528839807129, -5.541927950718129], + [-42.99526303655637, -5.506966941123465], + [-42.990706340312606, -5.499664132095199], + [-42.97399338795036, -5.484070865560254], + [-42.9735035123208, -5.480560468772352], + [-42.96879086638139, -5.452034526409873], + [-42.962486364987015, -5.446488237497885], + [-42.929517798300786, -5.437454837439508], + [-42.92304064914313, -5.428079262811921], + [-42.91234381466667, -5.396102436239641], + [-42.908010069237214, -5.392287034653186], + [-42.90031755242966, -5.38954891282824], + [-42.88361774951056, -5.390794528918068], + [-42.86971673829823, -5.377219477681715], + [-42.86490383292146, -5.368059968462494], + [-42.83321632647341, -5.353533874091966], + [-42.82669630043377, -5.348053479187072], + [-42.815048858032604, -5.314209173238926], + [-42.811375589011206, -5.28479344178078], + [-42.8170123976589, -5.272739696453033], + [-42.825928994976465, -5.250937951481062], + [-42.82750440457117, -5.233836830309052], + [-42.80003265234176, -5.199109266959853], + [-42.79795710741999, -5.183240947470056], + [-42.80181770424036, -5.166346754683051], + [-42.80298246162499, -5.150276276506113], + [-42.81273049608105, -5.133522543400851], + [-42.81317111430652, -5.130532884463373], + [-42.818619803693366, -5.093532775204366], + [-42.835655446183324, -5.074562797527923], + [-42.83595451548376, -5.07365186033072], + [-42.841788598385406, -5.055873159987396], + [-42.84153821868861, -5.03081144454354], + [-42.85958818454236, -4.982262527925099], + [-42.86136214092335, -4.973469427953267], + [-42.85523274288592, -4.9353318291124575], + [-42.867921689053276, -4.927723698589729], + [-42.87181587120048, -4.916550269432602], + [-42.890348368134106, -4.895001627388692], + [-42.890504773717474, -4.894815083352888], + [-42.894827236042836, -4.886076177081578], + [-42.89373090739459, -4.85823420673575], + [-42.89751843762012, -4.842715943299432], + [-42.935028883357845, -4.8133238678162185], + [-42.94784176999632, -4.7979888104700175], + [-42.95032654784509, -4.7897821739031095], + [-42.948477296473136, -4.766883775282853], + [-42.92567962607656, -4.749877428756273], + [-42.92152250813379, -4.741294053524307], + [-42.92055049292472, -4.7372808669238635], + [-42.923054011018024, -4.721696106721414], + [-42.94260854874091, -4.708582664418517], + [-42.953167917821496, -4.695539482583498], + [-42.951643766999275, -4.680620122077433], + [-42.93262151916749, -4.663340399102096], + [-42.92047177313569, -4.654802452824285], + [-42.91301467464051, -4.6474569458465655], + [-42.88311101106615, -4.59676806081638], + [-42.87670795103966, -4.586607151701564], + [-42.867231410636066, -4.56646502105245], + [-42.867958961159445, -4.5596313399020465], + [-42.874729533321464, -4.535647940354964], + [-42.860399755834905, -4.5152285331497], + [-42.859488854167374, -4.500895502887997], + [-42.851907602042175, -4.494665043666329], + [-42.84937110470296, -4.482623025083223], + [-42.85237028330808, -4.477325408392597], + [-42.87641444708093, -4.464068495853334], + [-42.87862275591521, -4.451896553986788], + [-42.87204590158972, -4.428582048820252], + [-42.89245823946373, -4.406750505385376], + [-42.903173934990555, -4.398681698849946], + [-42.93134868667774, -4.381782367514138], + [-42.95081385360234, -4.386858858936108], + [-42.95867762352815, -4.383252716632035], + [-42.96331904148356, -4.376436817316842], + [-42.96384984651072, -4.351559388624902], + [-42.96228827144617, -4.334544708250561], + [-42.967202576148416, -4.324498915284499], + [-42.98007032794427, -4.30503202501854], + [-42.986593794311055, -4.27334980628276], + [-42.98728289189814, -4.257042684273768], + [-42.9884347943048, -4.247220789473694], + [-42.989203301160586, -4.2340750224618295], + [-42.98201385395456, -4.214694793566149], + [-42.942074072476025, -4.167112429504451], + [-42.93618630883708, -4.161783943799835], + [-42.93514333120761, -4.161011333504407], + [-42.9265352313521, -4.156769471952614], + [-42.91124715868467, -4.156415401764321], + [-42.88818627972667, -4.155628598380623], + [-42.88754422078277, -4.14766331947616], + [-42.90415000247758, -4.132613722198701], + [-42.903067035744044, -4.124369510939725], + [-42.89593086069083, -4.116911503715377], + [-42.87684198235126, -4.110053456098171], + [-42.86294509046495, -4.092892512283495], + [-42.85577890514312, -4.077315778090522], + [-42.84259910341796, -4.036624596793539], + [-42.838017116609606, -4.028447941295681], + [-42.82181368257526, -3.990576697346185], + [-42.81537788171273, -3.9877074984554453], + [-42.805764320417275, -3.9971641560266273], + [-42.797925798835294, -3.9966330138914676], + [-42.79064776727572, -3.979141443848592], + [-42.7888426789826, -3.9636154868979485], + [-42.78460594653867, -3.957251562308953], + [-42.78318564673668, -3.955874984176859], + [-42.737161731979114, -3.924442630824961], + [-42.726212553283794, -3.910030428511324], + [-42.72340857699212, -3.8950885617256183], + [-42.72333334080263, -3.894056655703684], + [-42.72283351042975, -3.88724178922765], + [-42.72221647117216, -3.8828394454604935], + [-42.721176092738276, -3.875423132168579], + [-42.68576146078745, -3.807271077669687], + [-42.670236855074336, -3.7936125436003696], + [-42.668706486772926, -3.7909326514445447], + [-42.68292276386335, -3.7698340539305146], + [-42.68353348298378, -3.762308917169111], + [-42.67865815429436, -3.7539740676527735], + [-42.671865436782774, -3.746161495470751], + [-42.66887410569694, -3.729372100158913], + [-42.68342273235249, -3.7011836418062463], + [-42.682931630966, -3.6939994017312032], + [-42.67585263076838, -3.675820447290278], + [-42.675762425848674, -3.675623286894139], + [-42.642299432158076, -3.635898941640202], + [-42.6351789911339, -3.632415681844788], + [-42.62312680277614, -3.6241435935332387], + [-42.61662398317759, -3.6127469480079797], + [-42.61374124186164, -3.5941949804521873], + [-42.60974018186139, -3.5861555391933586], + [-42.59894540103096, -3.580295484907703], + [-42.591193031822534, -3.576666810536641], + [-42.56973412958245, -3.568468086199214], + [-42.562469974081615, -3.5559594323039585], + [-42.549362871105394, -3.5378884358132], + [-42.53701521995825, -3.5239242094324084], + [-42.532320002577116, -3.516185915592237], + [-42.533862919620184, -3.5072853850064485], + [-42.534980359133144, -3.500532314788344], + [-42.52956074744445, -3.4925224403036768], + [-42.506561854191794, -3.478841111344755], + [-42.50447889362358, -3.456209365476096], + [-42.49461283933203, -3.446919499987788], + [-42.48734322879021, -3.4489392969379753], + [-42.487616425018054, -3.4678975940628014], + [-42.484781172020526, -3.4744411033008094], + [-42.47487150022689, -3.4833193852088993], + [-42.46683519961807, -3.485425374520606], + [-42.45870373224016, -3.4856863882790803], + [-42.448254724214046, -3.4783624673977975], + [-42.43228325229412, -3.4546365411749753], + [-42.42317133653342, -3.4542890107836213], + [-42.417280037073766, -3.458303979292717], + [-42.41588903243063, -3.4730200622959515], + [-42.409686498884035, -3.4752405934207293], + [-42.398907299019285, -3.4728772963157204], + [-42.39242868703737, -3.460292666842184], + [-42.39266851597155, -3.4476092373301754], + [-42.37718001915137, -3.4513675642693866], + [-42.37378831524669, -3.452940404153089], + [-42.36619618661039, -3.4527675686089183], + [-42.354311043784186, -3.448727683987422], + [-42.330815837306226, -3.4338891658205424], + [-42.32086895244491, -3.4360244735673313], + [-42.298803854272066, -3.452967168726313], + [-42.29252682505777, -3.4532871845328232], + [-42.2727687677163, -3.444969377934243], + [-42.26776882133597, -3.442248895911919], + [-42.24293399720783, -3.433063853763279], + [-42.21009775567398, -3.4363302718634174], + [-42.20257333361988, -3.428844447541675], + [-42.204384952654955, -3.4357960435873585], + [-42.19766026838605, -3.4243562674087182], + [-42.198227338815386, -3.405593695215829], + [-42.19402767767007, -3.398480048647653], + [-42.188338929513016, -3.393011764121372], + [-42.152202753426714, -3.387504226859334], + [-42.145852225125445, -3.368817837438925], + [-42.14005976258607, -3.3576238584864866], + [-42.12367205756507, -3.3525680023766107], + [-42.12520936460233, -3.3456232220322337], + [-42.128443113040014, -3.343009196651744], + [-42.12162761374749, -3.3201056930097295], + [-42.113666308986986, -3.314537956049917], + [-42.10014205896343, -3.311417264078078], + [-42.095871367921994, -3.3029262023372263], + [-42.098628677323134, -3.296053765008444], + [-42.11076137565329, -3.291724586624484], + [-42.13258351168927, -3.2900959461444303], + [-42.13519022344375, -3.280941736699425], + [-42.1316412600893, -3.2753678722122648], + [-42.11583516490125, -3.2623568491044845], + [-42.09263188670258, -3.2594405621076095], + [-42.0766493277495, -3.2584484242442584], + [-42.06672261642511, -3.253233692254642], + [-42.045839391455715, -3.250839291124271], + [-42.03043308972558, -3.2459110129131363], + [-42.01031343791391, -3.2463468663234516], + [-42.00023146701, -3.241118082107434], + [-41.98333086135801, -3.223584003134287], + [-41.979029605796384, -3.218537356983406], + [-41.97444646764238, -3.2132044420824912], + [-41.971588190218064, -3.1928069558305805], + [-41.964462570776014, -3.1790167117311863], + [-41.956115110719054, -3.178519449523611], + [-41.943285787459025, -3.1897856435291905], + [-41.93905816865083, -3.1873942405710394], + [-41.93734235485298, -3.156091597372093], + [-41.93641553537569, -3.151559245245683], + [-41.924569003144015, -3.1378180796709025], + [-41.92603352198667, -3.1155008270997513], + [-41.922756618174226, -3.10796192760015], + [-41.91383687943999, -3.0998636850167958], + [-41.89978329918524, -3.097801577171768], + [-41.89750867861884, -3.0964934169848153], + [-41.88056017258052, -3.0793122701533346], + [-41.86908910565322, -3.0603178261688817], + [-41.86739238203686, -3.0557403119909106], + [-41.86166302115594, -3.0471628290890176], + [-41.83075057905411, -3.0318100231099567], + [-41.82428381632644, -3.0245294196373567], + [-41.820223625741534, -3.0130050988110813], + [-41.81740165448977, -2.99259299771974], + [-41.81041357971456, -2.980779409989038], + [-41.79685899887119, -2.968738760328458], + [-41.79662141349065, -2.959847605404187], + [-41.79915155082431, -2.9518431244683225], + [-41.79994995340653, -2.949847081793704], + [-41.80700862127781, -2.93803635973148], + [-41.835752161714495, -2.9158858769035683], + [-41.86497281424376, -2.878040080136218], + [-41.86088361225278, -2.854407900933201], + [-41.862693241185596, -2.831854208642994], + [-41.842854846315916, -2.8235914569904756], + [-41.841126853188065, -2.818570693103989], + [-41.84680955416441, -2.8054662066707947], + [-41.84905505197086, -2.773550967739855], + [-41.824583839239416, -2.7562522648810384], + [-41.81411703611422, -2.7393445144849418], + [-41.80130571960285, -2.7485729503334535], + [-41.784933446331245, -2.769910056826992], + [-41.75052487315227, -2.8018020262159444] + ] + ] + }, + "RJ": { + "name": "Rio de Janeiro", + "coordinates": [ + [ + [-41.82558828944546, -20.788576761805064], + [-41.82852562460828, -20.796592595524373], + [-41.81686859460732, -20.80092662438387], + [-41.807059546470654, -20.797631154658696], + [-41.81393157397857, -20.80511965158245], + [-41.80120102393179, -20.805560309108], + [-41.794477833980686, -20.798946046688226], + [-41.7822457521729, -20.79824281462068], + [-41.77542931509142, -20.79989453255243], + [-41.767528978720016, -20.80198150929237], + [-41.76393320921613, -20.807059370105875], + [-41.75568024893488, -20.807528758366345], + [-41.75040179646647, -20.81806628749026], + [-41.74815993842906, -20.813381287865777], + [-41.74091762438582, -20.818279608557557], + [-41.74299301365648, -20.825622117913365], + [-41.73929884830469, -20.827805348291214], + [-41.741080116128465, -20.830118375183385], + [-41.737400200364384, -20.836579693097104], + [-41.745575785882146, -20.8533097107441], + [-41.74322567596781, -20.8591284361083], + [-41.74019998828785, -20.86607873953108], + [-41.74186402285498, -20.87280221970574], + [-41.7292254269454, -20.8700468953972], + [-41.72711853295954, -20.86483290267964], + [-41.71241227396059, -20.87155226801904], + [-41.71900185914674, -20.875499262360158], + [-41.727135022534156, -20.89283212645355], + [-41.725356395749856, -20.897236029128127], + [-41.71971200740457, -20.897193909204866], + [-41.72314518050326, -20.922782884031268], + [-41.737457562878916, -20.927768385346198], + [-41.73755924806395, -20.930902098359667], + [-41.733793704531564, -20.943886568476014], + [-41.71770346323189, -20.955076829559598], + [-41.716090589871534, -20.97596938922277], + [-41.711949904800925, -20.981036589808472], + [-41.71084300206539, -20.989707785933568], + [-41.71613474196184, -20.99205393995062], + [-41.72284139734255, -21.011143238719608], + [-41.71552139273, -21.016639357664122], + [-41.71603722256773, -21.02287293809174], + [-41.723721611683565, -21.025174230301147], + [-41.7263375400096, -21.03259846019402], + [-41.72134830317834, -21.045098023762424], + [-41.716643983792615, -21.04710480570227], + [-41.72040578002995, -21.055201076796536], + [-41.724345390755026, -21.056390019650227], + [-41.72922266642302, -21.050336348710253], + [-41.73244122729534, -21.06675293029939], + [-41.723640058439834, -21.067534767803924], + [-41.72171506742771, -21.073586411323532], + [-41.731454803666416, -21.087388620730994], + [-41.735096488718526, -21.099017471235083], + [-41.735648993060686, -21.103343224560504], + [-41.72903410533041, -21.10680706508018], + [-41.7226391644003, -21.103492994855035], + [-41.71714692011526, -21.105451046251382], + [-41.7078717451331, -21.107125321753404], + [-41.70516514692666, -21.111161905321975], + [-41.71795000131238, -21.116302565712022], + [-41.718483465040116, -21.12368867354875], + [-41.7045769759198, -21.12712190462486], + [-41.70573080648607, -21.12079927107852], + [-41.69575407495788, -21.115386458421717], + [-41.69123825748155, -21.11664848932651], + [-41.688305306205415, -21.12191328576636], + [-41.68219966906319, -21.121025553173762], + [-41.67792858284216, -21.12568481187542], + [-41.67915948128516, -21.131912556364313], + [-41.67643110051223, -21.133703849092168], + [-41.67164151308327, -21.126968782736707], + [-41.66267082238813, -21.12504895331174], + [-41.66493484216447, -21.132660031905626], + [-41.65346655898142, -21.137358289197724], + [-41.6541229798903, -21.142950754439116], + [-41.64594899167032, -21.143522086767465], + [-41.638956007104454, -21.146350150501696], + [-41.62890895159869, -21.144439851789844], + [-41.61626376100518, -21.151392258284996], + [-41.613539158075724, -21.15553492377553], + [-41.60792400308676, -21.154978586886827], + [-41.606047152118684, -21.15458352677436], + [-41.59244008378274, -21.14934094574871], + [-41.58731897054088, -21.149522668298697], + [-41.58237971403397, -21.16656362085358], + [-41.57072106115688, -21.17131159938116], + [-41.569927668390726, -21.17954500803979], + [-41.565725279226854, -21.182714084544262], + [-41.558592565313724, -21.17284686730824], + [-41.552114161032584, -21.176019807782712], + [-41.548443338870236, -21.18283929570102], + [-41.53813619302402, -21.18116351530287], + [-41.53091827870304, -21.179805870151426], + [-41.52124811626415, -21.18713767908487], + [-41.51725380830885, -21.186977728079256], + [-41.51247350780172, -21.175681879945053], + [-41.505727494626726, -21.176168081473165], + [-41.498609723640826, -21.18529412609111], + [-41.48840863863221, -21.180265999964398], + [-41.48264117402171, -21.183741045027897], + [-41.47975757209775, -21.182194966683884], + [-41.47988864439659, -21.193907085635523], + [-41.47014490380302, -21.202657155516047], + [-41.46692975464562, -21.204537743430304], + [-41.46034402070404, -21.207359102299815], + [-41.45414144358175, -21.20833567923158], + [-41.447944786378216, -21.21411307175611], + [-41.435638126423505, -21.21599921364286], + [-41.417308674663644, -21.19982417935541], + [-41.4132529095777, -21.201708609700525], + [-41.410674384905626, -21.199092485806986], + [-41.40684972918967, -21.20274597526172], + [-41.40338474723449, -21.198891989895284], + [-41.39536979044887, -21.201602327128096], + [-41.39321344318082, -21.202665248284042], + [-41.38832593946784, -21.19937944724284], + [-41.382283372849784, -21.200244440305816], + [-41.38143333323275, -21.196391159339143], + [-41.377525007324074, -21.19572321492289], + [-41.37713062264782, -21.201276463078052], + [-41.37109520429985, -21.20441623446023], + [-41.363657690206296, -21.202882154617544], + [-41.34368007776055, -21.20900386893181], + [-41.33820751068464, -21.207339947518207], + [-41.334031431838326, -21.2099042033139], + [-41.332637940989045, -21.21494316094181], + [-41.32623496654996, -21.218499892636412], + [-41.32614359983274, -21.213071431849745], + [-41.31708892125524, -21.213735873464653], + [-41.31769411770057, -21.221577578983933], + [-41.31144898115763, -21.21927211817746], + [-41.297808618394164, -21.234427752084596], + [-41.28883583390559, -21.23415508366623], + [-41.286034075691155, -21.237804539716524], + [-41.283886418605825, -21.23492364228515], + [-41.27708057655655, -21.240233371069188], + [-41.275801906645896, -21.236366571760506], + [-41.271834456060496, -21.237276558764165], + [-41.272331781297645, -21.23335940231457], + [-41.26569806458863, -21.233072389448136], + [-41.26208192547176, -21.23674429186117], + [-41.257309666909244, -21.2257639651874], + [-41.24975516897858, -21.222170317296516], + [-41.246953341819776, -21.221167180394314], + [-41.241290028558524, -21.221138512535415], + [-41.22845825401991, -21.225979476873032], + [-41.227602168667964, -21.23100185711236], + [-41.22431120971261, -21.22727320884636], + [-41.22494878486497, -21.23069842750623], + [-41.220721505547765, -21.22995969865376], + [-41.22168164083191, -21.23332018467143], + [-41.21224117740491, -21.23587851397782], + [-41.20528338444969, -21.243888311295315], + [-41.204090790054856, -21.23984458749833], + [-41.19958866981465, -21.244128696804673], + [-41.19358230921106, -21.24428537959733], + [-41.192974766791735, -21.241738638965675], + [-41.190914496244694, -21.248467167583204], + [-41.18815970042423, -21.243507276720464], + [-41.183556681923584, -21.2444234401807], + [-41.18624385092392, -21.241386258551685], + [-41.18287602712919, -21.23629917859195], + [-41.18119130261221, -21.23986324290229], + [-41.17795824844053, -21.239115958248068], + [-41.18104391510012, -21.241891691151288], + [-41.17449824743746, -21.241070306264145], + [-41.17682103538906, -21.244826652440356], + [-41.16404154986754, -21.24319677335159], + [-41.160984359015195, -21.24598411561206], + [-41.15822337670254, -21.24111682970015], + [-41.155901069959725, -21.245052157726136], + [-41.15622213127161, -21.240134846087575], + [-41.14139093271319, -21.238672203447056], + [-41.137463751542064, -21.22796554163838], + [-41.13441611241622, -21.226621532166284], + [-41.119249036789014, -21.230369392637364], + [-41.10431553205028, -21.219720220907575], + [-41.102672039610404, -21.22216531937206], + [-41.09245116498527, -21.21863264863453], + [-41.09106671368675, -21.221632407645714], + [-41.088626531550574, -21.220407831670848], + [-41.08145399541726, -21.22196451944637], + [-41.07325928411626, -21.23092115192754], + [-41.07056672355034, -21.22870583622692], + [-41.05588444528013, -21.238136284744943], + [-41.041400702745875, -21.25514300401372], + [-41.02516375506696, -21.246276956450348], + [-41.01232253193841, -21.251061824725397], + [-41.00667773000733, -21.252019009412003], + [-40.998472382790524, -21.26620301458593], + [-40.999331283872905, -21.27843812522764], + [-40.99468979211889, -21.286304268866985], + [-40.98558495223462, -21.286943233332703], + [-40.97800504326071, -21.281015232859104], + [-40.97655716321532, -21.286914889969456], + [-40.98070008412999, -21.288766503745197], + [-40.97573933066251, -21.289049802628348], + [-40.97284179772028, -21.294083506385988], + [-40.96586537613859, -21.295630554383997], + [-40.96547478907857, -21.29965078609766], + [-40.956803770563695, -21.303814027266178], + [-40.96062854354066, -21.318181523324967], + [-40.9648058039196, -21.344133113818252], + [-40.96061073770045, -21.36141574293306], + [-40.96516318904563, -21.36360285963474], + [-40.98267810063425, -21.393896228584374], + [-40.98758622592106, -21.3917233021888], + [-40.99761152853161, -21.398725092267732], + [-41.00677793157075, -21.420332187155964], + [-41.02358566822548, -21.44533887314739], + [-41.03758953990723, -21.461526192893874], + [-41.047890712876665, -21.467230171910934], + [-41.06438828991358, -21.487394120066725], + [-41.07074920481965, -21.49946116004724], + [-41.07466603693487, -21.522235206326236], + [-41.07120051102444, -21.544818547738316], + [-41.05702569603124, -21.58466542943149], + [-41.03814140640567, -21.603287498355478], + [-41.020136787454234, -21.604650629093577], + [-41.013389881310154, -21.60872713434552], + [-41.01447310010652, -21.605228798295677], + [-41.010418940154985, -21.611965698112105], + [-41.0165896648838, -21.64731487738144], + [-41.024051114076045, -21.680704434518915], + [-41.026138488357574, -21.72101735935795], + [-41.00923568963627, -21.79753805155601], + [-40.98007202415665, -21.915516783471055], + [-40.97580100618868, -21.93078120930945], + [-40.974552146779686, -21.968583551777837], + [-40.98516416253012, -21.99988955058045], + [-40.9928358834279, -22.0099096378174], + [-41.009642510057006, -22.02248875501811], + [-41.04811217057529, -22.041807582516675], + [-41.13101712698591, -22.09098484227352], + [-41.15800053500076, -22.110031812817883], + [-41.20369986888683, -22.132111387014387], + [-41.242388759439734, -22.147150731223075], + [-41.29486683744363, -22.162040748634645], + [-41.42219743754687, -22.194792497676552], + [-41.425371718647696, -22.19538293806892], + [-41.461361153827895, -22.20557064021423], + [-41.467669754164795, -22.20753652840302], + [-41.48314763973951, -22.21200704170135], + [-41.4992229049326, -22.21724519034824], + [-41.538367199239836, -22.233034404205732], + [-41.57663083090393, -22.24751191807603], + [-41.59185636992314, -22.254081653448388], + [-41.60491948146505, -22.259852569422552], + [-41.62006407556511, -22.266067392150337], + [-41.68902891421211, -22.300065408166493], + [-41.69527895578074, -22.30393115415158], + [-41.74092753593536, -22.340636619460394], + [-41.753748785955494, -22.34626953622656], + [-41.767113450287134, -22.355331204347078], + [-41.77378578185073, -22.36445470587965], + [-41.774779745524356, -22.374000911084625], + [-41.76703288824206, -22.377219724730793], + [-41.77108190439083, -22.384399139390187], + [-41.76791854374638, -22.38886556280296], + [-41.78777791699066, -22.39856500969681], + [-41.79050655179551, -22.400043665276645], + [-41.81780664923126, -22.41678512951629], + [-41.84150179286994, -22.43530638786489], + [-41.85238026579164, -22.446520977366443], + [-41.858416871122806, -22.45902170183466], + [-41.86225721702616, -22.477512686200033], + [-41.86876002081559, -22.47850139729071], + [-41.87875488957909, -22.488085739361203], + [-41.891453372578795, -22.48713888064015], + [-41.899762610705146, -22.494698552643566], + [-41.91731168674231, -22.517144837607642], + [-41.92045365868327, -22.52689416983926], + [-41.93286357955064, -22.53800663578949], + [-41.93778679747037, -22.53713303096388], + [-41.9439821508353, -22.52837114575278], + [-41.95745132194776, -22.532233644188228], + [-41.96947849555462, -22.54339731571739], + [-41.97950020681128, -22.562554341942015], + [-41.989474377293696, -22.598966304482683], + [-41.992982756715136, -22.5976941251165], + [-41.99817335113975, -22.609006709430805], + [-41.99800348545052, -22.663416339128553], + [-41.98819544236025, -22.709841493287193], + [-41.979850975725135, -22.72617384292465], + [-41.97444884628328, -22.73054825226503], + [-41.95572426576172, -22.732533156950527], + [-41.957704659107826, -22.73796683652268], + [-41.93477654788496, -22.766248227278442], + [-41.919418052251515, -22.771199626518996], + [-41.910807675285675, -22.764464865891355], + [-41.912780554898575, -22.755480247200857], + [-41.90544740509189, -22.75533341126901], + [-41.90109417284881, -22.750853796306316], + [-41.8886448176577, -22.754174474659305], + [-41.882020842047616, -22.74892071294892], + [-41.8826823105779, -22.740753165663183], + [-41.87517485917694, -22.742037715547866], + [-41.872366059245934, -22.7375041796423], + [-41.86826154561628, -22.741791013628532], + [-41.874548813364, -22.751265595471022], + [-41.86442319177378, -22.754013608551844], + [-41.86602283565163, -22.76112385179272], + [-41.87189801300724, -22.761562807427424], + [-41.87447702339661, -22.766197635709528], + [-41.877007525660964, -22.761944395762004], + [-41.87886175310574, -22.77547540954698], + [-41.885340191139974, -22.768696024241702], + [-41.889373214409844, -22.770595422706915], + [-41.88350544619369, -22.777190360630645], + [-41.88256830631604, -22.784713324207917], + [-41.8854224411453, -22.784801134724084], + [-41.88783716392702, -22.777808009354715], + [-41.89711785143035, -22.78621730921033], + [-41.900670657570096, -22.7810325258101], + [-41.905814906392955, -22.78294525471214], + [-41.90691879770936, -22.778928116708528], + [-41.91272728765146, -22.77909422288612], + [-41.93187104583877, -22.797094209620294], + [-41.933122201906315, -22.8040691267839], + [-41.927815184860876, -22.808021736382774], + [-41.93020145438416, -22.813588403153766], + [-41.94183634310903, -22.80947451651966], + [-41.945200413426605, -22.813291172238703], + [-41.970089186502875, -22.82142854536102], + [-41.986370194841065, -22.8485488721077], + [-41.986229239775604, -22.862298837216684], + [-41.98308673342571, -22.866509912725125], + [-41.979179289973494, -22.864939903675715], + [-41.983701115640265, -22.8686088637936], + [-41.981287828612246, -22.872850908191282], + [-41.99123031220076, -22.882296596895078], + [-41.99936423044068, -22.88482160331621], + [-42.00190082883628, -22.889829984773673], + [-42.00547830985465, -22.88523990780911], + [-42.011561724330384, -22.884126073536045], + [-42.024314590403826, -22.89364322459462], + [-42.0325047744575, -22.907423656171403], + [-42.03578590994177, -22.9341041095529], + [-42.032121771598504, -22.946628962687843], + [-42.02162364546782, -22.946437415603317], + [-42.02587345862562, -22.956251662705746], + [-42.021202266943085, -22.961766534852124], + [-42.0146180342605, -22.95497950440633], + [-42.002391021803525, -22.950254874346445], + [-42.008977984401696, -22.96006609819702], + [-42.00667223855216, -22.962446990220883], + [-42.00328958206731, -22.95945610162496], + [-41.997036187416434, -22.960457999825863], + [-42.00306539531709, -22.969622356352186], + [-42.0134774359862, -22.96456295349156], + [-42.01615062890976, -22.96772245215868], + [-42.011976282379486, -22.970515854729246], + [-42.019232334670335, -22.9712164950193], + [-42.01928577512916, -22.979360073117274], + [-42.01064278656849, -22.978965175382815], + [-42.0078729844697, -22.983561536534793], + [-42.01258755718668, -22.988501630364695], + [-42.01326427821439, -22.997881525956977], + [-42.02050275816732, -22.983585330922704], + [-42.030226233256094, -22.982974150106333], + [-42.03492804966893, -22.97896536880083], + [-42.03414857200244, -22.971150897964772], + [-42.04603505314895, -22.963379000721005], + [-42.07653636648921, -22.95561218462672], + [-42.14395224544663, -22.949800453054987], + [-42.29145887634224, -22.93950444992962], + [-42.367285357029175, -22.93589920650674], + [-42.45561983504457, -22.935732729954225], + [-42.47662523764601, -22.939035703744285], + [-42.510624549454235, -22.9342781231444], + [-42.586054224525725, -22.933602579820015], + [-42.63631327401399, -22.937549675328132], + [-42.67878689022455, -22.945980385606543], + [-42.684375476383245, -22.949998909994513], + [-42.685760478087815, -22.959201365326212], + [-42.69229150427272, -22.962476373225286], + [-42.69856353364541, -22.957793752125266], + [-42.71434790495233, -22.95616651955484], + [-42.81325722781676, -22.96169660796345], + [-42.85452371599312, -22.964461669730955], + [-42.8763733088137, -22.96666519058574], + [-42.91845328092762, -22.974912531838957], + [-42.99454255330334, -22.9696297054574], + [-43.011872521790615, -22.97188427507218], + [-43.01417841983183, -22.97682131969837], + [-43.02373791381149, -22.975673685143022], + [-43.0247342516214, -22.980592593635222], + [-43.02807392546683, -22.98113273474493], + [-43.031121656588006, -22.97650863292613], + [-43.03981279092178, -22.974961919076954], + [-43.05209986237439, -22.98286094739814], + [-43.05203949810264, -22.9780609466261], + [-43.04634556235867, -22.97294570937546], + [-43.0540703619231, -22.96334265305883], + [-43.082676731354944, -22.955701965328416], + [-43.111071961275876, -22.95413305489588], + [-43.11420599271766, -22.952365675487012], + [-43.11395632785254, -22.946971746906996], + [-43.120350071371945, -22.946154231665165], + [-43.117509852626696, -22.938481446259246], + [-43.135763704132046, -22.9391874281211], + [-43.12676754803652, -22.935353277429886], + [-43.12445687385544, -22.923407554464045], + [-43.12059384941091, -22.92380545182152], + [-43.11642970464983, -22.93154217883343], + [-43.11306872239955, -22.92981495746632], + [-43.114569065531434, -22.93302049686053], + [-43.10865113825334, -22.93801567301753], + [-43.10256699900348, -22.936016449164047], + [-43.09539706219637, -22.926281357954778], + [-43.09690434423352, -22.91527328113849], + [-43.1112085534814, -22.916554365639016], + [-43.116981412578845, -22.905593295225987], + [-43.12461975881909, -22.906367012123816], + [-43.131372225561634, -22.911968212442282], + [-43.13731702435611, -22.90334670715135], + [-43.12503958700757, -22.895373692629246], + [-43.126566931763264, -22.885631296382616], + [-43.134152576630655, -22.885590080818712], + [-43.13373603049155, -22.880461277194765], + [-43.130371801687424, -22.877219509668908], + [-43.12279592661015, -22.878127202108544], + [-43.120813326836334, -22.88305829990299], + [-43.11535011682209, -22.881369723397352], + [-43.11212021205156, -22.868364780684608], + [-43.103425411678785, -22.857558098376018], + [-43.09919745583731, -22.848868613649824], + [-43.09387712254485, -22.84065733372286], + [-43.09717690917021, -22.834736817159452], + [-43.0958208461635, -22.82745771473346], + [-43.080595654238586, -22.81916147720608], + [-43.06607296550825, -22.802573068117116], + [-43.07906861522225, -22.799370822272984], + [-43.081151114652805, -22.787091514582716], + [-43.070095087064544, -22.779604371156275], + [-43.06829070855656, -22.769040400675152], + [-43.06268215059265, -22.763882700875], + [-43.0293296762325, -22.74705170347213], + [-43.02684317469306, -22.742351898806007], + [-43.03090627306059, -22.733381545301768], + [-43.027845431207666, -22.725107392650333], + [-43.03493521407052, -22.71660726535487], + [-43.03557136263749, -22.710036378324325], + [-43.032295784117785, -22.705402082157335], + [-43.02651403001157, -22.705670700212163], + [-43.03584684350856, -22.698394438939893], + [-43.03204267321636, -22.692546000027882], + [-43.03857240002164, -22.688530712687605], + [-43.04029075856111, -22.69142909427852], + [-43.04413662746841, -22.68541268879214], + [-43.05062714311157, -22.68946040203435], + [-43.05496174197356, -22.681908377955754], + [-43.05681589322818, -22.685294565341742], + [-43.065647218974874, -22.68686960106812], + [-43.08593416891999, -22.677575568088166], + [-43.09265378984978, -22.685450612859455], + [-43.10454659076619, -22.68745054551474], + [-43.10814942052252, -22.68750874537594], + [-43.1067590408881, -22.694655394173818], + [-43.109315427324184, -22.692963527543657], + [-43.11403184535731, -22.688761249705458], + [-43.112125707264774, -22.693928771169205], + [-43.116649051900424, -22.696426633159877], + [-43.11723922515331, -22.70662031616589], + [-43.1274292138501, -22.714296389428007], + [-43.13426082311422, -22.71466528325201], + [-43.14212491317578, -22.707967664504416], + [-43.152207507969585, -22.707583207513444], + [-43.16440509125249, -22.710663010301793], + [-43.16642441534587, -22.71447288072397], + [-43.18173377986454, -22.720649939326773], + [-43.215529379589434, -22.727416439596148], + [-43.2123198832864, -22.73061853645765], + [-43.21645782513102, -22.735915239614403], + [-43.22743411858556, -22.740283744534498], + [-43.23601617425011, -22.735575324139152], + [-43.233152204816925, -22.740308204094852], + [-43.23965087013499, -22.741310141128455], + [-43.24480504289885, -22.746719605523115], + [-43.242819226814056, -22.75023649395715], + [-43.2532622626258, -22.757182724512397], + [-43.259264720658344, -22.755841950401617], + [-43.25438034553318, -22.759584059372926], + [-43.27212706652609, -22.77219873093886], + [-43.27092720445841, -22.77442044909555], + [-43.27823829807705, -22.780988784253815], + [-43.27718057100159, -22.785709554476067], + [-43.28862549817782, -22.800768393224782], + [-43.288180390442285, -22.808373729885083], + [-43.28331886526799, -22.81661818463613], + [-43.27390853993743, -22.81101245369704], + [-43.2757889937282, -22.81883621039651], + [-43.26765332340302, -22.82240861378126], + [-43.25575863870828, -22.836939693456884], + [-43.24468392495794, -22.84276848182405], + [-43.24191187501044, -22.858449582917963], + [-43.23921230057204, -22.862903992758895], + [-43.24290339084382, -22.868571575926765], + [-43.23798784046837, -22.877163805105447], + [-43.23051056561275, -22.871436712588064], + [-43.22604419111973, -22.875723598434824], + [-43.22309302799926, -22.873671109445397], + [-43.218067737726855, -22.876375528635982], + [-43.209348719153326, -22.86896998310679], + [-43.201304630036205, -22.87655360795921], + [-43.2113736265948, -22.887373208540318], + [-43.208578299887485, -22.893230322623907], + [-43.18967685408686, -22.88856590646943], + [-43.1799969612706, -22.89169034519621], + [-43.181686670095274, -22.89512501664944], + [-43.178947965600976, -22.892109500413433], + [-43.179402830097345, -22.895769801578503], + [-43.174829950541394, -22.893130434098175], + [-43.167303247269714, -22.895451502286104], + [-43.17180523105535, -22.898011385221384], + [-43.167875583269776, -22.899664541575344], + [-43.16574318582507, -22.896732442407735], + [-43.16782857543357, -22.899763046107683], + [-43.17698712523278, -22.896401228030474], + [-43.16914339787912, -22.904575396373744], + [-43.16191028893575, -22.90463274064005], + [-43.1610768518639, -22.912576061776857], + [-43.157092646627255, -22.913198668052136], + [-43.161858769156126, -22.917690562053036], + [-43.16883933909321, -22.914583380254566], + [-43.17286568479173, -22.91699907804981], + [-43.17067164352712, -22.919997817179937], + [-43.16903803334245, -22.917315001447008], + [-43.16709253284131, -22.922617889521124], + [-43.170956648619516, -22.93245969230197], + [-43.16820360627998, -22.938389555806943], + [-43.174188814207014, -22.944095352047412], + [-43.17971961142716, -22.944043078742197], + [-43.180600417345815, -22.94796939185586], + [-43.16993000185516, -22.952244375516603], + [-43.16229147714561, -22.943517845915988], + [-43.15159819330466, -22.938666121684893], + [-43.15564537014559, -22.943446165249068], + [-43.15022267026487, -22.950701618849198], + [-43.16422922034815, -22.954437594906288], + [-43.15978668583995, -22.957514473403833], + [-43.160381704321864, -22.96141167680405], + [-43.15896985165852, -22.96425941612009], + [-43.16785206284119, -22.963787284138302], + [-43.182288286737105, -22.97210416919695], + [-43.18697556902574, -22.982106312867447], + [-43.18131963334516, -22.98600989504102], + [-43.18736822856533, -22.988025347548547], + [-43.19113118467411, -22.990882108202268], + [-43.222201574592624, -22.988844937911217], + [-43.243827769214874, -23.001584376150653], + [-43.27541321108072, -23.003344442211915], + [-43.286293198537315, -23.009192748361734], + [-43.28632675127813, -23.016510039243453], + [-43.29674934568749, -23.016991008670704], + [-43.29446013036589, -23.011997690256855], + [-43.30179257739295, -23.009070161819487], + [-43.30628960670245, -23.001009999883184], + [-43.311937289180925, -22.99740297191327], + [-43.320127937796045, -22.99746210718255], + [-43.32368100302186, -22.990648789769995], + [-43.3343783192397, -22.99005836158061], + [-43.34282190271993, -22.982278218613974], + [-43.34849525391513, -22.980071842985094], + [-43.351386871505916, -22.978946775964218], + [-43.36437828066558, -22.97389158740039], + [-43.376460865473014, -22.97608870836986], + [-43.38306906215712, -22.97406674575007], + [-43.394346880379686, -22.98367426598947], + [-43.403958365171476, -22.97525038851896], + [-43.406464401602044, -22.97905727847801], + [-43.403410246621064, -22.985299037120885], + [-43.40645912152391, -22.98098432046346], + [-43.4154341146655, -22.987687955438115], + [-43.41248619955513, -22.986654712057486], + [-43.41285454625883, -22.989660270822867], + [-43.40766001609261, -22.992413811107554], + [-43.390658956745526, -22.988533498076276], + [-43.388650471180824, -22.992665795927945], + [-43.392152368310086, -22.994360688269456], + [-43.38912458557899, -22.99482077381794], + [-43.38587810389005, -22.990117914595167], + [-43.38779850205628, -22.983016600955576], + [-43.381157298672406, -22.978338269780203], + [-43.35023942808455, -22.979581749361756], + [-43.34490470449233, -22.984681739141998], + [-43.35776133049329, -22.985338355220065], + [-43.35001667654286, -22.98780464523929], + [-43.3469282046188, -22.992344375242574], + [-43.35178689745361, -22.99421302977437], + [-43.35807005179003, -22.990203556622088], + [-43.36031825205282, -22.993806410425517], + [-43.323849320248506, -22.996291231711805], + [-43.32295810159448, -23.000720335349545], + [-43.31710296633822, -23.000436755069956], + [-43.31112446537294, -23.006489553373495], + [-43.29573529960738, -23.012564530722766], + [-43.30594729408214, -23.01627094095497], + [-43.35856869711811, -23.011195773991698], + [-43.44371618097296, -23.022000977943325], + [-43.46612430178629, -23.029553724129705], + [-43.47040700644259, -23.033681684126844], + [-43.46901468005541, -23.03798101782235], + [-43.4733150144771, -23.032524284451096], + [-43.49423589443518, -23.03516581792826], + [-43.50665262294792, -23.042735200338043], + [-43.50851955618629, -23.047999381289454], + [-43.536155889402075, -23.051843058837115], + [-43.53729458889919, -23.056212619907875], + [-43.54949210817261, -23.062489250540512], + [-43.55271246322528, -23.0712160345575], + [-43.549905159249995, -23.073361515201494], + [-43.55407360145258, -23.076589267142513], + [-43.557582400315134, -23.07429402289994], + [-43.57232076472921, -23.073861211039432], + [-43.56854211695402, -23.07161528302487], + [-43.56879529802435, -23.06347204910158], + [-43.57738122096271, -23.057238351181624], + [-43.59507855337366, -23.05257668828399], + [-43.66851575667252, -23.05404799948027], + [-43.77841448858404, -23.061778891141593], + [-43.85907372673124, -23.072171722049738], + [-43.95604874237211, -23.088010338060787], + [-43.98724066606009, -23.102336922386304], + [-44.00718760183864, -23.0952941918918], + [-44.00834871390666, -23.081972399244886], + [-44.01254826133383, -23.07827678089038], + [-44.007017875239505, -23.071256572932068], + [-43.99987877634497, -23.072648784946175], + [-43.99330130924627, -23.06760889182837], + [-43.99118485423974, -23.057182803868074], + [-43.98448682280101, -23.059382079688582], + [-43.97432119940089, -23.04554903382251], + [-43.95516244351499, -23.04008387610567], + [-43.949104716906504, -23.048996367381836], + [-43.9318845335121, -23.057284610656062], + [-43.91927030694046, -23.057991608511294], + [-43.89921334824343, -23.068087750501938], + [-43.885187191259355, -23.067550201567723], + [-43.87732502827312, -23.058324679296753], + [-43.880635434818835, -23.042321700175492], + [-43.90768761723318, -23.026477056966517], + [-43.91216342542294, -23.02027199717331], + [-43.901241690764444, -23.029356058832484], + [-43.86466522102935, -23.044571191760486], + [-43.82832265728357, -23.05776219349455], + [-43.79399018684244, -23.06122050547288], + [-43.7119112135341, -23.055051099220204], + [-43.66708198743267, -23.0427815374503], + [-43.61451929735757, -23.03182447305804], + [-43.60593647914349, -23.034803771848768], + [-43.603076454017355, -23.040402904357183], + [-43.56840875610823, -23.053993682994022], + [-43.568003233994965, -23.064621919609976], + [-43.55914996624128, -23.054200516295214], + [-43.557185903327195, -23.04912813153894], + [-43.559604353010734, -23.048371816846267], + [-43.56365112398192, -23.04598810961199], + [-43.563958646178705, -23.05385534717742], + [-43.572461358724965, -23.049801612038294], + [-43.580374875677684, -23.039882480650913], + [-43.57965782373143, -23.043317226226094], + [-43.58843707269127, -23.035950604076863], + [-43.58576973148781, -23.03578699633068], + [-43.5946011187111, -23.032763478511914], + [-43.59976743969079, -23.023671191108992], + [-43.625630848898176, -23.007661824215386], + [-43.639572100133826, -23.006832458523906], + [-43.64407660386621, -23.00204807055422], + [-43.65365949267309, -23.003456063491594], + [-43.66454836935249, -22.987297565163985], + [-43.67754710596313, -22.981048202146113], + [-43.68726379313883, -22.986672304841946], + [-43.69023469916731, -22.992436603864384], + [-43.69569112404274, -22.985467504123356], + [-43.70099097844137, -22.98617221803076], + [-43.71338150374817, -22.970286942684655], + [-43.7207897732866, -22.97426195862214], + [-43.71940850333853, -22.967022045967067], + [-43.730096522281585, -22.95519363384368], + [-43.74976367984879, -22.9463242740001], + [-43.7637075175508, -22.935809259529492], + [-43.7636826487336, -22.931003345057988], + [-43.76821588650501, -22.932319966661993], + [-43.77740560559448, -22.925046399283676], + [-43.775465705673035, -22.92123391702059], + [-43.7845452246698, -22.92367776915337], + [-43.79498360756553, -22.917686874615068], + [-43.80543621442934, -22.914635050519454], + [-43.81615494056287, -22.9192977490382], + [-43.81535482035014, -22.912423810873392], + [-43.822515406203834, -22.911019692193456], + [-43.819741129390565, -22.921238831754273], + [-43.83296356475941, -22.928865554316065], + [-43.84182644182602, -22.929649525735947], + [-43.844151106197046, -22.92590237297294], + [-43.851934777562434, -22.924793677374215], + [-43.850598554895605, -22.920735590665117], + [-43.85418301109915, -22.91852360964696], + [-43.83616061703427, -22.91302716626351], + [-43.83274030039713, -22.908495266515498], + [-43.83688216583939, -22.903434102817663], + [-43.85635063313012, -22.90206445111118], + [-43.87114847763679, -22.905486714490795], + [-43.880099814347965, -22.911859937529233], + [-43.88474250677618, -22.922080412616296], + [-43.89354740382098, -22.92212091380964], + [-43.9103776028015, -22.930700180092703], + [-43.93080757906, -22.929484666105722], + [-43.94118448766012, -22.93046277668479], + [-43.950995777888025, -22.927073882178284], + [-43.9649558464798, -22.934930304039572], + [-43.97723816663336, -22.931697702753553], + [-43.989465170435544, -22.93587332637316], + [-43.99491226592644, -22.941267956318985], + [-44.0004974933871, -22.94259342398907], + [-44.003411191090095, -22.93862034313123], + [-44.012402572679605, -22.950234976285227], + [-44.02280188363982, -22.956409989122456], + [-44.022187733927474, -22.963207934127066], + [-44.03055072879411, -22.964467815507298], + [-44.03454879621077, -22.981632464919556], + [-44.04721233015564, -22.98444767847296], + [-44.05593486679528, -22.980968991627606], + [-44.04171754735284, -22.962562300292333], + [-44.045156708729465, -22.956602336079154], + [-44.039525395866704, -22.95044306916506], + [-44.04646455265881, -22.938899377085505], + [-44.06285310677594, -22.94910251855035], + [-44.07498935649458, -22.952025136000124], + [-44.081215883498196, -22.95904167208307], + [-44.081364268240506, -22.956668492237704], + [-44.08374191106384, -22.959643777904994], + [-44.07563227739838, -22.97326997203086], + [-44.081743230168364, -22.991406039989293], + [-44.0965804661021, -22.996703644965095], + [-44.095820435826944, -23.00440454076249], + [-44.105157699806355, -23.015545755610702], + [-44.13009838465721, -23.03243955470087], + [-44.147496227115944, -23.035102015369333], + [-44.15274005640693, -23.0407704940406], + [-44.15699000047624, -23.0333716739109], + [-44.16657479614336, -23.032944068631153], + [-44.17679290676898, -23.03760921204298], + [-44.17579864460364, -23.04197334469357], + [-44.17174097281142, -23.043166586101165], + [-44.17337438238694, -23.048475130516795], + [-44.17935361656963, -23.050183253460713], + [-44.182682364152214, -23.045429723083373], + [-44.18465697883704, -23.052949988023933], + [-44.194161336377924, -23.054829403522014], + [-44.19329773371342, -23.042458485239557], + [-44.20024357118632, -23.03879141730348], + [-44.23754888263148, -23.056913542138197], + [-44.24410859314683, -23.054945233375843], + [-44.24685820734335, -23.04914158636028], + [-44.25138230280739, -23.05065836270919], + [-44.24382817529132, -23.044683704230618], + [-44.2361891186113, -23.026427631582564], + [-44.22158014837415, -23.017461797160994], + [-44.222351786756455, -23.011547656839443], + [-44.228996107745516, -23.014421458428984], + [-44.242689928465396, -23.00032677024318], + [-44.248932566272316, -23.001189810361485], + [-44.2483818097729, -22.996113633465704], + [-44.26094282287105, -23.007720810601114], + [-44.26724697684235, -23.002474102019654], + [-44.27439418572219, -23.007307717468752], + [-44.279331392528796, -23.013803846257147], + [-44.27832858266368, -23.01779982515721], + [-44.28368600962753, -23.01469321355421], + [-44.28913034378673, -23.017306098832808], + [-44.29054531795438, -23.024362544662395], + [-44.29864921420543, -23.02616756182846], + [-44.306193318435895, -23.023729176541956], + [-44.298470835488615, -23.01034687475115], + [-44.30091253217092, -23.00315762767707], + [-44.304410893751346, -23.002619471738605], + [-44.307689287270414, -23.007315005107678], + [-44.31654740769345, -23.008396576643836], + [-44.31649459667058, -23.01442108319796], + [-44.3201321127327, -23.010338969779347], + [-44.32280625120384, -23.015722933291542], + [-44.32827058723822, -23.01528354661806], + [-44.32685197612006, -23.021286422624584], + [-44.332496401887305, -23.02069779844837], + [-44.336518785908964, -23.025518587603656], + [-44.33884157891641, -23.022205021426597], + [-44.34257697607199, -23.023419469107182], + [-44.350804419219635, -23.03068271003117], + [-44.350744106737956, -23.022799208888205], + [-44.35827384270323, -23.023334649893812], + [-44.35832828264543, -23.0198517160284], + [-44.362659566919014, -23.018089290823838], + [-44.35988847939304, -23.0110500264499], + [-44.36265835639541, -23.010144810306045], + [-44.35712663684202, -23.00806800835846], + [-44.35458042857031, -22.998647004893222], + [-44.345135735561605, -22.9911859252611], + [-44.3283812650459, -22.994055114269155], + [-44.32919131605441, -22.98346549241978], + [-44.323806588159094, -22.982558253021036], + [-44.32096226479513, -22.986025209759326], + [-44.309906758762686, -22.98021423239939], + [-44.31243805631891, -22.97315333724422], + [-44.305939259031646, -22.963534861424737], + [-44.30193900963484, -22.962887892533335], + [-44.29974937410745, -22.958688542148728], + [-44.30216281380334, -22.956778319598186], + [-44.31318887837722, -22.959724694900256], + [-44.31873720540803, -22.95649262970365], + [-44.32971726824798, -22.960900558812103], + [-44.33257988542889, -22.96703758683547], + [-44.33624245938608, -22.964343788489224], + [-44.337386042854476, -22.95726903685177], + [-44.32860867255991, -22.95427571914825], + [-44.333300465935686, -22.95358949681667], + [-44.33321759809962, -22.945465448145402], + [-44.3229525868021, -22.941781600544513], + [-44.32226049357053, -22.94103712253692], + [-44.319802041394134, -22.936083294080188], + [-44.32574539773312, -22.93657411891298], + [-44.32199686041533, -22.929200128887473], + [-44.32489623273954, -22.927229244449883], + [-44.32824238137584, -22.92642513236805], + [-44.32707255564006, -22.923949621271106], + [-44.331739539926055, -22.92801271500832], + [-44.345270308563016, -22.92179091013717], + [-44.35054939761415, -22.922805776442896], + [-44.34779811259371, -22.92483086244632], + [-44.35218588611305, -22.9288722772485], + [-44.35523951156355, -22.92905585043987], + [-44.35898931905412, -22.922981282573136], + [-44.36563005341862, -22.92479457746467], + [-44.360884259028715, -22.92614582732547], + [-44.36673713111754, -22.92974654660304], + [-44.36032718105629, -22.931879409631797], + [-44.371377614753705, -22.937880974908765], + [-44.3689988214865, -22.946715271606024], + [-44.36655272708249, -22.947855890399644], + [-44.36416341268711, -22.940407325041647], + [-44.34988500530105, -22.946067801770898], + [-44.359187170595575, -22.956695963423204], + [-44.36269193825092, -22.954706260745876], + [-44.36657798545306, -22.960107909932987], + [-44.372551538851646, -22.958536367289145], + [-44.37766482099128, -22.969733307036094], + [-44.38066551178613, -22.966702552405238], + [-44.38391580014299, -22.97236993247559], + [-44.387162194561384, -22.96945571352228], + [-44.37926725851374, -22.958365543898477], + [-44.39482846232414, -22.949403779808257], + [-44.40749528577121, -22.95278841673375], + [-44.41227043177619, -22.941823977291293], + [-44.41385772298321, -22.94617354494226], + [-44.42346689495348, -22.951462150110665], + [-44.42253972337229, -22.959519249875015], + [-44.426493537082884, -22.95684829848973], + [-44.42599144925433, -22.962512833939765], + [-44.435381872852076, -22.964872835706213], + [-44.43607767657291, -22.972704273519938], + [-44.430630073029654, -22.97838832372804], + [-44.43488014577645, -22.979643772792624], + [-44.43516190553874, -22.98767229469725], + [-44.44087980264395, -22.99164542129538], + [-44.438553138897795, -22.99591522818715], + [-44.42960973359846, -22.993315924489313], + [-44.4251041327801, -22.997994365412506], + [-44.44238268020924, -23.005572318977567], + [-44.44646757923981, -23.01219074434129], + [-44.44024282012617, -23.020817113353704], + [-44.431048790572326, -23.020741247588038], + [-44.445046860713724, -23.02749746914676], + [-44.45302378496324, -23.01677730968884], + [-44.460102990150936, -23.018684265817118], + [-44.45871867757807, -23.011330941347037], + [-44.46304771064575, -23.006114962821194], + [-44.46835543709783, -23.00637848182663], + [-44.469413161967736, -23.0111903762363], + [-44.47704964526313, -23.006180724624038], + [-44.48366446495814, -23.008568715134604], + [-44.489520435940925, -23.020731523545166], + [-44.50588124734132, -23.030889203576365], + [-44.511388064531594, -23.026949852737893], + [-44.51949765959132, -23.027737756303953], + [-44.52986002435226, -23.028064838531787], + [-44.55074585794901, -23.037949526072403], + [-44.56033004231973, -23.03905089095344], + [-44.56855722023032, -23.047598952533058], + [-44.57610473092498, -23.04844604401619], + [-44.57796262654766, -23.054432711376727], + [-44.58585632777509, -23.057180221778896], + [-44.5838498366558, -23.058559380878084], + [-44.59949290757132, -23.063629241349737], + [-44.59088025839224, -23.052887268008345], + [-44.59160898804824, -23.049521946009566], + [-44.59666666043268, -23.045841665887313], + [-44.608659176658044, -23.050193511351203], + [-44.61172213246336, -23.048507473363177], + [-44.61438625948515, -23.05190874252187], + [-44.61416487559964, -23.046125598348294], + [-44.618049196014006, -23.043848016695357], + [-44.638438619295485, -23.0529152714522], + [-44.63894085508348, -23.04864418685548], + [-44.645639765015645, -23.047066670647272], + [-44.650936730142476, -23.056799374962754], + [-44.65677701849226, -23.052390547740938], + [-44.66133056061381, -23.05694152895143], + [-44.668213330682036, -23.054043452669585], + [-44.678359944384866, -23.06389101509787], + [-44.67655360643413, -23.071012962787144], + [-44.68372116123052, -23.071440522293692], + [-44.6880519854373, -23.0777944666104], + [-44.68521817135947, -23.079873902806316], + [-44.69143894823893, -23.083943012983838], + [-44.68772206612912, -23.090973376220322], + [-44.693102124990965, -23.093649580021193], + [-44.69634725149686, -23.10277391363643], + [-44.698773997963876, -23.121929969453227], + [-44.68821973561941, -23.12728128604058], + [-44.692248503192545, -23.131664821526233], + [-44.69916504786173, -23.132090411377064], + [-44.69924483740682, -23.135823534485212], + [-44.69835654724175, -23.14355515265501], + [-44.69326163137686, -23.146677991105427], + [-44.6990583787592, -23.155623553413886], + [-44.705487348274836, -23.15636608098705], + [-44.70727844307409, -23.167073824919033], + [-44.69895619089947, -23.169142835777773], + [-44.69852782866211, -23.174600905404873], + [-44.71049772044166, -23.177059788224533], + [-44.712220899715426, -23.183093811947654], + [-44.71738226244423, -23.185292266049597], + [-44.71502738542089, -23.187767533972867], + [-44.706859628675794, -23.1861547099058], + [-44.71505468192522, -23.190327353513673], + [-44.71426307242503, -23.19439985113643], + [-44.71834658660686, -23.194020113764207], + [-44.721634180554, -23.202079279553182], + [-44.71414094510368, -23.211885122237298], + [-44.710941044194165, -23.211573614879725], + [-44.708252095718855, -23.22024252722224], + [-44.712775447360755, -23.22206055757652], + [-44.7094996936856, -23.225960789164617], + [-44.71263575937899, -23.233729525562993], + [-44.705532734869806, -23.23406262359415], + [-44.70048156544198, -23.232942621667366], + [-44.69516622567442, -23.232367120422165], + [-44.690248971324344, -23.22230797023699], + [-44.68441651990163, -23.223826045916574], + [-44.67621662452947, -23.218871910827033], + [-44.67347080983922, -23.215038687220204], + [-44.6776324964713, -23.212645358737774], + [-44.67152461835022, -23.211097638611903], + [-44.66911397604768, -23.20608786417125], + [-44.66643523031428, -23.209643570781843], + [-44.663803815527565, -23.206446013234686], + [-44.659023776209075, -23.207577753304196], + [-44.6513830301012, -23.18811617213639], + [-44.64322112115338, -23.18575804364273], + [-44.64417021331686, -23.196167065173864], + [-44.62661134980073, -23.196786609744127], + [-44.62675176993161, -23.202430258887546], + [-44.61660584914986, -23.203872070105227], + [-44.61613458307559, -23.206671259645052], + [-44.62280529746452, -23.20786225652627], + [-44.62705539117339, -23.21326534404213], + [-44.624525466812756, -23.221527475497318], + [-44.628388937318064, -23.224430550173725], + [-44.63325718434392, -23.22269947106228], + [-44.63433523280055, -23.217632177160407], + [-44.6410456756961, -23.21924185838431], + [-44.636771936359175, -23.211102556137405], + [-44.65141700375984, -23.222144981712834], + [-44.653125281188416, -23.217684399150237], + [-44.66294605170093, -23.21461888067055], + [-44.65925095574214, -23.222231161745665], + [-44.66413454335033, -23.228243671308185], + [-44.65774312943663, -23.224325526028167], + [-44.65532892420508, -23.227628937170604], + [-44.66685933767934, -23.235375563652628], + [-44.67305566855824, -23.23102460727571], + [-44.678696747847226, -23.238674087288473], + [-44.67263969952867, -23.240504899091302], + [-44.67746173035297, -23.242841713291355], + [-44.681794779112884, -23.240140901393076], + [-44.6844914352165, -23.242613969614396], + [-44.67943476694382, -23.247004565782426], + [-44.69271697221009, -23.253222818761856], + [-44.67922121159339, -23.2527183918222], + [-44.669436332121926, -23.24476962278678], + [-44.669557020701085, -23.249635991033223], + [-44.663689734335115, -23.24830837200229], + [-44.65874061202502, -23.239668494289013], + [-44.651301972402955, -23.235670443601155], + [-44.63810831799871, -23.23564157883402], + [-44.63369402806966, -23.240263316554973], + [-44.62976366384444, -23.23937371378986], + [-44.61358609008837, -23.23452875370714], + [-44.62467014514539, -23.245039298986917], + [-44.64155670546697, -23.276959136079263], + [-44.65732668123336, -23.2930558492495], + [-44.655805957599725, -23.2957880743187], + [-44.63969368193323, -23.301273996912474], + [-44.64388652409576, -23.296287810344218], + [-44.64594578161155, -23.29082564139234], + [-44.64175339959396, -23.287769615998112], + [-44.638135790019845, -23.29032761844487], + [-44.631576267966075, -23.283481238535096], + [-44.62072410538647, -23.258914621837228], + [-44.59699483745808, -23.244386643961214], + [-44.5990781375265, -23.237647576548998], + [-44.596721913431075, -23.235104208969254], + [-44.57457296639027, -23.23427007188487], + [-44.56031852190134, -23.227549569135196], + [-44.56105334807791, -23.232303874109203], + [-44.576218669517814, -23.245175895270062], + [-44.57536096914476, -23.253972191821994], + [-44.58423635314602, -23.266877570919764], + [-44.579852792009476, -23.271541848252614], + [-44.57574772136659, -23.269489960176813], + [-44.55947580129866, -23.274131629430055], + [-44.55137881921717, -23.27170724849082], + [-44.54929987479796, -23.275045144180684], + [-44.5371894809984, -23.26782063032249], + [-44.51880429826461, -23.281007149778027], + [-44.52038441662497, -23.28509100594505], + [-44.5153256774246, -23.286657784432624], + [-44.51258588168582, -23.292505463733768], + [-44.505473052651524, -23.29184687031261], + [-44.50286372827973, -23.296807620210558], + [-44.50985646307411, -23.301884981181722], + [-44.51383509525815, -23.292981870255666], + [-44.52921447297717, -23.28857073193136], + [-44.53571885610944, -23.29325205060259], + [-44.54091608394969, -23.30596215401163], + [-44.54282480292713, -23.30321190121663], + [-44.55149480567328, -23.308436385895497], + [-44.55663123280262, -23.305798840070146], + [-44.565936858367984, -23.324120316736007], + [-44.56188691952172, -23.3309163225832], + [-44.58552640299232, -23.35989263291765], + [-44.591493716014064, -23.362680374998718], + [-44.59949449111989, -23.359865097054875], + [-44.605329284606704, -23.367817310766984], + [-44.608412062409855, -23.364295832061064], + [-44.60705305195436, -23.349622597988564], + [-44.61321631706025, -23.34853032348757], + [-44.61817248983381, -23.35196560694233], + [-44.619307145504784, -23.34290114302213], + [-44.624131605467724, -23.34122433221553], + [-44.628912722741674, -23.350508132845725], + [-44.634216045467774, -23.353129769435782], + [-44.62969353327378, -23.339066754941367], + [-44.640819123979384, -23.33319331626763], + [-44.647999959737305, -23.335434246306157], + [-44.65238935630025, -23.34278073914488], + [-44.66230244090282, -23.339930615416716], + [-44.65999748280182, -23.34832039069346], + [-44.672497073786154, -23.345856874629987], + [-44.67607966574107, -23.336022734064173], + [-44.68183038124685, -23.34049276903128], + [-44.68174571774864, -23.347958195624148], + [-44.6870503105273, -23.352717793227413], + [-44.68710687705442, -23.34847540347677], + [-44.702108513042106, -23.341255942406544], + [-44.71838583355799, -23.347677832136373], + [-44.72238596114651, -23.353784562640314], + [-44.719610615545285, -23.354427883502588], + [-44.72157690343777, -23.358068091916167], + [-44.72721232002001, -23.354819452874487], + [-44.73163458919881, -23.359706142591936], + [-44.72434101011662, -23.368148808952114], + [-44.7246322157123, -23.368040464447425], + [-44.72464533065259, -23.368035584949524], + [-44.73785377032155, -23.36312049117648], + [-44.74280702331541, -23.358428095789126], + [-44.74345352550459, -23.358433592492855], + [-44.750134064585616, -23.3584902342441], + [-44.75372895736505, -23.352611754376724], + [-44.75398327255022, -23.352208431202914], + [-44.75851616528756, -23.345019038064326], + [-44.76013260625801, -23.342455010101954], + [-44.76198622077364, -23.342100475367484], + [-44.765791191459215, -23.341372632283818], + [-44.778306451666296, -23.338977871895796], + [-44.778118199824426, -23.338347416041476], + [-44.777864228970095, -23.3374968614257], + [-44.7767484291188, -23.333759943688367], + [-44.78022862441729, -23.32892955821505], + [-44.78205194886568, -23.326398641952718], + [-44.78203504053514, -23.326372161588797], + [-44.780654116706536, -23.32420944550163], + [-44.779932529336655, -23.323079315024312], + [-44.78006410290229, -23.32157513627625], + [-44.78056940245668, -23.315797660547435], + [-44.78189050177913, -23.314007755455997], + [-44.78799379601072, -23.305737711747106], + [-44.787500445566586, -23.303541493840736], + [-44.78695227159171, -23.301101183350685], + [-44.78668891266962, -23.29992877208658], + [-44.79743481085535, -23.294332000846175], + [-44.80535303007974, -23.29000656760507], + [-44.80738596679428, -23.283337098795887], + [-44.82677266523714, -23.291907481589135], + [-44.82427920541504, -23.281755267609444], + [-44.82419394450372, -23.281408110976663], + [-44.82405617954183, -23.28084717182637], + [-44.828636538895516, -23.272932612252962], + [-44.83045492925864, -23.269790180731555], + [-44.83266459934015, -23.268415729561315], + [-44.840133145845904, -23.263769674425625], + [-44.83864366005321, -23.260836261329363], + [-44.83664559636649, -23.256901082139585], + [-44.839203876175795, -23.256465079773168], + [-44.8431719803995, -23.255788711328222], + [-44.84355962270814, -23.255722631162996], + [-44.85387603210308, -23.249206350864263], + [-44.85429577246361, -23.248941193704056], + [-44.872917914156375, -23.249106678145175], + [-44.87505049393815, -23.249125487185967], + [-44.875506921989256, -23.246813744875162], + [-44.87827581006391, -23.232786851443908], + [-44.88525186374075, -23.23296313244011], + [-44.88891936627019, -23.224463548249275], + [-44.883642092599835, -23.218484982076518], + [-44.88182088060376, -23.216421613075433], + [-44.88138812731742, -23.215931308470157], + [-44.88141994717672, -23.215591137652908], + [-44.8816565220091, -23.213061902332907], + [-44.882605336484175, -23.20291581194572], + [-44.88262830219833, -23.202670184618537], + [-44.876360226489, -23.19786435489501], + [-44.87614665242266, -23.196597232530827], + [-44.875588571883625, -23.193286143522112], + [-44.875435071707244, -23.192375420143257], + [-44.874637890498335, -23.189654386555215], + [-44.87270023565512, -23.183040281010893], + [-44.87127754083639, -23.18285178184182], + [-44.867537398789715, -23.18235617136269], + [-44.860910689860376, -23.181477836583273], + [-44.86089868074527, -23.18147624458169], + [-44.8607276166392, -23.181453567178902], + [-44.85435522621366, -23.177370103710558], + [-44.85333296781351, -23.176714992898017], + [-44.854190463923224, -23.172755471447317], + [-44.846246972278955, -23.173004464157763], + [-44.84553727727144, -23.170032054582464], + [-44.8452970138836, -23.16902574702724], + [-44.845273891350715, -23.168928901343183], + [-44.845167040174154, -23.168887335031613], + [-44.84027008136567, -23.166982265367626], + [-44.84020600483991, -23.1669463539053], + [-44.83919188617512, -23.166673334054927], + [-44.83105431876922, -23.16448228560269], + [-44.82662410928182, -23.163289251243878], + [-44.82577154995705, -23.163059645226777], + [-44.82308257847742, -23.15836069721049], + [-44.82509397477228, -23.145797530147572], + [-44.82543323491321, -23.143678090974788], + [-44.81896998902313, -23.141459967888455], + [-44.81686038937436, -23.14073590553142], + [-44.818704993662955, -23.136004474003435], + [-44.81980178755939, -23.133190957259213], + [-44.811102308518855, -23.125679797780712], + [-44.81360420301695, -23.121582951551375], + [-44.81240833265365, -23.11835667679068], + [-44.8112139064081, -23.11513419167948], + [-44.811193444596455, -23.11507898610313], + [-44.816197107533334, -23.110168722452332], + [-44.81135696895759, -23.103101969620077], + [-44.80926704507682, -23.100050397040697], + [-44.80902619642807, -23.099698716841967], + [-44.81287168457263, -23.098460764539364], + [-44.81282655947157, -23.09790064165253], + [-44.81252916943081, -23.094209303758962], + [-44.812354985535606, -23.092047308656024], + [-44.8186925307832, -23.090031837247533], + [-44.815804632016004, -23.083083957007357], + [-44.8149153676363, -23.080944405252648], + [-44.81199775773156, -23.07105761720638], + [-44.81182812365437, -23.07048275881349], + [-44.813999344349824, -23.06759181845023], + [-44.811997049585315, -23.06594372954575], + [-44.807707910398726, -23.062413147719468], + [-44.80731368635218, -23.06208863123904], + [-44.81155457858706, -23.054471705776702], + [-44.80924792024003, -23.052190168521452], + [-44.80414585256989, -23.050601566974287], + [-44.80358256188941, -23.05042616676741], + [-44.80321419289016, -23.050311460977472], + [-44.80315498717944, -23.049600563363704], + [-44.80257148425193, -23.04259447870728], + [-44.802213847675894, -23.03830059164155], + [-44.801897835837224, -23.034506555815312], + [-44.801637849314986, -23.031385242824438], + [-44.80137500878076, -23.03103644129358], + [-44.79654971630781, -23.02463273385305], + [-44.79706229172283, -23.02355272771705], + [-44.79710370804207, -23.02346546166995], + [-44.79717341271377, -23.023318236233703], + [-44.79862954237589, -23.0202531677272], + [-44.79866029190239, -23.02018843961782], + [-44.79749065517027, -23.018072395041305], + [-44.79478559606159, -23.013178329856267], + [-44.79326858207623, -23.01043357561735], + [-44.79314265334821, -23.010205726776448], + [-44.802633307421786, -22.99910647509689], + [-44.798192055712484, -22.99652162967153], + [-44.79611566228234, -22.995313082918436], + [-44.793971866501394, -22.99406525941604], + [-44.79331276488401, -22.993681611615894], + [-44.793302039712785, -22.993675368705546], + [-44.793292200047986, -22.99353891250682], + [-44.793209295006015, -22.99238919602048], + [-44.793064503772804, -22.990381285537342], + [-44.79305424467642, -22.99023901796446], + [-44.79300109313981, -22.98950304458141], + [-44.792506016512526, -22.982648159639652], + [-44.79246838112972, -22.98212707764363], + [-44.79204746232857, -22.98217525770733], + [-44.78919253055999, -22.982502013115838], + [-44.78710956254254, -22.982740380233572], + [-44.786729999827735, -22.982374348612783], + [-44.78357028765145, -22.97932718248765], + [-44.78349864077355, -22.979258085638254], + [-44.78335754866781, -22.979247082474913], + [-44.78077926265666, -22.979045990880504], + [-44.77808703617982, -22.97883596762129], + [-44.77654459367755, -22.978715619455418], + [-44.77573350339917, -22.978652328566845], + [-44.76530374218167, -22.983362693680508], + [-44.75944453711932, -22.978901951154292], + [-44.75528873757899, -22.98026538716978], + [-44.75527685745585, -22.980269284591913], + [-44.755281078117704, -22.98025527673534], + [-44.75597555180745, -22.977950344609372], + [-44.75659785309188, -22.975884849439563], + [-44.75268437586645, -22.97280046328818], + [-44.75067806511896, -22.97121912045433], + [-44.74929865198222, -22.970131857183617], + [-44.74980123665112, -22.968930255170665], + [-44.751746440526986, -22.96427928522476], + [-44.75221093925379, -22.963168603799666], + [-44.752411268390404, -22.9626895807278], + [-44.748799288546, -22.956507952153068], + [-44.74663852956235, -22.952809742312425], + [-44.74567411732802, -22.951159062314062], + [-44.7446726355503, -22.94944489726798], + [-44.74437167297924, -22.94892975367518], + [-44.74353305779029, -22.947494317161237], + [-44.74352084702514, -22.947473416105968], + [-44.74348350777481, -22.94746231093404], + [-44.74297480494424, -22.947315702545627], + [-44.720965103658976, -22.935804779260113], + [-44.71420138089397, -22.93065379502635], + [-44.71381545339264, -22.930359870065978], + [-44.713583637946115, -22.93018331695065], + [-44.71287613778868, -22.93059202017282], + [-44.710676334094735, -22.931862745329365], + [-44.7101943749478, -22.932141142732043], + [-44.70438643726006, -22.93549579103834], + [-44.70332517694339, -22.93610872588319], + [-44.70120663165851, -22.93496056036812], + [-44.69681089040637, -22.932578110443576], + [-44.69615215997978, -22.932221068931703], + [-44.688197210572774, -22.93646091350484], + [-44.68754041147789, -22.935625932280313], + [-44.68375612965876, -22.930814812758676], + [-44.682712476087346, -22.92948790981541], + [-44.680226409258665, -22.926327013151642], + [-44.67599704588131, -22.92094926487413], + [-44.67406321403204, -22.918490200825815], + [-44.67388251368866, -22.918260417287687], + [-44.65935976015307, -22.927697660369567], + [-44.65806567519445, -22.926873136720538], + [-44.64751600238802, -22.920150755543595], + [-44.64691207942288, -22.919765891851178], + [-44.64540630618509, -22.918806286252554], + [-44.63912767666235, -22.914804749236577], + [-44.638443280135974, -22.91436853933622], + [-44.633742556808926, -22.905846027243303], + [-44.633497294049825, -22.905401335905438], + [-44.629367722458376, -22.904867747800033], + [-44.609680147958336, -22.887913746766948], + [-44.60745580550191, -22.885997890561658], + [-44.60705293426644, -22.88565088434276], + [-44.60060668623384, -22.888757104650967], + [-44.59477039360962, -22.886342628795628], + [-44.58704940446114, -22.88314803100461], + [-44.57699279617513, -22.87898633769906], + [-44.57596849917555, -22.87856241042768], + [-44.575562011925584, -22.87875294921062], + [-44.57497180986288, -22.87902960023672], + [-44.574750969528985, -22.879133115877007], + [-44.56558207864711, -22.88343044132208], + [-44.56283063736758, -22.884719827787556], + [-44.55803561001823, -22.88746415840601], + [-44.55609072510322, -22.88857718912506], + [-44.55524221640153, -22.889062764034996], + [-44.547454036526574, -22.88618220122703], + [-44.543939017057205, -22.884881971747735], + [-44.54370219312432, -22.884794365565558], + [-44.54552923390289, -22.881462444269054], + [-44.545663035241475, -22.881218425370143], + [-44.54527671211923, -22.880850893523412], + [-44.536238410529734, -22.872251523845144], + [-44.53304402715236, -22.869211948521244], + [-44.531207221215624, -22.868678390900424], + [-44.53027032460885, -22.868406230849512], + [-44.52792716993081, -22.867725538290095], + [-44.522126257385764, -22.866040191044668], + [-44.5194957492496, -22.8652758674417], + [-44.51224152257572, -22.858146585386784], + [-44.511777493030785, -22.85769051742428], + [-44.505730041081605, -22.851746486875676], + [-44.49471847904503, -22.846432982769684], + [-44.484363832900804, -22.846318960022455], + [-44.48074595154549, -22.85086295347129], + [-44.47883950377481, -22.853257228786635], + [-44.47641277059988, -22.856304733416593], + [-44.4765849957965, -22.85668404384693], + [-44.478472206901166, -22.860840351914945], + [-44.479275127535026, -22.86260861015735], + [-44.4809421986596, -22.86627986204569], + [-44.480396080478826, -22.866444192693166], + [-44.476015130042015, -22.867762361051682], + [-44.47615330150511, -22.868793698854446], + [-44.476242562192546, -22.8694599574521], + [-44.47688396876467, -22.874247537654963], + [-44.471693945356726, -22.876033501292955], + [-44.47141189042837, -22.876519931871186], + [-44.47075453029701, -22.877653592356218], + [-44.466212549186864, -22.885485784043034], + [-44.457135127527444, -22.88146662119825], + [-44.44747517013567, -22.877188776831396], + [-44.445207104053864, -22.876184266819333], + [-44.43763638973103, -22.872376122153863], + [-44.433183267677606, -22.861365124185376], + [-44.424571041527585, -22.852248366101165], + [-44.42455759838507, -22.852239579375624], + [-44.4199830649309, -22.849249450877004], + [-44.41818483010658, -22.848073977596158], + [-44.41422200755589, -22.84818648239801], + [-44.4070442579086, -22.84839000275782], + [-44.40313909608575, -22.84850059224649], + [-44.401905304853635, -22.854586967428713], + [-44.39207857953617, -22.852605428853348], + [-44.39142298816617, -22.853399745543115], + [-44.38787819888484, -22.857694372466554], + [-44.38395143309166, -22.857795989260598], + [-44.37421308986424, -22.858047571439307], + [-44.36793172790966, -22.855498225396914], + [-44.363377822540805, -22.853649786332948], + [-44.360140539998625, -22.852292100008476], + [-44.34579089175404, -22.84627296962494], + [-44.34542626026621, -22.846119998918], + [-44.34118573859939, -22.84434093042669], + [-44.33632645637918, -22.842302088333035], + [-44.326409177476776, -22.838140435709114], + [-44.32590926333505, -22.838333714680235], + [-44.32346580378514, -22.839278381938453], + [-44.32046719344899, -22.840437599978998], + [-44.3210442998236, -22.842027107752816], + [-44.32110038680126, -22.842181585256846], + [-44.32155124270317, -22.843423346495417], + [-44.32371240395308, -22.8493754810814], + [-44.32377312827787, -22.84954271936364], + [-44.32221421563545, -22.84832138150463], + [-44.32217799034119, -22.848293000238627], + [-44.318415648900455, -22.8453452419936], + [-44.318046829879464, -22.845056265850857], + [-44.31742862957574, -22.840058764816664], + [-44.31741061519527, -22.8399131380782], + [-44.308486887916345, -22.832715786960044], + [-44.296631392136646, -22.82780898208796], + [-44.286711303267055, -22.828507190231303], + [-44.28659655393304, -22.82875628016849], + [-44.28593424257718, -22.83019395401166], + [-44.28331803972983, -22.8358724916052], + [-44.28081038369122, -22.835006974597874], + [-44.27396827771613, -22.832645185337043], + [-44.273430557165874, -22.832459557769077], + [-44.268856699208065, -22.82957383052894], + [-44.26873420678448, -22.829163422345516], + [-44.26567601670663, -22.8189165859042], + [-44.26157875147152, -22.805186884817], + [-44.26000118748446, -22.80492856149044], + [-44.25962858799119, -22.804867546636775], + [-44.24469271780475, -22.802420993238034], + [-44.244268014022474, -22.802351404084554], + [-44.24355586457787, -22.80043812735037], + [-44.24206695627263, -22.79643788024519], + [-44.24148927791563, -22.794885791924145], + [-44.24052220584953, -22.792287441376928], + [-44.24017172504299, -22.79134574597492], + [-44.24219712024231, -22.788177980837453], + [-44.24799496845091, -22.790429063273642], + [-44.250720356072506, -22.78928677926525], + [-44.25196590047119, -22.788764713446252], + [-44.25681084480612, -22.786733825969044], + [-44.25376794178837, -22.7816148023794], + [-44.25421027880287, -22.78127586726109], + [-44.25746387978318, -22.77878273284453], + [-44.2574652794584, -22.778628406081943], + [-44.2574694386236, -22.778169786957665], + [-44.25752579033919, -22.771951051621674], + [-44.25757131723617, -22.76692008478937], + [-44.257343261192815, -22.766618830374473], + [-44.25188263444333, -22.75940513533875], + [-44.25086274278534, -22.75805773691824], + [-44.250463054327255, -22.757529693722663], + [-44.245297925721076, -22.756715951179437], + [-44.24112507192646, -22.756058411982742], + [-44.23904643936651, -22.75573082888208], + [-44.23876787901358, -22.75568692692193], + [-44.24256482204258, -22.750008894997574], + [-44.240715013090586, -22.74808601741945], + [-44.23189138817767, -22.738912999166118], + [-44.227358434193256, -22.734200002423698], + [-44.22681073636097, -22.733630525546477], + [-44.22531639189001, -22.73355643362424], + [-44.22347930285485, -22.73346532867348], + [-44.223142814529446, -22.73344863924182], + [-44.21814233656809, -22.733200537509095], + [-44.20196956724532, -22.732397040409598], + [-44.19970591455963, -22.72765988747022], + [-44.19840738270409, -22.724942334154754], + [-44.202070394607915, -22.7237513391951], + [-44.203542697336815, -22.717093419716036], + [-44.20370944072445, -22.716339317998134], + [-44.20250815270614, -22.716120905746198], + [-44.196983811404536, -22.715116376900124], + [-44.19651365763703, -22.715030876484665], + [-44.19232750518457, -22.71426994659235], + [-44.184797245156886, -22.712900862030352], + [-44.17849582811825, -22.707887846958357], + [-44.17790398943823, -22.70700536658868], + [-44.17457265131866, -22.702037873011626], + [-44.175004845660624, -22.700166754004822], + [-44.17663188581493, -22.693121965653564], + [-44.17320862067191, -22.69091745783566], + [-44.16855246749059, -22.687918795302895], + [-44.167407489670246, -22.685962931801917], + [-44.16402860128295, -22.68019080380965], + [-44.163978502778214, -22.68010521785294], + [-44.162089220396176, -22.678978195499845], + [-44.16093769435201, -22.678291252745467], + [-44.17144021562978, -22.659391659907676], + [-44.17388573798551, -22.657971981692235], + [-44.17858702796823, -22.65524256834987], + [-44.19011705771404, -22.648547425108536], + [-44.19105045383448, -22.645021788697147], + [-44.18915539501294, -22.642854215676337], + [-44.184727057476096, -22.637788786493395], + [-44.18426653499842, -22.637261987066122], + [-44.19081453674417, -22.630169601993106], + [-44.1984937098113, -22.63045424579017], + [-44.203771096284996, -22.62692009695076], + [-44.2038453785183, -22.624263043377617], + [-44.20392074371466, -22.621566613390335], + [-44.2040923804886, -22.615423356283102], + [-44.207573460454704, -22.613683605850106], + [-44.20794582455622, -22.613497500279426], + [-44.208287826717665, -22.61361752192637], + [-44.21317116619288, -22.61533117820799], + [-44.21659769337334, -22.616533506098534], + [-44.21935405242234, -22.617500616839624], + [-44.22628494168942, -22.605433069837208], + [-44.226493040172166, -22.605070696216977], + [-44.226796611758225, -22.604542064872998], + [-44.233341270360434, -22.608895610752963], + [-44.23821298993251, -22.608134344743686], + [-44.23866971486712, -22.60806296740951], + [-44.248084799929885, -22.60659124759224], + [-44.248436328302155, -22.60695953486116], + [-44.24989457783885, -22.608487281533137], + [-44.2534729594569, -22.612236037409843], + [-44.26461873067131, -22.60524118029261], + [-44.27084995605997, -22.601329849854295], + [-44.27149001010005, -22.600928058825737], + [-44.28307848189553, -22.604185054774543], + [-44.283286518837166, -22.604625845668238], + [-44.284257221741996, -22.606682553316013], + [-44.28567917649346, -22.60969528179271], + [-44.29084578952795, -22.605646737188266], + [-44.292201778048074, -22.604584109974056], + [-44.29513274689569, -22.602287130545243], + [-44.295353238631655, -22.60088186888409], + [-44.29560806331648, -22.599257723737555], + [-44.29577192934521, -22.598213271621425], + [-44.303591843943124, -22.599126670607003], + [-44.312747848679166, -22.59521341529597], + [-44.318456058158645, -22.597088904091184], + [-44.32479302396384, -22.590387851704275], + [-44.3251018740028, -22.590061229231914], + [-44.32656924092876, -22.588509389207374], + [-44.327782974986334, -22.58873101691539], + [-44.330119328035615, -22.589157607955684], + [-44.33919734547448, -22.590814814422732], + [-44.33981704184757, -22.590927921576647], + [-44.339917867832476, -22.590849595095662], + [-44.34329425078268, -22.588226555814597], + [-44.34425383068152, -22.588731289053563], + [-44.34606289198854, -22.589682821497888], + [-44.34768469491181, -22.59053583409962], + [-44.34756898709477, -22.59104411773419], + [-44.347241033106044, -22.59248472659835], + [-44.34615849453457, -22.597239654342307], + [-44.34843505696795, -22.596310591810077], + [-44.35014035896156, -22.595614627456037], + [-44.35027134594501, -22.595561168163663], + [-44.35032129976753, -22.595692738512174], + [-44.350704035101046, -22.5967007964286], + [-44.35179245660671, -22.599567455045435], + [-44.35177930513321, -22.59962372536692], + [-44.350948580731966, -22.603177935480257], + [-44.34956129668751, -22.609112679214842], + [-44.35123356382046, -22.610365110587537], + [-44.35396649822165, -22.612411845899295], + [-44.35669604389013, -22.614455951056858], + [-44.36099364534113, -22.611732500175464], + [-44.36107762428203, -22.61167927899133], + [-44.36116898722657, -22.608258341623372], + [-44.361401552744304, -22.599545535620663], + [-44.361579910172566, -22.592858929854216], + [-44.365106630023156, -22.593566225195264], + [-44.366360877451065, -22.593817749108734], + [-44.3702709431052, -22.589829769614795], + [-44.36940249163501, -22.589146078054927], + [-44.36503533474647, -22.585707869073087], + [-44.36419516803587, -22.58504638764626], + [-44.36406254580749, -22.584941970456605], + [-44.36370750856278, -22.584662438576487], + [-44.36340978206718, -22.584428027968418], + [-44.36299474625854, -22.58410125365961], + [-44.36256733651965, -22.58376473451533], + [-44.361763340250576, -22.583131705205687], + [-44.360293941796826, -22.58197474737772], + [-44.36018790652006, -22.581891257469678], + [-44.360278091285856, -22.581808123487402], + [-44.360570912885336, -22.581538193901057], + [-44.360645031306824, -22.581469869562337], + [-44.36080543682398, -22.581322003064013], + [-44.36096923853061, -22.581171005276794], + [-44.361048659283924, -22.581097792409], + [-44.36400845823901, -22.5783692461407], + [-44.364456692971906, -22.578469519164717], + [-44.36453522205596, -22.578487086494526], + [-44.365043110508125, -22.578600702572782], + [-44.36664584385682, -22.57895922734748], + [-44.368167965334244, -22.579299703844356], + [-44.36898382897717, -22.579482194396043], + [-44.37162877929631, -22.580073780668904], + [-44.37397818537825, -22.578911076134506], + [-44.37415638504204, -22.578822883901267], + [-44.37684992748066, -22.57748978883051], + [-44.378231103955414, -22.576806182447516], + [-44.3784156831961, -22.576714824289002], + [-44.378551071111694, -22.576647813315727], + [-44.37867044144508, -22.576588730163486], + [-44.37909029290692, -22.57638092060517], + [-44.37953201438262, -22.576162284181066], + [-44.38403817419483, -22.57393177286017], + [-44.3844060693153, -22.573749658013593], + [-44.39188068358905, -22.573107431335288], + [-44.392029454672695, -22.573436188872094], + [-44.39487295766471, -22.579719600363457], + [-44.39569104965673, -22.581527295249522], + [-44.39715964233845, -22.582246019582048], + [-44.400884427491825, -22.584068832580815], + [-44.409573703719296, -22.588320667934443], + [-44.409249093339334, -22.588596040762383], + [-44.405723282276746, -22.59158691722209], + [-44.40541259894925, -22.591850452167233], + [-44.40539064149634, -22.59186907735076], + [-44.40538856614943, -22.591898517839095], + [-44.40538034878502, -22.592015087487777], + [-44.40477841079495, -22.6005524455893], + [-44.39849967206039, -22.60298233944997], + [-44.39916415502626, -22.6034070374868], + [-44.40687597373322, -22.60833562951426], + [-44.41673799869249, -22.601756351846554], + [-44.43021473323655, -22.59849667005327], + [-44.43158894488273, -22.59913393840559], + [-44.43229139340386, -22.59945968134288], + [-44.43270932559061, -22.599653484964993], + [-44.43518797505837, -22.600802854589745], + [-44.442721373372436, -22.604295832903983], + [-44.44313738819812, -22.604939910934892], + [-44.44671430207456, -22.610477498157234], + [-44.4467586278369, -22.61046951501632], + [-44.45438429039562, -22.60909591340491], + [-44.466196630821, -22.615653319354113], + [-44.47046323557833, -22.614677279729538], + [-44.47289533096381, -22.614120846287875], + [-44.47822295273105, -22.61290179741959], + [-44.483371255038136, -22.604556339084315], + [-44.484224693391816, -22.604880987313592], + [-44.487726784870524, -22.606213125619494], + [-44.48846065467203, -22.60649226577582], + [-44.48832523435459, -22.606718029998166], + [-44.486210219161016, -22.610243909580937], + [-44.48586832855837, -22.610813840544655], + [-44.48555451892329, -22.61133695451591], + [-44.485746012940254, -22.61146043644823], + [-44.48778502589994, -22.61277523769112], + [-44.48839628138497, -22.613632174999537], + [-44.4890436869307, -22.614539781040975], + [-44.490888148223796, -22.617125492004178], + [-44.492781242711736, -22.619779284261156], + [-44.49449721438457, -22.622184696333814], + [-44.49596522112635, -22.624242452715375], + [-44.49831098063157, -22.627530463702886], + [-44.504439468265325, -22.63611995077527], + [-44.50464557261924, -22.6363218445939], + [-44.50930565139309, -22.64088653062808], + [-44.51491015270518, -22.63018667170855], + [-44.53079913229933, -22.630301975661826], + [-44.53136034230328, -22.63069277006647], + [-44.53466879025256, -22.63299650903111], + [-44.53121954052003, -22.63946161443066], + [-44.53156064963303, -22.639296809021335], + [-44.53527362362134, -22.637502820447935], + [-44.5374427063513, -22.632336584045873], + [-44.53125095207174, -22.62534786859346], + [-44.53112080487769, -22.625200961387822], + [-44.53106188675508, -22.625134455832296], + [-44.52716375930482, -22.620734174133823], + [-44.52605286232907, -22.61948011577687], + [-44.53319011669852, -22.615672050766307], + [-44.53718763631129, -22.617287214071084], + [-44.541265639049826, -22.613406115905423], + [-44.54155676555605, -22.613129031763002], + [-44.54200694266503, -22.61270056493861], + [-44.54300448002163, -22.611751118393798], + [-44.54619015200515, -22.60871887372989], + [-44.54741527289809, -22.607552694906662], + [-44.5489044397392, -22.606135127476026], + [-44.550409618819984, -22.605279426289556], + [-44.550889378792796, -22.605006674670076], + [-44.55478455698361, -22.609931865788433], + [-44.554982567326185, -22.609968398118596], + [-44.56322923416339, -22.61148965863927], + [-44.57256269976998, -22.602450678552444], + [-44.573006873389545, -22.602020468395246], + [-44.573165769872006, -22.601866566009722], + [-44.573238514986215, -22.60202631306628], + [-44.58413226001353, -22.625945651173726], + [-44.58413723178864, -22.62595656624687], + [-44.5914580430932, -22.622932647159974], + [-44.593593106047884, -22.618294297591863], + [-44.59438481769707, -22.61657421691832], + [-44.59717900127512, -22.610503049184786], + [-44.59784799916173, -22.610124120467102], + [-44.59814368677154, -22.609956637575333], + [-44.60230029441678, -22.607602144843693], + [-44.60254351494469, -22.608278204954974], + [-44.602800496038824, -22.60899250947839], + [-44.603761922123475, -22.611664846089727], + [-44.604748859717375, -22.614408022966742], + [-44.60601397407002, -22.615069797532943], + [-44.60790369572599, -22.616058273549257], + [-44.60978349835587, -22.617041528673475], + [-44.60987902674512, -22.61695692415581], + [-44.62254924167219, -22.60573390677866], + [-44.6230888219774, -22.605903998886927], + [-44.62434647257162, -22.60630044047165], + [-44.6346295441242, -22.609541485652375], + [-44.64584563362515, -22.603866150698334], + [-44.64343569094923, -22.60045123133381], + [-44.64487440447776, -22.594243435563126], + [-44.64526776105053, -22.592546012183302], + [-44.6471074563306, -22.584606400949983], + [-44.64235540770028, -22.577600899362025], + [-44.64171684726725, -22.559336641361217], + [-44.64807240302086, -22.55246032180793], + [-44.648377662893296, -22.553068770806487], + [-44.64991288290557, -22.556128731925888], + [-44.65033977110629, -22.556979575359236], + [-44.661519722690464, -22.55090258435537], + [-44.66308386717766, -22.55194235874988], + [-44.66503693677394, -22.553240635401096], + [-44.66634841636228, -22.554112400048584], + [-44.66976056944813, -22.556380431824017], + [-44.677413059833185, -22.56146651406961], + [-44.67624336089328, -22.544879428114363], + [-44.67338796317938, -22.542348915069525], + [-44.67036466759193, -22.53966947458312], + [-44.66991525539901, -22.539271164708104], + [-44.670695094575365, -22.538507939468445], + [-44.67381710308901, -22.5354522988857], + [-44.68022341900888, -22.52918144591975], + [-44.68429851378672, -22.525192014014845], + [-44.68814707671254, -22.521423990877057], + [-44.68852598689417, -22.52126909357551], + [-44.69492930407082, -22.518651230708457], + [-44.69592700105152, -22.518243307924042], + [-44.69815279889465, -22.513315875194902], + [-44.70113493632753, -22.511088715630883], + [-44.71568774634746, -22.514206745272958], + [-44.71426147240355, -22.510692964971085], + [-44.71342778537367, -22.508639028102547], + [-44.71007545734208, -22.500379533132804], + [-44.71249668365051, -22.493343389765563], + [-44.72055105482845, -22.49229880041005], + [-44.72204038012402, -22.488620517762723], + [-44.723591454099164, -22.484789428816928], + [-44.72387610755321, -22.484086313070218], + [-44.7236462057466, -22.481555471511264], + [-44.7233948597526, -22.478788612350762], + [-44.723111663594445, -22.47567120092696], + [-44.71995549823613, -22.471335539125963], + [-44.71822601307787, -22.468959612758518], + [-44.7177481107008, -22.46830306762966], + [-44.724373233730574, -22.456245205419], + [-44.724250254709375, -22.45444225409655], + [-44.72420047369854, -22.45371244499994], + [-44.72404889621997, -22.451490304037225], + [-44.72867465849998, -22.448393909107736], + [-44.73019694140381, -22.440088277497146], + [-44.73348748145085, -22.433565975314494], + [-44.74040975252005, -22.42570185437794], + [-44.755089412384564, -22.414897480598242], + [-44.76996138570945, -22.415113804699903], + [-44.77877372755404, -22.408549529551017], + [-44.802790743538125, -22.40595813867359], + [-44.807587818502604, -22.405440087406603], + [-44.80922587295635, -22.405263153970807], + [-44.80400464227463, -22.39379468302737], + [-44.79370383480423, -22.387059061512485], + [-44.78757529619448, -22.388060215036745], + [-44.78047160828342, -22.382740901525747], + [-44.77598579417276, -22.384262031178345], + [-44.76202123907782, -22.3762247981141], + [-44.74443648762318, -22.37616666262251], + [-44.730885336205816, -22.361592930869428], + [-44.72396599843184, -22.359923003510556], + [-44.705521004029876, -22.373279375960045], + [-44.69161493512957, -22.370067323556388], + [-44.678748101498606, -22.374188284316357], + [-44.66647413280429, -22.373156090428683], + [-44.66068708196096, -22.380492819202274], + [-44.658859185384664, -22.37471064676253], + [-44.64624722787943, -22.365110450760977], + [-44.64289038422595, -22.35371725336922], + [-44.62833355444346, -22.345949083002257], + [-44.626157958016144, -22.336067439107914], + [-44.61726242834993, -22.33174743194726], + [-44.61533721410913, -22.330198803440627], + [-44.6123042196558, -22.32817610784446], + [-44.589042815886245, -22.320373546049698], + [-44.58766384899303, -22.321580485087015], + [-44.58779987375582, -22.321927283055192], + [-44.58102704275096, -22.327747809950512], + [-44.571660100666314, -22.324123224334063], + [-44.56990087526587, -22.327263188188798], + [-44.56433315981231, -22.3323489969661], + [-44.561687481029686, -22.330461460087967], + [-44.55476699324618, -22.33009824807434], + [-44.545853049002076, -22.323622271446364], + [-44.54345679869849, -22.3318441782385], + [-44.53194751521442, -22.328653655709214], + [-44.53054825948308, -22.323879432327555], + [-44.51775135928775, -22.316292585902914], + [-44.513661421363416, -22.308969632131138], + [-44.496770996529264, -22.302845780970227], + [-44.48269014248021, -22.293775411448294], + [-44.479550101156796, -22.28806159579125], + [-44.476682028176, -22.28871242101107], + [-44.46799345617158, -22.2795735312443], + [-44.46113176796892, -22.280333662371703], + [-44.46328442305429, -22.274990003155352], + [-44.459124670127835, -22.27046697281132], + [-44.46260636245687, -22.2666678750956], + [-44.456437079995396, -22.25721844577632], + [-44.44666385004503, -22.25561035760754], + [-44.444733998683795, -22.257941774981305], + [-44.44044055530515, -22.254786895818256], + [-44.438410927540616, -22.25828907428811], + [-44.43465407562109, -22.25244183291718], + [-44.432257396585676, -22.251414402736646], + [-44.42388421666995, -22.255632165790693], + [-44.414439865451776, -22.254123730938133], + [-44.39478443648369, -22.258876327123446], + [-44.39110199289778, -22.26828705809906], + [-44.3909498066534, -22.268576761121867], + [-44.38757683118131, -22.272474004605588], + [-44.384061233150014, -22.267498483802434], + [-44.37740683836329, -22.268000880073522], + [-44.37566220042758, -22.262050008086288], + [-44.360244244762825, -22.252644038846316], + [-44.35232807891074, -22.257722865607846], + [-44.34421644919073, -22.253594475986052], + [-44.33723061364277, -22.25864930214339], + [-44.323919050517574, -22.254960535135517], + [-44.32199275423777, -22.261132153529832], + [-44.3147246204253, -22.25446973404364], + [-44.30177764824215, -22.253519217813448], + [-44.29149799520981, -22.243030647606574], + [-44.28943717980346, -22.247431778312457], + [-44.284506019206574, -22.243531932988773], + [-44.27637902317716, -22.24314792198403], + [-44.26879312729494, -22.244790532614335], + [-44.267298025040745, -22.248303152424526], + [-44.264597107642984, -22.24482540366493], + [-44.263493729009994, -22.243405054141814], + [-44.26028203146547, -22.268337538156803], + [-44.25078985573914, -22.260663475146767], + [-44.24671694339164, -22.26697752831872], + [-44.23913419845023, -22.26291096081501], + [-44.2354667364639, -22.26617595015036], + [-44.22437829374078, -22.259296986132416], + [-44.22443444530825, -22.252962023181446], + [-44.21331708672894, -22.24623658942345], + [-44.20851761806815, -22.251030543561907], + [-44.20384665336709, -22.248812021385618], + [-44.20168879866105, -22.251534250717143], + [-44.18949035066855, -22.240718993820874], + [-44.18101776029347, -22.23310257732397], + [-44.180245739683954, -22.228033353824106], + [-44.17357124943794, -22.230432741077284], + [-44.166858474764375, -22.22754736562146], + [-44.16702347953063, -22.232202221226643], + [-44.16413329057458, -22.23251018062341], + [-44.15862953484103, -22.22525650686375], + [-44.15366175053986, -22.226923385619063], + [-44.14918266084954, -22.213637651006007], + [-44.14107973182486, -22.2202357728386], + [-44.13360151715346, -22.210076553599453], + [-44.127460400775924, -22.212011923587752], + [-44.126405925086544, -22.208778436416388], + [-44.12151169572675, -22.209091553072067], + [-44.125298405693485, -22.20048978014133], + [-44.12129113457476, -22.195309197667978], + [-44.12310105832583, -22.18824277011706], + [-44.11929656858972, -22.187253388889587], + [-44.117880472546894, -22.190091132099354], + [-44.105074790047986, -22.18455044814203], + [-44.104902379769804, -22.17778089859929], + [-44.10007361806043, -22.173280908136796], + [-44.09018602461202, -22.175793399034138], + [-44.08778390625958, -22.1843976375539], + [-44.084825904359725, -22.175510402190987], + [-44.076857416341355, -22.17538384587768], + [-44.0725650445435, -22.16493419746846], + [-44.06638232873207, -22.162076457965114], + [-44.04099570878438, -22.160571546459792], + [-44.03827095659414, -22.154333137953984], + [-44.02393236836634, -22.151351446758596], + [-44.00504479611283, -22.162354565916484], + [-43.99801790101257, -22.1560160909491], + [-43.99330247866649, -22.158306353883024], + [-43.98832206755402, -22.150148953627653], + [-43.97715796192326, -22.149621406740334], + [-43.97880192163228, -22.146630649208632], + [-43.96114451468578, -22.13997078920552], + [-43.9532834241143, -22.141446923626685], + [-43.94077790174011, -22.13212370149075], + [-43.88896922535252, -22.114451140342233], + [-43.88060059452454, -22.113624663057347], + [-43.880338663768526, -22.108567462261803], + [-43.8799125496023, -22.100329079187244], + [-43.87142553452375, -22.10390308169172], + [-43.87073420023575, -22.09995470431232], + [-43.86232613767191, -22.09951185740788], + [-43.857654124119605, -22.095118582137626], + [-43.843386980899936, -22.09893480580377], + [-43.83871906592449, -22.096130882760946], + [-43.83509634657499, -22.095125199457474], + [-43.81840613484119, -22.086639494293813], + [-43.816742575750276, -22.08662552960021], + [-43.811094245679364, -22.08599659686962], + [-43.81284809594787, -22.083371424939585], + [-43.81032073381668, -22.082265808519512], + [-43.80025640374448, -22.08247270132721], + [-43.77743061956447, -22.066751762036347], + [-43.76876321623275, -22.067537902881362], + [-43.765988832709894, -22.06289447407772], + [-43.76385755899075, -22.073233449583935], + [-43.75621774526803, -22.07695527089585], + [-43.76049921715763, -22.080984116253166], + [-43.74638234429158, -22.088214815526626], + [-43.746934350171784, -22.09274765080607], + [-43.74116843892532, -22.09508372176116], + [-43.734602008265604, -22.097233277424436], + [-43.71993311891495, -22.081183063305243], + [-43.70987591251403, -22.08153843574042], + [-43.709403696866445, -22.076965310923892], + [-43.700236179952626, -22.077878938844574], + [-43.6918456888859, -22.070882422156043], + [-43.68190679177676, -22.071591795243602], + [-43.68009746092067, -22.081051600562592], + [-43.67401308624947, -22.08981176072688], + [-43.66864664386417, -22.085999292506724], + [-43.66559998575379, -22.074429384043228], + [-43.65643659551273, -22.073316440148876], + [-43.65257060540981, -22.067086703980088], + [-43.64560825733212, -22.06590730123632], + [-43.64437212709962, -22.066288812308805], + [-43.63871010378474, -22.068035847393496], + [-43.62831948389432, -22.07652241204943], + [-43.62107675444471, -22.075479631469676], + [-43.62073847036218, -22.083820347190027], + [-43.61319295886178, -22.082310107289832], + [-43.61190305073274, -22.071524661670125], + [-43.60371531709752, -22.072102509574243], + [-43.59965722177913, -22.058981141322207], + [-43.5959397978821, -22.06004723266878], + [-43.59272147374678, -22.055902332503933], + [-43.58607712694871, -22.051999182960785], + [-43.584526241729186, -22.07050359020342], + [-43.574738838819336, -22.077798354793558], + [-43.56924586896569, -22.077796098938947], + [-43.56693380382256, -22.087704269998977], + [-43.56312690512588, -22.08822020733889], + [-43.562393775292406, -22.087773308192986], + [-43.556800937980796, -22.082276076751132], + [-43.555877221322426, -22.08206790606344], + [-43.52557910487111, -22.07198361711266], + [-43.51982821174472, -22.061842114462525], + [-43.513600530444606, -22.05930138498114], + [-43.50574832995658, -22.066560101354554], + [-43.50752189516596, -22.074479829139513], + [-43.49220615819603, -22.074280986393113], + [-43.48667591842395, -22.073451927830877], + [-43.4759286827577, -22.06973971211357], + [-43.46246345320525, -22.072623218419466], + [-43.43705543955891, -22.059994922442616], + [-43.42818150696776, -22.054668116438435], + [-43.419265900113864, -22.05377567111642], + [-43.38815206518064, -22.032239903305793], + [-43.368569198099706, -22.020476555935794], + [-43.365905007750236, -22.01158871005841], + [-43.35209243828328, -22.00873004827021], + [-43.349533416265565, -22.003371375476902], + [-43.34684975384414, -22.003531145759528], + [-43.339374790297434, -22.010538509003545], + [-43.33087384889958, -22.010875772892483], + [-43.32448041950894, -22.006318684707843], + [-43.317792806551324, -22.006839626148114], + [-43.31690208509833, -22.01601500957], + [-43.29907016285355, -22.020048803800208], + [-43.280515863483025, -22.01101438399399], + [-43.26923257525057, -22.012274711715673], + [-43.26240602422389, -22.00850742514112], + [-43.254791048863005, -22.01196472696818], + [-43.24654287362338, -22.00700995755551], + [-43.23660041490508, -22.012080371391676], + [-43.23673811138311, -22.022844156377296], + [-43.23361593297628, -22.02387948892867], + [-43.22770932002798, -22.028500672797772], + [-43.223144567637796, -22.031658881823407], + [-43.215640993230416, -22.030662586164798], + [-43.21143173837995, -22.03010295126252], + [-43.204008718271055, -22.025930937962872], + [-43.202984071764554, -22.02547825362218], + [-43.20473765163785, -22.035239809708656], + [-43.202034747562124, -22.037080046219796], + [-43.180818765131384, -22.02929549149671], + [-43.16954018163995, -22.0221767724454], + [-43.16470825370125, -22.02291195034839], + [-43.16338837824658, -22.02849079716066], + [-43.15512367662458, -22.032399263685715], + [-43.14756836874443, -22.031094438210463], + [-43.14415319209832, -22.033699135564017], + [-43.13113238447098, -22.029656853102022], + [-43.1313093272947, -22.035952538989633], + [-43.1280968745184, -22.046217200159056], + [-43.1340859965537, -22.058984264804906], + [-43.150580391910886, -22.071618916950328], + [-43.154118227648006, -22.077954767321913], + [-43.14611038452167, -22.09504480212462], + [-43.14595575731473, -22.09770839470574], + [-43.136539854499006, -22.10964300458807], + [-43.12759414976188, -22.10488197434743], + [-43.12254405630011, -22.09106220849204], + [-43.10674410647819, -22.0840098737572], + [-43.08948418139516, -22.087920312837877], + [-43.07801112096109, -22.084085032322562], + [-43.07412525548048, -22.093316001842446], + [-43.05315533119338, -22.082510905005844], + [-43.033157618554014, -22.06587176108153], + [-43.03259561835838, -22.060206122751623], + [-43.038898909943754, -22.05295471078514], + [-43.03943715566582, -22.046575565968734], + [-43.003043777738206, -22.03236067938293], + [-42.996584785189825, -22.036034346329586], + [-42.96898223407784, -22.01486244552682], + [-42.95966797299571, -22.0149998720152], + [-42.94709165747979, -22.005887840294417], + [-42.920891618689446, -21.995257586942447], + [-42.90908370747802, -21.990465916173463], + [-42.90230004191924, -21.984633927492222], + [-42.88278021325484, -21.967119042339768], + [-42.882506299658544, -21.96008550394704], + [-42.84628283598131, -21.948401761737568], + [-42.79172534414512, -21.930848640292417], + [-42.76773954161652, -21.921336244526834], + [-42.74362676121642, -21.910087858507037], + [-42.71982022623964, -21.897240777720242], + [-42.66892499256026, -21.8745084046996], + [-42.662977193371795, -21.872368979118], + [-42.656120564162556, -21.869901540831926], + [-42.6469777399446, -21.867188846668753], + [-42.61271313221272, -21.85537393522547], + [-42.6085053503282, -21.85216830714936], + [-42.605239277743514, -21.855052288740918], + [-42.59743418538182, -21.853686603016875], + [-42.57987270412726, -21.845676503402814], + [-42.582392543400914, -21.837699906514167], + [-42.552855668253905, -21.825612695895476], + [-42.54047610801701, -21.821053905401733], + [-42.46436621327168, -21.78678060892374], + [-42.4606471494168, -21.785446384291074], + [-42.39119254914194, -21.760189261722918], + [-42.383545200189175, -21.753410236667698], + [-42.37829371478801, -21.748974868434836], + [-42.37671742325112, -21.748641696803272], + [-42.356538206143334, -21.741867407962317], + [-42.33583062163325, -21.746225361261317], + [-42.32482682357603, -21.742800083558393], + [-42.31154350054622, -21.73553118938743], + [-42.307211770555774, -21.72949680884699], + [-42.26735584606305, -21.71418593555738], + [-42.271787714113785, -21.71453465162582], + [-42.266617953215665, -21.70832969965654], + [-42.27212066834055, -21.704265379278993], + [-42.27134274650084, -21.699895369330964], + [-42.2653440980249, -21.694062552976504], + [-42.270646770726515, -21.681670093064177], + [-42.275287871789395, -21.676891579234283], + [-42.28336746473965, -21.680922235592867], + [-42.28711763702023, -21.672700240853917], + [-42.283068742490826, -21.670637324780017], + [-42.291144601081385, -21.6647222909231], + [-42.29567792099202, -21.66027067217011], + [-42.30178240734805, -21.655284600649612], + [-42.310756712763634, -21.660018038939423], + [-42.31629847425216, -21.655224452324024], + [-42.32042303606529, -21.66071854518986], + [-42.32468935786194, -21.656544423498033], + [-42.33186729043381, -21.66168028059557], + [-42.33645173007615, -21.660708189502113], + [-42.33820086791857, -21.66186908531717], + [-42.34308960046007, -21.659682108891133], + [-42.34298736193032, -21.655762368590985], + [-42.34716496455167, -21.643153560370926], + [-42.355501027152165, -21.64746536782992], + [-42.36513056537332, -21.64625926533495], + [-42.369821351735105, -21.640267396333847], + [-42.36396928601896, -21.63187032271879], + [-42.35870706394703, -21.631698088139565], + [-42.355725291037004, -21.625834249229143], + [-42.35930889536725, -21.62141043045692], + [-42.364893033520566, -21.62422391653024], + [-42.369143591995446, -21.6199435658639], + [-42.36137025573934, -21.602028501478213], + [-42.35314270385787, -21.592043228036314], + [-42.346256624917295, -21.582946624492813], + [-42.32594967112096, -21.570003678491766], + [-42.32739527153925, -21.562667324405293], + [-42.33114505130366, -21.560590570759512], + [-42.31427231156963, -21.555565711351278], + [-42.309260716551314, -21.5507455506328], + [-42.31058412656576, -21.547074109264884], + [-42.30292755621488, -21.539483880329602], + [-42.30633895329044, -21.529515517136584], + [-42.297113689197616, -21.524528548193473], + [-42.28643472365754, -21.528049299549973], + [-42.28317202880761, -21.523414816458864], + [-42.273759584991296, -21.504151009315624], + [-42.259998420534956, -21.49635942514521], + [-42.257057900975354, -21.49470015120199], + [-42.252983900684036, -21.49367485353025], + [-42.25273301145908, -21.48981356637318], + [-42.27140477331649, -21.475651088517505], + [-42.26861596195023, -21.468848432913873], + [-42.292617545850405, -21.46001741695468], + [-42.28431642798743, -21.44642589804594], + [-42.28605320446614, -21.44231172677548], + [-42.279660831764275, -21.43538220932662], + [-42.280910285785424, -21.432614060800915], + [-42.275488410842776, -21.42832633144678], + [-42.279064853823854, -21.410555551258728], + [-42.27471207169594, -21.403961647277246], + [-42.26745151665714, -21.400021712318246], + [-42.26081669780681, -21.410061250449417], + [-42.239369068142814, -21.403475542421738], + [-42.23794218318445, -21.392939090216423], + [-42.25008871509117, -21.39014194920022], + [-42.25243592131016, -21.386496379254478], + [-42.240976138811114, -21.37791069531075], + [-42.24183753961267, -21.37313660188063], + [-42.22986699208152, -21.36655036262348], + [-42.232611791122075, -21.35413653103311], + [-42.22938132097087, -21.351120602890262], + [-42.23622362242215, -21.343719143423634], + [-42.22411942899238, -21.33797274981896], + [-42.22891816839082, -21.32872324071138], + [-42.23668966958989, -21.3251613570455], + [-42.238226520192136, -21.3186649764184], + [-42.22984148501446, -21.30844017958614], + [-42.229439787843496, -21.285179504610173], + [-42.22439952922625, -21.276713122369543], + [-42.21252538851364, -21.272053008446235], + [-42.21038800955667, -21.2667173341159], + [-42.193379641410814, -21.25334308535391], + [-42.18969719856968, -21.249883097298433], + [-42.19522448700153, -21.238529387105658], + [-42.18878065759928, -21.230030034474524], + [-42.1916055793067, -21.22380210202574], + [-42.19733018765954, -21.226322811797917], + [-42.20295233013104, -21.221670437194756], + [-42.20146905085201, -21.20860339292566], + [-42.19508522702549, -21.201733350049555], + [-42.206308790485316, -21.18611859189509], + [-42.20849579665305, -21.17819578441962], + [-42.20353384025012, -21.174649022127262], + [-42.19408797523813, -21.1640565026757], + [-42.19588654533907, -21.16002496440031], + [-42.19211603773739, -21.148572901498614], + [-42.17940867886926, -21.140957714197302], + [-42.175561220489236, -21.132143144673602], + [-42.17064810060126, -21.128622874184348], + [-42.17066077419749, -21.11459061807162], + [-42.16437016904517, -21.10143905735374], + [-42.140104702923544, -21.103022121949216], + [-42.13602323232304, -21.094395586014432], + [-42.13316845903563, -21.081060195776264], + [-42.12120458333514, -21.078075298257], + [-42.11892223182247, -21.07529941585741], + [-42.12031324277238, -21.069963731047658], + [-42.101344819108746, -21.049751967404926], + [-42.10111664026299, -21.034443925821062], + [-42.09374469016247, -21.0372404061571], + [-42.08049690097091, -21.036093922666897], + [-42.08015990979081, -21.03056172658938], + [-42.08437404901478, -21.02881044765888], + [-42.08491476290371, -21.02286936929106], + [-42.102696918466904, -21.014452415227705], + [-42.109096954885615, -21.014750966692407], + [-42.109250583148324, -21.01463974480302], + [-42.1108105483001, -21.013508696097098], + [-42.115782196117834, -21.00990344101013], + [-42.11701231903867, -21.00257352183483], + [-42.126497827669716, -21.00357368570968], + [-42.14123778507967, -20.993139561772907], + [-42.14157905203622, -20.987083330059225], + [-42.151139410242614, -20.980215902036186], + [-42.15024904485991, -20.975576780551794], + [-42.15167568627222, -20.974364861164286], + [-42.13840487630603, -20.960544271621306], + [-42.12548515674827, -20.955827952982215], + [-42.121866193263934, -20.959722435775912], + [-42.11559359628873, -20.959210911468915], + [-42.11523027677252, -20.9502180406127], + [-42.109427217037044, -20.94795466481091], + [-42.09396717616811, -20.936008988606577], + [-42.08744537308745, -20.939132823262607], + [-42.06574323933907, -20.938625084338817], + [-42.046173407238676, -20.93323407033741], + [-42.0385390686879, -20.92744013993373], + [-42.02336948155434, -20.9254634506034], + [-42.01910546468305, -20.927796237489655], + [-42.00459101830384, -20.93202039207882], + [-41.998677817523564, -20.926456197449248], + [-41.97666892881704, -20.935492005997265], + [-41.97964568096679, -20.922347555648628], + [-41.97287111487448, -20.916100588691876], + [-41.96733716956266, -20.916823731108362], + [-41.964093777678656, -20.906497650987145], + [-41.96746242788688, -20.899889252366734], + [-41.965197783881116, -20.892854599130356], + [-41.96042149056761, -20.882818179359816], + [-41.95033448520488, -20.874390382970653], + [-41.95472753309374, -20.865494256469237], + [-41.94978831089705, -20.85794536842046], + [-41.93564875748412, -20.85463105647551], + [-41.9314001282875, -20.848348030043397], + [-41.92988232895765, -20.844862528741864], + [-41.92616461866792, -20.838046904920272], + [-41.935395713428655, -20.828548244989317], + [-41.92534526875607, -20.801568114362798], + [-41.928140197645256, -20.794975894335547], + [-41.91605105530622, -20.79278335085569], + [-41.90631133113172, -20.797225166945672], + [-41.901203810772664, -20.79623181277368], + [-41.89669860831079, -20.789498974782113], + [-41.88556356005683, -20.78527445208017], + [-41.878806412567336, -20.77870794171854], + [-41.87907441075701, -20.77409070460397], + [-41.87347084512407, -20.77092099777394], + [-41.87503281369967, -20.76646285307104], + [-41.861593174242266, -20.764009877246725], + [-41.85384716826016, -20.764133808064695], + [-41.848142066428174, -20.775122218878995], + [-41.83779952178593, -20.78062990408226], + [-41.82558828944546, -20.788576761805064] + ] + ] + }, + "RN": { + "name": "Rio Grande do Norte", + "coordinates": [ + [ + [-34.968838313489194, -6.490173775689415], + [-34.97163036706335, -6.485287365995728], + [-34.97974872991901, -6.490180496415703], + [-34.99212344634088, -6.501542586645162], + [-35.01117224158196, -6.50617071860793], + [-35.01885670947014, -6.5031091262899645], + [-35.028596242652355, -6.505570197157209], + [-35.03701834650662, -6.517172806493982], + [-35.05778690100902, -6.527838586841684], + [-35.06720077832743, -6.5247075920259885], + [-35.09559631938103, -6.497725381086276], + [-35.10171322702682, -6.500199030342925], + [-35.1037355822701, -6.505892809972085], + [-35.112603793199845, -6.505165095684851], + [-35.12350754747846, -6.529908140937185], + [-35.13268438725987, -6.535809426976623], + [-35.145860544478076, -6.552806762342502], + [-35.15753823094932, -6.551755425899588], + [-35.170351957327505, -6.558439755082639], + [-35.19405956579366, -6.5503663484504555], + [-35.19952737370378, -6.5499912807019465], + [-35.2073626208664, -6.5437657274512295], + [-35.21828729085016, -6.518652281878051], + [-35.22351312563564, -6.5162796718971325], + [-35.22448203181017, -6.521680231777137], + [-35.232400863083456, -6.5318239116223085], + [-35.25326275029012, -6.534057748270258], + [-35.273270482765874, -6.543523494790686], + [-35.27461669078119, -6.543925146320425], + [-35.30276665916327, -6.544200482124885], + [-35.33082405180722, -6.544388620437159], + [-35.34131508896055, -6.5386644684718105], + [-35.364563428276064, -6.512088429051613], + [-35.3798714006024, -6.502974529234413], + [-35.40079978330538, -6.491650898170757], + [-35.407808997343906, -6.489631449560372], + [-35.42402157144592, -6.488702056423001], + [-35.44214962419877, -6.486639830503371], + [-35.4417791845923, -6.482517839215446], + [-35.44270589319818, -6.4794247990016975], + [-35.446747563581134, -6.486890974134163], + [-35.46009644291671, -6.476826080699241], + [-35.464274228621235, -6.482759606027005], + [-35.479369782632375, -6.48684066925193], + [-35.492032227678735, -6.480132720029354], + [-35.49584313654508, -6.483307564605131], + [-35.501459659015765, -6.477850376494561], + [-35.51400360583757, -6.4782057643390045], + [-35.52593889534841, -6.476273588303479], + [-35.52714585289904, -6.4793215466461005], + [-35.5336860708342, -6.483079924475634], + [-35.53800676317662, -6.47995295806908], + [-35.540811661923364, -6.4830168377028095], + [-35.5467433211496, -6.481914186238006], + [-35.55214893177704, -6.490871430668395], + [-35.55856242722782, -6.4929290407434], + [-35.56484429801014, -6.491827329364087], + [-35.564239343290566, -6.487516498258621], + [-35.58143366091101, -6.485844199743758], + [-35.59176050417772, -6.477206008204296], + [-35.59221283352897, -6.471677964920697], + [-35.600236596690436, -6.460658434209234], + [-35.616922432363324, -6.46268081230692], + [-35.62042694293599, -6.457372184810838], + [-35.63684710196955, -6.454436420034066], + [-35.65731146091094, -6.445830099120873], + [-35.663651552838736, -6.4468778811659835], + [-35.66520523729334, -6.450562741255488], + [-35.67139556122083, -6.451771684113917], + [-35.682020604786445, -6.447976254018787], + [-35.69822848804196, -6.462938973487014], + [-35.71130349944738, -6.471141755328023], + [-35.72190334733283, -6.471713247472139], + [-35.72623861016927, -6.46965939742581], + [-35.74120198835861, -6.476351561814475], + [-35.743607698113564, -6.473932528880126], + [-35.75027371052444, -6.4785390550116615], + [-35.77337012402355, -6.482891581275619], + [-35.77997240836235, -6.483323355623486], + [-35.782675834459454, -6.483483887330373], + [-35.81736473132646, -6.48554147242251], + [-35.85313619840582, -6.48766117520961], + [-35.87040595166575, -6.488684342281053], + [-35.94422829785249, -6.493053397229991], + [-35.96528592217948, -6.4844068476500825], + [-35.97228499703388, -6.487585641066289], + [-35.97769153194921, -6.488952990937161], + [-36.00539237371189, -6.481100546603393], + [-36.007399917712675, -6.4745691669530565], + [-36.01225295216766, -6.473980046402028], + [-36.00838129081745, -6.465167020293808], + [-36.013328894141814, -6.45508841666349], + [-36.036754687525146, -6.444312697095104], + [-36.051292272155465, -6.432250598812635], + [-36.06178171739458, -6.410293373101831], + [-36.067268965577234, -6.4151353773389195], + [-36.073806238088075, -6.414919485601726], + [-36.07275115843377, -6.410470182932893], + [-36.08005707848469, -6.40523726469968], + [-36.0867878877336, -6.415883894708159], + [-36.09614755800615, -6.420246363298224], + [-36.09652434435616, -6.420307250217519], + [-36.09861495480538, -6.4199722478953065], + [-36.10315758730459, -6.421594995847356], + [-36.10751670106905, -6.426324364542062], + [-36.1102312470094, -6.4292282037571065], + [-36.143793548379456, -6.425372188710162], + [-36.17450744900464, -6.43081210115569], + [-36.204229815978294, -6.432267268929303], + [-36.22657689753985, -6.434075732768574], + [-36.249813832829204, -6.437407195923108], + [-36.251204735662654, -6.404471065381026], + [-36.262285765227865, -6.4023226293860045], + [-36.2691362880065, -6.401935270927035], + [-36.28296143228254, -6.397465833191887], + [-36.29526289215251, -6.394608109785108], + [-36.299286039642716, -6.382104818245957], + [-36.296380073451516, -6.370458197777408], + [-36.278519220372026, -6.3494051467847035], + [-36.279177572702864, -6.317675721748924], + [-36.279914643092674, -6.308909947146169], + [-36.287088191888216, -6.3011128596525685], + [-36.295021476026456, -6.2921555227835935], + [-36.307633041808174, -6.281546584362793], + [-36.34350542138265, -6.3022793005345354], + [-36.34402923724506, -6.30258307083034], + [-36.36264595416444, -6.310027066048886], + [-36.39460230293604, -6.294023126873757], + [-36.43034637821107, -6.362302667760507], + [-36.44482258201072, -6.362223016583583], + [-36.448825908349576, -6.361998539727059], + [-36.499887887561805, -6.358212414560543], + [-36.50441712690015, -6.386498167661219], + [-36.50753139510455, -6.4001638423628116], + [-36.5310107087765, -6.452118198024236], + [-36.53086436498648, -6.47187794897839], + [-36.5282500502342, -6.47933057500197], + [-36.525885853934156, -6.501207552745993], + [-36.519312219489656, -6.5025963502075435], + [-36.482669853133565, -6.519584139209042], + [-36.479307260865966, -6.539915461198829], + [-36.46922993766609, -6.54914205024908], + [-36.46273949100919, -6.550296678475646], + [-36.46229512506541, -6.550376082881792], + [-36.44921294467924, -6.5539600502959345], + [-36.44442988029212, -6.558365461142085], + [-36.44120999516716, -6.599482240995313], + [-36.43589761338949, -6.625923245837348], + [-36.438261742564386, -6.629328744457693], + [-36.449388155775566, -6.62424290144326], + [-36.460557214201245, -6.634438793061278], + [-36.473519799800464, -6.614452008188993], + [-36.50195012520307, -6.601523829717107], + [-36.50799889754787, -6.595496247703713], + [-36.513849651006346, -6.594438423260754], + [-36.52194986160732, -6.597133004785115], + [-36.52355735566819, -6.60224868136695], + [-36.520781413214486, -6.61064634461813], + [-36.54178417414805, -6.666108020690114], + [-36.547454061119915, -6.695193386644886], + [-36.55738259911178, -6.706145658817621], + [-36.55891861159812, -6.7091518627612095], + [-36.544242749673366, -6.731247714162638], + [-36.53355646552858, -6.733530294416516], + [-36.525252505077624, -6.736762206359434], + [-36.52060407899261, -6.7457256717838465], + [-36.50479197442433, -6.753982205695797], + [-36.50134331648023, -6.777613161325203], + [-36.505530124264794, -6.808867730980192], + [-36.51000055168916, -6.81799234684681], + [-36.52920431836107, -6.825441475222115], + [-36.54370595171571, -6.842141992576119], + [-36.56019411447551, -6.840816709648398], + [-36.5698329974607, -6.848051513644382], + [-36.57411719807413, -6.8575008839826], + [-36.5668315883743, -6.866634975970401], + [-36.56797748280869, -6.8748404275956965], + [-36.609831492321234, -6.936879543316898], + [-36.61656819285209, -6.934058396735714], + [-36.637484823440815, -6.93384973626885], + [-36.654915335553916, -6.928280448621185], + [-36.68725491400933, -6.926005132934261], + [-36.69470788250637, -6.934532634616353], + [-36.69973907697206, -6.948383171895158], + [-36.71247617589879, -6.980061212177533], + [-36.71859033107811, -6.982776785386965], + [-36.731107467023556, -6.976229286528002], + [-36.73741186681526, -6.972850658047493], + [-36.75583874773964, -6.954308771801334], + [-36.76658010145078, -6.935909891390096], + [-36.76003444323761, -6.914582305710923], + [-36.75610080457548, -6.896367565570166], + [-36.74502536332152, -6.879556693205217], + [-36.73023464056212, -6.83643915625045], + [-36.76077882559918, -6.838010666089882], + [-36.76950141695111, -6.838791047858702], + [-36.7727651187075, -6.787108552282187], + [-36.78916655421052, -6.7725090919600035], + [-36.835065679371326, -6.731114658595158], + [-36.874369391438094, -6.743226919506514], + [-36.910251903928966, -6.756972817044807], + [-36.93155734305309, -6.768618178566495], + [-36.957170543327834, -6.790521249767079], + [-36.95913297766853, -6.783345787662892], + [-36.95269794610302, -6.775196272518288], + [-36.96460133931947, -6.774098598516125], + [-36.971921925185086, -6.765525817873543], + [-36.97183300914942, -6.74068875271818], + [-36.977656804170245, -6.721898738817209], + [-36.98997607643356, -6.709193663443668], + [-37.003626130461434, -6.709655787509998], + [-37.01002072219004, -6.714555596069818], + [-37.01222038275861, -6.716266315502207], + [-37.0352949429022, -6.734209455186285], + [-37.059457659131816, -6.749468210975304], + [-37.075451405981646, -6.754177131294833], + [-37.120094214024505, -6.767334579486655], + [-37.128969697107664, -6.766019908133814], + [-37.15226097716549, -6.7984065006441154], + [-37.19070533074362, -6.825408070719044], + [-37.213929628948854, -6.824861482120529], + [-37.2346324393416, -6.824678329347932], + [-37.252090783749495, -6.813143393666647], + [-37.25517696590094, -6.811103853523508], + [-37.255450091489024, -6.798511593019374], + [-37.260625387941566, -6.787401923024477], + [-37.25735984631317, -6.7804384285953985], + [-37.273982270926695, -6.766833006181067], + [-37.269395973720556, -6.762028154675841], + [-37.26395381848624, -6.732213353350536], + [-37.27995080496201, -6.724276766697683], + [-37.290200200198804, -6.71308688772494], + [-37.28374899990136, -6.693957946408179], + [-37.298299651369, -6.691607674408496], + [-37.31433173802918, -6.689017518490531], + [-37.342745517201855, -6.701289778717467], + [-37.40000238156197, -6.699771800232988], + [-37.40736631580451, -6.697238194431919], + [-37.4270111610964, -6.700499072049832], + [-37.45590517545159, -6.705295542399866], + [-37.48473126700814, -6.710079944889734], + [-37.47101346982151, -6.680379499939444], + [-37.47523336274661, -6.672865206336985], + [-37.46622279203907, -6.660002475375149], + [-37.477247738503515, -6.64195430545647], + [-37.474563860965, -6.617956914057911], + [-37.47603214656818, -6.6081571801439], + [-37.48041593233589, -6.6052611093961175], + [-37.48015052376819, -6.594193834189393], + [-37.4748469184173, -6.564494448701177], + [-37.48061465461943, -6.559863667386826], + [-37.48316024276269, -6.5504545259623495], + [-37.473973984802015, -6.538012093715979], + [-37.46475654751418, -6.5327075160852575], + [-37.44492770614795, -6.53311470161619], + [-37.43659656468921, -6.533285915962373], + [-37.43637755382187, -6.533288552410366], + [-37.41574195897626, -6.5319240705500885], + [-37.397264302589186, -6.514644402434199], + [-37.390984910184294, -6.452887016205261], + [-37.38127947252622, -6.4371411999997274], + [-37.381345493785915, -6.43684366052619], + [-37.38152677893585, -6.436019989998781], + [-37.38662679985712, -6.426081974057204], + [-37.39770257867894, -6.416330202390269], + [-37.396156565971076, -6.401189085352949], + [-37.388863703603924, -6.391024417468214], + [-37.38858161190885, -6.379779100169284], + [-37.38247861117374, -6.373456727242576], + [-37.377573758326804, -6.369377366661349], + [-37.37787947006946, -6.350484003275302], + [-37.37736167152317, -6.3444380759192605], + [-37.36338623028392, -6.322211281057721], + [-37.33399117608512, -6.308385860894024], + [-37.32822554915646, -6.303249956777855], + [-37.31855700679158, -6.279700856804834], + [-37.306491545488726, -6.27811126943586], + [-37.286882774084525, -6.282311842740385], + [-37.274760174619075, -6.281472385884316], + [-37.270586208948814, -6.25176089155612], + [-37.25156129215677, -6.226505058121484], + [-37.2343055637654, -6.213325277926894], + [-37.20161475422488, -6.205750631431541], + [-37.194272888058215, -6.198294287115058], + [-37.19297800230725, -6.1831272017126695], + [-37.17425559816332, -6.1801510194126745], + [-37.16571815849711, -6.170421999693454], + [-37.156957731544146, -6.152535920300087], + [-37.16641565941895, -6.153956456733122], + [-37.175129941037135, -6.142230390512009], + [-37.16701005575597, -6.1104037034334935], + [-37.17268664575132, -6.09887725941505], + [-37.17059530634063, -6.083103421862639], + [-37.17560755853435, -6.054987763572966], + [-37.173966146874385, -6.0480644022815415], + [-37.194329542841324, -6.048081637279846], + [-37.20443223961276, -6.03820029396977], + [-37.22272169536043, -6.042196525334058], + [-37.23189467119971, -6.0276434551601445], + [-37.25064799809903, -6.025960385009578], + [-37.25650820591934, -6.02851950030332], + [-37.26361332921797, -6.046403852934824], + [-37.272511421611306, -6.055750665483447], + [-37.28695057791346, -6.05803759361192], + [-37.295605771452436, -6.050143299687829], + [-37.30062806077301, -6.050308010316609], + [-37.309233482617195, -6.057808103689429], + [-37.32885702814396, -6.064752234564608], + [-37.33581304910172, -6.067507326910603], + [-37.35446756271808, -6.086533556811863], + [-37.37159782824553, -6.082826519224495], + [-37.378816192135396, -6.085180171499199], + [-37.382371982396286, -6.085601302359035], + [-37.392216662263024, -6.108220569132458], + [-37.407842687587014, -6.112829431192237], + [-37.425986874692676, -6.10904424805908], + [-37.445725752701854, -6.112249365675974], + [-37.453945118348685, -6.120120685834624], + [-37.45897998683343, -6.145049001327332], + [-37.47412836546641, -6.148785159784046], + [-37.483023487523624, -6.151727637006366], + [-37.48940146135327, -6.1444845220754605], + [-37.50342855626718, -6.14444326039839], + [-37.50292300820308, -6.152187053229332], + [-37.521908978363896, -6.151837610682055], + [-37.536382792726286, -6.152882431446711], + [-37.540026928364725, -6.16597664909273], + [-37.560684506389606, -6.164578128373004], + [-37.56965224197632, -6.155485060070547], + [-37.573753089931046, -6.1586700130993535], + [-37.573802585717694, -6.158820099578202], + [-37.585168936500615, -6.162871958758406], + [-37.59994479566811, -6.174057077892353], + [-37.616280582320044, -6.176243509399739], + [-37.638506894361015, -6.179882868300185], + [-37.64674316287587, -6.189438093657459], + [-37.680122663445864, -6.1891983309311085], + [-37.68018971412446, -6.1891933552372125], + [-37.69821362087509, -6.186648768478397], + [-37.70902746043807, -6.177049684655617], + [-37.71643935704208, -6.1792821252539945], + [-37.742404493051055, -6.189020882434679], + [-37.753565155472465, -6.198514414823608], + [-37.75311005413576, -6.214475520325569], + [-37.763876246048945, -6.218944768273925], + [-37.77564687178653, -6.231388581204973], + [-37.76280266521772, -6.235382493748181], + [-37.76309678184159, -6.241180589970462], + [-37.77664356694593, -6.245919846991747], + [-37.760546797375596, -6.254135537869095], + [-37.770508239583656, -6.265680972373256], + [-37.771452290166145, -6.273109901680485], + [-37.75782715527555, -6.28782572785871], + [-37.75769294253353, -6.290816851222781], + [-37.77172886867283, -6.2909926461091406], + [-37.79454823705455, -6.289077510265885], + [-37.81045111445383, -6.2917025047015045], + [-37.82406012934986, -6.306078028241081], + [-37.81456605277263, -6.312356409806082], + [-37.814785034998195, -6.3151874860086785], + [-37.82270316205846, -6.317823359553222], + [-37.83376158000479, -6.321822889263707], + [-37.84322516447341, -6.333132224958584], + [-37.83428991056294, -6.342429445547725], + [-37.84414660285113, -6.354400808950296], + [-37.84067375467774, -6.361383971322075], + [-37.8542720174294, -6.366360321915579], + [-37.85985725086015, -6.37492110058557], + [-37.88825426206038, -6.364413237843634], + [-37.88854072290321, -6.387252513933757], + [-37.884291587094225, -6.391719667576548], + [-37.886279118601415, -6.397044148124972], + [-37.890285888670086, -6.400178610092665], + [-37.901561569744516, -6.3997221983263595], + [-37.9194757611333, -6.411689595116199], + [-37.9281462263197, -6.421636159878622], + [-37.94546668163804, -6.422663258732818], + [-37.95523480895313, -6.408104788185523], + [-37.955424833133506, -6.398250185370193], + [-37.96805155879349, -6.405165701631651], + [-37.96870741698711, -6.4187864566057575], + [-37.9791132198012, -6.426736267257678], + [-37.98028812435012, -6.427127857877351], + [-37.98904630056275, -6.428678951350619], + [-38.013724567751105, -6.427470226130016], + [-38.014421813268854, -6.430435142659509], + [-38.00825392318875, -6.4322352732524255], + [-38.01999767803189, -6.44604773432008], + [-38.01297546168227, -6.468896210142759], + [-38.02184403218515, -6.468498326261445], + [-38.026787413631816, -6.474799229779631], + [-38.034200734189874, -6.4758895133108885], + [-38.041102372294525, -6.471216728149412], + [-38.03628499674394, -6.460034402906746], + [-38.04395180105202, -6.4520181630510365], + [-38.0434262836538, -6.443391411443078], + [-38.046376236949456, -6.440973135475471], + [-38.05148058442981, -6.442448223444736], + [-38.053983358478185, -6.453726524226006], + [-38.059271345389945, -6.453172366426916], + [-38.06196469471156, -6.459490306240129], + [-38.066646010128345, -6.460481716106847], + [-38.07089448929294, -6.463969200485765], + [-38.08304588698004, -6.4859299896350775], + [-38.09542599090514, -6.493628512343247], + [-38.09801588676673, -6.5095329715017725], + [-38.117085632287825, -6.522710599763375], + [-38.12024013445847, -6.522422871941762], + [-38.13554572162445, -6.518518166887557], + [-38.14791026077346, -6.491529725304436], + [-38.161200882600774, -6.499155686075638], + [-38.17321530295842, -6.499874364877605], + [-38.19229201587299, -6.49837082136879], + [-38.200579473021726, -6.488321391116988], + [-38.22714719989292, -6.483989720849531], + [-38.22904951796549, -6.483388478248852], + [-38.23925612014477, -6.480339162597249], + [-38.25291547984418, -6.485464236582653], + [-38.256558636740884, -6.483251225393258], + [-38.261441027004956, -6.485187443177778], + [-38.269873765335525, -6.494482482734989], + [-38.288747202169866, -6.505658958583016], + [-38.29405590626733, -6.489443126752925], + [-38.29753826387645, -6.487248227414394], + [-38.30894184677665, -6.48956846601843], + [-38.31203519013072, -6.488914205366292], + [-38.312521730219586, -6.48817515492849], + [-38.312837310089414, -6.488320632426173], + [-38.31601143323605, -6.482461695528601], + [-38.31828303186985, -6.473816917602978], + [-38.32846461935349, -6.460697753831989], + [-38.33281766633911, -6.458231984335478], + [-38.33935185363317, -6.460167751944623], + [-38.34382883790419, -6.456693563284084], + [-38.35524571779099, -6.4572630277426155], + [-38.36100263028295, -6.462029189991975], + [-38.363817456901934, -6.4536836393974895], + [-38.3736899503634, -6.455822615293381], + [-38.375146369490125, -6.437420900358647], + [-38.381964784024525, -6.432099391651688], + [-38.382995330596344, -6.424795925728618], + [-38.38821303078321, -6.418991344877425], + [-38.39157597974537, -6.416249375178578], + [-38.4017662968644, -6.4096007266331165], + [-38.40306246137677, -6.40982545711617], + [-38.40605944599805, -6.41023268438388], + [-38.426067876208755, -6.414165520011092], + [-38.43837066108941, -6.409916499710316], + [-38.44163764394957, -6.40474374213336], + [-38.44798541131159, -6.4033942008520786], + [-38.44886417684189, -6.3946169135149935], + [-38.452090220169175, -6.392530986346204], + [-38.46583565460539, -6.396451545254199], + [-38.48626052694848, -6.398793263998965], + [-38.48310905499759, -6.381154837455613], + [-38.49056015308881, -6.366117164582382], + [-38.476065998316244, -6.345769226004068], + [-38.45841302310565, -6.330255569327471], + [-38.47501072957701, -6.333287445822472], + [-38.481255391674075, -6.337414484457033], + [-38.48494135388928, -6.3401768896653135], + [-38.49420179147486, -6.344859132545763], + [-38.50544749602319, -6.356550836150159], + [-38.51662555270853, -6.346276139592879], + [-38.534133509876895, -6.341967858000543], + [-38.54503933288108, -6.344630312894592], + [-38.54987563138805, -6.350744044068515], + [-38.545091154483785, -6.353799031428297], + [-38.563334215821264, -6.356073534845873], + [-38.563213757036095, -6.352792294154914], + [-38.57710130556746, -6.347469043209399], + [-38.58156822078643, -6.3310876476223115], + [-38.581322166832024, -6.316251827380661], + [-38.56604869026534, -6.30263043907246], + [-38.57032240584618, -6.300035218332915], + [-38.570403348796546, -6.292992024987073], + [-38.571539018698715, -6.284484899242353], + [-38.57874013490803, -6.280348391866022], + [-38.56293806391291, -6.268000741157785], + [-38.55444702898428, -6.26343765425855], + [-38.545877302944184, -6.245468578642211], + [-38.53849147173472, -6.246938917595189], + [-38.52899155679988, -6.239912537724205], + [-38.523468604184906, -6.228361210818798], + [-38.51973800090528, -6.2230799286015], + [-38.529312096623926, -6.213782780967687], + [-38.525921699455814, -6.1982827336942865], + [-38.527230139074575, -6.1934204844086755], + [-38.512803068412865, -6.192065512303967], + [-38.50135160415068, -6.190989690270735], + [-38.50078467327726, -6.179725139238088], + [-38.49111506960431, -6.17055122288277], + [-38.472961565848735, -6.152021268835131], + [-38.4720922214351, -6.148792175672422], + [-38.476442010257564, -6.144456035125061], + [-38.47345124341693, -6.136046273961928], + [-38.457697324109006, -6.108062742014162], + [-38.4407978291151, -6.096917729705246], + [-38.44734320324552, -6.085321170177367], + [-38.431276430709474, -6.0755363003753144], + [-38.427462870778875, -6.069420250797056], + [-38.41321386864052, -6.058364579583111], + [-38.404904865489975, -6.057333269223253], + [-38.40156340107658, -6.053538807926941], + [-38.39501946279413, -6.05545468298225], + [-38.381982227968436, -6.052832610393114], + [-38.385718557758246, -6.064723070698162], + [-38.37838925284093, -6.0668746708893755], + [-38.37980009936906, -6.073360685996152], + [-38.371346695682185, -6.084450740959885], + [-38.36527275605509, -6.088503176209987], + [-38.3504503938342, -6.083287166053042], + [-38.347391535502496, -6.080745475647967], + [-38.34681015554213, -6.067321245106283], + [-38.33961458866922, -6.077735396844786], + [-38.336787011093, -6.080441335459238], + [-38.319948751016874, -6.07708290072794], + [-38.30482965154553, -6.087011459165043], + [-38.290816634492174, -6.073195592894247], + [-38.2770367709445, -6.069995922570476], + [-38.27492796392298, -6.065843072952293], + [-38.274423842316025, -6.063829592318438], + [-38.27006132091495, -6.062713534018456], + [-38.265002005141575, -6.054292329921426], + [-38.25921143725567, -6.053824438912546], + [-38.260195026521174, -6.0497601678467605], + [-38.252596798192876, -6.0431466994793075], + [-38.25219960475448, -6.01020233543496], + [-38.244531365614804, -5.999502292214386], + [-38.23006118043996, -5.9869119665814745], + [-38.21805181055076, -5.97704276741236], + [-38.20604359668985, -5.9643930031159], + [-38.1923968522913, -5.959609816350104], + [-38.18361022994697, -5.950268704035087], + [-38.175459428768235, -5.953446969115319], + [-38.164820544529135, -5.946577528166436], + [-38.16351834844288, -5.93894138350532], + [-38.16546543413179, -5.932149567881559], + [-38.1600357540251, -5.925004712045284], + [-38.15932597548724, -5.924621774252454], + [-38.14674848568097, -5.916223617646997], + [-38.14258227518864, -5.901686628292176], + [-38.12496585267484, -5.887658237377777], + [-38.11631423887446, -5.848033241914209], + [-38.118892896515305, -5.832881343158776], + [-38.111573793009654, -5.818703258668529], + [-38.0761841879724, -5.7811033055239465], + [-38.05862179254318, -5.754898853175701], + [-38.058604808386306, -5.754513404643755], + [-38.04703746573889, -5.73031045125872], + [-38.0752549787187, -5.723516718859765], + [-38.08719647716621, -5.730569712628876], + [-38.09013031226607, -5.720527250322637], + [-38.08287089501074, -5.698451117361427], + [-38.08290714096174, -5.6725898322005985], + [-38.07929747807306, -5.666171856066227], + [-38.05341271448676, -5.646152336921669], + [-38.03429896212822, -5.637201265147772], + [-38.01399353099429, -5.594446987445263], + [-37.99835698565314, -5.585366623755226], + [-37.99952513721283, -5.575440229878438], + [-37.99780895721586, -5.567987935361121], + [-37.990066785948635, -5.5558472984093275], + [-37.94808641977443, -5.534694623820088], + [-37.93266442783259, -5.503157818129136], + [-37.917520589525054, -5.505411005308846], + [-37.90227601319306, -5.500712089753435], + [-37.902017095816106, -5.497563446258841], + [-37.90156506970995, -5.495523833679272], + [-37.90070758509731, -5.491652982197052], + [-37.892255736669675, -5.480810125163666], + [-37.88890783612069, -5.449404749580821], + [-37.88125828689733, -5.436235070250659], + [-37.87099476692628, -5.4203599347123745], + [-37.86051228650493, -5.406736913475732], + [-37.85934660426134, -5.395785889684142], + [-37.863766811669805, -5.374142131183596], + [-37.847501330178666, -5.340075050412322], + [-37.83574348394789, -5.3354386961964275], + [-37.81283346100852, -5.316621549838061], + [-37.786901090183314, -5.2972218890110305], + [-37.78314131149134, -5.294868305510183], + [-37.78263715823127, -5.286789854575786], + [-37.79189037433128, -5.268824323661607], + [-37.79048973009638, -5.25500928235548], + [-37.783551718124286, -5.242882217698], + [-37.78345801715851, -5.229097835612973], + [-37.78819348294398, -5.219250886045457], + [-37.79006042531679, -5.210993832038651], + [-37.77634149446168, -5.187173659283501], + [-37.764987425153635, -5.139670507439645], + [-37.74032327147491, -5.110472254182241], + [-37.73345460299879, -5.10069607793569], + [-37.73165943925618, -5.0845819770581615], + [-37.72402215662457, -5.069759032227756], + [-37.71052384555665, -5.06120538868428], + [-37.67765305446939, -5.054141377155115], + [-37.67717423325231, -5.0525902078727505], + [-37.66029706046638, -4.997961983682455], + [-37.651299581150674, -4.965662987716628], + [-37.640371604387504, -4.926461776647839], + [-37.59120196464764, -4.915329036553487], + [-37.53984406680555, -4.903355737850012], + [-37.539387848693636, -4.903243305588827], + [-37.46711619822077, -4.8859832686720885], + [-37.46582984998262, -4.88567406252274], + [-37.44648100375145, -4.881020115324417], + [-37.35688174713315, -4.858098182429185], + [-37.2530194687015, -4.831772356973367], + [-37.245233922119596, -4.843633952115516], + [-37.221672566895634, -4.881799913540211], + [-37.2105197834165, -4.894888096378651], + [-37.18147894348827, -4.917024513229342], + [-37.16716857226701, -4.932189453008454], + [-37.15868455111699, -4.934890918580461], + [-37.1335464816898, -4.938387487412605], + [-37.12045308833816, -4.932428696492994], + [-37.109617065789436, -4.925538786630045], + [-37.09805133923199, -4.924971255524241], + [-37.083564586992956, -4.932606316821265], + [-37.08245087079913, -4.9297957758854185], + [-37.05755322682586, -4.9463796211442075], + [-37.0388301727147, -4.951117076125155], + [-37.0299312007775, -4.94896518460674], + [-36.9993746690148, -4.931206520766751], + [-36.98123512170276, -4.934068013634375], + [-36.972103484056014, -4.93137389524498], + [-36.964814979606196, -4.927560789584883], + [-36.96259384534943, -4.919771011572855], + [-36.9216983097705, -4.947819423992554], + [-36.90134982479311, -4.950946457588027], + [-36.8816271916905, -4.94906081138905], + [-36.85511958790448, -4.972046669809435], + [-36.81823695608293, -5.019442718254492], + [-36.799411500937055, -5.038810498487779], + [-36.75014011632317, -5.059200546223351], + [-36.73266320601996, -5.059835173509056], + [-36.735507515075014, -5.064327971261115], + [-36.72307759305657, -5.075412070953648], + [-36.71245705923464, -5.073358658108681], + [-36.70865543293031, -5.065393640446368], + [-36.70420621306301, -5.065226273214592], + [-36.700795314960324, -5.086155201085812], + [-36.69156578353168, -5.093343185969822], + [-36.688766107593715, -5.091911992048328], + [-36.66646947125387, -5.085550088048587], + [-36.62841027977709, -5.088805066037932], + [-36.61970263313215, -5.076231925736684], + [-36.60694460157393, -5.082136229631599], + [-36.600842937193036, -5.080714594234995], + [-36.5960670854992, -5.075095881611918], + [-36.58824091784984, -5.08018640079369], + [-36.55887002728336, -5.083972611328982], + [-36.55478077992859, -5.080808840001191], + [-36.527050451134706, -5.077813864446562], + [-36.51148480225077, -5.064546315434821], + [-36.5018129000157, -5.061622231093132], + [-36.437667645138774, -5.06836930028831], + [-36.40597558040907, -5.078791600356053], + [-36.36949606257643, -5.090743294136631], + [-36.35031396014555, -5.0875347482261155], + [-36.34476543440143, -5.08234060960774], + [-36.32718532879924, -5.088385527314835], + [-36.30948692916571, -5.099366844288693], + [-36.30846998223115, -5.102916795256883], + [-36.28985743167767, -5.087886271173724], + [-36.27705215586962, -5.090210236135831], + [-36.27364172403998, -5.089354850787365], + [-36.243745234792364, -5.0958235529449025], + [-36.19243944451022, -5.094744093337454], + [-36.13769016387433, -5.093439861673988], + [-36.12202955068156, -5.089531270658459], + [-36.0992751534309, -5.076445283676961], + [-36.07833981465246, -5.065505500963089], + [-36.058663288920165, -5.06296160776058], + [-36.03663680818171, -5.050940966306453], + [-36.013268513651106, -5.0489919017758735], + [-36.00024736968636, -5.044551058621936], + [-35.984561034733005, -5.046428097298983], + [-35.98050595573644, -5.041616712786523], + [-35.949568390831125, -5.0441896667485855], + [-35.90830369013412, -5.059513090632325], + [-35.88262903241092, -5.067744730906962], + [-35.85254573026789, -5.068803169259654], + [-35.82900485087573, -5.074976770347985], + [-35.802820345275535, -5.073257702063168], + [-35.79084267518744, -5.077038310883469], + [-35.784092434151226, -5.075799499861318], + [-35.7577729026732, -5.089178242916404], + [-35.71786867101653, -5.097361015162384], + [-35.708504658657446, -5.103984814671284], + [-35.69751313635487, -5.1024989304399915], + [-35.645841031076465, -5.117550198844226], + [-35.6355079335402, -5.121605417810518], + [-35.627497768659374, -5.120321465772497], + [-35.61886076432695, -5.1186031005526464], + [-35.61707372545072, -5.112235341413949], + [-35.57130086564837, -5.1349248424656775], + [-35.56744698391666, -5.136148049443639], + [-35.5319830085628, -5.144379201627716], + [-35.50997190947919, -5.155201059896928], + [-35.4881240424088, -5.159542673326935], + [-35.46552685690178, -5.185924690805652], + [-35.46053787956539, -5.196872747089473], + [-35.45113310164162, -5.203252829835448], + [-35.41819409949613, -5.221818142093067], + [-35.396213864750784, -5.246506154691842], + [-35.38470480855827, -5.268163171226604], + [-35.383574132315566, -5.269944373357051], + [-35.37989269031132, -5.274103971250532], + [-35.36906243710966, -5.293569061117056], + [-35.35957110649117, -5.344352359391557], + [-35.354088092137395, -5.358643849274053], + [-35.339663219626345, -5.376098077301028], + [-35.326086564194064, -5.381346479101772], + [-35.32123571852883, -5.377198259427742], + [-35.310149118768464, -5.391835075779208], + [-35.310884489824765, -5.408346944539225], + [-35.29850229246355, -5.426810460209902], + [-35.29333732892572, -5.427612193204004], + [-35.28932954834359, -5.459453038966574], + [-35.27309216427577, -5.479367459492682], + [-35.26596495081463, -5.482952135544127], + [-35.26114939126779, -5.480848955449852], + [-35.26057866821052, -5.500273866974186], + [-35.258491582804666, -5.515004210680412], + [-35.25460348927621, -5.519895973119455], + [-35.24951313580464, -5.5284806029093145], + [-35.249587797014165, -5.543148624118704], + [-35.2447453771302, -5.557900314049558], + [-35.23783368549547, -5.567730390973933], + [-35.22701325259284, -5.580922708610211], + [-35.22519386310672, -5.596703865543924], + [-35.22779085884573, -5.612289651968607], + [-35.22665510463557, -5.620585099432013], + [-35.22225753739019, -5.6295141116647], + [-35.21689221257399, -5.630573705112427], + [-35.2190566471064, -5.668193646107042], + [-35.21439471794422, -5.681867890708737], + [-35.20547508000251, -5.693060287132534], + [-35.197989201729456, -5.693143715001353], + [-35.19321704694347, -5.69851871978481], + [-35.20485984610794, -5.740917045943678], + [-35.20347395962757, -5.757581519003192], + [-35.19657601565484, -5.7597879189058805], + [-35.19385672422277, -5.781515327338532], + [-35.186301162007915, -5.792954277426394], + [-35.183467330527485, -5.792899317784548], + [-35.180951790336714, -5.801861193209317], + [-35.17994327331584, -5.868819411787979], + [-35.17141045701626, -5.882391648926002], + [-35.16688260676726, -5.88449612833119], + [-35.16163566392589, -5.880274843882045], + [-35.154714569322344, -5.883900205132113], + [-35.155184067079325, -5.897977770145457], + [-35.15757674094294, -5.923496434014386], + [-35.15427271620131, -5.928237931006214], + [-35.15195294553795, -5.952805901272135], + [-35.145204224300954, -5.9644101963834535], + [-35.12898656647362, -5.967801688049147], + [-35.12191059205985, -5.983223267607061], + [-35.11393512874522, -5.9882023568213985], + [-35.113912119793156, -5.994733699285637], + [-35.10709536792856, -6.006349622836454], + [-35.111052629860865, -6.041301001132488], + [-35.10752421798402, -6.054034951065744], + [-35.0977337783126, -6.05721588082884], + [-35.10182302553933, -6.075665139557513], + [-35.09990227457651, -6.084782013706213], + [-35.098979164853304, -6.139060064156049], + [-35.094777116123645, -6.181757944801736], + [-35.09164580576234, -6.178821564873391], + [-35.08369862829471, -6.189723022471261], + [-35.07831186378064, -6.211769711618367], + [-35.07233932499439, -6.22186152215157], + [-35.0672211523744, -6.221072165606584], + [-35.060785419291264, -6.22730169299882], + [-35.04230021602514, -6.227643491732671], + [-35.03735260437613, -6.2360693645892535], + [-35.035008034196274, -6.286227860007106], + [-35.030882524115796, -6.3086255976523145], + [-35.037227749874575, -6.3145398900400656], + [-35.03030252214122, -6.344463570018925], + [-35.02238819086032, -6.362599755251792], + [-35.01820231709206, -6.368660044737027], + [-35.0121197677832, -6.370916352987104], + [-35.00790782904951, -6.367092035473264], + [-34.99954538376479, -6.370859193950247], + [-34.99214877656934, -6.373368491443588], + [-34.98036019874421, -6.403525475098787], + [-34.97267569605236, -6.437768821196787], + [-34.97417287330485, -6.44895832258063], + [-34.96859429513287, -6.48730848002588], + [-34.968838313489194, -6.490173775689415] + ] + ] + }, + "RS": { + "name": "Rio Grande do Sul", + "coordinates": [ + [ + [-49.71169880321688, -29.325787538199826], + [-49.72870703193036, -29.34857635295833], + [-49.73148448778979, -29.3586594033883], + [-49.75141584452723, -29.378839413020863], + [-49.80240630241062, -29.44354201245201], + [-49.923085609947094, -29.607043052967313], + [-49.927081891733025, -29.613366099303793], + [-49.9281482654352, -29.615053872823168], + [-49.92962030343173, -29.617238792986207], + [-49.930609834243334, -29.618707062126223], + [-49.9346295741045, -29.624672966384274], + [-49.94284456651694, -29.638416325005014], + [-49.95204261570116, -29.653802046744246], + [-49.958283591712174, -29.664238241051002], + [-49.9870628592663, -29.715283851328348], + [-50.01799555632702, -29.772247119278042], + [-50.04959306240736, -29.83264525672909], + [-50.06444878968338, -29.861796023891714], + [-50.07554985631196, -29.884395272791313], + [-50.117964068361715, -29.975879445678164], + [-50.14245044310723, -30.034231102086462], + [-50.15573106980737, -30.065554917302347], + [-50.168600951426875, -30.097567774918403], + [-50.211906299829614, -30.207389108636097], + [-50.22430602981598, -30.236341663160776], + [-50.236114427968126, -30.26727504023768], + [-50.242657627656946, -30.281728018388105], + [-50.25086117000686, -30.303668666301466], + [-50.261916544170795, -30.33151513743185], + [-50.2828807080904, -30.389181205764057], + [-50.28880325073031, -30.405463086767412], + [-50.30884113201057, -30.455835211171888], + [-50.33348131706032, -30.500725040620512], + [-50.36959871971334, -30.557740754554693], + [-50.45991848209508, -30.675585635101445], + [-50.47446637245887, -30.695111036553897], + [-50.48331226316498, -30.708175334362217], + [-50.562627635463905, -30.82496208866387], + [-50.66711469102207, -30.96160244581275], + [-50.67319305964015, -30.969935010335263], + [-50.68166558174156, -30.982105014910424], + [-50.71849006562125, -31.0377648251738], + [-50.741283572485415, -31.071967206506], + [-50.769316676569964, -31.110006239221963], + [-50.77225680024392, -31.113675022721687], + [-50.80255669581355, -31.14869293804971], + [-50.814758860605544, -31.16149139534238], + [-50.84784371373076, -31.19579356947192], + [-50.879219028052525, -31.227910600644872], + [-50.88748332972761, -31.23636581202227], + [-50.93133792863636, -31.275420700198193], + [-50.93818143328553, -31.280896238330424], + [-50.94639806435875, -31.287471233849597], + [-50.94916452413192, -31.28968387634273], + [-51.04255432234884, -31.36450419528046], + [-51.09868421239832, -31.417905149040333], + [-51.173870697270935, -31.472731228893483], + [-51.19179079930687, -31.49598108142202], + [-51.22196748288221, -31.53683283645552], + [-51.250353541039324, -31.56723029614232], + [-51.32365531565644, -31.621597321970366], + [-51.402211222610276, -31.678833627146396], + [-51.42274961537331, -31.694048229830535], + [-51.47040397443039, -31.726307004765065], + [-51.52973044732172, -31.75927239213201], + [-51.627216484437945, -31.812970101070515], + [-51.718242222200395, -31.85509338140894], + [-51.817770800735474, -31.91082486055721], + [-51.88510177628002, -31.958102882400645], + [-51.92029239619822, -31.987580852984937], + [-51.97914578699415, -32.0437111675831], + [-52.074980859472994, -32.14273907363139], + [-52.081687708135284, -32.15738242213362], + [-52.07648922351818, -32.18245742557233], + [-52.083064504000795, -32.16069674164215], + [-52.0787965519495, -32.13776443102647], + [-52.082198240084466, -32.13284920543277], + [-52.093293222870344, -32.12876130415404], + [-52.08548761289955, -32.12740655672983], + [-52.08400451365964, -32.12026974793428], + [-52.06379865175457, -32.09668368374314], + [-52.05794207381693, -32.079975229388936], + [-52.049071869559434, -32.07324844542426], + [-52.04012792416197, -32.03685524380428], + [-52.044645232667044, -32.01402653819355], + [-52.042696828142994, -32.007330170251734], + [-52.054824998352885, -31.982487628423073], + [-52.048462709022004, -31.974844559723863], + [-52.03458013465812, -31.971198052006617], + [-52.022958013262944, -31.969902344898813], + [-52.01318426614241, -31.95776952549534], + [-52.01386428344795, -31.93929674090534], + [-52.0205836834339, -31.924565055004674], + [-52.02684916091451, -31.915535678967277], + [-52.04603050171331, -31.903943568071696], + [-52.04879995778214, -31.89506116497079], + [-52.05452190363207, -31.890982551858137], + [-52.06222037932682, -31.883614093384793], + [-52.07369093585149, -31.878339062303755], + [-52.092141422399834, -31.86132244698611], + [-52.090605218516636, -31.84966133431571], + [-52.09570364383692, -31.839953383664966], + [-52.09856352010703, -31.84043433849292], + [-52.0983171026689, -31.83580985264064], + [-52.08197048577257, -31.826797195070593], + [-52.10259219911932, -31.8021727827985], + [-52.10671716679908, -31.802039433932226], + [-52.10791306272455, -31.793783877241864], + [-52.111015231628684, -31.793189774627283], + [-52.09402024346165, -31.793119579321317], + [-52.1013561399634, -31.801517809826922], + [-52.080699147448556, -31.826102718160676], + [-52.0625650725243, -31.816192422126015], + [-52.04844295230111, -31.81397693301248], + [-52.03404235529179, -31.814665082389855], + [-52.004074250760254, -31.818985354253474], + [-51.94746433434986, -31.84877328470839], + [-51.930636477951296, -31.85919972111386], + [-51.908472423825174, -31.869010564683546], + [-51.868813648445304, -31.87130664471129], + [-51.852258950207585, -31.86747333931647], + [-51.83226306864803, -31.856735645164736], + [-51.808330582710546, -31.838648989320525], + [-51.80715288988341, -31.830142436236706], + [-51.81325329866192, -31.817645522311796], + [-51.80602537458927, -31.820102297573676], + [-51.8036803031158, -31.815363890901764], + [-51.79180458634891, -31.814870870659874], + [-51.78717910970445, -31.806216868531166], + [-51.795751611625654, -31.80613836574871], + [-51.79474233748971, -31.81202782651084], + [-51.7977616490144, -31.813262015957697], + [-51.81317368061206, -31.80892254517264], + [-51.8101906093209, -31.813490822952694], + [-51.81369988990296, -31.81671557939972], + [-51.829595170189435, -31.80633928310931], + [-51.859866815130744, -31.805329842539116], + [-51.86532549279477, -31.799315161649943], + [-51.854482375101185, -31.801110968815866], + [-51.83844490102674, -31.798525446379788], + [-51.797909190071266, -31.787542474897514], + [-51.74333623845173, -31.78847873800027], + [-51.71732955941989, -31.785363033284458], + [-51.693368250177734, -31.78248827385489], + [-51.66467690955893, -31.770895837762655], + [-51.59344369555794, -31.705826340384803], + [-51.54984106137033, -31.652442046320946], + [-51.51188523177563, -31.58924405696714], + [-51.491311217931866, -31.56923464157833], + [-51.47437473698007, -31.55946454864547], + [-51.47034191337814, -31.58313522185634], + [-51.46347610762892, -31.59068516304805], + [-51.47062095976052, -31.587588634600255], + [-51.4701168942846, -31.589666481368074], + [-51.44816297299031, -31.606715006199366], + [-51.43931767949525, -31.619277572665858], + [-51.436324075276296, -31.624796692615615], + [-51.43687332580615, -31.616609807859312], + [-51.45532112984447, -31.59067993775504], + [-51.46508593721038, -31.564551729324165], + [-51.450428344086674, -31.539798825848198], + [-51.44888132347114, -31.52774499379699], + [-51.461409864933806, -31.54503121879804], + [-51.46516626969221, -31.559752947558586], + [-51.466553636476505, -31.55461585954204], + [-51.45933404560643, -31.52880484438128], + [-51.44302557094097, -31.495195675105386], + [-51.42863399370637, -31.48009172923313], + [-51.416327482521474, -31.473342649682735], + [-51.41601644855328, -31.49988831275225], + [-51.409978553683786, -31.512581572850277], + [-51.370863408132095, -31.529565330004743], + [-51.36072535778637, -31.529138493771864], + [-51.31758827608478, -31.512508840138672], + [-51.29310966038385, -31.493744147335974], + [-51.26413898573525, -31.480522120261764], + [-51.23830073371124, -31.458070497918932], + [-51.20346143552366, -31.41232399014672], + [-51.179320306161415, -31.363363012011057], + [-51.17248042536658, -31.339849070935514], + [-51.15914534732161, -31.281801024704052], + [-51.15769257323368, -31.257673430182273], + [-51.16174442827048, -31.209024514197917], + [-51.18027863954605, -31.134394591089624], + [-51.17734522644215, -31.082241255583963], + [-51.165489666245655, -31.06187315026235], + [-51.164349671568985, -31.06945256996175], + [-51.166423010981326, -31.068249630959627], + [-51.15606265091439, -31.081774786516878], + [-51.141263479743614, -31.091649087734137], + [-51.110750503272264, -31.099943693157826], + [-51.09119507514795, -31.093460276681704], + [-51.07388769130708, -31.079937341892002], + [-51.04851975388251, -31.06151663422967], + [-51.01020062254762, -31.049322516769628], + [-50.99494172079683, -31.048027230970913], + [-50.98054830201853, -31.040975374120457], + [-50.97238359996829, -31.03284952932709], + [-50.96711772990986, -31.019881613254597], + [-50.95456697887062, -31.003110466178875], + [-50.951434608569926, -30.959474022178842], + [-50.9567728542722, -30.941733850840404], + [-50.96675318352799, -30.896031762351267], + [-50.94151856049055, -30.903902825052405], + [-50.9112812654237, -30.905691601251682], + [-50.88233285264944, -30.891511888007383], + [-50.861756709488624, -30.870174305087883], + [-50.84633033674103, -30.858838666218066], + [-50.823392941343194, -30.852106161742793], + [-50.8193504317585, -30.84048728420725], + [-50.75376679180064, -30.81886093021824], + [-50.73656945434864, -30.800419824098213], + [-50.701977418958236, -30.74625092770511], + [-50.69010687427504, -30.70684811748164], + [-50.6822200897767, -30.648289564182264], + [-50.67953005927405, -30.609096521472452], + [-50.68641919616157, -30.500724707979384], + [-50.70050195235627, -30.424687334485405], + [-50.72476655841863, -30.383898517418437], + [-50.72948279333328, -30.368062261002795], + [-50.72191295243721, -30.36387722693511], + [-50.71752894220578, -30.35191135800984], + [-50.70844458772313, -30.353787722479815], + [-50.70557350178807, -30.34755588876869], + [-50.69909016389704, -30.345914359850045], + [-50.69891013231917, -30.350034216706305], + [-50.686686972835744, -30.356762679971037], + [-50.67961477786253, -30.36874284395364], + [-50.64873893836532, -30.39124738898783], + [-50.64786866736664, -30.39538991268183], + [-50.643430875597254, -30.39584386365279], + [-50.641222927623026, -30.392832761961674], + [-50.64478159812888, -30.388130209123528], + [-50.64120752124082, -30.386625243842104], + [-50.63458764205598, -30.393165957061008], + [-50.623983672698145, -30.392026465029627], + [-50.635287376202264, -30.387304026454157], + [-50.630171486876804, -30.38302191105403], + [-50.63790961587448, -30.378856179055973], + [-50.63210524819821, -30.374809712081923], + [-50.630572439046155, -30.367554604155035], + [-50.63560585472621, -30.340927806482224], + [-50.62860338318529, -30.328225230901374], + [-50.625055308997, -30.32833389541571], + [-50.62640867167894, -30.343614814398677], + [-50.6206522325522, -30.356697926030797], + [-50.59334732902555, -30.39409065756348], + [-50.593089029710484, -30.40026655989482], + [-50.60392752775067, -30.39952202283827], + [-50.611740560837774, -30.40519182939424], + [-50.61609560381768, -30.404257365745487], + [-50.62196642031716, -30.41208352676988], + [-50.633283403550784, -30.406108058453427], + [-50.65017318240825, -30.41349628413623], + [-50.65641961826433, -30.426182296828404], + [-50.65439622260929, -30.442886255498806], + [-50.64040472568529, -30.463321361356115], + [-50.61338955689151, -30.48393739375779], + [-50.59712774621948, -30.490810077528263], + [-50.59158183179625, -30.49009666341347], + [-50.582650713700176, -30.490059578262326], + [-50.57440955157866, -30.481399787207877], + [-50.57131570954526, -30.4709822190125], + [-50.57449070357494, -30.46424765442615], + [-50.56866070442985, -30.458345558875518], + [-50.56291220761384, -30.40961297687885], + [-50.56745602298433, -30.395636889079892], + [-50.55105948282484, -30.36635309541357], + [-50.55341449482519, -30.364045792604173], + [-50.5495679079793, -30.3638416600789], + [-50.54530551714323, -30.35590371501315], + [-50.546251710379934, -30.33114816031285], + [-50.5557534527362, -30.320037365002577], + [-50.54741244993271, -30.305878152625635], + [-50.543001060977446, -30.299846935046876], + [-50.543822104080164, -30.281878852836993], + [-50.53776848728593, -30.273790815737282], + [-50.54261518453394, -30.252259099637136], + [-50.549744297039155, -30.251634863708237], + [-50.54924647721393, -30.248898183074477], + [-50.56045759927352, -30.251605403674382], + [-50.57075495153696, -30.241083422717022], + [-50.57306614136683, -30.242951769820472], + [-50.59648080076564, -30.19486924119661], + [-50.60193480886905, -30.192157092167562], + [-50.59821631018373, -30.195940786260966], + [-50.61288601430048, -30.19993881636857], + [-50.62080693759817, -30.198331403193023], + [-50.644311238810694, -30.192168389007183], + [-50.65887632939619, -30.19984862081657], + [-50.668881084328426, -30.25480783238059], + [-50.6634708612527, -30.270306050930014], + [-50.65495477237729, -30.28139304863425], + [-50.65613048326486, -30.28590520849634], + [-50.6732326058678, -30.296566765245778], + [-50.70596589949378, -30.297110082978417], + [-50.721489109212335, -30.299241794683738], + [-50.736479588187734, -30.295595309539785], + [-50.75071951887633, -30.296632526610736], + [-50.76368431937297, -30.29132189217209], + [-50.772010058492604, -30.296543314951982], + [-50.77306398837847, -30.288595051653076], + [-50.77823399720741, -30.288758350885278], + [-50.78199676858668, -30.28469829918917], + [-50.788379956704105, -30.291210387252093], + [-50.794855868330146, -30.312274174595252], + [-50.79280801300245, -30.326309504655367], + [-50.788889151876454, -30.33329355696192], + [-50.78167526275129, -30.329043186724846], + [-50.78785647960626, -30.326690154188356], + [-50.786109938383234, -30.324874328895575], + [-50.776650936136384, -30.32716374003666], + [-50.773486869895756, -30.33212882035199], + [-50.77585492925811, -30.333896123136295], + [-50.79696723005647, -30.338307426161293], + [-50.844005122685346, -30.320682637907254], + [-50.90696889650543, -30.32321838601709], + [-50.90758383666385, -30.323344688099652], + [-50.91227734312136, -30.325227641136813], + [-50.922108659257276, -30.33209714945003], + [-50.930614739702065, -30.34639948712799], + [-50.93854128779368, -30.375024758461798], + [-50.939197568021214, -30.394058083055256], + [-50.931929188036776, -30.42554505043881], + [-50.92287103142507, -30.436156921640002], + [-50.90193356552467, -30.442884840424966], + [-50.930025184577346, -30.435696085551776], + [-50.973396349592605, -30.407542787184948], + [-51.01299336401687, -30.38958850780016], + [-51.038659696293124, -30.38601043303222], + [-51.042072593241016, -30.389737673408113], + [-51.05556570802031, -30.391906493414997], + [-51.059580523844716, -30.385510864978123], + [-51.04738762728815, -30.381422014484563], + [-51.04760592586097, -30.373056930152966], + [-51.042446443671096, -30.37235890626575], + [-51.04128235211237, -30.366300947335183], + [-51.04955653781827, -30.357595886689513], + [-51.068027163315605, -30.35820771280277], + [-51.068722819490304, -30.35494467210118], + [-51.0509721715228, -30.349154092528757], + [-51.04980462609295, -30.34451590401647], + [-51.039821038440834, -30.342861612415], + [-51.03471051757968, -30.336799907248285], + [-51.02966152603073, -30.327170569768555], + [-51.04023063723554, -30.325141926728516], + [-51.02577727442441, -30.321223828649146], + [-51.01978990433166, -30.29643477144808], + [-51.023247200320874, -30.286190844423803], + [-51.02322669423208, -30.284047620257706], + [-51.03074979444336, -30.274401471995617], + [-51.04271435519879, -30.268600704043504], + [-51.04840975780329, -30.267851085594152], + [-51.056664833354546, -30.27105849239099], + [-51.059198248222, -30.276636881877575], + [-51.064705938910414, -30.276161813765135], + [-51.06929138113955, -30.27121170009381], + [-51.06333036824557, -30.26374115070172], + [-51.067826634016775, -30.250721753941736], + [-51.08644525371906, -30.241455872428062], + [-51.099396500753066, -30.243302624929747], + [-51.10263320553058, -30.247539083657923], + [-51.10579607977263, -30.24363517616715], + [-51.106114419016855, -30.243589015531185], + [-51.098714946072384, -30.257575235425936], + [-51.100787012465226, -30.259398822588118], + [-51.10553262863944, -30.25984357852188], + [-51.10575714183293, -30.252368868213704], + [-51.11960825977532, -30.24634366708353], + [-51.132566111949494, -30.252867037790985], + [-51.136820010368346, -30.26268994827614], + [-51.13365549580352, -30.269852609048367], + [-51.158044800080006, -30.262455993440295], + [-51.1639844317035, -30.26650354399965], + [-51.16954618569321, -30.264573754666294], + [-51.15907598736662, -30.261877945920737], + [-51.15170467052578, -30.24641031983282], + [-51.155855492667676, -30.240538746773584], + [-51.187446659185284, -30.236342134578955], + [-51.192643661773246, -30.24248292186941], + [-51.1920302673531, -30.23503760439956], + [-51.18345345149696, -30.233230000886905], + [-51.177460785084534, -30.21987761867443], + [-51.18256446474809, -30.213356639077286], + [-51.19296656100982, -30.214160237083988], + [-51.19939937934738, -30.210840368321556], + [-51.19520704657921, -30.207663957146927], + [-51.1941959595747, -30.19991261373904], + [-51.19818962205075, -30.19436067201495], + [-51.22489981751884, -30.188153173307526], + [-51.23984869543752, -30.19067993307682], + [-51.2486705628455, -30.1862690740557], + [-51.24275108048364, -30.182361033635996], + [-51.23253287198144, -30.18296367898743], + [-51.22661809943983, -30.17680388434628], + [-51.22640186648836, -30.1692506712566], + [-51.23312533905269, -30.16388858613287], + [-51.22700328353273, -30.15878920130721], + [-51.22580295118575, -30.14484665204228], + [-51.23088718538964, -30.13756302290427], + [-51.244574868798345, -30.1318239302784], + [-51.245134723989025, -30.126842844745028], + [-51.26199780659234, -30.12172282819083], + [-51.288346537081495, -30.122684825661096], + [-51.28860538947726, -30.12039205313774], + [-51.261610256098585, -30.11936797950608], + [-51.25864681722086, -30.11166994513104], + [-51.26288492764874, -30.11214234039876], + [-51.26290823939416, -30.109302892130223], + [-51.25841361988492, -30.110681474117342], + [-51.266693072438116, -30.102715458408635], + [-51.261253952763965, -30.096813292180737], + [-51.250393884356065, -30.095175667075694], + [-51.247115914155074, -30.082367091908388], + [-51.249544314207526, -30.081075473694963], + [-51.23150718385063, -30.058435726880717], + [-51.23031148356569, -30.043671857073136], + [-51.242521446569135, -30.043508111095438], + [-51.24215063147309, -30.03536911887527], + [-51.250704982738355, -30.034975565884587], + [-51.25554670121098, -30.046196574796507], + [-51.26661642936464, -30.05711331046526], + [-51.292341908787975, -30.064793877639442], + [-51.29502158232349, -30.054035409147694], + [-51.289750227468, -30.05734573782473], + [-51.2645974249282, -30.052866416341438], + [-51.260160357501135, -30.034435223220576], + [-51.26942748175534, -30.035082176801406], + [-51.27188544837763, -30.038899931750127], + [-51.27962422847003, -30.03776723846834], + [-51.269021069695015, -30.028348883866034], + [-51.26814470092852, -30.016407338968683], + [-51.277632745798364, -30.010845430444036], + [-51.28260143319217, -30.021859011535845], + [-51.28937619995909, -30.01181975114025], + [-51.29026844213718, -30.002152359104606], + [-51.29575820422068, -30.000383562246725], + [-51.30227223155746, -30.00982877618059], + [-51.30417902390015, -30.027447952457763], + [-51.302055883954196, -30.0356909667084], + [-51.297441504206624, -30.035821704209802], + [-51.2923629468687, -30.04752358584568], + [-51.300226100668056, -30.041707612110557], + [-51.301453046513224, -30.046143341698958], + [-51.29919791429428, -30.051082852884107], + [-51.3025441316188, -30.053986080086965], + [-51.309752786212584, -30.063507485898175], + [-51.31446959665046, -30.082707636951266], + [-51.309070499983335, -30.085451691015415], + [-51.30683331557859, -30.094219784836582], + [-51.31365405673014, -30.111858208118225], + [-51.314204071649996, -30.128498271301687], + [-51.30608889600639, -30.135596160726564], + [-51.310912072965166, -30.136205275131633], + [-51.321428986320605, -30.151005072759393], + [-51.32411695430697, -30.170609811117608], + [-51.31942418497607, -30.175322200663963], + [-51.31002084592406, -30.176180172021162], + [-51.31072995887675, -30.182494019451116], + [-51.307431613067195, -30.18068995916272], + [-51.31602108743669, -30.191206089452372], + [-51.31962752537105, -30.213006925424942], + [-51.32531392571154, -30.214874771751106], + [-51.32859328503013, -30.226578285085758], + [-51.325740117832, -30.23490118698256], + [-51.319407505427364, -30.234900790721046], + [-51.31675658778954, -30.23031255178262], + [-51.313314640529846, -30.240066499166133], + [-51.29232168479918, -30.231304137727818], + [-51.29868996982093, -30.240021108588078], + [-51.2948409355323, -30.246876572479113], + [-51.28733992176289, -30.250787594555216], + [-51.27318842631906, -30.249694267961566], + [-51.287527689705506, -30.258663904898054], + [-51.29184559587727, -30.254454560587895], + [-51.29794258094057, -30.25957596983399], + [-51.29961764175888, -30.283771482673874], + [-51.29362832092266, -30.304009565266178], + [-51.275913972068366, -30.30839789218438], + [-51.25718391539548, -30.30569618365638], + [-51.246282927539546, -30.31504712342821], + [-51.25000255367643, -30.322583752849635], + [-51.2472037451263, -30.32845343158956], + [-51.241226707970426, -30.32553281304193], + [-51.23376844675894, -30.310381083891947], + [-51.210710580554, -30.29784656815089], + [-51.20734304991824, -30.340742308580026], + [-51.1915266564906, -30.37727297042735], + [-51.18098858296588, -30.38589809118192], + [-51.155853566974876, -30.37641533026419], + [-51.12857526598362, -30.35917766992207], + [-51.09770288423254, -30.357494766290884], + [-51.094644270404295, -30.36465580120849], + [-51.095282543340055, -30.381561811863474], + [-51.104160280044624, -30.376267842918253], + [-51.12204908535021, -30.396843411083864], + [-51.11921423283786, -30.40855250095711], + [-51.126205682112236, -30.415518948462115], + [-51.12536942599558, -30.428481886033058], + [-51.131899530148786, -30.435224285144198], + [-51.15257843065956, -30.50019259182942], + [-51.15707331233989, -30.498843748829955], + [-51.15625441046119, -30.493112282261375], + [-51.148634021853454, -30.473421607569506], + [-51.14340389561504, -30.47094805392593], + [-51.13574222309943, -30.43671222381862], + [-51.143896947498725, -30.432461803378285], + [-51.14193495941228, -30.426472677180925], + [-51.15095777999656, -30.415493087789365], + [-51.167510035668975, -30.410097806995626], + [-51.197866540998305, -30.40795854179995], + [-51.22912490857672, -30.423688639593625], + [-51.244900792779426, -30.442717257721856], + [-51.25006058399872, -30.460333649239363], + [-51.25737127535084, -30.46527636760749], + [-51.26297885971542, -30.47560388637507], + [-51.298400623820385, -30.559013804500097], + [-51.30333613980097, -30.588475350126604], + [-51.30221768806554, -30.634374201917115], + [-51.29308769995684, -30.707601486685242], + [-51.294129401491645, -30.751483559319592], + [-51.281131116865424, -30.8015933323539], + [-51.28242314804571, -30.812464553682506], + [-51.29033859539735, -30.817446937587146], + [-51.298638488646375, -30.81627058942832], + [-51.28510776715758, -30.807182107914247], + [-51.287286098873174, -30.79743918747952], + [-51.33119606165938, -30.778406779147314], + [-51.30547453149588, -30.784243408022608], + [-51.293943520900775, -30.770817047630512], + [-51.29964513755674, -30.731277415510675], + [-51.30647000399816, -30.715419930162575], + [-51.31658697630964, -30.704073608644688], + [-51.31394547280765, -30.688428990371097], + [-51.31941997811388, -30.67982426434297], + [-51.31657798161852, -30.676484070852545], + [-51.317651918903394, -30.648089177573578], + [-51.33460023589434, -30.633714623914777], + [-51.34787487009152, -30.631439060592474], + [-51.36408474333236, -30.63316679099142], + [-51.37701792791246, -30.640301619916745], + [-51.386952046775065, -30.654948958495165], + [-51.38566309965038, -30.66216071261508], + [-51.39106159289363, -30.66866476515526], + [-51.40021177870192, -30.71299173927397], + [-51.40581829716374, -30.756676678736934], + [-51.40426498446505, -30.78285447863284], + [-51.39056821205789, -30.840219472152896], + [-51.38170387450443, -30.860867815287136], + [-51.36899850761549, -30.874280186499753], + [-51.390072477829875, -30.879819185642084], + [-51.44504767732383, -30.871052643197856], + [-51.44767688895956, -30.87354858736873], + [-51.47665457946367, -30.88929420014772], + [-51.483931726437405, -30.897043193645114], + [-51.4966224133148, -30.91532139554164], + [-51.49992446350976, -30.929976107196108], + [-51.4999841069751, -30.951923020984584], + [-51.49976604994571, -30.972339973806672], + [-51.4857052725544, -31.02620882432544], + [-51.459995933829546, -31.075168369830756], + [-51.44941153657208, -31.085212631468618], + [-51.44057507546681, -31.087733164713292], + [-51.461504575668464, -31.096599500086246], + [-51.54049197543778, -31.112731651673247], + [-51.55447674026026, -31.113995706217136], + [-51.56726067815641, -31.128552553642013], + [-51.6019528988875, -31.131667604013256], + [-51.61797862648416, -31.13948393706304], + [-51.628654779615964, -31.15287993581247], + [-51.63941341503656, -31.180656788693224], + [-51.643003767777195, -31.202594794746606], + [-51.64255824514136, -31.226002295491874], + [-51.634446113241545, -31.255412194680247], + [-51.628273107877305, -31.265377063528078], + [-51.61670841440204, -31.26761363749885], + [-51.66421411177818, -31.27104152478544], + [-51.70665982999896, -31.2655469803038], + [-51.72055565482028, -31.269198520906677], + [-51.73745552261029, -31.280757992646972], + [-51.74908285587686, -31.277236760193485], + [-51.74582476695476, -31.28244317835799], + [-51.75314838712246, -31.27986392631141], + [-51.75713600121121, -31.286057236370187], + [-51.767545992692945, -31.282617668762597], + [-51.76877388605383, -31.27829236672288], + [-51.79046372994364, -31.273193407897423], + [-51.811730441667834, -31.28567582839203], + [-51.82676348952197, -31.302773149074365], + [-51.83391884181406, -31.306322848607525], + [-51.84392363496061, -31.323174729440748], + [-51.8577261546622, -31.331762857568105], + [-51.855236932705374, -31.33628440205675], + [-51.86022895036373, -31.331553038928686], + [-51.85746449134587, -31.315990022266142], + [-51.87245936603318, -31.300255229376436], + [-51.867110876545276, -31.296525771024672], + [-51.869989790688976, -31.29477748708611], + [-51.87612103503332, -31.29845665533124], + [-51.87502787169463, -31.308966002789894], + [-51.88270644505687, -31.31491643246596], + [-51.87881461079436, -31.324378821704535], + [-51.892076156590235, -31.31560882767282], + [-51.91945086960754, -31.31069224793229], + [-51.931817775833146, -31.32100750683396], + [-51.93035822138671, -31.328307125342718], + [-51.92143387574786, -31.327796002687617], + [-51.92297711898198, -31.331789088154057], + [-51.948631937460306, -31.3392487994721], + [-51.960271146737114, -31.353199699910203], + [-51.96240934303843, -31.369953776978885], + [-51.95179497621751, -31.37538667159738], + [-51.96814608686334, -31.378079315264728], + [-51.98244991336527, -31.38598260253914], + [-51.99367938931614, -31.413494931033508], + [-52.010224515472665, -31.500868014523594], + [-52.01792344699142, -31.540264706105326], + [-52.01137884679074, -31.58557839675945], + [-52.01344040272774, -31.597126077646102], + [-52.00992164108109, -31.597567222817005], + [-52.0100350518134, -31.61408500460186], + [-52.03064099591383, -31.692271530565336], + [-52.036015107012915, -31.69571472746476], + [-52.05720802350996, -31.683131533118484], + [-52.05886373909712, -31.678942512925587], + [-52.066439516367666, -31.681623579496918], + [-52.069605786811756, -31.67704974981369], + [-52.076891022442474, -31.681909563914825], + [-52.104132965812866, -31.684589384454487], + [-52.14989239538994, -31.69827285869943], + [-52.160191788739084, -31.705029131618993], + [-52.20089881840882, -31.72864543283148], + [-52.22575617213011, -31.75182476861646], + [-52.226697087129054, -31.767858543778416], + [-52.21897672827414, -31.78342702832716], + [-52.223180987460026, -31.78897412370777], + [-52.215507868285094, -31.799261084828306], + [-52.213410434756916, -31.80979631151046], + [-52.217086980029734, -31.81107319723519], + [-52.21931999239769, -31.804351984156362], + [-52.22344833314342, -31.813305356480775], + [-52.22939248095741, -31.806471590456603], + [-52.23049234151914, -31.809001594509397], + [-52.236140591441114, -31.804913428362447], + [-52.222698285112294, -31.819541525088724], + [-52.223000461222874, -31.84330059362926], + [-52.22669604126316, -31.848406793917928], + [-52.23268278526405, -31.840891899263763], + [-52.24044756356071, -31.838393740194842], + [-52.25343108975723, -31.842406453665582], + [-52.25681615759447, -31.84927659883041], + [-52.25005182201545, -31.875368582828738], + [-52.2344725616574, -31.894612534436327], + [-52.22893652431847, -31.89552192300765], + [-52.22855222751287, -31.884285703371702], + [-52.23625002501857, -31.883172795271285], + [-52.23821370861805, -31.87969351831391], + [-52.232156653170094, -31.873838919032973], + [-52.22140778593651, -31.87243575140886], + [-52.19649449818786, -31.896667098013864], + [-52.17369255847944, -31.908468462413218], + [-52.14732326359454, -31.915505353822503], + [-52.13300870784057, -31.92365565869786], + [-52.126937222065735, -31.93315137594322], + [-52.11290853937556, -31.943026483192085], + [-52.113094758058416, -31.95585735190482], + [-52.115031946510406, -31.947719338989863], + [-52.121753588712046, -31.94490400613755], + [-52.134226491594724, -31.95085186000161], + [-52.144215778762465, -31.951438207450284], + [-52.142273809523104, -31.936126505458603], + [-52.14541356839982, -31.928515831924628], + [-52.150655004514775, -31.928202734235917], + [-52.15551415769928, -31.933791295309675], + [-52.14832299506249, -31.946981052543908], + [-52.15049434525466, -31.950641703487985], + [-52.16697608860311, -31.944076112759717], + [-52.17504041563131, -31.953343718153477], + [-52.185356002396674, -31.950647810089297], + [-52.189232917411374, -31.95739411430636], + [-52.187521322870865, -31.96363418701588], + [-52.20330550283245, -31.96342663894719], + [-52.20743297833944, -31.96635576299665], + [-52.21862103872266, -31.959923204034908], + [-52.223300445451656, -31.972444812604817], + [-52.2393893955141, -31.985161999445857], + [-52.238347809329326, -31.988830716709987], + [-52.23414911102178, -32.016462321848394], + [-52.24381674439079, -32.026814693931364], + [-52.24822136505873, -32.05165054385342], + [-52.226267181759994, -32.03572017116498], + [-52.21235588070617, -32.03579532286733], + [-52.20149592725044, -32.040157077681606], + [-52.19366983124993, -32.05885623580383], + [-52.208439964859046, -32.06032629800592], + [-52.21442574994748, -32.07222554955038], + [-52.225980404851725, -32.06825749388783], + [-52.23284280789982, -32.070689458561354], + [-52.22938917411495, -32.07396012042848], + [-52.23149840679904, -32.076093952257075], + [-52.23809736353712, -32.078767209775826], + [-52.230817903896565, -32.08145089289984], + [-52.227922097866845, -32.0847202705767], + [-52.21714697068683, -32.08455830177323], + [-52.208009488648315, -32.07110444448259], + [-52.20308422368138, -32.070173668870105], + [-52.20439705199835, -32.07519082565636], + [-52.17287210107146, -32.05609318182891], + [-52.164081800981705, -32.05604011983895], + [-52.13621864231298, -32.04590346437881], + [-52.11817938184955, -32.03559681560649], + [-52.1105332605433, -32.02436641342924], + [-52.112630486941214, -32.01750399803461], + [-52.10644463024323, -32.0151478996125], + [-52.098591175902435, -32.02194569220573], + [-52.09517199038039, -32.01819243884171], + [-52.09882055569481, -32.00427599851496], + [-52.13174872009154, -32.01529675826208], + [-52.15426347031947, -32.02647449620665], + [-52.18127122417829, -32.03046298147584], + [-52.20152723938605, -32.023930182143914], + [-52.20580789461546, -32.01022394004992], + [-52.19450496444553, -32.006220886759834], + [-52.19246985496243, -31.99811068338746], + [-52.196082977271026, -31.992447613522955], + [-52.18565702230449, -31.981494862139897], + [-52.175568250869134, -31.979237761798487], + [-52.163149176887565, -31.983017662916712], + [-52.14863089622808, -31.98082318717886], + [-52.13907698903303, -31.983410859823557], + [-52.1229384244431, -31.980622582315092], + [-52.12229605653651, -31.972206485289572], + [-52.136442129307774, -31.97240860851021], + [-52.14032356141366, -31.966885439028776], + [-52.13467899490824, -31.963268316995084], + [-52.14950195286845, -31.957242414421163], + [-52.12820460551204, -31.95864785180427], + [-52.129572842025915, -31.964477999658072], + [-52.135804455737166, -31.967103175983187], + [-52.134547215365785, -31.970883202180726], + [-52.12019381943659, -31.96845714144774], + [-52.11964592638959, -31.977996157364906], + [-52.11310044105329, -31.978078453950154], + [-52.09613250326706, -31.99610867790313], + [-52.09599768744372, -32.010874846071054], + [-52.09244437678206, -32.01316021474307], + [-52.089800672111366, -32.02261784696281], + [-52.093958492450604, -32.0183085498724], + [-52.09807889015266, -32.023989145496905], + [-52.10894490076883, -32.01943353354972], + [-52.10923374225803, -32.02438942450019], + [-52.10881856025533, -32.02738556005336], + [-52.09659410213456, -32.02964242192118], + [-52.068426481339216, -32.03008571724176], + [-52.06361352947915, -32.046518585024195], + [-52.0662298982077, -32.050916781798016], + [-52.07071738094703, -32.04746715066589], + [-52.075752023332, -32.03136192264766], + [-52.07191203176757, -32.05220873947293], + [-52.08209074887456, -32.053313397655494], + [-52.08008221904887, -32.050551182732576], + [-52.083221206550306, -32.0500919823467], + [-52.087669540668315, -32.059284151202014], + [-52.08849753433454, -32.049109563527914], + [-52.09644950761683, -32.0493698452584], + [-52.100588981016564, -32.046097828085294], + [-52.10383384476661, -32.04988891532147], + [-52.11824134589306, -32.05254418916348], + [-52.13867837010169, -32.06186820451591], + [-52.14964822905537, -32.07500106885485], + [-52.15585338935977, -32.0974791955162], + [-52.15369409216897, -32.10705969838402], + [-52.15775623015687, -32.1127358086476], + [-52.14810372754718, -32.11596160401767], + [-52.13391676831615, -32.098815105964114], + [-52.11928167822364, -32.091434628695545], + [-52.10223895128074, -32.06727843004855], + [-52.08967973248693, -32.0605081645533], + [-52.08494363281703, -32.06171065166297], + [-52.08522424540132, -32.06674575636442], + [-52.098721882658246, -32.08316584518016], + [-52.1050638963568, -32.10736483683148], + [-52.099412264793024, -32.15926005611514], + [-52.08348026938692, -32.18382843517674], + [-52.09868524204591, -32.16205214772913], + [-52.11766194420578, -32.16615854669703], + [-52.15645863824047, -32.190547029092016], + [-52.18605132775859, -32.215928288087056], + [-52.23186094844074, -32.25699772921504], + [-52.262469473478056, -32.29507502233778], + [-52.3069373713601, -32.36145917651006], + [-52.342182320629796, -32.426512696302225], + [-52.371067126696005, -32.489580334029675], + [-52.41607265299315, -32.60721071725234], + [-52.425737707751594, -32.642084794595874], + [-52.44844474067795, -32.735593845104994], + [-52.46802311785788, -32.79827598713588], + [-52.5119949974815, -32.90310638427454], + [-52.5531722921178, -32.972797611876615], + [-52.602286324371036, -33.07117755611061], + [-52.629226540392345, -33.116107375318634], + [-52.66238182122108, -33.161008237135356], + [-52.73866399734386, -33.250234643075345], + [-52.79573264856908, -33.30247857821766], + [-53.04370856414997, -33.49803116294261], + [-53.1521342824079, -33.58938509554252], + [-53.230782741805804, -33.64726783768947], + [-53.28295747775843, -33.68357334019832], + [-53.35548448746088, -33.73340424803617], + [-53.37316235773992, -33.745539078049944], + [-53.38586590855204, -33.74828775086562], + [-53.39716680883965, -33.75201277021781], + [-53.40261902545972, -33.74865846463702], + [-53.41875003885836, -33.74879318039665], + [-53.42323781764515, -33.74457693597618], + [-53.43332447331645, -33.738629222716824], + [-53.43206083782997, -33.73092053279297], + [-53.43900096003005, -33.71338182114463], + [-53.437393422294356, -33.702137478650094], + [-53.443303797529865, -33.69674768434334], + [-53.44088811545492, -33.69451442632866], + [-53.485071060132384, -33.69208205656354], + [-53.52309876265315, -33.68997539695513], + [-53.53265206023907, -33.68944392158603], + [-53.52976497434465, -33.68743779831736], + [-53.53133175810071, -33.678938364098755], + [-53.52484941295592, -33.67464107317078], + [-53.532067746607616, -33.66768506481052], + [-53.53088849272682, -33.660661869258576], + [-53.536186109072354, -33.64949426015209], + [-53.529961384249084, -33.64416949820971], + [-53.5263621475938, -33.62622525239779], + [-53.536223151963725, -33.614607949377806], + [-53.53151514127941, -33.601053004404605], + [-53.530042250621584, -33.6119916783068], + [-53.5240307778674, -33.61645854224882], + [-53.512729195167275, -33.59874180626245], + [-53.51596831118723, -33.58476290529317], + [-53.51087500552206, -33.573141323921], + [-53.51528976769484, -33.553886438200465], + [-53.509011679923006, -33.527992463861594], + [-53.498625532578835, -33.54364657324798], + [-53.47249631196835, -33.54870497177995], + [-53.48387174107491, -33.550278404082555], + [-53.48100321700669, -33.562699240709264], + [-53.490127551781605, -33.55823015374778], + [-53.48847971907582, -33.5655721550696], + [-53.479694013783224, -33.572698592162595], + [-53.461326993566615, -33.57524179514192], + [-53.45044788852768, -33.570187489724084], + [-53.44960299785878, -33.563470571961545], + [-53.45740628788047, -33.55112451050148], + [-53.46579589642511, -33.55442022245132], + [-53.45417076296621, -33.53531274126795], + [-53.45143534631433, -33.51241118629157], + [-53.442835500680566, -33.50282768817929], + [-53.445710974560264, -33.51400134465609], + [-53.44978257663796, -33.5147182298643], + [-53.44125152840458, -33.51938180937329], + [-53.4346455992782, -33.50033194949591], + [-53.43522018147657, -33.4985232790828], + [-53.42697717231715, -33.446461770634464], + [-53.42877950361209, -33.42055006010881], + [-53.43466453030624, -33.40254500433594], + [-53.44304053937827, -33.38031686851754], + [-53.47083141575122, -33.260787704891975], + [-53.43110397756125, -33.15604033674282], + [-53.42674073987485, -33.153294676790246], + [-53.426322427516126, -33.148227350056516], + [-53.42689159575036, -33.140308173903264], + [-53.41111873328564, -33.10829578849145], + [-53.40638317455632, -33.108146187787966], + [-53.410519363148495, -33.114947073822485], + [-53.405756636979675, -33.126580859292865], + [-53.41270899671862, -33.11646135229789], + [-53.42432326658606, -33.15612909052129], + [-53.41281658361702, -33.163733853035964], + [-53.40710862155445, -33.162990003183644], + [-53.39220863961941, -33.15112207498753], + [-53.38644326740144, -33.13673885616529], + [-53.37765344733946, -33.13074624860456], + [-53.35509973777762, -33.106941007992134], + [-53.33298554427108, -33.068919652909344], + [-53.31975620458601, -33.054770832949615], + [-53.31606909274125, -33.05692272645698], + [-53.31735126264831, -33.065466504233754], + [-53.32224565427138, -33.06371877011352], + [-53.326296424390144, -33.08005683160891], + [-53.31396885027511, -33.093566480923165], + [-53.2773634919113, -33.10929059890847], + [-53.26175486606511, -33.10947590719164], + [-53.25393854978255, -33.099380672789756], + [-53.23659899533134, -33.067484091213245], + [-53.20276052481994, -33.03744626918374], + [-53.16664891746168, -32.97953614155584], + [-53.15997938115756, -32.969606756653505], + [-53.15810473956258, -32.95713613516758], + [-53.16694601183594, -32.906217135992705], + [-53.16313881080915, -32.90935560008952], + [-53.160814140891745, -32.900358667705405], + [-53.1654218258912, -32.87974795360733], + [-53.156279112041254, -32.83983967538235], + [-53.14208648092306, -32.80616533015114], + [-53.1266947237604, -32.79371425681434], + [-53.11052826462141, -32.80451057236858], + [-53.10888982603612, -32.81023618279091], + [-53.11340954630397, -32.804673470021584], + [-53.116114282703926, -32.80444283286272], + [-53.11559586484897, -32.80795113982819], + [-53.101270906839424, -32.82191769858101], + [-53.08538851045255, -32.83149183844062], + [-53.07276886470158, -32.83297416768068], + [-53.058617123901875, -32.82210280075212], + [-53.042455605397265, -32.800204414061874], + [-52.99257979480565, -32.7546710161188], + [-52.98849021302886, -32.74373706741994], + [-52.986570143064434, -32.75217005959648], + [-52.99479007966134, -32.76073345548534], + [-53.00146516189906, -32.77645305702194], + [-53.00126281346197, -32.794376267087024], + [-52.985613574984164, -32.81674836774558], + [-52.96070730164342, -32.841482546426114], + [-52.93508883203002, -32.863120065916185], + [-52.9253811007735, -32.86602054849796], + [-52.898531366158096, -32.890697133812175], + [-52.86291192269881, -32.908996726271006], + [-52.833485925731395, -32.913821522799616], + [-52.80465276235651, -32.906109948674064], + [-52.77209475800353, -32.885327032670176], + [-52.750663097179796, -32.862324853378986], + [-52.70465512145578, -32.79209604973556], + [-52.689828272599755, -32.759936433113424], + [-52.62073956801923, -32.638085254947846], + [-52.6116675506322, -32.62040370242008], + [-52.60200182730336, -32.581483503089], + [-52.58979933873497, -32.542827077042205], + [-52.58620472805979, -32.52666742301653], + [-52.59315427915544, -32.49225883643701], + [-52.59499633242856, -32.48814361731293], + [-52.62933573399683, -32.4178423235527], + [-52.674560343744794, -32.347306793328755], + [-52.69196145794951, -32.32622884374025], + [-52.69489396014858, -32.317863729995345], + [-52.69206260507992, -32.29901196557902], + [-52.68207632042832, -32.26494195944338], + [-52.65660277742039, -32.205843592461285], + [-52.628482999672364, -32.161964366080134], + [-52.630234056052956, -32.154906011836886], + [-52.62240597284535, -32.14390614805982], + [-52.62650436293692, -32.14748890243507], + [-52.659426477931724, -32.154959841002736], + [-52.66933920803899, -32.15952963676811], + [-52.67335159624224, -32.16541472477295], + [-52.69488068534781, -32.159951645664], + [-52.69865472984077, -32.16921936097101], + [-52.71310831209356, -32.169102106328836], + [-52.71946264674572, -32.174335108585886], + [-52.726100393172345, -32.17022906669274], + [-52.73997550293901, -32.16623281983239], + [-52.73678811385067, -32.17239661688231], + [-52.748776460137535, -32.1743994088348], + [-52.74535523645446, -32.17606072084402], + [-52.74786067702143, -32.178015184469075], + [-52.73753052185771, -32.17545898547083], + [-52.741026364415156, -32.18279578573722], + [-52.73580196820689, -32.180996186343776], + [-52.73675309840774, -32.186224716871706], + [-52.7266114296065, -32.18851972574579], + [-52.7323401571022, -32.19924794471756], + [-52.73201506392368, -32.19179036696384], + [-52.73579649730976, -32.19060101425594], + [-52.73949345484409, -32.19353326525399], + [-52.750616093914985, -32.19366437836658], + [-52.76231832189397, -32.1990877570226], + [-52.762480823865346, -32.202362516886964], + [-52.77413763040033, -32.205531929659024], + [-52.76902184634674, -32.20647319479858], + [-52.77625845009548, -32.21262901935178], + [-52.761576218593945, -32.20477832899288], + [-52.76442545397557, -32.20711996401401], + [-52.75978089230533, -32.20904470056677], + [-52.76061834372066, -32.21370026351728], + [-52.75383596121974, -32.207364992478816], + [-52.74327280411797, -32.21039563436973], + [-52.73697615247279, -32.20209590351662], + [-52.72959184332807, -32.20742758485659], + [-52.72909095210329, -32.2130121475887], + [-52.7403351867568, -32.22196218683407], + [-52.747246893614346, -32.21392463789989], + [-52.75465695821981, -32.21234864675144], + [-52.77394694190917, -32.23168205244072], + [-52.7833326304327, -32.26862236438531], + [-52.795585541089636, -32.27090657298722], + [-52.7971750622266, -32.27650140816441], + [-52.787519373116794, -32.28008707901784], + [-52.7951846995926, -32.287421779454796], + [-52.80712437805578, -32.311730262538084], + [-52.80687482542186, -32.318049656441], + [-52.81073236615904, -32.317297087800156], + [-52.8136584012367, -32.32103057712911], + [-52.799202152794905, -32.333307384952285], + [-52.81474040983826, -32.324798990766084], + [-52.82023070556645, -32.331164980911026], + [-52.819878250708044, -32.33982872554481], + [-52.80849411779797, -32.352777239418295], + [-52.79891221854835, -32.35156015449322], + [-52.78835538478571, -32.34411767893053], + [-52.7922214286821, -32.35217703541978], + [-52.802547829580334, -32.35913821453854], + [-52.78766593039252, -32.37947590503857], + [-52.78311949532388, -32.3729742803394], + [-52.772314927375845, -32.37740768533699], + [-52.76505118354626, -32.373034848100154], + [-52.765754150185074, -32.36783364391058], + [-52.76044049742857, -32.36787800204373], + [-52.762166537061404, -32.361690515037786], + [-52.757708631904315, -32.35893353331866], + [-52.76674151855735, -32.356859058040754], + [-52.77053232536693, -32.35231282927511], + [-52.75516331622197, -32.357116802951616], + [-52.75856585076185, -32.36828154488856], + [-52.752258392072655, -32.36424199895254], + [-52.74352083008851, -32.36585940947981], + [-52.7512906481373, -32.35966182353032], + [-52.7215817637024, -32.372562835028496], + [-52.722140250882546, -32.38505661955083], + [-52.745713563097226, -32.41080974071034], + [-52.78957644059895, -32.44425436357681], + [-52.842005867385275, -32.45847899237468], + [-52.87969439254345, -32.461159834956206], + [-52.919306138084686, -32.46998281652741], + [-52.94773187168717, -32.48084912049668], + [-52.95783535289713, -32.490681325431126], + [-52.96254719815384, -32.49584634778947], + [-52.970190161283334, -32.49915069556898], + [-52.98265851742143, -32.51049797292804], + [-52.98717688091062, -32.523830699482595], + [-52.995451956571046, -32.58260380439304], + [-53.00078895583865, -32.597799957804746], + [-53.00927661243233, -32.607630543070215], + [-53.0200938192668, -32.613000131731006], + [-53.05404588755402, -32.615343329880666], + [-53.07001236499877, -32.622141336182956], + [-53.0769545482526, -32.62775142549269], + [-53.08219830615276, -32.64750871502732], + [-53.08463287369648, -32.65817080892099], + [-53.10851519326652, -32.64294291230276], + [-53.128367499284984, -32.638391765221805], + [-53.14670377542768, -32.64053841836268], + [-53.16671026386394, -32.64851569877845], + [-53.174716811485794, -32.65667567225813], + [-53.18213454016869, -32.656366261559945], + [-53.186652055278955, -32.64530213892612], + [-53.23660840386906, -32.63117074111504], + [-53.242804642913974, -32.6264328749007], + [-53.24994273274757, -32.6039837185291], + [-53.2712407823063, -32.60533541295079], + [-53.28020608058002, -32.61981886432291], + [-53.28777403974715, -32.622573435530555], + [-53.29663917423894, -32.616754221254865], + [-53.30426932780137, -32.605153009844976], + [-53.320745240705186, -32.59679058582486], + [-53.3328858883662, -32.585864705149255], + [-53.33683445995783, -32.584974881037525], + [-53.3493505417903, -32.59294743047871], + [-53.355591429567134, -32.59133127054475], + [-53.370169933143956, -32.57161979351004], + [-53.37818064046623, -32.57252713843424], + [-53.38861679531689, -32.58751436566027], + [-53.409838411604596, -32.57648775854949], + [-53.4210608272568, -32.559005124583784], + [-53.425045634684224, -32.55912170353241], + [-53.42790384381148, -32.56612849289752], + [-53.43233209104929, -32.566225219443346], + [-53.442056003333036, -32.539465044221544], + [-53.45814306674114, -32.5223737308662], + [-53.45715722529327, -32.515858996677736], + [-53.464079540874465, -32.50308681199865], + [-53.4628365698345, -32.49897682749869], + [-53.46694282055463, -32.493032937424566], + [-53.463727516797896, -32.48546725601958], + [-53.471342363696735, -32.4805020627812], + [-53.48016120791962, -32.48469129202647], + [-53.50297938573101, -32.480965532581386], + [-53.51548266627956, -32.48780708030226], + [-53.52110965002018, -32.48062463961926], + [-53.52671748737897, -32.48791476455816], + [-53.54476863851566, -32.47817765868128], + [-53.54225035709992, -32.47232073969087], + [-53.55756426388408, -32.47170370733204], + [-53.56707273633245, -32.45913311487749], + [-53.5830734527413, -32.45227525085881], + [-53.58808840815216, -32.43628124456124], + [-53.600423258299145, -32.430970911111885], + [-53.613034589735214, -32.41858056062322], + [-53.61163574880893, -32.40262425146517], + [-53.625915883861786, -32.390652471237956], + [-53.644648171323034, -32.38461711732499], + [-53.643291274940104, -32.37427372214754], + [-53.632886767699226, -32.350425652869774], + [-53.643313732781614, -32.336854278384784], + [-53.64380841411541, -32.324442876613396], + [-53.655923149609976, -32.31964393030929], + [-53.65519331474387, -32.31241697371506], + [-53.646966995226954, -32.31318868362914], + [-53.64268558883766, -32.29716121712711], + [-53.65640305725837, -32.28841244808249], + [-53.656295337531695, -32.279248343263355], + [-53.66491271684012, -32.27519098333042], + [-53.67695310671423, -32.25983536832394], + [-53.67642769351068, -32.237992054385316], + [-53.68516974536079, -32.22005967709798], + [-53.69284209465385, -32.21422778893646], + [-53.69423200780832, -32.20492745001868], + [-53.70385461192965, -32.20774228819143], + [-53.710998351046925, -32.199658082696956], + [-53.702418117353915, -32.189906994377466], + [-53.712691007159236, -32.18919489765612], + [-53.71255210336285, -32.17837943065295], + [-53.72336328381004, -32.17346714488143], + [-53.717139765823575, -32.15447066475937], + [-53.734452636700105, -32.152646889718525], + [-53.72651047309559, -32.147080329410365], + [-53.72667543597641, -32.1383197483689], + [-53.74418310391931, -32.116776338595756], + [-53.73790836402043, -32.10625843762603], + [-53.73980633322222, -32.100879503395795], + [-53.73221937116988, -32.1060760922691], + [-53.725409006021074, -32.098244697124535], + [-53.744334405957055, -32.09249204987676], + [-53.745672305740506, -32.07910837264177], + [-53.754531116030975, -32.07959478970674], + [-53.75709088633968, -32.076901524568136], + [-53.76503452505647, -32.07983475118637], + [-53.76900256011948, -32.07423823156614], + [-53.78128786869329, -32.07048778446851], + [-53.78929304040483, -32.07254484771878], + [-53.7894585481725, -32.06871695275896], + [-53.80461692502064, -32.070737842554635], + [-53.81475779019264, -32.05965001648344], + [-53.82563761178614, -32.060187606045695], + [-53.833274727867725, -32.05559956037169], + [-53.83443987755801, -32.042447274185335], + [-53.842633459838076, -32.03822009894118], + [-53.83759865726572, -32.03375969287497], + [-53.852230157410496, -32.02998096307811], + [-53.851267948517275, -32.01417823434333], + [-53.853868727015524, -32.01071377493389], + [-53.84997302675921, -32.00143493567211], + [-53.85442327341826, -31.998669737870376], + [-53.86381041328724, -31.996266901247967], + [-53.86499593168038, -31.99316771491179], + [-53.87024489876016, -31.99897369475897], + [-53.89075814625802, -31.994614697822364], + [-53.8966516820913, -31.982003170761356], + [-53.90933235730992, -31.9747306598174], + [-53.91272076501804, -31.967216341920594], + [-53.931881528224466, -31.964206071236607], + [-53.945683812648255, -31.956418264418893], + [-53.951726770664834, -31.9586653533075], + [-53.960626058230964, -31.95614422226267], + [-53.97237678960681, -31.942044566835307], + [-53.97105761060366, -31.936320369953027], + [-53.96768562107067, -31.937868895312832], + [-53.96479155523606, -31.93099799350757], + [-53.96202181488233, -31.931464341031774], + [-53.96314787808902, -31.923859544839477], + [-53.96907689590506, -31.9233642222988], + [-53.97001837825578, -31.918830044849834], + [-54.003908228489195, -31.91537953365977], + [-54.00744019041322, -31.909464263855952], + [-54.014663211951316, -31.90931303488036], + [-54.01621275790205, -31.907286430470247], + [-54.011581974475575, -31.905785382295402], + [-54.01722834971256, -31.905230119184424], + [-54.01602358586531, -31.901682464829495], + [-54.022736649847026, -31.902370446532863], + [-54.02557171673461, -31.8977786755358], + [-54.03166227718564, -31.899472755830583], + [-54.030940249505505, -31.896303889311376], + [-54.034741093316356, -31.897930720059573], + [-54.039543310060886, -31.89743331155414], + [-54.04477837832164, -31.904577705423193], + [-54.0535137318592, -31.90615704963482], + [-54.055355992111316, -31.912455558469635], + [-54.066905168374426, -31.923458657939484], + [-54.07333849281107, -31.919623235171215], + [-54.088016688951, -31.936231027928617], + [-54.09089464547597, -31.931258125592105], + [-54.1004130447019, -31.928308297438743], + [-54.10910670170197, -31.908933429379378], + [-54.140287865695825, -31.895166147534166], + [-54.14229106989914, -31.884220170075437], + [-54.15495492825543, -31.876979873558632], + [-54.17422996969863, -31.86178064289114], + [-54.2188467707555, -31.82870173740487], + [-54.454496241524204, -31.653339128658413], + [-54.451826472074245, -31.64153699597069], + [-54.454477497778754, -31.631077764761308], + [-54.4599988034824, -31.628723988448343], + [-54.4670762690795, -31.613431633840506], + [-54.45737726544444, -31.608029407262595], + [-54.45757549869746, -31.60245338873388], + [-54.452909231094175, -31.604369335499918], + [-54.45310288669681, -31.60083966183671], + [-54.46413255815521, -31.58982079901809], + [-54.46941404896656, -31.593328695302723], + [-54.47448875651735, -31.57093831922725], + [-54.48119305260761, -31.570401001738563], + [-54.493668541105805, -31.56041398314069], + [-54.49099149811597, -31.552455398689197], + [-54.514016457808324, -31.51400306172708], + [-54.520533725312596, -31.509367257254443], + [-54.52448914565363, -31.510560517355984], + [-54.52413778847202, -31.50664693508648], + [-54.53235349597496, -31.502096457028944], + [-54.54709527386084, -31.498949899737482], + [-54.553245899521194, -31.492917907432762], + [-54.55722173477717, -31.49511475646981], + [-54.55994060669123, -31.487892435544783], + [-54.574575744311375, -31.482274775044516], + [-54.579944023896786, -31.467075679565742], + [-54.587539754243906, -31.460265291087744], + [-54.58631325926126, -31.457112550035486], + [-54.67012096080265, -31.45437653582057], + [-54.68369302597317, -31.445083232687818], + [-54.69481833077889, -31.44512439338096], + [-54.69720114420508, -31.437597996870007], + [-54.70138311047658, -31.435837277602417], + [-54.703327690756346, -31.44000857586863], + [-54.71873071998824, -31.43922325828279], + [-54.7242809046339, -31.42980268735303], + [-54.7597791012549, -31.4255775565648], + [-54.78899993720742, -31.435347619220067], + [-54.804592427415685, -31.429445409883556], + [-54.81147972702533, -31.43540745342925], + [-54.82687174870955, -31.436779085086435], + [-54.83618835729741, -31.442430068565827], + [-54.856841359427015, -31.41876519067543], + [-54.861233488336005, -31.418432734073427], + [-54.8575138296315, -31.408640079177083], + [-54.87783358230984, -31.39863718251445], + [-54.8871138300464, -31.383956960251048], + [-54.88397622454243, -31.381781700753383], + [-54.88611111879405, -31.379843311350005], + [-54.8915320476878, -31.375550793506335], + [-54.89937671149136, -31.377011153302927], + [-54.89762975192236, -31.382120673546712], + [-54.90432434531005, -31.384839635747646], + [-54.92067665655272, -31.379623329110927], + [-54.93209824795026, -31.385827644826197], + [-54.94028983333712, -31.381436271047352], + [-54.936915972264835, -31.370933653467713], + [-54.93355987483578, -31.370122101466745], + [-54.93650684076138, -31.3650836210389], + [-54.93471206835576, -31.357388569344362], + [-54.9596516969143, -31.352349827306238], + [-54.960010989930566, -31.34281907449357], + [-54.95254694073554, -31.340149279103134], + [-54.952915533273575, -31.332722478777004], + [-54.95915684301579, -31.32409485510418], + [-54.97831493690838, -31.31799628391055], + [-54.982433098314175, -31.312306616023807], + [-54.979663873396404, -31.303988317567473], + [-54.981862040174406, -31.29705881090755], + [-54.995251906747946, -31.289124068190436], + [-54.9943907227693, -31.283527505243786], + [-55.000166006767046, -31.28333297540903], + [-55.00077201192099, -31.27567961631145], + [-55.00194804123651, -31.269707376075363], + [-55.00656959689064, -31.267348083313866], + [-55.00789705098324, -31.270426539808135], + [-55.01966572416421, -31.267527141453236], + [-55.031376430357746, -31.270173539275085], + [-55.036045733242844, -31.27608821130246], + [-55.031206643058084, -31.27917809718477], + [-55.035387880652046, -31.28440677920049], + [-55.032286059897686, -31.28985907382076], + [-55.042828278866324, -31.308765054314105], + [-55.04730878572722, -31.307630149900284], + [-55.052567436796984, -31.314224743292776], + [-55.0596145904944, -31.315807246641597], + [-55.05713089728152, -31.32256899364524], + [-55.06134805877381, -31.325075597560918], + [-55.05690150584857, -31.33231528681197], + [-55.07399251127373, -31.33259641601462], + [-55.08064475792802, -31.324940800113], + [-55.10228501203804, -31.31538316030077], + [-55.108546538004155, -31.30802708943517], + [-55.12162525661414, -31.31314960315891], + [-55.12540151478833, -31.3028554871567], + [-55.1360819216991, -31.30174871213521], + [-55.15183916229809, -31.29350091277321], + [-55.15619761699578, -31.28571411493124], + [-55.1630060026897, -31.286012504570223], + [-55.165717907139914, -31.281411130243587], + [-55.16247266986448, -31.279525033408813], + [-55.16697755563169, -31.274112885190455], + [-55.16887592756823, -31.26974699210067], + [-55.17950878172406, -31.270808712399145], + [-55.1832560233229, -31.265629318310157], + [-55.23479691820295, -31.258691992206803], + [-55.23963972843363, -31.260963075466197], + [-55.239856354062525, -31.25400160549591], + [-55.24613767475801, -31.252611590377814], + [-55.24811840039128, -31.248507114176675], + [-55.24742061658154, -31.216507152058526], + [-55.25351313059272, -31.211581672509748], + [-55.249601023535426, -31.206337709442906], + [-55.262459746985414, -31.194989845669163], + [-55.282354725066426, -31.194334137788218], + [-55.28533350501035, -31.1858660381809], + [-55.27049849750286, -31.17725834230222], + [-55.27423716445403, -31.170501859095722], + [-55.29045680495151, -31.16406721628513], + [-55.289903198209714, -31.159672738112192], + [-55.284597338748696, -31.156911155708986], + [-55.29025645429364, -31.15060129940034], + [-55.29048973288741, -31.144132834712295], + [-55.30499696087547, -31.141470596007338], + [-55.31142521021686, -31.147774031232135], + [-55.31841759495063, -31.14544448482005], + [-55.320733455661916, -31.136233854873513], + [-55.32600874795752, -31.13838914833327], + [-55.334153882947184, -31.133233200599303], + [-55.33824446827338, -31.134052025161594], + [-55.33693154848792, -31.12029387356811], + [-55.329628452236854, -31.11702273692744], + [-55.328466217950236, -31.110810297728626], + [-55.332351745304905, -31.106253837801045], + [-55.33333307116978, -31.099435781302162], + [-55.327319850767076, -31.088544175983085], + [-55.33879585843971, -31.08549279748531], + [-55.34940427547907, -31.068264600741145], + [-55.352024324469404, -31.070729829263], + [-55.35941774821779, -31.068027807966928], + [-55.352634048697766, -31.057468322273337], + [-55.3498467694587, -31.0405358220919], + [-55.351287832247046, -31.03798478462804], + [-55.35939773634166, -31.040614150568572], + [-55.36908964925163, -31.03480221756728], + [-55.37371793800917, -31.01957340722896], + [-55.379941406277105, -31.024006288393416], + [-55.385430074111824, -31.021343925884974], + [-55.399941568780314, -31.02900174787141], + [-55.40482996400792, -31.02763558907018], + [-55.406653074980085, -31.01919177440397], + [-55.4149862601495, -31.014751221375995], + [-55.424491672628776, -31.016930140515942], + [-55.424789261664806, -31.01215440138637], + [-55.43694823001199, -31.00503055745307], + [-55.43570538599704, -30.992536971938247], + [-55.43135878734191, -30.99301537304847], + [-55.428766818610484, -30.987086594550288], + [-55.42427048756296, -30.985999933188896], + [-55.4276641369905, -30.981310850914248], + [-55.43252976402553, -30.97321179437686], + [-55.43783808687619, -30.972910254778576], + [-55.44089252831086, -30.96020735936583], + [-55.4518843736644, -30.960634488213188], + [-55.456746995346855, -30.951639077804046], + [-55.46312069654611, -30.950452451117386], + [-55.46849576249564, -30.954942120417417], + [-55.47787140553848, -30.954166133851665], + [-55.48621965388183, -30.948019215623884], + [-55.489364587576624, -30.940255320644408], + [-55.488207779487105, -30.925708703835973], + [-55.499219383956664, -30.927369861699137], + [-55.503985910812304, -30.92504915447246], + [-55.509847971794606, -30.90229645114707], + [-55.524821164833114, -30.89862183203362], + [-55.53223741252322, -30.902867481107425], + [-55.53335952949129, -30.89772735279054], + [-55.545484601028235, -30.891035943409033], + [-55.5514030069387, -30.88313557381542], + [-55.55371692979901, -30.873894860864514], + [-55.5631397307541, -30.869266057040754], + [-55.56218052277127, -30.85532471357524], + [-55.56612917130058, -30.848213090588576], + [-55.576886110706205, -30.84358524010901], + [-55.578130646509834, -30.833329051007386], + [-55.583974088224316, -30.836375333270855], + [-55.586147639376534, -30.841786691388815], + [-55.60356937331821, -30.85072471432838], + [-55.609997195648134, -30.8492706284319], + [-55.61234539238589, -30.84426614360725], + [-55.62057825990624, -30.842878347133162], + [-55.62799953777706, -30.84934594288707], + [-55.63714146940919, -30.847728328252256], + [-55.64586829654325, -30.855919731828987], + [-55.64430389976844, -30.859279870242617], + [-55.64985309823362, -30.86617299330877], + [-55.65766052879031, -30.864047857519118], + [-55.66279119964089, -30.87327779146223], + [-55.65249843276814, -30.88369814925373], + [-55.65539661910712, -30.885214915876233], + [-55.653611098767904, -30.89701426870244], + [-55.64196846201833, -30.912087204762845], + [-55.64820085046258, -30.92355722010555], + [-55.65566153156883, -30.9247217514103], + [-55.66299037569229, -30.93324973643488], + [-55.65821150290076, -30.94393324564649], + [-55.661400201380935, -30.9488187736564], + [-55.664169893592906, -30.947146417362227], + [-55.66589694610753, -30.954330336967356], + [-55.67622266477341, -30.956314263045904], + [-55.68832094625225, -30.952884286688814], + [-55.688604567354375, -30.94526776066705], + [-55.69471103776102, -30.94382168274474], + [-55.70375327446216, -30.955601803257867], + [-55.70958843880071, -30.95505946186351], + [-55.71603214337357, -30.943479193130635], + [-55.72384328280524, -30.943216593999], + [-55.720941788947265, -30.945997529575216], + [-55.72438686373955, -30.951686902583262], + [-55.72413367058558, -30.96637109939974], + [-55.731162968822225, -30.97442281562697], + [-55.728017303532766, -30.97972672286933], + [-55.74624686131118, -30.97981894394182], + [-55.745357493823704, -30.985485009398484], + [-55.75362142237339, -30.99862357911913], + [-55.77335205145498, -30.997466019953553], + [-55.77439884497108, -31.000554581847627], + [-55.76767648681828, -31.00337455003225], + [-55.76604900612136, -31.010071599278014], + [-55.77650493454373, -31.015804024274683], + [-55.80572896954084, -31.01680544987943], + [-55.81326030612946, -31.01584056689398], + [-55.81182773455778, -31.021940220985147], + [-55.82177595543766, -31.033083722366115], + [-55.829356256357755, -31.044149950111397], + [-55.84745637737223, -31.042419640988275], + [-55.85506487931039, -31.045294348696093], + [-55.870697020434214, -31.07191035589796], + [-55.877721603881625, -31.07275241314923], + [-55.88214105929321, -31.077376954074825], + [-55.89062765698394, -31.077343030835518], + [-55.89862335207187, -31.06669176729908], + [-55.910241173657084, -31.07529485916368], + [-55.91854950346299, -31.073959674666913], + [-55.925432952424025, -31.076919330072723], + [-55.93294127543329, -31.087218141784202], + [-55.95840398447027, -31.077363506436765], + [-55.97791678543927, -31.073801685205417], + [-55.98653741846557, -31.077400442460345], + [-55.99245382526926, -31.085032182232826], + [-55.99267925410773, -31.084985418872105], + [-55.99837041930595, -31.08381444808301], + [-56.010097748117126, -31.081399664170462], + [-56.009315565550196, -31.070976630535295], + [-56.01896173567348, -31.048420053021033], + [-56.01631748722016, -31.001062193443097], + [-56.007127625766785, -30.983957627157004], + [-56.01053867098622, -30.97850253368394], + [-56.006087865805824, -30.973650216757218], + [-56.01018372579445, -30.970412603664204], + [-56.012972499035016, -30.954788741982554], + [-56.00975721671517, -30.948607097326306], + [-56.01509668738081, -30.94523369969866], + [-56.00550542280037, -30.922241436827118], + [-56.00990481221807, -30.914454568936872], + [-56.00845420490957, -30.89560435313339], + [-55.990358733482566, -30.866880186484728], + [-55.989879230033885, -30.85911114270548], + [-55.993890907715084, -30.847508369866464], + [-56.00394483716755, -30.84070309949652], + [-56.0090595313481, -30.821942141502493], + [-56.01675260329663, -30.819224835998074], + [-56.01616373894742, -30.812304306253708], + [-56.01182945700847, -30.80955466904323], + [-56.02448648383479, -30.800536174621428], + [-56.021494902254, -30.79327081940386], + [-56.02341338623871, -30.786830593446794], + [-56.03440522942328, -30.785602754412807], + [-56.03893285339154, -30.776740852360277], + [-56.04484615468321, -30.774994944072496], + [-56.05051199754197, -30.777746815345772], + [-56.06364036822379, -30.773541379476555], + [-56.06688694526019, -30.767111919907144], + [-56.06458976502706, -30.753175592904196], + [-56.06986699258137, -30.747564965204475], + [-56.07502819869847, -30.746312147360136], + [-56.0889001365771, -30.75787043323705], + [-56.095310979152515, -30.75449481578993], + [-56.10828858235137, -30.733386870494765], + [-56.11211997430338, -30.733369689413266], + [-56.12511925395396, -30.73988965146151], + [-56.12937509960051, -30.738122931583423], + [-56.132874136371804, -30.73173560664224], + [-56.12871524589448, -30.721225152982218], + [-56.13089258201884, -30.717338302454625], + [-56.13737067107138, -30.71089835618114], + [-56.150529490509776, -30.70622772332624], + [-56.149626439827394, -30.693756921086973], + [-56.13828092789643, -30.685711609078638], + [-56.14226899984127, -30.680727173844648], + [-56.15251900592122, -30.680862604101126], + [-56.16707119419321, -30.664762747117155], + [-56.17045531540402, -30.653916650228364], + [-56.166280353121586, -30.64073044885459], + [-56.18074917924875, -30.633260723793846], + [-56.18342559466891, -30.626403550987025], + [-56.17038699976858, -30.615497465746717], + [-56.191760616772555, -30.604774313570715], + [-56.21961399057848, -30.608347300128926], + [-56.22462081705394, -30.59868775513092], + [-56.23504999015105, -30.59214055238172], + [-56.23532870301829, -30.588155746995287], + [-56.22414397422164, -30.585853213751495], + [-56.225917709360246, -30.579007971503156], + [-56.2380837259202, -30.574312697597467], + [-56.24703034303229, -30.575145996173855], + [-56.2562336020196, -30.58875909075778], + [-56.26025229922967, -30.586541607561735], + [-56.26281413182664, -30.583026573774244], + [-56.26177975219521, -30.570995463516645], + [-56.256986118191335, -30.567864133910266], + [-56.25898344600677, -30.561824343515866], + [-56.26700007817904, -30.55552574810855], + [-56.277065809476596, -30.56255639056024], + [-56.28115873535974, -30.561970835819267], + [-56.279142942808264, -30.554413139344224], + [-56.289406233733125, -30.54079021912419], + [-56.28970595531299, -30.532244327125305], + [-56.28687168319273, -30.528846085524425], + [-56.29196863853174, -30.520528820341728], + [-56.296153262111346, -30.52617809573412], + [-56.30742437296523, -30.531203350768227], + [-56.32937374057638, -30.53006911841415], + [-56.336776339843915, -30.52400733612728], + [-56.33537854907735, -30.512104336536314], + [-56.34827682411349, -30.505345626350337], + [-56.34970170543065, -30.497397110431457], + [-56.35458968873684, -30.493096437981688], + [-56.36360415450746, -30.492946950818165], + [-56.359930349275636, -30.500137425435543], + [-56.36593047807073, -30.502968114436165], + [-56.38360111861347, -30.49867193484472], + [-56.388879370244034, -30.493345841167436], + [-56.38378166139265, -30.492321047282644], + [-56.386418977443284, -30.487646486308513], + [-56.394661564916014, -30.486244884025016], + [-56.396441133120454, -30.471889598132602], + [-56.4003969568453, -30.475233228157695], + [-56.405679773927595, -30.469076019249847], + [-56.40720877000804, -30.46073559111641], + [-56.39993360473861, -30.45915100979882], + [-56.396775801469, -30.449921164139123], + [-56.40952260441076, -30.444942108537568], + [-56.415584946908744, -30.431465060351808], + [-56.42495849616972, -30.435324405793267], + [-56.43823616985423, -30.432560741658417], + [-56.45250631289402, -30.422888658889665], + [-56.44420962380671, -30.415535334761206], + [-56.450734508120775, -30.405448253938953], + [-56.46188899193079, -30.385210648668608], + [-56.47823972556048, -30.391854172765957], + [-56.48259243364836, -30.399675223029043], + [-56.489107857878224, -30.3997018737666], + [-56.49592539785967, -30.38799775691281], + [-56.505537118411844, -30.383125480644733], + [-56.503901828554646, -30.37132034552265], + [-56.50657455785509, -30.36861116919174], + [-56.52055837568639, -30.359490343877532], + [-56.54518889807423, -30.360176480683542], + [-56.543705264589285, -30.35254347289334], + [-56.55148939634132, -30.343489424833795], + [-56.53669034250738, -30.334334578576723], + [-56.54046285506171, -30.314712627593448], + [-56.545966174611664, -30.311528519077232], + [-56.55650475660671, -30.31976853422986], + [-56.57462732466596, -30.303351317133533], + [-56.5761777764433, -30.289320723261106], + [-56.595916509961995, -30.296019386683327], + [-56.60407312977931, -30.293994771831485], + [-56.61114006908322, -30.300765675455036], + [-56.617070144259856, -30.30126940113346], + [-56.619520664989786, -30.29457029308732], + [-56.60589928853995, -30.283159158606576], + [-56.61298627214631, -30.262401264223993], + [-56.627069123606724, -30.26765098106793], + [-56.638896226464944, -30.25828029595301], + [-56.63704105114145, -30.254864558073844], + [-56.62994500536969, -30.25539751153121], + [-56.62450859588936, -30.24814948974682], + [-56.64169618060751, -30.234825940934652], + [-56.64856857490505, -30.222331089726445], + [-56.66710359327323, -30.221019671790742], + [-56.667726294181755, -30.218185065945935], + [-56.64546690359861, -30.208355062190474], + [-56.64618012942592, -30.205039062506074], + [-56.651742658393026, -30.208003876210082], + [-56.65869845190811, -30.201690863381728], + [-56.66298480709213, -30.198730600346497], + [-56.67867793050928, -30.20115830947287], + [-56.68206102479341, -30.195557133938145], + [-56.69674423194052, -30.20581993720569], + [-56.707905446524265, -30.189388013113106], + [-56.706448723119, -30.176766343781072], + [-56.719110023667774, -30.180820513744784], + [-56.72976862299534, -30.17251862298784], + [-56.75901503159093, -30.161703574597404], + [-56.77692396033752, -30.164462591360948], + [-56.78427212587505, -30.15420252074089], + [-56.77806614571036, -30.134619819990306], + [-56.780016446131405, -30.128018919819947], + [-56.80081391001405, -30.121769613958005], + [-56.80641842117976, -30.10523666085322], + [-56.818056422111006, -30.107751840079185], + [-56.822863567624296, -30.097821103227734], + [-56.83510317364567, -30.092819355820026], + [-56.8546476657925, -30.089656854197735], + [-56.87181666459164, -30.094451478194873], + [-56.87399387466468, -30.08746315928792], + [-56.885066288887025, -30.088234957121394], + [-56.904356806690565, -30.11438035408971], + [-56.904909287577745, -30.108825726508275], + [-56.91420724696108, -30.111566054679873], + [-56.91172113609908, -30.10303257263816], + [-56.91778723968469, -30.097067232667083], + [-56.93209991775455, -30.094531232975058], + [-56.95653604652356, -30.102173222251782], + [-56.9769108280871, -30.098509719710933], + [-56.98304048116031, -30.089062244277564], + [-56.992143863670606, -30.086778496260084], + [-57.02318837891415, -30.088628805125733], + [-57.028414026710394, -30.09256783427513], + [-57.03161903050951, -30.10236757628039], + [-57.04407126039903, -30.1057884570731], + [-57.056519850682164, -30.099762931793382], + [-57.06774605865843, -30.101677600959853], + [-57.0663381675927, -30.091850540821447], + [-57.06104297100948, -30.090450448715846], + [-57.06465039038704, -30.086693996889544], + [-57.06990183597945, -30.08701956121049], + [-57.085447571638674, -30.100473828235703], + [-57.09066635511389, -30.111851648667944], + [-57.08880770460759, -30.11392893815751], + [-57.085107377654914, -30.111628844599352], + [-57.08877116991116, -30.120487652347904], + [-57.09431037124025, -30.121224553082705], + [-57.09543349386411, -30.115868913470617], + [-57.11473682928588, -30.114895601715606], + [-57.11355817874088, -30.12823377656525], + [-57.10450865499822, -30.127435541314618], + [-57.105607877748874, -30.136243440553805], + [-57.11381386279717, -30.145555542113033], + [-57.12898428187259, -30.142417032292304], + [-57.13368923232007, -30.155492415232235], + [-57.14446707028949, -30.169123581755734], + [-57.14483230902673, -30.173393755658132], + [-57.15782791737133, -30.186094345292066], + [-57.16047856902986, -30.195445539852845], + [-57.16792933706727, -30.199013886929446], + [-57.16840380968837, -30.208563384179843], + [-57.16465478114947, -30.21432624062731], + [-57.16772715356176, -30.217854023068025], + [-57.16239581838043, -30.219614127788955], + [-57.16583848376412, -30.225126875603536], + [-57.155303975898235, -30.233240738106964], + [-57.15614301265494, -30.236306889350328], + [-57.16201884903054, -30.24369279645479], + [-57.168115560232856, -30.243039082138896], + [-57.16809999856888, -30.249771844557696], + [-57.17780495721248, -30.252281690819988], + [-57.19504638171588, -30.264404292233536], + [-57.20309122930041, -30.28645532395818], + [-57.21799024510777, -30.29031672018651], + [-57.24781753616728, -30.290775059150604], + [-57.25433190133068, -30.285504654415202], + [-57.25286300397654, -30.275534481872633], + [-57.2595542610517, -30.267538350757007], + [-57.269428862860735, -30.274215565696235], + [-57.268691762917335, -30.28424502298154], + [-57.280126216931095, -30.29472022430043], + [-57.28425641446964, -30.294614054895337], + [-57.29505482091724, -30.28450595325155], + [-57.30521596586848, -30.26553518232118], + [-57.314505756892565, -30.258721970952674], + [-57.32144221637686, -30.27178665012422], + [-57.35398579110977, -30.285704052044718], + [-57.359819490397705, -30.272628331436486], + [-57.36891573393396, -30.273501647957925], + [-57.38611776499137, -30.29218170413263], + [-57.388578263206874, -30.30360123285156], + [-57.39569016721167, -30.30537915030303], + [-57.410054320072426, -30.301045879749836], + [-57.41960281446602, -30.30340795180739], + [-57.42157634935376, -30.291934769024753], + [-57.414052586046395, -30.281113063896267], + [-57.429649438911156, -30.275511922446825], + [-57.45179705944502, -30.27697821406176], + [-57.46138737288967, -30.26719017030048], + [-57.48482213177451, -30.26739669991086], + [-57.48932137445866, -30.269787858565277], + [-57.49787707071237, -30.2883747333155], + [-57.52269188072985, -30.286572745144415], + [-57.54904865679367, -30.274310094161773], + [-57.55522223610195, -30.264608140087724], + [-57.566245360089354, -30.259013381780555], + [-57.55673487407385, -30.22049936343441], + [-57.563431524309046, -30.2096393974327], + [-57.610689511132776, -30.189703551818344], + [-57.62982900142554, -30.187510550541962], + [-57.643318682471964, -30.193642489933055], + [-57.64376041059128, -30.188715301316286], + [-57.63587149635814, -30.17641496259472], + [-57.58548298799233, -30.177202589831598], + [-57.54799280176742, -30.164030199551906], + [-57.482199767801106, -30.123670951249956], + [-57.46169015916572, -30.106536214948193], + [-57.45401051171516, -30.090272081427027], + [-57.44640183831514, -30.07211462653337], + [-57.41717704451797, -30.040645926364935], + [-57.38221988504813, -30.01781351650991], + [-57.354593100789515, -30.009201149444205], + [-57.33826912026346, -29.993072816206222], + [-57.32840060879214, -29.972007725566723], + [-57.3231676023541, -29.937288692138893], + [-57.32926134008791, -29.895136465735476], + [-57.32809906897195, -29.880152162409683], + [-57.294810872558735, -29.831571470399375], + [-57.2424563336864, -29.78848226999629], + [-57.227324016541864, -29.779694860754237], + [-57.170879881032704, -29.781012087226316], + [-57.13360990761456, -29.771064383149536], + [-57.12152600350392, -29.7653750838983], + [-57.0937448554667, -29.74320044869369], + [-57.04617068944605, -29.70195060875141], + [-56.98664992759007, -29.624132414775907], + [-56.96892555503751, -29.600927120847057], + [-56.93389488643422, -29.56917781168815], + [-56.90352719198351, -29.53493992565798], + [-56.85638619796131, -29.505311358664986], + [-56.83478669713696, -29.493287011581103], + [-56.81562880480929, -29.4817888420765], + [-56.79926453963576, -29.465545175078457], + [-56.78048915473335, -29.440124217370833], + [-56.778762624206855, -29.41966731851567], + [-56.78019492108814, -29.410607734958408], + [-56.76843144476271, -29.37770502603272], + [-56.75472048108269, -29.371119189989074], + [-56.71874741533945, -29.368976918264135], + [-56.705619250448926, -29.361351490223623], + [-56.65504345341816, -29.27789134833712], + [-56.647887829560375, -29.259339442368912], + [-56.65334044046979, -29.226547936314745], + [-56.637011039663776, -29.192086689145846], + [-56.60484192134833, -29.155044217772105], + [-56.59056110648526, -29.120355694594956], + [-56.575694110798764, -29.113720217901015], + [-56.54285978752234, -29.114562818136708], + [-56.51285843805423, -29.091777012403725], + [-56.500630765687745, -29.087472161384998], + [-56.430067569612895, -29.079593926087504], + [-56.41855035091787, -29.07549308244988], + [-56.407819745893626, -29.03943992577825], + [-56.39784502367583, -29.02120881102435], + [-56.41553320538814, -28.999644887766024], + [-56.410052214643784, -28.97590939275125], + [-56.39475261354132, -28.958571889833333], + [-56.38084114372107, -28.950106131271344], + [-56.33775178470017, -28.9374706079521], + [-56.32455095722826, -28.923961320943018], + [-56.30374801877821, -28.901919363411235], + [-56.29833923068092, -28.890602337384404], + [-56.29574531670842, -28.859809330654613], + [-56.300541338184814, -28.81392129100979], + [-56.293700466351446, -28.797588514304433], + [-56.2832185032483, -28.788216145619163], + [-56.26332346390249, -28.778098945685077], + [-56.18941353807822, -28.772423090192152], + [-56.1624161275568, -28.74281848861863], + [-56.14851976845865, -28.714865680794297], + [-56.12514726939124, -28.687245891604277], + [-56.04738251850302, -28.623949919359813], + [-56.01965711677248, -28.613926174622332], + [-56.002120015017354, -28.59852593700886], + [-55.9998001277109, -28.585305491427626], + [-56.00774622409097, -28.56885147246517], + [-56.020304879236804, -28.553161048981107], + [-56.025883703205274, -28.538982700116264], + [-56.023270206347405, -28.524843357296422], + [-56.011268683309055, -28.50705114011021], + [-55.98399661064976, -28.49727813939878], + [-55.94920591967453, -28.494951588985735], + [-55.91722075103542, -28.482730115972977], + [-55.88610039884283, -28.480357988299858], + [-55.881010141544614, -28.473219416811332], + [-55.8814249364923, -28.46510350513355], + [-55.90111263827588, -28.417046668409096], + [-55.902094385114886, -28.406756999529968], + [-55.89968633332417, -28.397127982336738], + [-55.87708932971785, -28.361671345231855], + [-55.858446940590184, -28.355158476884952], + [-55.818974109206195, -28.36480486051515], + [-55.7742763801904, -28.36763972468403], + [-55.75389366601028, -28.369732752541374], + [-55.74013784785195, -28.375943879870853], + [-55.731634412916016, -28.383850638103254], + [-55.72437488295803, -28.401408806624893], + [-55.719926758262325, -28.416408934867853], + [-55.71096817291422, -28.426572758196766], + [-55.69687540726293, -28.425768473926006], + [-55.69038180734607, -28.415790903396946], + [-55.689516119268276, -28.391538959729644], + [-55.668032600502634, -28.341148660535268], + [-55.67360410767866, -28.328029701947354], + [-55.73572200736136, -28.284596858741928], + [-55.772719164920126, -28.27390583959162], + [-55.781810735093565, -28.254426189286626], + [-55.77220952462936, -28.24311065091839], + [-55.7516832781133, -28.23479249765008], + [-55.69867148236195, -28.222524671554552], + [-55.65840283434437, -28.18681361570539], + [-55.646856618426526, -28.181405735083885], + [-55.6358500207505, -28.17851998206629], + [-55.63005883409727, -28.176143325461325], + [-55.62622204508227, -28.166756183474483], + [-55.62819616039909, -28.158928353681695], + [-55.619630978753136, -28.14995160274597], + [-55.621271418171354, -28.135771301233106], + [-55.61851423977999, -28.12870310296528], + [-55.60819383301538, -28.116132201048497], + [-55.595767635063254, -28.116237607598027], + [-55.58507645694659, -28.121782585964375], + [-55.58338346984953, -28.129036500517987], + [-55.58868014724767, -28.14340333375918], + [-55.5865379620697, -28.14788385545487], + [-55.561793746601715, -28.1655173143795], + [-55.557414306355625, -28.165816152630534], + [-55.548501291721806, -28.157411630116304], + [-55.54767217914316, -28.143518737198324], + [-55.546648020206696, -28.13523132666599], + [-55.53761566664109, -28.120360601142316], + [-55.51174087785886, -28.114076784479863], + [-55.502247881594194, -28.088006259224745], + [-55.494209452020506, -28.07729851568126], + [-55.48351822615723, -28.077757268989828], + [-55.46510389381531, -28.09428995070214], + [-55.45455401775709, -28.09924870115019], + [-55.446036751847146, -28.097998958440904], + [-55.437730287372375, -28.086438945147663], + [-55.4148073064334, -28.05570192973244], + [-55.37357151103614, -28.035309127542444], + [-55.36833159384463, -28.029435658519755], + [-55.36772461396701, -28.016097047294238], + [-55.37557257120072, -28.000556612137423], + [-55.382524338501256, -27.9967679921623], + [-55.38451117314043, -27.984138658144232], + [-55.37355558886304, -27.97523438380127], + [-55.34392847810784, -27.97255582974638], + [-55.33792218840134, -27.966127328464292], + [-55.331352948165936, -27.93985129691448], + [-55.3252339918044, -27.92913582012798], + [-55.316683828712954, -27.924684050031647], + [-55.304217018474475, -27.924987564227074], + [-55.27775453546032, -27.935300914619916], + [-55.264580693487574, -27.932152727986857], + [-55.25463968593164, -27.922673455999224], + [-55.23344873738261, -27.886086992699706], + [-55.1965318294781, -27.856562487067297], + [-55.18238205500123, -27.856868490195758], + [-55.16950062951796, -27.862113078456247], + [-55.15502508893591, -27.881556301317318], + [-55.137806844006164, -27.89554572393595], + [-55.13372030997302, -27.897076257307535], + [-55.127746570010494, -27.893822910668323], + [-55.122982970976786, -27.88467659185264], + [-55.12623706203111, -27.859944735819113], + [-55.121669207296584, -27.85386626461886], + [-55.10654220910926, -27.84660495344622], + [-55.08122354249321, -27.843419267374994], + [-55.05182364210574, -27.852789333986426], + [-55.0351477477986, -27.8587325065656], + [-55.025823174084096, -27.849087073953992], + [-55.024845040412764, -27.834140508838257], + [-55.0354121085022, -27.82349935313497], + [-55.080829247982344, -27.798399683192233], + [-55.084482929170036, -27.787295367640265], + [-55.08120533498281, -27.779286970998285], + [-55.07179900364025, -27.772904234463287], + [-55.04980812641161, -27.769730773014953], + [-55.021731493534126, -27.79542583841], + [-55.010693829337995, -27.79773659068809], + [-54.99857201728948, -27.79118278805964], + [-54.989431378798216, -27.773039820552427], + [-54.977341230488946, -27.7716153099056], + [-54.96068106018828, -27.778405589609086], + [-54.94909032002031, -27.77831508928283], + [-54.93641171331573, -27.772631173266834], + [-54.9295701170556, -27.758857318925227], + [-54.92762658162382, -27.75181236617082], + [-54.903485272808105, -27.726076976879597], + [-54.90222841016793, -27.698932992706414], + [-54.90216125533115, -27.69779468023243], + [-54.90466608109713, -27.659983858171756], + [-54.90648894062485, -27.641131036860983], + [-54.89637472896234, -27.63093346733061], + [-54.88510400779649, -27.62648143383248], + [-54.858953096972925, -27.629198496978375], + [-54.85042849628809, -27.624048927475933], + [-54.84032754260514, -27.60699455326875], + [-54.83996983394309, -27.60565220476368], + [-54.838566148306406, -27.600377381301787], + [-54.83253815013926, -27.573586454891643], + [-54.814907949353355, -27.53385142860699], + [-54.80728855308163, -27.53019071973341], + [-54.79483509181999, -27.536811849802632], + [-54.78607760688821, -27.57668865595182], + [-54.77513130730407, -27.58596784614174], + [-54.765705930799186, -27.58538484514799], + [-54.75908425677998, -27.58290807949668], + [-54.75336207015129, -27.57492525819804], + [-54.742019983296984, -27.56174664043301], + [-54.72330358489071, -27.56368613429227], + [-54.68248518902707, -27.57469945060428], + [-54.67311271092509, -27.570095187949782], + [-54.67168880139803, -27.558442384265735], + [-54.67949288785896, -27.529363911096397], + [-54.67892102014046, -27.51471643820989], + [-54.671790022260396, -27.50518029278807], + [-54.66443767916485, -27.505757916416478], + [-54.65767001537665, -27.511569872630442], + [-54.64372970308715, -27.542818058125352], + [-54.63203098673908, -27.545799966753414], + [-54.62187328558796, -27.541349144173815], + [-54.61588167540713, -27.534061012262246], + [-54.60839351030185, -27.511662230617944], + [-54.591681903477394, -27.48079278572471], + [-54.590321021273624, -27.464105908553513], + [-54.585320594771, -27.454612943372062], + [-54.574495068709076, -27.45379076827157], + [-54.56735033569238, -27.457990055338616], + [-54.5477962248656, -27.477420407449035], + [-54.536185027936185, -27.503619097518694], + [-54.53030669087726, -27.50588228146198], + [-54.5169414491562, -27.498808959044407], + [-54.51124722735479, -27.48707341905676], + [-54.50370931061813, -27.48147345966798], + [-54.47451962854474, -27.481335000663734], + [-54.45721566402081, -27.47908178541541], + [-54.444109221619115, -27.472744108414588], + [-54.4418632260686, -27.460105692668723], + [-54.44867164577195, -27.454594543025955], + [-54.46818721706726, -27.437247281847664], + [-54.469914330792434, -27.428787618854408], + [-54.462793415630486, -27.423016086103726], + [-54.43529384568774, -27.423879775963226], + [-54.425643801065405, -27.4173110331849], + [-54.41835564755995, -27.410626255972677], + [-54.416632676311934, -27.409044946854042], + [-54.410688625493385, -27.40570012545495], + [-54.39929203235492, -27.409704770000054], + [-54.38501988134902, -27.42513303917636], + [-54.36850620363985, -27.45175673635332], + [-54.359390156847425, -27.461216260808083], + [-54.34660514997952, -27.467185670198546], + [-54.33597729362466, -27.459618704525678], + [-54.3328097470492, -27.447480571164927], + [-54.3387710428037, -27.428043299738135], + [-54.33774541319865, -27.411735293410846], + [-54.338810787245876, -27.40463239266232], + [-54.3323628685151, -27.402676080416388], + [-54.318213703119234, -27.412782883619784], + [-54.3049761069816, -27.425426603327452], + [-54.29463628567196, -27.443362931476443], + [-54.28395117059359, -27.44787196235798], + [-54.26738028194322, -27.43750511961995], + [-54.2674603764915, -27.426686631086206], + [-54.26809392907298, -27.413066815796128], + [-54.26104478500414, -27.397651258981664], + [-54.249463041006464, -27.39327575773089], + [-54.22875794146053, -27.392865393426028], + [-54.216603202298536, -27.385631873462717], + [-54.21131700307733, -27.37352291502367], + [-54.21234550589603, -27.359477570913526], + [-54.210747451759374, -27.346643643511126], + [-54.20101651235124, -27.324474958008967], + [-54.19078136914592, -27.307046764733], + [-54.191231004789685, -27.29825899764579], + [-54.191918546718725, -27.29099152328506], + [-54.19145027139611, -27.288884037433753], + [-54.18533905644012, -27.265729889798287], + [-54.17247719586773, -27.254700243412078], + [-54.16473029513997, -27.254166277189857], + [-54.15600424300966, -27.263208037669294], + [-54.15433165443795, -27.270327554393383], + [-54.15758167308003, -27.29322640318516], + [-54.15491357750287, -27.29663071890268], + [-54.143793721415314, -27.2990566282634], + [-54.129923670289834, -27.30156003624277], + [-54.1113308460671, -27.302751929402817], + [-54.100165465885, -27.303466968878812], + [-54.07795319604136, -27.29728121883508], + [-54.067872918426296, -27.284492363175584], + [-54.05464019954959, -27.26412788761411], + [-54.030467725179335, -27.256500388296384], + [-54.01995918355592, -27.248240243901343], + [-54.01382511966889, -27.232764670802258], + [-54.015476694454534, -27.21762388435794], + [-54.012919306140525, -27.205411085871816], + [-54.0007081420004, -27.195409622796774], + [-53.97066995079039, -27.19814728145217], + [-53.96003347996475, -27.19432990425275], + [-53.957098522833206, -27.181216178841005], + [-53.95898480865929, -27.161111530242867], + [-53.952973530412876, -27.153754490316707], + [-53.93640859095857, -27.153951884758765], + [-53.9272450439593, -27.159989457683377], + [-53.91756995720555, -27.172928210793206], + [-53.90815981829378, -27.17627230875853], + [-53.90310980082609, -27.174577674656927], + [-53.88930091834572, -27.157926794506537], + [-53.886210182915995, -27.138360535733266], + [-53.87657591074067, -27.12616627671184], + [-53.86057936685619, -27.128290136046797], + [-53.84421637055871, -27.160816916417925], + [-53.83817400715832, -27.167682362983935], + [-53.83364483164786, -27.169553286693702], + [-53.81954344850602, -27.175376592928412], + [-53.80897487409833, -27.172708422289556], + [-53.77639181165485, -27.147708788736796], + [-53.76293749020916, -27.154206110117006], + [-53.74876120009903, -27.19049388356359], + [-53.739525392246584, -27.192880267126597], + [-53.72880392722568, -27.18884937906371], + [-53.71772599172539, -27.18240738247419], + [-53.70832496424313, -27.174971694182013], + [-53.698513455842864, -27.16905694771781], + [-53.693955263615194, -27.166995771268425], + [-53.675761686842236, -27.161131278898953], + [-53.66674283335107, -27.16209742423335], + [-53.65088644767715, -27.17689347691896], + [-53.6477593646979, -27.193265265305875], + [-53.65052604881901, -27.211618221046336], + [-53.64823750045174, -27.21812460050593], + [-53.6424829693739, -27.22083904330015], + [-53.6350247973782, -27.21899864936037], + [-53.62942455469406, -27.213101750361673], + [-53.61912819828678, -27.18880622603562], + [-53.611910992682645, -27.186005054576004], + [-53.60029565549342, -27.18904255679141], + [-53.59968534927805, -27.189251988943614], + [-53.59029040347056, -27.187384730397373], + [-53.56457592633623, -27.17341933677943], + [-53.548478694019245, -27.176086603585908], + [-53.544705284934835, -27.178928855459656], + [-53.53485167246868, -27.18906170912741], + [-53.516898729230064, -27.202226345091898], + [-53.5095982470732, -27.203849750282888], + [-53.49377163449082, -27.20366169869955], + [-53.488414661017636, -27.193794757402916], + [-53.49341180606966, -27.175161128073896], + [-53.50551757179041, -27.1591614843946], + [-53.50816349450719, -27.145217966688712], + [-53.50183976890282, -27.134626116936214], + [-53.49682110186484, -27.133564975328973], + [-53.49181361269933, -27.13250640299834], + [-53.48192418387587, -27.134727280543224], + [-53.46901370833759, -27.148158033305673], + [-53.46427207089838, -27.15410248924964], + [-53.45823473050686, -27.156010541289685], + [-53.44105702896895, -27.15032631498344], + [-53.418784258409815, -27.143721055368033], + [-53.411461929331374, -27.141107735394865], + [-53.40104607916618, -27.12940406981332], + [-53.39377362071152, -27.110666935781083], + [-53.3935550796424, -27.11004871788892], + [-53.380935410649485, -27.093958966805197], + [-53.37398252812828, -27.090557514953733], + [-53.36343554360216, -27.094105478979774], + [-53.35328342917816, -27.112006937014392], + [-53.34850422697439, -27.117552016915646], + [-53.34091034778364, -27.11967882861741], + [-53.33038941101612, -27.1188881466835], + [-53.310520507742226, -27.118528480547393], + [-53.298176130792854, -27.12715507971986], + [-53.29322406716722, -27.134306397361897], + [-53.29300144875052, -27.141476014766152], + [-53.29964898944219, -27.160311534118524], + [-53.306583618329505, -27.1768018218365], + [-53.31948884373202, -27.197300587038917], + [-53.32094449688163, -27.209589700794936], + [-53.31897451635157, -27.21650626705727], + [-53.31092861393939, -27.21839269521779], + [-53.29243128553305, -27.196588135631966], + [-53.271840489153774, -27.187167842330584], + [-53.25658627273218, -27.180186943888906], + [-53.24799531871298, -27.174639957041602], + [-53.242937294531146, -27.17067095592857], + [-53.230710875800874, -27.17166296447957], + [-53.230233094620736, -27.17188233864942], + [-53.19654228189076, -27.19163857964942], + [-53.188666232283154, -27.191487632290613], + [-53.177182625975284, -27.179026949005227], + [-53.17284886920295, -27.149239785958265], + [-53.166395180624946, -27.141214302814333], + [-53.15760383524949, -27.138620608453085], + [-53.149856755677334, -27.142320729703407], + [-53.14140683732577, -27.170593306445642], + [-53.13400728300649, -27.17819753456546], + [-53.12699309273215, -27.17868556044094], + [-53.11280870881036, -27.17013828477586], + [-53.08656105305678, -27.16333262756594], + [-53.07273615582489, -27.158280522504157], + [-53.07195910185247, -27.15732335056987], + [-53.07072064829431, -27.137009275897643], + [-53.08015810631632, -27.11536222233946], + [-53.0765452222905, -27.10358734714464], + [-53.05853361437003, -27.086280543629837], + [-53.02897013843308, -27.08054316297671], + [-53.022529305547714, -27.083576626037626], + [-53.018389949032304, -27.09079226954152], + [-53.02484796755743, -27.10586493133876], + [-53.042889311406846, -27.128556287399803], + [-53.04309422921886, -27.145958668361118], + [-53.03876499283397, -27.15460203137097], + [-53.031899704585385, -27.15724758374927], + [-53.02661065019775, -27.157151432785323], + [-53.02047437582391, -27.151816184463446], + [-53.00346842291869, -27.133386888307633], + [-52.99381991434599, -27.138233403882765], + [-52.985908838987775, -27.14988950385629], + [-52.98255488468245, -27.156621411608427], + [-52.984022821423984, -27.167558159335158], + [-52.99827315742292, -27.181046678671837], + [-53.002657223091504, -27.189982691602776], + [-53.000157336042115, -27.207186017195074], + [-52.98954011572385, -27.218424836667833], + [-52.9776749940958, -27.221135231773864], + [-52.97106301771433, -27.21779584961436], + [-52.96591424117806, -27.180192755903366], + [-52.95908225190119, -27.16343820905658], + [-52.94658787108479, -27.163749216274347], + [-52.93702849648637, -27.171852667833143], + [-52.93637547039672, -27.176447139611568], + [-52.93757338525195, -27.197321880800992], + [-52.92461787592159, -27.20247851023954], + [-52.90432002249707, -27.198830938833666], + [-52.89035589579541, -27.186908192488175], + [-52.879092134599304, -27.17830927798881], + [-52.87298084200349, -27.173981277072055], + [-52.85860258172674, -27.167683809826713], + [-52.85082268350817, -27.168584019006925], + [-52.843988694599055, -27.17805229858663], + [-52.846900525155775, -27.202547378770394], + [-52.84066638325914, -27.209213100295756], + [-52.835827692440226, -27.209943599900583], + [-52.817462095331514, -27.201334781739064], + [-52.800640332331305, -27.20264193298434], + [-52.786898172421694, -27.205031294932365], + [-52.767429100039244, -27.209339762796542], + [-52.75796944087546, -27.218288672380773], + [-52.763536993633366, -27.24341753387796], + [-52.76161529812267, -27.250182516436062], + [-52.75393890665062, -27.258330161159716], + [-52.743972714176984, -27.257049106601542], + [-52.73136314840859, -27.239723436578668], + [-52.72028898747379, -27.235016284250307], + [-52.71490817905795, -27.236888976887766], + [-52.710190387101406, -27.244382747664226], + [-52.70681649336363, -27.272875005897255], + [-52.6992788890921, -27.282062950569475], + [-52.692637768894414, -27.28394103018121], + [-52.691556404840874, -27.284160108757597], + [-52.688214440731976, -27.283085731072017], + [-52.67893478564816, -27.268208538337714], + [-52.676297948301816, -27.246610097859218], + [-52.66813563133738, -27.23840822338748], + [-52.65970157360441, -27.23790457537005], + [-52.64562075797682, -27.25996961268776], + [-52.62915535271352, -27.265654475564656], + [-52.6106867099244, -27.26335285255861], + [-52.59770704175294, -27.254176044299644], + [-52.59029549509028, -27.24826824118414], + [-52.56378654825289, -27.248719777714193], + [-52.55009604623999, -27.238481136058056], + [-52.545248315165956, -27.239964761834067], + [-52.536265997201625, -27.260087829957264], + [-52.504457207887356, -27.264893693643977], + [-52.49791178452674, -27.26518722063931], + [-52.48605875363423, -27.26691368771662], + [-52.47972220746483, -27.265351742294577], + [-52.47739189434075, -27.2627071164682], + [-52.48201092739344, -27.24518188504771], + [-52.47771669801207, -27.23402285265388], + [-52.46279078021889, -27.22879088458595], + [-52.451622868569586, -27.220786568244186], + [-52.44004821434236, -27.216729714600294], + [-52.43294932491956, -27.218381962710424], + [-52.43194805250713, -27.227739887007107], + [-52.442106943413336, -27.24913136467833], + [-52.44046400965488, -27.262667783923476], + [-52.41934697639983, -27.282740714342303], + [-52.401926825314234, -27.29244772738248], + [-52.397683352420785, -27.292557978012557], + [-52.395850137632095, -27.292605537124068], + [-52.39318739514717, -27.287959978182048], + [-52.399855555194826, -27.258481361959678], + [-52.393704064079444, -27.252375752662058], + [-52.382068929647374, -27.257652576553262], + [-52.38043603235069, -27.264336494961228], + [-52.382522809106845, -27.274231210028535], + [-52.38384278050046, -27.284783797018964], + [-52.381604354130594, -27.29404833530969], + [-52.37570162653773, -27.304248330539526], + [-52.365095122752436, -27.303773757617712], + [-52.356592508190275, -27.292436729654355], + [-52.346731437776455, -27.288228890109608], + [-52.30553415996265, -27.3182960620086], + [-52.29912766172182, -27.318639597659246], + [-52.29389449606577, -27.316260736017913], + [-52.29128559717416, -27.309002107770983], + [-52.305055007229775, -27.274935704776922], + [-52.30175556040131, -27.260019800839512], + [-52.2937834183199, -27.257753015789504], + [-52.277212468268786, -27.261966456032983], + [-52.26122184362152, -27.259047673513297], + [-52.253913460484625, -27.25746625773253], + [-52.235104082831846, -27.265571332596902], + [-52.236170601253, -27.27209961708837], + [-52.263865145576105, -27.28151766987329], + [-52.277945878223846, -27.296414951682983], + [-52.27317886573914, -27.30396094567072], + [-52.25074162381788, -27.30233419300613], + [-52.23940079642084, -27.306174214647044], + [-52.224688918817506, -27.330421562727217], + [-52.21015792008514, -27.330855127938865], + [-52.20370089774265, -27.32341852051982], + [-52.2008798682929, -27.316447092487472], + [-52.19316492996387, -27.29736640347314], + [-52.18023262593352, -27.276894074273574], + [-52.17384536499091, -27.2728412403765], + [-52.16659307039816, -27.27333645689799], + [-52.16096628233906, -27.276815440165258], + [-52.15890170829727, -27.283735111353483], + [-52.16727096935553, -27.311597982908648], + [-52.16141494662004, -27.313967818988193], + [-52.13973299752533, -27.305061645555423], + [-52.12838977953955, -27.302768543061127], + [-52.11906559973051, -27.303173930565237], + [-52.10790769654624, -27.309587582489744], + [-52.10618035504926, -27.315630353840476], + [-52.10721885694572, -27.32391816287382], + [-52.109468669818305, -27.3396218918316], + [-52.1070769061301, -27.343338894831085], + [-52.09799054174914, -27.34837403862304], + [-52.089295030690934, -27.34560394708688], + [-52.073117033132355, -27.338313409210503], + [-52.048875057712884, -27.345817563475073], + [-52.038852417625826, -27.34490771248627], + [-52.01826497733601, -27.331717605462416], + [-52.00925205544535, -27.334333806805542], + [-52.00873824302985, -27.343345995140556], + [-52.02244597559017, -27.355050106198536], + [-52.01982054557126, -27.362624204605435], + [-52.00963076885051, -27.371888554313426], + [-51.99683939323702, -27.378311879918073], + [-51.993047541033505, -27.378392738941148], + [-51.9857219074418, -27.374631846604636], + [-51.961935335203634, -27.37471606329142], + [-51.95100635080079, -27.38129665721229], + [-51.949851807388455, -27.392255640306903], + [-51.95445528347184, -27.394914042070745], + [-51.99188880427394, -27.39026422329966], + [-52.000201599871396, -27.392673169954282], + [-52.00857307795217, -27.400515968432614], + [-52.00221185350661, -27.408360096511093], + [-51.97457450878898, -27.410418028324713], + [-51.95590021266459, -27.414810430776992], + [-51.937456732978525, -27.427000524617192], + [-51.93298389683559, -27.434439736105634], + [-51.93594425606424, -27.44185823391587], + [-51.962623640269065, -27.46201763378119], + [-51.96267855657582, -27.470420615585912], + [-51.952276254968055, -27.474859762041987], + [-51.933100818895454, -27.466584889781195], + [-51.92808699636085, -27.46318079301632], + [-51.911868528195434, -27.45850580669723], + [-51.90097538126808, -27.463167374630196], + [-51.90008688409077, -27.465148488480192], + [-51.90238841632988, -27.49598921512733], + [-51.897966886741095, -27.506404655559997], + [-51.89355184886445, -27.516803769028655], + [-51.889379868386264, -27.52057886391784], + [-51.8797542522244, -27.520955708052636], + [-51.87324247294067, -27.513499062522715], + [-51.880161320306904, -27.49449607354956], + [-51.878084242163524, -27.485006211160677], + [-51.86712928606507, -27.47669226414105], + [-51.85772889620867, -27.475558426525964], + [-51.844170712208054, -27.481384925740876], + [-51.842723625950995, -27.486106451529654], + [-51.85389118868984, -27.513983148212187], + [-51.85451252099606, -27.518584217697843], + [-51.84902370737281, -27.525496737143488], + [-51.8432083843023, -27.525448194442195], + [-51.83691424294365, -27.522345729264927], + [-51.829295090177084, -27.51476799550345], + [-51.822129896299025, -27.512767145760098], + [-51.79711897087879, -27.530551391514674], + [-51.785919500702704, -27.528159083403715], + [-51.790198195667884, -27.51519176991398], + [-51.80229804283674, -27.504364033491218], + [-51.80291658447928, -27.4994684810731], + [-51.79862045159424, -27.49099717065358], + [-51.7829198940617, -27.49179982965104], + [-51.753446314366315, -27.48741168858026], + [-51.74967470442883, -27.48993148874884], + [-51.74269237191926, -27.497714788674475], + [-51.725207388297704, -27.513992106838916], + [-51.71695577368943, -27.51086500248636], + [-51.715274661974526, -27.504040749598346], + [-51.706895336520695, -27.485147447639505], + [-51.69982355472344, -27.47947534475931], + [-51.692656095353, -27.478185084657138], + [-51.68448511236429, -27.47944939952161], + [-51.677653489392256, -27.483190814137952], + [-51.67255350661325, -27.492973547909337], + [-51.6766186104682, -27.506688689731146], + [-51.66972746313309, -27.51464635212873], + [-51.65899502488864, -27.519602162437845], + [-51.65126015043981, -27.519806454441355], + [-51.646289175446064, -27.51311180055257], + [-51.64263145291747, -27.491894701916504], + [-51.63222077181082, -27.48886418437879], + [-51.62268328557978, -27.494113569695262], + [-51.61968345735595, -27.500736958206918], + [-51.63144755465985, -27.531576992041916], + [-51.62652562063372, -27.54520043879922], + [-51.6185247117906, -27.546523946600203], + [-51.607825318662066, -27.54161308313194], + [-51.59402990262944, -27.52529398336036], + [-51.58208928368677, -27.523067496236802], + [-51.57793787683565, -27.5300621452582], + [-51.58695919079135, -27.563272166312665], + [-51.58556936193582, -27.56962307218383], + [-51.57839058142712, -27.577080007059806], + [-51.56798691818204, -27.58479037646301], + [-51.560421021535255, -27.58386852790992], + [-51.5582767410386, -27.581527290650076], + [-51.55534870852145, -27.567575019660527], + [-51.5491096979566, -27.56000606668996], + [-51.53643496685376, -27.563086742105554], + [-51.508559723376884, -27.556582191194092], + [-51.49006471435501, -27.55944324254412], + [-51.477848551021445, -27.57007671923109], + [-51.4752331462282, -27.600457975266213], + [-51.47050090286918, -27.60327241043444], + [-51.45777597894004, -27.607809328290944], + [-51.440466931942815, -27.624022220548493], + [-51.43563201992008, -27.633067354104014], + [-51.43717975690966, -27.651795768489052], + [-51.43423557086828, -27.654946658715584], + [-51.42024561347011, -27.654877472088597], + [-51.41223222979408, -27.649040044606082], + [-51.411137397270956, -27.645345355919], + [-51.40522926466664, -27.632935159433444], + [-51.387745607385966, -27.623692162491714], + [-51.381860132062634, -27.625172185240938], + [-51.37007224385408, -27.636489624990613], + [-51.3770666912697, -27.662126786826867], + [-51.36956885815044, -27.67254648364208], + [-51.35199480469351, -27.68003555073595], + [-51.33153555511915, -27.67109375941616], + [-51.31808667642808, -27.67314480639978], + [-51.31348787010668, -27.677907664040788], + [-51.31289379058422, -27.683577721136924], + [-51.311019612036084, -27.695920865322478], + [-51.30207598490688, -27.702457555654167], + [-51.30900806903771, -27.712349281376145], + [-51.30878568981445, -27.71938014688322], + [-51.29351268696116, -27.72541334654367], + [-51.27610615504436, -27.723963735224014], + [-51.27252477606636, -27.730512568538362], + [-51.27301837017014, -27.735620246562902], + [-51.273640790208944, -27.74968817172166], + [-51.24759283916173, -27.75932149565672], + [-51.243131599701165, -27.775569659354897], + [-51.235085473287185, -27.779367031918696], + [-51.228249581690896, -27.77355974886077], + [-51.2222918378647, -27.76976094622669], + [-51.2093327109627, -27.776858689063523], + [-51.188575783940266, -27.777747730966375], + [-51.171274919572305, -27.79200629760804], + [-51.17070413412528, -27.792490589747676], + [-51.1549458320278, -27.803772854808845], + [-51.134341875297395, -27.804800885111614], + [-51.1330645855347, -27.80628031601679], + [-51.13125570661161, -27.83028959084577], + [-51.125441696223916, -27.83295240982457], + [-51.124585479800615, -27.832923769514252], + [-51.10374402077971, -27.827723645741578], + [-51.08773413524761, -27.831837110369865], + [-51.07785715000266, -27.84124897393951], + [-51.0804628569969, -27.85901832512976], + [-51.0734074792147, -27.86471836175149], + [-51.05907867446018, -27.865494083274157], + [-51.05195198691086, -27.87013011100336], + [-51.0554616545911, -27.887046148604693], + [-51.05786310617416, -27.900416439559883], + [-51.05002982045235, -27.907971272637443], + [-51.018628926624075, -27.92395458682804], + [-51.016106688517056, -27.928241609155837], + [-51.02079879138166, -27.944572481495175], + [-51.01915998076018, -27.956383311347103], + [-51.00704889262254, -27.965072513065664], + [-51.001210274698, -27.963312578658474], + [-50.99310490008598, -27.945271115576517], + [-50.986353025125624, -27.94185416498185], + [-50.98027840037702, -27.94563439461492], + [-50.97962428773375, -27.94795355901156], + [-50.97757239329652, -27.95286499153187], + [-50.945289515422196, -27.969032642045114], + [-50.92883407255869, -27.969048944026873], + [-50.92450126113173, -27.980572501861243], + [-50.92943263524339, -27.99061678613731], + [-50.9207771642223, -28.000689384529984], + [-50.92291714116907, -28.011839020179654], + [-50.90379498600647, -28.016596118422267], + [-50.89385247009661, -28.020031631389358], + [-50.87746057748611, -28.0375754122081], + [-50.874943941187745, -28.041330217270016], + [-50.875437505304895, -28.05521801012835], + [-50.88194496648341, -28.068023431647944], + [-50.90034205845486, -28.078137448210303], + [-50.90359330885218, -28.08687077332787], + [-50.898698118734096, -28.08979333653535], + [-50.88161420030926, -28.090731820662977], + [-50.87607430859158, -28.09476408588161], + [-50.86886499955465, -28.10974758164746], + [-50.87496014904545, -28.131875514638192], + [-50.86782598115376, -28.139412417935517], + [-50.86007520981075, -28.139777071733924], + [-50.836046738909126, -28.118798822406443], + [-50.828458962143614, -28.119170938021874], + [-50.818519734854526, -28.140471236815618], + [-50.78961661256438, -28.139240680276057], + [-50.784847553457816, -28.145519177131703], + [-50.79233167786389, -28.160470867951293], + [-50.78260303868904, -28.176145313197278], + [-50.78898322557373, -28.189526968396855], + [-50.78866495867048, -28.198360988391215], + [-50.777914999312074, -28.200388566094436], + [-50.766668443627466, -28.188344088830075], + [-50.76160315509857, -28.19222367862515], + [-50.7602144532094, -28.20542175096306], + [-50.75863091971259, -28.20984236050374], + [-50.7524517603558, -28.233023000616196], + [-50.75386524104296, -28.242986844199287], + [-50.749203679012076, -28.248872226243336], + [-50.74198654992225, -28.249709377745482], + [-50.711824922210845, -28.265578284025583], + [-50.69830603131452, -28.26662922086431], + [-50.695226689178625, -28.270633217886164], + [-50.694542135083154, -28.288693419925824], + [-50.680769491755086, -28.297945224934356], + [-50.65938572043395, -28.32199482662964], + [-50.66510201602579, -28.337903075305416], + [-50.65194391008364, -28.34326846795313], + [-50.62833836113435, -28.363981765959593], + [-50.63276472546136, -28.379433790955524], + [-50.62510257953724, -28.391417639721997], + [-50.61236074513762, -28.393138131959972], + [-50.59776038920652, -28.380907331518088], + [-50.59167675137031, -28.382101326236636], + [-50.57649927470496, -28.39377966284422], + [-50.56279509722858, -28.414443386866477], + [-50.549713792243026, -28.420146074113603], + [-50.544130652212, -28.427086975105343], + [-50.53168882135612, -28.42819514201525], + [-50.52798484762277, -28.42245269131662], + [-50.531369250204165, -28.40609735609006], + [-50.523383035426995, -28.403239368813317], + [-50.51018794564044, -28.405820129179258], + [-50.49895077899934, -28.412606126617387], + [-50.47055074253209, -28.414848426065955], + [-50.45606529083729, -28.410716710015237], + [-50.44813580753931, -28.422345159085143], + [-50.430976657922734, -28.43260675171867], + [-50.42430261723854, -28.432893298229267], + [-50.3966954361731, -28.4329440407301], + [-50.388302288782846, -28.444049663396857], + [-50.378688871432054, -28.446165861524367], + [-50.37642950349886, -28.44440411446823], + [-50.37554763652978, -28.434391413458265], + [-50.36829376836968, -28.42220098085164], + [-50.357155352793264, -28.42074111855392], + [-50.34836831338878, -28.428597901051536], + [-50.35151500635013, -28.455252459961507], + [-50.345746195989015, -28.463312231214708], + [-50.33671413979958, -28.45851088066508], + [-50.33934251582123, -28.440319567516987], + [-50.32826238203306, -28.434203669584676], + [-50.30029455204092, -28.440473661793444], + [-50.292752490460124, -28.450497165742412], + [-50.292259492111455, -28.45101369436274], + [-50.29157878525248, -28.451318721970477], + [-50.27164483894195, -28.456693215287537], + [-50.251756875781325, -28.44896185816872], + [-50.26286624120528, -28.445871112109124], + [-50.26368624795474, -28.442914968289106], + [-50.24758272207538, -28.428861941916143], + [-50.24168377198593, -28.432770326829992], + [-50.234658027151745, -28.45792812228653], + [-50.22304962529234, -28.46289426331692], + [-50.21476155112802, -28.459865006388384], + [-50.20461083779497, -28.44537670805796], + [-50.20011252681174, -28.44440961279101], + [-50.18882709379279, -28.452722615057166], + [-50.178746403585414, -28.451782386659705], + [-50.166578233976246, -28.467886460415723], + [-50.16168394175557, -28.49499787347891], + [-50.15717712722036, -28.49768331498646], + [-50.13936555063817, -28.494646983405403], + [-50.14585642657208, -28.4768911401819], + [-50.160143357796365, -28.460483970403015], + [-50.15721580423858, -28.458165572041683], + [-50.14740245353759, -28.45956010624903], + [-50.1456509114012, -28.44644162461318], + [-50.12653831571695, -28.437645875858593], + [-50.13014246480759, -28.431370644798548], + [-50.12671935454367, -28.429040321561573], + [-50.11575175287056, -28.43698205177951], + [-50.111353475435315, -28.44513742585146], + [-50.11602882803028, -28.455037576766824], + [-50.12658364533022, -28.463582858210376], + [-50.12652308526567, -28.473046118923644], + [-50.1218490298001, -28.475948230091774], + [-50.10783408596771, -28.473058501184276], + [-50.099851195761616, -28.485541795866805], + [-50.086451230653545, -28.472837743599698], + [-50.07280979690007, -28.480530084991933], + [-50.06864597733413, -28.479128525163574], + [-50.06061268868014, -28.475616261435345], + [-50.03633826558806, -28.47781174472715], + [-50.02559612621586, -28.47122875562306], + [-50.01962161976436, -28.451534521443676], + [-50.01637427002242, -28.45011950891575], + [-50.012899992728016, -28.450777532625054], + [-50.00273011762681, -28.4572828821888], + [-49.98761895617237, -28.45588447691936], + [-49.9884941710033, -28.444810636479993], + [-49.97154586772764, -28.439116928773082], + [-49.966850845707704, -28.455453363953012], + [-49.95886565447098, -28.449651769571727], + [-49.952323329474964, -28.450392019544438], + [-49.95122098831862, -28.46640364574691], + [-49.94421047977183, -28.482398876495257], + [-49.92856646202578, -28.470771655737874], + [-49.930739039880336, -28.463571389612245], + [-49.93798781756044, -28.45841560333137], + [-49.92873123153353, -28.451093109568966], + [-49.91482646920252, -28.459499122321112], + [-49.9004019780925, -28.463977425875974], + [-49.888634259548574, -28.458028348348996], + [-49.897646874673164, -28.44494577569485], + [-49.893075555836866, -28.44001462992521], + [-49.887971878186875, -28.441877272781717], + [-49.88306079113109, -28.447355031815214], + [-49.87130381345954, -28.44104006942217], + [-49.85996284179962, -28.442059337908454], + [-49.85482298433244, -28.44394031428479], + [-49.85893586763758, -28.449008262714], + [-49.87269383767566, -28.45073747036764], + [-49.87740065931363, -28.454612858973526], + [-49.86366972475481, -28.462840180836732], + [-49.863869514294336, -28.473670090697397], + [-49.8693471372227, -28.48064526781779], + [-49.866345798411814, -28.48764606829109], + [-49.84139181783387, -28.484816705398494], + [-49.84543582915023, -28.493248240452004], + [-49.83981009144007, -28.496185798489844], + [-49.825904247643706, -28.478176539979938], + [-49.81102779140338, -28.483783412754832], + [-49.81602330594417, -28.478358105464483], + [-49.81695823251035, -28.469062566450315], + [-49.81056882415875, -28.46780938700464], + [-49.802811972924886, -28.48386021824738], + [-49.791317030184885, -28.49517566834502], + [-49.783399718768365, -28.49620196469719], + [-49.78104302784404, -28.494533364559675], + [-49.786007577576534, -28.48814252440622], + [-49.77842988418017, -28.475807983948744], + [-49.78181870714535, -28.47212263116462], + [-49.7730548720865, -28.467282253501292], + [-49.768672290187546, -28.459507951328295], + [-49.7647113297472, -28.459994844560494], + [-49.765475123317316, -28.482798169394982], + [-49.771018540444416, -28.492916909198616], + [-49.76269958680944, -28.5021407418898], + [-49.74534636167178, -28.49386320367467], + [-49.739799986028096, -28.499987295812318], + [-49.74405055768793, -28.506880836687813], + [-49.73718127286436, -28.510552503629317], + [-49.73662686403589, -28.51203428385029], + [-49.72920502310354, -28.514615193339182], + [-49.7270894669582, -28.519212863809617], + [-49.74675845596223, -28.536190863816007], + [-49.74898459106252, -28.545588718860856], + [-49.73047262848932, -28.55198649794153], + [-49.72546912771105, -28.569905332701804], + [-49.71994178351394, -28.576905386249454], + [-49.711487745298584, -28.57331995359419], + [-49.70817422379122, -28.583073081730365], + [-49.712693043773605, -28.594152743113263], + [-49.70986639499848, -28.60464285027082], + [-49.698931296063016, -28.606635764569408], + [-49.69162766018748, -28.61889337306717], + [-49.69358485942952, -28.62495631239003], + [-49.70304996304096, -28.62892376600108], + [-49.70467565839189, -28.6294842214061], + [-49.70739216636008, -28.63069897609037], + [-49.70620374375981, -28.627820848857393], + [-49.71558523946926, -28.624024419738745], + [-49.728260816283516, -28.623356241183473], + [-49.75466416166263, -28.628902598259632], + [-49.758216662951114, -28.615493315327214], + [-49.77208762954584, -28.62796251552636], + [-49.7809017489255, -28.63022063078179], + [-49.78506046718673, -28.622650290872507], + [-49.782536563164285, -28.611340658924714], + [-49.78858664634701, -28.613199687849658], + [-49.794428339581465, -28.615798903374362], + [-49.802691738489365, -28.62922126174724], + [-49.80812808202444, -28.629924421877174], + [-49.80918774680526, -28.635747653704485], + [-49.81732314389601, -28.64059536645683], + [-49.81470184658207, -28.649588212347652], + [-49.81842336362569, -28.654040232358554], + [-49.80924981675512, -28.654161709400466], + [-49.81275692230099, -28.658469406457797], + [-49.822600545835584, -28.661948823603208], + [-49.82956730840714, -28.66899170728183], + [-49.837552193488236, -28.66712150714198], + [-49.839944601217375, -28.677259795234587], + [-49.83539257411806, -28.679235564771414], + [-49.83618155592308, -28.685290958446558], + [-49.833942488145475, -28.68831162731051], + [-49.823181825488405, -28.68818232775077], + [-49.82075457358644, -28.6938629188299], + [-49.832113147041476, -28.69488568809674], + [-49.839146823438206, -28.702189808440483], + [-49.84102116495951, -28.707710897784207], + [-49.83619308350109, -28.70855640418948], + [-49.839548299812506, -28.71490145893294], + [-49.8400568757616, -28.71483418542611], + [-49.843307378199505, -28.713593290444187], + [-49.84640656547338, -28.70540738544012], + [-49.86327228727238, -28.703009484775105], + [-49.86045523193175, -28.699997934233934], + [-49.87165683408191, -28.704281502491625], + [-49.868760902752776, -28.70404908683448], + [-49.867068715355366, -28.709942271828837], + [-49.87051852056831, -28.714425414198516], + [-49.866319085188536, -28.71542990201904], + [-49.87070281521867, -28.721167804213312], + [-49.86619438875599, -28.72109156406312], + [-49.880166154188196, -28.736238734137498], + [-49.8756582526233, -28.74483040814244], + [-49.88861164504726, -28.74663267071541], + [-49.88737109613758, -28.740574455344657], + [-49.89184072897268, -28.73957036428551], + [-49.88500648288701, -28.729882441281674], + [-49.881736603848175, -28.72138927999203], + [-49.88528057274385, -28.718506533515413], + [-49.89437028064885, -28.724695679085773], + [-49.90471737088615, -28.72026775902837], + [-49.914638585279995, -28.724861632846217], + [-49.908939913995724, -28.715591099140426], + [-49.905225513877674, -28.707242646678896], + [-49.91399300106136, -28.715743601144286], + [-49.92543970172497, -28.718924820521693], + [-49.93538147074499, -28.728056379302313], + [-49.93101996864954, -28.740502059030987], + [-49.921997239257706, -28.74609540112305], + [-49.92838441413612, -28.751656904304493], + [-49.92802408631792, -28.756079142847767], + [-49.93691498388966, -28.759000791935364], + [-49.95010899963336, -28.755173960833428], + [-49.9461293468856, -28.76586012556329], + [-49.947865518987, -28.77040112362533], + [-49.95158147578791, -28.768421935513306], + [-49.956774811386445, -28.77124432298903], + [-49.954314070991025, -28.776643721916493], + [-49.95901390494908, -28.779254866513618], + [-49.95288469441183, -28.78403729503218], + [-49.956679190385046, -28.791415016707194], + [-49.95333330135952, -28.79758440993957], + [-49.94762806620655, -28.79831729796994], + [-49.94692710557221, -28.806170479655194], + [-49.96280497417895, -28.801575352126456], + [-49.96267999384545, -28.809856769631313], + [-49.969099477176094, -28.8231235119691], + [-49.96997315169782, -28.82901722138721], + [-49.96128066308032, -28.83264751557861], + [-49.96426409863073, -28.859250889077043], + [-49.97212522873825, -28.880688226972826], + [-49.9690187759126, -28.881049615758158], + [-49.95517492842961, -28.87520488657055], + [-49.95888265484922, -28.88316941845861], + [-49.95925492858379, -28.895763613201684], + [-49.966016928125676, -28.916352986297618], + [-49.971165833173764, -28.924273920528396], + [-49.9646810714138, -28.92762471500339], + [-49.95581152606386, -28.94690155779354], + [-49.956537080794824, -28.961757080616305], + [-49.93780756746994, -28.965377153052636], + [-49.93437224648219, -28.97443781964336], + [-49.91989080316757, -28.97834913713045], + [-49.93614068126285, -28.98522956593267], + [-49.938503380209475, -28.97869093795861], + [-49.9440082046113, -28.98592267673945], + [-49.941898544708195, -29.00145765583021], + [-49.946074914977785, -28.995966488688055], + [-49.951499514992875, -28.99944550901731], + [-49.957687177343274, -29.010651083744843], + [-49.955514946055764, -29.01199774109242], + [-49.96313000629902, -29.02052040239264], + [-49.96477945017573, -29.022553057221664], + [-49.94906651923446, -29.021035729612123], + [-49.947194146194946, -29.01793568303663], + [-49.93832901955498, -29.020937306324416], + [-49.947116146339766, -29.027783347156063], + [-49.9459377147785, -29.03322427015167], + [-49.95549674031449, -29.035466338780214], + [-49.953334689537854, -29.03935052323297], + [-49.958703282318616, -29.04361342736381], + [-49.959206667874184, -29.049351903163803], + [-50.007445342222105, -29.07215238548461], + [-49.991495841592325, -29.070092713845863], + [-49.988628990421304, -29.07565494856464], + [-49.98537885480178, -29.07162484111853], + [-49.987463066028475, -29.0690749445924], + [-49.967909603619006, -29.064618980914517], + [-49.968051416058074, -29.068072397009217], + [-49.964141189393, -29.0646843039856], + [-49.95691494246812, -29.066174615586153], + [-49.95673488926619, -29.06215782050924], + [-49.94613943001289, -29.05559736173545], + [-49.94006037971071, -29.05713489275438], + [-49.94252329529413, -29.064704828462478], + [-49.95216850599648, -29.062976397904674], + [-49.94819717332356, -29.06969283015869], + [-49.95626249112791, -29.068776081609865], + [-49.96023905428184, -29.070936483251312], + [-49.95413138931679, -29.076234626056458], + [-49.95449985735624, -29.085465018179324], + [-49.967477719464, -29.08391879589367], + [-49.96721978261297, -29.095323540754404], + [-49.96285358539086, -29.100321064911913], + [-49.969522891289905, -29.101495360330496], + [-49.96997377962809, -29.104560690468436], + [-49.96776122482517, -29.115524720740662], + [-49.96433755555852, -29.114612746929616], + [-49.962858644991755, -29.117914714407245], + [-49.969051405219346, -29.120921895033955], + [-49.968546881317636, -29.116492591777025], + [-49.98240257715008, -29.120168730688988], + [-49.9839611230872, -29.117632072403836], + [-49.99217258765281, -29.11878477257085], + [-49.98427938835277, -29.133232298405225], + [-49.986863139236235, -29.136592065456412], + [-49.991201512442714, -29.134944852888577], + [-49.990330588998255, -29.128701636475775], + [-49.99702941420718, -29.133169819659482], + [-50.01404590267207, -29.12822211016526], + [-50.0058813840689, -29.134597672594115], + [-50.0052317210759, -29.150866650948714], + [-50.01020658646989, -29.151700374958526], + [-50.009863778618104, -29.15731545844441], + [-50.019401230381206, -29.154391916044215], + [-50.01807540499424, -29.164033540631053], + [-50.0205014773195, -29.166993431701812], + [-50.0269980032483, -29.164370201007475], + [-50.024019571811614, -29.16652649226601], + [-50.028142741893575, -29.17103953220183], + [-50.019797148252295, -29.17417559254565], + [-50.021762837644516, -29.178834725037145], + [-50.01481127877671, -29.181651349779248], + [-50.03052287040068, -29.18070002336373], + [-50.034700185772344, -29.176988683571906], + [-50.04233830284313, -29.183931807088417], + [-50.051908936308, -29.18640718777768], + [-50.055953841420184, -29.18377525035545], + [-50.065844336863385, -29.19145471311031], + [-50.06059728848856, -29.176919374835236], + [-50.07658084959561, -29.190283479290617], + [-50.079323032092375, -29.185757328966865], + [-50.076206102262944, -29.183003422657418], + [-50.086126648197954, -29.178752763743752], + [-50.07938318154479, -29.17591015628335], + [-50.09022982654314, -29.175528492812674], + [-50.09245150301353, -29.167450011884643], + [-50.077037655209296, -29.16130515671248], + [-50.07800212757734, -29.15766230924811], + [-50.067005162880626, -29.15941645784724], + [-50.080610922612905, -29.15580390543731], + [-50.0820821296017, -29.160252331586136], + [-50.099409308708196, -29.163865204642462], + [-50.096091139333545, -29.166153887119425], + [-50.09890240602313, -29.172771388304916], + [-50.09390621282676, -29.176282621933968], + [-50.09760526573717, -29.18056602927809], + [-50.09137748111239, -29.18065766194157], + [-50.088725149397185, -29.18467850648868], + [-50.0932016154663, -29.19553029815419], + [-50.08568820596921, -29.193613436958827], + [-50.092710207007784, -29.199178937859347], + [-50.0859356238767, -29.199307467476906], + [-50.09310796391809, -29.221022319258548], + [-50.08542711471924, -29.21559068895121], + [-50.08809760225526, -29.22291348063692], + [-50.08395587506431, -29.227957525594455], + [-50.0940303044822, -29.237829433205267], + [-50.0987327244377, -29.236231890967673], + [-50.09299478680932, -29.223729516581017], + [-50.11199270475114, -29.240261584418853], + [-50.10863916847766, -29.230486314049937], + [-50.113213995590456, -29.225389123665728], + [-50.110164261968116, -29.222004351602934], + [-50.10146828453145, -29.22524603712972], + [-50.09379933287666, -29.21330656032087], + [-50.115689047370836, -29.209287803524884], + [-50.11606639083229, -29.20569790393014], + [-50.12985543095813, -29.201870597292697], + [-50.12327607170956, -29.19801740648869], + [-50.13773832162144, -29.19946132092739], + [-50.13925067279897, -29.192632920990206], + [-50.152535678338054, -29.20180273841253], + [-50.15137105600568, -29.204250110666212], + [-50.140690803512605, -29.201881186390672], + [-50.133887739879754, -29.20881747537352], + [-50.13324053910487, -29.216562848260327], + [-50.14778806896552, -29.220004310148035], + [-50.1457297126436, -29.226353011824898], + [-50.150550842418255, -29.22992855546884], + [-50.14217031058396, -29.231008476194326], + [-50.14166034347656, -29.238176636162056], + [-50.17496510469913, -29.249651117783884], + [-50.16138462843143, -29.24903803843351], + [-50.15774157433495, -29.252760636695456], + [-50.150261356299445, -29.249711692560428], + [-50.15091929647821, -29.2580534153072], + [-50.13851589730369, -29.254963982082877], + [-50.14601255885489, -29.2580969599819], + [-50.147735996507784, -29.263933590616293], + [-50.144993382015706, -29.27618557701854], + [-50.15042718497094, -29.282476875104276], + [-50.150570918180065, -29.284874396717566], + [-50.145260018894085, -29.283473419665256], + [-50.1477418518745, -29.288205512177218], + [-50.14164128987671, -29.28805672466379], + [-50.14278704765366, -29.29230700587706], + [-50.138890029702125, -29.29256492925206], + [-50.136176735085286, -29.299254855780536], + [-50.12889285508829, -29.303642589997754], + [-50.12790678204698, -29.298531779448883], + [-50.13089039956191, -29.286002551311753], + [-50.12354479738267, -29.281802492725358], + [-50.12197312259949, -29.28802144962273], + [-50.116349450371246, -29.291946614924505], + [-50.11838918235059, -29.297580960871443], + [-50.106924744637396, -29.29824706501805], + [-50.10541568605886, -29.301020863423552], + [-50.11007541245198, -29.30488162820964], + [-50.10150748247871, -29.31051897757812], + [-50.089838663180096, -29.31077657393368], + [-50.08454551505839, -29.3165210839102], + [-50.086771315485024, -29.323421889401615], + [-50.078854532319475, -29.320345184488353], + [-50.07288062510994, -29.320120269401745], + [-50.07148264816824, -29.323266305463548], + [-50.06454855056942, -29.321647660902755], + [-50.073271414079805, -29.327844075541805], + [-50.057762361806894, -29.327668693456577], + [-50.05928046654071, -29.336745780003568], + [-50.065027774042946, -29.3413069582629], + [-50.04992050123089, -29.33931771318613], + [-50.03727515423255, -29.35136529280835], + [-50.03379405071842, -29.349571617505894], + [-50.0632173002863, -29.312012938785198], + [-50.07386599010393, -29.30949124895185], + [-50.09290547922945, -29.29682362847652], + [-50.10203441401769, -29.28375105923922], + [-50.10848241285377, -29.280761490603695], + [-50.11466606053151, -29.259238988184652], + [-50.108494790746605, -29.258013536638355], + [-50.1068576934796, -29.25441198809038], + [-50.089931160516755, -29.254504382726573], + [-50.06922708445376, -29.246465053423375], + [-50.06580079301153, -29.249332579229925], + [-50.064153169304745, -29.2437371166114], + [-50.06414676571908, -29.243716203584004], + [-50.0422304171617, -29.240691416445962], + [-50.03473896754644, -29.23382446918909], + [-50.00722843612904, -29.225404153997765], + [-50.000544964737095, -29.22705372670073], + [-49.99685053776533, -29.227894874520818], + [-49.99020458190086, -29.22461725788384], + [-49.981497772132826, -29.219891752989742], + [-49.973514262543375, -29.21363770177214], + [-49.9701548456062, -29.20982268233865], + [-49.969733092376494, -29.20317573911638], + [-49.96249803173501, -29.199133144684694], + [-49.95478541982235, -29.19950519449091], + [-49.95821734308439, -29.200222317023954], + [-49.94544573011367, -29.20187018643737], + [-49.93546107173378, -29.208281184349097], + [-49.91379064939867, -29.207849267063356], + [-49.90135243282932, -29.215181904492724], + [-49.880788248205754, -29.220413083638437], + [-49.876856349976684, -29.224920435905332], + [-49.869191342494844, -29.224559091777706], + [-49.860237042045256, -29.23121831106073], + [-49.85808296767018, -29.241758714977507], + [-49.85745048101208, -29.244705107066515], + [-49.85429729002685, -29.24557876420278], + [-49.84895366548313, -29.247060178862636], + [-49.85210981304962, -29.249351798710908], + [-49.854865309009796, -29.25700515252329], + [-49.842089785042575, -29.260579493133267], + [-49.843054194077986, -29.27184246099815], + [-49.8472046188322, -29.273572288359247], + [-49.83877133729132, -29.279089916609806], + [-49.83685803275655, -29.275262663771837], + [-49.82444990796579, -29.278160034170455], + [-49.82134390245206, -29.28317318689504], + [-49.81761407336046, -29.286329747831513], + [-49.811917067732935, -29.283839774860425], + [-49.809384843955506, -29.28701464475525], + [-49.795689804513536, -29.289318422565874], + [-49.79180535280439, -29.285554806697352], + [-49.78662760975282, -29.288309929944322], + [-49.773142598099916, -29.298410786662462], + [-49.76234313226201, -29.30024569693314], + [-49.75019324785641, -29.29777830739106], + [-49.73875853509521, -29.301528907164144], + [-49.74236354883583, -29.302070714812974], + [-49.743834795006144, -29.31135431157203], + [-49.738253619196364, -29.315246766154207], + [-49.736255643209425, -29.310462467223175], + [-49.73025214818284, -29.317658133807072], + [-49.74345981069504, -29.320472843084858], + [-49.74658897689173, -29.32469757327867], + [-49.74479714660066, -29.328570218996827], + [-49.73635889632143, -29.32544469263554], + [-49.72971411432382, -29.329121714096086], + [-49.71169880321688, -29.325787538199826] + ] + ] + }, + "RO": { + "name": "Rondônia", + "coordinates": [ + [ + [-62.86652402593562, -7.975881654522046], + [-62.853269036533284, -7.987576656885544], + [-62.84496423465636, -7.986544630144487], + [-62.84151833611474, -7.9949861447073385], + [-62.83274188179043, -7.994385012345766], + [-62.82091180545404, -8.014509054105863], + [-62.80990535526043, -8.025353191515284], + [-62.78610922052014, -8.02635654191188], + [-62.74388164332631, -8.04529967204558], + [-62.72452685116567, -8.069211732514123], + [-62.70632578009512, -8.085326647076913], + [-62.69218970934883, -8.092922093239382], + [-62.69046490190116, -8.100918127331092], + [-62.679052315010125, -8.111686698763089], + [-62.685410183085985, -8.116451513093804], + [-62.674020704564605, -8.136966930362268], + [-62.672937631608995, -8.145324617674481], + [-62.67907516689616, -8.16079022600327], + [-62.68516419867585, -8.165732562702782], + [-62.68657419107015, -8.173788589853773], + [-62.6734348717638, -8.192749270736796], + [-62.6597987164999, -8.199647959194426], + [-62.65093662376323, -8.222044527821959], + [-62.65491204748413, -8.229070825856196], + [-62.6498564693299, -8.237040729027227], + [-62.61027356280852, -8.259814963140476], + [-62.599968324200454, -8.272253327049853], + [-62.592682078722326, -8.274984403831748], + [-62.58529873438235, -8.271895225030864], + [-62.58141472427659, -8.278639994053325], + [-62.574104768601806, -8.280667493510931], + [-62.56913667954161, -8.287293228578914], + [-62.561830024667785, -8.28402133593803], + [-62.5561751127417, -8.304296685887886], + [-62.56107344945667, -8.313846588224742], + [-62.555183861025945, -8.31940194210204], + [-62.55569495162875, -8.327451108512706], + [-62.54902581879006, -8.342157850482897], + [-62.5514382384971, -8.358209683684473], + [-62.53946843944211, -8.358124505980461], + [-62.5319146458834, -8.371043867714326], + [-62.52537992795515, -8.375362231020079], + [-62.526047606748, -8.383069573337695], + [-62.518384215119696, -8.384753308335558], + [-62.500740264692126, -8.366142642918055], + [-62.48685963440786, -8.359227083062962], + [-62.478827229794234, -8.34568825626373], + [-62.47288150497228, -8.340767660091021], + [-62.465386201401365, -8.339754781627368], + [-62.453680430649605, -8.349187764780616], + [-62.44524219362467, -8.362498097558845], + [-62.43215968151554, -8.372043022102678], + [-62.41613259633849, -8.376642541077088], + [-62.399936409443455, -8.374818075414092], + [-62.38393988447611, -8.377570747366024], + [-62.36499447310139, -8.391037008154619], + [-62.359883479092225, -8.407012662638058], + [-62.361132338728716, -8.423704991659097], + [-62.36919335180271, -8.446134301373611], + [-62.36363291523779, -8.478242563830403], + [-62.36596294218833, -8.49357717167752], + [-62.35999600871259, -8.506378992964706], + [-62.35389055769716, -8.511716898685085], + [-62.33727155947641, -8.51665350520374], + [-62.333135333499094, -8.527778360433096], + [-62.33424760026994, -8.546210043277481], + [-62.32571785143567, -8.563723106203707], + [-62.32763764626908, -8.572552414922274], + [-62.341911801103954, -8.594859133299728], + [-62.340997317921236, -8.602844698915073], + [-62.3356909655664, -8.609500514171964], + [-62.289415985085974, -8.639112636109152], + [-62.2812177571689, -8.638605931068746], + [-62.27924793805923, -8.629185923955017], + [-62.29422111566702, -8.605456664799666], + [-62.28927032054047, -8.58892028993502], + [-62.274192791719145, -8.582947739771287], + [-62.26880189047833, -8.575774298828648], + [-62.24272394982825, -8.580677394446909], + [-62.22836648228282, -8.590589991445908], + [-62.20305354688555, -8.594962615338776], + [-62.18830211533044, -8.590574419151114], + [-62.17460543845607, -8.62821880180096], + [-62.176556391606034, -8.636934722929148], + [-62.19571921413463, -8.636843877409078], + [-62.200444518712565, -8.64430869958353], + [-62.18135561105319, -8.65789487474516], + [-62.17541642409524, -8.664158653409407], + [-62.165001191645075, -8.679409834167013], + [-62.17168690191181, -8.695091074147182], + [-62.16772022032653, -8.703244021374362], + [-62.15410731499622, -8.71045497353263], + [-62.148716251986535, -8.71832507023238], + [-62.15694624238478, -8.732228492304465], + [-62.12488663755114, -8.801687722473755], + [-62.10959961177173, -8.805111004868852], + [-62.097917889013786, -8.808937995512151], + [-62.07421695408785, -8.798586689335474], + [-62.05043720059589, -8.79628658864544], + [-62.030976170346186, -8.799726515532273], + [-62.02124852419673, -8.823614408330167], + [-62.00218433371575, -8.832714437193022], + [-61.99435672228228, -8.848883183449857], + [-61.99013671039581, -8.872675471316006], + [-61.98513753564939, -8.878623007785965], + [-61.979055608034706, -8.873261292772543], + [-61.93005391360746, -8.880512115864779], + [-61.90580175652674, -8.874526942666582], + [-61.90291647098948, -8.862909147170138], + [-61.879215822202006, -8.862456736823065], + [-61.85996510511793, -8.853101719288102], + [-61.86366069438353, -8.83147977824151], + [-61.86249925710425, -8.823484082818755], + [-61.85677816150904, -8.818252237689437], + [-61.8609404633509, -8.80363170367621], + [-61.855603411255856, -8.789045497678018], + [-61.843216874106844, -8.779425097754304], + [-61.84402371569284, -8.747396972908254], + [-61.8364161598574, -8.732738422918018], + [-61.82802337153524, -8.73264131401644], + [-61.806161803970014, -8.74779768476708], + [-61.80240488843546, -8.747191521448336], + [-61.78993754366948, -8.745178462848775], + [-61.77452121411554, -8.748244730478985], + [-61.76202885956626, -8.737168103326953], + [-61.76352659987477, -8.728812299899019], + [-61.74879708855807, -8.723785801234397], + [-61.74004502776283, -8.709880777100924], + [-61.744357380985214, -8.702567763019427], + [-61.741769434219705, -8.6952083791881], + [-61.725886723186605, -8.693617922689269], + [-61.713189635369055, -8.687868195456234], + [-61.70527636539719, -8.707541935693984], + [-61.69743938066328, -8.709599582614192], + [-61.673495907522586, -8.705032276404658], + [-61.65033182447882, -8.713572989735395], + [-61.645996922922635, -8.72071491190333], + [-61.630470734880454, -8.721973887183156], + [-61.626384959914795, -8.728868952381132], + [-61.6294687166012, -8.752971772265408], + [-61.62321412646091, -8.758269799723967], + [-61.60594404049932, -8.794729705250015], + [-61.59002183097068, -8.794511029476103], + [-61.58305111853247, -8.79870476084517], + [-61.5830345325056, -8.79872663784806], + [-61.580016774516274, -8.802707063564787], + [-61.58001480176508, -8.802709665623473], + [-61.56828145311325, -8.801099911917246], + [-61.5682722013966, -8.801098642451164], + [-61.542996723154054, -8.819112113102246], + [-61.54299479784924, -8.819113485187959], + [-61.523503797413454, -8.818613740936406], + [-61.523492826564556, -8.818613459342998], + [-61.513638198676105, -8.836967595598841], + [-61.51140952701469, -8.863656697695045], + [-61.492055000858166, -8.884850451560789], + [-61.484564611250285, -8.905808587985119], + [-61.48451910125606, -8.905935930717883], + [-61.48441908036997, -8.906007025016754], + [-61.46841122978769, -8.917385034509973], + [-61.492772981374024, -8.942390942658372], + [-61.49294237802226, -8.942564786364834], + [-61.52052757958812, -9.000567228427599], + [-61.52057360672932, -9.000684892013481], + [-61.52788314261635, -9.019368227206252], + [-61.53057477300857, -9.04190000776752], + [-61.530591522873415, -9.042040169267413], + [-61.54153686016795, -9.053997271120279], + [-61.54162743802561, -9.054243751210876], + [-61.55566086368965, -9.092419703444321], + [-61.558807368887706, -9.117618304206774], + [-61.55528707155089, -9.131514241922712], + [-61.53882047009544, -9.153135515638747], + [-61.5387351595404, -9.153247530755118], + [-61.538697595376796, -9.15334416717053], + [-61.531809743871825, -9.171064172221518], + [-61.52354967295226, -9.179036402758006], + [-61.52025004955499, -9.191755909140896], + [-61.52022990101582, -9.191833582067407], + [-61.52027809567628, -9.192077728947135], + [-61.528001104072494, -9.231183768094606], + [-61.524771747905575, -9.242873685482982], + [-61.53262162944593, -9.24890964638514], + [-61.53262826049936, -9.248904588820421], + [-61.53901206557337, -9.24403555373061], + [-61.53902249370504, -9.244035419356802], + [-61.55189230465731, -9.243869347312728], + [-61.551892611347455, -9.243869258232367], + [-61.57489754022365, -9.237186686111489], + [-61.57497426738064, -9.23716439067691], + [-61.57497433853704, -9.237164375307769], + [-61.58901158935657, -9.243691329351476], + [-61.58907767623578, -9.243769059577435], + [-61.599522549555644, -9.256053041491967], + [-61.628248988153636, -9.25711587436943], + [-61.633236761566344, -9.270546386373436], + [-61.63326594369133, -9.270624956121335], + [-61.630746213915174, -9.279882204423373], + [-61.630723911709424, -9.279903004312384], + [-61.626226137788116, -9.28409777642771], + [-61.626221547315325, -9.284102057629772], + [-61.61541996078104, -9.278715486483174], + [-61.61534322114203, -9.278677215056838], + [-61.61534316840209, -9.278677235447724], + [-61.6124046722627, -9.279813338365992], + [-61.61242156368041, -9.27996607504292], + [-61.615329924650325, -9.306251883502362], + [-61.61125214333487, -9.315746105595382], + [-61.61610080234452, -9.326779031767774], + [-61.61612926332085, -9.326843788096488], + [-61.62470912616111, -9.336443198886478], + [-61.62472684157428, -9.336530945927596], + [-61.627781026090624, -9.351656155105395], + [-61.625857807791924, -9.362965599892888], + [-61.625846870847035, -9.363029919380818], + [-61.62584680579057, -9.363029885726837], + [-61.625761996415804, -9.362986013442416], + [-61.6121767879976, -9.355957709279208], + [-61.61216626271197, -9.355952263553432], + [-61.61004846060313, -9.362534373536745], + [-61.59463777024205, -9.368693698521966], + [-61.59456461632172, -9.368722935243474], + [-61.59456454353475, -9.368722944021563], + [-61.57373866847647, -9.37073400570496], + [-61.552544511518974, -9.388256483498976], + [-61.55243166998945, -9.388349773354086], + [-61.55960045899432, -9.393120769448563], + [-61.56141499705622, -9.400570563099983], + [-61.561355000832876, -9.40066522210554], + [-61.55051529273056, -9.417767570371147], + [-61.55580933662312, -9.421809554558024], + [-61.55663924254804, -9.435633410554217], + [-61.564587489056, -9.438373870044236], + [-61.581638044941265, -9.459145058618404], + [-61.572393441497844, -9.463628057261351], + [-61.57836094072883, -9.469497042376679], + [-61.57839948502939, -9.46953494864526], + [-61.576896649102004, -9.474495207801722], + [-61.576896578045, -9.474495223507033], + [-61.576871438919284, -9.474502786993874], + [-61.56897717852917, -9.476876041990481], + [-61.56264440989732, -9.485790206535661], + [-61.52589099775341, -9.501746789049637], + [-61.525732233430105, -9.501815709823182], + [-61.52587672479946, -9.501878819029223], + [-61.54731435060477, -9.511240757390057], + [-61.54947314836803, -9.515236010062637], + [-61.52703705210642, -9.533282222579375], + [-61.527032526289524, -9.533285862735282], + [-61.51337430478515, -9.52855426616579], + [-61.513362243267196, -9.528550087307487], + [-61.51400772075495, -9.539200226504605], + [-61.514011725894356, -9.53926628884954], + [-61.51401165363888, -9.539266301317483], + [-61.51400010311547, -9.539268620161764], + [-61.50795090355162, -9.540481929819332], + [-61.51027858234632, -9.565111113067058], + [-61.50458323911178, -9.56796126428903], + [-61.503082105717006, -9.573016471157144], + [-61.49636106939833, -9.574397203394074], + [-61.49497586565935, -9.584057939190139], + [-61.49496735837282, -9.584117275837428], + [-61.495013451808, -9.584297987894129], + [-61.502940062059466, -9.615365217113698], + [-61.49570468707828, -9.624745286971342], + [-61.49566499331689, -9.624796746380134], + [-61.49566492116833, -9.624796759305887], + [-61.4874024413307, -9.626563722890912], + [-61.487358984295675, -9.626542870107954], + [-61.480878197977624, -9.623432624084604], + [-61.48087030309811, -9.62342883502961], + [-61.47675208360061, -9.628710691024663], + [-61.47672764156345, -9.628742039251268], + [-61.47683637137642, -9.628935303796636], + [-61.49398026408952, -9.659401388529437], + [-61.506803147135734, -9.661975181289135], + [-61.5021895674729, -9.679867830659727], + [-61.50519245651419, -9.691401229747694], + [-61.519582459514304, -9.697053229002707], + [-61.53233798020025, -9.711796293239638], + [-61.546001317438446, -9.715426509138615], + [-61.54600365449922, -9.715423754423277], + [-61.552970639999955, -9.707211643796285], + [-61.55297888015366, -9.707215691045558], + [-61.574557759503634, -9.71781291485359], + [-61.5729315544518, -9.723975944672256], + [-61.57292235535241, -9.724010808366534], + [-61.572892055279134, -9.724037054472822], + [-61.56669791997537, -9.729402398859854], + [-61.56669724254707, -9.729402985640755], + [-61.55517959949197, -9.729099265128307], + [-61.555170044194185, -9.729099012983353], + [-61.53142189327056, -9.739931578094268], + [-61.53253178117101, -9.758003937651626], + [-61.547276799242816, -9.78756139463298], + [-61.53831240366835, -9.793453094631182], + [-61.52483426021346, -9.795750229757951], + [-61.52519535176356, -9.807653291365448], + [-61.53203570059118, -9.819778515610679], + [-61.51816547678947, -9.823042607711333], + [-61.515423760779946, -9.843435156665267], + [-61.50783477365176, -9.861101950222624], + [-61.508394110967735, -9.872919541997488], + [-61.50839733095629, -9.872987543408671], + [-61.51099782734848, -9.895581646298748], + [-61.511081857612645, -9.895648281564297], + [-61.52489039986802, -9.906597270788051], + [-61.52306420521485, -9.9280530879008], + [-61.52869007907585, -9.93491370401572], + [-61.52361726851037, -9.941360733447784], + [-61.5232517407631, -9.948507302139934], + [-61.532332193967044, -9.952653100796171], + [-61.53933709915902, -9.964120307769846], + [-61.52789441071523, -9.97045191824327], + [-61.53110377682928, -9.989750745798526], + [-61.531123786882844, -9.989871041261905], + [-61.54151495081622, -9.995665050524563], + [-61.540043065784396, -9.999546083616764], + [-61.540319961387794, -10.001375523282036], + [-61.54041003788241, -10.00159461372088], + [-61.55578261939417, -10.03897367890452], + [-61.57164894647509, -10.046544340723166], + [-61.584284060013054, -10.059631725766003], + [-61.57861945902047, -10.07926686145119], + [-61.58301077667133, -10.082493612934513], + [-61.583206589788134, -10.095698094694049], + [-61.59101247112181, -10.111226886099399], + [-61.59008932938226, -10.121483402618601], + [-61.60144794319511, -10.156462946492548], + [-61.60151425224275, -10.156667085603653], + [-61.59974510906357, -10.15919503965807], + [-61.59972882094112, -10.159212325788316], + [-61.59672746837031, -10.162397563583582], + [-61.59672687193491, -10.162398196558277], + [-61.57849511667109, -10.163221713201617], + [-61.57848246622516, -10.163222284264966], + [-61.558695109068694, -10.176455829168516], + [-61.558599729631275, -10.17651961500414], + [-61.55860602861497, -10.17661459602892], + [-61.55970005173426, -10.193103572770383], + [-61.55164105658342, -10.19779803946279], + [-61.573927645923185, -10.208981185732581], + [-61.57351627613214, -10.219312569006602], + [-61.57753261919616, -10.226600708918108], + [-61.57666545011862, -10.248480136706563], + [-61.5766608215104, -10.24859701731233], + [-61.562112008855536, -10.272015464790273], + [-61.56207118911163, -10.272056100904187], + [-61.55451488508117, -10.27957831925599], + [-61.544010229025346, -10.301016717701959], + [-61.553257774563335, -10.307027959834073], + [-61.54803073071245, -10.316411557588042], + [-61.540808481151274, -10.320245681340245], + [-61.533661616198195, -10.331903858192682], + [-61.533660267316314, -10.33190605852217], + [-61.52141211306692, -10.33080499717586], + [-61.5214024148415, -10.330804125132559], + [-61.51608776307041, -10.33445860448559], + [-61.51181181801409, -10.350425798335358], + [-61.501644894527104, -10.353798867085876], + [-61.503034505899414, -10.37594834478619], + [-61.49697791617175, -10.389604117114416], + [-61.496977904665215, -10.389604143058394], + [-61.49676999560613, -10.389623077708036], + [-61.48947571787303, -10.39028729889393], + [-61.48397693422915, -10.400173483449933], + [-61.47142646132654, -10.405164488482837], + [-61.47681499611127, -10.410617517982214], + [-61.476849754462734, -10.410652690804536], + [-61.4761067755039, -10.418454045641996], + [-61.47610670687885, -10.418454012176486], + [-61.46927510542225, -10.415122373925392], + [-61.46927504055705, -10.415122390661303], + [-61.464285858595304, -10.416627103210367], + [-61.46427062907763, -10.416646588052616], + [-61.46170467880896, -10.419928272313577], + [-61.467002727825104, -10.448517696628965], + [-61.475978184379215, -10.454750832120897], + [-61.470118260711864, -10.461442489427919], + [-61.48072681822623, -10.48777148948121], + [-61.479003688555174, -10.52965628209542], + [-61.478993880549396, -10.529895048260896], + [-61.478925892618555, -10.529955471178422], + [-61.46623324765377, -10.541235526273274], + [-61.47003293305404, -10.556554654482857], + [-61.479872413458416, -10.56917813947275], + [-61.47737462673101, -10.589707654008944], + [-61.48142112601514, -10.596788431221318], + [-61.47614887245217, -10.60768800046022], + [-61.489506686533645, -10.629828030367696], + [-61.4788702600706, -10.643068372457611], + [-61.482284179955165, -10.653363759544632], + [-61.48162286213527, -10.669167455381777], + [-61.48439624785021, -10.673791505500851], + [-61.49278470398319, -10.675745678088532], + [-61.49284067140044, -10.675758715194144], + [-61.495780168920234, -10.683361552696292], + [-61.495797225483095, -10.683457176315912], + [-61.498741996135124, -10.699962864927109], + [-61.48087389154269, -10.714802298562034], + [-61.48087277554301, -10.714803225362978], + [-61.472331770174314, -10.71499662721422], + [-61.472318600244506, -10.714996925250052], + [-61.476292010654184, -10.722527899510279], + [-61.48626331959603, -10.727196283384242], + [-61.4883125277075, -10.736501902228936], + [-61.480786296163366, -10.744223564976007], + [-61.48137781861581, -10.760197557503867], + [-61.47634188618171, -10.767818764913617], + [-61.48020318830377, -10.785605264554588], + [-61.47375879001573, -10.797536982499507], + [-61.48595444791087, -10.800635653033892], + [-61.4859577225461, -10.800632955623572], + [-61.49168526856164, -10.795914954101388], + [-61.495429413309054, -10.782531554480281], + [-61.49544103323778, -10.782534229108665], + [-61.50520709375522, -10.784781928724342], + [-61.505306380272785, -10.789459329235013], + [-61.51100914597831, -10.794840433014759], + [-61.50726437269115, -10.796849827999093], + [-61.50334705502977, -10.80846961749939], + [-61.51244794835067, -10.822227625837092], + [-61.50947063702839, -10.830757575356456], + [-61.509453877899375, -10.830805590629554], + [-61.510136994282774, -10.837036533066819], + [-61.52129522913517, -10.84255395573366], + [-61.52131703462444, -10.842630827167275], + [-61.52506157322697, -10.855829848767186], + [-61.52372107628574, -10.88165532848727], + [-61.52371340956839, -10.881803138587516], + [-61.523731610157036, -10.881826347196588], + [-61.52678395732545, -10.885718451227433], + [-61.519041899248734, -10.894538643470094], + [-61.524229530010935, -10.904773476666945], + [-61.51423110419384, -10.907412252257961], + [-61.5187613902376, -10.917203205472102], + [-61.518788003869204, -10.91726071890512], + [-61.518813312822694, -10.917393387749799], + [-61.523180600626524, -10.940280148340115], + [-61.51943388393504, -10.949723817405381], + [-61.51989329119315, -10.950136556128893], + [-61.52458846565363, -10.954354604223536], + [-61.52725410142361, -10.956942664353292], + [-61.52753384249762, -10.957214257826587], + [-61.530013224439905, -10.979044826381697], + [-61.53002642951488, -10.979039916665354], + [-61.53850663059584, -10.975886824713244], + [-61.53851322193474, -10.97588821742848], + [-61.54672396075764, -10.97762295496381], + [-61.55061853684556, -10.980999530611827], + [-61.550183892396866, -10.986119000732506], + [-61.55018380246923, -10.986120060032409], + [-61.51433105330602, -10.98655063531671], + [-61.51399629156145, -10.986554640235463], + [-61.51399621849349, -10.986554641107487], + [-61.48375054140668, -10.986912769982546], + [-61.48375046833842, -10.986912770847425], + [-61.42892822578223, -10.987559206221375], + [-61.42892815271587, -10.987559207055906], + [-61.42680176305529, -10.987582895666927], + [-61.426801689988864, -10.987582896500994], + [-61.39019673818427, -10.988008718122426], + [-61.00052163024007, -10.992262764704112], + [-61.000520099955295, -10.988374472785774], + [-60.95026219243812, -10.98857519261114], + [-60.94977094703544, -10.988577117648491], + [-60.94977087402034, -10.988577117974378], + [-60.94819694341675, -10.988584981337304], + [-60.94819687040149, -10.988584981663369], + [-60.831954610313275, -10.98901992407981], + [-60.83195453730448, -10.98901992433096], + [-60.828924553302436, -10.989030013264076], + [-60.8289244802934, -10.989030013515531], + [-60.806294875950584, -10.989109787729069], + [-60.80629480294392, -10.98910978795865], + [-60.80277303551932, -10.989119628834363], + [-60.459981665179804, -10.989877699649998], + [-60.459977606855254, -10.989877706278305], + [-60.45239211263891, -10.993300082209313], + [-60.45011077407805, -11.008483671697983], + [-60.44162182076812, -11.016814985487995], + [-60.44162156150435, -11.016815239932216], + [-60.437872065214464, -11.016706797847705], + [-60.437865628596725, -11.016706611647344], + [-60.44652369108626, -11.042174398763512], + [-60.446524113182534, -11.04217564009967], + [-60.43561260327607, -11.041821220402278], + [-60.42962817629584, -11.037517088885126], + [-60.42962638538668, -11.037515800769933], + [-60.41403868176779, -11.043506586487588], + [-60.411454177901355, -11.046758165932093], + [-60.41142379965833, -11.046796384774446], + [-60.41146214432081, -11.047071024589185], + [-60.41431412395669, -11.067492134897341], + [-60.40825730535392, -11.071250259631691], + [-60.40825455131106, -11.071251968425184], + [-60.40407018790541, -11.069398815447972], + [-60.40406617827386, -11.069397039627015], + [-60.39578471999237, -11.08046508948741], + [-60.39148202887713, -11.093814258301235], + [-60.38367620606757, -11.096244610350722], + [-60.383550975566855, -11.096219613207438], + [-60.373173128659126, -11.094147438210562], + [-60.37316883914699, -11.094146581616187], + [-60.3702539858106, -11.099034695896552], + [-60.34789927101763, -11.10905720555659], + [-60.34789535469859, -11.10905896125389], + [-60.344116419760994, -11.104903405604261], + [-60.34681177911324, -11.09920367879326], + [-60.34189415882923, -11.082655266923558], + [-60.34835797330542, -11.074070590313223], + [-60.34836281452551, -11.074064160542823], + [-60.334478176973576, -11.08290834665794], + [-60.3344742270433, -11.082910862568381], + [-60.31744947910163, -11.065115952930235], + [-60.30914102264433, -11.064047026881385], + [-60.30117853721061, -11.057175533761317], + [-60.30117590958732, -11.057173266032246], + [-60.291368449781736, -11.06550947131663], + [-60.29136747951901, -11.065510296006], + [-60.282287329460225, -11.064037622780038], + [-60.28228243208361, -11.06403682840426], + [-60.278009748844916, -11.079388037400127], + [-60.27795125106858, -11.07959821859695], + [-60.27798832994746, -11.079756271953721], + [-60.28075606669842, -11.091552696170563], + [-60.270925773461855, -11.098712887530066], + [-60.27092221628644, -11.098715478436539], + [-60.26509340962041, -11.093683576527601], + [-60.265092504507436, -11.093682795126409], + [-60.24873372426049, -11.096889192630373], + [-60.24872847117686, -11.096890222125689], + [-60.238782511421306, -11.09496397925161], + [-60.23877968385712, -11.094963431575426], + [-60.22742424794893, -11.105455708246035], + [-60.22742351372256, -11.105456386642661], + [-60.210482523988944, -11.106828935404584], + [-60.21047847671158, -11.106829263201869], + [-60.20717673166045, -11.111777371837109], + [-60.198927613016195, -11.114114195531728], + [-60.18754182117351, -11.111658705907335], + [-60.18893098187109, -11.108122730559293], + [-60.18872096284668, -11.107959720121602], + [-60.17753238857288, -11.099274782541245], + [-60.159204671010585, -11.095675043905398], + [-60.15920117176862, -11.095674356485302], + [-60.15239216948249, -11.100899196071149], + [-60.15239064661896, -11.100900364608155], + [-60.147956384626575, -11.099284064143358], + [-60.14795300400863, -11.099282831858098], + [-60.142423383407674, -11.105760660528896], + [-60.1424219134878, -11.105762382486175], + [-60.1305674877478, -11.10089441883514], + [-60.13056439565247, -11.100893148972963], + [-60.12033951238555, -11.10691829074344], + [-60.12033677380288, -11.106919904436788], + [-60.11262190036397, -11.102562050492203], + [-60.11261925630349, -11.10256055687962], + [-60.1047835745368, -11.109202373599214], + [-60.09612474374982, -11.11080762876017], + [-60.09611934467043, -11.110808628688709], + [-60.08928668679284, -11.108922714079354], + [-60.08977941010018, -11.10048273329358], + [-60.084177573916975, -11.096866973426097], + [-60.08417450352325, -11.096864991534853], + [-60.0749511295806, -11.105045023563008], + [-60.06664209346725, -11.12552913583876], + [-60.066641963625734, -11.125529455935883], + [-60.04398280651463, -11.124291597253604], + [-60.03737026308387, -11.117376314242156], + [-60.037367567426145, -11.117373495018658], + [-60.030613700813994, -11.128218293527821], + [-60.030512803257096, -11.128380304492788], + [-60.03051273003487, -11.128380312143413], + [-60.019321836136115, -11.1291194560688], + [-60.0193173934681, -11.129119749421214], + [-60.015675788177, -11.116307310281453], + [-60.015673979799686, -11.116300947057496], + [-60.01306393029736, -11.122542652859478], + [-59.995277931822535, -11.125194389318102], + [-59.995274537617235, -11.125194895269116], + [-59.99114013520763, -11.123607475016176], + [-59.98677935092344, -11.114539385415657], + [-59.986778377318636, -11.114537360705137], + [-59.98386849468791, -11.116275354674952], + [-59.9838315092757, -11.116297444856361], + [-59.98371023036485, -11.116401457132827], + [-59.97670521442046, -11.12240904737249], + [-59.97987085079687, -11.139823196667615], + [-59.97987521600079, -11.139822357226173], + [-59.989037733660396, -11.138060246702022], + [-59.989037413770134, -11.13806093621128], + [-59.98486392001366, -11.147056694045343], + [-59.994951024038116, -11.148223610336887], + [-59.997699785108324, -11.1513799976555], + [-59.99583582085188, -11.157003527131355], + [-59.98891815148711, -11.161252453499197], + [-59.98751060138501, -11.171128615831645], + [-59.98034081708344, -11.179610101490944], + [-59.97113993309268, -11.18022368867441], + [-59.969725496307305, -11.18537074072191], + [-59.9639509704318, -11.189136367749585], + [-59.96778573406869, -11.19788517409893], + [-59.97581404730072, -11.19860797596325], + [-59.97691828532111, -11.203308261233792], + [-59.98105849650836, -11.203782598346457], + [-59.984334266245654, -11.215219698722178], + [-59.98199838718752, -11.233233468573502], + [-59.98196112542281, -11.23352086066088], + [-59.981756220204886, -11.233802867566764], + [-59.96784027855279, -11.252954509399736], + [-59.968448654699124, -11.266425721459392], + [-59.960367514637994, -11.2774197997817], + [-59.959397130521076, -11.294754628132893], + [-59.949951326968474, -11.304425216392803], + [-59.92770313407575, -11.310455240287173], + [-59.91732366540958, -11.33792287470544], + [-59.91712248563122, -11.338455269906357], + [-59.91713590302263, -11.33861492741742], + [-59.917788249962385, -11.346376176241877], + [-59.924453853787995, -11.352288160441748], + [-59.92237066630005, -11.355677036609995], + [-59.9253664666971, -11.361797115288217], + [-59.91991897588997, -11.381179877720797], + [-59.919833754021695, -11.381483115369575], + [-59.91988310856828, -11.381691755794], + [-59.92283942704192, -11.39418769312965], + [-59.920563937200065, -11.398028549488064], + [-59.92767119892783, -11.412785295820195], + [-59.92587014202013, -11.41546208128218], + [-59.925843426629825, -11.415501786349601], + [-59.925996041652446, -11.415648801238289], + [-59.93434261578275, -11.423688565689185], + [-59.93434672159407, -11.42368809707235], + [-59.941950109838636, -11.422820189426126], + [-59.941950206638474, -11.422820525027092], + [-59.94469629162262, -11.432340285243367], + [-59.95228167069898, -11.436443614055989], + [-59.9761709370337, -11.439243777969457], + [-59.98518571354342, -11.468863839436208], + [-59.98533747660336, -11.469362360837373], + [-59.98566757116436, -11.469543332111282], + [-60.002342786964284, -11.478684288911316], + [-60.007842819889184, -11.486522720911603], + [-60.01556715002072, -11.48862283336642], + [-60.01786048531219, -11.495934050814189], + [-60.01789912566872, -11.49605722950205], + [-60.027532016523175, -11.496371924679478], + [-60.027532080155275, -11.496371922462428], + [-60.027581729872274, -11.496328530613514], + [-60.031168050571296, -11.493194199480625], + [-60.03116846268368, -11.493197691674597], + [-60.03171423325505, -11.497822159317733], + [-60.03172322059171, -11.497898306018593], + [-60.031722385740416, -11.497987187025945], + [-60.03167089123298, -11.503473835961211], + [-60.02664934441358, -11.505697999406081], + [-60.0412364544986, -11.516467289848304], + [-60.04145534856819, -11.51662887665929], + [-60.05360521365339, -11.533470121078363], + [-60.053664138319846, -11.533604609720074], + [-60.05739484109021, -11.542118934613681], + [-60.07964222151473, -11.552917864847068], + [-60.07862687808524, -11.556339367451498], + [-60.086468667897456, -11.5608778673087], + [-60.08662236416003, -11.560966815323157], + [-60.08662241165272, -11.560966842808368], + [-60.08668215122624, -11.560878193528326], + [-60.09071000405662, -11.554901093208601], + [-60.0907117228991, -11.554905144975804], + [-60.094090502912515, -11.562869330797177], + [-60.087144962142794, -11.568149521873302], + [-60.087149471967, -11.568149432334632], + [-60.09831661589702, -11.567916815721684], + [-60.09920475399803, -11.57084880520175], + [-60.091589498602865, -11.576075730837953], + [-60.10153952527394, -11.577382707742464], + [-60.0943709359634, -11.585904434278879], + [-60.09437645585336, -11.585903296893676], + [-60.11084021762224, -11.582510459917081], + [-60.110840628799444, -11.582511388437503], + [-60.11481443715267, -11.591484421450172], + [-60.1105376463969, -11.595503247347663], + [-60.114004171973846, -11.60347074083358], + [-60.10983860858552, -11.615562812355993], + [-60.115231774571626, -11.619298105209674], + [-60.111029794514415, -11.620838282358573], + [-60.11098618292315, -11.620854267263427], + [-60.11103570261692, -11.621089897652256], + [-60.11412341928602, -11.635779902845186], + [-60.111566178051504, -11.642939012693573], + [-60.11740074703515, -11.6433472950626], + [-60.1156801063484, -11.668750605405036], + [-60.115652454056175, -11.66915903884199], + [-60.118933662255294, -11.671985211772133], + [-60.11892956148547, -11.672118982996942], + [-60.11867580489565, -11.680399685473851], + [-60.12234139934138, -11.682424449011291], + [-60.117422529948826, -11.689058290861857], + [-60.11861746929695, -11.702101054439199], + [-60.11612495933953, -11.706729429383405], + [-60.12159220759548, -11.712126680723832], + [-60.11242100952543, -11.722278233222765], + [-60.116622995817046, -11.729320134759512], + [-60.11115243298704, -11.748285248286697], + [-60.10787423780403, -11.748893532403214], + [-60.10731963275896, -11.748996438372638], + [-60.10731507197208, -11.748997284614235], + [-60.112312538508576, -11.759278461544728], + [-60.11125698849363, -11.7629960710236], + [-60.1055111981304, -11.763731752586848], + [-60.10703889231845, -11.770102115264836], + [-60.102925535218034, -11.772536862959797], + [-60.10878988095372, -11.775775230801964], + [-60.109086222835096, -11.780577140731117], + [-60.109086402517974, -11.780580051936116], + [-60.104430854872696, -11.778252848710993], + [-60.10442777398115, -11.778251308591596], + [-60.10101361194478, -11.780644214944797], + [-60.10543191394188, -11.782522195166713], + [-60.10282026534533, -11.790067141666775], + [-60.10842906632586, -11.793141728424404], + [-60.09678640808714, -11.795346925622185], + [-60.09662603961134, -11.800946677232737], + [-60.09663064479586, -11.800943392759327], + [-60.10070987355187, -11.798034000356282], + [-60.10071100605564, -11.798035412231336], + [-60.10459784235431, -11.80288089100977], + [-60.10459787258941, -11.802880928700588], + [-60.104271570192296, -11.802938942457764], + [-60.09884937582104, -11.803902909809688], + [-60.1015354690756, -11.814591219970609], + [-60.09566453810715, -11.818207318435407], + [-60.09560195836249, -11.818245862583318], + [-60.095698465857446, -11.818257776508307], + [-60.103290853194615, -11.819194944092956], + [-60.0992089573851, -11.830046724664198], + [-60.10227926137962, -11.832143045545012], + [-60.10233788656358, -11.832183072343168], + [-60.1024499430822, -11.83231372237951], + [-60.10869774495629, -11.83959779862629], + [-60.1087018654604, -11.839602602292613], + [-60.101066782532115, -11.835432437914335], + [-60.10106359403948, -11.835430696314454], + [-60.097838819709594, -11.839880148657798], + [-60.09879273959332, -11.84557836069626], + [-60.09381509361258, -11.849184951121668], + [-60.09617704306135, -11.85886217945088], + [-60.0961798708442, -11.858873764157691], + [-60.09253713046061, -11.853171879114237], + [-60.09253602824726, -11.853170153775164], + [-60.089366885924946, -11.855178654196783], + [-60.0910686629497, -11.861149624246776], + [-60.08843492784815, -11.862635320982983], + [-60.08843222026881, -11.86263684832126], + [-60.08325636439378, -11.858512980720642], + [-60.0832537731817, -11.858510916090445], + [-60.07987873778722, -11.86228824721471], + [-60.0853686851876, -11.86770348208966], + [-60.07845736794199, -11.870243481649554], + [-60.07484006050324, -11.87972689902086], + [-60.07656050658263, -11.885311409462275], + [-60.07656090802685, -11.885312712472698], + [-60.073393225966, -11.884528398424262], + [-60.07331781254591, -11.884509725571402], + [-60.073317785642125, -11.88450974757864], + [-60.06045871285725, -11.89502804286339], + [-60.060458639712074, -11.89502805385185], + [-60.06045855795398, -11.895028067070767], + [-60.04697334225806, -11.89713514797576], + [-60.04243181982784, -11.892990878026106], + [-60.041984452509155, -11.89258262641859], + [-60.0419825263472, -11.89258086866501], + [-60.03337241528197, -11.898716129045456], + [-60.03336968076575, -11.89871807751167], + [-60.02981879773511, -11.895007047739949], + [-60.02981799852995, -11.895006212465058], + [-60.02465035020085, -11.897551528501188], + [-60.024648355962825, -11.897552510740027], + [-60.0120098425991, -11.893063388796822], + [-60.01200784290769, -11.893062678447482], + [-60.0068209347128, -11.89470604369573], + [-59.995372556806174, -11.909335799853501], + [-59.985728433950605, -11.912103115126937], + [-59.983398599860664, -11.920563271487246], + [-59.988672279340584, -11.929510287586242], + [-59.980471273925275, -11.946180971744852], + [-59.980314755702544, -11.946499131826123], + [-59.98042641572825, -11.946729195959184], + [-59.9869228044348, -11.960112951382396], + [-59.971289502359255, -11.969968761718881], + [-59.97425944552091, -11.976338092297462], + [-59.96940356130301, -11.982694217601143], + [-59.9703141823952, -11.989043321477705], + [-59.979512763756205, -11.991310057889521], + [-59.97065691915053, -11.997785871659168], + [-59.97053849897839, -11.997872463623288], + [-59.970477660354106, -11.998013116453254], + [-59.96651004011737, -12.007185826582118], + [-59.97459311228077, -12.01513028729095], + [-59.97928538867033, -12.02957326561668], + [-59.96951138863588, -12.032498615891676], + [-59.96564773366824, -12.04626392308732], + [-59.96140486800443, -12.050464898534152], + [-59.961928433693565, -12.056390483883906], + [-59.95684555711891, -12.056479727066268], + [-59.9568419586822, -12.05647979130454], + [-59.95173657613644, -12.065633858757382], + [-59.94712233843962, -12.065774199428683], + [-59.94679201839934, -12.066008456592515], + [-59.92920808900243, -12.07847805166601], + [-59.92370295914564, -12.093788291780385], + [-59.91551151043426, -12.097863411490453], + [-59.91525103315699, -12.097992990612823], + [-59.91497271626275, -12.098338372518748], + [-59.89973581251066, -12.117246037853304], + [-59.90009161674355, -12.169828208982947], + [-59.90009894353793, -12.170899251450944], + [-59.91074744266714, -12.186480206512377], + [-59.90861759719131, -12.194658725835112], + [-59.90847635254098, -12.195051319839724], + [-59.90120652572312, -12.215258107565235], + [-59.90164701516781, -12.223902807070772], + [-59.89353457031773, -12.232784007073693], + [-59.89229203767504, -12.245227452824558], + [-59.89226707107491, -12.245477514144113], + [-59.89226699774908, -12.245477519535243], + [-59.88627724503726, -12.245495546677631], + [-59.88475423616449, -12.246794515907304], + [-59.774285650868144, -12.340979310019959], + [-59.79287406387921, -12.345805549167787], + [-59.80204503785686, -12.357417837988931], + [-59.805428928084666, -12.368645850425775], + [-59.819188754323875, -12.378772090146798], + [-59.81870341574298, -12.389912807869504], + [-59.823766408427645, -12.39050663052718], + [-59.83248236730858, -12.401422813459801], + [-59.83505019485696, -12.41322134094986], + [-59.8424816902137, -12.424873153579156], + [-59.841285462147646, -12.45939446089566], + [-59.84403921264391, -12.467034716838773], + [-59.84409776443621, -12.467197157650606], + [-59.84435958216496, -12.467453163312776], + [-59.85579034766248, -12.47862908585669], + [-59.86842041588983, -12.482389208772297], + [-59.868422545670676, -12.482388406853689], + [-59.887942044831945, -12.475038081446169], + [-59.887945227961886, -12.47503849757687], + [-59.89683010500828, -12.476199849125715], + [-59.89683015428399, -12.476199174824865], + [-59.897194449589854, -12.471214434741427], + [-59.89719881049028, -12.471215411299315], + [-59.90435549893281, -12.472817920735794], + [-59.90445239367197, -12.472839615498298], + [-59.90450519705128, -12.47296386562738], + [-59.90759926098513, -12.480243987470406], + [-59.90760369659771, -12.480243687780519], + [-59.91378864358629, -12.479825737905545], + [-59.91378871715239, -12.4798257301151], + [-59.92559797677645, -12.481849268240039], + [-59.92582954902825, -12.481976658670057], + [-59.93515898758251, -12.487108525065906], + [-59.936316143280735, -12.495090027756383], + [-59.95740660679944, -12.502236973963894], + [-59.97333857648503, -12.530390816302235], + [-60.000873683805516, -12.536251402517548], + [-60.00687605956582, -12.545741991310985], + [-60.026574904703864, -12.561654192107849], + [-60.02803962355763, -12.579368567017935], + [-60.03448988535579, -12.5949995370677], + [-60.062656324347316, -12.607337248869673], + [-60.06323700233578, -12.607591546211909], + [-60.06866996202678, -12.616022596425477], + [-60.06373654474146, -12.628731299960956], + [-60.06298648900909, -12.641857264612105], + [-60.06320222850898, -12.642183450281191], + [-60.07801576525631, -12.664576698569885], + [-60.076125210297256, -12.68848982551671], + [-60.08725586961732, -12.715951998783355], + [-60.0874453841791, -12.716419471506729], + [-60.09062359215674, -12.736680392328777], + [-60.09038135724983, -12.737234250284297], + [-60.074570895096095, -12.773383242078323], + [-60.077668200433564, -12.803590494123668], + [-60.077719078969885, -12.804086430721778], + [-60.07783209528635, -12.804630236182167], + [-60.08463070374559, -12.837331374513104], + [-60.07904700865951, -12.881169310613915], + [-60.087890454140826, -12.902100153779676], + [-60.08804130580063, -12.902457129813818], + [-60.08834552353636, -12.902761413927747], + [-60.10507534983969, -12.919492398800335], + [-60.117099801177325, -12.959583004325067], + [-60.13079409837754, -12.961698017040892], + [-60.13972916904248, -12.97023383881894], + [-60.139732077486364, -12.970232188904038], + [-60.15056623849593, -12.964085871931857], + [-60.15056775729613, -12.964087074722805], + [-60.15648825795469, -12.968775505849422], + [-60.167350428509465, -12.97067070883212], + [-60.16735337419799, -12.970670151536188], + [-60.183278905888095, -12.96765672444268], + [-60.18328007345341, -12.967657415976511], + [-60.189212140762784, -12.971170744674872], + [-60.19200019492816, -12.98208359174664], + [-60.2013508541952, -12.988147999622296], + [-60.204465983155536, -12.995542790319732], + [-60.20450744367255, -12.995641204442977], + [-60.20463970506047, -12.995807779135903], + [-60.2135913767725, -13.00708077804697], + [-60.21522687585359, -13.027008799933078], + [-60.22015482466972, -13.027740941333194], + [-60.22462780866948, -13.03356833391495], + [-60.237433587138874, -13.034935350784036], + [-60.24121497391646, -13.03843236867725], + [-60.241272574133816, -13.038485635489751], + [-60.24137042708296, -13.038718316213581], + [-60.24827799377513, -13.055141258301486], + [-60.25330259126842, -13.05638534139853], + [-60.26755066256987, -13.077313108251765], + [-60.28292641994855, -13.080580978460244], + [-60.282464962714094, -13.093273073078132], + [-60.28245967130456, -13.093418675166085], + [-60.28423088462169, -13.098932654064217], + [-60.28418284508426, -13.0989670280192], + [-60.279109579358206, -13.10259705777029], + [-60.28230332601163, -13.106191335231673], + [-60.27705522742006, -13.112706990331128], + [-60.280944255865236, -13.119974910041934], + [-60.27608169178964, -13.126855331782165], + [-60.28055063672275, -13.135647350218678], + [-60.268440259143894, -13.144999861360027], + [-60.29610257480224, -13.177193623626513], + [-60.29610712699506, -13.177191348394738], + [-60.299576377756075, -13.175457355686477], + [-60.29957865653094, -13.175459259523148], + [-60.30411303482319, -13.179247432737363], + [-60.304316741825154, -13.179417609842863], + [-60.309068306162374, -13.191811789767964], + [-60.30927146274631, -13.19234165252916], + [-60.30815882601514, -13.199516743286976], + [-60.32018696977217, -13.216255187459442], + [-60.32033770494465, -13.216464922529498], + [-60.32038271085753, -13.216611610941804], + [-60.32429468018957, -13.229360401660461], + [-60.32838590295198, -13.230315984817919], + [-60.329708912403234, -13.235436092029648], + [-60.329724641062946, -13.235496959458525], + [-60.324752496013026, -13.25051701627833], + [-60.326654712316675, -13.255349690395434], + [-60.33310568385529, -13.258008753471328], + [-60.33317224127867, -13.258171787155037], + [-60.33896679561805, -13.272363914936944], + [-60.35174068848634, -13.273035560866884], + [-60.35205132183044, -13.28472424189058], + [-60.352054915430344, -13.284859371334198], + [-60.35391012559015, -13.294630430003208], + [-60.353985765355844, -13.294673671132461], + [-60.36068713077537, -13.298504452049565], + [-60.36069058800331, -13.29850174608811], + [-60.363164991565405, -13.296565020827995], + [-60.36316650592033, -13.296567983501413], + [-60.3649067954843, -13.299972578568626], + [-60.361934672345164, -13.301018233314968], + [-60.36155254344554, -13.308597430665575], + [-60.37143416003669, -13.318507291786997], + [-60.37154672475098, -13.318620168055691], + [-60.37156875520626, -13.318689425117029], + [-60.373408633855796, -13.324473128914265], + [-60.36602180591111, -13.332262079887503], + [-60.36521857378033, -13.340978086241806], + [-60.37110113942683, -13.348407085875408], + [-60.37020074736268, -13.357232919453072], + [-60.370190314990495, -13.357335188827403], + [-60.370202805639956, -13.357453395672469], + [-60.37127293706523, -13.367578863015114], + [-60.37654911842046, -13.368713303215841], + [-60.376043959614684, -13.374065333122395], + [-60.37952212802655, -13.375264463432542], + [-60.37922328194661, -13.39027683831494], + [-60.37921982776752, -13.390450535655944], + [-60.379139522170696, -13.390650254887612], + [-60.37180272018149, -13.408896659601735], + [-60.37924183374169, -13.41535347186142], + [-60.37927437891295, -13.422402836598383], + [-60.37927475615236, -13.422484364998095], + [-60.38399862972133, -13.441240061926795], + [-60.383980283773234, -13.441246920427142], + [-60.381523522986086, -13.44216535030251], + [-60.387855647705905, -13.45472562238415], + [-60.39985775202913, -13.456283023668663], + [-60.40240873638418, -13.462906805268771], + [-60.40241486661716, -13.46290598090077], + [-60.40951283558553, -13.461951378535716], + [-60.41146586639626, -13.461688682274174], + [-60.4303312421887, -13.48199105273762], + [-60.431938203371345, -13.4884664410672], + [-60.45629945170972, -13.493552804451493], + [-60.456303234816566, -13.493550996658875], + [-60.46552168423695, -13.4891456882689], + [-60.465524277416606, -13.489146438396807], + [-60.478939981553694, -13.493026682390353], + [-60.481675926915166, -13.496882967123472], + [-60.48168055335008, -13.4968803258574], + [-60.48635552473378, -13.494211297999291], + [-60.486358929720765, -13.494213349866941], + [-60.49544225401178, -13.499686629468323], + [-60.49555170907577, -13.499752576112506], + [-60.50116261400552, -13.49851259731742], + [-60.501162687037386, -13.498512583870848], + [-60.530305317294996, -13.517072981611207], + [-60.53033255922809, -13.517267690161493], + [-60.5329934923963, -13.536280960928066], + [-60.543595876120975, -13.536524258583407], + [-60.54397821887354, -13.536533029902722], + [-60.543978292355206, -13.536533025293084], + [-60.54402333811813, -13.536656810703018], + [-60.5483075985855, -13.548428657604944], + [-60.54831489126546, -13.548428416043564], + [-60.54875248173707, -13.548413920987533], + [-60.55477104037672, -13.54821447977738], + [-60.55596901977534, -13.553393367420377], + [-60.57757969818879, -13.565259828868985], + [-60.58612737827166, -13.565110903127303], + [-60.58761778711435, -13.565084910201024], + [-60.58761786084062, -13.565084904098994], + [-60.58766608540915, -13.565149880934728], + [-60.592440515765965, -13.57158250235236], + [-60.60024530803219, -13.57275227614891], + [-60.600247056800946, -13.572751258038254], + [-60.61118924630657, -13.566380568179126], + [-60.61119411097661, -13.566381811417026], + [-60.63213545555305, -13.571732486061222], + [-60.63563516994707, -13.578003065805255], + [-60.63333280705749, -13.57926517582776], + [-60.641333961263214, -13.585093135786341], + [-60.638246613620986, -13.592002321209225], + [-60.64111062195882, -13.596572488507134], + [-60.64111580398365, -13.596568040459287], + [-60.64544264763617, -13.592853988884887], + [-60.64544640623312, -13.592857624216679], + [-60.65539069401045, -13.602474916080693], + [-60.66411024163007, -13.604893619970316], + [-60.6658865469027, -13.611519909321402], + [-60.66589316188323, -13.61151363611295], + [-60.66921812549701, -13.608360424412073], + [-60.669218538758, -13.60836763666773], + [-60.66951149842324, -13.613479597621351], + [-60.66951413681688, -13.613525658457139], + [-60.6726614307827, -13.612490415777058], + [-60.6726619067106, -13.612491849235155], + [-60.674199873996876, -13.61712388527686], + [-60.68596607884224, -13.625261231078118], + [-60.689000991142436, -13.633529791833888], + [-60.68630523634097, -13.639196177654085], + [-60.69172221742845, -13.644749741153658], + [-60.69053298417146, -13.648988735090683], + [-60.69343827737531, -13.653337273176803], + [-60.699525021176406, -13.654217125403742], + [-60.69766724036633, -13.657796672251598], + [-60.702026825801255, -13.660302959725048], + [-60.69694696206128, -13.666533864125508], + [-60.699610124226815, -13.6708698223979], + [-60.70958397122977, -13.67175352329357], + [-60.70955197688966, -13.676155446263776], + [-60.71377420566551, -13.676033955226762], + [-60.713883467158475, -13.6760308103563], + [-60.71388346613847, -13.676030833047607], + [-60.71358513664408, -13.682668684817507], + [-60.713593419054476, -13.682667585349616], + [-60.71668187893629, -13.682257581792781], + [-60.71674318521351, -13.68224944279748], + [-60.716954251230746, -13.685121393035681], + [-60.71695614541202, -13.685147165097462], + [-60.71695607355773, -13.685147181583032], + [-60.70991797220609, -13.687358019479529], + [-60.709912406323035, -13.687404948448693], + [-60.7092446040141, -13.693035816308349], + [-60.71746911000801, -13.693733217324406], + [-60.73958241950754, -13.68532611432564], + [-60.75513829260379, -13.687349322708386], + [-60.76947517997307, -13.684238654675799], + [-60.77047032148964, -13.665139785198605], + [-60.77408619159939, -13.661286997171368], + [-60.786308429002084, -13.656400206231956], + [-60.81067266764581, -13.653769206622659], + [-60.81899672377124, -13.636960895499273], + [-60.828526383333305, -13.629534499545517], + [-60.841032081866906, -13.627756859900032], + [-60.84491419760875, -13.631592646857767], + [-60.87977705835686, -13.617561591723305], + [-60.88705265409669, -13.60196705611659], + [-60.908861873408064, -13.584851558621928], + [-60.92069271268054, -13.568979443217232], + [-60.92469982690111, -13.55705140731294], + [-60.918920070435476, -13.548359668981176], + [-60.916442586498285, -13.546717942704909], + [-60.922972876139994, -13.540890005568507], + [-60.93382703285214, -13.540743153210043], + [-60.950973685562204, -13.551917862249503], + [-60.957974449888496, -13.548931798603874], + [-60.96735643511067, -13.536928302824036], + [-60.97208025851844, -13.537001441795331], + [-60.9788302979136, -13.540211326464984], + [-60.9859672459147, -13.538738467608352], + [-60.98697414855029, -13.548173439567483], + [-61.00555885484472, -13.550314627315892], + [-61.01235687795042, -13.528216899190816], + [-61.00866847156634, -13.523371387573304], + [-61.000859578064066, -13.531023555207499], + [-60.99763744989029, -13.527638259986558], + [-61.00669142514163, -13.518452188514399], + [-61.00894470936513, -13.506438245797513], + [-60.99964986903966, -13.499987231144734], + [-60.99319011316989, -13.505205080702108], + [-60.98827090128208, -13.500357996540236], + [-61.014860351464236, -13.487570059037854], + [-61.02544496513402, -13.490563971342198], + [-61.041083553438426, -13.48509036486099], + [-61.046920379807595, -13.484712295353736], + [-61.05088656519015, -13.48883208331966], + [-61.05091453122077, -13.495420127844003], + [-61.03553463803945, -13.497106671243712], + [-61.03544585205599, -13.50105860600261], + [-61.041087472996246, -13.507744426694144], + [-61.05400372092653, -13.51147774091188], + [-61.060308881912896, -13.511885000409169], + [-61.066005504530075, -13.500781931007646], + [-61.07574695501736, -13.499565719029981], + [-61.09024323136786, -13.492173265923089], + [-61.09777657315721, -13.495867732929861], + [-61.09493861335782, -13.506128324215059], + [-61.10333765120327, -13.51578836494331], + [-61.10086346019917, -13.528504758573563], + [-61.106115528134715, -13.531697987168863], + [-61.12589275367396, -13.519936092047052], + [-61.13955548854756, -13.529018937726812], + [-61.13839154493745, -13.512391836938166], + [-61.14407934559025, -13.51346875128666], + [-61.14733506166795, -13.519085425540583], + [-61.144248060943426, -13.528635585777556], + [-61.14689035634052, -13.531997686732264], + [-61.15313677327112, -13.527341466357628], + [-61.15666632705243, -13.517152294340482], + [-61.17122821613969, -13.510643487810265], + [-61.18241942307612, -13.514336549827942], + [-61.18046843897421, -13.50880206157103], + [-61.18400465406552, -13.507931381143562], + [-61.18775509390208, -13.516906030479516], + [-61.182747733684344, -13.527693597586584], + [-61.19422428844372, -13.536483634760803], + [-61.20786432518373, -13.5254691952305], + [-61.221666599876244, -13.530190095021604], + [-61.233468984993415, -13.525058451216799], + [-61.237162367540606, -13.517001025025602], + [-61.24372610647833, -13.512846914227309], + [-61.24186594708267, -13.501151749691633], + [-61.24827998378538, -13.496309232582199], + [-61.262280226654646, -13.497487726878893], + [-61.27514475149109, -13.506091686893997], + [-61.28030578442337, -13.505664807223116], + [-61.28553150306479, -13.502149000654443], + [-61.28825248918363, -13.48289287714729], + [-61.296246954374865, -13.477860730377873], + [-61.305273914279745, -13.482051148756018], + [-61.30105517694492, -13.498246160338283], + [-61.30883428174922, -13.50408191750188], + [-61.336303749739166, -13.505605312376177], + [-61.342141714812, -13.518412087918621], + [-61.35045152000593, -13.521193118194521], + [-61.389724624284334, -13.519805009315446], + [-61.40489775309979, -13.528376846791915], + [-61.40239264903718, -13.537907390589117], + [-61.40494402478911, -13.539735348468799], + [-61.41311438015651, -13.537924318048832], + [-61.42950392697986, -13.545444197814858], + [-61.46986004155462, -13.555286747877583], + [-61.491888222560306, -13.546477801264038], + [-61.5081927348855, -13.547974912520992], + [-61.521672444287624, -13.535509860497706], + [-61.53283369833575, -13.533057331121052], + [-61.53527774455611, -13.527926580943845], + [-61.55631112329558, -13.518249010905855], + [-61.56314198603124, -13.521460722672472], + [-61.5723663809941, -13.518609372162409], + [-61.57886510350702, -13.509938356235429], + [-61.573302981577385, -13.494656813552465], + [-61.57666406149995, -13.488659395781927], + [-61.58420320648015, -13.490657711134249], + [-61.58555685737313, -13.500662534903155], + [-61.599444061467004, -13.5017521935084], + [-61.6079498696858, -13.511728782009481], + [-61.61581442526013, -13.511437164758721], + [-61.61892696457081, -13.499220805432953], + [-61.6231175610126, -13.496752184582705], + [-61.62614624727416, -13.499889211575468], + [-61.622757006534876, -13.514655256236647], + [-61.62892261609008, -13.515535386645313], + [-61.645001380707676, -13.50685240085211], + [-61.645866048030356, -13.516557454313107], + [-61.65138814464361, -13.518748606753043], + [-61.668893042311815, -13.509859815838068], + [-61.66873062514293, -13.505094421025326], + [-61.68611702319368, -13.509211096369121], + [-61.693368255719946, -13.499960525747104], + [-61.69578033302233, -13.500479815825637], + [-61.69378001243049, -13.508117199785827], + [-61.704250932974624, -13.511871602246622], + [-61.70298087767895, -13.515154264357863], + [-61.725090585525045, -13.522351189932966], + [-61.73464645329744, -13.518660782159476], + [-61.730751914531496, -13.526581876204133], + [-61.73782412702097, -13.527263582378504], + [-61.75164357629905, -13.520452856226619], + [-61.757729794836315, -13.524236666790495], + [-61.75361663367412, -13.531607759130365], + [-61.754424548312464, -13.537087562960313], + [-61.75728363927169, -13.540612627887882], + [-61.764448522345646, -13.539245576736942], + [-61.769168611899886, -13.519349689415304], + [-61.776530079323294, -13.517795518707489], + [-61.77808925464474, -13.533025222112528], + [-61.78480338692723, -13.537131104576929], + [-61.78992332184269, -13.537903614678758], + [-61.81705995939072, -13.52747473237733], + [-61.81119398570703, -13.540269657679628], + [-61.8183949602523, -13.539390447565683], + [-61.82111352428138, -13.533856127091932], + [-61.83358750511631, -13.539330668093145], + [-61.84103010201456, -13.548952234244695], + [-61.84337114783052, -13.541403862785861], + [-61.838678193899895, -13.534746351293164], + [-61.8402801444293, -13.527004967477872], + [-61.84708970823338, -13.527528470352408], + [-61.852841904741545, -13.538528717872179], + [-61.866057167161046, -13.531750665242633], + [-61.87203179219602, -13.513406414709232], + [-61.88314567434514, -13.49733767610887], + [-61.88100725135068, -13.47963830636257], + [-61.883278460609304, -13.456865139730931], + [-61.89292282754144, -13.43096579168413], + [-61.89919890180932, -13.426873139867883], + [-61.90753274148417, -13.434178256665197], + [-61.91428218759246, -13.433770141414799], + [-61.928759780281354, -13.425611850063637], + [-61.93089139078104, -13.417453825983811], + [-61.94031256796097, -13.407892908402879], + [-61.94792440587014, -13.41542502105147], + [-61.95622431884803, -13.408291548137981], + [-61.97055836892571, -13.406213345185549], + [-61.96228053868459, -13.391183654021233], + [-61.96744990348517, -13.386863364360112], + [-61.97725423489584, -13.388116995718377], + [-61.971311337778324, -13.374286995949848], + [-61.98042349362708, -13.365532591747405], + [-61.99770177905427, -13.363270925163357], + [-61.99956374226812, -13.365078185671342], + [-61.9943063712731, -13.37084217706176], + [-61.99666887176912, -13.374425859916467], + [-62.0004810009444, -13.371008108456708], + [-62.014114305748215, -13.352388916929822], + [-62.013618894161745, -13.330498793152268], + [-62.01714293707912, -13.327322371451524], + [-62.025001444600086, -13.327615669279284], + [-62.03264705390388, -13.333673805370408], + [-62.046170759355675, -13.31628893594949], + [-62.056843749036624, -13.311813665245824], + [-62.05689272656363, -13.28823861146252], + [-62.071200169186916, -13.29617591379713], + [-62.074880172343775, -13.292222214107255], + [-62.08422855011765, -13.290345994432547], + [-62.0850892027491, -13.282121726936035], + [-62.09272397181301, -13.281755104912332], + [-62.09812050528737, -13.272752134415263], + [-62.11392190241838, -13.26103766429085], + [-62.109163427633135, -13.234254917940008], + [-62.109005432146645, -13.219077613216283], + [-62.11345204013378, -13.21172755534498], + [-62.11762099315973, -13.177187251910388], + [-62.11514302977625, -13.163718660290819], + [-62.119643467066176, -13.153570832170741], + [-62.128645532105935, -13.14841584278258], + [-62.134759465425084, -13.149424530795512], + [-62.14283889928777, -13.161201788446688], + [-62.14994898187808, -13.163262450807188], + [-62.151006606604994, -13.151252425811983], + [-62.16002930231627, -13.146516192167368], + [-62.16950575347473, -13.13424266597427], + [-62.166002805261094, -13.119116159139864], + [-62.17041913973971, -13.11396068151054], + [-62.18139595982863, -13.117799288943202], + [-62.18367148968943, -13.127912228921874], + [-62.17770057445339, -13.137030062201134], + [-62.17814135096384, -13.143054800051276], + [-62.19086824512615, -13.15386790974761], + [-62.200145148189435, -13.150626383209344], + [-62.200972501637466, -13.124580505148476], + [-62.214723002647055, -13.111383145924092], + [-62.22305945036824, -13.113753700215934], + [-62.22950438255545, -13.12160193846418], + [-62.23570145846437, -13.117088240172887], + [-62.24333361105691, -13.117374818860842], + [-62.24586468801297, -13.145201260853934], + [-62.26448049087616, -13.146095763379675], + [-62.265808211838056, -13.148004772191358], + [-62.261591876742656, -13.150772708334781], + [-62.264591540470505, -13.153275026583115], + [-62.276591275381264, -13.146220302174921], + [-62.27211902856212, -13.155891715037175], + [-62.2784742014581, -13.155518826658659], + [-62.287337878246205, -13.140603201777648], + [-62.294979364012036, -13.14994935770794], + [-62.299284043600544, -13.150591646550739], + [-62.30578484203459, -13.139540176346108], + [-62.316705424264725, -13.134506898395564], + [-62.32136414293866, -13.152113190665847], + [-62.326337728131264, -13.14908039104825], + [-62.330450308204604, -13.140020734154769], + [-62.34094661081189, -13.14995434825118], + [-62.34236716638648, -13.145868909009666], + [-62.33734147616193, -13.140524841342149], + [-62.34547652440552, -13.137174655280704], + [-62.351895808588246, -13.143333194938268], + [-62.363474067957114, -13.13961302006454], + [-62.37250738046042, -13.140744599876463], + [-62.3824778967775, -13.130871485328237], + [-62.391977241549675, -13.134789586460068], + [-62.39730973445665, -13.130141172639549], + [-62.39606213182822, -13.114461231732925], + [-62.399312537394, -13.113425305913013], + [-62.4139254685264, -13.128421328826073], + [-62.417645424575056, -13.118981126632399], + [-62.43439101173109, -13.102004704870271], + [-62.43333923890979, -13.085852630113397], + [-62.436922962454574, -13.080608433777714], + [-62.44284287845869, -13.079950549186638], + [-62.45181195254138, -13.087815516777724], + [-62.45739192300861, -13.086711742249376], + [-62.459035867614844, -13.081146408225054], + [-62.45234518347617, -13.07028001045338], + [-62.4539481362964, -13.06483061443451], + [-62.46033878253924, -13.065562635312412], + [-62.465481549802746, -13.077237049500365], + [-62.471979285336104, -13.078925520685042], + [-62.47350855381269, -13.06039183799504], + [-62.47887105605201, -13.057487951657858], + [-62.48344974768986, -13.062190502423535], + [-62.48298111953126, -13.076161295700008], + [-62.502564366851544, -13.083202326524157], + [-62.52375222785241, -13.06554240733508], + [-62.53489938871369, -13.073322370210185], + [-62.54709384447777, -13.07403312598048], + [-62.557973801096374, -13.06565847397012], + [-62.61250628781081, -13.0413351190537], + [-62.61406637455825, -13.026278464244308], + [-62.60014479004351, -13.016789246855883], + [-62.606757863806976, -13.01107377615056], + [-62.621453776625586, -13.017748258770883], + [-62.62916956921669, -13.016294561674092], + [-62.63295745125525, -13.01067712447289], + [-62.629111439469575, -12.995851733421762], + [-62.631396718955195, -12.990255236027751], + [-62.6388404655685, -12.989196351601375], + [-62.64642335087877, -12.993188659954205], + [-62.65211736303104, -12.98937497643474], + [-62.64520328968634, -12.974634248019944], + [-62.645396485168206, -12.967757497739012], + [-62.65075659556031, -12.965620167383628], + [-62.66062133471772, -12.969511380779243], + [-62.66447837499719, -12.980702725615703], + [-62.67484356272793, -12.990990995761786], + [-62.69431189382885, -12.992271691229423], + [-62.698510852701446, -13.002856127691176], + [-62.70686682999916, -12.999931158301951], + [-62.713146128956915, -13.004366500878705], + [-62.725093008911685, -13.001294982919008], + [-62.72886811703329, -13.008702295660695], + [-62.729092064528174, -13.020806730881954], + [-62.73395418237138, -13.021906962597017], + [-62.74414944323596, -13.008900169493955], + [-62.74378342495074, -13.000360108776285], + [-62.74684193274903, -12.998950497744305], + [-62.75214446828759, -13.00208606374691], + [-62.75634266962526, -13.017231634167775], + [-62.77903100880135, -13.009613850646666], + [-62.794284735293346, -12.9952580132135], + [-62.80680296817778, -12.968142978385215], + [-62.80883523548524, -12.962177620462866], + [-62.80323402754705, -12.945119845145848], + [-62.80589727679708, -12.940666449628155], + [-62.8229246450447, -12.933809429640501], + [-62.83203110039331, -12.937861814120492], + [-62.838843242951455, -12.947380466767996], + [-62.845780661228325, -12.948758360043751], + [-62.850197530413034, -12.940973123005579], + [-62.84305957107187, -12.927161700017304], + [-62.86083688911816, -12.912937532631062], + [-62.87014292739151, -12.910658105356047], + [-62.88047609739079, -12.887249109985547], + [-62.893088774568184, -12.877159051532297], + [-62.89208927403885, -12.858881039533458], + [-62.91022716061327, -12.850924738158588], + [-62.92128703023042, -12.84090159203316], + [-62.93186258658367, -12.842021541655827], + [-62.941758859318405, -12.847044061390047], + [-62.94292433542174, -12.85465073980517], + [-62.94742689497468, -12.858664357887324], + [-62.951533176382526, -12.850031692546281], + [-62.95936643800944, -12.847138241269498], + [-62.96314664690794, -12.847421057520636], + [-62.970842207821526, -12.85894672769781], + [-62.97619600598412, -12.85991894283095], + [-62.98197734128335, -12.853787409195926], + [-62.98336499662851, -12.84417507445056], + [-63.00916419318805, -12.837822840833237], + [-63.01347995165093, -12.829020971360325], + [-63.00844992231503, -12.810838633139214], + [-63.02125304677464, -12.805479180992714], + [-63.02008882198806, -12.789964262306825], + [-63.033758393411546, -12.780755459485336], + [-63.04714975928432, -12.74072665093991], + [-63.06019933297425, -12.727932462636865], + [-63.070084036070156, -12.731234834185747], + [-63.07817808651034, -12.728789840098418], + [-63.08237084252165, -12.720586336014874], + [-63.08047431985814, -12.703885011604893], + [-63.06147561144907, -12.693298410002196], + [-63.06131229545742, -12.686579162497761], + [-63.06767319619247, -12.68263055824369], + [-63.077590199541085, -12.685812836562594], + [-63.09567072430645, -12.683705733917051], + [-63.09881545442705, -12.677164781430324], + [-63.091945782084316, -12.668701285904577], + [-63.09339637147358, -12.657998492410606], + [-63.102665424820884, -12.655396777759387], + [-63.11542234080974, -12.659069211409141], + [-63.12170213126488, -12.6555126790129], + [-63.12712177297073, -12.645768300951872], + [-63.13682848774041, -12.647967619482502], + [-63.140086994389414, -12.645675924080681], + [-63.137398560249856, -12.639770969497281], + [-63.15181191016995, -12.63389426948377], + [-63.15367332462709, -12.619516295978592], + [-63.15831596704496, -12.61417550689508], + [-63.16441056933525, -12.615760511780747], + [-63.16742305901138, -12.621328703390692], + [-63.16175726063146, -12.63589889191458], + [-63.16731448304517, -12.642090021003822], + [-63.173404709447354, -12.641021655627657], + [-63.18575415940559, -12.62501367671449], + [-63.19482726732076, -12.624335113305639], + [-63.19742232646274, -12.630357175479698], + [-63.18978015290871, -12.64705206873803], + [-63.196091815067135, -12.654513619321062], + [-63.21817126742722, -12.655777734458804], + [-63.229574512455656, -12.66481641073351], + [-63.24542106019768, -12.66223436853408], + [-63.23963716272354, -12.6774664557918], + [-63.23161686098388, -12.682854574662315], + [-63.23895293165855, -12.691045137637648], + [-63.26221156227518, -12.683495870010844], + [-63.29547626337955, -12.681897554635256], + [-63.32629022223753, -12.671086831498004], + [-63.35023027609362, -12.65674207856308], + [-63.35698961140546, -12.657020228675353], + [-63.36928413680471, -12.659627064004747], + [-63.385949936708734, -12.650749227156117], + [-63.40087940596974, -12.636251217284459], + [-63.41203129471043, -12.609727218984567], + [-63.422061401644484, -12.606752903018007], + [-63.43353573553986, -12.609450796721465], + [-63.440315509138124, -12.6062508208238], + [-63.441256063316956, -12.60107309834404], + [-63.42584401395786, -12.596646166066012], + [-63.437233368370364, -12.5846988912722], + [-63.434618362703056, -12.565881486733533], + [-63.473928219660294, -12.56161108813442], + [-63.50166961812974, -12.567364610797236], + [-63.53046935466262, -12.54174111568588], + [-63.55286274625804, -12.507051650065478], + [-63.57609575160623, -12.501247564355925], + [-63.59356125676, -12.489699721992352], + [-63.61390671086107, -12.485314557435636], + [-63.622045096616915, -12.472918213181558], + [-63.65671923309406, -12.461864976946707], + [-63.67298953804273, -12.463226144271877], + [-63.68468839207356, -12.453097881269235], + [-63.73364700652286, -12.438663587089476], + [-63.764226290268944, -12.44211696635933], + [-63.786233723812636, -12.427986334214399], + [-63.7905060160262, -12.429545903516392], + [-63.80306246364411, -12.447289114945569], + [-63.8179817615702, -12.447051473017321], + [-63.83390106930807, -12.463471139814379], + [-63.85026363631106, -12.46043037956938], + [-63.87303426402144, -12.44712460952822], + [-63.885092680745, -12.446422700482492], + [-63.89056566079024, -12.45475124033122], + [-63.88928384920271, -12.465750934086557], + [-63.90064803787264, -12.481962688127686], + [-63.89773212405274, -12.499734124537493], + [-63.90064345203768, -12.506062125973003], + [-63.9071252702959, -12.5103305821275], + [-63.92175761231398, -12.511840388373095], + [-63.94096150825568, -12.527067665554199], + [-63.957633171852564, -12.531271699560246], + [-63.968777879661516, -12.526052155024416], + [-63.99581285879331, -12.503280475072408], + [-64.00048237502644, -12.503066785467254], + [-64.00299729990165, -12.513738505705843], + [-64.0092300273325, -12.518010563866696], + [-64.0210915381182, -12.508159969184717], + [-64.03221106256993, -12.515444394398658], + [-64.04009213458733, -12.5151822706479], + [-64.05084297819879, -12.497455244685641], + [-64.0599269429062, -12.490998831757565], + [-64.0656992007944, -12.491729551591352], + [-64.07414827682548, -12.500450830433435], + [-64.08195710732781, -12.501364445076042], + [-64.08838929485945, -12.497101754207598], + [-64.08920613260445, -12.486178478441497], + [-64.0921227234587, -12.484019056721394], + [-64.09881698681005, -12.485585938315953], + [-64.10245389202099, -12.492994863918181], + [-64.11542549339113, -12.504005795771622], + [-64.12251131138352, -12.505793320202603], + [-64.12251499055537, -12.486193401716264], + [-64.12856126219079, -12.478197994919592], + [-64.13497395404247, -12.476510671547196], + [-64.14370554915467, -12.48172802677275], + [-64.14653755200729, -12.501807945280937], + [-64.15182004489482, -12.509616493395818], + [-64.1645374782885, -12.514411262330803], + [-64.17331229651528, -12.507068576208436], + [-64.17212159590666, -12.467190736230776], + [-64.18407501309532, -12.465959086386517], + [-64.19012708033084, -12.472053785846931], + [-64.19670338229659, -12.472887317720744], + [-64.20881346302576, -12.462627705585676], + [-64.21965061297715, -12.462365671230799], + [-64.23156457787569, -12.455129381298004], + [-64.25217439988405, -12.475488625132764], + [-64.26990558290859, -12.488097083044032], + [-64.27931570437204, -12.50083256040246], + [-64.28437447205543, -12.503218725468992], + [-64.29082126878592, -12.501450135659338], + [-64.29875451256574, -12.490836610952261], + [-64.29070380371591, -12.468964601780147], + [-64.29266947749977, -12.45927779475961], + [-64.32314879706439, -12.456690452075305], + [-64.34909308756775, -12.459979654634244], + [-64.3642096313702, -12.45659545144759], + [-64.4008481275123, -12.449064578962048], + [-64.416141448866, -12.441506831144476], + [-64.42365876058695, -12.431956118252076], + [-64.44759921031725, -12.40920522611787], + [-64.45995656000646, -12.387193914687142], + [-64.47894940827953, -12.379619440298613], + [-64.50072402471359, -12.36557051724954], + [-64.51292986681418, -12.34784979674256], + [-64.51181371118103, -12.340734480415643], + [-64.50046727237695, -12.33005675851683], + [-64.49278828274016, -12.294302649699766], + [-64.49628954509235, -12.262983533145], + [-64.5062327030846, -12.227739907319872], + [-64.5127180750649, -12.222915646331073], + [-64.52356769994309, -12.225878566369882], + [-64.54702882322582, -12.242753511853001], + [-64.55725865346764, -12.23833532998453], + [-64.56853746602934, -12.219855635770823], + [-64.57574377663907, -12.215356166100927], + [-64.594482312773, -12.215741760349138], + [-64.61614748272245, -12.214760131619396], + [-64.67148330099471, -12.192721952655955], + [-64.69875903671046, -12.187205763488764], + [-64.71287282803685, -12.173622796909575], + [-64.71772720899952, -12.142509780538857], + [-64.71355980472849, -12.123547815302148], + [-64.69828654532122, -12.103636431730331], + [-64.69756183901046, -12.096135790719808], + [-64.71289878192388, -12.086425167560423], + [-64.72145246001524, -12.088138164622748], + [-64.73827235871607, -12.099893029031401], + [-64.73362392366957, -12.118150137304909], + [-64.73695537407428, -12.140280395609269], + [-64.74170420154643, -12.15124809013572], + [-64.7498692613652, -12.157609088267488], + [-64.76278702776172, -12.15418716858504], + [-64.76903702050018, -12.143727675482971], + [-64.75743019874429, -12.112348335182789], + [-64.75979205112543, -12.102340321455713], + [-64.76568034968263, -12.096350570744058], + [-64.78840055379408, -12.085831694373187], + [-64.80373759102567, -12.087692003891624], + [-64.82184713243386, -12.1188857322574], + [-64.83253685532866, -12.121748261649278], + [-64.8429299935768, -12.105641737844111], + [-64.84234223845509, -12.094638012553837], + [-64.83214576004521, -12.081054201111423], + [-64.8111986635114, -12.067979586439975], + [-64.80939785377952, -12.059135247746138], + [-64.81262146426089, -12.0449138411027], + [-64.8287059479726, -12.018025950849987], + [-64.83951383373643, -12.010721486627425], + [-64.8488435377423, -12.008952605262968], + [-64.85681156277344, -12.012180038691817], + [-64.88359934667871, -12.013708283232175], + [-64.91695276552824, -12.02842572014476], + [-64.92987040014748, -12.020647152765733], + [-64.94167449316559, -11.998581242841464], + [-64.94831570491655, -11.99346903890802], + [-64.9642930241558, -11.999005702432212], + [-64.97087776363654, -12.016621951659385], + [-64.97684807115584, -12.01833045151213], + [-64.98409478888009, -12.014413840222284], + [-65.00048261201327, -11.993415330848805], + [-65.00844206553528, -11.993132811572863], + [-65.02253545920894, -11.999194013181608], + [-65.030453363151, -11.99664759896878], + [-65.0349880046317, -11.988932943338808], + [-65.02567798243068, -11.970787333705074], + [-65.03203733782395, -11.966328571798332], + [-65.0398122241811, -11.97038416557981], + [-65.04195624182145, -11.961714502142653], + [-65.0275682062634, -11.945852509573893], + [-65.01487128620406, -11.90094804689394], + [-65.01878620323198, -11.892127883614407], + [-65.03250828309316, -11.887283286956473], + [-65.05756833784368, -11.88399869819293], + [-65.07062066943044, -11.86915162036111], + [-65.07076164928671, -11.856409214855162], + [-65.06126157015967, -11.824333666881145], + [-65.0596497529142, -11.790719626441588], + [-65.07967060109083, -11.736196165782735], + [-65.08048520993628, -11.720408299228671], + [-65.08806416461796, -11.709420679206916], + [-65.09983913966133, -11.705942453448525], + [-65.12817148084223, -11.72055147712813], + [-65.1828981958589, -11.721744781007589], + [-65.1860609049466, -11.728387416088635], + [-65.176011973299, -11.741315759026401], + [-65.17354110001882, -11.75206360985267], + [-65.1813742026104, -11.756612043854439], + [-65.20470742923052, -11.749503678749967], + [-65.24412074016044, -11.726424143379768], + [-65.2558669808412, -11.715561011409376], + [-65.2605615682616, -11.70691463015071], + [-65.25931640698968, -11.699804071941537], + [-65.2312551229545, -11.673764552228965], + [-65.2178377176111, -11.652129487695857], + [-65.21814482662903, -11.64181735360613], + [-65.23172729192115, -11.618344719284101], + [-65.22675764579233, -11.606969770404262], + [-65.22528050138682, -11.596481833450802], + [-65.23397203475558, -11.58248858197942], + [-65.23445122988672, -11.570487436127936], + [-65.21351038732759, -11.547166083010826], + [-65.21167167558866, -11.53288052890333], + [-65.21477810429634, -11.523590633742787], + [-65.22492680194078, -11.516486616481004], + [-65.25725812104287, -11.514532628722243], + [-65.29848086712973, -11.504473644837296], + [-65.30484260425814, -11.5016400674528], + [-65.30906156596646, -11.493680055433861], + [-65.32415146342807, -11.416784458143665], + [-65.32703149803956, -11.384421408216266], + [-65.33533344883868, -11.354984431250303], + [-65.32919868593575, -11.340473025607238], + [-65.29758700415684, -11.335118737546214], + [-65.29194806006443, -11.331176338508694], + [-65.29173044622152, -11.32420118265932], + [-65.29853605117336, -11.316124464145066], + [-65.33763583262419, -11.313296599002525], + [-65.34593823109665, -11.305064521571307], + [-65.36125360462356, -11.251394456571369], + [-65.36061990527193, -11.223356523984208], + [-65.34878128706963, -11.211383650112108], + [-65.32335705171276, -11.210592286839917], + [-65.31861146171289, -11.199455179110645], + [-65.32450228068599, -11.187070943149122], + [-65.33091810342334, -11.185723419952792], + [-65.34322279840724, -11.190352035886772], + [-65.35078320163461, -11.186430300252221], + [-65.36341649860829, -11.147303533783187], + [-65.36269523778977, -11.13783907140949], + [-65.34800467042302, -11.118763502982375], + [-65.3279993501276, -11.104993213918117], + [-65.28624758357915, -11.09224366034095], + [-65.27972242123305, -11.079154478440357], + [-65.28077779597962, -11.063620171716146], + [-65.30047079362099, -11.039365704522563], + [-65.3011709540098, -11.03216553292726], + [-65.26992164605274, -11.000455831813529], + [-65.25275792716826, -10.993075367558657], + [-65.25077923209241, -10.984581835692701], + [-65.2668638377887, -10.963950420933156], + [-65.27414413680572, -10.94419725226819], + [-65.28574965739166, -10.927707786219695], + [-65.28338991542773, -10.919076105029173], + [-65.2665322825967, -10.921843780535283], + [-65.2754758320165, -10.871196422283225], + [-65.32077610183651, -10.82205979382484], + [-65.33943955412393, -10.808041980677759], + [-65.35461805618714, -10.805025206634909], + [-65.36688369132004, -10.796291499744736], + [-65.36544436857876, -10.780109775165135], + [-65.35158122780176, -10.781039263871945], + [-65.34808850433984, -10.778477625992494], + [-65.34513573087958, -10.7589987114027], + [-65.34949814307419, -10.74349112776406], + [-65.34346725241006, -10.716334736755696], + [-65.34455936065591, -10.690888029422144], + [-65.34866809435566, -10.672745127254805], + [-65.35825481305186, -10.65742513970771], + [-65.36029177999507, -10.655847072286907], + [-65.3756911237446, -10.64661453555779], + [-65.3971619614339, -10.645513668288334], + [-65.40416343960916, -10.642298402428239], + [-65.40572048069977, -10.633614710405444], + [-65.41080628610761, -10.63075197358276], + [-65.41666543475174, -10.618720863693854], + [-65.4091980793938, -10.614445332126207], + [-65.41052192764154, -10.601508192692345], + [-65.40221018268858, -10.59276113378128], + [-65.3977455769706, -10.589499812588198], + [-65.39800600313413, -10.579185662984258], + [-65.40461169184073, -10.553786132839392], + [-65.42021324415855, -10.534559126790255], + [-65.41071766668357, -10.508649526791203], + [-65.42452279995862, -10.493464352308294], + [-65.42966387576637, -10.480981587395913], + [-65.4232690343104, -10.464352431146812], + [-65.4028846744777, -10.462814429046118], + [-65.3903505178758, -10.447631787209158], + [-65.38141589041666, -10.429106787284692], + [-65.3802703074896, -10.400974900798849], + [-65.39171720095236, -10.37446964232799], + [-65.37582156875338, -10.352213240208172], + [-65.3629955214455, -10.343314320235207], + [-65.34741569782415, -10.321634218398314], + [-65.3242968876605, -10.301265039186225], + [-65.31092518822776, -10.258210236513778], + [-65.30668663681885, -10.249859785574914], + [-65.2947490331763, -10.239133822214372], + [-65.29311435448366, -10.227689456335964], + [-65.2887442912849, -10.2199017462347], + [-65.28941074275636, -10.210671324192424], + [-65.30192705861145, -10.186194569206418], + [-65.30693984130234, -10.165028425210627], + [-65.30020271459885, -10.139490909230247], + [-65.30129438943965, -10.098027128374111], + [-65.31602189315998, -10.085170419391796], + [-65.3272332219989, -10.0626962081011], + [-65.32958357431801, -10.046556078237991], + [-65.31996474534415, -10.000985302713271], + [-65.32213242942835, -9.977680658423594], + [-65.33299375042931, -9.965720249768108], + [-65.33292257508452, -9.94431102332328], + [-65.33174237431697, -9.930043590434117], + [-65.3211308507474, -9.906036198748204], + [-65.29120854159429, -9.871656536475863], + [-65.28595920450265, -9.845518498497213], + [-65.29287535480356, -9.833327156428131], + [-65.32043313585169, -9.81456003805067], + [-65.32798276205358, -9.78004501060235], + [-65.34296710580323, -9.753553770282384], + [-65.35451224292527, -9.723709812762586], + [-65.36371385476893, -9.711613378946662], + [-65.39484914322902, -9.685800437582389], + [-65.4433478524661, -9.669350307854264], + [-65.44671195707875, -9.669722231744124], + [-65.44642070365785, -9.674921602911757], + [-65.44201356490865, -9.679708085153706], + [-65.44140264223918, -9.68637587650673], + [-65.44698545517166, -9.697131071854297], + [-65.47176733145878, -9.713712732326847], + [-65.48154959902503, -9.714224040698014], + [-65.4864914771297, -9.707885592819366], + [-65.48979398083496, -9.71535083414155], + [-65.4828526106881, -9.727622370436261], + [-65.50093038690024, -9.729866817055289], + [-65.50413125707757, -9.767724120778615], + [-65.4981564953996, -9.778399630080868], + [-65.50196254566765, -9.78586483541696], + [-65.51343645323354, -9.793198211523322], + [-65.51839877544226, -9.7899850159344], + [-65.53209103843452, -9.781635273062692], + [-65.53921420035647, -9.80199301142269], + [-65.55315845665642, -9.804399780728366], + [-65.55934986341495, -9.810819698113422], + [-65.56423623970603, -9.810282835865777], + [-65.56454389986789, -9.81980853945543], + [-65.5529084041857, -9.835429046989574], + [-65.55465176138291, -9.84193457578775], + [-65.56026766858517, -9.844691081153501], + [-65.56991402385664, -9.838070631186582], + [-65.59686512980265, -9.841939329916993], + [-65.59757381740921, -9.827588597961856], + [-65.6010196097419, -9.82419753526135], + [-65.61870096031703, -9.832510328230944], + [-65.6255137869201, -9.836934813717727], + [-65.63048682069659, -9.83440913408744], + [-65.63532242852757, -9.805306831671246], + [-65.64029892297712, -9.806471335570508], + [-65.64727079524046, -9.815867588863124], + [-65.65079734915501, -9.814975483619568], + [-65.65377263220334, -9.807612888171336], + [-65.6440940653077, -9.794167598630759], + [-65.64726669305063, -9.791498228669], + [-65.66007591671853, -9.793442814877242], + [-65.66879859040277, -9.781170932671772], + [-65.68929209087652, -9.799874706984403], + [-65.68959943395144, -9.812735397540996], + [-65.71045828765723, -9.80734853828728], + [-65.69992931986343, -9.78820694019777], + [-65.70976162810963, -9.772598633128126], + [-65.70801753304906, -9.766080071468059], + [-65.70407344414652, -9.763872444310131], + [-65.689129431066, -9.768861859964664], + [-65.68137877063663, -9.767349417773806], + [-65.67896481182737, -9.760176967756182], + [-65.68596252757776, -9.761112076718613], + [-65.68488023282629, -9.749036274026118], + [-65.69568244534061, -9.749666300766817], + [-65.70620871436759, -9.757495259732869], + [-65.71879572748153, -9.755981665880205], + [-65.72899430872113, -9.759689097651519], + [-65.73593831706917, -9.766733584022166], + [-65.73724313767266, -9.779859855903917], + [-65.74415528323277, -9.782111554317662], + [-65.75690674490622, -9.76627275936436], + [-65.77256948412261, -9.758216211347312], + [-65.76854318315499, -9.743654579064192], + [-65.76788016654069, -9.735567505560393], + [-65.77782001652102, -9.736853723129519], + [-65.77940321000774, -9.749059250445399], + [-65.77526857421434, -9.766882946939377], + [-65.78080068829732, -9.772148193674065], + [-65.7836535534483, -9.786371969522525], + [-65.79443652244531, -9.791820443364843], + [-65.79757101612337, -9.786157547455717], + [-65.80157212040704, -9.789645432453963], + [-65.80563073007212, -9.788116672613187], + [-65.81304062468465, -9.772441731363594], + [-65.80151363845314, -9.765778858167476], + [-65.79979319935163, -9.756699655351122], + [-65.807269572799, -9.76224209458226], + [-65.81534206250511, -9.755113607525397], + [-65.81904522609034, -9.755487639680199], + [-65.82040546474127, -9.766465198282743], + [-65.83009934440065, -9.76746637353919], + [-65.83441161194875, -9.776048467277363], + [-65.84343290902626, -9.783477908161872], + [-65.84135435687129, -9.78982382718516], + [-65.86057236343879, -9.795165934070525], + [-65.87213328433086, -9.789000814352315], + [-65.86796631731228, -9.781662199866883], + [-65.86871585264278, -9.77387621949283], + [-65.86176693893346, -9.767803687823461], + [-65.86829802777758, -9.76199833906783], + [-65.87127206521713, -9.753417064432856], + [-65.8858217744896, -9.752511072933881], + [-65.89898720605736, -9.759995278455877], + [-65.90299263567265, -9.766853928800604], + [-65.91527050760143, -9.762873508741729], + [-65.9155980567616, -9.753771619638092], + [-65.92304624606334, -9.754155279578441], + [-65.92529825392792, -9.759473334828469], + [-65.92268757881737, -9.763753246104418], + [-65.92652070041089, -9.762540969811642], + [-65.933955480439, -9.76895664539767], + [-65.93718218695126, -9.768881259945745], + [-65.93910012281202, -9.762145628239052], + [-65.94310439391717, -9.760119476848196], + [-65.95324138906156, -9.76886965584198], + [-65.96707019414882, -9.770679123210803], + [-65.97232641148126, -9.77551156610634], + [-65.97404367763352, -9.797943922723993], + [-65.96402008894846, -9.80156580923399], + [-65.96469026687427, -9.804317888613307], + [-65.98093565973026, -9.801355054011136], + [-65.98112969920734, -9.808683281755076], + [-65.9894650144499, -9.801636620270681], + [-65.99271209210777, -9.804137115537623], + [-65.99857463626834, -9.802322116964222], + [-65.9996552235244, -9.794436519694612], + [-66.01807779776762, -9.810864843452595], + [-66.02407663051855, -9.81227724130197], + [-66.03476538439969, -9.787551992988499], + [-66.0710198375453, -9.784326220192803], + [-66.08704571756002, -9.790064952972676], + [-66.07823998179256, -9.796117352628896], + [-66.08443164272268, -9.800073842239165], + [-66.0934367145341, -9.814023864545247], + [-66.10076687349651, -9.806967879098245], + [-66.09768161132709, -9.791332292632799], + [-66.10010425919934, -9.784757876490477], + [-66.10571628302323, -9.78314563788508], + [-66.11013213046688, -9.785169653740727], + [-66.10992897420314, -9.789541582173943], + [-66.12276491659858, -9.79113056732478], + [-66.12766045716911, -9.786558622227401], + [-66.1304916794699, -9.789929197740577], + [-66.1409101596881, -9.78848573617768], + [-66.14484985046352, -9.791463134066252], + [-66.15193378106603, -9.785646997973164], + [-66.17238249778083, -9.79331512795059], + [-66.17615684282559, -9.803344382427602], + [-66.19496576905598, -9.80633871059165], + [-66.19651851898324, -9.814772217624355], + [-66.18573653138816, -9.822383417452668], + [-66.18943349774179, -9.824147369802521], + [-66.19493382391279, -9.819749245159032], + [-66.197630710969, -9.824816130309651], + [-66.19437512047175, -9.82879089114807], + [-66.2035795187957, -9.834652054511318], + [-66.21321809176878, -9.834285033103287], + [-66.21965990871921, -9.827988646643822], + [-66.23757070611119, -9.81462582699326], + [-66.24179902441865, -9.827006652141334], + [-66.24824620906318, -9.821063431049414], + [-66.24898845465118, -9.827284000952679], + [-66.25498537837468, -9.833336009104661], + [-66.26324540467442, -9.830674222971085], + [-66.27474234113913, -9.834868543598363], + [-66.27521395360564, -9.827002139149624], + [-66.27962840266821, -9.828738177642478], + [-66.28349220939891, -9.8332313666259], + [-66.28249067609033, -9.841527870804773], + [-66.2861045234744, -9.84474670415762], + [-66.30479812419298, -9.83536527639838], + [-66.30818454881424, -9.840491396082852], + [-66.3157171083503, -9.831445461474917], + [-66.31940973688012, -9.836949691462143], + [-66.3504044577682, -9.840754402886144], + [-66.35129774420885, -9.84699454368351], + [-66.35588059057119, -9.848794480968902], + [-66.35952142063152, -9.866181290357808], + [-66.38218432808969, -9.867880186651561], + [-66.40302435085526, -9.863592198947293], + [-66.402829149883, -9.868827384166915], + [-66.41102115692092, -9.8755197334962], + [-66.41199266506167, -9.882057112651886], + [-66.41718293979525, -9.882816296090253], + [-66.42363341789004, -9.890922761373249], + [-66.42149508782161, -9.895139993725207], + [-66.41221777777999, -9.89397234351478], + [-66.42615588354586, -9.899658982521567], + [-66.43207814557637, -9.89200793209522], + [-66.42480098486683, -9.873758303411977], + [-66.43571249860246, -9.866042893732407], + [-66.44510147596574, -9.871475444152532], + [-66.45999088038165, -9.874167876104616], + [-66.45449488603715, -9.877418365266298], + [-66.4562132892085, -9.879911908453025], + [-66.47054889778633, -9.86899320332308], + [-66.48094266629307, -9.868475632817868], + [-66.48902070741941, -9.870765928405596], + [-66.49104928415355, -9.882515185426852], + [-66.49471504417131, -9.884388437845235], + [-66.50190858282991, -9.882111379823645], + [-66.50049294776, -9.875389954178319], + [-66.51324199007014, -9.876447971208798], + [-66.5166594736921, -9.883210332671458], + [-66.5285240246256, -9.88685632331928], + [-66.54377143421425, -9.877477438051221], + [-66.54885407605944, -9.888838686116172], + [-66.55945932746255, -9.88096709147258], + [-66.56446926128076, -9.883521201876464], + [-66.56580146771886, -9.88633756609576], + [-66.56215364859746, -9.889458562134406], + [-66.56721957602716, -9.894684439542107], + [-66.57426751033937, -9.89011146226177], + [-66.57877422975253, -9.894791653110252], + [-66.5822425210575, -9.905899557353873], + [-66.5874916762167, -9.90033227121879], + [-66.61981896813647, -9.894077096213199], + [-66.64484784925106, -9.88338609230922], + [-66.80619273559515, -9.814462991904888], + [-66.78048673182128, -9.791423427866379], + [-66.77716007150889, -9.7686861553249], + [-66.7781836331391, -9.766574685359913], + [-66.78204817884976, -9.758601955290313], + [-66.77527086918025, -9.753121158219297], + [-66.75837815090195, -9.760389680949523], + [-66.72529718076507, -9.756102279307743], + [-66.70121240750125, -9.74338952919009], + [-66.6917103983782, -9.733919513997506], + [-66.68485169863824, -9.714675081230967], + [-66.62407309876077, -9.680848276242141], + [-66.60935584257129, -9.664927435363213], + [-66.58621389476482, -9.673587832843628], + [-66.57902279721485, -9.668261615648643], + [-66.55162797686437, -9.658088805703914], + [-66.53679560118918, -9.643577363378052], + [-66.50052064031856, -9.633591806725036], + [-66.49633235857678, -9.614276589139939], + [-66.49482383733908, -9.601611462364586], + [-66.46737686133191, -9.582239241531335], + [-66.4564947792062, -9.569431974074602], + [-66.43884173703802, -9.554417885224598], + [-66.42348436261939, -9.52581517638854], + [-66.3923210091724, -9.500507501927764], + [-66.38995859632709, -9.455656735424032], + [-66.39601511163595, -9.437547025758425], + [-66.41462789839356, -9.421975603565283], + [-66.41395581893354, -9.413720229262408], + [-66.40876431115075, -9.406973279237185], + [-66.37468261641263, -9.42639290467077], + [-66.36671344287821, -9.425188561068113], + [-66.3532124401972, -9.416646143635624], + [-66.3457328141526, -9.419936421104968], + [-66.34151673275122, -9.427043408794262], + [-66.3331198508397, -9.42769373940316], + [-66.31882251725875, -9.419990276412593], + [-66.31351127729327, -9.42609999531335], + [-66.31476407965295, -9.433841399110907], + [-66.30740395313794, -9.436872016840812], + [-66.2840923603812, -9.432190324727365], + [-66.29034580067923, -9.412521250298905], + [-66.25957525307378, -9.41102300492479], + [-66.24332133710963, -9.429413708738762], + [-66.23521207589977, -9.430900901343628], + [-66.22046375941032, -9.425330290823347], + [-66.2046531099424, -9.426000197683505], + [-66.17353973453596, -9.434445200531789], + [-66.1589019291567, -9.426601328719448], + [-66.15426652156943, -9.420499764316297], + [-66.12918062131544, -9.410776619702222], + [-66.11613329474703, -9.409011040504788], + [-66.10106997591757, -9.414030336700366], + [-66.05964681102213, -9.418243812291692], + [-66.04637074988713, -9.40937100880149], + [-66.04231879889286, -9.402398476510177], + [-66.02168525310049, -9.401557431279558], + [-66.00248298093231, -9.404283462791156], + [-65.98635126752973, -9.41315427266056], + [-65.97020811951543, -9.41318622089294], + [-65.96695961301106, -9.420131123312228], + [-65.9530687039774, -9.4287878833033], + [-65.9515450734115, -9.4362888273807], + [-65.93178841925081, -9.447620710938844], + [-65.9223801186084, -9.470923558652151], + [-65.91254262970274, -9.48377683501648], + [-65.89792987217844, -9.489075006296497], + [-65.88081642612265, -9.487491440951782], + [-65.86026190380002, -9.510795463629043], + [-65.85245897638188, -9.510728000807477], + [-65.84651635880988, -9.516438007438154], + [-65.84815726040144, -9.532351068954824], + [-65.8407095156972, -9.534140927690784], + [-65.82498593070831, -9.530118016588904], + [-65.81793565687663, -9.562282042201375], + [-65.8106002042521, -9.5644335907867], + [-65.80529248639965, -9.57053932172204], + [-65.7999309376662, -9.585048719607805], + [-65.79143130884412, -9.585671569993815], + [-65.77793810704088, -9.577550353940463], + [-65.77062362911025, -9.565383048081907], + [-65.75645792390607, -9.568982151260201], + [-65.75023595019265, -9.553649927831652], + [-65.74268597773687, -9.552993941075497], + [-65.72987652646782, -9.56309866529671], + [-65.7234565294736, -9.559083424061692], + [-65.69598904556261, -9.5076977775325], + [-65.68090670359047, -9.50043378556752], + [-65.67934395332267, -9.4514188600775], + [-65.6726855343142, -9.446375474115678], + [-65.65709557966993, -9.449304046955307], + [-65.64979307773459, -9.447297236703996], + [-65.64154255902636, -9.433493220196587], + [-65.63468094824009, -9.429725374318766], + [-65.61817600610202, -9.426002249542945], + [-65.5966842463471, -9.413890725630392], + [-65.58801670609276, -9.41379933698181], + [-65.54815692855759, -9.42607091634608], + [-65.52232103182465, -9.44693022634116], + [-65.5146464412645, -9.449536481654572], + [-65.50645947305506, -9.447723666580018], + [-65.5034025821936, -9.456973212667641], + [-65.50307268064347, -9.470001281624784], + [-65.49271069582002, -9.473689665214728], + [-65.47687591493376, -9.472689394069294], + [-65.46778979518479, -9.459317050061772], + [-65.45656737633539, -9.470544338127521], + [-65.45294513588179, -9.469037609472238], + [-65.4425840470317, -9.464726188436257], + [-65.43462545446533, -9.46635869698396], + [-65.43200787204627, -9.458660615698598], + [-65.44323946542711, -9.42017257070031], + [-65.45456877424859, -9.408632323180274], + [-65.45650926116373, -9.401233968046887], + [-65.44603873799655, -9.370713254193587], + [-65.44759950661152, -9.345810849252127], + [-65.4435369640446, -9.330376638291172], + [-65.44901017797002, -9.324604475060962], + [-65.44692691476844, -9.31640011421829], + [-65.44012691525549, -9.31176987460207], + [-65.41670505572607, -9.319560955744242], + [-65.40970660328934, -9.322480331477514], + [-65.39343111035714, -9.339621719912666], + [-65.38511977743643, -9.338055810124088], + [-65.37945651605007, -9.332871763186647], + [-65.37742219533477, -9.324450667940933], + [-65.35115000757762, -9.323133843785776], + [-65.34259830875116, -9.309485356437213], + [-65.3003441290279, -9.287097830968122], + [-65.28409154393648, -9.270292331497766], + [-65.2465701847051, -9.257687481058525], + [-65.23997880022092, -9.26145065706], + [-65.21168080710234, -9.27901745603291], + [-65.20793426184325, -9.285657262137638], + [-65.20706282167089, -9.2936613051787], + [-65.21092272213377, -9.301053333828342], + [-65.20886569223953, -9.309667567219499], + [-65.18823412441269, -9.344876991456891], + [-65.19689885136324, -9.367464521385356], + [-65.19606794452471, -9.375287631879678], + [-65.17345371105392, -9.385472351248243], + [-65.17456309927412, -9.393805962736353], + [-65.18673276950832, -9.415051028387667], + [-65.18453382424872, -9.427016279783224], + [-65.17723429899388, -9.426661218466894], + [-65.15503974617596, -9.437184218870524], + [-65.14279094999836, -9.446837472996807], + [-65.13068660195928, -9.442320203935243], + [-65.1136285507769, -9.432803308612499], + [-65.09776039015902, -9.432540799712553], + [-65.08882079035455, -9.425105334368995], + [-65.09220180400898, -9.409410645782781], + [-65.08466879247875, -9.404198747968367], + [-65.07783877703505, -9.401006146660555], + [-65.05345629989306, -9.40216693137914], + [-65.0475437776867, -9.396216920736066], + [-65.04682023830445, -9.38729293688137], + [-65.03559041457855, -9.374841218346935], + [-65.03921843221728, -9.359605695869853], + [-65.02994605865807, -9.356595593774946], + [-65.02432206958794, -9.353915339637554], + [-65.02192954401919, -9.346029463844804], + [-65.00575675650988, -9.34355360465085], + [-65.01261708479682, -9.32870068705402], + [-65.00176572263405, -9.317924863017302], + [-65.00042517479453, -9.304637727957179], + [-64.98609264758701, -9.291954767321043], + [-64.96278937566488, -9.29280041077811], + [-64.95384868712846, -9.278947566938593], + [-64.95356284645429, -9.271295149634021], + [-64.94059176368943, -9.262425755528794], + [-64.93273483954815, -9.240611855977601], + [-64.92139851304674, -9.228313073725504], + [-64.91959233114576, -9.220303494997312], + [-64.92645116390366, -9.205487589816508], + [-64.9236462902781, -9.19816098708713], + [-64.93181255465925, -9.184950039927218], + [-64.92890102766529, -9.177659492926624], + [-64.93353398687162, -9.154423057770321], + [-64.93922375894522, -9.148326900990407], + [-64.93983860144137, -9.12458838885143], + [-64.93337457838156, -9.120364503980385], + [-64.91558868462998, -9.074636495206237], + [-64.9192588389575, -9.050585903357549], + [-64.91717509169239, -9.043163024896376], + [-64.90144993963233, -9.046708557986442], + [-64.89400751393545, -9.043723724541069], + [-64.88714192247961, -9.029232261114176], + [-64.87894075465223, -9.022838732698915], + [-64.86982391486346, -9.012000412822365], + [-64.83923247450615, -8.994132904888035], + [-64.80773248110023, -8.98557320228849], + [-64.783872518137, -8.989291289870186], + [-64.76108915438883, -9.020604112387474], + [-64.74447555395766, -9.018290778414832], + [-64.73044975369723, -9.012531171174293], + [-64.70666798218717, -8.989816986746728], + [-64.68959097750827, -8.990304124156516], + [-64.68325941223718, -8.993638206394545], + [-64.67128508650956, -9.014817665710309], + [-64.65761575937756, -9.00823434409043], + [-64.64144699203854, -9.006667352987069], + [-64.6109830870501, -9.016473200806692], + [-64.60016474047397, -9.0124905261671], + [-64.58787014040702, -9.009531191925344], + [-64.57930811099423, -9.001163490090889], + [-64.5787623298009, -8.98843661382899], + [-64.56878950978353, -8.991795205105161], + [-64.56411502082184, -8.985681450094972], + [-64.55003297768029, -8.978291955956667], + [-64.53353708166472, -8.976290654374045], + [-64.49628111646987, -8.979078432259366], + [-64.47109055580624, -8.97376547783209], + [-64.45537205556063, -8.97788002999994], + [-64.44648339581967, -8.97689139482286], + [-64.43314982519526, -8.96850269236961], + [-64.40837001540594, -8.960671170570016], + [-64.37983302722265, -8.946755679387026], + [-64.32330904786619, -8.92888100343275], + [-64.31547857109206, -8.929567173310279], + [-64.31273928671528, -8.931825223238157], + [-64.30947825296109, -8.934513357614737], + [-64.31294758558562, -8.950596839832771], + [-64.32598176050813, -8.979852808787538], + [-64.32519860488367, -8.988091082873497], + [-64.31122835215739, -8.996491654442437], + [-64.2975909853074, -8.99621708711119], + [-64.26498105825912, -8.98840311138914], + [-64.23311522040197, -8.992328744501734], + [-64.17492391401478, -8.960591771995364], + [-64.14936233051355, -8.958957544779485], + [-64.14334347718263, -8.953552686774714], + [-64.14349826119657, -8.933723181430809], + [-64.15161200721002, -8.89725327843971], + [-64.14870328938689, -8.873110515890074], + [-64.15556573829356, -8.848351105639148], + [-64.15811267104414, -8.843187158876473], + [-64.15511451060159, -8.835435770163132], + [-64.13566876942957, -8.820408674877548], + [-64.12936819243708, -8.805181999851383], + [-64.1446712693787, -8.776466447355064], + [-64.14297586674334, -8.743050486543565], + [-64.1245034791786, -8.716732589277088], + [-64.11116917274414, -8.725189950188335], + [-64.09467594730513, -8.728382334892265], + [-64.0750609576736, -8.713126218034454], + [-64.06730506162835, -8.710743985001002], + [-64.0277782313618, -8.71568489356872], + [-64.03539092632698, -8.693576173811252], + [-64.0163348653366, -8.667700338991581], + [-64.0190872432618, -8.660466728071295], + [-64.01661168248374, -8.652518883181548], + [-64.00508377289107, -8.641766195238375], + [-64.00475039973368, -8.625928090006894], + [-63.99593386725947, -8.619941428471767], + [-63.9910032926174, -8.617431819391008], + [-63.98611804324937, -8.585651694833718], + [-63.98017163094329, -8.58070589738837], + [-63.97244767671224, -8.582470323534325], + [-63.9670566852585, -8.587900508800395], + [-63.96550589775343, -8.595943984402307], + [-63.95400083123937, -8.607271645081639], + [-63.94586245435298, -8.609503171085313], + [-63.93592148816489, -8.592875446193263], + [-63.922390836649605, -8.567394901359991], + [-63.9230797524783, -8.559311046764604], + [-63.933104213774676, -8.557370214497665], + [-63.945528626277316, -8.550515546282815], + [-63.943696131003286, -8.52662175076653], + [-63.95865653921088, -8.510020897512105], + [-63.97080494344963, -8.499350526110442], + [-63.97441232600077, -8.487255302779284], + [-63.97308488043836, -8.478464282600521], + [-63.94074513992691, -8.452280955590876], + [-63.938997369559075, -8.441565329197724], + [-63.95363442360934, -8.427981522659918], + [-63.97780269650939, -8.420149633848578], + [-63.97686179690278, -8.409756340982815], + [-63.94528037708982, -8.38784257041609], + [-63.944029384877425, -8.331203847194791], + [-63.93203391602307, -8.324886524592452], + [-63.91074280825843, -8.32854087267993], + [-63.904249145306416, -8.322075181145433], + [-63.894833540942706, -8.302044683619258], + [-63.881911889959284, -8.2912450914969], + [-63.86739356378667, -8.289333346296802], + [-63.847030616618675, -8.295047162520023], + [-63.825245703231836, -8.306168520836712], + [-63.791138675341514, -8.333231291250064], + [-63.78150286402583, -8.329256021246701], + [-63.76584680430176, -8.307196463964933], + [-63.746469514173064, -8.270184810576009], + [-63.72266854723143, -8.24951444931622], + [-63.74846953358924, -8.207880492883197], + [-63.7469411557402, -8.198598357129603], + [-63.73007897340858, -8.180201314603327], + [-63.693327712220565, -8.158363617047277], + [-63.67633085211426, -8.12787582707872], + [-63.669804187579345, -8.121757847590292], + [-63.66235496443812, -8.101185883192494], + [-63.66885592571577, -8.091918559022458], + [-63.66690657017349, -8.081617748440603], + [-63.65077680901072, -8.06645461159183], + [-63.63866409258594, -8.04720837459997], + [-63.62652462352071, -8.041198719742798], + [-63.62168506252251, -8.029624885593197], + [-63.626356012839295, -8.0161261250869], + [-63.62069469321559, -7.969307955911992], + [-63.534641821916786, -7.974339730552728], + [-63.44218655379341, -7.976476715316421], + [-63.384967413279114, -7.976608855658973], + [-63.32190774575686, -7.976555043787456], + [-62.86792948825508, -7.975888563905233], + [-62.86652402593562, -7.975881654522046] + ] + ] + }, + "RR": { + "name": "Roraima", + "coordinates": [ + [ + [-58.8953925314922, 1.2276474057748954], + [-58.895351916964906, 0.9046876495889007], + [-58.895460465102666, 0.5917201871313019], + [-58.89536245905471, 0.2634717696727307], + [-59.19217214433418, 0.2634951987527213], + [-59.433446005614435, 0.26350835716320864], + [-59.95279511618496, 0.26352166510432073], + [-60.03785505511228, 0.2635213024724345], + [-60.04671714305451, 0.23210996681641277], + [-60.05896952126617, 0.16297438265531797], + [-60.07313396963344, 0.14989203182743546], + [-60.086717203669664, 0.14265478225061387], + [-60.11615876726083, 0.13321191653530298], + [-60.120335427308696, 0.1235103290262304], + [-60.13783109336176, 0.10267085456258593], + [-60.136157599353005, 0.09295465690658229], + [-60.12786272646143, 0.08824514125028318], + [-60.12340959189588, 0.08103065943026647], + [-60.13644108960752, 0.06545062084650559], + [-60.13453094850925, 0.054023165377618115], + [-60.140316353231626, 0.04740746081147726], + [-60.14311113163986, 0.037392350341473014], + [-60.138452895903754, 0.028745279368124956], + [-60.160600214289396, 0.016256260390035852], + [-60.170900027882745, 0.00018433666647411928], + [-60.18506186595546, -0.000366653742086989], + [-60.181552298866855, -0.009946597079142557], + [-60.203163961820295, -0.0336119756699141], + [-60.20613996479281, -0.0615544781710887], + [-60.22209784963276, -0.08307792967813149], + [-60.22872071465768, -0.10120194493171193], + [-60.23039254168018, -0.11037876856839793], + [-60.22509004352784, -0.11955000586795006], + [-60.227334409973714, -0.1287141020302105], + [-60.22039215088752, -0.13537771937081178], + [-60.224282938305265, -0.14287636124264164], + [-60.23261038977348, -0.14648803883085373], + [-60.24983900664638, -0.16703380599806653], + [-60.24928469606252, -0.17508889140565417], + [-60.2581693519366, -0.17342183141902193], + [-60.26594953363029, -0.17841826156559168], + [-60.26428259963743, -0.18953088083139658], + [-60.275946738968514, -0.20258810545530612], + [-60.285668810344276, -0.2106475564996803], + [-60.29344710862539, -0.2056472919840036], + [-60.29927873315967, -0.2117565370206403], + [-60.29149778145883, -0.22926430609109077], + [-60.299281724046246, -0.25621157918487275], + [-60.30483765415667, -0.26482104038741167], + [-60.302892184696766, -0.27231881718921563], + [-60.29953379840325, -0.27483662842838597], + [-60.295758390203005, -0.28196608037826715], + [-60.29539119500709, -0.2856535940380383], + [-60.28983297141396, -0.29315545249133873], + [-60.30289090376765, -0.3039895041397967], + [-60.30206118653434, -0.3281522727867796], + [-60.318449097222725, -0.3306504813516871], + [-60.32149889665603, -0.3375966972384572], + [-60.31705738351625, -0.35870506228507637], + [-60.32205819678398, -0.36869866878591495], + [-60.322055614843784, -0.3775874939829535], + [-60.335949510440734, -0.3853629348268184], + [-60.34316749807638, -0.40175291319417583], + [-60.34986531136601, -0.40729959327214643], + [-60.3443083707394, -0.41313109023677574], + [-60.345698759739186, -0.4206368983574068], + [-60.34180709634898, -0.4303555110072155], + [-60.34458172672874, -0.44062759172800353], + [-60.38236512851771, -0.47034637809223695], + [-60.38292222919395, -0.4792345394836522], + [-60.39097571032339, -0.49423589716678906], + [-60.39094933986374, -0.5031514237605472], + [-60.399839931483996, -0.510099635713], + [-60.39789238893517, -0.5459275844858026], + [-60.39483705062913, -0.5534263040690521], + [-60.38233740397801, -0.5575930530723903], + [-60.37928497705139, -0.5764892393263057], + [-60.38789594849823, -0.5814846042513457], + [-60.38317232114855, -0.5900910725272581], + [-60.36567101076384, -0.5881528695012848], + [-60.3651152661005, -0.5970433940377593], + [-60.35789139045837, -0.605373800966541], + [-60.350949232813214, -0.6223173888677737], + [-60.34066879300212, -0.6256456457287934], + [-60.327614682998416, -0.6403694385435971], + [-60.31983973104404, -0.6370434321839991], + [-60.31344793447127, -0.6414836904103377], + [-60.314558262725264, -0.6600988665877036], + [-60.30372464964937, -0.6739844279460558], + [-60.308721476544676, -0.6898162234683379], + [-60.302062130235356, -0.6934287891766415], + [-60.30456089083154, -0.7017590466219807], + [-60.30317562188196, -0.7070940591772418], + [-60.30351732063059, -0.7112842265946426], + [-60.30955962495564, -0.7248175565674688], + [-60.317059305689725, -0.7228771487613461], + [-60.34122873375289, -0.7389870302277375], + [-60.34594892311734, -0.7459281073543333], + [-60.35344383916547, -0.742589833281469], + [-60.37734218425775, -0.7428706297913996], + [-60.383172297963554, -0.7598135479710698], + [-60.40094632612431, -0.7575923798794093], + [-60.41900306906855, -0.764261624665586], + [-60.4215058651545, -0.7731467690265534], + [-60.427058750343775, -0.7784234286382242], + [-60.43455955916559, -0.7725975554574004], + [-60.45789151462384, -0.7742603094376678], + [-60.467056965366794, -0.7689795096027727], + [-60.47900762533026, -0.770930064339288], + [-60.49400171597201, -0.7825883328145904], + [-60.497893586743935, -0.7895370578536766], + [-60.492058164608146, -0.7967625884959296], + [-60.495671709144915, -0.8042588993568526], + [-60.493725178635486, -0.8123131093508695], + [-60.49872838187533, -0.8223175641470198], + [-60.50650717995075, -0.8214790582091523], + [-60.519841588138156, -0.8337030224527148], + [-60.50317110299605, -0.8414753009660093], + [-60.50455779714823, -0.8492561307215645], + [-60.53095242059684, -0.8750897611688768], + [-60.54095226224041, -0.8753687350750483], + [-60.54761636721497, -0.8689770496460186], + [-60.55761626102724, -0.8698140263107521], + [-60.55789593938987, -0.8600905648455446], + [-60.591225400961875, -0.853420708263948], + [-60.59428577771642, -0.8723101541743111], + [-60.609562712580626, -0.8642600212855451], + [-60.620396105363035, -0.8634235658268352], + [-60.62400474485504, -0.8714761279158196], + [-60.63372740073233, -0.868421743029644], + [-60.635951207939414, -0.8761980325661637], + [-60.65456078376218, -0.8831444086917825], + [-60.667895872497965, -0.8945299097339355], + [-60.672619368121474, -0.8878644392632942], + [-60.669835293985564, -0.8784190763521588], + [-60.67567508251139, -0.8734243031721186], + [-60.70761695264769, -0.8656410412308849], + [-60.71705818238882, -0.8700889769236263], + [-60.73233748417515, -0.8584218566987671], + [-60.75260873931298, -0.8611951557873109], + [-60.75180923569657, -0.8500117353812554], + [-60.75451438384168, -0.8422951025233973], + [-60.75928219425298, -0.8286988616822951], + [-60.75316695743835, -0.8198101760514616], + [-60.758997877226726, -0.8098118467465533], + [-60.75650476226583, -0.795643367370145], + [-60.7737296212738, -0.7911965459463928], + [-60.77316537963484, -0.7823139331358534], + [-60.7665024698545, -0.7781415584235079], + [-60.760950930549924, -0.7614804359762402], + [-60.76872910414305, -0.7545351245012846], + [-60.77705975669791, -0.7562014211369582], + [-60.780947104738324, -0.7487056730261117], + [-60.788720218554104, -0.744813208389185], + [-60.79705723069352, -0.744809259509225], + [-60.799559076585396, -0.7359232202599528], + [-60.793170083151644, -0.7284247065544764], + [-60.79531532717624, -0.715141654447433], + [-60.79788785610779, -0.7112027542655001], + [-60.79761138491437, -0.7009200811505222], + [-60.81205431888186, -0.6920367864331406], + [-60.84317202371203, -0.6906439168359837], + [-60.85178102630006, -0.6748085250988459], + [-60.84733871375108, -0.6639769924293385], + [-60.849284682282644, -0.6542588806588959], + [-60.85455838992505, -0.6478675504169954], + [-60.860946362728754, -0.6423089897242505], + [-60.882616278683095, -0.6492559268533467], + [-60.90816608525103, -0.6239827711651296], + [-60.90872151846672, -0.6159171050625802], + [-60.91622374650861, -0.6103697637210626], + [-60.91594707919783, -0.5898099329622423], + [-60.91233404346747, -0.5812037293561442], + [-60.9206676412638, -0.5553724879259857], + [-60.93011674410976, -0.5548127931476422], + [-60.93566580285403, -0.5600948716483025], + [-60.9464992660549, -0.5595343216834663], + [-60.95316631861073, -0.5545350627369225], + [-60.9581707455989, -0.5603642200793454], + [-60.97539391882744, -0.5625886501166583], + [-61.00039084518087, -0.5598108427474743], + [-61.02511272976227, -0.543973797117817], + [-61.033725693296844, -0.5489819470690215], + [-61.04594774657806, -0.5459238902981634], + [-61.05511056483035, -0.538696996597644], + [-61.06372550403476, -0.5131412892309891], + [-61.08733678638774, -0.5000937299943038], + [-61.09649928317518, -0.49953361172410893], + [-61.11233479298633, -0.5073067526330741], + [-61.119558256338344, -0.4998054873923966], + [-61.128998337804035, -0.49758850712753727], + [-61.148717882515086, -0.4992539781920523], + [-61.1551118118715, -0.5053676257945682], + [-61.15746221409405, -0.5153342589134968], + [-61.16396025566325, -0.5124106389750626], + [-61.1734429124921, -0.508144987589124], + [-61.19843956799943, -0.5059214000824984], + [-61.20871762118642, -0.4986953372429871], + [-61.21677728971964, -0.5000851744586288], + [-61.22289308587654, -0.5056418878352031], + [-61.22316808983518, -0.5192537905072666], + [-61.216221104681296, -0.5331397800449809], + [-61.22399994113988, -0.539251227192264], + [-61.22399755456901, -0.5595286524961608], + [-61.23094823173808, -0.5639781039736216], + [-61.275386351520964, -0.5761963232684149], + [-61.28359504788437, -0.5744239111984779], + [-61.28566877701483, -0.57397630341197], + [-61.2981686270052, -0.5761938997963404], + [-61.32594725449392, -0.5978660494432638], + [-61.34705405559089, -0.5950831474146521], + [-61.356778755925184, -0.5984174404333295], + [-61.36650258259015, -0.6070316709776168], + [-61.39038478082039, -0.6175827400328279], + [-61.407052824863165, -0.6314691876761518], + [-61.428724454257114, -0.6342468195184114], + [-61.43066881780653, -0.6431391636601977], + [-61.42649801756757, -0.6531381678996746], + [-61.4351122349302, -0.6584154129282288], + [-61.456777018921905, -0.6570270462512088], + [-61.46455152633021, -0.664800617830403], + [-61.47288869888798, -0.6836911389457858], + [-61.4748330007237, -0.7025831387504378], + [-61.4848352273988, -0.720636732702149], + [-61.51650026450582, -0.7456346135481013], + [-61.53260710392002, -0.7511926213005216], + [-61.535079737568616, -0.7544643967434712], + [-61.53872571082973, -0.7561973824519123], + [-61.5402024862089, -0.7612442119301233], + [-61.54205387249891, -0.7636939296104501], + [-61.54617166694928, -0.781636381116071], + [-61.552058686346356, -0.8017457303174734], + [-61.551797314359604, -0.8061446019473767], + [-61.55289236879533, -0.8109165876732316], + [-61.54983048197552, -0.83921073449884], + [-61.54344107411898, -0.8434180541041942], + [-61.5434494253688, -0.8523037422050401], + [-61.55817049747594, -0.8639752765974064], + [-61.5587245930553, -0.8931379166011866], + [-61.5784424701863, -0.9100774008281249], + [-61.5801126535525, -0.9303539307422286], + [-61.585113336673395, -0.9370218195135039], + [-61.57955565057288, -0.9559136554718981], + [-61.58344365321702, -0.9825767673573081], + [-61.57594532540621, -0.9881349763614454], + [-61.56060959464714, -0.9880534346517948], + [-61.56289290596916, -1.000359108175917], + [-61.5601122837125, -1.0100828661113055], + [-61.547887069741755, -1.0231380806317747], + [-61.54344260752264, -1.0353622598481207], + [-61.54400085843138, -1.0623031371995861], + [-61.546503334321066, -1.0711898410552114], + [-61.56761571288231, -1.0745282664951923], + [-61.57650433194487, -1.079249493231016], + [-61.57817148812104, -1.0884154210872867], + [-61.56622359000997, -1.099805062936565], + [-61.57455621010203, -1.104804226634307], + [-61.57789203913756, -1.1131338704332294], + [-61.570948341662046, -1.120360439248803], + [-61.5665047599154, -1.1325823111537803], + [-61.56899762212285, -1.1406362123400169], + [-61.57871952928301, -1.1509129286966606], + [-61.58205251873558, -1.1645214660097953], + [-61.57372633065572, -1.1847955581105556], + [-61.582615622179, -1.1895234124634844], + [-61.588172780546515, -1.1972992509955531], + [-61.595665846632656, -1.2234116164695141], + [-61.6067788994461, -1.2445186157158241], + [-61.60761582429216, -1.278133723014166], + [-61.626781321904375, -1.2939714627630614], + [-61.62872862646188, -1.3014691682350827], + [-61.61150485829982, -1.30813584751108], + [-61.60569560817311, -1.3157667955006993], + [-61.58538775871803, -1.338686734525348], + [-61.58205498571753, -1.3534090602481683], + [-61.587614542335196, -1.3614696822482135], + [-61.5998363825246, -1.3675798352016848], + [-61.61900120248706, -1.3947991060372311], + [-61.61456051979769, -1.4025772510727126], + [-61.60289435075085, -1.407304408057699], + [-61.59428139173905, -1.4056372863134476], + [-61.58178576212546, -1.4095237664328677], + [-61.573722658680325, -1.428690973061042], + [-61.54789446414724, -1.429520112332388], + [-61.53817459449307, -1.4334063740405592], + [-61.539277935757575, -1.4439669229975265], + [-61.532898292445296, -1.4650755070498946], + [-61.51636330961277, -1.5024326499141707], + [-61.4812281721706, -1.5178524170383396], + [-61.47317250552782, -1.5278524375317342], + [-61.469839400136465, -1.5381303898308523], + [-61.47038882823191, -1.5459127416563374], + [-61.4753927758494, -1.5531314385886463], + [-61.47455934434521, -1.578969941393155], + [-61.4826181866098, -1.5806356744585592], + [-61.49094388850633, -1.5748033693541166], + [-61.544562838914835, -1.5256287470412526], + [-61.55956250494267, -1.4950746986972983], + [-61.572058076114615, -1.4781318305039501], + [-61.6048338361767, -1.4481329890712613], + [-61.635394416688946, -1.4339654346494224], + [-61.6748168556279, -1.424357249860882], + [-61.68721151894805, -1.4201662873637149], + [-61.72311149407548, -1.4057203180766435], + [-61.74066770035924, -1.3920184321729334], + [-61.76956279709751, -1.3828550903595], + [-61.79009055129648, -1.378967129547388], + [-61.79788753029878, -1.380629715769038], + [-61.81706187119781, -1.3995167811576237], + [-61.840449875760505, -1.4005147749211135], + [-61.86927689707109, -1.4017441173060763], + [-61.89650126513681, -1.39535319358086], + [-61.90538827274915, -1.3795224834308055], + [-61.90585720547637, -1.371629003681655], + [-61.90900599210971, -1.3486838337150393], + [-61.92733507118125, -1.3206304209382487], + [-61.94539140508792, -1.3047985275367153], + [-61.94983263308759, -1.297018818924079], + [-61.95678043964683, -1.2659070106815644], + [-61.96678090895843, -1.2428560852056516], + [-61.98789251691217, -1.2167389571864446], + [-61.989276051297864, -1.2017405548824434], + [-62.01733524762755, -1.1417416686169808], + [-62.062053346015034, -1.09979641069844], + [-62.07149931964378, -1.097577977855742], + [-62.08788531793077, -1.1000766413361909], + [-62.09955556211846, -1.096740190595661], + [-62.10538677568325, -1.0864636319279026], + [-62.114551062022585, -1.0834029571409398], + [-62.11816412065431, -1.0764643409560213], + [-62.111220374373225, -1.0603576894479572], + [-62.12539028732357, -1.0372984981176527], + [-62.14288237546447, -1.037299203107172], + [-62.14538691487399, -1.028410812345433], + [-62.15483208110687, -1.026185288720834], + [-62.16816263624191, -1.0142449011113233], + [-62.171780362203286, -1.0059085391857225], + [-62.199833066700656, -1.0003491478858688], + [-62.203724808329554, -0.9828484342814091], + [-62.213439038379306, -0.9836838738517265], + [-62.22732714600359, -0.9734367502307912], + [-62.2589960682695, -0.9759101452687181], + [-62.27205693589188, -0.952016873207283], + [-62.285944496661145, -0.9439647533149423], + [-62.29371871895291, -0.948124680391183], + [-62.29816487358574, -0.9409107708585619], + [-62.31261353042, -0.9303497531695734], + [-62.317049972448565, -0.9142403515779304], + [-62.32844523328234, -0.9156287119453314], + [-62.340107345309555, -0.904236357587414], + [-62.356499326783585, -0.8750713408713099], + [-62.36483262297038, -0.8772986543053918], + [-62.3664946818928, -0.8692419989743726], + [-62.37621772134468, -0.8661863534808827], + [-62.36983355007898, -0.8592400930931603], + [-62.3734391741797, -0.848682133522848], + [-62.38038203223159, -0.8436833982352455], + [-62.37593736326955, -0.8364633940320799], + [-62.39399817665305, -0.8289620402849855], + [-62.39566716664435, -0.8203505497047139], + [-62.42816341365403, -0.8122922893142949], + [-62.43316004275015, -0.8039619090719263], + [-62.44260717523974, -0.8020198947504174], + [-62.44816883325523, -0.8100677299532164], + [-62.45316738817819, -0.8039643685144375], + [-62.46149901018062, -0.8017384568754541], + [-62.465381661979976, -0.788964378990729], + [-62.480666916381075, -0.7950704819106694], + [-62.500941914096565, -0.7814588868038401], + [-62.504270981698376, -0.7656283365678807], + [-62.51010628574609, -0.7589612144080592], + [-62.494825428217354, -0.7506270042257335], + [-62.498718357058024, -0.7339644426820461], + [-62.50593734275522, -0.7309095793307392], + [-62.50816006751334, -0.7142418342145065], + [-62.49538413864094, -0.7039575437717043], + [-62.49288401071265, -0.6875752036695642], + [-62.48649559119937, -0.6814601704573109], + [-62.46954756902675, -0.6939589487406103], + [-62.46371656987527, -0.6881288885614503], + [-62.45566508252938, -0.6920166542825061], + [-62.42844579604754, -0.6928515229228166], + [-62.42538539931555, -0.7000704224040447], + [-62.41677598318765, -0.7034050721933], + [-62.41038316732051, -0.710349409468317], + [-62.40677602145795, -0.7272931405294978], + [-62.39260308963317, -0.7195176591415836], + [-62.390381940387954, -0.7095179291514808], + [-62.38204972547823, -0.7061867393917707], + [-62.36705473947058, -0.7100702384572517], + [-62.35872123800329, -0.7070153133474604], + [-62.36122323351793, -0.699522371501916], + [-62.36927244288701, -0.6953545122097881], + [-62.3726085682157, -0.6864645547739828], + [-62.37066190567309, -0.6767410244283297], + [-62.35371818534528, -0.6770208196778802], + [-62.348723028261546, -0.6706306471127945], + [-62.34121990063892, -0.6759059379018147], + [-62.333242613328395, -0.6708181397475917], + [-62.33185349941493, -0.6622120667198712], + [-62.32657926216091, -0.6563766108958139], + [-62.31796465688228, -0.6616510750163672], + [-62.30907749944579, -0.6608274720294245], + [-62.30407952472211, -0.654159807854826], + [-62.296298227488116, -0.6522128091222545], + [-62.28740774405853, -0.6383271433479804], + [-62.29351961683138, -0.6227722533544859], + [-62.301582108486926, -0.6191521248106522], + [-62.30019192318356, -0.6108226042448569], + [-62.291855609794325, -0.6105482283207943], + [-62.290746795021604, -0.6022090933171607], + [-62.30241180850852, -0.5872095303770715], + [-62.309636902039344, -0.5833220680661676], + [-62.30824915119941, -0.5674843686521786], + [-62.31824443692895, -0.5524896931412939], + [-62.309359299495995, -0.5463801615168703], + [-62.31157586119584, -0.5374898963084666], + [-62.30380045671494, -0.5347074899982541], + [-62.309073322919545, -0.5141543388885429], + [-62.30268875048901, -0.5085963124901312], + [-62.294629527074065, -0.5077654781755914], + [-62.28630186390273, -0.49360018294002256], + [-62.290188957406, -0.48415189391521696], + [-62.284358690235564, -0.4774907425260225], + [-62.274911292318265, -0.4786038865118663], + [-62.270741397104516, -0.4705424354988133], + [-62.277965878501114, -0.46526514439393474], + [-62.27380441662684, -0.4541517316425726], + [-62.24852597615072, -0.43970715608165484], + [-62.24324450496125, -0.43221342348524766], + [-62.2271304590713, -0.42582130577512384], + [-62.22158039243008, -0.4094273270353602], + [-62.21268666385519, -0.4083185004508092], + [-62.217132467768764, -0.39943538173514026], + [-62.20213206316802, -0.39303948309134923], + [-62.206302700694245, -0.37693108959859206], + [-62.203798187252005, -0.3683222703095883], + [-62.195188635888044, -0.36443633163027866], + [-62.19380038696393, -0.3386024804824466], + [-62.18824220279417, -0.3308165592955967], + [-62.21963166393028, -0.31109729849212914], + [-62.22630205423566, -0.31720726694764523], + [-62.23574342615454, -0.3172077433560553], + [-62.23935822431445, -0.30803947394888215], + [-62.248244203068985, -0.3019283928889836], + [-62.24542771876694, -0.29445158280021544], + [-62.25407681562786, -0.27970768121808876], + [-62.253522129043404, -0.2713754075015491], + [-62.24157816523402, -0.2608220534189041], + [-62.238248260005605, -0.2527678469316202], + [-62.24685468292139, -0.2522082863097942], + [-62.252961694207606, -0.23665689344929092], + [-62.25323845334036, -0.2197121326683072], + [-62.245186039938254, -0.21165142339918777], + [-62.24685485509459, -0.18998970208611093], + [-62.24185540501088, -0.18165743172631393], + [-62.244906527787215, -0.1747113776562864], + [-62.25851996936647, -0.1652700603009193], + [-62.26796244627411, -0.16387881099247453], + [-62.29046287973626, -0.13944549353925212], + [-62.29380078656929, -0.12833906640299617], + [-62.319602477377245, -0.10251868400207274], + [-62.31780060503315, -0.08451510667058558], + [-62.322075500300095, -0.07032063256306982], + [-62.33013308211109, -0.06893030654524736], + [-62.332072021680126, -0.06060966660436159], + [-62.32318706882719, -0.06199727064452209], + [-62.32311951297317, -0.060859906530457614], + [-62.321773577749305, -0.038120596311890804], + [-62.32621958625982, -0.03146057561049291], + [-62.32260784042229, -0.024238424286372524], + [-62.34650834860898, 0.029613183154849006], + [-62.3615047596287, 0.04075043719178589], + [-62.37064121210102, 0.054102078442671564], + [-62.39065631477068, 0.05964855502477494], + [-62.41483137312052, 0.07438553140514362], + [-62.42426181028139, 0.09157965534861649], + [-62.42871109348538, 0.11853018333098164], + [-62.42427070450946, 0.13520214169908212], + [-62.42419864528861, 0.1398041781771883], + [-62.423164649974545, 0.1446821096814611], + [-62.42404769532226, 0.14951551810820876], + [-62.423989842718136, 0.15325691324102145], + [-62.4284395110595, 0.17354089173962028], + [-62.438423493118904, 0.1949024067446943], + [-62.45260710696275, 0.207421277815771], + [-62.45427813214009, 0.2435600663404351], + [-62.46815339540597, 0.27576111768292183], + [-62.45844769352615, 0.313501259849628], + [-62.46675176254226, 0.33297595545253555], + [-62.46093626626294, 0.3526753411394778], + [-62.45176779069915, 0.3651941503067971], + [-62.45287165125787, 0.3735403767247435], + [-62.44623389679074, 0.37912082667879554], + [-62.45593552361768, 0.39241815671019575], + [-62.458430410109216, 0.41769859212354404], + [-62.46759435906111, 0.426040277077826], + [-62.48510771511634, 0.4540879495295903], + [-62.50909399144277, 0.43989218627308957], + [-62.5185227857846, 0.4437088105071597], + [-62.522825839576875, 0.48557487471387634], + [-62.532869590688875, 0.5088164575119274], + [-62.52760027831052, 0.5465544905416572], + [-62.51815833685378, 0.5838248645778197], + [-62.538150489695646, 0.6752037092588682], + [-62.5352567536929, 0.6903703108902034], + [-62.529894742662805, 0.7059655581525437], + [-62.52843816273235, 0.7102004951656096], + [-62.50035412882925, 0.7479559868143701], + [-62.48785329823783, 0.7582325958992467], + [-62.46288618510288, 0.7768759661045915], + [-62.45759521502014, 0.7852049820253888], + [-62.4659336507732, 0.8290844032093613], + [-62.48090970333368, 0.8426796256849235], + [-62.485933221028255, 0.8665411415351175], + [-62.470913032774135, 0.9171360609629271], + [-62.448154571042245, 0.9432521554240084], + [-62.44259467914197, 0.9585407679414276], + [-62.44338797203447, 0.9676100294980554], + [-62.443443466059385, 0.9682486338321119], + [-62.44982993628621, 0.9837941069449981], + [-62.46148950492138, 0.9949181400450162], + [-62.47455445612187, 1.016306991981515], + [-62.477588691760225, 1.0279555608461597], + [-62.47428455213577, 1.0402272948593319], + [-62.47896743793442, 1.0479434367502023], + [-62.478141924192585, 1.0566117254683567], + [-62.470369052269, 1.0774226060645868], + [-62.47147913018629, 1.0862888313674868], + [-62.48009360412082, 1.0888231933998787], + [-62.48981687945593, 1.0846644284772737], + [-62.520945654008514, 1.0838237503982042], + [-62.529526684223505, 1.088826335916094], + [-62.54570897684724, 1.1237638585822292], + [-62.54696512422566, 1.1299169785353957], + [-62.55455038390037, 1.1749123943509125], + [-62.58102431262092, 1.24113652778861], + [-62.58953926147799, 1.2667878190963244], + [-62.59971089028504, 1.3081781195288247], + [-62.602053018463536, 1.3257811623940825], + [-62.61064769781286, 1.352658385843395], + [-62.62037628583259, 1.3627025567651558], + [-62.626202048127205, 1.38520885827787], + [-62.62037225608279, 1.3943658255544573], + [-62.62010765036022, 1.403792447358116], + [-62.639819274040974, 1.4382477229868216], + [-62.6564932196349, 1.4485343629597003], + [-62.67675760317317, 1.454640842293566], + [-62.698438973012806, 1.4754492662080678], + [-62.720628741997984, 1.4885552548667293], + [-62.73065372883409, 1.4996427030966113], + [-62.73620231716234, 1.529640345924021], + [-62.73944766588738, 1.532159697581797], + [-62.749637638433114, 1.5359827431124833], + [-62.75664731632387, 1.5476389636505814], + [-62.78163636920135, 1.5725266380110818], + [-62.80121161571599, 1.5867192466035975], + [-62.80513426194066, 1.591357383654936], + [-62.806551338466726, 1.604117756414522], + [-62.79617911628009, 1.6306946740426687], + [-62.77334936058828, 1.6563221955288887], + [-62.76573580615563, 1.6713195516635726], + [-62.755999408965, 1.6757658329036882], + [-62.73334371372, 1.6951132671688016], + [-62.72358388719102, 1.7124092429725186], + [-62.73092374099332, 1.8182429637786546], + [-62.70403038077896, 1.8739569966940839], + [-62.698580264106, 1.9119686290941686], + [-62.70504972410659, 1.9365764661601546], + [-62.710244301545046, 1.9441274232405363], + [-62.719503828547495, 1.9534505574190468], + [-62.742322642504895, 1.9667023121377252], + [-62.81200219513544, 1.9912414451737384], + [-62.812072806136776, 1.991334914173277], + [-62.81309494340111, 1.9916959309048756], + [-62.82872493572041, 2.0133255707542492], + [-62.83868179538893, 2.0164812993363337], + [-62.919670413279405, 2.0249997474459778], + [-62.94833051790851, 2.031055125249182], + [-62.980641972947836, 2.0177998789308615], + [-63.023623333535966, 2.014694199710979], + [-63.053414923868196, 2.0289049995372386], + [-63.06303076387778, 2.0358753049241405], + [-63.0707098351364, 2.0400016054110424], + [-63.07266306597859, 2.0428567056111535], + [-63.07711374409031, 2.046081810691354], + [-63.085389220458815, 2.0614527365218764], + [-63.10708648855549, 2.0793602608078894], + [-63.11967801450808, 2.0964687098428207], + [-63.13602885176539, 2.1346493254550767], + [-63.13616752889467, 2.1372568532286413], + [-63.13840383402658, 2.1427871499115194], + [-63.13743387118124, 2.1610717715640626], + [-63.14136013294734, 2.172462950601594], + [-63.15844357294711, 2.174303424028069], + [-63.16530432384089, 2.180330264699864], + [-63.1939780122402, 2.1812302313151366], + [-63.273213896969516, 2.1553803214919496], + [-63.28262772079102, 2.153899819269736], + [-63.31063190300726, 2.165022907038948], + [-63.35963384048478, 2.1971211663778325], + [-63.371931490989304, 2.2118814718255013], + [-63.37215100680862, 2.211764982448443], + [-63.40108116795921, 2.2456019651401102], + [-63.402556156216534, 2.253077183339296], + [-63.39768105378421, 2.274301648833886], + [-63.40129547307631, 2.296693907121529], + [-63.425400738855856, 2.364282993874514], + [-63.42217062617322, 2.378564688655851], + [-63.394709276753254, 2.4070991725567015], + [-63.395772873402194, 2.4261590240365236], + [-63.40668660126612, 2.435959837556136], + [-63.44582217259049, 2.4424418127285143], + [-63.49981955266146, 2.43600797313023], + [-63.59066699255958, 2.41492509672097], + [-63.65579991900588, 2.3939348455702305], + [-63.70376539364434, 2.3870497159301425], + [-63.75100437666924, 2.386794865516666], + [-63.78068903641276, 2.391300557001577], + [-63.833878350539344, 2.4081138903836883], + [-63.86764108467046, 2.424510277153809], + [-63.96105936654565, 2.454696471392622], + [-63.97788647577106, 2.46756396142582], + [-63.9881471630481, 2.46498383441843], + [-64.00039745565755, 2.4782131692812652], + [-64.00545659893687, 2.4780310919171504], + [-64.01233383113525, 2.469769090088004], + [-64.02063518146791, 2.466594256115305], + [-64.0248023433742, 2.4718823803858685], + [-64.03189135190772, 2.4722373724711577], + [-64.03008533470616, 2.481880771465986], + [-64.0378562706422, 2.4868733456627083], + [-64.0386937761842, 2.494099091875501], + [-64.05591380686047, 2.497709641150892], + [-64.0586908538798, 2.5024363772000036], + [-64.05702866491976, 2.5129856296934348], + [-64.04524373617771, 2.5325889690433114], + [-64.04874766968643, 2.548683230151298], + [-64.04424922232823, 2.5588185867054243], + [-64.04424705432918, 2.5732655600709715], + [-64.03897249280415, 2.5785436169782945], + [-64.03353123409194, 2.5749084857657034], + [-64.02897390551503, 2.5760483769669817], + [-64.02425160500609, 2.5907645299357323], + [-64.00896775265355, 2.6082621126865226], + [-64.009800724613, 2.620210006535922], + [-63.991486798748994, 2.6363065795664986], + [-63.98563273018852, 2.6454863064012297], + [-63.984247407633376, 2.6596529724564384], + [-63.991276368353596, 2.6701533398706037], + [-63.987028293941094, 2.674373288374966], + [-63.98536109506382, 2.686040068106116], + [-64.00168879890467, 2.699651453087949], + [-64.00341371349563, 2.7071571055560097], + [-63.98952521711762, 2.716597709787248], + [-63.983971693360935, 2.716045364892928], + [-63.98285901600289, 2.7238231359602088], + [-63.98676954939076, 2.7248164034918827], + [-63.98646837157988, 2.7307684751177352], + [-63.99897050640611, 2.7385409263670137], + [-63.998972197192884, 2.7599307247503146], + [-63.99313618852959, 2.7677111508640744], + [-64.00924374134928, 2.7782647740343425], + [-64.00924929676765, 2.7871551352103316], + [-64.01396951389633, 2.7954900249861927], + [-64.01455184753085, 2.806654738010853], + [-64.01035483308921, 2.811321168221165], + [-64.01313723372166, 2.8191021046102], + [-64.04702507184827, 2.836322518203384], + [-64.05758236843327, 2.850483345060484], + [-64.06674326799546, 2.8796526978456862], + [-64.07146386714439, 2.937706033837756], + [-64.10230074781381, 2.951599489599993], + [-64.11118569676283, 2.960486672455081], + [-64.12480252697205, 2.9804920086343833], + [-64.13035833571443, 3.004374953357766], + [-64.16063133052434, 3.0327133837139364], + [-64.17312971791867, 3.057705619491163], + [-64.22035892129341, 3.0957641919060626], + [-64.2350783754245, 3.1143826039070936], + [-64.23341122793181, 3.129929718918441], + [-64.21896200215004, 3.152707895609292], + [-64.21063390941029, 3.172152264809979], + [-64.20813634357364, 3.1888235115776746], + [-64.2136909074325, 3.2232659155799013], + [-64.21369006237873, 3.2463228852291484], + [-64.24118735014038, 3.3149134240497493], + [-64.23424098647415, 3.38409869378352], + [-64.24896118193523, 3.3990948193775306], + [-64.25507337801794, 3.4110389443235767], + [-64.25174542667426, 3.4279858374401497], + [-64.23979437775122, 3.442986212399121], + [-64.20257069510116, 3.4771522365253946], + [-64.1897958027218, 3.494933649122703], + [-64.18424515959363, 3.489375395003699], + [-64.18674035347664, 3.4996510272957795], + [-64.18368752927587, 3.53798396943688], + [-64.18562834351384, 3.559650259139286], + [-64.20590961879027, 3.590482760460815], + [-64.2442393448037, 3.624928505965738], + [-64.25757871009935, 3.6477091039461995], + [-64.27563075477528, 3.6613219612643535], + [-64.28090789750263, 3.669377534844169], + [-64.28896502432458, 3.6996549637948206], + [-64.3278474471469, 3.720489392797329], + [-64.34257415340812, 3.73493070714921], + [-64.38979188207514, 3.7596505364013932], + [-64.40895965719048, 3.765767832568354], + [-64.42840588284119, 3.779935381452104], + [-64.44729103051723, 3.784105971982055], + [-64.47229955811879, 3.781602551793865], + [-64.48535216598007, 3.787433264380623], + [-64.50532613274854, 3.809912136372765], + [-64.52429460391883, 3.8419428133828495], + [-64.55279281113044, 3.8637038076239234], + [-64.56818255920258, 3.881791783056985], + [-64.58007213625953, 3.9283314188631615], + [-64.59721013784618, 3.9386957037358092], + [-64.61968306001602, 3.9513350208219222], + [-64.63384669371452, 3.9750739753434448], + [-64.65054671399999, 3.991940729757586], + [-64.67368623395907, 4.004659274579294], + [-64.67504781609018, 4.012412093405288], + [-64.68062787185892, 4.016323623550774], + [-64.6836825970597, 4.040214124358522], + [-64.7084032400032, 4.066596436002226], + [-64.72285939668225, 4.1049517562048905], + [-64.73201061808814, 4.120214012041763], + [-64.75312389311556, 4.136881676817465], + [-64.78340791965121, 4.152715087998439], + [-64.81034479838094, 4.17465582671684], + [-64.82173515664387, 4.211885948891775], + [-64.82506768976351, 4.238824209287898], + [-64.8214550514195, 4.258548075439904], + [-64.79951021417861, 4.284107199409911], + [-64.78034742541112, 4.286603508053814], + [-64.69951435067817, 4.25020811313267], + [-64.68451676426301, 4.239379209980376], + [-64.65840609929249, 4.211603813501283], + [-64.64090106718466, 4.165215721377872], + [-64.63090570554266, 4.143547512610509], + [-64.62340361664927, 4.134932613295733], + [-64.59285239464798, 4.114098549081351], + [-64.56032436250983, 4.101603275965453], + [-64.5442382631738, 4.113819081571215], + [-64.5209074750076, 4.116319457605112], + [-64.5003502538362, 4.110484988638697], + [-64.5000734713657, 4.112711299148534], + [-64.45229507059842, 4.123268001960376], + [-64.4314581283961, 4.13465882911273], + [-64.4036839923748, 4.132152438040667], + [-64.38618777043845, 4.137158008082326], + [-64.33533774389106, 4.129099867935577], + [-64.30618101665245, 4.131314596192946], + [-64.28951792263058, 4.143818897411444], + [-64.27423704254291, 4.14270524855998], + [-64.26617956957728, 4.126313989779473], + [-64.2506317021329, 4.129654835411187], + [-64.23201792012473, 4.123820377139954], + [-64.21868101755378, 4.115486914521078], + [-64.19063071122777, 4.116597756622584], + [-64.17173716562097, 4.128820746249507], + [-64.16423814563696, 4.126315505807714], + [-64.14729699077549, 4.110205867047046], + [-64.13313198174588, 4.106037948714191], + [-64.11257096711532, 4.09131746849517], + [-64.09618175328373, 4.053545518367888], + [-64.09451425700803, 4.042710208848837], + [-64.09980008754005, 4.034647417866702], + [-64.09701582084632, 4.025206136360357], + [-64.07562583904084, 3.9996460825395697], + [-64.05062518823341, 3.950202313089455], + [-64.03891053908401, 3.9455207757422994], + [-64.03590987147766, 3.944090418132465], + [-64.03552205877936, 3.9342910435073954], + [-64.00173741187264, 3.9329866271162905], + [-63.99701707468156, 3.9035389396056703], + [-63.98618632534584, 3.896876070759213], + [-63.97868357060334, 3.9004818577364917], + [-63.96396452824573, 3.867983233291887], + [-63.96118623407916, 3.869922860940176], + [-63.95924112148324, 3.8874240988382214], + [-63.956468025210725, 3.88964715112197], + [-63.94979567611749, 3.8865914614198465], + [-63.94618655370139, 3.9004795593182915], + [-63.93784936452804, 3.9013154379272854], + [-63.93702056573044, 3.9149221367524905], + [-63.928126082783734, 3.9249242024284734], + [-63.91423693147653, 3.926032304835708], + [-63.90118181335496, 3.933814366202288], + [-63.89090376439958, 3.93048624045184], + [-63.87007243989627, 3.937709103566349], + [-63.85886435824791, 3.94764747179727], + [-63.85424335305968, 3.944647481428123], + [-63.851774858973464, 3.9477304675372817], + [-63.850074768936814, 3.949928447316845], + [-63.84536423617967, 3.947805467111899], + [-63.8392387539777, 3.946034924726073], + [-63.835069031003684, 3.939925189461266], + [-63.82868697365204, 3.939365904069246], + [-63.81257496398704, 3.939090905404913], + [-63.796463763150776, 3.9326992080893954], + [-63.77229393685421, 3.9388097694476807], + [-63.76729220175999, 3.935479437367371], + [-63.75507418470713, 3.940203623694963], + [-63.737855265556085, 3.928535149031741], + [-63.74368451770582, 3.9210340048239054], + [-63.73868275847003, 3.91519699849554], + [-63.7231280381313, 3.9140933670907287], + [-63.71797091547728, 3.9076450782600274], + [-63.711463043035735, 3.903812643863994], + [-63.71090836807167, 3.9124234052284876], + [-63.705079650577474, 3.9138113608856515], + [-63.68257536138798, 3.9074230631878457], + [-63.66313331621114, 3.9213137827711413], + [-63.6750715563259, 3.9227031320800476], + [-63.673409027498465, 3.9268674352747026], + [-63.678404755278834, 3.928255646224041], + [-63.682301952169254, 3.935754252250889], + [-63.69312804149836, 3.9360321079451612], + [-63.70035634995703, 3.944365644245594], + [-63.700632432859614, 3.9494864129441325], + [-63.69480036681941, 3.9565910677526723], + [-63.69618337805255, 3.966312247540608], + [-63.690906484045385, 3.9860351683802735], + [-63.68590780827844, 3.9921474192784254], + [-63.68924185867255, 3.9990890845469367], + [-63.68535121351896, 4.009087702106983], + [-63.68924648251979, 4.015478761725152], + [-63.67674536769563, 4.01908556967606], + [-63.67562949146758, 4.015216370271208], + [-63.660631820402095, 4.009930007991768], + [-63.652576470498545, 4.001871863899226], + [-63.64340436683613, 3.9785329465072348], + [-63.62746829249935, 3.969264035344906], + [-63.6123670749076, 3.9504999566598586], + [-63.59202448254338, 3.9282501418914104], + [-63.58785598602539, 3.9174254559330364], + [-63.593129709827984, 3.905474597711923], + [-63.5845183815812, 3.895752062809142], + [-63.59173603160059, 3.890764731745749], + [-63.59173965231076, 3.88547593226273], + [-63.57146478303305, 3.8832513562093145], + [-63.55451719171277, 3.8910305752557135], + [-63.55507558139647, 3.8743714590130827], + [-63.55174438641259, 3.8649180676242945], + [-63.54812769521395, 3.862701571873027], + [-63.53924283281908, 3.8652005822218585], + [-63.53285657525796, 3.8571434401667077], + [-63.523409829655805, 3.856033940754761], + [-63.512300749001525, 3.84742519582358], + [-63.5034118170196, 3.849645414448993], + [-63.49729858218152, 3.839917453251647], + [-63.49479719662449, 3.8504718312197017], + [-63.50285200817418, 3.867978692031119], + [-63.49896605709667, 3.8699183108017023], + [-63.49368822014315, 3.8671407002377833], + [-63.48924350032316, 3.8740868618192494], + [-63.47369139134495, 3.8690843747574326], + [-63.46896452283404, 3.8618635257275136], + [-63.461469550410484, 3.8624198068840614], + [-63.452583013257374, 3.858254568087598], + [-63.43452426883357, 3.8649190166720797], + [-63.4336839370279, 3.876028929199275], + [-63.43841178047519, 3.8832504989936387], + [-63.41785634520524, 3.9010279905398266], + [-63.411747032102454, 3.9118578865217524], + [-63.420355079976424, 3.9238093351832366], + [-63.41619113512903, 3.9299251961823605], + [-63.417580299922065, 3.93491377827306], + [-63.43285598167142, 3.934362130598496], + [-63.439522228117745, 3.937141012398676], + [-63.44257625705596, 3.939641690339965], + [-63.43924749727163, 3.9485310413475583], + [-63.44790712028656, 3.952364962660339], + [-63.45202185014466, 3.9554717893065283], + [-63.42868735890488, 3.9771409848111414], + [-63.41341120706179, 3.975197699732632], + [-63.39312871509262, 3.9804697639305804], + [-63.351188162185444, 3.959635909465225], + [-63.33840663005494, 3.95686078401918], + [-63.324518316259685, 3.963806642477096], + [-63.31257699454665, 3.960476350670693], + [-63.31480026694701, 3.968529377350766], + [-63.31090781831942, 3.981864091005652], + [-63.298133662319984, 3.9765885451626164], + [-63.2923012558861, 3.9704658326670677], + [-63.28646402617111, 3.9726926714560586], + [-63.28063011751808, 3.9551972429442994], + [-63.25396589396434, 3.961580089773861], + [-63.24742669454419, 3.9545970224444784], + [-63.204803922813575, 3.9512996885280978], + [-63.22202108170671, 3.8985233267140593], + [-63.23341286525402, 3.8815792027819573], + [-63.23202493504915, 3.850747222775092], + [-63.2284142005856, 3.845748850053349], + [-63.2264661379685, 3.8354687624585395], + [-63.204249416062396, 3.8115783252641124], + [-63.19564575077294, 3.81518801721217], + [-63.17952307889077, 3.8129743359310297], + [-63.16451854813605, 3.8049166363921576], + [-63.151187413721324, 3.806021075506829], + [-63.13561215620754, 3.802417785382276], + [-63.123135537619, 3.8046362758062124], + [-63.103137743482094, 3.793244163922885], + [-63.08674229815281, 3.778527234573508], + [-63.08230076010509, 3.767138412806174], + [-63.06952212895271, 3.7529688037416857], + [-63.06063295783464, 3.751854194493417], + [-63.05896729816568, 3.74741335693305], + [-63.058967348622566, 3.7404652345179605], + [-63.06340870915663, 3.7338004961708644], + [-63.06340749822967, 3.7049142362318412], + [-63.070359874779676, 3.696303408755791], + [-63.08119324880558, 3.6932473696632897], + [-63.07285971344061, 3.685470965170085], + [-63.03230270898652, 3.665744244966255], + [-63.02674391249843, 3.650193500748424], + [-63.0153524582582, 3.6451889629105283], + [-63.003130821279115, 3.6246358786070956], + [-62.99064053528924, 3.6121365773354532], + [-62.9848000671467, 3.609638747175117], + [-62.96546701362352, 3.610623714404604], + [-62.960081412064135, 3.6076913570066007], + [-62.9523694243547, 3.6118236528883925], + [-62.92897090739719, 3.6393569531191257], + [-62.92202625579998, 3.652684798338853], + [-62.91896615816998, 3.6724090579336273], + [-62.90868923222401, 3.67101921107563], + [-62.88674230403142, 3.6835234046699044], + [-62.87230553208696, 3.699072164330315], + [-62.85285298800663, 3.7118574600068195], + [-62.835640254335594, 3.7385197429547357], + [-62.81924970916069, 3.731577515054811], + [-62.810077407329146, 3.7326865645765346], + [-62.80424919000166, 3.729633950961455], + [-62.7978593920753, 3.7207403204119083], + [-62.78980596722825, 3.7176824730195626], + [-62.78480210088966, 3.699631438951228], + [-62.775910255927926, 3.697135325432662], + [-62.77063796411613, 3.6882365300934152], + [-62.74841304272221, 3.6726833938068224], + [-62.74369161396647, 3.6732396013319333], + [-62.74396627447259, 3.6837952664872056], + [-62.73674548649815, 3.6890763050286632], + [-62.736473092442125, 3.6990751945916553], + [-62.73091462473248, 3.707685586914134], + [-62.73480113275337, 3.719349582477051], + [-62.73424606787684, 3.737683079964894], + [-62.73980572583667, 3.75629579401445], + [-62.7356339838108, 3.7790705665204927], + [-62.74341288546135, 3.7871288314682436], + [-62.731746594922754, 3.796292312565159], + [-62.72896797818966, 3.8046260555810356], + [-62.74314066796776, 3.8082384929970576], + [-62.74980552005019, 3.8174058082676487], + [-62.771187371279915, 3.8340781473552155], + [-62.77146765075635, 3.839625402990779], + [-62.75369476494331, 3.8496416385914762], + [-62.75841346264734, 3.8543474688272563], + [-62.75730648157187, 3.8596337268397183], + [-62.76897466975749, 3.867132364302444], + [-62.77591377585217, 3.8751857331051642], + [-62.776199673514164, 3.8812968690203515], + [-62.78869137602775, 3.893244201267164], + [-62.78730272159499, 3.914632139464651], + [-62.78312991607896, 3.9168474965060365], + [-62.782580968934674, 3.921848059934358], + [-62.78646892379065, 3.92935440349556], + [-62.78285495150725, 3.9343529330341336], + [-62.76174575540198, 3.941571994328946], + [-62.752146747130745, 3.959915234749416], + [-62.743136201535386, 3.9743519270830303], + [-62.76230258503024, 3.9840758377999097], + [-62.768690756976646, 4.006292346283525], + [-62.76646986115161, 4.012404205276531], + [-62.749520829954115, 4.020736566084917], + [-62.753416822130355, 4.03129808868628], + [-62.748412516375794, 4.034909219077929], + [-62.735912280381974, 4.039905415278553], + [-62.701746795338344, 4.030737889189028], + [-62.68924491403006, 4.032407892942022], + [-62.678692483766156, 4.038517904096823], + [-62.65896526117495, 4.034632854039362], + [-62.656186561047434, 4.041851142063286], + [-62.646192453711954, 4.046291551326708], + [-62.62813466821666, 4.039346977524822], + [-62.609524789571935, 4.044067434833171], + [-62.60175037425289, 4.036288342006675], + [-62.588417676320766, 4.032402613204485], + [-62.58118802476078, 4.024904961828753], + [-62.58119078199818, 4.018241296259508], + [-62.572578622851935, 4.014628261939401], + [-62.55563207571146, 4.01823763857173], + [-62.560638039792764, 4.024901553275867], + [-62.5622999735958, 4.0365665531347705], + [-62.54813471393952, 4.045185074450381], + [-62.537577335186356, 4.043237090316459], + [-62.53314057408123, 4.046012228970373], + [-62.5346730205832, 4.051444267693933], + [-62.54341160808019, 4.061844535644001], + [-62.54146597876869, 4.078789130793409], + [-62.54896643444355, 4.076848099577513], + [-62.558412560368744, 4.080183130024091], + [-62.55396976282019, 4.082126042190596], + [-62.54952715803743, 4.095733769438519], + [-62.54452330316965, 4.097683677255484], + [-62.55257512171185, 4.108787464609747], + [-62.54230638188078, 4.109344386606153], + [-62.52313945848477, 4.1176760694166115], + [-62.52258057955691, 4.123514794198056], + [-62.531748852664784, 4.13267591378719], + [-62.53147164779751, 4.136292420934559], + [-62.508139442594896, 4.1265677699501975], + [-62.50841477569686, 4.1371190312659785], + [-62.49868911369729, 4.142402443182277], + [-62.492302039505425, 4.1412894840779595], + [-62.488414949273945, 4.134344342370127], + [-62.47813640538141, 4.13073083738847], + [-62.4714713163993, 4.139068081150888], + [-62.465080339210004, 4.138509463952741], + [-62.460638590694714, 4.142680547471193], + [-62.4625771622257, 4.151284008510276], + [-62.455076898735626, 4.155730126733057], + [-62.46257641686926, 4.1629594769405305], + [-62.47063689922164, 4.162954258881534], + [-62.463968183675554, 4.172678821061741], + [-62.46563745547704, 4.174620194947815], + [-62.46258480909195, 4.177954724676382], + [-62.4517492166636, 4.172961935178868], + [-62.44729921927034, 4.179618869768531], + [-62.4375810386023, 4.1829547609872355], + [-62.422028260280364, 4.181561704950105], + [-62.41758150592123, 4.184346751508553], + [-62.41369357498096, 4.1796192430140815], + [-62.40619338057668, 4.179894752870076], + [-62.3981324279203, 4.174065901712066], + [-62.39257705961544, 4.173508165312193], + [-62.38952704406965, 4.177960558174648], + [-62.3700794786203, 4.162675071331243], + [-62.36535968331933, 4.162671897435034], + [-62.36175094283384, 4.1671204387358305], + [-62.35341663964093, 4.165177635570937], + [-62.35036235611846, 4.150730040559713], + [-62.34174656641864, 4.146838833854911], + [-62.3295207136151, 4.134622118674965], + [-62.3223062427512, 4.140453203098746], + [-62.31785610813929, 4.140727686641883], + [-62.314248352150884, 4.136563462085841], + [-62.30258441198701, 4.1365591811022755], + [-62.292025643136284, 4.141288501579923], + [-62.279806513212286, 4.1296161249995285], + [-62.25258607015664, 4.129342612607927], + [-62.2445259354907, 4.116838729747159], + [-62.234807747796985, 4.118229013512359], + [-62.22758146795994, 4.111839251591299], + [-62.21535798513939, 4.109064611764882], + [-62.19702365512848, 4.11294755161764], + [-62.19341233818205, 4.110174262603898], + [-62.19369418525012, 4.0982275999270925], + [-62.177302250002, 4.090176252606795], + [-62.16426912716529, 4.09114127922184], + [-62.16147259111452, 4.086001964077163], + [-62.14786577819086, 4.07906419662802], + [-62.14591120637298, 4.074062034413342], + [-62.142026402591085, 4.082109559568795], + [-62.135079998880826, 4.086562795335634], + [-62.114253548654716, 4.087953528185953], + [-62.112029758807054, 4.092390033990415], + [-62.11536017285774, 4.098507858654641], + [-62.112858412863496, 4.101281801518542], + [-62.117580953830746, 4.104342161079573], + [-62.11730845883618, 4.117390450860323], + [-62.105080966704165, 4.115167837245627], + [-62.09841962895055, 4.119059214285699], + [-62.09980107401646, 4.12461473936844], + [-62.09702828272861, 4.127391635108974], + [-62.091190923147835, 4.129062300530409], + [-62.08896848328893, 4.1240613447287835], + [-62.07840983492095, 4.119351000582637], + [-62.07175177948246, 4.125174867111192], + [-62.07091369853526, 4.130448669288293], + [-62.07785953438623, 4.136003072323824], + [-62.081469096116976, 4.144615786759836], + [-62.0767512575353, 4.1537801717762015], + [-62.06480308083758, 4.158504836836003], + [-62.04813698090504, 4.1501740776180025], + [-62.041748280697, 4.156006646765084], + [-62.032579907052686, 4.157943987505687], + [-62.033141909074025, 4.1537820508525884], + [-62.02897186233151, 4.150170169156764], + [-62.02174495167847, 4.157113752183456], + [-62.01147547119158, 4.155998211049894], + [-62.00647486621966, 4.164610535186918], + [-62.00036057851747, 4.164055901256221], + [-61.993139799943464, 4.17489323406254], + [-61.982864900554, 4.180443262050407], + [-61.9803647283602, 4.179052408284696], + [-61.982863741410384, 4.17155740150119], + [-61.980919530331406, 4.161831203542321], + [-61.975081503576206, 4.150998296115609], + [-61.95064227064159, 4.125445263421524], + [-61.945085176602454, 4.111004504101251], + [-61.930640634535166, 4.10321841849779], + [-61.92758218985018, 4.1079522205804855], + [-61.930917036143114, 4.115444790913212], + [-61.92675175566724, 4.120448483943752], + [-61.920641426426045, 4.150726614762941], + [-61.9228675412623, 4.155712868649629], + [-61.9061994661656, 4.1565575268854085], + [-61.899809264483, 4.160723891242955], + [-61.889804330050005, 4.15461486047669], + [-61.880358682224994, 4.154887523790324], + [-61.873144076368256, 4.151275829017027], + [-61.869256614672004, 4.158228800097986], + [-61.874808998723196, 4.170163627979984], + [-61.86924957117869, 4.17266548306437], + [-61.86125822316117, 4.171030822311571], + [-61.85119674494953, 4.174054794527283], + [-61.84646825881764, 4.164333020265845], + [-61.836756761098584, 4.1601657965068775], + [-61.82397095413049, 4.163497534838749], + [-61.81869811206798, 4.167663006187654], + [-61.815635944555524, 4.188500489885483], + [-61.82175404438197, 4.199605082153525], + [-61.80869479199586, 4.202385053445021], + [-61.8078602971631, 4.213496997094078], + [-61.801193526514396, 4.218780037061738], + [-61.80230626240352, 4.228222270700155], + [-61.787862193346825, 4.231277468842986], + [-61.78563507995664, 4.224060190254892], + [-61.78258226474729, 4.224053779845195], + [-61.76397161130495, 4.232105528557865], + [-61.77480301278698, 4.2496090770695325], + [-61.76897061667618, 4.248212880397953], + [-61.73897064006205, 4.255996383600231], + [-61.73591651743192, 4.2632258422471345], + [-61.72396980699719, 4.269330603580859], + [-61.723140852868106, 4.260160740284195], + [-61.73147035011156, 4.252665448761838], + [-61.72563715482219, 4.2448815603427414], + [-61.72036562264284, 4.24488000868027], + [-61.703420389591614, 4.254611566251254], + [-61.691473494460894, 4.253501897487484], + [-61.68480805947968, 4.256273674539697], + [-61.68064212969157, 4.254048990841725], + [-61.67064407872543, 4.262383952467387], + [-61.65814220074411, 4.261547389786159], + [-61.65564028539305, 4.255441005827705], + [-61.64564308225004, 4.250994755555537], + [-61.64230712385611, 4.237940363109527], + [-61.63660684055193, 4.238027512745361], + [-61.63175106966239, 4.240993678653705], + [-61.62731112377949, 4.2537759977342375], + [-61.621474128200475, 4.2501569801531875], + [-61.608140928853345, 4.2609901260396725], + [-61.600922097664494, 4.249604890200676], + [-61.5906433127584, 4.244048344063573], + [-61.57202867589495, 4.250988276591519], + [-61.56008308159444, 4.251822544855438], + [-61.55452729525881, 4.257659318654403], + [-61.55314516398532, 4.265436991167303], + [-61.5417484793798, 4.272658718749651], + [-61.53230793763898, 4.284605534452835], + [-61.52313939526542, 4.288487642142119], + [-61.525922999677164, 4.295713241685879], + [-61.51286845938765, 4.309327148025029], + [-61.50814427076437, 4.321828803417981], + [-61.520918648003025, 4.325433386934445], + [-61.52091829293845, 4.332661122258682], + [-61.5273095822692, 4.342102287253869], + [-61.5253541029418, 4.34765913334429], + [-61.5167507244179, 4.3493339019647905], + [-61.521755420934895, 4.373218138894522], + [-61.520637507042004, 4.385711253980087], + [-61.51508583474591, 4.391818016325087], + [-61.51814325242751, 4.398209222794505], + [-61.513421868074545, 4.405428663605619], + [-61.486199972554594, 4.410435979576559], + [-61.472309257723644, 4.424322228291188], + [-61.465363287774274, 4.424320757990865], + [-61.462033612353785, 4.436263729714374], + [-61.4481397818722, 4.4390472129372505], + [-61.445367666055546, 4.434877961632299], + [-61.43981048115493, 4.435990723433799], + [-61.43563930303595, 4.432374259909227], + [-61.44202776085991, 4.427099345811684], + [-61.441198041833566, 4.424328449674016], + [-61.428139032126886, 4.425712936670408], + [-61.42730544772335, 4.431541579819409], + [-61.42202601310497, 4.433487294106088], + [-61.4078673244685, 4.4304342729076325], + [-61.40424995471737, 4.424596576389027], + [-61.37230763396074, 4.427101636336773], + [-61.351474532605536, 4.418765943075998], + [-61.33842004159553, 4.420705963657204], + [-61.33675616053758, 4.428205052044559], + [-61.319249605134786, 4.430151130134853], + [-61.32508314232389, 4.442375961892146], + [-61.31425598433763, 4.4509863785221615], + [-61.313142675265944, 4.457652525235937], + [-61.28814453255749, 4.457370086726728], + [-61.28841862323645, 4.4632092809186465], + [-61.280088964484975, 4.467372115038063], + [-61.27869699042138, 4.477927796320842], + [-61.295637059248214, 4.480704011413152], + [-61.29702706681917, 4.493492488681764], + [-61.30342045132401, 4.493769077283812], + [-61.311863084565964, 4.503768109992704], + [-61.322116211326026, 4.503432746208118], + [-61.32222270571419, 4.510528087140414], + [-61.329555764077526, 4.51568444205584], + [-61.3230621803976, 4.5348668495312845], + [-61.30744575070812, 4.536619314914307], + [-61.30530488014295, 4.540660507044778], + [-61.29992289963134, 4.535905237045316], + [-61.28516970610648, 4.537567964934459], + [-61.275889305666965, 4.527944821076451], + [-61.27063684465227, 4.5325554378986155], + [-61.26964550980994, 4.539633828074361], + [-61.257110965170696, 4.536100160194446], + [-61.25281030419603, 4.522380414438719], + [-61.250224400866124, 4.529717100701481], + [-61.24419923296504, 4.533491234827618], + [-61.220200801736986, 4.522558605293558], + [-61.2195628777848, 4.534327602881216], + [-61.217173102890115, 4.535239513901956], + [-61.201225213090595, 4.516436118579444], + [-61.19728075885814, 4.520325996635172], + [-61.18811834584975, 4.5205407902173755], + [-61.17622215872716, 4.511199871071927], + [-61.17106067469189, 4.502428775522307], + [-61.16445071930056, 4.501848090880886], + [-61.162311572218364, 4.495982388668435], + [-61.152306582243504, 4.49570284867606], + [-61.146753462131606, 4.481541559179401], + [-61.13285732513321, 4.498485182721213], + [-61.1273700811946, 4.49991951637968], + [-61.125448957665846, 4.505179035641594], + [-61.10775479025636, 4.51026949256307], + [-61.10313894404553, 4.515313950154589], + [-61.09653513608538, 4.51758574153272], + [-61.09527923013603, 4.521948853982542], + [-61.077173145369535, 4.517368425353067], + [-61.06539239118864, 4.523174351154346], + [-61.023084895992994, 4.5203748867208855], + [-61.016923793248914, 4.515982720622012], + [-60.99453768081562, 4.51847789167136], + [-60.99564178792749, 4.525702476174029], + [-60.98370114451433, 4.542370884624156], + [-60.96397818226839, 4.543754718886683], + [-60.9578712601522, 4.550420442779656], + [-60.953976377629694, 4.5623707237807976], + [-60.95619497982647, 4.584030624486276], + [-60.939533593805706, 4.579586478189073], + [-60.932037017448614, 4.586257181346981], + [-60.9364787146733, 4.596251548830749], + [-60.94286576433962, 4.599871648127072], + [-60.93259072916616, 4.6162574380952845], + [-60.93869872345209, 4.623478296522726], + [-60.93897413974025, 4.63403516859003], + [-60.951480042408114, 4.64209100042109], + [-60.94952980894232, 4.652642411982948], + [-60.948422415007435, 4.655418310552441], + [-60.93481020575557, 4.6570856420250015], + [-60.93036188123197, 4.662086639300022], + [-60.917031741984545, 4.664865304533907], + [-60.90925380937893, 4.685977173940861], + [-60.911758527026365, 4.703202448822178], + [-60.899810350219774, 4.716256808781534], + [-60.87509065013071, 4.714866386516811], + [-60.87064608435788, 4.708481008140895], + [-60.85286602024794, 4.703472794965995], + [-60.83175247840482, 4.7276360870018825], + [-60.82036781249131, 4.726806111252494], + [-60.81203656186126, 4.731250697806161], + [-60.81342529177278, 4.737639911777207], + [-60.8064782819208, 4.748198305589141], + [-60.7895288442228, 4.7487499349995685], + [-60.78842496471877, 4.752916863452142], + [-60.76397140772771, 4.759029494697587], + [-60.751473706302086, 4.755415802226847], + [-60.74314825274768, 4.761244636052013], + [-60.738142174591275, 4.772079888114492], + [-60.72675426297618, 4.773754249218044], + [-60.7209282789369, 4.778469624435012], + [-60.72675992679455, 4.780688890108678], + [-60.723419461872645, 4.785696318325789], + [-60.72675530748802, 4.791251301724866], + [-60.71953602961441, 4.799586633072886], + [-60.70509124280171, 4.80957974272223], + [-60.695923038434714, 4.8104146292343035], + [-60.68731430885749, 4.819580471108596], + [-60.6859175351158, 4.826249106606336], + [-60.676204942615314, 4.831251882794682], + [-60.672312043104185, 4.8406928285650785], + [-60.65897894550697, 4.849026077469341], + [-60.656199351513514, 4.86513258164063], + [-60.64814697087682, 4.868751616914981], + [-60.65369793077585, 4.881248201546438], + [-60.65230641067663, 4.884584664941884], + [-60.62869937164478, 4.888750089329166], + [-60.62564056240263, 4.904025851518132], + [-60.61592315683367, 4.917912020090697], + [-60.608699241520064, 4.924020143949031], + [-60.591756680140904, 4.926801043692137], + [-60.58398206441312, 4.955691433435313], + [-60.59258856261384, 4.97069153295247], + [-60.59898069205521, 4.999298533137579], + [-60.61286846661095, 5.006526446907117], + [-60.611368148596085, 5.015128986503274], + [-60.62370023969061, 5.027081718693439], + [-60.631842221251546, 5.0499970362669755], + [-60.64425693465414, 5.056798981574312], + [-60.64070464961555, 5.081520850116024], + [-60.64509225112597, 5.095966720587428], + [-60.64076081582302, 5.109720294513255], + [-60.64250541154366, 5.1171584143324536], + [-60.64863917526265, 5.118963825784827], + [-60.65425372581282, 5.112358360873303], + [-60.655925252033654, 5.114298544691574], + [-60.658201943806375, 5.133848799455986], + [-60.65580700935931, 5.1489657510487445], + [-60.661084254117036, 5.163689606107041], + [-60.67924921809449, 5.17652780504741], + [-60.68066497153447, 5.18854773421068], + [-60.68653546214162, 5.194271746548857], + [-60.69452992012781, 5.197053999458668], + [-60.70147443089533, 5.194305161812705], + [-60.71813842337087, 5.195556826315704], + [-60.728008330358755, 5.200956566440151], + [-60.735411159913824, 5.201016545695502], + [-60.72314233499162, 5.219855249805671], + [-60.709253635280376, 5.218466497377223], + [-60.697031871107015, 5.228744693477403], + [-60.682306321992534, 5.231803508076585], + [-60.659810186566915, 5.226803824086337], + [-60.65203732034147, 5.230414981851588], + [-60.63870024673702, 5.21985697061158], + [-60.6248136002603, 5.215130540583284], + [-60.61453420866731, 5.218185357254658], + [-60.603424738242694, 5.215129873421978], + [-60.597310920400396, 5.220413181130447], + [-60.592027855418245, 5.217349794382196], + [-60.590360834573495, 5.207349857823649], + [-60.56925141981378, 5.195691054784094], + [-60.545645863484495, 5.194018636226966], + [-60.53952902026954, 5.202628007335712], + [-60.52703616694723, 5.20790402228361], + [-60.50036230242837, 5.202636141352923], + [-60.47453482327684, 5.200688240451891], + [-60.469533160817434, 5.202903925497925], + [-60.4634226373292, 5.1990201949607995], + [-60.45175386993499, 5.202904909879352], + [-60.44647371840524, 5.184013794988693], + [-60.43426022376994, 5.181242448436466], + [-60.41870004313901, 5.1937402138394795], + [-60.4178661690887, 5.2056835066608125], + [-60.413425105526166, 5.213457343600327], + [-60.405092656033695, 5.210960376316807], + [-60.383978926406336, 5.221790305740614], + [-60.37120202192744, 5.21457585336903], + [-60.371475412984545, 5.207623652004085], + [-60.367029832806395, 5.204289660208995], + [-60.355927453412335, 5.209569924857999], + [-60.34564601910084, 5.204565616473348], + [-60.33647776993588, 5.207901979408162], + [-60.328145751343, 5.205406237407061], + [-60.31981596133708, 5.207627604786237], + [-60.31342120018801, 5.210406773646816], + [-60.304255364988606, 5.226518205179551], + [-60.283144653105154, 5.229011546461946], + [-60.27786965228632, 5.233738486700187], + [-60.27092100829513, 5.234292941479881], + [-60.26981196888579, 5.243455409923007], + [-60.26397831336109, 5.2509595939217135], + [-60.24592548885145, 5.251795204984481], + [-60.235091878259134, 5.262627043861295], + [-60.226478605587225, 5.263736471868234], + [-60.212314231181374, 5.271790264520524], + [-60.20203235292528, 5.266513741972901], + [-60.19259439768422, 5.251791639778739], + [-60.195093883797476, 5.238178200065408], + [-60.17230865855793, 5.226506894873534], + [-60.1584215173226, 5.231505773266109], + [-60.13509541754988, 5.248181567656215], + [-60.13259211648832, 5.224841295263044], + [-60.10675681186897, 5.194012709386021], + [-60.09610072312239, 5.1428043788370035], + [-60.09426129643854, 5.140120459648332], + [-60.0737044026084, 5.138732238846992], + [-60.067310919526896, 5.133451644814709], + [-60.065921685304545, 5.127617470244239], + [-60.06009377464762, 5.126512185309453], + [-60.060371400606684, 5.120673041546748], + [-60.052870720958545, 5.110401212138621], + [-60.04758958183844, 5.111788834336618], + [-60.026762215061524, 5.096226451946507], + [-60.02676289612429, 5.092342081891303], + [-60.009170306795475, 5.086474809739303], + [-60.002317956073846, 5.089006134678396], + [-59.99670291203296, 5.0844440218477605], + [-60.003343339434835, 5.073068202325516], + [-59.99765341654519, 5.066427190873314], + [-60.00808974578969, 5.0588481439908115], + [-59.99576381141463, 5.048419359822412], + [-59.995757136506604, 5.043678596440574], + [-60.00334430573013, 5.034200437450278], + [-59.99954025407459, 5.029460255836128], + [-60.00428558997547, 5.023776743430844], + [-60.0023902430865, 5.012386883964379], + [-59.99037082430494, 4.988177583700933], + [-59.992595939662635, 4.979008538476385], + [-59.98953229756778, 4.970401710799414], + [-59.995925858261806, 4.960396520113438], + [-59.990927353245226, 4.948172464893378], + [-59.99537553861419, 4.945396505024099], + [-59.99398588350789, 4.9320642981022225], + [-60.00753621462569, 4.9076249955973115], + [-60.01703417158399, 4.841786384940784], + [-60.019265199992006, 4.834836997869407], + [-60.029816073455905, 4.824288884723312], + [-60.03370499275961, 4.810401872672162], + [-60.028426419044216, 4.8048452136470745], + [-60.03675729675199, 4.798738366336129], + [-60.039813102894335, 4.7834586840068045], + [-60.02703797983213, 4.772902962656078], + [-60.03120497363791, 4.758736842767532], + [-60.02926350570713, 4.7381664433088515], + [-60.043425897975695, 4.717069430977993], + [-60.031208793934155, 4.70623770611225], + [-60.03009483347009, 4.700401444862738], + [-60.06370202860569, 4.66873365833957], + [-60.078692946297785, 4.648476405360699], + [-60.08064994761538, 4.640960590760584], + [-60.07509155373692, 4.632624934251695], + [-60.079535506968504, 4.621230060531126], + [-60.07509242334888, 4.608453035590253], + [-60.10204172789801, 4.595129285916014], + [-60.10954226485191, 4.600684832234991], + [-60.117317318500724, 4.595126196602666], + [-60.12672761254915, 4.5967850792243246], + [-60.135366582297614, 4.587625074527787], + [-60.127597786321004, 4.5684663904187675], + [-60.142314135558486, 4.570686523742446], + [-60.143982681387996, 4.566518163932998], + [-60.14064610271144, 4.555682652798454], + [-60.14981617374409, 4.55735017676447], + [-60.15370029681146, 4.5648530173058965], + [-60.160099413572574, 4.562622621837929], + [-60.16481358136929, 4.548186405375226], + [-60.15814569318575, 4.538738105954882], + [-60.16093462698425, 4.528332089489105], + [-60.16315258046429, 4.506234085013127], + [-60.15565338672995, 4.502899232319558], + [-60.137878018629955, 4.50426214158871], + [-60.13314703495053, 4.501235507507603], + [-60.104815091782015, 4.500959307795461], + [-60.10231807254004, 4.506231647620018], + [-60.108423910934675, 4.517618971472773], + [-60.09148533797737, 4.523183782158748], + [-60.08759652584883, 4.516238834152718], + [-60.08982122160302, 4.508457886438359], + [-60.076752150937025, 4.516414494449377], + [-60.06842825209638, 4.511514137246129], + [-60.07176421131886, 4.503185115505371], + [-60.07092965420337, 4.493731478435699], + [-60.06481401806492, 4.496237085979626], + [-60.045646733183375, 4.495127106509502], + [-60.03426530589868, 4.490676291144081], + [-60.02398311894079, 4.4948464568903415], + [-60.018706650352, 4.489844213305299], + [-60.00926082343728, 4.496236115658944], + [-60.00399977286037, 4.495958073827029], + [-59.992319321293714, 4.482900382917679], + [-59.98398878586283, 4.480125923288725], + [-59.9770955976237, 4.482006851893172], + [-59.97259551499276, 4.476232902653327], + [-59.97009508618328, 4.477899155744252], + [-59.9723218853698, 4.484573042247641], + [-59.96954381654362, 4.502900426510817], + [-59.96231743624245, 4.503174213152421], + [-59.959981614517346, 4.498624789708415], + [-59.94114759743017, 4.4910481145305905], + [-59.93426301676575, 4.494011865676952], + [-59.93231895368749, 4.4876212121531545], + [-59.92259951086363, 4.484561077148683], + [-59.92731690906567, 4.478459402433073], + [-59.92593472175193, 4.475673888278481], + [-59.90925984987521, 4.4729012451668355], + [-59.91232197740879, 4.462621858291611], + [-59.90482250556748, 4.454287973499818], + [-59.89537012489779, 4.471232094734177], + [-59.881890284380525, 4.470894337794202], + [-59.87732074600544, 4.47345322743781], + [-59.87481581713584, 4.481228706460303], + [-59.87037657145851, 4.482621626155044], + [-59.8728726264122, 4.47373154661531], + [-59.86037231787279, 4.466507959307699], + [-59.86592770142158, 4.463729021499788], + [-59.86815464454993, 4.454840203106209], + [-59.85870396642241, 4.448176747291114], + [-59.85009978549126, 4.451788360175866], + [-59.84065391813126, 4.4490118164734325], + [-59.83149009475275, 4.454562057155621], + [-59.82843180279114, 4.447344583737848], + [-59.81204266532833, 4.445124908883491], + [-59.80482302477417, 4.450669688764424], + [-59.80370590003272, 4.463176461452327], + [-59.79676599741773, 4.465119444564513], + [-59.79315140377836, 4.461505650113215], + [-59.7950961970994, 4.446508931794385], + [-59.77912677946356, 4.44598294597248], + [-59.77981963236083, 4.437898617546121], + [-59.76592845785405, 4.437062608423257], + [-59.75232061213362, 4.419288042158863], + [-59.735657366187844, 4.419838267798278], + [-59.72037164156694, 4.405116118748814], + [-59.71981759113305, 4.395113995090756], + [-59.696486365703244, 4.379005248787957], + [-59.69371085940842, 4.377618799280554], + [-59.684263015925026, 4.382901486882941], + [-59.672324066532084, 4.37317247295824], + [-59.68287759390634, 4.362897968539557], + [-59.67648531475705, 4.344281666930831], + [-59.69065834914658, 4.3337241753482525], + [-59.702598932850854, 4.318733720620489], + [-59.702879906438554, 4.303170928094881], + [-59.709546036668065, 4.305677830329238], + [-59.71621170914435, 4.303179612402817], + [-59.72259629283712, 4.290677184763511], + [-59.731763276950716, 4.284292064361067], + [-59.72704531758338, 4.278450312802531], + [-59.72926161028558, 4.27122614948819], + [-59.71565083691793, 4.273728727808675], + [-59.70787863062217, 4.267901993438292], + [-59.735657004467804, 4.235948637730937], + [-59.73176398552119, 4.224845464927629], + [-59.73232003135345, 4.208455432459695], + [-59.72649062407021, 4.194565801347378], + [-59.720931834334905, 4.189568004194314], + [-59.72537490143234, 4.183731714452263], + [-59.722603347046416, 4.177902829228885], + [-59.71065343885778, 4.16456156435555], + [-59.700112874597714, 4.160472848693073], + [-59.6806569576925, 4.1465081910282775], + [-59.64287889960975, 4.1459581700135315], + [-59.61649300469096, 4.132337869201409], + [-59.62176618555036, 4.117619890453577], + [-59.62954389547715, 4.110682121967409], + [-59.64954226421977, 4.070399698931805], + [-59.638986040934924, 4.067620325559957], + [-59.62814649571324, 4.053725066047777], + [-59.614827157466955, 4.0537298211421655], + [-59.61732094877116, 4.049841660690566], + [-59.6145415454099, 4.038447757567169], + [-59.59787636637221, 4.029841717492492], + [-59.59676609366924, 4.017616857320663], + [-59.60010278997231, 4.015677017190353], + [-59.608154074104796, 4.019842271164909], + [-59.60954408722564, 4.016233579530531], + [-59.59982312588422, 4.009008755891026], + [-59.59037566260484, 4.01928770876288], + [-59.58787694651887, 4.012060196501615], + [-59.59370646591652, 3.9995630038256507], + [-59.587596525710644, 3.993457069287096], + [-59.577600469002846, 4.004010483036452], + [-59.57481894716588, 4.001510013108585], + [-59.579264303108666, 3.997060589893911], + [-59.57318105143211, 3.9872845809235757], + [-59.586765218030344, 3.977063672814799], + [-59.58482670787685, 3.967345296930416], + [-59.57093459926331, 3.96900559183262], + [-59.56787925644365, 3.964571559761817], + [-59.55843646785654, 3.9784602586348585], + [-59.5459305925616, 3.978732182324091], + [-59.544546066658455, 3.972340695437781], + [-59.526214128580314, 3.967062992433088], + [-59.5203752208055, 3.954281777539025], + [-59.522875365605735, 3.9512317028292494], + [-59.51621107240931, 3.944011483236897], + [-59.52732530019624, 3.9378953743798983], + [-59.52482052209712, 3.9323426840713416], + [-59.52843835682542, 3.9237296546280027], + [-59.53509998829636, 3.9262313689053228], + [-59.538991444104326, 3.932059238878947], + [-59.54371487252923, 3.930119759640688], + [-59.541766262846686, 3.922616599778101], + [-59.54815526384286, 3.9192881235716475], + [-59.56482384087826, 3.91956594163011], + [-59.56816077154333, 3.8903964230299186], + [-59.577879095274334, 3.901782287943066], + [-59.57648751292099, 3.89011754378121], + [-59.59231964186374, 3.8878962946386455], + [-59.59454221114352, 3.8837342278134557], + [-59.59121186309839, 3.867347372161362], + [-59.59371435660355, 3.8617857717004935], + [-59.58482393658489, 3.857065574045547], + [-59.59010148054897, 3.8517909716583634], + [-59.58787779250704, 3.835397501142615], + [-59.57871512422836, 3.831513828946798], + [-59.579265225487475, 3.816235214632764], + [-59.585107320426836, 3.8229019941556275], + [-59.59121055854629, 3.815408228619811], + [-59.59871637733343, 3.8142912733673873], + [-59.594824383929094, 3.806790312747554], + [-59.59593105110014, 3.795676639722036], + [-59.59871029874591, 3.7940125560139926], + [-59.607883210055036, 3.803456747766185], + [-59.61371259416169, 3.802619793380278], + [-59.61649364773747, 3.7942928776497853], + [-59.6298259559153, 3.784288684842325], + [-59.633430667278034, 3.787902217965656], + [-59.62787864198793, 3.7937350009372186], + [-59.628433262799, 3.798734467442039], + [-59.6334316293469, 3.796234272810625], + [-59.64037811561676, 3.784571408551366], + [-59.64843560553031, 3.7876231607880664], + [-59.66482137224057, 3.7820630430784345], + [-59.6712157451227, 3.768459561179758], + [-59.66954571283509, 3.765121749604118], + [-59.68010118691556, 3.7592947867821764], + [-59.67982384907995, 3.7551200841595236], + [-59.67288033622467, 3.7529061739706124], + [-59.67482048275961, 3.7442894930512205], + [-59.669548770202354, 3.7420646365942845], + [-59.664263958307835, 3.733457434894263], + [-59.67148757809703, 3.7284524665594], + [-59.66315167943286, 3.7159607501262193], + [-59.66843349656134, 3.7029050086837385], + [-59.68065875927889, 3.6959589448132566], + [-59.6889869596127, 3.6987279430990165], + [-59.69398762331464, 3.6881807719265822], + [-59.70454212403957, 3.6890142417092724], + [-59.71038337497469, 3.6790145112816384], + [-59.71954214519274, 3.6740150042763564], + [-59.72038189619991, 3.6659550867236805], + [-59.723990046999134, 3.66289964657918], + [-59.74371540695127, 3.6592898862186476], + [-59.75287781092768, 3.65179187305726], + [-59.76037360789631, 3.6320728994247786], + [-59.76926946040277, 3.632349310132525], + [-59.76454560099428, 3.625406020940292], + [-59.77454495946283, 3.6254046543547873], + [-59.79093433848913, 3.616519856289098], + [-59.798715483892316, 3.618737702341162], + [-59.80704529656192, 3.6165154280355543], + [-59.8153772478946, 3.6201249948193412], + [-59.81786350151874, 3.6193047840021424], + [-59.815937095792975, 3.6106826588169256], + [-59.822042203829895, 3.613739584919701], + [-59.838715378100204, 3.605957984344575], + [-59.850380716307754, 3.604569925960419], + [-59.850377836727866, 3.5956814410579896], + [-59.85787508545765, 3.5815183108007687], + [-59.8662119542752, 3.5776328322237205], + [-59.85898660834176, 3.5737357139002057], + [-59.85871342924121, 3.570407908061221], + [-59.87177222397343, 3.563166742815242], + [-59.86621253882711, 3.5579104414445477], + [-59.84232525958087, 3.5523467420959016], + [-59.84232566502439, 3.540688060806633], + [-59.83788196010764, 3.529308172397031], + [-59.83010083712578, 3.523184083549436], + [-59.817882840555, 3.520965911046412], + [-59.80398888568691, 3.506799696599951], + [-59.80176506439541, 3.4920750628604145], + [-59.806615176967455, 3.4890221947034097], + [-59.82398650730328, 3.4834622576500984], + [-59.82565881590768, 3.4773511978766645], + [-59.81315656041779, 3.47707796906913], + [-59.810938229442826, 3.4690202849271206], + [-59.818990215784396, 3.4715189452508124], + [-59.82396442482976, 3.4690448950313555], + [-59.82870999989052, 3.4554063307585605], + [-59.83982156325626, 3.4431839283115786], + [-59.84040265378387, 3.4347334589730916], + [-59.841709273059735, 3.424963298831195], + [-59.83399091874464, 3.4226331863022215], + [-59.82149296097523, 3.428739453532439], + [-59.81399067339833, 3.427909446313375], + [-59.82010591595049, 3.4106873958604544], + [-59.8100994789219, 3.376520851337855], + [-59.80426717890447, 3.370130656859645], + [-59.80371218773115, 3.361525431128861], + [-59.807879832804076, 3.35262777982831], + [-59.824271226715446, 3.356516418510835], + [-59.8334148068956, 3.353210724259388], + [-59.827604097563395, 3.334300589405695], + [-59.832712602526726, 3.326852647264289], + [-59.84204944452214, 3.318191493782878], + [-59.84232264175836, 3.3081856834079866], + [-59.852044050509065, 3.30402535585013], + [-59.85899309397181, 3.278189416636553], + [-59.87260358717936, 3.2762487154305298], + [-59.88093468112409, 3.259295722350733], + [-59.87899240137127, 3.2454090958066946], + [-59.8884393988917, 3.2420780756610084], + [-59.87426491474134, 3.229024912138827], + [-59.875374698182384, 3.2234697561140853], + [-59.8876045935742, 3.2162458963921843], + [-59.90371152889433, 3.2162422868894445], + [-59.907322396609075, 3.212074532134426], + [-59.912046749812994, 3.1876327217091807], + [-59.89982628780283, 3.1534713228746085], + [-59.90427162431815, 3.1490221863624033], + [-59.920940278895486, 3.1484674609248198], + [-59.91843770390867, 3.1437500511152683], + [-59.91260488244017, 3.1462477194008582], + [-59.908452992377335, 3.1440303605056594], + [-59.907320668747474, 3.139305985619129], + [-59.91510230961668, 3.1376331004341007], + [-59.91927083953843, 3.131798621273452], + [-59.91704945292872, 3.125695150023721], + [-59.90926892496496, 3.124028737009227], + [-59.90788054247704, 3.114023583396331], + [-59.910379363007095, 3.110413232952496], + [-59.91565433668145, 3.110967597921321], + [-59.917051007002975, 3.117634375052024], + [-59.92121553797087, 3.1206955521757824], + [-59.92454767517769, 3.1084702889826885], + [-59.92982241211587, 3.1093043390120996], + [-59.938710606562374, 3.0993060685506237], + [-59.939545088531396, 3.0876339632823604], + [-59.955934909440465, 3.0809665732165725], + [-59.95676798473609, 3.0740260876262577], + [-59.9506530599119, 3.0551339950142657], + [-59.951764900084, 3.041248846904316], + [-59.95926789606666, 3.0279125439849666], + [-59.96165863303631, 3.0145369799352975], + [-59.9470487507602, 3.0029177830449765], + [-59.94696808307493, 2.999653070799216], + [-59.96371800516914, 2.9629172610735717], + [-59.95843135667238, 2.9534705601542197], + [-59.982602297401904, 2.930137685589946], + [-59.98538145837502, 2.909586269604026], + [-59.97760533184221, 2.9037539883132792], + [-59.976765853499806, 2.896525999228637], + [-59.988713748920844, 2.8815318700299026], + [-59.98121142060379, 2.8693019449446644], + [-59.98621037264388, 2.863754325367465], + [-59.983712832517014, 2.852362538677646], + [-59.98769760160754, 2.845826469970432], + [-59.99066022324436, 2.8390304293960846], + [-59.98621089877189, 2.8029225360177352], + [-59.99259980449014, 2.7857012590597776], + [-59.98677154553048, 2.747917136409988], + [-59.99177279540321, 2.7340312463342435], + [-59.98981636216852, 2.724898364540694], + [-59.98844098562422, 2.7184779034782913], + [-59.990381552285854, 2.6851430379994445], + [-59.973156398520956, 2.6679189300882853], + [-59.9709354326755, 2.658477339478813], + [-59.97594055525271, 2.644592809495207], + [-59.97433138005852, 2.6377566465998434], + [-59.96260723587641, 2.625964013863892], + [-59.963164078070434, 2.616534091851569], + [-59.95649651729658, 2.6101433976008677], + [-59.966495906656505, 2.608198325738345], + [-59.970662837256896, 2.5934807096472627], + [-59.958714502020825, 2.592087751393167], + [-59.939273125952596, 2.5826440051833153], + [-59.92787630921153, 2.570417649770606], + [-59.93433222363431, 2.557863901418471], + [-59.93676932327171, 2.552647230406394], + [-59.916768802050115, 2.5265328016886257], + [-59.919549969708235, 2.520979951412348], + [-59.917878942750306, 2.5073676321896587], + [-59.912325373156015, 2.5043053878316504], + [-59.91038239878222, 2.494310234285831], + [-59.89538322054045, 2.4815331532815557], + [-59.89871878305186, 2.4715322395629613], + [-59.89232993290862, 2.4643107932355868], + [-59.89260416782828, 2.4534768729617444], + [-59.89899392883483, 2.4381984602869746], + [-59.88899134164996, 2.4245864109356843], + [-59.895656758047565, 2.423199157326602], + [-59.89454835650888, 2.405976215053489], + [-59.897606281896124, 2.4001428364808515], + [-59.9048290954159, 2.3962508883381286], + [-59.90705129007935, 2.388200229929334], + [-59.8964954515067, 2.36292065510371], + [-59.87955051552165, 2.352647721375937], + [-59.870384798925116, 2.360421942242658], + [-59.86705261243587, 2.349866334231996], + [-59.85371401582205, 2.3381979769042665], + [-59.851496176191816, 2.3304252732172133], + [-59.84232881395037, 2.3287538338873865], + [-59.842050584541354, 2.32014525168463], + [-59.83538194661407, 2.3207025743418495], + [-59.827879012160665, 2.3284796458403725], + [-59.824546136032886, 2.320144279690705], + [-59.8056598950864, 2.307364671922926], + [-59.80204836559564, 2.29736454493267], + [-59.79680756286861, 2.294609170003444], + [-59.78566021220102, 2.284031706202693], + [-59.77927351967052, 2.2851469154820725], + [-59.77010203533476, 2.293758482552497], + [-59.749552041607224, 2.28792017526841], + [-59.738717014111906, 2.291536590256845], + [-59.73705294880663, 2.2868092547669177], + [-59.72233222139502, 2.276806606579349], + [-59.72760990234902, 2.2634762016856054], + [-59.719826675541356, 2.2481994351692216], + [-59.718996093149364, 2.237369348805449], + [-59.72760540022848, 2.229865419945099], + [-59.724272757172, 2.2048716550146312], + [-59.73177370214374, 2.2032034053519056], + [-59.72649907864846, 2.1995891558048366], + [-59.7337180792633, 2.18764509289713], + [-59.73290682684852, 2.1823409777000005], + [-59.73760378469097, 2.1787589324572743], + [-59.7353877032095, 2.1737364055763373], + [-59.74038354806192, 2.162641616635145], + [-59.7367727337639, 2.1562565623470578], + [-59.73788591710462, 2.1462544462587156], + [-59.72649211812417, 2.1356950642563546], + [-59.7242701921488, 2.130422122606334], + [-59.72760342406642, 2.124586920646991], + [-59.72316261050651, 2.1223626988340336], + [-59.7206619754577, 2.114589111143184], + [-59.722047281278705, 2.0976470835088894], + [-59.73455279316054, 2.0906997921515993], + [-59.740944483785306, 2.0734782907305345], + [-59.73594278264391, 2.0498669136895162], + [-59.73094211402773, 2.046537367807382], + [-59.73093651730751, 2.0373671775446773], + [-59.726773805156654, 2.0343152662690147], + [-59.72899638920343, 2.0301492583967704], + [-59.72010759232568, 2.0276430305620456], + [-59.721214749006855, 2.023480928754703], + [-59.73232608601048, 2.018482877411372], + [-59.73511009916631, 2.0126521137344375], + [-59.731774238657366, 2.0120879032333874], + [-59.73066119811824, 2.007644815894201], + [-59.73340881919248, 1.9995943360588262], + [-59.73288833315638, 1.9837546196985285], + [-59.73649273256415, 1.983760172145685], + [-59.741217255601235, 1.9718113616504447], + [-59.73621971061793, 1.9670954391868862], + [-59.74038310820406, 1.957094081852898], + [-59.73789123877975, 1.9554217057718632], + [-59.74593708847914, 1.940984723094943], + [-59.74566214848035, 1.9287572207590824], + [-59.75593744748902, 1.9215413715679557], + [-59.75399313812852, 1.9120892196138837], + [-59.759274348327025, 1.900428301076813], + [-59.74677068225076, 1.8784784437835977], + [-59.75343575123117, 1.8665405615742061], + [-59.751496954618716, 1.858485552765717], + [-59.74593979017757, 1.8518170754363603], + [-59.7353854281804, 1.8512572354881274], + [-59.73510597682723, 1.8482068200640849], + [-59.73371458457945, 1.8515316670262216], + [-59.720386675309975, 1.849315926728752], + [-59.71066265832077, 1.8545924343946667], + [-59.6917757511382, 1.8534858706245176], + [-59.680387683470265, 1.8454221735603589], + [-59.67760732332979, 1.8384818529940343], + [-59.665666490340826, 1.8482047485552981], + [-59.66927539273427, 1.8607023100691955], + [-59.66288924676238, 1.8704258989440063], + [-59.66288317618421, 1.8629276155468324], + [-59.64983398803565, 1.8434842990773201], + [-59.658437822917385, 1.824314306307438], + [-59.65427198882358, 1.8168118378080718], + [-59.660392391518634, 1.810701025784577], + [-59.66483011132493, 1.8134761242597606], + [-59.67289002174398, 1.8073665890450932], + [-59.67872208245164, 1.807088359293537], + [-59.680945219798794, 1.796254589962727], + [-59.67871540025924, 1.7904300386711909], + [-59.68566188832117, 1.7898695516946874], + [-59.68843901842168, 1.7784853295064895], + [-59.685108144705055, 1.7740401174848006], + [-59.68883301736029, 1.7668484120180032], + [-59.69010668491946, 1.7562599257270077], + [-59.666223275912195, 1.7545953195727635], + [-59.662888682774636, 1.7368117543289192], + [-59.65372288228403, 1.7429236786738265], + [-59.632883757954076, 1.7409789033903866], + [-59.6298343784799, 1.7279281981844141], + [-59.617331676846895, 1.715147109099371], + [-59.60788755773985, 1.7223676970687951], + [-59.587607752965404, 1.7262612677865912], + [-59.583994023605705, 1.7320952419089188], + [-59.566497527951114, 1.7357018638077453], + [-59.55677450047106, 1.723759870982064], + [-59.550389469396805, 1.728207876127753], + [-59.545110004940646, 1.7212544985331624], + [-59.53899658363855, 1.722370354605672], + [-59.533440160938966, 1.7162555869558358], + [-59.534272374835474, 1.7087541420056456], + [-59.52649826151272, 1.7023664718358165], + [-59.52622493021429, 1.6912621038488622], + [-59.51372209283738, 1.6806998371811714], + [-59.511224573814204, 1.6684825158464396], + [-59.50733169775887, 1.6679262617660324], + [-59.50705294511099, 1.6743093065524042], + [-59.50038344066607, 1.6770924361510207], + [-59.49315948118977, 1.6734569332538132], + [-59.494827357697865, 1.645145577340288], + [-59.48955405290581, 1.6412558450394945], + [-59.48289171271823, 1.6265366244373052], + [-59.465110073609964, 1.6176434619137816], + [-59.44788619526594, 1.6193118753025537], + [-59.43761055058517, 1.5937614152200954], + [-59.427058677394676, 1.58626173739041], + [-59.430941944592014, 1.5662542825445906], + [-59.42289087467425, 1.5557054654850995], + [-59.41260788930113, 1.5515344685239316], + [-59.39955672325491, 1.5570876646971108], + [-59.39594732876436, 1.5551440209085314], + [-59.39427604772744, 1.5370945088613812], + [-59.38400179549731, 1.5287568625699943], + [-59.38427481792116, 1.522920032780278], + [-59.37872389063038, 1.5207009165481054], + [-59.38177434058597, 1.5070861140672571], + [-59.37289214360183, 1.5062543931754255], + [-59.36483252455439, 1.5095903068542083], + [-59.3620585810574, 1.503759860200107], + [-59.358165224103864, 1.510145118441276], + [-59.358723528495, 1.5179232026851344], + [-59.33955657980976, 1.518206333213263], + [-59.3298315478653, 1.5137532324577443], + [-59.33233793245184, 1.5057052789795657], + [-59.32149760602869, 1.4820947308641097], + [-59.32789131084563, 1.4734783714912778], + [-59.3270511803865, 1.4640346901125851], + [-59.31400601435582, 1.4601493932753569], + [-59.310388513038504, 1.4659839508334882], + [-59.30233482114733, 1.4654257482769841], + [-59.28705810565232, 1.452925784832208], + [-59.2840023163842, 1.4495929161553887], + [-59.28844865362404, 1.4445937956584034], + [-59.2884447953874, 1.4390368031818535], + [-59.28427983440178, 1.4370914106642758], + [-59.27483618878434, 1.4176438544470265], + [-59.28289092686315, 1.4104286882211048], + [-59.27205157125349, 1.4065349723749594], + [-59.26928014154384, 1.4004275038360257], + [-59.25928080529878, 1.3968116639165888], + [-59.25317028069243, 1.388205172877412], + [-59.233719099502345, 1.3862578349349997], + [-59.226502081748656, 1.377366852013997], + [-59.20761081313727, 1.371255900221956], + [-59.204557846531856, 1.37681125205577], + [-59.19646023173911, 1.3781815930806371], + [-59.18733467433161, 1.3745834972171453], + [-59.17178078147596, 1.3570945522677378], + [-59.16094916505314, 1.3590351472073583], + [-59.15261574794269, 1.3487578927547748], + [-59.14594584111744, 1.347087622150993], + [-59.131498255141686, 1.3523700975822561], + [-59.118448820815665, 1.3426406578354544], + [-59.1026089733963, 1.348197133138132], + [-59.09594406112261, 1.3445881070857952], + [-59.08983824732452, 1.3462582354124775], + [-59.0870545990092, 1.3384802984398418], + [-59.076221521525454, 1.3309827327242727], + [-59.07011661586896, 1.329589067381583], + [-59.066229743991705, 1.3354244067178414], + [-59.05761181367822, 1.3345871896977362], + [-59.05289056554381, 1.3243083925783738], + [-59.048447463050756, 1.3226409378409136], + [-59.02290599694497, 1.3309707122319405], + [-59.01317183425383, 1.3237589746359963], + [-59.00039537274791, 1.3237549314882302], + [-58.99372584452133, 1.3270872985323225], + [-58.98928144679527, 1.3243105701263513], + [-58.98209714821131, 1.3073684705528352], + [-58.97872422757914, 1.3015370464046039], + [-58.972889115784845, 1.3093065647381519], + [-58.96595121248678, 1.312366392042877], + [-58.91844347574229, 1.3165315809510416], + [-58.91539196774781, 1.3137543064896546], + [-58.915673311918425, 1.305975208072014], + [-58.923724264966225, 1.2934732653193592], + [-58.922337159159284, 1.2898637720134871], + [-58.918427919871576, 1.2848625211586793], + [-58.898729576036146, 1.2793101051640552], + [-58.88677901761114, 1.260146443117807], + [-58.90456080246691, 1.250977527504639], + [-58.90456167078203, 1.241255304790734], + [-58.912057761692026, 1.2381959735496306], + [-58.8953925314922, 1.2276474057748954] + ] + ] + }, + "SC": { + "name": "Santa Catarina", + "coordinates": [ + [ + [-48.63324343302349, -25.973191518595616], + [-48.633631939827985, -25.977613821815545], + [-48.62402509814466, -25.97737045927478], + [-48.62383840599208, -25.977365723627543], + [-48.62154609248466, -25.97507300998224], + [-48.62072614008844, -25.97425288551872], + [-48.62062624314809, -25.982005850576588], + [-48.61973072914183, -25.981891664359527], + [-48.61804400497619, -25.981676576110026], + [-48.613689051172486, -25.98112114598577], + [-48.61021897509161, -25.98415454474947], + [-48.61040191614615, -25.983073295889437], + [-48.61100856213379, -25.979487614047343], + [-48.611012013947075, -25.97946721073531], + [-48.60166091437329, -25.980685058290824], + [-48.60137674618015, -25.98014467468259], + [-48.599834982586366, -25.97721271819056], + [-48.59982392493904, -25.977191689435948], + [-48.59947052894072, -25.977181745202177], + [-48.598947973719696, -25.977167039402747], + [-48.59456145431933, -25.977043519080436], + [-48.59462250334536, -25.977293521253685], + [-48.59991981066894, -25.998983134864716], + [-48.607103016749456, -26.056351989277243], + [-48.60659313902905, -26.066780982083102], + [-48.59963858826622, -26.07284524324179], + [-48.597057644010775, -26.12465885382699], + [-48.58096603539843, -26.165219980608303], + [-48.568072817017736, -26.170629514078577], + [-48.56308535836206, -26.170494915791533], + [-48.53801756358594, -26.170366175516804], + [-48.53115154682029, -26.164205422208173], + [-48.526361378256546, -26.16516524870805], + [-48.522386834770074, -26.170060331001878], + [-48.52681748271661, -26.192552763928457], + [-48.52157218080809, -26.21455294547961], + [-48.516016715262175, -26.223071504140073], + [-48.50872900585016, -26.22668599801609], + [-48.50120590651707, -26.22529943751393], + [-48.501081809234456, -26.220369654161974], + [-48.4967274447022, -26.21730092079817], + [-48.492794560636476, -26.21920378724358], + [-48.4982657841171, -26.233901505853876], + [-48.50576729496157, -26.239071269180677], + [-48.53696238686927, -26.29180808970741], + [-48.55346517992402, -26.32632292684467], + [-48.56501578550906, -26.361119596351788], + [-48.59226814549974, -26.40674484216492], + [-48.59862842830626, -26.430794714332666], + [-48.59607726255647, -26.45041053293403], + [-48.59357008248552, -26.45384537451455], + [-48.614299523315076, -26.478716546994217], + [-48.63255983810129, -26.510246159282296], + [-48.65099706310235, -26.547651236549594], + [-48.65967874030892, -26.570375142102684], + [-48.664218015916006, -26.57477474573817], + [-48.676416690314745, -26.613659396929588], + [-48.68704694863866, -26.66942914445296], + [-48.68683642835099, -26.688022257005063], + [-48.67883722375111, -26.69841886572541], + [-48.68161874238455, -26.718397437417586], + [-48.67638357489961, -26.750821192908575], + [-48.67136274349401, -26.762374312858828], + [-48.66166301703742, -26.77044957449784], + [-48.65237719666619, -26.771374210604886], + [-48.647399240224345, -26.761749419988295], + [-48.64061021036872, -26.765633473753834], + [-48.63279402722339, -26.780108323369255], + [-48.62022776012191, -26.78906391177411], + [-48.60615252275135, -26.788932526066255], + [-48.598965638265945, -26.771907185815838], + [-48.59555749552582, -26.783193901891746], + [-48.58534971467602, -26.783234602670028], + [-48.58787472734106, -26.79051914835309], + [-48.58473983462594, -26.79587777369982], + [-48.59146274813791, -26.796728920321637], + [-48.5958868308719, -26.80221435984154], + [-48.602611258679914, -26.8270364549732], + [-48.62092876649507, -26.82655995365564], + [-48.62818108965477, -26.8356093452337], + [-48.63806009606105, -26.869387104876402], + [-48.64325382662604, -26.901635630705346], + [-48.640411146233006, -26.91349664558746], + [-48.640829338947064, -26.920026947567575], + [-48.63105054026115, -26.928732687695685], + [-48.62137830287025, -26.925693844858795], + [-48.62724246909851, -26.936911877455174], + [-48.627233189122805, -26.959807735433944], + [-48.623876108953006, -26.961210414207983], + [-48.62715178637498, -26.96516233291497], + [-48.626046985907635, -26.97161942419987], + [-48.633344066023945, -26.97219183969511], + [-48.634466323910836, -26.978252874523196], + [-48.62122941917058, -26.999711557848197], + [-48.60928457636503, -27.004648122450668], + [-48.600501565935225, -27.003348672402517], + [-48.60239774781608, -26.995508110239918], + [-48.59724775301563, -26.993322926457537], + [-48.58938052044577, -26.99716696342798], + [-48.58705429431163, -26.991954421633938], + [-48.58038668965292, -26.994247986651654], + [-48.58259179292315, -26.99970889628732], + [-48.57700760551338, -27.009485847587435], + [-48.567209639647125, -27.00779522451969], + [-48.57371373806729, -27.017820316456742], + [-48.571363736634865, -27.02403430602934], + [-48.579089928006155, -27.025544467568466], + [-48.57847904207582, -27.039548265078334], + [-48.585870656928115, -27.0453091626954], + [-48.587699109350496, -27.061065577801454], + [-48.59219551619821, -27.061791584274793], + [-48.59404369531059, -27.07266474994754], + [-48.59168374576788, -27.080058741941897], + [-48.587259881826924, -27.080702696379383], + [-48.59488136109263, -27.086001525316526], + [-48.594655248347216, -27.091097433053285], + [-48.59701018024001, -27.08966380830427], + [-48.6030328914338, -27.095865953984692], + [-48.604249898288614, -27.092384048540357], + [-48.60827893202492, -27.093054893033298], + [-48.61233392785754, -27.10037771447001], + [-48.6026235400805, -27.125063867089032], + [-48.58452281358399, -27.145652163781513], + [-48.56650410277453, -27.155866093030944], + [-48.559016564405326, -27.153113288930026], + [-48.55473377241906, -27.158182551782044], + [-48.54929967183154, -27.157518552383348], + [-48.533495510670726, -27.147935536718823], + [-48.53785749044308, -27.143323688072304], + [-48.52523095598524, -27.129822923201438], + [-48.52656197755573, -27.12669384811011], + [-48.530500306997624, -27.128971885823518], + [-48.52808175754521, -27.12412202190321], + [-48.5214738789404, -27.11875466168347], + [-48.516225080810294, -27.122001240405545], + [-48.50724710607449, -27.111262270025385], + [-48.50396079605772, -27.115001596667277], + [-48.51267060040303, -27.132433876874913], + [-48.501949177857206, -27.14586820058669], + [-48.48445666879226, -27.14910989132922], + [-48.47860386503145, -27.14335255951924], + [-48.48160757607043, -27.138849619320588], + [-48.47913434872088, -27.135251606666724], + [-48.47558495831056, -27.1469295981819], + [-48.46561970418892, -27.145122505867548], + [-48.47633641048507, -27.155585722712086], + [-48.48312835876859, -27.155348986572545], + [-48.48683256556243, -27.16490387321476], + [-48.495976511472946, -27.165913445640772], + [-48.49844675741545, -27.169572381315344], + [-48.4991569701054, -27.192650932313445], + [-48.49144169297595, -27.202782933273394], + [-48.48501231742871, -27.19923858735823], + [-48.477467447125015, -27.200121461250742], + [-48.47901365047413, -27.20608179405501], + [-48.48704834084512, -27.211393151235786], + [-48.48947326214972, -27.209385781651843], + [-48.49815028302292, -27.217526271981978], + [-48.50372606295272, -27.21538635327403], + [-48.51746541190716, -27.22092459016594], + [-48.51790097192193, -27.216930958125683], + [-48.50307110592374, -27.20711729296533], + [-48.50061847230006, -27.20136103860513], + [-48.51503117163891, -27.185383894474512], + [-48.53016722717999, -27.1813299615667], + [-48.540353310748664, -27.182667187779295], + [-48.558265933668494, -27.198634043925548], + [-48.57202958927177, -27.203038338785838], + [-48.57962188173028, -27.211906595006674], + [-48.58358020860205, -27.210035761812964], + [-48.59835054302134, -27.218906930069515], + [-48.603114346962336, -27.220354656784345], + [-48.60392259632313, -27.218035471548212], + [-48.61013351611669, -27.22665856598489], + [-48.613470290465145, -27.248822714207183], + [-48.61665920817548, -27.251204359097525], + [-48.615712463654454, -27.274549962198694], + [-48.596230336565746, -27.316531436493765], + [-48.5859975094551, -27.320550715875832], + [-48.58128133807744, -27.312567258144714], + [-48.57328380386721, -27.31442083816893], + [-48.56960121276277, -27.30863193834345], + [-48.565074231730954, -27.308066787256227], + [-48.564714683749344, -27.314679314352073], + [-48.55957771206968, -27.31200481152377], + [-48.554706687635374, -27.313693270974742], + [-48.553686082074194, -27.304300884883833], + [-48.54853365870336, -27.305897219458377], + [-48.544851146231636, -27.29840400207219], + [-48.54041846317901, -27.29825581332966], + [-48.53895733578333, -27.32443230596339], + [-48.53282926875053, -27.333027507846698], + [-48.52412361884693, -27.334072761024366], + [-48.528330827726826, -27.340347609538004], + [-48.52660784231817, -27.343679821748736], + [-48.53401395803937, -27.348726726148303], + [-48.533458426721815, -27.35557162467889], + [-48.5373614062832, -27.357381840592385], + [-48.53135267653508, -27.374385288165684], + [-48.52627762881349, -27.376120251470603], + [-48.53398673404956, -27.383044165487927], + [-48.53276929589225, -27.39956134573088], + [-48.54105104545124, -27.400856837570647], + [-48.54913124375209, -27.411002550674365], + [-48.542565153251836, -27.420553640470846], + [-48.55219342030491, -27.433620220381925], + [-48.56686348142903, -27.443644886570386], + [-48.575470485901086, -27.443438314383336], + [-48.58044096679604, -27.448617744456442], + [-48.60482412933047, -27.441520642352106], + [-48.60656779445622, -27.42404902308307], + [-48.6085548586567, -27.431426595446545], + [-48.605545481083304, -27.441593497258424], + [-48.58705532195445, -27.45422979546398], + [-48.585495456355744, -27.454240454536077], + [-48.541231863788326, -27.436091680879404], + [-48.53296533047548, -27.427367407959213], + [-48.52650777722646, -27.40830355974019], + [-48.4831507530801, -27.37975803157641], + [-48.425990812972, -27.38147682489029], + [-48.42171497411796, -27.38160437583427], + [-48.416651652875515, -27.381755283336325], + [-48.41650875555775, -27.38175948284037], + [-48.410151764381034, -27.3856905482087], + [-48.411451060432135, -27.39237600391803], + [-48.40986739314611, -27.406131538619256], + [-48.404930637352756, -27.406538941469947], + [-48.4024098275812, -27.413836560250047], + [-48.399015925922164, -27.425035484686255], + [-48.389583022167, -27.437467002007523], + [-48.3716415852285, -27.444971931794647], + [-48.36550936824471, -27.433926780535533], + [-48.358779670358714, -27.441725764622923], + [-48.35986982027864, -27.44863966293639], + [-48.370530684489374, -27.451754871748886], + [-48.37535263588291, -27.466597986131983], + [-48.37529039855912, -27.46945093449508], + [-48.37576652686276, -27.48217431984403], + [-48.388276997279355, -27.488345451854265], + [-48.416241038392506, -27.524404904054126], + [-48.42571139322167, -27.542159359062516], + [-48.42898970600583, -27.565828196213545], + [-48.4277361544293, -27.569743332749393], + [-48.423520553390425, -27.5759140220858], + [-48.422577132085884, -27.573028768369692], + [-48.420088210251045, -27.574332145217554], + [-48.41324572138705, -27.57333075310275], + [-48.41975439244164, -27.58374496879042], + [-48.41956357995612, -27.593472202431734], + [-48.427221713475795, -27.59480935971443], + [-48.43340895937562, -27.604346371990104], + [-48.4355295241258, -27.60770256000229], + [-48.43220516961913, -27.617346924271327], + [-48.43959856213323, -27.618259012444224], + [-48.445165084644664, -27.625331992588173], + [-48.44608615830258, -27.630236775240412], + [-48.449728539098466, -27.630532435765833], + [-48.46443859764158, -27.647078234802862], + [-48.475458187391844, -27.66590634559558], + [-48.48137764133504, -27.69117808947266], + [-48.5011881784748, -27.714616604879673], + [-48.50232474285807, -27.719202278493], + [-48.50692094190905, -27.73775486234136], + [-48.50677059533483, -27.74514270075137], + [-48.50189813458736, -27.749982652134037], + [-48.49853605433225, -27.747410271827118], + [-48.500179235421705, -27.75193597578911], + [-48.495729986319255, -27.75678703031538], + [-48.48844793380376, -27.754889496988476], + [-48.485871854627085, -27.759411393136386], + [-48.47722944882504, -27.761980827243782], + [-48.47563381414683, -27.769767144437278], + [-48.482848614760684, -27.769576520282573], + [-48.485860481234084, -27.77279329647673], + [-48.487938209992386, -27.778439837244214], + [-48.483615297392035, -27.78396856823748], + [-48.488650249900864, -27.790107200294702], + [-48.499265336401116, -27.794394586876763], + [-48.50726380968318, -27.79067792667892], + [-48.50708802715395, -27.782800151340915], + [-48.51625376778502, -27.781071400905542], + [-48.52664621043061, -27.786377562630566], + [-48.53265841079961, -27.79418166009111], + [-48.54041619953593, -27.820690200580387], + [-48.54442213612942, -27.830438297728804], + [-48.56822004960783, -27.84739204818937], + [-48.57593319828033, -27.842767492852563], + [-48.57935757739353, -27.85281711915176], + [-48.580398745853486, -27.848649054746993], + [-48.58654765158016, -27.847716020284555], + [-48.597941832409425, -27.853188439044757], + [-48.602261729550236, -27.86489561486456], + [-48.59990884449084, -27.878386474398095], + [-48.59188807255633, -27.885233340186364], + [-48.587956672368, -27.881345869698492], + [-48.578194577132756, -27.882817604972768], + [-48.57463262387459, -27.877528456290957], + [-48.573964112322, -27.89000718614141], + [-48.58334265907207, -27.905924196145058], + [-48.586862851278894, -27.905554483092814], + [-48.599438701966726, -27.916341133959648], + [-48.62017767340818, -27.944658274710005], + [-48.624611745767496, -27.958924367102266], + [-48.619607856041114, -27.962832153258866], + [-48.62481672863434, -27.972323615534975], + [-48.63109057978456, -27.99463747314763], + [-48.63024376779657, -28.01109768915651], + [-48.61745561106955, -28.02351119162986], + [-48.60951570185982, -28.016716362296794], + [-48.59883947733789, -28.030330181540002], + [-48.600139673373214, -28.035082424071284], + [-48.60497821617184, -28.034368284716887], + [-48.610078244033225, -28.040682425632383], + [-48.60733948488319, -28.052430660125644], + [-48.609982879956384, -28.06243905714117], + [-48.61753556144473, -28.0660983183564], + [-48.62025063073237, -28.074163372484346], + [-48.627010317276564, -28.075470686464712], + [-48.62825566951107, -28.082860785995518], + [-48.63172005323595, -28.083785406282885], + [-48.63095322390633, -28.09048039702859], + [-48.63748275613701, -28.1045792244151], + [-48.63673771911258, -28.10752873438913], + [-48.63069997453131, -28.108001539079297], + [-48.634491609369746, -28.113019272334533], + [-48.63594568205269, -28.117441677522944], + [-48.630875251584186, -28.119014329794297], + [-48.63228889096041, -28.122245207877242], + [-48.63927699955771, -28.122670008719204], + [-48.64316700446972, -28.132310069649005], + [-48.643057259747096, -28.135940575312596], + [-48.636493100374985, -28.13925090082418], + [-48.646807540281756, -28.14430775598031], + [-48.647773486904555, -28.150052324825833], + [-48.653876250979145, -28.15507155786586], + [-48.66357631390811, -28.181860346656553], + [-48.662669066197104, -28.190273973926253], + [-48.65807912967599, -28.19175529589527], + [-48.65788355141446, -28.195473427255287], + [-48.66588296989364, -28.20455216275025], + [-48.66275118632327, -28.208861858098977], + [-48.66757947952108, -28.21571081734496], + [-48.661699398901455, -28.230686678722186], + [-48.65422389197672, -28.23344606584826], + [-48.65036308780408, -28.227443622387952], + [-48.64643933651982, -28.23391557320423], + [-48.67717396308847, -28.256953904713647], + [-48.69961040188778, -28.293390884371696], + [-48.707229814536596, -28.313624919664186], + [-48.709417533763315, -28.331418144045177], + [-48.706278647412596, -28.336861701966544], + [-48.69843774297832, -28.3374762108874], + [-48.70438696384964, -28.34261180952754], + [-48.70682488257902, -28.341255076010793], + [-48.727475973768115, -28.364088976569377], + [-48.74107056792018, -28.38674006050724], + [-48.74799653355015, -28.413337140425607], + [-48.74666950058961, -28.420459962911405], + [-48.73912448794852, -28.42312662236285], + [-48.748750223923246, -28.42919927310415], + [-48.75935297864533, -28.4439312945687], + [-48.76767247232435, -28.475500567397635], + [-48.764200495478086, -28.49138966426412], + [-48.761246682552816, -28.495156161116494], + [-48.75685566513965, -28.49439494578622], + [-48.746931899988105, -28.49513717459409], + [-48.74818555421093, -28.50073356064969], + [-48.74255390597954, -28.503414196058387], + [-48.742999955696824, -28.508016215819197], + [-48.74791888614125, -28.50756586882179], + [-48.75576455790567, -28.51640224802428], + [-48.758644524402634, -28.523424160215843], + [-48.755212680283634, -28.527524012167856], + [-48.75763290814004, -28.53812467288748], + [-48.76229105248997, -28.53708233922521], + [-48.781926194142784, -28.55205300755578], + [-48.785974190158186, -28.559745943093183], + [-48.78178166932548, -28.564513189860758], + [-48.78366600592705, -28.569417077118487], + [-48.791326289092694, -28.568407002679894], + [-48.81383472897019, -28.59004515786363], + [-48.8148225059769, -28.600726743524774], + [-48.81051698929352, -28.601543753524577], + [-48.809772609866975, -28.605456709565217], + [-48.81837627313107, -28.609864986367022], + [-48.826492620175124, -28.607498527212435], + [-48.83477531817691, -28.612520226471776], + [-48.84298493006517, -28.611463538731552], + [-48.85507098732537, -28.6154354772768], + [-48.90848641578189, -28.63813269060621], + [-48.99689408775893, -28.68500074541297], + [-49.08192601702754, -28.734604931127382], + [-49.18409073969473, -28.800230999047024], + [-49.29107321238044, -28.882956541969666], + [-49.29895383604595, -28.889562457277794], + [-49.31564099448944, -28.903899541645828], + [-49.330788388070324, -28.916075053428845], + [-49.37724313391185, -28.955964721802797], + [-49.42137891777774, -28.996527876455165], + [-49.514068635643675, -29.09292474678887], + [-49.64484209017486, -29.23940126163927], + [-49.68737573582882, -29.29102064425628], + [-49.711698803216876, -29.325787538199798], + [-49.729714114323805, -29.329121714096058], + [-49.73635889632142, -29.32544469263554], + [-49.74479714660065, -29.32857021899681], + [-49.74658897689173, -29.324697573278666], + [-49.74345981069504, -29.320472843084858], + [-49.73025214818284, -29.317658133807072], + [-49.736255643209425, -29.310462467223168], + [-49.738253619196364, -29.315246766154207], + [-49.743834795006144, -29.31135431157203], + [-49.74236354883583, -29.302070714812974], + [-49.73875853509521, -29.301528907164144], + [-49.75019324785641, -29.297778307391045], + [-49.76234313226202, -29.30024569693313], + [-49.773142598099916, -29.298410786662462], + [-49.78662760975282, -29.288309929944308], + [-49.79180535280439, -29.285554806697352], + [-49.79568980451355, -29.289318422565874], + [-49.809384843955506, -29.28701464475525], + [-49.81191706773293, -29.28383977486042], + [-49.81761407336046, -29.286329747831513], + [-49.82134390245206, -29.28317318689503], + [-49.82444990796579, -29.278160034170423], + [-49.83685803275655, -29.275262663771816], + [-49.838771337291305, -29.279089916609806], + [-49.8472046188322, -29.273572288359215], + [-49.843054194077986, -29.271842460998137], + [-49.842089785042575, -29.26057949313326], + [-49.854865309009796, -29.257005152523266], + [-49.852109813049616, -29.24935179871087], + [-49.84895366548312, -29.24706017886261], + [-49.85429729002685, -29.24557876420278], + [-49.85745048101209, -29.2447051070665], + [-49.85808296767018, -29.24175871497749], + [-49.860237042045256, -29.231218311060726], + [-49.869191342494844, -29.224559091777675], + [-49.87685634997666, -29.22492043590534], + [-49.88078824820573, -29.220413083638437], + [-49.90135243282931, -29.21518190449273], + [-49.91379064939867, -29.207849267063324], + [-49.93546107173378, -29.20828118434907], + [-49.94544573011366, -29.201870186437358], + [-49.95821734308439, -29.200222317023947], + [-49.95478541982235, -29.199505194490904], + [-49.96249803173501, -29.199133144684676], + [-49.969733092376494, -29.203175739116375], + [-49.97015484560621, -29.209822682338636], + [-49.97351426254336, -29.21363770177212], + [-49.98149777213281, -29.219891752989746], + [-49.99020458190086, -29.22461725788384], + [-49.996850537765326, -29.227894874520807], + [-50.00054496473709, -29.22705372670073], + [-50.007228436129026, -29.225404153997758], + [-50.03473896754641, -29.23382446918908], + [-50.04223041716168, -29.240691416445962], + [-50.06414676571906, -29.243716203584004], + [-50.06415316930474, -29.243737116611406], + [-50.06580079301151, -29.24933257922992], + [-50.06922708445375, -29.24646505342336], + [-50.089931160516755, -29.25450438272657], + [-50.10685769347959, -29.254411988090364], + [-50.108494790746605, -29.258013536638355], + [-50.11466606053151, -29.259238988184652], + [-50.10848241285376, -29.280761490603695], + [-50.10203441401768, -29.2837510592392], + [-50.09290547922945, -29.296823628476496], + [-50.073865990103926, -29.30949124895182], + [-50.06321730028627, -29.31201293878516], + [-50.03379405071842, -29.349571617505894], + [-50.037275154232546, -29.351365292808357], + [-50.04992050123088, -29.33931771318613], + [-50.06502777404294, -29.3413069582629], + [-50.05928046654071, -29.33674578000356], + [-50.05776236180687, -29.32766869345656], + [-50.0732714140798, -29.327844075541794], + [-50.06454855056941, -29.321647660902755], + [-50.07148264816822, -29.323266305463534], + [-50.07288062510993, -29.32012026940174], + [-50.07885453231948, -29.320345184488332], + [-50.086771315484995, -29.323421889401615], + [-50.08454551505838, -29.3165210839102], + [-50.089838663180096, -29.310776573933662], + [-50.1015074824787, -29.310518977578113], + [-50.11007541245197, -29.30488162820963], + [-50.10541568605887, -29.301020863423535], + [-50.10692474463739, -29.29824706501801], + [-50.118389182350576, -29.297580960871436], + [-50.116349450371246, -29.291946614924505], + [-50.12197312259949, -29.28802144962271], + [-50.12354479738267, -29.281802492725348], + [-50.13089039956191, -29.286002551311753], + [-50.12790678204697, -29.298531779448876], + [-50.12889285508829, -29.303642589997754], + [-50.136176735085286, -29.299254855780536], + [-50.13889002970212, -29.29256492925206], + [-50.14278704765366, -29.29230700587706], + [-50.14164128987671, -29.288056724663775], + [-50.14774185187451, -29.288205512177214], + [-50.14526001889407, -29.28347341966524], + [-50.15057091818005, -29.284874396717548], + [-50.15042718497094, -29.28247687510427], + [-50.144993382015706, -29.27618557701854], + [-50.147735996507784, -29.263933590616293], + [-50.146012558854885, -29.2580969599819], + [-50.13851589730369, -29.254963982082863], + [-50.15091929647821, -29.2580534153072], + [-50.150261356299445, -29.249711692560428], + [-50.15774157433495, -29.25276063669544], + [-50.16138462843141, -29.249038038433497], + [-50.174965104699126, -29.24965111778389], + [-50.14166034347655, -29.238176636162038], + [-50.14217031058395, -29.231008476194305], + [-50.150550842418255, -29.22992855546884], + [-50.14572971264359, -29.226353011824877], + [-50.14778806896551, -29.220004310148017], + [-50.13324053910486, -29.216562848260327], + [-50.13388773987975, -29.208817475373507], + [-50.140690803512584, -29.201881186390672], + [-50.15137105600566, -29.20425011066622], + [-50.152535678338054, -29.20180273841253], + [-50.139250672798966, -29.192632920990203], + [-50.13773832162143, -29.19946132092736], + [-50.12327607170957, -29.198017406488667], + [-50.12985543095812, -29.201870597292686], + [-50.11606639083227, -29.205697903930126], + [-50.115689047370836, -29.209287803524884], + [-50.09379933287664, -29.21330656032086], + [-50.10146828453145, -29.22524603712972], + [-50.110164261968116, -29.222004351602934], + [-50.113213995590456, -29.22538912366571], + [-50.10863916847765, -29.230486314049937], + [-50.11199270475113, -29.24026158441887], + [-50.09299478680932, -29.223729516581], + [-50.098732724437696, -29.23623189096765], + [-50.0940303044822, -29.237829433205267], + [-50.08395587506431, -29.227957525594437], + [-50.08809760225525, -29.22291348063691], + [-50.085427114719224, -29.215590688951217], + [-50.09310796391808, -29.22102231925854], + [-50.0859356238767, -29.19930746747689], + [-50.092710207007784, -29.199178937859347], + [-50.08568820596922, -29.19361343695881], + [-50.09320161546629, -29.19553029815417], + [-50.08872514939718, -29.18467850648868], + [-50.09137748111238, -29.180657661941563], + [-50.097605265737165, -29.180566029278083], + [-50.09390621282676, -29.17628262193396], + [-50.098902406023136, -29.172771388304895], + [-50.09609113933354, -29.166153887119417], + [-50.09940930870819, -29.163865204642455], + [-50.0820821296017, -29.16025233158611], + [-50.080610922612905, -29.15580390543731], + [-50.06700516288061, -29.159416457847218], + [-50.07800212757733, -29.15766230924811], + [-50.07703765520928, -29.16130515671247], + [-50.09245150301353, -29.167450011884625], + [-50.09022982654314, -29.175528492812674], + [-50.079383181544785, -29.175910156283344], + [-50.08612664819795, -29.178752763743727], + [-50.07620610226294, -29.183003422657418], + [-50.07932303209237, -29.18575732896685], + [-50.0765808495956, -29.190283479290606], + [-50.060597288488545, -29.176919374835222], + [-50.06584433686338, -29.191454713110296], + [-50.05595384142018, -29.183775250355435], + [-50.051908936307996, -29.18640718777768], + [-50.04233830284311, -29.183931807088396], + [-50.03470018577233, -29.176988683571906], + [-50.03052287040067, -29.18070002336373], + [-50.014811278776705, -29.181651349779248], + [-50.0217628376445, -29.178834725037145], + [-50.019797148252266, -29.17417559254565], + [-50.02814274189357, -29.171039532201824], + [-50.02401957181161, -29.166526492265984], + [-50.0269980032483, -29.16437020100747], + [-50.020501477319485, -29.166993431701787], + [-50.01807540499423, -29.164033540631046], + [-50.019401230381185, -29.154391916044215], + [-50.00986377861808, -29.157315458444412], + [-50.01020658646988, -29.151700374958526], + [-50.005231721075894, -29.150866650948696], + [-50.005881384068886, -29.134597672594115], + [-50.01404590267207, -29.12822211016526], + [-49.99702941420718, -29.133169819659482], + [-49.99033058899825, -29.128701636475775], + [-49.991201512442714, -29.134944852888538], + [-49.986863139236235, -29.13659206545639], + [-49.98427938835276, -29.133232298405233], + [-49.992172587652796, -29.118784772570844], + [-49.9839611230872, -29.117632072403836], + [-49.98240257715008, -29.120168730688995], + [-49.96854688131763, -29.116492591777003], + [-49.96905140521934, -29.12092189503395], + [-49.962858644991755, -29.117914714407213], + [-49.96433755555852, -29.1146127469296], + [-49.96776122482516, -29.115524720740645], + [-49.9699737796281, -29.10456069046841], + [-49.969522891289905, -29.101495360330482], + [-49.96285358539087, -29.10032106491191], + [-49.96721978261296, -29.095323540754404], + [-49.96747771946399, -29.083918795893652], + [-49.954499857356225, -29.085465018179303], + [-49.95413138931679, -29.076234626056443], + [-49.96023905428184, -29.070936483251298], + [-49.956262491127895, -29.068776081609865], + [-49.94819717332356, -29.069692830158655], + [-49.952168505996475, -29.06297639790466], + [-49.94252329529412, -29.064704828462478], + [-49.9400603797107, -29.057134892754362], + [-49.946139430012884, -29.055597361735444], + [-49.95673488926619, -29.06215782050921], + [-49.95691494246811, -29.066174615586128], + [-49.964141189393, -29.0646843039856], + [-49.968051416058074, -29.068072397009203], + [-49.96790960361901, -29.06461898091449], + [-49.98746306602848, -29.069074944592384], + [-49.98537885480178, -29.07162484111853], + [-49.9886289904213, -29.07565494856464], + [-49.991495841592325, -29.070092713845817], + [-50.007445342222105, -29.072152385484603], + [-49.95920666787418, -29.049351903163803], + [-49.958703282318616, -29.04361342736381], + [-49.953334689537854, -29.03935052323296], + [-49.95549674031448, -29.03546633878019], + [-49.94593771477849, -29.033224270151667], + [-49.947116146339766, -29.027783347156063], + [-49.93832901955498, -29.02093730632439], + [-49.94719414619494, -29.017935683036622], + [-49.94906651923446, -29.021035729612105], + [-49.96477945017573, -29.02255305722166], + [-49.96313000629901, -29.02052040239264], + [-49.95551494605576, -29.011997741092404], + [-49.957687177343274, -29.010651083744843], + [-49.951499514992875, -28.99944550901731], + [-49.94607491497779, -28.99596648868803], + [-49.94189854470819, -29.001457655830205], + [-49.94400820461129, -28.985922676739435], + [-49.938503380209475, -28.9786909379586], + [-49.93614068126285, -28.98522956593266], + [-49.91989080316757, -28.97834913713045], + [-49.93437224648219, -28.97443781964336], + [-49.93780756746994, -28.96537715305263], + [-49.956537080794824, -28.961757080616305], + [-49.95581152606386, -28.946901557793527], + [-49.96468107141379, -28.92762471500339], + [-49.971165833173764, -28.924273920528396], + [-49.966016928125676, -28.916352986297614], + [-49.95925492858379, -28.895763613201684], + [-49.95888265484921, -28.883169418458596], + [-49.95517492842962, -28.87520488657055], + [-49.9690187759126, -28.881049615758158], + [-49.97212522873823, -28.88068822697282], + [-49.964264098630736, -28.859250889077018], + [-49.96128066308032, -28.83264751557861], + [-49.969973151697815, -28.829017221387197], + [-49.969099477176094, -28.8231235119691], + [-49.96267999384545, -28.809856769631313], + [-49.96280497417895, -28.80157535212645], + [-49.9469271055722, -28.806170479655176], + [-49.94762806620653, -28.79831729796994], + [-49.953333301359514, -28.797584409939592], + [-49.956679190385046, -28.79141501670718], + [-49.952884694411814, -28.784037295032178], + [-49.95901390494908, -28.77925486651361], + [-49.95431407099103, -28.776643721916486], + [-49.95677481138645, -28.771244322989006], + [-49.951581475787904, -28.768421935513306], + [-49.947865518986994, -28.770401123625323], + [-49.946129346885584, -28.76586012556329], + [-49.95010899963336, -28.75517396083341], + [-49.93691498388966, -28.759000791935343], + [-49.92802408631792, -28.75607914284776], + [-49.928384414136126, -28.751656904304486], + [-49.921997239257706, -28.746095401123036], + [-49.93101996864952, -28.74050205903098], + [-49.935381470744986, -28.728056379302302], + [-49.92543970172497, -28.718924820521693], + [-49.91399300106136, -28.715743601144286], + [-49.90522551387768, -28.707242646678875], + [-49.908939913995724, -28.715591099140426], + [-49.914638585279995, -28.72486163284621], + [-49.90471737088615, -28.720267759028363], + [-49.894370280648836, -28.724695679085773], + [-49.88528057274385, -28.71850653351539], + [-49.88173660384817, -28.72138927999201], + [-49.885006482887, -28.729882441281667], + [-49.89184072897267, -28.73957036428549], + [-49.88737109613758, -28.740574455344657], + [-49.88861164504725, -28.74663267071541], + [-49.8756582526233, -28.744830408142423], + [-49.880166154188196, -28.73623873413748], + [-49.86619438875599, -28.72109156406312], + [-49.87070281521866, -28.721167804213312], + [-49.866319085188536, -28.71542990201902], + [-49.87051852056831, -28.714425414198516], + [-49.867068715355366, -28.709942271828837], + [-49.868760902752776, -28.70404908683448], + [-49.87165683408192, -28.704281502491593], + [-49.86045523193175, -28.699997934233934], + [-49.86327228727237, -28.70300948477509], + [-49.84640656547338, -28.70540738544012], + [-49.84330737819949, -28.713593290444162], + [-49.84005687576159, -28.714834185426096], + [-49.839548299812506, -28.714901458932932], + [-49.8361930835011, -28.70855640418948], + [-49.84102116495951, -28.707710897784207], + [-49.839146823438206, -28.702189808440483], + [-49.83211314704147, -28.694885688096715], + [-49.82075457358644, -28.6938629188299], + [-49.823181825488405, -28.688182327750756], + [-49.833942488145475, -28.68831162731048], + [-49.836181555923076, -28.685290958446544], + [-49.83539257411806, -28.679235564771393], + [-49.83994460121736, -28.677259795234583], + [-49.837552193488236, -28.66712150714198], + [-49.82956730840714, -28.66899170728183], + [-49.82260054583558, -28.6619488236032], + [-49.81275692230099, -28.658469406457783], + [-49.80924981675511, -28.654161709400455], + [-49.81842336362569, -28.654040232358533], + [-49.81470184658207, -28.649588212347638], + [-49.81732314389601, -28.640595366456814], + [-49.80918774680526, -28.635747653704474], + [-49.80812808202443, -28.62992442187716], + [-49.802691738489344, -28.629221261747233], + [-49.79442833958145, -28.615798903374355], + [-49.78858664634701, -28.613199687849658], + [-49.782536563164285, -28.61134065892471], + [-49.78506046718673, -28.622650290872496], + [-49.7809017489255, -28.630220630781785], + [-49.77208762954583, -28.62796251552635], + [-49.758216662951114, -28.615493315327193], + [-49.754664161662625, -28.628902598259607], + [-49.72826081628351, -28.623356241183473], + [-49.71558523946926, -28.624024419738745], + [-49.7062037437598, -28.627820848857375], + [-49.70739216636008, -28.63069897609037], + [-49.704675658391906, -28.629484221406084], + [-49.70304996304096, -28.62892376600105], + [-49.69358485942952, -28.62495631239003], + [-49.69162766018748, -28.61889337306715], + [-49.698931296063016, -28.606635764569408], + [-49.709866394998485, -28.604642850270796], + [-49.712693043773605, -28.594152743113252], + [-49.708174223791204, -28.583073081730355], + [-49.711487745298584, -28.573319953594176], + [-49.71994178351394, -28.576905386249436], + [-49.72546912771105, -28.569905332701794], + [-49.73047262848931, -28.55198649794151], + [-49.74898459106252, -28.545588718860838], + [-49.74675845596222, -28.536190863815992], + [-49.7270894669582, -28.519212863809607], + [-49.72920502310353, -28.514615193339175], + [-49.73662686403589, -28.512034283850273], + [-49.73718127286435, -28.510552503629306], + [-49.74405055768792, -28.506880836687795], + [-49.739799986028096, -28.499987295812304], + [-49.74534636167178, -28.493863203674664], + [-49.762699586809426, -28.50214074188979], + [-49.771018540444416, -28.492916909198613], + [-49.7654751233173, -28.48279816939497], + [-49.7647113297472, -28.459994844560494], + [-49.768672290187546, -28.45950795132828], + [-49.773054872086504, -28.467282253501285], + [-49.78181870714535, -28.47212263116461], + [-49.77842988418017, -28.475807983948727], + [-49.786007577576534, -28.488142524406197], + [-49.781043027844035, -28.494533364559675], + [-49.78339971876836, -28.49620196469717], + [-49.791317030184885, -28.49517566834502], + [-49.80281197292488, -28.48386021824738], + [-49.810568824158736, -28.46780938700464], + [-49.816958232510345, -28.469062566450315], + [-49.81602330594417, -28.478358105464473], + [-49.81102779140338, -28.48378341275481], + [-49.825904247643706, -28.478176539979938], + [-49.83981009144007, -28.496185798489826], + [-49.84543582915023, -28.493248240451987], + [-49.841391817833866, -28.48481670539848], + [-49.8663457984118, -28.487646068291088], + [-49.8693471372227, -28.48064526781779], + [-49.863869514294336, -28.473670090697397], + [-49.86366972475481, -28.462840180836718], + [-49.87740065931363, -28.454612858973505], + [-49.87269383767566, -28.45073747036763], + [-49.85893586763758, -28.449008262713992], + [-49.854822984332436, -28.44394031428478], + [-49.85996284179961, -28.442059337908454], + [-49.87130381345953, -28.441040069422158], + [-49.88306079113109, -28.447355031815214], + [-49.88797187818688, -28.441877272781717], + [-49.89307555583686, -28.44001462992519], + [-49.897646874673164, -28.444945775694844], + [-49.88863425954856, -28.458028348348986], + [-49.9004019780925, -28.463977425875974], + [-49.9148264692025, -28.459499122321095], + [-49.928731231533526, -28.451093109568966], + [-49.937987817560426, -28.458415603331357], + [-49.93073903988033, -28.46357138961222], + [-49.92856646202577, -28.470771655737853], + [-49.94421047977182, -28.48239887649525], + [-49.95122098831862, -28.46640364574691], + [-49.952323329474964, -28.450392019544438], + [-49.95886565447098, -28.449651769571727], + [-49.9668508457077, -28.455453363952994], + [-49.971545867727635, -28.43911692877307], + [-49.98849417100329, -28.444810636479982], + [-49.98761895617236, -28.455884476919348], + [-50.002730117626804, -28.457282882188775], + [-50.01289999272799, -28.450777532625043], + [-50.0163742700224, -28.45011950891573], + [-50.01962161976434, -28.451534521443687], + [-50.025596126215845, -28.47122875562306], + [-50.036338265588036, -28.477811744727124], + [-50.06061268868012, -28.475616261435345], + [-50.06864597733412, -28.479128525163574], + [-50.07280979690007, -28.480530084991923], + [-50.086451230653545, -28.472837743599676], + [-50.099851195761616, -28.485541795866805], + [-50.10783408596771, -28.473058501184266], + [-50.1218490298001, -28.47594823009175], + [-50.12652308526567, -28.473046118923634], + [-50.12658364533022, -28.463582858210376], + [-50.116028828030274, -28.455037576766802], + [-50.1113534754353, -28.44513742585145], + [-50.11575175287056, -28.436982051779506], + [-50.12671935454365, -28.429040321561565], + [-50.1301424648076, -28.43137064479853], + [-50.12653831571694, -28.437645875858575], + [-50.1456509114012, -28.446441624613172], + [-50.14740245353759, -28.45956010624903], + [-50.15721580423857, -28.458165572041658], + [-50.16014335779636, -28.460483970403008], + [-50.14585642657207, -28.476891140181902], + [-50.13936555063815, -28.494646983405385], + [-50.15717712722036, -28.49768331498646], + [-50.16168394175556, -28.494997873478905], + [-50.16657823397623, -28.467886460415723], + [-50.178746403585414, -28.451782386659698], + [-50.18882709379279, -28.45272261505717], + [-50.20011252681174, -28.444409612791002], + [-50.204610837794945, -28.44537670805794], + [-50.21476155112802, -28.459865006388373], + [-50.22304962529233, -28.462894263316887], + [-50.23465802715174, -28.457928122286518], + [-50.241683771985926, -28.43277032682997], + [-50.24758272207536, -28.42886194191612], + [-50.26368624795474, -28.442914968289077], + [-50.26286624120527, -28.445871112109117], + [-50.251756875781325, -28.44896185816872], + [-50.271644838941945, -28.45669321528753], + [-50.29157878525248, -28.451318721970477], + [-50.292259492111455, -28.45101369436271], + [-50.29275249046011, -28.450497165742412], + [-50.30029455204092, -28.44047366179343], + [-50.32826238203305, -28.434203669584655], + [-50.33934251582123, -28.44031956751697], + [-50.33671413979958, -28.458510880665056], + [-50.345746195989015, -28.46331223121469], + [-50.35151500635013, -28.455252459961507], + [-50.34836831338878, -28.42859790105152], + [-50.35715535279324, -28.42074111855391], + [-50.36829376836968, -28.42220098085164], + [-50.37554763652979, -28.434391413458247], + [-50.37642950349885, -28.444404114468213], + [-50.37868887143206, -28.44616586152436], + [-50.38830228878284, -28.444049663396836], + [-50.3966954361731, -28.432944040730092], + [-50.424302617238524, -28.432893298229235], + [-50.430976657922734, -28.43260675171867], + [-50.4481358075393, -28.422345159085136], + [-50.45606529083728, -28.410716710015237], + [-50.4705507425321, -28.414848426065934], + [-50.49895077899934, -28.412606126617387], + [-50.51018794564043, -28.405820129179254], + [-50.523383035426995, -28.403239368813292], + [-50.531369250204165, -28.40609735609006], + [-50.52798484762277, -28.42245269131661], + [-50.53168882135611, -28.428195142015223], + [-50.544130652212004, -28.427086975105322], + [-50.54971379224302, -28.420146074113603], + [-50.56279509722858, -28.414443386866456], + [-50.57649927470496, -28.3937796628442], + [-50.591676751370315, -28.38210132623662], + [-50.59776038920653, -28.38090733151807], + [-50.61236074513762, -28.393138131959972], + [-50.62510257953724, -28.391417639721976], + [-50.63276472546134, -28.3794337909555], + [-50.62833836113435, -28.363981765959583], + [-50.65194391008364, -28.343268467953116], + [-50.6651020160258, -28.33790307530539], + [-50.659385720433946, -28.321994826629627], + [-50.680769491755086, -28.29794522493434], + [-50.69454213508314, -28.28869341992582], + [-50.695226689178625, -28.270633217886164], + [-50.69830603131452, -28.266629220864292], + [-50.711824922210845, -28.265578284025583], + [-50.74198654992223, -28.249709377745482], + [-50.749203679012076, -28.248872226243325], + [-50.75386524104296, -28.24298684419926], + [-50.7524517603558, -28.23302300061618], + [-50.75863091971259, -28.20984236050373], + [-50.7602144532094, -28.205421750963044], + [-50.76160315509856, -28.192223678625137], + [-50.766668443627466, -28.188344088830075], + [-50.777914999312074, -28.200388566094407], + [-50.78866495867048, -28.19836098839121], + [-50.78898322557373, -28.189526968396823], + [-50.78260303868904, -28.176145313197285], + [-50.792331677863885, -28.160470867951293], + [-50.784847553457816, -28.14551917713167], + [-50.78961661256437, -28.139240680276043], + [-50.818519734854526, -28.140471236815593], + [-50.828458962143614, -28.1191709380219], + [-50.836046738909126, -28.118798822406443], + [-50.86007520981076, -28.139777071733914], + [-50.86782598115374, -28.139412417935496], + [-50.87496014904545, -28.13187551463818], + [-50.868864999554646, -28.109747581647447], + [-50.87607430859158, -28.094764085881604], + [-50.881614200309244, -28.090731820662977], + [-50.89869811873409, -28.08979333653535], + [-50.90359330885218, -28.08687077332787], + [-50.90034205845486, -28.078137448210295], + [-50.88194496648341, -28.06802343164795], + [-50.875437505304895, -28.05521801012836], + [-50.874943941187745, -28.041330217270016], + [-50.87746057748611, -28.037575412208092], + [-50.893852470096604, -28.020031631389347], + [-50.90379498600647, -28.016596118422257], + [-50.92291714116908, -28.011839020179636], + [-50.920777164222294, -28.000689384529984], + [-50.92943263524339, -27.99061678613731], + [-50.92450126113173, -27.980572501861243], + [-50.92883407255868, -27.969048944026873], + [-50.945289515422196, -27.969032642045114], + [-50.97757239329652, -27.95286499153187], + [-50.97962428773375, -27.94795355901155], + [-50.98027840037702, -27.945634394614917], + [-50.986353025125624, -27.94185416498185], + [-50.99310490008598, -27.945271115576507], + [-51.001210274698, -27.963312578658474], + [-51.00704889262254, -27.965072513065657], + [-51.01915998076018, -27.956383311347086], + [-51.02079879138165, -27.944572481495143], + [-51.016106688517056, -27.928241609155837], + [-51.01862892662406, -27.923954586828042], + [-51.05002982045235, -27.907971272637443], + [-51.05786310617415, -27.900416439559883], + [-51.0554616545911, -27.887046148604675], + [-51.051951986910844, -27.870130111003355], + [-51.05907867446017, -27.865494083274136], + [-51.0734074792147, -27.864718361751443], + [-51.08046285699688, -27.85901832512975], + [-51.077857150002664, -27.841248973939486], + [-51.087734135247615, -27.831837110369843], + [-51.10374402077971, -27.82772364574156], + [-51.124585479800615, -27.832923769514245], + [-51.125441696223916, -27.832952409824554], + [-51.1312557066116, -27.83028959084576], + [-51.13306458553469, -27.806280316016768], + [-51.13434187529739, -27.804800885111614], + [-51.154945832027785, -27.80377285480883], + [-51.17070413412528, -27.792490589747676], + [-51.171274919572305, -27.79200629760804], + [-51.188575783940266, -27.777747730966368], + [-51.20933271096269, -27.77685868906352], + [-51.2222918378647, -27.76976094622668], + [-51.22824958169088, -27.77355974886077], + [-51.23508547328718, -27.779367031918685], + [-51.243131599701165, -27.775569659354897], + [-51.24759283916174, -27.759321495656717], + [-51.27364079020894, -27.749688171721658], + [-51.27301837017014, -27.735620246562902], + [-51.27252477606637, -27.730512568538348], + [-51.27610615504437, -27.723963735224004], + [-51.29351268696116, -27.72541334654366], + [-51.30878568981445, -27.719380146883218], + [-51.30900806903771, -27.712349281376135], + [-51.302075984906864, -27.702457555654156], + [-51.311019612036084, -27.695920865322474], + [-51.31289379058422, -27.683577721136924], + [-51.31348787010668, -27.677907664040788], + [-51.318086676428074, -27.67314480639977], + [-51.33153555511915, -27.67109375941616], + [-51.35199480469351, -27.68003555073595], + [-51.369568858150416, -27.67254648364208], + [-51.3770666912697, -27.662126786826867], + [-51.37007224385408, -27.636489624990602], + [-51.381860132062634, -27.625172185240917], + [-51.38774560738595, -27.623692162491697], + [-51.40522926466664, -27.632935159433433], + [-51.411137397270956, -27.645345355919], + [-51.41223222979407, -27.64904004460608], + [-51.420245613470094, -27.65487747208857], + [-51.43423557086828, -27.65494665871557], + [-51.43717975690966, -27.65179576848905], + [-51.43563201992008, -27.633067354104003], + [-51.4404669319428, -27.624022220548493], + [-51.45777597894004, -27.607809328290912], + [-51.47050090286916, -27.60327241043441], + [-51.475233146228184, -27.600457975266195], + [-51.477848551021445, -27.57007671923108], + [-51.49006471435501, -27.55944324254411], + [-51.50855972337686, -27.556582191194092], + [-51.53643496685375, -27.563086742105526], + [-51.54910969795661, -27.560006066689937], + [-51.55534870852145, -27.56757501966051], + [-51.5582767410386, -27.581527290650076], + [-51.560421021535255, -27.583868527909924], + [-51.56798691818204, -27.58479037646299], + [-51.57839058142713, -27.577080007059788], + [-51.58556936193583, -27.56962307218382], + [-51.586959190791355, -27.563272166312654], + [-51.57793787683565, -27.5300621452582], + [-51.58208928368677, -27.52306749623679], + [-51.59402990262944, -27.52529398336035], + [-51.607825318662066, -27.541613083131928], + [-51.618524711790606, -27.546523946600185], + [-51.62652562063372, -27.5452004387992], + [-51.63144755465985, -27.53157699204191], + [-51.61968345735595, -27.5007369582069], + [-51.622683285579775, -27.494113569695262], + [-51.63222077181082, -27.48886418437879], + [-51.64263145291746, -27.491894701916497], + [-51.646289175446064, -27.51311180055255], + [-51.65126015043981, -27.519806454441344], + [-51.65899502488864, -27.519602162437817], + [-51.66972746313308, -27.514646352128718], + [-51.6766186104682, -27.506688689731135], + [-51.672553506613255, -27.49297354790932], + [-51.677653489392256, -27.483190814137945], + [-51.68448511236429, -27.47944939952159], + [-51.692656095352994, -27.478185084657156], + [-51.69982355472343, -27.47947534475929], + [-51.7068953365207, -27.485147447639502], + [-51.71527466197451, -27.504040749598328], + [-51.71695577368941, -27.510865002486355], + [-51.725207388297704, -27.513992106838916], + [-51.74269237191925, -27.497714788674454], + [-51.74967470442883, -27.48993148874884], + [-51.753446314366315, -27.487411688580256], + [-51.7829198940617, -27.491799829651026], + [-51.79862045159423, -27.490997170653554], + [-51.80291658447928, -27.499468481073098], + [-51.802298042836746, -27.5043640334912], + [-51.790198195667884, -27.51519176991397], + [-51.785919500702704, -27.528159083403715], + [-51.79711897087879, -27.530551391514656], + [-51.82212989629902, -27.512767145760087], + [-51.829295090177084, -27.514767995503437], + [-51.83691424294365, -27.522345729264917], + [-51.84320838430231, -27.52544819444219], + [-51.8490237073728, -27.525496737143484], + [-51.85451252099607, -27.518584217697825], + [-51.85389118868984, -27.513983148212144], + [-51.842723625950995, -27.486106451529643], + [-51.844170712208054, -27.481384925740866], + [-51.857728896208684, -27.475558426525968], + [-51.86712928606507, -27.476692264141047], + [-51.878084242163524, -27.485006211160666], + [-51.880161320306904, -27.49449607354955], + [-51.87324247294066, -27.51349906252272], + [-51.8797542522244, -27.520955708052636], + [-51.88937986838625, -27.52057886391784], + [-51.89355184886445, -27.516803769028655], + [-51.897966886741095, -27.506404655559997], + [-51.90238841632988, -27.49598921512733], + [-51.90008688409077, -27.465148488480175], + [-51.90097538126807, -27.46316737463018], + [-51.91186852819544, -27.45850580669722], + [-51.928086996360854, -27.46318079301631], + [-51.933100818895454, -27.466584889781195], + [-51.95227625496807, -27.474859762041987], + [-51.96267855657582, -27.470420615585912], + [-51.962623640269065, -27.46201763378118], + [-51.935944256064246, -27.441858233915855], + [-51.93298389683559, -27.434439736105634], + [-51.93745673297853, -27.42700052461717], + [-51.955900212664595, -27.414810430776992], + [-51.974574508789004, -27.410418028324703], + [-52.002211853506594, -27.408360096511096], + [-52.00857307795217, -27.400515968432614], + [-52.00020159987139, -27.392673169954275], + [-51.99188880427394, -27.39026422329966], + [-51.954455283471844, -27.394914042070745], + [-51.94985180738846, -27.392255640306896], + [-51.951006350800796, -27.38129665721229], + [-51.96193533520364, -27.37471606329142], + [-51.9857219074418, -27.374631846604636], + [-51.993047541033505, -27.378392738941137], + [-51.996839393237025, -27.37831187991806], + [-52.00963076885051, -27.37188855431341], + [-52.01982054557124, -27.362624204605428], + [-52.02244597559018, -27.355050106198536], + [-52.00873824302985, -27.34334599514054], + [-52.00925205544535, -27.334333806805535], + [-52.01826497733601, -27.331717605462416], + [-52.038852417625826, -27.34490771248627], + [-52.048875057712884, -27.345817563475062], + [-52.07311703313235, -27.338313409210503], + [-52.08929503069093, -27.345603947086875], + [-52.09799054174913, -27.34837403862303], + [-52.1070769061301, -27.343338894831067], + [-52.109468669818305, -27.3396218918316], + [-52.107218856945714, -27.323918162873802], + [-52.10618035504926, -27.315630353840476], + [-52.10790769654624, -27.309587582489726], + [-52.119065599730504, -27.30317393056522], + [-52.12838977953953, -27.302768543061124], + [-52.13973299752533, -27.30506164555541], + [-52.161414946620035, -27.313967818988168], + [-52.16727096935553, -27.31159798290864], + [-52.15890170829727, -27.283735111353515], + [-52.160966282339054, -27.276815440165258], + [-52.166593070398164, -27.273336456897972], + [-52.1738453649909, -27.272841240376486], + [-52.18023262593352, -27.276894074273574], + [-52.19316492996387, -27.297366403473116], + [-52.2008798682929, -27.316447092487465], + [-52.203700897742635, -27.32341852051981], + [-52.21015792008514, -27.330855127938865], + [-52.22468891881751, -27.330421562727206], + [-52.23940079642083, -27.306174214647033], + [-52.25074162381787, -27.302334193006118], + [-52.27317886573913, -27.30396094567071], + [-52.277945878223846, -27.296414951682973], + [-52.2638651455761, -27.28151766987328], + [-52.236170601253, -27.27209961708837], + [-52.235104082831846, -27.265571332596902], + [-52.253913460484625, -27.257466257732506], + [-52.26122184362152, -27.259047673513283], + [-52.277212468268786, -27.26196645603297], + [-52.29378341831989, -27.257753015789493], + [-52.301755560401304, -27.260019800839505], + [-52.30505500722977, -27.274935704776905], + [-52.29128559717416, -27.30900210777097], + [-52.293894496065775, -27.316260736017895], + [-52.29912766172182, -27.318639597659246], + [-52.30553415996264, -27.318296062008567], + [-52.34673143777647, -27.28822889010959], + [-52.356592508190275, -27.292436729654355], + [-52.36509512275243, -27.303773757617712], + [-52.375701626537726, -27.304248330539494], + [-52.381604354130594, -27.29404833530969], + [-52.38384278050045, -27.284783797018964], + [-52.382522809106845, -27.274231210028535], + [-52.38043603235069, -27.26433649496122], + [-52.382068929647374, -27.25765257655325], + [-52.393704064079444, -27.25237575266207], + [-52.39985555519482, -27.25848136195965], + [-52.393187395147166, -27.287959978182027], + [-52.395850137632095, -27.29260553712407], + [-52.397683352420785, -27.292557978012557], + [-52.401926825314234, -27.292447727382477], + [-52.41934697639983, -27.282740714342296], + [-52.44046400965488, -27.262667783923494], + [-52.442106943413336, -27.24913136467832], + [-52.43194805250713, -27.227739887007107], + [-52.43294932491956, -27.218381962710396], + [-52.440048214342355, -27.216729714600273], + [-52.451622868569586, -27.220786568244186], + [-52.46279078021886, -27.22879088458595], + [-52.47771669801207, -27.234022852653865], + [-52.48201092739343, -27.24518188504771], + [-52.477391894340755, -27.26270711646818], + [-52.479722207464825, -27.265351742294577], + [-52.486058753634225, -27.266913687716595], + [-52.49791178452674, -27.265187220639287], + [-52.504457207887356, -27.264893693643966], + [-52.536265997201625, -27.260087829957264], + [-52.545248315165935, -27.23996476183405], + [-52.550096046239986, -27.238481136058052], + [-52.56378654825289, -27.248719777714186], + [-52.59029549509028, -27.24826824118412], + [-52.59770704175294, -27.254176044299633], + [-52.6106867099244, -27.263352852558608], + [-52.62915535271351, -27.265654475564656], + [-52.645620757976815, -27.259969612687748], + [-52.6597015736044, -27.23790457537004], + [-52.668135631337364, -27.23840822338748], + [-52.676297948301816, -27.246610097859218], + [-52.678934785648146, -27.268208538337706], + [-52.688214440731976, -27.283085731072017], + [-52.691556404840874, -27.28416010875758], + [-52.692637768894414, -27.28394103018123], + [-52.6992788890921, -27.282062950569472], + [-52.70681649336363, -27.272875005897255], + [-52.710190387101406, -27.24438274766421], + [-52.714908179057936, -27.236888976887755], + [-52.72028898747379, -27.235016284250303], + [-52.73136314840859, -27.239723436578654], + [-52.74397271417697, -27.257049106601528], + [-52.75393890665061, -27.25833016115969], + [-52.76161529812266, -27.250182516436055], + [-52.763536993633366, -27.24341753387796], + [-52.75796944087546, -27.218288672380773], + [-52.767429100039244, -27.209339762796542], + [-52.786898172421694, -27.205031294932347], + [-52.800640332331305, -27.202641932984317], + [-52.8174620953315, -27.201334781739057], + [-52.835827692440226, -27.209943599900562], + [-52.84066638325914, -27.209213100295756], + [-52.846900525155775, -27.202547378770387], + [-52.84398869459905, -27.17805229858663], + [-52.85082268350818, -27.168584019006914], + [-52.858602581726736, -27.167683809826695], + [-52.87298084200349, -27.173981277072045], + [-52.879092134599304, -27.1783092779888], + [-52.8903558957954, -27.186908192488147], + [-52.904320022497075, -27.19883093883365], + [-52.92461787592159, -27.202478510239537], + [-52.93757338525195, -27.197321880800985], + [-52.93637547039672, -27.176447139611568], + [-52.93702849648637, -27.171852667833143], + [-52.94658787108479, -27.163749216274347], + [-52.95908225190119, -27.163438209056572], + [-52.96591424117806, -27.180192755903366], + [-52.971063017714336, -27.217795849614344], + [-52.9776749940958, -27.22113523177385], + [-52.989540115723855, -27.218424836667815], + [-53.00015733604211, -27.207186017195074], + [-53.0026572230915, -27.189982691602776], + [-52.99827315742293, -27.181046678671823], + [-52.984022821423984, -27.167558159335126], + [-52.98255488468245, -27.156621411608427], + [-52.98590883898778, -27.14988950385628], + [-52.99381991434598, -27.138233403882758], + [-53.00346842291869, -27.13338688830763], + [-53.020474375823895, -27.151816184463428], + [-53.02661065019775, -27.15715143278531], + [-53.031899704585385, -27.157247583749257], + [-53.03876499283396, -27.154602031370963], + [-53.043094229218866, -27.145958668361096], + [-53.04288931140685, -27.1285562873998], + [-53.02484796755742, -27.10586493133876], + [-53.01838994903229, -27.09079226954151], + [-53.02252930554771, -27.08357662603762], + [-53.02897013843308, -27.080543162976692], + [-53.058533614370035, -27.08628054362984], + [-53.0765452222905, -27.10358734714464], + [-53.08015810631633, -27.11536222233944], + [-53.07072064829431, -27.137009275897643], + [-53.07195910185247, -27.15732335056987], + [-53.07273615582489, -27.158280522504157], + [-53.086561053056776, -27.163332627565932], + [-53.11280870881034, -27.17013828477586], + [-53.12699309273215, -27.17868556044094], + [-53.13400728300649, -27.178197534565445], + [-53.14140683732577, -27.170593306445642], + [-53.14985675567735, -27.142320729703407], + [-53.15760383524948, -27.13862060845308], + [-53.166395180624946, -27.141214302814323], + [-53.17284886920295, -27.149239785958255], + [-53.17718262597529, -27.179026949005223], + [-53.18866623228314, -27.191487632290592], + [-53.19654228189074, -27.191638579649403], + [-53.230233094620736, -27.17188233864942], + [-53.230710875800874, -27.171662964479562], + [-53.24293729453113, -27.17067095592857], + [-53.24799531871298, -27.17463995704159], + [-53.256586272732186, -27.180186943888888], + [-53.271840489153774, -27.187167842330584], + [-53.292431285533034, -27.196588135631945], + [-53.31092861393939, -27.218392695217776], + [-53.318974516351574, -27.216506267057294], + [-53.32094449688163, -27.209589700794947], + [-53.319488843731996, -27.197300587038917], + [-53.3065836183295, -27.176801821836484], + [-53.299648989442176, -27.16031153411855], + [-53.293001448750516, -27.141476014766138], + [-53.29322406716722, -27.13430639736189], + [-53.29817613079286, -27.127155079719845], + [-53.31052050774223, -27.11852848054739], + [-53.33038941101612, -27.118888146683474], + [-53.340910347783634, -27.119678828617424], + [-53.348504226974384, -27.11755201691564], + [-53.35328342917816, -27.112006937014375], + [-53.363435543602144, -27.09410547897977], + [-53.37398252812828, -27.09055751495371], + [-53.380935410649485, -27.09395896680517], + [-53.39355507964238, -27.11004871788891], + [-53.393773620711514, -27.11066693578104], + [-53.40104607916617, -27.129404069813305], + [-53.41146192933136, -27.14110773539483], + [-53.418784258409815, -27.143721055368022], + [-53.44105702896895, -27.150326314983417], + [-53.45823473050687, -27.156010541289685], + [-53.46427207089838, -27.154102489249635], + [-53.46901370833759, -27.148158033305666], + [-53.48192418387586, -27.134727280543224], + [-53.49181361269933, -27.132506402998327], + [-53.49682110186483, -27.133564975328955], + [-53.50183976890282, -27.134626116936214], + [-53.50816349450719, -27.145217966688712], + [-53.505517571790406, -27.159161484394588], + [-53.493411806069645, -27.1751611280739], + [-53.48841466101763, -27.19379475740291], + [-53.49377163449083, -27.203661698699534], + [-53.509598247073185, -27.203849750282878], + [-53.516898729230064, -27.202226345091876], + [-53.53485167246867, -27.189061709127397], + [-53.544705284934835, -27.17892885545963], + [-53.54847869401923, -27.176086603585897], + [-53.564575926336225, -27.173419336779414], + [-53.59029040347056, -27.187384730397373], + [-53.59968534927804, -27.189251988943617], + [-53.60029565549342, -27.18904255679141], + [-53.61191099268265, -27.186005054576], + [-53.61912819828677, -27.1888062260356], + [-53.62942455469406, -27.213101750361655], + [-53.6350247973782, -27.21899864936037], + [-53.642482969373894, -27.22083904330014], + [-53.64823750045173, -27.218124600505913], + [-53.650526048818996, -27.211618221046315], + [-53.6477593646979, -27.193265265305843], + [-53.650886447677145, -27.17689347691896], + [-53.66674283335107, -27.16209742423333], + [-53.675761686842236, -27.161131278898953], + [-53.693955263615194, -27.166995771268418], + [-53.698513455842864, -27.169056947717802], + [-53.70832496424314, -27.174971694182013], + [-53.71772599172539, -27.18240738247419], + [-53.72880392722568, -27.188849379063697], + [-53.73952539224657, -27.192880267126597], + [-53.748761200099025, -27.19049388356358], + [-53.76293749020916, -27.154206110116995], + [-53.77639181165485, -27.147708788736796], + [-53.80897487409832, -27.17270842228955], + [-53.81954344850603, -27.175376592928394], + [-53.83364483164787, -27.16955328669368], + [-53.832356573998105, -27.163959156012222], + [-53.83633719055542, -27.154795680611173], + [-53.82788457062395, -27.146301430505826], + [-53.79805441790707, -27.144882648066854], + [-53.79905007268407, -27.136426126421718], + [-53.81747239542915, -27.13957477612973], + [-53.82488339415474, -27.130703005516075], + [-53.823829656644406, -27.12662341123162], + [-53.814365668061406, -27.129028021897035], + [-53.80696989749974, -27.12565452070409], + [-53.80512493254752, -27.117595592213828], + [-53.806609745895884, -27.110417563870346], + [-53.818503064063975, -27.102806637367948], + [-53.81514148386589, -27.09880427963639], + [-53.8100759805157, -27.098420279584477], + [-53.804419336611375, -27.106326316738798], + [-53.7950846353103, -27.10988589004425], + [-53.775414430793624, -27.102103531130314], + [-53.803885833202465, -27.082566976679903], + [-53.80416765997069, -27.076453079091845], + [-53.7979125227238, -27.066498894492277], + [-53.781773138949234, -27.077809876257376], + [-53.77099585246642, -27.073640414328043], + [-53.77486285427892, -27.070262372733275], + [-53.78408525134352, -27.070799388521273], + [-53.79677737733966, -27.0592295829221], + [-53.80176888840739, -27.04042898887028], + [-53.79108894533694, -27.042376418854666], + [-53.778662600917976, -27.05993321845934], + [-53.76765980672931, -27.067286902916198], + [-53.75833729118079, -27.061886986569203], + [-53.764494973251914, -27.0578037963592], + [-53.775551562623995, -27.04989811370737], + [-53.784362398370064, -27.025953693660853], + [-53.776336644240196, -27.029072775622097], + [-53.763524973904566, -27.044937306792782], + [-53.75927267549723, -27.03449559260322], + [-53.746864784343785, -27.030746548542453], + [-53.74845404011028, -27.022599978024072], + [-53.757919657402866, -27.01732532401964], + [-53.761800206658144, -27.006774673948495], + [-53.75002426352648, -27.005173991025973], + [-53.740241292957634, -27.014226244247173], + [-53.73163743663719, -27.00473761604616], + [-53.74294414505939, -26.990991293178627], + [-53.72419078804103, -26.993095592742765], + [-53.71694041550763, -26.98817077151216], + [-53.71713785792653, -26.98454407348826], + [-53.7363349829225, -26.97429928085847], + [-53.72964138889072, -26.97185979583942], + [-53.72571494134633, -26.958187602306275], + [-53.71210395594494, -26.96474952482941], + [-53.70431480533898, -26.959926732495713], + [-53.70023999497909, -26.952640442980424], + [-53.70918593819675, -26.938501801483138], + [-53.707664286536804, -26.93268930708373], + [-53.678906691631624, -26.944875356730492], + [-53.6733651429752, -26.945898682833622], + [-53.67079174735465, -26.94223309910175], + [-53.68068729495684, -26.93800783642133], + [-53.696683238319174, -26.9284280030741], + [-53.68099779266331, -26.915664624757465], + [-53.67286059582691, -26.913065758098522], + [-53.67924782474143, -26.907898300871064], + [-53.67179406533702, -26.892986371390688], + [-53.69514054643304, -26.886463129534924], + [-53.69089078129316, -26.876210523597173], + [-53.679357987145835, -26.8691913363171], + [-53.69391437570918, -26.863734624940975], + [-53.695659494392075, -26.858013826995144], + [-53.66319091260334, -26.864124978920668], + [-53.65938466282593, -26.8612359751898], + [-53.66055736586039, -26.856717271809753], + [-53.670771289371444, -26.852327309438554], + [-53.676774527414864, -26.843370295568498], + [-53.69471394026322, -26.8466321278822], + [-53.69399208894852, -26.84117763782152], + [-53.687961586194504, -26.83674759526464], + [-53.69557978803082, -26.831355495441517], + [-53.70055272678809, -26.818629041813118], + [-53.710244740784184, -26.812225181533346], + [-53.70885623350809, -26.80963934946426], + [-53.704356081206704, -26.814341107853085], + [-53.6980001460263, -26.81392064580612], + [-53.699936943575324, -26.797271671548902], + [-53.70852251081099, -26.797346479368798], + [-53.715395483651115, -26.787282127770606], + [-53.715437205035705, -26.779009780758944], + [-53.69952051431365, -26.77129740229504], + [-53.69929942603627, -26.76781232786062], + [-53.7136305364111, -26.76644585102279], + [-53.7151023327592, -26.772565160218505], + [-53.72918621392275, -26.773441169908093], + [-53.743499643683656, -26.76262771576887], + [-53.73052411770041, -26.765086433681468], + [-53.72405512026867, -26.763035190160842], + [-53.71754863059028, -26.758753461093068], + [-53.714428718409536, -26.74918504337234], + [-53.72485090905707, -26.742339317980665], + [-53.731720787441276, -26.730690141059505], + [-53.73618669123276, -26.74153868846667], + [-53.749962110445566, -26.7402107979885], + [-53.74221517409342, -26.730297170639496], + [-53.75732534606206, -26.719295039949653], + [-53.75382909735546, -26.709828763843387], + [-53.7478596535041, -26.71900775876738], + [-53.733571085741495, -26.716054741031012], + [-53.73196435550237, -26.700040955527157], + [-53.741523105625056, -26.689534357268354], + [-53.74310952145128, -26.681053492482988], + [-53.73682872120063, -26.682143062809192], + [-53.72915911477954, -26.691821751667952], + [-53.71593856361615, -26.68273454246515], + [-53.71826879825886, -26.679327641614222], + [-53.73032033829032, -26.67656044704031], + [-53.72599826136108, -26.67322364784166], + [-53.726304357624365, -26.667032900202596], + [-53.7184701150623, -26.666881295201293], + [-53.72037225892293, -26.65223160231991], + [-53.72463445452768, -26.64788522544703], + [-53.72243953673877, -26.65716076054008], + [-53.725491759213604, -26.658165794708108], + [-53.733269790571406, -26.651989268448876], + [-53.73379823025339, -26.645437888827857], + [-53.74233256012607, -26.64716934295036], + [-53.75885655723771, -26.641069272639864], + [-53.7504731456434, -26.63514229830987], + [-53.73949612550141, -26.643637075710956], + [-53.74071411164455, -26.629963232903677], + [-53.73240923470076, -26.62987562946397], + [-53.72877184802953, -26.61710600585558], + [-53.73471524323778, -26.608848198948635], + [-53.72868699481229, -26.607095829372753], + [-53.72941738847169, -26.602201867029343], + [-53.72766500251408, -26.593031455906676], + [-53.73163546304047, -26.58658315140597], + [-53.72391157391329, -26.588747093519913], + [-53.721685400373616, -26.56236785170823], + [-53.70835574968791, -26.56242419456075], + [-53.7065478833036, -26.559775132900057], + [-53.70932637326576, -26.556412551886872], + [-53.71854825732414, -26.55731828293364], + [-53.729604719636484, -26.565579016339075], + [-53.735719486567646, -26.566303511679095], + [-53.735742906171396, -26.560022769689006], + [-53.72449326917998, -26.559152145609737], + [-53.72418417629939, -26.55410363127126], + [-53.72677296105883, -26.550055306062333], + [-53.74093351181704, -26.545346134685182], + [-53.72949789795816, -26.539213742819516], + [-53.723108231295896, -26.542433470423486], + [-53.719690603749754, -26.53738156483618], + [-53.724051595707685, -26.53399471021319], + [-53.71602420461458, -26.52629917823747], + [-53.72604945871767, -26.525496591740694], + [-53.72935176618638, -26.503064676755656], + [-53.72507501183516, -26.500693619360803], + [-53.71884917825837, -26.507087762077656], + [-53.713129693485065, -26.50361058188757], + [-53.70335724999589, -26.50824050227896], + [-53.70776996026152, -26.5004137006906], + [-53.702580414639364, -26.490438833929588], + [-53.69482843999348, -26.490278046871968], + [-53.699461089412395, -26.478815577969268], + [-53.6951309371514, -26.475203407885253], + [-53.70191725201022, -26.473363007364405], + [-53.70660487416628, -26.48121408700219], + [-53.708381225786106, -26.473993712609474], + [-53.71460469481444, -26.47091325420543], + [-53.70346269968709, -26.46317371025812], + [-53.69724067321192, -26.468817839514347], + [-53.69605438290408, -26.45541241647063], + [-53.70166181272019, -26.45027066607642], + [-53.703516487256124, -26.441754414508875], + [-53.69606979549142, -26.440736921064275], + [-53.69639084359355, -26.445632157915618], + [-53.68801461825822, -26.44383516534433], + [-53.687963153789035, -26.42867844538463], + [-53.69277024227872, -26.43014107919288], + [-53.69769089235963, -26.415764816733056], + [-53.70507856915505, -26.414923729340913], + [-53.70521167545157, -26.409083544743826], + [-53.70057827361091, -26.4089529683356], + [-53.6962385864416, -26.402680950268632], + [-53.706410767921206, -26.395871628675497], + [-53.70901472040483, -26.387780071928066], + [-53.70057948372469, -26.387870963208442], + [-53.69715320718301, -26.379392298579038], + [-53.700987783698686, -26.37328550125359], + [-53.69937708573986, -26.36377000122861], + [-53.68966131607537, -26.3596507111703], + [-53.69555410093881, -26.3551956717707], + [-53.68904337605095, -26.354314307377845], + [-53.68488357639744, -26.336586929008682], + [-53.67621255765889, -26.33526066620837], + [-53.67704555238312, -26.3314329538257], + [-53.670965917380876, -26.330580628998128], + [-53.67307675636929, -26.32473592056193], + [-53.669237186841116, -26.325600791241484], + [-53.669906673359904, -26.31979521086905], + [-53.66529348236406, -26.317714014154664], + [-53.6565797235403, -26.297780903150834], + [-53.644247378040724, -26.283501940114924], + [-53.64107086252069, -26.26055513061513], + [-53.64372239401061, -26.253079391159563], + [-53.62932738341641, -26.25885567743268], + [-53.62585980947641, -26.260246818423244], + [-53.62567753333945, -26.26031994185638], + [-53.62512319814215, -26.259967928497467], + [-53.62337079010902, -26.258855086750643], + [-53.621229103767206, -26.257494978655316], + [-53.62065963196295, -26.257133316322093], + [-53.60960190371062, -26.25871181248042], + [-53.60618240677084, -26.25919976834159], + [-53.60442430332276, -26.259450613520997], + [-53.597627685620616, -26.25810225878789], + [-53.58799629856985, -26.25619090902931], + [-53.58696444395651, -26.255986094533323], + [-53.586842351783105, -26.25632345445829], + [-53.584827555669435, -26.261890394147173], + [-53.58085001307213, -26.27287902117772], + [-53.58035426512193, -26.27424847404708], + [-53.5774874577767, -26.274720410194227], + [-53.5704858184893, -26.275872772227626], + [-53.55485858454972, -26.287645137396527], + [-53.55053683000064, -26.293308182674963], + [-53.55037625314052, -26.293518583551847], + [-53.546699292108485, -26.29248431451042], + [-53.54594874396386, -26.292273183389838], + [-53.54385374775224, -26.291683830111282], + [-53.543274592953026, -26.291706754568498], + [-53.52768959807585, -26.29232276984666], + [-53.52445736101226, -26.292450315490857], + [-53.52270655427547, -26.292519372717575], + [-53.497196602788414, -26.302797193458968], + [-53.49427634559819, -26.30163088914079], + [-53.481771189823355, -26.29663556066854], + [-53.47787051723568, -26.29291640971579], + [-53.47604106046472, -26.290619708593372], + [-53.4749849702081, -26.28929383663496], + [-53.47298560892057, -26.29018169604118], + [-53.465430432047114, -26.293536371992882], + [-53.46441777474153, -26.29398597199368], + [-53.4611930329398, -26.29516436494075], + [-53.460454690267525, -26.294695039125312], + [-53.45669754460798, -26.292306695289973], + [-53.450572657546324, -26.28841278438588], + [-53.445355517876365, -26.28509554555095], + [-53.44395213483951, -26.283747956690867], + [-53.44104089911797, -26.280952310964302], + [-53.431779680616906, -26.279281400866985], + [-53.42274578126291, -26.276034046857045], + [-53.40267143502444, -26.260034863303805], + [-53.38529637014454, -26.24618088252759], + [-53.384656448199486, -26.246574592794964], + [-53.38442630982266, -26.24671618351735], + [-53.38394698866384, -26.247011079667494], + [-53.3807373174198, -26.248985711600096], + [-53.38045811353924, -26.249157475175906], + [-53.37954644533398, -26.2478198002076], + [-53.37769341034319, -26.245100752917672], + [-53.37581273058897, -26.24234097510437], + [-53.37557965793535, -26.2419989441744], + [-53.372424834277915, -26.244690213745912], + [-53.36403581841762, -26.251845689170047], + [-53.35864067768611, -26.24989454518885], + [-53.35656936562199, -26.249145385248376], + [-53.35497790622822, -26.25077862713401], + [-53.35088456230586, -26.254979161663943], + [-53.34885703423672, -26.251782746985448], + [-53.345731815766825, -26.246855382738225], + [-53.33632327479382, -26.249452169059037], + [-53.336203146602806, -26.250546482401344], + [-53.33572157221515, -26.254933276294263], + [-53.3272295045627, -26.254555469557406], + [-53.319815688408944, -26.25422521899526], + [-53.314037161908075, -26.257080462280666], + [-53.31082094012751, -26.25941812315519], + [-53.30849566596674, -26.261108113256544], + [-53.30743714928221, -26.26066622053325], + [-53.30528922056334, -26.259769502015008], + [-53.30505087250706, -26.259619492923395], + [-53.283859194488045, -26.24627883110894], + [-53.283291004252014, -26.24592105325854], + [-53.28224097765538, -26.246491515366355], + [-53.28005097320197, -26.24768126728439], + [-53.27878873524066, -26.24836697111691], + [-53.2792554290667, -26.251942188019356], + [-53.27945034344435, -26.253435288966237], + [-53.280230163297176, -26.25940842882474], + [-53.28028656135119, -26.259840386164445], + [-53.27961770147693, -26.25993025359412], + [-53.2753223541991, -26.260507295878124], + [-53.273636028226434, -26.260733802655537], + [-53.265462634306125, -26.272072426860944], + [-53.25975237843531, -26.27999254602608], + [-53.26218809501768, -26.288268716125003], + [-53.255549253314975, -26.289109666679416], + [-53.254958898421144, -26.289184432360482], + [-53.25380422959856, -26.29357442410926], + [-53.25357043057675, -26.29446328072769], + [-53.2523674578373, -26.299036551962477], + [-53.247887355928256, -26.29806669052106], + [-53.2459975274227, -26.297657529008056], + [-53.24356313716965, -26.299469742988684], + [-53.24346956448026, -26.299539398691607], + [-53.24242847113333, -26.300314381346613], + [-53.24116148197166, -26.30125749605934], + [-53.23886927458134, -26.303967468618097], + [-53.23209724988091, -26.311972822980383], + [-53.20170607146212, -26.33135550787148], + [-53.199359043179754, -26.330478211632123], + [-53.19898365234743, -26.330337889279427], + [-53.19758580138616, -26.329815355948732], + [-53.1931177211632, -26.334580291972994], + [-53.188185769164754, -26.339839332213753], + [-53.184455168903035, -26.343816937650008], + [-53.18096971934339, -26.344795852917656], + [-53.17292555764858, -26.34705473772357], + [-53.16926180781849, -26.34808338137942], + [-53.162297129230616, -26.35158897133982], + [-53.16199434356701, -26.351741362845615], + [-53.16079100142368, -26.351148270188986], + [-53.160390057612474, -26.350950652829333], + [-53.15913124744504, -26.350330197870164], + [-53.15783554040596, -26.34888134168833], + [-53.153526496898195, -26.34406261616194], + [-53.14616144470223, -26.345587077940188], + [-53.14579502634206, -26.34566291057992], + [-53.14266701755292, -26.352525429001247], + [-53.14053246054603, -26.357207956761037], + [-53.13537378438191, -26.35908390976971], + [-53.134286406958246, -26.362498487277538], + [-53.13277508385748, -26.367244029793525], + [-53.127834921745176, -26.371429595942303], + [-53.12441429574556, -26.37432746465196], + [-53.10950057158464, -26.376721867692122], + [-53.10901682689552, -26.37789930874301], + [-53.108678229576235, -26.37872344531327], + [-53.10756956928114, -26.38142181425398], + [-53.101848822381996, -26.383569088210976], + [-53.10074645210285, -26.383982826631662], + [-53.09434487872569, -26.38308057114653], + [-53.093740392287515, -26.38429455981911], + [-53.09066638684734, -26.39046767682343], + [-53.087014604855476, -26.38981158692744], + [-53.083255916880326, -26.38913618343229], + [-53.08172457306743, -26.38886098329564], + [-53.080519776454025, -26.388504882522945], + [-53.08049476640259, -26.388499306829235], + [-53.0769562418932, -26.387815385239453], + [-53.073453793480866, -26.38713834087906], + [-53.06532110187358, -26.38556587615455], + [-53.05827144606904, -26.384202403058968], + [-53.05646684343044, -26.383647107977456], + [-53.046801943884155, -26.380672629058147], + [-53.042430435336215, -26.37817551694972], + [-53.040574203189266, -26.377115116460544], + [-53.03421955181069, -26.373484585695124], + [-53.02952292958319, -26.370800978954616], + [-53.02785356444298, -26.369847049677407], + [-53.02287161589046, -26.36692192168165], + [-53.015883964521635, -26.36281859459646], + [-52.99984541244194, -26.353397875546932], + [-52.998972217669476, -26.35288487986504], + [-52.99802592324561, -26.352328927137115], + [-52.99721849834817, -26.35185455147646], + [-52.99460453199204, -26.35031874257298], + [-52.988187290695436, -26.34654797094087], + [-52.987929930118206, -26.34659430562651], + [-52.98668970255425, -26.346817586802203], + [-52.98433327627375, -26.347241788342764], + [-52.981881242492534, -26.348330505331973], + [-52.96833493981728, -26.354344042650272], + [-52.96824239342942, -26.35438511987306], + [-52.95044125926906, -26.36228463642136], + [-52.93759186079048, -26.362108666500863], + [-52.936558126600595, -26.361980868953424], + [-52.929256089966465, -26.36107791685681], + [-52.92578736041712, -26.360648845581], + [-52.925601015825094, -26.360543108516], + [-52.917804160495415, -26.356118554574813], + [-52.91675057005102, -26.355520603441907], + [-52.914829533538466, -26.35639484651832], + [-52.910415634240216, -26.3584034205073], + [-52.908290509545544, -26.35937040087192], + [-52.88759322457248, -26.360121759264523], + [-52.88065010405478, -26.36037313923884], + [-52.87797358574132, -26.36046995421054], + [-52.874676752753196, -26.35991472998331], + [-52.872414892348395, -26.35953375940257], + [-52.87145463274303, -26.358920808421708], + [-52.84798300856251, -26.3439342919355], + [-52.845246329309035, -26.34552586701153], + [-52.84252198411593, -26.34818600245824], + [-52.839739774283764, -26.34723654149912], + [-52.839371961544934, -26.34711101587215], + [-52.83654939120531, -26.34614769927454], + [-52.835612455323776, -26.345670808416966], + [-52.827885857175986, -26.345207904867376], + [-52.81777068267949, -26.344601262464465], + [-52.81440998541851, -26.344399549517647], + [-52.799519321037096, -26.347796737626016], + [-52.79736214151821, -26.348288738148444], + [-52.795797877210155, -26.349312788075096], + [-52.79114824442607, -26.35235648105644], + [-52.79098815114097, -26.35246127423296], + [-52.78095662258961, -26.349514931878048], + [-52.77833559665022, -26.348744972030616], + [-52.77677244842009, -26.348285749071316], + [-52.77538409905455, -26.347877860996658], + [-52.76344424455882, -26.35362225880848], + [-52.759715066220835, -26.353072919942992], + [-52.75672179582369, -26.35263134462658], + [-52.75621199842069, -26.352556131306823], + [-52.7519376707035, -26.34500759055543], + [-52.75169497403466, -26.344578948312837], + [-52.75004533571832, -26.344723731277174], + [-52.74509236952182, -26.345158319981202], + [-52.74195815448425, -26.345433236067304], + [-52.73775326995757, -26.342132126037107], + [-52.72560417981276, -26.34829383928397], + [-52.71884847602657, -26.357322026998276], + [-52.70883300214626, -26.354998577590766], + [-52.70338164679019, -26.357154885448104], + [-52.70294199414377, -26.357407195962395], + [-52.700568901111566, -26.357993025046767], + [-52.692478650897115, -26.353329646315505], + [-52.685761885815225, -26.355554038821875], + [-52.68354914585086, -26.354656343352605], + [-52.679920022314114, -26.35318392302324], + [-52.67857924138367, -26.352639903371852], + [-52.66328883193729, -26.369251540803663], + [-52.6582323039435, -26.37474331019292], + [-52.644910561901355, -26.38085265184023], + [-52.63915125200635, -26.38376132854652], + [-52.63651504952637, -26.3850925904741], + [-52.63507639997526, -26.385819064715914], + [-52.63370097883888, -26.3910516704792], + [-52.62110672773271, -26.39546820388874], + [-52.619095776733566, -26.40140019815168], + [-52.6167132305308, -26.40762635522086], + [-52.611312338442566, -26.411909186979486], + [-52.61023983684914, -26.412344030209148], + [-52.60756588222704, -26.41342813038302], + [-52.602652383705305, -26.415420027701856], + [-52.59416828994288, -26.415543541548278], + [-52.59273559147594, -26.414851555217382], + [-52.58344576304733, -26.410364051061432], + [-52.581147921856875, -26.409253915500834], + [-52.580054565829144, -26.40872567119603], + [-52.57899200764708, -26.40821229363329], + [-52.57483267810616, -26.40890204444208], + [-52.564987185100804, -26.41053423369413], + [-52.55961653995066, -26.407994679547986], + [-52.55946334623881, -26.4079222359273], + [-52.5594156060071, -26.407979706769986], + [-52.556111306081704, -26.411957331583167], + [-52.55598942949912, -26.411900355254154], + [-52.53966393827028, -26.404266838784935], + [-52.53901566157788, -26.40396365521597], + [-52.5380205061627, -26.403700698035127], + [-52.5334998346727, -26.402506064328232], + [-52.52395394343544, -26.399982906599945], + [-52.52375521588298, -26.39993037113713], + [-52.5233909521031, -26.40019274357444], + [-52.52249811682967, -26.400835827508413], + [-52.52103797940684, -26.40188749635434], + [-52.51811526588829, -26.403992490796924], + [-52.51799258961126, -26.40408084170098], + [-52.512199912329805, -26.408252435127626], + [-52.50947831623434, -26.410212210689142], + [-52.50461469558703, -26.41371413485844], + [-52.50249675445811, -26.415238988417965], + [-52.49836063678703, -26.418216666619443], + [-52.495724552744846, -26.420114300002613], + [-52.476699421876454, -26.42140996818158], + [-52.47461725634372, -26.42438256249491], + [-52.46967224068101, -26.43144158590966], + [-52.46563121988204, -26.437209416206287], + [-52.45912269906409, -26.441085454163943], + [-52.44948991859556, -26.440946101641487], + [-52.44255366315439, -26.438096841690445], + [-52.43543986427048, -26.440252501618488], + [-52.43070264698528, -26.43939374199167], + [-52.428042589792796, -26.43891145343063], + [-52.41918578504485, -26.437305257964717], + [-52.41816148354857, -26.43672741895953], + [-52.40454892138476, -26.42904689058947], + [-52.40303650812206, -26.428193404863695], + [-52.40229544328783, -26.426270729739983], + [-52.40128600522582, -26.423651649642423], + [-52.40108711695954, -26.423135599790488], + [-52.40081637460039, -26.42363487084494], + [-52.39999322584658, -26.42515279617236], + [-52.397992678321714, -26.428841723098067], + [-52.376372196521785, -26.440674999905436], + [-52.37609300393938, -26.440827770449477], + [-52.368036166226155, -26.433318818667523], + [-52.367335364231636, -26.432665603163706], + [-52.36637904893901, -26.433246788335413], + [-52.3596428754227, -26.4373402488134], + [-52.35311490437879, -26.44130661964886], + [-52.34749066614994, -26.437787144347716], + [-52.34405229991796, -26.435635300467627], + [-52.34192991326056, -26.434306957011575], + [-52.339917368047665, -26.437472470414146], + [-52.33945319896091, -26.43820253002852], + [-52.33647579544403, -26.44288523737632], + [-52.33194942082271, -26.440253630446648], + [-52.3310202078224, -26.441085583602842], + [-52.328762869653296, -26.443106575052933], + [-52.32703921989448, -26.44230342499715], + [-52.3255768641385, -26.441622001663916], + [-52.323493133033466, -26.440650991519256], + [-52.32139487959427, -26.440656820264152], + [-52.32034453998119, -26.440659726433744], + [-52.30934988342658, -26.440689683991703], + [-52.30732652810843, -26.44069510493603], + [-52.30589296412786, -26.440698928379003], + [-52.3050270646059, -26.440701230843025], + [-52.28867804487382, -26.45717601103654], + [-52.28245929538391, -26.463440914915513], + [-52.272773462387605, -26.461896692996383], + [-52.27164934779939, -26.461045957719474], + [-52.26890685908013, -26.458970337007553], + [-52.26822096249175, -26.458451203705653], + [-52.263373036797525, -26.454781729820905], + [-52.26240577399794, -26.454860503647296], + [-52.26162876837489, -26.454923778134624], + [-52.2545615858371, -26.45549908879569], + [-52.24893946871526, -26.455057657795624], + [-52.242672767220455, -26.462751338066465], + [-52.24202143278475, -26.46355091411435], + [-52.240474709953844, -26.463719737112356], + [-52.23213354749182, -26.46462986932929], + [-52.22260830584289, -26.46566901228966], + [-52.220400037085255, -26.465909827306525], + [-52.21855827947122, -26.465234066025275], + [-52.20938592881685, -26.461868150191957], + [-52.204129255528244, -26.45993878474906], + [-52.20358268159469, -26.459385531927108], + [-52.203298254097874, -26.459097625836588], + [-52.20217094732489, -26.457956511606564], + [-52.19703282622042, -26.452755046944624], + [-52.19107213813424, -26.446720030193333], + [-52.190513313752874, -26.446154190880847], + [-52.18564730303536, -26.44536797402526], + [-52.16390634799621, -26.466075566862543], + [-52.1577616934494, -26.47192625769539], + [-52.14445286826178, -26.473892387221223], + [-52.13459858087967, -26.47063725634286], + [-52.13403121814665, -26.470449814836286], + [-52.13069382304649, -26.475697079609755], + [-52.120731102546365, -26.47793084802857], + [-52.11916337806364, -26.478282281119448], + [-52.112258342682665, -26.476021247162098], + [-52.11112317142308, -26.4765555373782], + [-52.10037106228672, -26.481615540552834], + [-52.09897604823992, -26.483968319810536], + [-52.09875537833128, -26.484340483816023], + [-52.09670644530124, -26.48779592154085], + [-52.097113568146455, -26.49229849924622], + [-52.09730363784212, -26.49440042907289], + [-52.09730941307942, -26.49446429440782], + [-52.0978547570031, -26.500494578487313], + [-52.098055788551015, -26.50271734321027], + [-52.097962558535386, -26.502952784970738], + [-52.097525389974166, -26.50405679124185], + [-52.09519267511417, -26.509947364011754], + [-52.0949482151267, -26.510564639119085], + [-52.09387666860065, -26.513270274684096], + [-52.08981968407088, -26.51050647948298], + [-52.08858203654017, -26.509663289420835], + [-52.08803395185555, -26.509289880291043], + [-52.08393481227502, -26.51838066935441], + [-52.082482879668795, -26.52160030778068], + [-52.08164111901883, -26.52346681352261], + [-52.078471076017976, -26.526734488340193], + [-52.06774761200849, -26.5238257587124], + [-52.06627013440649, -26.523424918784674], + [-52.06524251784684, -26.523146115453226], + [-52.06026253156474, -26.530428131332496], + [-52.05932961276961, -26.53007944419903], + [-52.05612389109129, -26.52888121222895], + [-52.055194744905066, -26.52853389836144], + [-52.05298492379959, -26.530479704618763], + [-52.05157751806338, -26.53171891159162], + [-52.04747744211548, -26.53532876116437], + [-52.04674763476751, -26.535691889225998], + [-52.04310307813063, -26.537505211292203], + [-52.03992642790358, -26.539085608909364], + [-52.03180833405718, -26.54312388426152], + [-52.031627553757325, -26.543213803468127], + [-52.03006591723565, -26.54668115034144], + [-52.02121894973326, -26.548666237694942], + [-52.02029850548579, -26.5541877502512], + [-52.02006306596006, -26.555600015179788], + [-52.0166108111524, -26.557091412476918], + [-52.01536689217571, -26.5576287641898], + [-52.012173420220954, -26.564483931755987], + [-52.011229788027464, -26.5665093864112], + [-52.01016615916285, -26.566427774621644], + [-52.00999655153868, -26.566423952885657], + [-52.00885897798796, -26.56639831492868], + [-52.003302714902865, -26.56627296033815], + [-51.98645035938872, -26.56589142672166], + [-51.98521435196308, -26.565863365140046], + [-51.98513039812581, -26.565945719405534], + [-51.98122489956581, -26.569776624665053], + [-51.979821188276375, -26.569507917196763], + [-51.97309343427284, -26.5682198362158], + [-51.971620430139644, -26.567937771512693], + [-51.9598741645483, -26.574596145514366], + [-51.955017692325086, -26.572533769428315], + [-51.94940056855804, -26.570148067876772], + [-51.94789812408296, -26.569509895437815], + [-51.946906069069435, -26.570286309278433], + [-51.94012958076276, -26.57558934612056], + [-51.92833485617604, -26.58481756605979], + [-51.92433628523643, -26.584137688178238], + [-51.92420573983288, -26.5841154894747], + [-51.90444879075398, -26.580754415156793], + [-51.901196177466225, -26.58020079367215], + [-51.89292717656695, -26.58317985572365], + [-51.88813367217718, -26.58490651704175], + [-51.88434690182052, -26.58627039459126], + [-51.87971020536209, -26.597124938411596], + [-51.87871503751827, -26.597726940203017], + [-51.877778598847, -26.598293403272525], + [-51.87436389770977, -26.600358898817603], + [-51.86996853529273, -26.59940747922071], + [-51.86384716922156, -26.59808219490692], + [-51.86176170638713, -26.597630621712423], + [-51.860699436102756, -26.596804546388423], + [-51.86065262128115, -26.596768140340497], + [-51.85510072891052, -26.592450373350967], + [-51.84919490005697, -26.59379709137562], + [-51.84635611013794, -26.59444432846579], + [-51.843789920895546, -26.595029358583783], + [-51.83686757586388, -26.59065209441849], + [-51.829003949379214, -26.58567879489434], + [-51.82359452942329, -26.58225713172053], + [-51.81954143562045, -26.579611394314544], + [-51.810988972121756, -26.583968550026945], + [-51.8077744480249, -26.585606011843886], + [-51.79158185280305, -26.589080025776386], + [-51.78629455709123, -26.590213937865396], + [-51.76522658710652, -26.58296377533077], + [-51.748423030377296, -26.57717821517281], + [-51.748289071767175, -26.5771603742324], + [-51.734128348836826, -26.57527366930761], + [-51.70461412329805, -26.581211677471096], + [-51.695049719104524, -26.58339371518857], + [-51.66505794219389, -26.566038885082865], + [-51.64616131238517, -26.57581881526224], + [-51.63361795837645, -26.588765206030484], + [-51.61511891177473, -26.59091484953088], + [-51.59795334598729, -26.5861503709823], + [-51.58442596381923, -26.590790066832334], + [-51.573807877421, -26.591788600217452], + [-51.57093970199316, -26.59143211820884], + [-51.53614998825589, -26.592272660894533], + [-51.53605860810826, -26.59227485749381], + [-51.530196849834084, -26.592415639967015], + [-51.52496148140426, -26.58997083591015], + [-51.51778460864684, -26.58661890480496], + [-51.51155431554095, -26.583708614032904], + [-51.49964874409732, -26.585687595900602], + [-51.49513544006852, -26.588955332246407], + [-51.49424816672847, -26.589597700153902], + [-51.49406540021531, -26.59047184190345], + [-51.49088725506044, -26.60567029242809], + [-51.48539834501992, -26.61081497935983], + [-51.48409083887801, -26.61204038993353], + [-51.48492374329825, -26.614728815007787], + [-51.485471460113985, -26.616496645932163], + [-51.48753074159979, -26.6231427348838], + [-51.475357139003115, -26.6194221083553], + [-51.46880742323214, -26.62117205315487], + [-51.464424853787975, -26.6272024483162], + [-51.45473332660732, -26.640610906927318], + [-51.455778553608305, -26.6540432668355], + [-51.43954871994899, -26.66716915839865], + [-51.435338947244375, -26.68808168318177], + [-51.412631557734066, -26.698146510908874], + [-51.410292834547825, -26.69918282115966], + [-51.4071413732418, -26.700579172962435], + [-51.41151843222564, -26.7172418363654], + [-51.41142711328609, -26.717196402189607], + [-51.406649443928536, -26.714819221107103], + [-51.398715162678634, -26.710870855070542], + [-51.39335235997654, -26.698935889707826], + [-51.39302878702669, -26.69821568709519], + [-51.39290385001538, -26.685472162246732], + [-51.39374757214099, -26.68486471853383], + [-51.39879445298982, -26.681230942453556], + [-51.405585332577445, -26.67634083483325], + [-51.40589439197217, -26.67611826377857], + [-51.39692041913097, -26.668609637778015], + [-51.396373446958485, -26.66815192911113], + [-51.39281505439404, -26.665174108480485], + [-51.391237426520846, -26.663853800550505], + [-51.38862068089992, -26.662657426740907], + [-51.381532441952054, -26.65941631980587], + [-51.378484667068236, -26.65924486895982], + [-51.375749611304286, -26.65909095382384], + [-51.365887027433814, -26.658535496476826], + [-51.36510559678735, -26.65849145705478], + [-51.36067425380272, -26.65613344363115], + [-51.35693928429647, -26.654145801447775], + [-51.35399397205627, -26.6525782731208], + [-51.35335208097009, -26.65223663755903], + [-51.35322520225101, -26.652169107940146], + [-51.34740863790178, -26.64906897051012], + [-51.34600419986303, -26.649178514555633], + [-51.344070789128224, -26.649329294650666], + [-51.34216909483432, -26.64947757527123], + [-51.34106619612797, -26.649563559661196], + [-51.3396608941817, -26.649673107493406], + [-51.33887112517399, -26.649734666357585], + [-51.336737956081706, -26.649900914840583], + [-51.336546072583104, -26.64991586768497], + [-51.33290482881644, -26.647825012730284], + [-51.331896528940035, -26.647246002105426], + [-51.33189247534121, -26.64724367432228], + [-51.33188235080015, -26.647248904350004], + [-51.32667604061689, -26.64993816627605], + [-51.325959742086596, -26.65166184922809], + [-51.32512444107606, -26.653670046977293], + [-51.323790591244965, -26.656876681325674], + [-51.320383219364025, -26.655545047250296], + [-51.31956323017186, -26.65522457058905], + [-51.31942709716875, -26.655171365045167], + [-51.3181566146488, -26.654674807277555], + [-51.314111006553986, -26.65309350932851], + [-51.31108807253226, -26.65191183752501], + [-51.30578816062666, -26.65504950092033], + [-51.30345892950827, -26.65493504572168], + [-51.30124935769958, -26.654826434905953], + [-51.298994813729685, -26.65471557786099], + [-51.292584137447825, -26.654400165038673], + [-51.28425844105659, -26.653990096553557], + [-51.28374544043246, -26.653964813496785], + [-51.283410797076634, -26.65394831971135], + [-51.282910963822566, -26.65295897742756], + [-51.282338774454274, -26.651826393942574], + [-51.281833114353255, -26.650825476650216], + [-51.28271542101816, -26.642544611369235], + [-51.27474141738931, -26.642023212265595], + [-51.27480770626739, -26.641887932731297], + [-51.2762349684572, -26.63897515197835], + [-51.27641733157575, -26.63860297060938], + [-51.27757064352998, -26.636249137416907], + [-51.2773530710976, -26.63628699998864], + [-51.26805584425102, -26.63790459576141], + [-51.26743319902054, -26.638012904559453], + [-51.26687759064047, -26.63724088348564], + [-51.26596877037836, -26.635978045008706], + [-51.263096109732146, -26.631986155654108], + [-51.26106437419654, -26.629162622160536], + [-51.25993901300772, -26.627598617518796], + [-51.258696834074655, -26.625872201275325], + [-51.25863411671226, -26.62578503318246], + [-51.25849868672467, -26.625803011693453], + [-51.25720380825027, -26.6259749017447], + [-51.244727601080506, -26.62763043966501], + [-51.24179196874955, -26.628019819345894], + [-51.239356777066874, -26.628342773078472], + [-51.23933658205994, -26.628221209140808], + [-51.2392522780566, -26.62771373789908], + [-51.237822184100054, -26.619104517837634], + [-51.23433765321402, -26.616009523289577], + [-51.233341018298866, -26.615124255550516], + [-51.232993982839226, -26.614815994055736], + [-51.229864667492315, -26.61626493689434], + [-51.2323650025062, -26.612560425252013], + [-51.23753627883368, -26.60489773382311], + [-51.237822388038, -26.604473747766743], + [-51.229874319605486, -26.598002295017515], + [-51.22718143018455, -26.595809430215816], + [-51.224112760631016, -26.593310395821817], + [-51.22438650662638, -26.592637073574387], + [-51.225806333447366, -26.58914464693134], + [-51.22728524503641, -26.585506646420512], + [-51.224857157952606, -26.577114374160164], + [-51.22463270891014, -26.576338538749656], + [-51.22383915189322, -26.5757662306348], + [-51.22106126381813, -26.57376275565493], + [-51.21945050671624, -26.572600984393727], + [-51.215958817185914, -26.570082431554837], + [-51.22006573856958, -26.5675124378078], + [-51.22870934147173, -26.56210275699575], + [-51.22917899599721, -26.55945989636687], + [-51.229929589975725, -26.555235869746856], + [-51.22451082180242, -26.551289975481474], + [-51.22397718906176, -26.55090136333065], + [-51.2237717999157, -26.550751789711576], + [-51.228511815646954, -26.549172372372496], + [-51.23242883570721, -26.547867033324007], + [-51.239107922183635, -26.545640924976496], + [-51.24060203368686, -26.545142890023723], + [-51.24027068524056, -26.543370610956718], + [-51.239665690659265, -26.540134537508333], + [-51.23960374186171, -26.539803167034613], + [-51.24027105207174, -26.539699518998003], + [-51.24522192582345, -26.538930435503975], + [-51.247049601169756, -26.538646472960725], + [-51.24740216805585, -26.537204146530755], + [-51.251405856257385, -26.520822773685506], + [-51.256978218113154, -26.520239094677287], + [-51.264886909331864, -26.51370392267045], + [-51.26595887432805, -26.512818037444163], + [-51.26489147125001, -26.510850973274472], + [-51.263054398834086, -26.50746534512518], + [-51.26312751246013, -26.50744797917532], + [-51.27146929846881, -26.505466358034596], + [-51.272288337070876, -26.505271762556802], + [-51.271694894511704, -26.50430731021602], + [-51.270525735528764, -26.502407158538585], + [-51.269030199973834, -26.499976463289084], + [-51.26993746571705, -26.49947019499166], + [-51.273831435868374, -26.497297183688577], + [-51.274282605537564, -26.497045398482086], + [-51.2682023868612, -26.49018095390001], + [-51.26809196597454, -26.490196092181918], + [-51.263818031881016, -26.49078196360588], + [-51.26129901537974, -26.491127208042116], + [-51.26124531975681, -26.49113456680325], + [-51.26125927363294, -26.49111161010743], + [-51.264613611539275, -26.485592802864453], + [-51.2660533849036, -26.483223794674824], + [-51.26658275120163, -26.482352745479467], + [-51.26587881097009, -26.481990194596026], + [-51.26499352981636, -26.481534239344754], + [-51.25629740623141, -26.47705490108995], + [-51.25426841882088, -26.476009650837135], + [-51.250944155490316, -26.47429702423936], + [-51.25542800234145, -26.472622034839492], + [-51.25979941571422, -26.470988864102516], + [-51.2605699731087, -26.470700963337713], + [-51.25964427760007, -26.46968531257824], + [-51.25963268885818, -26.46967259753756], + [-51.25397406202693, -26.46346356248881], + [-51.267794744939664, -26.460911638142814], + [-51.27153089698046, -26.45712720302053], + [-51.27284892304452, -26.457367227171332], + [-51.27818033449661, -26.45833798960665], + [-51.27876735119172, -26.458444862518437], + [-51.28034900226496, -26.45417990241341], + [-51.27455424276823, -26.445910597292308], + [-51.287786369355125, -26.43910528540443], + [-51.28866458900238, -26.438653543518484], + [-51.291687709848496, -26.437098431256718], + [-51.29184168666568, -26.436524252620263], + [-51.29335257893044, -26.43088983730674], + [-51.294485557068725, -26.426664372734674], + [-51.29729142632707, -26.42260989875099], + [-51.29793948235673, -26.4214171421048], + [-51.299193869383146, -26.41910834654333], + [-51.29470307671336, -26.417348597644672], + [-51.292252956729854, -26.416291452710574], + [-51.287835472703755, -26.41438530017142], + [-51.28763286500356, -26.414297869768436], + [-51.28766479025482, -26.414229914041915], + [-51.29178644307491, -26.405455885185724], + [-51.29218129020758, -26.4046152729894], + [-51.29236579730318, -26.40422246096025], + [-51.2921832754276, -26.40398135969912], + [-51.28920429977071, -26.400046121193135], + [-51.28265529170077, -26.40096544308612], + [-51.27595647767716, -26.401905469241758], + [-51.275952142180024, -26.401906077523762], + [-51.27595270790696, -26.40190327244599], + [-51.2772670263791, -26.395386042295087], + [-51.27799966636819, -26.391752827830572], + [-51.27826650515527, -26.390429498591065], + [-51.27784658006634, -26.390226308931123], + [-51.275008697499125, -26.388853087974788], + [-51.27337140321317, -26.388060778170203], + [-51.270685620000904, -26.387283120519825], + [-51.27000036813488, -26.387084698842134], + [-51.26879575111111, -26.386056240901013], + [-51.26357891034473, -26.381601962318886], + [-51.260949071462505, -26.379356331579057], + [-51.2602959572687, -26.37930388577355], + [-51.258206998388104, -26.37913611968179], + [-51.25618283037873, -26.3780965174636], + [-51.25269823114597, -26.3763067339275], + [-51.252876766697014, -26.376157640440468], + [-51.25551507562762, -26.373954341012677], + [-51.255696844044046, -26.37372665777503], + [-51.25740970178591, -26.37158107590465], + [-51.259390055926715, -26.369100294994567], + [-51.25956636932499, -26.36673941818419], + [-51.259958000290176, -26.361495064174907], + [-51.26015181993775, -26.358899447413606], + [-51.25407631515744, -26.35032027331607], + [-51.25172310503432, -26.34868576858239], + [-51.25136819523972, -26.348439246113923], + [-51.255762428594466, -26.345792330795025], + [-51.25626388416215, -26.341889387377876], + [-51.25644734329988, -26.340461418861214], + [-51.255593996984686, -26.33911151652068], + [-51.25307666632133, -26.335129154130634], + [-51.25164516656217, -26.332864409212032], + [-51.25023314060088, -26.332240999982773], + [-51.245411464436884, -26.330112074657542], + [-51.24502988244634, -26.3292257458129], + [-51.243069760321575, -26.324672591566333], + [-51.22671355664076, -26.32250660771886], + [-51.222096446891975, -26.316412241792694], + [-51.22093611716512, -26.316249632192417], + [-51.21813587118193, -26.31585716272822], + [-51.21701854951804, -26.315700548093446], + [-51.2119566461681, -26.305653578032484], + [-51.21178412761948, -26.305311125455265], + [-51.21122128096212, -26.304193848533327], + [-51.21085835880513, -26.303473418363303], + [-51.20887934660166, -26.29954474171264], + [-51.207468511086354, -26.296743811541397], + [-51.207411349847106, -26.2966303262193], + [-51.20714603881122, -26.296750770405577], + [-51.20419359286504, -26.298091052799094], + [-51.203202899328815, -26.298540764172493], + [-51.19797551260209, -26.300441415635014], + [-51.195813222065595, -26.30122753978304], + [-51.19414286054663, -26.30183478824223], + [-51.19382084723257, -26.301951851008194], + [-51.19344342394473, -26.30186430730304], + [-51.18106554988298, -26.298992622507328], + [-51.16984587022649, -26.29155664136095], + [-51.163818396264645, -26.291481020733283], + [-51.16385203945179, -26.28347276034833], + [-51.15637726320911, -26.28038297094373], + [-51.15505735456857, -26.280219739696392], + [-51.15274033600484, -26.279933166778747], + [-51.15202929906533, -26.279845216694305], + [-51.14970872153926, -26.279558152724775], + [-51.143958770710576, -26.2857563292772], + [-51.139209922730025, -26.286010676225768], + [-51.13804112661024, -26.286073252353205], + [-51.13665527232571, -26.279622347198533], + [-51.135462894585864, -26.279613526558432], + [-51.135174199740455, -26.279611389442483], + [-51.13297676177539, -26.279595103477085], + [-51.13065902259023, -26.279577889460363], + [-51.12226906828617, -26.27951526368981], + [-51.11984226060679, -26.278458828368077], + [-51.11730210894495, -26.277352987558736], + [-51.11591307079528, -26.276748249584337], + [-51.110163898898804, -26.274245053468434], + [-51.1079318836478, -26.27327314008561], + [-51.10665295025534, -26.27418161062195], + [-51.105759031071, -26.274816577073793], + [-51.105009268079, -26.275349137212082], + [-51.10495632119657, -26.27538674529612], + [-51.104305438388295, -26.273553718216963], + [-51.10398479998506, -26.27265070841823], + [-51.10205570224269, -26.266234490235863], + [-51.101949910321885, -26.265882602711727], + [-51.10187406485904, -26.2656303224132], + [-51.100487195373816, -26.264490705847876], + [-51.09814476365347, -26.26256580442534], + [-51.09593423735647, -26.260749202831185], + [-51.093739516238884, -26.258945499658186], + [-51.09417802881608, -26.25383665819484], + [-51.09451381154547, -26.249924359628857], + [-51.08877257764435, -26.24767088129054], + [-51.08837744559515, -26.247515777255842], + [-51.08583345260363, -26.233186663472654], + [-51.08534822694558, -26.230453205075726], + [-51.08343773678437, -26.229648780253807], + [-51.08001972596731, -26.228209512356948], + [-51.07887290411751, -26.229511787074735], + [-51.072216497555864, -26.237069719582703], + [-51.070096321549414, -26.23947677544577], + [-51.06796300939605, -26.24056148451581], + [-51.06287400741393, -26.243148841148695], + [-51.05870301132168, -26.24411970518268], + [-51.055184086282665, -26.244938682799624], + [-51.03737558616746, -26.240270172914066], + [-51.01653857686922, -26.234804456785668], + [-51.00936794234655, -26.232858765141202], + [-51.001983954665214, -26.230854739741293], + [-51.000462029771754, -26.23044163126578], + [-50.99143846270158, -26.234875963744226], + [-50.9838253952669, -26.239910412750586], + [-50.973502534686894, -26.246735479201703], + [-50.973175879697784, -26.246951425304115], + [-50.973024361280366, -26.24779835163437], + [-50.97167044691412, -26.25536562415481], + [-50.970104007712976, -26.26411948358012], + [-50.95326087553277, -26.269580979461466], + [-50.9446817075873, -26.282466806018967], + [-50.93822609890874, -26.27955878755284], + [-50.937705635106745, -26.279324318415433], + [-50.937087739653364, -26.27816786751757], + [-50.93205727137495, -26.268751904505173], + [-50.93181370240471, -26.26829595212475], + [-50.932173146962896, -26.26751009354346], + [-50.94027754877372, -26.24978824950492], + [-50.94451143459329, -26.240527694048254], + [-50.94258991124305, -26.235207568599012], + [-50.942537122555805, -26.235061405224872], + [-50.94240143663429, -26.2350327611042], + [-50.93687286491319, -26.233865525163434], + [-50.935421666220776, -26.23355909746215], + [-50.9335307968741, -26.234803987930995], + [-50.909448166159216, -26.25065473429017], + [-50.90809817035022, -26.251543028651064], + [-50.90815061309191, -26.253116109895746], + [-50.909063057739914, -26.28047944077496], + [-50.90920840751285, -26.284837202116798], + [-50.901963263471224, -26.289434399702184], + [-50.89978359282256, -26.28917996426721], + [-50.89357097091355, -26.28793476226692], + [-50.8820216377746, -26.278024830600916], + [-50.879948637548814, -26.264110147115613], + [-50.87918099973662, -26.258956656624115], + [-50.8716794529617, -26.243375584519967], + [-50.871094101111666, -26.242159588917357], + [-50.868654679825184, -26.241620449290412], + [-50.86784516480166, -26.2417494513267], + [-50.865096852624525, -26.24218737842928], + [-50.86312355653246, -26.24250177686854], + [-50.85710934048096, -26.25155283181719], + [-50.85637619450302, -26.252656060656136], + [-50.84665534229316, -26.26728152636591], + [-50.83935806133335, -26.271497409611268], + [-50.83214913623148, -26.266801131681596], + [-50.830362577057, -26.259146961148673], + [-50.82778889346944, -26.248118712915858], + [-50.827600983455106, -26.247313434536412], + [-50.826032183120404, -26.246409912608186], + [-50.82264836132849, -26.2444609561903], + [-50.81175943781378, -26.23818835536683], + [-50.802468792290895, -26.232299451470762], + [-50.80159382916329, -26.231860699550122], + [-50.79328693809463, -26.227694684467913], + [-50.75842761299754, -26.22167289652239], + [-50.75664646002258, -26.22286524212136], + [-50.74705996746863, -26.22928186181421], + [-50.74643301879055, -26.229701456221523], + [-50.746489679694136, -26.23108764231011], + [-50.74704031283684, -26.244557120495408], + [-50.74669413395643, -26.244945946316392], + [-50.743514677333955, -26.248516928859477], + [-50.73229167798154, -26.249730309290467], + [-50.71848935647107, -26.244739010978808], + [-50.71517826772585, -26.238513076754824], + [-50.722007697330326, -26.224070269274453], + [-50.730996310641984, -26.205055197915147], + [-50.731792612047926, -26.203370321282282], + [-50.7047587747479, -26.188707861620735], + [-50.69766932162852, -26.181929340760536], + [-50.6974844557151, -26.181752567623956], + [-50.697417869117544, -26.181638331760258], + [-50.687355823036704, -26.164372996590462], + [-50.68589588710204, -26.161708184739716], + [-50.67838352159845, -26.147993771168906], + [-50.677186442582794, -26.145808078367494], + [-50.67275446120403, -26.143314684355925], + [-50.65258099873172, -26.13325791046903], + [-50.64751748358589, -26.125564284398997], + [-50.647075445079786, -26.124892584454823], + [-50.64802718029911, -26.122847074996074], + [-50.64863147457895, -26.121548259127376], + [-50.65720851932041, -26.103110085710483], + [-50.65726203029185, -26.102995032357768], + [-50.65716401333241, -26.1028935752333], + [-50.64941733227288, -26.094874241101568], + [-50.645444052674925, -26.0907605330855], + [-50.64288313334827, -26.08391094906253], + [-50.64252108729425, -26.082942532276768], + [-50.64099452235697, -26.07885902553736], + [-50.63554301469586, -26.071991674608157], + [-50.628468193833406, -26.063077913675023], + [-50.59985805007787, -26.069839873980698], + [-50.59563042022082, -26.070838518430413], + [-50.59460986273479, -26.071079571826257], + [-50.58776171385643, -26.069878720423528], + [-50.58663133919872, -26.0696804709929], + [-50.58225529996932, -26.06891314078026], + [-50.575485485258795, -26.06772578604801], + [-50.57123979077622, -26.06698096175714], + [-50.56627553354695, -26.06493242090627], + [-50.5646070715316, -26.06424386241144], + [-50.55841800380854, -26.06168945468049], + [-50.55164664561831, -26.053721122172036], + [-50.55100595104623, -26.04464294284986], + [-50.55416990886082, -26.04268062593518], + [-50.55538342925303, -26.041927952844638], + [-50.557910708771374, -26.041871752410696], + [-50.56306887700804, -26.04175691010462], + [-50.56734750346073, -26.04166151009225], + [-50.57119718549678, -26.043591436936925], + [-50.5811495717265, -26.04858002222476], + [-50.58184843116964, -26.04893028042445], + [-50.582298876445925, -26.04864997081108], + [-50.59156149287979, -26.04288528192948], + [-50.5921395401985, -26.04252548916781], + [-50.59226877852883, -26.04029359156328], + [-50.59310968496903, -26.0257691084853], + [-50.59314606858062, -26.025140584045722], + [-50.59168188420361, -26.02210278279463], + [-50.590636849266446, -26.021068627494312], + [-50.586558879242745, -26.017032867594434], + [-50.58130119316446, -26.011829027616383], + [-50.57369586005557, -26.004300438005792], + [-50.57280651680767, -26.003419980423452], + [-50.5724368291314, -26.003540220080886], + [-50.56339787822741, -26.006479735562255], + [-50.56158150155873, -26.009681557174225], + [-50.55703013163771, -26.01770361107223], + [-50.55601707917229, -26.019489003218776], + [-50.5555085165531, -26.02038526462693], + [-50.55531328057443, -26.021253068910585], + [-50.55508156410345, -26.022283007661326], + [-50.55249296096104, -26.03378758830084], + [-50.55161423057367, -26.037692403566375], + [-50.55154304732265, -26.038008708594937], + [-50.55138795256229, -26.03869787080645], + [-50.5513582651901, -26.038709268692227], + [-50.54763354176046, -26.040139237013683], + [-50.547598182699666, -26.040152811172224], + [-50.547543008732454, -26.040136562705673], + [-50.543653963442594, -26.038991193487785], + [-50.5345675539609, -26.036314646551265], + [-50.52872627834013, -26.03459364075885], + [-50.52189232764217, -26.03092323366482], + [-50.5170386478627, -26.028147388335938], + [-50.51520846436479, -26.027100620703106], + [-50.51355713411958, -26.02615611193162], + [-50.512951647132525, -26.02655579113035], + [-50.50951902008696, -26.028821552169962], + [-50.50465813142787, -26.03202976833629], + [-50.50381215756869, -26.029464581573666], + [-50.50179258209555, -26.023340303949578], + [-50.50166260624715, -26.02294613537666], + [-50.501370122246, -26.0231055485045], + [-50.4940437656464, -26.027098309635985], + [-50.49367543108881, -26.026965360435486], + [-50.49016675242779, -26.025698852050883], + [-50.48991324225623, -26.0257230141836], + [-50.48000990985458, -26.02666654742955], + [-50.48162900264272, -26.03024566762015], + [-50.48172764923521, -26.030463725459615], + [-50.482087488648496, -26.031259141531354], + [-50.48201866043679, -26.031295780502155], + [-50.47607196569419, -26.034461142100916], + [-50.476437865716555, -26.031244971908766], + [-50.47700089424875, -26.026295715454303], + [-50.47724204059338, -26.024175798862778], + [-50.476810716402255, -26.023958994374304], + [-50.47194768720071, -26.02151445613568], + [-50.471517728553465, -26.021298312654558], + [-50.47136001569529, -26.021627545759557], + [-50.46980611825283, -26.024871270167047], + [-50.46854132218089, -26.02751135408681], + [-50.46463204918514, -26.02730129928587], + [-50.460527563813116, -26.02708064074839], + [-50.45971469378351, -26.027036926663506], + [-50.45968152903322, -26.027621305421835], + [-50.45960690501979, -26.028936191238284], + [-50.459139015452, -26.037179684100224], + [-50.4570148813271, -26.034807065746573], + [-50.4545630523492, -26.0320682619568], + [-50.45440075147017, -26.031886958625883], + [-50.45407704662979, -26.031972556832578], + [-50.44571582252744, -26.034183243398108], + [-50.44513678983167, -26.034336317074082], + [-50.44498198497248, -26.03447747651233], + [-50.44251717106989, -26.03672495800071], + [-50.44200202450352, -26.037194665632946], + [-50.44261505519605, -26.03740250475454], + [-50.44435749939925, -26.03799323693764], + [-50.449241873183034, -26.039649018892217], + [-50.449640166905034, -26.03978402947728], + [-50.4496827653804, -26.040114671060277], + [-50.450174773860866, -26.043933424966518], + [-50.442831976558196, -26.049278499952457], + [-50.440127892578886, -26.051246676366823], + [-50.43983660941981, -26.051458680724455], + [-50.434705335940045, -26.061000289358997], + [-50.42020183820328, -26.06163787604744], + [-50.418269035781634, -26.061722733123435], + [-50.417388441416485, -26.06234145617072], + [-50.41219963405546, -26.0659869703182], + [-50.407529297488495, -26.06573318148265], + [-50.40731092283356, -26.065721311155144], + [-50.40737062490879, -26.065425675296286], + [-50.4075754043527, -26.064411625568173], + [-50.40855588078815, -26.059556131768634], + [-50.403527765433246, -26.057743525734303], + [-50.403404178270236, -26.057698970395077], + [-50.39958241852772, -26.06341408810336], + [-50.39735383840105, -26.06474451474344], + [-50.38216989329371, -26.07380734747408], + [-50.37440294926583, -26.07844202613316], + [-50.37212928893524, -26.079798610938873], + [-50.37114794113596, -26.08038411340022], + [-50.361468575985086, -26.094671749966086], + [-50.364363534078095, -26.10633684290466], + [-50.37020419828221, -26.110477368536355], + [-50.36656437230598, -26.112697591342634], + [-50.36641306611659, -26.112789881305197], + [-50.365844734323346, -26.112542523415335], + [-50.36368287302629, -26.11160157589438], + [-50.3613029338498, -26.11056565564357], + [-50.36108208379099, -26.110469522954585], + [-50.35974031645148, -26.117292370037703], + [-50.35641115316714, -26.11823772445809], + [-50.35290242348408, -26.119233968423295], + [-50.35276027224366, -26.119274327672123], + [-50.346424233910945, -26.12531436130772], + [-50.34155259830941, -26.129957781526397], + [-50.340874273759134, -26.13060428642302], + [-50.33250774120869, -26.134532327587394], + [-50.33078425066778, -26.132042478209495], + [-50.328771304338396, -26.129134307372595], + [-50.32872537118581, -26.129067944229345], + [-50.328663450560725, -26.129138245998245], + [-50.32754953850055, -26.130402910067534], + [-50.32359108845113, -26.13489678276131], + [-50.3222385287413, -26.12652291615537], + [-50.32214350457034, -26.125934567286283], + [-50.33398210305631, -26.125704791197666], + [-50.33320768539953, -26.122750764135468], + [-50.333170595798066, -26.122609281642948], + [-50.333092490892945, -26.122621357646047], + [-50.33158445728612, -26.1228545098359], + [-50.3255737238329, -26.123783643220758], + [-50.325308493674584, -26.12382463610525], + [-50.32539419677609, -26.1232507149722], + [-50.32567934518383, -26.121341139972227], + [-50.32619925119885, -26.11785927025236], + [-50.32656236315575, -26.115427333645915], + [-50.32659057136733, -26.1152384049626], + [-50.3324524159767, -26.108237916316344], + [-50.32989178828973, -26.09880965028609], + [-50.32986212552568, -26.098700422798217], + [-50.3257329655393, -26.098581374664555], + [-50.32562870458847, -26.09857836717675], + [-50.3256737733722, -26.098473782679203], + [-50.32777262533873, -26.093603055685364], + [-50.33202724989926, -26.08372812694226], + [-50.33205573954574, -26.08366199660603], + [-50.33191944051066, -26.08362285676415], + [-50.326440602778945, -26.08204941770303], + [-50.32217624040317, -26.080824585294938], + [-50.32197622693851, -26.080205966803224], + [-50.318221147422214, -26.068590721185704], + [-50.318199834586366, -26.068524789523515], + [-50.317972061134526, -26.068369660278222], + [-50.31642127947524, -26.067313452010534], + [-50.30750070212845, -26.061237128211726], + [-50.305578649041315, -26.059927753069], + [-50.30042189296553, -26.05641450804277], + [-50.29884065403188, -26.05533714794003], + [-50.29648230610771, -26.054951496943534], + [-50.27703586430931, -26.051769940782666], + [-50.276855178526475, -26.051740366451142], + [-50.27671301606357, -26.05158736992972], + [-50.2695356963575, -26.043862383704035], + [-50.269022643413635, -26.043310130341407], + [-50.26829520180053, -26.04252709583547], + [-50.2668824416514, -26.043286472575563], + [-50.26236087091143, -26.045716714013285], + [-50.252003970085376, -26.05128238823773], + [-50.253814948338345, -26.043332086919584], + [-50.255106741216636, -26.037660325400964], + [-50.255114512214845, -26.03762620416138], + [-50.25460048986109, -26.036564845318697], + [-50.251932932623156, -26.0310565159746], + [-50.25151199000239, -26.030187246945715], + [-50.24983192984041, -26.030842407151844], + [-50.24542160448993, -26.032562138965023], + [-50.240321022222126, -26.03455079177469], + [-50.23688004012782, -26.03589224618548], + [-50.235924609607665, -26.036264697136208], + [-50.23406942278649, -26.04710993938147], + [-50.22780260738836, -26.05566874669198], + [-50.225545435255, -26.058751063134046], + [-50.22409898205255, -26.060726183413227], + [-50.22069113998689, -26.058302028557303], + [-50.21914991685248, -26.0572056270268], + [-50.21871346046343, -26.056895132288574], + [-50.218384565212816, -26.05690374508743], + [-50.21077891895776, -26.057102705097478], + [-50.2098434240273, -26.05712714945347], + [-50.209745882923016, -26.057360483439194], + [-50.20865839758021, -26.059961853033162], + [-50.20801923518535, -26.0614907310542], + [-50.20734093064756, -26.061675387037432], + [-50.202002101206354, -26.06312865296698], + [-50.194210820752126, -26.06524907065906], + [-50.194175946711496, -26.065432539727908], + [-50.193003395737655, -26.071600854547192], + [-50.18384380705405, -26.078003384357352], + [-50.182602378322855, -26.078871039747458], + [-50.181261444131046, -26.07980821429641], + [-50.18112246483871, -26.079509645456486], + [-50.175673199636606, -26.06780173845732], + [-50.17465593734167, -26.06561584714465], + [-50.17416608693442, -26.064563226843624], + [-50.17405547518129, -26.06459420118832], + [-50.17123394068369, -26.06538427427718], + [-50.17076363884064, -26.06482146552135], + [-50.168586336003635, -26.06221580528274], + [-50.166085892046446, -26.05922324996167], + [-50.157208093778046, -26.04859666201471], + [-50.15586460411257, -26.042013506509708], + [-50.163295519597526, -26.036894323337272], + [-50.163622794241675, -26.036668843332173], + [-50.16454654813199, -26.042489050019093], + [-50.1646487061851, -26.043132674817812], + [-50.17151923352791, -26.042543982844776], + [-50.17649266257453, -26.034067413025127], + [-50.18251819705284, -26.034396855755524], + [-50.17974785796685, -26.028714496884174], + [-50.17185167857476, -26.025121215952186], + [-50.169972916201395, -26.0255749708426], + [-50.16417237765893, -26.026975727671793], + [-50.1635544954901, -26.026791324850198], + [-50.15879991825421, -26.025372245958717], + [-50.155081443918, -26.02426227647041], + [-50.15148471407829, -26.023188537714535], + [-50.15049487280342, -26.023645130234684], + [-50.14199550730304, -26.02756527435696], + [-50.15246521050359, -26.051240450731406], + [-50.14880864381827, -26.06021074001706], + [-50.148394729164245, -26.05927425677245], + [-50.14432334665118, -26.05006190904714], + [-50.13473480115299, -26.043443424820733], + [-50.1343250617351, -26.044068735378566], + [-50.121057720591374, -26.064311901105853], + [-50.12067759217857, -26.062528359456998], + [-50.118381651417856, -26.05175484008766], + [-50.116964291233934, -26.052142720989252], + [-50.11167195209312, -26.053590898475754], + [-50.11037709036533, -26.059252467357847], + [-50.10895766135737, -26.058270538214014], + [-50.1054901650669, -26.055871676030062], + [-50.10058212266486, -26.05002866740085], + [-50.09939484382273, -26.05010842104058], + [-50.097145299909094, -26.048126804891133], + [-50.09397106924001, -26.0453304644952], + [-50.09205097283722, -26.043638857508014], + [-50.08886869042717, -26.028243150846965], + [-50.08480731513179, -26.023502410167595], + [-50.082073827554645, -26.024333849449416], + [-50.08122898993567, -26.024590809000227], + [-50.08189705063568, -26.041823900779946], + [-50.07743571404104, -26.04722351863037], + [-50.077249512979094, -26.046716862113186], + [-50.072932149868784, -26.03496799979093], + [-50.06839914174322, -26.03406049684461], + [-50.06491127478838, -26.033362124207724], + [-50.05671648807217, -26.036717206350005], + [-50.05662523249979, -26.03666313838178], + [-50.05176491783812, -26.033783299837637], + [-50.04874686472664, -26.03199488865686], + [-50.04019557017529, -26.02692700877113], + [-50.03213627526457, -26.027646349761476], + [-50.031388734204405, -26.02818139788628], + [-50.017173781976524, -26.03835396935559], + [-50.006646665671155, -26.04588535556217], + [-50.00322428494781, -26.03886290059982], + [-50.004797830217576, -26.036521437015434], + [-50.00775797664384, -26.032116376376813], + [-50.00943751433642, -26.02961683867651], + [-50.01153728437533, -26.026491715681825], + [-50.01153499618935, -26.01580534841119], + [-50.01153476274392, -26.014723894313715], + [-50.01153465294165, -26.014215780086076], + [-50.011534598328154, -26.013963185539673], + [-50.011473295324144, -26.01394875597999], + [-50.01002389443699, -26.01360758607068], + [-50.008260659035116, -26.013192521541743], + [-49.99875422169343, -26.015742431337422], + [-49.998508639180464, -26.015808294043097], + [-49.99384115872416, -26.011840627965636], + [-49.99354112323791, -26.01158556396486], + [-49.98384188411176, -26.014288311912264], + [-49.98127988376976, -26.014241345806], + [-49.977893847534354, -26.014179203946874], + [-49.9757976270019, -26.01414069352839], + [-49.96925372842287, -26.017668176652453], + [-49.96624088985839, -26.02223636293768], + [-49.96446935549834, -26.024922232078403], + [-49.96339759572375, -26.02654708217867], + [-49.963655814426915, -26.02779110553921], + [-49.96393541450061, -26.029138110567484], + [-49.966308647610234, -26.040570273367386], + [-49.96767866003753, -26.0421117943094], + [-49.96925568500635, -26.0438861784791], + [-49.97760027086096, -26.053273907407263], + [-49.972773627237295, -26.058292872991114], + [-49.95817358195482, -26.04217507710266], + [-49.94799391396364, -26.030933765513268], + [-49.94839138194519, -26.030582587459946], + [-49.955756495710915, -26.02407463758901], + [-49.95950844800613, -26.020758911576596], + [-49.96019038225315, -26.020156232109294], + [-49.953498071407154, -26.018609407773795], + [-49.952847210161856, -26.018042928336605], + [-49.94235422344596, -26.008909183600288], + [-49.94182737368329, -26.008450524586845], + [-49.93504064080139, -26.017668903012], + [-49.934367868665106, -26.01858262598483], + [-49.934254029701286, -26.0187372341766], + [-49.934352326498846, -26.018840432487025], + [-49.93530892309304, -26.019844716550043], + [-49.94066652526893, -26.025468976866236], + [-49.93531128939987, -26.03212465893151], + [-49.9319977529026, -26.030952007467548], + [-49.93122247673314, -26.030677625166387], + [-49.91530539023835, -26.025043130908667], + [-49.90413834723821, -26.02686435457418], + [-49.89827364031147, -26.034279975878633], + [-49.891776480130055, -26.029343790291247], + [-49.880978578815785, -26.031712129812984], + [-49.869565595030195, -26.034214387686607], + [-49.86550649069043, -26.03510408728728], + [-49.866079178998525, -26.03604835250254], + [-49.86963258692152, -26.04190693839782], + [-49.87075107725344, -26.04375088495348], + [-49.86466485839331, -26.046569839209038], + [-49.86411576840962, -26.048528705356215], + [-49.863894671005504, -26.049317444819028], + [-49.862056229355495, -26.055875416288508], + [-49.84211544490934, -26.06452235246305], + [-49.838292446093625, -26.057391291996154], + [-49.83603309430857, -26.053176473322175], + [-49.8356437580451, -26.05245013405422], + [-49.8314204013735, -26.053417982603055], + [-49.83220315388713, -26.057922836461877], + [-49.83380389467623, -26.067134368100373], + [-49.83834520550298, -26.069809996436337], + [-49.84360865778056, -26.07291076672692], + [-49.840196954942044, -26.076354142837967], + [-49.83932304689403, -26.075626460170586], + [-49.83304399373208, -26.07039762791104], + [-49.831085284313154, -26.068766379848487], + [-49.83059802813551, -26.06959113850317], + [-49.82909372873255, -26.07213731754566], + [-49.82844276565268, -26.073239097631998], + [-49.82874617243829, -26.074554116429837], + [-49.8302778569754, -26.08119228911389], + [-49.8307438303924, -26.083211633855925], + [-49.824690334537344, -26.09306558572747], + [-49.816081320611026, -26.093961935702623], + [-49.81370139961347, -26.092172029541317], + [-49.809509932228536, -26.089019460117967], + [-49.80841408355547, -26.088195181623373], + [-49.80829773719963, -26.089127052933776], + [-49.80792686433782, -26.09209742678288], + [-49.80649655007322, -26.103551350995428], + [-49.80222378353507, -26.110006294896113], + [-49.789865609091436, -26.112508556060163], + [-49.78924344433406, -26.10864743324321], + [-49.78770484526483, -26.0990980047016], + [-49.787588957117144, -26.098378680956653], + [-49.78716878307446, -26.09972634681042], + [-49.786842783912235, -26.100771932343253], + [-49.78263532910821, -26.114264737112773], + [-49.77669601193438, -26.119805938117626], + [-49.773808695719595, -26.11875820886458], + [-49.76841543570491, -26.110476756061136], + [-49.76833483043955, -26.11035297509447], + [-49.7684867131069, -26.110309710581408], + [-49.775003317447656, -26.108453241234912], + [-49.778752536679754, -26.107384990544535], + [-49.77581515598904, -26.101222417594816], + [-49.775581140479034, -26.100731428092146], + [-49.77482198312456, -26.10113540640374], + [-49.77415830659756, -26.101488569837795], + [-49.76802874673804, -26.104750053974172], + [-49.76463926428734, -26.11380305939877], + [-49.751254419857005, -26.119591359293544], + [-49.750930580911415, -26.122059394901214], + [-49.74947468147777, -26.133153548921317], + [-49.74858379591209, -26.139940992317], + [-49.74028434211744, -26.13850780567032], + [-49.735833133311296, -26.142269880165355], + [-49.73162143633624, -26.14282102663291], + [-49.72723891028006, -26.143394390855914], + [-49.724885675845464, -26.143702205929934], + [-49.725654080995824, -26.144549479700142], + [-49.736996059006835, -26.157053738599213], + [-49.73690377007245, -26.157196635744143], + [-49.72883895055969, -26.169682289437265], + [-49.726641414698115, -26.17104627026399], + [-49.72592489644065, -26.17029725492448], + [-49.72364923443273, -26.16791829714128], + [-49.71582401543928, -26.159736892446816], + [-49.711482611173864, -26.155197218087565], + [-49.71066786703059, -26.154345212479306], + [-49.698967852247314, -26.16148455012491], + [-49.68862461283241, -26.176929385031986], + [-49.6767173501581, -26.17592237620297], + [-49.67739318249611, -26.176545625894413], + [-49.68544213211477, -26.183967596454192], + [-49.69042979149807, -26.18856605643138], + [-49.680604757248695, -26.186112274145938], + [-49.67427526551102, -26.191372753971226], + [-49.674105291039496, -26.18878084149287], + [-49.67384857064441, -26.18486601347168], + [-49.67380235597357, -26.184161250121107], + [-49.67275407962363, -26.184941282436338], + [-49.66924656615485, -26.187551121307166], + [-49.66382032484746, -26.19158822033673], + [-49.663817705231, -26.191590169199397], + [-49.6611526901308, -26.187852087071324], + [-49.660523706022374, -26.18696980216185], + [-49.65319140521694, -26.18716338427639], + [-49.65372282637954, -26.193008880438448], + [-49.65044989187332, -26.19481115906543], + [-49.64898569697014, -26.195617391551515], + [-49.64869676356964, -26.19577648436407], + [-49.650833791457586, -26.207213377825614], + [-49.64616807357905, -26.20988268275035], + [-49.63441954005638, -26.20203552266735], + [-49.63405783874393, -26.20179390136716], + [-49.63424899642764, -26.20105693251456], + [-49.63439159827686, -26.2005071537696], + [-49.63554299192255, -26.196067924172645], + [-49.636212217500905, -26.19348753125473], + [-49.63681290354039, -26.191171302525827], + [-49.6368633165206, -26.19097690674436], + [-49.63441864793791, -26.189695575068555], + [-49.63038804282734, -26.190942962224945], + [-49.6298558525675, -26.19219506704138], + [-49.62927975331414, -26.19355044363254], + [-49.625975503187576, -26.201323587913404], + [-49.62599890279618, -26.201341969423844], + [-49.63280981417333, -26.206691867269715], + [-49.63522456990047, -26.20858844129837], + [-49.633721309424864, -26.209366864957076], + [-49.62384853819679, -26.214478555094978], + [-49.62157406447672, -26.21565601518603], + [-49.61756424060015, -26.214194610781536], + [-49.61721823428873, -26.21406849984266], + [-49.61501366751221, -26.208124253892034], + [-49.61474437691542, -26.207398115785242], + [-49.61445607928969, -26.208103304057115], + [-49.613713615202265, -26.2099193580525], + [-49.61211061126291, -26.2138400572354], + [-49.60822761562672, -26.21251396897691], + [-49.60762252885372, -26.21230731279795], + [-49.60613208669606, -26.21179826609243], + [-49.60603651668756, -26.212295838003783], + [-49.603496240247516, -26.22551963970356], + [-49.6032093545743, -26.22701285021237], + [-49.60108874085191, -26.228392079132533], + [-49.60090179798423, -26.228513662016937], + [-49.59870671200881, -26.221320916680416], + [-49.59703458800099, -26.22187252692242], + [-49.59268404665187, -26.22330759200593], + [-49.59262021693335, -26.223328645548058], + [-49.58994459793578, -26.22018496523988], + [-49.589303618741084, -26.219431824365696], + [-49.58795401594793, -26.217846021623473], + [-49.58758307575419, -26.217410152082564], + [-49.58782175525475, -26.21814152774642], + [-49.59136175583144, -26.228987964345038], + [-49.59172824232796, -26.230110754696106], + [-49.58358117334332, -26.230163866810216], + [-49.57872719253523, -26.227210674008095], + [-49.57836319526743, -26.22698920337566], + [-49.57793334661016, -26.21486477342697], + [-49.57790136641824, -26.21396270142742], + [-49.57524929550747, -26.218761419630255], + [-49.573043796378826, -26.222751743847102], + [-49.57247470152692, -26.223781332558893], + [-49.57092801434032, -26.226579441952826], + [-49.56898438618342, -26.230095430722486], + [-49.56841019235618, -26.231134088996026], + [-49.567245183427694, -26.233241404254866], + [-49.56065701518221, -26.236794437764093], + [-49.555071394415876, -26.237285207460186], + [-49.5540497993196, -26.236324348214968], + [-49.55121863686414, -26.23366138657177], + [-49.54785261801046, -26.230495120123454], + [-49.5475241430682, -26.230186125078156], + [-49.547609050723736, -26.230089630068612], + [-49.55008104443785, -26.22728018745736], + [-49.55156398333079, -26.225594725527063], + [-49.55205639983143, -26.225035045613396], + [-49.545664492164576, -26.22502041184762], + [-49.53840077747977, -26.230004993980998], + [-49.5383295960449, -26.230053836809347], + [-49.537878267776264, -26.22923273661817], + [-49.53646735708472, -26.22666579116683], + [-49.535981561922256, -26.225781930010324], + [-49.542840393690426, -26.223718616594077], + [-49.542694962114346, -26.222994164402643], + [-49.541756404660255, -26.218318646040384], + [-49.54091122265544, -26.214108001614665], + [-49.540797012664044, -26.213538993778062], + [-49.539944605142544, -26.213791891000465], + [-49.53673825949755, -26.21474311236294], + [-49.53413432714232, -26.21551555174286], + [-49.5314781926726, -26.220575482667904], + [-49.52987935458511, -26.223621016770615], + [-49.529404869269165, -26.224524800324332], + [-49.52938363916655, -26.224311719982364], + [-49.528755889276106, -26.218010914847532], + [-49.5287054722875, -26.2175048511013], + [-49.52471166614159, -26.22091463093307], + [-49.5219700635169, -26.223255135018054], + [-49.52056793599436, -26.224452071784093], + [-49.519320143580636, -26.226940516174444], + [-49.51922551145638, -26.22712923382365], + [-49.512281824241796, -26.221726231530152], + [-49.51184215726223, -26.22138409166326], + [-49.50435976939685, -26.226548007853353], + [-49.504000630998064, -26.224816536639903], + [-49.50341056073043, -26.221971601606786], + [-49.500086785954686, -26.221629994093696], + [-49.49658959836393, -26.221270479016145], + [-49.496548739830516, -26.22126627819652], + [-49.496635616665806, -26.221144162986615], + [-49.49681370053083, -26.220893844979006], + [-49.49819330891934, -26.218954595651855], + [-49.498398275782606, -26.218666476612764], + [-49.4974597892162, -26.218102691711685], + [-49.49310541974981, -26.215486706658375], + [-49.49122787178078, -26.214358652403952], + [-49.49090821973819, -26.21416659695153], + [-49.490983069527694, -26.212275523096295], + [-49.491035273471105, -26.21095653370359], + [-49.49107196383205, -26.210029481842636], + [-49.491688410494135, -26.210265985330768], + [-49.494711232856645, -26.211425658105945], + [-49.49491974735982, -26.211505649275267], + [-49.499949109635686, -26.203444019106364], + [-49.495687262300024, -26.203614377736358], + [-49.49393932780262, -26.203684211084067], + [-49.4937373825791, -26.20369227780657], + [-49.49128526629064, -26.200415460581233], + [-49.48981590167372, -26.198451812043697], + [-49.48690857411097, -26.194566250067908], + [-49.48753774753045, -26.193857982739605], + [-49.48907905183077, -26.192122869871156], + [-49.489882849657896, -26.19121797178005], + [-49.48911640313422, -26.19013161477626], + [-49.48712640922232, -26.187310899638234], + [-49.48576375413053, -26.185379314647324], + [-49.485832976640765, -26.18508496072459], + [-49.48643771426594, -26.182513370919214], + [-49.48683170572341, -26.18083788948112], + [-49.48690862505318, -26.180510777203164], + [-49.486490189378486, -26.180811663950006], + [-49.483162313157095, -26.18320455589691], + [-49.47947196552752, -26.18585787002954], + [-49.47936281566333, -26.185766087015885], + [-49.47583539741275, -26.182799797896287], + [-49.47484812094763, -26.181969532544567], + [-49.46913297411579, -26.177162936793582], + [-49.468152212672706, -26.1763380285773], + [-49.46606332666608, -26.174581028938576], + [-49.46474600927779, -26.173472967984708], + [-49.464289418328974, -26.17308889920035], + [-49.463895892144585, -26.172293302052594], + [-49.463187960357, -26.17086203856243], + [-49.45949964741985, -26.16340459031022], + [-49.45913210275751, -26.16266139279095], + [-49.451548773772174, -26.162073023841913], + [-49.43868746673945, -26.164329038169498], + [-49.43810376652159, -26.166505544393534], + [-49.43725155320271, -26.169683118019105], + [-49.43655480568473, -26.172280873011783], + [-49.43605205636173, -26.172140296527903], + [-49.431487846011485, -26.170863978185235], + [-49.42979027334222, -26.170389231988057], + [-49.42924599123099, -26.170237012094155], + [-49.4285775531115, -26.168369117798132], + [-49.42852049557663, -26.168209672612498], + [-49.428275866884405, -26.16815295580097], + [-49.4226794474096, -26.166855306830865], + [-49.421870539855284, -26.166667724245777], + [-49.42170237073472, -26.16662872582733], + [-49.42043393351318, -26.16402922339962], + [-49.41944610034085, -26.16446029346461], + [-49.417290144279995, -26.165401072953458], + [-49.41723564754895, -26.165424852682875], + [-49.41722974726601, -26.16530553537757], + [-49.41710697034137, -26.162822679062778], + [-49.41665778177175, -26.15373856958396], + [-49.41662965415207, -26.153169713579288], + [-49.41296248434024, -26.156294764663315], + [-49.410543505151765, -26.158355997791578], + [-49.406741925452046, -26.161595119537953], + [-49.40359201889553, -26.15648662276034], + [-49.40270546764791, -26.155048731518516], + [-49.40112385882295, -26.152483434710792], + [-49.40028795344339, -26.15112758462674], + [-49.40000635971075, -26.150670827915423], + [-49.39500543099843, -26.151899522456503], + [-49.39196320739893, -26.15815311151024], + [-49.390018988391624, -26.160253850664525], + [-49.388379572653726, -26.157481175265808], + [-49.38749856286361, -26.155991101228775], + [-49.38727641371541, -26.1556153682755], + [-49.38323383328603, -26.156032900069874], + [-49.37724188997221, -26.154598243994542], + [-49.37636860067075, -26.154389128121025], + [-49.3729024942555, -26.153559083257353], + [-49.371700383748944, -26.15463596867372], + [-49.370275500225034, -26.155912380448317], + [-49.370478158267865, -26.154942062544833], + [-49.37126192193353, -26.151189259418466], + [-49.3717016884396, -26.149083454313043], + [-49.3717506788145, -26.14884886030147], + [-49.37112447179784, -26.148959517191177], + [-49.37000940190123, -26.149156553584994], + [-49.369040404773784, -26.149327770825632], + [-49.36870017974853, -26.14938788530632], + [-49.368803014847614, -26.145548402034308], + [-49.36880725649202, -26.14539002339035], + [-49.36621332642408, -26.146890651690043], + [-49.3658331638701, -26.14711057418938], + [-49.36663761394108, -26.143947558725642], + [-49.366704179968, -26.14368581908835], + [-49.364730166202975, -26.142758987695114], + [-49.362711963419585, -26.14181136657072], + [-49.36062201993561, -26.140830015479462], + [-49.36027925314634, -26.140669061985694], + [-49.36098722729495, -26.1373913919097], + [-49.361000955932276, -26.137327831059057], + [-49.36090691309601, -26.13736525247877], + [-49.36022992933896, -26.13763463452196], + [-49.357607528296555, -26.138678084787923], + [-49.35707767713517, -26.138888903704817], + [-49.35763928393194, -26.138371559813255], + [-49.35841073314846, -26.137660900722043], + [-49.35890031543622, -26.13720989059246], + [-49.356910713533594, -26.13687299767009], + [-49.3562961645195, -26.13676893215821], + [-49.35496207328753, -26.13654301238984], + [-49.354104728614566, -26.136397819664893], + [-49.353863976491326, -26.13635704692473], + [-49.35420028086177, -26.135717374994133], + [-49.35444870463944, -26.135244852119254], + [-49.3550283001735, -26.134142395179907], + [-49.35516372995666, -26.133884788706972], + [-49.35432995558604, -26.133885351288225], + [-49.3527326248252, -26.13388641558877], + [-49.35105394988799, -26.133887514994584], + [-49.35091208414719, -26.13388760700922], + [-49.34916819451031, -26.131091531048202], + [-49.34770290175356, -26.128742031309294], + [-49.347547201492205, -26.12849237016253], + [-49.3472790695848, -26.12806242517115], + [-49.346421488694475, -26.128242519710863], + [-49.34562622665393, -26.12840952198644], + [-49.34467124659059, -26.128610057983078], + [-49.3442092896469, -26.128707061642817], + [-49.34216561280241, -26.129136181545142], + [-49.34035509526726, -26.128152619367377], + [-49.336669470608726, -26.126150288186533], + [-49.3344253801531, -26.124931037773845], + [-49.334266932007516, -26.12484494812135], + [-49.33447973440168, -26.122708817568785], + [-49.334728463321355, -26.12021192391108], + [-49.333971366575256, -26.11990108033451], + [-49.33297059891377, -26.119490183556906], + [-49.33118594321471, -26.118757412843458], + [-49.329733822445064, -26.11816115667618], + [-49.329343938046215, -26.118001062554406], + [-49.32783358267757, -26.11738086742607], + [-49.32682479232495, -26.11696661700659], + [-49.32609453309865, -26.116666736700278], + [-49.32447476753109, -26.114242607987308], + [-49.32442197996883, -26.1141636046258], + [-49.321934514431625, -26.11044065716696], + [-49.321705468442495, -26.110097834525746], + [-49.3184096577836, -26.11007582664726], + [-49.317901841266476, -26.110072428986445], + [-49.317450755402085, -26.110069409394423], + [-49.31467815595499, -26.110050818466387], + [-49.31221929027, -26.110034286575466], + [-49.31071844829076, -26.11002417522806], + [-49.304745188981215, -26.109983777818435], + [-49.3042055600984, -26.111357908187216], + [-49.30390601105588, -26.112120674569052], + [-49.303369393852634, -26.113487078455336], + [-49.30287886145587, -26.113146532522688], + [-49.30082594833379, -26.11172128496138], + [-49.30014722491724, -26.111250063382677], + [-49.29890597848639, -26.110388277836197], + [-49.29831448981365, -26.10997760490405], + [-49.29807051588217, -26.10980821133242], + [-49.29909124498337, -26.107692313372958], + [-49.299545853432356, -26.106749913892795], + [-49.30059679329922, -26.10457125627122], + [-49.30072713175679, -26.104301050666418], + [-49.298969170049155, -26.104037725719937], + [-49.29670105895837, -26.103697952394544], + [-49.296122924751685, -26.10361133929671], + [-49.294421784068106, -26.103356469063208], + [-49.29337239280633, -26.103199235496646], + [-49.293138406057594, -26.10316417544226], + [-49.291074404406196, -26.10285489280756], + [-49.29047774686573, -26.102765480229817], + [-49.28976710191272, -26.102658982608354], + [-49.29124751108623, -26.099316539893554], + [-49.292353180856765, -26.09682003262863], + [-49.292882807895424, -26.09712066167329], + [-49.2931590321015, -26.097277451825892], + [-49.29498605862393, -26.09831448378608], + [-49.29487435228685, -26.09814865590762], + [-49.294438953761635, -26.097502302442138], + [-49.29246187423209, -26.094567206947286], + [-49.29184375697749, -26.093649540054], + [-49.29175164275937, -26.093512784405565], + [-49.2949614223036, -26.093864069735567], + [-49.29502551384547, -26.09356084952025], + [-49.29530710700862, -26.092228596731967], + [-49.29546468760192, -26.091483047577253], + [-49.29607801696091, -26.08858114294161], + [-49.296410662376665, -26.087007195049882], + [-49.296485738339776, -26.086651958133444], + [-49.295218548965444, -26.085582980920453], + [-49.29495252759632, -26.085358566511406], + [-49.29396015515247, -26.084521394129503], + [-49.293543919510554, -26.08417024939676], + [-49.287007634464565, -26.078655688678882], + [-49.28386574991468, -26.07883866240412], + [-49.28385026388292, -26.078839564091567], + [-49.28012554937616, -26.079056389909372], + [-49.278871799672544, -26.080674614627192], + [-49.278646701140914, -26.080965144908824], + [-49.27708847942287, -26.082976259644727], + [-49.27684185288189, -26.082885534499987], + [-49.276229791422196, -26.082660376444274], + [-49.274425219284254, -26.08199651164044], + [-49.27411396850989, -26.081882005924513], + [-49.274526106594315, -26.080361552840717], + [-49.274708577404894, -26.079688369969304], + [-49.27503696551202, -26.078476837284214], + [-49.27511464761581, -26.0781902380017], + [-49.27329541814076, -26.079121726984255], + [-49.2709471537591, -26.080324037159954], + [-49.26959811401504, -26.081014715608436], + [-49.2660630700481, -26.07903790534958], + [-49.26595755640103, -26.07897889941251], + [-49.26605321938849, -26.0788957096689], + [-49.26626201730812, -26.07871413570246], + [-49.2688754604301, -26.076441368302238], + [-49.26895706557259, -26.07637039854234], + [-49.26702223261739, -26.074202730192212], + [-49.266532102857354, -26.07365360264827], + [-49.26602155452582, -26.073081591759887], + [-49.26503754954145, -26.071979106942102], + [-49.265245849875605, -26.071443074136987], + [-49.26570606035186, -26.070258764504143], + [-49.26684222356077, -26.067334833952028], + [-49.266927653839275, -26.067114971231288], + [-49.26567764000521, -26.067562159706267], + [-49.2647714269548, -26.06788634545637], + [-49.26417615055105, -26.068099293570917], + [-49.262824898028356, -26.06858266464558], + [-49.26193403476318, -26.068901335637], + [-49.261393929129675, -26.0690945334061], + [-49.260958132957555, -26.069250417319708], + [-49.26076848407795, -26.06931825400813], + [-49.26059904869122, -26.069254020317807], + [-49.25967601187068, -26.068904088414047], + [-49.25865848995801, -26.068518327241463], + [-49.256997657288444, -26.067888654724197], + [-49.256619620448525, -26.06774532583685], + [-49.25608410903083, -26.067542289787216], + [-49.25557265512549, -26.067348372540195], + [-49.25604520343254, -26.06647038750328], + [-49.25677420771801, -26.065115881764985], + [-49.25712643835451, -26.06446141624315], + [-49.25731326992526, -26.064114268508764], + [-49.25413876632689, -26.063513388216393], + [-49.25318670846342, -26.063333164975962], + [-49.25339857826189, -26.062614752028917], + [-49.253520968926054, -26.06219974235067], + [-49.253812475275645, -26.06121127133231], + [-49.25445621175447, -26.059028352577656], + [-49.25474039049436, -26.058064668995875], + [-49.25499258084424, -26.05720944653342], + [-49.255171325104605, -26.056603284161437], + [-49.25531045650624, -26.056131452992144], + [-49.25417660236796, -26.05288663273001], + [-49.25395544327923, -26.052253708134295], + [-49.25374217621955, -26.05164336317452], + [-49.25360881625471, -26.051261699731175], + [-49.25344366659682, -26.050789053941568], + [-49.25318376971302, -26.05004524140804], + [-49.25261821848578, -26.048426629510523], + [-49.25235294343475, -26.04766739559642], + [-49.252225139496744, -26.04730160931899], + [-49.24543529915708, -26.045009010757727], + [-49.243828913821574, -26.044466553872926], + [-49.243175272880954, -26.044245820803738], + [-49.24265792176639, -26.044071109862035], + [-49.237280889584326, -26.037720223370798], + [-49.23702325512225, -26.037415906432486], + [-49.236954512278864, -26.03733470729314], + [-49.23773956769078, -26.032797550805757], + [-49.237836375974545, -26.032238026927033], + [-49.23799723931917, -26.031308269151523], + [-49.23656042099505, -26.031059242950665], + [-49.23454036348487, -26.03070910531296], + [-49.23171996638285, -26.030782348909366], + [-49.22843028183535, -26.03086770971823], + [-49.22577619606583, -26.030936523190487], + [-49.225408042471834, -26.03094606458064], + [-49.223644270468405, -26.02938039232196], + [-49.222941583743896, -26.02875661151689], + [-49.21941590754237, -26.025626693312187], + [-49.218412708002624, -26.02473605856351], + [-49.21783852694002, -26.024226295047487], + [-49.217585212900524, -26.024001398329034], + [-49.21513468894499, -26.02456168957232], + [-49.21438302596968, -26.024733541314063], + [-49.21150546533828, -26.0253913929259], + [-49.211172504260794, -26.025467508365306], + [-49.209927177835624, -26.022890570433066], + [-49.20863197958147, -26.020210310952386], + [-49.20765830229279, -26.01819531887352], + [-49.20747788261495, -26.01782193873277], + [-49.207283354843455, -26.017419359052674], + [-49.20590867337201, -26.017234543824877], + [-49.20352056104882, -26.01691344848568], + [-49.202611313956965, -26.01679118427242], + [-49.20134272428254, -26.01662059024291], + [-49.200925517145535, -26.016564483649045], + [-49.2006312245109, -26.016524906017054], + [-49.19993978411959, -26.016431915947635], + [-49.199221935843944, -26.01633537072148], + [-49.19756518603948, -26.0161125361541], + [-49.19577133598282, -26.015871239267877], + [-49.19565233790149, -26.01585523161417], + [-49.19348404127941, -26.014449135728267], + [-49.192263644466394, -26.013657705159517], + [-49.191761812989064, -26.01333226020883], + [-49.19190791466782, -26.009421246474055], + [-49.19193429790292, -26.008714938603585], + [-49.188231411651145, -26.008796438140777], + [-49.1866582525255, -26.008831034153346], + [-49.18493318071144, -26.008868951200487], + [-49.182539691755316, -26.00892152583979], + [-49.18212520981327, -26.00893062618379], + [-49.18118120999678, -26.008951348144983], + [-49.180027249401626, -26.007556635299885], + [-49.17850192372751, -26.00571301697528], + [-49.17704933105522, -26.003957243328014], + [-49.17575450340058, -26.002392108964692], + [-49.17526755126917, -26.001803488106447], + [-49.1751051600659, -26.00178974353652], + [-49.174690534439485, -26.001754649351213], + [-49.17299306515973, -26.001610961881205], + [-49.171159277173615, -26.00145571262063], + [-49.170125641730195, -26.00136819423071], + [-49.1688083738843, -26.00125664970957], + [-49.16798191604073, -26.001186660134124], + [-49.16716559641619, -26.001117524429688], + [-49.1644231718363, -26.004658549767917], + [-49.16335315032504, -26.006040088328458], + [-49.16230268051293, -26.007396341660865], + [-49.16211411108504, -26.007639797825902], + [-49.15939080769205, -26.008188096555983], + [-49.15122852541713, -26.009831114439727], + [-49.15095636032722, -26.010163720439884], + [-49.15070545691377, -26.010470340856205], + [-49.14931026773595, -26.01217531441005], + [-49.14841372661421, -26.013270886367383], + [-49.14818823045081, -26.013546438049506], + [-49.147973942827484, -26.013808291522622], + [-49.147850407726054, -26.013395517945273], + [-49.14725949220067, -26.011421027437745], + [-49.14692305830762, -26.010296836834417], + [-49.14679479689048, -26.00986824732634], + [-49.14286305546612, -26.01108835929671], + [-49.14124397859928, -26.015515525550438], + [-49.13902471069329, -26.01366044991149], + [-49.137723721143544, -26.012572917285045], + [-49.13714056771587, -26.012085433469032], + [-49.13417145389401, -26.00960332382547], + [-49.13401470092273, -26.009472277565273], + [-49.13379459747046, -26.009288269236674], + [-49.13337267030577, -26.008935532137105], + [-49.133016784713746, -26.008638004218238], + [-49.13259371289232, -26.00828430419352], + [-49.13210940517495, -26.007879405238292], + [-49.13158675647442, -26.007442447044674], + [-49.13157465287044, -26.007432327819995], + [-49.12884467273192, -26.0036400456962], + [-49.13192058335043, -25.99997016885055], + [-49.13199352751323, -25.999883135222014], + [-49.131904518645335, -25.999832295571544], + [-49.131154552829436, -25.99940392994585], + [-49.13090145893691, -25.999259366186656], + [-49.12976119141611, -25.99860805139236], + [-49.1287739960391, -25.998044157870034], + [-49.12828098127194, -25.997762539654985], + [-49.12649127556691, -25.99674020530128], + [-49.126310014810535, -25.996636661476813], + [-49.12554411076543, -25.996199140236744], + [-49.12474167372965, -25.996771247683192], + [-49.12436661213929, -25.99703864893705], + [-49.12401853878376, -25.997286806819417], + [-49.12381950927198, -25.997428703450066], + [-49.12336519057775, -25.997752604236105], + [-49.12271035296915, -25.998219456594178], + [-49.11565699507936, -26.00324755737979], + [-49.115299623674574, -26.00350229402266], + [-49.112882079670946, -26.005225480849933], + [-49.112400155974356, -26.004717171234134], + [-49.11221895224008, -26.004526044883313], + [-49.107857391360525, -25.999925402040805], + [-49.10741967556098, -25.999463666542592], + [-49.10704156965376, -25.99906480821714], + [-49.105803326730644, -26.001251588728316], + [-49.10575571476155, -26.001335671174235], + [-49.1039641354559, -26.004499483523134], + [-49.103883694803436, -26.004832026029543], + [-49.10367265533646, -26.005704454913523], + [-49.10347045583317, -26.006540325471377], + [-49.10339784846027, -26.00684047297729], + [-49.103131334542475, -26.007942184337036], + [-49.09815780706409, -26.009131689949914], + [-49.09726785937906, -26.009344515495876], + [-49.093481100050596, -26.01025002481609], + [-49.09186379294116, -26.005815339835905], + [-49.091054708124815, -26.00359669490753], + [-49.0909342365842, -26.003266335097333], + [-49.08422604576786, -26.005213304731015], + [-49.08223600587799, -26.005790815591034], + [-49.0788783743376, -26.006765126010546], + [-49.07877802634863, -26.006665253141854], + [-49.07826237441406, -26.00615203905736], + [-49.076040308432745, -26.003940409007683], + [-49.075762535325275, -26.0036639325469], + [-49.07545478483828, -26.003357616587355], + [-49.07521340510351, -26.003117360493203], + [-49.07506257230536, -26.00296722915867], + [-49.074870073680565, -26.002775625015506], + [-49.07443708853709, -26.002344648733512], + [-49.074172044476676, -26.002080832252954], + [-49.07395099628725, -26.001860806647212], + [-49.07303254864799, -26.000946595880507], + [-49.07110538663748, -25.999028261525282], + [-49.070226965101234, -26.002806264588077], + [-49.06964028701684, -26.005329348650502], + [-49.06868334687589, -26.00944451765676], + [-49.06264464605763, -26.014401492989933], + [-49.06242734201403, -26.014579857872164], + [-49.061951852669814, -26.0149701401415], + [-49.06178395639754, -26.015107948584525], + [-49.06084385192177, -26.015879571785504], + [-49.06070203063035, -26.015995975036482], + [-49.05520997906478, -26.020503412661725], + [-49.052494939908115, -26.017928591043262], + [-49.05225384208796, -26.017699937057472], + [-49.05180376960758, -26.01727309094741], + [-49.04702021120731, -26.018947609807412], + [-49.046609885154446, -26.0190912375621], + [-49.04383285767162, -26.01172341866525], + [-49.043679767323844, -26.011317224086667], + [-49.04107769082248, -26.004412723498284], + [-49.04091776802698, -26.003988349721173], + [-49.02965205217427, -26.003905135566313], + [-49.020683372662624, -26.015359840366845], + [-49.01794410540533, -26.015416157723607], + [-49.01648783557504, -26.01544607637519], + [-49.014833165233256, -26.015480053244126], + [-49.01387787752798, -26.015499660392678], + [-49.013329736500815, -26.015510908051684], + [-49.00948487470287, -26.015589744629008], + [-49.007107904929946, -26.0156384316368], + [-49.00536174377495, -26.01358210420249], + [-49.00356509548158, -26.011466229249272], + [-49.00317571402996, -26.011007650527556], + [-49.00176541560675, -26.01122350000219], + [-49.00031009005506, -26.011446225551087], + [-48.998627542308796, -26.011703706041075], + [-48.998133712128514, -26.01177927295737], + [-48.985112810270365, -26.00498487148197], + [-48.98475415099242, -26.004797693515417], + [-48.9841846086309, -26.004500456410234], + [-48.98637613332978, -26.000805531484406], + [-48.98644602005869, -26.00068769732242], + [-48.98150069550147, -25.998348389220137], + [-48.98037702954858, -25.997816821086786], + [-48.97856047235886, -25.98959367244975], + [-48.97841378443888, -25.988929606129616], + [-48.96817481815375, -25.98685578042773], + [-48.966713945724216, -25.98621988216402], + [-48.96274115043419, -25.984490470745325], + [-48.96198443516269, -25.98416104468798], + [-48.961864952292615, -25.988250756116106], + [-48.96184814500784, -25.988825991844696], + [-48.96184739476095, -25.988851669035185], + [-48.96179693742304, -25.99057851297399], + [-48.96178789816001, -25.99088785923903], + [-48.956841601161486, -25.993103066734125], + [-48.95675110572662, -25.99305893657505], + [-48.9546926384063, -25.992055100033838], + [-48.95450830948091, -25.99196520759506], + [-48.953358417148735, -25.991404426733443], + [-48.9510563040025, -25.99028168709048], + [-48.9507039209682, -25.990109825042033], + [-48.96041923267903, -25.981297258276737], + [-48.96078060420318, -25.980969425482982], + [-48.89127886027269, -25.9814903836208], + [-48.89062402489686, -25.98149523712472], + [-48.88226618628368, -25.98155542789328], + [-48.878002285918136, -25.98158594402299], + [-48.87165692298105, -25.98163101647628], + [-48.819822019371195, -25.98199104118825], + [-48.81975604028115, -25.981991386647106], + [-48.71092092787938, -25.9832354895772], + [-48.70985230412366, -25.983261352904986], + [-48.68065028934647, -25.981014576239126], + [-48.678203385364654, -25.97914078584528], + [-48.67738971490079, -25.978517671737098], + [-48.67612904271682, -25.97755221967303], + [-48.669469872284736, -25.979227033588], + [-48.66870894441087, -25.978602507403842], + [-48.66524505946577, -25.97575941984747], + [-48.66322343740905, -25.974100015541097], + [-48.66317226762524, -25.974058013011092], + [-48.66316068828379, -25.9739884228729], + [-48.66293703676866, -25.972644297919604], + [-48.66235991167841, -25.96917572175], + [-48.66225614071289, -25.968552032010052], + [-48.655672566368665, -25.966310760116972], + [-48.65520627682323, -25.966152005099524], + [-48.6538684623518, -25.964830985005324], + [-48.65229646978803, -25.963278675615683], + [-48.64532219252155, -25.95639106019498], + [-48.644957423339974, -25.956030793778414], + [-48.637685171147275, -25.96087815416141], + [-48.63843323607825, -25.962934820641692], + [-48.63847925699579, -25.963061344481073], + [-48.639897190011794, -25.96695949857823], + [-48.63298938019027, -25.970299586658605], + [-48.633209128143655, -25.97280102394081], + [-48.63324343302349, -25.973191518595616] + ] + ] + }, + "SP": { + "name": "São Paulo", + "coordinates": [ + [ + [-50.46993267824151, -19.780362707387336], + [-50.461762565293746, -19.783379415915988], + [-50.46034001697439, -19.783971177512655], + [-50.45752778262498, -19.78583682144905], + [-50.45495049672912, -19.78652996783879], + [-50.45456833709188, -19.786718134783413], + [-50.449558737727116, -19.789181432166714], + [-50.44398180946881, -19.793025960917543], + [-50.440582306467654, -19.794583776323787], + [-50.438583181026665, -19.79517196027689], + [-50.43833675547919, -19.79524446388745], + [-50.435367513064485, -19.79582396725229], + [-50.43398030193827, -19.795932347924733], + [-50.421371692705456, -19.799809523994732], + [-50.41759020710235, -19.80162410226403], + [-50.41163238454573, -19.80651692592999], + [-50.40847924712729, -19.809105410692492], + [-50.40409755240902, -19.814016912446196], + [-50.40126334208944, -19.816293257426324], + [-50.4001409450251, -19.81686581620297], + [-50.394111790000686, -19.822815029786558], + [-50.389546553581845, -19.829706173188953], + [-50.384756192788146, -19.834688153965264], + [-50.37942334845293, -19.838272710123587], + [-50.373376814018904, -19.84585344396392], + [-50.36834062178087, -19.846990382442616], + [-50.3674847540605, -19.848034095544488], + [-50.36482335692876, -19.851279616080888], + [-50.35974990774249, -19.85320108763379], + [-50.35752996113503, -19.855069683104773], + [-50.35571386168094, -19.857628381299957], + [-50.355367916952275, -19.85843202960351], + [-50.35321635373851, -19.865090229606583], + [-50.34611863221757, -19.868051246165788], + [-50.34141544838478, -19.86861960882614], + [-50.337890849335935, -19.86997232554573], + [-50.33708821473082, -19.87028053753128], + [-50.335026656888324, -19.869808643058064], + [-50.314653929150445, -19.872694075692756], + [-50.31232272695731, -19.873593628874563], + [-50.309887523084264, -19.874532645893463], + [-50.306867593927954, -19.874573889373693], + [-50.29757405894116, -19.87022386396302], + [-50.288199123439625, -19.868334238602678], + [-50.28608817976887, -19.86830585988645], + [-50.27994887932083, -19.869179077056945], + [-50.266193275083744, -19.87317741201264], + [-50.253995356356455, -19.874914849125844], + [-50.25132528446844, -19.876482971706107], + [-50.249506582126486, -19.876938056192767], + [-50.245613060989015, -19.877245768801718], + [-50.23803949239462, -19.876060000498242], + [-50.22978897858225, -19.873014524862636], + [-50.22134487430795, -19.868928916691843], + [-50.221341901294764, -19.86892747869914], + [-50.21610877223741, -19.86713657959561], + [-50.20769185854372, -19.866863297319014], + [-50.20203190425173, -19.866920632247915], + [-50.19795612523217, -19.86751099006763], + [-50.17508806633961, -19.87447456398634], + [-50.17411456112538, -19.875294416898264], + [-50.17220933418518, -19.87600202858155], + [-50.16587193707261, -19.87835574315803], + [-50.162870717024724, -19.878802530531775], + [-50.16097325833745, -19.878867225192305], + [-50.15071753910149, -19.877946542368424], + [-50.143084317948386, -19.87629025808951], + [-50.134794759367644, -19.87449050840712], + [-50.130868768313825, -19.874160175028635], + [-50.11324378299652, -19.874327328756834], + [-50.10950320218496, -19.87447266865051], + [-50.106677086246634, -19.874830551285797], + [-50.1014911756749, -19.875487337528817], + [-50.083271784853906, -19.88416516174279], + [-50.079978138309485, -19.88647051173554], + [-50.06962318489134, -19.89551373517767], + [-50.06096861710605, -19.902500983438156], + [-50.05641855050064, -19.90708725663173], + [-50.047695804403205, -19.91587818909571], + [-50.044588118553264, -19.916911055707825], + [-50.039085487525476, -19.918778764185635], + [-50.0345462815964, -19.920318792302087], + [-50.01921998003915, -19.9258854128338], + [-50.01574489882666, -19.926846393335566], + [-50.01264407014193, -19.927207981910314], + [-50.00350942089642, -19.92693563318808], + [-49.991243067756635, -19.92442489803197], + [-49.984168637461956, -19.923616402246253], + [-49.98017331661288, -19.922559171755353], + [-49.96546165687304, -19.920648100061864], + [-49.96261107820152, -19.92071289763614], + [-49.95754649614117, -19.921596177400268], + [-49.941006257784736, -19.92660501981322], + [-49.93436662049761, -19.929037573525545], + [-49.92835021343377, -19.93043634836003], + [-49.92408794850511, -19.93172640343369], + [-49.91746806735706, -19.934479544728358], + [-49.90664266904861, -19.937655974102427], + [-49.90567409678307, -19.937940226461716], + [-49.89168055852098, -19.94407010061326], + [-49.89167139250711, -19.944075570635672], + [-49.88879312513545, -19.945793854675784], + [-49.88132386634585, -19.946039483788073], + [-49.87236476289529, -19.945284597913158], + [-49.85863235355854, -19.946532141020246], + [-49.85775020974673, -19.946955584906593], + [-49.85602942430701, -19.947313990084805], + [-49.85419576154306, -19.946945851506282], + [-49.84747911097149, -19.9414547495301], + [-49.84133374624819, -19.937364794002566], + [-49.84060504504044, -19.937061393953023], + [-49.83863562191775, -19.935609076648905], + [-49.835730510898955, -19.933804025588024], + [-49.83252440220511, -19.932978846560694], + [-49.82164448653479, -19.931673338237324], + [-49.808051966775466, -19.93231725830382], + [-49.80805147877377, -19.932317214305], + [-49.800918381549565, -19.9316651494657], + [-49.79365653181838, -19.928752451818575], + [-49.78681131056895, -19.92600688257048], + [-49.78577323430999, -19.92563970938923], + [-49.78291203972324, -19.92495229049475], + [-49.74985790711385, -19.925185479956305], + [-49.74257953769246, -19.925880789086108], + [-49.72288179621378, -19.92935251220316], + [-49.71260518106967, -19.931750895688616], + [-49.68974408494488, -19.931079332395946], + [-49.68642418302961, -19.93204723439958], + [-49.682916558912716, -19.930923020721508], + [-49.68205598677969, -19.930770568770495], + [-49.67808122630649, -19.930065783232266], + [-49.67692608862691, -19.930863524529876], + [-49.67689631036966, -19.930922212426594], + [-49.67643136778686, -19.93331651338179], + [-49.66698454524148, -19.93262464160504], + [-49.64760116094927, -19.932207165040452], + [-49.64338509545307, -19.9327222762874], + [-49.63486065760666, -19.932421666604515], + [-49.631480981939816, -19.931694398614834], + [-49.625856818064506, -19.929062539841535], + [-49.61732598128819, -19.922427695702122], + [-49.61368459949124, -19.920462561233325], + [-49.61206264945759, -19.919587841367118], + [-49.59352269481675, -19.913429850227764], + [-49.59146564316775, -19.91303602154312], + [-49.58363554650102, -19.910480978954798], + [-49.58124398956779, -19.910076432391367], + [-49.57352915287031, -19.910467958680144], + [-49.56638359218577, -19.911801260005088], + [-49.563298789088535, -19.912068800343647], + [-49.559658612525894, -19.911697005948476], + [-49.55613552475284, -19.90959951713885], + [-49.55498132459199, -19.908289201075025], + [-49.5523048506946, -19.906428521185962], + [-49.55194025873565, -19.906330750826285], + [-49.54059861196489, -19.907897557858114], + [-49.54005272061088, -19.908001616138698], + [-49.52918896269692, -19.910614844049757], + [-49.528630237338675, -19.91077365038508], + [-49.522080525289724, -19.912635463548902], + [-49.506321617460195, -19.91878350687234], + [-49.50390766610717, -19.920419309667427], + [-49.502255367526175, -19.92324504007958], + [-49.49872719111183, -19.93338853929927], + [-49.497270406476936, -19.939501482980873], + [-49.49557231594187, -19.946627362604687], + [-49.49324111185101, -19.950911064486544], + [-49.48802366504197, -19.955764100249006], + [-49.48541963886924, -19.95674859583831], + [-49.48519240294572, -19.95690868845358], + [-49.480426712403165, -19.961669430734812], + [-49.4779094652209, -19.96350689785014], + [-49.47406797502219, -19.965805996138673], + [-49.464045090794066, -19.97180462386782], + [-49.46344469079381, -19.972227458078713], + [-49.45869690393093, -19.976420965431206], + [-49.4542648593676, -19.978549732100966], + [-49.44497445107568, -19.981001836282186], + [-49.43499406201911, -19.982875206032443], + [-49.40963231953174, -19.984365947028646], + [-49.3969382956716, -19.98434053095085], + [-49.37715479874938, -19.98649978375523], + [-49.37289635085798, -19.987186429845924], + [-49.35694110354813, -19.987207468375967], + [-49.341878000844254, -19.984101415448798], + [-49.33705668729064, -19.982574885609626], + [-49.33323423377046, -19.980597824374094], + [-49.33264050604185, -19.980024288108975], + [-49.31293635795012, -19.965785525888712], + [-49.312076419405244, -19.965308512345057], + [-49.3088488539042, -19.96397771553959], + [-49.30342299827807, -19.962331714686357], + [-49.297992136792935, -19.961035753841987], + [-49.294350123180216, -19.96070435632309], + [-49.29104365532636, -19.961013339088076], + [-49.28448741812751, -19.962902963622774], + [-49.281437809279026, -19.96328162779185], + [-49.26562734927003, -19.962528433633363], + [-49.26116433203686, -19.96394904303096], + [-49.25443678740781, -19.967205503954766], + [-49.250560055468775, -19.96974421362044], + [-49.25010120777155, -19.97004469872557], + [-49.249181310653285, -19.971648819288426], + [-49.24677615994038, -19.983533774367807], + [-49.24694340238369, -19.985647114894828], + [-49.247642817915676, -19.994485350164695], + [-49.248146196175725, -19.998426727180536], + [-49.24870236465433, -19.99988897942167], + [-49.25466352861256, -20.003784871253362], + [-49.26249392352683, -20.00691462509158], + [-49.26520230650833, -20.006641863018594], + [-49.26571331767727, -20.006463083403933], + [-49.27508463683162, -20.004114229207946], + [-49.2810421568792, -20.00441129629238], + [-49.282825108327025, -20.00486602159499], + [-49.283884073881644, -20.00475925251009], + [-49.28467027859486, -20.00544496807697], + [-49.28837974642074, -20.00776658547458], + [-49.292530245077685, -20.011280452132223], + [-49.2967654523537, -20.016064154723303], + [-49.297710484522455, -20.01800733871794], + [-49.29831741604159, -20.02600778185242], + [-49.30129775216813, -20.04122108128579], + [-49.30604292138143, -20.054396524078562], + [-49.307709969709826, -20.060809645844696], + [-49.30779758513021, -20.066919679292283], + [-49.308910022143834, -20.078048258862065], + [-49.30893339002886, -20.08553959260586], + [-49.30873547621844, -20.08925628046838], + [-49.3089720267609, -20.097484852787225], + [-49.30899280609265, -20.10438327147227], + [-49.306922874989446, -20.11151001751018], + [-49.30688367522243, -20.111699685034548], + [-49.3063053518256, -20.11739142119648], + [-49.30497428163947, -20.125366619187602], + [-49.30444395154145, -20.127279754548194], + [-49.3002201851202, -20.15936957979585], + [-49.300346659691655, -20.16459062630356], + [-49.29970133449759, -20.167566445147166], + [-49.2907487158977, -20.185089206200217], + [-49.28618471922493, -20.192315425776975], + [-49.285354173232854, -20.19446540597461], + [-49.28491682038404, -20.19693852427706], + [-49.283930227678425, -20.20051501999889], + [-49.274308470711134, -20.214218229261444], + [-49.26646038332181, -20.22897194545773], + [-49.265703584086985, -20.230189308383455], + [-49.26490627424707, -20.231471841271215], + [-49.26160672346945, -20.240818266545958], + [-49.2609442055149, -20.242957226063254], + [-49.25953708889559, -20.2485825140189], + [-49.260671670698436, -20.252741113791078], + [-49.26026576373024, -20.258877167431407], + [-49.260148114340545, -20.259250581751438], + [-49.2598364545539, -20.260088569582877], + [-49.25961102843155, -20.260694693184227], + [-49.25461790795721, -20.26815472284711], + [-49.25296198584424, -20.27164789716115], + [-49.24967274682479, -20.275311315367397], + [-49.249075990491534, -20.27779430505949], + [-49.24565576217591, -20.28263335171006], + [-49.240156451741925, -20.287740284322208], + [-49.238186632763565, -20.290922919351416], + [-49.23785271580885, -20.292100347275966], + [-49.23626227738995, -20.29502566237754], + [-49.22912323146601, -20.303847926306368], + [-49.22574904666608, -20.305833620533143], + [-49.2225678127985, -20.30568398905773], + [-49.217545095751575, -20.304740906853112], + [-49.208647041921985, -20.30491442395203], + [-49.20634710852231, -20.305354528449747], + [-49.2056889656907, -20.30548046802292], + [-49.203926013455245, -20.305229018601153], + [-49.203079472545625, -20.30539521488081], + [-49.20020040216318, -20.307187126217432], + [-49.199056757614116, -20.30839452606665], + [-49.19601554298471, -20.309291431371083], + [-49.194736505297314, -20.30911407737742], + [-49.19328376817772, -20.307863543667665], + [-49.19233374569066, -20.308105074944258], + [-49.19159660151384, -20.309701005877557], + [-49.18943491564161, -20.311672275226403], + [-49.18693031640628, -20.312806222287406], + [-49.18401743904777, -20.31515046645842], + [-49.18183626470225, -20.3143207842024], + [-49.17634087007046, -20.313259427603093], + [-49.17458601707097, -20.313322065545293], + [-49.173016585104826, -20.313025762219915], + [-49.1717345267743, -20.312236492155208], + [-49.17107119372367, -20.308587646044042], + [-49.17034707026134, -20.306625322758343], + [-49.16911565627055, -20.30570101706329], + [-49.152737644323, -20.295283379004196], + [-49.151569858027784, -20.29485061664263], + [-49.13844203656702, -20.28725811464242], + [-49.13446646735245, -20.284958835717354], + [-49.13019961055084, -20.28129058930039], + [-49.122865757137724, -20.274035834634944], + [-49.12117328356822, -20.27101898423023], + [-49.12108168508756, -20.270841538336388], + [-49.120680113285, -20.27051530949507], + [-49.11567724261857, -20.260564260367943], + [-49.104467908201364, -20.24002881373484], + [-49.10256952124616, -20.236965325514777], + [-49.096487481442274, -20.226435487388876], + [-49.091637753756295, -20.21651715612277], + [-49.08926163625813, -20.2121620420688], + [-49.081035501257446, -20.190515814605188], + [-49.08039456051986, -20.189206667093316], + [-49.078389360710986, -20.183551574556144], + [-49.06749841340099, -20.15488214656734], + [-49.06715764615119, -20.154606472656333], + [-49.06082423753225, -20.15181778516477], + [-49.05967517479044, -20.15159797731147], + [-49.03340132360135, -20.150546899260245], + [-49.02823890080257, -20.15121323284538], + [-49.01900523965428, -20.15352473350497], + [-49.01709692126586, -20.154131818628727], + [-49.014454233580594, -20.155290036927372], + [-49.000880222351206, -20.161239160275343], + [-48.997453909161905, -20.163582909560738], + [-48.99412436816317, -20.165111525503992], + [-48.99270458047034, -20.165875547907262], + [-48.986499079017435, -20.171256426078575], + [-48.9845495262885, -20.174212795029728], + [-48.98131119765139, -20.182671411773477], + [-48.972477136278954, -20.208281485020027], + [-48.96827633685133, -20.232192969287517], + [-48.9667967827652, -20.240152713896144], + [-48.96562835927308, -20.24603187747708], + [-48.96448332369864, -20.249938428714383], + [-48.96223988152766, -20.26379234797273], + [-48.96287666016455, -20.270098699419275], + [-48.96476302669332, -20.2740145916035], + [-48.965749461033305, -20.276708680702022], + [-48.96623708671541, -20.279782956017176], + [-48.96464307315675, -20.283876536330776], + [-48.96465577259352, -20.28402695632325], + [-48.964667923011454, -20.284170875316097], + [-48.96633293231907, -20.303892612324937], + [-48.965154922050985, -20.31517601072406], + [-48.96545446936009, -20.329363048099047], + [-48.96848741500684, -20.345141616313434], + [-48.96851393885333, -20.346568062458985], + [-48.96810960239404, -20.350700211005716], + [-48.966184146538765, -20.35850191064456], + [-48.96612111021888, -20.363390459503965], + [-48.966496843040936, -20.3673973042081], + [-48.966696224812374, -20.368574740912717], + [-48.96682255219196, -20.369316879725034], + [-48.97059408321805, -20.38236269878735], + [-48.97112223943616, -20.387077328232433], + [-48.97080720385159, -20.390281696434393], + [-48.969352259430934, -20.39423142041627], + [-48.967185655285896, -20.39842812810299], + [-48.963484738623684, -20.403612704531547], + [-48.95225275601008, -20.41115830395946], + [-48.94989679121381, -20.412325882651853], + [-48.94190336230671, -20.416286258470677], + [-48.90732815927029, -20.436859577917968], + [-48.904626497531886, -20.439214816677957], + [-48.900316847962046, -20.441827576159728], + [-48.89865673480502, -20.44236443612563], + [-48.89539889870828, -20.44230524373699], + [-48.89258761437819, -20.44121082614334], + [-48.88691218921162, -20.437380457820264], + [-48.88215180349082, -20.433689336371224], + [-48.87906106481063, -20.43016054404119], + [-48.87900023943992, -20.43005168583637], + [-48.878568421834096, -20.429654554578306], + [-48.87814050597936, -20.42851301749518], + [-48.87204004114573, -20.417594082464937], + [-48.86848682666786, -20.406358543986638], + [-48.86768453802338, -20.402952669320733], + [-48.867560300231986, -20.400283610134927], + [-48.86702469221706, -20.39885428381295], + [-48.86924564317602, -20.379262195586943], + [-48.87999272524145, -20.34833592376914], + [-48.87651644128854, -20.321774691737268], + [-48.87590467527807, -20.318926359990503], + [-48.87598198220253, -20.317690545658714], + [-48.87562800846282, -20.314985530177594], + [-48.87721312987695, -20.312546548729994], + [-48.87765562733388, -20.311355427737215], + [-48.87907345612765, -20.309465164150822], + [-48.87963210535124, -20.30882434764444], + [-48.88872257451649, -20.294834305147994], + [-48.88823753489843, -20.291060612889076], + [-48.88756751352297, -20.289199412275476], + [-48.886897050320215, -20.2880632356525], + [-48.88637907179774, -20.285843650506337], + [-48.88656723276623, -20.280994334311732], + [-48.88678893348777, -20.279789565223687], + [-48.88507379104308, -20.266443345960642], + [-48.8824840670235, -20.26150216512812], + [-48.87861236389507, -20.25592254879291], + [-48.873829290013646, -20.244986594379345], + [-48.87218938775357, -20.241856834877492], + [-48.86771230500133, -20.237520294990862], + [-48.864427177621614, -20.235148452277887], + [-48.8597134208217, -20.23279746078199], + [-48.85721223441649, -20.227375431682283], + [-48.85720000794057, -20.22733668203285], + [-48.856719826052526, -20.226871469814938], + [-48.85629668257755, -20.224473705655317], + [-48.85474781094457, -20.219564537108383], + [-48.85390237459168, -20.215501093402093], + [-48.85381764322668, -20.213540927281173], + [-48.853977760913764, -20.21133246805212], + [-48.853603561687, -20.209211745424756], + [-48.85785005543929, -20.199330189010094], + [-48.85535572332201, -20.18014083367241], + [-48.85533427989225, -20.180119202177575], + [-48.845808616505025, -20.174248289519515], + [-48.84491241599209, -20.173897608348813], + [-48.843526290979845, -20.173352847445557], + [-48.84191311360928, -20.17162777448772], + [-48.833951203222064, -20.166023213496988], + [-48.83290720728115, -20.165445333539285], + [-48.83025469522778, -20.163977171020914], + [-48.829243996603374, -20.163525786674068], + [-48.82619654925541, -20.162448955444347], + [-48.82283508918131, -20.162067559828262], + [-48.80221681939042, -20.16294415580312], + [-48.79278667105906, -20.1639559522616], + [-48.78159049679701, -20.164344041950017], + [-48.77056563889427, -20.162323377814555], + [-48.76467321315577, -20.15994373286927], + [-48.757101185866176, -20.154854313279102], + [-48.75417638157192, -20.153859903782084], + [-48.74581832686638, -20.153134370725528], + [-48.74340063707893, -20.152459209121236], + [-48.742003692111275, -20.151872426082807], + [-48.730684354221964, -20.150433941081722], + [-48.730023025157266, -20.15076795931646], + [-48.72998622008225, -20.15078654840365], + [-48.72789734241172, -20.15129147625222], + [-48.72348449094779, -20.153341350669074], + [-48.71981697900663, -20.15462645425118], + [-48.715620914694505, -20.15645658313353], + [-48.711558184081895, -20.158387821729765], + [-48.70756063968084, -20.160708949247226], + [-48.69004462448048, -20.163952996686664], + [-48.68881659096192, -20.164181670520897], + [-48.68165815989478, -20.162560896497922], + [-48.67473321391819, -20.16184540410078], + [-48.67148430490347, -20.16296014668563], + [-48.66766518133674, -20.165780779880215], + [-48.66620515578276, -20.166692812364523], + [-48.66320949211908, -20.16722442626527], + [-48.65090807236519, -20.167777793287904], + [-48.64737844282175, -20.167492606241435], + [-48.642581473473626, -20.16698796102528], + [-48.638164551753896, -20.16583933482236], + [-48.62725036080204, -20.160581514553193], + [-48.622522919727395, -20.156776625599964], + [-48.60224188698131, -20.140975000933196], + [-48.60109372836179, -20.14020251279073], + [-48.5985596544993, -20.138866343265654], + [-48.586450768284855, -20.133935866645587], + [-48.58267146060846, -20.132701246893774], + [-48.57993482683202, -20.132041990681174], + [-48.57203784008514, -20.131495581135695], + [-48.56880566341864, -20.13163063492569], + [-48.55508126826625, -20.130791070653302], + [-48.54667350107222, -20.133169579041724], + [-48.537887461987516, -20.134121991987687], + [-48.53783552782735, -20.13412762110567], + [-48.53762194516886, -20.13415077359039], + [-48.537586443059396, -20.134154622670927], + [-48.537560116978156, -20.134157476730735], + [-48.53732644425764, -20.134182806261034], + [-48.53419194857005, -20.13418764857969], + [-48.51883525456295, -20.13693332375921], + [-48.514737254663714, -20.138257164830065], + [-48.51470878058271, -20.138262974895213], + [-48.50968381627898, -20.139288526383968], + [-48.500702251661565, -20.13952074858298], + [-48.49156828665167, -20.138615437876823], + [-48.48456497598084, -20.135795927985072], + [-48.47667387106579, -20.135257186545065], + [-48.474452932257684, -20.134330953323413], + [-48.46952917531023, -20.13100433564532], + [-48.46570194196301, -20.129230336833903], + [-48.463550150607595, -20.12878859555302], + [-48.46238564668349, -20.128787258156702], + [-48.4588441629823, -20.129274033177193], + [-48.457011391830974, -20.129282334275864], + [-48.45541936636194, -20.12884183074109], + [-48.45389367155137, -20.128176580009903], + [-48.45273004489689, -20.126690119294988], + [-48.45206785985239, -20.12636604370578], + [-48.44504374469589, -20.122927518791577], + [-48.443377496753705, -20.122179287256596], + [-48.43947850825107, -20.120712903612915], + [-48.42311433986009, -20.117024642315364], + [-48.406228581364964, -20.114003449269394], + [-48.40332292679825, -20.114288850394644], + [-48.39444836797969, -20.117189834631994], + [-48.3943115563893, -20.117290429504855], + [-48.39274479441527, -20.11901468436821], + [-48.39121605817418, -20.119781641937116], + [-48.38911079981504, -20.120080321685222], + [-48.387595948057715, -20.119429412637515], + [-48.3824222898309, -20.12112009313673], + [-48.382060975394886, -20.12143259265904], + [-48.38145328395074, -20.122075684152016], + [-48.37940076775505, -20.122770098868234], + [-48.375387648263626, -20.123595687970788], + [-48.36912042952892, -20.123371232846416], + [-48.362273324827726, -20.123546567092728], + [-48.353505985225986, -20.12235908128837], + [-48.34637094710266, -20.120355792666388], + [-48.34478452701932, -20.11926570793881], + [-48.34367973808052, -20.117981319098728], + [-48.34272528487333, -20.11604586314474], + [-48.340829871849515, -20.114975999387838], + [-48.339902457083085, -20.114682084726386], + [-48.334938148903504, -20.11492650278113], + [-48.33370744329298, -20.114746740466718], + [-48.33125251021471, -20.113869625418484], + [-48.32759687837477, -20.113731787430243], + [-48.32452588081558, -20.114579600760848], + [-48.318913234638856, -20.113702211982947], + [-48.31758590648868, -20.113839605951497], + [-48.31586436279183, -20.114293697864422], + [-48.31139012893416, -20.117223147434274], + [-48.309706716960086, -20.11791686231739], + [-48.30798409893143, -20.11824034620198], + [-48.30620357023095, -20.119578814447884], + [-48.30417145191511, -20.12141489736496], + [-48.30208284530917, -20.12240774421272], + [-48.298124721412044, -20.12341864419815], + [-48.29594477871422, -20.12450025026771], + [-48.29241737279276, -20.128133590907048], + [-48.290321713067385, -20.131101236227902], + [-48.28926885730336, -20.133837937190517], + [-48.287530214249784, -20.13658937967326], + [-48.286213311051924, -20.13790384289023], + [-48.28387382067761, -20.13933643039566], + [-48.27985857691635, -20.141292504727236], + [-48.27540735907136, -20.14260536687173], + [-48.26555150078917, -20.144289171040704], + [-48.25513917046373, -20.14430853803472], + [-48.24820364093366, -20.141907409769676], + [-48.24178415106232, -20.140677297634245], + [-48.24149220614407, -20.140202629884442], + [-48.24129688551968, -20.140172933642134], + [-48.237835908583925, -20.136407527614395], + [-48.22579452881383, -20.134671974427455], + [-48.225278562397364, -20.13400099540238], + [-48.224907394870634, -20.133518869576186], + [-48.22479141568885, -20.13349665038262], + [-48.2238060508438, -20.132352751229064], + [-48.219086703417894, -20.12837678567644], + [-48.21823345020559, -20.125883200500255], + [-48.21771159962369, -20.125277321232556], + [-48.218954179182916, -20.115375426749235], + [-48.2230215803374, -20.11150190048514], + [-48.22857801411689, -20.104707157115666], + [-48.23763600972329, -20.096967675348886], + [-48.24142216215175, -20.093974514842706], + [-48.25004836475107, -20.085755481436937], + [-48.25338902361688, -20.077909430189894], + [-48.249632927791396, -20.065576542926976], + [-48.24857264671283, -20.063746430395206], + [-48.24781365674869, -20.060750656348855], + [-48.246836720719244, -20.059242406134558], + [-48.245209405081674, -20.051050182939715], + [-48.24409576362604, -20.047392763171736], + [-48.247616354654504, -20.035769755407248], + [-48.24142826862769, -20.029832593815815], + [-48.24133462848263, -20.02977719916617], + [-48.2383342145899, -20.02927746192606], + [-48.226350090671495, -20.029296148365326], + [-48.22410896128481, -20.029804002890998], + [-48.21848485382488, -20.03255320162428], + [-48.2166272136174, -20.033729437832253], + [-48.21236274446994, -20.037103220358457], + [-48.2082224172306, -20.039862849085743], + [-48.204900448387946, -20.044505400482084], + [-48.2038605964366, -20.04595862311071], + [-48.20170431407366, -20.047970280317735], + [-48.20036666667826, -20.05128088705158], + [-48.197531051073994, -20.055758985348405], + [-48.195305707703625, -20.05745784763194], + [-48.193012043367354, -20.059883716457765], + [-48.190037750626416, -20.064024860911637], + [-48.185200826196784, -20.072416378405464], + [-48.18291682809011, -20.07511988706712], + [-48.18228170887423, -20.07834799125076], + [-48.18250531832859, -20.090005952627774], + [-48.181003966524315, -20.093782337843816], + [-48.17905697002358, -20.096673120818803], + [-48.16820028887929, -20.104303029473435], + [-48.16191978728526, -20.103402548996883], + [-48.159377162908115, -20.103515802588376], + [-48.15877719593202, -20.10354281190773], + [-48.15847189616833, -20.10380060300789], + [-48.15310628351993, -20.11391365203628], + [-48.15188630077243, -20.11788878955656], + [-48.14966234557709, -20.122918389677984], + [-48.14817252871939, -20.124632552366684], + [-48.14463849395267, -20.12596601043442], + [-48.14114829046348, -20.126325960814476], + [-48.14097528641511, -20.12638411604276], + [-48.13491897584161, -20.12923310051883], + [-48.13025080880792, -20.130409886024687], + [-48.12699758600039, -20.131749544475937], + [-48.12344540396905, -20.135852854278216], + [-48.12041695763057, -20.139918577927247], + [-48.11742837892443, -20.142561391130478], + [-48.11344551948486, -20.14425611226749], + [-48.10593828020254, -20.146849031334646], + [-48.09616561827232, -20.147454275838456], + [-48.09280598592652, -20.14669979298143], + [-48.09119073581079, -20.147680414759254], + [-48.083751973861446, -20.148699346257526], + [-48.082440950485854, -20.14874455912998], + [-48.077226617075816, -20.148922697551644], + [-48.070893234942886, -20.147109256894236], + [-48.068077707330126, -20.145567016287387], + [-48.05371885333913, -20.13917007527169], + [-48.05180892613641, -20.138765621293455], + [-48.049837566845085, -20.137728718312147], + [-48.049595732801336, -20.13733290703856], + [-48.0493516498997, -20.137224145118175], + [-48.040479052008024, -20.12118218702037], + [-48.0404705802683, -20.121175210336105], + [-48.04028557927564, -20.12102821169936], + [-48.040040578079946, -20.120882211193177], + [-48.03978357681382, -20.12072421170988], + [-48.03955057562747, -20.120565212174178], + [-48.03929357444699, -20.12044221370002], + [-48.039049573506496, -20.12039921421877], + [-48.03876957246964, -20.12036721381847], + [-48.03841657124396, -20.120360214583396], + [-48.03801556993694, -20.120387215461466], + [-48.037625568557615, -20.12036921730372], + [-48.037369567576036, -20.120326217848373], + [-48.03710156649718, -20.12026021841307], + [-48.03679556506333, -20.12010221903601], + [-48.03634356313682, -20.119947219976847], + [-48.036111562264324, -20.11991521947214], + [-48.03580856126346, -20.119930220134176], + [-48.03550456034226, -20.119979220807195], + [-48.035225559533515, -20.120039222428847], + [-48.03493455871544, -20.120112222079996], + [-48.03467955793272, -20.12014922364342], + [-48.0344375572506, -20.120209223184712], + [-48.034134556388935, -20.12028122486162], + [-48.03387955560858, -20.12031922442535], + [-48.03360055488528, -20.120414226056162], + [-48.03337055424422, -20.120474225571453], + [-48.0331285536452, -20.12056822612166], + [-48.032911553273436, -20.120720226632958], + [-48.03270555285381, -20.12083722711103], + [-48.03240355213714, -20.120967227801128], + [-48.032101551447305, -20.121108228493977], + [-48.0318345508212, -20.121226230104817], + [-48.03160455015318, -20.121275230617066], + [-48.03135054957158, -20.121393230199747], + [-48.03114554915528, -20.121510230675728], + [-48.03083054836475, -20.121628231390734], + [-48.03063754801879, -20.121757231843837], + [-48.03043254762933, -20.121885233322665], + [-48.03028854756129, -20.122059233681227], + [-48.03009554721528, -20.122188233134324], + [-48.02990254695245, -20.12235123459638], + [-48.029673546483146, -20.12248023412761], + [-48.029456546081946, -20.122620235635672], + [-48.02923854553796, -20.122703235130903], + [-48.02902154513663, -20.122843235639017], + [-48.02884054485858, -20.122983237068887], + [-48.02858654435982, -20.123135236660527], + [-48.02822554375098, -20.123392238512196], + [-48.0279715432815, -20.12355623810694], + [-48.02778054325013, -20.123811238588956], + [-48.027528542982886, -20.124055239200562], + [-48.02733554266364, -20.124195239656494], + [-48.0270585422545, -20.12441624031627], + [-48.026575541286235, -20.124697242439073], + [-48.026296540591645, -20.124804242073065], + [-48.02604253984113, -20.124853243637386], + [-48.02573953900569, -20.124936243317098], + [-48.02542453818785, -20.125043244029154], + [-48.02520653767293, -20.12513824452754], + [-48.0248425366309, -20.12522224533991], + [-48.024417535355404, -20.125296246281977], + [-48.02408953429496, -20.125322248000707], + [-48.02380953323294, -20.1252802485973], + [-48.023577532274324, -20.12521324908313], + [-48.023333531303955, -20.125158248598126], + [-48.02306553022435, -20.12509224916231], + [-48.02274752889293, -20.1249932498261], + [-48.022453527555804, -20.124858250428385], + [-48.022209526502316, -20.12476925093431], + [-48.0219535254907, -20.12471425147537], + [-48.02169752450849, -20.12467125301948], + [-48.02142952359737, -20.12467425360183], + [-48.02107752248636, -20.124713253376026], + [-48.020857521541984, -20.124635253832746], + [-48.020613520429954, -20.12452225433218], + [-48.02040451927171, -20.124341254737622], + [-48.02025551828741, -20.124147255009465], + [-48.02008251716715, -20.12393125632749], + [-48.019896515833864, -20.123646255655437], + [-48.019772514906016, -20.123440255869717], + [-48.0196845140185, -20.123200255996977], + [-48.01957251310488, -20.122983257182355], + [-48.019532512267205, -20.122696257192974], + [-48.0194805115592, -20.122479256248184], + [-48.01942951079606, -20.12223825729478], + [-48.019353509947315, -20.121997257395712], + [-48.01931350916818, -20.121734256412665], + [-48.01911550773792, -20.121426256760415], + [-48.018930506603546, -20.121221257107262], + [-48.0187935056899, -20.121039257356077], + [-48.01863350461194, -20.120822258645486], + [-48.01843550332324, -20.120572259008533], + [-48.018323502466004, -20.120378258199967], + [-48.018174501425754, -20.120161258465497], + [-48.01797850030998, -20.11997925884227], + [-48.01782949932841, -20.119786260114076], + [-48.01762049816812, -20.119604260519054], + [-48.01733649638959, -20.11927426104732], + [-48.01712649489159, -20.118955261417845], + [-48.016879493462, -20.118716260890007], + [-48.01664649225126, -20.118547262350305], + [-48.01635249077537, -20.118355261936888], + [-48.01617948970921, -20.11816126226038], + [-48.015958488510314, -20.117980262691482], + [-48.015748487234504, -20.117752263086146], + [-48.01550148566594, -20.117456263542987], + [-48.01514548375564, -20.11717326523952], + [-48.014924482471436, -20.11695726466125], + [-48.01460448074068, -20.116697265285804], + [-48.01433347914619, -20.116424265800724], + [-48.01416047808258, -20.116231267124316], + [-48.01399947697478, -20.116003267412605], + [-48.013765475448544, -20.11570626684081], + [-48.013481473782655, -20.115422268380833], + [-48.01320345210743, -20.115126002904603], + [-48.01248665906633, -20.11447606628514], + [-48.01239846757928, -20.114400269456038], + [-48.01238351148483, -20.114382539483675], + [-48.01013284379711, -20.112341794816935], + [-48.01012945478299, -20.11234077382401], + [-48.00905861674189, -20.11136776088451], + [-48.00905699973273, -20.11136629588761], + [-48.00770766712603, -20.11014230348386], + [-48.005446596092355, -20.107562481691545], + [-48.00541502023977, -20.107490668916018], + [-48.00228676034134, -20.104150318427155], + [-48.00218642195918, -20.10390139971768], + [-48.00188858105155, -20.103518439312097], + [-48.001721367626885, -20.10274768736149], + [-47.99391600352576, -20.08338182844514], + [-47.993271033454754, -20.08252018930822], + [-47.99202793756666, -20.08020237136945], + [-47.9910036882916, -20.077416131830724], + [-47.990486003284715, -20.07487034479114], + [-47.98971299962776, -20.072952038707225], + [-47.99117675498724, -20.046159942792272], + [-47.98487437686612, -20.037842306028274], + [-47.98161022797792, -20.03692472913653], + [-47.98000013037902, -20.036472119480425], + [-47.97641947067258, -20.035865996023546], + [-47.96830524634151, -20.041020682325843], + [-47.95103097549549, -20.053830884083904], + [-47.94893208592214, -20.05625097273954], + [-47.94817937968585, -20.057692324820053], + [-47.94548947602421, -20.077247962652724], + [-47.945118389250396, -20.08574752706262], + [-47.94394647657326, -20.092491959443052], + [-47.94285468310453, -20.09549475762202], + [-47.934552244752076, -20.10834703605657], + [-47.93197500015529, -20.110928293323777], + [-47.92967654573077, -20.112361496673145], + [-47.9276101631099, -20.11338528440914], + [-47.9245006101886, -20.114115147310837], + [-47.92279962346805, -20.11499310021865], + [-47.91352193955042, -20.120767161806455], + [-47.89985006157393, -20.126168044748066], + [-47.89591290600649, -20.125751790103234], + [-47.89403754130339, -20.123999026645283], + [-47.89379936898836, -20.123586407172], + [-47.89355274549313, -20.12349437119522], + [-47.879140338651375, -20.10472401509027], + [-47.878974849612014, -20.10421912680189], + [-47.875527261809985, -20.098866254312128], + [-47.873159374303036, -20.09084414011347], + [-47.87078682227574, -20.079235113958514], + [-47.86977307837267, -20.076141445797678], + [-47.869235948591665, -20.061854060745063], + [-47.86608206750795, -20.059137125013002], + [-47.86496726288358, -20.058774941524717], + [-47.86150606222331, -20.055962761122107], + [-47.86080067370022, -20.054673930261394], + [-47.86079377464622, -20.054661314272558], + [-47.860710909402606, -20.05450978179097], + [-47.86031615487163, -20.054169678369515], + [-47.86029269081424, -20.0537449972494], + [-47.85983373412645, -20.0529057078223], + [-47.859441928808195, -20.05042081794851], + [-47.86002090129762, -20.04882587772085], + [-47.85993271686535, -20.04722985049991], + [-47.861407945994934, -20.04625477599006], + [-47.86191130447807, -20.045503175265566], + [-47.86685900865187, -20.04224752976393], + [-47.867844879946176, -20.04199988136097], + [-47.87141967780982, -20.039636678459097], + [-47.876168072827674, -20.02872942181857], + [-47.87579599030512, -20.021398664433303], + [-47.87144116472333, -20.011647378251705], + [-47.87050115826402, -20.010146864913235], + [-47.86918823918368, -20.009140506340263], + [-47.86566594363141, -20.00351791824465], + [-47.86128137721826, -19.995427970286887], + [-47.85991189640189, -19.993241427358328], + [-47.85892971971089, -19.992588132966816], + [-47.85389129339294, -19.990406473293426], + [-47.85349652030572, -19.990314370379547], + [-47.85133932195032, -19.99033085697541], + [-47.85119297246575, -19.99033197666821], + [-47.84257908780964, -19.993669711373176], + [-47.840443416805066, -19.995441837633006], + [-47.83722030812917, -19.99643826377684], + [-47.83513006424625, -19.996559264257062], + [-47.83165593625067, -19.99440352230386], + [-47.802302091507705, -19.985559898105272], + [-47.80104231493221, -19.985538214415183], + [-47.79729193089706, -19.98547333834595], + [-47.77390458902178, -19.98694144431128], + [-47.769727171284764, -19.986363852977927], + [-47.76603717024181, -19.98621516173867], + [-47.76524887372799, -19.986298180430623], + [-47.76513578906685, -19.98618362163558], + [-47.76303304762332, -19.986515466181316], + [-47.76297476690887, -19.986524663762772], + [-47.76164754970725, -19.986943305268376], + [-47.76027524729867, -19.987425212284386], + [-47.75466325140518, -19.990546592083238], + [-47.751554846268576, -19.990782880723934], + [-47.73413090067714, -19.98842203580983], + [-47.733876171372124, -19.98824170129295], + [-47.7332006259114, -19.987763454573805], + [-47.73297962683673, -19.98760700512535], + [-47.716513397128935, -19.979934138498557], + [-47.71314083820409, -19.97864185009113], + [-47.70885440374569, -19.97919553228686], + [-47.704684536220554, -19.980397892433643], + [-47.701305786553164, -19.982164361435395], + [-47.683552586879316, -19.996077721087698], + [-47.68129825546378, -19.998541224229072], + [-47.676598982384256, -20.002409548310858], + [-47.67598894486879, -20.003753937404696], + [-47.67543399090903, -20.011838766216425], + [-47.67584193786173, -20.013438715316077], + [-47.67602858524599, -20.014173605150482], + [-47.67502977113254, -20.016851551081576], + [-47.67268730714306, -20.02112163733462], + [-47.67107545504011, -20.02300992331305], + [-47.66035407929348, -20.031181054418365], + [-47.655835283508935, -20.035345314225175], + [-47.651245711527864, -20.03784273066221], + [-47.65012419344037, -20.039024380390913], + [-47.64802694540575, -20.04123407549389], + [-47.640105097289386, -20.047713461188298], + [-47.63729600044716, -20.049359757613733], + [-47.63521335413062, -20.0497419011144], + [-47.63252184720683, -20.048646680430753], + [-47.63060920575015, -20.047452575076747], + [-47.625384316585794, -20.04278008158665], + [-47.62396621880461, -20.042414576450557], + [-47.618463485930086, -20.042926479169868], + [-47.61443900820631, -20.042603085517516], + [-47.60927074615927, -20.038317075005896], + [-47.60522235183557, -20.036079559787293], + [-47.601173955513424, -20.03384204256408], + [-47.600107168665936, -20.032931647510363], + [-47.59519691420469, -20.026385654711714], + [-47.595164543078326, -20.0262630613115], + [-47.594714356428916, -20.02588136296944], + [-47.59440124791222, -20.02337233020309], + [-47.59427281775638, -20.02288593552977], + [-47.59411366479318, -20.021437349400504], + [-47.59412916980511, -20.021192063545264], + [-47.592358415155736, -20.007001804773193], + [-47.58093047350034, -19.995718588090195], + [-47.58088064938646, -19.995697121827195], + [-47.57861086421736, -19.99524607482728], + [-47.56751818085991, -19.99557495668102], + [-47.56009271463095, -19.997114250670425], + [-47.55574694124908, -19.9969840746903], + [-47.55308639693043, -19.99652016008634], + [-47.54968632284558, -19.99426396443931], + [-47.54956134379849, -19.993996898322358], + [-47.54920412004855, -19.993759848435825], + [-47.54061234980986, -19.98482157086759], + [-47.54060688722909, -19.984819269269746], + [-47.53806767173238, -19.984224498617696], + [-47.529829486064315, -19.983864579739112], + [-47.52114091130056, -19.98466383270307], + [-47.508980559197965, -19.98343494755876], + [-47.50738537142164, -19.982905855695737], + [-47.50524492972833, -19.979524961427057], + [-47.49817316494793, -19.9721218102798], + [-47.49457461021381, -19.97109357198266], + [-47.485406213239244, -19.969550936162644], + [-47.47970967142771, -19.969247627531413], + [-47.47752057682264, -19.965810423913304], + [-47.47647271835433, -19.964165129531217], + [-47.47496603850398, -19.962610816128127], + [-47.47397836458003, -19.96205043058053], + [-47.469773122786364, -19.96158146810043], + [-47.468740936256104, -19.96191658777004], + [-47.46668240445348, -19.9637250797025], + [-47.4538113384719, -19.982595761653418], + [-47.45297817160746, -19.98522321420722], + [-47.45072437998954, -19.988331996917328], + [-47.447997680477556, -19.9913352665707], + [-47.44126990782999, -19.99511609176186], + [-47.43825482781901, -19.997480291796556], + [-47.43568554244935, -20.002893258944056], + [-47.43329850083806, -20.005349664713318], + [-47.42999423522348, -20.007461222262375], + [-47.42614021118952, -20.012798680045314], + [-47.42557268162875, -20.01383914857273], + [-47.42522534243248, -20.01482410024498], + [-47.42542133129199, -20.017005189785127], + [-47.42583634216783, -20.01791206838971], + [-47.431342494892014, -20.021407999862017], + [-47.44420223322239, -20.027950536849556], + [-47.44413888657526, -20.02828618193563], + [-47.444684621362896, -20.02845498596556], + [-47.44529065912341, -20.03087613652693], + [-47.44076374318158, -20.049248856118073], + [-47.44074524829218, -20.049323922181827], + [-47.43915672201589, -20.05158323024051], + [-47.43560717903487, -20.053906722388845], + [-47.427987696897915, -20.057618542401237], + [-47.425773147397265, -20.05920578208152], + [-47.418682332053635, -20.06513711029447], + [-47.41658312698856, -20.067400553416697], + [-47.41398819422468, -20.070965821010695], + [-47.41197953862339, -20.07457883140665], + [-47.408581792988656, -20.08069082553662], + [-47.40540749679523, -20.08323049198534], + [-47.40190573463221, -20.084133926553495], + [-47.395674494476744, -20.08357063827339], + [-47.39408604111798, -20.08305689569867], + [-47.37656087269851, -20.08359093421449], + [-47.375019046406806, -20.084157296238185], + [-47.37282531170868, -20.085842418062708], + [-47.37081712379012, -20.088409936720655], + [-47.37018355970418, -20.089422768062217], + [-47.36932576336208, -20.09228534982742], + [-47.36779471473223, -20.094322050700168], + [-47.36545895506689, -20.098844013099225], + [-47.35912461893913, -20.104476215158645], + [-47.35598573648453, -20.105581764036252], + [-47.35072240760918, -20.105420522865707], + [-47.347985858961906, -20.10583825266935], + [-47.34157091415641, -20.11174426199162], + [-47.33524417770569, -20.113808923789964], + [-47.3339662384064, -20.113665675967518], + [-47.33309801005362, -20.113961371998617], + [-47.33182612884683, -20.114740818179083], + [-47.33118199810507, -20.114966414588984], + [-47.32963005060888, -20.11581116009144], + [-47.32927440580702, -20.116004464893965], + [-47.327241594882636, -20.1162041888265], + [-47.32149719330594, -20.118908132042584], + [-47.31692789596613, -20.12229350060403], + [-47.31012142726493, -20.12499317260763], + [-47.30918531704162, -20.12631561100672], + [-47.307603626576054, -20.131521623110206], + [-47.306319135252835, -20.133759113552472], + [-47.29845943406075, -20.14344253820522], + [-47.296849696222296, -20.14638286557037], + [-47.29345499469517, -20.149156739562773], + [-47.28949276998912, -20.15185689870109], + [-47.28768046930908, -20.1525960207047], + [-47.28565394447388, -20.152304440783922], + [-47.28004760192333, -20.152905219999425], + [-47.279672975315066, -20.1530284771499], + [-47.27776118457539, -20.154016445679243], + [-47.275915552272004, -20.15497022582664], + [-47.271932741145456, -20.15623827349388], + [-47.2719292211356, -20.15623939450154], + [-47.26894550879701, -20.15718896099379], + [-47.26635550184157, -20.158434747600413], + [-47.25931856234823, -20.164277710325614], + [-47.25749231339792, -20.166698884013368], + [-47.25707667457631, -20.1701077142771], + [-47.25712071024494, -20.17278578524353], + [-47.25779594841897, -20.185165117011003], + [-47.25631526937629, -20.191266199255004], + [-47.254548860404945, -20.194825224178324], + [-47.25101895033038, -20.200165124382934], + [-47.24463241259952, -20.206138776715587], + [-47.24057488371643, -20.2093628582525], + [-47.2315216155378, -20.21964713365041], + [-47.232879944181335, -20.225151190834183], + [-47.232977549255885, -20.227180281365232], + [-47.233017809349334, -20.228017250584234], + [-47.2363489488175, -20.232580743348972], + [-47.23776533615969, -20.235715938551724], + [-47.238460250481324, -20.24079658794536], + [-47.23955010797669, -20.24406304386771], + [-47.24211083402868, -20.246613149488113], + [-47.242731107575686, -20.25061366764305], + [-47.24407361974184, -20.251639071232994], + [-47.24391893653014, -20.25221178075891], + [-47.24376425431846, -20.252784489284853], + [-47.24525866966672, -20.2540843606582], + [-47.2464315669269, -20.25711860631898], + [-47.24779990751308, -20.25913873820989], + [-47.247824008529584, -20.260392178609607], + [-47.24691539396616, -20.26165905881033], + [-47.25089258498985, -20.262979505544745], + [-47.25171599969261, -20.262670660362396], + [-47.2521689024865, -20.263403226435983], + [-47.25284221519108, -20.263626753092705], + [-47.25315952497062, -20.264111937178264], + [-47.2533222908231, -20.264132923556822], + [-47.254044224217886, -20.26491440734007], + [-47.254611371977894, -20.266331851974996], + [-47.25613237297719, -20.268657436430342], + [-47.25787895358792, -20.269929306181957], + [-47.258266581346234, -20.27137278389368], + [-47.259153093117185, -20.272491214454078], + [-47.258790512051625, -20.272721516609494], + [-47.26051451291278, -20.275357259938403], + [-47.26068109522615, -20.2753413773012], + [-47.260736213821275, -20.275696201404347], + [-47.263528850389676, -20.279965520584806], + [-47.264014986010686, -20.280005540044446], + [-47.263718466644676, -20.280255392993045], + [-47.26403211989345, -20.280734882302248], + [-47.264515967488485, -20.280906495988358], + [-47.26454240793408, -20.28087916526064], + [-47.26463364303738, -20.280784858037592], + [-47.26504250997029, -20.28098918326129], + [-47.26507961121424, -20.281106410145938], + [-47.26989556575016, -20.28281445138524], + [-47.27028715508777, -20.2833217934243], + [-47.27037577940051, -20.28332074501318], + [-47.27033715533028, -20.283386573335225], + [-47.271921505024615, -20.285439213299576], + [-47.27303352349286, -20.286152040496656], + [-47.272681659736655, -20.286424027727616], + [-47.27425309230541, -20.288459845425198], + [-47.27477244761036, -20.288254556628633], + [-47.27542039887414, -20.289972073055015], + [-47.27610280077396, -20.290856099194077], + [-47.277177045266406, -20.292132856004795], + [-47.2771126837207, -20.29332797797771], + [-47.277178596977826, -20.293597791030223], + [-47.27815297220231, -20.294885536950975], + [-47.278906536951865, -20.298745732751424], + [-47.280069313816654, -20.29990702974308], + [-47.28030023446059, -20.302384173139824], + [-47.2820423084007, -20.303976428076997], + [-47.281850766793816, -20.304858686788062], + [-47.28276182041079, -20.30884532230167], + [-47.28227666899628, -20.31303524973937], + [-47.28397782860368, -20.314604773301415], + [-47.28396373568323, -20.314368825751334], + [-47.28438287121851, -20.313962501734448], + [-47.286268389563084, -20.316781376801238], + [-47.28573783242218, -20.31663465353892], + [-47.285270260353876, -20.31998519021288], + [-47.28560174733565, -20.32066557956294], + [-47.28518935116267, -20.32056494653304], + [-47.28504822495469, -20.321576171869836], + [-47.28559720174278, -20.32211928108597], + [-47.28549280188864, -20.32233903638122], + [-47.2854326659739, -20.322466133551522], + [-47.285006709490766, -20.322524118112504], + [-47.2849870381384, -20.3248919353693], + [-47.28518501299763, -20.32497355195363], + [-47.285294375891056, -20.325612110951134], + [-47.28640523073627, -20.3255655716183], + [-47.28582447914644, -20.327466320500648], + [-47.28496772027689, -20.32721639329546], + [-47.2849481842912, -20.329566281878048], + [-47.28578710147151, -20.330207309546463], + [-47.28511326532614, -20.330739581139984], + [-47.28534583373919, -20.332114708668772], + [-47.28750448937122, -20.332818825436267], + [-47.287522308719176, -20.33278236883575], + [-47.2886331087368, -20.332384484377716], + [-47.28842456779009, -20.33311892980101], + [-47.29025725782738, -20.333716686014608], + [-47.29011923101266, -20.3343306241176], + [-47.29073764856593, -20.334223321634447], + [-47.29045686870199, -20.335129145539696], + [-47.29107161139135, -20.335341312331458], + [-47.29115488394554, -20.33587464534557], + [-47.2906818894962, -20.33597430436794], + [-47.29043882927843, -20.33667309812155], + [-47.291424621282644, -20.33688235813757], + [-47.291446991909254, -20.337538268321964], + [-47.29012389216909, -20.337526399079657], + [-47.289883950479684, -20.33802043575465], + [-47.29113961178112, -20.338372091257416], + [-47.291415490806294, -20.33923806198653], + [-47.29220946497895, -20.339384285380405], + [-47.292574968584454, -20.339089127513315], + [-47.293795733401495, -20.34013583033284], + [-47.29296351253983, -20.341026904384353], + [-47.294376406661854, -20.341488780596386], + [-47.2943529226923, -20.342384660960665], + [-47.2938187651623, -20.34296632228095], + [-47.29515769064986, -20.3441181768896], + [-47.29526170911012, -20.344799424862142], + [-47.2968892083537, -20.34682337452427], + [-47.29799155675707, -20.347512406162075], + [-47.298656671475314, -20.348930580270327], + [-47.29778893475851, -20.349692704389607], + [-47.29719813393483, -20.351628310523264], + [-47.297599007358414, -20.352170048619026], + [-47.29667456374527, -20.353343597986832], + [-47.29654174837789, -20.353778711073154], + [-47.29604197997126, -20.35604819723676], + [-47.296984486548745, -20.35783371089369], + [-47.296167963643946, -20.359951941345333], + [-47.29507319146901, -20.360682916891367], + [-47.294878617004834, -20.36247264192744], + [-47.293800031755794, -20.36484052801547], + [-47.29401171089411, -20.365907234300362], + [-47.29488028192776, -20.367881959103226], + [-47.295438691420685, -20.3677264516026], + [-47.29593780286896, -20.369700820252206], + [-47.295666043865495, -20.370109177964277], + [-47.292984001957635, -20.370810036821478], + [-47.293494016760484, -20.371649027049514], + [-47.29449192133025, -20.371230678814815], + [-47.294910403944385, -20.37170494210591], + [-47.29393056541666, -20.373805218894272], + [-47.295544923991656, -20.37541874508309], + [-47.294217179179356, -20.376654774296018], + [-47.29523705179808, -20.378337247752658], + [-47.294113981505255, -20.37918175333083], + [-47.294399507276445, -20.38075588238329], + [-47.29425037889103, -20.380852067655827], + [-47.29487994744687, -20.38126285052786], + [-47.29468277955428, -20.38202808920954], + [-47.292135630335565, -20.382818505819337], + [-47.29115252092909, -20.383650969945027], + [-47.29372936778364, -20.385678697233686], + [-47.293468217403884, -20.385767961308364], + [-47.29420980370721, -20.38618569966033], + [-47.294183735666536, -20.386207829722657], + [-47.29299036080559, -20.38722096057752], + [-47.29273773832501, -20.388666091614393], + [-47.290940745478586, -20.38721625386715], + [-47.2900861671848, -20.387113475620076], + [-47.28768636069867, -20.38841533410181], + [-47.28771001062685, -20.389194398326577], + [-47.289091752595446, -20.389631863587965], + [-47.28979536435114, -20.39100215059688], + [-47.2884797989761, -20.393672676291242], + [-47.28863268201689, -20.39402833087193], + [-47.29172343521258, -20.39801571620203], + [-47.29169545694638, -20.398049970216604], + [-47.29220290375809, -20.39852277319841], + [-47.29190419847324, -20.40054122153355], + [-47.290243417709654, -20.400190120889807], + [-47.28970987258722, -20.401787125569243], + [-47.28813297768544, -20.402411359129612], + [-47.28750925493762, -20.403174918515887], + [-47.28735775215657, -20.403463764086965], + [-47.28706828642984, -20.40401564388756], + [-47.285916039650765, -20.406212459191497], + [-47.28933596861344, -20.40958081664599], + [-47.28934012273303, -20.40957975908406], + [-47.28943187323976, -20.40967527230118], + [-47.28955780352603, -20.40979929974634], + [-47.289556399219805, -20.409804904929636], + [-47.290038216950286, -20.410306478876187], + [-47.28853880889937, -20.415497607844554], + [-47.28853936352358, -20.4160400774725], + [-47.29315403651906, -20.41849855807355], + [-47.29393079334001, -20.41851933059748], + [-47.29390526674531, -20.419150052872403], + [-47.293880538057635, -20.41974037113131], + [-47.29326130955552, -20.420461583683544], + [-47.29140969154184, -20.421559722953692], + [-47.28931115129987, -20.421186303676972], + [-47.28921530859209, -20.42124556108738], + [-47.28921531553452, -20.42191607102922], + [-47.289488636224156, -20.422128559051664], + [-47.29024102322731, -20.422345236681217], + [-47.29209905939792, -20.42383166330501], + [-47.293378478344, -20.423145626379725], + [-47.29401996379186, -20.423632058204202], + [-47.29654891461226, -20.427750926340284], + [-47.295058601259036, -20.427740601465274], + [-47.29335626145131, -20.4287006813753], + [-47.29386170997613, -20.429845063715742], + [-47.29471024457077, -20.431765212607658], + [-47.29492242447005, -20.432245354330504], + [-47.29302289133232, -20.432942676563375], + [-47.292153829795275, -20.434025412767802], + [-47.29102171329887, -20.43383735607857], + [-47.290521021312955, -20.4341764022487], + [-47.29070762286755, -20.434971004135928], + [-47.29026963349342, -20.435052162083977], + [-47.28976922512334, -20.434386906900798], + [-47.28773780684143, -20.435644305606754], + [-47.28788358259492, -20.437426366926974], + [-47.28871155261765, -20.439135747789173], + [-47.28845951120605, -20.44060513283449], + [-47.28697452351, -20.44287945206767], + [-47.28950076115672, -20.445003200271074], + [-47.28995242792041, -20.444970136231927], + [-47.290935520583226, -20.445872259483444], + [-47.291635357739516, -20.445725667961735], + [-47.292074214477715, -20.44663747235959], + [-47.29274360145357, -20.44688148903864], + [-47.29321433134092, -20.448228529521884], + [-47.29222394571539, -20.448539269315155], + [-47.29175921130836, -20.449284925249078], + [-47.2925694461381, -20.449534602334953], + [-47.29130416660194, -20.450015024716], + [-47.291194553733696, -20.450190892388406], + [-47.29146004675754, -20.451044806196034], + [-47.28854866927309, -20.452701528895247], + [-47.2869286688599, -20.454547032947303], + [-47.28601877031307, -20.454846377964415], + [-47.28559734580776, -20.455689232145993], + [-47.28477239143809, -20.45551469081801], + [-47.28418670431223, -20.45592351519224], + [-47.28482424847836, -20.4575564254267], + [-47.28418731992923, -20.457864441873316], + [-47.2817030834508, -20.457620771007125], + [-47.28151160506595, -20.457695223378984], + [-47.278702156376816, -20.459819166222108], + [-47.27932563022467, -20.46026734093334], + [-47.27951021463759, -20.46100406580498], + [-47.276552067310824, -20.461444555994134], + [-47.27654813317187, -20.46144752999984], + [-47.2747381219033, -20.463261979625337], + [-47.274259994142945, -20.46317720682828], + [-47.27049495548116, -20.466023153708857], + [-47.27031910301072, -20.467026705235558], + [-47.26829593475017, -20.467444815632312], + [-47.26732003222543, -20.467100089915874], + [-47.26550254297935, -20.467519292522006], + [-47.26419385559068, -20.468939237774364], + [-47.26248382758168, -20.469412465532102], + [-47.25993364645653, -20.46942198988889], + [-47.258155508213655, -20.471163067238397], + [-47.256786419764545, -20.473462607927672], + [-47.256358337970596, -20.473664910280352], + [-47.255956123404424, -20.474282223815635], + [-47.25629857574235, -20.47461097535904], + [-47.256101291937725, -20.475412038057474], + [-47.25482164164104, -20.47602337439963], + [-47.253968264905616, -20.47733306201979], + [-47.25421417015624, -20.477512745764365], + [-47.25405321679917, -20.478447289433937], + [-47.25104595113651, -20.47724037631745], + [-47.25034871857922, -20.47848036322144], + [-47.24876599175382, -20.479262037820938], + [-47.24785368067613, -20.48102921436397], + [-47.24360570237094, -20.482271190720134], + [-47.24163671561642, -20.484089101499144], + [-47.239125016527765, -20.484482513908905], + [-47.238799216147456, -20.485236330861213], + [-47.23198721801243, -20.487486577952854], + [-47.23005021484246, -20.487398949983326], + [-47.227567748766326, -20.489019745768466], + [-47.22731881093586, -20.491574379205165], + [-47.226022142441686, -20.490802615647546], + [-47.225631451822125, -20.491133381585193], + [-47.22516058760167, -20.49091116349276], + [-47.22529494963061, -20.491562385444393], + [-47.224086012325024, -20.491552102276096], + [-47.22399424690411, -20.49163008782497], + [-47.22382622864325, -20.4917728899154], + [-47.22344608040974, -20.492585017687173], + [-47.22200642101979, -20.493319550505934], + [-47.22167278433239, -20.493603103402393], + [-47.221409448887904, -20.494187051531302], + [-47.21979113299111, -20.495418942365866], + [-47.21968639165387, -20.495856924742636], + [-47.22005539472221, -20.496169108081116], + [-47.2202394307563, -20.496325839751567], + [-47.21998922149465, -20.497016040523807], + [-47.21880769424656, -20.49743827215227], + [-47.21753602854558, -20.49711871558922], + [-47.21213291778172, -20.50171010309892], + [-47.21195870135969, -20.502813501440972], + [-47.20478175131731, -20.50399089890455], + [-47.20365186299383, -20.503461757080718], + [-47.20309983468385, -20.502061140731662], + [-47.2004060985196, -20.50305814077264], + [-47.190805939657416, -20.509583070820774], + [-47.19044991312688, -20.510919209426024], + [-47.1885597577506, -20.511109559293654], + [-47.18528548704138, -20.51333461262216], + [-47.18524050613048, -20.514200012522046], + [-47.18430522842241, -20.513779222003908], + [-47.18141220431632, -20.51433879015553], + [-47.18133864353535, -20.51439890076144], + [-47.18121243655404, -20.514377427193867], + [-47.1783601225433, -20.514929064389914], + [-47.17815241952209, -20.515443236808764], + [-47.177704112221676, -20.515576647795488], + [-47.17739034881455, -20.51511660649987], + [-47.17471644831477, -20.51563367382881], + [-47.17356777527135, -20.51640674975163], + [-47.16715812769503, -20.517903311703506], + [-47.163939721681906, -20.519423105988345], + [-47.15938476307866, -20.519353462485107], + [-47.156868700639706, -20.52004726799782], + [-47.154965806773326, -20.520048417974724], + [-47.15336709175599, -20.52123205501764], + [-47.14953168136247, -20.527017505859178], + [-47.14898983533137, -20.53024446520376], + [-47.14749341047917, -20.531323029727222], + [-47.147316283141684, -20.5314507711444], + [-47.14731622614167, -20.531450811144463], + [-47.1467051279835, -20.531891532137028], + [-47.14484031361917, -20.538390317122094], + [-47.145679045141264, -20.540704439966323], + [-47.144904054724314, -20.541288781801388], + [-47.144628166775156, -20.541309098385625], + [-47.141968929641884, -20.541511719019212], + [-47.14234567847785, -20.542978302771118], + [-47.14231460216089, -20.543736205114758], + [-47.14116112567837, -20.54655931856486], + [-47.14085549590134, -20.54965205434173], + [-47.13927474550941, -20.552514700197243], + [-47.13859909046355, -20.55602572380424], + [-47.13811181907244, -20.561504844442055], + [-47.13811044154268, -20.561520334477706], + [-47.14262822494575, -20.5654961673013], + [-47.14331155487207, -20.565712775107233], + [-47.143200716358045, -20.56608662747655], + [-47.14320068235818, -20.566086743476685], + [-47.143199801362094, -20.566089730479693], + [-47.143076165910365, -20.566509345892676], + [-47.14220391663092, -20.567721945164273], + [-47.14151801593689, -20.568054284722308], + [-47.14132779759217, -20.568296568771064], + [-47.140819788504224, -20.569287479995168], + [-47.14046135719141, -20.570616144876286], + [-47.13987358418235, -20.57113307928013], + [-47.137840451888344, -20.57509856176477], + [-47.13707304617762, -20.57704340733471], + [-47.13599846273173, -20.579337688429224], + [-47.13556456789292, -20.58091002491661], + [-47.134745043975244, -20.583879789726154], + [-47.13442595468115, -20.585927241148333], + [-47.134212093165175, -20.58729949010147], + [-47.133516682857255, -20.588651936056273], + [-47.13343614695705, -20.59007984575074], + [-47.13284456466177, -20.591279168431797], + [-47.13176393892508, -20.59135509972361], + [-47.12679518430971, -20.590680086881644], + [-47.12573855506457, -20.590926718185244], + [-47.124927572690765, -20.59200773328262], + [-47.12421205895602, -20.593633317381162], + [-47.123538358066675, -20.594287641033514], + [-47.1232102789878, -20.59517661304894], + [-47.12343386474018, -20.59641528603828], + [-47.124742153578175, -20.598980571245406], + [-47.126178375530955, -20.60350212990505], + [-47.126303459352734, -20.606181463631348], + [-47.12573897969396, -20.609289898961197], + [-47.12432385602914, -20.610329035310933], + [-47.12394525308371, -20.610891760612258], + [-47.12374236627644, -20.61145526501543], + [-47.12365402767862, -20.612045341348498], + [-47.12377111789134, -20.613217822535773], + [-47.119059705179424, -20.615053603227864], + [-47.11358362864968, -20.618087756893317], + [-47.11116093250208, -20.62011547451589], + [-47.11009534752383, -20.620490961887743], + [-47.10918300113259, -20.62130012009926], + [-47.109009015184, -20.622127231925713], + [-47.1091294697194, -20.622654727408243], + [-47.10976876386547, -20.62365809774608], + [-47.110957376377804, -20.625001509752874], + [-47.11215713245937, -20.628669342596513], + [-47.11229774962934, -20.631468756338236], + [-47.112465944207386, -20.634817193225224], + [-47.11287593787904, -20.637834779482162], + [-47.113129405573446, -20.638579667226082], + [-47.11226452758014, -20.639483231374967], + [-47.11042597616016, -20.638978792280035], + [-47.103443102590376, -20.641829555708533], + [-47.1019859458454, -20.642694628122968], + [-47.09896318914356, -20.644079208974862], + [-47.097904963990686, -20.644372221302255], + [-47.097344310500475, -20.645023668719823], + [-47.09734978829888, -20.64577127898641], + [-47.098629214433025, -20.64765379800381], + [-47.098380156070846, -20.64914318207965], + [-47.0973548548003, -20.651017619926613], + [-47.096768093172074, -20.65165095539258], + [-47.096370521291334, -20.652729287627313], + [-47.09636366244002, -20.65364259698142], + [-47.096355423756954, -20.65462861336536], + [-47.09651955424047, -20.65626108362823], + [-47.09634170924124, -20.657658875048735], + [-47.09650253460029, -20.659251368610352], + [-47.097235812176784, -20.66227861536257], + [-47.097733564006795, -20.6630997185919], + [-47.100554639323946, -20.666941971018435], + [-47.10074122737035, -20.66707579878653], + [-47.10146106273833, -20.667808705547127], + [-47.10291704930262, -20.67001627630847], + [-47.1031588320563, -20.67038252393659], + [-47.103272150792876, -20.67135721506001], + [-47.10293441842905, -20.672978729370687], + [-47.10323628348508, -20.67379922204075], + [-47.10282111921333, -20.675158041416818], + [-47.10174324514879, -20.677195602752747], + [-47.1013086767803, -20.68200390965932], + [-47.10142390266656, -20.682512834080082], + [-47.10142931474331, -20.682536737077577], + [-47.101683907354065, -20.68366121695952], + [-47.10195033780786, -20.684022224797456], + [-47.1042339759216, -20.686685671574416], + [-47.10693155988542, -20.68885924185244], + [-47.10970646924917, -20.69306789511158], + [-47.11276331043601, -20.696632625413685], + [-47.112772567621, -20.69667160708295], + [-47.11324238967632, -20.697143009635962], + [-47.113770518097354, -20.698187204909633], + [-47.11344896150053, -20.69951984267534], + [-47.1152704780113, -20.70718975180595], + [-47.133549162338255, -20.707413933436584], + [-47.1345705068148, -20.706928127290837], + [-47.13615880590322, -20.707053961986357], + [-47.137184755579746, -20.70745829087685], + [-47.14016599280232, -20.7074946071968], + [-47.14498612500246, -20.70619612804385], + [-47.14724753866366, -20.707580664592513], + [-47.14903498557893, -20.70760234013686], + [-47.1516158333696, -20.706645745296868], + [-47.1523524081747, -20.705924215390958], + [-47.155464424440225, -20.70464661935262], + [-47.15773860633939, -20.704071651339277], + [-47.15839741131979, -20.70413188700951], + [-47.165567867072276, -20.701473471071907], + [-47.16593265579293, -20.701979139549483], + [-47.16604740456494, -20.701982932023526], + [-47.16703654028871, -20.70286825525389], + [-47.16935758328169, -20.703513218580703], + [-47.16968968848117, -20.703926110028153], + [-47.17120618441976, -20.709288882934818], + [-47.172810338450404, -20.711512285101552], + [-47.17357374400045, -20.712413880884554], + [-47.17043925323778, -20.7161474516248], + [-47.17001109173827, -20.716831970812805], + [-47.16996273220742, -20.71807815251], + [-47.1741641396547, -20.72152892052492], + [-47.17555562646141, -20.722500455334963], + [-47.17589848322354, -20.722953331226115], + [-47.17957415718327, -20.725972017985697], + [-47.18206983365025, -20.726854035106896], + [-47.18421459898662, -20.72873539523926], + [-47.18512068546743, -20.730526823740995], + [-47.186078230495866, -20.731313117720752], + [-47.18670978903928, -20.73162960699122], + [-47.18669512172021, -20.731934499131995], + [-47.186654420855305, -20.73288254655934], + [-47.18510190645257, -20.734647029486208], + [-47.18299105131589, -20.73570577834312], + [-47.18061759135935, -20.73640644962754], + [-47.17917808841668, -20.736405698434147], + [-47.17681872333388, -20.738075162300653], + [-47.17679306483546, -20.7382366773948], + [-47.17632375296593, -20.738585620515515], + [-47.17582750876553, -20.739437812402784], + [-47.17810676691893, -20.74008956790465], + [-47.18001258564499, -20.74034648233038], + [-47.18120068227112, -20.74097422032988], + [-47.182261736776006, -20.741277596246412], + [-47.18233378240574, -20.74157288898529], + [-47.18274137505879, -20.741788236062867], + [-47.18294632397321, -20.744083476865125], + [-47.184218566410564, -20.74929776761174], + [-47.18509523072351, -20.750537465217505], + [-47.18529799668946, -20.753721632612802], + [-47.186039758415795, -20.756761521214408], + [-47.1871451817609, -20.75782017248365], + [-47.18771935739628, -20.762188574833484], + [-47.18762194450913, -20.76388412340202], + [-47.18866852361773, -20.76992137708146], + [-47.189125244998515, -20.77083538546792], + [-47.18960003748903, -20.771153719897328], + [-47.192160922867544, -20.771413694705238], + [-47.193693064294315, -20.772589046868898], + [-47.19538802687105, -20.774959941825916], + [-47.199455508504066, -20.775154290573056], + [-47.20230421082979, -20.774715178312526], + [-47.205265010922076, -20.77483886605563], + [-47.20650218060184, -20.775490760150497], + [-47.20703874116426, -20.775516368376778], + [-47.2071711212762, -20.77584323525038], + [-47.207518623009285, -20.776026337682186], + [-47.209824663178175, -20.777994827473975], + [-47.211899711375146, -20.78114830017754], + [-47.21335660469038, -20.787343984278063], + [-47.21365456630584, -20.7916899701886], + [-47.21414300387126, -20.792516067029794], + [-47.214888553313386, -20.7930493668709], + [-47.21865178468213, -20.794641140581867], + [-47.22220712445212, -20.797035123846776], + [-47.225203654013065, -20.800594038712795], + [-47.22538372173425, -20.80144479762968], + [-47.22427342189752, -20.806476804781635], + [-47.22328886637909, -20.809390584915764], + [-47.21999959910238, -20.81504400894294], + [-47.219150966596395, -20.81734671357158], + [-47.2170160351734, -20.81955837791546], + [-47.21580147435742, -20.820224887745756], + [-47.21527685875492, -20.821165494320418], + [-47.214940295332404, -20.821916432035074], + [-47.214630916707414, -20.82418786065246], + [-47.21493378638061, -20.827714653257555], + [-47.227377155630904, -20.855985581649367], + [-47.2274355661678, -20.85611829057119], + [-47.227718423767676, -20.85676093419223], + [-47.2278090486006, -20.85696683007078], + [-47.240493872292504, -20.88577687400902], + [-47.22502271001017, -20.91210871349906], + [-47.21090767087958, -20.924634285241627], + [-47.19048944589553, -20.928713387514332], + [-47.193015564990446, -20.942548298022512], + [-47.18706893732993, -20.94998866244189], + [-47.1834614343199, -20.952137288953843], + [-47.182430912433105, -20.954142092882176], + [-47.18172574323889, -20.954305431454458], + [-47.180264833692284, -20.954643563711464], + [-47.17788554035672, -20.954519264207125], + [-47.17172774239667, -20.955847942551483], + [-47.16929147205095, -20.95698843309979], + [-47.16871048560896, -20.95850070188876], + [-47.168494261883446, -20.96302913597744], + [-47.164986204570326, -20.966547702768292], + [-47.163299910753345, -20.967117443591306], + [-47.16126748062962, -20.966884282945955], + [-47.1609617640302, -20.966964321997644], + [-47.15799924646547, -20.968850142586287], + [-47.156933534912135, -20.969002559927105], + [-47.15371355888266, -20.971389529693344], + [-47.15173960573117, -20.971848821092408], + [-47.15001937501239, -20.970465725281997], + [-47.148263764705824, -20.972988339956885], + [-47.14787042207866, -20.97823542669502], + [-47.14418843585747, -20.982881090270137], + [-47.14420168704651, -20.98293842826237], + [-47.1442017760477, -20.982938809262357], + [-47.14443887983099, -20.983964782501292], + [-47.15002417594499, -20.996172095289094], + [-47.150709656057266, -20.99683984331388], + [-47.15109554226574, -20.997977381895172], + [-47.15093808980577, -21.00611874243964], + [-47.15101924968953, -21.00829975752975], + [-47.15157300745754, -21.01080951549262], + [-47.154349056118946, -21.01342623546718], + [-47.15747948812882, -21.019320140854152], + [-47.15651558491246, -21.021905847857024], + [-47.155345559309424, -21.023421376918932], + [-47.153952341514945, -21.024338729682675], + [-47.15148331660369, -21.028818874947206], + [-47.14873938530876, -21.03540584244529], + [-47.14851158580898, -21.035952707132502], + [-47.14831112707695, -21.035956354565197], + [-47.147648511348685, -21.037899103078548], + [-47.14754845980249, -21.03924006007862], + [-47.14857086910059, -21.045350565389278], + [-47.147740548299346, -21.045460127216376], + [-47.147257542142206, -21.046530640641787], + [-47.146954260642175, -21.04720282652128], + [-47.146788726595865, -21.049420791056093], + [-47.14696114439277, -21.049928962504115], + [-47.1470083995426, -21.056837754890452], + [-47.14655054450717, -21.05954692785236], + [-47.13954955374053, -21.069777080623982], + [-47.139659013746964, -21.070428281623073], + [-47.14078664942233, -21.077136807612426], + [-47.14104656518926, -21.078683089609548], + [-47.14123701468227, -21.07981597760735], + [-47.14124488482652, -21.079862777607307], + [-47.1413559388631, -21.080523216605854], + [-47.14241269924722, -21.086807781591375], + [-47.14265957977692, -21.088275980587646], + [-47.142702776497586, -21.088503641576455], + [-47.142745973218275, -21.088731302565243], + [-47.139946812275696, -21.08890631266681], + [-47.13749197722219, -21.08851832482152], + [-47.137631560061436, -21.09027399515389], + [-47.13587487527771, -21.09097594819606], + [-47.13475469472327, -21.09083981021042], + [-47.128847848799374, -21.098253017530077], + [-47.1285740117075, -21.099710767098163], + [-47.12442936362801, -21.101862444814905], + [-47.1224300555092, -21.101577907022612], + [-47.12144473102209, -21.10173271157837], + [-47.12035813676307, -21.10214681739586], + [-47.11817730158806, -21.103959512054626], + [-47.11520983160537, -21.105191771898447], + [-47.11446271754595, -21.10588837876185], + [-47.113601128187476, -21.105416987447423], + [-47.11379673544107, -21.106850575546893], + [-47.11330577624039, -21.10886157612342], + [-47.11406735378893, -21.10919530205699], + [-47.11892713112953, -21.10954883846619], + [-47.118846165647724, -21.110693677056087], + [-47.12092681207846, -21.112200932253046], + [-47.12150831889381, -21.112455715661465], + [-47.121674902327406, -21.112742848865068], + [-47.12198754891467, -21.11296932810549], + [-47.12243644237361, -21.114055471435456], + [-47.12376697297824, -21.116348776755995], + [-47.124824745480865, -21.117447159605067], + [-47.12732426639518, -21.122166506916493], + [-47.126658191556, -21.124045996034486], + [-47.126681949075156, -21.12584280363295], + [-47.12957149105071, -21.12877934645287], + [-47.1315041824473, -21.12967839260174], + [-47.133198039547835, -21.133128464995572], + [-47.133475920790424, -21.13343822668386], + [-47.13340581747172, -21.1335516601348], + [-47.13348544476624, -21.133713841776014], + [-47.13395528909713, -21.133951088845976], + [-47.132818599534595, -21.135838590983937], + [-47.131937535320496, -21.13869765392003], + [-47.129852396728296, -21.14038066803536], + [-47.12726986596686, -21.144769248203445], + [-47.12455605984625, -21.145552440188247], + [-47.12205659407612, -21.147002895481666], + [-47.12023916949018, -21.149087660963826], + [-47.11904927917951, -21.149539065699088], + [-47.11902044886117, -21.151883530610576], + [-47.11805307861946, -21.153647738340727], + [-47.11775493185317, -21.15419147518225], + [-47.11838452269122, -21.1560118624806], + [-47.120087048045214, -21.15844878668162], + [-47.12163027867377, -21.16244961679139], + [-47.1220981525917, -21.164485265973696], + [-47.12319401119662, -21.166940827166606], + [-47.124018075517604, -21.1676911055197], + [-47.12409770257916, -21.16840493460527], + [-47.11901313004531, -21.175841755299846], + [-47.11889503063959, -21.183130814192744], + [-47.11923784863092, -21.18624764857781], + [-47.11897919509504, -21.186420448200526], + [-47.117910814878115, -21.187132726772152], + [-47.11714067904694, -21.18717501139908], + [-47.11011496690427, -21.193727785156373], + [-47.10808449548252, -21.19692016559887], + [-47.105603195528516, -21.198656641602273], + [-47.10327855281597, -21.201063303510175], + [-47.10159900130329, -21.20540688472602], + [-47.10110268144911, -21.20583731833346], + [-47.09985654849661, -21.20972025931886], + [-47.100055985607675, -21.21148977827975], + [-47.10004493808445, -21.214121470260785], + [-47.0997079912326, -21.214689009197098], + [-47.09893971210292, -21.214583228822935], + [-47.098236473118924, -21.214034512146622], + [-47.09700638207577, -21.211807806867135], + [-47.0959188057418, -21.21011619009905], + [-47.09448432037779, -21.209698445693345], + [-47.09055154960076, -21.210467389487274], + [-47.08881667123143, -21.210106649110514], + [-47.08763272386711, -21.208108210942775], + [-47.08702293210703, -21.207912715190904], + [-47.083519402037986, -21.20913015821568], + [-47.08086592514695, -21.209137079957987], + [-47.077459715702126, -21.208439554068836], + [-47.074941393203, -21.208401588499814], + [-47.071931936431994, -21.20940085837233], + [-47.069326626971716, -21.209511071043924], + [-47.06580263579384, -21.20788698706168], + [-47.06532235960187, -21.20766564442831], + [-47.062292954770854, -21.210346668206107], + [-47.062129220895166, -21.210650933015128], + [-47.06218033570226, -21.211093879296648], + [-47.06455665122299, -21.212415474980073], + [-47.065589759034175, -21.212758604313777], + [-47.066974364079414, -21.21351579859988], + [-47.067689610170085, -21.214157799533076], + [-47.06793505395219, -21.214294293679473], + [-47.06798318230069, -21.214421306014856], + [-47.06841390865236, -21.21480791796317], + [-47.06915062695494, -21.216243822898043], + [-47.069508042540996, -21.217154013459638], + [-47.072702029323004, -21.226110399105526], + [-47.07491456796654, -21.22770928518377], + [-47.07574011226176, -21.228240939045175], + [-47.07675097014984, -21.229036313000044], + [-47.07888317078486, -21.230577041614612], + [-47.078862784996815, -21.23069791080458], + [-47.07936211485712, -21.231090780247346], + [-47.0796974796543, -21.232925336192373], + [-47.07946093223152, -21.233919106068242], + [-47.07901900117459, -21.234563141260974], + [-47.078102859500774, -21.235203359030777], + [-47.0774853777411, -21.238863972206243], + [-47.0776154826171, -21.239282220027896], + [-47.07773803763572, -21.240719127288408], + [-47.07652560446035, -21.241671271263364], + [-47.0695155113376, -21.242115375608233], + [-47.06438665749583, -21.239832524872156], + [-47.06354209227694, -21.239808779691177], + [-47.06251712960543, -21.24027890008211], + [-47.060977821971754, -21.241946058026524], + [-47.05660818285191, -21.245273282706886], + [-47.05462884423057, -21.24559199110677], + [-47.05273155264721, -21.247014424736015], + [-47.052492480137516, -21.247978314608943], + [-47.05238395181405, -21.248415873005147], + [-47.05256927588357, -21.250991636554467], + [-47.05190412931077, -21.25206350970185], + [-47.051387003473174, -21.256462330075045], + [-47.051758051930605, -21.2578921988559], + [-47.051073801571285, -21.258782195665344], + [-47.050028227029195, -21.259337591133487], + [-47.049676336523326, -21.259631892041128], + [-47.045337760606344, -21.265731150247294], + [-47.045603260451216, -21.267414830694822], + [-47.04467413504843, -21.26785099386733], + [-47.04389083487226, -21.26821948208026], + [-47.04250862414634, -21.27222389557959], + [-47.04293263718005, -21.27740083416832], + [-47.04257536339062, -21.278429947322607], + [-47.04170394643274, -21.279765807703832], + [-47.039983110127665, -21.281440445049977], + [-47.04024319929642, -21.282325138814084], + [-47.042125513663706, -21.283254915080967], + [-47.042131854492084, -21.28438608748542], + [-47.04121336362481, -21.285022954710684], + [-47.04123923794505, -21.285516264837018], + [-47.04240196998161, -21.286997659865726], + [-47.041857591436305, -21.288004707417517], + [-47.04279352520017, -21.288509357576082], + [-47.04270640300284, -21.288964788933136], + [-47.042015205192, -21.288904828979376], + [-47.04233982061255, -21.28993634633253], + [-47.042103251562246, -21.290115539119387], + [-47.04281943811283, -21.29045067423735], + [-47.0410724241525, -21.29190055155933], + [-47.03980377185394, -21.292087350377532], + [-47.03791391701412, -21.293802590107234], + [-47.03780123619473, -21.296061568187408], + [-47.03604528067698, -21.296495073153096], + [-47.03022284563163, -21.3000514950863], + [-47.030277742212, -21.300560617594925], + [-47.03298363788445, -21.30635730043156], + [-47.0333245457443, -21.306686108824415], + [-47.03383403282262, -21.30817896936008], + [-47.0340454160347, -21.308631776631465], + [-47.03562820396223, -21.310538323256456], + [-47.03563097540633, -21.31151843261323], + [-47.03466073495733, -21.312000383895622], + [-47.032028268791336, -21.311890208562943], + [-47.03099443874367, -21.312227595929347], + [-47.03029995822712, -21.314279337195735], + [-47.02936680595234, -21.315178669552424], + [-47.029045377804536, -21.315202986258384], + [-47.02902845974413, -21.315204266295556], + [-47.02823683491703, -21.315264154034033], + [-47.02805828590544, -21.315529863519746], + [-47.027764197890974, -21.31596935532036], + [-47.02698238585242, -21.317137710448915], + [-47.02616378481178, -21.31836104667769], + [-47.026070110807105, -21.318501034932698], + [-47.02597643680243, -21.318641023187805], + [-47.025789088793154, -21.318920999697905], + [-47.02541439277449, -21.319480953718134], + [-47.024302326086826, -21.320082732352663], + [-47.02249304971563, -21.32106264863904], + [-47.022376821569516, -21.321179876934572], + [-47.02143811838945, -21.322126657321405], + [-47.02144641420884, -21.322823396663278], + [-47.02256716131748, -21.32560683633735], + [-47.02392938651358, -21.326859848678247], + [-47.02420939490597, -21.329009211869092], + [-47.023971553843744, -21.32934432350932], + [-47.023055530977416, -21.329890109621687], + [-47.02136260032642, -21.333393276698313], + [-47.02121382041137, -21.3357616238752], + [-47.02037911991176, -21.337629629380253], + [-47.01982909600156, -21.338096458747046], + [-47.018854689407966, -21.339735922470535], + [-47.0185194607882, -21.340799058593188], + [-47.01697690809961, -21.34285876070597], + [-47.01376902715086, -21.343716045984422], + [-47.01184077807911, -21.34540224179533], + [-47.008820674665664, -21.346094094627023], + [-47.00843031252509, -21.34634015823262], + [-47.00747930672133, -21.347845544166418], + [-47.004079092012546, -21.34989915530711], + [-47.001433728356325, -21.350024946090343], + [-47.000596808015956, -21.349196260175535], + [-47.00009503926175, -21.349164844440235], + [-46.99903449721752, -21.349583344126756], + [-46.99868392766332, -21.349892174002214], + [-46.998205292477216, -21.350799381438627], + [-46.99689789659148, -21.357247898256333], + [-46.997104444223694, -21.357747815366015], + [-46.99727209344567, -21.35815358355025], + [-46.99731508659862, -21.358197782466554], + [-46.998489692989196, -21.358368587594153], + [-46.998725827352494, -21.358961308303705], + [-46.999651416346204, -21.359566438522336], + [-47.00172057625374, -21.360011462200077], + [-47.00160186451541, -21.360699061714485], + [-47.00026454318825, -21.361229878229004], + [-47.002953460476085, -21.363993997802794], + [-47.003496826235, -21.36414766389061], + [-47.00444169201058, -21.365037413172004], + [-47.006001381543705, -21.365299620884347], + [-47.00640830370083, -21.365550009094317], + [-47.00710188814604, -21.366285629862826], + [-47.00837557136463, -21.36956735411322], + [-47.009507243087846, -21.37073052586881], + [-47.00943386154723, -21.370920452952824], + [-47.0099856383626, -21.371245544448907], + [-47.00893375707852, -21.373528386584134], + [-47.00825103795521, -21.373981762386965], + [-47.00757428128134, -21.37573322477319], + [-47.008028861698506, -21.376755048752006], + [-47.00778869136605, -21.37859184095817], + [-47.00712612450673, -21.379652137792792], + [-47.006083430693145, -21.38010206022592], + [-47.00650539916708, -21.38246389518945], + [-47.005261107338846, -21.38321354117253], + [-47.00503223759451, -21.384064547987204], + [-47.00622883320504, -21.385708478999675], + [-47.00900485193885, -21.392920042315474], + [-47.01416526737301, -21.393859441403478], + [-47.014383753635585, -21.394293997166937], + [-47.01464370256351, -21.394374641926866], + [-47.01614380106104, -21.395912551234183], + [-47.01661805456207, -21.39699928660568], + [-47.016697083501164, -21.3984585969754], + [-47.01639365218915, -21.39919336290863], + [-47.01478943042709, -21.400072434963487], + [-47.01463934592158, -21.40029600959172], + [-47.01506829933794, -21.4016589207088], + [-47.01421674772827, -21.403905156396654], + [-47.01162371991212, -21.405097454483634], + [-47.01093262977438, -21.40648890850514], + [-47.01022449592589, -21.40687220353069], + [-47.01003057606405, -21.40716104043565], + [-47.0099274650122, -21.407704755144994], + [-47.01082176098668, -21.408344540436392], + [-47.010687276670616, -21.409623427204586], + [-47.01113468709518, -21.40991773134003], + [-47.011242484881215, -21.410470116310748], + [-47.01077534006829, -21.410851359469508], + [-47.008854067813495, -21.410852538652325], + [-47.00816410699636, -21.41116884527185], + [-47.00818163000914, -21.411202519299113], + [-47.01281318417697, -21.41632996559393], + [-47.012796174055005, -21.41639275336166], + [-47.013291608540705, -21.416845357217337], + [-47.01307192872417, -21.418452166292667], + [-47.013420505915846, -21.419602877960667], + [-47.01195802129841, -21.422768682322612], + [-47.01168669027404, -21.42276910891387], + [-47.01145202038982, -21.42277015442551], + [-47.01136644429271, -21.421669905308487], + [-47.01120827876411, -21.422253663998013], + [-47.00645260791563, -21.421728689744597], + [-47.00642284500257, -21.421817784025745], + [-47.00548246879915, -21.42195839912592], + [-47.000124031376835, -21.421491597618065], + [-46.99836710308331, -21.42243269179334], + [-46.99742898470056, -21.422350884153484], + [-46.99347304167178, -21.424802525648243], + [-46.99317935686062, -21.425796410340112], + [-46.990819604878524, -21.425373119316706], + [-46.99072786694418, -21.42404795515009], + [-46.98876063544524, -21.422818710023336], + [-46.98732134257009, -21.422135981715176], + [-46.986512839785505, -21.42264664266478], + [-46.98765176092897, -21.42418414476344], + [-46.986275240561625, -21.424921759033804], + [-46.98481744970704, -21.427190983054807], + [-46.98126474658209, -21.426516692528523], + [-46.97931232933689, -21.42456893004262], + [-46.977044596836095, -21.423799002682994], + [-46.97665282113965, -21.42331202735156], + [-46.97664917790778, -21.421619705723483], + [-46.9762207657687, -21.420609365274768], + [-46.97529215344186, -21.419881760019056], + [-46.97482051394301, -21.41842081280928], + [-46.97477505434956, -21.418367378726373], + [-46.97338976796075, -21.41976833010969], + [-46.97249343994101, -21.42232578101925], + [-46.97087519096868, -21.422788215709094], + [-46.968375454506585, -21.42238664098812], + [-46.966930552262916, -21.421674279857836], + [-46.96604378872937, -21.420800181454073], + [-46.965945124795034, -21.420556000267943], + [-46.96357502330462, -21.419642512134043], + [-46.96327700828772, -21.42000969516329], + [-46.96240869466444, -21.421079547452283], + [-46.9598898711136, -21.421876997221553], + [-46.9597906456161, -21.421952914646383], + [-46.95850267739116, -21.423083647678123], + [-46.95840711587255, -21.424035287255993], + [-46.95711218296901, -21.42524038352254], + [-46.954068478161126, -21.424726044934275], + [-46.952183082576646, -21.42213688904513], + [-46.95062134558294, -21.422507172573752], + [-46.949540119454085, -21.420081871999837], + [-46.94866719089574, -21.420784524159586], + [-46.94737087931913, -21.420516528869452], + [-46.94692792642626, -21.420832099949802], + [-46.94641468884444, -21.422183869575743], + [-46.944657761480286, -21.421496905125156], + [-46.94404369133187, -21.423176752094623], + [-46.94351252277345, -21.423359286315808], + [-46.94273837508902, -21.42265506772694], + [-46.942327235267996, -21.42295129873095], + [-46.941000630367526, -21.422645008592983], + [-46.940594199208775, -21.422800208194506], + [-46.9395405752876, -21.424792494472758], + [-46.938581687255166, -21.425034329643548], + [-46.9369865760126, -21.42495490907125], + [-46.93469936932059, -21.42574996733172], + [-46.933351224527556, -21.42547519714884], + [-46.93302426059575, -21.424877489994074], + [-46.92927575252051, -21.423763042765405], + [-46.92907437117131, -21.423807625780157], + [-46.925903309476226, -21.423133889391835], + [-46.92250015200271, -21.427332441366804], + [-46.92122579390258, -21.42762737523958], + [-46.920838600480884, -21.427024796877497], + [-46.92074811943754, -21.42711171356496], + [-46.91717731963176, -21.421303092335506], + [-46.91594681727602, -21.420939259107396], + [-46.91567634632846, -21.420889949130654], + [-46.910373137418624, -21.421082932791467], + [-46.90876429386009, -21.421674522929365], + [-46.908512590754405, -21.421150597704848], + [-46.90828575809598, -21.42115884578923], + [-46.90595720125836, -21.418840665278452], + [-46.903911283050526, -21.419093968432367], + [-46.9034619501103, -21.417789010901767], + [-46.90131970520588, -21.415458123635016], + [-46.90074136162702, -21.413688820203472], + [-46.89943473578619, -21.413735280044726], + [-46.899120197060164, -21.414327331952563], + [-46.89920968455317, -21.416003302404924], + [-46.89735891528096, -21.415901989365008], + [-46.896975323563794, -21.416603383464402], + [-46.8964096481999, -21.41691901680824], + [-46.8954923914748, -21.416820193751914], + [-46.893972931171305, -21.416199356794984], + [-46.893755198124424, -21.416110251230933], + [-46.89357640531695, -21.415653319113794], + [-46.89349451827358, -21.41568369594174], + [-46.889172189425686, -21.41120423463797], + [-46.888864981030906, -21.411047377835388], + [-46.88847898365902, -21.4104857965763], + [-46.88771457955923, -21.409693558435187], + [-46.88584515601389, -21.408801499484795], + [-46.88509687142749, -21.40769137366981], + [-46.885188136912156, -21.407343195338044], + [-46.88523912662429, -21.407148668152704], + [-46.88420770169669, -21.406738749219468], + [-46.88400812610554, -21.406500677977707], + [-46.878725072730376, -21.40557222931773], + [-46.87825873418741, -21.406360123905326], + [-46.87716981205032, -21.406358143252874], + [-46.87633907742339, -21.40515285541804], + [-46.874191824653984, -21.40477541378164], + [-46.87366789298081, -21.40523405036698], + [-46.86857447914134, -21.40421952795064], + [-46.865621346590075, -21.401247918156084], + [-46.86546453881053, -21.39955390683379], + [-46.86606951739345, -21.39775978172344], + [-46.86551723641085, -21.396140729327737], + [-46.86431656283347, -21.39646825410352], + [-46.86412068478813, -21.395535911161776], + [-46.86354559674774, -21.39516860587325], + [-46.859443396387626, -21.39428464350262], + [-46.859267311802796, -21.394496330204458], + [-46.85870435177137, -21.394538958432737], + [-46.85850803153544, -21.394083071441603], + [-46.85822723515518, -21.394022558451717], + [-46.85608393054521, -21.390273507875506], + [-46.85368329528433, -21.391122311901025], + [-46.85151197293448, -21.390672947395444], + [-46.850817513416786, -21.389909865590194], + [-46.84975937047868, -21.390347262037068], + [-46.84845670258069, -21.389960705686732], + [-46.84641466616047, -21.390500961289032], + [-46.842533406215324, -21.389604541280466], + [-46.84212206857313, -21.38909199479336], + [-46.842056378162134, -21.38908904513395], + [-46.837044947600155, -21.384265980837476], + [-46.83635408101041, -21.38402544636379], + [-46.83568631598647, -21.383014719400204], + [-46.83570871565354, -21.382979904186328], + [-46.83520934424677, -21.382499269048143], + [-46.83604474125045, -21.370708463008377], + [-46.831458081640335, -21.366681257774204], + [-46.83128821597853, -21.36662864438447], + [-46.82427872003822, -21.367304420681492], + [-46.820066437459936, -21.36665759845459], + [-46.817758583379955, -21.366934834509824], + [-46.81214706154183, -21.36956866957633], + [-46.80529295843612, -21.371575566053572], + [-46.803790691988496, -21.371681275312532], + [-46.80022593975805, -21.371371826025236], + [-46.79292680075966, -21.373341926687107], + [-46.79221045611295, -21.374179336095466], + [-46.79129060727786, -21.374041305008586], + [-46.78998641188425, -21.373455865565283], + [-46.78833128744245, -21.37075554037464], + [-46.78731694435205, -21.369888497906928], + [-46.78665095732919, -21.36942820709077], + [-46.78475836079753, -21.369698456245708], + [-46.782655530049695, -21.371022812271526], + [-46.78194306677917, -21.371201578866327], + [-46.781736872121044, -21.37125292632772], + [-46.78081702336641, -21.370331879925427], + [-46.78024916279163, -21.368803646440423], + [-46.77664638525151, -21.363232245953867], + [-46.77523376921666, -21.362606575759372], + [-46.769225463461545, -21.36182520027565], + [-46.76781120423119, -21.361067921990333], + [-46.765154061885085, -21.360560009457277], + [-46.764096477299596, -21.362373319444174], + [-46.760237767244725, -21.363035863945274], + [-46.75928735752273, -21.363400975120268], + [-46.7591062892827, -21.36396646952439], + [-46.76175360928553, -21.373647811777428], + [-46.762077077651654, -21.37382803936643], + [-46.76258595759623, -21.375465113938798], + [-46.76178906693828, -21.37684330819542], + [-46.75913352680949, -21.379284794849713], + [-46.758044180220466, -21.37992091343236], + [-46.75431650935833, -21.382097670269644], + [-46.7543141473551, -21.38210002127567], + [-46.75098413078801, -21.38541406572315], + [-46.74925533148571, -21.385937795625534], + [-46.747138638715924, -21.385913487680988], + [-46.739659952665136, -21.39072790743843], + [-46.739423826482266, -21.39306877149601], + [-46.73481874383811, -21.39466627197067], + [-46.73406401485492, -21.394623006563545], + [-46.73324484005556, -21.393880528496975], + [-46.73012325014822, -21.393112730447275], + [-46.728819936914164, -21.393418534260825], + [-46.72622870699104, -21.393401153779493], + [-46.7244954552659, -21.39212696695658], + [-46.724394599585324, -21.39200594612236], + [-46.72407755999971, -21.391625528842336], + [-46.72401940670681, -21.3916112223415], + [-46.72140019710073, -21.39016533518656], + [-46.720893067667134, -21.390138322825337], + [-46.718429773863534, -21.39119833450659], + [-46.71517054422204, -21.393158565250552], + [-46.713703378160794, -21.395014733134087], + [-46.712661303935256, -21.39736776031504], + [-46.710619488496306, -21.399148791392932], + [-46.70972625681936, -21.40190324442153], + [-46.70792532177115, -21.405105060567667], + [-46.70749508282057, -21.40538812260019], + [-46.70641129556599, -21.405340373890095], + [-46.703271654371854, -21.40320973570707], + [-46.70108339031566, -21.401285406579564], + [-46.69909063445973, -21.397089165102624], + [-46.69487485290427, -21.391733740543934], + [-46.69386596374441, -21.390539534546576], + [-46.692222551746646, -21.382927473149078], + [-46.689893736657986, -21.381226161150693], + [-46.68792823285379, -21.380281010938795], + [-46.684465252324536, -21.376868588890627], + [-46.68239809522577, -21.37605666190786], + [-46.680119650853825, -21.375632317438484], + [-46.67594730971867, -21.375597210452327], + [-46.674369586214304, -21.374988351549362], + [-46.67404693001707, -21.37450115699263], + [-46.673893955953005, -21.374472659673902], + [-46.66696574802486, -21.361765101857035], + [-46.6659798017678, -21.361654807824024], + [-46.66510040002583, -21.361907506792594], + [-46.661842575270555, -21.364244691665974], + [-46.660076687555325, -21.364255254412193], + [-46.65888134800958, -21.36426240394774], + [-46.656210965292495, -21.36487083285768], + [-46.65320459341287, -21.36396369705333], + [-46.64826349874472, -21.364136745793868], + [-46.64764784815373, -21.36468969391617], + [-46.64716639411048, -21.368724556616762], + [-46.64566049094488, -21.371437393936095], + [-46.645376660718945, -21.37286572378906], + [-46.646988868034555, -21.374498653282654], + [-46.64742116489009, -21.374821160617245], + [-46.64875700064454, -21.376323705413267], + [-46.64886297268503, -21.378231447982976], + [-46.648763225854886, -21.37845823728876], + [-46.64805328406448, -21.38007239846515], + [-46.64740295168659, -21.3815510337573], + [-46.64743198428442, -21.385903866352596], + [-46.649169818518786, -21.388787445726507], + [-46.64932604571317, -21.38944418666865], + [-46.649178975897414, -21.39221797613473], + [-46.64795858081621, -21.394102973507085], + [-46.647253075770976, -21.395193474457244], + [-46.644563956549, -21.397274778026528], + [-46.643274335726126, -21.397731156951284], + [-46.642850817117996, -21.398147181022633], + [-46.64107495332443, -21.40143611115942], + [-46.63926585200541, -21.402506256441693], + [-46.639055742443425, -21.40301685310026], + [-46.63976652368119, -21.404873763367572], + [-46.63986569458773, -21.407967048447226], + [-46.639075012130846, -21.409844634907465], + [-46.63779086448039, -21.41118630219108], + [-46.63347291219291, -21.412930515077523], + [-46.631597002026794, -21.413348591230402], + [-46.63047619472467, -21.41334451260533], + [-46.62819143516807, -21.411779672794808], + [-46.62701570416264, -21.411984126372573], + [-46.62515252080395, -21.413948475144213], + [-46.621293894543086, -21.419918865824524], + [-46.61890881672793, -21.421696894625587], + [-46.618870582841566, -21.421803839751444], + [-46.61877294543277, -21.42207703776335], + [-46.619536568483554, -21.423669778453085], + [-46.621261370008206, -21.425093389061903], + [-46.62111819786741, -21.42649376295225], + [-46.61932472256267, -21.42754990919796], + [-46.61876124643324, -21.427721431232758], + [-46.61638448532772, -21.429923970371544], + [-46.61642549041218, -21.430001043373384], + [-46.61652678561803, -21.430747845471902], + [-46.61653991918769, -21.430844134781296], + [-46.617419307556574, -21.431945671073183], + [-46.62013961252947, -21.434468878369696], + [-46.62049003490305, -21.435713125147604], + [-46.62047085833461, -21.43592054227523], + [-46.619079753673795, -21.437839875030907], + [-46.61767136156795, -21.438782671414096], + [-46.615705396776285, -21.441964916919627], + [-46.61206334888243, -21.442038675351935], + [-46.61179107435724, -21.442089467495872], + [-46.60685884449897, -21.445114636007386], + [-46.605012415358885, -21.445092849913724], + [-46.60233851654872, -21.44445753331546], + [-46.598364382936836, -21.44266726398442], + [-46.59470389683231, -21.44017888769027], + [-46.59361046081132, -21.438411580506404], + [-46.5912981329415, -21.436862191962422], + [-46.590761327945664, -21.43699048369332], + [-46.58762272003061, -21.435811245839183], + [-46.58372183799056, -21.4337268442122], + [-46.579537567216235, -21.429315880193794], + [-46.5780572984842, -21.428059603791006], + [-46.57696211080988, -21.427453980849425], + [-46.57585246150325, -21.42795507465771], + [-46.572244208769554, -21.433742173152908], + [-46.57084458912587, -21.43726540294992], + [-46.56882311472893, -21.43865372281397], + [-46.56666738233012, -21.438826921244626], + [-46.56334091890589, -21.440694510461785], + [-46.56186216084515, -21.442307681083935], + [-46.5606709705261, -21.442826856822848], + [-46.55833060932375, -21.443154358908423], + [-46.55530308644544, -21.441193357904098], + [-46.551086057597786, -21.4407788843471], + [-46.54927182443759, -21.441069360153605], + [-46.54817547900195, -21.440978703429703], + [-46.5471097550395, -21.4408900897736], + [-46.543420896429645, -21.443564745436017], + [-46.54067581395941, -21.44667396770104], + [-46.539080584782894, -21.447895805592157], + [-46.536228183031284, -21.449639054360503], + [-46.53418027470307, -21.449042106426344], + [-46.531860947133225, -21.447125399497004], + [-46.52894194694004, -21.44549083995166], + [-46.52645073425387, -21.44561795253422], + [-46.52526207877835, -21.445997530326295], + [-46.52442934118873, -21.446572371933136], + [-46.52154153126152, -21.447477276411345], + [-46.52064900842598, -21.44813862257793], + [-46.52012489649994, -21.44873735938395], + [-46.51964349345042, -21.459520234184055], + [-46.51997757321571, -21.460682140398724], + [-46.52000810277477, -21.462515330124187], + [-46.51750309552243, -21.465156724547413], + [-46.51702578732744, -21.465422717669064], + [-46.515259156557285, -21.46526671287702], + [-46.51215833370785, -21.46763782358406], + [-46.51150856902216, -21.469121088903297], + [-46.50970042913948, -21.470395888267696], + [-46.50985125209441, -21.47140334970402], + [-46.51167942598163, -21.475868317055255], + [-46.51259625234559, -21.47701458401553], + [-46.51268119527069, -21.477673542120552], + [-46.51217828941027, -21.478943579729933], + [-46.51154585874275, -21.479520154809883], + [-46.510998768009145, -21.481476067039537], + [-46.51065115140318, -21.484669030424552], + [-46.50945655564237, -21.48698925223158], + [-46.50931994678209, -21.487477580505963], + [-46.50932596580631, -21.488180196737982], + [-46.50932664500135, -21.488259539770787], + [-46.5093383343564, -21.489624051335223], + [-46.51171450360006, -21.489654826330835], + [-46.51186880520037, -21.489656826005803], + [-46.51180133571909, -21.492038501175813], + [-46.51189857530059, -21.492552338651006], + [-46.51897444453419, -21.50058550970116], + [-46.51911657390234, -21.500667832435298], + [-46.519698929896265, -21.50138662551326], + [-46.52013078229815, -21.50621565267764], + [-46.51905846630885, -21.508334554857342], + [-46.51649729033861, -21.51076951432263], + [-46.516550506141776, -21.511838132670174], + [-46.51871070546669, -21.513065166628376], + [-46.52167199389967, -21.515531409422596], + [-46.52280682852742, -21.518509632300272], + [-46.522554708042186, -21.519753308223326], + [-46.523913835450955, -21.521522213896716], + [-46.52447763897605, -21.521795326173923], + [-46.52462417888398, -21.52234664510038], + [-46.52342087802432, -21.525956816199102], + [-46.52342619394836, -21.53043482011088], + [-46.522282286583525, -21.53209997324947], + [-46.52168159239164, -21.532974345897756], + [-46.521002374375385, -21.534866601149712], + [-46.520512633117036, -21.535537678475702], + [-46.520083734740936, -21.534932019470673], + [-46.52003831261526, -21.535020253029998], + [-46.51705142465966, -21.535299564830115], + [-46.515766703315116, -21.535760645625313], + [-46.514969580800475, -21.535494210531766], + [-46.51316140924273, -21.535663246737577], + [-46.51178853195888, -21.536181058231268], + [-46.51155430952598, -21.536375246810895], + [-46.510549774027155, -21.53817664671403], + [-46.50714313472538, -21.544285657561467], + [-46.50532567571422, -21.54562285519357], + [-46.50076624414459, -21.553265666409835], + [-46.50049718317122, -21.555029022273192], + [-46.50306409879337, -21.561754048730275], + [-46.510590013910836, -21.56563153966611], + [-46.51226007613806, -21.565871846013906], + [-46.51228958626271, -21.565876092953125], + [-46.51230132737234, -21.56590240893951], + [-46.51281371315823, -21.56705099834671], + [-46.51235078398668, -21.568534943967126], + [-46.512260395096824, -21.568824691858747], + [-46.51220938632022, -21.57028499125853], + [-46.512618778088616, -21.572658948172577], + [-46.51293967831266, -21.57313963856755], + [-46.518029511371395, -21.579536699675135], + [-46.520370293694064, -21.581088865336145], + [-46.52244278929365, -21.58500569361282], + [-46.52262291446315, -21.586834819014204], + [-46.52187069258189, -21.58848413031997], + [-46.51945581984574, -21.590522639797996], + [-46.51882440938953, -21.59203924283576], + [-46.51888451840473, -21.593552037840755], + [-46.52487754796698, -21.601455711484473], + [-46.52472930577393, -21.601611551866572], + [-46.52420066408887, -21.602168667229815], + [-46.5220415545121, -21.602900725136347], + [-46.52045726345821, -21.603753553871886], + [-46.51642508352133, -21.6064895236215], + [-46.516369327570814, -21.60700669596192], + [-46.51772615921164, -21.6087959498437], + [-46.51861334296877, -21.61301743464442], + [-46.519705930225136, -21.613593581348937], + [-46.52334540912992, -21.614564937358434], + [-46.52357889133752, -21.614688293914195], + [-46.526464681264144, -21.616212950422543], + [-46.53290385907833, -21.620552299689155], + [-46.53425722284617, -21.621265782564393], + [-46.534273812208475, -21.621475448770614], + [-46.5347316559803, -21.621783964190836], + [-46.534412319961234, -21.62322599753854], + [-46.53482566424422, -21.628450163861892], + [-46.53498083526455, -21.628680138878273], + [-46.537865762777784, -21.629084538600473], + [-46.538013412459556, -21.62901829427924], + [-46.5401533080876, -21.629152290772137], + [-46.540891155895665, -21.629508573337766], + [-46.54734168526058, -21.630412482232995], + [-46.54767423984934, -21.63086535752209], + [-46.54781622917027, -21.63093071617805], + [-46.54805984970095, -21.63139048014204], + [-46.552189952395004, -21.637014594249738], + [-46.5530643197555, -21.637536277777148], + [-46.553427737711814, -21.63857210644029], + [-46.55244452878443, -21.64340488759104], + [-46.5488344616048, -21.64836633075384], + [-46.54859129947916, -21.64897510674695], + [-46.54855303321348, -21.649716542585054], + [-46.54864042055892, -21.650060236166187], + [-46.554956592609166, -21.65346192579231], + [-46.55648070802701, -21.652940077249617], + [-46.557252632297306, -21.653412742839457], + [-46.55855225761631, -21.653212730691237], + [-46.560751665933815, -21.65353141412172], + [-46.56511825889972, -21.6559777278133], + [-46.56636632433316, -21.657435283757852], + [-46.56714731894207, -21.65969875804192], + [-46.56658805561053, -21.66125037152543], + [-46.56633785959697, -21.6673742369691], + [-46.56686932800093, -21.669487323769733], + [-46.56682102043113, -21.670143117150047], + [-46.566160777895284, -21.67170747391384], + [-46.56585037409015, -21.679301014545278], + [-46.570666973518755, -21.681796970730375], + [-46.573158687706, -21.68216392463541], + [-46.57522263715186, -21.68415751792849], + [-46.5769223545503, -21.685038189816193], + [-46.57896531417323, -21.684599372626572], + [-46.57958548486096, -21.68305639122551], + [-46.58350469887158, -21.68297466078124], + [-46.585609523875576, -21.68317202956662], + [-46.60896424446037, -21.678152408661898], + [-46.60910849976933, -21.67795269469011], + [-46.60986796710141, -21.67770532895457], + [-46.61306271388869, -21.677271134347357], + [-46.62117873403762, -21.67552564004746], + [-46.62126019038132, -21.67604811081707], + [-46.62165390266848, -21.676044115921176], + [-46.622043955169225, -21.676039803080364], + [-46.624007573415774, -21.68033308963824], + [-46.625286464712076, -21.687327815787626], + [-46.625296821031974, -21.689053632481198], + [-46.62442645276785, -21.690710922042626], + [-46.624340578302856, -21.693010591557073], + [-46.62754149846733, -21.695027264574676], + [-46.62912286439679, -21.695314364835536], + [-46.62962513143368, -21.696559207268887], + [-46.629257070786366, -21.697368554753865], + [-46.62960150677008, -21.701636557873204], + [-46.630377384753736, -21.703166273383218], + [-46.63032375163624, -21.70521604434721], + [-46.62956559090204, -21.70690972668279], + [-46.626986613317634, -21.709092083146455], + [-46.625769482644465, -21.71152758977947], + [-46.62435127889055, -21.712708481337007], + [-46.62329124646719, -21.714253129469903], + [-46.6228998667059, -21.716035477834893], + [-46.62308800919667, -21.717065411675105], + [-46.62755087910244, -21.727491738474], + [-46.62892564509378, -21.73011208666545], + [-46.6279657682327, -21.73247008171326], + [-46.626037639023906, -21.734592227754018], + [-46.62610193794448, -21.73477205143478], + [-46.62873293735643, -21.738179932732187], + [-46.6301716245836, -21.739615478905336], + [-46.631290965366524, -21.741396649223645], + [-46.631269715833014, -21.74201871252656], + [-46.62949723667594, -21.744720858473016], + [-46.62912379164274, -21.74529017651519], + [-46.62874760927828, -21.746205360770478], + [-46.628200901262666, -21.75019202888716], + [-46.62851183048933, -21.75180374053065], + [-46.62856431498658, -21.755533313959056], + [-46.62751819880163, -21.7631084713525], + [-46.62654909159582, -21.76648204829642], + [-46.6306592994081, -21.76858075255537], + [-46.639420123519216, -21.768449497665884], + [-46.63987032222447, -21.76896703227582], + [-46.63989640055378, -21.76896881798754], + [-46.64107074379527, -21.77004054788613], + [-46.64145020994329, -21.770783188592098], + [-46.646013494170646, -21.77602860344517], + [-46.65396552227308, -21.779223843215252], + [-46.65388460686815, -21.779519652036054], + [-46.65444095602284, -21.779743183899726], + [-46.65476351949575, -21.780230534399983], + [-46.65478438277265, -21.78110854671458], + [-46.65203280164187, -21.787333147234413], + [-46.65168216107571, -21.788451498453608], + [-46.65165168671663, -21.789925503556713], + [-46.656159947807815, -21.79470666316809], + [-46.66008682215433, -21.798192393201596], + [-46.66282750705197, -21.801777118948795], + [-46.667699189490314, -21.80694264317891], + [-46.667747420687355, -21.80709026942294], + [-46.66817473585357, -21.807462202414303], + [-46.66920527892193, -21.809479145996203], + [-46.66921129466702, -21.81157079407636], + [-46.67072593604138, -21.81620648639346], + [-46.67104386693725, -21.816652411797715], + [-46.67250225388587, -21.81783137755285], + [-46.68115424950472, -21.823852241841966], + [-46.683043462996054, -21.82629484671837], + [-46.68390708870854, -21.82705008949832], + [-46.685472674230326, -21.828315438876476], + [-46.685586947826565, -21.828519098398946], + [-46.685948368688194, -21.828835149419337], + [-46.68793521350266, -21.832704081062197], + [-46.688232705734805, -21.83323424324576], + [-46.691420450686685, -21.83746057498271], + [-46.69116439637907, -21.838131628812693], + [-46.69017816904526, -21.84071605500969], + [-46.68928867441925, -21.8418431214061], + [-46.68892923848673, -21.842028628265204], + [-46.68892172046725, -21.842032508283125], + [-46.6868800031695, -21.84308625016308], + [-46.68596938880639, -21.84355622433962], + [-46.68314463147296, -21.845013549090673], + [-46.68282782272722, -21.844810218699134], + [-46.68190201524627, -21.845654630060437], + [-46.680091386924964, -21.84793209693272], + [-46.67947467947473, -21.848707812592423], + [-46.679140264230476, -21.849128450492373], + [-46.676980083831666, -21.851122274012443], + [-46.67527958100583, -21.851440545849535], + [-46.674987001851854, -21.851435110485237], + [-46.674989391011536, -21.851494857504278], + [-46.67470944605244, -21.851547254135916], + [-46.672249284047005, -21.85040711757304], + [-46.666775887911605, -21.85084871477379], + [-46.666596880117055, -21.851422364767664], + [-46.663626043473606, -21.860938364120155], + [-46.66098607501842, -21.865644330793728], + [-46.66075631779852, -21.865888642122226], + [-46.65799800303852, -21.873592225680955], + [-46.65808956862254, -21.873949811497305], + [-46.658273905154616, -21.874669698389106], + [-46.658555418022395, -21.875769340223954], + [-46.658013199395654, -21.877949310295996], + [-46.65761077845735, -21.878597618438206], + [-46.6542919013397, -21.880519902460996], + [-46.650673446024825, -21.88124110664581], + [-46.64798630481609, -21.88095766938792], + [-46.64919834667931, -21.884583522228972], + [-46.64917937933598, -21.885044931386638], + [-46.652793317146056, -21.895024352601432], + [-46.65335118257954, -21.8960292870676], + [-46.66375934405822, -21.898081705121573], + [-46.66427097511542, -21.898626218125756], + [-46.666020150735406, -21.899793483717612], + [-46.66716371366249, -21.901704774751806], + [-46.67126752605892, -21.906071922963015], + [-46.6716749055452, -21.906415237049377], + [-46.67361638661352, -21.908585773684827], + [-46.67422848849383, -21.911549480548288], + [-46.66871832932305, -21.91881634555142], + [-46.6662075979395, -21.91977886143443], + [-46.66546259234863, -21.921093400598313], + [-46.6653093104281, -21.922260634635755], + [-46.66639740483347, -21.92794308736255], + [-46.66842536417333, -21.931074989170867], + [-46.667751531551374, -21.933057029450726], + [-46.66254917472079, -21.938403299011487], + [-46.660956339322574, -21.939128952793173], + [-46.657926225780784, -21.939254840476046], + [-46.65644378461053, -21.93978977112382], + [-46.65583081381939, -21.940200140616344], + [-46.654094370232635, -21.942201711061802], + [-46.65372334084847, -21.944601076851786], + [-46.65427345438022, -21.95384002541273], + [-46.6533065000397, -21.95559704924603], + [-46.652414217208744, -21.95637227893171], + [-46.649830844589395, -21.96207158475453], + [-46.64984454078229, -21.963223929936575], + [-46.64922080143888, -21.965238559124334], + [-46.647932253003205, -21.967456119851207], + [-46.64693363642467, -21.968462530753904], + [-46.64510172051193, -21.97250315339588], + [-46.64465821440297, -21.9750516301231], + [-46.643845000144616, -21.976603517538422], + [-46.64327551821338, -21.977117697996018], + [-46.640201918263685, -21.978739451391803], + [-46.63913069661077, -21.980535659472732], + [-46.6379151727778, -21.981300216448055], + [-46.635940174084496, -21.98171759494472], + [-46.631449251346844, -21.98167351376127], + [-46.62962485395094, -21.98671449282238], + [-46.62581238142397, -21.99241713151029], + [-46.62327997523705, -21.995086008151688], + [-46.62246338874219, -21.995762300217656], + [-46.620557958122625, -21.99610444653067], + [-46.61890252580066, -21.995386788860305], + [-46.61835865301268, -21.99552459110759], + [-46.6179728209627, -21.995622352795646], + [-46.614202397459145, -22.001900182616648], + [-46.61291112051874, -22.005362410082384], + [-46.612865368059175, -22.006850515197577], + [-46.615110568869234, -22.01736038525163], + [-46.62805641021351, -22.01544022081032], + [-46.640318734218006, -22.00885978726408], + [-46.6498948768864, -22.009523645691836], + [-46.65016215053139, -22.00997178964537], + [-46.65037024059304, -22.01004511586183], + [-46.652615641417114, -22.01083459625215], + [-46.653818383259, -22.01166830094952], + [-46.65414557847233, -22.012427107539338], + [-46.655186808214445, -22.018011191620655], + [-46.65768229135562, -22.020032126165418], + [-46.66001128376618, -22.02078690904439], + [-46.66224248337673, -22.023663932536774], + [-46.675194267022455, -22.022209452925345], + [-46.680884716543424, -22.02644378872814], + [-46.680980609418405, -22.026673965269207], + [-46.681360341333566, -22.02696533256359], + [-46.68402084889108, -22.03053992814291], + [-46.68562175616656, -22.036809361138683], + [-46.68583940985201, -22.03791894710546], + [-46.68438156400325, -22.04257384819293], + [-46.68214708721748, -22.0457058563807], + [-46.67992756933784, -22.0487785445125], + [-46.67837272636088, -22.051573632067452], + [-46.678303242659155, -22.054539708416314], + [-46.67681172836108, -22.05593631026873], + [-46.67085583108544, -22.05834308237313], + [-46.6664728029368, -22.05877020720801], + [-46.663657566612024, -22.060239692007414], + [-46.65853640111475, -22.06049505139552], + [-46.65849618150709, -22.060551488729214], + [-46.65995169742828, -22.062476826152242], + [-46.661583831729445, -22.063875238049796], + [-46.6629856184186, -22.066489876874307], + [-46.66442481043064, -22.068393450501596], + [-46.66480852612714, -22.0688504263512], + [-46.67145857025531, -22.070586244068117], + [-46.673645973461156, -22.070639392182564], + [-46.68031305459992, -22.07177809392568], + [-46.68154584260391, -22.072229731385626], + [-46.68229018256372, -22.073412906274914], + [-46.68392904035698, -22.073840519953276], + [-46.69637365012132, -22.072898321205844], + [-46.698559694109306, -22.074258933426968], + [-46.69990517568286, -22.074918700898323], + [-46.702838646643706, -22.0769220424538], + [-46.706092403601744, -22.0789469659841], + [-46.70956667398806, -22.07472488376452], + [-46.71675875881784, -22.073569938177876], + [-46.71996547694662, -22.075123523748587], + [-46.72038129954055, -22.074678147496], + [-46.720654312870906, -22.07516877908653], + [-46.7208740691707, -22.075563700594582], + [-46.721045003413515, -22.075646510635217], + [-46.721555257491914, -22.075590578259316], + [-46.72261403035392, -22.075474517868486], + [-46.72284309870565, -22.075650750431244], + [-46.72307216705749, -22.075826981993874], + [-46.72326239410422, -22.076333703773933], + [-46.72322845593003, -22.076704273704898], + [-46.72341768368142, -22.07679594220551], + [-46.723363604691464, -22.076884535949763], + [-46.72355808508613, -22.077043516401048], + [-46.723893660107976, -22.07731783476669], + [-46.72387236521541, -22.077392312843557], + [-46.72289011092698, -22.077660220462857], + [-46.721677958319525, -22.079645933844656], + [-46.72195911750581, -22.080826416445948], + [-46.72154320017782, -22.081725629724712], + [-46.72089932280839, -22.082568068485767], + [-46.7208781252151, -22.083148938763735], + [-46.72003921116328, -22.083634374815066], + [-46.719966242176746, -22.08375145902324], + [-46.71976309721898, -22.084079166603583], + [-46.71937207464527, -22.08562413108419], + [-46.71945464745483, -22.087372315596376], + [-46.71928794842717, -22.089175909682893], + [-46.71629085841337, -22.09025533675259], + [-46.7158210716801, -22.091858744431605], + [-46.71461732103124, -22.091522914608923], + [-46.714550956731635, -22.091539893730307], + [-46.713960789293914, -22.09183112354185], + [-46.71356422707369, -22.092353163628264], + [-46.71301395425714, -22.092488603901224], + [-46.711680479554914, -22.092310110783863], + [-46.71137038841438, -22.092353595124454], + [-46.71116442759943, -22.092406284577457], + [-46.7101579812225, -22.092955530413377], + [-46.70865565567683, -22.093097240797135], + [-46.7071474320981, -22.094404965658963], + [-46.70418680178331, -22.094924596422352], + [-46.70126466825792, -22.09569367819923], + [-46.70091952583987, -22.095670281953964], + [-46.70054824831586, -22.095645723766104], + [-46.698148449139104, -22.09379921833933], + [-46.697789451348285, -22.09320700531656], + [-46.69433430076367, -22.090680906740833], + [-46.693950522356964, -22.090574595336687], + [-46.692733292730594, -22.0905197555814], + [-46.69147042681946, -22.091315529415102], + [-46.690619685843394, -22.09314880173647], + [-46.690148844157896, -22.09360461696073], + [-46.68901164374587, -22.094020039642796], + [-46.68839766746614, -22.09407355202221], + [-46.68781978855063, -22.093823411199896], + [-46.68712943824334, -22.093257960921623], + [-46.686440780816525, -22.093002982653275], + [-46.68471018916192, -22.09298485973943], + [-46.68131552487131, -22.0914512436275], + [-46.680737023895524, -22.091569153953575], + [-46.67990446748816, -22.091909183930486], + [-46.679283857419506, -22.09244628051828], + [-46.67809776427277, -22.093822781693664], + [-46.67709309849794, -22.09467495425717], + [-46.676507794265824, -22.095484740876866], + [-46.67490100010515, -22.096722169926398], + [-46.67437003760142, -22.09695169819226], + [-46.67228900335966, -22.097324947941473], + [-46.67137656707906, -22.097838227164647], + [-46.67003740735164, -22.09707526511837], + [-46.669018646813385, -22.09679074698206], + [-46.667183314411076, -22.096998640089655], + [-46.665398623022185, -22.09685891197519], + [-46.66491781167795, -22.096683052965968], + [-46.66387343834043, -22.095814112921186], + [-46.663639526723344, -22.095288354266298], + [-46.66257641083236, -22.094991401441046], + [-46.66251629121959, -22.09512064663748], + [-46.662168010170696, -22.09487732362545], + [-46.65768455733495, -22.09362489307911], + [-46.65682858896863, -22.093618938584882], + [-46.65624381937639, -22.093222400502377], + [-46.654204782699196, -22.09265273934331], + [-46.65381870593549, -22.093160459040867], + [-46.65248542673668, -22.092172367480767], + [-46.65142689981653, -22.09187661486706], + [-46.650456585706344, -22.0919946339851], + [-46.64901588721861, -22.092169877809376], + [-46.646473993756146, -22.094005567761382], + [-46.645893103133254, -22.09528861438828], + [-46.645886964128145, -22.09529607240485], + [-46.64509142546108, -22.09626273555226], + [-46.643659034800464, -22.09680686250541], + [-46.64029713529076, -22.100705139292764], + [-46.63963887197729, -22.10292425728759], + [-46.63887244842377, -22.10349951621207], + [-46.63778212437836, -22.10362119777051], + [-46.636332516944975, -22.1053018793851], + [-46.63607240430246, -22.10699292581014], + [-46.63479073223407, -22.108162722113423], + [-46.63309371524896, -22.108441297969392], + [-46.631648245872206, -22.1079783045737], + [-46.6299957800093, -22.10818769074612], + [-46.6285419354786, -22.108908786196114], + [-46.624620348267364, -22.109013904883156], + [-46.624109912534806, -22.10951617321345], + [-46.623181208196364, -22.110427883632983], + [-46.62220481079207, -22.113345635978312], + [-46.62202009484716, -22.113623420454616], + [-46.62086401559824, -22.116939938453328], + [-46.62103700245723, -22.119326761999226], + [-46.620734363045656, -22.120807867272454], + [-46.618504108175884, -22.123709298568706], + [-46.61813123606048, -22.124778796210865], + [-46.618097178925595, -22.12875177833826], + [-46.6165662590091, -22.13115168869708], + [-46.61153472864865, -22.132923770518428], + [-46.60404411844545, -22.132694433935846], + [-46.60185792183172, -22.133587860817276], + [-46.59905770307897, -22.13590649692368], + [-46.59898084892435, -22.13687989803955], + [-46.601021115728585, -22.13909475086064], + [-46.60307023895518, -22.139953051461436], + [-46.605126842392856, -22.140391521711365], + [-46.60654166474817, -22.141407023635203], + [-46.60714715604091, -22.14166061766621], + [-46.60739123473245, -22.1420167986754], + [-46.60762217284125, -22.142182551944227], + [-46.60815057294577, -22.14312487980463], + [-46.61301690454731, -22.15022576118685], + [-46.631938880066016, -22.155380615925928], + [-46.63541825552705, -22.154979965792148], + [-46.63626815661802, -22.155264974028753], + [-46.63982749667966, -22.157528959324807], + [-46.640432408976416, -22.157693680202105], + [-46.64042633732881, -22.157909849661397], + [-46.64090862953409, -22.158216606964544], + [-46.64132291365656, -22.158795378282942], + [-46.64162101416268, -22.1600925221501], + [-46.64069140618647, -22.164652685058808], + [-46.64071504135846, -22.165072994177223], + [-46.64077727613653, -22.166173324954386], + [-46.640942470902175, -22.166672231704233], + [-46.64331681259024, -22.17089397378013], + [-46.64401315776464, -22.17495161688374], + [-46.646877731066795, -22.17844305895305], + [-46.646793301020544, -22.17933343750085], + [-46.64648608593888, -22.18006826152633], + [-46.65077392734965, -22.177508177491347], + [-46.66310918342809, -22.18037494842685], + [-46.66808124547999, -22.176563509855104], + [-46.669459954118715, -22.175234430588375], + [-46.67173368560702, -22.174651922309028], + [-46.67428623845888, -22.17611444123219], + [-46.674752322069054, -22.17680142447378], + [-46.672398674964604, -22.178432612353475], + [-46.672295064596874, -22.178837376746174], + [-46.67201368130606, -22.17993357481148], + [-46.67143938554189, -22.18047124244505], + [-46.67118242096253, -22.181929073451517], + [-46.67125155771123, -22.184757468442776], + [-46.67304437050002, -22.188523940975735], + [-46.67326727786807, -22.190975233520536], + [-46.673756397795906, -22.192298644215423], + [-46.675148485878395, -22.194756213804787], + [-46.67543536581761, -22.196841275138002], + [-46.676612466834996, -22.20002591246306], + [-46.677646499582266, -22.20205743518256], + [-46.67856850490702, -22.203870898859744], + [-46.67932595710366, -22.206661903294126], + [-46.68011679187906, -22.208850179412117], + [-46.681077485993285, -22.214782722651073], + [-46.68075608147689, -22.217012007259015], + [-46.680703225214266, -22.2173786175235], + [-46.68033704708635, -22.21866496885362], + [-46.678509039533616, -22.222415079424323], + [-46.67845234743927, -22.223845995787645], + [-46.6812705682802, -22.22577805701979], + [-46.68231085905502, -22.22608021342802], + [-46.683331009714855, -22.22730984258389], + [-46.68618398780921, -22.2303114717998], + [-46.68974581556445, -22.232296702349533], + [-46.69048659490451, -22.23284064791562], + [-46.69359251788396, -22.238128370100288], + [-46.69359560763608, -22.239187045515408], + [-46.69212657700846, -22.242737886207134], + [-46.6898917439196, -22.24573733338773], + [-46.68916160183488, -22.247594620757244], + [-46.68898634790792, -22.248591997434975], + [-46.69401520530866, -22.24664026553647], + [-46.69886492057379, -22.25101837950776], + [-46.69887309718716, -22.25102174545293], + [-46.70176442449258, -22.253279563895294], + [-46.70396218946891, -22.255698022947875], + [-46.7040086097853, -22.255749103864424], + [-46.70739407199197, -22.258369194341032], + [-46.71085180941237, -22.262886937403994], + [-46.71134285839964, -22.264444160923013], + [-46.7110672798395, -22.27042684490878], + [-46.71006907804316, -22.271258631470637], + [-46.70904317050786, -22.271389827683542], + [-46.70333069468756, -22.27687468630958], + [-46.70281857185054, -22.278292357619698], + [-46.708991146899194, -22.28366284980446], + [-46.70931677652787, -22.283757301104327], + [-46.71045246406505, -22.284539730872535], + [-46.71096726958174, -22.285491983097298], + [-46.7108848960241, -22.28694193285562], + [-46.70972199019103, -22.28839573903426], + [-46.70920659848206, -22.290063391848207], + [-46.70909799803688, -22.294288328764335], + [-46.70762302117541, -22.29390014291299], + [-46.7062615474674, -22.29416705906661], + [-46.705697643413124, -22.29577595696659], + [-46.705734230874974, -22.296305704092127], + [-46.7110779084927, -22.301801092579378], + [-46.711748599047624, -22.302165928945016], + [-46.712019764101115, -22.302769632380727], + [-46.71573119790531, -22.306586053990568], + [-46.72323556127236, -22.306596643138935], + [-46.722987207410156, -22.307079581783935], + [-46.72371148641864, -22.307120682085007], + [-46.72223453250979, -22.30978885844898], + [-46.722009477505864, -22.311665251693302], + [-46.72037814386359, -22.313135935932216], + [-46.720182473456894, -22.314429117881016], + [-46.718403657244984, -22.317441115059147], + [-46.71784740920354, -22.317505179332176], + [-46.71621206587306, -22.316032416418953], + [-46.71498809214006, -22.31608103218312], + [-46.714549892729494, -22.315055865760876], + [-46.713447397314155, -22.3146573720755], + [-46.713327004669665, -22.314173190700686], + [-46.712561581219596, -22.31371669212317], + [-46.71221309014635, -22.313786999498994], + [-46.711433784743335, -22.313284412047327], + [-46.711166372631055, -22.314032951942664], + [-46.71226685692844, -22.317076461678564], + [-46.71192834859732, -22.319000716198108], + [-46.71126937312123, -22.319822449000686], + [-46.70972819557387, -22.319538349721206], + [-46.70905839357027, -22.31968929555094], + [-46.7070469129669, -22.32082695486562], + [-46.70607288953266, -22.321377849267382], + [-46.70355846440927, -22.32209413218774], + [-46.70165052655747, -22.321989939422934], + [-46.70167693536131, -22.322258336470142], + [-46.70181805365737, -22.3236925647224], + [-46.70120436176216, -22.325820831941687], + [-46.70084345031487, -22.326199733900975], + [-46.70017850193649, -22.32625719280268], + [-46.69927261919249, -22.3306134671374], + [-46.69940045380246, -22.332810614757374], + [-46.69852920692771, -22.333804127105015], + [-46.696443314295436, -22.334441565034712], + [-46.69569331268575, -22.335735877229972], + [-46.695709090662085, -22.336859633255933], + [-46.69572059037574, -22.33689819837197], + [-46.6979540159079, -22.33812751510968], + [-46.69811264799573, -22.339070167127833], + [-46.69687566431328, -22.34077174409124], + [-46.69709238478105, -22.34149850001746], + [-46.69823325571391, -22.342613961262774], + [-46.69807094092409, -22.34370923806127], + [-46.6940101662951, -22.34352640909719], + [-46.69378757214593, -22.344350171284145], + [-46.69435820151892, -22.347390189056604], + [-46.69515942385524, -22.348507932496673], + [-46.69504657381439, -22.349047858964127], + [-46.693270552132894, -22.348812029854887], + [-46.69117771675718, -22.347259224932277], + [-46.6880656262788, -22.34990830896484], + [-46.687404669698246, -22.351909509431948], + [-46.68729594864291, -22.353383243602035], + [-46.68827037747762, -22.354658025394247], + [-46.68748449653891, -22.357798373405878], + [-46.68657058950513, -22.358413668700884], + [-46.683237476127076, -22.357989301008676], + [-46.68274930359388, -22.358530312318997], + [-46.68001238187708, -22.364352724777053], + [-46.67950629590471, -22.364752858071764], + [-46.67743159654093, -22.366394712423414], + [-46.677290485056474, -22.36658588803399], + [-46.67635849149177, -22.36978636313955], + [-46.67569974418753, -22.369909369666296], + [-46.67198283752011, -22.368488168253908], + [-46.66897009581769, -22.367655975452347], + [-46.6657077357137, -22.367358013051707], + [-46.66263150269073, -22.3662983455215], + [-46.6620865457892, -22.3664022537842], + [-46.66137461630494, -22.366538001433813], + [-46.661411044779626, -22.367434293403356], + [-46.6661940433389, -22.380713787901513], + [-46.66675900974716, -22.381487315345744], + [-46.666845764632995, -22.382460843540418], + [-46.66572026700939, -22.383021198199607], + [-46.664943259317575, -22.385860824713657], + [-46.665454039573206, -22.38724805657686], + [-46.66387134876549, -22.392040096044813], + [-46.66463838109781, -22.39482551743737], + [-46.66463061755877, -22.39547465486937], + [-46.667828456359324, -22.4057294618462], + [-46.668498659993, -22.406879199585113], + [-46.668674243328574, -22.408269730745783], + [-46.667277039451655, -22.414275893283204], + [-46.666967584695996, -22.415606844510084], + [-46.66685155658522, -22.41574166882463], + [-46.66415776968664, -22.41721825346807], + [-46.66228629667532, -22.4193082765089], + [-46.66096057255799, -22.420141748821237], + [-46.65840560761557, -22.4206261307557], + [-46.655562219979366, -22.42319915617403], + [-46.65403032601708, -22.42346790412705], + [-46.65020673478146, -22.426376635989705], + [-46.650038782839104, -22.42738367625942], + [-46.64748274472141, -22.429335663784034], + [-46.646424265602796, -22.429379354179016], + [-46.643543925996504, -22.42722728221792], + [-46.640648970653096, -22.425904143888165], + [-46.64034040562835, -22.426071362509294], + [-46.64009604567051, -22.426461600214775], + [-46.63740592209433, -22.43150819428485], + [-46.634367928865714, -22.433776540018055], + [-46.63296184134999, -22.435732757962736], + [-46.632058559302784, -22.436332804232215], + [-46.628262784391346, -22.43682320594921], + [-46.62630750016538, -22.437818975738946], + [-46.623965342847676, -22.43822439515813], + [-46.621387549220614, -22.4376717244149], + [-46.61793200729673, -22.43830346297531], + [-46.617060714642435, -22.439159595024833], + [-46.616753904339866, -22.43913129170142], + [-46.61596490599979, -22.439062224442832], + [-46.61237392547032, -22.435940108228557], + [-46.60659152971199, -22.442226902741993], + [-46.60391904851119, -22.44357124327839], + [-46.60175495000761, -22.44233148604275], + [-46.60090832618531, -22.441973616928095], + [-46.59637104318745, -22.442009299554847], + [-46.59486940373809, -22.44146060269461], + [-46.592185341552, -22.438611059542957], + [-46.58977830713283, -22.43869881196744], + [-46.58558494056925, -22.43994474386252], + [-46.58164022268229, -22.441836968464308], + [-46.57842858681563, -22.443377544281272], + [-46.57839029372475, -22.443401604376852], + [-46.57706530557898, -22.444234125682446], + [-46.574627998790916, -22.445765543762903], + [-46.57412277359095, -22.446082989023303], + [-46.574376418637975, -22.44647825461795], + [-46.5755933424601, -22.448374631672593], + [-46.574482123535596, -22.45203392165923], + [-46.573158377244454, -22.45357707125426], + [-46.573105378192714, -22.45363885439816], + [-46.57195062631541, -22.45271570127859], + [-46.57188098734689, -22.45267507248978], + [-46.56856547707197, -22.451373764626197], + [-46.56724303078714, -22.44996908284172], + [-46.56263049558485, -22.447277707106913], + [-46.56245305076867, -22.447236798594126], + [-46.562125485442955, -22.447232575324644], + [-46.555264875682155, -22.447147250622404], + [-46.55392937757308, -22.448397506121967], + [-46.54926073669861, -22.455651796547556], + [-46.54941191084846, -22.45622589600973], + [-46.550606594817886, -22.458326885648], + [-46.551537251828705, -22.459104403884957], + [-46.55200437127775, -22.460476775407006], + [-46.55128454763146, -22.463643845322807], + [-46.55093719443451, -22.46871214019043], + [-46.55031580941228, -22.47004624513058], + [-46.54695403228048, -22.469424275391127], + [-46.54340251197674, -22.46826123484993], + [-46.53980012475126, -22.46912801225955], + [-46.537927433083944, -22.471764432535956], + [-46.535620848502695, -22.470878360323113], + [-46.5322091036993, -22.470462043772347], + [-46.53111833762237, -22.471349868577093], + [-46.53406863044625, -22.479785830483006], + [-46.53650940770213, -22.48417705084545], + [-46.536513358695615, -22.488242206682873], + [-46.54212362754622, -22.494326888260318], + [-46.542115334184714, -22.49432994229131], + [-46.542597934028045, -22.49485332564041], + [-46.528718079475006, -22.499963798812253], + [-46.51642972675841, -22.50448658416965], + [-46.50744181226811, -22.50745631549494], + [-46.506792051814784, -22.508672129454112], + [-46.50767988602632, -22.510066711051955], + [-46.50706416687166, -22.515950610882726], + [-46.505740820687784, -22.51754456750602], + [-46.50345329965417, -22.518002460810383], + [-46.501399662070604, -22.517503557191798], + [-46.500229527734014, -22.51496315074493], + [-46.498775030485156, -22.51366438745143], + [-46.49613956373314, -22.512465338836424], + [-46.49370167201232, -22.51135618581623], + [-46.49163015042758, -22.510884185243494], + [-46.490930471701994, -22.511690097143365], + [-46.49106687055488, -22.51295927337077], + [-46.490057050147456, -22.514368333215998], + [-46.48937434119681, -22.5165985396754], + [-46.48502076180005, -22.519739230713288], + [-46.48221663593364, -22.5191186824286], + [-46.48212114787384, -22.519114843699953], + [-46.480592502626244, -22.5192403523886], + [-46.47722487815946, -22.52121214473332], + [-46.47558271426494, -22.52111078135506], + [-46.472894096601905, -22.51926267857527], + [-46.47158357408273, -22.518790745299704], + [-46.467308026429016, -22.519026505934132], + [-46.46633645521042, -22.520067350539737], + [-46.46585088015938, -22.522725670744432], + [-46.4653747147324, -22.52330128204926], + [-46.46227309533811, -22.522491911892576], + [-46.461699010637275, -22.52243021910232], + [-46.458113864766325, -22.52305868813481], + [-46.45690846662106, -22.522183296450994], + [-46.456763020758984, -22.52207766973051], + [-46.45602395179041, -22.52208455538042], + [-46.45540578967008, -22.522229896819542], + [-46.45526782056447, -22.522403873200645], + [-46.45387234535402, -22.522953865543172], + [-46.45376886804176, -22.52299465079101], + [-46.45186568058847, -22.525360093825448], + [-46.45046229580166, -22.52819922299293], + [-46.45033980588659, -22.530194434482485], + [-46.4496478580462, -22.53133252950696], + [-46.447615977909734, -22.532517656537628], + [-46.443060047924526, -22.53345669608767], + [-46.439969810946096, -22.535197242711497], + [-46.43962631489405, -22.536161597337703], + [-46.43981414077934, -22.538316245099796], + [-46.44028856815832, -22.539401575787764], + [-46.44043307963128, -22.540513123938045], + [-46.43973659540787, -22.541126805750782], + [-46.43528494074783, -22.542802761382134], + [-46.43302440381012, -22.54442390410807], + [-46.431931223058804, -22.544352345175785], + [-46.42770333387517, -22.54665148507917], + [-46.427221013789506, -22.547685972424706], + [-46.42675916590767, -22.548066438615596], + [-46.426430643738044, -22.548128256373626], + [-46.421263059322285, -22.54909536529375], + [-46.41961700473291, -22.548740105806782], + [-46.41839572774354, -22.547953299189267], + [-46.41835499854325, -22.547435306067577], + [-46.41792156123269, -22.547425855140425], + [-46.41417271979147, -22.540973653015318], + [-46.41372763324626, -22.54078934551239], + [-46.41306555932199, -22.53992460861488], + [-46.412957125833906, -22.53888134971408], + [-46.41204092878807, -22.53730433472957], + [-46.41009738452551, -22.539239913922636], + [-46.407402806697995, -22.540430177424334], + [-46.40720835045132, -22.54080041933344], + [-46.41021137679418, -22.55047357938593], + [-46.410382611250306, -22.550638222171337], + [-46.41180890146162, -22.55464663465768], + [-46.41720358083307, -22.55937143601926], + [-46.41946572036904, -22.56038558411798], + [-46.42150929837525, -22.563142173361097], + [-46.424422998889725, -22.565693687526004], + [-46.42650861240549, -22.565961857801934], + [-46.427958263722964, -22.5669011349701], + [-46.43303639285482, -22.571725670697393], + [-46.434205424484325, -22.57437315621456], + [-46.43417617316844, -22.575065537574254], + [-46.432704895808854, -22.575898806114765], + [-46.429487469503094, -22.58232331676471], + [-46.42956104442819, -22.583502172462207], + [-46.429173498256645, -22.58442368371936], + [-46.42783931736371, -22.58462238578169], + [-46.42526496001095, -22.584216779758368], + [-46.416332196944715, -22.58505297369538], + [-46.412895085189085, -22.585946333683417], + [-46.4128940261855, -22.58594660868586], + [-46.41287507328165, -22.585962344498807], + [-46.417331653802364, -22.59130643823142], + [-46.41956509296198, -22.592364852546254], + [-46.42203686296472, -22.594657966007613], + [-46.42191127055444, -22.59679758569247], + [-46.422461772330195, -22.597457626707357], + [-46.4232083583826, -22.597983232809444], + [-46.423346010245645, -22.598517796052228], + [-46.42417880063858, -22.5995162649171], + [-46.42415378169912, -22.599543739570606], + [-46.42478716889461, -22.599941901118424], + [-46.424652031612624, -22.600044165463697], + [-46.4239641041776, -22.60056476122167], + [-46.423072953247974, -22.600730639718964], + [-46.41146810280773, -22.613472391312385], + [-46.40827478528293, -22.61814368775823], + [-46.40564867160269, -22.620442446605168], + [-46.405388083928834, -22.621004176409947], + [-46.422983059661014, -22.624815175401036], + [-46.42307593838255, -22.62531873531233], + [-46.423456319750905, -22.625342440906675], + [-46.42450333483535, -22.629107077167255], + [-46.425070822174995, -22.634096707020376], + [-46.423685085972316, -22.636174839004806], + [-46.42108036466038, -22.63857714785486], + [-46.41514632705683, -22.64069195603017], + [-46.40975369998544, -22.640638602066606], + [-46.40649942388803, -22.641075167528378], + [-46.39676300037785, -22.646479761602304], + [-46.39478785448181, -22.651132292010463], + [-46.39281424100427, -22.6536444874984], + [-46.39274650374524, -22.655183069309842], + [-46.39456157102795, -22.65820502454824], + [-46.39474689598628, -22.659431570659592], + [-46.39362919996826, -22.66308156472343], + [-46.3935531908366, -22.663329784209736], + [-46.39430782227606, -22.663894794729423], + [-46.39863395547079, -22.666187586859966], + [-46.40031726597693, -22.668393943888688], + [-46.405840886714415, -22.67252895281319], + [-46.40834157650102, -22.6693178106114], + [-46.4059563010167, -22.6668466477557], + [-46.40537507531611, -22.665571828512075], + [-46.40545608635938, -22.66393242563031], + [-46.40595105950781, -22.663325539253126], + [-46.40565197801407, -22.662583639631688], + [-46.41339719741432, -22.659819640005466], + [-46.41997898164625, -22.66495469530849], + [-46.427691801721004, -22.661326882692354], + [-46.429500561807025, -22.662312990002665], + [-46.4369065617621, -22.66485029755885], + [-46.438758311754086, -22.667359668625675], + [-46.44014653521755, -22.668116358982914], + [-46.44371290670709, -22.668833831805784], + [-46.44672646024835, -22.668491273064717], + [-46.44895265400183, -22.668757985179692], + [-46.451084890661136, -22.6703166404005], + [-46.45511838775643, -22.671127789971667], + [-46.45584921720768, -22.671702997059533], + [-46.45923067213501, -22.672316573593427], + [-46.46141197347738, -22.6759347979236], + [-46.46906958885666, -22.673147895779454], + [-46.470343561694094, -22.67371483517916], + [-46.47087352820705, -22.67374030201764], + [-46.4737052871049, -22.675029461188398], + [-46.474312005601895, -22.67548077087687], + [-46.479772876487566, -22.67791060862541], + [-46.480255472586464, -22.678018824699645], + [-46.48046444067229, -22.678218304894987], + [-46.48061414258567, -22.6782849109304], + [-46.480597599396525, -22.678345417347337], + [-46.48108784205916, -22.678813397158088], + [-46.481016511844736, -22.680362836966257], + [-46.48009675288904, -22.681800892637995], + [-46.479941764989675, -22.682458761261923], + [-46.47901708955663, -22.686383679984743], + [-46.4719062802582, -22.693080305797835], + [-46.470554366116204, -22.694353767137503], + [-46.4756626557882, -22.697834245488806], + [-46.476348151531376, -22.69809686989377], + [-46.479091424295255, -22.698326403809155], + [-46.47934164049257, -22.69877429743255], + [-46.47864475707506, -22.700071932545107], + [-46.47592898066969, -22.702214993560464], + [-46.47475123217496, -22.703846901896807], + [-46.47357348167984, -22.705478811233277], + [-46.473341373583615, -22.70580095189109], + [-46.47212365835905, -22.70683813906898], + [-46.46964709543715, -22.702340552764458], + [-46.469090718769436, -22.701807428794098], + [-46.467528393894966, -22.703511001026648], + [-46.46628329440071, -22.70486866840001], + [-46.464113703317736, -22.70565307674476], + [-46.46335433362593, -22.70639064550815], + [-46.46348576028468, -22.70725176369967], + [-46.461500961442425, -22.707722509366697], + [-46.45864284646376, -22.707593171747263], + [-46.45803546649678, -22.707565997059607], + [-46.45707703875671, -22.711157075364422], + [-46.45728366443248, -22.711584520484806], + [-46.45661182899168, -22.712900047496607], + [-46.45638357208773, -22.71375522035965], + [-46.456977575616484, -22.715547106839622], + [-46.4555166092496, -22.717668599021458], + [-46.45586438118996, -22.719386597960558], + [-46.455311646013406, -22.719795092377232], + [-46.45660965898939, -22.720435728722922], + [-46.45617531964561, -22.720977220928827], + [-46.456101594522075, -22.724081886399826], + [-46.453174326120994, -22.728079517675347], + [-46.4510070535642, -22.728564835761862], + [-46.45055724300838, -22.727531336340036], + [-46.45009233584045, -22.727382191607923], + [-46.44733614431416, -22.72720438600729], + [-46.44624136003294, -22.72738714299915], + [-46.44581476409195, -22.727310574927397], + [-46.44581558799172, -22.72710627248721], + [-46.445266228639234, -22.727070821644173], + [-46.44506854500303, -22.728432431080567], + [-46.444387191643756, -22.72859160968187], + [-46.43990499976396, -22.727223322194956], + [-46.438876632490604, -22.729092962299042], + [-46.438156650847866, -22.731484166929487], + [-46.43719728244987, -22.732439786492705], + [-46.43198107967064, -22.734910325277603], + [-46.430593911615546, -22.73514034149659], + [-46.43001352473701, -22.734566464559745], + [-46.42730173511402, -22.736255353376638], + [-46.42725317697307, -22.736277082495018], + [-46.42603328243038, -22.736822979471], + [-46.42307065660428, -22.73350282172772], + [-46.4219302326518, -22.733009351083123], + [-46.420334977137145, -22.733388330831083], + [-46.41923981911106, -22.73469819784972], + [-46.4171833309649, -22.73490245801178], + [-46.4144655705487, -22.736442772114394], + [-46.41426188773304, -22.736959418002524], + [-46.413536957607576, -22.738798241414084], + [-46.40978000180412, -22.739764385270682], + [-46.40709316517659, -22.741418136013877], + [-46.406678702258354, -22.74085555805315], + [-46.40662014789929, -22.740888737820786], + [-46.39849456908793, -22.74240619924289], + [-46.395855297633105, -22.74308242597324], + [-46.39447747562972, -22.743702029332624], + [-46.39423194764437, -22.744470289212423], + [-46.393460769161244, -22.74396356672778], + [-46.39327550508401, -22.743841728091713], + [-46.39151532299654, -22.74350181189905], + [-46.39003799464761, -22.74213944845919], + [-46.38709510072891, -22.740848180389484], + [-46.38625627141077, -22.740802104549303], + [-46.384286086792635, -22.74173010936868], + [-46.382898955442954, -22.743376428187425], + [-46.38289890044289, -22.74337649418758], + [-46.38070647830837, -22.745978574223816], + [-46.37958776331865, -22.74658248099339], + [-46.375984431653166, -22.7473719434176], + [-46.375502026884256, -22.74668768620587], + [-46.37360509048337, -22.747205298683784], + [-46.37345380297283, -22.747246582040926], + [-46.37326232339178, -22.74732365150358], + [-46.37256547870746, -22.74814923142159], + [-46.37238540653059, -22.74836257091733], + [-46.37232860447483, -22.748429867073646], + [-46.37230325244995, -22.74845990214344], + [-46.369781744972435, -22.75144723808465], + [-46.368811296386795, -22.751594130324637], + [-46.36877768524581, -22.751615944396], + [-46.36776187634342, -22.752800047674395], + [-46.36803634611688, -22.753843023030814], + [-46.36659139130668, -22.754263515453072], + [-46.36636616667864, -22.75442694148655], + [-46.36369589781435, -22.757539348877156], + [-46.36353829931352, -22.758266291025482], + [-46.36176825354468, -22.761115772223942], + [-46.36093098502557, -22.76184325541572], + [-46.35989067076538, -22.761843173749103], + [-46.35790834586537, -22.759372475055756], + [-46.3561041090178, -22.757999768078335], + [-46.3553425189842, -22.75759054611184], + [-46.35158528478392, -22.75918686522359], + [-46.34922078092902, -22.759503305659806], + [-46.34681189655623, -22.760454728469615], + [-46.33898328641379, -22.761191901326796], + [-46.33615573337334, -22.760637175418164], + [-46.33499231302684, -22.760797975093087], + [-46.334985031250724, -22.762803201980276], + [-46.33317503980846, -22.766307664171755], + [-46.3416245129949, -22.769308304443957], + [-46.34169819452003, -22.769632930469424], + [-46.342096935841774, -22.76983824909994], + [-46.34253482250117, -22.770549183426596], + [-46.342092030343096, -22.77136807683735], + [-46.343424353205975, -22.777237781331326], + [-46.34356268226983, -22.777430738167116], + [-46.348033052297644, -22.777627890015523], + [-46.348311097421245, -22.77811244751967], + [-46.34850552894124, -22.778157895332296], + [-46.34939410972583, -22.77999981468327], + [-46.352268023454826, -22.785007952474345], + [-46.352351655180314, -22.785106779729237], + [-46.35473005115425, -22.786076954556854], + [-46.35717138302892, -22.785605842100555], + [-46.35885572304013, -22.787759753563023], + [-46.36167390213946, -22.78890916616649], + [-46.36184132022883, -22.789301802334915], + [-46.362146496501246, -22.78943923357876], + [-46.36259143478569, -22.790374836982068], + [-46.36251993656988, -22.79089330375183], + [-46.36519462445838, -22.79716572462708], + [-46.36552392372443, -22.797565113485884], + [-46.36773569839487, -22.80197240640766], + [-46.36969065854162, -22.80770831965052], + [-46.37301025550874, -22.81549146485356], + [-46.37362688662869, -22.816422490355123], + [-46.37420722599496, -22.81755478653395], + [-46.374403072446576, -22.818179829360954], + [-46.37495279432845, -22.81993426387517], + [-46.37496619750819, -22.820739881190264], + [-46.374976488132845, -22.82133984042433], + [-46.37726228192165, -22.828317296264032], + [-46.37700439227042, -22.829229377235873], + [-46.3742964209385, -22.830744677917476], + [-46.37388597888143, -22.83123159441983], + [-46.37361151759541, -22.83311361054612], + [-46.37153555048496, -22.83478545794112], + [-46.37114918496759, -22.835569362147904], + [-46.37131935871068, -22.83737859498575], + [-46.372258907751714, -22.84079823249188], + [-46.37280117677153, -22.842015981188368], + [-46.37479034223766, -22.844399913724658], + [-46.37434744684494, -22.847210972927538], + [-46.374283711651906, -22.84761549624453], + [-46.37428189067492, -22.84762705625365], + [-46.374202598678906, -22.848130323648043], + [-46.37495896120968, -22.84904757133486], + [-46.37517527862665, -22.852652910390738], + [-46.37448550281417, -22.85493093292243], + [-46.37281550787523, -22.85754997481218], + [-46.37288282867909, -22.858505863069787], + [-46.37298888909672, -22.86001182447541], + [-46.373007756009635, -22.86027971864842], + [-46.38081959490078, -22.864012301243086], + [-46.381091051826075, -22.864491894586422], + [-46.381292276210964, -22.864543962668762], + [-46.382673292691884, -22.86598180716365], + [-46.38394465057262, -22.868873718526263], + [-46.38464375165654, -22.870463938625388], + [-46.38061963785961, -22.872255854482912], + [-46.37798193807709, -22.87114586596718], + [-46.37595264068476, -22.871505162704345], + [-46.377473400310336, -22.87391264129892], + [-46.37685920056532, -22.875838471522755], + [-46.37751540837671, -22.87815263520145], + [-46.37864513357914, -22.87899218582284], + [-46.3782870930818, -22.879737949950655], + [-46.374495757318, -22.87937876469506], + [-46.37386321520011, -22.879411492506463], + [-46.37356031688666, -22.879830881670593], + [-46.373446507835745, -22.87998846299511], + [-46.373622256303136, -22.882157810526422], + [-46.372860424063255, -22.883628276877037], + [-46.37215190208138, -22.884358218790357], + [-46.3681998549655, -22.886679011713266], + [-46.36531170794048, -22.89078062799628], + [-46.364332278038745, -22.893850374525506], + [-46.36422983446749, -22.894171454894778], + [-46.364104497103085, -22.894228691202464], + [-46.360215961795035, -22.896004415749708], + [-46.35852149104922, -22.8983576645882], + [-46.35676203127401, -22.90080116861268], + [-46.35533927058496, -22.900866008854642], + [-46.35151641149708, -22.899982680109016], + [-46.35123113814731, -22.899916763724832], + [-46.34906615158116, -22.901183557158912], + [-46.34567551118154, -22.905177138535354], + [-46.34508922538436, -22.90503332679716], + [-46.34468743989365, -22.904443180227666], + [-46.344616838217334, -22.904501991105633], + [-46.33663710344756, -22.896702499518135], + [-46.3364345963301, -22.896573206676887], + [-46.33370506171896, -22.89568003044665], + [-46.33363120041703, -22.895680960613614], + [-46.3333121991313, -22.895691961337743], + [-46.33301719776476, -22.895634961978306], + [-46.33260119574611, -22.89551996286658], + [-46.33138282913883, -22.894920133354116], + [-46.33137791711436, -22.894918526364442], + [-46.33136291403086, -22.89491032939476], + [-46.330972186911936, -22.89471796619239], + [-46.33009818202237, -22.89423096695197], + [-46.32993118115689, -22.894163967299395], + [-46.3296771798695, -22.894072967832606], + [-46.32810817040972, -22.89331897204273], + [-46.32528915567114, -22.891759977720003], + [-46.325062385408145, -22.89163572717705], + [-46.32312152195299, -22.89108496431114], + [-46.32220994139632, -22.8903617575468], + [-46.315943353255655, -22.88777251626474], + [-46.31523429434157, -22.887639334577358], + [-46.31520346788233, -22.887513467591962], + [-46.314725112296124, -22.8872807575677], + [-46.314540099613154, -22.88731099899735], + [-46.3143640990591, -22.887376000421796], + [-46.314254098808846, -22.88745299970287], + [-46.31413709861411, -22.887562000013716], + [-46.31404409857371, -22.887692001279632], + [-46.31400673156987, -22.887748913388513], + [-46.31378793000066, -22.887875050935882], + [-46.313032436073854, -22.889462042327093], + [-46.313061675128786, -22.889816112415314], + [-46.312873100330094, -22.890187005001167], + [-46.31272310039782, -22.89044700445199], + [-46.31243910003703, -22.890754006224935], + [-46.312099099458365, -22.891066007126188], + [-46.31189564383682, -22.891148375620027], + [-46.31146091918721, -22.891202588622235], + [-46.306160326923134, -22.89186362563671], + [-46.30426835716358, -22.893049728221605], + [-46.30418395257959, -22.893251273893323], + [-46.304062577843446, -22.893541099292865], + [-46.303319649459226, -22.89531511073841], + [-46.302376328586035, -22.895701226029654], + [-46.299888442007564, -22.896719558072363], + [-46.29955060897839, -22.89685783789285], + [-46.2995207348874, -22.896870066965462], + [-46.2994237595919, -22.896909762200995], + [-46.29815425665044, -22.89815963760313], + [-46.29651197017214, -22.898652172513234], + [-46.29547984602872, -22.89831714068877], + [-46.29134078302216, -22.894553747351893], + [-46.289948238600786, -22.891629760257892], + [-46.28538691542064, -22.886079636311663], + [-46.28503512797715, -22.88581631169646], + [-46.28150738556409, -22.884731945144704], + [-46.280865562467824, -22.883422376011186], + [-46.28037093633626, -22.880348673772122], + [-46.279566600710815, -22.87899686633003], + [-46.279438263579486, -22.87884068300027], + [-46.27225416241133, -22.877904302914864], + [-46.272253193406996, -22.87790417691697], + [-46.26956752026798, -22.876602116574205], + [-46.26917973071763, -22.87646716742555], + [-46.26731467350592, -22.8761853162378], + [-46.265063059108535, -22.877286987773026], + [-46.26308556732896, -22.878954572943012], + [-46.26087069490297, -22.885314041716775], + [-46.26019783498664, -22.88944475804943], + [-46.25898161124461, -22.891072780496447], + [-46.25786163440758, -22.891373029141395], + [-46.251353258178035, -22.890102560174928], + [-46.248764511965774, -22.889906353891423], + [-46.24795516490189, -22.890013107752786], + [-46.24652689855781, -22.890201508666756], + [-46.23921091526522, -22.893625872713905], + [-46.23862198551937, -22.894653813726432], + [-46.238191671162355, -22.894102902596888], + [-46.23815055909499, -22.894122143773483], + [-46.23811023293759, -22.893998640545384], + [-46.23789358405812, -22.89372127294439], + [-46.2356455760321, -22.88734968714895], + [-46.23555850649461, -22.88618337070637], + [-46.23426171910889, -22.882211400868094], + [-46.232698728018065, -22.881697882233127], + [-46.22903599678072, -22.88204145758283], + [-46.22087052571575, -22.87810917009411], + [-46.22057956343902, -22.87808097173206], + [-46.21767761070499, -22.877799736094204], + [-46.21538391432181, -22.877074594897], + [-46.21073005337327, -22.874896078321584], + [-46.20941078396783, -22.873957641049106], + [-46.20635425137177, -22.872988686802515], + [-46.205083325212726, -22.872676328938987], + [-46.20494872893822, -22.872543097712295], + [-46.20102881636372, -22.87130030117839], + [-46.20028159913579, -22.87144586210661], + [-46.19705944760955, -22.869457858404548], + [-46.195221811974335, -22.86747728236623], + [-46.193509442653706, -22.866194878389663], + [-46.19264842461618, -22.865728833567804], + [-46.190558171811, -22.86615437750258], + [-46.18875280792431, -22.86722145732804], + [-46.18707132089422, -22.86968701478679], + [-46.1859500342578, -22.869687953287364], + [-46.18498028314467, -22.86907336143314], + [-46.1567948252489, -22.86438248708526], + [-46.1557783162726, -22.86466652920984], + [-46.15424059808161, -22.863549147902706], + [-46.14474699800304, -22.85833771646046], + [-46.14428094924935, -22.858751379079774], + [-46.14388705294541, -22.860262713242246], + [-46.14232049652203, -22.878269323905016], + [-46.1425601702955, -22.881454519252426], + [-46.14189138157942, -22.883009527448873], + [-46.14059197387731, -22.883670461002506], + [-46.13811473951202, -22.888216686992216], + [-46.138011496032405, -22.889349776971066], + [-46.13733670264356, -22.89103991224338], + [-46.13788623350376, -22.892165528489326], + [-46.145146942304706, -22.903963941914828], + [-46.14616859251873, -22.904535805728283], + [-46.147278946315346, -22.905756504809755], + [-46.14778879474045, -22.90788299247466], + [-46.15222014987441, -22.911097656045595], + [-46.15320320602966, -22.911163233061533], + [-46.15399892724959, -22.911514446446706], + [-46.15444002770088, -22.91289876409137], + [-46.15201160628288, -22.91582618683576], + [-46.15033240849461, -22.91704188913243], + [-46.146920636491416, -22.91786661211467], + [-46.14392385279176, -22.920826059141877], + [-46.14070947610546, -22.922607759118613], + [-46.13954418595571, -22.92325366901038], + [-46.137760437972275, -22.922651072711663], + [-46.135560055435604, -22.91972325662757], + [-46.1351600935265, -22.91938197590353], + [-46.130864587029755, -22.916412865229212], + [-46.12406283314901, -22.910042789458966], + [-46.12139388537136, -22.909776842275537], + [-46.11935495237675, -22.908352842533642], + [-46.11250080191859, -22.906480125699623], + [-46.1105463365526, -22.90641673885674], + [-46.10911846543221, -22.905960618820796], + [-46.10800838764626, -22.905126365904497], + [-46.10783366891314, -22.904759272270134], + [-46.10473469822047, -22.902217556796185], + [-46.10311511442082, -22.902479193558257], + [-46.10208700094038, -22.90201494162811], + [-46.09956672531975, -22.899653414137237], + [-46.09729220238104, -22.896392637684002], + [-46.095668538822835, -22.894927502611928], + [-46.092852515912526, -22.8948458578225], + [-46.0899718502236, -22.895721655617514], + [-46.08800770403113, -22.8945562804358], + [-46.08719684708467, -22.89356539477616], + [-46.085365645629814, -22.892676701254878], + [-46.08027778127471, -22.891787223910267], + [-46.075843432438525, -22.891462010969096], + [-46.07456056964347, -22.89166851090703], + [-46.07417240414325, -22.892481686144173], + [-46.07434185324925, -22.893790686375763], + [-46.07202512338169, -22.894084117644656], + [-46.068160338303166, -22.89256828426412], + [-46.061674013265595, -22.89404144516148], + [-46.06000567732127, -22.895206204783772], + [-46.05493918147468, -22.896833976756184], + [-46.05112503526791, -22.897473592494666], + [-46.050847033843986, -22.897370593061755], + [-46.05065003273624, -22.897259593445796], + [-46.05025803070057, -22.897103594240388], + [-46.0480590197713, -22.896417598784964], + [-46.0477360179967, -22.89625159942199], + [-46.04674401192082, -22.895500601265553], + [-46.045983006741444, -22.894724602586237], + [-46.04506000021646, -22.89368960414387], + [-46.044639996591165, -22.89296560473426], + [-46.04455021640985, -22.892857115539737], + [-46.03563447540893, -22.888605137951743], + [-46.03541694693703, -22.888614623083217], + [-46.03484594440304, -22.888553624316017], + [-46.03361793765053, -22.887919626731616], + [-46.033222935527604, -22.88773462751745], + [-46.03223093033237, -22.887322629515282], + [-46.03189092853161, -22.88717363019634], + [-46.03139092592519, -22.886970631205376], + [-46.03102392401198, -22.88682163194597], + [-46.03030692035231, -22.88656063340689], + [-46.02828340932914, -22.8855556374032], + [-46.0280259080348, -22.885469637931315], + [-46.02764190625038, -22.88539763874534], + [-46.02724790455117, -22.885374639604336], + [-46.026830902875325, -22.885397640535704], + [-46.02644290146, -22.88547464142837], + [-46.02577989895963, -22.885574642938877], + [-46.02509189645364, -22.88571264452231], + [-46.023959893054766, -22.886219647259054], + [-46.02261788970822, -22.887084650627607], + [-46.02129688634769, -22.88791065393145], + [-46.020124883254816, -22.888600656842424], + [-46.0195488815066, -22.888851658231616], + [-46.01918388026142, -22.888957659086955], + [-46.018681878179244, -22.888960660196144], + [-46.017904874304996, -22.888713661794505], + [-46.016035863425756, -22.887516665354866], + [-46.015809070440746, -22.88740892389392], + [-46.010028446183576, -22.888802362399247], + [-46.00925984083202, -22.889689681325127], + [-46.009152840699436, -22.88981068161823], + [-46.00905484057839, -22.889921681886648], + [-46.00897384043512, -22.889996682100644], + [-46.00886984013382, -22.890047682354012], + [-46.008690839478874, -22.89008268276534], + [-46.00856883891128, -22.89005968302359], + [-46.00840383805856, -22.88999568335724], + [-46.00818383684739, -22.88988168378862], + [-46.00806083610482, -22.889792684017884], + [-46.0079548352831, -22.889645684182288], + [-46.0073638302118, -22.88863668500952], + [-46.006652823389494, -22.887143685872683], + [-46.00610881890009, -22.886283686666122], + [-46.00405680511115, -22.884255690231754], + [-46.00357580152342, -22.883642691002294], + [-46.003424799852965, -22.88323969114475], + [-46.00336979706507, -22.882249690798304], + [-46.00319754061244, -22.88190155500388], + [-46.00314838954391, -22.881833009098727], + [-46.00190078651579, -22.880534693224853], + [-46.00128078274791, -22.880075694373893], + [-46.00099878106721, -22.87987969490244], + [-46.00072977942517, -22.879677695399515], + [-46.000555778318244, -22.879529695712872], + [-46.00039255340745, -22.879455687733856], + [-45.99935402454589, -22.87920653503081], + [-45.99900777097798, -22.87918369895908], + [-45.99826476797433, -22.879218700612093], + [-45.99787776639621, -22.879231701470676], + [-45.99746876482723, -22.879283702396027], + [-45.997048763266655, -22.879356703355555], + [-45.996575761537, -22.879449704441285], + [-45.996241760381004, -22.8795407052199], + [-45.99587675907521, -22.879623706062915], + [-45.995510757705866, -22.879683706897296], + [-45.99514575627614, -22.87971870771767], + [-45.994830754974465, -22.879722708413198], + [-45.99451975354745, -22.879671709073932], + [-45.99426075229308, -22.879603709611988], + [-45.99402275096867, -22.879474710074945], + [-45.99375074909202, -22.879186710537443], + [-45.99294874362645, -22.87836371191344], + [-45.99207973814283, -22.877641713484483], + [-45.991559734952105, -22.8772447144411], + [-45.991235732833346, -22.876946715013098], + [-45.9908337300567, -22.87651971569551], + [-45.99072272882518, -22.87622171579852], + [-45.99073172839806, -22.876041715693418], + [-45.990838728118256, -22.875760715324738], + [-45.990943727678, -22.87542071493251], + [-45.99102772738257, -22.87517071462917], + [-45.991248727066576, -22.874691713915706], + [-45.991460726553015, -22.87415071319274], + [-45.991672726145296, -22.873650712489216], + [-45.99189772592863, -22.873203711782182], + [-45.99218772585352, -22.872706710908414], + [-45.99222933047082, -22.87263930098954], + [-45.99231240249557, -22.8702073292171], + [-45.992145719201005, -22.870196709811463], + [-45.99157771659084, -22.870101711016268], + [-45.991172714744486, -22.870039711878036], + [-45.990685712489636, -22.86995171290786], + [-45.99032171065147, -22.869826713649406], + [-45.989913708679076, -22.869720714496818], + [-45.989463706485374, -22.869596715427996], + [-45.98913870496181, -22.869530716111754], + [-45.98883870351141, -22.86945271673477], + [-45.98851770188065, -22.869338717386814], + [-45.987878698683204, -22.869130718693732], + [-45.98761369749977, -22.86909971926195], + [-45.987113695461545, -22.869116720369917], + [-45.98634169233956, -22.869152722085005], + [-45.98589569042289, -22.869129723055003], + [-45.98561768923423, -22.869117723660803], + [-45.98520868740719, -22.86906972453746], + [-45.9849696863732, -22.86905472505598], + [-45.98479768565431, -22.869053725433783], + [-45.984524684561286, -22.869070726042235], + [-45.98431168371547, -22.86908672651825], + [-45.98416668313221, -22.869094726840963], + [-45.98407068272988, -22.869093727051595], + [-45.98397668235641, -22.869100727261614], + [-45.98383968171883, -22.8690747275506], + [-45.983693681017954, -22.86903872785453], + [-45.98338667956395, -22.86897072849731], + [-45.983177678479514, -22.868887728917546], + [-45.98268267581455, -22.868653729894838], + [-45.98221567323015, -22.86840573080388], + [-45.982013672076846, -22.868284731190553], + [-45.9817636705303, -22.86808873164704], + [-45.98156466931737, -22.86793973201379], + [-45.98118866688513, -22.867603732680774], + [-45.98104766609161, -22.86752373295269], + [-45.98085266510163, -22.867454733348666], + [-45.9804996636392, -22.86745773412611], + [-45.98024166263431, -22.867484734706128], + [-45.97995866167731, -22.86757073536917], + [-45.97965166071833, -22.867694736102944], + [-45.978862658076544, -22.867944737956233], + [-45.97803065514726, -22.868152739884096], + [-45.97728165182895, -22.86807574149382], + [-45.97695965049028, -22.868076742202025], + [-45.97665464935642, -22.868129742897555], + [-45.97638464839921, -22.868194743521865], + [-45.976059647483595, -22.868364744317095], + [-45.975587646038065, -22.868566745450607], + [-45.9753956453697, -22.86861774589691], + [-45.97519264446735, -22.868595746332524], + [-45.97499964341079, -22.868497746710023], + [-45.974816642076284, -22.86827574700654], + [-45.97473064123867, -22.868089747106964], + [-45.974723640910604, -22.867973747067104], + [-45.974749640606596, -22.867813746933837], + [-45.97491063958155, -22.867155746266786], + [-45.97494063822993, -22.866582745928138], + [-45.97493863706718, -22.866134745719243], + [-45.97489863538284, -22.865545745526777], + [-45.97473463312543, -22.864934745596237], + [-45.97444263028861, -22.86430574593835], + [-45.97417662813204, -22.863898746328974], + [-45.97391062629518, -22.863615746778652], + [-45.97369462498074, -22.863454747176522], + [-45.97344362354108, -22.863301747655], + [-45.97326162252033, -22.86319974800633], + [-45.97289262057632, -22.863041748741683], + [-45.97256461875171, -22.86286374937741], + [-45.97232261724152, -22.86266874981603], + [-45.971959614547316, -22.86220975039474], + [-45.971571611864974, -22.861795751049712], + [-45.97126460995787, -22.86155175160771], + [-45.97114660928098, -22.861479751832537], + [-45.97070760713576, -22.86135675273801], + [-45.97037460558908, -22.861294753439815], + [-45.97004060406924, -22.861244754149517], + [-45.969643602055065, -22.861104754954543], + [-45.969253600008386, -22.860940755732805], + [-45.96884159764079, -22.860687756516807], + [-45.96852659576749, -22.860469757104628], + [-45.96824959396488, -22.860217757592594], + [-45.96797259216233, -22.85996575808061], + [-45.9677045903767, -22.859705758545072], + [-45.967363587911116, -22.85929975910005], + [-45.96711158592705, -22.85893675948011], + [-45.96665058230282, -22.858274760176215], + [-45.966488581038725, -22.85804576042263], + [-45.966265579237295, -22.857706760750396], + [-45.96596657695475, -22.857303761214347], + [-45.965546573687, -22.856713761854653], + [-45.96533757222462, -22.856483762203574], + [-45.965182571113225, -22.856302762457393], + [-45.96496856975869, -22.856122762841196], + [-45.9646405678728, -22.85592076346457], + [-45.96447756708841, -22.8558797638027], + [-45.96433056647615, -22.85587976412532], + [-45.96411956567713, -22.855910764603152], + [-45.963879564896175, -22.855995765170455], + [-45.9635975641461, -22.856160765868054], + [-45.96326256341469, -22.856418766726456], + [-45.96298356276194, -22.856616767433206], + [-45.96251756175485, -22.85697976862921], + [-45.96238656148458, -22.85708676896778], + [-45.962192561219304, -22.85729776949432], + [-45.962041561068915, -22.857483769914445], + [-45.961937561062825, -22.857649770222025], + [-45.96177456097564, -22.857879770689646], + [-45.961589561177576, -22.858257771276097], + [-45.96143456123943, -22.858532771747633], + [-45.96134956115558, -22.858637771984313], + [-45.961249560947415, -22.858718772242497], + [-45.961137560668625, -22.858791772523144], + [-45.9609165597917, -22.858808773016225], + [-45.96085555949384, -22.858791773141988], + [-45.96078155905433, -22.858740773280015], + [-45.96068755845169, -22.85865877344709], + [-45.960634557965925, -22.858555773514166], + [-45.96061555750599, -22.858407773485137], + [-45.960586556294245, -22.857983773346074], + [-45.96054255511524, -22.85759677325775], + [-45.960524792743705, -22.857440050653594], + [-45.96017368900758, -22.857595631690558], + [-45.95631491610733, -22.850309419007527], + [-45.95631251875435, -22.850309779051386], + [-45.956066517745136, -22.85031577959371], + [-45.955813516516535, -22.850247780115968], + [-45.95560051532597, -22.85012978052642], + [-45.95502951160323, -22.849606781527978], + [-45.954719509697696, -22.849367782093246], + [-45.954509508517155, -22.849248782496684], + [-45.95440650804444, -22.84923178271436], + [-45.9542115072194, -22.849226783139404], + [-45.95402250665824, -22.84931478359587], + [-45.953723505744414, -22.84944378431313], + [-45.953340504364945, -22.849527785192976], + [-45.95301250313484, -22.849580785937388], + [-45.95268150179723, -22.849596786670634], + [-45.95256850132393, -22.849595786917853], + [-45.95229450002319, -22.849533787488692], + [-45.95211649905815, -22.849446787837188], + [-45.95191749775896, -22.849263788185766], + [-45.95173049646081, -22.849061788498858], + [-45.951323492835655, -22.848310789031142], + [-45.95123449167601, -22.848003789079108], + [-45.951220490918885, -22.847731788979424], + [-45.9512514906754, -22.847586788842], + [-45.95135949049059, -22.847339788486952], + [-45.951589490328395, -22.846903787773964], + [-45.95163017550809, -22.84678216933013], + [-45.95116547105012, -22.846435694036636], + [-45.95107448708366, -22.846475788697564], + [-45.9505944858602, -22.846777789894176], + [-45.950397485214275, -22.846845790358522], + [-45.95018548440833, -22.846875790837455], + [-45.94994148343305, -22.846891791379797], + [-45.949697482329285, -22.846857791898124], + [-45.94926248048654, -22.846845792845638], + [-45.94901747937346, -22.846809793365157], + [-45.948796478270495, -22.846738793815337], + [-45.948589477148786, -22.84663779422047], + [-45.94799647369214, -22.846253795335628], + [-45.9475924716394, -22.84610979615169], + [-45.9472934702654, -22.846059796782793], + [-45.94696246894826, -22.846083797519515], + [-45.946465467224606, -22.84621879867305], + [-45.946047465544886, -22.846242799600205], + [-45.94576246428821, -22.846215800211656], + [-45.94501546079875, -22.846068801777363], + [-45.9446904593318, -22.84602480246813], + [-45.944282457585835, -22.846006803353198], + [-45.94390445601616, -22.846008804182073], + [-45.9434804542369, -22.846003805108374], + [-45.94326945341434, -22.84602580558104], + [-45.9428364518594, -22.846122806575977], + [-45.94262445107631, -22.84616180705906], + [-45.94237245021634, -22.846235807646405], + [-45.942057449171, -22.84633980838631], + [-45.9415474478215, -22.846641809648215], + [-45.941248447202135, -22.846885810420254], + [-45.94097344653136, -22.847070811111408], + [-45.94071444566012, -22.847151811717467], + [-45.940249443786755, -22.847176812747822], + [-45.93989444226388, -22.847159813517056], + [-45.93976144173024, -22.847167813812202], + [-45.93966544126343, -22.847141814009895], + [-45.939482440341685, -22.84707981438086], + [-45.939261439138484, -22.846969814811864], + [-45.93905543787181, -22.846810815186526], + [-45.93866543495808, -22.84630881579922], + [-45.93841843312539, -22.845995816189504], + [-45.938314432073355, -22.84575481630142], + [-45.93819262985399, -22.845278205865775], + [-45.93692746432641, -22.845218071381556], + [-45.93423171994945, -22.84225799764253], + [-45.93348640313065, -22.84231582521482], + [-45.933296402231186, -22.842273825610363], + [-45.93313840136509, -22.84219282591716], + [-45.93294140022862, -22.842069826288974], + [-45.932750398912006, -22.84186682660924], + [-45.93261439783732, -22.841668826811567], + [-45.93257439731671, -22.84153082683256], + [-45.9325173963866, -22.84126082682723], + [-45.93247639561553, -22.84102682680429], + [-45.93242739501894, -22.840873826837868], + [-45.93231639408701, -22.840690826992553], + [-45.932251393611, -22.840610827096317], + [-45.93209339259868, -22.84047282737548], + [-45.931957391639614, -22.840319827599387], + [-45.93188739100938, -22.84018782768896], + [-45.93181939037717, -22.840051827772285], + [-45.93166738873852, -22.83965982791599], + [-45.931461386913334, -22.83928282818504], + [-45.93119238488203, -22.838927828602554], + [-45.93077438225319, -22.83858182935022], + [-45.930435380304786, -22.838372829991076], + [-45.93011137836238, -22.83814183058845], + [-45.92982837649864, -22.83787483107881], + [-45.92970837564484, -22.837736831274718], + [-45.92960537479006, -22.83757083142004], + [-45.92945937297671, -22.83710083151288], + [-45.92942335797913, -22.8369777820034], + [-45.9279069998247, -22.835312521617645], + [-45.92772036109632, -22.83529283444417], + [-45.92750636014314, -22.835268834900514], + [-45.92730935919422, -22.835218835307174], + [-45.927112358111934, -22.8351168356887], + [-45.926905356898324, -22.83497983607527], + [-45.926580354723995, -22.834659836631413], + [-45.92586735016698, -22.834040837891635], + [-45.925699348967235, -22.833845838164898], + [-45.92557234785646, -22.833618838332963], + [-45.92550734696801, -22.83337783835882], + [-45.92542634580805, -22.833056838381005], + [-45.92532234503899, -22.83292583854514], + [-45.92513334399281, -22.832824838909534], + [-45.92484834259525, -22.832742839492916], + [-45.92468134175856, -22.832687839831475], + [-45.92448334065429, -22.83257884021159], + [-45.92436133987443, -22.832472840427137], + [-45.92429033932239, -22.832372840534042], + [-45.924253338707, -22.83219284052808], + [-45.92423633809304, -22.831980840462855], + [-45.92427233708251, -22.831527840165563], + [-45.924254335749666, -22.831036839967982], + [-45.92422933527401, -22.83089183995263], + [-45.92414933458458, -22.83075284006035], + [-45.923982333140835, -22.830460840284356], + [-45.92393333256273, -22.83031484032097], + [-45.92391733208613, -22.830154840278695], + [-45.92390633142045, -22.829912840185976], + [-45.923915331101824, -22.829773840099186], + [-45.92393633066426, -22.829568839954348], + [-45.923935330024825, -22.829320839836807], + [-45.92389432921879, -22.82907283980671], + [-45.9237983282169, -22.82883783990304], + [-45.92363132685015, -22.828575840141482], + [-45.92344832554733, -22.82836484043954], + [-45.92331332463149, -22.828226840667924], + [-45.9232133238256, -22.828074840813013], + [-45.92317032313938, -22.82787684081142], + [-45.9232003227214, -22.827664840643457], + [-45.92329432254958, -22.827444840331886], + [-45.92342732262726, -22.82725883995154], + [-45.923454393575035, -22.827230126752543], + [-45.92274337663881, -22.82466500778213], + [-45.922391311006166, -22.824405840837187], + [-45.92187630789326, -22.824027841779554], + [-45.92166130640117, -22.823794842136635], + [-45.921557305581416, -22.82364384229087], + [-45.92120230244125, -22.822994842752685], + [-45.921188070611755, -22.822976693359234], + [-45.918268172284705, -22.82078402715984], + [-45.918068283592795, -22.820730848502333], + [-45.917275279258504, -22.82032785003877], + [-45.917058278032194, -22.820201850451507], + [-45.91618527296569, -22.81964285208695], + [-45.91602727208751, -22.819556852390235], + [-45.91586927133727, -22.819520852717776], + [-45.91564827049605, -22.819551853215167], + [-45.91534126946284, -22.819647853931762], + [-45.91501826836043, -22.819742854682758], + [-45.9148212675679, -22.819753855118105], + [-45.91461626666278, -22.819733855555832], + [-45.91437826527746, -22.81957985600082], + [-45.91417226384378, -22.81935485634159], + [-45.91400326233913, -22.81904185655886], + [-45.91390026148036, -22.818873856702307], + [-45.91385926094633, -22.818731856723122], + [-45.91384326069551, -22.818659856723187], + [-45.91373525758307, -22.8176188564549], + [-45.91369425703374, -22.81747085647281], + [-45.91361425646006, -22.817376856601832], + [-45.91339225501372, -22.817172856987522], + [-45.91311625344968, -22.817010857511384], + [-45.912751251586656, -22.816876858243003], + [-45.912505250431515, -22.816825858755045], + [-45.91227824939908, -22.816791859233927], + [-45.91191965550941, -22.81679276788696], + [-45.908914553464015, -22.817748386121096], + [-45.90821123651463, -22.81837886887628], + [-45.90765323511552, -22.818740870269032], + [-45.906055229751026, -22.819246874000388], + [-45.90566322862897, -22.819446874952522], + [-45.90529322797187, -22.8197928759274], + [-45.905075227983815, -22.82015287657758], + [-45.90503922884373, -22.820547876847737], + [-45.90518261668662, -22.821258670430314], + [-45.90703016350586, -22.825450773199734], + [-45.90710825009886, -22.825487874729127], + [-45.90752025238899, -22.825711873938562], + [-45.90767925338666, -22.825842873655137], + [-45.9078532545212, -22.826002873352866], + [-45.90795825553682, -22.826228873233298], + [-45.90799925649566, -22.82653687329308], + [-45.90810525818851, -22.827025873298673], + [-45.9082012593356, -22.827317873230648], + [-45.90830626055865, -22.82762487315022], + [-45.908441261566566, -22.827798872939905], + [-45.908912264724464, -22.828265872138097], + [-45.909059265871925, -22.82847487191853], + [-45.90922326721047, -22.8287308716845], + [-45.90939226913036, -22.82920587154565], + [-45.90944926992571, -22.829423871526892], + [-45.90950627112038, -22.829797871583583], + [-45.909484271811834, -22.830103871779855], + [-45.90943027192708, -22.830236871962175], + [-45.90934427192691, -22.83037687221778], + [-45.90914027177787, -22.830650872795836], + [-45.90887627166778, -22.83103787355972], + [-45.90860127127397, -22.831331874302556], + [-45.90818627071099, -22.831787875429495], + [-45.907815270467104, -22.83229687648614], + [-45.90762427064076, -22.832675877086807], + [-45.90741427096563, -22.833144877772565], + [-45.90716527151693, -22.833765878617168], + [-45.907069771591, -22.833950378915084], + [-45.906974271665085, -22.834134879213018], + [-45.90680927159657, -22.834376879690492], + [-45.90672312850158, -22.834480105928606], + [-45.906498271188, -22.83472388053771], + [-45.90632627097771, -22.834921881009226], + [-45.905846270217715, -22.835406882292222], + [-45.90564426977217, -22.835561882808438], + [-45.90523426885606, -22.83587188385391], + [-45.90498026834472, -22.83608588451214], + [-45.90483426818374, -22.836260884915767], + [-45.90475826824566, -22.83640888515345], + [-45.90452626896502, -22.837067885979504], + [-45.9044552691194, -22.837243886219866], + [-45.904324269082494, -22.837442886602403], + [-45.90417426868215, -22.837530886972573], + [-45.903976267951236, -22.83756788742275], + [-45.90381026707473, -22.837495887750364], + [-45.90361326603306, -22.8374098881387], + [-45.90344626507562, -22.837307888453832], + [-45.90259125982101, -22.836647890000194], + [-45.90236925861375, -22.83653789043138], + [-45.902195257798574, -22.836502890794236], + [-45.90170525574489, -22.836498891861908], + [-45.90146825490755, -22.836557892407846], + [-45.901280254422986, -22.836674892874985], + [-45.90051925263112, -22.837214894798134], + [-45.90009525144866, -22.83744389583468], + [-45.899974251102684, -22.83750589612894], + [-45.89956825010032, -22.837775897146134], + [-45.8993172495626, -22.837974897790613], + [-45.89908224922471, -22.83822589842538], + [-45.89850724932629, -22.83920290015471], + [-45.898231249354765, -22.839663900981027], + [-45.89806024918651, -22.83987690145774], + [-45.897690248415906, -22.840178902411925], + [-45.89709924637272, -22.840343903782035], + [-45.896666244592076, -22.840353904731867], + [-45.89634224315086, -22.840318905422027], + [-45.895916241266285, -22.84027690633129], + [-45.895520239350866, -22.84017390714543], + [-45.89504423674849, -22.839932908067112], + [-45.89467523447481, -22.83964590873281], + [-45.8945892339395, -22.83957690888691], + [-45.89451523347485, -22.83951590901873], + [-45.8944432330261, -22.83945790914766], + [-45.894379232636254, -22.839409909264013], + [-45.89433223236856, -22.839381909352944], + [-45.89429123216427, -22.83936890943607], + [-45.89424823198232, -22.839367909529425], + [-45.89420023182557, -22.83938490964239], + [-45.8941522317149, -22.839419909764217], + [-45.89412223167417, -22.83945290984568], + [-45.89409823181193, -22.839545909943247], + [-45.89409023203946, -22.83964791001028], + [-45.89408223228753, -22.83975791008125], + [-45.89410023282818, -22.839939910130397], + [-45.89419723390059, -22.840200910045624], + [-45.89432623527537, -22.84052790992305], + [-45.894541237172625, -22.840918909643957], + [-45.89469023876657, -22.841298909503497], + [-45.89476124003499, -22.841678909533247], + [-45.89479824089813, -22.841955909587103], + [-45.89479024143278, -22.84217790971245], + [-45.89473224196105, -22.84247890998538], + [-45.894471242253765, -22.84301891081743], + [-45.89411224219913, -22.843582911875036], + [-45.89394624213088, -22.84382691235595], + [-45.89371824187296, -22.844097912985323], + [-45.89353124150207, -22.844257913471235], + [-45.893224240691886, -22.844441914230664], + [-45.89282423959598, -22.844665915212584], + [-45.89237323846886, -22.84496091634027], + [-45.892221238121095, -22.845072916726398], + [-45.891948237716306, -22.845359917461792], + [-45.89181323760074, -22.845534917841487], + [-45.891720237719234, -22.845732918140712], + [-45.891611238019266, -22.846027918522054], + [-45.89160523862119, -22.84627291865433], + [-45.8916402393737, -22.84650991869327], + [-45.89183924103328, -22.846833918416475], + [-45.89218224331186, -22.847164917828845], + [-45.89235324444268, -22.84732791753483], + [-45.89262024608161, -22.84753291705165], + [-45.89288624765496, -22.84771391655909], + [-45.893195249538294, -22.847945915997393], + [-45.89427725628088, -22.84881591405818], + [-45.8945282580938, -22.84911491365555], + [-45.89466025943571, -22.849423913517494], + [-45.89468526016464, -22.849667913581495], + [-45.8946472606922, -22.849935913794646], + [-45.8945632613503, -22.850329914169514], + [-45.894410261720395, -22.85072391469502], + [-45.89419926184853, -22.851117915347167], + [-45.89399826197733, -22.851495915969746], + [-45.89369126167141, -22.851876916825198], + [-45.893096260493564, -22.852386918372197], + [-45.892970260354275, -22.852537918720664], + [-45.892962528632644, -22.85255191586091], + [-45.893601712236205, -22.855144985407566], + [-45.89368827033418, -22.85526491847813], + [-45.89391227205806, -22.85557291813868], + [-45.89418727412806, -22.85593291771297], + [-45.89455027717761, -22.85653191721118], + [-45.89469027865599, -22.856880917074964], + [-45.89476928000008, -22.85727691709476], + [-45.89477028042945, -22.8574429171732], + [-45.89473728053504, -22.857537917291488], + [-45.894660280538915, -22.85766491752139], + [-45.89450728028946, -22.857816917929366], + [-45.894235279520224, -22.857959918592964], + [-45.89370627780593, -22.858152919842187], + [-45.89352827727027, -22.85823392027036], + [-45.89311027616034, -22.85848192130376], + [-45.89290627545203, -22.85853792177662], + [-45.89277727489549, -22.858530922054932], + [-45.892615274180685, -22.85851592240147], + [-45.89243527337016, -22.85849292278347], + [-45.89209327182697, -22.85844792350843], + [-45.89161526973638, -22.858410924534425], + [-45.891281268387885, -22.858428925272552], + [-45.89105126759397, -22.858493925806485], + [-45.89083026695546, -22.858604926343016], + [-45.89065026653171, -22.85873292679838], + [-45.89051626643828, -22.858914927179544], + [-45.8904062668139, -22.859240927578256], + [-45.88993826900354, -22.86085892938705], + [-45.88982926926289, -22.861137929760787], + [-45.8897452698034, -22.861485930113503], + [-45.88966427077915, -22.861998930539947], + [-45.889661272021684, -22.862488930784764], + [-45.88978927394206, -22.86302993076827], + [-45.889971275770336, -22.863446930573566], + [-45.89009227702636, -22.863739930451743], + [-45.89009327753779, -22.863937930545774], + [-45.88991727777875, -22.864318931115477], + [-45.889791278146554, -22.864667931560422], + [-45.88972627909203, -22.865142931933335], + [-45.8897122806963, -22.865791932279556], + [-45.88968828112382, -22.865997932432144], + [-45.88961328146134, -22.866251932719468], + [-45.88948628156122, -22.866497933116534], + [-45.88930528212463, -22.86701293376234], + [-45.88920528271386, -22.867405934172023], + [-45.8891132833007, -22.867784934557324], + [-45.888999283795606, -22.8681639349906], + [-45.888927284471094, -22.868544935333162], + [-45.888852285093094, -22.86890993567462], + [-45.88871028565809, -22.869361936204587], + [-45.888647286279024, -22.869706936510063], + [-45.88860328706643, -22.870085936790506], + [-45.88859628766246, -22.870329936924495], + [-45.8885662886725, -22.870772937205455], + [-45.888507289571486, -22.871219937551704], + [-45.88849228997023, -22.871399937672077], + [-45.8884262901583, -22.871580937904277], + [-45.888255289994845, -22.871795938382487], + [-45.88809244073399, -22.871968005817077], + [-45.888393846971276, -22.87339873290465], + [-45.888577295925636, -22.873584938548852], + [-45.888662296660186, -22.87373293843505], + [-45.88873229768324, -22.87401793842073], + [-45.88872629810928, -22.87419393851942], + [-45.88866729901375, -22.874642938866586], + [-45.88868218884602, -22.874767431267763], + [-45.88873289174131, -22.875008105825543], + [-45.88879830086086, -22.87514993882685], + [-45.889118303044036, -22.875479938287974], + [-45.889376304852824, -22.875764937862616], + [-45.889444305436975, -22.875881937770885], + [-45.88947130587276, -22.876007937773153], + [-45.88946630626982, -22.87617093786331], + [-45.88942630644364, -22.876303938015376], + [-45.88934130634994, -22.87640593825074], + [-45.88921130598114, -22.87647393856797], + [-45.88897430507017, -22.87650493910104], + [-45.88866830373246, -22.876481939758623], + [-45.887042296447774, -22.876290943219338], + [-45.88608729225935, -22.876213945268823], + [-45.885585290099804, -22.876189946354057], + [-45.88429228424485, -22.876013949093625], + [-45.88383028220124, -22.87596995008161], + [-45.8825692767642, -22.875904952804927], + [-45.88217627517284, -22.875924953673184], + [-45.88151627267818, -22.876027955165213], + [-45.88094627037255, -22.876057956424884], + [-45.88049226831857, -22.87599695738687], + [-45.88021626705216, -22.87595295796828], + [-45.87990026542901, -22.875834958601025], + [-45.87954326324237, -22.875563959248773], + [-45.87936546909936, -22.875444543525738], + [-45.87900312863984, -22.87543166738722], + [-45.875023197969774, -22.873358077320752], + [-45.8746512372425, -22.87339696887427], + [-45.874303235605915, -22.873325969599403], + [-45.87341822989119, -22.872538971147204], + [-45.87336370139933, -22.87249341618743], + [-45.87287675705876, -22.87223969464486], + [-45.872808226547455, -22.872228972327324], + [-45.87250722526619, -22.872219972979966], + [-45.87173422200655, -22.872208974661728], + [-45.87158522129409, -22.872173974969844], + [-45.871427220167625, -22.871991975225782], + [-45.871084835718015, -22.871594236778698], + [-45.87103829228824, -22.871281745447668], + [-45.87100761690753, -22.87126576148422], + [-45.86666335558143, -22.86969778664984], + [-45.865083135565854, -22.86961661890657], + [-45.864301419255504, -22.86920932141237], + [-45.863887724070864, -22.868695901466996], + [-45.86383344730395, -22.868676309265943], + [-45.862497936459505, -22.86697108250532], + [-45.862249460162474, -22.866662704640827], + [-45.86224398112989, -22.866646818342996], + [-45.85756498534568, -22.86067212405402], + [-45.85726301759005, -22.85121169986141], + [-45.85710480999133, -22.851052977107447], + [-45.85570595000114, -22.850226081367115], + [-45.854791591208105, -22.849920847685006], + [-45.853016031274834, -22.849328131259703], + [-45.85053077902604, -22.847422991733684], + [-45.85053477316372, -22.847169112940044], + [-45.85006292276175, -22.846890162267584], + [-45.848157499727115, -22.838024950619193], + [-45.845382706395256, -22.836006113319286], + [-45.84218907713087, -22.83368255411788], + [-45.84088705865201, -22.833266022473502], + [-45.83478175329533, -22.8341161461022], + [-45.833717959586316, -22.83519473427016], + [-45.832385279127244, -22.83563081138034], + [-45.82994009628895, -22.835388014571393], + [-45.82799686158018, -22.83476502148365], + [-45.82605362587144, -22.83414202939494], + [-45.825653450006854, -22.833673805032305], + [-45.82525327314236, -22.83320558166943], + [-45.82513854081724, -22.832087522365626], + [-45.82505214506036, -22.831245604082493], + [-45.82426651168479, -22.830604022861518], + [-45.823814896955, -22.830386087397034], + [-45.821706291086244, -22.83087312065354], + [-45.81649791871906, -22.83410961221596], + [-45.81658490415962, -22.834878913310533], + [-45.816347698182604, -22.834884753828067], + [-45.81611049220557, -22.834890591345637], + [-45.81563607925143, -22.83490226538072], + [-45.81406913515514, -22.832731475776146], + [-45.81381670456581, -22.832532482607917], + [-45.81215096450682, -22.831296054152087], + [-45.81025086897593, -22.82988567357244], + [-45.80879952666188, -22.83175626864782], + [-45.80506049015758, -22.83298916936626], + [-45.804303004240154, -22.833549565422015], + [-45.80132181006998, -22.84478486394095], + [-45.8010433268426, -22.84812847760179], + [-45.79712251372916, -22.852571277315498], + [-45.795378193415154, -22.85385291605832], + [-45.79274220858166, -22.85702600927414], + [-45.79266423341637, -22.858215572794773], + [-45.79233254458266, -22.858827072818723], + [-45.7913027459763, -22.859105193190757], + [-45.78961527368168, -22.858623447610277], + [-45.78639247472501, -22.856871586724324], + [-45.78233295088214, -22.85575638196651], + [-45.78136154061669, -22.854892573640075], + [-45.78129935925279, -22.854733116146647], + [-45.775699540171246, -22.84988788185595], + [-45.77540638678768, -22.849823304005547], + [-45.770768479965945, -22.84730657878604], + [-45.768364450746894, -22.844884649774933], + [-45.767413653589905, -22.842845651809938], + [-45.76741318589991, -22.84271725258427], + [-45.7669465274947, -22.84231339685013], + [-45.768008790900204, -22.83592483237468], + [-45.770926639887904, -22.805893206348646], + [-45.76035015420153, -22.801549498010996], + [-45.75946982769396, -22.80152879722599], + [-45.759387906964626, -22.801154262838782], + [-45.75900280522368, -22.800996083341545], + [-45.7551781336767, -22.79343300617808], + [-45.75121961987278, -22.793888116167107], + [-45.75081989044782, -22.79336700016582], + [-45.74807795295819, -22.793695235240214], + [-45.74702214018772, -22.79463099758581], + [-45.74598710242598, -22.794856369929317], + [-45.74592996321831, -22.794868812058642], + [-45.74505046140606, -22.795060319747407], + [-45.742996290434675, -22.802895581141637], + [-45.743359320133855, -22.803847611128734], + [-45.74277528113474, -22.80639938967546], + [-45.74313985631292, -22.80744904641951], + [-45.74215539463384, -22.808415932029376], + [-45.730303342864566, -22.810343307539277], + [-45.729223062203694, -22.810685719039213], + [-45.72800336188621, -22.8113956530254], + [-45.72477762273998, -22.816295249454633], + [-45.72322393454508, -22.81681670806486], + [-45.72121512468112, -22.81664058430109], + [-45.719055292845105, -22.81751890639685], + [-45.71761017979613, -22.81752239250969], + [-45.71402934413926, -22.815284948080294], + [-45.71387723385868, -22.814804275401066], + [-45.71356276282176, -22.814751876256974], + [-45.71364537797258, -22.8140716000059], + [-45.71347220136234, -22.813524350384437], + [-45.713493101372926, -22.811114987115047], + [-45.71412272241745, -22.810140756419887], + [-45.71431036721166, -22.808595416600685], + [-45.72028823377789, -22.80823215413437], + [-45.72223075126227, -22.802951974823237], + [-45.72423481056529, -22.80213855581415], + [-45.72608115339452, -22.80052161865378], + [-45.72730929473318, -22.800890593150733], + [-45.72997210685911, -22.799809660201042], + [-45.72903851031603, -22.78562768319699], + [-45.72555312345406, -22.78476128379843], + [-45.72483170935614, -22.78393620593089], + [-45.72469764879512, -22.78139074560983], + [-45.72360259596555, -22.780422498890733], + [-45.722943071435836, -22.779959308972217], + [-45.71853663361214, -22.780999124968506], + [-45.717251545922544, -22.78047847146469], + [-45.71714938307583, -22.77991257418217], + [-45.716784911276136, -22.77994581210274], + [-45.71439117306909, -22.774663695683312], + [-45.71236593248595, -22.77372699952233], + [-45.71226714876719, -22.772015162863152], + [-45.71258175688638, -22.770670747052332], + [-45.71219187504604, -22.769810346301178], + [-45.714348283091034, -22.761902949677804], + [-45.71407966025975, -22.76123962248957], + [-45.71386051681116, -22.757446420029], + [-45.715775778229066, -22.75666768691018], + [-45.71721277512357, -22.75139698277111], + [-45.71699721048287, -22.750900937970844], + [-45.71776824502807, -22.748640421167348], + [-45.718089752148884, -22.748180060458775], + [-45.718626898395726, -22.746209593898055], + [-45.72429422534404, -22.73669893422216], + [-45.72461595175593, -22.734349526220146], + [-45.72610747820343, -22.73365562173276], + [-45.72737066554675, -22.731535411685595], + [-45.72764421785103, -22.729747752391088], + [-45.7290482678694, -22.728719480272016], + [-45.72997179631243, -22.72716922675291], + [-45.728721275349166, -22.724784785164342], + [-45.7283895378913, -22.72453926114886], + [-45.72849420553174, -22.724351810106988], + [-45.728125772004276, -22.72364927871135], + [-45.73059540097176, -22.723419091012524], + [-45.73300535804518, -22.722501882221515], + [-45.738440609403305, -22.72237272750277], + [-45.738942523156524, -22.722640781406643], + [-45.756445069022895, -22.721007310488133], + [-45.75854007479188, -22.72196937436575], + [-45.75933900509511, -22.72218051155807], + [-45.760400000636054, -22.72282345366258], + [-45.78115983012865, -22.732354358252923], + [-45.78246249194495, -22.732288750925367], + [-45.79074862191871, -22.735634790759757], + [-45.794905192569175, -22.738662853387726], + [-45.79561507259682, -22.73898861172097], + [-45.80581843796647, -22.73694492161956], + [-45.816629744832994, -22.727431750334354], + [-45.81990977321108, -22.722686103291455], + [-45.8196214344806, -22.720996691534765], + [-45.818141617088884, -22.716643535263145], + [-45.81833911632667, -22.71348324468067], + [-45.81797250523909, -22.711335115196135], + [-45.811841047935474, -22.699111337630978], + [-45.80941754023398, -22.69818156072146], + [-45.80162348019651, -22.69642706836485], + [-45.80109177644128, -22.696519554948807], + [-45.799734411736296, -22.69600176566074], + [-45.789206017359284, -22.693630976162357], + [-45.78830731255072, -22.69385559309818], + [-45.78769698670795, -22.693337268149826], + [-45.7830293543232, -22.689373248187152], + [-45.78109987099106, -22.685973641693984], + [-45.77944523974782, -22.684169232951565], + [-45.77933141260635, -22.6840658604608], + [-45.77344347904581, -22.68165097387904], + [-45.77330560688033, -22.681561011768718], + [-45.766498787444625, -22.679142825076568], + [-45.76469481303049, -22.67901646330949], + [-45.761526072645694, -22.677741329456605], + [-45.76111959482768, -22.67723156760596], + [-45.76105895463574, -22.677210020552625], + [-45.75600591087827, -22.671638604517984], + [-45.755931780907716, -22.671573118323977], + [-45.75471864379682, -22.67114899470678], + [-45.75100011580386, -22.671741634965866], + [-45.750894886651615, -22.671197167751735], + [-45.75053314783391, -22.671209456285723], + [-45.75009049651777, -22.670210272742867], + [-45.748275200281626, -22.66847378214304], + [-45.747734393071994, -22.667291518701525], + [-45.74812011455305, -22.665762446826108], + [-45.74742317442011, -22.664189159181966], + [-45.746473488818964, -22.66329258537329], + [-45.74618290361656, -22.66277626696219], + [-45.74337034955375, -22.659758754431845], + [-45.74325488635507, -22.65966601141721], + [-45.73785366125791, -22.659418480835004], + [-45.73575884797138, -22.657990871585778], + [-45.732678168509665, -22.657334807832783], + [-45.72744209535471, -22.660794901774317], + [-45.725359605240214, -22.66061740413057], + [-45.71803315569076, -22.66260478278206], + [-45.71663085756713, -22.662491629716886], + [-45.71472046547905, -22.661392242687587], + [-45.712532812920344, -22.66053142252516], + [-45.710698548124824, -22.66019548420036], + [-45.70918072021639, -22.659560028112693], + [-45.708429495020034, -22.658886791761347], + [-45.70009071651897, -22.6547284439894], + [-45.69977767685083, -22.654670553652945], + [-45.695276992196725, -22.65310457043683], + [-45.694440589481275, -22.65220913575866], + [-45.69474278266986, -22.652061227359628], + [-45.69397409138655, -22.651677830721667], + [-45.697936614554415, -22.649738319153446], + [-45.69806904083493, -22.649169372294295], + [-45.6974964519459, -22.647283821726173], + [-45.69769259730149, -22.645492211390188], + [-45.69932877446032, -22.64375678240028], + [-45.6996458235561, -22.642394442036874], + [-45.70869812234827, -22.639435887009263], + [-45.71745064614009, -22.620978146495148], + [-45.71941816788459, -22.62061982546856], + [-45.719606609293976, -22.620508175951343], + [-45.72105092571322, -22.62027285875566], + [-45.72116781196435, -22.620301161031286], + [-45.73004391920047, -22.61868421541623], + [-45.729782533312466, -22.613203699285208], + [-45.73740996154482, -22.608507231592117], + [-45.737142647106865, -22.60745949779872], + [-45.73557114974109, -22.604081241583426], + [-45.73511006804212, -22.602159080587366], + [-45.7353659831706, -22.600495662612538], + [-45.7346168884213, -22.597559378608157], + [-45.73434205537523, -22.597311346429972], + [-45.73023551785979, -22.595483250985748], + [-45.72803723843422, -22.594827266907778], + [-45.72826212279739, -22.594604709917895], + [-45.727570388326214, -22.594296747026558], + [-45.7292263103338, -22.59154157704189], + [-45.72518900461079, -22.587011036069825], + [-45.725181330145986, -22.587009124994598], + [-45.72121731323729, -22.586022043917332], + [-45.717645082920406, -22.582604307761812], + [-45.71764383104447, -22.582345975600383], + [-45.71717832515994, -22.58207388454627], + [-45.71687654073613, -22.57834719712657], + [-45.716215161993944, -22.578579012740917], + [-45.71401584248585, -22.580038769158396], + [-45.709765266939065, -22.580519690969435], + [-45.70540514964964, -22.582278746634415], + [-45.702231688437706, -22.585638308045958], + [-45.69921165596355, -22.58647400588432], + [-45.69588697005128, -22.58683777212598], + [-45.69411103324816, -22.585860199391234], + [-45.69273505520089, -22.584211395091128], + [-45.67941993772107, -22.573822712396954], + [-45.67916492124976, -22.573790265853283], + [-45.676607712383024, -22.57531005905249], + [-45.674742264372746, -22.5764187265748], + [-45.67066076767513, -22.57693134848008], + [-45.66334207219126, -22.577313148165302], + [-45.661729085069204, -22.578026893540876], + [-45.66081062047496, -22.57902349465738], + [-45.66033037674573, -22.58058108422953], + [-45.663523204391815, -22.587198809900038], + [-45.66300242086455, -22.589073945973173], + [-45.66119618029415, -22.59170498734436], + [-45.6608733472302, -22.592578798322567], + [-45.66055870370468, -22.595947297705926], + [-45.65945383592789, -22.59829753544201], + [-45.66438549428987, -22.600052744045765], + [-45.664514329108165, -22.600383100992705], + [-45.664851741049404, -22.60058358901265], + [-45.6655583090527, -22.603060020057068], + [-45.667217433741776, -22.607314100726644], + [-45.668018825966186, -22.608145693210385], + [-45.66858134626711, -22.610146540051637], + [-45.66655532338763, -22.613194529922716], + [-45.67108386921139, -22.61802044981036], + [-45.67265770447457, -22.621530796282396], + [-45.67598474317277, -22.62670445088791], + [-45.67501472122694, -22.628197374973567], + [-45.674484354196856, -22.630328509762872], + [-45.674770483850736, -22.630979793167487], + [-45.679137614085654, -22.63467667922564], + [-45.68027570935509, -22.6352826831922], + [-45.68152617842238, -22.636834950333633], + [-45.67951225554102, -22.639453465962333], + [-45.67614745724863, -22.641595879012733], + [-45.673400308838644, -22.644555128825274], + [-45.67261003864007, -22.647444585750783], + [-45.66965274373157, -22.64962528216097], + [-45.66794985540094, -22.651141891562656], + [-45.666632565296034, -22.651700481650387], + [-45.665000036429255, -22.650872335691748], + [-45.6637588492358, -22.650242578559684], + [-45.65647364204496, -22.649317918746107], + [-45.65481888654879, -22.649498044604588], + [-45.6481477128172, -22.648733028367655], + [-45.64614953615647, -22.647667072535096], + [-45.643176339642174, -22.646629796248444], + [-45.64233254706734, -22.64652241855653], + [-45.63202905300756, -22.644078437127824], + [-45.62885898534315, -22.64163388815609], + [-45.6225824886146, -22.63944327738615], + [-45.62255253496756, -22.639442418782313], + [-45.61857563081891, -22.63841353466271], + [-45.61812031685974, -22.63788571889383], + [-45.618109849313, -22.63788206493302], + [-45.618062805556264, -22.637819049470135], + [-45.6157721960734, -22.63516362389636], + [-45.61519403940141, -22.633976203867494], + [-45.60540774104652, -22.620865345473423], + [-45.60448094689307, -22.620347484995538], + [-45.597283207524136, -22.619691993920885], + [-45.59429252962893, -22.619875965268317], + [-45.5904403817604, -22.61955747022899], + [-45.588714387858204, -22.618168068298054], + [-45.58646451309769, -22.616636484719653], + [-45.585226459237155, -22.6160081343577], + [-45.58535099534425, -22.615878445057096], + [-45.5847609822984, -22.61547678125774], + [-45.5879248229661, -22.610477184282008], + [-45.58658670381333, -22.60933276940505], + [-45.58355554604023, -22.607030121455114], + [-45.582814551079366, -22.606639537505785], + [-45.57983409277974, -22.605884975386992], + [-45.57846898943255, -22.604809351694886], + [-45.57696690574368, -22.602202219482272], + [-45.57688804597014, -22.602834128981826], + [-45.576691227031226, -22.60441125522872], + [-45.575857019330556, -22.60716566143937], + [-45.57316649062293, -22.609816240505104], + [-45.565736443565335, -22.612243099431872], + [-45.56410627122835, -22.613247840395044], + [-45.56068333893274, -22.619344134827635], + [-45.556949653665264, -22.624355876342456], + [-45.55584727016978, -22.626840114789474], + [-45.55673074581206, -22.627587505687107], + [-45.55896479376389, -22.627472065750208], + [-45.56038656125933, -22.628101865089352], + [-45.56466400472014, -22.632394414349054], + [-45.566525933593866, -22.6336475610875], + [-45.56744462297441, -22.635488672123998], + [-45.56941182985924, -22.638314026750333], + [-45.570737758237804, -22.63943545162863], + [-45.57207980938252, -22.6399593167106], + [-45.57290904469886, -22.641177382043587], + [-45.577308482535024, -22.64049598440408], + [-45.581970308704705, -22.644634450328937], + [-45.58207408698391, -22.644940360655742], + [-45.58243573953512, -22.645166151599575], + [-45.58481700084271, -22.65218805926556], + [-45.58085576529544, -22.653409342276696], + [-45.57803293669597, -22.654279154238818], + [-45.57690439941733, -22.654949806751763], + [-45.57506110098184, -22.657425963631983], + [-45.5740244507524, -22.657469587844197], + [-45.57282125375166, -22.656807898361016], + [-45.570777937751956, -22.656448402253556], + [-45.568662184097676, -22.657381636119496], + [-45.56641268079647, -22.65702227367789], + [-45.56270801356035, -22.655028334590085], + [-45.5572513429115, -22.654067882872972], + [-45.556904244698366, -22.654064010173162], + [-45.55452990661136, -22.65481456557719], + [-45.55276092752422, -22.653727395730762], + [-45.55246046481104, -22.653542768266316], + [-45.55216000209786, -22.65335814180185], + [-45.55079226941926, -22.653116971561072], + [-45.54137620311984, -22.6526250558681], + [-45.540355503985175, -22.65307936252676], + [-45.5400568453023, -22.65255608547089], + [-45.539890483126136, -22.652547387993327], + [-45.536279841657205, -22.649481888505022], + [-45.53627053300626, -22.64947820121346], + [-45.53349419790216, -22.647253842873262], + [-45.530399543054436, -22.646760956290574], + [-45.52815763630049, -22.646794214111935], + [-45.52537822320668, -22.647374260011926], + [-45.52305834001621, -22.64555633192061], + [-45.51690680732956, -22.64192982191429], + [-45.516048028420826, -22.64098958421616], + [-45.514801095939546, -22.638176091516115], + [-45.514091129283436, -22.637567593449788], + [-45.50876232773776, -22.63481769021478], + [-45.507931440698776, -22.63228793633198], + [-45.50780849520073, -22.63218255028746], + [-45.50504451322207, -22.63117532906589], + [-45.50151289675689, -22.62682588214163], + [-45.50098925669177, -22.62647044904904], + [-45.500288934548024, -22.625995091829473], + [-45.495759549721406, -22.62708086442339], + [-45.494996787688585, -22.627734290291645], + [-45.489773788985396, -22.62943981615565], + [-45.48924750340013, -22.629284890175285], + [-45.488904449301785, -22.62872385923613], + [-45.48878296070874, -22.628752973814446], + [-45.48827829779279, -22.627699839709337], + [-45.48606382429937, -22.624078137042993], + [-45.485892423321616, -22.622720801298804], + [-45.48050886061221, -22.61148485701562], + [-45.47782866730413, -22.609169605242936], + [-45.47746979987552, -22.60514142064762], + [-45.47475670068959, -22.599477960244283], + [-45.47517840919741, -22.59893958307603], + [-45.475156281747765, -22.598385324007744], + [-45.47624122874427, -22.597582698966363], + [-45.47659644701954, -22.597129188749175], + [-45.4765007076556, -22.595634590712873], + [-45.47899112626762, -22.591618042340652], + [-45.480510093040365, -22.592132307177128], + [-45.48125318825668, -22.591183473577505], + [-45.481080910648636, -22.59110538447354], + [-45.47671530601272, -22.58975329327812], + [-45.47430342921414, -22.589393905932152], + [-45.469712328982325, -22.59225590406717], + [-45.463899536717584, -22.597202792881436], + [-45.46081031849806, -22.599132019950286], + [-45.45658988266339, -22.602458073666458], + [-45.45215529405866, -22.6068501556283], + [-45.45132009191362, -22.606995999450685], + [-45.448498167487216, -22.605112395316763], + [-45.44582506012618, -22.609147213086555], + [-45.437939670606184, -22.61224153321992], + [-45.43687299563329, -22.61367684322616], + [-45.43599391749571, -22.618820488860496], + [-45.43417983209124, -22.619725238137686], + [-45.43040263760291, -22.620284110320796], + [-45.42658409093252, -22.621660465034555], + [-45.421935255695765, -22.621775150789183], + [-45.42080024066217, -22.621665119094946], + [-45.42078840960967, -22.621663972118977], + [-45.419785701383, -22.62156676961502], + [-45.418009228927865, -22.62190793033131], + [-45.416670252402554, -22.622519093168666], + [-45.41399622268207, -22.622678521071798], + [-45.41332764112408, -22.62280689317758], + [-45.41294234014281, -22.62350210747372], + [-45.41294534549086, -22.626101270889567], + [-45.41354322607794, -22.62900346623146], + [-45.41232367711554, -22.63070992770667], + [-45.40954346143977, -22.633172955848696], + [-45.40924289016726, -22.633989279922034], + [-45.41218589301252, -22.641563606931612], + [-45.40977812251231, -22.643986541989623], + [-45.41011109205552, -22.647496182467258], + [-45.411072924335194, -22.648938672287198], + [-45.41126816638326, -22.6510794940508], + [-45.410967831785285, -22.652170870274425], + [-45.409498218844995, -22.653088122842405], + [-45.4065283701149, -22.65380913943272], + [-45.40043260037875, -22.654180165349047], + [-45.39832317387848, -22.653923692606373], + [-45.39624303656334, -22.65226007817247], + [-45.390650720026564, -22.65017736485106], + [-45.390324054062475, -22.650167910214297], + [-45.38687883104164, -22.649132437820775], + [-45.38468698908239, -22.647599306541334], + [-45.38450657201929, -22.647235960810328], + [-45.376340018717435, -22.641400092121902], + [-45.37579871023684, -22.641257707544106], + [-45.37293470271724, -22.63983286871402], + [-45.371044467855604, -22.637815844530675], + [-45.36976820279628, -22.63753275302724], + [-45.365430472164654, -22.639845389319746], + [-45.36140467979818, -22.639261340361564], + [-45.35552239862848, -22.6345674639792], + [-45.35437669738898, -22.63233749412199], + [-45.35435878898967, -22.63201284340239], + [-45.34970210351023, -22.627261385687543], + [-45.34939999850893, -22.6270111184948], + [-45.34761740103525, -22.626199176741288], + [-45.33624339000474, -22.62325176167877], + [-45.33597967587831, -22.622776213698252], + [-45.33578033500563, -22.62271923756688], + [-45.33323726983032, -22.61813328744903], + [-45.33161070696082, -22.618076989392286], + [-45.32822183625222, -22.61697357958584], + [-45.32765089825449, -22.616897039083803], + [-45.32477192951381, -22.616981477936474], + [-45.32377234037663, -22.617011210021325], + [-45.32202020736821, -22.6163377422705], + [-45.321772573363845, -22.616215065187827], + [-45.311920477323326, -22.615306105507486], + [-45.30171185535589, -22.61614534914353], + [-45.294298825340796, -22.61416865834179], + [-45.29215596291601, -22.614419760906017], + [-45.28862720448091, -22.615843967989], + [-45.28440176417693, -22.615640732592862], + [-45.276311317448396, -22.617458507302658], + [-45.274686076857144, -22.6167385772476], + [-45.2742705282506, -22.615638602762328], + [-45.26979182095173, -22.611985858153773], + [-45.26955113564326, -22.611945834126114], + [-45.2665662168588, -22.61144989399492], + [-45.263101803925686, -22.609241527881302], + [-45.26185294774211, -22.607615719532976], + [-45.26184436597459, -22.60733826658447], + [-45.26139061439333, -22.60708304995654], + [-45.26182432871722, -22.606690464264087], + [-45.26182331130953, -22.60665757205213], + [-45.261920756482546, -22.60660318009812], + [-45.26419944669022, -22.604540506192492], + [-45.26363642087897, -22.603627682105884], + [-45.26107765323283, -22.601702040783543], + [-45.261003998838675, -22.599359634617194], + [-45.260534373047214, -22.59859818676869], + [-45.25879156379253, -22.59435788629403], + [-45.258571949317684, -22.59407660862234], + [-45.25827277276411, -22.59309561652592], + [-45.25711015885031, -22.590266799455488], + [-45.26090160451309, -22.5833250764504], + [-45.25901576290613, -22.5824314116589], + [-45.254986594469365, -22.582124387221153], + [-45.25162924474535, -22.580220043037674], + [-45.24916720239604, -22.579814888863687], + [-45.24490771148557, -22.577333333198695], + [-45.24415628783719, -22.57629952015336], + [-45.24138300700569, -22.576240184810207], + [-45.238546328167985, -22.57462261070943], + [-45.237751484654424, -22.573720778826516], + [-45.23415566436797, -22.57241589145689], + [-45.23040702023879, -22.57019365587468], + [-45.22863120338034, -22.56802849459577], + [-45.228622470358616, -22.56802435381139], + [-45.22817949852019, -22.567969909171126], + [-45.227730592495654, -22.567914734059283], + [-45.227144924854336, -22.5678427522181], + [-45.226862432777736, -22.56733247043868], + [-45.2266829058534, -22.56731040509652], + [-45.223674948606394, -22.564212192141053], + [-45.22354117577288, -22.564130855480713], + [-45.221794319440825, -22.563726462826235], + [-45.2155153538698, -22.564103002893074], + [-45.2127978616619, -22.56337191303509], + [-45.20982604258875, -22.561891294266523], + [-45.20873797670403, -22.56134919818129], + [-45.20604606733405, -22.558831897243156], + [-45.20431023243101, -22.557870211780102], + [-45.203726607836884, -22.55769204808557], + [-45.197648535773205, -22.556259488927832], + [-45.19367250529051, -22.556798677358096], + [-45.192042006181374, -22.55628301339119], + [-45.19087971202161, -22.55376964828873], + [-45.187277436909746, -22.552669594724044], + [-45.18632130829059, -22.552613322957637], + [-45.178491116923155, -22.550377189641615], + [-45.17721524647687, -22.549511740744098], + [-45.17727525646625, -22.549179565440554], + [-45.16795870147542, -22.540952097886755], + [-45.166210783457835, -22.540028282688684], + [-45.16496069737743, -22.5384290033089], + [-45.164973030016995, -22.538315168598547], + [-45.164499274016656, -22.537896737435492], + [-45.16674635809589, -22.530658277248627], + [-45.16597483387981, -22.529084821851892], + [-45.163876149399265, -22.52648799760859], + [-45.16226843504047, -22.523299536032873], + [-45.16140350120296, -22.519761397345263], + [-45.160103487805394, -22.517109779413204], + [-45.15554073948992, -22.513117457806356], + [-45.15246846435516, -22.512198058512418], + [-45.15151550654702, -22.51060063852032], + [-45.151540592276056, -22.509177350643427], + [-45.150768579886346, -22.507855732443424], + [-45.14632470359471, -22.50804266557058], + [-45.14427318504301, -22.50724053526675], + [-45.14210790793389, -22.50412340066178], + [-45.13750646693978, -22.502327651295477], + [-45.13652143432642, -22.50258541427791], + [-45.13534436632247, -22.502146061407764], + [-45.13427930493655, -22.501068127120394], + [-45.125453323457016, -22.497623034543466], + [-45.12480367239923, -22.497721718180102], + [-45.12343316111148, -22.497929858076226], + [-45.12257260126494, -22.497838111764793], + [-45.12140572621849, -22.497362526848868], + [-45.11905635193724, -22.495446033366523], + [-45.1146804185913, -22.494002647907745], + [-45.11244608642139, -22.493976577995973], + [-45.10384757166442, -22.490808774521543], + [-45.10327109628779, -22.49040873145186], + [-45.101397976841525, -22.489108892489195], + [-45.09246908197591, -22.483864745436726], + [-45.0915704768526, -22.483598226078282], + [-45.08880949914642, -22.483953372040855], + [-45.088759228103534, -22.48397275801833], + [-45.08693252738864, -22.484916435211264], + [-45.08462249968993, -22.486635143882875], + [-45.08353471489481, -22.48697305727602], + [-45.08309076477362, -22.48686814610973], + [-45.08082322615793, -22.485576352921775], + [-45.080013630952585, -22.484817505107067], + [-45.07979178473474, -22.484551033038322], + [-45.06945472462637, -22.47804902447775], + [-45.06887421204737, -22.478071851573038], + [-45.0662621788278, -22.47756500253295], + [-45.0642953245789, -22.475887581500682], + [-45.06246377740839, -22.474000025070378], + [-45.06113197856402, -22.473054886190905], + [-45.059292007394305, -22.472298304960024], + [-45.04377316178812, -22.469769078419787], + [-45.04253687899622, -22.47005512279617], + [-45.040989053794334, -22.46977210473706], + [-45.03959119128954, -22.46877109308396], + [-45.03602780695897, -22.466988487177645], + [-45.03587573961722, -22.466967858337224], + [-45.03459459805133, -22.466475663616077], + [-45.03377755666129, -22.465862726864163], + [-45.0308511107597, -22.464398610556696], + [-45.028848065265095, -22.463698173493135], + [-45.027211482419496, -22.46415409304769], + [-45.02559355243744, -22.465371963018764], + [-45.02552052117018, -22.46587586402085], + [-45.026036489431846, -22.4672567651219], + [-45.02755924145979, -22.46951775854639], + [-45.02787900244522, -22.470214858320166], + [-45.02759459244488, -22.4707273671962], + [-45.02552238644981, -22.469535121526626], + [-45.02471632802284, -22.46920501278697], + [-45.02312134024774, -22.468895751078485], + [-45.021511929714755, -22.468583696120213], + [-45.01844745470228, -22.46855791524977], + [-45.01220493388786, -22.467094447888332], + [-45.01023389902816, -22.466869264703032], + [-45.00205106373763, -22.46913776945138], + [-45.00079107022618, -22.469487074183803], + [-44.998680843717246, -22.469664941515617], + [-44.99575239121628, -22.468760922835962], + [-44.99281697310846, -22.4667545275068], + [-44.99225866655756, -22.46667351457532], + [-44.99117919172427, -22.466987081923286], + [-44.99054304026339, -22.468368929025583], + [-44.98981787221945, -22.469234707996197], + [-44.98892764590311, -22.469855023149726], + [-44.9872570307043, -22.469799260458387], + [-44.98447813068474, -22.469259606692436], + [-44.983659690405524, -22.4689699011071], + [-44.967472511673265, -22.47459529835297], + [-44.966303559775795, -22.475693478895906], + [-44.96587383241534, -22.47546196361485], + [-44.965517176867266, -22.474690947875683], + [-44.964707259891966, -22.47352614564986], + [-44.96453977974313, -22.47331035698177], + [-44.96443851413211, -22.47313963810636], + [-44.962951591463366, -22.47100112298464], + [-44.96224703085642, -22.470234595704202], + [-44.961805904859474, -22.469353335662753], + [-44.960188331631834, -22.46702679196521], + [-44.95863883743553, -22.465886359280503], + [-44.95752335660733, -22.465841433479344], + [-44.95695474982336, -22.465680071516463], + [-44.9547325648804, -22.464593537292963], + [-44.952090718339875, -22.46358391995174], + [-44.95021639057392, -22.46151147943511], + [-44.94773016503495, -22.459360276089015], + [-44.94534732038698, -22.458262049172486], + [-44.94276294350554, -22.456570792296542], + [-44.94237431455551, -22.456010348730906], + [-44.94206857580731, -22.45452632144011], + [-44.94137475292794, -22.45369202331601], + [-44.94051449707009, -22.453169803712353], + [-44.94004112193973, -22.45311573562224], + [-44.937435091061296, -22.45361346711305], + [-44.93665111071388, -22.453601811666775], + [-44.93632952134078, -22.45359703030416], + [-44.93600766796653, -22.453592244941916], + [-44.934539037052474, -22.4532939336842], + [-44.93386812954193, -22.45299153547459], + [-44.930575423054876, -22.45288052235113], + [-44.92903293856114, -22.453651624858942], + [-44.927942872355565, -22.453829019135497], + [-44.92554460185149, -22.453681148816507], + [-44.92320966443862, -22.454318144848294], + [-44.92101033155421, -22.454505293335956], + [-44.918096326335736, -22.455422305688614], + [-44.91714945938524, -22.4554491815875], + [-44.91634293864427, -22.455310240106147], + [-44.91453432156978, -22.455564723856533], + [-44.91343126425055, -22.455287508879895], + [-44.912736942740416, -22.454181915585515], + [-44.91154285888507, -22.453409143486844], + [-44.908702456102326, -22.452658188671684], + [-44.90815153697404, -22.452747382820483], + [-44.90690306001136, -22.45332033965016], + [-44.90540811870151, -22.45376317588983], + [-44.904601408992136, -22.4545003869423], + [-44.904068658260414, -22.454727515139048], + [-44.90236918351187, -22.454062515107612], + [-44.90178826900887, -22.454045295250552], + [-44.90082588857188, -22.454322707330967], + [-44.8998317631634, -22.454239444253737], + [-44.89828516668404, -22.453411106817395], + [-44.89798336241247, -22.45298344415484], + [-44.89798630996893, -22.45286713287666], + [-44.89782635976243, -22.452878687353977], + [-44.89319569788045, -22.441011090261018], + [-44.89015517169484, -22.436353950498262], + [-44.89004194072109, -22.43570860632709], + [-44.89012122250122, -22.435036429757986], + [-44.890500076054934, -22.434102015398388], + [-44.8899217392141, -22.432619633180973], + [-44.889699185108654, -22.432615123110082], + [-44.88851585503825, -22.432591143439588], + [-44.887179405989784, -22.431560629454893], + [-44.88540115094999, -22.431343114843322], + [-44.8845376444281, -22.430816731590035], + [-44.88138942903979, -22.430041006819852], + [-44.880088324674496, -22.43015112963034], + [-44.87924341495651, -22.429512187758487], + [-44.8783185496568, -22.42928427366631], + [-44.87682598401268, -22.429358305599795], + [-44.87573388270823, -22.429066312581273], + [-44.87485909539333, -22.428371213884617], + [-44.87431573066931, -22.427756408581573], + [-44.87324700164312, -22.425794105001042], + [-44.872507885981044, -22.424795155369285], + [-44.87194976731677, -22.424586558311397], + [-44.870849242410124, -22.424482014423223], + [-44.8681659818992, -22.424856260958816], + [-44.86640342250247, -22.424889137463342], + [-44.86399327408165, -22.424368453906173], + [-44.86350773505515, -22.42438242687431], + [-44.863095021764316, -22.424148106545463], + [-44.861677828256, -22.423931799212507], + [-44.86065417306223, -22.423562122007063], + [-44.860043274429984, -22.423544004202785], + [-44.85964860649014, -22.423861963178606], + [-44.858297619226406, -22.42579715704121], + [-44.85495525829181, -22.428502188313143], + [-44.854459124249054, -22.42852896030971], + [-44.85383650819283, -22.42834907142853], + [-44.85308063560374, -22.427943366534464], + [-44.84656876493911, -22.427821271691187], + [-44.84509417794724, -22.42828191164914], + [-44.8443891150066, -22.428304087054496], + [-44.84227386518589, -22.428371480270837], + [-44.842053616343584, -22.42831599361304], + [-44.837854874930215, -22.42953322077569], + [-44.83734693916541, -22.43005907103727], + [-44.835377239360554, -22.431602155879066], + [-44.834635907645456, -22.43178958745763], + [-44.834096524296136, -22.431763749505645], + [-44.833396383694854, -22.431490835717547], + [-44.831166016514935, -22.429445952848553], + [-44.83067511358429, -22.428644289319436], + [-44.83014820631266, -22.42727147415961], + [-44.824506286897666, -22.41981525051823], + [-44.82314139729152, -22.419385640418724], + [-44.81873231866102, -22.41898816985368], + [-44.81683800779785, -22.418631014360738], + [-44.81445070170412, -22.417344083258737], + [-44.808782912130525, -22.41494624691622], + [-44.8084275258541, -22.414612143406977], + [-44.80840008798806, -22.414219090843392], + [-44.80796960515411, -22.414079801362014], + [-44.80825201744702, -22.412097985959225], + [-44.808117217327656, -22.4101670282474], + [-44.808661863881845, -22.409221711245817], + [-44.80903571778821, -22.40659782723181], + [-44.8089139323654, -22.406532875416488], + [-44.80832888701884, -22.406156778332228], + [-44.807917919543094, -22.405838145941356], + [-44.807587818502604, -22.405440087406618], + [-44.80279074353813, -22.405958138673583], + [-44.8027857173795, -22.406108924195827], + [-44.802374601371234, -22.406430109203995], + [-44.80171938429721, -22.406738447683708], + [-44.80138880125571, -22.40689624543168], + [-44.800984731421536, -22.40728030746519], + [-44.794882965935976, -22.408772510382555], + [-44.792176462693014, -22.408882046765818], + [-44.788425021228065, -22.408214051712854], + [-44.78317685942284, -22.408426964145566], + [-44.779231354161155, -22.40908193729627], + [-44.778942446652216, -22.40939561205958], + [-44.778928089596484, -22.40939789608918], + [-44.77869683579048, -22.409474980591092], + [-44.778593931635044, -22.409597974869975], + [-44.7785656029885, -22.409804760055195], + [-44.77697524718665, -22.411531449256977], + [-44.77449190687791, -22.412511371742205], + [-44.771702161806324, -22.415037086797845], + [-44.770418916746955, -22.415646338696742], + [-44.760954682639905, -22.41701489510996], + [-44.75841010011143, -22.41626919062719], + [-44.756346740952175, -22.415664511289037], + [-44.75554679101346, -22.415430081708397], + [-44.75264306263044, -22.41803837903785], + [-44.7517554389257, -22.418069502795916], + [-44.75118308656978, -22.418978163489182], + [-44.75102354210579, -22.41907201386072], + [-44.75075374692798, -22.41949597665615], + [-44.750669784250526, -22.419793078007807], + [-44.749607667589785, -22.421479285150205], + [-44.74939783795021, -22.421589978630912], + [-44.74897629566281, -22.421811227595917], + [-44.74897265565265, -22.421813574604453], + [-44.747670627306796, -22.422335669483417], + [-44.74535369157245, -22.42326472760623], + [-44.74502939448977, -22.423394766323256], + [-44.744972512427275, -22.42347326748406], + [-44.74479255864432, -22.42346582283172], + [-44.744471374630116, -22.423619992557814], + [-44.74384742400958, -22.42407246506489], + [-44.74370053108331, -22.424377987545242], + [-44.74354636316185, -22.424699172049607], + [-44.74313152393974, -22.42493677301174], + [-44.74267274035444, -22.42509744201133], + [-44.7422616239278, -22.42523876390547], + [-44.74188904954762, -22.42532869669162], + [-44.74147793288497, -22.425804049796405], + [-44.74146881286926, -22.425814129820665], + [-44.74132009461223, -22.42597850221544], + [-44.7408670312675, -22.426233773263597], + [-44.73872482708056, -22.42926459837027], + [-44.738269727615815, -22.429908481667766], + [-44.73778509812088, -22.430594143049404], + [-44.735308493744775, -22.43285426632511], + [-44.73432799861582, -22.433749055809837], + [-44.73394462278339, -22.43409892078135], + [-44.73378085284464, -22.4344306233115], + [-44.73360344991099, -22.434789935885743], + [-44.7336204261824, -22.434876934907475], + [-44.733969910769474, -22.436668278354713], + [-44.73360892062453, -22.43683994816998], + [-44.73342905832874, -22.437045506652023], + [-44.73338391145913, -22.437186587829473], + [-44.7333776684772, -22.437206098854045], + [-44.73328849645154, -22.437360911126447], + [-44.73306883902664, -22.437584146697557], + [-44.73243980983363, -22.43823388933967], + [-44.73233060780939, -22.43842659967521], + [-44.732343455363846, -22.438645004788075], + [-44.7323306087795, -22.43885056294304], + [-44.73227921983984, -22.438972613120747], + [-44.73211862725858, -22.439017578463694], + [-44.73198372921297, -22.439248831873865], + [-44.731896174463934, -22.43952154421762], + [-44.73172678201487, -22.43964067662456], + [-44.731341360563846, -22.439724185432066], + [-44.731033022323615, -22.439756304055983], + [-44.73087885362269, -22.439737033345736], + [-44.73078892241595, -22.439814117570492], + [-44.73076965168657, -22.439968285705636], + [-44.73066687263076, -22.440135302012465], + [-44.73064117790354, -22.440302318168303], + [-44.73063169800948, -22.440366306227347], + [-44.730615483190924, -22.44047575732816], + [-44.730654043688304, -22.44062132334472], + [-44.73065432569077, -22.44062190334448], + [-44.73065192568506, -22.440623887350416], + [-44.73056089054163, -22.441604674148564], + [-44.73114468502971, -22.4424788775578], + [-44.730367548253085, -22.444460307331664], + [-44.72920541215479, -22.446144269671894], + [-44.7292856286007, -22.44837394992392], + [-44.729131738211116, -22.44892707057495], + [-44.7264245151665, -22.450890846118895], + [-44.72534470197334, -22.451070089347063], + [-44.72531762992834, -22.45110086241959], + [-44.724505925579756, -22.45202352859276], + [-44.72441237883972, -22.452748166234304], + [-44.72434350776739, -22.453281660706644], + [-44.72429458890378, -22.453432333897688], + [-44.72420047369854, -22.45371244499996], + [-44.72425025470937, -22.454442254096563], + [-44.72433246179665, -22.45462534957812], + [-44.72485897725442, -22.456901802986405], + [-44.7254112513229, -22.457213326101456], + [-44.725373779433866, -22.4573315042496], + [-44.72525815320552, -22.45744713154924], + [-44.725052594579076, -22.457556334020985], + [-44.724853459759316, -22.457569181419228], + [-44.724737833428, -22.457639843690515], + [-44.72462220722916, -22.45776831599827], + [-44.72444234415348, -22.458070229541583], + [-44.72435883625342, -22.458269363831093], + [-44.724229059950964, -22.45837895615466], + [-44.72418304106746, -22.458515516331197], + [-44.72412934362172, -22.459294144928876], + [-44.72410831523034, -22.459599067162923], + [-44.72412116362413, -22.460183622507397], + [-44.724037656268415, -22.460620432947255], + [-44.72394130228472, -22.461243528530062], + [-44.723787135142786, -22.46190516925061], + [-44.72372392318179, -22.462039896459732], + [-44.72371647569488, -22.462277742624693], + [-44.72375501871277, -22.462650315784813], + [-44.72367793366348, -22.462772366013116], + [-44.723607273582836, -22.46286872121251], + [-44.723446681133275, -22.46297149959217], + [-44.72326681794001, -22.463222025103114], + [-44.72306768351728, -22.46340831061109], + [-44.722887819955986, -22.46349824402041], + [-44.72273365134251, -22.4635175143347], + [-44.722438161111405, -22.463530361921848], + [-44.72229683944971, -22.463504668182495], + [-44.72215551778804, -22.463478974443184], + [-44.721948207730954, -22.463403587801672], + [-44.721943535707126, -22.463401890809795], + [-44.72184928121869, -22.463364187970598], + [-44.721690596396385, -22.463300714241342], + [-44.72165446920911, -22.46328626430305], + [-44.721620305051644, -22.46328113936667], + [-44.72156217583045, -22.463292805488027], + [-44.72000468730883, -22.464219584125924], + [-44.7197308126785, -22.464891106087524], + [-44.719842615504895, -22.46722634234626], + [-44.71980323137939, -22.467244896435194], + [-44.71887349441564, -22.467682900534193], + [-44.71880135739303, -22.467807399754346], + [-44.71820506120623, -22.46883654157415], + [-44.71822601307786, -22.46895961275853], + [-44.71995549823613, -22.471335539125942], + [-44.72015178725879, -22.471343800345803], + [-44.72070377859447, -22.471335138258326], + [-44.72110204816156, -22.471277324441072], + [-44.721455350433665, -22.471174543683457], + [-44.721686605435245, -22.471180967234197], + [-44.72180865605911, -22.471225933023376], + [-44.721911435792144, -22.471354406903206], + [-44.72195640026374, -22.471476455892237], + [-44.72191785936431, -22.471592082040903], + [-44.721831140237235, -22.471698073278002], + [-44.721744420110106, -22.471804064515016], + [-44.72160309900767, -22.47202246993016], + [-44.72153886221936, -22.472234451190218], + [-44.721532439486424, -22.472362925284045], + [-44.721549656969984, -22.47254182836351], + [-44.72154091919637, -22.47265687245333], + [-44.721609524698806, -22.472748345376722], + [-44.72159025292581, -22.472883243499787], + [-44.72155488290806, -22.472941356606], + [-44.72152802889459, -22.472985475686457], + [-44.72158143034217, -22.47308128364239], + [-44.7216208269863, -22.473288940696552], + [-44.7227020430717, -22.47436689325829], + [-44.72356860298611, -22.476205636721588], + [-44.723891412870266, -22.477298551779402], + [-44.7238441479938, -22.477440383961774], + [-44.72379359480856, -22.47745368806939], + [-44.72370687452675, -22.477492229263834], + [-44.72366190849699, -22.477562889396687], + [-44.72362657849352, -22.477627126506583], + [-44.7236330026608, -22.477688152532544], + [-44.723679598021484, -22.47775868748573], + [-44.72369824237515, -22.477878219524737], + [-44.7233948597526, -22.47878861235078], + [-44.723646205746604, -22.481555471511268], + [-44.7244509757561, -22.484054071951707], + [-44.72437421827407, -22.48442259033526], + [-44.72429786991308, -22.484407321475416], + [-44.72418866841743, -22.48439447468158], + [-44.72408588905236, -22.484426591903524], + [-44.72397257367707, -22.48447388515577], + [-44.72390602551292, -22.484526159319376], + [-44.723823089294775, -22.48458542051957], + [-44.72375185717166, -22.48466426970924], + [-44.723636230921166, -22.484770261003103], + [-44.72359811379896, -22.484787907089082], + [-44.723591454099164, -22.484789428816928], + [-44.72204038012403, -22.488620517762733], + [-44.72200529195794, -22.48956373223368], + [-44.721982138062195, -22.489652260335134], + [-44.72189220609837, -22.48983533562732], + [-44.72179263906391, -22.490005562930413], + [-44.721725191137, -22.490162944162233], + [-44.72163526023218, -22.49037171347078], + [-44.7215421163136, -22.49058048378551], + [-44.721484302413195, -22.490731438994477], + [-44.72143612558342, -22.490895244192544], + [-44.721384736703094, -22.491042988386788], + [-44.72137188899472, -22.491193945507497], + [-44.72137289039565, -22.491366749614794], + [-44.72141364495452, -22.49153439964071], + [-44.72149715270927, -22.491707839586525], + [-44.72151825200385, -22.49179692260144], + [-44.72130024008927, -22.49223975930926], + [-44.721211299837634, -22.492295606519136], + [-44.72108924854493, -22.492395173821627], + [-44.720947928147815, -22.492485106155936], + [-44.720881107015906, -22.492551977329377], + [-44.72083872598364, -22.492616792453486], + [-44.72073594695018, -22.492793443766963], + [-44.72061389690817, -22.493002212138478], + [-44.720606162925044, -22.49302396516744], + [-44.720517764118235, -22.49327262049814], + [-44.720446880961624, -22.49333624467751], + [-44.72035694957006, -22.49333303185199], + [-44.72029725622216, -22.493292527943574], + [-44.72019132960474, -22.49322064910602], + [-44.72008715199741, -22.49314995826573], + [-44.71994262009257, -22.493024696470197], + [-44.71979166227825, -22.49295082571976], + [-44.71968567075913, -22.4929219189095], + [-44.71958931640654, -22.49294761411485], + [-44.719480113072834, -22.493005427365727], + [-44.71940302879522, -22.49302791053125], + [-44.71919425782234, -22.492992580918617], + [-44.718792883930995, -22.492915499657574], + [-44.71840735425483, -22.49290264940601], + [-44.717989813456484, -22.492896226221323], + [-44.71762366290719, -22.492902650943883], + [-44.71741810408813, -22.492928347363485], + [-44.71727999462354, -22.492982948669034], + [-44.71717079133391, -22.493060032932068], + [-44.71710655439859, -22.493207777151646], + [-44.7170487415939, -22.493400488386985], + [-44.71702792571784, -22.493493214486527], + [-44.716080582480764, -22.4938460995687], + [-44.71578656847609, -22.49395561921489], + [-44.71295349919485, -22.493878109723997], + [-44.712878639360156, -22.49408954300473], + [-44.71215471095852, -22.496134191719715], + [-44.712121951907996, -22.496173191808637], + [-44.71180963832937, -22.496502599629935], + [-44.711697081441294, -22.49676093001443], + [-44.71165459477968, -22.496987527241284], + [-44.711598931233716, -22.497289041541432], + [-44.71157389164781, -22.49751613673434], + [-44.711587623210704, -22.497735861846532], + [-44.71158748872729, -22.499704145093325], + [-44.7113429544121, -22.50045782305046], + [-44.710532301993396, -22.500913465929646], + [-44.710771064883524, -22.501292396701167], + [-44.71070572297923, -22.501455753932863], + [-44.71068448024603, -22.501611539073195], + [-44.71079778055919, -22.501972679079632], + [-44.71097481081979, -22.502192195871235], + [-44.71135011515531, -22.5025108473365], + [-44.71173250021231, -22.502694957702687], + [-44.71209364182081, -22.5027232820119], + [-44.71232825677955, -22.50270412853924], + [-44.713508164482974, -22.503427372681184], + [-44.714231616510716, -22.504705840070194], + [-44.71425341381568, -22.504798063085858], + [-44.714440322311454, -22.505101512910922], + [-44.7145806354343, -22.50532931377964], + [-44.71467902959077, -22.505649748789164], + [-44.714734033237285, -22.50582887379453], + [-44.714692817333926, -22.50638301622614], + [-44.7142281132511, -22.50721175166302], + [-44.71342778537367, -22.508639028102547], + [-44.71426147240356, -22.510692964971092], + [-44.71478007121473, -22.51095715294911], + [-44.71686088535292, -22.510627666653654], + [-44.71700409142516, -22.51126301477418], + [-44.71625992324348, -22.512133131786307], + [-44.71624040017484, -22.512574721103995], + [-44.716192675451886, -22.513654245880613], + [-44.716144636743884, -22.514740832662174], + [-44.71498665742379, -22.51545042938601], + [-44.71462231780371, -22.515423368084633], + [-44.71353858247113, -22.51468422274589], + [-44.71120241444647, -22.514668930324607], + [-44.709130082266825, -22.51322466647938], + [-44.706989417190684, -22.512823253427822], + [-44.705036743475375, -22.513099977436084], + [-44.70470638756365, -22.51288270894676], + [-44.704429959963946, -22.512700908374015], + [-44.70361847426802, -22.512167211628316], + [-44.70290860279453, -22.511976618900444], + [-44.70260426130528, -22.511894906445917], + [-44.701590709345695, -22.511622777262037], + [-44.701150915709356, -22.51172934319257], + [-44.70077424230782, -22.51182061598952], + [-44.70006709667655, -22.511991963485553], + [-44.69943235781872, -22.512801086244206], + [-44.69952951441276, -22.51287881010295], + [-44.69953139942426, -22.512880319100127], + [-44.698609490706566, -22.513850032524214], + [-44.69701015554429, -22.5158887529559], + [-44.69685192855168, -22.517929358561624], + [-44.696380413493316, -22.51878272702847], + [-44.696300254205084, -22.51880655720082], + [-44.69628692613583, -22.518801261223615], + [-44.69574001852545, -22.518683541221982], + [-44.69508153056148, -22.518619818473447], + [-44.694929304070826, -22.518651230708468], + [-44.688525986894184, -22.521269093575523], + [-44.68860373649887, -22.521957419301046], + [-44.68848408480874, -22.522315581763362], + [-44.68698133643472, -22.524519806112117], + [-44.68554263464667, -22.52468164103673], + [-44.68429851378673, -22.525192014014852], + [-44.68022341900889, -22.529181445919757], + [-44.6802020015664, -22.52938287350146], + [-44.67919642023743, -22.531116269576863], + [-44.677871808799445, -22.532526293072163], + [-44.67682767024224, -22.53336103965132], + [-44.67381710308901, -22.5354522988857], + [-44.67069509457537, -22.538507939468452], + [-44.670337703701534, -22.53914274606101], + [-44.67036466759193, -22.539669474583146], + [-44.67338796317939, -22.54234891506953], + [-44.67536610213676, -22.543448151942535], + [-44.67669975737021, -22.545415009578253], + [-44.677567762097645, -22.548029701539324], + [-44.67803640754515, -22.555617086448436], + [-44.67898018565334, -22.557818356995522], + [-44.67928779261548, -22.55940250739911], + [-44.67898097957007, -22.560824360906455], + [-44.6778695135108, -22.562001418838808], + [-44.67653192313842, -22.562159921567243], + [-44.67536585840916, -22.56184337465615], + [-44.67344952286794, -22.559963775222847], + [-44.67103868396507, -22.557978831691578], + [-44.66976056944813, -22.556380431824017], + [-44.66634841636228, -22.554112400048595], + [-44.666256433521006, -22.554090781597587], + [-44.66503693677394, -22.553240635401117], + [-44.663083867177654, -22.55194235874989], + [-44.661976021069364, -22.551437430299757], + [-44.65984136449858, -22.554741920595315], + [-44.65875736789413, -22.555197562011926], + [-44.657688167325965, -22.555205855113584], + [-44.656093826256594, -22.554670442897176], + [-44.65215617591784, -22.556220552606362], + [-44.650795948049726, -22.557514559099765], + [-44.65022669615792, -22.557318982090358], + [-44.64991288290557, -22.5561287319259], + [-44.6483776628933, -22.553068770806494], + [-44.647618777063926, -22.55343848171708], + [-44.64710613456593, -22.554616643475388], + [-44.64487087037421, -22.556099953803628], + [-44.64389624224527, -22.55786784684489], + [-44.642172932443046, -22.559871701504157], + [-44.64206661089517, -22.56070378324548], + [-44.6422272583633, -22.562350987985898], + [-44.64317696689361, -22.563855798088944], + [-44.643341807221816, -22.56499781749729], + [-44.64306382515899, -22.566362118915713], + [-44.642651736884524, -22.567449426419635], + [-44.643454609872514, -22.57204099478611], + [-44.64278610121424, -22.574747003829337], + [-44.64281148310678, -22.57813619994958], + [-44.64375823231962, -22.57907013569057], + [-44.64517115212682, -22.579826081402917], + [-44.64694665580855, -22.58202529032659], + [-44.64756351462459, -22.585142662109956], + [-44.64716993412624, -22.589575876717728], + [-44.646334517494125, -22.591297195458676], + [-44.645478266778106, -22.592151352686063], + [-44.645267761050526, -22.592546012183316], + [-44.64487440447776, -22.594243435563133], + [-44.64531632553203, -22.597129281188128], + [-44.64408228307876, -22.6001077195169], + [-44.643891757282255, -22.600986832453493], + [-44.64495062898016, -22.601049698413917], + [-44.64555935318744, -22.601740533660028], + [-44.64579169042933, -22.603149477104658], + [-44.64655991543286, -22.603887979067533], + [-44.646301661507046, -22.604402675904087], + [-44.646062518577494, -22.604880007679128], + [-44.64588349525853, -22.60507588215608], + [-44.64572294874594, -22.605153155520945], + [-44.64556240223342, -22.605230428885783], + [-44.64451344941276, -22.60553044913858], + [-44.644040143830324, -22.605727333194437], + [-44.64358198967644, -22.606082095321387], + [-44.64353326555369, -22.60611982344127], + [-44.64217779119531, -22.607628136069142], + [-44.641925846756834, -22.6079084887435], + [-44.64173734023303, -22.608033191193638], + [-44.64157533678285, -22.60814036058044], + [-44.64154883370921, -22.60815789364367], + [-44.64069191294688, -22.608559301583963], + [-44.640325206622585, -22.608669312374765], + [-44.64002308738029, -22.608694271984223], + [-44.639998148277705, -22.60869633203454], + [-44.63921411855805, -22.60854565047811], + [-44.63873196042345, -22.608519456408438], + [-44.638360778944396, -22.608570645170214], + [-44.63659448987907, -22.60923720706603], + [-44.635371950726054, -22.60971833677501], + [-44.634815142632625, -22.609849805952695], + [-44.634804061591026, -22.60985242197617], + [-44.63432293252075, -22.609852422920945], + [-44.634318531501485, -22.60985228992949], + [-44.63354208510637, -22.609828762439033], + [-44.63301253059919, -22.609729472415097], + [-44.63249659175489, -22.609458153254213], + [-44.631380947320935, -22.60874820398926], + [-44.63085168270768, -22.608602247934723], + [-44.630249086322024, -22.60869246917543], + [-44.62969305316626, -22.60879553033283], + [-44.62931840164235, -22.608833957092806], + [-44.62893636079119, -22.6087439187849], + [-44.62849417506374, -22.608385392422775], + [-44.62778743672003, -22.607819084446476], + [-44.62719940580893, -22.60765359949422], + [-44.626474389677675, -22.60764879391373], + [-44.62584349495291, -22.607644613148945], + [-44.62531556918987, -22.60743103204776], + [-44.62477248493236, -22.60703074085631], + [-44.62434647257161, -22.606300440471667], + [-44.6230888219774, -22.605903998886944], + [-44.61851668187137, -22.612628792723527], + [-44.61833527268869, -22.612889075246667], + [-44.61817358225542, -22.613003441637275], + [-44.61800794778698, -22.613109921030617], + [-44.61783442630267, -22.613224287444517], + [-44.61768456682967, -22.613299216786626], + [-44.617617492657125, -22.613349768950677], + [-44.617621468875214, -22.61343724499913], + [-44.617692455398526, -22.61353189292065], + [-44.617768867871746, -22.613594666811142], + [-44.617787103141495, -22.613677808828765], + [-44.617735836111045, -22.613760624982547], + [-44.61763330082368, -22.613827668226826], + [-44.61746766623735, -22.61388287958716], + [-44.61718766508609, -22.613906542151586], + [-44.61699442534465, -22.613945979555954], + [-44.61690846013503, -22.614015821769485], + [-44.61687217119896, -22.614111612902246], + [-44.61683273541889, -22.614281191088597], + [-44.61677752349847, -22.614419219285658], + [-44.61667893255439, -22.614628233613352], + [-44.61659217157059, -22.614797810892547], + [-44.61652078847976, -22.614892038093114], + [-44.61645314841246, -22.614989479288404], + [-44.61633410008906, -22.615071805574892], + [-44.616162312499085, -22.61513696695372], + [-44.61597695988221, -22.615215840367934], + [-44.61574033899918, -22.61527499587011], + [-44.61565752172411, -22.615310489055364], + [-44.6155589295443, -22.61541696831722], + [-44.61549583157174, -22.61554710952467], + [-44.615393296293284, -22.61561809477134], + [-44.615251323854174, -22.61569302509805], + [-44.615069915254224, -22.61577189850462], + [-44.6150147031252, -22.61581922264327], + [-44.61495515798708, -22.615870714793168], + [-44.61492794304166, -22.61594541989463], + [-44.61492866125231, -22.616035735951293], + [-44.61492938046299, -22.616126051007964], + [-44.61489245057773, -22.61624513815688], + [-44.61485695764243, -22.61633978628737], + [-44.614789915444405, -22.61637922344428], + [-44.614714985166955, -22.616398941603865], + [-44.61464597088791, -22.61640682874435], + [-44.61454737939986, -22.616379223919985], + [-44.614517801190836, -22.616343730955176], + [-44.61445470294632, -22.616355562086547], + [-44.61438765986601, -22.616446266276327], + [-44.614312730788086, -22.616552745491767], + [-44.61422991349486, -22.616580351671946], + [-44.614147096120014, -22.61657246382936], + [-44.614016954487006, -22.6165409150643], + [-44.61396174335803, -22.61658823920301], + [-44.613926250313945, -22.61663556330307], + [-44.61392230646014, -22.616706549356472], + [-44.61398935012966, -22.6168721823315], + [-44.61398540641175, -22.61700232342287], + [-44.61394991350362, -22.617108802560974], + [-44.613906533507226, -22.61719161969933], + [-44.61381352725384, -22.617255679922916], + [-44.61370540599446, -22.61734542319265], + [-44.61368568814521, -22.61744795829732], + [-44.613658082189474, -22.617518944397123], + [-44.61356737795288, -22.617585986618195], + [-44.613426457405474, -22.61761186891115], + [-44.613350476091256, -22.617617536063833], + [-44.613320817109, -22.617680851162735], + [-44.61329132116272, -22.61775950827118], + [-44.613228222090406, -22.61784626845074], + [-44.61310202460127, -22.617869930713464], + [-44.61290484069759, -22.617846269085003], + [-44.612581459123376, -22.61776739666856], + [-44.61226596451068, -22.61765697521623], + [-44.61204511868626, -22.617712186684905], + [-44.61157976502628, -22.6178620466939], + [-44.61124060961977, -22.61788570937422], + [-44.61109469287342, -22.61783444162741], + [-44.61094877712708, -22.6177831748806], + [-44.610586413923016, -22.61750329241115], + [-44.60987902674512, -22.616956924155822], + [-44.609783498355874, -22.617041528673493], + [-44.60790369572598, -22.616058273549275], + [-44.60742312573548, -22.615953322615457], + [-44.60678424927678, -22.615645717669665], + [-44.60616903459392, -22.615196141586004], + [-44.60601397407, -22.61506979753296], + [-44.604748859717375, -22.614408022966746], + [-44.603761922123475, -22.611664846089734], + [-44.60371605876828, -22.611599526075885], + [-44.60342968802668, -22.61137825049431], + [-44.603298028026, -22.61118938563054], + [-44.603286639793964, -22.61110966860155], + [-44.60325859122239, -22.6109133295299], + [-44.6029983071959, -22.61051896378569], + [-44.60274766358688, -22.60985268384728], + [-44.60268976730089, -22.609401105669587], + [-44.602761682917844, -22.609099245334136], + [-44.602800496038824, -22.6089925094784], + [-44.60254351494469, -22.608278204954985], + [-44.60251920297705, -22.60827299227655], + [-44.59881012007347, -22.609611929403748], + [-44.59814368677154, -22.60995663757532], + [-44.597847999161715, -22.61012412046712], + [-44.597398286018496, -22.61049531273816], + [-44.597272087963454, -22.610708271122586], + [-44.59723265242702, -22.61098432737803], + [-44.59725631518064, -22.611268270514827], + [-44.597327302137984, -22.611552214558944], + [-44.59733360821289, -22.611573021560076], + [-44.59733571023786, -22.611579957560377], + [-44.59733925427998, -22.61159165156106], + [-44.59733991828782, -22.611593840561085], + [-44.597340275292126, -22.61159502056126], + [-44.59734077629811, -22.61159667456129], + [-44.59734106130143, -22.61159761556134], + [-44.59734124630365, -22.611598227561316], + [-44.597341335304705, -22.61159852156136], + [-44.597341536307106, -22.611599182561456], + [-44.59734413333792, -22.611607757561828], + [-44.59734561335554, -22.611612643562115], + [-44.59734813938558, -22.61162098056253], + [-44.59735056441444, -22.611628983562987], + [-44.59735171142797, -22.611632769563144], + [-44.59735336144764, -22.611638215563417], + [-44.59735491746617, -22.611643353563768], + [-44.59735693649004, -22.611650015564024], + [-44.597359340518736, -22.611657951564485], + [-44.59736114754018, -22.611663915564762], + [-44.59736277655949, -22.611669294565026], + [-44.597363211564684, -22.611670727565127], + [-44.59736354156856, -22.611671818565203], + [-44.597440507482986, -22.611925764578263], + [-44.597440526483204, -22.611925827578347], + [-44.59744057948385, -22.611925999578308], + [-44.59744074648583, -22.611926550578353], + [-44.59744102248906, -22.61192746457839], + [-44.597441034489194, -22.611927502578418], + [-44.59744107048964, -22.61192762257841], + [-44.597441151490585, -22.61192788757837], + [-44.597441241491666, -22.61192818657841], + [-44.59744134149286, -22.61192851457836], + [-44.597441424493844, -22.6119287885784], + [-44.59744150749485, -22.611929062578444], + [-44.59744155449541, -22.611929215578463], + [-44.59744517753839, -22.611941174579083], + [-44.59744518853854, -22.611941210579094], + [-44.59744530454001, -22.61194158957915], + [-44.5974454035411, -22.611941914579088], + [-44.59744546254181, -22.61194210757912], + [-44.59744551254239, -22.611942269579135], + [-44.59744559354334, -22.61194253457917], + [-44.59744565554411, -22.611942738579202], + [-44.597445744545176, -22.611943032579138], + [-44.597445822546085, -22.61194328557919], + [-44.59744592554731, -22.61194362457924], + [-44.597446478553834, -22.61194544457929], + [-44.59744733456399, -22.611948268579493], + [-44.59744829357543, -22.61195142857958], + [-44.597449046584366, -22.61195391157972], + [-44.59744993259487, -22.61195683257984], + [-44.59745025259869, -22.611957887579884], + [-44.5974510216078, -22.611960420580044], + [-44.597451148609316, -22.611960840580103], + [-44.597451281610894, -22.611961278580065], + [-44.59745165461526, -22.611962510580177], + [-44.59745222962215, -22.61196440058023], + [-44.59745297963102, -22.61196687358039], + [-44.597459899713265, -22.611989704581585], + [-44.59752197345069, -22.612194509592122], + [-44.597614564550746, -22.61250000260794], + [-44.59761456646617, -22.61333457714624], + [-44.59756969705546, -22.613675586454068], + [-44.59749678633219, -22.61393297176287], + [-44.59732740130916, -22.614240944293353], + [-44.597143435959396, -22.61443388477811], + [-44.596959470609534, -22.61462682426285], + [-44.59665435603634, -22.614949886068832], + [-44.59591849330736, -22.615578062915315], + [-44.59550569231118, -22.61591907294379], + [-44.59521852556805, -22.616134447645216], + [-44.594581375563756, -22.61645751010149], + [-44.59438481769707, -22.616574216918327], + [-44.5935931060479, -22.618294297591873], + [-44.59366603631521, -22.61850356721467], + [-44.59342374380284, -22.62047783196354], + [-44.593396822737546, -22.62093550231162], + [-44.5933699014662, -22.621303432601806], + [-44.59340824901881, -22.62147215663561], + [-44.5934596417595, -22.621698285680868], + [-44.59368399140648, -22.6219944244326], + [-44.59371091395523, -22.622182877501455], + [-44.59352246204952, -22.622577730125435], + [-44.5930647913953, -22.623152062392673], + [-44.59255327657076, -22.62375331678282], + [-44.59227508505143, -22.62404945651893], + [-44.59205073629019, -22.624139197016294], + [-44.59186228235414, -22.624085353350775], + [-44.59144948012125, -22.623887928031934], + [-44.59105167120491, -22.623800275754576], + [-44.59092001657078, -22.623771267993714], + [-44.59020209955804, -22.623807165422978], + [-44.58960084439845, -22.623995618722343], + [-44.58900856329803, -22.624193046009815], + [-44.58881113670432, -22.62430522046888], + [-44.5886137101106, -22.624417394927928], + [-44.58833551767321, -22.624749430687263], + [-44.588129117710345, -22.625153258352352], + [-44.58792271741775, -22.625413501924754], + [-44.58760862943428, -22.62557503364418], + [-44.58733056125421, -22.625583306194063], + [-44.586980451601946, -22.625521190839667], + [-44.58468311989914, -22.626481405958767], + [-44.58422096144673, -22.62671697301592], + [-44.584099813919146, -22.626714729251766], + [-44.58408859578319, -22.626676590249044], + [-44.58407737864724, -22.62663845124629], + [-44.58405494337541, -22.6265621722409], + [-44.584081864873646, -22.626292955014176], + [-44.58413226001353, -22.625945651173744], + [-44.57323851498621, -22.602026313066304], + [-44.57312981408767, -22.60204845573864], + [-44.57308124088415, -22.60205101183521], + [-44.573006873389545, -22.60202046839526], + [-44.57256269976998, -22.602450678552447], + [-44.5725315967148, -22.602575092248607], + [-44.572495805876606, -22.602713141407968], + [-44.57250091924972, -22.6028665304974], + [-44.572562274947224, -22.603055710500204], + [-44.57255205024252, -22.60320398561631], + [-44.572516259615, -22.603434069835316], + [-44.57244467906719, -22.603766412190634], + [-44.572419114495425, -22.604001608393034], + [-44.57245490531689, -22.604293047511998], + [-44.572434454591594, -22.60445154865468], + [-44.572383324921304, -22.60469185791042], + [-44.572352647514826, -22.605008862175776], + [-44.57229640631418, -22.605463915580618], + [-44.57216346961908, -22.605847388088918], + [-44.57205098505901, -22.60625131257048], + [-44.57158059224866, -22.606783060834232], + [-44.56828783991885, -22.610218977495215], + [-44.56742886113472, -22.611057504717284], + [-44.567229455579216, -22.61119044219307], + [-44.56695846758627, -22.611267137772238], + [-44.56678462588346, -22.611287590125123], + [-44.5664522824385, -22.611282476771063], + [-44.56619152039594, -22.611318268303613], + [-44.565976775703966, -22.611420527789488], + [-44.565721127022876, -22.611604595408355], + [-44.56555751170361, -22.611773323837472], + [-44.56535299325464, -22.611962503359667], + [-44.5651177966969, -22.612161908948487], + [-44.564959294235685, -22.612259056321193], + [-44.564836582835284, -22.6123152985974], + [-44.56468319427903, -22.6123613159269], + [-44.56452980492181, -22.61249425331279], + [-44.5644635486072, -22.612481633434072], + [-44.56442243241191, -22.61247380150925], + [-44.56439669704551, -22.61236223748712], + [-44.56436258668531, -22.612269142493243], + [-44.564274155245776, -22.612243718649506], + [-44.5641974610203, -22.61228973482916], + [-44.56410026082061, -22.61238560508126], + [-44.56401850655285, -22.612422672265062], + [-44.56394692517382, -22.61239199538492], + [-44.56381910438843, -22.612289683568232], + [-44.56369638883585, -22.612279509801276], + [-44.563568564413295, -22.612335753087486], + [-44.56338449692375, -22.612468690533273], + [-44.563284793522925, -22.612481472736313], + [-44.56308283158748, -22.612453352112478], + [-44.56284507751526, -22.61243290056356], + [-44.56270191393285, -22.612448239853144], + [-44.56256852443158, -22.612480601134592], + [-44.56242836995787, -22.612537717445427], + [-44.5622852064282, -22.612576064749984], + [-44.56210956571894, -22.61259719610669], + [-44.56197587114078, -22.61259651736739], + [-44.5619017327859, -22.612581178502204], + [-44.56183526444947, -22.61255944861788], + [-44.561768795113046, -22.61253771873355], + [-44.56173939589257, -22.6124968147644], + [-44.5617253347032, -22.612440572755386], + [-44.56172022154659, -22.6123817737272], + [-44.561697213283466, -22.61231019172559], + [-44.561669091969144, -22.61222582772576], + [-44.56164096972496, -22.612172141745827], + [-44.561571945286786, -22.612110786840752], + [-44.56149269381626, -22.61205454395895], + [-44.56142111147233, -22.612039205088838], + [-44.561198697401935, -22.611990632491608], + [-44.56110155000041, -22.61199830268631], + [-44.56096605643355, -22.612005971955885], + [-44.56079221478316, -22.61204943232351], + [-44.560659278379454, -22.612123570631272], + [-44.560500775900614, -22.612213047998942], + [-44.56034227335729, -22.612274403348305], + [-44.560171393663666, -22.612293390694266], + [-44.55980796692977, -22.612220718356703], + [-44.559629012122784, -22.612205380696142], + [-44.55944494541067, -22.612241171078825], + [-44.55934012896442, -22.612243728285094], + [-44.559225938459015, -22.612238123504483], + [-44.559158681034944, -22.612179577597708], + [-44.55908204855171, -22.612112871703996], + [-44.558928533797015, -22.612072444977475], + [-44.55856551230127, -22.612103122706117], + [-44.55836099334892, -22.61207244608551], + [-44.55823828170258, -22.61202131629183], + [-44.55814103808297, -22.611933837424875], + [-44.558084891549555, -22.611806572451812], + [-44.55807977818826, -22.611658296365444], + [-44.55818657119097, -22.611458174026875], + [-44.55821271501296, -22.611331066893207], + [-44.55820248867641, -22.611203242830182], + [-44.55814624617641, -22.61109075786681], + [-44.5580388724442, -22.610973160000047], + [-44.557911047846034, -22.610952708236283], + [-44.55771164207951, -22.610993611652134], + [-44.55758469557982, -22.611014554913506], + [-44.55745774808012, -22.61103549817499], + [-44.55732349742251, -22.61100115341475], + [-44.557169665402455, -22.610845337613735], + [-44.55702650262111, -22.6107737558466], + [-44.556779559459265, -22.610731509301207], + [-44.556561220508755, -22.6107277407249], + [-44.556254442349214, -22.610799322370315], + [-44.55602947147236, -22.610840226836007], + [-44.55578404841363, -22.610840227315027], + [-44.555528399123745, -22.610758419760785], + [-44.55534944405932, -22.610630596026954], + [-44.555239686214065, -22.61046806813546], + [-44.554982567326185, -22.609968398118603], + [-44.55478455698361, -22.60993186578844], + [-44.550889378792796, -22.605006674670086], + [-44.55040961881999, -22.605279426289567], + [-44.55044342399582, -22.605425912212997], + [-44.55038505036814, -22.605698985504606], + [-44.55023138124564, -22.605935400958202], + [-44.55009544205105, -22.60610680333487], + [-44.55003633816085, -22.606266383554075], + [-44.550036338633696, -22.606473246688683], + [-44.54998905567288, -22.606579633850078], + [-44.54988857849619, -22.606691932119208], + [-44.549734908062916, -22.606792408484356], + [-44.549666938904785, -22.606851512655414], + [-44.54959896874663, -22.606910616826454], + [-44.54950144749481, -22.606984497064744], + [-44.549403926243, -22.60705837630302], + [-44.549303449133824, -22.60720022659134], + [-44.54907885443511, -22.60731843410633], + [-44.548911833785446, -22.60734947845219], + [-44.54874481413593, -22.60738052279821], + [-44.54859420069555, -22.60747210515153], + [-44.54846121634474, -22.60756962747445], + [-44.54831345699767, -22.6076967008453], + [-44.548250099831215, -22.60774346499938], + [-44.54817751761378, -22.607785357168197], + [-44.548139792411035, -22.607767828230333], + [-44.5481020662082, -22.60775029929245], + [-44.548075197955534, -22.607690478305933], + [-44.54800316050361, -22.607628732406248], + [-44.54790563804911, -22.607613956586757], + [-44.54780220665013, -22.607634642801973], + [-44.5476928642865, -22.607681926046002], + [-44.547590682934114, -22.60772063927049], + [-44.547509641563586, -22.607711478422527], + [-44.54744167114874, -22.607658284520493], + [-44.547415272898085, -22.607552694906676], + [-44.54619015200517, -22.60871887372991], + [-44.54619457724695, -22.608742843658803], + [-44.546144339577275, -22.60898221391257], + [-44.546094101995344, -22.609260003191448], + [-44.54607341518308, -22.60938116531078], + [-44.546097057474206, -22.609463911318553], + [-44.54621822122665, -22.60956438714768], + [-44.54628323562873, -22.609617581055595], + [-44.54632460898967, -22.6096973710268], + [-44.54633642931761, -22.60981853408264], + [-44.5463157434242, -22.609904234178895], + [-44.5462300432706, -22.609998801407613], + [-44.54611774499548, -22.610090412686226], + [-44.546043864723906, -22.610111098843824], + [-44.54597885033531, -22.61006381593981], + [-44.54590792603604, -22.61006677108004], + [-44.54585473180654, -22.610066771183746], + [-44.54580153857697, -22.61006677128749], + [-44.54568924015324, -22.610093368523806], + [-44.545597628751146, -22.610090413700554], + [-44.545494197196824, -22.610043129871578], + [-44.54539667463409, -22.609981071021238], + [-44.54535234643265, -22.609976639104794], + [-44.54530801923123, -22.60997220618833], + [-44.5452041428889, -22.61001849342107], + [-44.54518663390901, -22.610060364482482], + [-44.545169124929146, -22.610102234543906], + [-44.54513366202602, -22.61021157668427], + [-44.545080469019425, -22.6103090988515], + [-44.545019886886294, -22.610365247006268], + [-44.54497202278119, -22.610409609128528], + [-44.54494311579935, -22.610472126225655], + [-44.54491497787941, -22.61056029033787], + [-44.54488394792788, -22.610640080450384], + [-44.54485291897638, -22.6107198705629], + [-44.54478199391346, -22.610826257770533], + [-44.54469333870656, -22.61090309299342], + [-44.54456330933447, -22.610985839300916], + [-44.54423276394184, -22.611000582955104], + [-44.543942230862925, -22.61107710057153], + [-44.54377676028825, -22.611138102933914], + [-44.54364592088296, -22.611207811234475], + [-44.54354080968525, -22.611319777512406], + [-44.543400747577365, -22.611537059927155], + [-44.5432925733164, -22.611627118196765], + [-44.54318027495336, -22.61168031245035], + [-44.54300448002163, -22.611751118393816], + [-44.54200694266502, -22.61270056493862], + [-44.5420100162802, -22.612720542410216], + [-44.54199967340782, -22.6127959004795], + [-44.54196864448667, -22.612888988600663], + [-44.54188885326384, -22.612942182790878], + [-44.54177452581127, -22.61296008402553], + [-44.541703339654994, -22.613026112207333], + [-44.541606482442255, -22.61311595145479], + [-44.54155676555605, -22.61312903176302], + [-44.54126563904984, -22.613406115905438], + [-44.541283799827994, -22.61345656130594], + [-44.54134654347775, -22.613622384291745], + [-44.54140928823003, -22.61383302330669], + [-44.54144962374214, -22.613980920324426], + [-44.54139584389923, -22.614151224540343], + [-44.54135999008256, -22.614299120706647], + [-44.54141377176544, -22.614496315730275], + [-44.54141825417406, -22.614666619832494], + [-44.541317398232046, -22.614882487169893], + [-44.54118520512071, -22.61508341855864], + [-44.541081684873845, -22.61517088581756], + [-44.54098491865891, -22.615259596064078], + [-44.54084459527541, -22.615356803401017], + [-44.540724505956014, -22.615443844691942], + [-44.5404770950988, -22.615536072234534], + [-44.54011116893346, -22.615717300066308], + [-44.53988968832365, -22.615868809596897], + [-44.539668754748654, -22.61603450913577], + [-44.53950904534385, -22.61615903052838], + [-44.5393554001773, -22.616376350969617], + [-44.538881607155105, -22.617261530470714], + [-44.5383189460673, -22.61828586423585], + [-44.53812212085259, -22.618563671800796], + [-44.53798078554414, -22.618695677162506], + [-44.537835625127805, -22.618787729505556], + [-44.53770389462304, -22.618815708780694], + [-44.53745100955288, -22.618825232280003], + [-44.53689172825174, -22.618874946402933], + [-44.53651974577874, -22.61893321016636], + [-44.536403221275656, -22.618933210393564], + [-44.53628669677258, -22.618933210620778], + [-44.536071573638836, -22.618843576981703], + [-44.5359191946941, -22.618718089196946], + [-44.53578026180738, -22.618592601385973], + [-44.5356881990428, -22.61843197546071], + [-44.535644147510446, -22.61828225844887], + [-44.53562564115139, -22.61816011840519], + [-44.535532331300146, -22.617963886459098], + [-44.535450225666146, -22.6178416025394], + [-44.53541817428408, -22.61773496953238], + [-44.53541180001165, -22.61762779447481], + [-44.53542620281037, -22.61751251237155], + [-44.53540379442694, -22.617387024333386], + [-44.53539931217204, -22.617283945274853], + [-44.53536121787436, -22.617225683311084], + [-44.53532312257671, -22.617167421347403], + [-44.535161780460285, -22.616983672542016], + [-44.53490632189651, -22.616781995908323], + [-44.53467775450003, -22.6166027282369], + [-44.53447607629137, -22.616454832533538], + [-44.534350588698366, -22.616432424763527], + [-44.53422958214514, -22.616418979990662], + [-44.534131480629895, -22.61637887615567], + [-44.534054613271515, -22.61636726829795], + [-44.533921628845896, -22.61643228259954], + [-44.533815242474304, -22.616470699832036], + [-44.5337088550757, -22.61649729705674], + [-44.533584735411566, -22.616441148261984], + [-44.53351961297191, -22.616371816343698], + [-44.533436975537306, -22.616337717482462], + [-44.53335922822849, -22.616349502641768], + [-44.53326396692462, -22.616396521858018], + [-44.5331998987202, -22.616428144003567], + [-44.533111903504995, -22.616500253222153], + [-44.532996650128915, -22.61655344748146], + [-44.53280456231968, -22.616562312861678], + [-44.53264202577995, -22.616633238224747], + [-44.53250820639645, -22.61671828554108], + [-44.53242038622804, -22.616810549772467], + [-44.53230808909418, -22.61696422009168], + [-44.53221056703766, -22.61712380138588], + [-44.53219283605554, -22.617165173447408], + [-44.532175105073556, -22.61720654650903], + [-44.53215146321453, -22.617312933624568], + [-44.53212191222865, -22.617374992722674], + [-44.53206576322254, -22.617478424899655], + [-44.5320303002247, -22.617546394013075], + [-44.53197710715698, -22.61761731916306], + [-44.53186185489566, -22.617720751455252], + [-44.531720004573415, -22.617847824814614], + [-44.53144517081196, -22.618034002471852], + [-44.53133287353626, -22.618125613750554], + [-44.5312948735284, -22.618193982869222], + [-44.53130923279883, -22.618285193900793], + [-44.53127968088045, -22.618376805018244], + [-44.53121466584269, -22.61848319221443], + [-44.531193979982994, -22.618583669320312], + [-44.53122057729361, -22.618669369324422], + [-44.53129741276725, -22.618731428215238], + [-44.53140084524088, -22.61874324902137], + [-44.53145108355232, -22.618784621950446], + [-44.53145994875268, -22.618855545979468], + [-44.531409710697794, -22.618926471123693], + [-44.53125308510244, -22.618961933452134], + [-44.5311880708824, -22.618988530596173], + [-44.531143742866576, -22.619065365732794], + [-44.53111714600145, -22.619174707855933], + [-44.53108759409669, -22.61927222897727], + [-44.53110828134133, -22.619340198981263], + [-44.53116442975264, -22.61941407892015], + [-44.53118511695668, -22.619464316912524], + [-44.53115260903919, -22.619561838039626], + [-44.53109350591898, -22.619620942193443], + [-44.53100780458263, -22.619635718370095], + [-44.530792074515965, -22.619576614751967], + [-44.530644313796735, -22.619541153016797], + [-44.530452225818664, -22.619476139348766], + [-44.53031628622476, -22.619473183611795], + [-44.530218764925145, -22.619526377836554], + [-44.53013897478991, -22.619617989051918], + [-44.530055003548675, -22.619671145250248], + [-44.52997470742206, -22.619767500469738], + [-44.52986871623582, -22.619886338753904], + [-44.52978520813925, -22.62000196599213], + [-44.52961176876447, -22.620165769437083], + [-44.52944796429911, -22.62027176082554], + [-44.529338761944885, -22.620323150071997], + [-44.529213499433254, -22.620335998324496], + [-44.52907860186902, -22.6203440275926], + [-44.528943704304666, -22.62035205786079], + [-44.52853882861038, -22.6203758746654], + [-44.52835951582631, -22.6203716680121], + [-44.52820819016462, -22.62036811830466], + [-44.52805080937484, -22.62031994157978], + [-44.52790306364137, -22.620278187840437], + [-44.52777137796248, -22.62023001006559], + [-44.527601149058526, -22.620156138349145], + [-44.52742128507627, -22.620066206640804], + [-44.52724142205726, -22.61996021692205], + [-44.52720238280835, -22.61992508197519], + [-44.527145065443015, -22.61987349705316], + [-44.527032650810774, -22.619809260230245], + [-44.52701819773732, -22.61980444225521], + [-44.527003744663936, -22.61979962528018], + [-44.52697483751698, -22.619789989330208], + [-44.52691702422328, -22.619770718430285], + [-44.526778914656106, -22.61978356670778], + [-44.52676285559777, -22.619788383742254], + [-44.52674679553942, -22.619793201776645], + [-44.52686884655805, -22.6200083946795], + [-44.52693308393087, -22.620050148581605], + [-44.526996028244284, -22.620068308470803], + [-44.52702943947909, -22.620107961431614], + [-44.52706798179972, -22.620175410400563], + [-44.52708876604994, -22.620245679406015], + [-44.52713864331032, -22.620265341321726], + [-44.52720930392365, -22.620400238272126], + [-44.527234999232704, -22.620486958278693], + [-44.527244634450405, -22.620564042310363], + [-44.52727675370652, -22.620615432281248], + [-44.52726711779698, -22.620673245337787], + [-44.527193245595285, -22.620724634515398], + [-44.52716375930482, -22.620734174133823], + [-44.53106188675508, -22.625134455832303], + [-44.531099702576924, -22.625148206789984], + [-44.53112080487769, -22.625200961387836], + [-44.53125095207173, -22.625347868593476], + [-44.5315779953529, -22.62545878406008], + [-44.53170349814729, -22.62556914688738], + [-44.53194447939025, -22.62565755347523], + [-44.53220536574435, -22.62575693803144], + [-44.53237307883803, -22.625918437809748], + [-44.53303245427098, -22.626174258690888], + [-44.53350979975632, -22.62635945688085], + [-44.5337458400315, -22.626471264493382], + [-44.53398188030669, -22.62658307210598], + [-44.53462788583558, -22.626906072056702], + [-44.53490119692514, -22.62730361078298], + [-44.5350751226652, -22.628173229011004], + [-44.53532358810217, -22.628769537915222], + [-44.5358205158399, -22.62946523239949], + [-44.53659075512251, -22.630757234739217], + [-44.537897632609265, -22.632873186568528], + [-44.53825546568105, -22.633540011304717], + [-44.53818092857656, -22.6345090140818], + [-44.53798216087864, -22.63545317208529], + [-44.5375607117617, -22.636197640393217], + [-44.536491385384934, -22.63761479740454], + [-44.53544784215036, -22.638608649089676], + [-44.53398191026071, -22.63967704064785], + [-44.5328886737302, -22.640198814122083], + [-44.53216941252377, -22.64015606849803], + [-44.53167439402332, -22.639998348361246], + [-44.53152212328873, -22.639527968351462], + [-44.53156064963302, -22.639296809021346], + [-44.53121954052004, -22.639461614430676], + [-44.53466879025256, -22.632996509031116], + [-44.531360342303294, -22.63069277006649], + [-44.52998162988788, -22.63045909343741], + [-44.528451728112536, -22.63038690437379], + [-44.52805913137387, -22.630368379127226], + [-44.52712727948772, -22.630429761984207], + [-44.52617311295449, -22.630687745013134], + [-44.52522791789806, -22.63113750314976], + [-44.52456513135739, -22.63127902953445], + [-44.52400765845957, -22.63106526548148], + [-44.52332281527253, -22.631403263037395], + [-44.522821307653516, -22.6320807584578], + [-44.521906576195946, -22.632297730382735], + [-44.52139017878997, -22.63222156233957], + [-44.5212292290401, -22.632197822637742], + [-44.52092526559601, -22.632140801192904], + [-44.517758358550246, -22.631546708975804], + [-44.517210617741426, -22.631353582916685], + [-44.516807457784715, -22.630822095354322], + [-44.51604283799113, -22.630608197703943], + [-44.51536484332343, -22.630723368100124], + [-44.51507383271041, -22.631005739851897], + [-44.514920618448755, -22.632056781838443], + [-44.5147756828347, -22.633813365270793], + [-44.51473623059396, -22.63422041461406], + [-44.514595781875286, -22.63460935914236], + [-44.5142620998743, -22.634802682919062], + [-44.51347175018494, -22.635121273667494], + [-44.512589211057204, -22.63629799415746], + [-44.51185821765845, -22.637944788660157], + [-44.51150380294994, -22.638743219873604], + [-44.51116780982482, -22.64063743976896], + [-44.51044130142668, -22.641400692684428], + [-44.509760210534715, -22.641424296027022], + [-44.50955478566187, -22.64143116543181], + [-44.50903129943763, -22.641448672463277], + [-44.5071450056818, -22.639874131106072], + [-44.5050744249674, -22.636914610198346], + [-44.50505540782312, -22.63688742921759], + [-44.504894042598565, -22.636656786380566], + [-44.50465895795946, -22.636384205659542], + [-44.50464557261924, -22.636321844593915], + [-44.504439468265325, -22.636119950775278], + [-44.49831098063157, -22.62753046370289], + [-44.4982854771706, -22.627520484245785], + [-44.498085623118754, -22.627438192580403], + [-44.4978211107872, -22.627355900040875], + [-44.49774050428652, -22.627289205153833], + [-44.4976565255795, -22.62713841321815], + [-44.49756702003364, -22.627068754346407], + [-44.49740964717679, -22.626991463601826], + [-44.49728620771009, -22.6270208538612], + [-44.497209055216075, -22.62695055496505], + [-44.49720391492527, -22.626832756897606], + [-44.497036089999995, -22.62674527016656], + [-44.49685123085056, -22.626591758425217], + [-44.4965404679871, -22.62636385887981], + [-44.49642213228475, -22.626280224054995], + [-44.49630457166913, -22.626233200252738], + [-44.496134107918486, -22.6262273225803], + [-44.4959636449402, -22.626121517842304], + [-44.49589898532545, -22.62597456687147], + [-44.49586371678444, -22.62580410482809], + [-44.495822570418845, -22.62572181185406], + [-44.49565798414427, -22.625474935011876], + [-44.49556981353518, -22.62537500911764], + [-44.49555805704216, -22.625181034012986], + [-44.49558156870172, -22.624987058839853], + [-44.495687372985024, -22.62491064458389], + [-44.495746153555814, -22.624610865272704], + [-44.495916615770355, -22.62438162179058], + [-44.49596522112634, -22.62424245271538], + [-44.494497214384566, -22.622184696333825], + [-44.49447905556072, -22.62219074914557], + [-44.49448183066764, -22.622232377167492], + [-44.49455398716941, -22.62231563408192], + [-44.49454566224727, -22.622365588131004], + [-44.49448049398723, -22.622375163263957], + [-44.494429101654674, -22.62232673533202], + [-44.49432086709811, -22.622287882516865], + [-44.494225192689804, -22.622290251704378], + [-44.494121050107616, -22.622232377868816], + [-44.49408219674986, -22.62214912088955], + [-44.49410439765618, -22.62206586479172], + [-44.494104397365255, -22.621938203707895], + [-44.49414047536945, -22.6218715985939], + [-44.49410994816786, -22.62184107063312], + [-44.494026690649775, -22.62177169074945], + [-44.493937883322744, -22.62179666793843], + [-44.493843524845175, -22.6217661401018], + [-44.49372141411472, -22.62167733328073], + [-44.49367423491706, -22.6216801083743], + [-44.49363260686986, -22.62173838849347], + [-44.49359930386498, -22.62179944359841], + [-44.493699212499365, -22.621888250462572], + [-44.49375232492927, -22.62197610041705], + [-44.49383797537757, -22.622010360273094], + [-44.49386295259311, -22.622057539255554], + [-44.49385740167036, -22.622101943295583], + [-44.49390233807759, -22.62219538526966], + [-44.49384352598351, -22.622265681430136], + [-44.49373251650346, -22.622265681645896], + [-44.49371811940835, -22.62225128366438], + [-44.49364370891699, -22.62217687476016], + [-44.493504946266455, -22.62215467301524], + [-44.49341613869266, -22.62207141613313], + [-44.49332178013295, -22.622004811272756], + [-44.49314416517518, -22.621921554563283], + [-44.49303866452224, -22.621835229711515], + [-44.49288884286878, -22.62183274700106], + [-44.49265017273552, -22.62178834443578], + [-44.49249475882324, -22.621682885668456], + [-44.492250537324594, -22.62148862001536], + [-44.492061820065864, -22.621294355254378], + [-44.49186755411201, -22.621244400599075], + [-44.49170659042864, -22.621249951915484], + [-44.49158693476868, -22.621187370106814], + [-44.491573378473234, -22.62108343806484], + [-44.491612231261904, -22.62091692487989], + [-44.491662185048014, -22.620728208658644], + [-44.49172324005912, -22.620617199467063], + [-44.49181204720287, -22.620511741225116], + [-44.491895304272084, -22.620384079979384], + [-44.491989662540924, -22.620323024755887], + [-44.49213952502457, -22.6202508684172], + [-44.4923559937203, -22.620145409927172], + [-44.49242814991852, -22.620095455754136], + [-44.492450350711096, -22.619962244623423], + [-44.49252250675747, -22.619845684406577], + [-44.49259466291775, -22.61977907922248], + [-44.49266960116986, -22.61974752605617], + [-44.492781242711736, -22.619779284261163], + [-44.490888148223796, -22.61712549200419], + [-44.490868458385606, -22.61711486282431], + [-44.49076702769188, -22.617002835947726], + [-44.49052432830367, -22.616853992321325], + [-44.49032009976052, -22.616564121527368], + [-44.490180197703445, -22.616365552668388], + [-44.4901403332247, -22.616231011657387], + [-44.490135793170246, -22.616215690656112], + [-44.49008583854979, -22.616038075636343], + [-44.4899803788663, -22.61593816777545], + [-44.489869369285294, -22.61589376396182], + [-44.4896473501232, -22.61580495733465], + [-44.489490439413345, -22.615791157630355], + [-44.489347624625076, -22.615716150858315], + [-44.48924771583927, -22.615560737950215], + [-44.48907565060244, -22.615344270141907], + [-44.48894798838074, -22.615050096196267], + [-44.488870281589904, -22.614850280215673], + [-44.488936886498685, -22.614683765976746], + [-44.48899239148599, -22.614572756795866], + [-44.4890436869307, -22.614539781040992], + [-44.48839628138497, -22.61363217499956], + [-44.48837628569955, -22.613640281378707], + [-44.48828192807681, -22.613545923499935], + [-44.488193119680176, -22.613540373668616], + [-44.488048807942526, -22.61349041991602], + [-44.48792669723781, -22.613412713101965], + [-44.487848787696166, -22.613322756194048], + [-44.48774930527293, -22.61332576138918], + [-44.487626970752366, -22.613329457629177], + [-44.487493759012274, -22.61325730184033], + [-44.4873438960611, -22.613124091043616], + [-44.48717931490784, -22.612929994235422], + [-44.48705527027004, -22.61288542144688], + [-44.48688996557176, -22.61289262177261], + [-44.486705590644576, -22.61283546809296], + [-44.486644535127965, -22.61272445913838], + [-44.486644731914595, -22.612630362076082], + [-44.486811048557314, -22.61259679873114], + [-44.486799948332454, -22.61251909170151], + [-44.48670241362249, -22.612392419807477], + [-44.48674444268826, -22.612341477692304], + [-44.48670558930555, -22.612247119705618], + [-44.48661123075866, -22.612186064848633], + [-44.48647801914482, -22.612169414096247], + [-44.48640031268252, -22.612113909210574], + [-44.48628930300055, -22.61202510236765], + [-44.48602123150064, -22.61187531078948], + [-44.48597292510216, -22.611791983828358], + [-44.486022879103444, -22.611697625669237], + [-44.48597292476113, -22.611642121729698], + [-44.48585081418278, -22.611619919952147], + [-44.48570019353369, -22.611620845245138], + [-44.48561769402327, -22.611553315360727], + [-44.485634344956374, -22.611492260288216], + [-44.48573425332515, -22.611464507076022], + [-44.485746012940254, -22.611460436448247], + [-44.485554518923294, -22.611336954515917], + [-44.48586832855837, -22.610813840544665], + [-44.48586083136625, -22.610802617394498], + [-44.48583416081206, -22.610609736319272], + [-44.485884114851174, -22.610532030171132], + [-44.48598957319346, -22.610482075933465], + [-44.486045078029306, -22.610304461708804], + [-44.486210219161016, -22.61024390958094], + [-44.48832523435459, -22.60671802999817], + [-44.48805045439705, -22.606656205414367], + [-44.48794294661262, -22.60651561953049], + [-44.48780235953453, -22.606308874667217], + [-44.48772678487053, -22.606213125619497], + [-44.484224693391816, -22.604880987313607], + [-44.48412021794351, -22.60513250403794], + [-44.484089206453525, -22.60541574428468], + [-44.484072666739415, -22.605572870420346], + [-44.48404785802713, -22.605746535582856], + [-44.48390727056991, -22.60581269489921], + [-44.48375841388877, -22.605796155177163], + [-44.48361782756318, -22.60592020253163], + [-44.48353670552663, -22.60605830278007], + [-44.4833614629252, -22.60612694816528], + [-44.48317952738328, -22.60623445558913], + [-44.483005861688994, -22.60625926494235], + [-44.48291902845469, -22.60632128915176], + [-44.48291075881853, -22.606497022283573], + [-44.4829231640838, -22.60659005732077], + [-44.4829314336273, -22.606813341451847], + [-44.482885845617055, -22.606895501594483], + [-44.48257583269189, -22.607077975316212], + [-44.48236908721191, -22.6072599118372], + [-44.48215407163969, -22.607417038357937], + [-44.4820755084505, -22.607483196553932], + [-44.4820144803401, -22.607550648716856], + [-44.481996945477675, -22.607644457812633], + [-44.48199694569397, -22.60773955987528], + [-44.48204207531245, -22.60792571691043], + [-44.48205386264469, -22.60804943396911], + [-44.482030999753896, -22.608140888073656], + [-44.48197213803492, -22.60837633434306], + [-44.48190391220542, -22.608581011610386], + [-44.481831552132434, -22.608686451820187], + [-44.48176539309086, -22.60879395901941], + [-44.481659510009656, -22.60895950833398], + [-44.48165286414113, -22.609029955393268], + [-44.48163957240407, -22.609170847511937], + [-44.48157518838775, -22.609286012712765], + [-44.48150149227218, -22.609375316914633], + [-44.48129397055848, -22.60945602037041], + [-44.48109554017907, -22.609666423894087], + [-44.480979763242786, -22.60991451728226], + [-44.48102111289177, -22.610121262338247], + [-44.48105419231702, -22.610245309355893], + [-44.48105832760765, -22.61036522142686], + [-44.481048913806944, -22.61047073151468], + [-44.48097149493758, -22.610675338799734], + [-44.48095909042, -22.610911027979167], + [-44.48094668562034, -22.611022670076824], + [-44.480967360916594, -22.61111363809663], + [-44.48102111529951, -22.6111797960359], + [-44.48111208281518, -22.6112335498948], + [-44.481285749697754, -22.611291437596034], + [-44.48131469398281, -22.611361730586143], + [-44.481269209983644, -22.611448563731646], + [-44.48116170269749, -22.61152712699204], + [-44.481045925234575, -22.611543667227643], + [-44.48091360772826, -22.611572611503377], + [-44.480806100498526, -22.611675983780163], + [-44.48074407751255, -22.611800030982337], + [-44.48068205337604, -22.611857920140743], + [-44.480574545929876, -22.611866189354878], + [-44.4804525664542, -22.611888931606575], + [-44.48033058597849, -22.611911673858287], + [-44.479983253561166, -22.61194888855674], + [-44.4799005552789, -22.611981967739], + [-44.479850936459265, -22.61215563394975], + [-44.47981372345826, -22.61222592706834], + [-44.47972689013922, -22.612250736253202], + [-44.47957024049545, -22.61226552756688], + [-44.479499470372104, -22.61234583975712], + [-44.479329511481815, -22.612717198331726], + [-44.47908598041806, -22.61315214509099], + [-44.47891231511852, -22.613350620558837], + [-44.478693164452935, -22.613474668065823], + [-44.478494688801526, -22.613565636510984], + [-44.478184570667295, -22.613656604172657], + [-44.47799849983433, -22.613644200525588], + [-44.47777107978497, -22.61361525594777], + [-44.47763462708206, -22.61356563817976], + [-44.47748163500645, -22.61338370235658], + [-44.477270754934615, -22.61331340971941], + [-44.47697717570262, -22.613329950299953], + [-44.47582568117487, -22.613968558955108], + [-44.474498790608266, -22.61404444657918], + [-44.473613097470405, -22.61434923749833], + [-44.47289533096381, -22.6141208462879], + [-44.47046323557833, -22.614677279729538], + [-44.46887844610559, -22.615720078585888], + [-44.4666508195361, -22.616190085215752], + [-44.46665077553634, -22.616190276215985], + [-44.46531935841433, -22.61647129998301], + [-44.46414399417967, -22.615965794927433], + [-44.463635888661955, -22.615825385819576], + [-44.463338175073005, -22.61569307030915], + [-44.463214127104074, -22.61550286542386], + [-44.463090079135135, -22.6153126595386], + [-44.462891602111206, -22.614799933584266], + [-44.462494648477076, -22.613956414795858], + [-44.4621133712461, -22.613700584365546], + [-44.4614526505551, -22.61377448169476], + [-44.460840684019814, -22.61382410191346], + [-44.46014601767573, -22.61367524616105], + [-44.45855646495995, -22.612866244705348], + [-44.458188220140244, -22.61276663235283], + [-44.458112520401976, -22.612585772379852], + [-44.458036820663644, -22.612404913406742], + [-44.457995860277165, -22.611872436133705], + [-44.457780843407896, -22.61145894627653], + [-44.457565827425896, -22.61099583838654], + [-44.45708617659938, -22.610665048096564], + [-44.456689224844204, -22.610648508854467], + [-44.45584570225536, -22.610235021214198], + [-44.45505179821928, -22.609970389576368], + [-44.454109037651634, -22.609755376259486], + [-44.453282055697564, -22.60958998175107], + [-44.4528520245739, -22.609474205506856], + [-44.45246334307957, -22.609556904314115], + [-44.45211342302731, -22.609760494126462], + [-44.4519340750278, -22.61010271170039], + [-44.45179348958304, -22.610615439312316], + [-44.45154539544776, -22.61102892906651], + [-44.45128076149019, -22.611111627633637], + [-44.45101612753249, -22.611194326200742], + [-44.45023876394282, -22.61109509063979], + [-44.449726034423456, -22.610962774544667], + [-44.44926292441909, -22.610962775441074], + [-44.44859631743817, -22.61136129699547], + [-44.448022452025675, -22.61139280712709], + [-44.44759242075156, -22.611210872838807], + [-44.44716828946973, -22.611014300529295], + [-44.44693910306064, -22.610830462850895], + [-44.4467586278369, -22.610469515016334], + [-44.446714302074554, -22.61047749815724], + [-44.44313738819812, -22.6049399109349], + [-44.442767567361386, -22.604814260929572], + [-44.442317390576704, -22.604886490848106], + [-44.44158024520659, -22.605248363513848], + [-44.4407036436373, -22.60534760227484], + [-44.440211599385435, -22.60529375219049], + [-44.43974434422265, -22.60523182705283], + [-44.43934739182974, -22.604934115622548], + [-44.438834982601115, -22.604488185316995], + [-44.43820615367843, -22.603958282180663], + [-44.43638265507781, -22.60276329991129], + [-44.43616350468901, -22.60256896020569], + [-44.436064265959665, -22.602436644309613], + [-44.43594021899179, -22.602246439422906], + [-44.43579963065276, -22.601923917480185], + [-44.4356507732497, -22.60158899054526], + [-44.43551432111581, -22.601349167649577], + [-44.4353613278355, -22.601076264763797], + [-44.435266225095994, -22.600931542851384], + [-44.43518797505837, -22.600802854589748], + [-44.43270932559059, -22.599653484965003], + [-44.43254545033227, -22.599612516230952], + [-44.43235524325616, -22.599500874524033], + [-44.43229139340386, -22.59945968134288], + [-44.43158894488274, -22.5991339384056], + [-44.431263626782105, -22.59917008541252], + [-44.430461453347206, -22.599186625972866], + [-44.430235574413345, -22.599205987422003], + [-44.430026050725715, -22.599302893891142], + [-44.429880092300934, -22.599394352233816], + [-44.429642013411545, -22.599456753735232], + [-44.42953523429263, -22.599608387042263], + [-44.42944426623585, -22.599757244316972], + [-44.429166469370934, -22.599906393952804], + [-44.42886049641825, -22.60007067165294], + [-44.42854285602632, -22.6000632282615], + [-44.428344380260704, -22.600104577672255], + [-44.428071476397484, -22.60024516429283], + [-44.4278481918614, -22.600435369850636], + [-44.427666256354506, -22.600559417284494], + [-44.427343733051835, -22.600600766934868], + [-44.42713152417529, -22.600619430357003], + [-44.42687235323568, -22.600700004911214], + [-44.42672041089956, -22.600842160299184], + [-44.42654156145867, -22.600989448742606], + [-44.42636789498758, -22.6011134961605], + [-44.42611980002572, -22.60116311467259], + [-44.425913054887275, -22.60105560800022], + [-44.42560384551021, -22.601038719586022], + [-44.42542513490573, -22.601113497980844], + [-44.425113470628936, -22.601145597603953], + [-44.42485451771592, -22.601237546165155], + [-44.42463950182234, -22.601254085591314], + [-44.42441621661223, -22.60114657895079], + [-44.42412677298471, -22.60098118339946], + [-44.42388694759068, -22.600824057757848], + [-44.42368020148966, -22.60073309009641], + [-44.42333286900442, -22.600741360772393], + [-44.423084774079875, -22.60080752029537], + [-44.42287802927827, -22.600848868721965], + [-44.42262166409339, -22.60081579019482], + [-44.42239485701367, -22.600772651603883], + [-44.42229087175458, -22.60085713986095], + [-44.42215028446386, -22.600997727225984], + [-44.422017968340086, -22.601196202613636], + [-44.42185257192329, -22.60132851902107], + [-44.42163755604833, -22.601353329452685], + [-44.42136465277309, -22.601311980951817], + [-44.42112482779067, -22.60133679043126], + [-44.42085192379608, -22.60141948901315], + [-44.420653448067505, -22.601477377434776], + [-44.42047978131548, -22.601477377769996], + [-44.420289575566635, -22.601510458159115], + [-44.42002494149552, -22.601543537692017], + [-44.419855409910966, -22.60160969606328], + [-44.41975203783756, -22.601775092373032], + [-44.41962799046872, -22.601849520662057], + [-44.41940470538957, -22.601799902059927], + [-44.41917315025576, -22.60174201446823], + [-44.41901602338826, -22.601659316716248], + [-44.41882581739614, -22.60158488903378], + [-44.41867695977014, -22.60159315832652], + [-44.41847848496675, -22.60161796872609], + [-44.41829654821627, -22.60163450808826], + [-44.41815596176645, -22.601704802406385], + [-44.418015374316624, -22.60177509572459], + [-44.417792089686344, -22.601923952254683], + [-44.41753159105392, -22.602143101903533], + [-44.41747076005217, -22.602258805098053], + [-44.41735792463846, -22.60229195833788], + [-44.41719264692557, -22.602293257657703], + [-44.416919624936554, -22.602378792241556], + [-44.41675422826708, -22.60239946757453], + [-44.41658469651412, -22.60239119789616], + [-44.41641929983516, -22.602407738226283], + [-44.41620842007141, -22.60247389667736], + [-44.41596446024857, -22.60257726921699], + [-44.415881761955866, -22.60260621339596], + [-44.415822698838824, -22.602667570550764], + [-44.41580319897107, -22.602763339652295], + [-44.41582800832172, -22.602870847676158], + [-44.415794929365426, -22.602953545795135], + [-44.41567791993296, -22.60298636504275], + [-44.41557991449958, -22.60298249022933], + [-44.41548894610558, -22.602982490404845], + [-44.41545586711196, -22.60304864851277], + [-44.41536489918563, -22.603255393826245], + [-44.41524084494751, -22.603387703153814], + [-44.41500102811459, -22.603478678677273], + [-44.414653695890635, -22.603602726430154], + [-44.414397331191715, -22.603784662046227], + [-44.41410788866747, -22.604107184819814], + [-44.413752287062344, -22.604520674781817], + [-44.41339668556948, -22.604983783776863], + [-44.413165131482906, -22.60538900449407], + [-44.41281148481681, -22.605771852431932], + [-44.41229266614357, -22.606025780602362], + [-44.41210659549641, -22.60609607400823], + [-44.411767533270655, -22.606203581734178], + [-44.41154011245372, -22.606278010222635], + [-44.41138298703481, -22.606393787603064], + [-44.41127961378332, -22.606480620860424], + [-44.411188646875544, -22.60669563617947], + [-44.41106873478627, -22.606885841537814], + [-44.410883178408135, -22.60707410302141], + [-44.410870994371734, -22.607081359049747], + [-44.41069245783867, -22.60718768946517], + [-44.41045676798584, -22.607262117969576], + [-44.41018386382219, -22.607270388501675], + [-44.40981172209747, -22.607220770186466], + [-44.409704214650354, -22.607229040399357], + [-44.40950160411849, -22.60738203189232], + [-44.40925350957656, -22.60761772152834], + [-44.40890617759527, -22.607849276352965], + [-44.40863568282703, -22.608027877994065], + [-44.40846787728518, -22.60810977537242], + [-44.40830661662381, -22.608126315694562], + [-44.40818601614467, -22.60814550394001], + [-44.408013037576126, -22.60822555332719], + [-44.4077442688229, -22.608407489967096], + [-44.407722131775934, -22.608429123024255], + [-44.407695831720055, -22.608454826092153], + [-44.407661220646624, -22.60848865018156], + [-44.40761177654163, -22.608536970309125], + [-44.407562333436566, -22.608585290436846], + [-44.40747858526797, -22.6086712136558], + [-44.40746259823579, -22.608687615697526], + [-44.407243945795635, -22.60891194826915], + [-44.40719019175906, -22.608998780430813], + [-44.40715711306458, -22.609197255627258], + [-44.4071597143429, -22.609315352701117], + [-44.4070620099985, -22.609350246912857], + [-44.406983446536465, -22.60929649402849], + [-44.406904883074404, -22.609242740144126], + [-44.406780836321715, -22.609147638319833], + [-44.40664851867354, -22.609114558553085], + [-44.40658236007821, -22.60897810758952], + [-44.406396288804366, -22.608771362810263], + [-44.40610270899909, -22.60853567421913], + [-44.405970391004985, -22.608349604349982], + [-44.405916637435354, -22.608200748354243], + [-44.40583807362748, -22.607994003367672], + [-44.40578018417094, -22.607903036418467], + [-44.40567267653675, -22.60782860757616], + [-44.40564929226695, -22.60775413357146], + [-44.40558997779503, -22.607659077622372], + [-44.40546593005174, -22.607568109800763], + [-44.405370827546164, -22.607526760956574], + [-44.40532534314335, -22.607435793983445], + [-44.40523850962682, -22.60737377010949], + [-44.40519302534097, -22.607334489170977], + [-44.40515929903469, -22.60726368518873], + [-44.40508853070403, -22.607253070318105], + [-44.404928390955746, -22.607229049610847], + [-44.40483328846884, -22.607195970772164], + [-44.40475885991259, -22.607092597846584], + [-44.404643081392166, -22.60708432806432], + [-44.40449835986786, -22.60712981237384], + [-44.40439085232716, -22.607096733558972], + [-44.404258534491994, -22.60698095673677], + [-44.40412208252674, -22.60681556088933], + [-44.4040517889511, -22.606695649944754], + [-44.40392709818871, -22.606597435119607], + [-44.403770614489595, -22.606588142415053], + [-44.40360108298858, -22.606691515811043], + [-44.40342741755372, -22.606832102239878], + [-44.402956038109195, -22.60709673632559], + [-44.40270380823097, -22.607191839875536], + [-44.40254668166222, -22.607241459211593], + [-44.40239368998986, -22.607237324503803], + [-44.40223656319671, -22.607187705773566], + [-44.4021786746748, -22.607067793805115], + [-44.40217040422767, -22.60688585869938], + [-44.402203483043955, -22.60674113653887], + [-44.402228986727486, -22.606552228363423], + [-44.40219107716772, -22.606377266319512], + [-44.402105881433606, -22.606215841375818], + [-44.40187268902159, -22.606038204706582], + [-44.401641133775136, -22.605930698081064], + [-44.40121110239746, -22.60570327975797], + [-44.40090511777235, -22.605570963259296], + [-44.40063221329996, -22.60544278269967], + [-44.400317959470854, -22.605236038167156], + [-44.4001401584106, -22.60510785642411], + [-44.39979282551294, -22.604934191977428], + [-44.39920153252994, -22.604748121992525], + [-44.39906318180917, -22.604694477223287], + [-44.39897094826285, -22.60462959835766], + [-44.39891208881778, -22.604545513414813], + [-44.39887073926486, -22.604380117383858], + [-44.398879008057854, -22.604272610295983], + [-44.39889968288583, -22.6041568331787], + [-44.3989451668868, -22.604070000032973], + [-44.39902889797408, -22.60394802078994], + [-44.3990278638248, -22.60388392974909], + [-44.398990650532696, -22.603826040782078], + [-44.39884179253262, -22.60366891496379], + [-44.3987301498246, -22.603569678112592], + [-44.3986102371088, -22.60348284528558], + [-44.398593697859596, -22.603404282264872], + [-44.39861437183712, -22.60335466319182], + [-44.398687832083105, -22.60332261502885], + [-44.39879630864422, -22.603362932846828], + [-44.39902565595495, -22.603503143498624], + [-44.399098157232594, -22.60348697934809], + [-44.399164315341864, -22.60340841616804], + [-44.39916415502626, -22.603407037486814], + [-44.398499672060396, -22.602982339449973], + [-44.404778410794954, -22.600552445589297], + [-44.40538034878502, -22.592015087487788], + [-44.40536252245356, -22.592012628604554], + [-44.40536665738283, -22.591973347570374], + [-44.405370792312006, -22.591934065536115], + [-44.40538856614943, -22.591898517839102], + [-44.40539064149634, -22.59186907735076], + [-44.40541259894923, -22.59185045216724], + [-44.405445220298205, -22.59178520929323], + [-44.4054948393356, -22.591706646145102], + [-44.40557753657247, -22.591652891949845], + [-44.405664369845674, -22.5916074087521], + [-44.40572328227675, -22.591586917222102], + [-44.409249093339334, -22.588596040762397], + [-44.40864563462128, -22.5884483418972], + [-44.408083286009024, -22.58836977992817], + [-44.407713211430014, -22.588380117648036], + [-44.40734313685099, -22.588390455367886], + [-44.406644337217216, -22.58856412283023], + [-44.40588351437092, -22.58876259942853], + [-44.40522192869284, -22.588845297758226], + [-44.40470919932313, -22.588779140701654], + [-44.40396491454007, -22.588531047969255], + [-44.40325370845211, -22.58808448104046], + [-44.40257558094757, -22.587389819881782], + [-44.40183129555956, -22.58643052467326], + [-44.40138472313269, -22.58576894209046], + [-44.40113662667748, -22.585156978158764], + [-44.40088853032686, -22.584148063961372], + [-44.40088442749181, -22.584068832580822], + [-44.39715964233846, -22.582246019582062], + [-44.39686939163277, -22.58224601942348], + [-44.39614452208329, -22.582063978696347], + [-44.395446979608344, -22.581419042606466], + [-44.39513272479325, -22.58077399877898], + [-44.39488598463889, -22.579848781633892], + [-44.39487295766471, -22.579719600363465], + [-44.392029454672695, -22.573436188872098], + [-44.391920963014265, -22.573731287236306], + [-44.39187960408859, -22.57384378339122], + [-44.39181916822023, -22.57401837762441], + [-44.39181022723977, -22.57404420765892], + [-44.39165605509322, -22.57427546611028], + [-44.39144021357551, -22.574460472649363], + [-44.39119353771587, -22.57455297618552], + [-44.39097948184269, -22.574576760612985], + [-44.390854357021546, -22.574452765770427], + [-44.390707893335346, -22.574429640036403], + [-44.39037910010553, -22.574515680726154], + [-44.39018242150145, -22.57462556817786], + [-44.39004075405655, -22.574700365500405], + [-44.38975844682486, -22.57469623104031], + [-44.389520763622095, -22.5746191454454], + [-44.38916102751448, -22.57437503997322], + [-44.38891049628506, -22.574310802411677], + [-44.38848009742141, -22.57431080323891], + [-44.38808824171017, -22.57430437998772], + [-44.387651419919955, -22.574349347857417], + [-44.38735592178502, -22.574413586468395], + [-44.38709896774466, -22.574445705983734], + [-44.386803470233644, -22.574342925482664], + [-44.38650797206976, -22.57439431708501], + [-44.38615465930832, -22.574291535695], + [-44.385961304508115, -22.574308018077563], + [-44.38583920798134, -22.57430888231274], + [-44.385717111454596, -22.574309746548007], + [-44.38549942536965, -22.574246570923822], + [-44.3852886752609, -22.574159486270414], + [-44.385101146181974, -22.574041008551184], + [-44.38476710464868, -22.57400246616714], + [-44.38460008492536, -22.574002466488054], + [-44.3844486573746, -22.574049103810243], + [-44.38427889141869, -22.573951076070685], + [-44.384143989747805, -22.57391253330402], + [-44.38403817419483, -22.57393177286017], + [-44.37953201438262, -22.57616228418108], + [-44.37949311985413, -22.57624439580438], + [-44.37937749065698, -22.576379296117146], + [-44.37924901311486, -22.576385720368254], + [-44.3791012644749, -22.576385720652034], + [-44.37909029290692, -22.57638092060518], + [-44.37867044144508, -22.576588730163508], + [-44.378643236139546, -22.576673928725395], + [-44.378551071111694, -22.576647813315727], + [-44.3784156831961, -22.576714824289017], + [-44.37835609721582, -22.576816119372513], + [-44.378266163840735, -22.576822543549554], + [-44.37823110395542, -22.576806182447523], + [-44.37684992748067, -22.577489788830512], + [-44.37682722022663, -22.577542015796787], + [-44.37682722053027, -22.577676916887405], + [-44.37691073113786, -22.57778612180048], + [-44.37695569754964, -22.577882479778776], + [-44.3768914595461, -22.578004531984206], + [-44.376750134933786, -22.578004532255658], + [-44.37646748442004, -22.57787605671209], + [-44.37622337752159, -22.577946719228486], + [-44.37604351008931, -22.578100891677522], + [-44.37599211922814, -22.578261487884124], + [-44.37596369426234, -22.578331369985793], + [-44.37582509986607, -22.578422084312905], + [-44.37571589373989, -22.578576256626224], + [-44.37565807999549, -22.578801090888458], + [-44.37567022230636, -22.578915812942228], + [-44.37561953717554, -22.578955263066064], + [-44.37536900613353, -22.578974534560164], + [-44.37513439906796, -22.578952710996038], + [-44.37490252692532, -22.57889144040024], + [-44.374700925007545, -22.57887175477415], + [-44.374334764464436, -22.57889102649025], + [-44.374204185759965, -22.578829387699535], + [-44.37415638504204, -22.578822883901267], + [-44.37397818537825, -22.578911076134514], + [-44.37394933289563, -22.578935994260657], + [-44.37384012758152, -22.579006656517862], + [-44.3737501934232, -22.579109438759726], + [-44.373718074573105, -22.57923791490779], + [-44.373608869302366, -22.579327849177933], + [-44.37348681594703, -22.579404935464126], + [-44.37336476279412, -22.579571955810877], + [-44.373281252836996, -22.579751823092153], + [-44.37321701490566, -22.579905995319233], + [-44.37311423360491, -22.5799702345598], + [-44.37292794192783, -22.580028048956404], + [-44.37279304035767, -22.58003447321978], + [-44.37273522641078, -22.58016937342149], + [-44.372677411304856, -22.580233612575697], + [-44.37255535758804, -22.580150102753905], + [-44.372401184804254, -22.580098712015424], + [-44.372259860408754, -22.580195070351575], + [-44.372118536215645, -22.580381361748213], + [-44.37204787340101, -22.580599772030826], + [-44.37201254238517, -22.580660799139697], + [-44.371977211369405, -22.580721825248673], + [-44.37179734386471, -22.580843878676134], + [-44.3716560183968, -22.580908116990695], + [-44.37143118350926, -22.58094666044833], + [-44.37114853442892, -22.581010900034272], + [-44.37102005681437, -22.580985204263666], + [-44.37091727519552, -22.58090811840919], + [-44.37084018857224, -22.580779642470798], + [-44.370647472144434, -22.58051626466359], + [-44.370557537588475, -22.58044239078659], + [-44.370486875181086, -22.58039742489202], + [-44.370359350585275, -22.58037824012395], + [-44.37023955618876, -22.58043275639062], + [-44.370170078840495, -22.580411772509823], + [-44.370136774541024, -22.58034282252746], + [-44.36997296591059, -22.580378153865727], + [-44.36989587967771, -22.58042312104395], + [-44.36981558125024, -22.580387790174353], + [-44.36976097778958, -22.580288220212143], + [-44.36954511365538, -22.58019991356717], + [-44.36947832830447, -22.580172591676973], + [-44.36946548015123, -22.580129230672522], + [-44.36945263199798, -22.580085870667954], + [-44.36939481766795, -22.58005053875518], + [-44.369340214387975, -22.580031267847065], + [-44.369227796958626, -22.580056963080143], + [-44.36917319469303, -22.580044116176328], + [-44.36915713452223, -22.57999914917691], + [-44.369176405345684, -22.57988352006212], + [-44.369080047740134, -22.57980001019082], + [-44.368938722795306, -22.579652262362742], + [-44.36891623852443, -22.57957517635403], + [-44.368900950340226, -22.57952275734811], + [-44.36894835746851, -22.57948845423402], + [-44.36898382897717, -22.579482194396057], + [-44.368167965334244, -22.57929970384436], + [-44.36806507625769, -22.579318223814894], + [-44.367939811736456, -22.57932786006181], + [-44.367872360523734, -22.579363191215062], + [-44.36778242722063, -22.579401734413615], + [-44.367698916851495, -22.579398522571754], + [-44.36758649921261, -22.579331072742132], + [-44.367406630418664, -22.579324649083038], + [-44.36736487515093, -22.579286106137246], + [-44.36731027292153, -22.57928931824422], + [-44.36727815371009, -22.57925719928423], + [-44.367233186529674, -22.579263623374867], + [-44.367072589942, -22.579311802715523], + [-44.36700386874576, -22.579356963877846], + [-44.3669561095092, -22.57934379396062], + [-44.366921629338364, -22.579334286020416], + [-44.36689914511088, -22.57927647102466], + [-44.36683169483302, -22.57928289515842], + [-44.36680921166333, -22.579250776179954], + [-44.366850966772034, -22.579218657078204], + [-44.36683169456569, -22.579164054078344], + [-44.36678672725523, -22.579112664130164], + [-44.366709640913854, -22.57910945227594], + [-44.366687157686364, -22.579051637280198], + [-44.36666467445166, -22.578990611282173], + [-44.36664584385682, -22.57895922734749], + [-44.365043110508125, -22.5786007025728], + [-44.36488526293074, -22.578630879454806], + [-44.36475614739222, -22.57864025770875], + [-44.36465721588466, -22.578605184875], + [-44.36464758069109, -22.57853773484807], + [-44.36457691829819, -22.578499191957714], + [-44.36453522205596, -22.578487086494544], + [-44.364456692971906, -22.578469519164738], + [-44.3643906254186, -22.578467072293563], + [-44.36428784395149, -22.578457437484268], + [-44.36422360575246, -22.578492768631325], + [-44.36415294354011, -22.57853452379504], + [-44.36402446612054, -22.57859555008264], + [-44.36394416785923, -22.578634093262664], + [-44.363899200823234, -22.578704755396515], + [-44.363844597745405, -22.57877541754898], + [-44.36377393554751, -22.578823596717005], + [-44.36368434919287, -22.578838527898945], + [-44.363587643935155, -22.578910319132852], + [-44.36351698178051, -22.578977769313852], + [-44.363465590731145, -22.579054855464378], + [-44.36344310783603, -22.579144789568144], + [-44.363439896009915, -22.57922829963055], + [-44.363475227307504, -22.579292537606015], + [-44.363568373855685, -22.579356775470565], + [-44.36361071217723, -22.579418177430703], + [-44.36361289736942, -22.579499391481196], + [-44.363606917499474, -22.579568762539456], + [-44.363622976959164, -22.57974220562543], + [-44.36356516307698, -22.57990601384675], + [-44.363494501081334, -22.58004412707536], + [-44.36337244764614, -22.580085882337674], + [-44.363182943947585, -22.580140484738074], + [-44.363070729556284, -22.5801827489818], + [-44.362983804358954, -22.58026253820248], + [-44.362858538924264, -22.58031071747519], + [-44.36271400230503, -22.580313929754777], + [-44.362652974982716, -22.58028823385447], + [-44.36253390847306, -22.580291133084845], + [-44.362421716168065, -22.580371744354547], + [-44.36235426591905, -22.580391016496918], + [-44.36221615330596, -22.5803845927576], + [-44.36217118603151, -22.580349261820093], + [-44.362045920459664, -22.580336414051754], + [-44.361984893346815, -22.580403864214286], + [-44.36191423124278, -22.580493798410455], + [-44.361898172389886, -22.580590156506176], + [-44.36190935959445, -22.580659578531442], + [-44.36184678141993, -22.580702573680508], + [-44.361670125769685, -22.580753964054068], + [-44.361528800171534, -22.580760388329544], + [-44.36146189613994, -22.580875317535373], + [-44.36136291185707, -22.58094029876909], + [-44.36128469463338, -22.58099164695377], + [-44.36116585313991, -22.581001283188275], + [-44.361117674082756, -22.58106873332613], + [-44.361048659283924, -22.581097792409004], + [-44.36096923853061, -22.581171005276804], + [-44.36095065366936, -22.581206846739732], + [-44.36085108446156, -22.581306415997833], + [-44.36080543682398, -22.58132200306402], + [-44.36064503130683, -22.58146986956234], + [-44.36063090294177, -22.58149972855056], + [-44.36057485878415, -22.581537674683695], + [-44.360570912885336, -22.581538193901068], + [-44.360278091285856, -22.581808123487402], + [-44.360353236487924, -22.581833171307984], + [-44.36035644860299, -22.58187813833211], + [-44.360311481538055, -22.58193595345735], + [-44.36028578647724, -22.58195843652187], + [-44.360293941796826, -22.58197474737772], + [-44.361763340250576, -22.583131705205698], + [-44.36179860763609, -22.583114724398236], + [-44.361920661194176, -22.583127572172767], + [-44.36202651070408, -22.58315026798487], + [-44.36211123820049, -22.583207663860975], + [-44.36219688770234, -22.5832656837357], + [-44.3622803983317, -22.58338452465549], + [-44.36234784884083, -22.58348088259095], + [-44.362457054473204, -22.583551544428953], + [-44.362521293881706, -22.583609358344614], + [-44.36256626135844, -22.583734623342753], + [-44.36256733651965, -22.583764734515338], + [-44.36299474625855, -22.584101253659615], + [-44.36300629601028, -22.58406545072111], + [-44.362983812732274, -22.583985152710195], + [-44.36292278527976, -22.58390164277101], + [-44.36285774997701, -22.583892374889615], + [-44.362781460515386, -22.58383419299681], + [-44.36269473782875, -22.58369608007017], + [-44.36269794969818, -22.583631842020722], + [-44.36275255277592, -22.583561179868344], + [-44.36284248613687, -22.583548331687176], + [-44.362897066474346, -22.583593178612517], + [-44.36302877898779, -22.583567603342534], + [-44.36312834841951, -22.583567603151444], + [-44.36331464062446, -22.58374425791294], + [-44.36334675987939, -22.583795648885907], + [-44.36334354800265, -22.58385667493318], + [-44.36332106513644, -22.583959456045534], + [-44.36330821742757, -22.584113628174087], + [-44.36334033700045, -22.584306343242208], + [-44.36340457646682, -22.58438985317514], + [-44.36340978206718, -22.584428027968418], + [-44.36370750856279, -22.58466243857649], + [-44.363745041405195, -22.584595415660157], + [-44.36386709476086, -22.58451832937399], + [-44.36396345222201, -22.584537600202008], + [-44.36417061234755, -22.584638700872485], + [-44.364233254752925, -22.58469819579226], + [-44.364194711802625, -22.584794553931175], + [-44.36406254580749, -22.584941970456615], + [-44.36419516803588, -22.58504638764626], + [-44.36422683243332, -22.585012964016585], + [-44.36432318969212, -22.584942301784036], + [-44.36452875356876, -22.58493587738513], + [-44.364682926352714, -22.584987268123758], + [-44.36483603652197, -22.585211907981044], + [-44.36497842442876, -22.585340578794426], + [-44.365049087096466, -22.585501174766883], + [-44.365061935542435, -22.585674617859063], + [-44.36503533474648, -22.58570786907309], + [-44.36940249163501, -22.589146078054934], + [-44.36966142839173, -22.589188448391447], + [-44.36994065773893, -22.58924914989596], + [-44.37010467553025, -22.5892848056049], + [-44.37022445425714, -22.58937702743684], + [-44.370362438094496, -22.58948326724313], + [-44.37049461795848, -22.589612427076116], + [-44.37062857470224, -22.589684835867526], + [-44.370753486514594, -22.589805134708463], + [-44.37084342025173, -22.58995930663937], + [-44.37086269298628, -22.59024837979679], + [-44.370779183289734, -22.590543876155994], + [-44.370628222910106, -22.590665929528083], + [-44.37047726253056, -22.590787982900174], + [-44.37027812285522, -22.59087149333893], + [-44.37003401595612, -22.590942155855405], + [-44.36982202890682, -22.590884341223777], + [-44.3696614323263, -22.590935732566958], + [-44.369610041277134, -22.591012818717438], + [-44.369577922369324, -22.591115599848326], + [-44.36958434667205, -22.59123765291817], + [-44.369667857294495, -22.591353281835485], + [-44.369706400707535, -22.591462486834892], + [-44.36964680764927, -22.59155136600914], + [-44.36951368519023, -22.591603812300157], + [-44.369372360577536, -22.59160381257166], + [-44.36915671271918, -22.591637843008808], + [-44.369064014486554, -22.591713018237456], + [-44.36905373070211, -22.591828519335003], + [-44.36916037338179, -22.591925004195023], + [-44.36928885117028, -22.592027786017294], + [-44.36936593776492, -22.592143414946996], + [-44.36945320941418, -22.592263683860303], + [-44.369365938329125, -22.592393944115543], + [-44.36923746098912, -22.59249030242728], + [-44.369102560462025, -22.59251599770364], + [-44.36903189708332, -22.59248387881788], + [-44.368967658501, -22.592348977850488], + [-44.368903419904214, -22.592207653878763], + [-44.36879421337288, -22.59218195907137], + [-44.36864346880202, -22.59221872238572], + [-44.36851156449453, -22.592336131718035], + [-44.36835739228892, -22.592541694152494], + [-44.36825208921858, -22.592713169470137], + [-44.368087590856916, -22.592869310891256], + [-44.36788202711021, -22.592933549329466], + [-44.3677342784696, -22.592933549613296], + [-44.367715006588575, -22.593023483710727], + [-44.367599377145055, -22.593049178950228], + [-44.36756719821295, -22.593141318074025], + [-44.36751586757855, -22.593402490348325], + [-44.36754891033847, -22.593676268469096], + [-44.36753062144451, -22.593758568559647], + [-44.367090068659785, -22.59381438444356], + [-44.36687679103144, -22.59394603194183], + [-44.366680185477485, -22.594078626408727], + [-44.366424139500964, -22.594138065940705], + [-44.36627325594964, -22.59418378826129], + [-44.36622296099928, -22.594302666437887], + [-44.36629611771809, -22.594480983417395], + [-44.366195528415666, -22.59454042265066], + [-44.36610408299859, -22.59453127782012], + [-44.36606750560314, -22.594426116819598], + [-44.36605993034956, -22.594328099768155], + [-44.36585584910401, -22.5941680030524], + [-44.36555541327044, -22.593932317470895], + [-44.365418245325586, -22.593776861629735], + [-44.365194205096586, -22.593662556983077], + [-44.365106630023156, -22.593566225195264], + [-44.36157991017257, -22.592858929854216], + [-44.361401552744304, -22.59954553562067], + [-44.36153185140497, -22.599965379262013], + [-44.361934212157465, -22.601300468388214], + [-44.36187020386654, -22.60262641440417], + [-44.3619342160712, -22.603037914558247], + [-44.36206223965669, -22.603495137620246], + [-44.36243716582855, -22.60418097036157], + [-44.36286695819731, -22.604848514985193], + [-44.36316872757808, -22.605324025725306], + [-44.36320073337633, -22.60561664886086], + [-44.363232740174666, -22.605909270996403], + [-44.3631870181096, -22.606412216422846], + [-44.362802951576526, -22.606915161499565], + [-44.36195251516386, -22.607482119515794], + [-44.36133983578281, -22.608049077075094], + [-44.36116898722657, -22.608258341623383], + [-44.36107762428203, -22.61167927899134], + [-44.36099364534113, -22.611732500175464], + [-44.36103807600555, -22.61183488220447], + [-44.361285903877636, -22.612188210965986], + [-44.361388567653236, -22.612334578867202], + [-44.36183822104995, -22.61297565143444], + [-44.36163247098673, -22.613343716077804], + [-44.36136728159845, -22.613682060815464], + [-44.36085061919597, -22.61405469905969], + [-44.36021050511831, -22.61436561149965], + [-44.3597441373619, -22.61448449047624], + [-44.35927776860538, -22.614603368452904], + [-44.35868794892649, -22.614550789551295], + [-44.35816214084489, -22.614639948621992], + [-44.35740772162609, -22.615108603387903], + [-44.35646584019651, -22.615401228395392], + [-44.355718494452894, -22.61473607938349], + [-44.35553220127491, -22.614572272631065], + [-44.35546867774447, -22.614459286677043], + [-44.35540372387026, -22.61419647762475], + [-44.35533306120161, -22.61403588265223], + [-44.355214219417796, -22.613917041800537], + [-44.355114648739466, -22.613807835918216], + [-44.355008655149035, -22.613750022082904], + [-44.354860509392715, -22.61369980333375], + [-44.354629647214125, -22.61362154572462], + [-44.35445676223488, -22.613520070988457], + [-44.354343784517084, -22.61341919513744], + [-44.35423457873903, -22.613284295256346], + [-44.3541350089377, -22.613120487337262], + [-44.354022624640464, -22.612761263311043], + [-44.35396649822165, -22.612411845899306], + [-44.35123356382046, -22.61036511058756], + [-44.35089683564664, -22.61035349969155], + [-44.35034037271896, -22.610126262606947], + [-44.350031089968475, -22.60994515207873], + [-44.34963716433064, -22.60953319755724], + [-44.349425176108504, -22.608955052574107], + [-44.34929783077372, -22.6086077505843], + [-44.34904087331527, -22.6075670893753], + [-44.348976633879474, -22.607053182151816], + [-44.34898305716984, -22.60672556691836], + [-44.348989480720526, -22.60651357976301], + [-44.349098685514925, -22.606211659349565], + [-44.349317095711115, -22.60587761970479], + [-44.34956120219233, -22.60562066506279], + [-44.349856698795314, -22.605318744291736], + [-44.349946632824256, -22.60515814801065], + [-44.35003656636136, -22.60477914158224], + [-44.35019073788828, -22.60427165794382], + [-44.35044126694908, -22.60381556515511], + [-44.350948580731966, -22.603177935480264], + [-44.35177930513321, -22.599623725366936], + [-44.35166952059037, -22.599510460892574], + [-44.35123058429467, -22.599336717617824], + [-44.350791648998985, -22.599162973342928], + [-44.35060875817663, -22.598705751385364], + [-44.35066362260406, -22.59790103873703], + [-44.350704035101046, -22.596700796428614], + [-44.35032129976753, -22.59569273851218], + [-44.35015152623915, -22.595614926176687], + [-44.35014035896156, -22.59561462745606], + [-44.34843505696795, -22.596310591810095], + [-44.34819460780461, -22.59652937554862], + [-44.34717998644177, -22.597436386107464], + [-44.346837466476195, -22.597667958921043], + [-44.346541969136005, -22.59764226347057], + [-44.346219400372114, -22.597480402980054], + [-44.34568117027343, -22.59714120578339], + [-44.345501301683896, -22.59678147188542], + [-44.34544990913188, -22.596190478584717], + [-44.34572559275906, -22.595047979284164], + [-44.346018215301754, -22.594279844204106], + [-44.346475437435245, -22.593456842771324], + [-44.347042393839246, -22.59254239606637], + [-44.347241033106044, -22.592484726598364], + [-44.34756898709478, -22.591044117734207], + [-44.347417313888656, -22.590951260272735], + [-44.3470058114455, -22.590658637864248], + [-44.346274251202765, -22.590183127945842], + [-44.34611477017331, -22.590032987150227], + [-44.346062891988545, -22.58968282149791], + [-44.34425383068152, -22.58873128905357], + [-44.34372333248171, -22.589002433038548], + [-44.34312877752563, -22.589279892365823], + [-44.34292695950385, -22.58921486570874], + [-44.34272514148207, -22.58914983905158], + [-44.34266074278544, -22.58940919135039], + [-44.34259634308878, -22.589668543649115], + [-44.34230961351518, -22.58996693340042], + [-44.341918894272105, -22.590168213285356], + [-44.341873607128015, -22.59019154338801], + [-44.34123941505898, -22.59049542680899], + [-44.340684497126034, -22.590706825015566], + [-44.33997103035657, -22.590852161481248], + [-44.339917867832476, -22.590849595095676], + [-44.33981704184757, -22.59092792157667], + [-44.33919734547448, -22.59081481442275], + [-44.33805523983495, -22.59075967909021], + [-44.33752674666012, -22.590812529138603], + [-44.337090738916366, -22.590878592018818], + [-44.33654903280279, -22.590984291128255], + [-44.33578271712986, -22.59127496279328], + [-44.335423671851515, -22.591399632565565], + [-44.33506462557325, -22.591524301337774], + [-44.33463061677182, -22.591560913194076], + [-44.33410475058891, -22.5916052732316], + [-44.33349698283222, -22.59155242536009], + [-44.33291563913091, -22.59147315342005], + [-44.33205683554275, -22.59108999780564], + [-44.33130373135419, -22.590680417970617], + [-44.33075615574468, -22.590131424647492], + [-44.33056750913316, -22.589778337769577], + [-44.33037886352169, -22.58942525189165], + [-44.330119328035615, -22.589157607955695], + [-44.327782974986334, -22.588731016915396], + [-44.32693044048545, -22.5889496161718], + [-44.32526339741759, -22.589916110018166], + [-44.3251018740028, -22.590061229231914], + [-44.32479302396384, -22.590387851704303], + [-44.322596800633534, -22.5933889564778], + [-44.32220043203911, -22.59389102457708], + [-44.32180406244465, -22.59439309267645], + [-44.32097168724655, -22.595469896000317], + [-44.32053568047987, -22.595971964175572], + [-44.320222437603206, -22.596187501921392], + [-44.319909194726435, -22.596403038667233], + [-44.318236735904854, -22.59749138260719], + [-44.3174307830564, -22.597782055347068], + [-44.31583209003107, -22.598191639684778], + [-44.31549517561188, -22.598211458343048], + [-44.31519789711305, -22.598118972849125], + [-44.314997095019756, -22.59802048616643], + [-44.31468261485188, -22.597663149525633], + [-44.31403955642543, -22.596489578958927], + [-44.313945283630076, -22.5963175310224], + [-44.313704898477475, -22.596269254449517], + [-44.31366654833548, -22.59628021153035], + [-44.31351992579246, -22.596322103839334], + [-44.31292537050608, -22.59645422806658], + [-44.31244972582507, -22.5966259880932], + [-44.311723047438704, -22.596969509716796], + [-44.31155147492894, -22.597074554116382], + [-44.31107564351522, -22.597365880224547], + [-44.310202543723385, -22.597812387198168], + [-44.3094241019103, -22.59806613485971], + [-44.308888747747986, -22.59813913793334], + [-44.30826141621406, -22.59822468419133], + [-44.30753473764914, -22.598488931760844], + [-44.30707230620275, -22.59873996681595], + [-44.30655702452658, -22.59899100097213], + [-44.306160952900605, -22.599033419758467], + [-44.30568501021127, -22.599202399783536], + [-44.30511688030526, -22.599453434040825], + [-44.30468087273644, -22.599598769973397], + [-44.304152798419835, -22.599589091976675], + [-44.303571035528186, -22.59942701297879], + [-44.303201089653776, -22.599308102605146], + [-44.302725445408925, -22.599228829460593], + [-44.30227622542706, -22.59921561831043], + [-44.30196327247966, -22.599399708034092], + [-44.301562759155594, -22.59958556392622], + [-44.30124566270334, -22.599552533509932], + [-44.301113539158706, -22.599565746771535], + [-44.30092196048891, -22.599638414187318], + [-44.30078983707754, -22.59971108248932], + [-44.30065771369588, -22.599796962800376], + [-44.30058277952144, -22.599864430989545], + [-44.300561875446405, -22.599871512034284], + [-44.300499166221435, -22.599892752168675], + [-44.30037695171247, -22.599902661409004], + [-44.30028116223696, -22.599876236574147], + [-44.300181413778624, -22.59986520875728], + [-44.3000862804417, -22.59989935896247], + [-44.2999706720577, -22.59995220821938], + [-44.29983194260277, -22.600018270529514], + [-44.29969321310341, -22.60006451382627], + [-44.299597423731456, -22.600084332022835], + [-44.299491725153636, -22.600031483188864], + [-44.29939593564101, -22.599988543342725], + [-44.29926381200748, -22.599962118577317], + [-44.29906232319096, -22.5999885439804], + [-44.2989368064381, -22.59989605815732], + [-44.29880468277497, -22.599856421382878], + [-44.2986593471136, -22.599843209651723], + [-44.29842152407989, -22.599843210106282], + [-44.29819691408876, -22.59983660453107], + [-44.29809121555527, -22.599803573710588], + [-44.298025154075674, -22.59971769377828], + [-44.29799542576143, -22.599635116778853], + [-44.297979488374565, -22.599493439712898], + [-44.29799571428936, -22.599423897634463], + [-44.29801194020404, -22.5993543555561], + [-44.2980449710515, -22.599222232402987], + [-44.29807177697214, -22.599134828292176], + [-44.29807469882539, -22.599063685238193], + [-44.298038364593445, -22.59903065428507], + [-44.297982212319745, -22.599017442383417], + [-44.29792606004604, -22.59900422948173], + [-44.29751647717694, -22.59896459423749], + [-44.297410777680476, -22.5989480784282], + [-44.29733150438771, -22.598971200595493], + [-44.29716634984751, -22.599050473965082], + [-44.29696816517852, -22.59913635440233], + [-44.296789798699265, -22.599268477833224], + [-44.29667088713789, -22.59924866004701], + [-44.29656518853786, -22.599185901206162], + [-44.296459489937746, -22.599123143365446], + [-44.29634057816925, -22.59901083951612], + [-44.29614899918841, -22.59894477783724], + [-44.296010269607656, -22.59895468710899], + [-44.2958715400268, -22.598964597380856], + [-44.295815386864184, -22.599000930512993], + [-44.29575923470148, -22.599037264644934], + [-44.29560806331648, -22.599257723737555], + [-44.29535323863166, -22.6008818688841], + [-44.29542232519575, -22.60125032479682], + [-44.29556766190834, -22.601732573847617], + [-44.2957196046349, -22.602208215881397], + [-44.29545535791544, -22.60239979551692], + [-44.29519771841716, -22.60267725419833], + [-44.294807954581316, -22.6030604112044], + [-44.29409425764342, -22.60358029892259], + [-44.29381703090147, -22.60378708959341], + [-44.2932885373439, -22.60411739782849], + [-44.29265434517842, -22.604381645220574], + [-44.292201778048074, -22.604584109974056], + [-44.29084578952796, -22.605646737188277], + [-44.290949955905454, -22.60578215243235], + [-44.29120099126359, -22.605901062033706], + [-44.29118777891672, -22.606218157275194], + [-44.290593224249015, -22.606627739690605], + [-44.2902100669676, -22.606799500539903], + [-44.28954945010127, -22.607248720108657], + [-44.28916629323427, -22.607605452084048], + [-44.28892023315084, -22.608045791854586], + [-44.288703862673835, -22.608252856409255], + [-44.28825464334168, -22.608530315456942], + [-44.28785827306173, -22.608728500349567], + [-44.287091958972006, -22.609283418192373], + [-44.28690698658194, -22.60946839067193], + [-44.28680128762542, -22.609693000027175], + [-44.28613241392598, -22.610233046673688], + [-44.285532904528964, -22.610327192883364], + [-44.28507047122121, -22.610195070676674], + [-44.2846873129031, -22.609904401210308], + [-44.28440985289688, -22.609547669496845], + [-44.28410596759807, -22.609111663779803], + [-44.28380208306256, -22.60856996099042], + [-44.28357747145763, -22.607843284923348], + [-44.28361566096074, -22.607547312648364], + [-44.28385492919965, -22.60718927494688], + [-44.28407953862911, -22.60694484735104], + [-44.28425722174201, -22.60668255331603], + [-44.283286518837166, -22.60462584566824], + [-44.28182022076544, -22.604249542825087], + [-44.28064432158567, -22.60377390274519], + [-44.28005637188033, -22.60370784182242], + [-44.279666607332814, -22.603773904611653], + [-44.27935611701177, -22.603787117213397], + [-44.27905883957083, -22.603721056735665], + [-44.2787525650027, -22.603615701248263], + [-44.27836365901149, -22.6034819218992], + [-44.2779181758342, -22.60337496267638], + [-44.27726856565923, -22.60321899280957], + [-44.27648243092892, -22.603080264215], + [-44.27605666795224, -22.603024610989447], + [-44.27574914545806, -22.60295474952851], + [-44.27550471606952, -22.602809414895525], + [-44.27531313691093, -22.602664079161734], + [-44.27511495164958, -22.602485714417895], + [-44.27500925176112, -22.602294135488552], + [-44.2748837349786, -22.602188437655812], + [-44.27463269984221, -22.602168620121258], + [-44.2743552407386, -22.602214863682185], + [-44.2741702682148, -22.602340380121024], + [-44.274057964080924, -22.602498928443623], + [-44.2738994156277, -22.602604626818458], + [-44.27374417111483, -22.602677295164316], + [-44.27363516869979, -22.602703719390405], + [-44.27350304522843, -22.60274996267412], + [-44.27339437483307, -22.602784565905054], + [-44.27326522321598, -22.602759873134556], + [-44.27314384456743, -22.60270602532937], + [-44.27301219393745, -22.602680466562965], + [-44.2729448236151, -22.602667387682637], + [-44.27291509638234, -22.60262114370769], + [-44.27287876214298, -22.602584810752177], + [-44.27274663858285, -22.60259141700876], + [-44.2725633047674, -22.602583433353004], + [-44.272485694395925, -22.6025682954907], + [-44.272422935901176, -22.602469203542686], + [-44.27236017641388, -22.602373414596844], + [-44.27228585700924, -22.602337080713692], + [-44.2722115376046, -22.602300747830625], + [-44.27204835573841, -22.60223090909411], + [-44.27194398723366, -22.60220826127778], + [-44.272003443167236, -22.602062926064914], + [-44.2720447311732, -22.60198530393301], + [-44.2720860191792, -22.601907681801208], + [-44.272132262092235, -22.60177886162476], + [-44.27215538393427, -22.601663254501585], + [-44.27214754881061, -22.601623226489128], + [-44.272139714686965, -22.60158319847665], + [-44.27210956348276, -22.60155055851187], + [-44.27207941227857, -22.601517918547046], + [-44.27196710762747, -22.60144525171157], + [-44.27195815458143, -22.601442091726465], + [-44.27185480105016, -22.601405614898677], + [-44.27169955628612, -22.601365978167667], + [-44.27160692086921, -22.601359738340115], + [-44.271519981568375, -22.601394373529573], + [-44.271480949429574, -22.601408252613606], + [-44.27144191629086, -22.601422130697546], + [-44.27128997471114, -22.6014584650122], + [-44.2712470335243, -22.60145846509411], + [-44.27120409333749, -22.601458465175995], + [-44.27111851989594, -22.601427496318042], + [-44.271072779659875, -22.60141094239393], + [-44.27085726954782, -22.601332948751622], + [-44.27084995605997, -22.6013298498543], + [-44.26461873067131, -22.605241180292623], + [-44.26458721119291, -22.605325232442393], + [-44.26451865630339, -22.60550804769837], + [-44.26414871140234, -22.60582514362098], + [-44.26387125258351, -22.6064461215755], + [-44.26328991132367, -22.607014252073192], + [-44.26290675418776, -22.607252073966805], + [-44.262690596242926, -22.60769744368413], + [-44.26243110983112, -22.60801838839883], + [-44.262074376928354, -22.608309059278206], + [-44.261995104982205, -22.60848742555161], + [-44.261915830035925, -22.608665791825022], + [-44.26170443317942, -22.609141434554008], + [-44.260779571280715, -22.610092721969615], + [-44.259484763416395, -22.610885461981844], + [-44.25850705101639, -22.61126862110868], + [-44.25752933761613, -22.61165177923545], + [-44.25623485288056, -22.612054795979688], + [-44.253829884460686, -22.612973016194076], + [-44.25298429371906, -22.612946592787598], + [-44.25283606395655, -22.61289427703424], + [-44.25208585309739, -22.612629499282317], + [-44.25126668728941, -22.61207458446246], + [-44.250368245191396, -22.611096876503062], + [-44.24994544928715, -22.610621233982], + [-44.24941695480452, -22.610092743625945], + [-44.249443377679626, -22.609537827194533], + [-44.249813322168926, -22.60903575914494], + [-44.249894577838845, -22.608487281533147], + [-44.248436328302155, -22.606959534861165], + [-44.24822783557129, -22.606935006721994], + [-44.24760685574903, -22.60688215886829], + [-44.24698070702211, -22.606882066060724], + [-44.24672813092207, -22.606882028541673], + [-44.24650642595645, -22.606881995963747], + [-44.24604779804813, -22.606921798864413], + [-44.245598579652366, -22.6071728328924], + [-44.24533433209166, -22.60743707957709], + [-44.245175785168385, -22.607780599115163], + [-44.24504605106216, -22.60798601350335], + [-44.244858690908615, -22.60828266706404], + [-44.24422449829728, -22.608797948625817], + [-44.243418546878644, -22.609286804496406], + [-44.24286362916971, -22.609603900771063], + [-44.242586169226634, -22.609722812381072], + [-44.2424804718548, -22.609762449609562], + [-44.242374772482854, -22.609802086838087], + [-44.24222943584983, -22.609802087114776], + [-44.24181324805158, -22.609808693911713], + [-44.24129796586598, -22.609835118910866], + [-44.24103371953795, -22.609755846359423], + [-44.24074304697664, -22.609623723821883], + [-44.240571285756396, -22.609412327003454], + [-44.240346676276516, -22.60918771827661], + [-44.23996351803219, -22.608930079828625], + [-44.23959657409306, -22.608777521422226], + [-44.239329323443556, -22.608560135781303], + [-44.239012227442885, -22.60828267819399], + [-44.2388173442252, -22.608117525451274], + [-44.23866971486712, -22.608062967409523], + [-44.23821298993252, -22.60813434474369], + [-44.238110480361904, -22.608214245863117], + [-44.23796514791103, -22.608295893195898], + [-44.23780990342644, -22.608381773550345], + [-44.237747144278366, -22.608437925708458], + [-44.237608415101626, -22.60862950410436], + [-44.23752414897879, -22.608738915339913], + [-44.237459776867034, -22.60881447651446], + [-44.23736068461962, -22.60889705375987], + [-44.237218652236784, -22.609002752102963], + [-44.23693789033808, -22.609148087737232], + [-44.23672649267518, -22.609263696219166], + [-44.23663400632015, -22.609285166409958], + [-44.236541519965144, -22.60930663660074], + [-44.2363928823176, -22.609306636883588], + [-44.236270666681854, -22.609260394084323], + [-44.23619139209329, -22.609151392160197], + [-44.23608569344843, -22.609068816304383], + [-44.235966782827184, -22.60902257349891], + [-44.235811537077055, -22.608989542771614], + [-44.235623262242086, -22.608982937125315], + [-44.23532598309436, -22.60904899873641], + [-44.234995674920604, -22.609167910446775], + [-44.23458611379401, -22.60946264142904], + [-44.23442231334346, -22.609580516821858], + [-44.23414795528166, -22.609640399385068], + [-44.23399153857771, -22.60963034267574], + [-44.23379995966923, -22.6095973120175], + [-44.23366783501984, -22.609564281246172], + [-44.23331983458031, -22.609598637931946], + [-44.23307988666446, -22.6096567684285], + [-44.23292794370764, -22.609524645626536], + [-44.23281038980015, -22.609347542728226], + [-44.23261789631438, -22.609057537894635], + [-44.23243908511814, -22.608870638106072], + [-44.23235320536071, -22.60869887815113], + [-44.23222768776223, -22.608675757373927], + [-44.232079049070315, -22.608655939643086], + [-44.23193701654733, -22.608698878942818], + [-44.231841227188895, -22.60872530414322], + [-44.231699193636324, -22.60875503243393], + [-44.23158358612527, -22.608751729651562], + [-44.231382098107325, -22.60868897099155], + [-44.231160790944045, -22.608599788351032], + [-44.231051789354815, -22.608548591523125], + [-44.23093287670037, -22.60848748470721], + [-44.23084699713824, -22.60840325581258], + [-44.23075120751091, -22.608309118929856], + [-44.23057614344589, -22.60817369316957], + [-44.23048035288121, -22.608107632306186], + [-44.23038126134623, -22.608061389462797], + [-44.23025574377721, -22.608051479694666], + [-44.23018637833499, -22.60798872178338], + [-44.23008207062259, -22.607873107902027], + [-44.22994855691553, -22.607816962117326], + [-44.22979661440086, -22.607883024451773], + [-44.229664491016734, -22.607968903762238], + [-44.22947951818124, -22.607955692104888], + [-44.22943988074327, -22.60783678209833], + [-44.22943327437555, -22.60768484000622], + [-44.229538972718196, -22.607631990768777], + [-44.22948612297222, -22.60740077570988], + [-44.22946116469689, -22.607326108705937], + [-44.22927472457957, -22.607189378966225], + [-44.229235088112176, -22.607057255950505], + [-44.229215470644526, -22.60688593286977], + [-44.229111305934296, -22.606770999988626], + [-44.22895762688647, -22.606601433163977], + [-44.2287264105991, -22.606475916517134], + [-44.22847825529495, -22.606375982920106], + [-44.228204522750495, -22.60621827733186], + [-44.22808310285727, -22.60605498945014], + [-44.227952161010606, -22.60593116861381], + [-44.227794939155515, -22.605854939860183], + [-44.2275108738294, -22.605815303372935], + [-44.22739204626721, -22.605795367585042], + [-44.22727321970494, -22.605775430797145], + [-44.22713440587942, -22.605676456992878], + [-44.22699559105382, -22.60557748318852], + [-44.22683043792177, -22.605392511374934], + [-44.22679740543899, -22.605240570333006], + [-44.22681061709885, -22.605062204184883], + [-44.22661243232371, -22.605101841588937], + [-44.226493040172166, -22.60507069621699], + [-44.22628494168942, -22.60543306983721], + [-44.22638121742095, -22.605597303370185], + [-44.22640764200751, -22.605808699465726], + [-44.226374612320164, -22.606013490669735], + [-44.22624248911269, -22.60617864403479], + [-44.22610376061136, -22.606224887330416], + [-44.22602448551634, -22.60633719255853], + [-44.225832907771554, -22.606826047259894], + [-44.22570739082854, -22.607096899685335], + [-44.22559508767801, -22.607248842003575], + [-44.22544314528098, -22.607367752374422], + [-44.225502600716865, -22.60744702631613], + [-44.225449751722245, -22.607552724489455], + [-44.22538369064064, -22.60764521067886], + [-44.22521193020147, -22.607783940101008], + [-44.225106231168006, -22.607975519434113], + [-44.224993926105824, -22.60816709777979], + [-44.224934471126566, -22.608292614979323], + [-44.22489639911231, -22.608360601098614], + [-44.224841986091796, -22.60845776826911], + [-44.22486841135433, -22.608523830264392], + [-44.22494107790671, -22.608629528199206], + [-44.2251428111247, -22.608781467920412], + [-44.22520581357603, -22.60886073985529], + [-44.22520630274025, -22.608933403904537], + [-44.225132658861234, -22.60913159518121], + [-44.2250864161607, -22.60935620442407], + [-44.22520532817985, -22.609580813352814], + [-44.22525817769013, -22.609706329338966], + [-44.225310009329974, -22.60989195636845], + [-44.22530772462067, -22.610026727465677], + [-44.22530442104082, -22.610221609606405], + [-44.22519211865648, -22.610717070161602], + [-44.225159087234516, -22.61104077244763], + [-44.22517737563241, -22.61118341451121], + [-44.225215301916776, -22.611236784475963], + [-44.22523426305892, -22.61126346945831], + [-44.225206983062115, -22.611318230547948], + [-44.22516074092318, -22.61134630665523], + [-44.22511201880472, -22.611388420776855], + [-44.225063298686386, -22.611430534898584], + [-44.22498072140014, -22.611463566078424], + [-44.22488163001241, -22.61148338428047], + [-44.22482547669405, -22.61145035436449], + [-44.2247693243756, -22.611417323448414], + [-44.224685094960535, -22.61139585359387], + [-44.22458435159882, -22.61143053580926], + [-44.22449807329977, -22.61146504799715], + [-44.224451403223775, -22.61152219612532], + [-44.224450989265314, -22.611541602139503], + [-44.22445057630676, -22.611561008153682], + [-44.2245032826933, -22.61163130410189], + [-44.224576021101385, -22.61167212599175], + [-44.22464876150945, -22.61171294888158], + [-44.224767673307795, -22.611838465742125], + [-44.22490310022217, -22.611983800584778], + [-44.22487667522493, -22.612036649671506], + [-44.22481391712082, -22.612112620843217], + [-44.224754462031164, -22.612188591008657], + [-44.22470821995486, -22.612244744135346], + [-44.22463885479252, -22.61230750231047], + [-44.22452324742854, -22.612370260573627], + [-44.22440929098707, -22.612395033807413], + [-44.224295333545676, -22.612419807041213], + [-44.22417642202729, -22.61241980726731], + [-44.2240542074725, -22.61240989849283], + [-44.223935297035226, -22.612446232743988], + [-44.22383620471377, -22.61249577896662], + [-44.22373794746675, -22.612577030209465], + [-44.22364156120138, -22.61264641644065], + [-44.22360994316589, -22.612692312532424], + [-44.223579927133954, -22.612736656620015], + [-44.22352242107272, -22.612821609787975], + [-44.22343165499621, -22.612964669059256], + [-44.223344047137765, -22.613199334387783], + [-44.22325156039769, -22.61349661176872], + [-44.223202014546395, -22.61366011397566], + [-44.22313918269617, -22.613850040226122], + [-44.22307482870105, -22.613978021436814], + [-44.22301843170542, -22.614090184621382], + [-44.22284528257904, -22.614371927145033], + [-44.22264709839294, -22.61467581073154], + [-44.22243545812712, -22.614970268337142], + [-44.22234321601129, -22.61509860460107], + [-44.22212851483417, -22.615438821244023], + [-44.221473623823954, -22.617162432678654], + [-44.219805594505985, -22.618038825455262], + [-44.2192545013877, -22.618166490591342], + [-44.21814505343256, -22.618113906664394], + [-44.2173057660672, -22.61779759804166], + [-44.216829417589594, -22.617618072823255], + [-44.21659769337333, -22.616533506098534], + [-44.21317116619288, -22.615331178208], + [-44.21047539951597, -22.616109554856248], + [-44.2101164392762, -22.615807060329093], + [-44.209383555703475, -22.615189463294346], + [-44.20923161311445, -22.615222494605813], + [-44.20924482493647, -22.61511679650757], + [-44.20914573247482, -22.61510358368674], + [-44.209066458217414, -22.61514322086472], + [-44.208960759403176, -22.6149846739558], + [-44.208861666352696, -22.6147072159522], + [-44.20876257240528, -22.61447600098049], + [-44.20868990461734, -22.614264603972327], + [-44.208584205758896, -22.6140862380497], + [-44.20846529484289, -22.613907872152268], + [-44.20837280700899, -22.613714643194307], + [-44.208287826717665, -22.61361752192637], + [-44.20794582455622, -22.613497500279426], + [-44.207573460454704, -22.613683605850113], + [-44.20757346077671, -22.613828600791237], + [-44.20752721685466, -22.61395411696578], + [-44.20751588282482, -22.61396289099348], + [-44.20723393808135, -22.61418111867982], + [-44.20694065830792, -22.614408119393868], + [-44.20689948618777, -22.614434804490486], + [-44.2058092620067, -22.615141414049784], + [-44.20525305438376, -22.61550190935534], + [-44.20454376131394, -22.61596162602042], + [-44.204387277771055, -22.616473250671678], + [-44.20458990683256, -22.617899437273774], + [-44.20464056384791, -22.6182559834243], + [-44.20469122286337, -22.618612530574822], + [-44.204792537894384, -22.61932562387585], + [-44.20437703203521, -22.62065103358218], + [-44.203920743714654, -22.621566613390346], + [-44.20384537851831, -22.62426304337762], + [-44.20504980396282, -22.625582405716006], + [-44.20480927973047, -22.62684598404722], + [-44.204222396537055, -22.627459424586807], + [-44.203771582242446, -22.62776119665225], + [-44.20355371061674, -22.627907038167162], + [-44.20316429949842, -22.628167706087538], + [-44.19894404337534, -22.630992708061598], + [-44.197746906725, -22.63125105251479], + [-44.19717323214315, -22.63121637858062], + [-44.195553488538685, -22.63052858518073], + [-44.19487850655647, -22.63051279045176], + [-44.191722101610466, -22.630438928394398], + [-44.19164685727801, -22.630437167535998], + [-44.19126575821774, -22.630708164447512], + [-44.19066943645311, -22.631533677152145], + [-44.190219758285835, -22.633686340498745], + [-44.187698250207966, -22.635452197511167], + [-44.18517577112388, -22.637217994525628], + [-44.184894110692866, -22.63757676430927], + [-44.184727057476096, -22.637788786493402], + [-44.189155395012946, -22.64285421567637], + [-44.189602714260495, -22.642959233100527], + [-44.19023317043202, -22.64359473934327], + [-44.190510147264725, -22.64387393501058], + [-44.191501661358366, -22.645560566295526], + [-44.19132676767066, -22.647836215205132], + [-44.19056825214511, -22.64908625951332], + [-44.19003932400056, -22.649609269881143], + [-44.18766487877193, -22.651468639683323], + [-44.186342962303456, -22.652503797913617], + [-44.18359644626334, -22.653833219055286], + [-44.18154774051885, -22.65482487363634], + [-44.178587027968234, -22.655242568349884], + [-44.17388573798551, -22.65797198169223], + [-44.172958505007685, -22.65888258677133], + [-44.17283130772991, -22.659007504099783], + [-44.172448603893926, -22.659383348087864], + [-44.172014453945636, -22.659809715208834], + [-44.17189119467639, -22.65993076652704], + [-44.171085917209396, -22.66174962732093], + [-44.16955568722213, -22.665205924630712], + [-44.16882980610292, -22.667921680898107], + [-44.16624657804783, -22.671620370378033], + [-44.16624654904959, -22.67162120937875], + [-44.166246514049526, -22.671621259378774], + [-44.16617785423363, -22.67363152690772], + [-44.16597460750476, -22.674151840655806], + [-44.16575730191513, -22.674313901181414], + [-44.16316218887205, -22.676249279458553], + [-44.16314251329262, -22.676924641965954], + [-44.16313672471055, -22.677123342115255], + [-44.16313093612857, -22.677322043264525], + [-44.16312382464205, -22.677566158447963], + [-44.16311671315562, -22.677810273631323], + [-44.1629414699121, -22.678045034127653], + [-44.162625967056, -22.678280483890973], + [-44.16180660453989, -22.678760800781976], + [-44.16208922039618, -22.678978195499848], + [-44.16397850277822, -22.68010521785294], + [-44.16402860128294, -22.680190803809655], + [-44.164140244095115, -22.68025610338836], + [-44.16450414116356, -22.680468946844808], + [-44.16470143028548, -22.680584559550294], + [-44.16489871940736, -22.68070017225578], + [-44.16529329765129, -22.680931397666647], + [-44.16570469111305, -22.68122722809051], + [-44.16603288221045, -22.6815230596724], + [-44.16624088982292, -22.68183738049558], + [-44.16652285691416, -22.68222103722643], + [-44.16664766187856, -22.6824082431194], + [-44.16677246671921, -22.682539979973743], + [-44.16692702070763, -22.682679572776966], + [-44.16713763588583, -22.682794210456237], + [-44.16736413316659, -22.682923636115614], + [-44.16763223271209, -22.683090040721556], + [-44.16789570913418, -22.68321022230417], + [-44.16813145142446, -22.683325780936332], + [-44.16825163309519, -22.683390494752818], + [-44.16839492796, -22.68349680855418], + [-44.16852746375912, -22.683594756370283], + [-44.16858444621313, -22.68368632532561], + [-44.16861218051011, -22.683764906327493], + [-44.16863991492049, -22.683894332364723], + [-44.16854746783571, -22.684037625640148], + [-44.16836257239777, -22.684204032107456], + [-44.16822390113117, -22.68435657047718], + [-44.168089851915795, -22.684522975847702], + [-44.167895712581846, -22.684754095377567], + [-44.167761663531614, -22.68499445879957], + [-44.16767383857029, -22.6851839760984], + [-44.16757214658944, -22.685391983436357], + [-44.167507433760335, -22.685595367700884], + [-44.167433475942225, -22.685821863999003], + [-44.167407489670246, -22.685962931801924], + [-44.168552467490585, -22.6879187953029], + [-44.173208620671915, -22.690917457835678], + [-44.17375691749103, -22.691128336656448], + [-44.17449536057478, -22.691508519515004], + [-44.175291553175, -22.69200658534527], + [-44.176105094647184, -22.69241335207897], + [-44.176761475224495, -22.692727673047596], + [-44.17701570667891, -22.69288021066937], + [-44.17713511547404, -22.69300196752656], + [-44.177254525269355, -22.693123725383657], + [-44.17733927541907, -22.6934718734639], + [-44.17727456292129, -22.69382317383086], + [-44.177210933022494, -22.693993040069927], + [-44.17714730312372, -22.694162905309007], + [-44.17700432436249, -22.694549611849613], + [-44.17674064189133, -22.695302434874105], + [-44.176303865322154, -22.695903244122846], + [-44.1762067964966, -22.696171341493734], + [-44.175929453781045, -22.696841586487093], + [-44.175652112840844, -22.697858509721005], + [-44.17551165035671, -22.698364176339485], + [-44.175189877538486, -22.69952256475633], + [-44.175004845660624, -22.70016675400483], + [-44.17457265131867, -22.70203787301166], + [-44.177903989438235, -22.707005366588696], + [-44.17933155830499, -22.7078428286381], + [-44.18108806878155, -22.708637873841106], + [-44.18253025567388, -22.709340471578468], + [-44.18317739291153, -22.71041286108772], + [-44.18382453014956, -22.71148525059667], + [-44.185673488570906, -22.712520658787366], + [-44.18752244434012, -22.712372739157658], + [-44.1890385897285, -22.71270554749523], + [-44.19092452614624, -22.71366699756179], + [-44.19232750518457, -22.71426994659236], + [-44.19651365763703, -22.715030876484676], + [-44.19698381140455, -22.715116376900102], + [-44.197358897650176, -22.71514614430094], + [-44.19976254167632, -22.715368013863603], + [-44.201500560911015, -22.71564535273523], + [-44.2022031645693, -22.71590420457175], + [-44.202508152706145, -22.716120905746216], + [-44.20370944072445, -22.716339317998145], + [-44.203542697336815, -22.717093419716043], + [-44.203571395301125, -22.71712450880014], + [-44.20414857161465, -22.717919818246262], + [-44.20451436679016, -22.719065903338322], + [-44.204514369239824, -22.720156784091362], + [-44.204311179745105, -22.720778075908566], + [-44.20420958499767, -22.72108872131725], + [-44.20410798925033, -22.721399367725823], + [-44.20375267925354, -22.72209383188438], + [-44.20267528826001, -22.72419824739674], + [-44.20267719527469, -22.72420103539498], + [-44.20267466727471, -22.72420598640329], + [-44.202966882498465, -22.72462604313462], + [-44.20299884495256, -22.72476587417007], + [-44.203044459639145, -22.724982544232436], + [-44.203051550581115, -22.72583323780625], + [-44.20305028211457, -22.726073188974336], + [-44.19989723765897, -22.727569116034964], + [-44.19970591455964, -22.727659887470228], + [-44.20196956724532, -22.732397040409598], + [-44.21814233656809, -22.733200537509102], + [-44.21877280828421, -22.732873750578023], + [-44.22069246803108, -22.732579659699113], + [-44.223142814529446, -22.733448639241825], + [-44.22347930285484, -22.733465328673493], + [-44.22436199662533, -22.733255746134695], + [-44.22531639189001, -22.73355643362423], + [-44.22681073636097, -22.73363052554648], + [-44.22735843419326, -22.734200002423723], + [-44.2274883745368, -22.73424125482131], + [-44.22813420942194, -22.73471045690596], + [-44.229969809464876, -22.73604402830357], + [-44.23188677527057, -22.738888856581806], + [-44.23189138817767, -22.738912999166125], + [-44.240715013090586, -22.748086017419457], + [-44.242237277947005, -22.74835203820955], + [-44.242940607831294, -22.749151122406364], + [-44.24294185784206, -22.749153504405616], + [-44.24316432727435, -22.750242276724226], + [-44.24301647731895, -22.750548882218393], + [-44.243115627860554, -22.750596432060444], + [-44.243112992892314, -22.750615591078688], + [-44.24284530238122, -22.75090860479358], + [-44.24164812822135, -22.75183185672582], + [-44.24150492499946, -22.752011427123982], + [-44.24144719437307, -22.752288965425116], + [-44.241455951844074, -22.7533664461467], + [-44.241360010829496, -22.753546127454147], + [-44.24126406981484, -22.75372580876155], + [-44.2409698360157, -22.753942791475414], + [-44.23939158172873, -22.75510667830489], + [-44.239064257046635, -22.755439793162008], + [-44.23904643936651, -22.755730828882093], + [-44.24112507192647, -22.756058411982753], + [-44.24258173790903, -22.755196689238016], + [-44.243080351905064, -22.75511327522277], + [-44.243407509483674, -22.755177632638247], + [-44.24357828230768, -22.75521122733315], + [-44.24403540002929, -22.755529574672895], + [-44.24529792572108, -22.756715951179455], + [-44.250463054327255, -22.75752969372268], + [-44.25086274278534, -22.75805773691824], + [-44.250914786905305, -22.758069741187473], + [-44.251732924496785, -22.75895792122172], + [-44.25188263444333, -22.759405135338774], + [-44.257343261192815, -22.766618830374473], + [-44.25754744467218, -22.766785217384502], + [-44.258023053285434, -22.767461113930608], + [-44.25912187425266, -22.77062125497336], + [-44.259016756109254, -22.771203102573057], + [-44.257525790339194, -22.771951051621677], + [-44.2574694386236, -22.77816978695767], + [-44.257492291279036, -22.778203009289847], + [-44.25754487925527, -22.77853222241343], + [-44.257465279458394, -22.778628406081967], + [-44.25746387978318, -22.778782732844533], + [-44.25421027880288, -22.781275867261098], + [-44.256624492218634, -22.784711346406947], + [-44.25705252386634, -22.7854929611158], + [-44.257294454909236, -22.78636762524681], + [-44.25731634013563, -22.78686640654529], + [-44.25719389991217, -22.78744596317703], + [-44.256965342149506, -22.787992868991086], + [-44.25681060000537, -22.788228615450294], + [-44.25653511146862, -22.788524764183524], + [-44.25625962193177, -22.788820913916755], + [-44.255768443953954, -22.788898572916523], + [-44.25431686670269, -22.788507768447115], + [-44.253944667239196, -22.788582208215278], + [-44.25337671842005, -22.7888785295121], + [-44.252922646680766, -22.788989802463202], + [-44.25258760303288, -22.788910978054915], + [-44.251965900471184, -22.788764713446273], + [-44.25072035607251, -22.78928677926525], + [-44.24945439520003, -22.79063633027125], + [-44.24864083625976, -22.791355092330093], + [-44.24830585683252, -22.791373702988206], + [-44.24352309195113, -22.788768327417436], + [-44.242933582290355, -22.788735352529965], + [-44.242406495558384, -22.78899164772023], + [-44.24062330928911, -22.79188635013557], + [-44.24052220584953, -22.792287441376946], + [-44.24148927791563, -22.794885791924163], + [-44.24194430584014, -22.79575187923819], + [-44.24210752571871, -22.796265013275054], + [-44.24206695627263, -22.79643788024519], + [-44.24355586457787, -22.800438127350372], + [-44.24460680522791, -22.800916971643236], + [-44.24469271780475, -22.802420993238034], + [-44.259628587991195, -22.804867546636768], + [-44.25965043511434, -22.804829314304516], + [-44.25978448363957, -22.80480158002692], + [-44.25991391129133, -22.8048385588024], + [-44.26000118748447, -22.804928561490453], + [-44.26157875147152, -22.80518688481702], + [-44.26567601670663, -22.81891658590421], + [-44.265696553650265, -22.81891829723418], + [-44.26590087957796, -22.81893191884858], + [-44.26612181402106, -22.819140170563564], + [-44.2663159555668, -22.819445246396143], + [-44.26639915896185, -22.819898238543907], + [-44.26652858753885, -22.820341986596077], + [-44.26680593252194, -22.821118544589027], + [-44.266981584365105, -22.82159002657066], + [-44.26713874668559, -22.821867368455692], + [-44.267369866414874, -22.822181689223], + [-44.26749929482395, -22.82255147922459], + [-44.26762427699647, -22.82370515976871], + [-44.26767495017887, -22.824566833257514], + [-44.26779184548828, -22.824916893269872], + [-44.26782286748951, -22.825297168468868], + [-44.26778588944173, -22.82578713987407], + [-44.26797078573714, -22.82599976866125], + [-44.26829435368341, -22.826230887192963], + [-44.2685716973636, -22.82643427079515], + [-44.26899695777733, -22.826674633136296], + [-44.269329771037675, -22.82702593273192], + [-44.269690355469415, -22.827398963288424], + [-44.269958418816856, -22.82791342712014], + [-44.269939929577276, -22.828283217407574], + [-44.26979201360107, -22.828579049895005], + [-44.26927430704359, -22.82889337211041], + [-44.26890451584082, -22.829078267951534], + [-44.26873420678448, -22.82916342234553], + [-44.268856699208065, -22.829573830528943], + [-44.273430557165874, -22.832459557769095], + [-44.27396827771612, -22.83264518533706], + [-44.27410009064787, -22.832591261289508], + [-44.27441441256473, -22.83238787654288], + [-44.27465477728314, -22.832239959977016], + [-44.274950609708135, -22.83229542844212], + [-44.27524644313323, -22.832350895907318], + [-44.276351714323305, -22.832938368167227], + [-44.277244218305114, -22.833405409757017], + [-44.277802982283106, -22.83363589083188], + [-44.27840816150842, -22.83388551782975], + [-44.28018316211181, -22.834680562932913], + [-44.28081038369122, -22.835006974597878], + [-44.28331803972983, -22.835872491605222], + [-44.28593424257718, -22.83019395401167], + [-44.28584095677898, -22.829780835648297], + [-44.28589642363201, -22.8291706821267], + [-44.28609980755553, -22.82874542344416], + [-44.2863956407693, -22.828708443846136], + [-44.28659655393304, -22.8287562801685], + [-44.286711303267055, -22.828507190231328], + [-44.296631392136646, -22.827808982087962], + [-44.308486887916345, -22.832715786960048], + [-44.31741061519527, -22.83991313807821], + [-44.31742862957574, -22.840058764816668], + [-44.31786298261724, -22.840453957750714], + [-44.3185380873249, -22.842092761544617], + [-44.31808898308935, -22.84328856022403], + [-44.318082281464605, -22.84434009794653], + [-44.318415648900455, -22.845345241993606], + [-44.322177990341196, -22.848293000238648], + [-44.32150891591958, -22.847585926474284], + [-44.32113911572435, -22.845586964845523], + [-44.32145406249032, -22.84400643416764], + [-44.32155124270317, -22.843423346495427], + [-44.32110038680126, -22.842181585256853], + [-44.32105024830673, -22.842077130651642], + [-44.321044299823605, -22.842027107752838], + [-44.320467193449, -22.84043759997901], + [-44.32346580378513, -22.839278381938467], + [-44.323496439479314, -22.83921114496475], + [-44.324366365979934, -22.838636709886625], + [-44.32571648104547, -22.838263381010634], + [-44.325909263335056, -22.838333714680243], + [-44.326409177476776, -22.838140435709114], + [-44.336326456379176, -22.842302088333064], + [-44.337444578389, -22.84172896053172], + [-44.3383243122956, -22.841314349540802], + [-44.33929456950423, -22.841731825932914], + [-44.34043309587406, -22.841897622828228], + [-44.34116484153878, -22.842970604124773], + [-44.34118573859939, -22.84434093042669], + [-44.34542626026621, -22.84611999891801], + [-44.345558657980526, -22.846106023674135], + [-44.34579089175404, -22.84627296962494], + [-44.36014053999862, -22.85229210000848], + [-44.36434760746526, -22.85357996104846], + [-44.366590995664836, -22.854611910359818], + [-44.36773891640943, -22.855358451617974], + [-44.36793172790966, -22.855498225396914], + [-44.37421308986424, -22.858047571439315], + [-44.38395143309166, -22.8577959892606], + [-44.38451244190086, -22.857539485301803], + [-44.38555079808262, -22.857380541165526], + [-44.38675903409441, -22.857259055722004], + [-44.38788072538701, -22.856989848349137], + [-44.38876917786046, -22.856374070201422], + [-44.390527913370384, -22.85411832025973], + [-44.39115605982995, -22.853557475657787], + [-44.39142298816617, -22.853399745543125], + [-44.39207857953617, -22.85260542885335], + [-44.401905304853635, -22.85458696742872], + [-44.403139096085766, -22.84850059224651], + [-44.40704425790861, -22.84839000275783], + [-44.40942028533143, -22.8472907027534], + [-44.411122171786175, -22.846860956136116], + [-44.41305148467206, -22.847489097774915], + [-44.41394432192282, -22.84807306541362], + [-44.41422200755589, -22.848186482398017], + [-44.41818483010658, -22.848073977596165], + [-44.4199830649309, -22.849249450877014], + [-44.42164092010105, -22.850032462632406], + [-44.42350215046816, -22.850998448623635], + [-44.42455759838507, -22.85223957937563], + [-44.424571041527585, -22.852248366101165], + [-44.433183267677606, -22.861365124185387], + [-44.43763638973103, -22.872376122153877], + [-44.44520710405386, -22.876184266819333], + [-44.44747517013567, -22.877188776831403], + [-44.448788678744926, -22.8772586383022], + [-44.449887937605276, -22.87728106915415], + [-44.45098719641354, -22.87728106699125], + [-44.451648994412075, -22.877325933718605], + [-44.45219862423171, -22.87750540275515], + [-44.45274825415526, -22.877729738821127], + [-44.45325301724631, -22.8781111120786], + [-44.456113337434005, -22.880130145776167], + [-44.45666296777362, -22.88053395295957], + [-44.4570331277183, -22.881106012606907], + [-44.457135127527444, -22.88146662119826], + [-44.466212549186864, -22.885485784043045], + [-44.47075453029701, -22.87765359235622], + [-44.47076263650929, -22.87755023322621], + [-44.4709645403513, -22.87710155753404], + [-44.471166443193404, -22.87665288184189], + [-44.47141189042837, -22.8765199318712], + [-44.471693945356726, -22.87603350129297], + [-44.47688396876467, -22.874247537654973], + [-44.476242562192546, -22.869459957452108], + [-44.47617570899237, -22.869281481137786], + [-44.476090655714934, -22.86889078904934], + [-44.47615330150511, -22.868793698854464], + [-44.476015130042015, -22.867762361051682], + [-44.480396080478826, -22.866444192693166], + [-44.48035308135424, -22.86631089695925], + [-44.480083873825805, -22.865727620107737], + [-44.47983710029152, -22.86509947418271], + [-44.47959032675735, -22.86447132925755], + [-44.4794781560972, -22.863966570147912], + [-44.4793659854372, -22.863461811038253], + [-44.47927512753503, -22.86260861015737], + [-44.478472206901166, -22.860840351914945], + [-44.47808724810502, -22.860119181367427], + [-44.47759370181826, -22.859199397736813], + [-44.47674121286023, -22.85823474778354], + [-44.475776556504044, -22.857741206359655], + [-44.4765849957965, -22.85668404384695], + [-44.47641277059988, -22.856304733416593], + [-44.47883950377481, -22.85325722878665], + [-44.47897637278405, -22.852261635467396], + [-44.47900291160759, -22.851703654049512], + [-44.47916405253837, -22.85137001051362], + [-44.47936604205771, -22.85121348701328], + [-44.47956803057703, -22.851056964513027], + [-44.480745951545494, -22.850862953471303], + [-44.48436383290081, -22.846318960022455], + [-44.49471847904503, -22.846432982769695], + [-44.505730041081605, -22.851746486875683], + [-44.511777493030785, -22.85769051742428], + [-44.511944971367924, -22.857739237038366], + [-44.51222973837086, -22.858066716689326], + [-44.51224152257572, -22.858146585386812], + [-44.5194957492496, -22.8652758674417], + [-44.522126257385764, -22.866040191044668], + [-44.52254668075037, -22.865971084445636], + [-44.524149005963025, -22.86606691933945], + [-44.52585822050684, -22.866534604263094], + [-44.52748130252003, -22.867365467592208], + [-44.52792716993081, -22.867725538290113], + [-44.53027032460885, -22.868406230849526], + [-44.53053698427625, -22.868408602223752], + [-44.531052809945436, -22.86858875231991], + [-44.531207221215624, -22.868678390900435], + [-44.53304402715236, -22.869211948521247], + [-44.53623841052972, -22.872251523845147], + [-44.53661129022158, -22.87246728083201], + [-44.53933951915486, -22.874198608550607], + [-44.54104812045632, -22.87585024323556], + [-44.54250878794729, -22.87761760448549], + [-44.54361102287141, -22.878954178166126], + [-44.544607706414055, -22.87946675352225], + [-44.54527671211923, -22.88085089352342], + [-44.54566303524148, -22.881218425370147], + [-44.54552923390289, -22.881462444269044], + [-44.54557591661875, -22.881602489984633], + [-44.54537658107775, -22.882172020748214], + [-44.544807051383515, -22.883368035651145], + [-44.543970243792685, -22.88467957515881], + [-44.54393901705721, -22.884881971747753], + [-44.547454036526574, -22.886182201227047], + [-44.55016066471205, -22.886785207242816], + [-44.55070450138621, -22.886914509247365], + [-44.552196743723876, -22.88726930351578], + [-44.553948057958955, -22.88795273648176], + [-44.555617650641146, -22.888552070554947], + [-44.55609072510322, -22.888577189125073], + [-44.55803561001823, -22.887464158406022], + [-44.559500994355325, -22.88588817812691], + [-44.56041224386557, -22.88526169291372], + [-44.560867869286874, -22.885019641853084], + [-44.561323494708205, -22.884777590792357], + [-44.561662854861936, -22.884638041028577], + [-44.56243320048077, -22.88432126229479], + [-44.56257225795353, -22.884264079981786], + [-44.56284699288748, -22.884151104363532], + [-44.563069567711175, -22.884088325881077], + [-44.563957579997705, -22.883837859956312], + [-44.56528174197225, -22.88349613910666], + [-44.56558207864711, -22.883430441322083], + [-44.574750969528985, -22.879133115877014], + [-44.57490724447259, -22.879023144107165], + [-44.57497180986287, -22.879029600236738], + [-44.57556201192559, -22.878752949210636], + [-44.57556745169467, -22.878742984615194], + [-44.575749194064, -22.878562222137774], + [-44.575927416740036, -22.87851920275598], + [-44.57605032927565, -22.87851920251179], + [-44.57617324181117, -22.878519202267558], + [-44.57629000843484, -22.87856836706718], + [-44.576455940387746, -22.878666695800792], + [-44.57660343624586, -22.878758879567016], + [-44.57684311534768, -22.878783461106558], + [-44.57695373591588, -22.878820334910497], + [-44.57699279617514, -22.878986337699065], + [-44.58704940446114, -22.883148031004623], + [-44.58788505876268, -22.883189971984866], + [-44.588958889257995, -22.883539181072777], + [-44.59020590578944, -22.884008666892935], + [-44.59125242188164, -22.884236476956733], + [-44.59222774691376, -22.884571074230433], + [-44.59325290624615, -22.88494126742756], + [-44.594064491281834, -22.885581987223038], + [-44.59464826329205, -22.886208469462545], + [-44.594770393609615, -22.886342628795642], + [-44.600606686233846, -22.88875710465098], + [-44.60705293426644, -22.885650884342777], + [-44.60745580550191, -22.885997890561676], + [-44.60758683578561, -22.88584303546035], + [-44.60775462727139, -22.885738581059105], + [-44.60792570015887, -22.88579939275716], + [-44.60812163235403, -22.88594530346003], + [-44.6084807816849, -22.886272513953532], + [-44.609165537473146, -22.88704308108159], + [-44.60959137402612, -22.887767528695836], + [-44.60968014795834, -22.88791374676695], + [-44.629367722458376, -22.904867747800054], + [-44.63349729404983, -22.905401335905438], + [-44.633742556808926, -22.905846027243324], + [-44.63433631962759, -22.906014746936282], + [-44.63484871830132, -22.906202917031628], + [-44.6352674885839, -22.906398098318522], + [-44.63537254326713, -22.906494094169553], + [-44.6357932470055, -22.9068794315734], + [-44.635811619125086, -22.906896259547263], + [-44.63621395074392, -22.907264768977196], + [-44.63671753727842, -22.907835028332638], + [-44.63743154291533, -22.908484357317494], + [-44.637909409506015, -22.909125948769557], + [-44.63809809692382, -22.90937928355317], + [-44.638531758915775, -22.909848203983728], + [-44.63859784131933, -22.909897424882818], + [-44.638648543629, -22.909935190805413], + [-44.638702797062344, -22.910018904750064], + [-44.63902729565384, -22.910519611419048], + [-44.6397718830011, -22.91141380549757], + [-44.64045271541096, -22.912452386795117], + [-44.640623522885136, -22.912762620650398], + [-44.64073020904312, -22.91305708662385], + [-44.64075421630372, -22.913123350617962], + [-44.64075858541755, -22.91316365163477], + [-44.64078468109803, -22.913404358735416], + [-44.640766403349154, -22.913544804861168], + [-44.64076542336261, -22.91355233086791], + [-44.64061350902633, -22.913690435259632], + [-44.64044755716616, -22.914056725824214], + [-44.64020492067573, -22.9142971684624], + [-44.639999061259644, -22.914501166003863], + [-44.63976010831957, -22.914543836509043], + [-44.63946995109613, -22.914560905100437], + [-44.63911755778381, -22.914655350865498], + [-44.6391174011001, -22.91478992095132], + [-44.639127676662355, -22.914804749236605], + [-44.64540630618509, -22.91880628625257], + [-44.645637593979835, -22.918816352456645], + [-44.646229080084076, -22.918616226145407], + [-44.64655962756144, -22.918632318493735], + [-44.64684324094905, -22.918697086966834], + [-44.64695223862657, -22.91878314680319], + [-44.6470522904204, -22.918935131699232], + [-44.647090999859564, -22.919049941694546], + [-44.647082843147636, -22.91918723179792], + [-44.646942457385094, -22.919547353307387], + [-44.64691069175549, -22.919763182507864], + [-44.64691207942289, -22.91976589185118], + [-44.64751600238802, -22.9201507555436], + [-44.648270138547105, -22.920132957019806], + [-44.64844074234202, -22.92015501469206], + [-44.64874483582119, -22.92022072912465], + [-44.64895424197269, -22.920322366769625], + [-44.64965225511899, -22.92079183966909], + [-44.65091062606634, -22.92141430554271], + [-44.65226019885452, -22.922224856352326], + [-44.65271851778366, -22.922620619684647], + [-44.65290511619165, -22.922873060470668], + [-44.65315324678257, -22.923089502110457], + [-44.65385137784685, -22.923523726986467], + [-44.654169965523444, -22.92364637342558], + [-44.65436495442463, -22.92366847804884], + [-44.654551093355494, -22.923719469708093], + [-44.65519669116996, -22.923720873414965], + [-44.65550744184653, -22.923857952878976], + [-44.656935372620644, -22.92494144370237], + [-44.65733788453283, -22.925432829206365], + [-44.65748936880505, -22.92569241506701], + [-44.657566076454884, -22.925826275997874], + [-44.65778715761475, -22.92633352787557], + [-44.65806567519445, -22.926873136720552], + [-44.65935976015307, -22.927697660369578], + [-44.673882513688646, -22.918260417287684], + [-44.67406321403204, -22.91849020082583], + [-44.67428159902832, -22.918547072871135], + [-44.674855413057344, -22.91919594812906], + [-44.67541397268084, -22.919701157326788], + [-44.675685228679534, -22.92004769300095], + [-44.675848359087816, -22.92034341986008], + [-44.675940403084056, -22.920595640834414], + [-44.67599704588132, -22.92094926487413], + [-44.68022640925868, -22.926327013151653], + [-44.680359377745006, -22.926280314545483], + [-44.680592477743346, -22.926273557073042], + [-44.68132118268807, -22.927023895082087], + [-44.681383245315054, -22.927174878052583], + [-44.68141327463762, -22.927679004309784], + [-44.68158414316585, -22.928010874175605], + [-44.68199470995823, -22.92843626961878], + [-44.68256907051769, -22.92888457474718], + [-44.682700716095255, -22.929309409750182], + [-44.682712476087346, -22.929487909815425], + [-44.68375612965876, -22.930814812758694], + [-44.68377784831276, -22.930802077525687], + [-44.68411238275515, -22.930796420849944], + [-44.684695365532136, -22.930897850742248], + [-44.68562716417042, -22.93114450602483], + [-44.68590678567909, -22.93126791454037], + [-44.686256346780986, -22.93151341199233], + [-44.68687697013667, -22.93221292318498], + [-44.687350015169955, -22.932624877493197], + [-44.687668027491476, -22.93302116810322], + [-44.68774566922306, -22.933187536051772], + [-44.68784635842696, -22.93351113205297], + [-44.68792218501854, -22.934044254235836], + [-44.68791372166365, -22.93433240443413], + [-44.687780635550546, -22.934951836091344], + [-44.68754041147789, -22.935625932280324], + [-44.68819721057278, -22.936460913504845], + [-44.69615215997978, -22.932221068931714], + [-44.696810890406375, -22.93257811044358], + [-44.696813394233985, -22.93257819843318], + [-44.6991293617354, -22.93318062015188], + [-44.70007075957797, -22.933074001190644], + [-44.70075471830721, -22.93339236601408], + [-44.700971417104554, -22.9337532098044], + [-44.701086879253594, -22.934026236743392], + [-44.70114868118819, -22.934307293795364], + [-44.70120663165851, -22.934960560368125], + [-44.70332517694339, -22.936108725883212], + [-44.70438643726006, -22.935495791038345], + [-44.704467319112666, -22.935357775774257], + [-44.70519161452602, -22.934624703856393], + [-44.705776653093096, -22.933790195155463], + [-44.70638456134192, -22.933201436562477], + [-44.70685273819459, -22.932279986042328], + [-44.707079376772285, -22.932107866478233], + [-44.70743657206176, -22.931996509689338], + [-44.70780229666242, -22.932000796955748], + [-44.708307017388265, -22.932224852079933], + [-44.708805389557604, -22.93222576707704], + [-44.709310956349384, -22.932054154951572], + [-44.70939632568677, -22.93203985777079], + [-44.70948169402407, -22.932025560589903], + [-44.70993322102377, -22.932040840690295], + [-44.7101943749478, -22.93214114273205], + [-44.710676334094735, -22.931862745329372], + [-44.710594561707644, -22.931537981043544], + [-44.71065754635025, -22.931271608749874], + [-44.710907069513596, -22.930882722003822], + [-44.71126559240819, -22.93060243410633], + [-44.7117243070299, -22.930445182084167], + [-44.71195060198052, -22.930431139619674], + [-44.71271197165382, -22.930584281182274], + [-44.71287613778868, -22.930592020172828], + [-44.713583637946115, -22.930183316950664], + [-44.71381545339264, -22.93035987006598], + [-44.71387884323522, -22.930376812702328], + [-44.71405712123379, -22.930471082402363], + [-44.71420138089397, -22.930653795026362], + [-44.720965103658976, -22.935804779260117], + [-44.74297480494424, -22.947315702545637], + [-44.743483507774826, -22.947462310934057], + [-44.74352084702514, -22.94747341610598], + [-44.743533057790295, -22.94749431716125], + [-44.74358873702095, -22.94749000744798], + [-44.74362288617278, -22.947491441379896], + [-44.74394668161256, -22.947505039734143], + [-44.74402902603369, -22.947531618584268], + [-44.744125071526064, -22.947563141409738], + [-44.74426525947762, -22.947706999215953], + [-44.74432646505331, -22.947837180173284], + [-44.74432645506597, -22.94784251517663], + [-44.744326409123566, -22.947866810191783], + [-44.744324801151954, -22.94872245572732], + [-44.74433356228223, -22.948761205733714], + [-44.74437167297924, -22.9489297536752], + [-44.7446726355503, -22.94944489726798], + [-44.744712568639876, -22.949480084415], + [-44.74534983025057, -22.949833413346724], + [-44.74549664648893, -22.950085682206865], + [-44.74550349373523, -22.95059698651103], + [-44.74567438547405, -22.951015510425865], + [-44.74567411732802, -22.951159062314062], + [-44.74663852956235, -22.952809742312425], + [-44.74731153210489, -22.952912442295663], + [-44.747731774154765, -22.953006155504184], + [-44.7481742106107, -22.953229985748777], + [-44.74850809395581, -22.953605403306938], + [-44.74900526551232, -22.95377150340491], + [-44.749339550345184, -22.953931020827977], + [-44.74947785321999, -22.954045964619734], + [-44.74957213906033, -22.95422678254145], + [-44.749571436964885, -22.95460799277975], + [-44.749680112181885, -22.954920721754203], + [-44.749850251653356, -22.955228127601046], + [-44.749889962191766, -22.955381759616284], + [-44.749880882541525, -22.95554525073615], + [-44.749818202593666, -22.955681556947603], + [-44.7496315182611, -22.9558827074502], + [-44.749302256411404, -22.95612699626796], + [-44.74884342819441, -22.95645362639883], + [-44.748799288546, -22.95650795215308], + [-44.752411268390404, -22.96268958072781], + [-44.75221093925379, -22.963168603799666], + [-44.75221214754063, -22.963464646938206], + [-44.7521240777273, -22.963703695264847], + [-44.751922773631506, -22.964030813875425], + [-44.75174644052699, -22.964279285224777], + [-44.74980123665112, -22.968930255170676], + [-44.749668019963835, -22.96996319212295], + [-44.74974442515559, -22.970323746192207], + [-44.74981438781978, -22.970474715144306], + [-44.74989228734836, -22.97055433203607], + [-44.750039478144174, -22.97061960477863], + [-44.750265756198154, -22.970648869338742], + [-44.75044410121359, -22.970749421040228], + [-44.75058320933599, -22.970966441893285], + [-44.750678065118976, -22.97121912045433], + [-44.75268437586645, -22.972800463288184], + [-44.75326568361762, -22.97290155866318], + [-44.75383641153317, -22.97308315162], + [-44.75417365961868, -22.973342572098005], + [-44.75497786673543, -22.973601990630115], + [-44.755470767436115, -22.97383546777661], + [-44.75669004891506, -22.974328364612397], + [-44.75723483546047, -22.974821261814416], + [-44.75723483787428, -22.975833001441806], + [-44.757079186177926, -22.97666314627187], + [-44.757053245993546, -22.977052277565765], + [-44.756586288076505, -22.977519234801456], + [-44.75597555180745, -22.977950344609383], + [-44.755281078117704, -22.980255276735356], + [-44.75528873757899, -22.9802653871698], + [-44.75944453711932, -22.978901951154302], + [-44.76530374218167, -22.98336269368052], + [-44.77573350339917, -22.97865232856686], + [-44.77654459367755, -22.97871561945543], + [-44.77679496763808, -22.978641496517618], + [-44.7771843451286, -22.97855687467513], + [-44.77781441419428, -22.978693516480845], + [-44.77808703617982, -22.97883596762129], + [-44.78077926265666, -22.979045990880515], + [-44.78088172235351, -22.97903880046802], + [-44.781698277743196, -22.978971937769156], + [-44.78216523589703, -22.97902382085307], + [-44.783160582579924, -22.979172920924228], + [-44.78335754866781, -22.979247082474927], + [-44.78349864077355, -22.97925808563826], + [-44.78357028765145, -22.979327182487673], + [-44.78391321652894, -22.97945630057091], + [-44.78463041238077, -22.979763454303928], + [-44.785100552338506, -22.980145755584985], + [-44.78559020338766, -22.98053079182797], + [-44.78613197587223, -22.981003156018872], + [-44.78668238430365, -22.982273628684197], + [-44.786729999827735, -22.982374348612794], + [-44.78710956254255, -22.982740380233565], + [-44.78919253056, -22.982502013115848], + [-44.78954786265373, -22.98222984283595], + [-44.790207304614576, -22.981851487263], + [-44.79095962576012, -22.981799601702406], + [-44.79173163349789, -22.98195949423228], + [-44.79204746232857, -22.98217525770733], + [-44.79246838112972, -22.982127077643632], + [-44.79250601651254, -22.982648159639655], + [-44.79269775210768, -22.982966989889327], + [-44.792948527978986, -22.983711317837972], + [-44.79303500230538, -22.98410843890671], + [-44.7932175258972, -22.984859818998302], + [-44.79326848405236, -22.985249888134803], + [-44.7935104880656, -22.98565152989016], + [-44.79377295196523, -22.98596849455174], + [-44.79396440598854, -22.986466033468748], + [-44.794092231416315, -22.986830370433196], + [-44.79395563224722, -22.987425373077127], + [-44.79387605076945, -22.98778796246209], + [-44.793775004494236, -22.987856457709658], + [-44.79344776760291, -22.98807828051155], + [-44.79326349435831, -22.98831065102917], + [-44.793204049751814, -22.988582931317595], + [-44.79297929108597, -22.98913051511164], + [-44.793009072986365, -22.989452498249296], + [-44.793001093139814, -22.989503044581422], + [-44.79305424467642, -22.990239017964473], + [-44.793064503772804, -22.99038128553735], + [-44.79311284392229, -22.99049017967713], + [-44.793309866205625, -22.990668403386156], + [-44.79369892873977, -22.99102034481173], + [-44.79368824818135, -22.991224112958864], + [-44.79341544076151, -22.9915440337105], + [-44.79334821665811, -22.991622868895664], + [-44.79338314488851, -22.99207323010189], + [-44.793209295006015, -22.992389196020483], + [-44.79329220004799, -22.99353891250683], + [-44.79331276488401, -22.99368161161591], + [-44.793971866501394, -22.994065259416033], + [-44.79515551904888, -22.99435047089867], + [-44.79549952974315, -22.994433364249883], + [-44.79611566228234, -22.99531308291845], + [-44.798192055712484, -22.99652162967154], + [-44.798562931196564, -22.996576292335465], + [-44.799157376302915, -22.99679408225973], + [-44.799472656216466, -22.99702053775733], + [-44.800006439469364, -22.996992305653663], + [-44.80128466905623, -22.997004756059944], + [-44.80170132386006, -22.99700166521004], + [-44.80187878998792, -22.997150308940125], + [-44.802037302718745, -22.997584847884518], + [-44.80230670682891, -22.998393569832935], + [-44.80256824378853, -22.998736628511235], + [-44.80287185906341, -22.9991348831378], + [-44.802981234882935, -22.9992783530033], + [-44.80308085243807, -23.00016327734399], + [-44.802833621128826, -23.000899505299508], + [-44.80278445330805, -23.001063401500343], + [-44.80253861057563, -23.001620646343188], + [-44.80212887177669, -23.002030385429084], + [-44.80178469102692, -23.00234178732113], + [-44.80134217273175, -23.002604020383217], + [-44.80085048577288, -23.003095706686373], + [-44.80057186452659, -23.003915183757087], + [-44.80051716033682, -23.00435216113696], + [-44.800457139307674, -23.004865776574725], + [-44.80046493441864, -23.004897928578703], + [-44.800719376042615, -23.005947485705462], + [-44.800588260415935, -23.00634083521415], + [-44.80008018373959, -23.006980028641433], + [-44.799391821807184, -23.00742254731505], + [-44.79906403006695, -23.007291430901923], + [-44.79868706887709, -23.007061977528373], + [-44.79814621224944, -23.006947252559062], + [-44.79708088916617, -23.007176708869107], + [-44.7959336180798, -23.007553670436508], + [-44.79576972275995, -23.007717565870912], + [-44.79475356938341, -23.008569823463645], + [-44.79463733607969, -23.008653991752055], + [-44.794278272141156, -23.008914004642936], + [-44.79383575447375, -23.00943847086633], + [-44.793475184927104, -23.00986459886244], + [-44.79326212113991, -23.01033989558855], + [-44.79326858207623, -23.010433575617355], + [-44.794785596061594, -23.013178329856274], + [-44.79495025683611, -23.013404736036723], + [-44.7951633221563, -23.013568630703606], + [-44.79588446622077, -23.014371714728863], + [-44.79627781691543, -23.01478145317976], + [-44.79662199967146, -23.015305917801136], + [-44.796687558428665, -23.015502592788526], + [-44.7969825729709, -23.016027056509994], + [-44.79734314452313, -23.016436794027367], + [-44.79749065167636, -23.016649856857843], + [-44.797490654075894, -23.017649618472255], + [-44.79749065517027, -23.018072395041305], + [-44.79866029190239, -23.020188439617822], + [-44.7986295423759, -23.02025316772721], + [-44.798706697827164, -23.020340512648268], + [-44.79908045246953, -23.020763626146636], + [-44.79886738895905, -23.02135365094328], + [-44.79855598746951, -23.021714221799357], + [-44.79845736432977, -23.021834760074427], + [-44.79844790231646, -23.021846325100796], + [-44.798408481260516, -23.021894506210714], + [-44.79778567836024, -23.022648425943128], + [-44.79735864680134, -23.023189690145983], + [-44.797064538386074, -23.023549851966596], + [-44.79706229172284, -23.02355272771706], + [-44.79654971630781, -23.024632733853064], + [-44.80137500878076, -23.031036441293587], + [-44.80199782456148, -23.031334870690863], + [-44.80240756715718, -23.03208878831787], + [-44.802505906712675, -23.032973822660516], + [-44.80226006473047, -23.033842468695052], + [-44.801897835837224, -23.034506555815327], + [-44.802213847675894, -23.038300591641566], + [-44.802292854946025, -23.03844792745464], + [-44.802423972857, -23.039005170529077], + [-44.802620649329455, -23.03967714154011], + [-44.80306317047839, -23.04018521594888], + [-44.80348930024066, -23.04056217431053], + [-44.80347291278558, -23.041234144756242], + [-44.80291566848778, -23.042119181436423], + [-44.80257148425193, -23.04259447870729], + [-44.80315498717944, -23.049600563363718], + [-44.803194309762794, -23.04962558647267], + [-44.80344015362258, -23.049953376171658], + [-44.80358256188941, -23.05042616676742], + [-44.80414585256989, -23.050601566974304], + [-44.80437436092893, -23.050051712324375], + [-44.80506272329614, -23.049789477757834], + [-44.80602970998167, -23.049986150903624], + [-44.80652139859688, -23.050182824019892], + [-44.80694752788704, -23.050363108260054], + [-44.808586491064766, -23.051625098685545], + [-44.80953708838939, -23.052116783044724], + [-44.810127115104166, -23.052592078130314], + [-44.81053685599419, -23.05305098357412], + [-44.810590164392536, -23.053119971507464], + [-44.81137272824075, -23.054132691528512], + [-44.81233971658499, -23.05501772409404], + [-44.81202472736542, -23.055496042030764], + [-44.81172354815533, -23.055953386926262], + [-44.81145468096787, -23.056361667725902], + [-44.81091382575685, -23.05683696512236], + [-44.81086290373392, -23.056919494276983], + [-44.8105466645911, -23.057432019237158], + [-44.810438529542274, -23.05760727456551], + [-44.810159907315715, -23.058017013385893], + [-44.80994684408554, -23.058721763253025], + [-44.80996323628961, -23.05960679876151], + [-44.80991406881321, -23.06032793830363], + [-44.80970100487223, -23.06073767699018], + [-44.80906181148211, -23.060901573397135], + [-44.80835266590488, -23.06152934223118], + [-44.808132970416146, -23.061723826799426], + [-44.808062048258385, -23.061786609982896], + [-44.80795560515079, -23.061934447291], + [-44.80781355400718, -23.062131740702217], + [-44.80776703696023, -23.062196348836885], + [-44.807707910398726, -23.062413147719475], + [-44.81199704958532, -23.065943729545754], + [-44.81240530006174, -23.065883984611514], + [-44.81286420957527, -23.0660970478033], + [-44.81353618472885, -23.066605121739794], + [-44.813765639123986, -23.06676901637072], + [-44.81461749079925, -23.067583001126156], + [-44.815240705951524, -23.068178513215436], + [-44.814749019152984, -23.06873575856223], + [-44.8145210855595, -23.068901528129913], + [-44.81438844921411, -23.068997991460357], + [-44.81366730825732, -23.069489679236497], + [-44.813028114380884, -23.06986663977471], + [-44.81242170096338, -23.07037471632622], + [-44.81209391060203, -23.070817234267636], + [-44.81199775773156, -23.071057617206392], + [-44.8149153676363, -23.080944405252666], + [-44.815804632016004, -23.083083957007364], + [-44.816371624828236, -23.083486334260783], + [-44.81699443108761, -23.084125525375946], + [-44.81740417277436, -23.084912222017618], + [-44.817945030518366, -23.085485854260263], + [-44.818371162158265, -23.086223382837993], + [-44.818403942211866, -23.08660034200117], + [-44.81840394312261, -23.086977301231425], + [-44.81830560632729, -23.08723953359311], + [-44.81910870371077, -23.090501048940183], + [-44.819288993022504, -23.09195971746169], + [-44.81899398129046, -23.092189171206385], + [-44.818502292591326, -23.091959719073852], + [-44.817338631040705, -23.091763046338233], + [-44.815502995558965, -23.09156637597904], + [-44.81492936005694, -23.091566377154226], + [-44.81443767199144, -23.0915991571815], + [-44.81386403676642, -23.091713885426753], + [-44.81297900005416, -23.092189183530305], + [-44.812716767543755, -23.092451416227867], + [-44.812700379254174, -23.093188945712487], + [-44.812569264820574, -23.09407398052238], + [-44.81252916943081, -23.094209303758962], + [-44.81282655947157, -23.097900641652537], + [-44.81322485886027, -23.098286088754758], + [-44.81332319735894, -23.098728606823848], + [-44.812946237863024, -23.099203903886895], + [-44.81279873149676, -23.099318630259308], + [-44.812225096429415, -23.099498916545027], + [-44.811667850473164, -23.099695591807112], + [-44.81152034386916, -23.099711982119494], + [-44.81094670796977, -23.099548088194616], + [-44.81025834460935, -23.099400583514758], + [-44.80940608672197, -23.099744765471492], + [-44.80933233367737, -23.099859492692794], + [-44.80925858063273, -23.099974218914067], + [-44.80926704507683, -23.100050397040715], + [-44.81135696895759, -23.103101969620088], + [-44.81215954828657, -23.10369463724492], + [-44.81265123630432, -23.104055206457566], + [-44.81345432795862, -23.104530501101852], + [-44.8140443540885, -23.104759953032623], + [-44.81410171745782, -23.104809121945067], + [-44.814159080827096, -23.104858289857507], + [-44.814355757676346, -23.105268027704685], + [-44.81445409593801, -23.105612207713463], + [-44.814454096810096, -23.10597277793382], + [-44.81447048671404, -23.106316958110522], + [-44.81488022781056, -23.10685781160097], + [-44.81612583915016, -23.107644506527315], + [-44.81671586575632, -23.10807063357767], + [-44.816879762106105, -23.108332865401646], + [-44.81691381160975, -23.108892912673877], + [-44.81686337600878, -23.109562080186073], + [-44.81674865025303, -23.110283219861834], + [-44.816617535624125, -23.111086307621317], + [-44.81615862919896, -23.112151628213397], + [-44.81581231020823, -23.112780134307705], + [-44.81571611221083, -23.11295471561172], + [-44.815584995717764, -23.11298749490065], + [-44.814913023418846, -23.11324972943927], + [-44.81430660757313, -23.113167782633123], + [-44.81342156986796, -23.113233342488368], + [-44.8127987663386, -23.113725030066217], + [-44.8118317821788, -23.114577287570416], + [-44.8113892640001, -23.114888689668323], + [-44.81121390640811, -23.115134191679484], + [-44.81240833265365, -23.118356676790697], + [-44.81253654473618, -23.118494384519092], + [-44.81311018139166, -23.11896967963269], + [-44.81388049295387, -23.11905162610234], + [-44.81450329914169, -23.119658037194924], + [-44.8150113779873, -23.120330007562842], + [-44.815339170807746, -23.120903640240588], + [-44.81553584745261, -23.12164116928733], + [-44.8156014075724, -23.12198534936304], + [-44.815666967168525, -23.122526203558785], + [-44.81566696867687, -23.12314900593919], + [-44.815519463620426, -23.123804587642276], + [-44.81529001112679, -23.124427389493647], + [-44.814896662473, -23.12527964682155], + [-44.8145688728674, -23.126033565954923], + [-44.81450331632794, -23.126754705529947], + [-44.81465082367941, -23.127459454657647], + [-44.81486388984099, -23.12796752953047], + [-44.815060565375056, -23.12824615129692], + [-44.81527363062347, -23.128377266939555], + [-44.815814488495015, -23.129000068209393], + [-44.81615867118984, -23.129491753802828], + [-44.81661758178315, -23.130147334260723], + [-44.817404283848205, -23.13081930305545], + [-44.81820737534945, -23.131229039656116], + [-44.81883018046733, -23.1313929344769], + [-44.819403816489576, -23.131605996428686], + [-44.819477693110755, -23.131729124352034], + [-44.819698829970164, -23.132097682122673], + [-44.8198899483533, -23.13314881537127], + [-44.81989550845173, -23.133179391378533], + [-44.81987540049554, -23.13323368245294], + [-44.819731612808575, -23.133621908985216], + [-44.81974065679087, -23.134010753203878], + [-44.819748004588895, -23.134326658381443], + [-44.81937420345232, -23.134943866525944], + [-44.81904325433138, -23.135490316539293], + [-44.81878456315458, -23.135883528310675], + [-44.818704993662955, -23.13600447400345], + [-44.81686038937437, -23.14073590553143], + [-44.81896998902313, -23.141459967888462], + [-44.819091255871754, -23.14139933404559], + [-44.819239944341135, -23.141324989694624], + [-44.820092202349805, -23.141029976762983], + [-44.821059188813706, -23.141128311835455], + [-44.82200978508674, -23.141177478911423], + [-44.822862044407145, -23.141423320309297], + [-44.823927368738, -23.141701940288982], + [-44.824451836944384, -23.14207889844039], + [-44.82471407144256, -23.14263614124067], + [-44.82495991635209, -23.142980320944925], + [-44.82592690564044, -23.14424231272518], + [-44.82582857008061, -23.145012621396695], + [-44.82528771475168, -23.145438750768612], + [-44.82509397477229, -23.145797530147576], + [-44.82308257847742, -23.158360697210508], + [-44.82577154995705, -23.163059645226774], + [-44.82662410928182, -23.163289251243878], + [-44.826943105707834, -23.16302471607144], + [-44.82730367652745, -23.162713314139463], + [-44.82809037648917, -23.162516638399897], + [-44.82889346700055, -23.162516636746187], + [-44.83015546846731, -23.163729458885236], + [-44.83045048115572, -23.163893353377293], + [-44.830827442441624, -23.164155585760298], + [-44.83105431876922, -23.16448228560269], + [-44.839191886175136, -23.16667333405494], + [-44.839382816466994, -23.166466491536358], + [-44.83980894605063, -23.16635176458834], + [-44.8403334148192, -23.166958175875422], + [-44.840595648264795, -23.167081097409408], + [-44.840857881710335, -23.167204017943444], + [-44.84134956974005, -23.167154848899845], + [-44.842218218537234, -23.167154847108936], + [-44.84334910056033, -23.16718762379712], + [-44.84446359474637, -23.168138214075498], + [-44.845167040174154, -23.16888733503162], + [-44.845273891350715, -23.168928901343193], + [-44.8452970138836, -23.16902574702724], + [-44.84572559753539, -23.16948215328787], + [-44.84553727727144, -23.170032054582475], + [-44.84624697227896, -23.173004464157774], + [-44.854190463923224, -23.172755471447324], + [-44.85333296781351, -23.176714992898024], + [-44.85435522621367, -23.177370103710572], + [-44.85680498173701, -23.177185211086393], + [-44.85739500819533, -23.177545779085985], + [-44.85775557941093, -23.17780801049985], + [-44.85795225559041, -23.177939127172937], + [-44.858296437654424, -23.17816857960076], + [-44.858722567716434, -23.17866026501789], + [-44.85895202259889, -23.179020833761918], + [-44.85914869909828, -23.179283065514188], + [-44.85934537463758, -23.1795616872764], + [-44.859574830079936, -23.180151710159056], + [-44.85983706526584, -23.18057783787486], + [-44.860377922789674, -23.18105313304467], + [-44.86089868074528, -23.18147624458171], + [-44.860910689860376, -23.181477836583273], + [-44.86147602638953, -23.18138092097377], + [-44.862852752367324, -23.18136452911882], + [-44.8662617884273, -23.181430080112282], + [-44.86708126840894, -23.18159397351715], + [-44.867343502035084, -23.181790647093774], + [-44.867537398789715, -23.182356171362695], + [-44.8712775408364, -23.182851781841844], + [-44.871358955144814, -23.1828395694238], + [-44.87162118877048, -23.182626504752914], + [-44.87237510970475, -23.182478997104784], + [-44.87317820049511, -23.183003460759945], + [-44.87337487735535, -23.183413198600213], + [-44.87339126710749, -23.183691820734253], + [-44.874128800851814, -23.184314621584026], + [-44.875194126669456, -23.18519965391342], + [-44.875390803451104, -23.185986350980546], + [-44.87514496129898, -23.18677304896324], + [-44.87488273015534, -23.187592525999722], + [-44.874637890498335, -23.18965438655523], + [-44.87543507170725, -23.192375420143257], + [-44.875588571883625, -23.193286143522112], + [-44.876556462445194, -23.194127780472858], + [-44.87702206844817, -23.19452354174724], + [-44.87727815170616, -23.194989144497526], + [-44.877161752677424, -23.19559442910303], + [-44.876765989541376, -23.196246274315058], + [-44.87614665242266, -23.196597232530834], + [-44.87636022648899, -23.197864354895017], + [-44.88262830219831, -23.202670184618544], + [-44.882605336484175, -23.202915811945726], + [-44.883091158241186, -23.203213966406327], + [-44.88361974077386, -23.203713043610925], + [-44.88416655706538, -23.20530638543575], + [-44.88362559820244, -23.208778762644695], + [-44.88392821521287, -23.211509193658888], + [-44.88165652200911, -23.213061902332917], + [-44.881419947176724, -23.21559113765292], + [-44.88182088060376, -23.21642161307545], + [-44.883642092599835, -23.218484982076525], + [-44.88542193041248, -23.219535442384714], + [-44.88653977218068, -23.22070956377081], + [-44.88805301041625, -23.22218434251641], + [-44.889377385130175, -23.225006109461766], + [-44.88976646095921, -23.227096178908617], + [-44.88902397603496, -23.229266528752905], + [-44.887653231622714, -23.231950910210557], + [-44.88668228741839, -23.2340070314612], + [-44.88639671977485, -23.236291609426058], + [-44.883883676194436, -23.236462957747463], + [-44.881313518483964, -23.23709122146128], + [-44.87999988495535, -23.238404855978178], + [-44.87892890940959, -23.240908878707106], + [-44.8787567867115, -23.243376617548265], + [-44.877176882913744, -23.245056253838907], + [-44.87562554510808, -23.246681941037885], + [-44.875506921989256, -23.24681374487518], + [-44.87505049393815, -23.249125487185967], + [-44.872917914156375, -23.249106678145157], + [-44.87281959294183, -23.24917842536602], + [-44.872438688955064, -23.249456382324233], + [-44.87148201082789, -23.249890211571532], + [-44.871093544558114, -23.250066371484078], + [-44.869910015031905, -23.250335321103073], + [-44.86869069448076, -23.2502505525831], + [-44.86666484508025, -23.250037525659486], + [-44.86381554109024, -23.249424867202944], + [-44.86320357126709, -23.249367351437915], + [-44.86209021621067, -23.24929527070442], + [-44.861031363430584, -23.249238495866805], + [-44.860050812929366, -23.24915556585075], + [-44.859809033833265, -23.249140723343235], + [-44.8594996054304, -23.24912172697362], + [-44.859331585658, -23.24910709731332], + [-44.85913992077704, -23.24909040770076], + [-44.858229029624496, -23.249025249550705], + [-44.85672932891284, -23.24896901362691], + [-44.85549207667291, -23.249044001237902], + [-44.85408610783098, -23.249175227232346], + [-44.853876032103095, -23.249206350864284], + [-44.84355962270815, -23.25572263116301], + [-44.8431719803995, -23.255788711328236], + [-44.84304458185627, -23.25588638317902], + [-44.8425759266271, -23.256223815354595], + [-44.84180262500805, -23.256539410148267], + [-44.84160261418761, -23.256562684576924], + [-44.84062021815788, -23.256677001681894], + [-44.83920387617581, -23.256465079773168], + [-44.836645596366495, -23.2569010821396], + [-44.83864366005321, -23.26083626132937], + [-44.83953904744014, -23.26158522889508], + [-44.840265805986455, -23.26254708197109], + [-44.84051555614091, -23.26338695496197], + [-44.840438873039815, -23.263891007426185], + [-44.8401951727515, -23.264209693124364], + [-44.83950156185634, -23.264678348845997], + [-44.83845177408687, -23.265428198476364], + [-44.837514462213605, -23.265934347725885], + [-44.836689628833724, -23.266440495742202], + [-44.83571482571422, -23.26732156829662], + [-44.83496497684691, -23.267902702203067], + [-44.83419638111599, -23.26816514995522], + [-44.83295912914381, -23.26835261463307], + [-44.83266459934015, -23.268415729561315], + [-44.83045492925864, -23.269790180731555], + [-44.828636538895516, -23.27293261225297], + [-44.828928932168, -23.273951204381216], + [-44.829378614626904, -23.27618852480648], + [-44.82929434862559, -23.276746915319812], + [-44.82894745298496, -23.27710708925741], + [-44.82828969268215, -23.27734627476594], + [-44.827732399966415, -23.277644909102307], + [-44.82718450274863, -23.278129933532274], + [-44.82622925036465, -23.278869235960958], + [-44.82531108741626, -23.279719888380313], + [-44.824954508659495, -23.280050247319878], + [-44.82466394216413, -23.280368933115575], + [-44.824373376668674, -23.28068761891138], + [-44.824204661168196, -23.28119376656821], + [-44.824195288586495, -23.281381227701527], + [-44.82419394450372, -23.281408110976667], + [-44.82427920541504, -23.281755267609455], + [-44.82461708201323, -23.282431013464564], + [-44.82651054127015, -23.28648345099857], + [-44.82763174621386, -23.28934387740882], + [-44.82792293286771, -23.291126672886204], + [-44.82716659598789, -23.292122784059366], + [-44.82615429853858, -23.292122786159204], + [-44.825142001089326, -23.292122788258872], + [-44.822741833870886, -23.291034927576078], + [-44.82060540465379, -23.29069808780121], + [-44.819294462765605, -23.29023909724013], + [-44.81629376173645, -23.288673508507948], + [-44.812924511447676, -23.286438481129498], + [-44.81250701193377, -23.28616152882584], + [-44.80945546181377, -23.284649133225503], + [-44.80829712231538, -23.284075042274484], + [-44.80759548901508, -23.283986981673596], + [-44.807394542990785, -23.284337816303303], + [-44.8072539159695, -23.284581580742973], + [-44.807607804373305, -23.287377468713057], + [-44.80727343982615, -23.28857076913221], + [-44.8058101052411, -23.290550559368675], + [-44.80140138653491, -23.293279312161243], + [-44.79789173600852, -23.294876995402106], + [-44.79427915914035, -23.296521313883922], + [-44.79068640406459, -23.298046652251433], + [-44.788966024826, -23.29899962839391], + [-44.787867026479084, -23.299608400040196], + [-44.78714578042102, -23.300473024061173], + [-44.78695227159171, -23.301101183350685], + [-44.787500445566586, -23.303541493840736], + [-44.78757454004609, -23.303633021105213], + [-44.78828690030417, -23.30490775940975], + [-44.788335196509436, -23.30531303155736], + [-44.788336892551804, -23.30532726056257], + [-44.78845067139141, -23.30628203491037], + [-44.78811419675203, -23.308258700814786], + [-44.78723022756908, -23.310589172069], + [-44.78618733668285, -23.311693880903444], + [-44.78483760940227, -23.312781162362594], + [-44.78382531304584, -23.313231072733483], + [-44.7830004796067, -23.31371847573907], + [-44.7822829778198, -23.313870969317783], + [-44.78189050177913, -23.314007755456004], + [-44.78056940245667, -23.315797660547446], + [-44.78006410290229, -23.32157513627625], + [-44.780078098335956, -23.321719186683442], + [-44.78038930037587, -23.32362393120416], + [-44.78065411670654, -23.32420944550163], + [-44.78203504053515, -23.326372161588825], + [-44.78205681752666, -23.32639841744695], + [-44.782006783625825, -23.32734445312907], + [-44.781285287594486, -23.32822068615961], + [-44.7802286244173, -23.328929558215055], + [-44.7767484291188, -23.333759943688374], + [-44.77786422897009, -23.337496861425716], + [-44.778195282573805, -23.338251061696937], + [-44.77811819982444, -23.338347416041476], + [-44.778306451666296, -23.338977871895796], + [-44.765791191459215, -23.341372632283825], + [-44.765211303733395, -23.341688927700687], + [-44.76384516269071, -23.342090735776118], + [-44.76247971614077, -23.342284544722244], + [-44.76198622077364, -23.342100475367488], + [-44.76013260625801, -23.34245501010196], + [-44.75851616528756, -23.34501903806434], + [-44.758420781632395, -23.34530518797978], + [-44.758088666178075, -23.34653377342163], + [-44.75802536910675, -23.347026582855253], + [-44.75787834952701, -23.348278545928355], + [-44.75759708833926, -23.349524142275417], + [-44.75687383905258, -23.350709468500842], + [-44.7558894152826, -23.35135235893399], + [-44.754623726073476, -23.351914888900172], + [-44.75398327255022, -23.352208431202918], + [-44.753728957365055, -23.352611754376735], + [-44.750134064585616, -23.35849023424412], + [-44.74345352550459, -23.35843359249287], + [-44.74190656622277, -23.359388488820212], + [-44.74070759588624, -23.360596763045297], + [-44.7395086255493, -23.3618050382706], + [-44.73944779851188, -23.36189947745463], + [-44.738310051813215, -23.36366594889713], + [-44.737521181328745, -23.364890878284285], + [-44.73740026125452, -23.365078637650193], + [-44.73620092855175, -23.366138825785406], + [-44.73455352236793, -23.366179009219007], + [-44.732986477031275, -23.366420095609833], + [-44.73194178088958, -23.36702280514287], + [-44.7305290373107, -23.368111313736925], + [-44.72949076568006, -23.368911294378364], + [-44.728526431695855, -23.369433642695498], + [-44.72731042917339, -23.369374398174198], + [-44.72639533600052, -23.368914700783158], + [-44.72464533065259, -23.368035584949528], + [-44.72463221571231, -23.36804046444744], + [-44.72479714239329, -23.368694430952313], + [-44.72488545214902, -23.36925174311386], + [-44.724986203141334, -23.36988316429538], + [-44.72625995021799, -23.370880537276765], + [-44.7279256972847, -23.371166231007443], + [-44.73097890860935, -23.371093938645945], + [-44.73389905079372, -23.37038915916865], + [-44.73542696827136, -23.3706836941879], + [-44.737868487569564, -23.3688500620046], + [-44.739433186989274, -23.36864736764079], + [-44.74228363648708, -23.36738259796081], + [-44.74523231097432, -23.3679759462201], + [-44.74667384493082, -23.368622375632153], + [-44.748234598781195, -23.368195634136857], + [-44.74956511468253, -23.367389379885072], + [-44.750841474174145, -23.367328973203886], + [-44.75253253627847, -23.368401618359165], + [-44.75567945024912, -23.369650729604423], + [-44.75732607545079, -23.370028077422727], + [-44.75867676461874, -23.370516966922516], + [-44.75986891907689, -23.37140913299795], + [-44.76106565101737, -23.371675116679423], + [-44.7623706047325, -23.371654780960608], + [-44.76395571686207, -23.372113490954032], + [-44.76517562984746, -23.3731701300708], + [-44.76628802034875, -23.37381597015852], + [-44.76959174384758, -23.37377727527936], + [-44.77287544913603, -23.37490971615645], + [-44.77447902873302, -23.375118834955135], + [-44.77590020139319, -23.37608783659667], + [-44.78074948765769, -23.377245346231913], + [-44.78353643096267, -23.37886947943297], + [-44.784842085039784, -23.379402104044647], + [-44.786117693930684, -23.3791006492095], + [-44.78584432222505, -23.37767960391059], + [-44.784653623020695, -23.37648247665452], + [-44.78443161646001, -23.375027739227903], + [-44.78536703370472, -23.373855319568747], + [-44.78587172137145, -23.37240807163696], + [-44.787179584846285, -23.371473941349596], + [-44.78862273475431, -23.371692349484174], + [-44.78943239868279, -23.373055168632792], + [-44.79131867727875, -23.371133561540763], + [-44.79281696958436, -23.370602472102995], + [-44.79445149788573, -23.371450411222], + [-44.7956503471398, -23.37184157196795], + [-44.79688971541699, -23.371763429343517], + [-44.79845921567642, -23.371898721162285], + [-44.799619527396, -23.37254805214437], + [-44.80106684920866, -23.37272095323932], + [-44.801843218099805, -23.37412744848004], + [-44.80120744699589, -23.37562980571666], + [-44.80142153150015, -23.377074261149936], + [-44.802961125106336, -23.377809219393495], + [-44.80693082446197, -23.380582159816555], + [-44.808127860777425, -23.381000896578794], + [-44.80939899714795, -23.38090393987315], + [-44.81215192100267, -23.3811903423142], + [-44.81815358530539, -23.382738778750433], + [-44.820986225430396, -23.38299298100114], + [-44.82128482731704, -23.38322356451854], + [-44.822176957953786, -23.38391247807628], + [-44.824876220062016, -23.38480328998822], + [-44.82668206306145, -23.385221488475697], + [-44.82741667519247, -23.38558190816186], + [-44.82815128832347, -23.38594232784778], + [-44.82717795754126, -23.386958927492945], + [-44.82784165639514, -23.38814313882503], + [-44.82903452582192, -23.389018874866412], + [-44.83078866094735, -23.388770813056716], + [-44.831786569636755, -23.38807783155566], + [-44.83193221880278, -23.386671223401414], + [-44.833538787004564, -23.387122535322018], + [-44.834793571568724, -23.38713452671092], + [-44.83607544771011, -23.388140693643383], + [-44.83807338159441, -23.388574408734918], + [-44.8390415529436, -23.388606432733063], + [-44.840317747139125, -23.38802709571905], + [-44.84156979858551, -23.389209618818338], + [-44.84408919568539, -23.389205401554452], + [-44.845401003409265, -23.388776667556154], + [-44.84603937706481, -23.38749972645293], + [-44.84498758876997, -23.386425515001942], + [-44.8453738184973, -23.38522256447], + [-44.84492530756658, -23.384028492686582], + [-44.84464447720969, -23.38357608700009], + [-44.84436364685277, -23.383123680313634], + [-44.843801987139216, -23.382218867940523], + [-44.84292590117294, -23.38136787325591], + [-44.84137126345008, -23.38101634528883], + [-44.840233354055606, -23.380054384082992], + [-44.840288585347054, -23.379264565490978], + [-44.840343817638484, -23.37847474789889], + [-44.84100577818745, -23.37711148169469], + [-44.840928349316066, -23.37568295199397], + [-44.840070619535396, -23.374468735050403], + [-44.83896080596612, -23.373384893711055], + [-44.839255012727754, -23.371953759233122], + [-44.83887409222952, -23.370407387093707], + [-44.84048694710429, -23.370312962672894], + [-44.84403859057665, -23.367002182266503], + [-44.84398191275526, -23.36555605651206], + [-44.845345605095254, -23.365690583748872], + [-44.84671162908887, -23.364871092405025], + [-44.85439981687756, -23.36200815763859], + [-44.857598319426124, -23.361386809589035], + [-44.860095961366454, -23.36055477787476], + [-44.86573988132523, -23.359387259388715], + [-44.86881871526998, -23.359546427054283], + [-44.8708887899117, -23.360165520101607], + [-44.87220503512064, -23.360333765452687], + [-44.87228806814945, -23.36181459816797], + [-44.873765202150544, -23.36242089044488], + [-44.87496031323907, -23.363564062632907], + [-44.87561778091392, -23.364687813932562], + [-44.87693204003148, -23.36522649750804], + [-44.88014818278566, -23.364661201444715], + [-44.881625200476115, -23.365142112643962], + [-44.88314573771016, -23.365361461595214], + [-44.88437196320994, -23.366210992538807], + [-44.88651120082765, -23.36871549156191], + [-44.88578673381854, -23.369998485845624], + [-44.88653588848319, -23.371357565091035], + [-44.88909526457143, -23.372900759656883], + [-44.890509374548934, -23.374011751360495], + [-44.89206583133585, -23.37358324084537], + [-44.89259901904722, -23.372117307852935], + [-44.89271024285078, -23.3706306187317], + [-44.891260505400886, -23.369795091267388], + [-44.88961866915876, -23.367366761252136], + [-44.88898241533629, -23.366146688854066], + [-44.88959763771927, -23.363190616798818], + [-44.89004065077544, -23.362022944173514], + [-44.89126660766439, -23.36101230400416], + [-44.89153775848321, -23.359650314622463], + [-44.889198105030744, -23.357565800270336], + [-44.8888480636579, -23.356017617076276], + [-44.88770581090962, -23.3549169728064], + [-44.8863457981634, -23.35420389022331], + [-44.88528612538328, -23.35294329668409], + [-44.88409213698723, -23.352480567902866], + [-44.88373245955868, -23.349308971755008], + [-44.88384138086469, -23.348026271759082], + [-44.88426764442995, -23.34668847306714], + [-44.88484539613237, -23.345541118172637], + [-44.88795344645871, -23.340957317933846], + [-44.887709356481864, -23.33937855749876], + [-44.88791662931037, -23.3381319483195], + [-44.888071355746824, -23.338033449937317], + [-44.88953713816679, -23.337620225627557], + [-44.89137980834056, -23.338864115521538], + [-44.89273461561649, -23.336972856559115], + [-44.89415557961236, -23.337681300013152], + [-44.89561596405912, -23.33728918572635], + [-44.89856527884685, -23.336816276278608], + [-44.90148902239369, -23.33588799161144], + [-44.90267315626843, -23.33535189781542], + [-44.90709755304838, -23.334684385164316], + [-44.908507143284254, -23.334702780226728], + [-44.90984330384642, -23.33579114408034], + [-44.910826872457775, -23.337120622814815], + [-44.91256444484109, -23.33782832860028], + [-44.91281577328648, -23.339177479877936], + [-44.91209984796066, -23.340315270054262], + [-44.91273568032775, -23.341758140582865], + [-44.91387427490945, -23.342799779819572], + [-44.91501286949164, -23.34384141805576], + [-44.916236113291305, -23.34643434203754], + [-44.917144350770506, -23.347035286492826], + [-44.918013225924746, -23.348381445473663], + [-44.92037520384662, -23.351827453574113], + [-44.922779738204696, -23.354163267922637], + [-44.92415892792605, -23.3552362206687], + [-44.924865077091965, -23.35606774368199], + [-44.92501807767975, -23.356033743341005], + [-44.92522407851272, -23.3560047418918], + [-44.92550707976589, -23.356008742300737], + [-44.925956082001356, -23.356114740422097], + [-44.92635608404401, -23.356229739651546], + [-44.92676108602917, -23.35631273985152], + [-44.92700708736542, -23.35641573939676], + [-44.92737708920679, -23.35650273867241], + [-44.92794409211448, -23.35667073758289], + [-44.92850309512127, -23.356892736542143], + [-44.928969097682206, -23.357099735687516], + [-44.929455100306164, -23.35729673478502], + [-44.92989510244, -23.35737773291008], + [-44.93030710451293, -23.357483733108648], + [-44.93086110719722, -23.357584732006323], + [-44.931320109424384, -23.35766973009369], + [-44.93175911165821, -23.35779273024564], + [-44.93223911396764, -23.357873728286602], + [-44.932674116059616, -23.35794672841714], + [-44.93307111781574, -23.35795172758705], + [-44.93370912051365, -23.35790972622336], + [-44.93417712266104, -23.357946725263247], + [-44.93445512408573, -23.358028723728403], + [-44.93481412586612, -23.358110724023668], + [-44.93541312882732, -23.358243722845366], + [-44.936076132300705, -23.35846972158773], + [-44.93675313579822, -23.358680719291858], + [-44.937372138919244, -23.358842718088514], + [-44.93797314219738, -23.3590997179791], + [-44.9386931462093, -23.359441716670222], + [-44.93926214942144, -23.359728715645545], + [-44.93966815185069, -23.359988713947104], + [-44.940037154390836, -23.360358714391484], + [-44.94048015755925, -23.360850713752527], + [-44.94104116189492, -23.361603713020287], + [-44.94127916385241, -23.361970711737694], + [-44.9414331653691, -23.362308711614318], + [-44.94173316850666, -23.363040712417522], + [-44.94179116961173, -23.363382712498066], + [-44.94181817036428, -23.36363771159231], + [-44.941904171644595, -23.36400071262653], + [-44.94220317416141, -23.3644847122849], + [-44.942442176332634, -23.36493571204976], + [-44.942737178347, -23.365224711601012], + [-44.94293417991114, -23.365505710353474], + [-44.943142181516095, -23.365783711081026], + [-44.94360818427668, -23.366070710271828], + [-44.94404118644962, -23.36617970842654], + [-44.944654189544856, -23.36634170823442], + [-44.9450081912639, -23.366407706529667], + [-44.94512119184976, -23.366443707313515], + [-44.94533019286719, -23.366483706898034], + [-44.94551219390032, -23.366577706571146], + [-44.945714195217896, -23.366750706249], + [-44.945865196425885, -23.366969705061194], + [-44.94599019758443, -23.367214704943315], + [-44.94602319810502, -23.367365705963305], + [-44.94602719823204, -23.367409705980908], + [-44.946106199223415, -23.367668704968064], + [-44.94617620051613, -23.36806470605507], + [-44.94627020166543, -23.368360706032526], + [-44.94626720224941, -23.36860070618067], + [-44.94628320277003, -23.368781706254122], + [-44.94647720440093, -23.36909470603139], + [-44.94650520545204, -23.369467705193077], + [-44.94645720566675, -23.369638706394998], + [-44.94628220557987, -23.369912706924815], + [-44.94617220558945, -23.370110707273106], + [-44.94614720608676, -23.37035470746993], + [-44.94610120656655, -23.37062870772854], + [-44.94613820740093, -23.37089870781046], + [-44.946208208549564, -23.371236707863126], + [-44.946389210439634, -23.37167670774275], + [-44.946522211952164, -23.37204970768364], + [-44.946616213007246, -23.37230770763858], + [-44.946778214428214, -23.372592707466435], + [-44.9469622157194, -23.372786707194386], + [-44.94725821766932, -23.373047705726393], + [-44.94754521987102, -23.373425706346342], + [-44.94774922164341, -23.373777706125548], + [-44.948034224095245, -23.374259705811163], + [-44.94819922607229, -23.374762705761405], + [-44.94838322779186, -23.375128705590775], + [-44.94862222976547, -23.375499704307387], + [-44.94874173096772, -23.37577170421692], + [-44.948861232169875, -23.37604370412626], + [-44.94894223337235, -23.37638370515677], + [-44.948839233390444, -23.37657270548504], + [-44.94865223303203, -23.37675870598821], + [-44.94851223284279, -23.376929706383578], + [-44.94848323315602, -23.37710670654922], + [-44.94834823295883, -23.37726570692698], + [-44.948138232325086, -23.37738170743714], + [-44.94797923174849, -23.37743070780053], + [-44.94793323190496, -23.377574706982372], + [-44.94789873253649, -23.377889207240727], + [-44.947893232563366, -23.37790970726432], + [-44.947837232770596, -23.378091707489684], + [-44.94776123310144, -23.378358707807248], + [-44.947685233666476, -23.378719708180416], + [-44.94767873400771, -23.378868209281876], + [-44.947672234348936, -23.379016709383222], + [-44.947746236402345, -23.3797107086377], + [-44.94784123737517, -23.379933709569656], + [-44.94782923806707, -23.380232709771587], + [-44.94782023861028, -23.380466709928683], + [-44.94782323931581, -23.380744709086635], + [-44.94782724014289, -23.381069710270296], + [-44.94788324118599, -23.381389710341587], + [-44.94807524279185, -23.381695710118514], + [-44.94827824419444, -23.38190070981261], + [-44.94849524580072, -23.38216270951092], + [-44.94874424747032, -23.3823937091236], + [-44.94900624906504, -23.382571707677556], + [-44.949599252266204, -23.382810707571167], + [-44.94983825336882, -23.38283170708072], + [-44.949957254011295, -23.38287970685866], + [-44.95007125479617, -23.382993706686182], + [-44.95017725555103, -23.38310970553167], + [-44.950336256224816, -23.38309970619128], + [-44.95052225680042, -23.383002705742637], + [-44.95079425771414, -23.382889705103597], + [-44.95104425863575, -23.382818703535747], + [-44.951403259966526, -23.38271970372191], + [-44.95171626129456, -23.382700703052052], + [-44.952069262723526, -23.382651702280395], + [-44.95235526369858, -23.38253870161186], + [-44.9527782654027, -23.382476700685196], + [-44.95317626709915, -23.38245569883526], + [-44.9536142691432, -23.382503697941917], + [-44.954027271079866, -23.382552698101687], + [-44.95431027239053, -23.38257969752205], + [-44.9547452745709, -23.382687696670377], + [-44.954837275029995, -23.38270969648966], + [-44.955118276381704, -23.382756695925973], + [-44.95539527768335, -23.382790695363], + [-44.955717279247686, -23.38285069472075], + [-44.956184281523655, -23.382940693790886], + [-44.95657528337118, -23.382992692998513], + [-44.95697228538943, -23.383102692227762], + [-44.957423287881824, -23.38330769139927], + [-44.95784029014513, -23.383480690623458], + [-44.95836129311709, -23.383754689688107], + [-44.95899029663333, -23.384056687541914], + [-44.95954829993241, -23.384396686567545], + [-44.959991302708865, -23.384729685830933], + [-44.960169304266294, -23.385040686639403], + [-44.9601143045733, -23.385260686884845], + [-44.95991730441841, -23.38554568746767], + [-44.95959930357983, -23.385769687269363], + [-44.95932830275331, -23.38591568892595], + [-44.959038302346904, -23.38626368874181], + [-44.95894930236981, -23.386429690027033], + [-44.95888746256556, -23.386617184267738], + [-44.958855302667395, -23.38671468939291], + [-44.95900030406005, -23.387017690266195], + [-44.95929330592595, -23.387249689785847], + [-44.959651308249576, -23.387550689209366], + [-44.96013131107185, -23.3878366873671], + [-44.960591313743876, -23.3880976875521], + [-44.96077381477518, -23.388189687221903], + [-44.9609563158065, -23.388281686891695], + [-44.96121031726675, -23.38841968643797], + [-44.961461318686325, -23.38854668598416], + [-44.96163531985235, -23.388707685712493], + [-44.96164832057048, -23.388972685841278], + [-44.961518320438294, -23.389148686218793], + [-44.961261319476286, -23.389215686799524], + [-44.960963318276704, -23.389259686453137], + [-44.96072431750338, -23.38937068702199], + [-44.96072831805722, -23.389585688140155], + [-44.96100231995963, -23.389865686728058], + [-44.961504322714255, -23.39008568680013], + [-44.961977325144275, -23.390226684886898], + [-44.96254132780211, -23.390298684741097], + [-44.962860329198655, -23.390296684067884], + [-44.96315933047753, -23.39028268342972], + [-44.96329733111625, -23.390295682146654], + [-44.96361733233771, -23.390221682428916], + [-44.9637893328788, -23.390135681015874], + [-44.9642093340829, -23.38987868097965], + [-44.96447533482988, -23.38970967931977], + [-44.964623335270524, -23.389625679958463], + [-44.96479633591334, -23.389578679566334], + [-44.964966336622716, -23.389563679199313], + [-44.96524233803501, -23.389643678664925], + [-44.965680340248646, -23.389759677810243], + [-44.96582584102518, -23.389814677536034], + [-44.9659713418016, -23.389869677261828], + [-44.96625534357087, -23.390078676786356], + [-44.96652934545096, -23.390349676368484], + [-44.96682634736965, -23.390595675887386], + [-44.96713634913585, -23.390757675329418], + [-44.96754235145114, -23.390970673599142], + [-44.9679963540472, -23.391211673783943], + [-44.96882035887277, -23.39169467233138], + [-44.96929736185206, -23.392048670534106], + [-44.96973936472251, -23.392420670821107], + [-44.970217367958426, -23.39287567008096], + [-44.97054637067209, -23.393383669686088], + [-44.97073137247611, -23.39378066852941], + [-44.97086037411906, -23.394211668510877], + [-44.97102237607431, -23.394709669462046], + [-44.97105737718444, -23.39509266961337], + [-44.97098637797135, -23.39553267002172], + [-44.97082337790447, -23.395792670518286], + [-44.970564377440745, -23.396062671223177], + [-44.97025737652128, -23.396234670971566], + [-44.970191376173915, -23.39621167209725], + [-44.96998637482616, -23.39603267142419], + [-44.969776373424054, -23.395840672754087], + [-44.9696473729721, -23.39588667305322], + [-44.96968237358532, -23.396070673087568], + [-44.96957337341855, -23.396195673390906], + [-44.96943737280594, -23.396189672674076], + [-44.96932737226773, -23.39616767289312], + [-44.9692553721586, -23.39625067409366], + [-44.969238372433516, -23.396390674211876], + [-44.969337373577716, -23.39667467417017], + [-44.96936237400725, -23.39680267319276], + [-44.969279373859756, -23.39688967341882], + [-44.969325374581274, -23.39709767444421], + [-44.9695613759604, -23.397234674027132], + [-44.969805377397115, -23.397380673598466], + [-44.97006237883612, -23.3975046731294], + [-44.97038238074172, -23.39770467257223], + [-44.97063238216989, -23.397836671122626], + [-44.97075938277293, -23.39785467186545], + [-44.97088638337586, -23.397872671608095], + [-44.971414385730945, -23.39788667050292], + [-44.97164538695818, -23.397971669065747], + [-44.97196638870834, -23.398107668468644], + [-44.972256390272335, -23.39822366892518], + [-44.97260639234478, -23.398437668312685], + [-44.97280239371055, -23.398639668018006], + [-44.9729573951086, -23.398926667859694], + [-44.97312039646695, -23.399183666666836], + [-44.97334439785088, -23.39934366628834], + [-44.97364339970178, -23.399558666783967], + [-44.97384340128268, -23.399839665527118], + [-44.973947402496684, -23.40014266648573], + [-44.9740774040624, -23.400540666445256], + [-44.974271405382055, -23.40072766614583], + [-44.97452640687991, -23.40087866569651], + [-44.97483040881796, -23.401119665196717], + [-44.97511241061181, -23.401341664732097], + [-44.975396412489445, -23.401593663280824], + [-44.975578413961486, -23.401862664054825], + [-44.9756404148337, -23.40210266406489], + [-44.97575941611635, -23.402406662992316], + [-44.97583041713067, -23.402687664007452], + [-44.97588941806726, -23.40295866404203], + [-44.975947418867015, -23.40317666404771], + [-44.97618142050013, -23.40341866269594], + [-44.97642242220901, -23.40367866333998], + [-44.976623423439754, -23.403817662997355], + [-44.97689442491061, -23.403929662491212], + [-44.97715042616296, -23.403980660980807], + [-44.977583428173205, -23.404023661092264], + [-44.97828743145668, -23.404099659650964], + [-44.97865943324382, -23.404160657901546], + [-44.97877043381401, -23.404193658686577], + [-44.97907643543611, -23.404304658105843], + [-44.97941743717197, -23.404399657441697], + [-44.979775438977576, -23.40449265674053], + [-44.97995143966091, -23.404456655347918], + [-44.98007444004132, -23.40439265605073], + [-44.980155440039695, -23.40424965479585], + [-44.98010643934186, -23.40405665578608], + [-44.97999243820337, -23.4038016548771], + [-44.97979843665334, -23.403522656122924], + [-44.97949043439259, -23.403159656560103], + [-44.979417433244244, -23.402828656519944], + [-44.97941443282108, -23.402664656430066], + [-44.97948543266055, -23.40247565516941], + [-44.97962343281683, -23.402295654772477], + [-44.979788433196866, -23.40215765434319], + [-44.979989433797485, -23.402044653852684], + [-44.98008793405646, -23.401975154604038], + [-44.98018643431546, -23.401905654355286], + [-44.98052743509118, -23.401616652465965], + [-44.980712435166396, -23.401321652902528], + [-44.98090443514741, -23.400976652294876], + [-44.98099043480775, -23.400689651944962], + [-44.981147434932524, -23.400463651481058], + [-44.98136043546831, -23.400303650937637], + [-44.98153193615785, -23.400278150560695], + [-44.98170343684755, -23.40025265018367], + [-44.98203843828921, -23.40024064946959], + [-44.98245044009408, -23.400238648598684], + [-44.98293044215013, -23.400217647573157], + [-44.98332544400027, -23.40026364676627], + [-44.98366044578439, -23.40038864613239], + [-44.9838104466108, -23.400455645854937], + [-44.98396044743722, -23.400522645577585], + [-44.98430544898524, -23.40053564385687], + [-44.98466145055149, -23.40053664310584], + [-44.98480145125267, -23.400571143830508], + [-44.98494145195403, -23.400605642555153], + [-44.98520645339803, -23.400717642061306], + [-44.98546245487768, -23.400859642603958], + [-44.9857104565022, -23.401073642205752], + [-44.98588245763026, -23.401222641929863], + [-44.98607245910268, -23.40147764167805], + [-44.98629346092875, -23.40181964041174], + [-44.986487462488704, -23.402102641167946], + [-44.9867774640227, -23.402206640616445], + [-44.98712146559875, -23.402232639905236], + [-44.98746346698601, -23.40218663915605], + [-44.987798468590064, -23.40223963847955], + [-44.988090469910205, -23.40225463787162], + [-44.98824447045902, -23.402203636516536], + [-44.98835747073775, -23.402116637226946], + [-44.988561471416176, -23.402029636745155], + [-44.988726471918234, -23.40194063634454], + [-44.98977147367142, -23.40080663247335], + [-44.989928474358386, -23.400805632141182], + [-44.99021347550257, -23.40076263151414], + [-44.99048347644327, -23.400664631886368], + [-44.990745477248645, -23.40052663125223], + [-44.99094047773485, -23.40037862975371], + [-44.99118747828428, -23.400164630106705], + [-44.99141847898346, -23.400038629545072], + [-44.991553479508866, -23.40001162924411], + [-44.9917034803402, -23.400080628967608], + [-44.99192148168033, -23.400233628596713], + [-44.99208448262379, -23.40032462830565], + [-44.99247448495949, -23.40057362762751], + [-44.99288848718038, -23.400734626847168], + [-44.99323048900759, -23.400864626200732], + [-44.99357949089795, -23.401007624547113], + [-44.99393049286223, -23.401176624904462], + [-44.99427349493907, -23.401404624313095], + [-44.99469549756303, -23.401712623601618], + [-44.9951985003625, -23.40194862267681], + [-44.995669502861276, -23.40212062178217], + [-44.996115505172774, -23.402261620922165], + [-44.99665550815981, -23.40250761992485], + [-44.99697451005626, -23.40270561936642], + [-44.997264511822884, -23.40290261786876], + [-44.99772451469891, -23.403244618096426], + [-44.998135517056994, -23.40346561635696], + [-44.998735520252524, -23.40368961521963], + [-44.99915652248679, -23.403843615419653], + [-44.99945852434367, -23.40405561490517], + [-44.99979352647823, -23.404320613351835], + [-45.00019352870801, -23.40450961361666], + [-45.00062853104127, -23.40467861179565], + [-45.001095533635436, -23.404895611935093], + [-45.00164653687386, -23.405222609961143], + [-45.002076539360544, -23.405461610191473], + [-45.00247354148949, -23.405615609441895], + [-45.00289054376642, -23.40579360866401], + [-45.00323154592498, -23.406057608097125], + [-45.00357654825142, -23.406381607556646], + [-45.00395255058382, -23.40665360692018], + [-45.004539554193435, -23.407065604919175], + [-45.005153557796426, -23.407427603831866], + [-45.005655560732365, -23.407719602940393], + [-45.00637356494245, -23.408141602667698], + [-45.00667156672575, -23.40833110214788], + [-45.00696956850916, -23.40852060162795], + [-45.007415571301955, -23.40885360087863], + [-45.00766257308823, -23.409133600519343], + [-45.00781357440041, -23.409392600350934], + [-45.00790957549604, -23.40966160030468], + [-45.00790657586134, -23.409812599399054], + [-45.00790357620156, -23.409953600487686], + [-45.007800576055025, -23.410075600776732], + [-45.00773957618561, -23.41023460099853], + [-45.00775157683983, -23.410474601113187], + [-45.00773657780657, -23.410886601385187], + [-45.00762657835863, -23.4112996008589], + [-45.00740157837067, -23.411698602567625], + [-45.007197578535035, -23.412121603245996], + [-45.00716657924361, -23.412458603508238], + [-45.00716958000875, -23.41275860367683], + [-45.00721058072776, -23.412973603715486], + [-45.00724158151061, -23.4132316038004], + [-45.00729858281127, -23.413650603924083], + [-45.0073135836267, -23.413949604066698], + [-45.00734358520996, -23.414528604340926], + [-45.00742258651465, -23.414910604396493], + [-45.007599588395166, -23.415350603278466], + [-45.007875590582614, -23.41573960392118], + [-45.00826459299834, -23.416021603262212], + [-45.00862659539061, -23.41634160168253], + [-45.008889596934395, -23.41649660221623], + [-45.00930259892885, -23.41656860038393], + [-45.00976160084706, -23.416529600389495], + [-45.01024660301227, -23.416543598370897], + [-45.01068960492274, -23.416529598424855], + [-45.011152607008846, -23.416550597456894], + [-45.01143360842602, -23.416623596904515], + [-45.011525608930356, -23.416663596732956], + [-45.01168760974976, -23.416706596415015], + [-45.01175661010788, -23.416728596281786], + [-45.01176361044971, -23.41685259633918], + [-45.01160361048188, -23.417145596848652], + [-45.01134060986609, -23.417360597530816], + [-45.01111060916943, -23.417485598090586], + [-45.010643607941, -23.41781359927056], + [-45.01046060753097, -23.41797059974952], + [-45.01030060725219, -23.418139600186816], + [-45.01010760719198, -23.4184536007784], + [-45.00996760708373, -23.41865560119248], + [-45.00992860707043, -23.418718601311845], + [-45.009891607289184, -23.418870601478726], + [-45.00997060790454, -23.418977600373886], + [-45.01013860902127, -23.41912860110617], + [-45.01039361042972, -23.41924360063325], + [-45.01057461157589, -23.41938359933163], + [-45.01067561262908, -23.419626600259313], + [-45.01075761350604, -23.419832599205805], + [-45.010960615002276, -23.42007359991625], + [-45.01111761610573, -23.42023859867999], + [-45.01128361712846, -23.42035559939663], + [-45.011563618729625, -23.420503598889876], + [-45.01239862470303, -23.421422597656868], + [-45.01264462607717, -23.421539597204], + [-45.012981627770706, -23.42162459653974], + [-45.01319362876584, -23.421650096105516], + [-45.01340562976106, -23.42167559467132], + [-45.01384963165864, -23.421654593718653], + [-45.01428763341927, -23.421589592753044], + [-45.01465963469186, -23.4214455928811], + [-45.01512563627687, -23.421261591786898], + [-45.01567163830096, -23.42111259054352], + [-45.0161046401174, -23.421078589606367], + [-45.016385641346474, -23.42107658900993], + [-45.016791643305275, -23.421146588190542], + [-45.017173645090864, -23.421189587406243], + [-45.017587647155, -23.421287586586164], + [-45.01801264933534, -23.42141258575838], + [-45.01854865211344, -23.42158158472101], + [-45.018859653632354, -23.421642584097512], + [-45.01917665505466, -23.421654582432772], + [-45.01965665699442, -23.42158758137663], + [-45.02007965857579, -23.42147758041631], + [-45.02036365956444, -23.42137458075457], + [-45.02064166041872, -23.42122857908053], + [-45.020771660025574, -23.42084457858169], + [-45.02079265872448, -23.420289579214433], + [-45.020815657131074, -23.419614578773178], + [-45.02072265547016, -23.419115578680064], + [-45.0205826541852, -23.41884857882146], + [-45.020415652701466, -23.418549578001453], + [-45.0203056516587, -23.418326579104768], + [-45.020345651309796, -23.41811757889848], + [-45.020631651885445, -23.41784657813488], + [-45.02100565282977, -23.417568577180756], + [-45.02150165411147, -23.41721157592227], + [-45.02186565514738, -23.416987575020688], + [-45.0221506560949, -23.41686657434646], + [-45.022423656952135, -23.416730573688977], + [-45.02264565778619, -23.41667457318599], + [-45.022789658697036, -23.416785572945347], + [-45.02287265936768, -23.41690757184044], + [-45.02300766011096, -23.416967572589254], + [-45.02321366144457, -23.417138572252114], + [-45.023348662393786, -23.41728057204853], + [-45.02356966336896, -23.417282571581367], + [-45.023742664118444, -23.417278571212425], + [-45.0239566650128, -23.417260570748503], + [-45.02432766621223, -23.41708956986293], + [-45.024745667972, -23.417059568959623], + [-45.025123670015574, -23.417212568247386], + [-45.02531967129022, -23.417377566927815], + [-45.02566367302137, -23.417465566249835], + [-45.02619967541954, -23.417483566124204], + [-45.026666677492194, -23.4174925641396], + [-45.02696667898497, -23.417562564544358], + [-45.027266680668575, -23.417708563993234], + [-45.02774268300915, -23.41780856304229], + [-45.0279826840501, -23.41780356153056], + [-45.028264685014356, -23.417694560869485], + [-45.02860868660219, -23.41772556115821], + [-45.028823687802145, -23.41782755976165], + [-45.02902168847044, -23.417747560295364], + [-45.029255688585984, -23.417384559588598], + [-45.029413688327665, -23.41700555903361], + [-45.029558688331285, -23.41675355857993], + [-45.02972868889168, -23.416679557176483], + [-45.029980690005296, -23.416682556644048], + [-45.03035169173171, -23.41672155688015], + [-45.03067669325612, -23.416760556213664], + [-45.03106569538288, -23.416927554485795], + [-45.03147269781729, -23.417185554772573], + [-45.03189270051724, -23.417526554079842], + [-45.03233970330314, -23.41785455332232], + [-45.03288670672635, -23.418261552398477], + [-45.033403709907425, -23.418624551512625], + [-45.034350716189465, -23.419470548994685], + [-45.03477471928671, -23.41996254938066], + [-45.035027721150975, -23.420262548017984], + [-45.03510372211788, -23.420514549002853], + [-45.03525372344467, -23.42078054883887], + [-45.03550072538827, -23.421122548513132], + [-45.03576072735633, -23.421451547152316], + [-45.035988728874756, -23.421657546788023], + [-45.036184730225216, -23.42185254748518], + [-45.03636873169882, -23.422117547248412], + [-45.03652773315331, -23.42241854608556], + [-45.03671573464963, -23.422685546841397], + [-45.03674873484725, -23.422706546783584], + [-45.03690773597749, -23.422878546545945], + [-45.0370617373875, -23.423170546388377], + [-45.037233738966926, -23.423498546213448], + [-45.03720573990745, -23.423921546518002], + [-45.0367507379856, -23.423951546500884], + [-45.0365297372492, -23.424044547023797], + [-45.03645673718265, -23.42414554823718], + [-45.03633973682247, -23.42420654852085], + [-45.03636073727652, -23.424350548559683], + [-45.03645173833717, -23.424613548519027], + [-45.0365677393517, -23.424814548389374], + [-45.036752740659075, -23.425011547111016], + [-45.0369017417908, -23.425201547904862], + [-45.036913742346314, -23.425401547995325], + [-45.03693974295816, -23.42559954805491], + [-45.03694774320703, -23.42568454708714], + [-45.037151744064865, -23.4256695476456], + [-45.037322744740045, -23.425639546265224], + [-45.037524745478464, -23.425580546802436], + [-45.03793174670444, -23.42535754580939], + [-45.03821474738358, -23.425133545079017], + [-45.03871174885617, -23.42485154286078], + [-45.03910975006511, -23.424637542892135], + [-45.0395147517322, -23.424593542007063], + [-45.04001575448442, -23.424813541071124], + [-45.040198755632105, -23.42495054076199], + [-45.04051675732717, -23.42506954015588], + [-45.040818759002214, -23.425208539595367], + [-45.04098676019987, -23.425391538344655], + [-45.041222761673296, -23.425565538944443], + [-45.04139976324491, -23.42588153875168], + [-45.041386763864445, -23.426150538934998], + [-45.04129476401899, -23.4263725392589], + [-45.04132776474981, -23.426605539323734], + [-45.04140476596806, -23.42695553936294], + [-45.041372766559505, -23.42724653959936], + [-45.041448767974664, -23.427676539686907], + [-45.04165476983474, -23.428056539469534], + [-45.04190077139004, -23.428245539056636], + [-45.042091772261145, -23.428258538658632], + [-45.0424617744211, -23.428471537996238], + [-45.04282577593088, -23.4284365372031], + [-45.04322077752889, -23.42838253633304], + [-45.04349377875996, -23.428395535760853], + [-45.043614779114954, -23.428325535463408], + [-45.04360077867362, -23.428174535405766], + [-45.04374977881451, -23.42797053497131], + [-45.04405577995128, -23.427888534274118], + [-45.04458078208962, -23.427822532121024], + [-45.045045784180935, -23.427842532145032], + [-45.0453427856908, -23.427924531561775], + [-45.045596786986856, -23.42799653106399], + [-45.04578278745844, -23.427859530589682], + [-45.045917787668614, -23.427707530215077], + [-45.046003787419565, -23.4274585298884], + [-45.04599778664594, -23.4271615297294], + [-45.04595878554394, -23.42679152859823], + [-45.045962784935014, -23.426542528445708], + [-45.0458447837278, -23.42626852853769], + [-45.04553678178738, -23.426034530056402], + [-45.04520377947058, -23.42569453056685], + [-45.04482477718339, -23.42544653122815], + [-45.04468577567027, -23.425087531315636], + [-45.0446417749263, -23.424868531282332], + [-45.04443977358451, -23.424687531606438], + [-45.04426377236447, -23.424509531877153], + [-45.044094771300806, -23.42438153116195], + [-45.04386977019516, -23.424334531612395], + [-45.04373676919892, -23.424170532799874], + [-45.043666768813814, -23.424139532930564], + [-45.043406767552, -23.42409153345477], + [-45.04327326683286, -23.424038533707495], + [-45.043139766113654, -23.423985533960202], + [-45.04294076485044, -23.423830534293003], + [-45.04275576392793, -23.423786534660263], + [-45.042749763765734, -23.423732534641708], + [-45.04289076409289, -23.423616533275244], + [-45.04313176502727, -23.423567532735298], + [-45.043446766462466, -23.42358853307879], + [-45.04374476746605, -23.42346753237605], + [-45.04411376866038, -23.42329853049481], + [-45.044330769283214, -23.423167530958402], + [-45.04453076968561, -23.422978530424334], + [-45.04470976987003, -23.422739529906053], + [-45.044980770400294, -23.422477529179115], + [-45.04529977112374, -23.422208528346236], + [-45.045641772101305, -23.42200052749983], + [-45.04598677303163, -23.421768525633134], + [-45.046237773733104, -23.421609525008233], + [-45.04671077513963, -23.421343524850137], + [-45.04713077636381, -23.4210975238161], + [-45.047444777266136, -23.42090852304011], + [-45.047953778832934, -23.420643520806124], + [-45.048330780139935, -23.420505519925786], + [-45.04881178186295, -23.420351518815473], + [-45.04917478323169, -23.42026251799323], + [-45.04971778521151, -23.42010251674769], + [-45.05008678663918, -23.42002651692012], + [-45.0504067879173, -23.41997651621172], + [-45.05090179008134, -23.419973515158826], + [-45.051380792160074, -23.419964513136332], + [-45.05185879434752, -23.42000051314204], + [-45.05205479523382, -23.420011011731823], + [-45.0533543005985, -23.419877508894714], + [-45.053609801676515, -23.41986050934215], + [-45.05392980314818, -23.419887508678034], + [-45.05429480489269, -23.419944506935668], + [-45.05466980673897, -23.420024507185243], + [-45.05515380916648, -23.42014550522697], + [-45.05560381157564, -23.420318505370897], + [-45.05606481401052, -23.4204825034862], + [-45.056618816989186, -23.42070050343506], + [-45.05684181831462, -23.420838503040986], + [-45.05739882165885, -23.421196502064102], + [-45.05763782305708, -23.421335501636538], + [-45.05797082499588, -23.421525501038612], + [-45.05830482704237, -23.42175650046219], + [-45.05855382862793, -23.421952500046118], + [-45.05893083115762, -23.422300499445758], + [-45.059236833247496, -23.42259749896687], + [-45.05938783417917, -23.422704498707663], + [-45.05985083718188, -23.423090497946248], + [-45.060248840073164, -23.42354549636278], + [-45.06056384247719, -23.423951495927398], + [-45.06090784501098, -23.424358495430944], + [-45.061179846979606, -23.42466649603033], + [-45.061525849575155, -23.42509449554157], + [-45.06177885166957, -23.425485494229182], + [-45.06191285333273, -23.42591249419054], + [-45.06202385461808, -23.426229495137267], + [-45.06208185524778, -23.426378495099826], + [-45.06217085596559, -23.42650849498557], + [-45.06227385696146, -23.426724494891115], + [-45.06243285837924, -23.427010494717944], + [-45.06257085995942, -23.42739749364757], + [-45.062663861767994, -23.427953494770303], + [-45.06273786332446, -23.428442494894764], + [-45.062790864761055, -23.428920495057614], + [-45.062726865362045, -23.42927049539544], + [-45.06261686577387, -23.429625494833957], + [-45.06241686605028, -23.430083496523324], + [-45.0622258660159, -23.430402497113327], + [-45.06198486565648, -23.430679497785512], + [-45.0618428650813, -23.4306984980985], + [-45.06156286351524, -23.43056449861661], + [-45.06122186179496, -23.43047549929044], + [-45.06082386007144, -23.430484500141986], + [-45.06046585870472, -23.430565500949882], + [-45.060182857599095, -23.430619501582793], + [-45.05980485616221, -23.430707501437386], + [-45.05956285537241, -23.430815503014177], + [-45.05928385466724, -23.43102150272622], + [-45.059019854120876, -23.43126450442764], + [-45.058719853144616, -23.43139950514336], + [-45.05839585184122, -23.431446505859423], + [-45.05827385176688, -23.431629505224322], + [-45.05823985239858, -23.431939506475434], + [-45.058085852377694, -23.432199506952866], + [-45.057852851886736, -23.432410507570044], + [-45.057742851938116, -23.432622506926272], + [-45.057817853048135, -23.432932507945644], + [-45.057956854272796, -23.4331765077908], + [-45.05818085600396, -23.433473506485786], + [-45.05838985753833, -23.43371850718274], + [-45.05859185904958, -23.433966506896244], + [-45.058894860825156, -23.434143506354012], + [-45.0591608620278, -23.4341575057964], + [-45.05936986277612, -23.43409050531336], + [-45.05967486437157, -23.43419250472357], + [-45.059957865807526, -23.43426950416607], + [-45.060307867373574, -23.434281503428647], + [-45.0606928691916, -23.434332501639286], + [-45.0608938702197, -23.43439050224513], + [-45.06117187161348, -23.43445950169365], + [-45.06154787351543, -23.43455950095159], + [-45.06185287492689, -23.43458850031956], + [-45.06216287626709, -23.43458049865561], + [-45.06238087736472, -23.4346364992241], + [-45.062525878399164, -23.434794499006742], + [-45.06268587957255, -23.43498149777418], + [-45.062813879970406, -23.434916497464382], + [-45.06287087987778, -23.434780497264782], + [-45.062956880078744, -23.434710498041568], + [-45.06301187990922, -23.434547497830582], + [-45.06300687933034, -23.43432649771387], + [-45.06306287931144, -23.434221497534246], + [-45.06316687937714, -23.43406649722365], + [-45.06338288013589, -23.433991495720967], + [-45.063627881238645, -23.43400249620616], + [-45.063933882850876, -23.434109495616845], + [-45.06434288503104, -23.434262493834865], + [-45.06457388639252, -23.434400493422984], + [-45.064713887357094, -23.434539494205257], + [-45.064907888331796, -23.434588493820726], + [-45.065281890247554, -23.43469749308776], + [-45.06540289093597, -23.43475999186633], + [-45.065523891624395, -23.434822492644933], + [-45.06563789241197, -23.434936491467965], + [-45.06569889306286, -23.435088492425766], + [-45.065851894175175, -23.435263492201013], + [-45.066079895435244, -23.435366490775206], + [-45.06627689627445, -23.435356491350234], + [-45.066526897522586, -23.435416490852923], + [-45.066631898126985, -23.43547349066223], + [-45.06678289889544, -23.4355154903651], + [-45.06688889929991, -23.435491490125784], + [-45.06689989922718, -23.43544349007466], + [-45.067026899837366, -23.435464489816574], + [-45.06710890031062, -23.435509489667986], + [-45.06712640037097, -23.435502988627015], + [-45.06726490190263, -23.435869489543315], + [-45.067396903422235, -23.436242488477127], + [-45.06750990530484, -23.436792489553305], + [-45.06763290764485, -23.437506488702596], + [-45.06768290878721, -23.43787248980689], + [-45.06768490971388, -23.43823649001208], + [-45.06770191035089, -23.43845949010433], + [-45.06772591114459, -23.438732490210356], + [-45.06778991233831, -23.439094490282518], + [-45.06779791378069, -23.43965249058666], + [-45.06778691438561, -23.439911490759204], + [-45.067746915299686, -23.44034349009306], + [-45.06771591640954, -23.440837490443293], + [-45.06765791733046, -23.44130349183502], + [-45.06760591836338, -23.441803491233507], + [-45.06757391938828, -23.442265492567604], + [-45.06750192014686, -23.442691492966073], + [-45.06743092079625, -23.44307249333652], + [-45.067361921096385, -23.443311493621056], + [-45.067308921898004, -23.443721492969882], + [-45.06729392263187, -23.444038494184316], + [-45.06721992349276, -23.444508493612382], + [-45.06718042393371, -23.444751994836604], + [-45.06714092437467, -23.444995495060855], + [-45.06704392474863, -23.4453124954498], + [-45.06698292483158, -23.445451494659714], + [-45.06694842499802, -23.445577495805736], + [-45.0669079391351, -23.44570225196369], + [-45.06625492734561, -23.44771449851249], + [-45.065773600860304, -23.449152175365086], + [-45.06572092902607, -23.449309500567782], + [-45.06545392842166, -23.449534501265926], + [-45.06523092869922, -23.450032502027483], + [-45.06511892849776, -23.450147502332136], + [-45.0650709284308, -23.450204501467237], + [-45.06490992841544, -23.450478502967787], + [-45.064800928706475, -23.450783503375494], + [-45.06469892914188, -23.45113350379425], + [-45.06452892899099, -23.451369504292146], + [-45.0644149289473, -23.451550504639076], + [-45.06414292888344, -23.45199850547631], + [-45.063936928985854, -23.452397506144735], + [-45.063726929136315, -23.452822506836732], + [-45.06357992917475, -23.453093507305805], + [-45.063341929222446, -23.453526508062023], + [-45.06313192907006, -23.453831507684896], + [-45.0629279287874, -23.454074508259243], + [-45.06272392850484, -23.45431750983367], + [-45.06241092798348, -23.454655510694877], + [-45.0621319276465, -23.455007511491775], + [-45.061819927184885, -23.455367512363598], + [-45.06159592689007, -23.455640512997824], + [-45.06136292659624, -23.455929513660518], + [-45.06123142637325, -23.45607001402149], + [-45.06109992615026, -23.456210514382466], + [-45.06084892570912, -23.456472515067922], + [-45.06058892520326, -23.456724515766755], + [-45.06035692476725, -23.456955515393936], + [-45.059748923949186, -23.45768951811171], + [-45.05955692374439, -23.457942518666336], + [-45.05939092326125, -23.458040018076], + [-45.05922492277819, -23.458137519485682], + [-45.05810300028352, -23.459101786430548], + [-45.05809451826468, -23.45910907645279], + [-45.058000920056614, -23.459189521698562], + [-45.05790791985245, -23.459270522943232], + [-45.057669919276364, -23.459456522557172], + [-45.05749791885137, -23.45958752399896], + [-45.05717591796426, -23.459796523805185], + [-45.05632891579025, -23.46040952696217], + [-45.05593391468581, -23.460659527947392], + [-45.0558349144994, -23.460758028214972], + [-45.05573591431301, -23.460856528482548], + [-45.05541791354688, -23.461106529303827], + [-45.05514391263827, -23.46122352995472], + [-45.0550539124599, -23.461309530195958], + [-45.05494791230965, -23.46143453049377], + [-45.054604911486436, -23.461705531380453], + [-45.05434591068153, -23.46183753200797], + [-45.05412591003545, -23.46196453254967], + [-45.053901909053714, -23.461965533027136], + [-45.05367890782404, -23.461866532444798], + [-45.053534407099484, -23.461831033731954], + [-45.05350290682863, -23.461778532768847], + [-45.05352190658911, -23.461650533654517], + [-45.0535339061952, -23.461473533526743], + [-45.05346190552053, -23.461331533598173], + [-45.05317990357492, -23.461051534036883], + [-45.05274790099801, -23.46078253480144], + [-45.052736900929446, -23.460774534820214], + [-45.052339898756166, -23.46060453456718], + [-45.052086897460356, -23.4605315360636], + [-45.05167789546393, -23.46045253688865], + [-45.051560894886734, -23.460427536123227], + [-45.05146139435994, -23.46039203731452], + [-45.0513618938332, -23.46035653650581], + [-45.051162892779736, -23.46028553788838], + [-45.050972891735384, -23.460202537244935], + [-45.05057888969645, -23.46008053901303], + [-45.05012288732448, -23.459934539899237], + [-45.04982888562901, -23.459774539432658], + [-45.04971238496317, -23.45971354064529], + [-45.049595884297354, -23.459652540858006], + [-45.049271882702165, -23.459584541508228], + [-45.049014881449324, -23.4595355420269], + [-45.0487208799127, -23.459438542596477], + [-45.04845287805662, -23.459169543011427], + [-45.04823487646563, -23.45891854233034], + [-45.04811387526565, -23.458653543434757], + [-45.0480578744975, -23.458446542434356], + [-45.04801387361066, -23.458171542368998], + [-45.04776287164531, -23.457829543705518], + [-45.04757387011884, -23.457553543948183], + [-45.04745186908352, -23.457355544093403], + [-45.04720986719811, -23.45702954441994], + [-45.04705786600577, -23.456821543623057], + [-45.04689386465729, -23.456572544828074], + [-45.04673086353011, -23.456409545080657], + [-45.04653186217671, -23.456219545394216], + [-45.0461378598757, -23.455993546101784], + [-45.04604585930258, -23.455926546258706], + [-45.045798857619765, -23.455689546647168], + [-45.045599856059646, -23.4554175469132], + [-45.045443854633014, -23.455123547075107], + [-45.045246853091875, -23.454855547339232], + [-45.045156852353614, -23.454719547451965], + [-45.04483885065134, -23.454598548058385], + [-45.044607849583414, -23.45457754853758], + [-45.04440084834117, -23.454445548901504], + [-45.044116846473194, -23.454199549363253], + [-45.04388584449043, -23.453815549632424], + [-45.04381084376513, -23.453658549701178], + [-45.04373584303991, -23.45350154976986], + [-45.04351084080134, -23.453005549961492], + [-45.04332983911901, -23.452653550142813], + [-45.04315683743405, -23.45228655029846], + [-45.0429668359743, -23.452038550558985], + [-45.042606833742425, -23.45178055017525], + [-45.042285832027154, -23.451659551787678], + [-45.04193383028907, -23.45158355249212], + [-45.04177482960557, -23.451589552833585], + [-45.041580829000125, -23.451687552302758], + [-45.0414178285334, -23.451786553706576], + [-45.041079827348085, -23.45190555449401], + [-45.040706825779644, -23.451933555303196], + [-45.04046482458282, -23.451880555786918], + [-45.04018582313764, -23.4517935563297], + [-45.040038822343156, -23.451734555608063], + [-45.03987582157403, -23.451713555942426], + [-45.03951082007592, -23.451755556742548], + [-45.03919181867419, -23.451755557420647], + [-45.03884781706439, -23.451716559129338], + [-45.038646816271815, -23.451752559577397], + [-45.03841881529517, -23.451762560067834], + [-45.03815581399078, -23.45170356059268], + [-45.03784581219277, -23.451530560151387], + [-45.037443810035896, -23.4513755609161], + [-45.037083808164255, -23.45126056161452], + [-45.03674180634154, -23.451133563267852], + [-45.03654830525573, -23.451040063624912], + [-45.03638765322853, -23.450912506892458], + [-45.03587785296887, -23.450507729741364], + [-45.035735800752185, -23.45066956513693], + [-45.03527879888738, -23.45072656614108], + [-45.034972297713004, -23.450795066832022], + [-45.034665796538604, -23.450863567523037], + [-45.03430979539207, -23.45102956837563], + [-45.033990794521486, -23.45124056817576], + [-45.033813794166676, -23.45140856964918], + [-45.03356179368369, -23.45165657032831], + [-45.03337079345115, -23.45189757087378], + [-45.03318979324496, -23.452131571393974], + [-45.03310479326418, -23.452287571664993], + [-45.03316579415175, -23.452533571677996], + [-45.033307795574196, -23.452850571559896], + [-45.03345179687196, -23.453114571406992], + [-45.03356679798174, -23.453354570301652], + [-45.03367879916664, -23.45362957122302], + [-45.03368279996, -23.45393757139299], + [-45.033722800798145, -23.454200571460362], + [-45.03374380172165, -23.45453057160702], + [-45.033795803000565, -23.454947571738064], + [-45.03384580417244, -23.455325571850832], + [-45.03392380519537, -23.45559557184148], + [-45.03396980623888, -23.455929571937244], + [-45.03395080719324, -23.456341572216285], + [-45.03386880777742, -23.45671657260788], + [-45.03371480788396, -23.457027572115447], + [-45.033555808336274, -23.457484573718162], + [-45.0334908087307, -23.457754574012718], + [-45.033525809859576, -23.45814157416252], + [-45.03353981056607, -23.45839757328113], + [-45.03340981053622, -23.45861257468205], + [-45.033316810548065, -23.458779573976464], + [-45.03328981055291, -23.458828574062302], + [-45.03324781084189, -23.459016575260414], + [-45.03309381069643, -23.459227575710067], + [-45.03296581058727, -23.459407576086427], + [-45.032916810953786, -23.45963857532445], + [-45.032878811393985, -23.459879576544836], + [-45.03290281198319, -23.46007157660515], + [-45.03299381313912, -23.460371576585494], + [-45.03303881372246, -23.46052457657854], + [-45.03310481460986, -23.46076157557555], + [-45.03314581544021, -23.46101957663781], + [-45.03305981563408, -23.461246576952203], + [-45.03307781625245, -23.46146057603787], + [-45.03314081721986, -23.46173457706281], + [-45.03317181792321, -23.46195957712724], + [-45.033264818823476, -23.462154577042465], + [-45.03328881927426, -23.462291576070776], + [-45.03319081966488, -23.46261757746807], + [-45.03295381898825, -23.46276257805586], + [-45.03273481827724, -23.462862578579497], + [-45.032493817227696, -23.46286657909414], + [-45.03227481607574, -23.46279157851628], + [-45.03210781527342, -23.462764578855637], + [-45.032045815189825, -23.462839580030902], + [-45.03195881497361, -23.462905580254176], + [-45.0318198145816, -23.462992579600055], + [-45.03163881356148, -23.46290357993327], + [-45.031421812307435, -23.462784581325522], + [-45.03120981125425, -23.46273658174837], + [-45.030913809816624, -23.462682582346282], + [-45.030644808439824, -23.46260558287348], + [-45.03036880705987, -23.46253958242181], + [-45.03000680550334, -23.462553584199405], + [-45.02970880425848, -23.462579584847905], + [-45.02952080327052, -23.462515585210404], + [-45.02916180156333, -23.46246458594383], + [-45.02870779967778, -23.46250858693426], + [-45.028343798145094, -23.462535587723544], + [-45.02821529758004, -23.462535587996634], + [-45.028086797015, -23.462535588269734], + [-45.02793479640444, -23.46255858860615], + [-45.02772079568512, -23.462646589111976], + [-45.02767779573531, -23.462741589258517], + [-45.02770179600202, -23.4628055892445], + [-45.02773479634109, -23.46288258921909], + [-45.02766579630727, -23.462989588427767], + [-45.02760479641437, -23.46313858964381], + [-45.027672797212254, -23.463336589614205], + [-45.027673797894344, -23.463605589768058], + [-45.02760179797061, -23.463761590011572], + [-45.02742479749208, -23.463880590456778], + [-45.02737579778291, -23.464081590677527], + [-45.02732379822936, -23.464349590943463], + [-45.027123797750406, -23.464508591460753], + [-45.026905796920104, -23.464559591953698], + [-45.02662379577299, -23.464596592574456], + [-45.02645579517775, -23.464653592964574], + [-45.026207793933345, -23.464592592456256], + [-45.02605379295628, -23.464473593714505], + [-45.02583979185383, -23.46440959313209], + [-45.025734791324005, -23.464382594339558], + [-45.02528378899269, -23.46424459521793], + [-45.024883786931255, -23.464124595998296], + [-45.024506784910386, -23.463980595715796], + [-45.023736780627, -23.46362459714528], + [-45.023160777552015, -23.46340959924427], + [-45.02281477567767, -23.46326959989803], + [-45.02245077395325, -23.46322060064293], + [-45.022004771956325, -23.463206601582282], + [-45.02168877055377, -23.463201602250724], + [-45.02138776912905, -23.463161602866876], + [-45.02108576750613, -23.46304460344047], + [-45.02078976559975, -23.46280460392979], + [-45.02058776435127, -23.462661604275862], + [-45.0203597630034, -23.462524604680596], + [-45.02003076124907, -23.462402605308483], + [-45.0197467599747, -23.462392605905837], + [-45.019445758781565, -23.462444606575406], + [-45.01907575737562, -23.46253260741239], + [-45.01868075583698, -23.462611607297255], + [-45.018415754754386, -23.462644608879224], + [-45.01819975388728, -23.462677608357108], + [-45.0178297525617, -23.462797610212604], + [-45.017524751459234, -23.462892610915514], + [-45.01720675019122, -23.46294461062108], + [-45.01694374897132, -23.46291961216504], + [-45.016623747571124, -23.462922611846317], + [-45.016340746424355, -23.462961613469965], + [-45.01615774573504, -23.463007613885296], + [-45.015886744822296, -23.463118614525328], + [-45.01571574448278, -23.463282613983775], + [-45.01551474402146, -23.46345061550832], + [-45.01540574401509, -23.46363861584899], + [-45.015207743614646, -23.463825615378287], + [-45.015006742914174, -23.463898616847572], + [-45.01487274266185, -23.464032617210016], + [-45.01487274318793, -23.464241617331513], + [-45.01492574377354, -23.464381617300337], + [-45.01508174508157, -23.464628617112712], + [-45.01518674604709, -23.464828617006066], + [-45.01523474677179, -23.465032617022764], + [-45.01531374739381, -23.465141616918316], + [-45.01542774805652, -23.4652056167135], + [-45.01552474859651, -23.465250616533666], + [-45.01561274911712, -23.465303616377565], + [-45.01558274931744, -23.465435616518093], + [-45.015478749202245, -23.465571616818007], + [-45.015320749018116, -23.465774617271606], + [-45.01534574944282, -23.46589961729123], + [-45.01540774994972, -23.46599261721358], + [-45.01547875048369, -23.466080617113967], + [-45.015600750965035, -23.46605861684203], + [-45.01574075134692, -23.46596561549069], + [-45.01584575150676, -23.465845616197836], + [-45.01601975203568, -23.465751615773687], + [-45.016146752536564, -23.46572861549065], + [-45.01633475331328, -23.465708615079677], + [-45.0165097540959, -23.465713614710978], + [-45.016618754718955, -23.465770614512618], + [-45.01681075583305, -23.465877614167002], + [-45.01706975707583, -23.465918612640657], + [-45.017274757809034, -23.465851612166347], + [-45.01746275835418, -23.465739611702006], + [-45.017755759529905, -23.465694611053515], + [-45.01789876016653, -23.465697611751505], + [-45.01803976091026, -23.465746611480448], + [-45.018152761354564, -23.46572561122816], + [-45.018304761993114, -23.4657136108984], + [-45.018442762585074, -23.465707610601736], + [-45.01861076318815, -23.465653610213568], + [-45.01878876360108, -23.465506609749962], + [-45.01894576405005, -23.465410609360728], + [-45.01916476467104, -23.46527460881654], + [-45.019246764893225, -23.465219607610376], + [-45.01930476489666, -23.465119608429074], + [-45.01936676477152, -23.46496160820554], + [-45.01950376515258, -23.464873607863414], + [-45.01966276608121, -23.464964607578516], + [-45.019817767098026, -23.465097607326502], + [-45.02002276819121, -23.465173605935146], + [-45.02021276897164, -23.465151605518766], + [-45.020477770223, -23.465185605975545], + [-45.0206327710182, -23.465230605672495], + [-45.020872772016, -23.465207605149217], + [-45.02103477282938, -23.465247604828317], + [-45.0212527739999, -23.465331603413894], + [-45.021461774914236, -23.4653296039687], + [-45.02159877564033, -23.465378602706053], + [-45.02179177726504, -23.465686603474936], + [-45.02193577843498, -23.4658996032927], + [-45.022091779592245, -23.46608660306978], + [-45.02235578111366, -23.46622960259187], + [-45.02264578263622, -23.466327602032592], + [-45.0228197832782, -23.46627860063438], + [-45.02292578358838, -23.46621660137315], + [-45.0230897841385, -23.46614860098525], + [-45.023257784975684, -23.466187599650848], + [-45.02347478617208, -23.46628360024549], + [-45.02370478727452, -23.466319599777602], + [-45.02393978839639, -23.466354599298587], + [-45.02426478996705, -23.466410598640426], + [-45.024499791116604, -23.46645659816771], + [-45.024781792392275, -23.466470597576432], + [-45.025155794191114, -23.466531596817088], + [-45.02542179516459, -23.466453596206446], + [-45.025569795498136, -23.466327595818836], + [-45.02585379652566, -23.466239595164193], + [-45.02610479775312, -23.466288594659115], + [-45.02632679897394, -23.466385594243494], + [-45.02659180052764, -23.46653959376963], + [-45.02700780223388, -23.466490592857024], + [-45.027413804170706, -23.466550591028824], + [-45.02773880561031, -23.46655459134028], + [-45.02788180595201, -23.46644059097029], + [-45.027957805928466, -23.466298590726346], + [-45.02809580630102, -23.46620559037901], + [-45.02841580744637, -23.466101588638512], + [-45.02869980885415, -23.466164588071294], + [-45.02902181059048, -23.46629158846046], + [-45.02920081177837, -23.466450588172123], + [-45.02935081271779, -23.466561587917617], + [-45.0294858135383, -23.46665158768279], + [-45.02966881487748, -23.466863586416597], + [-45.029772816146384, -23.467185587382165], + [-45.02977681700071, -23.46751758656614], + [-45.029735817395, -23.467745587785505], + [-45.0296438173634, -23.4678935880669], + [-45.029595817454755, -23.468013587238502], + [-45.02968181837743, -23.468229588180915], + [-45.02980081958893, -23.468502588086064], + [-45.02998382088779, -23.468698587810636], + [-45.030197822083665, -23.468799586414157], + [-45.030430823332836, -23.468888585970316], + [-45.03062682432854, -23.468941586584293], + [-45.030818825089725, -23.468908586156836], + [-45.030923825670115, -23.46895558596088], + [-45.03105582630866, -23.468978584693442], + [-45.03110682618757, -23.468841585505558], + [-45.03108482556149, -23.468631585430657], + [-45.03102082506568, -23.468546585517494], + [-45.03084282386186, -23.46837958579924], + [-45.03077882306872, -23.468176585817655], + [-45.0308748229313, -23.46795458548486], + [-45.0311048236152, -23.46782458492048], + [-45.03142882518888, -23.46788358426572], + [-45.03171782673721, -23.467993583714986], + [-45.03191482761121, -23.46799658329779], + [-45.03210382835916, -23.467963582876692], + [-45.032370829435145, -23.46792458128638], + [-45.032702830912825, -23.46793158158437], + [-45.03302483234406, -23.46793758090312], + [-45.033281833252474, -23.467849580305607], + [-45.0335618341082, -23.46770057962385], + [-45.033776834786494, -23.467594579105153], + [-45.033981835226655, -23.467411578563198], + [-45.0341538352796, -23.467132577035805], + [-45.03443083632384, -23.467063577406748], + [-45.034573836879495, -23.46703457708582], + [-45.034748837369285, -23.46692357664931], + [-45.034932837953974, -23.466834576206452], + [-45.03513483849183, -23.466695575696395], + [-45.035227838593165, -23.466573574427976], + [-45.03545183924279, -23.466440574874575], + [-45.03556683924929, -23.4662425745153], + [-45.03572383931193, -23.465993574037206], + [-45.03594283979839, -23.465804572461995], + [-45.03619184052515, -23.465658572847875], + [-45.0363658412272, -23.465633572463325], + [-45.03648784180395, -23.465649571213184], + [-45.036670842321215, -23.46553557075785], + [-45.03704684357106, -23.465375570865596], + [-45.03733684493692, -23.465411570269556], + [-45.03764384674552, -23.465593569721886], + [-45.037841848143096, -23.46580256942174], + [-45.03802584916386, -23.465886569078894], + [-45.03830385019965, -23.465812568444736], + [-45.03847885098924, -23.465820568077124], + [-45.0386298517565, -23.465861567779665], + [-45.03880885233418, -23.46577856735082], + [-45.03892385229766, -23.465563566981764], + [-45.03916885280496, -23.46533756632987], + [-45.039308853349816, -23.465309565015833], + [-45.03947485431419, -23.46540256471656], + [-45.03964085505659, -23.46540756536631], + [-45.03980685579907, -23.46541256501601], + [-45.04015385691351, -23.465249564183523], + [-45.0404318576717, -23.46506556248572], + [-45.04079585931482, -23.465082562721154], + [-45.04115386128456, -23.465239562050325], + [-45.04160286356113, -23.465359561164426], + [-45.041878864857814, -23.465392560596257], + [-45.04209686536463, -23.465213560028847], + [-45.042169864891086, -23.464898559691427], + [-45.04218286456744, -23.464747558576367], + [-45.042221364576505, -23.464684059457817], + [-45.042259864585596, -23.464620559339174], + [-45.04238186490257, -23.464533559029313], + [-45.042531865398, -23.464468558672486], + [-45.04265186602634, -23.46450855844033], + [-45.04293386742234, -23.464570556876243], + [-45.043321869039694, -23.464535557030374], + [-45.04366787051779, -23.464518556284336], + [-45.04397287195689, -23.464557555657816], + [-45.04433787358654, -23.464567553886916], + [-45.04485887583877, -23.464552553769586], + [-45.045185877528354, -23.464652553131508], + [-45.04551487954718, -23.46487955256259], + [-45.04602788303821, -23.465369551753884], + [-45.04661057776119, -23.465830017779737], + [-45.046847888277455, -23.466017550382933], + [-45.047604893250046, -23.46666954914825], + [-45.04854789904298, -23.467322547517927], + [-45.04908390232775, -23.4676905465893], + [-45.049601905558625, -23.46806854570467], + [-45.04991090773207, -23.46839154523321], + [-45.04999990840093, -23.46850154510716], + [-45.05012390970578, -23.468802544016903], + [-45.05011391009089, -23.46897254513629], + [-45.049985909901814, -23.469120545494373], + [-45.04990991009277, -23.46932854577625], + [-45.05000891109087, -23.46955154569414], + [-45.05005591167356, -23.469700544680055], + [-45.05002691178338, -23.469794545796123], + [-45.05003091204326, -23.469890545842965], + [-45.05004091266785, -23.47012054595446], + [-45.05019791401435, -23.470380545770244], + [-45.05027091455732, -23.470468544665565], + [-45.050367915423024, -23.470642545559443], + [-45.05049591638712, -23.470801545378627], + [-45.05074991791272, -23.47096354393119], + [-45.05078891833657, -23.471063544905867], + [-45.050784918599255, -23.471174544978393], + [-45.05074091868103, -23.471283545135073], + [-45.05088791982459, -23.471480543935737], + [-45.051053920695665, -23.47153654461442], + [-45.05121292128104, -23.471491544249822], + [-45.05120192097007, -23.47138754321324], + [-45.0510599200176, -23.471257543440643], + [-45.05098191939957, -23.471148544543908], + [-45.05101891928455, -23.47103854440158], + [-45.051148919600934, -23.47093754306641], + [-45.05126191990328, -23.470860543781335], + [-45.051376920328046, -23.470828542517975], + [-45.051562921158315, -23.47083354312469], + [-45.05178992207286, -23.4708005426221], + [-45.0519159220485, -23.470571542221688], + [-45.051718920301475, -23.47022254243985], + [-45.05153491864184, -23.469885542637254], + [-45.05146591764427, -23.46961054162548], + [-45.05162391760414, -23.46931954112115], + [-45.05183591770297, -23.468989541479207], + [-45.052005917988176, -23.46880654101152], + [-45.052168918113956, -23.46857254052946], + [-45.05249091900415, -23.468364539723634], + [-45.0528399203638, -23.468295538940556], + [-45.05324292171348, -23.468128537985958], + [-45.05387592414966, -23.46799153555883], + [-45.05444292652547, -23.46794553432467], + [-45.05481992814197, -23.4679295345124], + [-45.05525493026582, -23.468013532634327], + [-45.05560443206309, -23.468117032949493], + [-45.055953933860444, -23.468220532264738], + [-45.05624593544167, -23.46833853171074], + [-45.056575937419645, -23.468547531128234], + [-45.05671393854121, -23.46875153095184], + [-45.05654793826375, -23.468930531408734], + [-45.05631393766465, -23.469100532005186], + [-45.056190937366445, -23.46919653232259], + [-45.0563089384002, -23.46940053218884], + [-45.05653994026152, -23.46973553188985], + [-45.05669594150267, -23.469955531684313], + [-45.05671194186595, -23.470071531717107], + [-45.05675594236996, -23.470194530694233], + [-45.056740942650045, -23.47033153080514], + [-45.05682094344873, -23.470508531736794], + [-45.056987944442795, -23.470611531440348], + [-45.05725094572243, -23.470660530908212], + [-45.05747394658629, -23.470614530406603], + [-45.05774394705315, -23.47032952866698], + [-45.05795594741662, -23.470104528085663], + [-45.05813894793034, -23.46998952862946], + [-45.05825794855434, -23.47002952839899], + [-45.05827894866182, -23.470035528357748], + [-45.058455949219926, -23.469948526930377], + [-45.05871095011323, -23.469858526335187], + [-45.059013951434714, -23.469854526687286], + [-45.05943495352726, -23.469950524845533], + [-45.060002956551415, -23.470159524755537], + [-45.06047295938215, -23.470462523928425], + [-45.060854961727884, -23.47072652326648], + [-45.06127996451515, -23.47109052257024], + [-45.06146596590105, -23.47131552230343], + [-45.061741967978044, -23.471657520912064], + [-45.062080970122196, -23.471916521338674], + [-45.06237097193484, -23.472129520843175], + [-45.062572973120716, -23.472247519480522], + [-45.06286397534203, -23.47262052007489], + [-45.06343497966078, -23.4733365192698], + [-45.06370448180045, -23.473714518912832], + [-45.06397398394019, -23.474092517555817], + [-45.064496987929616, -23.47476151782573], + [-45.06488399112679, -23.475353516341215], + [-45.06511199276839, -23.475606517000596], + [-45.065245993835084, -23.47579551682351], + [-45.06541499532361, -23.47609051663282], + [-45.065494996221226, -23.47630651658648], + [-45.06563799763598, -23.476617516460514], + [-45.065781999153764, -23.476967516354684], + [-45.06605800126688, -23.477323515970895], + [-45.066306003068604, -23.477605014603903], + [-45.06655400487037, -23.477886515236793], + [-45.06700900819513, -23.47841051456773], + [-45.06732901060296, -23.478806514112886], + [-45.06767001327764, -23.479271512652875], + [-45.06791601543878, -23.479698512373595], + [-45.06828301843528, -23.480245512905086], + [-45.068530020686964, -23.480706512643092], + [-45.06872802245263, -23.481060512424225], + [-45.06880202317502, -23.481217512356512], + [-45.06889202392473, -23.48135751224499], + [-45.06904402523288, -23.481610511066062], + [-45.0692200268615, -23.4819485108848], + [-45.06927202777317, -23.48221851092907], + [-45.069230027945245, -23.482359512099766], + [-45.069188028243865, -23.482550512299156], + [-45.06917902859134, -23.482703512406278], + [-45.06912702876762, -23.482863512609203], + [-45.069128029444975, -23.483129512759955], + [-45.06921503049785, -23.483394512726672], + [-45.069269030937555, -23.483474512657388], + [-45.06935073643705, -23.483529980514863], + [-45.069450939049645, -23.48359800634018], + [-45.069828034354956, -23.48385401168252], + [-45.06996003511355, -23.483924511441362], + [-45.070188036340916, -23.48401351100592], + [-45.070315037319205, -23.484179509830337], + [-45.07049503890502, -23.48449350962654], + [-45.07077004131325, -23.484967509311893], + [-45.07099804324679, -23.485335510036652], + [-45.07115604458413, -23.485589509845298], + [-45.0714280478247, -23.48639750972893], + [-45.071594049584526, -23.486804509608373], + [-45.07186405196868, -23.487277509303638], + [-45.07196405307907, -23.487542509242356], + [-45.0720600541516, -23.48779950918503], + [-45.07215605522421, -23.488056509127734], + [-45.0723380574748, -23.488629509068144], + [-45.07247005917659, -23.489072509040778], + [-45.072574060487035, -23.48940950901223], + [-45.07267706217778, -23.489898508073164], + [-45.072713062784246, -23.49007550809785], + [-45.07269506386982, -23.490535509400473], + [-45.072708065056254, -23.490981509628845], + [-45.07270356579354, -23.4912805098101], + [-45.072699066530845, -23.49157950999137], + [-45.072713067691375, -23.492013509210803], + [-45.07270006801666, -23.49216451032516], + [-45.072585284461134, -23.492539364785546], + [-45.07230306955422, -23.49346101191752], + [-45.072297069622834, -23.493498510951866], + [-45.07227507073912, -23.493977512273936], + [-45.072257071277924, -23.494221511452515], + [-45.07217607141303, -23.49441551273679], + [-45.07204707150688, -23.49467651316227], + [-45.07191707169755, -23.494977513612724], + [-45.07180907173415, -23.495179513959403], + [-45.07162207140074, -23.49537251446962], + [-45.07130907084486, -23.49569651532414], + [-45.07120407065923, -23.49580551561106], + [-45.07106007052489, -23.49600251603171], + [-45.071025070677464, -23.49612351617593], + [-45.07102407093393, -23.496226516237307], + [-45.07099107099651, -23.496308516354837], + [-45.0708950706351, -23.49633251657368], + [-45.070663069386875, -23.496242517017492], + [-45.07015806701669, -23.496183518062132], + [-45.069700064622616, -23.496033518954007], + [-45.069242062400804, -23.495951518884905], + [-45.06894706087304, -23.495860519462607], + [-45.068772059791876, -23.495737520765662], + [-45.06858205862214, -23.495605521095534], + [-45.06837905748122, -23.495507521472664], + [-45.06804205589788, -23.495467522169328], + [-45.06778705479662, -23.495475522718348], + [-45.0675300536183, -23.495456522256195], + [-45.06732305264213, -23.495430523683186], + [-45.06717605218035, -23.495503523039023], + [-45.06704905187, -23.495601524366517], + [-45.0667350505953, -23.49564352506109], + [-45.06635404881837, -23.495603525851525], + [-45.06603204710342, -23.495485526471153], + [-45.065704045336815, -23.49535752709775], + [-45.06557004475001, -23.49535852738442], + [-45.065439044186434, -23.495363527666914], + [-45.0653660441034, -23.495457526876862], + [-45.06531904406623, -23.495524527015686], + [-45.0651560435949, -23.495621528419488], + [-45.065208044170475, -23.4957585283873], + [-45.06532504547999, -23.49607252831803], + [-45.06551104674613, -23.496249528022705], + [-45.06572404819445, -23.496451527684115], + [-45.065904049601336, -23.496694526439477], + [-45.06598605051146, -23.496911527389162], + [-45.06597905112374, -23.4971655275502], + [-45.065890051464045, -23.497454527906314], + [-45.06609105316095, -23.497775526661687], + [-45.06635905490946, -23.49800052621884], + [-45.06676905751809, -23.4983185255262], + [-45.06714905976186, -23.498544524844593], + [-45.06743206147015, -23.49872752534546], + [-45.06771706340747, -23.498997524891955], + [-45.06793706511468, -23.499289524589923], + [-45.06817706657559, -23.499449524169304], + [-45.06838806777464, -23.499556522780214], + [-45.0686400693618, -23.49974552335049], + [-45.06888107065745, -23.499838522889245], + [-45.06913407189687, -23.499888522377557], + [-45.06946507378089, -23.500057521767687], + [-45.069734074969105, -23.50005952119422], + [-45.07005207656793, -23.500138519560306], + [-45.070143077401355, -23.500309520464157], + [-45.07027707820869, -23.500395520227332], + [-45.07039707916715, -23.500565520068655], + [-45.07029807923327, -23.500763520393818], + [-45.07041608012723, -23.500911520226733], + [-45.07070608183602, -23.501082519705456], + [-45.070975083335874, -23.501207519202513], + [-45.07147508635852, -23.501532518320914], + [-45.07167208775207, -23.501740517019506], + [-45.07188708925258, -23.5019595176859], + [-45.07201909058838, -23.502257516575014], + [-45.0720560917596, -23.502655517724353], + [-45.0720870927651, -23.502998516855083], + [-45.07222309397909, -23.50324151770394], + [-45.07246709569608, -23.50349551632843], + [-45.072785097718324, -23.503741515790097], + [-45.07295909891706, -23.50391251651637], + [-45.07314410022761, -23.504108516233572], + [-45.073327101334115, -23.504227515910795], + [-45.0735681025742, -23.504298515436503], + [-45.073735103405056, -23.504336515101343], + [-45.07405110501049, -23.504421514474785], + [-45.07426710643451, -23.504608514120473], + [-45.0745491084785, -23.50492551369969], + [-45.07479111002203, -23.50511451229079], + [-45.07499411144982, -23.505325512978025], + [-45.07523111308559, -23.505559512605668], + [-45.07532011378378, -23.505680511484922], + [-45.075390114492194, -23.505838511425917], + [-45.07543911600075, -23.506348512613677], + [-45.0754871181945, -23.507130512959694], + [-45.07520411780154, -23.50746651375745], + [-45.07495811681824, -23.507505513305723], + [-45.0747201159132, -23.507561514846547], + [-45.07459611573791, -23.50770751419538], + [-45.074713116795174, -23.507921515068077], + [-45.07487811848954, -23.5083035149345], + [-45.074989120014955, -23.508712514931833], + [-45.07530212261409, -23.509194514539164], + [-45.07564612474619, -23.5094385129436], + [-45.07602012699249, -23.509675513279948], + [-45.07630912873558, -23.50986151276864], + [-45.0766771311483, -23.5101745121613], + [-45.07705513372936, -23.510536511560506], + [-45.07744313591314, -23.510724509838706], + [-45.078010138638255, -23.5108155096783], + [-45.07844714065717, -23.51085350876546], + [-45.07882314278807, -23.511041508069095], + [-45.07903714459454, -23.511382507806907], + [-45.079251147096066, -23.511997507701665], + [-45.07965015256326, -23.513460507686595], + [-45.0798191558239, -23.51445250789343], + [-45.07984815791548, -23.51522650727499], + [-45.07969015816691, -23.515599508826682], + [-45.07941915673093, -23.515503509351483], + [-45.07900415459799, -23.515382509169907], + [-45.07866615356504, -23.51556150999553], + [-45.078556153771196, -23.51583351038677], + [-45.078742155541214, -23.516208511203818], + [-45.079063158054986, -23.516642509765752], + [-45.07951516166795, -23.517282510165455], + [-45.079647163396025, -23.517734510142017], + [-45.079343163543136, -23.518319511127675], + [-45.07907116306699, -23.518603510872424], + [-45.078970163447444, -23.518928512274748], + [-45.07914016501031, -23.51924951209494], + [-45.079486167870606, -23.519776511656534], + [-45.07990150885453, -23.52023198702873], + [-45.07996217129029, -23.52029851093702], + [-45.08026717306659, -23.520469509382217], + [-45.080331173962556, -23.520711510383922], + [-45.08022317428956, -23.521027510796014], + [-45.080214175194335, -23.521399511028417], + [-45.08034117659614, -23.521731509946743], + [-45.08047117825492, -23.52215950991372], + [-45.080464178957826, -23.52244851109428], + [-45.08041317933265, -23.522684511338618], + [-45.08044967967102, -23.522754511300597], + [-45.0804861800094, -23.522824511262513], + [-45.08074418171873, -23.523050510839774], + [-45.08095418308217, -23.52322351048937], + [-45.08108618443249, -23.523526510380286], + [-45.08113268485936, -23.52361401033093], + [-45.08117918528614, -23.52370151028144], + [-45.081413186798564, -23.523891508889353], + [-45.08159793284405, -23.523983060546342], + [-45.081638188071906, -23.524003009471635], + [-45.08167818828725, -23.524018509394832], + [-45.08179718876278, -23.52399950912923], + [-45.08189418906011, -23.52394850889232], + [-45.08200218950753, -23.523937507654814], + [-45.08207818971501, -23.523887508463517], + [-45.0821046897262, -23.52384600738307], + [-45.08213118973741, -23.523804507302597], + [-45.082246189976956, -23.523699507996227], + [-45.08229918997397, -23.52360650782954], + [-45.08237618952301, -23.523295507486647], + [-45.08255118954398, -23.523000506943152], + [-45.08277718995197, -23.522769505327087], + [-45.0829621905603, -23.522688505884638], + [-45.0830411907023, -23.522607504669114], + [-45.08304619040939, -23.52248350558745], + [-45.08301718997451, -23.522362504580272], + [-45.08298318942621, -23.522205504563264], + [-45.082741187299796, -23.52178750584195], + [-45.082528185725195, -23.521536506154096], + [-45.082294183890575, -23.521219506473525], + [-45.08220318268782, -23.52090350648732], + [-45.08225018227763, -23.52066050624754], + [-45.08230718183529, -23.520387505969264], + [-45.082367181520425, -23.52015950571025], + [-45.0824791817086, -23.520039505401844], + [-45.082487181543165, -23.519960505339526], + [-45.082458180966185, -23.51978350530018], + [-45.08250018046041, -23.519511505054595], + [-45.082617680682866, -23.51939550473667], + [-45.082735180905416, -23.519279503418762], + [-45.08297818190612, -23.51925250388319], + [-45.08317218300342, -23.51934850352297], + [-45.08332818366952, -23.51934050318445], + [-45.08345218422014, -23.51934250292023], + [-45.083613185101186, -23.51941050161451], + [-45.083725185784445, -23.519485502417712], + [-45.08384818603868, -23.519372502089713], + [-45.08373518503374, -23.519172502217174], + [-45.083646184169815, -23.518986501301157], + [-45.08371018426105, -23.518911502121227], + [-45.08386518487694, -23.51888550177456], + [-45.083993185336055, -23.518844501477115], + [-45.08413718565732, -23.51872150109852], + [-45.08433018629319, -23.51863750063729], + [-45.08444518665189, -23.51857949935796], + [-45.08444918624291, -23.518411500253173], + [-45.08435918540263, -23.518236500345647], + [-45.08421218404246, -23.517955500499465], + [-45.084072182563354, -23.517615500604492], + [-45.084098181527644, -23.51716249928954], + [-45.084213181241495, -23.516850499864816], + [-45.08436118120208, -23.516578498392327], + [-45.084560181199194, -23.516232498768336], + [-45.08468318093551, -23.515915498323697], + [-45.084795180349374, -23.515490497840645], + [-45.08481117933073, -23.515061497560882], + [-45.0846801778457, -23.514703497636333], + [-45.08456217654482, -23.514395497712574], + [-45.08448917547745, -23.51410149670051], + [-45.08438817448492, -23.513885497792963], + [-45.084311173290864, -23.513548497764795], + [-45.084353172907086, -23.51332449754662], + [-45.08431717224869, -23.513127497510947], + [-45.08432917138275, -23.512765497278004], + [-45.08446417134711, -23.512517496847135], + [-45.08463417139189, -23.5122404963248], + [-45.08473917114058, -23.51195949493929], + [-45.08475117066803, -23.511752495795136], + [-45.08471116935259, -23.511303495623658], + [-45.0846781682609, -23.510930495480782], + [-45.08464916719441, -23.510560495330942], + [-45.08462516636305, -23.510274494218617], + [-45.0845661652612, -23.509942495154746], + [-45.08461816504578, -23.509767494943304], + [-45.084698164918, -23.50957849466392], + [-45.084808164709116, -23.509305493272358], + [-45.08485116430449, -23.509071494046324], + [-45.084811163486584, -23.508818493987093], + [-45.08468816214895, -23.508504494070493], + [-45.084553160849815, -23.508226494200134], + [-45.084494159814, -23.507920494151154], + [-45.084481659351844, -23.507759994085948], + [-45.08446915888961, -23.507599494020845], + [-45.08447415804652, -23.507258493814923], + [-45.08449715751337, -23.507008492622578], + [-45.084491156786825, -23.5067324934773], + [-45.08446215581452, -23.506399492348635], + [-45.084397154552065, -23.506014492267244], + [-45.08433215358122, -23.505744492251722], + [-45.08427115264587, -23.505481493231613], + [-45.08421615154915, -23.505144493156283], + [-45.08415415053841, -23.50485349312224], + [-45.08406014955945, -23.50463049319561], + [-45.084007148590786, -23.504340493142863], + [-45.08395014790897, -23.50417049216741], + [-45.08380814635118, -23.50380249326033], + [-45.08368414515161, -23.503544493377742], + [-45.08352214368605, -23.50324749255411], + [-45.083261141734454, -23.502930492930673], + [-45.082915139236704, -23.502545494450043], + [-45.08266213729252, -23.50221749480317], + [-45.08249313594332, -23.501978495027576], + [-45.08215213342716, -23.501577495526885], + [-45.08198213168581, -23.50118549566583], + [-45.08187513058902, -23.500938495753065], + [-45.08181012953757, -23.500636494719046], + [-45.081824128825865, -23.500331495514278], + [-45.081846128556194, -23.500186994384467], + [-45.08186812828662, -23.500042495254576], + [-45.081992128002746, -23.49971549380224], + [-45.08210512809649, -23.499556493469566], + [-45.082101127876115, -23.49947649443224], + [-45.08208112749403, -23.499360494408503], + [-45.08204412698158, -23.499222494408563], + [-45.08205512642142, -23.498982494247496], + [-45.082140126321086, -23.498795493958617], + [-45.08247412690226, -23.498445493044056], + [-45.082807127489104, -23.498099492133992], + [-45.08318912859807, -23.49787449118841], + [-45.08375213038859, -23.49760448983017], + [-45.08427413209529, -23.497372487581288], + [-45.084792133921056, -23.497194487371914], + [-45.08501213471702, -23.49712698686292], + [-45.08523213551296, -23.49705948635391], + [-45.085998138327334, -23.4968414845913], + [-45.08704114223997, -23.496576482209377], + [-45.087721144721776, -23.496376480640915], + [-45.08850214755856, -23.496141478836368], + [-45.08939015086806, -23.495907475803413], + [-45.09002315324947, -23.495749474359386], + [-45.09057415526523, -23.495589474089456], + [-45.09104315699924, -23.4954604720126], + [-45.091754159576084, -23.49524447136839], + [-45.092153161271234, -23.495221470501882], + [-45.09248316273151, -23.495225469798324], + [-45.092893164426705, -23.495183468897324], + [-45.09326216573877, -23.495061468038312], + [-45.09352416664154, -23.49496346642182], + [-45.09386116783832, -23.494851465637012], + [-45.094225169415004, -23.4948424658532], + [-45.094695171406684, -23.494813464831196], + [-45.09512717334048, -23.494827462915065], + [-45.09567417576935, -23.49483746275049], + [-45.096096177712404, -23.49487246086773], + [-45.09639917918331, -23.494927461250917], + [-45.096777181118206, -23.495035460503868], + [-45.096901681783194, -23.495081960264073], + [-45.0970261824482, -23.4951284600242], + [-45.09704168258357, -23.49515496000623], + [-45.09705718271886, -23.495181459988185], + [-45.09703418287401, -23.495282460095105], + [-45.097053183538556, -23.495511460185305], + [-45.09718218503144, -23.495876460117696], + [-45.09735318675713, -23.4962604599712], + [-45.09753318818483, -23.49651145972941], + [-45.09773918993758, -23.496845459479363], + [-45.09798619164461, -23.497090459090753], + [-45.0982271930867, -23.49724145866123], + [-45.09848919440289, -23.497306457137718], + [-45.09869619537337, -23.497330457708337], + [-45.0987581955214, -23.497281456547626], + [-45.098982196353454, -23.497221457034083], + [-45.099284197779326, -23.49726045541005], + [-45.099549199387845, -23.49743545594278], + [-45.09976520092828, -23.49766845561345], + [-45.09996420205144, -23.497766455243475], + [-45.100122202705, -23.497750454896153], + [-45.10031120374872, -23.497834454539525], + [-45.10041220480412, -23.49807545446096], + [-45.100551205770266, -23.49821545424338], + [-45.100743207118995, -23.498414453945923], + [-45.100921208563605, -23.498675452713897], + [-45.10101220946865, -23.498874453632617], + [-45.10110521029354, -23.49903845252718], + [-45.1012412110688, -23.499108453276026], + [-45.101522212595505, -23.49922345274012], + [-45.10178721439954, -23.499475452316595], + [-45.10184421538375, -23.49976445235949], + [-45.10184721602908, -23.500013452495164], + [-45.101960217094216, -23.50023745238102], + [-45.10223821875498, -23.500410450884555], + [-45.10254222053512, -23.500585451333503], + [-45.102818222039865, -23.5007004508082], + [-45.103085223334936, -23.500748449263828], + [-45.10316922353645, -23.500682449046405], + [-45.10326722370049, -23.500577449776568], + [-45.1033452237182, -23.50044944953654], + [-45.103296222880864, -23.500204449501755], + [-45.103209221939984, -23.49998444856253], + [-45.1032372214943, -23.499760448374836], + [-45.103270221083264, -23.49954144917917], + [-45.103255220722836, -23.499425449145182], + [-45.1031412196127, -23.499185449252316], + [-45.10290421792137, -23.49892944961372], + [-45.10270421669227, -23.49879144896312], + [-45.102488215517326, -23.498702449374775], + [-45.10232621446023, -23.49856644964403], + [-45.102162213389356, -23.49842844991632], + [-45.10202521228992, -23.49823245109781], + [-45.101823211024154, -23.498083451445126], + [-45.10165920982384, -23.497894451688442], + [-45.101542208939186, -23.497748451855475], + [-45.10146820802518, -23.49751645188154], + [-45.10143820724868, -23.497262451800843], + [-45.10138820645785, -23.497037451779406], + [-45.101341205365586, -23.496688451680814], + [-45.101352204891086, -23.496482451539695], + [-45.10136320441661, -23.496276451398604], + [-45.10137020368593, -23.495976450212428], + [-45.1013882031838, -23.495747451043194], + [-45.10146720289901, -23.495498450731905], + [-45.10150220266444, -23.495345449569808], + [-45.101605202693115, -23.49517845025399], + [-45.101710203108695, -23.49516045001891], + [-45.10190320381709, -23.495105449574524], + [-45.10194420330176, -23.49483144933038], + [-45.10205620314414, -23.494575448944513], + [-45.102165203282865, -23.494441448634856], + [-45.1022922036378, -23.494361448317328], + [-45.102316203492016, -23.494262447209447], + [-45.10224220289287, -23.49415444730623], + [-45.10212420184656, -23.493946448440106], + [-45.10197420063197, -23.49372744863618], + [-45.10183719920536, -23.493402448743822], + [-45.10173019818471, -23.49318544784904], + [-45.101616197107894, -23.492958447963392], + [-45.10150319612685, -23.49276744909621], + [-45.10158669600272, -23.492573947807067], + [-45.101732196455345, -23.49250044845369], + [-45.10224119806449, -23.49225344722347], + [-45.10265619931899, -23.49202944620753], + [-45.10310220073254, -23.491814445130412], + [-45.10353120212965, -23.491622444102667], + [-45.10388220334656, -23.491494442278416], + [-45.10415020418868, -23.49136244162963], + [-45.10440520519709, -23.491318442058763], + [-45.10483820707347, -23.49130844112627], + [-45.10509520817436, -23.49129744056992], + [-45.1051997086321, -23.491296940346025], + [-45.10530420908973, -23.491296440122014], + [-45.10541820966151, -23.491324439893997], + [-45.10543620999442, -23.491424439912475], + [-45.10543121064238, -23.491688440073755], + [-45.10545621141199, -23.491948440168557], + [-45.10550021207984, -23.492135440181034], + [-45.10555521299155, -23.492399440213873], + [-45.10559821367534, -23.492594440232978], + [-45.10562121424333, -23.492778439288646], + [-45.105729215293884, -23.49300543918695], + [-45.10575521568215, -23.493113440192914], + [-45.10569921554276, -23.49315544033667], + [-45.10570021592789, -23.493305440420144], + [-45.10572421626179, -23.49339544042007], + [-45.10559121595173, -23.49350344076635], + [-45.10549321588168, -23.49364544105713], + [-45.10549021726966, -23.49419744037836], + [-45.10555721813513, -23.494422440363216], + [-45.10562721869384, -23.49452144126982], + [-45.1057752197908, -23.49469744105334], + [-45.105807220294345, -23.49484044106639], + [-45.105760220895164, -23.495158441348284], + [-45.105808221651785, -23.49537344136812], + [-45.106137224026085, -23.495739440872416], + [-45.10652622653462, -23.49605444021918], + [-45.106954229115416, -23.496330439460024], + [-45.10714023023715, -23.49645043813021], + [-45.10724223070301, -23.49645743891576], + [-45.10728823116658, -23.496560437875935], + [-45.107365232045616, -23.496773438832527], + [-45.10760323347457, -23.496924438408897], + [-45.107762234325385, -23.496984438102615], + [-45.107904235035406, -23.49701843781797], + [-45.10796123549402, -23.497100436742603], + [-45.10801823595263, -23.497182437667288], + [-45.10836023861541, -23.497639436195282], + [-45.108618240297304, -23.497855436765864], + [-45.1091072432835, -23.498185435906606], + [-45.10960124582432, -23.498331434931632], + [-45.110135249234176, -23.49875043402657], + [-45.11043125104748, -23.498952433507604], + [-45.111018254609014, -23.499339432470624], + [-45.111284255962886, -23.499412431942275], + [-45.11175025820548, -23.499489429987864], + [-45.11201725918784, -23.499414430373076], + [-45.11240026102004, -23.49947342958623], + [-45.1126852623176, -23.49949142898583], + [-45.113019264343635, -23.49971142739549], + [-45.11342726646353, -23.499840427594737], + [-45.11378426815862, -23.499890425858226], + [-45.11408126963852, -23.499959425261146], + [-45.11433327138317, -23.500210424863983], + [-45.114557273165, -23.500524424562723], + [-45.1148172747364, -23.5006934251017], + [-45.115095275957565, -23.50069342450594], + [-45.11531927709128, -23.50075242405947], + [-45.115657279170534, -23.500986423468248], + [-45.11593528072208, -23.501116422946435], + [-45.11617728215358, -23.50126142251026], + [-45.11632328301333, -23.501347422246287], + [-45.11661428506414, -23.501651420795525], + [-45.11671528635668, -23.501985420768957], + [-45.11682028780406, -23.50237342176464], + [-45.117026289636684, -23.502738421530676], + [-45.1174112919378, -23.502978419841952], + [-45.11764829325343, -23.503086420395295], + [-45.118081295554404, -23.503243419556274], + [-45.118534297467896, -23.503213418568173], + [-45.11894929893736, -23.503074417599407], + [-45.119200299790656, -23.502976416005538], + [-45.11938630044491, -23.50291241557043], + [-45.11961330152579, -23.5029454161025], + [-45.11985430290215, -23.50307041465689], + [-45.12016030468591, -23.503243415099064], + [-45.12049530641408, -23.503344414438306], + [-45.120642807126785, -23.50336991413651], + [-45.120790307839485, -23.503395413834728], + [-45.1210523091453, -23.50345641330757], + [-45.12139931101011, -23.503590412639713], + [-45.12177731339493, -23.503875410991068], + [-45.12199931513292, -23.504175411685498], + [-45.122014315770976, -23.504400411781113], + [-45.12189231577168, -23.504611412162582], + [-45.1219083162412, -23.504768412217498], + [-45.12195931651101, -23.504786412118335], + [-45.122100317260035, -23.50483741184498], + [-45.12239731874758, -23.504909411248864], + [-45.12255631981725, -23.505055410990884], + [-45.12260232039314, -23.50520241097564], + [-45.12266732112624, -23.505378410936313], + [-45.12270932183208, -23.505583410962675], + [-45.12262832211986, -23.50583641028008], + [-45.122451321769645, -23.50600441175519], + [-45.12222732144961, -23.506265411383886], + [-45.1219623213259, -23.50667441318461], + [-45.12176432124979, -23.506986412786485], + [-45.12150532073268, -23.50723041348055], + [-45.121314320476145, -23.50745941402033], + [-45.12117532003347, -23.507525414355907], + [-45.12103631959063, -23.50759141469159], + [-45.120701318088614, -23.507579416403228], + [-45.1204823167756, -23.50744141679451], + [-45.12008131428664, -23.50715541749192], + [-45.11946531132633, -23.50705541775616], + [-45.118926309121385, -23.50711941894833], + [-45.11860130793008, -23.507212419698185], + [-45.118312026851925, -23.507288202361405], + [-45.11780730497091, -23.507420422518937], + [-45.117450303491495, -23.507455422304275], + [-45.11708530175829, -23.507404424057867], + [-45.11668230000563, -23.507411423925934], + [-45.116270298470184, -23.50751942587066], + [-45.11587929649553, -23.507418426651487], + [-45.11548729471734, -23.507396427479417], + [-45.11535229454882, -23.507563427863804], + [-45.11528829500744, -23.50785442816659], + [-45.11505329461575, -23.50810642881372], + [-45.11455429364113, -23.508585429156156], + [-45.11399729226658, -23.509007431590295], + [-45.113514290952786, -23.509325431806747], + [-45.11294128949006, -23.509740434271286], + [-45.1122992874672, -23.510054435826326], + [-45.112110251827595, -23.51012959427433], + [-45.1117182855013, -23.51028543720322], + [-45.11110728305264, -23.510378438565937], + [-45.110820281310964, -23.510189439073518], + [-45.11068028037793, -23.5100644393024], + [-45.110546279214574, -23.50983843946097], + [-45.11043427808437, -23.5095874395581], + [-45.110274276966834, -23.509424439808242], + [-45.10991127538937, -23.50943144059018], + [-45.10974927497992, -23.50955044000517], + [-45.10927827336757, -23.509730441117092], + [-45.10908477261892, -23.509770442554604], + [-45.108891271870185, -23.509810442992137], + [-45.10814226859115, -23.509815444600108], + [-45.10771926681597, -23.509848445525463], + [-45.107367265195144, -23.509819445263187], + [-45.106977263590416, -23.509862447123414], + [-45.1066482624036, -23.509964447886617], + [-45.10652926224656, -23.510108448223615], + [-45.106281261639396, -23.51029844886341], + [-45.106123261427776, -23.510488449310138], + [-45.10614326210789, -23.510721448400094], + [-45.10621126307766, -23.51098544940485], + [-45.10620126346065, -23.51115344952205], + [-45.10612126343946, -23.511283448767582], + [-45.10581626347632, -23.511825449730104], + [-45.10576026368771, -23.512005449952653], + [-45.10580326490101, -23.512408450090227], + [-45.10632326822373, -23.512816449208287], + [-45.10666627024233, -23.513017448587753], + [-45.10692627160638, -23.51310444908011], + [-45.107172272784325, -23.513142448574538], + [-45.10733327385298, -23.513284448310312], + [-45.10763327584029, -23.513547447817224], + [-45.107825276768125, -23.513580446424463], + [-45.108146278095234, -23.513547446717656], + [-45.108536279712816, -23.513509445860002], + [-45.10872428074775, -23.513591445503753], + [-45.1088812820276, -23.513823445299277], + [-45.109032283420994, -23.51411044513907], + [-45.10912428467714, -23.514445445132644], + [-45.10913228599892, -23.514951445403714], + [-45.10900328706174, -23.515592446045336], + [-45.10887728784035, -23.516116446613808], + [-45.10875328797163, -23.516382447031223], + [-45.10851628762909, -23.516657447695884], + [-45.10820228663773, -23.51681044845626], + [-45.1078812852648, -23.516825448153], + [-45.10763428384327, -23.51669344960731], + [-45.10732628237218, -23.51664745024139], + [-45.107104281083586, -23.51652445064716], + [-45.10693627975765, -23.516293450875757], + [-45.10653327770117, -23.51618145167577], + [-45.106194276856634, -23.516435452547128], + [-45.10583627560304, -23.516561453386334], + [-45.10571327516146, -23.51660045267225], + [-45.10557927528169, -23.51687945411847], + [-45.10539027514482, -23.51715245467911], + [-45.10543727601766, -23.517414454727685], + [-45.10570327798031, -23.51772645333536], + [-45.10607628023309, -23.517967453673098], + [-45.106337281772184, -23.51812145320137], + [-45.10691928505828, -23.518407452116563], + [-45.10721128698546, -23.51866045163466], + [-45.10735628846219, -23.518990451511804], + [-45.107124288105794, -23.519251452157906], + [-45.10666128644403, -23.519398453234327], + [-45.10625628498371, -23.51952445317433], + [-45.106035284856276, -23.519856454837335], + [-45.10597028578864, -23.52033545424964], + [-45.10594228657341, -23.520692455513142], + [-45.10597228751153, -23.521009454629386], + [-45.10612128976642, -23.521638455668405], + [-45.10616729101657, -23.522050455804482], + [-45.10589329078845, -23.52243445661076], + [-45.105612290397126, -23.522766456402387], + [-45.10551929102848, -23.523175456834924], + [-45.10558129253221, -23.523659457977768], + [-45.105464293152146, -23.52410545848272], + [-45.10528529318404, -23.52442745905005], + [-45.10515929355579, -23.52479145852766], + [-45.1049712934464, -23.525073460091473], + [-45.10459329248344, -23.525348461058755], + [-45.104364292175795, -23.525623461706566], + [-45.104349293063734, -23.525998461952472], + [-45.1043492940813, -23.52639846218041], + [-45.10459529605624, -23.526749461852884], + [-45.105002298085424, -23.526843460033678], + [-45.10537629979911, -23.52687046024689], + [-45.10577630171111, -23.5269304584232], + [-45.106092303541075, -23.527103458844042], + [-45.1067833074911, -23.52746145756593], + [-45.10711530883935, -23.527417456828726], + [-45.107444310393255, -23.527459456146957], + [-45.10764431145865, -23.527532455759538], + [-45.10791531261485, -23.527518454170146], + [-45.108178313901306, -23.527569454635056], + [-45.10846431555355, -23.527724454109855], + [-45.10883031750166, -23.5278574524004], + [-45.10921731958039, -23.528005452654398], + [-45.109899323312796, -23.528293451355182], + [-45.11023632512067, -23.528421449705025], + [-45.11064532734702, -23.528589449923054], + [-45.1111563300016, -23.52874944891765], + [-45.1118313330948, -23.528798447497177], + [-45.11221733459118, -23.528719446623878], + [-45.112446335094226, -23.528521446019788], + [-45.11253233473162, -23.528230445669674], + [-45.11247133343239, -23.52782544557024], + [-45.11230933185453, -23.527485445724338], + [-45.1121823304255, -23.52714344580231], + [-45.11221932984754, -23.526852445557346], + [-45.11209932845945, -23.52651444562252], + [-45.11198132702683, -23.5261554456714], + [-45.11199632623761, -23.525819445448032], + [-45.112047325874, -23.525588445207255], + [-45.11210732536156, -23.52528344490497], + [-45.11207532474994, -23.525098444868306], + [-45.11190632336812, -23.52484744508808], + [-45.11182732245316, -23.524624445130694], + [-45.11164332072804, -23.524264445320537], + [-45.11137231838111, -23.523810445643534], + [-45.11112231602739, -23.52331744589923], + [-45.111034314940746, -23.523042445931537], + [-45.11116131503861, -23.522861445556057], + [-45.11133631552052, -23.522748445116342], + [-45.11169331665246, -23.522576444252646], + [-45.111934317190475, -23.522371443619097], + [-45.11219631781565, -23.522164442939253], + [-45.11245231865101, -23.522050442325273], + [-45.112852320038144, -23.521904441384038], + [-45.11308232103396, -23.521898440887277], + [-45.113385322279555, -23.521864439217953], + [-45.1137463237216, -23.521807439411074], + [-45.11415132534432, -23.52174543850695], + [-45.114556327109504, -23.5217394376346], + [-45.11500632926073, -23.521807436707846], + [-45.1153173309511, -23.521934435112733], + [-45.11555933222621, -23.522017435640752], + [-45.116138335598734, -23.522342433583276], + [-45.11647433772487, -23.522597434007206], + [-45.11675833964781, -23.522862433548443], + [-45.117022341238545, -23.52303143307792], + [-45.11725634257011, -23.523150431643497], + [-45.11760034459406, -23.52335143101943], + [-45.117988346841884, -23.52356443130782], + [-45.11849834955227, -23.52374843031786], + [-45.118891351389344, -23.52379142949882], + [-45.11921435249095, -23.523666427734486], + [-45.11945335302723, -23.52346442710672], + [-45.11964735366875, -23.523381427643212], + [-45.11986435463526, -23.523386427180252], + [-45.12006435551443, -23.52338642675098], + [-45.12012585561291, -23.523318926580636], + [-45.12018735571141, -23.523251426410294], + [-45.1202373553583, -23.52302642617509], + [-45.12029035501331, -23.522799425932448], + [-45.12051335536207, -23.522551425312916], + [-45.120589855340626, -23.52241092506891], + [-45.120666355319095, -23.5222704238248], + [-45.120610354469534, -23.522033424810395], + [-45.12051735313153, -23.521668424802787], + [-45.12042735186021, -23.521324423800476], + [-45.120426351048806, -23.521007424622532], + [-45.12037735016649, -23.520745424578863], + [-45.12024734913435, -23.52056442475505], + [-45.12003134711073, -23.52014242497886], + [-45.12010934643023, -23.51974042458304], + [-45.12025634604547, -23.519335424037532], + [-45.12056634615045, -23.518841423091608], + [-45.12078734640122, -23.518558421456607], + [-45.121131347493055, -23.518393421624587], + [-45.121572349033976, -23.518237420589564], + [-45.12185734980025, -23.518046419869542], + [-45.12231135105969, -23.51775741873105], + [-45.12250935177452, -23.517696418271406], + [-45.12288405838462, -23.517682084459132], + [-45.12342435570613, -23.51766141628778], + [-45.1238223570706, -23.51751041534784], + [-45.12423935880623, -23.517472414431193], + [-45.12471136104057, -23.517535413453828], + [-45.12504736241254, -23.517494412709407], + [-45.12537636337447, -23.517304411895363], + [-45.125627364085226, -23.51715041126913], + [-45.12604036553067, -23.51700540930039], + [-45.126452366724706, -23.516763409278617], + [-45.1268093676873, -23.516525408377152], + [-45.12715536843339, -23.516221407462016], + [-45.12740236863253, -23.515873406734304], + [-45.12764836897495, -23.515583405041706], + [-45.12788736927901, -23.515290404362435], + [-45.1279993690148, -23.514993404953447], + [-45.128086368442276, -23.514618403554028], + [-45.12817136811556, -23.514343404215644], + [-45.12831236823854, -23.514148403802302], + [-45.12856336891852, -23.513982403169287], + [-45.12876036961331, -23.513915402708445], + [-45.128943370409594, -23.51391240231392], + [-45.129127371144044, -23.513883401902483], + [-45.12935037231967, -23.51396040146742], + [-45.12960637325066, -23.513884400874744], + [-45.129760373402675, -23.513678400427334], + [-45.12992137386292, -23.51358139902667], + [-45.130069374294045, -23.51349539966015], + [-45.13016137362877, -23.51307539922448], + [-45.13016937299692, -23.51281339905882], + [-45.13031037298478, -23.512565398615504], + [-45.13035237274917, -23.512400398431737], + [-45.13049937293914, -23.51222139801468], + [-45.13063037335166, -23.51215739769713], + [-45.130801373700415, -23.51199939724053], + [-45.13096837398079, -23.51182139678101], + [-45.13121737474598, -23.511692395173426], + [-45.13145737557854, -23.51160539560886], + [-45.13180237682649, -23.511500394808706], + [-45.13201637763392, -23.511448394319753], + [-45.13226537898211, -23.51154839384188], + [-45.132606380851485, -23.511694393192524], + [-45.13315738410154, -23.51202039219425], + [-45.13334938544131, -23.51221539189257], + [-45.13345938645414, -23.512423391774213], + [-45.13353938741916, -23.51266439173897], + [-45.13379538900193, -23.512844391291303], + [-45.13399639013685, -23.51294339091573], + [-45.13410939107621, -23.513117390771672], + [-45.13436039281017, -23.513365390373178], + [-45.134737395245295, -23.51367138873695], + [-45.13498039679906, -23.513862389323297], + [-45.135268398089444, -23.513872387710467], + [-45.135493399485114, -23.51403238731786], + [-45.13565640077412, -23.514257387095178], + [-45.135818401587485, -23.514297387769922], + [-45.13610340290036, -23.51432138717141], + [-45.1362374036519, -23.514385386919816], + [-45.13642040427988, -23.51431638648767], + [-45.13654640440268, -23.514147385121376], + [-45.136655404175734, -23.513870385730424], + [-45.13686840422219, -23.513521385075297], + [-45.13703340483216, -23.513476384695423], + [-45.13722540543079, -23.51338038322873], + [-45.13724340490364, -23.513142384055254], + [-45.137144403707254, -23.512843384098634], + [-45.137058402906746, -23.512677384189388], + [-45.13705840195921, -23.512305383978696], + [-45.137050401149814, -23.51200138382372], + [-45.13706040071227, -23.511812383695215], + [-45.137158400910856, -23.511721383433226], + [-45.13726840103729, -23.511581383117683], + [-45.13728240079567, -23.511462383020273], + [-45.13711439998157, -23.511432383364074], + [-45.136996399473595, -23.511436383619735], + [-45.13689939898649, -23.51141238381443], + [-45.136800398307315, -23.511316383972726], + [-45.13674239761448, -23.51114438399987], + [-45.136621396810646, -23.51103738319915], + [-45.136440395929284, -23.511003384568617], + [-45.13626239484968, -23.510886384884614], + [-45.13604139371114, -23.510820385321768], + [-45.135666392148394, -23.510853386145683], + [-45.13523739035355, -23.510888387086762], + [-45.13487238892649, -23.510957387909535], + [-45.134564387410826, -23.510893388534654], + [-45.13446038673015, -23.5108053887081], + [-45.134109384758304, -23.510636389366034], + [-45.13377538308275, -23.510554390036656], + [-45.133408381499045, -23.510565389830848], + [-45.13311637996972, -23.510468391402753], + [-45.13297137883908, -23.510274390604124], + [-45.13294737847641, -23.51017339159839], + [-45.13292337811394, -23.510072390592672], + [-45.13280137688313, -23.50979939069982], + [-45.13282437641891, -23.50957739152464], + [-45.132826375511186, -23.509217391316362], + [-45.1328413734769, -23.508392390816518], + [-45.13284437197541, -23.50779738947288], + [-45.13279637126319, -23.507600390464205], + [-45.132846871273586, -23.507517390308752], + [-45.132897371284066, -23.50743438915327], + [-45.13294837092003, -23.507203389912846], + [-45.13300187081004, -23.507067889721284], + [-45.13306788576267, -23.506935386504434], + [-45.133211370659616, -23.5066473880332], + [-45.13339237057364, -23.506301388448655], + [-45.133651370702914, -23.505905386668292], + [-45.13391937086663, -23.50550738686751], + [-45.134148371149145, -23.505223386215], + [-45.134388371533404, -23.504960384550802], + [-45.13472137205878, -23.50459238462751], + [-45.134996372726526, -23.504380383917177], + [-45.13513237299651, -23.50425188355238], + [-45.13526837326656, -23.504123382187675], + [-45.13536237348195, -23.50404588294199], + [-45.13547125478496, -23.50397714866934], + [-45.13562137420286, -23.50388238229347], + [-45.1357863747083, -23.503796381890563], + [-45.13628037637048, -23.503597380717405], + [-45.13666537779077, -23.50349137983095], + [-45.137306380052316, -23.503274378332044], + [-45.13757388101277, -23.5031903777102], + [-45.13793395235705, -23.5030975598847], + [-45.138458384315015, -23.50296237568223], + [-45.138832385607984, -23.502825374801787], + [-45.139110386716176, -23.502781374180024], + [-45.13951638837354, -23.502732372280665], + [-45.13981938960936, -23.50269537260916], + [-45.140257391246756, -23.50258337160533], + [-45.1406843933679, -23.502680370743445], + [-45.140943394710966, -23.50276137023322], + [-45.1411463958795, -23.502870369858982], + [-45.141252396790314, -23.503045368730408], + [-45.14126639731008, -23.503225368802255], + [-45.14124339851021, -23.503736370140725], + [-45.141405399674554, -23.503914369893568], + [-45.14187640230475, -23.50413536900727], + [-45.14219440399334, -23.504250368389325], + [-45.14274740684855, -23.504418366296793], + [-45.14300240829375, -23.504546366821565], + [-45.14326640947286, -23.50455436525913], + [-45.14360141069876, -23.50445836548528], + [-45.1439084120513, -23.504460364827036], + [-45.14409941267567, -23.50437636436927], + [-45.14414541244459, -23.5042063641743], + [-45.14420141205368, -23.503956363912636], + [-45.144229412049214, -23.503906363824274], + [-45.144156411374816, -23.503767362902508], + [-45.143905409817265, -23.50358836434028], + [-45.14356440804304, -23.50347936501104], + [-45.143355406405085, -23.503196365299754], + [-45.1429874043647, -23.50302936599566], + [-45.14235640074977, -23.502697367162835], + [-45.142119398973726, -23.50240836750824], + [-45.14208539805556, -23.50210636741045], + [-45.14216039752924, -23.501770367059287], + [-45.14225539738353, -23.50154936673026], + [-45.14246539749294, -23.501230366098863], + [-45.14268739772887, -23.500940365458103], + [-45.143017398199454, -23.500556364532297], + [-45.14322239846514, -23.500307363951254], + [-45.14327039851027, -23.50024236381137], + [-45.14356339886677, -23.49987736297577], + [-45.1439523994867, -23.499450361898994], + [-45.14418539987012, -23.49919936125672], + [-45.144332400067064, -23.499023360841523], + [-45.14473240152946, -23.498908359917586], + [-45.14514140319177, -23.49885635800987], + [-45.145603405437996, -23.49894235806643], + [-45.14601840792861, -23.499205357323913], + [-45.146281409836355, -23.49950135692641], + [-45.14644841147574, -23.499857356769084], + [-45.14660741301116, -23.500186355613646], + [-45.14700941574545, -23.50056735496548], + [-45.147534418848856, -23.500881354015366], + [-45.148049421577284, -23.501065353013157], + [-45.14868142497703, -23.501311351794484], + [-45.14916442755751, -23.50149235085921], + [-45.14972143063827, -23.50174235080381], + [-45.1499894322448, -23.501911350323446], + [-45.15014943367546, -23.50219735014128], + [-45.150267434407205, -23.502281348935202], + [-45.15056843592152, -23.50235734933141], + [-45.15078643663358, -23.502261348808858], + [-45.15112843777493, -23.502120346994356], + [-45.15149443965344, -23.50222734726833], + [-45.15189644200071, -23.502456346533872], + [-45.152302444036906, -23.50255634571791], + [-45.15241494451777, -23.50255134447336], + [-45.15252277090694, -23.502518394223003], + [-45.15278144584047, -23.502439343622513], + [-45.152968446281285, -23.50229034413649], + [-45.15305844618436, -23.50209734283416], + [-45.15308144538585, -23.501744343585482], + [-45.15306144443175, -23.50140434343654], + [-45.15306544362628, -23.501081343245545], + [-45.153117442685, -23.50062234287472], + [-45.15335544261319, -23.500184341116082], + [-45.15365444349183, -23.500014341377693], + [-45.15411244551123, -23.500018340395783], + [-45.15454844754369, -23.50006533948537], + [-45.154980449375074, -23.500040338542867], + [-45.15545545155822, -23.500079337544125], + [-45.15580545360578, -23.500280336905366], + [-45.15608145562688, -23.500598336491628], + [-45.15646545887356, -23.501211336012116], + [-45.15678146120535, -23.501582334542135], + [-45.1572944641567, -23.50185733459458], + [-45.15777646638838, -23.501903333584405], + [-45.158398468986896, -23.501852331218597], + [-45.15890547134093, -23.501903331157372], + [-45.15933447362041, -23.502059330323053], + [-45.16002847675141, -23.502093328850144], + [-45.160423478150086, -23.501962326927032], + [-45.16075747899566, -23.501719326072024], + [-45.1610614794036, -23.501356325213724], + [-45.16129147928311, -23.500913325469583], + [-45.16157547947595, -23.500500323626273], + [-45.16191448015466, -23.500183322718755], + [-45.162144480393465, -23.49988132305413], + [-45.16238148038778, -23.499471322313564], + [-45.162550479884914, -23.498983321675222], + [-45.16249847869841, -23.498607320575154], + [-45.162460477634475, -23.498255321458522], + [-45.16263847719154, -23.4977753198054], + [-45.16286347736773, -23.497457320142495], + [-45.16279947606745, -23.49705731905484], + [-45.16254047400144, -23.496692320405955], + [-45.16231147185029, -23.49624232064467], + [-45.16228647046897, -23.49574332041716], + [-45.16233046974445, -23.495383320119785], + [-45.162475469776204, -23.49514631967458], + [-45.163238471944524, -23.494684317774094], + [-45.16383447447619, -23.494652316474905], + [-45.1643084763404, -23.49456831540858], + [-45.16472747809089, -23.494534313488636], + [-45.16504947952565, -23.49454331380148], + [-45.165210980265634, -23.49455581246127], + [-45.16537248100563, -23.494568313121178], + [-45.165824483046016, -23.494591312162378], + [-45.16617198455811, -23.494586811412706], + [-45.16651948607017, -23.49458230966301], + [-45.1670084882956, -23.4946143096296], + [-45.16749249060374, -23.494687308629977], + [-45.16802049335452, -23.494858307590906], + [-45.16882949806635, -23.495315306108346], + [-45.16923850058358, -23.49559930538862], + [-45.169812504063835, -23.495977303366818], + [-45.17025250690063, -23.496333302620695], + [-45.17057450902899, -23.496614303086155], + [-45.170961511697215, -23.49699530246801], + [-45.17144051498571, -23.49746130069972], + [-45.171855518162, -23.497993301106085], + [-45.17213252026914, -23.498343300707063], + [-45.17221052106765, -23.498522299639866], + [-45.1723385223584, -23.498808300525333], + [-45.17262452497198, -23.499341300209622], + [-45.17281152700353, -23.499816300074265], + [-45.17293552880496, -23.500309300084613], + [-45.17295752997555, -23.500730300273954], + [-45.17292253049048, -23.50099230049657], + [-45.17287653175839, -23.501568300919295], + [-45.17294253439014, -23.502486301293338], + [-45.172791535034406, -23.5029983009061], + [-45.172722535852, -23.50343730230134], + [-45.172571536177436, -23.503824302843807], + [-45.17233653549907, -23.503962303427194], + [-45.17216753457422, -23.503890303750417], + [-45.171834532613914, -23.503694304356873], + [-45.17149253115493, -23.503710305101837], + [-45.171226530019105, -23.503722304681013], + [-45.1709445288029, -23.503730306292272], + [-45.170677527830954, -23.503808305910653], + [-45.17058052833436, -23.504172306324186], + [-45.17049052823056, -23.504286307581886], + [-45.17036752790288, -23.504369307893192], + [-45.16998052624655, -23.504385308735003], + [-45.16973352527557, -23.50442930929123], + [-45.169450524335524, -23.504547309966558], + [-45.169299524397815, -23.50483131045117], + [-45.16927652513132, -23.505158310684667], + [-45.169348525640906, -23.505234310572476], + [-45.16943331517726, -23.50529873242624], + [-45.16955252693111, -23.50538930922073], + [-45.169714527710475, -23.505416309887224], + [-45.16986652824193, -23.505363308530313], + [-45.17018352931574, -23.505239308778457], + [-45.170628531185756, -23.50520730680284], + [-45.17083453250254, -23.505369307450632], + [-45.17107053419345, -23.50562630708729], + [-45.17126953601543, -23.505998306868157], + [-45.171414537735984, -23.506423305795117], + [-45.17141553855702, -23.506743306972812], + [-45.171244538291916, -23.50693330744767], + [-45.17108353757558, -23.50692930779194], + [-45.17091953696863, -23.506973308169673], + [-45.17081053665642, -23.50703830844077], + [-45.17064553631045, -23.5071863078791], + [-45.17046253597489, -23.507369308375907], + [-45.17040453623857, -23.507572308614883], + [-45.17027353612336, -23.507752308998114], + [-45.170024535388514, -23.5078923106127], + [-45.1700655360839, -23.508094310638075], + [-45.17039053847922, -23.50847431015228], + [-45.17069754033112, -23.508672308602776], + [-45.17101554227974, -23.508889309040327], + [-45.17119154419529, -23.509337308913402], + [-45.17126854582973, -23.50984530803327], + [-45.17140454995939, -23.511229309518498], + [-45.17142055138766, -23.511761309783168], + [-45.171408553295834, -23.512529310240687], + [-45.17137655466945, -23.513122310642974], + [-45.17121155511502, -23.513580310255662], + [-45.170970554864546, -23.513896310952138], + [-45.17064905414352, -23.514166311796192], + [-45.17032755342247, -23.51443631264015], + [-45.16995455178853, -23.514437313443764], + [-45.169604549767854, -23.51424731509055], + [-45.16928554820234, -23.514182315740726], + [-45.16884554644549, -23.514250316726212], + [-45.16848054514023, -23.51436631757722], + [-45.1681735443549, -23.514586318361854], + [-45.16798804390862, -23.514730317842208], + [-45.16780254346238, -23.514874319322548], + [-45.16756954275914, -23.514999318894386], + [-45.16733954188524, -23.515052320419347], + [-45.16714054095331, -23.51502932083475], + [-45.16690453954774, -23.514884321261263], + [-45.16656653735238, -23.514605321831738], + [-45.16621553563358, -23.514535322547857], + [-45.16606453510251, -23.51458682290184], + [-45.16591353457142, -23.514638322255827], + [-45.16551753284647, -23.514643324111027], + [-45.16528653171552, -23.514597323582368], + [-45.16500553060237, -23.514644325213574], + [-45.16484053003409, -23.514705324602993], + [-45.16455552896976, -23.514778326257474], + [-45.164393528432456, -23.51484632664443], + [-45.1643175288264, -23.5151313269684], + [-45.164230529011235, -23.515353327280586], + [-45.16420452958383, -23.515622327488057], + [-45.16415152991786, -23.51584432772708], + [-45.164056530248786, -23.51613732809649], + [-45.16413053095768, -23.51628782802195], + [-45.164204531666655, -23.51643832794743], + [-45.16450853368988, -23.51670832744504], + [-45.164687535218256, -23.51699932722356], + [-45.16488253650293, -23.517167326898434], + [-45.16502553755171, -23.517332326683455], + [-45.16490153789593, -23.517680326146266], + [-45.16470153759267, -23.517905326703374], + [-45.164501537289325, -23.518130327260604], + [-45.16409553648013, -23.5185113283489], + [-45.16386053578832, -23.518644329929707], + [-45.163690535419995, -23.518792330378943], + [-45.16352553477245, -23.518822330750915], + [-45.16327153338707, -23.518716330238085], + [-45.1630495323718, -23.518700331706846], + [-45.16282053123148, -23.518647331169866], + [-45.162327528552034, -23.518445332117278], + [-45.16202752717154, -23.518420332748864], + [-45.16180252592358, -23.518318334175678], + [-45.161661525266474, -23.518303334470698], + [-45.16155552512277, -23.518429334769817], + [-45.16144452512827, -23.5186223341174], + [-45.16120952429846, -23.518701335667625], + [-45.16108852404552, -23.518810335989464], + [-45.16091852380987, -23.51901033546801], + [-45.16086052414237, -23.519240336722326], + [-45.16094552504897, -23.519449336657097], + [-45.16094052556045, -23.519658335785635], + [-45.16104402630069, -23.51977033662601], + [-45.161147527040846, -23.519882336466353], + [-45.161235527784484, -23.52002233535575], + [-45.161231527971154, -23.520102336409366], + [-45.16127552850383, -23.520235336389597], + [-45.16133452905891, -23.520351336327927], + [-45.16142853019139, -23.520633336284494], + [-45.16192253365929, -23.521142335507758], + [-45.16229153603484, -23.52143833388009], + [-45.16281153860331, -23.521550332823793], + [-45.16326754039552, -23.521468332796008], + [-45.16366154169862, -23.521301331853838], + [-45.16397354340759, -23.521434331256916], + [-45.16428154527795, -23.52163733070807], + [-45.16447054698852, -23.521982329495376], + [-45.16475555000409, -23.5226733302706], + [-45.16489255134602, -23.52296333013884], + [-45.165036552757165, -23.523268330000427], + [-45.16515055403391, -23.523572329925937], + [-45.16515755446056, -23.523727329998106], + [-45.164855553597135, -23.523908330750327], + [-45.16469855374831, -23.5242373312735], + [-45.16480555478491, -23.5244593311681], + [-45.164954556177214, -23.524748330009793], + [-45.16504555739403, -23.52506833099389], + [-45.16503055761171, -23.5251793300887], + [-45.165059558137486, -23.525335330114075], + [-45.16504055849602, -23.52550833125225], + [-45.16507255925463, -23.525750331319557], + [-45.16496655925677, -23.525933331650766], + [-45.16493155955519, -23.52611033182573], + [-45.1651145609717, -23.526350331566714], + [-45.16531756229462, -23.52651933122454], + [-45.16555656393137, -23.526749330839237], + [-45.16568656524296, -23.527039330722417], + [-45.165654565825484, -23.527322330950533], + [-45.165515566855404, -23.52796433161109], + [-45.16549556803486, -23.528460331933328], + [-45.16545256876332, -23.528819332227787], + [-45.16529756947782, -23.529365331868885], + [-45.16509757033718, -23.53004533368232], + [-45.16495657066868, -23.530417334195302], + [-45.16484957103182, -23.53074333460918], + [-45.164628570848535, -23.53105133425853], + [-45.16447757092137, -23.53133933574587], + [-45.16419957062065, -23.531699336547355], + [-45.16382557006178, -23.53212333759157], + [-45.16347856950648, -23.53250233855238], + [-45.16308256875894, -23.5328903396237], + [-45.16274456814089, -23.53322934054258], + [-45.162378567264376, -23.533515341492016], + [-45.162098566466476, -23.533684342190313], + [-45.16168656503782, -23.53383334316166], + [-45.161338563706174, -23.533910342954563], + [-45.16102456240128, -23.533939344647223], + [-45.160807561619414, -23.534006345152395], + [-45.16054856045631, -23.533996345704587], + [-45.160077558420895, -23.534009346726375], + [-45.15966255595181, -23.533756346477734], + [-45.159278553248456, -23.5333583480805], + [-45.15890155096417, -23.533112348753804], + [-45.15855554897445, -23.53292834939532], + [-45.158280547357876, -23.532768349897353], + [-45.157816544709405, -23.53252935076179], + [-45.15745954192817, -23.53205435126288], + [-45.1572115400446, -23.531743351621635], + [-45.15686853771576, -23.53142135217868], + [-45.15673653691123, -23.53133335241329], + [-45.156604536106656, -23.531245352647865], + [-45.156371534904615, -23.531175353110047], + [-45.15618153429478, -23.531263353568693], + [-45.15613153490012, -23.531586353858376], + [-45.15635853658163, -23.531854353520668], + [-45.15659653833697, -23.532132352164968], + [-45.15697854129188, -23.532632352624322], + [-45.157185542939246, -23.532921351341397], + [-45.15741054460957, -23.533188352007432], + [-45.157698546587284, -23.533467351544477], + [-45.157919548324315, -23.533767351237554], + [-45.15800354985816, -23.534223351313553], + [-45.157938550901136, -23.534743350746528], + [-45.157848551468895, -23.53512035215278], + [-45.15777555185088, -23.535395352464928], + [-45.157768552737295, -23.535754352682233], + [-45.157644552874736, -23.536021353099695], + [-45.157357551621736, -23.536024353719448], + [-45.15705154966691, -23.53578535424391], + [-45.156797548236945, -23.535662354721534], + [-45.15648954730804, -23.5358283544784], + [-45.15635854733547, -23.53606435589343], + [-45.156386548715446, -23.536556356110424], + [-45.156540550401104, -23.536951355001364], + [-45.15681655289368, -23.537452355689332], + [-45.157036555344675, -23.538033354542918], + [-45.15719055722727, -23.538505354477035], + [-45.15750655988562, -23.53900235407649], + [-45.1577295625213, -23.539650354961154], + [-45.157899564983076, -23.54032135497295], + [-45.158105566777564, -23.540669353725225], + [-45.15873956980589, -23.54076435341283], + [-45.15922657212692, -23.540835352403615], + [-45.1596395742481, -23.54095535158144], + [-45.15997257635785, -23.5412083500064], + [-45.15992957686168, -23.54147935025157], + [-45.15974457626369, -23.541563351697498], + [-45.15971157657366, -23.541741351868808], + [-45.160006578582966, -23.54202035139026], + [-45.160288580366505, -23.542233350902467], + [-45.16049558185885, -23.542461350584837], + [-45.16058658290545, -23.54271434953113], + [-45.16056358355605, -23.54300834974629], + [-45.16044058379292, -23.5433123511824], + [-45.160307583809406, -23.543547350601298], + [-45.160278584180574, -23.543742351773663], + [-45.16032058448144, -23.543787851708682], + [-45.16038257583138, -23.543818200592305], + [-45.16065658637834, -23.54395235007726], + [-45.16105258831258, -23.54402835026658], + [-45.16142859003612, -23.544056349472], + [-45.16178559112652, -23.543869348597408], + [-45.16207759188266, -23.54366334685216], + [-45.16257359364756, -23.543501345691894], + [-45.16308859586664, -23.54348434557234], + [-45.16349159748885, -23.54342634467107], + [-45.16398159948549, -23.543365343580593], + [-45.16430660035061, -23.543145341756283], + [-45.16450760053291, -23.54287134116888], + [-45.164659600241684, -23.542496341630375], + [-45.16474860004699, -23.542267340309692], + [-45.1649296003025, -23.542056340800826], + [-45.16513660091001, -23.541938340288258], + [-45.165493602358076, -23.541891339492338], + [-45.1659356040976, -23.541812337495173], + [-45.16644660584095, -23.541616337283475], + [-45.1669436076813, -23.541482336136657], + [-45.167452609766144, -23.54142333500622], + [-45.16774661093216, -23.541374334344876], + [-45.16807161225478, -23.54133333362117], + [-45.168517614349206, -23.54138633168936], + [-45.1692456181198, -23.541610330245707], + [-45.16973862082236, -23.541820330300705], + [-45.17018762367181, -23.54216332952531], + [-45.17069662767011, -23.54285232781476], + [-45.17086862921618, -23.543161328617416], + [-45.171041630669336, -23.54343232839661], + [-45.17110563168484, -23.543719328419726], + [-45.17112463230558, -23.54392932749666], + [-45.171172633023026, -23.544127328504402], + [-45.1712836339456, -23.54429732836052], + [-45.17146163511637, -23.544449327062047], + [-45.17170263641551, -23.544543327595008], + [-45.17183763700077, -23.544540326302176], + [-45.17197263758603, -23.544537326009227], + [-45.17231363926292, -23.544607325313063], + [-45.17260064078197, -23.54470832575074], + [-45.17293664262885, -23.54485332410739], + [-45.173114643318605, -23.54481732470319], + [-45.173300643595475, -23.544606323183558], + [-45.1735596441777, -23.54438932350302], + [-45.17389664524833, -23.544229322686263], + [-45.17420664599558, -23.54398932188288], + [-45.174471646470955, -23.543720321160208], + [-45.174547646472014, -23.543590320923375], + [-45.17465464641223, -23.54338332057629], + [-45.174737646032014, -23.543092320233907], + [-45.17479564562893, -23.542835319964624], + [-45.174851645201834, -23.542572319696202], + [-45.17499964524269, -23.5423343182434], + [-45.17518764574328, -23.542207318766554], + [-45.17541564659101, -23.542147318241], + [-45.175629647182674, -23.542011317703086], + [-45.175903648037874, -23.541875317035736], + [-45.176001647869384, -23.541641316693045], + [-45.175892646689476, -23.541367315774494], + [-45.17586764598096, -23.541133316696992], + [-45.175727644759654, -23.540896316866007], + [-45.17556564388196, -23.540831317179002], + [-45.175425642737494, -23.540624316364813], + [-45.17547364243133, -23.5404223171479], + [-45.17546264188925, -23.540229317063236], + [-45.17565964205064, -23.53995431648409], + [-45.176065643544156, -23.539841315544937], + [-45.17660564566446, -23.539743313325157], + [-45.17712264792687, -23.539740313208306], + [-45.17769665040873, -23.539725311961714], + [-45.178259652998335, -23.539771310772988], + [-45.178774655351674, -23.539807309682228], + [-45.179465658692635, -23.53992730825875], + [-45.18031766314481, -23.540205306576393], + [-45.181096667227855, -23.54046430404079], + [-45.181532669403175, -23.54056630415708], + [-45.182174672774686, -23.540782302892787], + [-45.182689675473505, -23.54095330187725], + [-45.18298867722649, -23.541125301328375], + [-45.18312067804924, -23.5412203010967], + [-45.18329267885558, -23.541240300736753], + [-45.1833746792872, -23.5412683005754], + [-45.183400680033785, -23.541515300657654], + [-45.18355168080423, -23.541557300355294], + [-45.18364668159261, -23.541702299231506], + [-45.183693682354566, -23.541919300251656], + [-45.183852683523796, -23.542103300011497], + [-45.183992684622424, -23.5422922998153], + [-45.1840246851931, -23.542460299840286], + [-45.18390468507599, -23.542620300188936], + [-45.18394468550512, -23.54271930015808], + [-45.18421568666925, -23.5427092995675], + [-45.18441968734976, -23.542625298080086], + [-45.184545687749235, -23.542565298774516], + [-45.18476368841181, -23.542450298239622], + [-45.18485718863023, -23.542375296995704], + [-45.18495068884866, -23.5423002977519], + [-45.18504568915045, -23.542255297521642], + [-45.18515668915632, -23.54206729717672], + [-45.18517268838663, -23.541739296958525], + [-45.185174687609226, -23.541432295782275], + [-45.185062685875685, -23.540947296752428], + [-45.18506668475632, -23.54050329649505], + [-45.185088683739025, -23.540068296203916], + [-45.18494168222074, -23.539727296330213], + [-45.18480368062406, -23.539340295411343], + [-45.18477867912928, -23.538799295162267], + [-45.18476367814425, -23.538440294993507], + [-45.184821677510485, -23.53809329567392], + [-45.18502967781939, -23.5378572950929], + [-45.1853016784628, -23.537642294385446], + [-45.18553067888681, -23.53741529376414], + [-45.18577667983601, -23.537364293204657], + [-45.186096680963956, -23.537256292453595], + [-45.18642468257516, -23.537323291783277], + [-45.18674368374229, -23.53723229104379], + [-45.18694668405465, -23.537006290479184], + [-45.18711668408894, -23.53672828895664], + [-45.18729568454939, -23.536601289499156], + [-45.187497685167116, -23.536496289004422], + [-45.18770668539829, -23.536228288403333], + [-45.18793068540073, -23.53584528770549], + [-45.18804668498557, -23.535484287253038], + [-45.188081683864205, -23.534986286898707], + [-45.187903681936184, -23.53453828703204], + [-45.187555679781816, -23.534293286645855], + [-45.18716167737188, -23.534027287347158], + [-45.18690267543929, -23.53371628873193], + [-45.18659367328975, -23.533406289225137], + [-45.18629567127308, -23.533129289713], + [-45.18597466851306, -23.532601290109778], + [-45.18566666562596, -23.532001289438313], + [-45.18535366283222, -23.53144629080261], + [-45.18515066083851, -23.531015290999143], + [-45.1850566592259, -23.530546290939174], + [-45.18515265855717, -23.530120290493446], + [-45.18530465841044, -23.529802289987387], + [-45.18554265851834, -23.529436289268965], + [-45.18578565860453, -23.529053288530246], + [-45.18600165870541, -23.528722287878857], + [-45.186210659059505, -23.528502287304807], + [-45.18646265982228, -23.52836828668616], + [-45.18663965997975, -23.528126285168856], + [-45.18679665978579, -23.527781285636916], + [-45.18703166037425, -23.527608284033093], + [-45.18744266153008, -23.527355284004756], + [-45.18778166254396, -23.527170283169948], + [-45.18812866342654, -23.526920282281402], + [-45.18834566369027, -23.526651281662627], + [-45.18851466398136, -23.526475281199502], + [-45.188745664577695, -23.52631228060995], + [-45.188957664688864, -23.52599227997344], + [-45.1890026641059, -23.525687279705625], + [-45.18902366388337, -23.525564279591478], + [-45.18909866340896, -23.525250279253957], + [-45.18905266245758, -23.52495727918913], + [-45.18910766184942, -23.52462527888461], + [-45.18897766020979, -23.524207277930977], + [-45.18868765810885, -23.52388327937512], + [-45.18856815716894, -23.523720779541843], + [-45.18844865622913, -23.52355827870865], + [-45.18837415560045, -23.523440278803193], + [-45.188299654971786, -23.523322279897812], + [-45.18806665332057, -23.52307628026266], + [-45.18871965607799, -23.523034528830895], + [-45.18890665686051, -23.52301977841931], + [-45.189093657642914, -23.52300502700768], + [-45.189280658425496, -23.522990276596094], + [-45.190011661171184, -23.52281027491852], + [-45.19042166241942, -23.52259527491385], + [-45.19097366417784, -23.52233627357816], + [-45.19160566636385, -23.52210727208666], + [-45.19231066892865, -23.521901270450577], + [-45.19314667220859, -23.521750268562595], + [-45.19364667417097, -23.521660267433575], + [-45.19422367662713, -23.521631266172502], + [-45.19515668081835, -23.521670264181303], + [-45.19605068474627, -23.52167326225396], + [-45.19661468727821, -23.521696261049705], + [-45.197345690695975, -23.52177925851869], + [-45.19826069498455, -23.52188725660438], + [-45.198670696903854, -23.521934755746152], + [-45.19908069882315, -23.52198225488776], + [-45.19976570223875, -23.522143254499213], + [-45.20030370496628, -23.52228725341841], + [-45.200832707705516, -23.52245125136811], + [-45.20142871058495, -23.522555251139597], + [-45.20197571326993, -23.522667250021318], + [-45.202579716399406, -23.52285524782226], + [-45.2029777186207, -23.523041248066914], + [-45.203505721296644, -23.523182247005597], + [-45.204210724891965, -23.52337924559337], + [-45.20472472771907, -23.52360324360846], + [-45.205168730083045, -23.523766243740614], + [-45.20579673348681, -23.52402024252614], + [-45.20624773590456, -23.524192241648137], + [-45.20666273809285, -23.524336240832195], + [-45.20716474094165, -23.52458923888905], + [-45.20752674310761, -23.52481523823327], + [-45.207965745457415, -23.524981238377595], + [-45.2085897488002, -23.525218237161912], + [-45.20903375127694, -23.525425235318192], + [-45.20948375386719, -23.525666235480365], + [-45.21003175713299, -23.526003234484314], + [-45.210457759692346, -23.526273233714374], + [-45.21092076264972, -23.52663523291577], + [-45.211241764661736, -23.526871232353756], + [-45.211681767574724, -23.527255231616927], + [-45.21199776963664, -23.527519230081182], + [-45.21229177171233, -23.52782623061686], + [-45.21254477354422, -23.528108230227186], + [-45.212775775338685, -23.528413229897854], + [-45.21296377697799, -23.52873122866868], + [-45.2130597779782, -23.52895722858703], + [-45.21321684507629, -23.529117008336613], + [-45.21329127959675, -23.529192729217886], + [-45.21335678011077, -23.52928122912555], + [-45.21363278173348, -23.529442228618684], + [-45.2141467842355, -23.52953922756174], + [-45.21460278661398, -23.52968722665848], + [-45.21515478944925, -23.529849225555438], + [-45.2156087915369, -23.529887224595218], + [-45.21578779235748, -23.529901224216058], + [-45.215949793259945, -23.529976223907575], + [-45.21622279466957, -23.530059223363615], + [-45.216319795135746, -23.530075223162807], + [-45.21664079688149, -23.530207222542284], + [-45.21690979851711, -23.530385222059753], + [-45.21750780181299, -23.530648219913186], + [-45.217883803817735, -23.530787220177583], + [-45.218171805580255, -23.530982219663308], + [-45.2185158077166, -23.53122721905569], + [-45.21895881043566, -23.531530218266315], + [-45.2193538128982, -23.53181521757068], + [-45.21958199743797, -23.532025560194192], + [-45.22021081868143, -23.53260521515657], + [-45.22058682107368, -23.53289521550459], + [-45.22095882344318, -23.533183214860067], + [-45.22137982610457, -23.533501214126233], + [-45.22177282862785, -23.533813213449527], + [-45.22209783082483, -23.5341142119138], + [-45.222385833149644, -23.534528212520833], + [-45.22277583575478, -23.534877211871155], + [-45.223106838103995, -23.53522721134944], + [-45.223394840387925, -23.535625209947547], + [-45.223770843101214, -23.536040210364536], + [-45.224044845098014, -23.536350209943862], + [-45.22432184698479, -23.536612208490023], + [-45.224570848825856, -23.53690420811341], + [-45.22483485092779, -23.537272208746483], + [-45.225081852929584, -23.53763020841084], + [-45.225258854221565, -23.537831207139433], + [-45.22528735448638, -23.537885708108007], + [-45.225626857223666, -23.5383722066434], + [-45.22585185881847, -23.538609207287944], + [-45.226003860496334, -23.539003206177803], + [-45.226122862055306, -23.53940720614457], + [-45.22629586346591, -23.53966120691113], + [-45.22651686566983, -23.540142206699706], + [-45.22658186666352, -23.54041820571222], + [-45.22667486781847, -23.540709205672457], + [-45.22674886912126, -23.541090206723762], + [-45.2267858700308, -23.54138120680521], + [-45.22692887191356, -23.541870206767133], + [-45.22704087334449, -23.542236206727797], + [-45.22704687418499, -23.54255320689071], + [-45.22705587464302, -23.54271620596176], + [-45.227143876523634, -23.54329820609423], + [-45.22723287876316, -23.54401820730119], + [-45.227383881102625, -23.544671207336673], + [-45.227514882817566, -23.545115207299407], + [-45.227717884781484, -23.545533207091804], + [-45.228103888200366, -23.546205205628826], + [-45.2284048911465, -23.54683820532816], + [-45.22864489349905, -23.547344206089058], + [-45.228812895679745, -23.547906206037], + [-45.22887489728531, -23.548425206190604], + [-45.22884889926044, -23.549238206697943], + [-45.22874390038042, -23.549853206266555], + [-45.22870690083873, -23.550094707480675], + [-45.228669901297174, -23.55033620769477], + [-45.22858390174494, -23.550657208059153], + [-45.228471902230325, -23.551037208512543], + [-45.22841390236659, -23.551189208722487], + [-45.22830240236717, -23.55137970906974], + [-45.22819090236778, -23.551570209417008], + [-45.227872901659225, -23.551837210253975], + [-45.22773990139074, -23.551959710610056], + [-45.22760690112224, -23.552082209966137], + [-45.227450900787524, -23.55221821037949], + [-45.227023899140825, -23.55230621135329], + [-45.22665589766809, -23.55236121318093], + [-45.226394897420164, -23.55271021293991], + [-45.22624189699316, -23.55280521432406], + [-45.22608889656623, -23.552900214708266], + [-45.225768895324485, -23.55296321543632], + [-45.22552989413479, -23.552908215923466], + [-45.22541989323336, -23.552745216071255], + [-45.225295892427354, -23.5526432152832], + [-45.22503989141489, -23.55268621686157], + [-45.224513888516555, -23.55245621787308], + [-45.22409688633797, -23.552320218700714], + [-45.223670884477, -23.552323219624935], + [-45.22343388350667, -23.552350219153205], + [-45.22281188104027, -23.55245222155682], + [-45.22254587995303, -23.55248322215006], + [-45.22238487950627, -23.5525842225548], + [-45.222115878390376, -23.55260922315123], + [-45.221845877277886, -23.552637223751372], + [-45.221647876717526, -23.552757223246843], + [-45.221429876007804, -23.55285322477217], + [-45.221180874858916, -23.55283122529918], + [-45.221047874260044, -23.55282522458384], + [-45.22098087407661, -23.552868224752732], + [-45.22079187364051, -23.55302122624704], + [-45.220643873237854, -23.5531172256209], + [-45.22057087359317, -23.553380226924972], + [-45.220463873470585, -23.553515227231674], + [-45.22035487324932, -23.553615227523363], + [-45.22032287325787, -23.553673227624788], + [-45.22008687338111, -23.554124228386442], + [-45.21988387270121, -23.554206228871596], + [-45.21954787176394, -23.554415229715257], + [-45.21941987153374, -23.554544230064106], + [-45.219139870962906, -23.554800230812628], + [-45.21882787032863, -23.555086231647163], + [-45.218480869646115, -23.555413231580225], + [-45.21830386934227, -23.55559723306579], + [-45.21808686906574, -23.555860233681855], + [-45.21807886962921, -23.556093233828705], + [-45.2182778708312, -23.556221232468996], + [-45.21840887165526, -23.556318233239303], + [-45.2186308731125, -23.55650623286301], + [-45.218737873751564, -23.556572232668035], + [-45.2187958744146, -23.556731232630824], + [-45.218780874908916, -23.55694923278448], + [-45.218541874723485, -23.557285233488795], + [-45.21832887470347, -23.557641233147883], + [-45.21799387427143, -23.55804523409781], + [-45.21776787389895, -23.55828623572123], + [-45.21739787297916, -23.558560236674772], + [-45.21713387231913, -23.558754237354265], + [-45.216830871169115, -23.558824238049336], + [-45.21661486991292, -23.55870423845035], + [-45.216138867150704, -23.558442239335328], + [-45.21589786582331, -23.55833723979878], + [-45.215661864476616, -23.5582162402424], + [-45.21541186314824, -23.558126240733625], + [-45.21508386154178, -23.558061241407646], + [-45.21469185941031, -23.557901242167308], + [-45.21436585750692, -23.557717242770646], + [-45.21405185563826, -23.557526243344164], + [-45.213768853969775, -23.557360243864466], + [-45.21350585265109, -23.557296244398128], + [-45.213310851900594, -23.55733724484308], + [-45.2131878511989, -23.557274245074304], + [-45.21284784950122, -23.557194244765782], + [-45.21260284852864, -23.55723424631827], + [-45.212436848059504, -23.55733524673381], + [-45.212452848728155, -23.55756824682887], + [-45.21261484963952, -23.557646246521603], + [-45.21275085034426, -23.55768824525059], + [-45.212751850651735, -23.557806246314087], + [-45.212808851164, -23.557908246247475], + [-45.21291185196273, -23.558043246099615], + [-45.21305185271595, -23.55809724582662], + [-45.2133198540052, -23.558141245270964], + [-45.21352385512146, -23.558227243877216], + [-45.21379785681214, -23.558417244389762], + [-45.21400485803148, -23.558538244008943], + [-45.21419985920585, -23.55866224365581], + [-45.21456686110699, -23.558775242924156], + [-45.214887863009125, -23.558967242335964], + [-45.21497886338793, -23.558959242134435], + [-45.21518686459884, -23.559075241748598], + [-45.21543086603202, -23.559216240298674], + [-45.2157588680702, -23.559449240718152], + [-45.215957869156874, -23.559532239333365], + [-45.21605686974043, -23.559590240151234], + [-45.21630087087044, -23.55961323963572], + [-45.21639087164313, -23.55976023852256], + [-45.21645887210085, -23.559822239409762], + [-45.21643587231599, -23.559945239528023], + [-45.2164248724861, -23.56003023859911], + [-45.21650387321309, -23.560178239510233], + [-45.21656387400576, -23.560384239494848], + [-45.2166448743793, -23.56039123832338], + [-45.21671987469818, -23.560387238158757], + [-45.21674787509861, -23.56049523915813], + [-45.2168658758272, -23.560577238948213], + [-45.21698387629885, -23.5605592386826], + [-45.2170528768998, -23.560675238597682], + [-45.217121878086594, -23.561019237639517], + [-45.21709587877693, -23.5613322378698], + [-45.21705687938697, -23.561636239123303], + [-45.216982880146695, -23.562058239518176], + [-45.216873880814454, -23.562504239002166], + [-45.216699881137856, -23.56292724061421], + [-45.21643388120657, -23.563408240457832], + [-45.21618988127923, -23.56385324223368], + [-45.21574988057108, -23.5643292424513], + [-45.21554188030058, -23.56457924304088], + [-45.21527188034134, -23.56505624489087], + [-45.214864879803706, -23.56554224504264], + [-45.21426487827223, -23.565971246580794], + [-45.21390087699541, -23.56609624843864], + [-45.21361287579265, -23.566120249075745], + [-45.21327587489394, -23.566346249931286], + [-45.213085874766506, -23.566621250495782], + [-45.21285087385554, -23.566668250030865], + [-45.21248787198415, -23.566560250757032], + [-45.21219487019398, -23.566364252282437], + [-45.21180586792585, -23.566146253003513], + [-45.21146486603281, -23.56599225365627], + [-45.21108486415365, -23.565910254433433], + [-45.21080886265153, -23.56579725496816], + [-45.21060086129879, -23.565626255323313], + [-45.21031985990827, -23.565565254897802], + [-45.20996485800528, -23.565431255591847], + [-45.20954085592251, -23.56534525746194], + [-45.20923085444329, -23.565299257107505], + [-45.20892185288347, -23.56522025873242], + [-45.20872485202107, -23.565221259159475], + [-45.208505851678616, -23.565462259767838], + [-45.20831785161101, -23.565757260339122], + [-45.208082851069804, -23.56594825995422], + [-45.207960850906545, -23.566093261299113], + [-45.20795985144425, -23.566304261418786], + [-45.20812985260701, -23.566466260141038], + [-45.208369853861264, -23.566544260664823], + [-45.20854985478792, -23.566597260304682], + [-45.20865785517219, -23.566562260051306], + [-45.20862785476299, -23.566454260056158], + [-45.208725854954395, -23.56636125979223], + [-45.20901385609057, -23.566311258140892], + [-45.20925985706802, -23.566271258585967], + [-45.20940485774574, -23.56628725728086], + [-45.209654858917986, -23.56631625775579], + [-45.209811859748704, -23.566371257446427], + [-45.210071861368334, -23.566557255987004], + [-45.210427863933745, -23.5669472564333], + [-45.210810866463476, -23.567277254787577], + [-45.211160868519386, -23.567479254142096], + [-45.21159087104491, -23.567727253348913], + [-45.211824872478466, -23.567885252930086], + [-45.2118878732692, -23.568085253904975], + [-45.21213287505687, -23.568362253528488], + [-45.21242287684432, -23.56856225201171], + [-45.212756878722196, -23.568722251377228], + [-45.212921879914525, -23.568904252121158], + [-45.2132078821214, -23.56927425170748], + [-45.2134848839342, -23.569506250236547], + [-45.2135858847144, -23.569637251090647], + [-45.21357388492914, -23.569741251174438], + [-45.21325788428446, -23.570030252019745], + [-45.21300188349705, -23.57016125164715], + [-45.21250488178774, -23.570345253826027], + [-45.2121508808141, -23.570571254718587], + [-45.21175287915631, -23.57060625560011], + [-45.21142687804862, -23.570732256376367], + [-45.21093487624526, -23.57087125751931], + [-45.210645875225396, -23.570968257199272], + [-45.21041687452299, -23.571086257760953], + [-45.209963872693, -23.571148259776557], + [-45.20946887103567, -23.571349260960506], + [-45.209069869820446, -23.57155826094106], + [-45.2087518688094, -23.571708262713134], + [-45.20858086847215, -23.571869262173134], + [-45.20858186935044, -23.572209262360243], + [-45.20861887007069, -23.572426263400924], + [-45.208701871016196, -23.572652263347038], + [-45.20898487273477, -23.572837261837165], + [-45.20925987437194, -23.573004262334486], + [-45.20948387618093, -23.573325262028], + [-45.209461876505856, -23.573489262167012], + [-45.20931687656823, -23.57376126163244], + [-45.209188876473945, -23.573943262011046], + [-45.20919287713164, -23.574192262141], + [-45.209252878217846, -23.574512263189092], + [-45.209266879035184, -23.574806263322408], + [-45.20893287859388, -23.575205263268078], + [-45.20863287803456, -23.575500265082123], + [-45.20828887732039, -23.575810264999816], + [-45.208183877715285, -23.576143266412696], + [-45.208268879132554, -23.576549266454574], + [-45.20840788065075, -23.57690226635005], + [-45.208308880976965, -23.577198266729305], + [-45.208069880747196, -23.57751726742465], + [-45.207889880964366, -23.577909268032847], + [-45.20780888164213, -23.578311267432184], + [-45.20779088247334, -23.578665268668164], + [-45.207874883966014, -23.579102268729585], + [-45.20786588452312, -23.5793342688782], + [-45.207500883318076, -23.57948926975526], + [-45.207099881564, -23.579492270625643], + [-45.20673488000658, -23.579510271426336], + [-45.20637287858832, -23.579577272247896], + [-45.20622087843478, -23.579777272688574], + [-45.20630287948929, -23.58004727266127], + [-45.20654488142949, -23.580388272326903], + [-45.20662288246906, -23.580659272308885], + [-45.20691588413704, -23.58080727075652], + [-45.20735288639919, -23.580940270883797], + [-45.20761288789138, -23.581076270396252], + [-45.20789889028986, -23.58152027002374], + [-45.208027891924054, -23.581935268975254], + [-45.20806789307465, -23.58231427009965], + [-45.208273894715425, -23.58260026981244], + [-45.20859189677638, -23.582858268266925], + [-45.20887389893895, -23.58321726785566], + [-45.20911890083869, -23.583537268502834], + [-45.20940790262815, -23.583739266988957], + [-45.2097469047198, -23.583973267384472], + [-45.21003990628766, -23.584082266810046], + [-45.21022990709681, -23.58407226539267], + [-45.21038790752352, -23.58396826599237], + [-45.2105389078242, -23.583827264586706], + [-45.21075990851222, -23.58371726504645], + [-45.21096390956036, -23.583776264637116], + [-45.21125891036512, -23.583585263891464], + [-45.211448910371445, -23.583263262300534], + [-45.211604910128095, -23.582902261761564], + [-45.211821910762474, -23.5827782622223], + [-45.21203591177726, -23.582807261774597], + [-45.21220991256232, -23.58281526040195], + [-45.21240191364001, -23.58290626003637], + [-45.212627914422, -23.58282426050085], + [-45.21278191503423, -23.582799260153116], + [-45.21286591480377, -23.58256625884155], + [-45.2129839149311, -23.58241425950119], + [-45.21330591577461, -23.582192258679804], + [-45.213692917042486, -23.582024256747445], + [-45.214143918452564, -23.5818022556464], + [-45.214602920242505, -23.58171425560249], + [-45.21500192212393, -23.581764254765407], + [-45.21551392485182, -23.581950253758755], + [-45.215937927476126, -23.582246253004033], + [-45.21640593048413, -23.58261625219506], + [-45.216867933362984, -23.582946250376654], + [-45.217437936574726, -23.583221249293615], + [-45.21787893911171, -23.583454249466698], + [-45.21847794226296, -23.58365624827998], + [-45.21910494520516, -23.583729246960807], + [-45.21964194737614, -23.583656245755666], + [-45.220016948567704, -23.583479244844096], + [-45.220233948864376, -23.583224244231918], + [-45.22036094887646, -23.583012243838724], + [-45.22042094858908, -23.58279824358975], + [-45.22078494984808, -23.582666242727036], + [-45.22103995211115, -23.58311024242052], + [-45.22126695386259, -23.58340324209081], + [-45.221443955088006, -23.58357724080342], + [-45.221715956728204, -23.583750241309467], + [-45.22202595876698, -23.5840132407831], + [-45.222318960728586, -23.584275239292857], + [-45.222429961311434, -23.58431224007264], + [-45.222577961884255, -23.584282239734947], + [-45.22273196254773, -23.584277238398123], + [-45.22291296324753, -23.58424023898491], + [-45.22294196323587, -23.584186237891988], + [-45.22299596347042, -23.584185237774335], + [-45.22309896374264, -23.58411523851202], + [-45.22312196365565, -23.58404223842162], + [-45.223258964131254, -23.583993238097253], + [-45.22352796569899, -23.584143236596994], + [-45.223856967509626, -23.584285236961964], + [-45.22420796920838, -23.584346235234378], + [-45.224759971759035, -23.584395235063937], + [-45.225455975390254, -23.58461823367748], + [-45.22578547715162, -23.584740233030164], + [-45.22611497891303, -23.584862231382818], + [-45.22660798155727, -23.585048231416195], + [-45.226905983002645, -23.585101230798948], + [-45.227078983386384, -23.584955230342587], + [-45.227167983076605, -23.584683228998703], + [-45.22718798249726, -23.584424229811624], + [-45.22686898029523, -23.584113230331447], + [-45.226530977904204, -23.583761229869786], + [-45.22635597608225, -23.583352230022623], + [-45.22633397517443, -23.583037229895666], + [-45.22643097509309, -23.582840230576014], + [-45.226662975972786, -23.58278623004267], + [-45.226895977119646, -23.582834228563794], + [-45.227243978926055, -23.582942228868557], + [-45.22775598160718, -23.58311022785074], + [-45.22838998457684, -23.58318222651491], + [-45.229006987337804, -23.58320222518703], + [-45.22952099017191, -23.583426224195655], + [-45.23003699310756, -23.583686223219875], + [-45.23052099541321, -23.58375622220821], + [-45.23090399688891, -23.58367622133256], + [-45.231215998449635, -23.583750220696352], + [-45.23171200111199, -23.58393821872388], + [-45.232180003473594, -23.584057218774], + [-45.232637005727604, -23.58415321783507], + [-45.233199008759605, -23.58437221673634], + [-45.23383701280578, -23.58485521561864], + [-45.234360016073744, -23.585232214691853], + [-45.235158021180744, -23.585854212303467], + [-45.23628602789426, -23.58653721123188], + [-45.237105032954645, -23.58710520976748], + [-45.23773603699885, -23.587599208670266], + [-45.23835404090098, -23.58806020658294], + [-45.23881104376364, -23.58839220677379], + [-45.23917204581292, -23.588572206089097], + [-45.239450047580256, -23.58878420560243], + [-45.23951404893154, -23.58919920569279], + [-45.23949604985052, -23.589586205945885], + [-45.23966405184929, -23.59007520585119], + [-45.23991105405576, -23.590510205555063], + [-45.240238056347906, -23.59084220502812], + [-45.24043105800011, -23.591154204781187], + [-45.240485059049774, -23.591469204837992], + [-45.240652060652344, -23.59180620466137], + [-45.240988063167364, -23.59220920415392], + [-45.24117606497586, -23.59259020395592], + [-45.24119406627762, -23.593064204178756], + [-45.24116606725632, -23.593491204475573], + [-45.24128706885062, -23.59390320444023], + [-45.241528070938365, -23.594302204136994], + [-45.241688072167356, -23.594506203901886], + [-45.24190107116252, -23.593754202023533], + [-45.24203707075867, -23.593366202513554], + [-45.24217307035489, -23.592978202003653], + [-45.24300207345594, -23.592769200086547], + [-45.24363307637114, -23.59282519874597], + [-45.244276458301684, -23.592866105370142], + [-45.24467108109923, -23.59289119652627], + [-45.245402084280414, -23.59288019493121], + [-45.24595508675889, -23.59289969273988], + [-45.24650808923718, -23.592919192548496], + [-45.24755209381576, -23.592917190277642], + [-45.24805609554328, -23.592729189078227], + [-45.24821409594276, -23.592615188671797], + [-45.24843409627111, -23.59236818805719], + [-45.24890650133866, -23.59236569702877], + [-45.24937890640613, -23.592363206000243], + [-45.249415406549595, -23.592356705917304], + [-45.249490406878856, -23.59235670575422], + [-45.24961140745905, -23.592375705501563], + [-45.24975240814777, -23.592402705209896], + [-45.24995040917442, -23.59246370481301], + [-45.250181410371816, -23.592534704349884], + [-45.250324411069286, -23.592561704053843], + [-45.25039941146822, -23.592588703905648], + [-45.25050741209212, -23.59264670370279], + [-45.25057741253359, -23.59269870357921], + [-45.2506104128101, -23.5927497035356], + [-45.250640413189686, -23.592845703523256], + [-45.25065841356557, -23.592960703547572], + [-45.25067441379326, -23.593021703546473], + [-45.25069541403514, -23.593079703532712], + [-45.25074041435142, -23.593125703460206], + [-45.25077941458721, -23.59315070338929], + [-45.25081341478033, -23.59316770332464], + [-45.25087741506652, -23.593169703186547], + [-45.25094141532162, -23.593159703041916], + [-45.250982415493894, -23.593156702951106], + [-45.251023415707444, -23.59316970286904], + [-45.25106841595404, -23.593188702781724], + [-45.251125416235276, -23.59320070266439], + [-45.251166416479826, -23.593225702588974], + [-45.25123041690015, -23.59327970247959], + [-45.25131541748501, -23.593361702339983], + [-45.25140841803783, -23.593417702168534], + [-45.251522418726786, -23.593490701960935], + [-45.25157441907894, -23.59353870187429], + [-45.251606419307244, -23.593572701823433], + [-45.25161741948972, -23.59362470182821], + [-45.251617419629156, -23.59367870185791], + [-45.25162941990913, -23.59376670188033], + [-45.251645420069636, -23.593801701864795], + [-45.25167742026442, -23.59382270180682], + [-45.25171142042396, -23.59382670173517], + [-45.251752420588474, -23.593820701642617], + [-45.25176342056709, -23.593793701603808], + [-45.25177742056908, -23.593770701560732], + [-45.251798420622585, -23.59375570150671], + [-45.25182542074114, -23.593755701447975], + [-45.25187142098179, -23.593770701356302], + [-45.25192642133687, -23.593814701260932], + [-45.251995421735245, -23.593851701131218], + [-45.25204942216855, -23.593927701055645], + [-45.25209342245206, -23.59396270097931], + [-45.25214142272216, -23.59398570088762], + [-45.25218642293003, -23.59398970079193], + [-45.25223242313193, -23.59398970069189], + [-45.252282423307605, -23.5939727005737], + [-45.25233242347294, -23.593951700453403], + [-45.25237342363737, -23.593945700360965], + [-45.25241942384972, -23.593949700263106], + [-45.25246942411306, -23.593966700163705], + [-45.252520424352404, -23.59397270005606], + [-45.252582424624634, -23.593972699921203], + [-45.252618424816205, -23.593985699850155], + [-45.252650425008326, -23.59400569979157], + [-45.25268742533861, -23.594070699746865], + [-45.25274642587388, -23.594177699677502], + [-45.25278542620512, -23.594239699626918], + [-45.25281942640352, -23.594258699563387], + [-45.252844426541685, -23.594269699515117], + [-45.25288142670148, -23.59426869943409], + [-45.252929426837305, -23.594239699313697], + [-45.25295842692847, -23.59422569924289], + [-45.25300642714957, -23.594229699140687], + [-45.25305242742638, -23.59425869905662], + [-45.25309542772876, -23.594302698987345], + [-45.25314842802077, -23.59432569888477], + [-45.25322342837074, -23.594333698725993], + [-45.25326842851921, -23.59431469861769], + [-45.253328428692235, -23.59427969846792], + [-45.25334142867184, -23.594249698423017], + [-45.25334142851175, -23.594187698388875], + [-45.25327742797252, -23.594087698472944], + [-45.253254427665055, -23.59400769847892], + [-45.25325442750495, -23.593945698444774], + [-45.253257427301214, -23.593861698391937], + [-45.253247427159174, -23.59382369839269], + [-45.25322742697588, -23.593786698415872], + [-45.25316542654622, -23.593725698517105], + [-45.25313342626117, -23.59366969855585], + [-45.25311042600772, -23.593610698573343], + [-45.253099425804606, -23.593550698564133], + [-45.25309142557589, -23.593475698540203], + [-45.253070425359695, -23.593427698559452], + [-45.253004424847965, -23.593341698655586], + [-45.25289742394704, -23.593174698796293], + [-45.25281442328056, -23.593057698912308], + [-45.25278042293254, -23.592980698943844], + [-45.2527554227041, -23.592934698972808], + [-45.25272142245668, -23.592896699025832], + [-45.25266442201023, -23.59282069910794], + [-45.25264342178126, -23.592767699124373], + [-45.25263642158008, -23.592701699103234], + [-45.25263642113603, -23.592529699008416], + [-45.252627420918444, -23.59246069898993], + [-45.252588420576835, -23.592394699038426], + [-45.252518420073315, -23.592318699148777], + [-45.25242641946554, -23.592239699305253], + [-45.25238841918511, -23.592195699363632], + [-45.252378419061245, -23.592164699368322], + [-45.2523784189683, -23.59212869934841], + [-45.252390418920314, -23.592089699300796], + [-45.252446418784, -23.591941699097518], + [-45.252533418719274, -23.59176869881293], + [-45.25273241884161, -23.591477698219737], + [-45.253110419357114, -23.59103469715354], + [-45.2537084204976, -23.590459695536072], + [-45.254109421477985, -23.59015769449763], + [-45.25456242273047, -23.589872693355364], + [-45.25496342407743, -23.5897126923951], + [-45.25559942637042, -23.58951969090554], + [-45.256038428162825, -23.58946768992205], + [-45.25633742943635, -23.589452689263464], + [-45.256556430419415, -23.58946118879183], + [-45.25677543140237, -23.58946968832016], + [-45.2570744328153, -23.58950868769132], + [-45.25767143570124, -23.589611686449437], + [-45.25791343694137, -23.589680685961035], + [-45.25796243723909, -23.58971268587205], + [-45.258024437624776, -23.589756685761436], + [-45.258053437899214, -23.589813685729723], + [-45.25808843820521, -23.589872685686082], + [-45.258128439033975, -23.590125685738336], + [-45.25816543964312, -23.590298685753122], + [-45.25819844023211, -23.59047068577607], + [-45.25821544063206, -23.590596685808407], + [-45.25823544097544, -23.5906956858194], + [-45.25825844127011, -23.590770685810654], + [-45.258316441769985, -23.59086568573684], + [-45.258368442194396, -23.59094168566554], + [-45.258412442508956, -23.590988685595757], + [-45.258441442687804, -23.591008685543553], + [-45.25846944284952, -23.59102368549098], + [-45.25849544302037, -23.591045685446513], + [-45.25851844320915, -23.591079685415238], + [-45.25856044352777, -23.59113168535244], + [-45.258625444109974, -23.59124668527436], + [-45.25865844444588, -23.591320685243296], + [-45.258658444479465, -23.591333685250447], + [-45.25865044448832, -23.59135068527721], + [-45.2586354444509, -23.591361685315924], + [-45.25861344438786, -23.59137468537094], + [-45.25861044443669, -23.59139868539072], + [-45.25861144450566, -23.591423685402244], + [-45.25864144473028, -23.591459685356764], + [-45.25869044507184, -23.59150868527719], + [-45.25873444532434, -23.59153168519415], + [-45.25875244544989, -23.591549685164807], + [-45.25877144561332, -23.591580685140606], + [-45.25877444573236, -23.591621685156667], + [-45.25878244584497, -23.591651685155767], + [-45.258805446041414, -23.591688685126055], + [-45.25884144628727, -23.59172268506642], + [-45.25887944656773, -23.591766685007947], + [-45.2589064467817, -23.591803684969626], + [-45.25892744692556, -23.591823684935008], + [-45.25897844722166, -23.591851684839373], + [-45.25909144782351, -23.59189268461612], + [-45.25918344831246, -23.591925684434095], + [-45.25925844872175, -23.59195668428805], + [-45.25929244893037, -23.591979684226686], + [-45.259327449176915, -23.5920156841703], + [-45.25936944947489, -23.592059684103205], + [-45.259402449748826, -23.592109684058908], + [-45.25944845002302, -23.592137683974247], + [-45.25948245020846, -23.592151683907964], + [-45.25950845034841, -23.59216168385693], + [-45.25952145044672, -23.592177683837356], + [-45.25953045054822, -23.592201683831018], + [-45.25955845089582, -23.59228868381798], + [-45.25961545157992, -23.592456683786487], + [-45.25967945234637, -23.592644683750713], + [-45.25969145262636, -23.592732683773022], + [-45.2596914527271, -23.592771683794435], + [-45.25970445285906, -23.59280068378209], + [-45.259728453021154, -23.592822683742046], + [-45.25975045316941, -23.59284268370513], + [-45.25976145328745, -23.592869683696062], + [-45.25976745344806, -23.59292168371158], + [-45.259769453601486, -23.592977683738052], + [-45.259763453771505, -23.59305368379293], + [-45.25976945393729, -23.593107683809723], + [-45.25979245414416, -23.593148683782168], + [-45.25984645455944, -23.59321768370265], + [-45.25988845481352, -23.593244683626143], + [-45.2599174550157, -23.593273683578992], + [-45.25994545522376, -23.59330668353621], + [-45.259948455360885, -23.593354683556075], + [-45.25995845557281, -23.59341968357005], + [-45.25994845573287, -23.59349868363532], + [-45.259952455926154, -23.59356668366408], + [-45.25995245603723, -23.593609683687735], + [-45.25993945608089, -23.59364868373753], + [-45.25991845609985, -23.593691683806902], + [-45.259868455942346, -23.593715683928856], + [-45.25983945588483, -23.59374268400682], + [-45.259828455906266, -23.593769684045668], + [-45.25983045600554, -23.593804684060526], + [-45.25984245612528, -23.593830684048733], + [-45.25985945622832, -23.593841684017725], + [-45.25987845634532, -23.59385468398363], + [-45.25989245652561, -23.593900683978468], + [-45.25992945697986, -23.594013683960085], + [-45.25998945778568, -23.59422368394514], + [-45.26001445811501, -23.594308683937445], + [-45.26004845842963, -23.594372683898712], + [-45.260099458790364, -23.59442568381686], + [-45.26014945908987, -23.594456683725184], + [-45.26024945967344, -23.59451268353831], + [-45.26026645977387, -23.59452268350686], + [-45.26033046011425, -23.594545683380172], + [-45.26036746033083, -23.594566683311253], + [-45.26040146056012, -23.594597683254317], + [-45.260438460872386, -23.594655683205715], + [-45.26050046132543, -23.594725683109306], + [-45.26054846167041, -23.59477768303349], + [-45.260608462029325, -23.594814682923243], + [-45.26064646223224, -23.594828682848245], + [-45.26067646240275, -23.594843682791204], + [-45.26068546249127, -23.594862682782143], + [-45.260685462550704, -23.594885682794754], + [-45.260674462538574, -23.59489968282639], + [-45.260642462465306, -23.594925682910276], + [-45.260643462526524, -23.594947682920235], + [-45.2606434625782, -23.594967682931202], + [-45.260659462674234, -23.59497768290193], + [-45.260691462848264, -23.594990682839452], + [-45.26073646313103, -23.595023682759717], + [-45.26077246340017, -23.59506668270505], + [-45.260804463672365, -23.595117682663428], + [-45.26086946416698, -23.59519868256656], + [-45.26092746458174, -23.59526068247432], + [-45.261066465630996, -23.595430682265388], + [-45.261132466101586, -23.595500682160274], + [-45.261190466474915, -23.59554668205933], + [-45.261253466829, -23.595576681938695], + [-45.26129646709267, -23.595605681861073], + [-45.261309467222084, -23.595633681848202], + [-45.261317467345, -23.595667681849452], + [-45.261309467390014, -23.59569868188399], + [-45.26130146743496, -23.595729681918456], + [-45.26131046753651, -23.595753681912015], + [-45.26136546798455, -23.595833681836353], + [-45.26149346895463, -23.59599168164471], + [-45.26156146947534, -23.596077681544013], + [-45.2617024703888, -23.596191681299818], + [-45.26185247130554, -23.596291681028266], + [-45.26186847140934, -23.59630468100061], + [-45.26199047214893, -23.596383680778473], + [-45.2620764726556, -23.596433680618834], + [-45.26215547313669, -23.596485680475528], + [-45.2622204735383, -23.596530680358747], + [-45.262285473867585, -23.596547680226525], + [-45.262320474049595, -23.596558680156406], + [-45.262400474444604, -23.59657567999169], + [-45.26247147481824, -23.596599679850296], + [-45.26254447517234, -23.59661267969852], + [-45.26262947558153, -23.59662667952122], + [-45.26267447579451, -23.59663267942652], + [-45.2627404761411, -23.596654679294982], + [-45.262790476427696, -23.59668067920046], + [-45.26284947675125, -23.59670567908573], + [-45.262876476893034, -23.596714679031923], + [-45.26293147718098, -23.59673267892216], + [-45.26300847764296, -23.5967806787809], + [-45.263104478185696, -23.59682767859775], + [-45.26316747853205, -23.596854678475466], + [-45.263257478955495, -23.5968656782856], + [-45.26331447920566, -23.596865678161514], + [-45.26336447939148, -23.59685267804553], + [-45.26339147945831, -23.59683267797568], + [-45.2634194795011, -23.596801677897698], + [-45.26343047945894, -23.59676667785455], + [-45.26343247934883, -23.596720677824813], + [-45.26343347920073, -23.596661677790202], + [-45.263419478981646, -23.59660067778715], + [-45.26339147866749, -23.59652667780742], + [-45.26334047813618, -23.59640767785301], + [-45.26331147777889, -23.596318677867206], + [-45.2632764774314, -23.596243677902173], + [-45.26326647728162, -23.596202677901385], + [-45.26326947719916, -23.596165677874453], + [-45.263264477099625, -23.596135677868848], + [-45.26324947692017, -23.59609167787731], + [-45.26319447647453, -23.596012677953624], + [-45.26318747637666, -23.595986677954627], + [-45.26319047635363, -23.59597267794031], + [-45.263194476350485, -23.595964677927252], + [-45.26321047642078, -23.595964677892436], + [-45.26323847654368, -23.59596467783149], + [-45.26325247659996, -23.59596267779982], + [-45.26326547661827, -23.595947677763363], + [-45.26327247659985, -23.59592867773762], + [-45.26327347653187, -23.595900677720138], + [-45.2632614763629, -23.595855677721524], + [-45.26324547615573, -23.59580267772706], + [-45.26321147587475, -23.595751677773077], + [-45.263131475257524, -23.595648677890594], + [-45.263100474945674, -23.595580677920655], + [-45.263075474735224, -23.59554167795367], + [-45.26304147451627, -23.595514678012808], + [-45.26300547429878, -23.59549167807857], + [-45.26296547408445, -23.595476678157343], + [-45.26293947390055, -23.59544967819915], + [-45.262917473703254, -23.59541067822555], + [-45.26284447295652, -23.59524567829371], + [-45.262747472130265, -23.59509067841958], + [-45.2626094708915, -23.59484567858519], + [-45.26251447008445, -23.59469467870895], + [-45.262465469525786, -23.594561678742437], + [-45.26242046902341, -23.594443678775516], + [-45.26240046869529, -23.594350678767835], + [-45.2623894684378, -23.59426967874726], + [-45.26237646813528, -23.594174678723256], + [-45.262334467666754, -23.594064678754215], + [-45.26226246702263, -23.593937678841023], + [-45.26217946628112, -23.593791678941376], + [-45.262120465766436, -23.593692679015387], + [-45.262049465266315, -23.59361967912966], + [-45.2619314644461, -23.593502679322114], + [-45.26177346332125, -23.593335679574142], + [-45.26166546247272, -23.593190679729414], + [-45.26160846193579, -23.593079679792343], + [-45.26155146140147, -23.592969679855926], + [-45.261415460262135, -23.592759680036306], + [-45.261257459010764, -23.59254368026137], + [-45.26123245879511, -23.592502680293183], + [-45.26121345862134, -23.592467680315224], + [-45.261203458440605, -23.59241468030786], + [-45.26119345824429, -23.592355680297167], + [-45.261145457640936, -23.59220368031793], + [-45.26110845723578, -23.592109680346784], + [-45.26106045678235, -23.59201568039946], + [-45.26104145659308, -23.59197468041832], + [-45.261043456511445, -23.591939680394727], + [-45.261043456418456, -23.59190368037487], + [-45.26107745640231, -23.591839680265615], + [-45.26118245646014, -23.591683679951394], + [-45.26128145651747, -23.591537679655588], + [-45.26145345671693, -23.591322679163], + [-45.261533456814796, -23.591224678934974], + [-45.261646457003316, -23.59110567862362], + [-45.26166045703376, -23.591093678586535], + [-45.26170345711655, -23.59105267847041], + [-45.26176745730696, -23.59101767831193], + [-45.26185845756936, -23.590964678084713], + [-45.262024458129865, -23.590899677687776], + [-45.262173458610704, -23.590832677326738], + [-45.262295458972936, -23.590765677024343], + [-45.26235245905518, -23.5907006768646], + [-45.262396459108764, -23.590646676739127], + [-45.26243545904744, -23.590556676604763], + [-45.262488458853745, -23.590391676398593], + [-45.262548458585016, -23.590185676154736], + [-45.262568458435084, -23.59009367606063], + [-45.2625784582827, -23.590017675997068], + [-45.26259245823821, -23.58997667594404], + [-45.2626144582133, -23.58992967587034], + [-45.26264945823253, -23.589877675765518], + [-45.262737458352625, -23.589774675517383], + [-45.262815458452124, -23.589680675295973], + [-45.26288845857353, -23.589603675094814], + [-45.26293745872394, -23.589578674974412], + [-45.2629684588367, -23.58956967490196], + [-45.26299545896292, -23.589572674844927], + [-45.263029459137925, -23.589582674776363], + [-45.26306345929491, -23.58958567470404], + [-45.263100459441716, -23.58957967462026], + [-45.26312145949775, -23.589565674566852], + [-45.26314145953382, -23.58954567451226], + [-45.26315845949991, -23.58950367445226], + [-45.26317745945678, -23.589454674383894], + [-45.263192459308094, -23.58937167430567], + [-45.26322345913165, -23.589250674171605], + [-45.26327545901881, -23.589118673985826], + [-45.26332545900062, -23.589026673826467], + [-45.26337145903452, -23.588961673690562], + [-45.26342145915313, -23.588922673560372], + [-45.26353145944726, -23.58884967328086], + [-45.26385446052606, -23.588718672505937], + [-45.26434046211073, -23.58850667133174], + [-45.26486846386413, -23.58828867006295], + [-45.265177464948565, -23.58818366933269], + [-45.265418465838025, -23.58811866877253], + [-45.26592946779829, -23.58800966760049], + [-45.266655470569894, -23.58784966593249], + [-45.266974471804, -23.587785665203082], + [-45.26749147376464, -23.587666664012474], + [-45.26785447515546, -23.58758866317946], + [-45.26823447667517, -23.58753166232113], + [-45.268319477073895, -23.58754166214156], + [-45.26838547743063, -23.587567662012205], + [-45.268468477931684, -23.5876206618607], + [-45.26855747853651, -23.587703661712617], + [-45.26857347863513, -23.587714661683744], + [-45.26863547906468, -23.587775661582384], + [-45.268677479287696, -23.58779066149911], + [-45.26870547943894, -23.587801661444235], + [-45.268797479819234, -23.587792661239085], + [-45.268860480087824, -23.587789661100224], + [-45.26890948031317, -23.587793660995832], + [-45.26896848062881, -23.587815660879443], + [-45.26906148116075, -23.58786366070344], + [-45.26913948160365, -23.587902660555006], + [-45.26919748195367, -23.58793966044914], + [-45.26927748245968, -23.58799966030794], + [-45.26947248358894, -23.588105659941657], + [-45.26973148512819, -23.588261659463498], + [-45.269826485694836, -23.58831965928861], + [-45.269907486148284, -23.588357659133102], + [-45.26998348656436, -23.588389658985232], + [-45.270042486846506, -23.58839865886174], + [-45.27009448708232, -23.58840165875026], + [-45.270133487245666, -23.588398658663646], + [-45.27016448736095, -23.58839065859172], + [-45.27018748744628, -23.588384658538395], + [-45.27021348756813, -23.588387658483413], + [-45.270240487743415, -23.58840965843677], + [-45.27030248818333, -23.588474658337457], + [-45.270374488661965, -23.588537658215373], + [-45.27042848910302, -23.58861665814115], + [-45.27046948949996, -23.58870065809805], + [-45.27048048966184, -23.588744658098264], + [-45.27048048978071, -23.58879065812351], + [-45.270469489822965, -23.588825658166645], + [-45.27044948982563, -23.58886065822946], + [-45.27037848963821, -23.588908658410375], + [-45.270326489492845, -23.588940658541127], + [-45.270305489506626, -23.588981658609388], + [-45.27029348955226, -23.58901965865642], + [-45.270304489719315, -23.589065658657734], + [-45.27032148988432, -23.58910065863989], + [-45.270333489968, -23.58911265862037], + [-45.2703454900129, -23.58910965859261], + [-45.27036449007294, -23.589100658546304], + [-45.27037649003775, -23.589066658501526], + [-45.270400490016435, -23.58901765842229], + [-45.27042349008108, -23.589003658364515], + [-45.270445490182816, -23.589005658317728], + [-45.270466490277485, -23.58900665827253], + [-45.270490490431904, -23.589025658230785], + [-45.27050649060027, -23.589063658216862], + [-45.27051149088836, -23.589166658262542], + [-45.27053449112109, -23.58921765824042], + [-45.270549491295405, -23.589259658230848], + [-45.27058049148565, -23.58928065817493], + [-45.27061349165106, -23.589288658107428], + [-45.27066249186865, -23.58928965800128], + [-45.27070649203841, -23.589280657900602], + [-45.27077249225295, -23.589251657740885], + [-45.27080849231787, -23.589215657642793], + [-45.270817492279775, -23.589185657606734], + [-45.27081349217697, -23.58915265759734], + [-45.27079849200522, -23.589111657607475], + [-45.27074949164818, -23.589056657683944], + [-45.27070549132851, -23.589007657752838], + [-45.270682491150076, -23.588977657786412], + [-45.27068249109321, -23.588955657774303], + [-45.27069549111406, -23.588941657738314], + [-45.2707224912196, -23.588936657676832], + [-45.270769491449, -23.588945657579483], + [-45.27080149161262, -23.588954657514694], + [-45.270838491793064, -23.588961657437945], + [-45.2708774919409, -23.588952657348155], + [-45.27090849198901, -23.58891865726202], + [-45.27093749205154, -23.588893657185125], + [-45.27097349217331, -23.58887965709905], + [-45.271016492367096, -23.588881657006535], + [-45.27107049260919, -23.588883656890037], + [-45.27112449290038, -23.58890465678404], + [-45.27116149307553, -23.588909656706207], + [-45.271184493176364, -23.58890965665614], + [-45.27119849320162, -23.588895656617964], + [-45.27120249315978, -23.58887265659667], + [-45.27119249299702, -23.588826656593124], + [-45.271167492786624, -23.58878765662618], + [-45.271136492549765, -23.588748656672244], + [-45.271120492314196, -23.588684656671962], + [-45.27112049218241, -23.58863365664393], + [-45.27111649204084, -23.5885856566263], + [-45.27112249191732, -23.58852765658138], + [-45.27113949188324, -23.588485656521314], + [-45.27116149189194, -23.588451656454755], + [-45.271190491918375, -23.588412656370178], + [-45.27121349186164, -23.588351656286633], + [-45.271242491691666, -23.58823665616033], + [-45.27126749158419, -23.58815265605985], + [-45.27129049158952, -23.588115655989423], + [-45.27131749161742, -23.588080655911366], + [-45.2713664917497, -23.588048655787134], + [-45.27139849180738, -23.588016655699896], + [-45.27142949183479, -23.58797465560935], + [-45.27144549177059, -23.587922655545913], + [-45.2714544916137, -23.58784665548461], + [-45.271450491441136, -23.587786655460384], + [-45.27143049105876, -23.58767265544132], + [-45.27139649035149, -23.587456655396807], + [-45.271384489983575, -23.587334655355896], + [-45.27138348979832, -23.5872646553196], + [-45.271382489613046, -23.58719465528344], + [-45.271378489151076, -23.58702265519768], + [-45.271383488769885, -23.586866655101083], + [-45.27138548858743, -23.586792655056126], + [-45.27140548852273, -23.586733654980186], + [-45.27144948858911, -23.58668465485753], + [-45.27149948870761, -23.586645654727203], + [-45.2715784889534, -23.586606654533902], + [-45.27181348978765, -23.586530653980596], + [-45.27201249054163, -23.58648465352203], + [-45.2724004920547, -23.586411652637235], + [-45.272690493207776, -23.58636565198064], + [-45.272973494399935, -23.586346651354013], + [-45.27341049628811, -23.586335650396617], + [-45.27373249778561, -23.586368649713602], + [-45.27399549905666, -23.586414149165975], + [-45.27425850032765, -23.586459648618245], + [-45.274590501980164, -23.58653564793713], + [-45.27503250425459, -23.58666564704603], + [-45.27530050567285, -23.58675964651397], + [-45.27561250736679, -23.586885645903628], + [-45.27578050831299, -23.58696664558225], + [-45.27592850921792, -23.587065645314283], + [-45.27606451008318, -23.587169645075157], + [-45.27620551102208, -23.587293644836066], + [-45.27639651231726, -23.587470644517172], + [-45.276586513840726, -23.587737644249888], + [-45.2766965145972, -23.587843644068425], + [-45.27673751487775, -23.58788264400056], + [-45.27675251496948, -23.587892643973316], + [-45.276804515256934, -23.587915643872705], + [-45.27685151552249, -23.587938643782987], + [-45.27688351570933, -23.587956643723164], + [-45.27691851594046, -23.587986643663353], + [-45.2769865164661, -23.58807464356353], + [-45.27715051763783, -23.588249643302298], + [-45.27725451842227, -23.58837664314537], + [-45.27735651919793, -23.58850364299286], + [-45.277441519785214, -23.588586642853265], + [-45.277495520117796, -23.5886236427559], + [-45.27755552042738, -23.588641642635164], + [-45.277607520678735, -23.588650642526854], + [-45.27767352096816, -23.588650642383097], + [-45.27772352118747, -23.588650642274178], + [-45.27776952137887, -23.58864664217175], + [-45.277787521421686, -23.588632642124846], + [-45.277808521441266, -23.58860464206375], + [-45.27783552147187, -23.588570641986326], + [-45.27786652155351, -23.58854964190724], + [-45.27792652175717, -23.588526641763977], + [-45.278039522146756, -23.58848564149535], + [-45.27814452250114, -23.588444641244237], + [-45.27821152266832, -23.588395641071372], + [-45.27825752276919, -23.588356640949762], + [-45.278284522768786, -23.588310640865732], + [-45.278347522845856, -23.58823364068632], + [-45.27844552295507, -23.58810964040492], + [-45.27855352298921, -23.58793964007644], + [-45.27860752302429, -23.58786163991609], + [-45.27864252305117, -23.587812639812924], + [-45.27868452313444, -23.587773639700046], + [-45.27871152316502, -23.587739639622622], + [-45.27872452313149, -23.587704639575158], + [-45.278750523043854, -23.58762663947568], + [-45.27877652296141, -23.587550639377405], + [-45.27882852289732, -23.587437639202168], + [-45.27886352290341, -23.587380639094697], + [-45.27890652291101, -23.58731063896272], + [-45.27899252309164, -23.58723463873376], + [-45.27907352321152, -23.587143638507364], + [-45.27918052336012, -23.58701963820638], + [-45.27925552340211, -23.58690863798213], + [-45.279330523451755, -23.58680063775952], + [-45.279386523423284, -23.586694637579534], + [-45.27944252327579, -23.586542637374183], + [-45.27949852323707, -23.586432637191873], + [-45.27956052333562, -23.586365637020158], + [-45.279650523363216, -23.58622363674626], + [-45.279706523370955, -23.586131636573892], + [-45.27973752326384, -23.586037636454883], + [-45.27976452301764, -23.58589663631877], + [-45.279778522851636, -23.58580863624003], + [-45.279801522766284, -23.58573663615045], + [-45.279828522695944, -23.58566363605163], + [-45.279903522660284, -23.585522635810985], + [-45.27995352251249, -23.585380635624215], + [-45.27998652241154, -23.585285635500295], + [-45.280014522110285, -23.58512163534944], + [-45.28004952184758, -23.584960635184974], + [-45.28008852172132, -23.58484563503701], + [-45.28014052158477, -23.584704634846418], + [-45.2801475214268, -23.58463163479117], + [-45.28014552124993, -23.584566634759934], + [-45.28012652083574, -23.584438634731164], + [-45.2800595198026, -23.58415263472039], + [-45.28000151913481, -23.583992634758992], + [-45.27991851838053, -23.58384163485695], + [-45.27980851754149, -23.58370363502089], + [-45.279566515880816, -23.583471635420786], + [-45.27944051503368, -23.58335763563267], + [-45.27938051471376, -23.583335635751318], + [-45.27930551434358, -23.583319635905877], + [-45.27921451394719, -23.583320636104606], + [-45.279095513443536, -23.583327636367557], + [-45.27882351236983, -23.583373636985076], + [-45.27859751149785, -23.58341963750247], + [-45.27840151073146, -23.583455637949076], + [-45.27828951026629, -23.5834656381984], + [-45.27819450984972, -23.58346563840526], + [-45.278107509442385, -23.5834556385893], + [-45.27801550896667, -23.583427638774264], + [-45.277860508103494, -23.583356639072854], + [-45.27774350737607, -23.583273639282087], + [-45.277681507008566, -23.583236639396848], + [-45.27764650674131, -23.58319263944892], + [-45.27762550654331, -23.583151639472163], + [-45.27760850632149, -23.583094639477903], + [-45.27757150597322, -23.58302263951897], + [-45.27753850567855, -23.582964639559023], + [-45.277480505139984, -23.582854639625037], + [-45.27742850464843, -23.582752639682315], + [-45.277406504337414, -23.58266963968467], + [-45.27739850409558, -23.58258963965818], + [-45.277388503847625, -23.58251063963667], + [-45.27736950361188, -23.582451639645676], + [-45.27732850320468, -23.582363639686683], + [-45.27726650271311, -23.582278639775133], + [-45.27717650201875, -23.58216263990737], + [-45.27711650152322, -23.582072639988674], + [-45.27708750112722, -23.581968639994788], + [-45.277085500924656, -23.581893639958004], + [-45.27708550074376, -23.581823639919595], + [-45.277104500591896, -23.58173263982834], + [-45.2771155004541, -23.5816606397649], + [-45.2771235003161, -23.581593639710665], + [-45.2771225001825, -23.581543639685474], + [-45.27712150004893, -23.581493639660266], + [-45.27712149961996, -23.581327639569174], + [-45.277125499355854, -23.5812186395007], + [-45.277142499213305, -23.5811346394176], + [-45.27717149907173, -23.581030639297442], + [-45.277215499008825, -23.580931639147312], + [-45.277249498925386, -23.580841639023948], + [-45.277259498814146, -23.580781638969274], + [-45.27726449862676, -23.580700638914013], + [-45.277272498400876, -23.580599638841072], + [-45.2772724983492, -23.580579638830162], + [-45.27728049811044, -23.58047363875452], + [-45.27729249798994, -23.5804066386918], + [-45.277344497897474, -23.58028263851052], + [-45.27737549768713, -23.580148638369554], + [-45.27739249743609, -23.580022638263383], + [-45.27740349722855, -23.579923638185154], + [-45.27739649704795, -23.57986563816856], + [-45.27737849674426, -23.57977863816004], + [-45.277361996588006, -23.579746138178095], + [-45.27726197887368, -23.579639378337344], + [-45.27724328274011, -23.57961942136703], + [-45.27716647336113, -23.579603051525332], + [-45.27714841080811, -23.57941965546406], + [-45.27715042354322, -23.57931371640153], + [-45.27715243627832, -23.579207777339054], + [-45.277141493266306, -23.578834637158153], + [-45.27714949329357, -23.57883163713909], + [-45.27715849332273, -23.578827637117342], + [-45.2771674933493, -23.57882263709503], + [-45.27717749337501, -23.578815637069464], + [-45.27718749339563, -23.578806637042742], + [-45.277197493413645, -23.578796637015444], + [-45.27720749343169, -23.57878663698816], + [-45.27721749344704, -23.57877563696044], + [-45.27722749346508, -23.57876563693315], + [-45.27723649347614, -23.5787546369075], + [-45.277244493485334, -23.578744636884558], + [-45.27725249349461, -23.57873463686172], + [-45.27725949349941, -23.578724636840963], + [-45.277265493505006, -23.5787166368235], + [-45.27727049350372, -23.578707636807735], + [-45.277274493500585, -23.57869963679457], + [-45.277278493497434, -23.57869163678155], + [-45.277282493496934, -23.57868463676896], + [-45.27728649349378, -23.578676636755898], + [-45.277290493490646, -23.578668636742766], + [-45.27729449348756, -23.57866063672971], + [-45.27729749348003, -23.578652636718754], + [-45.27730149347687, -23.578644636705715], + [-45.27730549347371, -23.578636636692575], + [-45.27730949347056, -23.57862863667944], + [-45.27731249346045, -23.57861963666802], + [-45.27731649345479, -23.578610636654425], + [-45.27732049344389, -23.57859963663968], + [-45.277323493428675, -23.578588636627074], + [-45.277326493410825, -23.57857663661396], + [-45.27733049339733, -23.57856463659866], + [-45.277333493376865, -23.578551636584983], + [-45.277336493356515, -23.578538636571306], + [-45.27733949333605, -23.578525636557703], + [-45.27734249331559, -23.578512636543962], + [-45.277345493295144, -23.57849963653037], + [-45.277349493276496, -23.578485636514003], + [-45.27735249325605, -23.578472636500322], + [-45.27735549323557, -23.578459636486667], + [-45.27735849321522, -23.578446636472993], + [-45.277361493197354, -23.578434636459864], + [-45.27736449317689, -23.578421636446187], + [-45.277367493161705, -23.578410636433677], + [-45.27737049314643, -23.578399636421086], + [-45.277373493131144, -23.578388636408498], + [-45.277376493118425, -23.578378636396454], + [-45.27737849310135, -23.578368636386703], + [-45.277381493088726, -23.578358636374645], + [-45.27738449307603, -23.578348636362588], + [-45.27738749306594, -23.578339636351178], + [-45.27738949304884, -23.578329636341323], + [-45.27739249303615, -23.578319636329383], + [-45.27739549302601, -23.578310636317863], + [-45.27739749300896, -23.578300636308], + [-45.27740049299633, -23.578290636295964], + [-45.27740349298622, -23.578281636284554], + [-45.27740549296912, -23.57827163627466], + [-45.277408492953924, -23.578260636262087], + [-45.277410492936866, -23.578250636252303], + [-45.277413492921596, -23.578239636239733], + [-45.27741549289934, -23.57822763622877], + [-45.27741849288406, -23.578216636216187], + [-45.27742049286438, -23.578205636205876], + [-45.27742249284213, -23.57819363619493], + [-45.277425492826836, -23.57818263618234], + [-45.27742749280727, -23.578171636171916], + [-45.27743049278941, -23.578159636158894], + [-45.27743249276974, -23.578148636148452], + [-45.27743549275187, -23.578136636135344], + [-45.27743749273222, -23.578125636124927], + [-45.277440492714334, -23.578113636111816], + [-45.277442492692195, -23.57810163610095], + [-45.277445492674325, -23.57808963608774], + [-45.27744749264951, -23.578076636076315], + [-45.27745049262645, -23.5780626360621], + [-45.277452492599124, -23.578048636050053], + [-45.277455492578696, -23.57803563603639], + [-45.27745749255127, -23.578021636024367], + [-45.27746049252824, -23.578007636010135], + [-45.27746249250083, -23.57799363599813], + [-45.27746549248035, -23.57798063598445], + [-45.277467492452935, -23.577966635972416], + [-45.27747049242992, -23.57795263595818], + [-45.27747249240518, -23.5779396359468], + [-45.277475492382145, -23.577925635932484], + [-45.277477492354734, -23.577911635920444], + [-45.27748049233427, -23.577898635906863], + [-45.27748249230685, -23.577884635894755], + [-45.27748449227945, -23.577870635882803], + [-45.277487492256526, -23.57785663586858], + [-45.27748949222909, -23.577842635856456], + [-45.277491492199104, -23.577827635843963], + [-45.277493492171686, -23.577813635831934], + [-45.277495492144354, -23.57779963581988], + [-45.277498492118745, -23.577784635805138], + [-45.277500492091335, -23.577770635793094], + [-45.27750249206133, -23.577755635780523], + [-45.27750449203391, -23.577741635768483], + [-45.27750649200393, -23.5777266357559], + [-45.27750849197652, -23.577712635743868], + [-45.27751020595087, -23.5776997787331], + [-45.277510491946515, -23.57769763573129], + [-45.27751067194361, -23.577696198730084], + [-45.277512491913946, -23.57768163571817], + [-45.27751449188394, -23.5776666357056], + [-45.27751549184442, -23.577649635694115], + [-45.27751649180496, -23.57763263568252], + [-45.2775174917654, -23.577615635671037], + [-45.277518491723285, -23.577597635659036], + [-45.277519491683755, -23.57758063564753], + [-45.27752049164164, -23.577562635635505], + [-45.277521491602094, -23.577545635623924], + [-45.27752149155818, -23.577528635614623], + [-45.27752249151604, -23.57751063560257], + [-45.27752349147652, -23.57749363559109], + [-45.27752449143697, -23.577476635579615], + [-45.27752449139047, -23.57745863556967], + [-45.277525491350936, -23.577441635558277], + [-45.277526491311384, -23.577424635546702], + [-45.27752849127372, -23.577406635532476], + [-45.27753049123858, -23.57738963551882], + [-45.277531491196456, -23.577371635506786], + [-45.27753449116566, -23.577354635490952], + [-45.27753649112791, -23.577336635476634], + [-45.27753849109275, -23.577319635463002], + [-45.277540491055106, -23.577301635448705], + [-45.27754349102431, -23.57728463543293], + [-45.277545490986576, -23.577266635418653], + [-45.277547490951406, -23.577249635405003], + [-45.277550490918046, -23.5772316353886], + [-45.27755249088289, -23.57721463537494], + [-45.27755449084772, -23.577197635361273], + [-45.27755749081695, -23.577180635345343], + [-45.277559490784355, -23.577164635332224], + [-45.27756149075186, -23.57714863531921], + [-45.27756349072446, -23.577134635307072], + [-45.27756549069704, -23.577120635295042], + [-45.27756749067222, -23.577107635283635], + [-45.2775694906474, -23.577094635272065], + [-45.27757049062076, -23.57708263526336], + [-45.27757249059602, -23.57706963525187], + [-45.277574490571205, -23.577056635240382], + [-45.27757649054895, -23.57704463522942], + [-45.27757749051975, -23.577031635220113], + [-45.27757949049493, -23.5770186352086], + [-45.277581490470105, -23.577005635197118], + [-45.27758349044527, -23.5769926351857], + [-45.277585490420535, -23.576979635174226], + [-45.27758749039571, -23.57696663516272], + [-45.27759049037265, -23.576952635148515], + [-45.27759349034706, -23.57693763513374], + [-45.27759649031884, -23.576921635118453], + [-45.27760049028986, -23.57690363509991], + [-45.277605490260164, -23.576883635077976], + [-45.27761049022525, -23.57686163505507], + [-45.2776174901888, -23.57683563502556], + [-45.27762349014532, -23.57680863499768], + [-45.27763049010372, -23.57678063496708], + [-45.27763749006203, -23.57675263493646], + [-45.2776434900237, -23.57672763490977], + [-45.27764848998627, -23.576704634886234], + [-45.277653489956485, -23.57668463486442], + [-45.27765748992758, -23.57666663484576], + [-45.27766148990377, -23.57665063482827], + [-45.27766548988253, -23.57663563481135], + [-45.277669489861296, -23.576620634794416], + [-45.27767348984265, -23.576606634778017], + [-45.277677489824086, -23.57659263476164], + [-45.277681489805424, -23.576578634745264], + [-45.27768448978239, -23.576564634731135], + [-45.27768848976632, -23.576551634715194], + [-45.27769248975033, -23.576538634699435], + [-45.27769648973169, -23.576524634683032], + [-45.27770048971569, -23.576511634667114], + [-45.27770448969704, -23.576497634650796], + [-45.277707489676594, -23.57648463463713], + [-45.27771148966052, -23.576471634621292], + [-45.277715489641864, -23.576457634604903], + [-45.277720489630255, -23.576444634586856], + [-45.27772448961418, -23.576431634571037], + [-45.277729489602486, -23.57641863455302], + [-45.27773548959268, -23.57640463453235], + [-45.277740489580964, -23.576391634514227], + [-45.27774648957376, -23.576378634494024], + [-45.27775248956642, -23.576365634473927], + [-45.277757489552144, -23.57635163445538], + [-45.27776348954227, -23.576337634434605], + [-45.27776948953501, -23.576324634414416], + [-45.27777448952072, -23.576310634395835], + [-45.27778048951094, -23.57629663437512], + [-45.277786489501125, -23.576282634354364], + [-45.277792489491205, -23.576268634333633], + [-45.27779748947953, -23.576255634315615], + [-45.27780348946962, -23.57624163429485], + [-45.277808489455346, -23.576227634276293], + [-45.27781448944553, -23.57621363425556], + [-45.277819489428666, -23.576198634236448], + [-45.27782448941449, -23.576184634217878], + [-45.27783048940458, -23.57617063419713], + [-45.277835489390384, -23.576156634178655], + [-45.27783798938321, -23.576149634169308], + [-45.27797548914124, -23.575822633690713], + [-45.277980489137285, -23.575812633674314], + [-45.27798448913165, -23.575803633660644], + [-45.27798848912334, -23.575793633646413], + [-45.27799248911767, -23.57578463363281], + [-45.27799748911372, -23.575774633616533], + [-45.27800148910799, -23.57576563360284], + [-45.278005489099655, -23.575755633588642], + [-45.27800948909393, -23.57574663357494], + [-45.278014489090076, -23.575736633558655], + [-45.278018489084324, -23.575727633544954], + [-45.27802348908038, -23.575717633528573], + [-45.27802848907653, -23.575707633512273], + [-45.2780334890726, -23.575697633495864], + [-45.27803948907568, -23.575688633477927], + [-45.27804448907175, -23.575678633461436], + [-45.27805048907218, -23.57566863344296], + [-45.278056489070025, -23.57565763342383], + [-45.27806248907054, -23.575647633405364], + [-45.2780674890666, -23.57563763338894], + [-45.27807348906453, -23.57562663336983], + [-45.27807948906247, -23.57561563335082], + [-45.27808548906291, -23.57560563333224], + [-45.27809148906075, -23.57559463331312], + [-45.27809748906118, -23.57558463329457], + [-45.27810348905912, -23.57557363327555], + [-45.278109489059545, -23.575563633256944], + [-45.2781154890575, -23.575552633237844], + [-45.2781224890623, -23.5755426332171], + [-45.27812848906283, -23.575532633198602], + [-45.2781354890702, -23.575523633178395], + [-45.27814248907504, -23.575513633157648], + [-45.27814948907992, -23.575503633136993], + [-45.27815648908741, -23.57549463311678], + [-45.2781634890922, -23.57548463309612], + [-45.27817048909967, -23.575475633075904], + [-45.27817748910708, -23.57546663305572], + [-45.27818448911449, -23.575457633035594], + [-45.27819148911937, -23.575447633014846], + [-45.27819848912686, -23.575438632994647], + [-45.27820548913426, -23.575429632974405], + [-45.27821248913906, -23.575419632953764], + [-45.278220489150904, -23.575410632931376], + [-45.27822748915571, -23.575400632910714], + [-45.278235489167585, -23.57539163288835], + [-45.27824348917685, -23.575381632865422], + [-45.27825148918862, -23.57537263284313], + [-45.2782594891979, -23.57536263282019], + [-45.278267489209675, -23.575353632797885], + [-45.27827548921895, -23.57534363277489], + [-45.27828348923071, -23.575334632752604], + [-45.27829148923998, -23.57532463272976], + [-45.278299489251765, -23.57531563270736], + [-45.27830748926102, -23.575305632684447], + [-45.27831548927023, -23.575295632661533], + [-45.27832448928644, -23.57528663263704], + [-45.27833348930011, -23.575276632611953], + [-45.27834248931109, -23.57526563258631], + [-45.27835348933349, -23.575255632556935], + [-45.27836348934894, -23.575244632529113], + [-45.27837548937314, -23.575233632497017], + [-45.27838648939289, -23.575222632466946], + [-45.27839848941707, -23.575211632434833], + [-45.27841048944127, -23.575200632402677], + [-45.27842248946548, -23.57518963237051], + [-45.27843448948959, -23.575178632338332], + [-45.2784454895094, -23.575167632308414], + [-45.2784574895336, -23.575156632276258], + [-45.27846948955781, -23.57514563224407], + [-45.27848148958198, -23.575134632211906], + [-45.2784924896044, -23.575124632182522], + [-45.27850448962851, -23.57511363215036], + [-45.278515489650935, -23.575103632120904], + [-45.278526489673325, -23.575093632091463], + [-45.27853848970011, -23.575083632059897], + [-45.27855048972422, -23.575072632027727], + [-45.27856448975459, -23.57506063199064], + [-45.27857948978684, -23.575047631950856], + [-45.27859548981814, -23.575032631907906], + [-45.278614489857546, -23.575015631857134], + [-45.2786324898951, -23.574999631809202], + [-45.278651489934425, -23.574982631758548], + [-45.27866848997028, -23.574967631713307], + [-45.27868348999979, -23.574953631672976], + [-45.27869649002586, -23.574941631638175], + [-45.278708490049965, -23.574930631605906], + [-45.278720490076736, -23.574920631574365], + [-45.27873149010173, -23.574911631545444], + [-45.27874349013109, -23.574902631514455], + [-45.27875449015343, -23.574892631484996], + [-45.27876649018277, -23.574883631453897], + [-45.278778490212126, -23.57487463142292], + [-45.27879049023893, -23.574864631391264], + [-45.2788024902683, -23.574855631360276], + [-45.27881449029758, -23.574846631329187], + [-45.278826490324434, -23.57483663129755], + [-45.27883749034933, -23.574827631268747], + [-45.2788494903761, -23.574817631237092], + [-45.27886149040548, -23.57480863120601], + [-45.27887349043227, -23.574798631174374], + [-45.27888549046154, -23.57478963114336], + [-45.27889749048831, -23.57477963111174], + [-45.27890949051509, -23.574769631080187], + [-45.27892249054882, -23.57476063104692], + [-45.27893449057552, -23.57475063101532], + [-45.27894649060239, -23.574740630983747], + [-45.27895949063615, -23.574731630950478], + [-45.278971490662826, -23.57472163091884], + [-45.27898449069398, -23.574711630885037], + [-45.27899649072335, -23.574702630854027], + [-45.2790094907571, -23.574693630820853], + [-45.27902149078379, -23.574683630789227], + [-45.27903449081761, -23.574674630755965], + [-45.27904749084877, -23.57466463072215], + [-45.27905949087806, -23.574655630691154], + [-45.27907249091178, -23.574646630657877], + [-45.279084490941145, -23.5746376306268], + [-45.27909649097311, -23.57462963059634], + [-45.27910949100943, -23.574621630563623], + [-45.27912149104137, -23.574613630533154], + [-45.27913349107321, -23.57460563050262], + [-45.27914549110776, -23.574598630472696], + [-45.279157491139706, -23.574590630442163], + [-45.27916949117424, -23.57458363041223], + [-45.27918149120868, -23.57457663038223], + [-45.279193491240626, -23.57456863035178], + [-45.279205491275235, -23.574561630321757], + [-45.2792174913071, -23.57455363029122], + [-45.27922949133904, -23.574545630260772], + [-45.279242491377936, -23.574538630228652], + [-45.27925449140987, -23.574530630198105], + [-45.279266491441746, -23.574522630167653], + [-45.279279491478064, -23.574514630134924], + [-45.279292491514376, -23.574506630102185], + [-45.27930549154813, -23.574497630069025], + [-45.27932049159061, -23.5744886300314], + [-45.27933749163671, -23.574477629988433], + [-45.27935549168716, -23.574466629943096], + [-45.2793764917431, -23.574452629889805], + [-45.27939949181026, -23.57443962983261], + [-45.27942249187235, -23.574424629774352], + [-45.27944549193704, -23.574410629716592], + [-45.27946649199804, -23.574398629664273], + [-45.2794854920503, -23.574386629616313], + [-45.279502492099034, -23.574376629573795], + [-45.27951749214145, -23.574367629536265], + [-45.27953149218222, -23.574359629501465], + [-45.27954449221597, -23.574350629468192], + [-45.27955849225659, -23.574342629433296], + [-45.27957149229291, -23.57433462940065], + [-45.2795854923336, -23.57432662936575], + [-45.2795994923743, -23.574318629330946], + [-45.279612492410635, -23.574310629298218], + [-45.279626492448735, -23.574301629262767], + [-45.27964049248685, -23.57429262922741], + [-45.27965349252058, -23.574283629194156], + [-45.27966749255872, -23.574274629158793], + [-45.27968149259683, -23.574265629123346], + [-45.27969449263057, -23.574256629090097], + [-45.27970849266867, -23.574247629054714], + [-45.279721492702315, -23.574238629021462], + [-45.27973549274312, -23.574230628986665], + [-45.27974849277686, -23.574221628953385], + [-45.27976149281308, -23.574213628920646], + [-45.279775492851186, -23.574204628885283], + [-45.27978949288931, -23.574195628849846], + [-45.27980549293359, -23.57418562880961], + [-45.27982349298673, -23.574175628764912], + [-45.27984349304335, -23.574163628714796], + [-45.27986449310443, -23.574151628662502], + [-45.279887493171614, -23.574138628605276], + [-45.27990849323012, -23.574125628552423], + [-45.27992849328933, -23.574114628502922], + [-45.279946493342365, -23.574104628458223], + [-45.279962493389235, -23.574095628418437], + [-45.27997749343171, -23.574086628380904], + [-45.2799924934768, -23.574078628343837], + [-45.28000649352008, -23.57407162830957], + [-45.28002149356256, -23.574062628271932], + [-45.280038493616466, -23.574054628230524], + [-45.280057493673816, -23.574044628183728], + [-45.280078493740056, -23.574034628132512], + [-45.28010149380722, -23.574021628075297], + [-45.28012849389209, -23.574008628009395], + [-45.28015749398045, -23.573993627938027], + [-45.280187494073076, -23.573978627864502], + [-45.28021549415706, -23.573963627795337], + [-45.280242494241904, -23.57395062772952], + [-45.280266494316045, -23.573938627670664], + [-45.280287494379714, -23.57392762761892], + [-45.280306494437035, -23.573917627572047], + [-45.28032249448656, -23.573909627532892], + [-45.28033849453601, -23.57390162749362], + [-45.28035249457661, -23.573893627458812], + [-45.28036649461741, -23.573885627423916], + [-45.280381494662464, -23.573877627386818], + [-45.28039749470935, -23.573868627347135], + [-45.28041549476496, -23.573859627303055], + [-45.28043649482855, -23.573848627251213], + [-45.28045749488963, -23.57383662719899], + [-45.28048049496196, -23.57382562714286], + [-45.280501495023046, -23.573813627090573], + [-45.280522495086636, -23.573802627038802], + [-45.28054049514235, -23.573793626994743], + [-45.28055649518921, -23.573784626954936], + [-45.28057149523686, -23.573777626918492], + [-45.28058549527754, -23.573769626883596], + [-45.28059949532073, -23.573762626849216], + [-45.28061449536591, -23.573754626812242], + [-45.2806294954084, -23.573745626774617], + [-45.28064549545783, -23.573737626735454], + [-45.28066149550469, -23.57372862669567], + [-45.28067749555415, -23.573720626656414], + [-45.28069349560101, -23.573711626616703], + [-45.28070949564786, -23.57370262657699], + [-45.280725495697304, -23.57369462653773], + [-45.28074149574426, -23.573685626497927], + [-45.28075849579552, -23.573676626455963], + [-45.28077349583792, -23.573667626418437], + [-45.28079049588924, -23.57365862637655], + [-45.280806495938684, -23.573650626337287], + [-45.28082149598376, -23.57364262630021], + [-45.28083749603319, -23.573634626261054], + [-45.280852496078275, -23.573626626223973], + [-45.280868496130296, -23.573619626185334], + [-45.28088449617975, -23.573611626146175], + [-45.28090349624241, -23.573603626100386], + [-45.28092349630421, -23.57359362605133], + [-45.280946496379194, -23.57358362599577], + [-45.28097149646029, -23.573572625935387], + [-45.28099749654583, -23.57356162587274], + [-45.28102149662256, -23.573550625814427], + [-45.28104549669935, -23.57353962575614], + [-45.28106549676371, -23.573530625707704], + [-45.281083496821985, -23.573522625664108], + [-45.281099496876614, -23.573516625626024], + [-45.28111349691988, -23.57350962559167], + [-45.28112549695959, -23.573504625562833], + [-45.28113749700177, -23.57350062553455], + [-45.28114749703268, -23.573495625509985], + [-45.28115749706622, -23.573491625486025], + [-45.28116749710232, -23.57348862546265], + [-45.28117649713136, -23.573484625440884], + [-45.28118649716488, -23.573480625416867], + [-45.28119549719403, -23.573476625395106], + [-45.28120449722568, -23.57347362537389], + [-45.28121449725919, -23.573469625349855], + [-45.281223497288245, -23.573465625328115], + [-45.28123249731741, -23.573461625306354], + [-45.2812424973509, -23.57345762528241], + [-45.28125249738434, -23.573453625258374], + [-45.28126349741964, -23.57344862523172], + [-45.28127449745497, -23.573443625205055], + [-45.28128749749645, -23.573437625173415], + [-45.281301497542294, -23.5734316251397], + [-45.28131549758559, -23.573424625105325], + [-45.28133049763323, -23.573417625068867], + [-45.28134549768089, -23.573410625032412], + [-45.28136049772852, -23.573403624995898], + [-45.28137549777619, -23.57339662495945], + [-45.28139049782383, -23.573389624922896], + [-45.28140549786891, -23.573381624885826], + [-45.28142049791654, -23.573374624849393], + [-45.281435497964196, -23.573367624812946], + [-45.28145049801184, -23.5733606247764], + [-45.28146549806208, -23.573354624740492], + [-45.28148049810973, -23.573347624703967], + [-45.28149649816694, -23.57334262466644], + [-45.28151149821717, -23.573336624630432], + [-45.28152749827436, -23.573331624592864], + [-45.28154649834478, -23.573326624548805], + [-45.28156949843002, -23.5733206244955], + [-45.28159749853466, -23.573313624430668], + [-45.281630498655986, -23.57330462435385], + [-45.28166649878796, -23.573294624269966], + [-45.28170449892612, -23.57328362418128], + [-45.2817414990624, -23.573273624095226], + [-45.28177449918374, -23.573264624018414], + [-45.28180149928399, -23.57325762395584], + [-45.28182449936932, -23.57325162390253], + [-45.28184349943963, -23.573246623858378], + [-45.281859499499426, -23.57324262382136], + [-45.2818754995592, -23.573238623784373], + [-45.281890499617184, -23.57323562375009], + [-45.28190549967516, -23.57323262371581], + [-45.281922499741896, -23.573229623677083], + [-45.28194049981301, -23.573226623636288], + [-45.281960499890374, -23.57322262359046], + [-45.28198449998774, -23.57321962353662], + [-45.28200950008442, -23.573214623479466], + [-45.28203450018366, -23.57321062342288], + [-45.28205950028283, -23.57320662336628], + [-45.28208250037331, -23.573202623313946], + [-45.282103500457566, -23.573199623266625], + [-45.28212250053314, -23.573196623223627], + [-45.28213950059987, -23.57319362318499], + [-45.282155500664835, -23.573191623149068], + [-45.28217250073154, -23.573188623110354], + [-45.28218950080086, -23.573186623072257], + [-45.28220850087644, -23.57318362302926], + [-45.28222950095809, -23.57317962298131], + [-45.28225350105553, -23.57317662292741], + [-45.28228050116356, -23.573172622866455], + [-45.282310501282005, -23.573167622798465], + [-45.28234350141377, -23.573162622723896], + [-45.282377501549824, -23.57315762264707], + [-45.282410501679, -23.57315162257199], + [-45.28244050180013, -23.573147622504514], + [-45.28246750190804, -23.573143622443478], + [-45.28249150200292, -23.573139622389057], + [-45.28251250208716, -23.573136622341625], + [-45.28253250216454, -23.57313262229591], + [-45.282550502235644, -23.57312962225511], + [-45.28256750230495, -23.573127622217008], + [-45.28258450237177, -23.57312462217838], + [-45.28260150243842, -23.57312162213974], + [-45.28261750250086, -23.573118622103276], + [-45.282634502567596, -23.57311562206457], + [-45.282650502629956, -23.573112622028102], + [-45.282666502692315, -23.573109621991637], + [-45.282682502752095, -23.573105621954635], + [-45.28269850281451, -23.57310262191806], + [-45.28271550288116, -23.57309962187946], + [-45.28273150294353, -23.57309662184299], + [-45.28274750300598, -23.57309362180655], + [-45.282763503068324, -23.57309062177], + [-45.28277950313326, -23.57308862173407], + [-45.28279550319563, -23.573085621697608], + [-45.28281150326057, -23.573083621661684], + [-45.28282750332809, -23.57308262162632], + [-45.282844503397406, -23.573080621588236], + [-45.282863503478154, -23.573079621546324], + [-45.28288450356498, -23.57307762149952], + [-45.28290850366758, -23.573076621446734], + [-45.28293350377189, -23.573074621391203], + [-45.282960503885086, -23.573072621331352], + [-45.282985503989494, -23.57307062127576], + [-45.28300950408944, -23.573068621222415], + [-45.28303050417892, -23.573067621176143], + [-45.28304950425697, -23.57306562113368], + [-45.28306650432889, -23.57306462109614], + [-45.283083504400885, -23.573063621058584], + [-45.283099504465724, -23.573061621022667], + [-45.28311550453334, -23.57306062098729], + [-45.283132504602655, -23.57305862094912], + [-45.283150504678915, -23.573057620909385], + [-45.28316750474832, -23.573055620871294], + [-45.28318550482452, -23.573054620831563], + [-45.28320250489648, -23.573053620794003], + [-45.28322050497019, -23.573051620753745], + [-45.2832375050421, -23.57305062071618], + [-45.28325550511579, -23.57304862067592], + [-45.283273505192135, -23.57304762063609], + [-45.28329050526405, -23.573046620598543], + [-45.28330850534033, -23.573045620558812], + [-45.28332550540972, -23.573043620520707], + [-45.28334150547715, -23.573042620485328], + [-45.28335750554467, -23.57304162044997], + [-45.283373505614875, -23.573041620415122], + [-45.28338750567356, -23.573040620384106], + [-45.28340150573231, -23.57303962035307], + [-45.28341550579377, -23.5730396203226], + [-45.283428505848065, -23.57303862029376], + [-45.28344150590503, -23.57303862026545], + [-45.28345550596381, -23.573037620234427], + [-45.283468506018195, -23.573036620205578], + [-45.28348250607698, -23.57303562017457], + [-45.28349550613396, -23.573035620146243], + [-45.28350950619272, -23.573034620115244], + [-45.28352250624713, -23.57303362008639], + [-45.28353650630587, -23.573032620055365], + [-45.28355150637161, -23.5730326200227], + [-45.283567506439134, -23.573031619987322], + [-45.28358350650666, -23.57303061995194], + [-45.283601506582926, -23.573029619912237], + [-45.28361950666187, -23.573029619873044], + [-45.28363850674244, -23.57302861983114], + [-45.2836565068188, -23.57302761979138], + [-45.28367550690203, -23.57302761975002], + [-45.28369450698277, -23.573026619708113], + [-45.28371350706341, -23.57302561966613], + [-45.283732507146645, -23.573025619624765], + [-45.283751507227294, -23.573024619582856], + [-45.28377050730795, -23.573023619540933], + [-45.28378950739126, -23.573023619499565], + [-45.283807507467536, -23.573022619459852], + [-45.283826507548284, -23.573021619417915], + [-45.283845507626346, -23.573019619375476], + [-45.283864507707, -23.573018619333578], + [-45.28388650779559, -23.573015619283957], + [-45.283912507901896, -23.573012619225715], + [-45.28394450803178, -23.573008619153864], + [-45.28398650820548, -23.57300461906027], + [-45.284038508417794, -23.572998618943704], + [-45.284096508653874, -23.57299161881363], + [-45.28415750890564, -23.57298561867759], + [-45.28421650914609, -23.57297861854526], + [-45.28426750935663, -23.572973618431398], + [-45.284309509527745, -23.57296861833723], + [-45.284341509660294, -23.572965618265936], + [-45.28436750976652, -23.572962618207715], + [-45.284388509853315, -23.572960618160895], + [-45.28440750993146, -23.57295861811842], + [-45.284425510005065, -23.572956618078074], + [-45.28444351008144, -23.572955618038357], + [-45.28446051015332, -23.572954618000793], + [-45.284478510227, -23.572952617960535], + [-45.28449651030337, -23.572951617920783], + [-45.2845135103726, -23.57294961788267], + [-45.284531510448936, -23.572948617842957], + [-45.28454851051825, -23.572946617804856], + [-45.284566510591944, -23.57294461776456], + [-45.28458351066386, -23.57294361772699], + [-45.28460151073752, -23.572941617686737], + [-45.284618510806936, -23.572939617648554], + [-45.28463551087882, -23.572938617611005], + [-45.284653510952495, -23.572936617570722], + [-45.28466951101744, -23.572934617534827], + [-45.28468651108933, -23.572933617497245], + [-45.28470251115437, -23.572931617461332], + [-45.28471851121921, -23.572929617425313], + [-45.28473351128243, -23.572928617392108], + [-45.28474951134737, -23.572926617356206], + [-45.28476451140785, -23.57292461732245], + [-45.28478051147287, -23.572922617286537], + [-45.284796511540385, -23.572921617251147], + [-45.28481151160094, -23.5729196172174], + [-45.284827511665874, -23.5729176171815], + [-45.284842511726424, -23.572915617147746], + [-45.28485851179137, -23.57291361711181], + [-45.284874511856295, -23.5729116170758], + [-45.284890511921255, -23.572909617039883], + [-45.284907511993204, -23.572908617002337], + [-45.28492451206253, -23.572906616964232], + [-45.28494251213621, -23.572904616923946], + [-45.28496051221247, -23.57290361688424], + [-45.284979512290526, -23.57290161684178], + [-45.28499751236691, -23.572900616802023], + [-45.28501651244496, -23.572898616759595], + [-45.28503451252123, -23.572897616719835], + [-45.285053512601884, -23.57289661667785], + [-45.28507151267565, -23.57289461663757], + [-45.28509051275629, -23.572893616595664], + [-45.28510851282998, -23.57289161655538], + [-45.28512751291071, -23.572890616513465], + [-45.28514651299135, -23.572889616471546], + [-45.28516451306505, -23.572887616431192], + [-45.28518351314568, -23.57288661638928], + [-45.28520251322642, -23.572885616347367], + [-45.285222513314025, -23.572885616303818], + [-45.28524151339476, -23.572884616261906], + [-45.285261513479774, -23.57288361621782], + [-45.28528051356299, -23.572883616176423], + [-45.2853005136506, -23.572883616132884], + [-45.28531951373134, -23.57288261609098], + [-45.28533951381894, -23.572882616047433], + [-45.28535851390217, -23.572882616006073], + [-45.28537851398986, -23.572882615962506], + [-45.285397514073075, -23.572882615921152], + [-45.285417514160685, -23.572882615877592], + [-45.28543651424394, -23.572882615836203], + [-45.285455514324646, -23.572881615794312], + [-45.28547351440351, -23.572881615755115], + [-45.285490514475484, -23.572880615717548], + [-45.28550751454987, -23.572880615680543], + [-45.28552351461746, -23.57287961564516], + [-45.285539514684984, -23.572878615609767], + [-45.2855555147525, -23.572877615574402], + [-45.28557151482004, -23.572876615539016], + [-45.28558751488754, -23.572875615503616], + [-45.28560351495505, -23.572874615468244], + [-45.285619515022574, -23.57287361543287], + [-45.28563551509009, -23.572872615397497], + [-45.2856515151576, -23.572871615362107], + [-45.28566651521816, -23.572869615328344], + [-45.28568251528567, -23.57286861529296], + [-45.28569751535148, -23.572868615260322], + [-45.285713515419005, -23.572867615224837], + [-45.28572751547769, -23.572866615193842], + [-45.2857425155409, -23.572865615160612], + [-45.285756515602166, -23.572865615130123], + [-45.28577051566094, -23.572864615099082], + [-45.28578451572236, -23.572864615068628], + [-45.28579951578543, -23.5728636150354], + [-45.28581351584678, -23.572863615004934], + [-45.28582751590822, -23.572863614974437], + [-45.28584151596687, -23.572862614943418], + [-45.28585551602824, -23.572862614912932], + [-45.28586951608966, -23.57286261488244], + [-45.285883516150925, -23.572862614851967], + [-45.285898516216655, -23.572862614819297], + [-45.28591351628237, -23.572862614786644], + [-45.28592951635249, -23.572862614751774], + [-45.28594551642266, -23.572862614716936], + [-45.285963516504104, -23.572863614678294], + [-45.28598051657856, -23.57286361464128], + [-45.28599951666438, -23.57286461460046], + [-45.28601751674323, -23.572864614561247], + [-45.28603551682474, -23.572865614522595], + [-45.28605351690359, -23.57286561448339], + [-45.286072516986806, -23.572865614442033], + [-45.28609051706826, -23.572866614403374], + [-45.286108517147206, -23.572866614364173], + [-45.28612751723044, -23.572866614322788], + [-45.28614551730926, -23.572866614283594], + [-45.28616351738821, -23.572866614244397], + [-45.286181517466964, -23.572866614205225], + [-45.286198517541536, -23.572866614168195], + [-45.286216517620396, -23.572866614128998], + [-45.286235517703616, -23.57286661408761], + [-45.2862460177496, -23.57286661406475], + [-45.28625651779568, -23.572866614041896], + [-45.28628151790783, -23.572867613988002], + [-45.28631151803919, -23.57286761392266], + [-45.28634751819956, -23.572868613844893], + [-45.28638851838181, -23.572869613756158], + [-45.28642951856397, -23.57287061366742], + [-45.2864705187488, -23.572872613579214], + [-45.28650651890917, -23.57287361350137], + [-45.28653651904063, -23.57287361343604], + [-45.28656151915269, -23.572874613382147], + [-45.28658251924733, -23.57287561333694], + [-45.28660151933314, -23.572876613296113], + [-45.286618519412876, -23.572878613260187], + [-45.2866355194925, -23.572880613224246], + [-45.286652519574744, -23.572883613188864], + [-45.28667051966135, -23.57288661315126], + [-45.286687519743566, -23.572889613115972], + [-45.28670551983025, -23.572892613078395], + [-45.28672351991678, -23.572895613040814], + [-45.28674052000166, -23.572899613006058], + [-45.28675852008827, -23.572902612968484], + [-45.28677552017308, -23.57290661293362], + [-45.286793520259785, -23.572909612896044], + [-45.286810520344496, -23.572913612861285], + [-45.28682852043118, -23.572916612823718], + [-45.286846520520356, -23.57292061278668], + [-45.28686452060705, -23.572923612749104], + [-45.28688252069625, -23.572927612712068], + [-45.286900520785416, -23.572931612675138], + [-45.28691852087459, -23.57293561263809], + [-45.28693752096558, -23.57293861259836], + [-45.28695552105487, -23.57294261256139], + [-45.28697452114842, -23.57294661252218], + [-45.2869935212394, -23.572949612482436], + [-45.287011521326, -23.572952612444872], + [-45.28703052141706, -23.57295561240511], + [-45.28704852150367, -23.572958612367618], + [-45.287067521594636, -23.572961612327852], + [-45.2870865216857, -23.572964612288096], + [-45.28710452177231, -23.57296761225055], + [-45.28712352186327, -23.57297061221079], + [-45.28714152194989, -23.572973612173207], + [-45.28715952203657, -23.572976612135733], + [-45.28717752212318, -23.572979612098152], + [-45.287195522209764, -23.57298261206059], + [-45.28721552230513, -23.572985612018734], + [-45.2872375224119, -23.57298961197299], + [-45.28726152252734, -23.57299361192288], + [-45.287288522658656, -23.5729986118668], + [-45.28731752280114, -23.573004611806983], + [-45.28734752294809, -23.57301061174488], + [-45.28737752309504, -23.57301661168281], + [-45.28740452322894, -23.57302261162735], + [-45.28742852334697, -23.57302761157786], + [-45.28745052345374, -23.57303161153213], + [-45.28747052355169, -23.57303561149073], + [-45.28748852364088, -23.57303961145369], + [-45.287506523730066, -23.57304361141665], + [-45.287524523821894, -23.573048611380262], + [-45.28754352391547, -23.573052611341055], + [-45.28756252401162, -23.573057611302374], + [-45.28758152410527, -23.57306161126326], + [-45.28760052420133, -23.573066611224583], + [-45.287618524290586, -23.57307061118753], + [-45.28763852439111, -23.573075611146777], + [-45.28765652448038, -23.573079611109744], + [-45.28767552457395, -23.573083611070555], + [-45.28769452466751, -23.57308761103131], + [-45.28771352476107, -23.5730916109921], + [-45.28773252485473, -23.57309561095298], + [-45.28775152494827, -23.57309961091377], + [-45.28777052504182, -23.573103610874643], + [-45.28778952513547, -23.573107610835432], + [-45.28780752522208, -23.57311061079785], + [-45.28782652531564, -23.573114610758626], + [-45.28784452540224, -23.573117610721145], + [-45.287862525488926, -23.57312061068356], + [-45.287881525582485, -23.573124610644367], + [-45.28789952566909, -23.573127610606765], + [-45.28791752575828, -23.573131610569742], + [-45.287935525847445, -23.573135610532713], + [-45.28795352593672, -23.573139610495765], + [-45.28797252603028, -23.573143610456537], + [-45.287990526119565, -23.573147610419593], + [-45.28800852620875, -23.573151610382542], + [-45.28802652629535, -23.573154610344986], + [-45.28804352638015, -23.573158610310117], + [-45.28806052646495, -23.573162610275343], + [-45.288077526549856, -23.573166610240502], + [-45.288094526631994, -23.5731696102051], + [-45.28811152671688, -23.573173610170247], + [-45.28813152681741, -23.573178610129368], + [-45.2881525269224, -23.573183610086428], + [-45.28817752704481, -23.57318861003469], + [-45.28820352717682, -23.573195609981962], + [-45.288229527306264, -23.573201609928574], + [-45.288255527435616, -23.57320760987529], + [-45.28828052756078, -23.573213609824087], + [-45.28830152766567, -23.57321860978105], + [-45.288320527761826, -23.573223609742463], + [-45.288338527851, -23.573227609705402], + [-45.28835452793144, -23.573231609672728], + [-45.28836952800759, -23.57323560964231], + [-45.28838552808535, -23.5732386096091], + [-45.28840252817024, -23.573242609574248], + [-45.288420528259415, -23.573246609537208], + [-45.288440528359935, -23.573251609496428], + [-45.28846252846929, -23.573256609451246], + [-45.28848852859874, -23.57326260939783], + [-45.288515528732475, -23.573268609342367], + [-45.28854352887067, -23.57327460928465], + [-45.288570529004474, -23.573280609229187], + [-45.28859652913135, -23.573285609175255], + [-45.288618529240715, -23.573290609130023], + [-45.28863852934122, -23.573295609089172], + [-45.288656529430405, -23.573299609052228], + [-45.288673529517816, -23.57330460901789], + [-45.2886905296026, -23.57330860898305], + [-45.28870652968831, -23.573314608951527], + [-45.288722529773814, -23.57332060892003], + [-45.2887385298595, -23.573326608888415], + [-45.288754529945116, -23.57333260885681], + [-45.28877053003329, -23.573339608825783], + [-45.28878653011889, -23.573345608794252], + [-45.28880353020886, -23.573351608760486], + [-45.28881953029447, -23.573357608728976], + [-45.28883553038008, -23.57336360869736], + [-45.2888515304631, -23.573368608665305], + [-45.28886753054879, -23.573374608633692], + [-45.2888835306343, -23.573380608602097], + [-45.288900530724355, -23.573386608568413], + [-45.28891753081434, -23.573392608534622], + [-45.28893453090433, -23.573398608500945], + [-45.28895153099428, -23.57340460846714], + [-45.28896853108427, -23.573410608433473], + [-45.288986531178715, -23.573416608397505], + [-45.28900453127565, -23.57342360836209], + [-45.28902253137, -23.573429608326236], + [-45.28904053146695, -23.57343660829082], + [-45.28905853156128, -23.57344260825494], + [-45.28907653165573, -23.57344860821897], + [-45.289094531752674, -23.573455608183643], + [-45.289112531849604, -23.57346260814822], + [-45.289130531943954, -23.57346860811229], + [-45.2891485320384, -23.57347460807638], + [-45.28916653213535, -23.57348160804109], + [-45.2891845322297, -23.57348760800511], + [-45.28920253232414, -23.573493607969166], + [-45.28921953241404, -23.573499607935453], + [-45.28923753250846, -23.573505607899506], + [-45.28925453259587, -23.573510607865153], + [-45.289272532690205, -23.573516607829305], + [-45.289290532781976, -23.573521607792802], + [-45.289307532871945, -23.573527607759104], + [-45.28932553296381, -23.57353260772262], + [-45.28934253305379, -23.573538607688832], + [-45.289360533145555, -23.57354360765231], + [-45.28937753323552, -23.573549607618638], + [-45.28939553332731, -23.573554607582135], + [-45.28941253341479, -23.573559607547896], + [-45.28942953350475, -23.57356560751413], + [-45.28944653359214, -23.57357060747989], + [-45.28946353367954, -23.573575607445555], + [-45.28947953376256, -23.573580607413408], + [-45.28949553384307, -23.573584607380745], + [-45.28951353393475, -23.573589607344303], + [-45.289532534033576, -23.573595607306174], + [-45.289553534141056, -23.573601607263765], + [-45.28957753426433, -23.573608607215274], + [-45.28960353439637, -23.573615607162523], + [-45.28963053453535, -23.57362360710804], + [-45.289656534669966, -23.57363160705573], + [-45.28968053479316, -23.573638607007357], + [-45.28970153490072, -23.573644606964926], + [-45.28972053499944, -23.573650606926776], + [-45.28973753508683, -23.573655606892462], + [-45.28975253516548, -23.57366060686258], + [-45.28976553523537, -23.57366560683698], + [-45.28977853530269, -23.57366960681081], + [-45.28979153537258, -23.573674606785197], + [-45.28980253543364, -23.573679606764046], + [-45.28981453549914, -23.57368460674061], + [-45.28982553556028, -23.57368960671945], + [-45.28983653562142, -23.573694606698187], + [-45.28984853568427, -23.57369860667422], + [-45.28985953574541, -23.573703606653048], + [-45.28987053580396, -23.573707606631253], + [-45.28988253586947, -23.573712606607817], + [-45.289893535927945, -23.573716606586032], + [-45.28990453598917, -23.573721606564856], + [-45.28991653605204, -23.57372560654088], + [-45.28992753611315, -23.57373060651971], + [-45.28993853617171, -23.57373460649792], + [-45.289950536237235, -23.573739606474497], + [-45.28996153629569, -23.57374360645268], + [-45.289972536354256, -23.573747606430974], + [-45.28998453641978, -23.57375260640754], + [-45.28999553647834, -23.573756606385743], + [-45.29000753654374, -23.573761606362297], + [-45.29001853660489, -23.57376660634113], + [-45.29003053666784, -23.573770606317172], + [-45.29004153673156, -23.573776606296548], + [-45.290052536792594, -23.573781606275293], + [-45.29006453685814, -23.573786606251858], + [-45.29007653692362, -23.57379160622849], + [-45.29008853698914, -23.573796606205068], + [-45.29010053705726, -23.57380260618219], + [-45.29011353712974, -23.57380860615722], + [-45.290128537210954, -23.573814606127765], + [-45.290142537287714, -23.573820606100618], + [-45.29015853737601, -23.57382760606953], + [-45.29017353745981, -23.573834606040656], + [-45.29018953754543, -23.573840606009124], + [-45.290205537633604, -23.57384760597806], + [-45.2902215377192, -23.57385360594655], + [-45.2902375378048, -23.57385960591503], + [-45.290252537888605, -23.57386660588615], + [-45.29026853797421, -23.573872605854536], + [-45.29028453805991, -23.573878605822927], + [-45.29030053814542, -23.573884605791417], + [-45.29031553822673, -23.573890605762], + [-45.290329538301, -23.573895605734286], + [-45.29034353837777, -23.573901605707025], + [-45.29035553844328, -23.573906605683685], + [-45.29036753850879, -23.573911605660257], + [-45.29037853856735, -23.573915605638437], + [-45.29038853862146, -23.573919605618826], + [-45.29039953868259, -23.57392460559758], + [-45.29040953873677, -23.573928605578047], + [-45.29041953879095, -23.573932605558436], + [-45.290429538845046, -23.5739366055389], + [-45.290439538901815, -23.573941605519828], + [-45.290450538960364, -23.573945605497993], + [-45.29046053901447, -23.573949605478475], + [-45.29047053906864, -23.57395360545886], + [-45.29048153912978, -23.57395860543763], + [-45.29049253919093, -23.573963605416335], + [-45.290504539256354, -23.573968605392917], + [-45.29051653932187, -23.573973605369552], + [-45.29052953939435, -23.57397960534458], + [-45.2905435394712, -23.573985605317333], + [-45.29055753955062, -23.573992605290623], + [-45.2905715396275, -23.573998605263455], + [-45.29058553970692, -23.574005605236756], + [-45.29059953978378, -23.574011605209478], + [-45.29061353986321, -23.57401860518287], + [-45.29062753994008, -23.574024605155717], + [-45.2906415400195, -23.574031605128994], + [-45.29065554009634, -23.574037605101744], + [-45.29066954017579, -23.574044605075116], + [-45.29068354025254, -23.57405060504788], + [-45.290697540329504, -23.574056605020708], + [-45.29071154040376, -23.574061604992895], + [-45.29072554047794, -23.574066604965203], + [-45.29073854054533, -23.574070604939056], + [-45.29075254061692, -23.57407460491072], + [-45.290766540688615, -23.574078604882384], + [-45.2907805407578, -23.574081604853507], + [-45.29079354082501, -23.57408560482745], + [-45.29080754089411, -23.57408860479855], + [-45.290821540965794, -23.57409260477024], + [-45.29083554103748, -23.574096604741904], + [-45.29084854110221, -23.5740996047153], + [-45.29086254117387, -23.57410360468695], + [-45.290876541242966, -23.574106604658077], + [-45.29089054131467, -23.574110604629844], + [-45.29090554139329, -23.57411560459987], + [-45.29091954146498, -23.574119604571532], + [-45.29093554155059, -23.57412560453992], + [-45.29095154163619, -23.57413160450841], + [-45.29096754172179, -23.574137604476782], + [-45.29098354180996, -23.57414460444581], + [-45.29099954189817, -23.574151604414734], + [-45.29101654199073, -23.57415860438158], + [-45.291032542078995, -23.57416560435051], + [-45.29104954217157, -23.57417260431727], + [-45.29106554225975, -23.574179604286307], + [-45.29108154234794, -23.574186604255306], + [-45.29109854244051, -23.574193604222046], + [-45.2911145425261, -23.574199604190543], + [-45.29113054261429, -23.57420660415947], + [-45.2911465426999, -23.574212604127844], + [-45.29116154277862, -23.57421760409789], + [-45.29117554285023, -23.57422160406962], + [-45.29118954291932, -23.57422460404077], + [-45.29120254298404, -23.574227604014045], + [-45.29121554304875, -23.57423060398747], + [-45.2912285431109, -23.574232603960215], + [-45.291241543175616, -23.574235603933523], + [-45.29125454323775, -23.574237603906283], + [-45.29126754330238, -23.574240603879563], + [-45.29128054336719, -23.57424360385297], + [-45.29129354342925, -23.574245603825723], + [-45.29130654349396, -23.574248603799006], + [-45.29131954355611, -23.57425060377178], + [-45.291331543616444, -23.574253603747273], + [-45.29134454367858, -23.574255603720022], + [-45.29135754374073, -23.574257603692786], + [-45.29136954379848, -23.574259603667727], + [-45.29138154385614, -23.574261603642668], + [-45.29139354391133, -23.574262603617164], + [-45.29140454396471, -23.57426460359428], + [-45.291416544019896, -23.574265603568698], + [-45.29142854407496, -23.57426660354305], + [-45.29144054413024, -23.574267603517463], + [-45.29145254418791, -23.5742696034924], + [-45.29146354423872, -23.574270603468975], + [-45.2914755442939, -23.574271603443485], + [-45.291487544349074, -23.574272603417885], + [-45.29149954440682, -23.5742746033928], + [-45.2915115444619, -23.57427560336721], + [-45.29152354451967, -23.574277603342136], + [-45.291536544584396, -23.574280603315433], + [-45.29154954465171, -23.574284603289296], + [-45.29156354472339, -23.574288603261046], + [-45.2915795448064, -23.574293603228885], + [-45.29159754490075, -23.574299603192937], + [-45.29161654500476, -23.57430760315595], + [-45.29163954512614, -23.574315603110268], + [-45.291663545254586, -23.574324603062852], + [-45.29168854538733, -23.57433360301332], + [-45.29171254551576, -23.574342602965913], + [-45.291734545632885, -23.57435060292239], + [-45.29175454573857, -23.574357602882696], + [-45.29177154583115, -23.57436460284944], + [-45.29178754591414, -23.574369602817285], + [-45.29180154599099, -23.574375602790028], + [-45.29181454606089, -23.574380602764503], + [-45.29182654612381, -23.574384602740512], + [-45.29183754618497, -23.574389602719272], + [-45.29184854624345, -23.57439360269756], + [-45.291859546301986, -23.574397602675727], + [-45.291870546363135, -23.574402602654587], + [-45.291881546421685, -23.574406602632777], + [-45.29189154647579, -23.57441060261314], + [-45.29190254653693, -23.574415602591888], + [-45.29191354659548, -23.57441960257008], + [-45.29192354665217, -23.574424602551087], + [-45.29193454671071, -23.57442860252929], + [-45.29194554676928, -23.57443260250748], + [-45.29195554682603, -23.57443760248848], + [-45.291965546882714, -23.574442602469386], + [-45.29197554694207, -23.574448602450968], + [-45.291985546998845, -23.574453602431877], + [-45.2919945470564, -23.574460602416075], + [-45.292003547111285, -23.574466602399692], + [-45.292012547168746, -23.574473602383964], + [-45.292021547223726, -23.57447960236768], + [-45.29203054728131, -23.574486602351865], + [-45.29203954733626, -23.5744926023356], + [-45.292048547393755, -23.57449960231976], + [-45.292056547444275, -23.57450560230557], + [-45.292065547499234, -23.57451160228932], + [-45.292074547556794, -23.574518602273475], + [-45.29208354761177, -23.574524602257213], + [-45.29209154766229, -23.57453060224302], + [-45.292099547712816, -23.57453660222893], + [-45.29210754776339, -23.574542602214727], + [-45.29211554781141, -23.574547602200024], + [-45.292122547854966, -23.574552602187474], + [-45.29212954789861, -23.57455760217501], + [-45.2921355479378, -23.574562602164647], + [-45.29214254798135, -23.57456760215219], + [-45.29214854802062, -23.5745726021418], + [-45.292155548064265, -23.57457760212926], + [-45.2921625481078, -23.574582602116802], + [-45.29216854814699, -23.574587602106444], + [-45.29217554819063, -23.574592602093894], + [-45.292181548232385, -23.574598602084148], + [-45.29218854827604, -23.5746036020716], + [-45.29219554831957, -23.574608602059136], + [-45.29220354837018, -23.574614602044942], + [-45.2922115484207, -23.574620602030766], + [-45.29222054847826, -23.57462760201505], + [-45.29223054854019, -23.574634601997033], + [-45.29224154860651, -23.574641601976946], + [-45.29225254867272, -23.57464860195677], + [-45.29226254873459, -23.574655601938836], + [-45.29227354880357, -23.57466360191922], + [-45.29228554887417, -23.574670601896923], + [-45.29229654894048, -23.574677601876772], + [-45.29230754900678, -23.574684601856674], + [-45.292318549073094, -23.574691601836506], + [-45.292329549136745, -23.574697601815842], + [-45.29234054920308, -23.574704601795677], + [-45.292351549269384, -23.574711601775494], + [-45.292363549340045, -23.57471860175323], + [-45.292375549408085, -23.574724601730306], + [-45.29238754947619, -23.574730601707504], + [-45.29240054954865, -23.574736601682428], + [-45.292414549625505, -23.574742601655274], + [-45.29242754969798, -23.57474860163019], + [-45.29244054977046, -23.574754601605083], + [-45.292454549844734, -23.57475960157731], + [-45.29246854992158, -23.574765601550144], + [-45.29248154999406, -23.57477160152516], + [-45.29249555006834, -23.574776601497355], + [-45.29250855014072, -23.57478260147235], + [-45.292522550217654, -23.574788601445096], + [-45.29253555028756, -23.57479360141947], + [-45.292548550359946, -23.574799601394403], + [-45.29256155042983, -23.574804601368854], + [-45.29257455049715, -23.574808601342713], + [-45.292587550564456, -23.574812601316637], + [-45.29259955062738, -23.574816601292643], + [-45.29261155069033, -23.574820601268662], + [-45.29262255074622, -23.574823601246305], + [-45.29263455080657, -23.574826601221798], + [-45.29264655086947, -23.574830601197885], + [-45.292657550928034, -23.5748346011761], + [-45.29266955098838, -23.57483760115156], + [-45.29268155105123, -23.574841601127595], + [-45.29269255110977, -23.57484560110579], + [-45.29270455117272, -23.574849601081894], + [-45.29271655123564, -23.574853601057914], + [-45.29272855130115, -23.574858601034556], + [-45.29274155137105, -23.574863601008936], + [-45.29275555144524, -23.57486860098113], + [-45.29277055152904, -23.574875600952332], + [-45.292786551617326, -23.574882600921253], + [-45.292802551705435, -23.574889600890256], + [-45.292819551800655, -23.574897600857554], + [-45.29283755190018, -23.574905600822746], + [-45.29285455199273, -23.57491260078948], + [-45.29287155208799, -23.574920600756872], + [-45.29288955218486, -23.574927600721416], + [-45.29290655228008, -23.574935600688793], + [-45.292923552372635, -23.574942600655632], + [-45.292941552469586, -23.57494960062021], + [-45.29295855256214, -23.574956600586944], + [-45.292975552654724, -23.57496360055378], + [-45.29299155274557, -23.57497160052324], + [-45.29300855283814, -23.574978600490063], + [-45.293023552919365, -23.57498460046062], + [-45.29303955300754, -23.57499160042964], + [-45.29305655310271, -23.57499960039693], + [-45.293074553202324, -23.575007600362117], + [-45.29309555331746, -23.575016600321227], + [-45.293118553444124, -23.575026600276622], + [-45.29314255358033, -23.575038600230897], + [-45.29316855372268, -23.575049600180176], + [-45.29319255385633, -23.575060600133945], + [-45.29321555398289, -23.575070600089315], + [-45.29323655409823, -23.575079600048504], + [-45.29325455420033, -23.575088600014155], + [-45.293270554288526, -23.575095599983165], + [-45.293285554374904, -23.575103599954797], + [-45.29329955445437, -23.575110599928166], + [-45.29331255453458, -23.575119599904703], + [-45.29332655461663, -23.575127599878634], + [-45.293339554699344, -23.575137599855708], + [-45.29335355478397, -23.57514659983015], + [-45.29336655486687, -23.5751565998073], + [-45.29337955494702, -23.575165599783958], + [-45.29339255502985, -23.57517559976103], + [-45.29340555511267, -23.57518559973818], + [-45.29341855519547, -23.575195599715357], + [-45.293431555278204, -23.575205599692435], + [-45.293444555361134, -23.575215599669598], + [-45.29345855544832, -23.575225599644615], + [-45.29347155552846, -23.575234599621226], + [-45.29348655561496, -23.575242599592883], + [-45.2935015556987, -23.57524959956396], + [-45.2935175557817, -23.5752545995318], + [-45.293534555866614, -23.575258599497026], + [-45.293551555948824, -23.575261599461577], + [-45.29356955603283, -23.57526359942344], + [-45.29358755611683, -23.5752655993853], + [-45.29360555620096, -23.57526759934725], + [-45.29362355628496, -23.575269599309106], + [-45.29364155636896, -23.575271599270987], + [-45.293659556453065, -23.57527359923281], + [-45.293677556536984, -23.575275599194697], + [-45.29369455661672, -23.575277599158838], + [-45.29371255670072, -23.57527959912069], + [-45.29372955677778, -23.575280599084174], + [-45.29374555684786, -23.575280599049293], + [-45.29376055691099, -23.575279599016095], + [-45.29377455696715, -23.575277598984485], + [-45.293786557011984, -23.575274598956632], + [-45.293798557054245, -23.575270598928334], + [-45.29380955708943, -23.575265598901563], + [-45.293820557124796, -23.575260598874888], + [-45.29383055715304, -23.575254598849774], + [-45.293841557188316, -23.5752495988231], + [-45.29385255722093, -23.575243598795897], + [-45.293862557249334, -23.575237598770855], + [-45.29387355728194, -23.575231598743546], + [-45.293884557314655, -23.57522559871635], + [-45.293894557345475, -23.57522059869174], + [-45.29390455737122, -23.57521359866618], + [-45.293914557399525, -23.575207598641075], + [-45.29392355742082, -23.57520059861767], + [-45.2939325574396, -23.57519259859372], + [-45.29393955744702, -23.575183598573517], + [-45.293947557461344, -23.575175598551677], + [-45.29395455746877, -23.575166598531556], + [-45.29396155747614, -23.57515759851135], + [-45.293968557480916, -23.575147598490705], + [-45.29397555748835, -23.5751385984705], + [-45.293982557495774, -23.57512959845027], + [-45.29398855749876, -23.575120598432356], + [-45.29399555750611, -23.575111598412146], + [-45.29400255751357, -23.575102598391933], + [-45.294009557520894, -23.57509359837172], + [-45.2940155575239, -23.57508459835379], + [-45.29402155752696, -23.575075598335847], + [-45.29402655752563, -23.575066598320024], + [-45.29402955751808, -23.57505859830905], + [-45.29403255750793, -23.57504959829757], + [-45.294035557500365, -23.575041598286692], + [-45.29403755748843, -23.575033598278015], + [-45.29403855747213, -23.575025598271427], + [-45.29404055746018, -23.575017598262658], + [-45.29404255744833, -23.575009598253974], + [-45.29404355743203, -23.575001598247386], + [-45.294045557422685, -23.574994598239257], + [-45.29404655740637, -23.574986598232744], + [-45.29404855739442, -23.57497859822396], + [-45.29404955737812, -23.57497059821737], + [-45.29405155736619, -23.574962598208696], + [-45.29405255734727, -23.57495359820156], + [-45.29405255732143, -23.574943598196164], + [-45.29405255729556, -23.574933598190665], + [-45.294051557262755, -23.57492259818682], + [-45.29404955722556, -23.57491159818513], + [-45.294048557190145, -23.57489959818082], + [-45.29404655714779, -23.574886598177976], + [-45.29404555711239, -23.574874598173675], + [-45.2940435570726, -23.574862598171467], + [-45.2940425570372, -23.57485059816705], + [-45.294040556997324, -23.574838598164835], + [-45.29403855695497, -23.574825598162082], + [-45.29403755691955, -23.574813598157775], + [-45.294035556879784, -23.574801598155485], + [-45.29403355683742, -23.574788598152814], + [-45.294031556795034, -23.57477559815006], + [-45.29402855674573, -23.574761598148918], + [-45.294026556698185, -23.574746598145083], + [-45.29402255663664, -23.574729598144533], + [-45.29401855657261, -23.574711598143335], + [-45.2940145565033, -23.574691598141158], + [-45.29400955642195, -23.574668598139468], + [-45.294003556328484, -23.57464259813838], + [-45.29399655622536, -23.574614598138314], + [-45.2939905561267, -23.57458659813608], + [-45.29398355602368, -23.574558598135994], + [-45.29397755593013, -23.57453259813485], + [-45.293972555848676, -23.57450959813315], + [-45.2939675557751, -23.57448959813323], + [-45.29396355571105, -23.574471598132043], + [-45.293959555652194, -23.574455598132005], + [-45.29395555559589, -23.574440598132522], + [-45.293951555539536, -23.574425598133043], + [-45.29394755548323, -23.574410598133568], + [-45.293942555422575, -23.574395598136288], + [-45.29393655535229, -23.57437859814007], + [-45.2939305552769, -23.57435959814278], + [-45.29392355518933, -23.574337598145938], + [-45.293916555099216, -23.574314598148693], + [-45.29390855500217, -23.57429059815297], + [-45.293901554911976, -23.574267598155636], + [-45.293894554824384, -23.574245598158882], + [-45.29388855474642, -23.574225598160982], + [-45.29388355468051, -23.574208598162592], + [-45.293879554626805, -23.574194598163643], + [-45.29387755458186, -23.574180598160343], + [-45.29387655454646, -23.57416859815595], + [-45.293878554526756, -23.57415759814566], + [-45.29388055450708, -23.57414659813528], + [-45.2938845544988, -23.57413659812104], + [-45.29388955449482, -23.574126598104662], + [-45.293894554493434, -23.574117598088897], + [-45.293899554489535, -23.574107598072516], + [-45.293904554488144, -23.574098598056665], + [-45.29390855448246, -23.5740895980431], + [-45.29391355448105, -23.57408059802724], + [-45.29391855447967, -23.574071598011468], + [-45.29392355447568, -23.57406159799509], + [-45.293929554478765, -23.574052597977055], + [-45.29393455447734, -23.574043597961296], + [-45.29394155448478, -23.574034597941107], + [-45.29394955449394, -23.574024597918257], + [-45.29395855451011, -23.574015597893712], + [-45.293968554525435, -23.574004597865876], + [-45.29398155455396, -23.573993597831528], + [-45.29399555458426, -23.573981597794518], + [-45.29401255461992, -23.573966597749212], + [-45.294031554661856, -23.573950597699138], + [-45.294051554702904, -23.57393259764567], + [-45.29407155474145, -23.573913597591712], + [-45.2940915547825, -23.57389559753834], + [-45.29411055482175, -23.573878597487564], + [-45.294127554857404, -23.57386359744243], + [-45.29414255488952, -23.573850597402625], + [-45.29415555491555, -23.573838597367725], + [-45.2941675549396, -23.573827597335537], + [-45.29418055496811, -23.57381659730127], + [-45.294192554989664, -23.573804597268452], + [-45.294205555015594, -23.57379259723366], + [-45.29422155504939, -23.573778597191126], + [-45.29423955508437, -23.57376159714254], + [-45.29426155512899, -23.57374159708371], + [-45.29428855518522, -23.57371759701174], + [-45.29431855524692, -23.57369059693167], + [-45.294349555310234, -23.573662596848823], + [-45.29437855536746, -23.573635596770867], + [-45.29440555542378, -23.573611596698974], + [-45.294427555468395, -23.573591596640043], + [-45.294446555510234, -23.57357559658991], + [-45.294461555539755, -23.573561596549567], + [-45.294474555565664, -23.573549596514663], + [-45.294485555585446, -23.573538596484678], + [-45.294496555607786, -23.573528596455294], + [-45.29450755563005, -23.573518596425842], + [-45.29451855565242, -23.573508596396376], + [-45.2945285556704, -23.573498596369106], + [-45.29453855568836, -23.573488596341896], + [-45.29454855570626, -23.5734785963146], + [-45.29455855572422, -23.573468596287324], + [-45.294569555746584, -23.573458596257947], + [-45.294579555767065, -23.573449596231203], + [-45.29458955578505, -23.573439596204015], + [-45.294599555802925, -23.573429596176737], + [-45.294609555823584, -23.57342059615001], + [-45.29461955584146, -23.573410596122823], + [-45.29462955586202, -23.57340159609606], + [-45.29463955587994, -23.57339159606877], + [-45.294649555900484, -23.573382596042048], + [-45.29465955592365, -23.573374596015935], + [-45.294669555944125, -23.573365595989276], + [-45.29467955596726, -23.573357595963067], + [-45.29468955598784, -23.573348595936338], + [-45.294698556006594, -23.573340595912324], + [-45.294708556027075, -23.573331595885655], + [-45.29471855605023, -23.573323595859527], + [-45.294728556070716, -23.573314595832787], + [-45.294738556093854, -23.573306595806592], + [-45.29474755611004, -23.57329759578212], + [-45.29475755613051, -23.573288595755372], + [-45.29476755615107, -23.57327959572873], + [-45.29477855617602, -23.57327059569981], + [-45.294788556193986, -23.57326059567252], + [-45.29479955621366, -23.573249595642526], + [-45.294814556240595, -23.57323459560173], + [-45.29483355627218, -23.573214595549334], + [-45.29486255632163, -23.573184595469755], + [-45.294901556386506, -23.573143595362364], + [-45.29495355647204, -23.57308859521895], + [-45.29501355656939, -23.573024595053305], + [-45.29507755667646, -23.572957594877202], + [-45.295138556775605, -23.572892594708804], + [-45.29519255686478, -23.572835594559994], + [-45.29523455693242, -23.572790594443887], + [-45.29526655698724, -23.57275759435616], + [-45.29528655701803, -23.572735594300582], + [-45.295298557036915, -23.57272259426725], + [-45.29530255704407, -23.572718594256365], + [-45.295571557710495, -23.57252059356206], + [-45.295882558708186, -23.572379592807316], + [-45.296124559587234, -23.572309592241766], + [-45.29636856048798, -23.572244591674604], + [-45.29671656181051, -23.57216659087361], + [-45.29693456274728, -23.572159590394772], + [-45.29717256383117, -23.572175589884885], + [-45.297701566210264, -23.572199588745214], + [-45.29795156747593, -23.572265588236398], + [-45.29822856895812, -23.57236958768952], + [-45.29855657069731, -23.572486587038657], + [-45.29885757241913, -23.572642586467776], + [-45.299179574204466, -23.572787585845152], + [-45.29970557723248, -23.573067584851547], + [-45.30019257993716, -23.573288583910657], + [-45.30044858142824, -23.57343158343071], + [-45.30096758443596, -23.573715582454337], + [-45.30126258613931, -23.57387458189801], + [-45.301481587421925, -23.57399958148887], + [-45.301799589197515, -23.57414758087636], + [-45.30205259053322, -23.5742355803728], + [-45.3022185914052, -23.57429158004146], + [-45.30255259315005, -23.574400579372803], + [-45.302808594460075, -23.574473578854384], + [-45.303276596822926, -23.574594577899976], + [-45.303523598106516, -23.57467257740401], + [-45.30385459992355, -23.57481457675976], + [-45.304123601588074, -23.575002576275665], + [-45.30433660288841, -23.575144575888647], + [-45.30468160478748, -23.575294575218116], + [-45.304940606297116, -23.575439574732474], + [-45.30516560769913, -23.575600574329513], + [-45.30543560947162, -23.575828573865028], + [-45.30574361137695, -23.576043573310557], + [-45.30607061340181, -23.576272572722242], + [-45.30631161480147, -23.576405572269106], + [-45.30657761631324, -23.576539571761963], + [-45.30688361783715, -23.57661057113325], + [-45.307025618526374, -23.576636570837625], + [-45.30710961889685, -23.57663757065494], + [-45.30730761970442, -23.57661457021057], + [-45.30746862031372, -23.576577569839195], + [-45.3077436213136, -23.576498569196332], + [-45.307852621726276, -23.57647356894492], + [-45.30789662191381, -23.576471568847847], + [-45.307960622214765, -23.576479568712674], + [-45.30805562268252, -23.5764995685163], + [-45.30815862317509, -23.576515568300337], + [-45.30822962347568, -23.576511568143207], + [-45.308286623717464, -23.57650856801727], + [-45.30835562398602, -23.576495567859745], + [-45.3086386249354, -23.57638356718136], + [-45.30875862522531, -23.57629256687003], + [-45.30883962519695, -23.57614456661273], + [-45.30894362494569, -23.575871566237073], + [-45.30901962497054, -23.575752566006496], + [-45.30914762480621, -23.575472565574653], + [-45.30919262479618, -23.575392565432978], + [-45.30927462498443, -23.57532656521816], + [-45.30938362531934, -23.575271564950434], + [-45.30955162589456, -23.57520956455011], + [-45.30981362696675, -23.575180563962782], + [-45.31013662830086, -23.575149563241386], + [-45.310402629434556, -23.575137562654458], + [-45.310592630315696, -23.57515656225038], + [-45.31079563130038, -23.57519356182771], + [-45.31094463214178, -23.575266561542318], + [-45.31112663311471, -23.575334561182324], + [-45.311252633746726, -23.575365560924297], + [-45.311490634874254, -23.575398560423093], + [-45.31186263665333, -23.575456559642973], + [-45.31201563739183, -23.575483059323652], + [-45.31216863813043, -23.575509559004225], + [-45.312289638797424, -23.57556255876911], + [-45.31248363996283, -23.575684558412185], + [-45.312805641903424, -23.575889557821206], + [-45.31297464313281, -23.576078557555334], + [-45.31325464448051, -23.576125556969938], + [-45.3134726457147, -23.576233556553063], + [-45.31370864717271, -23.57639755612732], + [-45.31397764886072, -23.57659455564746], + [-45.314326651082794, -23.576862555031752], + [-45.31461165282017, -23.57705155451251], + [-45.31490265464857, -23.577265553993904], + [-45.31536365758136, -23.577618553179786], + [-45.315754659850164, -23.577833552443348], + [-45.31607466169164, -23.57800355183741], + [-45.31638366339945, -23.578140551237418], + [-45.316810665680975, -23.578299550391833], + [-45.317142667484276, -23.578434549740486], + [-45.31749266936904, -23.578570549050472], + [-45.317761670855155, -23.57868954852793], + [-45.31794067178007, -23.57874404816675], + [-45.31811967270498, -23.578798547805594], + [-45.318344673741876, -23.57881854732532], + [-45.318469174338794, -23.57883854706436], + [-45.31859367493572, -23.578858546803467], + [-45.31881667607538, -23.57892154635072], + [-45.319070677425785, -23.579013545846255], + [-45.319358679044285, -23.579151545292497], + [-45.319674680839746, -23.579310544688884], + [-45.31974168123936, -23.57935154456491], + [-45.32006768318488, -23.579551543961706], + [-45.3204186852036, -23.579737543296446], + [-45.320666686672915, -23.579885542835246], + [-45.32086268781876, -23.57999654246758], + [-45.321107689230914, -23.580127542003773], + [-45.32138669077117, -23.580250541461254], + [-45.321685692398965, -23.580373540875183], + [-45.32191869376895, -23.580508540439617], + [-45.32216969533954, -23.58069053999038], + [-45.3224986974123, -23.580934539404264], + [-45.322902700052, -23.58127053870447], + [-45.323428703036626, -23.58153353769831], + [-45.32382470571133, -23.581896537030435], + [-45.32408670739241, -23.582102536569927], + [-45.32434070895559, -23.582276536109557], + [-45.3246617109313, -23.58249653552773], + [-45.32477971167088, -23.582582535316657], + [-45.32502371322918, -23.58277153488621], + [-45.32516371419725, -23.582908534654678], + [-45.32533771539203, -23.58307553436522], + [-45.325490716510416, -23.58324853412484], + [-45.32561871744161, -23.583391533922825], + [-45.32578471849764, -23.583518533629004], + [-45.325930719424754, -23.583629533370203], + [-45.32674772383657, -23.58395153175988], + [-45.32676272392308, -23.583959531731402], + [-45.32677672400502, -23.583967531705177], + [-45.326790724084475, -23.583974531678347], + [-45.32680572417096, -23.58398253164995], + [-45.32681972425292, -23.583990531623737], + [-45.32683472433936, -23.58399853159524], + [-45.326848724421474, -23.58400653156896], + [-45.32686272450343, -23.58401453154276], + [-45.32687472457671, -23.58402253152091], + [-45.326886724644844, -23.584028531497896], + [-45.326895724699824, -23.58403453148145], + [-45.326901724739024, -23.58403953147111], + [-45.32690672477127, -23.58404353146233], + [-45.32690972479476, -23.584047531457934], + [-45.326912724818236, -23.58405153145353], + [-45.32691572483923, -23.584054531448665], + [-45.32691972486966, -23.584059531442595], + [-45.32692472490199, -23.584063531433912], + [-45.326929724936846, -23.58406853142567], + [-45.32693472497166, -23.584073531417435], + [-45.326940725013536, -23.584079531407536], + [-45.32694572504836, -23.584084531399377], + [-45.32695072508578, -23.58409053139168], + [-45.32695672512499, -23.58409553138135], + [-45.32696272516685, -23.584101531371445], + [-45.326967725204355, -23.58410753136383], + [-45.32697372524357, -23.58411253135338], + [-45.32697872528098, -23.584118531345688], + [-45.32698472532285, -23.584124531335803], + [-45.326990725364645, -23.584130531325986], + [-45.32699772541341, -23.584137531314465], + [-45.32700472546225, -23.584144531302996], + [-45.32701272551805, -23.584152531289913], + [-45.32702072557379, -23.584160531276712], + [-45.3270287256296, -23.58416853126352], + [-45.32703672568533, -23.584176531250424], + [-45.32704472574113, -23.58418453123732], + [-45.327053725801306, -23.58419253122196], + [-45.327061725857035, -23.58420053120884], + [-45.32706972591274, -23.58420853119566], + [-45.32707772596858, -23.58421653118256], + [-45.32708672602867, -23.584224531167266], + [-45.327094726084475, -23.584232531154075], + [-45.32710272614029, -23.584240531140974], + [-45.32711072619342, -23.584247531127247], + [-45.32711872624664, -23.58425453111353], + [-45.32712672629976, -23.5842615310999], + [-45.32713472635298, -23.584268531086238], + [-45.32714172640183, -23.58427553107471], + [-45.327149726452355, -23.584281531060437], + [-45.327157726505476, -23.584288531046795], + [-45.327164726551736, -23.584294531034725], + [-45.32717272660487, -23.584301531021094], + [-45.32717972665372, -23.584308531009555], + [-45.32718772670694, -23.584315530995912], + [-45.32719572676007, -23.58432253098217], + [-45.32720272680882, -23.58432953097073], + [-45.32721072686204, -23.58433653095702], + [-45.327217726910895, -23.584343530945468], + [-45.32722572696402, -23.584350530931836], + [-45.32723372701724, -23.584357530918187], + [-45.327240727066005, -23.584364530906647], + [-45.32724872712171, -23.584372530893464], + [-45.32725672717753, -23.584380530880342], + [-45.32726472723334, -23.58438853086727], + [-45.327272727286456, -23.584395530853538], + [-45.32728072734228, -23.58440353084043], + [-45.327287727393646, -23.584411530829406], + [-45.32729572744946, -23.584419530816326], + [-45.327303727505246, -23.584427530803133], + [-45.32731172755838, -23.584434530789494], + [-45.32731972761419, -23.584442530776396], + [-45.32732772766991, -23.584450530763203], + [-45.327335727725654, -23.584458530750016], + [-45.32734372778405, -23.584467530737452], + [-45.32735372785118, -23.58447653072051], + [-45.32736272791387, -23.58448553070567], + [-45.32737272798363, -23.584495530689267], + [-45.32738372805774, -23.584505530670604], + [-45.32739472813186, -23.58451553065202], + [-45.327405728205896, -23.584525530633424], + [-45.32741572827561, -23.584535530617018], + [-45.32742672834973, -23.584545530598366], + [-45.32743772842387, -23.584555530579788], + [-45.327448728497885, -23.58456553056118], + [-45.327459728571995, -23.58457553054251], + [-45.32747072864352, -23.584584530523387], + [-45.32748172871763, -23.584594530504805], + [-45.327492728791654, -23.58460453048622], + [-45.32750372886317, -23.584613530467017], + [-45.327514728937274, -23.58462353044843], + [-45.327525729008805, -23.584632530429225], + [-45.32753772908463, -23.584641530407907], + [-45.32754872915615, -23.584650530388785], + [-45.32755972923026, -23.58466053037013], + [-45.32757172930616, -23.584669530348794], + [-45.32758272937758, -23.5846785303296], + [-45.32759472945616, -23.58468853030892], + [-45.32760572952759, -23.58469753028971], + [-45.32761672959911, -23.58470653027048], + [-45.32762772967314, -23.58471653025191], + [-45.32763972974914, -23.584725530230603], + [-45.32765072982315, -23.584735530212004], + [-45.32766272989903, -23.584744530190623], + [-45.32767472997495, -23.58475353016924], + [-45.327687730057804, -23.58476353014626], + [-45.32770073013798, -23.58477253012278], + [-45.32771473022271, -23.584781530097086], + [-45.32772873030734, -23.58479053007132], + [-45.3277427303919, -23.584799530045636], + [-45.327757730481, -23.58480853001778], + [-45.3277727305726, -23.584818529990365], + [-45.327786730657145, -23.58482752996468], + [-45.32780173074625, -23.584836529936716], + [-45.32781573083348, -23.584846529911598], + [-45.327830730925, -23.584856529884274], + [-45.327844731009726, -23.584865529858497], + [-45.32785973109872, -23.584874529830643], + [-45.32787273117891, -23.584883529807065], + [-45.32788573125659, -23.584891529783018], + [-45.32789673132292, -23.58489852976284], + [-45.32790573137792, -23.584904529746346], + [-45.32791373142845, -23.58491052973211], + [-45.32792073146951, -23.58491452971904], + [-45.327927731510506, -23.584918529705888], + [-45.32793373154719, -23.584922529694918], + [-45.3279397315812, -23.584925529683428], + [-45.32794573161781, -23.58492952967254], + [-45.327951731654515, -23.584933529661573], + [-45.32795773168854, -23.58493652965008], + [-45.327963731725205, -23.584940529639187], + [-45.32796973175925, -23.584943529627687], + [-45.327975731795924, -23.584947529616723], + [-45.32798173183253, -23.58495152960577], + [-45.32798773186913, -23.584955529594804], + [-45.32799473191279, -23.58496052958227], + [-45.328001731958956, -23.584966529570178], + [-45.328009732009605, -23.584972529556012], + [-45.328016732055865, -23.584978529543918], + [-45.32802473210898, -23.584985529530286], + [-45.32803273216212, -23.584992529516562], + [-45.32804073221272, -23.584998529502315], + [-45.3280477322589, -23.5850045294903], + [-45.32805573231212, -23.585011529476585], + [-45.32806373236276, -23.585017529462405], + [-45.328071732413285, -23.585023529448133], + [-45.32807873245945, -23.58502952943613], + [-45.328086732510066, -23.585035529421887], + [-45.3280947325607, -23.585041529407594], + [-45.32810273261123, -23.585047529393343], + [-45.32810973265748, -23.585053529381355], + [-45.328117732708044, -23.585059529367175], + [-45.3281247327542, -23.5850655293551], + [-45.32813273280482, -23.585071529340926], + [-45.328139732851085, -23.58507752932884], + [-45.32814773290163, -23.58508352931457], + [-45.32815473294788, -23.585089529302508], + [-45.328162733000994, -23.58509652928885], + [-45.32816973304725, -23.585102529276867], + [-45.32817773310038, -23.585109529263136], + [-45.328184733149236, -23.585116529251685], + [-45.328192733202364, -23.585123529237965], + [-45.328200733255606, -23.585130529224212], + [-45.32820873330871, -23.585137529210577], + [-45.32821773336891, -23.58514552919528], + [-45.32822773343865, -23.585155529178813], + [-45.328239733519645, -23.585166529158567], + [-45.328253733614666, -23.585179529135036], + [-45.328273733751566, -23.585198529101596], + [-45.32830173393899, -23.585223529053987], + [-45.32898173837116, -23.585784527872026], + [-45.32914173933365, -23.585885527577094], + [-45.3291527393974, -23.585891527556356], + [-45.32916273945666, -23.58589752753772], + [-45.32917273951604, -23.58590352751908], + [-45.32918273957282, -23.585908527499985], + [-45.32919373963657, -23.58591452747917], + [-45.32920373969585, -23.585920527460527], + [-45.329213739752625, -23.585925527441432], + [-45.329223739811994, -23.585931527422822], + [-45.32923273986441, -23.5859365274059], + [-45.3292427399211, -23.585941527386723], + [-45.329252739975296, -23.585945527367016], + [-45.32926174002769, -23.585950527350104], + [-45.329271740084366, -23.58595552733093], + [-45.32928074013679, -23.58596052731394], + [-45.32929074019348, -23.58596552729479], + [-45.32930074025285, -23.5859715272762], + [-45.32930974030526, -23.585976527259316], + [-45.32931974036195, -23.585981527240154], + [-45.329328740414354, -23.58598652722315], + [-45.32933774046676, -23.585991527206165], + [-45.32934674051917, -23.585996527189252], + [-45.32935574057409, -23.586002527172816], + [-45.329363740622036, -23.586007527158], + [-45.32937174067006, -23.586012527143264], + [-45.32937874071622, -23.586018527131188], + [-45.32938674076425, -23.58602352711649], + [-45.32939374081052, -23.5860295271044], + [-45.32940074085411, -23.586034527091783], + [-45.32940874090203, -23.58603952707707], + [-45.32941574094571, -23.586044527064466], + [-45.32942274098929, -23.586049527051827], + [-45.32942974103294, -23.58605452703931], + [-45.329437741078394, -23.586058527023955], + [-45.32944474112454, -23.586064527011967], + [-45.3294527411725, -23.586069526997164], + [-45.32946174122752, -23.58607552698071], + [-45.32947174129206, -23.586083526963137], + [-45.329482741361, -23.586091526943466], + [-45.3294947414368, -23.586100526922152], + [-45.329506741515296, -23.58611052690137], + [-45.32952074160514, -23.586121526876656], + [-45.32953374169058, -23.586132526854247], + [-45.329547741780424, -23.58614352682963], + [-45.32956074186588, -23.586154526807213], + [-45.32957474195571, -23.586165526782494], + [-45.329587742043756, -23.5861775267606], + [-45.32960174213358, -23.586188526736006], + [-45.32961474221898, -23.586199526713553], + [-45.3296287423114, -23.58621152668937], + [-45.32964174239694, -23.586222526666944], + [-45.32965474248231, -23.586233526644524], + [-45.329667742567764, -23.586244526622107], + [-45.32968074265324, -23.586255526599583], + [-45.329694742743065, -23.586266526574985], + [-45.32970874283547, -23.58627852655089], + [-45.32972474293928, -23.58629152652297], + [-45.32974274305436, -23.58630552649123], + [-45.32976274318608, -23.586322526456712], + [-45.329783743322075, -23.586339526420016], + [-45.3298067434695, -23.586357526379558], + [-45.329827743605506, -23.586374526342752], + [-45.329847743734625, -23.58639052630782], + [-45.32986574384972, -23.58640452627608], + [-45.32988074394654, -23.586416526249714], + [-45.32989574404332, -23.586428526223457], + [-45.32990874412621, -23.58643852620049], + [-45.329921744211646, -23.58644952617805], + [-45.329934744294526, -23.586459526154993], + [-45.32994874438426, -23.586470526130366], + [-45.32996374447846, -23.586481526103576], + [-45.329979744582324, -23.586494526075658], + [-45.3299987447044, -23.586509526042256], + [-45.33001874483343, -23.586525526007204], + [-45.33004174498086, -23.586543525966675], + [-45.330064745128205, -23.58656152592621], + [-45.33008674526866, -23.58657852588725], + [-45.33010774540467, -23.586595525850626], + [-45.330126745524154, -23.586609525816684], + [-45.33014274562801, -23.5866225257887], + [-45.33015774572221, -23.58663352576189], + [-45.33017074580508, -23.58664352573891], + [-45.33018274588098, -23.58665252571761], + [-45.3301937459524, -23.586661525698393], + [-45.33020474602136, -23.586669525678598], + [-45.33021474608591, -23.58667752566114], + [-45.33022574615225, -23.586684525640933], + [-45.33023574621674, -23.586692525623448], + [-45.33024574628127, -23.586700525605874], + [-45.330255746345756, -23.586708525588307], + [-45.330265746410326, -23.586716525570836], + [-45.3302757464749, -23.586724525553343], + [-45.33028574653937, -23.586732525535773], + [-45.33029574660394, -23.586740525518284], + [-45.33030574666848, -23.58674852550072], + [-45.33031574673564, -23.586757525483783], + [-45.33032674680708, -23.586766525464657], + [-45.33033774687861, -23.586775525445432], + [-45.330348746952744, -23.58678552542681], + [-45.33036074703125, -23.586795525405964], + [-45.33037374711661, -23.58680652538352], + [-45.33038574719778, -23.58681752536327], + [-45.33039874728577, -23.58682952534139], + [-45.330410747366855, -23.586840525321033], + [-45.330423747452315, -23.586851525298616], + [-45.33043574753341, -23.586862525278363], + [-45.330448747621475, -23.586874525256466], + [-45.33046074770246, -23.586885525236134], + [-45.33047374778801, -23.586896525213774], + [-45.330485747871606, -23.586908525193987], + [-45.33049874795709, -23.58691952517154], + [-45.330510748038165, -23.586930525151296], + [-45.33052274811925, -23.58694152513106], + [-45.33053374819589, -23.586952525112913], + [-45.3305447482726, -23.58696352509485], + [-45.33055574834674, -23.586973525076257], + [-45.33056674842344, -23.586984525058106], + [-45.33057774849748, -23.586994525039493], + [-45.3305887485716, -23.587004525020806], + [-45.33059974864572, -23.587014525002218], + [-45.33061074871986, -23.587024524983608], + [-45.3306217487939, -23.587034524965024], + [-45.33063274886801, -23.587044524946332], + [-45.33064374894214, -23.587054524927744], + [-45.33065474901368, -23.587063524908594], + [-45.33066574908771, -23.587073524889917], + [-45.33067674915924, -23.58708252487078], + [-45.33068774923076, -23.58709152485156], + [-45.330699749306675, -23.587100524830234], + [-45.33071174937999, -23.58710852480837], + [-45.33072474946025, -23.58711752478478], + [-45.330739749551775, -23.587127524757445], + [-45.330756749654824, -23.587138524726274], + [-45.33077574977171, -23.587151524691773], + [-45.330796749897345, -23.587164524652845], + [-45.33081675002387, -23.58717952461734], + [-45.33083775015209, -23.587193524579046], + [-45.330856750269085, -23.587206524544467], + [-45.33087375037192, -23.587217524513292], + [-45.330888750463636, -23.587227524485936], + [-45.33090175054652, -23.58723752446297], + [-45.33091375061975, -23.587245524441023], + [-45.330925750693034, -23.58725352441908], + [-45.33093775076893, -23.587262524397765], + [-45.33094975084224, -23.587270524375903], + [-45.33096075091118, -23.587278524356233], + [-45.330972750984486, -23.587286524334267], + [-45.33098475105771, -23.587294524312334], + [-45.330995751124064, -23.587301524292126], + [-45.33100775119737, -23.587309524270246], + [-45.33101875126629, -23.587317524250537], + [-45.33103075133694, -23.587324524228116], + [-45.331042751410244, -23.587332524206175], + [-45.33105375147658, -23.58733952418587], + [-45.3310657515499, -23.587347524164038], + [-45.33107775162311, -23.58735552414218], + [-45.33108875169464, -23.587364524122954], + [-45.331100751770556, -23.58737352410163], + [-45.331113751850815, -23.58738252407802], + [-45.33112675193889, -23.5873945240562], + [-45.331143752049606, -23.587408524026536], + [-45.33116475219082, -23.587427523990993], + [-45.33119175236882, -23.587450523944398], + [-45.33122575259547, -23.587480523886416], + [-45.3312637528475, -23.587513523821194], + [-45.33130275310641, -23.58754752375432], + [-45.33134075335842, -23.587580523689113], + [-45.331374753582494, -23.587609523630498], + [-45.3314017537604, -23.587632523583874], + [-45.331422753901585, -23.587651523548345], + [-45.3314397540124, -23.587665523518766], + [-45.33145275410038, -23.587677523496865], + [-45.331465754183256, -23.587687523473882], + [-45.331477754261755, -23.58769752345302], + [-45.33148975434285, -23.58770852343277], + [-45.33150175442135, -23.587718523411883], + [-45.331513754499845, -23.587728523391196], + [-45.33152575457826, -23.587738523370305], + [-45.331537754656765, -23.587748523349433], + [-45.33154975473786, -23.587759523329176], + [-45.331561754818956, -23.58777052330893], + [-45.33157475490182, -23.58778052328597], + [-45.331586754982844, -23.587791523265622], + [-45.331598755064014, -23.587802523245358], + [-45.331610755145014, -23.587813523225098], + [-45.33162275522612, -23.587824523204862], + [-45.3316347553098, -23.587836523185032], + [-45.331646755393486, -23.587848523165434], + [-45.3316587554771, -23.587860523145622], + [-45.33167075556338, -23.587873523126444], + [-45.33168275564966, -23.58788652310724], + [-45.33169475573593, -23.587899523088083], + [-45.33170675582473, -23.587913523069435], + [-45.33171875591112, -23.587926523050243], + [-45.331730755994705, -23.58793852303054], + [-45.331742756081006, -23.587951523011277], + [-45.33175475616727, -23.587964522992092], + [-45.33176675625096, -23.587976522972365], + [-45.33177875633725, -23.587989522953183], + [-45.33179075642084, -23.588001522933453], + [-45.33180275650724, -23.5880145229143], + [-45.33181475658824, -23.588025522894043], + [-45.33182675667192, -23.588037522874217], + [-45.331837756748655, -23.588048522856162], + [-45.33185075683413, -23.58805952283374], + [-45.33186375691952, -23.58807052281129], + [-45.3318787570163, -23.588082522784923], + [-45.331895757129736, -23.588097522755962], + [-45.3319147572544, -23.588113522723074], + [-45.331934757386136, -23.588130522688466], + [-45.33195575752724, -23.588149522652923], + [-45.33197575765899, -23.588166522618376], + [-45.33199475778626, -23.588183522586128], + [-45.332010757895304, -23.58819852255919], + [-45.332025757994714, -23.58821152253344], + [-45.33203975808706, -23.588223522509335], + [-45.33205175816823, -23.5882345224891], + [-45.33206475825621, -23.588246522467177], + [-45.33207775834168, -23.58825752244466], + [-45.33209075843234, -23.588270522423368], + [-45.332105758531746, -23.588283522397543], + [-45.33212275864509, -23.5882985223685], + [-45.332141758772444, -23.588315522336245], + [-45.332162758913626, -23.588334522300514], + [-45.33218575906627, -23.58835452226112], + [-45.332208759218815, -23.588374522221645], + [-45.332231759371446, -23.58839452218222], + [-45.332252759510055, -23.588412522146044], + [-45.33227175963482, -23.588428522113176], + [-45.33228775974371, -23.588443522086322], + [-45.33230275984318, -23.58845652206059], + [-45.33231675993823, -23.588469522037027], + [-45.3323297600262, -23.588481522015133], + [-45.332342760114265, -23.588493521993215], + [-45.33235676021191, -23.588507521970104], + [-45.33237076030954, -23.588521521947158], + [-45.33238676042117, -23.58853752192076], + [-45.332404760549174, -23.58855652189176], + [-45.332424760691275, -23.588577521859364], + [-45.33244676084466, -23.588599521823244], + [-45.3324687610007, -23.588622521787535], + [-45.33248976114968, -23.588644521753572], + [-45.33251076129617, -23.588665521718998], + [-45.3325277614199, -23.588684521692187], + [-45.33254376153146, -23.58870052166586], + [-45.3325577616291, -23.588714521642743], + [-45.33257076171974, -23.58872752162148], + [-45.33258276180336, -23.588739521601667], + [-45.33259476188194, -23.588749521580866], + [-45.332605761958575, -23.58876052156282], + [-45.33261876204404, -23.58877152154035], + [-45.332631762129516, -23.588782521517828], + [-45.33264776223589, -23.58879652149042], + [-45.33266476234924, -23.588811521461473], + [-45.33268276246963, -23.588827521430694], + [-45.33270176259689, -23.588844521398425], + [-45.332720762721586, -23.588860521365543], + [-45.33273776283752, -23.588876521337028], + [-45.33275276293692, -23.588889521311277], + [-45.33276676302936, -23.588901521287177], + [-45.332778763113055, -23.588913521267386], + [-45.33279076319415, -23.588924521247122], + [-45.33280176327088, -23.58893552122905], + [-45.33281376335457, -23.58894752120932], + [-45.332826763447756, -23.588961521188395], + [-45.33284176355504, -23.58897752116435], + [-45.332859763683125, -23.588996521135265], + [-45.33288176383908, -23.58901952109965], + [-45.3329077640256, -23.58904752105787], + [-45.33293676423302, -23.58907852101127], + [-45.332966764447384, -23.589110520963057], + [-45.33299576465481, -23.589141520916446], + [-45.333022764845715, -23.589169520872566], + [-45.33304476500167, -23.589192520836967], + [-45.33306276512987, -23.589211520807794], + [-45.33307776523696, -23.58922752078373], + [-45.33309076532772, -23.58924052076235], + [-45.333102765411304, -23.589252520742537], + [-45.33311476549502, -23.589264520722832], + [-45.33312876559005, -23.58927752069925], + [-45.33314476570162, -23.589293520672936], + [-45.33316576584542, -23.58931352063789], + [-45.33319176602414, -23.58933852059453], + [-45.33322476624916, -23.589369520539158], + [-45.33326176650453, -23.589405520477797], + [-45.33329976676696, -23.589442520414796], + [-45.33333676701974, -23.589477520352798], + [-45.333369767247234, -23.589509520297966], + [-45.333395767425976, -23.589534520254677], + [-45.33341676756988, -23.589554520219554], + [-45.33343276768146, -23.589570520193217], + [-45.333445767769504, -23.589582520171298], + [-45.333457767853126, -23.589594520151582], + [-45.33346976793431, -23.589605520131332], + [-45.33348276802229, -23.589617520109318], + [-45.333496768117335, -23.58963052008574], + [-45.334978778221526, -23.591023517599144], + [-45.334994778333005, -23.591039517572817], + [-45.33500877843076, -23.591053517549764], + [-45.33502177852143, -23.591066517528397], + [-45.335033778607645, -23.591079517509105], + [-45.33504577869135, -23.591091517489374], + [-45.33505677877067, -23.591103517471826], + [-45.33506777884741, -23.591114517453743], + [-45.33507877892667, -23.591126517436116], + [-45.335089779003404, -23.591137517418105], + [-45.335100779080136, -23.591148517399937], + [-45.33511177915947, -23.5911605173824], + [-45.33512277923612, -23.591171517364316], + [-45.33513377931284, -23.591182517346233], + [-45.33514477939218, -23.591194517328603], + [-45.33515577946893, -23.59120551731052], + [-45.33516677954557, -23.591216517292448], + [-45.335177779625, -23.591228517274892], + [-45.33518877970166, -23.591239517256696], + [-45.33519977977838, -23.59125051723864], + [-45.33521077985762, -23.591262517221107], + [-45.33522277993883, -23.59127351720083], + [-45.33523478002504, -23.591286517181647], + [-45.33524778011831, -23.591300517160793], + [-45.3352627802281, -23.591317517137163], + [-45.33528078035362, -23.591335517107524], + [-45.33529878048442, -23.591355517079013], + [-45.335317780619484, -23.591375517048277], + [-45.3353357807502, -23.591395517019688], + [-45.33535378087833, -23.591414516990582], + [-45.335368780985526, -23.591430516966522], + [-45.33538178108139, -23.591445516946198], + [-45.33539378116769, -23.59145851692691], + [-45.33540478124963, -23.591471516909902], + [-45.33541578132888, -23.591483516892346], + [-45.33542578140123, -23.591494516876462], + [-45.33543678148317, -23.59150751685944], + [-45.33544878156948, -23.59152051684025], + [-45.335461781665344, -23.591535516819924], + [-45.33547578177078, -23.591552516798505], + [-45.33549178188755, -23.591570516773228], + [-45.33550878201388, -23.591590516746848], + [-45.33552678214458, -23.591610516718355], + [-45.33554378227092, -23.59163051669196], + [-45.33556078239476, -23.591649516665118], + [-45.335574782497496, -23.59166551664307], + [-45.3355867825864, -23.5916795166245], + [-45.3355987826753, -23.59169351660583], + [-45.33560978275463, -23.591705516588195], + [-45.33562078283387, -23.591717516570633], + [-45.335630782911444, -23.59173051655581], + [-45.33564278299774, -23.591743516536607], + [-45.33565478308667, -23.59175751651796], + [-45.33566878318948, -23.591773516495966], + [-45.33568478330626, -23.5917915164707], + [-45.33570278343957, -23.591812516442747], + [-45.33572178357994, -23.59183451641305], + [-45.33574178372718, -23.591857516381808], + [-45.33576078386746, -23.5918795163521], + [-45.33577878399817, -23.591899516323604], + [-45.33579478411753, -23.591918516298893], + [-45.33580878422045, -23.59193451627691], + [-45.33582178431365, -23.59194851625606], + [-45.33583278439558, -23.591961516239014], + [-45.33584378447491, -23.591973516221486], + [-45.33585478455424, -23.59198551620395], + [-45.33586578463092, -23.59199651618578], + [-45.335875784703276, -23.592007516169883], + [-45.33588678478002, -23.59201851615177], + [-45.33589678484977, -23.592028516135354], + [-45.33590778492643, -23.592039516117183], + [-45.335917784998806, -23.59205051610128], + [-45.335928785072966, -23.592060516082658], + [-45.33593878514524, -23.592071516066678], + [-45.335949785221985, -23.592082516048585], + [-45.33595978529175, -23.592092516032153], + [-45.3359697853641, -23.59210351601625], + [-45.33598078544076, -23.592114515998087], + [-45.3359917855175, -23.59212551598], + [-45.33600178558987, -23.592136515964093], + [-45.33601278566661, -23.592147515946024], + [-45.33602278573891, -23.592158515930027], + [-45.33603378581564, -23.592169515911955], + [-45.33604478589498, -23.592181515894403], + [-45.33605478596734, -23.592192515878477], + [-45.336065786044, -23.59220351586033], + [-45.336076786120735, -23.592214515842233], + [-45.336086786193036, -23.592225515826332], + [-45.33609778627236, -23.59223751580878], + [-45.33610878634911, -23.59224851579061], + [-45.33611978642576, -23.592259515772525], + [-45.33612978649814, -23.59227051575662], + [-45.33614078657487, -23.592281515738527], + [-45.33615078664723, -23.592292515722566], + [-45.33616078671694, -23.592302515706127], + [-45.33616978678232, -23.59231251569188], + [-45.336178786847725, -23.592322515677626], + [-45.336187786910436, -23.592331515662764], + [-45.33619678697584, -23.592341515648513], + [-45.336204787034184, -23.59235051563592], + [-45.336213787096995, -23.592359515621048], + [-45.33622178715802, -23.592369515609004], + [-45.33623078722075, -23.592378515594106], + [-45.336238787279164, -23.592387515581553], + [-45.336247787344476, -23.59239751556728], + [-45.33625578740293, -23.592406515554575], + [-45.33626478746832, -23.592416515540354], + [-45.33627278752667, -23.592425515527772], + [-45.33628178758947, -23.592434515512966], + [-45.33629178765916, -23.592444515496453], + [-45.33630078772457, -23.59245451548212], + [-45.33631078779174, -23.59246351546514], + [-45.33632078786142, -23.592473515448713], + [-45.33633178793556, -23.592483515430096], + [-45.33634178800536, -23.592493515413572], + [-45.33635178807512, -23.592503515397127], + [-45.33636278814918, -23.592513515378492], + [-45.336372788218945, -23.59252351536207], + [-45.33638378829309, -23.592533515343366], + [-45.336393788365484, -23.592544515327372], + [-45.33640378843516, -23.592554515311022], + [-45.336414788509295, -23.592564515292317], + [-45.33642478857907, -23.592574515275885], + [-45.336434788646166, -23.592583515258827], + [-45.33644578872031, -23.59259351524021], + [-45.33645678878928, -23.592601515220508], + [-45.33646678885646, -23.59261051520347], + [-45.33647778892531, -23.592618515183766], + [-45.33648878899426, -23.592626515163968], + [-45.33649878905618, -23.592633515145952], + [-45.33650978912521, -23.592641515126257], + [-45.33652078919148, -23.59264851510592], + [-45.33653078925606, -23.592656515088322], + [-45.33654178932234, -23.5926635150681], + [-45.33655278938877, -23.592670515047782], + [-45.33656378945764, -23.5926785150281], + [-45.33657478952399, -23.592685515007844], + [-45.33658478958589, -23.592692514989725], + [-45.336595789654936, -23.592700514969962], + [-45.336606789721216, -23.59270751494971], + [-45.33661778979017, -23.592715514929946], + [-45.33662878985911, -23.59272351491027], + [-45.33663978992807, -23.592731514890552], + [-45.336650789996945, -23.592739514870768], + [-45.336661790065804, -23.592747514850966], + [-45.336673790139216, -23.592755514829104], + [-45.33668479020817, -23.592763514809423], + [-45.33669579027705, -23.592771514789728], + [-45.336706790346, -23.59277951476994], + [-45.33671779041496, -23.592787514750142], + [-45.33672879048383, -23.59279551473045], + [-45.33673979055278, -23.59280351471077], + [-45.33675079061913, -23.59281051469046], + [-45.33675979067676, -23.5928175146746], + [-45.33676879073428, -23.59282451465865], + [-45.336776790784924, -23.592830514644355], + [-45.33678379082852, -23.592835514631727], + [-45.33678979087033, -23.592841514621888], + [-45.336795790909626, -23.592846514611544], + [-45.33680079094456, -23.592851514603268], + [-45.33680679098377, -23.59285651459283], + [-45.336812791022986, -23.592861514582463], + [-45.33681779105785, -23.59286651457418], + [-45.33682379109974, -23.592872514564284], + [-45.33682879113458, -23.592877514556022], + [-45.33683479117648, -23.59288351454621], + [-45.33683979121391, -23.592889514538566], + [-45.3368467912602, -23.592895514526447], + [-45.33685379130896, -23.592902514514886], + [-45.33686179136212, -23.592909514501212], + [-45.33687079142492, -23.592918514486342], + [-45.33688079149472, -23.59292851446991], + [-45.336891791568846, -23.59293851445132], + [-45.336902791642906, -23.59294851443258], + [-45.336913791719674, -23.592959514414478], + [-45.336925791798194, -23.59296951439369], + [-45.3369377918767, -23.592979514372853], + [-45.33694879195335, -23.59299051435468], + [-45.33696079203189, -23.593000514333877], + [-45.336971792106034, -23.59301051431525], + [-45.33698379218456, -23.593020514294444], + [-45.33699479225863, -23.593030514275714], + [-45.337005792332754, -23.593040514257005], + [-45.33701579239993, -23.593049514240032], + [-45.337024792460156, -23.59305751422471], + [-45.337033792520266, -23.593065514209393], + [-45.33704079257174, -23.593073514198363], + [-45.337047792620524, -23.593080514186784], + [-45.33705479266939, -23.593087514175323], + [-45.337060792711206, -23.59309351416539], + [-45.33706679275561, -23.593100514156102], + [-45.3370727928001, -23.59310751414673], + [-45.33707879284453, -23.593114514137444], + [-45.3370857928934, -23.593121514125876], + [-45.33709179293521, -23.593127514115942], + [-45.337097792979705, -23.59313451410667], + [-45.337103793024106, -23.593141514097347], + [-45.337110793075496, -23.59314951408632], + [-45.337118793128724, -23.59315651407268], + [-45.33712679318717, -23.59316551405997], + [-45.33713579324739, -23.593173514044647], + [-45.33714579331708, -23.593183514028233], + [-45.33715579338414, -23.593192514011157], + [-45.337166793458316, -23.593202513992534], + [-45.33717779353247, -23.593212513973818], + [-45.33718879360661, -23.59322251395519], + [-45.33719979368067, -23.593232513936567], + [-45.33721079375483, -23.593242513917847], + [-45.337222793833355, -23.59325251389703], + [-45.3372337939075, -23.59326251387841], + [-45.33724479398154, -23.593272513859798], + [-45.33725579405579, -23.59328251384108], + [-45.33726679412987, -23.593292513822455], + [-45.33727779420401, -23.59330251380384], + [-45.33728879428067, -23.593313513785734], + [-45.3372997943601, -23.59332551376808], + [-45.337310794436746, -23.593336513750007], + [-45.3373217945161, -23.593348513732437], + [-45.33733179459098, -23.593360513717073], + [-45.337342794673, -23.593373513699962], + [-45.33735379475226, -23.593385513682417], + [-45.33736479483161, -23.59339751366486], + [-45.33737579491094, -23.593409513647277], + [-45.3373867949903, -23.59342151362975], + [-45.33739779506957, -23.593433513612183], + [-45.33740779514452, -23.593445513596727], + [-45.337418795223876, -23.593457513579164], + [-45.33742979530581, -23.593470513562167], + [-45.337440795385056, -23.5934825135446], + [-45.33745079545742, -23.59349351352868], + [-45.33746179553677, -23.59350551351105], + [-45.33747179561168, -23.593517513495765], + [-45.33748179568663, -23.5935295134803], + [-45.33749179576153, -23.59354151346494], + [-45.3375017958365, -23.593553513449567], + [-45.33751179591147, -23.5935655134342], + [-45.33752179598644, -23.593577513418744], + [-45.33753179606132, -23.593589513403387], + [-45.33754279614066, -23.59360151338582], + [-45.33755279621564, -23.593613513370443], + [-45.3375627962906, -23.59362551335498], + [-45.33757279636549, -23.593637513339697], + [-45.3375817964361, -23.593649513326532], + [-45.33759079650409, -23.593660513312727], + [-45.33759979657203, -23.593671513299], + [-45.33760779663305, -23.593681513286942], + [-45.33761479668962, -23.593691513276976], + [-45.33762179674618, -23.59370151326711], + [-45.33762879680026, -23.593710513256585], + [-45.337635796854315, -23.593719513246175], + [-45.33764179690393, -23.593728513237963], + [-45.33764879695532, -23.593736513226926], + [-45.337654797005015, -23.59374551321871], + [-45.33766179705898, -23.59375451320821], + [-45.33766779710607, -23.59376251319945], + [-45.33767479716006, -23.59377151318903], + [-45.33768079720974, -23.59378051318072], + [-45.33768779726373, -23.59378951317032], + [-45.33769479731771, -23.593798513159815], + [-45.33770279737873, -23.59380851314783], + [-45.33771079743977, -23.59381851313568], + [-45.33771879750071, -23.593828513123515], + [-45.33772779756872, -23.593839513109828], + [-45.33773679763664, -23.593850513096097], + [-45.33774579770464, -23.593861513082373], + [-45.33775579777963, -23.593873513066917], + [-45.337764797847534, -23.593884513053215], + [-45.33777379791814, -23.59389651304002], + [-45.33778279798605, -23.593907513026302], + [-45.33779279806103, -23.59391951301094], + [-45.337801798129036, -23.59393051299721], + [-45.33781079819963, -23.59394251298403], + [-45.33781979827014, -23.593954512970765], + [-45.33782879833806, -23.593965512957038], + [-45.33783779840866, -23.593977512943855], + [-45.337846798479255, -23.593989512930683], + [-45.33785579855247, -23.59400251291793], + [-45.33786579863254, -23.594016512903725], + [-45.33787679871967, -23.594031512887703], + [-45.33788879881899, -23.594049512871226], + [-45.337901798925245, -23.594068512853056], + [-45.33791679904545, -23.594089512831562], + [-45.337931799168274, -23.594111512810688], + [-45.33794579928409, -23.59413251279137], + [-45.33795979939734, -23.59415251277162], + [-45.33797179949405, -23.59416951275455], + [-45.337982799583685, -23.594185512739127], + [-45.33799179965949, -23.594199512727034], + [-45.33800179973956, -23.594213512712717], + [-45.33810280061547, -23.594380512582042], + [-45.338167801165014, -23.594482512495105], + [-45.33827180195799, -23.594612512337804], + [-45.33837580268862, -23.594718512167645], + [-45.33838980278107, -23.59473051214353], + [-45.33840380287355, -23.59474251211931], + [-45.33841780296602, -23.594754512095182], + [-45.33843180305849, -23.594766512071054], + [-45.33844680315533, -23.594778512044723], + [-45.338460803250385, -23.594791512021057], + [-45.33847480334286, -23.594803511996936], + [-45.338488803435325, -23.59481551197281], + [-45.33850380353476, -23.594828511947025], + [-45.338517803627205, -23.5948405119229], + [-45.33853080371272, -23.594851511900423], + [-45.33854380379822, -23.594862511877857], + [-45.338555803879345, -23.594873511857575], + [-45.33856680395081, -23.59488251183842], + [-45.338576804015396, -23.5948905118209], + [-45.338585804075535, -23.594898511805507], + [-45.33859480413575, -23.59490651179008], + [-45.33860380419336, -23.59491351177422], + [-45.338611804246526, -23.594920511760442], + [-45.338620804304156, -23.5949275117446], + [-45.33862880435992, -23.594935511731485], + [-45.33863780441754, -23.5949425117155], + [-45.33864580447078, -23.59494951170175], + [-45.33865480452831, -23.594956511685897], + [-45.33866280458146, -23.594963511672134], + [-45.338671804639084, -23.594970511656275], + [-45.33867980469235, -23.594977511642597], + [-45.3386878047429, -23.5949835116283], + [-45.338695804790945, -23.594988511613447], + [-45.33870380483893, -23.59499351159863], + [-45.33871180488437, -23.594997511583255], + [-45.338718804925456, -23.595001511570167], + [-45.338726804970825, -23.595005511554813], + [-45.338734805016266, -23.59500951153943], + [-45.338741805057275, -23.59501351152634], + [-45.338749805102736, -23.595017511510996], + [-45.33875680514372, -23.59502151149781], + [-45.33876480518917, -23.59502551148254], + [-45.338772805231955, -23.595028511466637], + [-45.338779805273035, -23.595032511453443], + [-45.33878780532099, -23.595037511438633], + [-45.33879680537343, -23.59504251142159], + [-45.33880580542845, -23.595048511405214], + [-45.33881580549035, -23.59505551138716], + [-45.33882580555234, -23.595062511369015], + [-45.338836805621305, -23.595070511349302], + [-45.33884580568144, -23.595078511333906], + [-45.33885580574343, -23.595085511315776], + [-45.33886280579221, -23.595092511304273], + [-45.338869805838506, -23.595098511292267], + [-45.33887580588031, -23.595104511282358], + [-45.338881805919634, -23.595109511271886], + [-45.33888680595446, -23.595114511263713], + [-45.338891805992, -23.59512051125598], + [-45.33889680602686, -23.595125511247705], + [-45.33890280606608, -23.595130511237354], + [-45.33890780610091, -23.595135511229085], + [-45.33891280613586, -23.595140511220894], + [-45.3389178061707, -23.595145511212618], + [-45.33892380621003, -23.595150511202174], + [-45.33892880624486, -23.595155511193905], + [-45.33893580629105, -23.595161511181892], + [-45.33894280633734, -23.595167511169763], + [-45.338949806386104, -23.59517451115829], + [-45.33895880644374, -23.595181511142354], + [-45.338967806503966, -23.59518951112703], + [-45.33897680656409, -23.59519751111159], + [-45.33898680662869, -23.59520551109408], + [-45.338995806688814, -23.59521351107869], + [-45.3390058067534, -23.595221511061162], + [-45.33901480681363, -23.595229511045837], + [-45.33902480687811, -23.59523751102822], + [-45.339034806942706, -23.595245511010624], + [-45.33904380700292, -23.5952535109953], + [-45.339053807067515, -23.59526151097779], + [-45.33906380713201, -23.595269510960172], + [-45.339073807199206, -23.595278510943192], + [-45.339082807261924, -23.595287510928312], + [-45.33909380733617, -23.595297510909678], + [-45.33910380740586, -23.59530751089324], + [-45.339114807479945, -23.5953175108746], + [-45.33912480755232, -23.595328510858604], + [-45.339135807629084, -23.59533951084049], + [-45.339146807703244, -23.595349510821862], + [-45.33915680777553, -23.59536051080596], + [-45.339167807849684, -23.59537051078723], + [-45.339178807926444, -23.595381510769144], + [-45.339188807998845, -23.595392510753214], + [-45.339199808072905, -23.595402510734495], + [-45.339210808147065, -23.595412510715853], + [-45.33922080821946, -23.595423510699955], + [-45.33923080828924, -23.595433510683513], + [-45.33924080835632, -23.595442510666427], + [-45.33924980841915, -23.59545151065164], + [-45.339258808481965, -23.595460510636755], + [-45.33926680853772, -23.595468510623608], + [-45.33927580859794, -23.595476510608304], + [-45.339283808653704, -23.595484510595075], + [-45.33929180870955, -23.595492510581828], + [-45.33929980876799, -23.595501510569235], + [-45.33930780882375, -23.5955095105561], + [-45.339316808886494, -23.595518510541304], + [-45.339324808942315, -23.595526510528078], + [-45.339332808998066, -23.595534510514838], + [-45.33934180906089, -23.595543510500054], + [-45.33934980911674, -23.5955515104869], + [-45.339357809172505, -23.59555951047369], + [-45.33936580922577, -23.59556651046001], + [-45.33937380927891, -23.595573510446243], + [-45.339381809332174, -23.59558051043249], + [-45.339389809382816, -23.59558651041826], + [-45.339397809433365, -23.59559251040397], + [-45.33940580948395, -23.59559851038976], + [-45.339413809534605, -23.59560451037546], + [-45.339421809585254, -23.595610510361258], + [-45.339429809635824, -23.59561651034696], + [-45.33943780968646, -23.59562251033266], + [-45.33944580973702, -23.59562851031844], + [-45.33945380978767, -23.595634510304148], + [-45.33946180983825, -23.595640510289943], + [-45.3394698098889, -23.595646510275646], + [-45.33947980995088, -23.595653510257602], + [-45.33948981001538, -23.595661510239996], + [-45.33949981008257, -23.595670510222917], + [-45.3395118101611, -23.595680510202197], + [-45.33952481024403, -23.595690510179075], + [-45.33953681032505, -23.595701510158797], + [-45.339549810410645, -23.595712510136234], + [-45.33956281049605, -23.595723510113842], + [-45.339575810581564, -23.59573451009128], + [-45.33958881066707, -23.595745510068777], + [-45.33960181075257, -23.59575651004623], + [-45.33961481084068, -23.59576851002437], + [-45.33962781092616, -23.5957795100018], + [-45.33964081101168, -23.595790509979306], + [-45.33965281109272, -23.595801509959024], + [-45.33966481117385, -23.59581250993873], + [-45.33967681125236, -23.595822509917834], + [-45.33968781132652, -23.59583250989912], + [-45.339697811396235, -23.59584250988267], + [-45.33970781146343, -23.595851509865668], + [-45.339717811528025, -23.595859509848164], + [-45.339726811590815, -23.59586850983329], + [-45.33973681165534, -23.59587650981567], + [-45.33974581171815, -23.595885509800866], + [-45.33975581178275, -23.595893509783345], + [-45.339764811842876, -23.595901509768044], + [-45.33977481190747, -23.595909509750413], + [-45.33978381196761, -23.59591750973498], + [-45.33979381203479, -23.595926509718023], + [-45.33980281209501, -23.59593450970269], + [-45.339811812155155, -23.59594250968724], + [-45.33982081221797, -23.595951509672467], + [-45.33982981228069, -23.595960509657605], + [-45.339838812343515, -23.5959695096428], + [-45.33984781240893, -23.595979509628556], + [-45.33985681247166, -23.595988509613647], + [-45.3398648125327, -23.595998509601586], + [-45.33987381259542, -23.596007509586794], + [-45.339882812660846, -23.596017509572537], + [-45.339891812726265, -23.596027509558166], + [-45.33990081279419, -23.596038509544456], + [-45.33991181287354, -23.59605050952688], + [-45.33992281295291, -23.596062509509327], + [-45.33993281302787, -23.596074509493857], + [-45.33994281310017, -23.596085509477927], + [-45.3399488131446, -23.596092509468647], + [-45.33995081315863, -23.596094509465328], + [-45.34033181671537, -23.596821509024554], + [-45.34077182006816, -23.5973705083584], + [-45.34112882247833, -23.597696507753202], + [-45.34128582358918, -23.59785950749774], + [-45.34141882458984, -23.598020507293658], + [-45.34158582581219, -23.598209507030184], + [-45.341692826647034, -23.598350506872215], + [-45.341816827519935, -23.598477506669433], + [-45.341971828765104, -23.59869550644796], + [-45.34225283081659, -23.599011506003542], + [-45.34249083260709, -23.5992995056382], + [-45.34463985005103, -23.602390502602773], + [-45.34469459872263, -23.6025566635726], + [-45.34511193114655, -23.603170726990175], + [-45.34871621572224, -23.608474083957137], + [-45.349457790576274, -23.6094759748726], + [-45.35061036567571, -23.611033140186347], + [-45.35062919082831, -23.61106011915963], + [-45.350785400095056, -23.611283993938038], + [-45.350848900629515, -23.61138249385194], + [-45.35094690155307, -23.611572493739565], + [-45.351045902559235, -23.6117924936412], + [-45.35111590325616, -23.611942493568606], + [-45.35122190428513, -23.612159493453262], + [-45.35127490483741, -23.61228249340338], + [-45.351341905547294, -23.61244249334277], + [-45.35140990636296, -23.612641493301027], + [-45.35148090710339, -23.61280649323431], + [-45.35155190783338, -23.61296749316555], + [-45.35161490837477, -23.613069493082342], + [-45.35177490948417, -23.61322649281625], + [-45.3519019103605, -23.61334949260419], + [-45.35201791116538, -23.613463492411245], + [-45.35213591198152, -23.613578492214543], + [-45.35226891308723, -23.613779492031327], + [-45.35241291436087, -23.61402649184874], + [-45.352517915383025, -23.614242491734895], + [-45.352574915999625, -23.614383491685953], + [-45.35261591651503, -23.614512491665593], + [-45.35264391686676, -23.61460049165163], + [-45.35267891735072, -23.61472749164337], + [-45.353023920491424, -23.61535349122429], + [-45.35315692158423, -23.61554949103823], + [-45.35329892283889, -23.615792490857835], + [-45.35349692448984, -23.616093490585794], + [-45.35371392638285, -23.616455490305015], + [-45.353841927617914, -23.61671449016389], + [-45.35397092894319, -23.617006490038307], + [-45.35434193201609, -23.617562489524172], + [-45.35491593722045, -23.618595488821718], + [-45.35521428582791, -23.618326942022534], + [-45.35543704478524, -23.618703859737025], + [-45.35565605462196, -23.619040739437956], + [-45.35723697974149, -23.622570289870094], + [-45.35765693761499, -23.62411839178179], + [-45.3589353895752, -23.62540749066972], + [-45.36023900399646, -23.626063638161316], + [-45.36188102521564, -23.626457129768294], + [-45.36341416348194, -23.626284621309424], + [-45.365936794226656, -23.62731801432529], + [-45.368078078094634, -23.628655574340655], + [-45.369466597889584, -23.630078820054376], + [-45.37116067646387, -23.63090427577514], + [-45.372521209667724, -23.6294651120134], + [-45.37363667414953, -23.628927211273705], + [-45.375456362790786, -23.6272687233857], + [-45.37635371258371, -23.626449978974804], + [-45.377158281836294, -23.62481349432955], + [-45.37730105147962, -23.624820443019495], + [-45.37770205314398, -23.624785442119546], + [-45.377938054242456, -23.62481044161431], + [-45.37811705504713, -23.624818441225155], + [-45.378262055728854, -23.624836440916194], + [-45.37840905638036, -23.624839440594737], + [-45.378652057595566, -23.62489744009165], + [-45.37882005850599, -23.624964439758333], + [-45.3789030589502, -23.62499543959252], + [-45.37901705959809, -23.625052439372507], + [-45.37914806032301, -23.625110439115662], + [-45.37932006133444, -23.625209438790673], + [-45.37942606193681, -23.625262438586095], + [-45.379625063116045, -23.62538043821189], + [-45.37976006395241, -23.625474437965483], + [-45.37991906488344, -23.625564437664174], + [-45.38006806585157, -23.62568543740143], + [-45.3801040662049, -23.62576043736254], + [-45.38017406674366, -23.625849437256317], + [-45.38030806757306, -23.62594243701155], + [-45.38064906965857, -23.62616943638355], + [-45.38076207036466, -23.626250436178484], + [-45.380871071079476, -23.626341435987676], + [-45.38099207187805, -23.62644443577671], + [-45.3811490729831, -23.62660443551724], + [-45.3813600744498, -23.62681243516472], + [-45.381441075034175, -23.626900435033768], + [-45.38156207586412, -23.627015434829413], + [-45.381684076732405, -23.62714343462967], + [-45.381827077718825, -23.627281434389108], + [-45.38190707828832, -23.6273654342582], + [-45.38202607909909, -23.627476434056028], + [-45.38215808002684, -23.62761043383751], + [-45.38227608085413, -23.62772943364177], + [-45.38236608151706, -23.627832433499076], + [-45.38259908327084, -23.62811343313706], + [-45.38269808398368, -23.628220432976715], + [-45.38279108459708, -23.628299432814554], + [-45.382862085069824, -23.628361432691538], + [-45.382974085894325, -23.628489432513774], + [-45.383054086539694, -23.628602432398367], + [-45.38320708767437, -23.628780432157154], + [-45.38335908903962, -23.62904843196638], + [-45.38346408993539, -23.629215431824786], + [-45.383601091086156, -23.629426431636492], + [-45.383702091990656, -23.629603431508986], + [-45.38382609290434, -23.62974543131229], + [-45.3839300937305, -23.62988743115958], + [-45.384056094705265, -23.630049430969148], + [-45.384368097345714, -23.630537430544095], + [-45.384435097774826, -23.630589430424518], + [-45.38450909829218, -23.63066343030135], + [-45.3845640987497, -23.63074643022481], + [-45.38459909911454, -23.63082743019111], + [-45.384723100184985, -23.631029430026437], + [-45.38494410183177, -23.63128942967947], + [-45.38500710228781, -23.631358429577716], + [-45.38506810274815, -23.631432429483226], + [-45.385107103083506, -23.631495429431116], + [-45.38548710601675, -23.631981428855152], + [-45.385573106659756, -23.63208342872061], + [-45.38563210709831, -23.632152428627684], + [-45.386199111754344, -23.632984427825317], + [-45.38698911769797, -23.633935426595745], + [-45.38726511970851, -23.634242426152603], + [-45.38765412251447, -23.634664425522278], + [-45.38780012350128, -23.634797425272115], + [-45.38796712456957, -23.634926424973624], + [-45.38810612535071, -23.634992424703], + [-45.388212125942864, -23.635041424495984], + [-45.38844812710958, -23.635092424003886], + [-45.38853612752626, -23.635104423816674], + [-45.388672128140016, -23.635111423521096], + [-45.38881212872422, -23.635100423207188], + [-45.388931129219124, -23.635090422939967], + [-45.3890161295678, -23.635081422748158], + [-45.38914013010287, -23.63507842247362], + [-45.38924613051741, -23.635059422230242], + [-45.389368130957465, -23.63502342194248], + [-45.38953613154413, -23.63496642154239], + [-45.38963813188873, -23.634927421297053], + [-45.389755132254756, -23.634871421009652], + [-45.38983713253533, -23.63484142081317], + [-45.38997213295913, -23.634777420481836], + [-45.390082133278774, -23.634715420206746], + [-45.39022913377864, -23.634660419853827], + [-45.390295133782786, -23.634551419650304], + [-45.39039513385207, -23.63441041935496], + [-45.39042413378042, -23.63433441925056], + [-45.390428133675165, -23.6342874192166], + [-45.39043513354897, -23.634227419169143], + [-45.39043513335036, -23.634151419128482], + [-45.390422133058244, -23.634061419109013], + [-45.39041513274539, -23.633953419066767], + [-45.39040513244558, -23.633855419036387], + [-45.390399132215414, -23.633777419007973], + [-45.390387131789154, -23.633634418957957], + [-45.39036213128257, -23.633482418931813], + [-45.390331130723425, -23.63332041891348], + [-45.39029913020967, -23.633177418907497], + [-45.39028512974858, -23.63302441885654], + [-45.390296129572036, -23.632938418786438], + [-45.39030412917847, -23.632774418681155], + [-45.390285128818306, -23.63266841866646], + [-45.3902731285724, -23.632594418653238], + [-45.39026912837722, -23.632526418625694], + [-45.39026412779348, -23.632311418521876], + [-45.39028012757881, -23.632202418428395], + [-45.390337127465166, -23.63206341822875], + [-45.390378127453815, -23.631990418099555], + [-45.3904531275915, -23.631917417895508], + [-45.39053712782852, -23.631867417683907], + [-45.39065812825116, -23.63182641739584], + [-45.39073212849672, -23.63179641721697], + [-45.39083712884661, -23.631754416963492], + [-45.3909341291719, -23.631716416729695], + [-45.39104712958039, -23.631683416463446], + [-45.39116213001327, -23.63165641619595], + [-45.39122513025116, -23.631641916049606], + [-45.39128813048912, -23.631627415903193], + [-45.39140013087745, -23.63158841563598], + [-45.391533131386595, -23.631560415328224], + [-45.39156113148558, -23.631551415261864], + [-45.391603131648544, -23.631543415165215], + [-45.39161213168274, -23.63154141514426], + [-45.39172113214939, -23.631537414902304], + [-45.3919881333444, -23.631547414320103], + [-45.39206713373463, -23.631564414155324], + [-45.392130134054796, -23.63158141402573], + [-45.39214313411954, -23.63158441399872], + [-45.39222813454914, -23.63160641382337], + [-45.39232913503049, -23.631621413609214], + [-45.392518135878746, -23.631629413197484], + [-45.39269513671365, -23.631652412820188], + [-45.39285713743584, -23.631657412466406], + [-45.393004138089786, -23.631661412144982], + [-45.393095138498566, -23.631665411946916], + [-45.39312413862552, -23.631665411883105], + [-45.393245139173516, -23.631672411620503], + [-45.39335613966196, -23.63167341137673], + [-45.39345214003259, -23.631654411155335], + [-45.3936061405969, -23.631612410793956], + [-45.39364114071871, -23.63160041071051], + [-45.39372514103414, -23.631580410514996], + [-45.393848141426254, -23.63152441021438], + [-45.39392214163257, -23.63147941002751], + [-45.39401814191682, -23.631427409788397], + [-45.39413714229137, -23.63137140949669], + [-45.39422214255627, -23.631330409287695], + [-45.39428714276505, -23.63130140912916], + [-45.39434014294211, -23.631280409001256], + [-45.39447014339353, -23.631235408691133], + [-45.394641143998314, -23.631180408285378], + [-45.39477114455428, -23.631175407996608], + [-45.394881145038326, -23.63117640775501], + [-45.395026145673086, -23.631176407435888], + [-45.39514014615109, -23.631168407180734], + [-45.39529014680509, -23.63116740685005], + [-45.395402147290035, -23.631165406602495], + [-45.39552514769255, -23.631113406303943], + [-45.395605147875386, -23.631049406093755], + [-45.39564514789891, -23.630991405974665], + [-45.39567814788127, -23.630929405868947], + [-45.395753147780894, -23.63076540561638], + [-45.395830147869574, -23.630670405396263], + [-45.395882147945635, -23.630612405250737], + [-45.395959148180694, -23.63057340506052], + [-45.39608714865731, -23.630541404761715], + [-45.396197149047325, -23.630506404500952], + [-45.39634714963846, -23.63048140415734], + [-45.39646715017672, -23.630486403895915], + [-45.39661615080792, -23.630478403563632], + [-45.39688615198177, -23.630475402967726], + [-45.397024152515215, -23.630448402649517], + [-45.39718315309872, -23.630405402276576], + [-45.39735915353965, -23.630279401822005], + [-45.397464153889395, -23.630237401568458], + [-45.397606154390644, -23.630191401231357], + [-45.397811154984616, -23.63007540071822], + [-45.397894155211986, -23.630023400507728], + [-45.3979841553497, -23.629925400257395], + [-45.3980461553753, -23.629831400070728], + [-45.398089155315176, -23.62973639992536], + [-45.39809015505814, -23.62963639986988], + [-45.39808215479055, -23.629547399840035], + [-45.398034154334724, -23.62945339989552], + [-45.397944153640296, -23.629338400032367], + [-45.39783415283485, -23.62921440020832], + [-45.39775715209006, -23.62905840029458], + [-45.39768815155029, -23.628967400397936], + [-45.39762815093481, -23.62883240045803], + [-45.397607150372494, -23.628652400408157], + [-45.39762015001906, -23.62849540029587], + [-45.39763214973446, -23.628366400200623], + [-45.39767014914277, -23.628076399962268], + [-45.39768614866655, -23.627867399815603], + [-45.39769914835506, -23.627726399711744], + [-45.39773714799077, -23.627523399519806], + [-45.39775414742747, -23.62727939935221], + [-45.39777414712304, -23.627129399228288], + [-45.397818146832115, -23.62694439903265], + [-45.39786214680774, -23.6268613988916], + [-45.39799014710647, -23.626761398556503], + [-45.39808214725299, -23.626663398301723], + [-45.39811714723365, -23.62659739818951], + [-45.39816114719882, -23.62651039804628], + [-45.39823914713505, -23.626355397791887], + [-45.39826214686725, -23.62621439766611], + [-45.39831514668107, -23.626054397464134], + [-45.39836814645824, -23.625880397254658], + [-45.39858514629192, -23.625453396549332], + [-45.398699146354346, -23.625286396209315], + [-45.39879414642505, -23.625154395929837], + [-45.39887314668974, -23.62512339573942], + [-45.39892614689546, -23.625113395617426], + [-45.39910504712928, -23.62490334411169], + [-45.39911609714377, -23.624890369080436], + [-45.39912714715824, -23.624877395049207], + [-45.39941714777902, -23.62462939427877], + [-45.399570027206984, -23.624537216893064], + [-45.399621148350164, -23.624506393764115], + [-45.39972164869186, -23.62446889352285], + [-45.39982214903364, -23.624431393281757], + [-45.400149150004346, -23.6242553924682], + [-45.40039915072183, -23.624111391841158], + [-45.40064915149153, -23.623987391224748], + [-45.40091615234081, -23.623865390572057], + [-45.401239153476986, -23.623759389804622], + [-45.4015131544352, -23.62366738915251], + [-45.40186215593329, -23.623656388378322], + [-45.402114156926054, -23.623614387801215], + [-45.40251415874123, -23.623639386934187], + [-45.402814160014486, -23.623624386265803], + [-45.40313116135937, -23.62360838555935], + [-45.40362016366581, -23.623672384517032], + [-45.403912165084314, -23.623726383902916], + [-45.404337167095065, -23.623784382998153], + [-45.40466416869026, -23.623847382311872], + [-45.40506717064141, -23.623919381462937], + [-45.40532217195815, -23.62399638094249], + [-45.405895174812315, -23.624129379751682], + [-45.40612017602927, -23.62421837930363], + [-45.40636117721415, -23.62426837879957], + [-45.406595178449486, -23.624349378327484], + [-45.40684617973044, -23.624419377812085], + [-45.4071361812709, -23.624523377228847], + [-45.40739018267211, -23.62463437672862], + [-45.407615183983204, -23.62475937629962], + [-45.407898185576755, -23.62489537574877], + [-45.40831018801169, -23.625137374970265], + [-45.40855018943276, -23.6252793745172], + [-45.408830191130825, -23.6254603739969], + [-45.40909619278072, -23.62564637351004], + [-45.409332194247135, -23.625812373078514], + [-45.40957019588711, -23.626041372676173], + [-45.4098221975203, -23.626244372229127], + [-45.41004819896911, -23.62642037182494], + [-45.41059520248649, -23.626850370848704], + [-45.410891204686216, -23.6271963703807], + [-45.41120720689497, -23.62751236985262], + [-45.41152620914321, -23.62783836932318], + [-45.411927211946235, -23.628239368652903], + [-45.41222621402593, -23.628534368150966], + [-45.412660217122514, -23.62899236743825], + [-45.41330322187132, -23.62973236641468], + [-45.414068227549215, -23.63062336520247], + [-45.41489223385443, -23.631655363934698], + [-45.41552723862916, -23.6324183629404], + [-45.41605424241079, -23.632982362078323], + [-45.416544245926, -23.633506361276442], + [-45.41685624834058, -23.633907360801523], + [-45.41703525015772, -23.634302360616637], + [-45.41728625243124, -23.634751360301674], + [-45.417626255018334, -23.63517135977507], + [-45.41825925984033, -23.635955358795435], + [-45.41868626330578, -23.636565358177656], + [-45.41953927067513, -23.637954357033607], + [-45.4200792753373, -23.638832356308466], + [-45.420256276737696, -23.639071356044813], + [-45.42058227915935, -23.639451355527388], + [-45.4207712805573, -23.639669355226133], + [-45.42102328265265, -23.640048354871183], + [-45.42115428393315, -23.640318354725462], + [-45.4212462850325, -23.640584354663574], + [-45.421424286770254, -23.640950354465012], + [-45.42160428825466, -23.641216354208957], + [-45.422883300603544, -23.64379335275343], + [-45.42348030645783, -23.64503035209164], + [-45.4252383249699, -23.649157350398262], + [-45.42833035961581, -23.65720634783215], + [-45.428447360930946, -23.657512347735665], + [-45.428526361733404, -23.657686347653247], + [-45.42867636278884, -23.657838347402347], + [-45.42882636374193, -23.65795134713077], + [-45.42908936531827, -23.658113346635467], + [-45.42895236500208, -23.658221346995266], + [-45.428884364909095, -23.658299347186762], + [-45.42880036521332, -23.65855534750776], + [-45.42878036557715, -23.65872734764302], + [-45.42877836614578, -23.658947347763977], + [-45.42878436675204, -23.659168347867652], + [-45.42880136742755, -23.659397347951227], + [-45.4288333683628, -23.659700348040907], + [-45.428874369350716, -23.66000834811331], + [-45.42896537068617, -23.6603653481012], + [-45.429015371477206, -23.660583348106023], + [-45.42910137251519, -23.660835348049414], + [-45.42917537347698, -23.66107834801441], + [-45.42926337451846, -23.66132834795232], + [-45.429326375384875, -23.66155334793212], + [-45.42940037647806, -23.661846347923625], + [-45.429503377719065, -23.66214734785522], + [-45.429592379137866, -23.662539347865962], + [-45.429644379945664, -23.66276034786796], + [-45.42966438076043, -23.66303734797031], + [-45.42971938268952, -23.663680348188976], + [-45.429762383526295, -23.663927348224608], + [-45.42979838447155, -23.664227348303793], + [-45.42988138568297, -23.664550348291204], + [-45.42989438635171, -23.66478334838573], + [-45.42992938731112, -23.665090348470784], + [-45.42995838827566, -23.665409348575466], + [-45.43001238915817, -23.665655348586245], + [-45.430081390032655, -23.665873348548963], + [-45.43022239214955, -23.66644434853942], + [-45.43026239309679, -23.666738348606486], + [-45.43033439434165, -23.667092348634572], + [-45.43041639609532, -23.667623348734114], + [-45.43040739706442, -23.66800734895709], + [-45.43043039807392, -23.668353349089262], + [-45.43041339879008, -23.668654349286093], + [-45.43039239949929, -23.668959349493758], + [-45.430432400486, -23.66926834956884], + [-45.43049540158402, -23.669581349595045], + [-45.43051040231173, -23.669833349695143], + [-45.430525402976315, -23.670061349782586], + [-45.43064740539141, -23.67077734989149], + [-45.430721407325855, -23.671390350052054], + [-45.43075140885751, -23.671923350267527], + [-45.43077841038925, -23.672461350492345], + [-45.430754411571506, -23.672951350804595], + [-45.43079841309632, -23.673458350975295], + [-45.430911415367504, -23.67413435108283], + [-45.430930416911764, -23.67469035133488], + [-45.43107342214739, -23.676444351946007], + [-45.431298425582376, -23.677376351940968], + [-45.43128942699639, -23.67792935225326], + [-45.431295429238524, -23.678772352685655], + [-45.43131042996927, -23.679025352786272], + [-45.431325430870885, -23.679343352921133], + [-45.431276432057366, -23.67987635331126], + [-45.43124943440755, -23.68081535386743], + [-45.43130243525756, -23.6810503538744], + [-45.431297436218834, -23.681424354083102], + [-45.43124843823632, -23.68227335464039], + [-45.43122443931702, -23.682724354931892], + [-45.430994444199136, -23.68496435662477], + [-45.43065545045074, -23.687906358930118], + [-45.430246455357704, -23.69045336118163], + [-45.430232456109174, -23.690762361376056], + [-45.43012545714231, -23.691333361914623], + [-45.429330465081165, -23.695675365969812], + [-45.42857746993768, -23.698775369275747], + [-45.42835247270417, -23.700201370527765], + [-45.42771447554449, -23.70234337307305], + [-45.42632048315446, -23.707556378916674], + [-45.42631948335283, -23.707633378959592], + [-45.426303483522254, -23.70772437904313], + [-45.42627848366271, -23.70781937914869], + [-45.42625048377684, -23.707909379258272], + [-45.42622448386815, -23.707987379357178], + [-45.42620648394193, -23.708045379427723], + [-45.426195484001596, -23.708086379473777], + [-45.426189484049054, -23.70811437950188], + [-45.42618748409031, -23.70813337951634], + [-45.426187484127176, -23.70814737952374], + [-45.42618948417544, -23.70816237952724], + [-45.426191484221064, -23.708176379530215], + [-45.42619448427632, -23.708192379532033], + [-45.426174485236565, -23.708590379786862], + [-45.42624309365272, -23.70863413765801], + [-45.426213615637174, -23.70867735274618], + [-45.4261841376217, -23.708720568834252], + [-45.426164485611345, -23.708749378893007], + [-45.42605348557475, -23.708920379229326], + [-45.42599748558178, -23.70901637940408], + [-45.42596448558978, -23.709074379507847], + [-45.425931485500335, -23.709095379592085], + [-45.42588548537756, -23.709125379709842], + [-45.42588248550136, -23.709177379744034], + [-45.42587948562506, -23.709229379778094], + [-45.42583948553654, -23.709262379884123], + [-45.425800485333845, -23.709250379964264], + [-45.425760485016255, -23.70919638002429], + [-45.42573048473196, -23.70913838006005], + [-45.42568048443358, -23.70910838015493], + [-45.42563148416338, -23.709087380252402], + [-45.42555848381947, -23.70907838040928], + [-45.42550248361329, -23.70909338054126], + [-45.42546248339832, -23.70907838062192], + [-45.42542248312805, -23.709042380691532], + [-45.42538948287799, -23.70900238074344], + [-45.42531348241035, -23.70895138088476], + [-45.42524748204972, -23.70892438101663], + [-45.42514148158477, -23.70892438125139], + [-45.4250494811733, -23.708921381453596], + [-45.42498048099962, -23.708970381632316], + [-45.42495748105931, -23.709031381715516], + [-45.4249574811778, -23.709076381739393], + [-45.424990481467425, -23.709131381695414], + [-45.42504048174991, -23.709155381597316], + [-45.42507948199211, -23.709182381525224], + [-45.42508648209651, -23.70921038152455], + [-45.42505648202819, -23.709234381603622], + [-45.42503748196057, -23.709240381648947], + [-45.42500048179824, -23.709240381730886], + [-45.424981481796536, -23.709271381789353], + [-45.42500148201061, -23.709319381770406], + [-45.42504048231074, -23.709368381710018], + [-45.42510348264246, -23.709389381581556], + [-45.42517648302588, -23.709413381432586], + [-45.425222483082834, -23.709358381301566], + [-45.42526148316695, -23.70932538119778], + [-45.42532448338546, -23.709303381046542], + [-45.425380483646826, -23.70930938092563], + [-45.42545348399864, -23.709321380770305], + [-45.425506484294345, -23.709345380665646], + [-45.42558548472774, -23.709378380508195], + [-45.42566548514454, -23.709403380344163], + [-45.42569848536829, -23.70943338028691], + [-45.42573148565529, -23.70948738024231], + [-45.425744485849165, -23.709539380241054], + [-45.42569848589491, -23.709633380392717], + [-45.42568248603276, -23.70971238046989], + [-45.42568248620917, -23.70977938050527], + [-45.4256864864664, -23.709870380544604], + [-45.42568048661646, -23.709937380593257], + [-45.42563748671748, -23.71004738074674], + [-45.42557848686682, -23.710202380959444], + [-45.42556248691513, -23.710247381018675], + [-45.42554548698542, -23.71030238108544], + [-45.425519486992464, -23.710348381167332], + [-45.42548348697678, -23.71040238127557], + [-45.42546748709084, -23.710472381348055], + [-45.42545148735771, -23.710600381451215], + [-45.42542848734376, -23.710633381519592], + [-45.425398487349106, -23.710685381613583], + [-45.425388487434226, -23.710734381661613], + [-45.425365487501836, -23.710798381746454], + [-45.42534948755023, -23.71084338180569], + [-45.42531348744229, -23.710862381895467], + [-45.425280487239625, -23.71084038195688], + [-45.425270487100924, -23.710804381960045], + [-45.42525348686572, -23.710743381965454], + [-45.425239486556784, -23.710649381946702], + [-45.425166485741414, -23.710461382009036], + [-45.42511948522452, -23.710343382050652], + [-45.42505648455594, -23.710194382111396], + [-45.425020484303175, -23.71015838217214], + [-45.42498748415842, -23.71015838224523], + [-45.42495748407414, -23.710176382321183], + [-45.42492448405841, -23.71022538242016], + [-45.42489848396021, -23.710231382480888], + [-45.42486148373469, -23.710207382550212], + [-45.42483548351528, -23.710167382586704], + [-45.424775483212585, -23.710152382711595], + [-45.42473248296075, -23.71012838279419], + [-45.424699482815996, -23.710128382867275], + [-45.424666482800184, -23.71017738296625], + [-45.42467048302583, -23.71025638299926], + [-45.42469048341632, -23.710371383015705], + [-45.42470448382269, -23.710502383053996], + [-45.424707484170256, -23.710629383114533], + [-45.4247214846162, -23.71077538316076], + [-45.42471848500321, -23.71092738324774], + [-45.42470648527973, -23.71105238334051], + [-45.42467648555625, -23.711207383488976], + [-45.42465748573626, -23.711307383583865], + [-45.424618485996994, -23.711471383757086], + [-45.42461848632616, -23.71159638382314], + [-45.424618486565805, -23.71168738387125], + [-45.42459948678532, -23.711802383974188], + [-45.42455048709968, -23.712003384189053], + [-45.42451748724986, -23.71211538432134], + [-45.42450148737972, -23.712191384396966], + [-45.42451848758342, -23.712240384385254], + [-45.42455748782557, -23.712267384313176], + [-45.424604488000234, -23.712255384202717], + [-45.424673488150134, -23.71219738401919], + [-45.4247424881395, -23.712078383803405], + [-45.42479848816926, -23.711996383636045], + [-45.42482448824375, -23.711981383570432], + [-45.42484748837629, -23.711993383525844], + [-45.42484448847377, -23.71203538355471], + [-45.42483448867214, -23.71212738362559], + [-45.42479948887678, -23.71226338377502], + [-45.424743489113, -23.712446383995818], + [-45.42469148919559, -23.712564384173398], + [-45.4246284891852, -23.712665384366407], + [-45.42456248910375, -23.71274438455443], + [-45.4245004890002, -23.712808384725598], + [-45.42450048910292, -23.712847384746258], + [-45.42448448925131, -23.71293038482555], + [-45.42446748936899, -23.713003384901896], + [-45.42439848945073, -23.713149385131878], + [-45.424339489510544, -23.713270385326577], + [-45.424307489609824, -23.713361385445662], + [-45.424241489889056, -23.713577385706145], + [-45.42416649007356, -23.71377238597541], + [-45.42414349024396, -23.71387538608081], + [-45.42409149032918, -23.713994386258953], + [-45.42403849038368, -23.714103386433962], + [-45.423979490327696, -23.71418038660548], + [-45.42393649024173, -23.714219386721396], + [-45.423831489965316, -23.714289386991044], + [-45.42376148982681, -23.71435338717995], + [-45.4237484899067, -23.714405387236198], + [-45.423765490141946, -23.714466387230893], + [-45.42380249042285, -23.71451138717271], + [-45.42384549070632, -23.714547387096452], + [-45.423878491027466, -23.71461438705874], + [-45.423882491358526, -23.714733387112812], + [-45.42384949150872, -23.714845387245205], + [-45.42380049147012, -23.71491238738923], + [-45.42373449145449, -23.715016387590435], + [-45.42369149148969, -23.715101387730698], + [-45.42364949167412, -23.71524138789774], + [-45.423613491819076, -23.715356388038323], + [-45.42361349202715, -23.715435388080184], + [-45.423584492173745, -23.71553938819942], + [-45.42351549224504, -23.71568138842743], + [-45.42347549226177, -23.715754388554668], + [-45.42341349236638, -23.715897388767594], + [-45.423360492463026, -23.716022388951192], + [-45.42333149278355, -23.716192389105316], + [-45.42331249317429, -23.716372389242686], + [-45.423270493453565, -23.716548389428837], + [-45.42321449383999, -23.71678838967991], + [-45.42315249411318, -23.716995389926794], + [-45.423103494274855, -23.71713839011092], + [-45.423054494315295, -23.717235390270837], + [-45.422991494376014, -23.717363390478138], + [-45.4229554944972, -23.71746939061396], + [-45.42292349469395, -23.717597390752587], + [-45.42289449489604, -23.71772239088294], + [-45.42288149514182, -23.71783739097258], + [-45.422858495370214, -23.717962391089703], + [-45.42282549544932, -23.718047391207794], + [-45.422776495521354, -23.718156391374013], + [-45.42270149564268, -23.718327391630663], + [-45.42266149578585, -23.718448391783294], + [-45.42260949595811, -23.718600391978867], + [-45.42257749626014, -23.71876839213871], + [-45.42254449648152, -23.718907392285317], + [-45.422524496657196, -23.719007392382554], + [-45.422498496761726, -23.719090392484098], + [-45.42248249684166, -23.719147392549612], + [-45.422423496927834, -23.71927839274974], + [-45.42237449701833, -23.719394392919604], + [-45.422344497255565, -23.719534393060194], + [-45.422279497449686, -23.71971639330053], + [-45.42225649775713, -23.719871393433547], + [-45.42217449794254, -23.72007839372473], + [-45.42208649814116, -23.72030039403717], + [-45.42203449846349, -23.72050939426295], + [-45.42201178361736, -23.720605645364177], + [-45.421917898874554, -23.72085966070666], + [-45.42171609616736, -23.721307006390482], + [-45.42177520449018, -23.72171062347308], + [-45.42179903002342, -23.721873316506336], + [-45.421787501383974, -23.72202939561451], + [-45.421771501682706, -23.722169395724062], + [-45.4217585018733, -23.722263395802578], + [-45.421742502050655, -23.722357395887727], + [-45.42172350226502, -23.72247039598964], + [-45.42171050262424, -23.722628396102074], + [-45.4217105028403, -23.722710396145484], + [-45.4216715031012, -23.72287439631866], + [-45.42167550337441, -23.722971396361064], + [-45.42166550369937, -23.72311139645733], + [-45.42166650402259, -23.723232396519098], + [-45.42168950436335, -23.72332339651636], + [-45.421739504727725, -23.72337839643459], + [-45.421798505034126, -23.72339639631336], + [-45.42185550528434, -23.723396396187034], + [-45.42192450548183, -23.72335639601295], + [-45.421987505663495, -23.72332039585433], + [-45.42203950577849, -23.723277395716323], + [-45.422079505769545, -23.723207395590723], + [-45.42211200573964, -23.723141895484055], + [-45.42214450570973, -23.72307639537737], + [-45.42218450586953, -23.723070395285493], + [-45.422214506080245, -23.72310039523488], + [-45.422191506171615, -23.72317339532447], + [-45.42215550627187, -23.723271395456127], + [-45.4221410063992, -23.723343895526572], + [-45.422126506526546, -23.72341639559711], + [-45.42213950676816, -23.723486395605356], + [-45.42214350707555, -23.72359639565462], + [-45.42214650741547, -23.723720395713645], + [-45.422183507809805, -23.723808395678105], + [-45.42222650810133, -23.72384739560347], + [-45.42230950855529, -23.72388139543757], + [-45.42242150912592, -23.723911395205217], + [-45.42246450937003, -23.72393239512099], + [-45.42245150939198, -23.72396239516567], + [-45.42237250903989, -23.723960395339724], + [-45.422316508759884, -23.72394739545692], + [-45.422286508592634, -23.723933895516307], + [-45.422256508425384, -23.723920395575597], + [-45.422177507967874, -23.72387839572854], + [-45.422144507878365, -23.723899395812733], + [-45.42209450788555, -23.723985395969052], + [-45.422085507972504, -23.724033396014384], + [-45.422075508192094, -23.724133396089456], + [-45.42205650839858, -23.724243396189788], + [-45.42201350848916, -23.724349396341157], + [-45.4219475085684, -23.724489396561438], + [-45.421865508498286, -23.72459939680142], + [-45.421812508368454, -23.724638396939426], + [-45.42178350839391, -23.72469639703437], + [-45.42179350855906, -23.724742397036643], + [-45.42176050860658, -23.724815397148333], + [-45.421721508580276, -23.724870397263953], + [-45.42165550843289, -23.724924397438745], + [-45.42163550845046, -23.724964397504255], + [-45.4216255085831, -23.72503139756181], + [-45.42159950859025, -23.72507739764385], + [-45.42151350850786, -23.725189397893644], + [-45.42140550830777, -23.725293398188004], + [-45.421296508140244, -23.725411398492103], + [-45.42123450803675, -23.725475398663328], + [-45.42119450810358, -23.72556739880063], + [-45.421135508115995, -23.725670398985873], + [-45.42109950815036, -23.72574339910428], + [-45.420987508043424, -23.72588939942977], + [-45.42093850801279, -23.72595939957541], + [-45.420911507991654, -23.725996399654885], + [-45.420865507852994, -23.726020399769485], + [-45.420842507817945, -23.726045399833694], + [-45.42082250783295, -23.7260843998987], + [-45.420793507713455, -23.72608739996453], + [-45.42070750728054, -23.726066400143974], + [-45.42063850703566, -23.726088400308573], + [-45.42060450690222, -23.72609440038706], + [-45.42059150688468, -23.726109400423802], + [-45.42060150704194, -23.7261524004244], + [-45.420621507256186, -23.726200400405546], + [-45.42067150755473, -23.72623040031051], + [-45.420721507829626, -23.726251400210867], + [-45.42077750811501, -23.72626640009469], + [-45.420820508322166, -23.72627340000305], + [-45.42086050856895, -23.726300399928707], + [-45.42091350891234, -23.72634239983347], + [-45.4209645092627, -23.72639039974581], + [-45.42091050904143, -23.726396399868655], + [-45.42089350895372, -23.726391399903722], + [-45.420833508619054, -23.726364400022465], + [-45.420770508252915, -23.726330400144047], + [-45.42070850792531, -23.726309400270367], + [-45.420588507248304, -23.726252400506148], + [-45.42057550713594, -23.726231400523808], + [-45.42053550683118, -23.726182400586534], + [-45.420482506527314, -23.726155400689706], + [-45.42046650655987, -23.726194400745822], + [-45.420466506673186, -23.726237400768575], + [-45.42045650675836, -23.726286400816726], + [-45.42044050679102, -23.726325400872767], + [-45.4203745065987, -23.726362401038582], + [-45.4202455060798, -23.72638040133406], + [-45.420120505573124, -23.726396401619457], + [-45.420067505356315, -23.726402401740145], + [-45.42004150529747, -23.726423401808916], + [-45.42004450544766, -23.726475401829745], + [-45.42006750561192, -23.726499401791504], + [-45.42006750567781, -23.726524401804664], + [-45.420048505633865, -23.726539401854822], + [-45.42002150560235, -23.72657240193206], + [-45.42002850577798, -23.72662740194571], + [-45.420078506174, -23.726694401870315], + [-45.42016150677035, -23.726782401732933], + [-45.420247507353494, -23.726860401583586], + [-45.4202795076837, -23.726932401550766], + [-45.4202355075327, -23.72694840165685], + [-45.42020750727536, -23.72689740169187], + [-45.42016150691268, -23.726836401761553], + [-45.420108506561434, -23.726791401855177], + [-45.42002250601521, -23.726727402011864], + [-45.419932505422445, -23.726652402171627], + [-45.419892505117666, -23.726603402234364], + [-45.419863504919206, -23.72657640228433], + [-45.41980750464962, -23.726567402403646], + [-45.41976050449072, -23.726585402517404], + [-45.4197175042782, -23.726576402607893], + [-45.419645504004244, -23.726592402775896], + [-45.419589503861154, -23.726631402920688], + [-45.41955650384541, -23.726680403019728], + [-45.4195335038498, -23.72672040309188], + [-45.41950350367591, -23.7267044031499], + [-45.419496503542454, -23.72666540314475], + [-45.41948650332988, -23.72660140313306], + [-45.41950650329116, -23.726553403063296], + [-45.41953550334469, -23.72652540298419], + [-45.41956250336848, -23.72648940290533], + [-45.41954550322791, -23.726464402929736], + [-45.41950250297584, -23.726440403012404], + [-45.41940350245433, -23.72640740321434], + [-45.419376502272435, -23.726383403261448], + [-45.419290501773645, -23.726337403427678], + [-45.41920850134255, -23.726310403595082], + [-45.41913250085868, -23.726253403733313], + [-45.41908850054429, -23.726207403806498], + [-45.41904550013154, -23.72612240385676], + [-45.41902249991992, -23.72608040388548], + [-45.418989499672215, -23.72604140393801], + [-45.418962499495684, -23.726019403986168], + [-45.41890349923667, -23.7260194041169], + [-45.41887049906019, -23.726007404183658], + [-45.41884349886258, -23.72597740422762], + [-45.41881049863867, -23.725947404284845], + [-45.41876749844196, -23.725944404378588], + [-45.41867649798977, -23.725924404569568], + [-45.4185594973865, -23.725890404810862], + [-45.41840749664796, -23.725863405133374], + [-45.418344496308144, -23.72583940526031], + [-45.41826849586911, -23.725799405407507], + [-45.41815249531501, -23.72578240565557], + [-45.41804049484696, -23.72579140590853], + [-45.41788149419101, -23.7258074062692], + [-45.41775949375817, -23.725846406560212], + [-45.417657493384084, -23.72587440680106], + [-45.417512492892364, -23.725929407151476], + [-45.417422492571, -23.725957407365744], + [-45.41732349221536, -23.725987407600954], + [-45.417211491860556, -23.72603940787669], + [-45.417079491507586, -23.726125408214624], + [-45.41694149110984, -23.726204408562303], + [-45.41681549066997, -23.726247408864236], + [-45.41671349028525, -23.726271409102896], + [-45.416650490042905, -23.72628440924938], + [-45.41655548963373, -23.726287409461523], + [-45.416419489036535, -23.726287409762833], + [-45.41636348876691, -23.72627840988211], + [-45.41624748809161, -23.72621541010569], + [-45.416191487790464, -23.72619441021865], + [-45.416128487482176, -23.726182410351857], + [-45.41604948705629, -23.72615241051101], + [-45.41596948662594, -23.726122410672357], + [-45.415863486060445, -23.72608441088712], + [-45.4157384853404, -23.726019411129574], + [-45.41562848472301, -23.72596841134622], + [-45.41554348423651, -23.725925411511835], + [-45.41544048364199, -23.72587141171138], + [-45.41534448302031, -23.72579541188381], + [-45.41523148226859, -23.725698412082732], + [-45.415185481940185, -23.725650412159208], + [-45.41519148190064, -23.725625412132644], + [-45.41522148200075, -23.725613412059815], + [-45.41526448222118, -23.725625411970938], + [-45.415284482348554, -23.725640411934563], + [-45.41531448246446, -23.725634411864956], + [-45.41534348251278, -23.72560441178477], + [-45.41536648245303, -23.725543411701587], + [-45.415399482558485, -23.725528411620445], + [-45.415429482713904, -23.725537411558772], + [-45.415462482906094, -23.72555541149519], + [-45.41551548321797, -23.725585411393652], + [-45.41561448373163, -23.725615411190237], + [-45.415687484146986, -23.725651411047618], + [-45.41578048458699, -23.725663410847968], + [-45.41583948484594, -23.725663410717267], + [-45.41590248513053, -23.725666410579247], + [-45.415968485491405, -23.725693410447345], + [-45.41606448604995, -23.725745410262256], + [-45.416160486621564, -23.725802410079673], + [-45.41621648693068, -23.72582640996836], + [-45.416272487176585, -23.725826409844274], + [-45.41630948730746, -23.72581440975594], + [-45.41633248732673, -23.72578340968856], + [-45.416318487146704, -23.72573840969577], + [-45.41630248693948, -23.72568640970362], + [-45.41626548666641, -23.725644409763344], + [-45.416153485990236, -23.725574409974453], + [-45.41606748546247, -23.725517410134707], + [-45.416000485039156, -23.7254684102572], + [-45.4159084845088, -23.725420410435632], + [-45.41584848419002, -23.72539941055738], + [-45.41575948377557, -23.72539041074983], + [-45.41563348319859, -23.725381411024152], + [-45.41550848261029, -23.72536641129314], + [-45.41540248206587, -23.725336411512078], + [-45.41526648141342, -23.72531541180225], + [-45.4151244807187, -23.72528841210252], + [-45.41500548009347, -23.72524941234545], + [-45.414932479638686, -23.725198412480182], + [-45.41491247942966, -23.72515241250011], + [-45.414889479112716, -23.7250704125076], + [-45.41484647864471, -23.724964412546708], + [-45.41478647818888, -23.724891412640925], + [-45.41469647757248, -23.72480741279576], + [-45.41458747688584, -23.724728412995283], + [-45.41449847625538, -23.724637413144233], + [-45.41443847581548, -23.724570413241686], + [-45.41436547536062, -23.72451941337632], + [-45.41426947477051, -23.724455413555056], + [-45.414190474320954, -23.724416413709367], + [-45.41410747384587, -23.724374413871043], + [-45.41405447349986, -23.724331413965622], + [-45.413984472987124, -23.724253414079286], + [-45.413941472598175, -23.72417741413426], + [-45.413911472274194, -23.724104414162024], + [-45.41388847204412, -23.72405541418693], + [-45.41383847167441, -23.723998414267555], + [-45.41375947125647, -23.723971414428192], + [-45.41369647089032, -23.723937414549635], + [-45.41364647055231, -23.72389241463656], + [-45.413606470208116, -23.723828414691255], + [-45.413567469910426, -23.723780414752216], + [-45.41349146950565, -23.72375341490623], + [-45.413428469197456, -23.723741415039395], + [-45.41331946858976, -23.72369241525485], + [-45.41319646798654, -23.723668415514517], + [-45.413087467444676, -23.723644415743177], + [-45.41300546708723, -23.723645415925315], + [-45.41292946685627, -23.72368441611434], + [-45.41287946679742, -23.723745416257486], + [-45.41282046672267, -23.723815416425204], + [-45.41277746674193, -23.723894416562278], + [-45.41273146679014, -23.72398941671457], + [-45.41265246672245, -23.724095416945705], + [-45.41259346674507, -23.724202417133174], + [-45.41249546677042, -23.72437541744194], + [-45.412485466879225, -23.724433417494765], + [-45.41244946693716, -23.724515417618022], + [-45.412367466848295, -23.724618417854227], + [-45.412271466621704, -23.72469241810607], + [-45.41221546657583, -23.724768418270376], + [-45.41216646654505, -23.724838418416017], + [-45.41213346652659, -23.72488641851454], + [-45.41206746635005, -23.72492941868353], + [-45.412017966177366, -23.72494641880224], + [-45.41196846600486, -23.724963418920865], + [-45.41189246569484, -23.724972419093895], + [-45.41183646550413, -23.724993419229126], + [-45.41175046512922, -23.724994419420103], + [-45.411661464690994, -23.72497641960761], + [-45.41157146420627, -23.724942419788917], + [-45.41151246388388, -23.724918419906913], + [-45.411456463638046, -23.724918420030946], + [-45.411320463051396, -23.724922420334238], + [-45.41120846251216, -23.72490442057276], + [-45.411186962397984, -23.724896920616402], + [-45.411165462283826, -23.724889420659927], + [-45.41108946183941, -23.724847420806054], + [-45.411003461348514, -23.7248044209737], + [-45.41096046112818, -23.724792421062546], + [-45.410910460782176, -23.724744421147843], + [-45.410841460415945, -23.72472042128789], + [-45.41078446015782, -23.724717421412567], + [-45.41070545972133, -23.72468342156941], + [-45.41065245937805, -23.724641421664494], + [-45.41057345883096, -23.72456542179915], + [-45.41052045847977, -23.72452042189264], + [-45.41050345831815, -23.72448742191279], + [-45.410496458190025, -23.724450421908745], + [-45.41052945812689, -23.724371421793705], + [-45.41053545796108, -23.72429842174169], + [-45.41048845759671, -23.724238421813947], + [-45.41046245745874, -23.724229421866738], + [-45.41042045729808, -23.72423842196452], + [-45.41041045732524, -23.724265422001015], + [-45.41035745712416, -23.72427742212476], + [-45.41032445691598, -23.724253422185075], + [-45.41030145668855, -23.724205422210574], + [-45.410264456486615, -23.72419042228457], + [-45.41021845628464, -23.72419042238642], + [-45.41018545617927, -23.72420542246745], + [-45.41013245594649, -23.724205422584806], + [-45.41008945571816, -23.724190422672066], + [-45.410056455596965, -23.724199422749955], + [-45.410033455527504, -23.724211422807176], + [-45.410003455461606, -23.724236422886886], + [-45.40998045536067, -23.724236422937825], + [-45.40995045522102, -23.72423342300267], + [-45.409921454998795, -23.72419742304775], + [-45.40987445472661, -23.724172423138626], + [-45.4098354545633, -23.724175423226566], + [-45.40981845455449, -23.724200423277487], + [-45.40981845469929, -23.7242554233066], + [-45.40980545468962, -23.72427342334493], + [-45.409749454475275, -23.724285423475397], + [-45.409719454272455, -23.724258423527395], + [-45.409689454077515, -23.724234423581173], + [-45.40965345391938, -23.72423442366088], + [-45.409617453864016, -23.72427342376122], + [-45.409617453937734, -23.72430142377607], + [-45.40961745403253, -23.724337423795244], + [-45.409594453955194, -23.72434642385089], + [-45.409548453721605, -23.724334423946445], + [-45.40951845354247, -23.724316424003263], + [-45.40947245337996, -23.724331424113156], + [-45.40944245329037, -23.724347424187975], + [-45.40939645304887, -23.72433242428196], + [-45.40933045279849, -23.724347424435965], + [-45.40931045281338, -23.724386424500985], + [-45.4093104529345, -23.724432424525364], + [-45.4093374531978, -23.724487424494775], + [-45.40932745324083, -23.72452042453442], + [-45.40931445326535, -23.724551424579637], + [-45.40927845324159, -23.724602424686452], + [-45.40925845324325, -23.72463642474877], + [-45.4092784534733, -23.72469042473315], + [-45.40929845365064, -23.724724424706874], + [-45.40929545372436, -23.724757424731095], + [-45.40928545376205, -23.72478842476966], + [-45.40925245361715, -23.72478842484272], + [-45.409225453466966, -23.724776424896156], + [-45.40919245331417, -23.724773424967545], + [-45.409176453283315, -23.724788425011027], + [-45.40917645338602, -23.72482742503176], + [-45.40916945342112, -23.72485242506044], + [-45.40914045331749, -23.72486142512947], + [-45.40909745321552, -23.72489442524216], + [-45.40909445329979, -23.72493142526841], + [-45.409074453443715, -23.72501942535937], + [-45.40903145347867, -23.7251044254997], + [-45.40891645325535, -23.725211425811192], + [-45.40886045318581, -23.725278425970682], + [-45.40878145319965, -23.725415426218355], + [-45.408719453190606, -23.72551542640863], + [-45.408663453226374, -23.725622426589485], + [-45.408571453206804, -23.725768426870662], + [-45.4085384531409, -23.725798426959642], + [-45.40848545292398, -23.725804427080156], + [-45.40844245276936, -23.725817427182296], + [-45.40842245274467, -23.725841427239345], + [-45.40842345286754, -23.725886427260992], + [-45.408393452849005, -23.725929427350238], + [-45.40833045265397, -23.725960427506188], + [-45.40820145205582, -23.725948427785458], + [-45.40811945162455, -23.725921427952684], + [-45.408030451225784, -23.72591842814818], + [-45.40792445080766, -23.72593642839243], + [-45.40781245039746, -23.72596742865686], + [-45.407716450175805, -23.72604342890984], + [-45.40762045000438, -23.72613842917278], + [-45.407528449753045, -23.726196429407267], + [-45.407409449383124, -23.726254429701555], + [-45.40734044921433, -23.72630542988136], + [-45.407261449054246, -23.726376430094078], + [-45.40720844897161, -23.726433430241574], + [-45.407090448679796, -23.726519430548517], + [-45.407014448514516, -23.726583430750836], + [-45.406978448356334, -23.726583430830537], + [-45.406925448028744, -23.726547430928726], + [-45.406878447724914, -23.72651043101312], + [-45.40678944714445, -23.726438431171925], + [-45.40670344659033, -23.72637143132686], + [-45.40662744606433, -23.726298431456378], + [-45.40653444546631, -23.72622643162407], + [-45.406464445119376, -23.726211431771077], + [-45.40639244471361, -23.72617743191247], + [-45.406345444380825, -23.726129431991087], + [-45.40631244415694, -23.726099432048137], + [-45.40624844379155, -23.72606743217285], + [-45.40614744330324, -23.726050432387453], + [-45.40608744296855, -23.72602343250595], + [-45.406024442533926, -23.725963432613575], + [-45.405958442004426, -23.725872432711416], + [-45.40587544134507, -23.725760432835678], + [-45.40581844082093, -23.72565643290668], + [-45.405759440403855, -23.725596433005443], + [-45.40568643992262, -23.725535433134667], + [-45.40561343950724, -23.725499433277225], + [-45.405537439102375, -23.72547243343102], + [-45.40549743889507, -23.72546043351328], + [-45.4054344384815, -23.725408433625105], + [-45.40531543759293, -23.7252694338147], + [-45.4052194369317, -23.725178433978915], + [-45.40506343600697, -23.725087434275952], + [-45.40494443536586, -23.725042434515494], + [-45.404838434797654, -23.72500343472949], + [-45.40476643445773, -23.724994434884064], + [-45.404703434149454, -23.724982435017132], + [-45.40467343405709, -23.724997435091513], + [-45.40467043414132, -23.725034435117852], + [-45.4046444340667, -23.725049435183347], + [-45.40461143392176, -23.725049435256402], + [-45.404578433721476, -23.72502843531826], + [-45.40450843339032, -23.725019435468397], + [-45.40448243330776, -23.725031435532337], + [-45.40445243321542, -23.72504643560671], + [-45.40441943307048, -23.725046435679765], + [-45.40438643290187, -23.725037435748078], + [-45.40435043277794, -23.7250504358347], + [-45.40431043271286, -23.725092435945534], + [-45.40425743247214, -23.725089436061225], + [-45.404218432300816, -23.725089436147552], + [-45.40417843226196, -23.72514143626376], + [-45.40415843230314, -23.725190436334007], + [-45.40410643230642, -23.725278436495856], + [-45.4040504322368, -23.72534543665545], + [-45.40399743205137, -23.7253634367823], + [-45.40389843159553, -23.725355436997155], + [-45.40380543112118, -23.725330437189815], + [-45.40376643091827, -23.72531843726975], + [-45.40370643068894, -23.725331437409473], + [-45.40364343041225, -23.725331437548913], + [-45.40357443010917, -23.72533143770165], + [-45.403462429577694, -23.72531643794159], + [-45.403339429005875, -23.725304438207484], + [-45.403227428540326, -23.725314438460636], + [-45.4031454281801, -23.72531443864214], + [-45.40309842800528, -23.72532643875267], + [-45.403039427938246, -23.725399438921944], + [-45.40294742764735, -23.725442439148434], + [-45.40286842738979, -23.72547643934141], + [-45.40279842707438, -23.72547343949469], + [-45.40271642669049, -23.725464439671462], + [-45.40263342625489, -23.725437439840825], + [-45.402547425821865, -23.725416440020044], + [-45.40245842542304, -23.725413440215465], + [-45.40236942511369, -23.725444440428944], + [-45.40226342476647, -23.72548944068743], + [-45.40219742450289, -23.72549944083886], + [-45.40210442409442, -23.72549944104471], + [-45.40202542371586, -23.725487441213165], + [-45.40191942313175, -23.72544244142378], + [-45.401889422968395, -23.72543044148386], + [-45.40189342290435, -23.72539944145846], + [-45.40192942300726, -23.72537844136765], + [-45.40192942288621, -23.725332441343227], + [-45.40189242269204, -23.725320441418738], + [-45.4018924226052, -23.725287441401214], + [-45.40190242252019, -23.72523844135307], + [-45.401882422353324, -23.725208441381408], + [-45.40182642209164, -23.725202441502105], + [-45.40175342173939, -23.725190441657286], + [-45.40173342154894, -23.725151441680786], + [-45.401703421174936, -23.725059441698303], + [-45.401657420838696, -23.725008441773063], + [-45.40158442044696, -23.724981441920274], + [-45.4015564203766, -23.72500144199283], + [-45.40148042003489, -23.724998442159457], + [-45.401355419599014, -23.725041442458945], + [-45.401116418862294, -23.72516044305115], + [-45.40084141768322, -23.725171443665598], + [-45.40081041719442, -23.725037443663005], + [-45.40074341664753, -23.724941443760216], + [-45.400675416259325, -23.724907443892647], + [-45.4005284154373, -23.724840444182313], + [-45.400399414739056, -23.72479044444124], + [-45.40025941412403, -23.72479044475107], + [-45.40013041361788, -23.7248134450487], + [-45.399983412959074, -23.724808445371384], + [-45.3998494122388, -23.724758445641363], + [-45.39973241145916, -23.72465744584657], + [-45.399646410844554, -23.724567445988946], + [-45.39958541032392, -23.72447144607293], + [-45.399468409412634, -23.724320446251568], + [-45.399290408320255, -23.724202446582705], + [-45.399180407644934, -23.724129446787284], + [-45.39911840716748, -23.724051446882946], + [-45.399069406760105, -23.72397844695256], + [-45.39903240653709, -23.72395544702222], + [-45.399020406484375, -23.723955447048755], + [-45.39902040660277, -23.724000447072704], + [-45.399014406784225, -23.724079447128037], + [-45.39895340656101, -23.72409644727193], + [-45.39892940635294, -23.724057447304368], + [-45.3988984061274, -23.724023447354817], + [-45.39882540576463, -23.72400744750786], + [-45.39880640554691, -23.723956447522813], + [-45.39880640526541, -23.723849447465863], + [-45.39874440468262, -23.723731447540278], + [-45.398701404199045, -23.723619447575913], + [-45.39862140366868, -23.72355144771671], + [-45.398511402951364, -23.723462447912762], + [-45.39846240260189, -23.72341144799412], + [-45.39835840204255, -23.723372448203428], + [-45.398284401704245, -23.72336744836453], + [-45.398192401300136, -23.723367448568077], + [-45.398137401074294, -23.72337344869293], + [-45.39801540050945, -23.723362448956976], + [-45.397936400220345, -23.723384449143506], + [-45.397887400199714, -23.72345844929127], + [-45.39783840013182, -23.72351444942938], + [-45.39778339991914, -23.723525449556945], + [-45.39775939987419, -23.723548449622335], + [-45.3977894001376, -23.7235984495825], + [-45.39780240040247, -23.72367744959582], + [-45.39774140038706, -23.72377344978179], + [-45.39766840033211, -23.723874449997048], + [-45.39760140027724, -23.723965450193642], + [-45.39763240057389, -23.724026450157506], + [-45.397693401065474, -23.724111450067788], + [-45.3977484015281, -23.72419544999079], + [-45.39780440199502, -23.724279449911606], + [-45.397786402213264, -23.72439245001148], + [-45.397712402109185, -23.724476450219896], + [-45.39769440214855, -23.72452145028365], + [-45.397676402219346, -23.724578450353913], + [-45.39766440232983, -23.724640450413315], + [-45.39767740259217, -23.724718450426096], + [-45.39767740272635, -23.724769450453195], + [-45.397628402674144, -23.724831450594653], + [-45.39758540252998, -23.72484845069883], + [-45.39740240200759, -23.724955451160618], + [-45.397402402260155, -23.72505145121172], + [-45.39745740269387, -23.72512445112884], + [-45.39748840305106, -23.725208451104958], + [-45.39745240312973, -23.7252984512325], + [-45.397452403292874, -23.725360451265463], + [-45.39748940354483, -23.72539445120163], + [-45.397556404002266, -23.72545645108644], + [-45.397605404364924, -23.72551245100775], + [-45.39765540483458, -23.725607450947685], + [-45.397655405218735, -23.725753451025334], + [-45.39765540539765, -23.725821451061453], + [-45.39765640558097, -23.725889451095437], + [-45.39765640569936, -23.725934451119375], + [-45.39771140590938, -23.725922450991277], + [-45.39777240614838, -23.725911450850525], + [-45.39783940645591, -23.725916450704904], + [-45.397882406852716, -23.725995450651816], + [-45.39791940716257, -23.726051450599655], + [-45.3979634074506, -23.726087450521497], + [-45.39800640782107, -23.726156450462973], + [-45.398007407975435, -23.726213450491095], + [-45.39796840780408, -23.7262134505774], + [-45.397952407865446, -23.726263450639436], + [-45.397991408036724, -23.72626345055314], + [-45.398022408172984, -23.72626345048453], + [-45.39812340865347, -23.726277450268483], + [-45.398224409134045, -23.726291450052464], + [-45.39827140997739, -23.72653345007711], + [-45.39822440990242, -23.726583450207755], + [-45.39818640986709, -23.726633450318392], + [-45.398163410026505, -23.72673245042196], + [-45.39810940993933, -23.726789450571783], + [-45.39803240971412, -23.726832450765055], + [-45.39783040882927, -23.726833451212578], + [-45.397714408301205, -23.72682645146548], + [-45.39749340720923, -23.726780451930058], + [-45.397490407319744, -23.726827451961775], + [-45.39743540711491, -23.72684145209083], + [-45.39738140691448, -23.726855452217798], + [-45.39735040689144, -23.726898452309253], + [-45.397351407064214, -23.72696245234114], + [-45.39737440726005, -23.726998452309367], + [-45.397421407540186, -23.72702645222026], + [-45.3974834078495, -23.727040452090506], + [-45.39750640826891, -23.727161452103935], + [-45.39753740861035, -23.72723945207691], + [-45.39752240869444, -23.727296452140347], + [-45.397499408650006, -23.727317952202682], + [-45.3974764086055, -23.727339452265014], + [-45.397499408838165, -23.727389452240764], + [-45.397515409321585, -23.7275464522888], + [-45.39751540956369, -23.727638452337796], + [-45.397516409849636, -23.727745452392455], + [-45.39755541017094, -23.72780245233648], + [-45.397601410428365, -23.72782345224592], + [-45.39762441062411, -23.727859452214133], + [-45.397671410977956, -23.72791545213993], + [-45.39779541169124, -23.72797945189952], + [-45.39782641198664, -23.728039951863035], + [-45.39785741228206, -23.728100451826645], + [-45.397889412777914, -23.728235451827693], + [-45.39790541324304, -23.72838545187203], + [-45.39792491350637, -23.728452951864785], + [-45.397944413769615, -23.728520451857523], + [-45.3979984141569, -23.728577451768327], + [-45.39804541443708, -23.728605451679215], + [-45.39810741463315, -23.728576451526585], + [-45.39814541491331, -23.728619451465367], + [-45.398169415073966, -23.72864045142337], + [-45.398200415247096, -23.72865445136221], + [-45.398208415358525, -23.728683451359945], + [-45.3982464155992, -23.72871145129074], + [-45.39830141582238, -23.728704451165335], + [-45.39833241603234, -23.72873245111153], + [-45.39839441632314, -23.72873945097809], + [-45.39837841617916, -23.728711450998606], + [-45.39837841601072, -23.728647450964594], + [-45.39839341598188, -23.728611450912222], + [-45.39841641602762, -23.728590450850184], + [-45.39841641587761, -23.72853345081987], + [-45.39843941582869, -23.728476450738647], + [-45.3984854157676, -23.728376450583635], + [-45.39851641571692, -23.728305450477254], + [-45.39855491582037, -23.728280450378836], + [-45.398593415923635, -23.72825545028031], + [-45.3986554160645, -23.728205450116537], + [-45.398733416367705, -23.728190449935855], + [-45.398764416467024, -23.72817644985982], + [-45.398833416788634, -23.728183449710876], + [-45.39891841719895, -23.72819744953018], + [-45.398973417551055, -23.7282394494308], + [-45.39908941821073, -23.728296449204397], + [-45.399174418639454, -23.728317449027394], + [-45.399298419334315, -23.728374448783267], + [-45.399399420001785, -23.72845944860494], + [-45.39950042068769, -23.7285514484303], + [-45.39958642132864, -23.728651448293146], + [-45.39964842186169, -23.72875044820857], + [-45.399734422726475, -23.72893544811651], + [-45.399788423208456, -23.729028448046478], + [-45.39982742379044, -23.729184448043043], + [-45.39986642411188, -23.729241447987096], + [-45.399866424243484, -23.729291448013626], + [-45.39986742445318, -23.72936944805286], + [-45.39989842494472, -23.729504448055994], + [-45.39989842517108, -23.72959044810172], + [-45.399899425399205, -23.729675448144704], + [-45.39991442568888, -23.7297604481567], + [-45.39994542593825, -23.72980344811095], + [-45.40000842642035, -23.729881448012925], + [-45.400037426718846, -23.729946447983355], + [-45.40003242722077, -23.73014544810014], + [-45.399970427229945, -23.730252448294326], + [-45.399916427385, -23.730401448493026], + [-45.39991742774476, -23.73053644856256], + [-45.39990242797894, -23.730650448656377], + [-45.39985542796198, -23.730722448798705], + [-45.39985642826649, -23.73083644885711], + [-45.39979442836789, -23.730978449069777], + [-45.39981842882877, -23.73111344908849], + [-45.39969542885162, -23.73132744947446], + [-45.399556428898954, -23.73157744991514], + [-45.39952592905588, -23.73168795004129], + [-45.399495429212735, -23.73179845016756], + [-45.39942542924211, -23.731926450390585], + [-45.39934842924076, -23.7320544506291], + [-45.39934142956801, -23.732190450716878], + [-45.39927242958341, -23.732311450933917], + [-45.399148429243915, -23.732389451249954], + [-45.39903142875875, -23.732400451514817], + [-45.39898542844868, -23.732359451594835], + [-45.39894242817285, -23.732326451672513], + [-45.39891342801111, -23.732313451729677], + [-45.39885642786603, -23.732353451877145], + [-45.39880642775157, -23.732393452009127], + [-45.39879242781115, -23.732439452064558], + [-45.39879242794803, -23.73249145209224], + [-45.39877142797688, -23.73253745216318], + [-45.39867842763923, -23.73256445238342], + [-45.39865742770231, -23.732623452461265], + [-45.39862142764938, -23.73266345256225], + [-45.3985854275939, -23.732702452662714], + [-45.3985854276992, -23.732742452683897], + [-45.39858542778609, -23.732775452701436], + [-45.39856442784918, -23.73283445277929], + [-45.398529427763755, -23.732860452870604], + [-45.39850042772319, -23.732893452952336], + [-45.3985004278443, -23.732939452976762], + [-45.39853642808943, -23.732972452914712], + [-45.39854342824123, -23.733018452923655], + [-45.39857942845214, -23.733038452854544], + [-45.398579428554825, -23.733077452875317], + [-45.3985514285554, -23.733124452962272], + [-45.398630428971074, -23.73315045280123], + [-45.398665429209075, -23.73318245274076], + [-45.39870842941647, -23.73318945264924], + [-45.398809429963, -23.733228452446426], + [-45.39886643031881, -23.733268452341516], + [-45.3989024305455, -23.733294452275665], + [-45.398952430728336, -23.73328045215755], + [-45.39903843110626, -23.733280451967158], + [-45.399081431363655, -23.733306451885703], + [-45.39911743159291, -23.733333451820467], + [-45.399188431833835, -23.733306451648833], + [-45.39923843208783, -23.733319451545167], + [-45.3992744323513, -23.733359451486653], + [-45.399289432485666, -23.7333854514673], + [-45.39931043276757, -23.733457451459095], + [-45.39933943298181, -23.733490451412415], + [-45.39934743322499, -23.733569451436743], + [-45.39934043331531, -23.733615451476666], + [-45.399318433305545, -23.73364845154288], + [-45.39932643353031, -23.733720451563467], + [-45.39933693361987, -23.73373695154894], + [-45.39934743370944, -23.733753451534497], + [-45.39935443386137, -23.73379945154344], + [-45.39935543398686, -23.73384545156568], + [-45.39934143411747, -23.733918451635564], + [-45.39934143423857, -23.73396445166], + [-45.399341434375486, -23.7340164516876], + [-45.39934843454584, -23.734069451700293], + [-45.399334434639655, -23.734128451762665], + [-45.39932043478623, -23.734207451835626], + [-45.39934943514003, -23.734293451817127], + [-45.399399435515164, -23.73435245173779], + [-45.39943543581025, -23.73440445168579], + [-45.399457436080745, -23.734470451672106], + [-45.39945743634141, -23.734569451724745], + [-45.399507436784916, -23.73465445165925], + [-45.39952243704307, -23.73472745166485], + [-45.39954443727662, -23.734779451643824], + [-45.39955843753036, -23.734852451651538], + [-45.399558437651486, -23.734898451675967], + [-45.39954443769266, -23.734937451727752], + [-45.39957343804665, -23.735023451709232], + [-45.39957343839159, -23.73515445177886], + [-45.3996164387886, -23.735233451725637], + [-45.39966743930759, -23.735345451672277], + [-45.39968243966844, -23.735457451698633], + [-45.39968243997917, -23.735575451761328], + [-45.39964644030553, -23.735759451938797], + [-45.39967244050661, -23.73579245189884], + [-45.39969944074909, -23.73583945186402], + [-45.39972244094762, -23.735876451832702], + [-45.39973844113379, -23.735920451820657], + [-45.39976044135684, -23.73596845179754], + [-45.39978844160368, -23.73601545176049], + [-45.39979744180653, -23.7360774517735], + [-45.3998084419418, -23.73611045176674], + [-45.39982944216046, -23.736158451745737], + [-45.39983844227115, -23.736185451740102], + [-45.39981544229642, -23.736233451816595], + [-45.39979544228493, -23.73626245187629], + [-45.39980744249034, -23.736320451880527], + [-45.399822442659065, -23.736359451868093], + [-45.399831442806516, -23.736400451869873], + [-45.399856443100795, -23.736470451851737], + [-45.39985744324212, -23.7365224518772], + [-45.39982144332622, -23.7366144520058], + [-45.39974344324406, -23.736713452231125], + [-45.399664442983806, -23.736746452423592], + [-45.3995074423649, -23.736773452785602], + [-45.3994494421969, -23.73680645293155], + [-45.399378441921705, -23.736820453096197], + [-45.39935744189792, -23.736846453156538], + [-45.399314441743165, -23.736859453258667], + [-45.399300441786984, -23.736899453310865], + [-45.39927844187994, -23.736971453397853], + [-45.39931444229884, -23.73707045337078], + [-45.399386442702095, -23.737103453228872], + [-45.399443443071235, -23.73714845312658], + [-45.39950844353068, -23.737214453017778], + [-45.39956544392079, -23.73726745291968], + [-45.39964444442332, -23.737326452776195], + [-45.399666444622795, -23.737365452748225], + [-45.39970244500482, -23.737450452713606], + [-45.39981744566574, -23.73750945249032], + [-45.39988144610493, -23.737569452380466], + [-45.399974446511074, -23.737568452174013], + [-45.40006044699442, -23.737608452004853], + [-45.400153447434796, -23.737620451805284], + [-45.40021144772387, -23.737633451683777], + [-45.400261448101595, -23.737693451604915], + [-45.400308448358274, -23.737712451510916], + [-45.40045444906844, -23.73773845120143], + [-45.40061244984978, -23.73777145086905], + [-45.400691450246974, -23.737790450704168], + [-45.400899451453554, -23.73790145030254], + [-45.40104245222156, -23.737954450014048], + [-45.40116445291313, -23.738013449775107], + [-45.40138645407579, -23.73808444932127], + [-45.40166545566555, -23.738222448776643], + [-45.4017444562208, -23.738301448643607], + [-45.401787456546785, -23.73835344857604], + [-45.40183845677088, -23.738353448463087], + [-45.401888457006464, -23.738359448355492], + [-45.401931457248146, -23.738379448270926], + [-45.40194545753623, -23.73846544828552], + [-45.40194645776452, -23.738550448328496], + [-45.40193945801039, -23.738655448399843], + [-45.401939458114455, -23.738694948420797], + [-45.40193945821851, -23.73873444844178], + [-45.401939458513546, -23.738846448501203], + [-45.40192529068586, -23.738935505579985], + [-45.40191845876893, -23.73897844861792], + [-45.40191916793274, -23.73903945764875], + [-45.40191945899988, -23.739064448661427], + [-45.401915959062165, -23.739093948684772], + [-45.40191245912459, -23.739123448708224], + [-45.40191245943543, -23.739241448770905], + [-45.401898459582, -23.73932044884387], + [-45.401898459634694, -23.739340448854456], + [-45.40186945960997, -23.73937944893941], + [-45.40184845958875, -23.7394064490003], + [-45.401812459570216, -23.739459449108217], + [-45.4018134597827, -23.73953844914794], + [-45.40181345993813, -23.73959744917928], + [-45.40181346014625, -23.739676449221204], + [-45.40183546039834, -23.739735449203913], + [-45.40184246049765, -23.739761449202156], + [-45.40185746097981, -23.73991944925284], + [-45.401900461342684, -23.739985449192705], + [-45.401950461683604, -23.74003144910638], + [-45.40200046207465, -23.740096449030148], + [-45.40206546251838, -23.740156448918103], + [-45.40211546285674, -23.740201448831233], + [-45.40216246317922, -23.740245448750507], + [-45.40222896355184, -23.740275948619345], + [-45.40229546392448, -23.7403064484882], + [-45.402330464217904, -23.740359448438834], + [-45.4023954647276, -23.740444448340014], + [-45.40242446504465, -23.740516448314022], + [-45.40244946529419, -23.740569448286827], + [-45.40247446554374, -23.740622448259554], + [-45.40249646581174, -23.740687448245406], + [-45.40252546602616, -23.740720448198655], + [-45.402539466208815, -23.740766448192055], + [-45.40255046640471, -23.740822448197452], + [-45.40256146660063, -23.740878448202857], + [-45.40261146701015, -23.740950448130317], + [-45.40269146781229, -23.741121448043867], + [-45.40304946979942, -23.741278447334174], + [-45.403278471014126, -23.741357446868868], + [-45.40333647128485, -23.74136344674353], + [-45.4034574717982, -23.74135644647171], + [-45.40357247230366, -23.741356446216905], + [-45.403629472467244, -23.741323446073146], + [-45.403665472728186, -23.74136244601411], + [-45.4037364730746, -23.741375445863735], + [-45.40377247321434, -23.741368445780232], + [-45.403808473372514, -23.741368445700456], + [-45.40380847349375, -23.741414445724875], + [-45.403880473931416, -23.741460445589855], + [-45.403937474113455, -23.741434445449748], + [-45.40397347413205, -23.741381445341805], + [-45.40408047448109, -23.741335445080352], + [-45.40416647485642, -23.741334444889304], + [-45.40429547554455, -23.741380444627882], + [-45.40435247591638, -23.741426444526024], + [-45.40441747634168, -23.741479444410167], + [-45.40447447672925, -23.741531444311523], + [-45.404532477105384, -23.741577444207433], + [-45.40458947745869, -23.74161644410178], + [-45.40460347762565, -23.741656444092012], + [-45.404604477751256, -23.74170244411422], + [-45.40460447794098, -23.741774444152433], + [-45.404633478189595, -23.7418204441126], + [-45.404675478339925, -23.74180744401264], + [-45.404826478898244, -23.741767443656812], + [-45.40487647911795, -23.741767443546028], + [-45.40494747949853, -23.741793443402543], + [-45.40504148015418, -23.741885443243067], + [-45.40515648107603, -23.742043443072124], + [-45.40525648184227, -23.742167442916422], + [-45.405321482370454, -23.742259442821183], + [-45.40535398270429, -23.742331942787725], + [-45.40538648303825, -23.742404442754136], + [-45.405422483352, -23.742463442705677], + [-45.40543648356906, -23.742522442705976], + [-45.40546548390463, -23.74260144268359], + [-45.4054654840786, -23.74266744271866], + [-45.40546648423846, -23.742726442747767], + [-45.40546648437816, -23.742779442775927], + [-45.40546648458638, -23.742858442817806], + [-45.40546648477614, -23.742930442856036], + [-45.40548848516807, -23.74304244286674], + [-45.40548848535785, -23.743114442904968], + [-45.4055244856901, -23.743180442860176], + [-45.40548948557055, -23.743193442944634], + [-45.40547448553879, -23.743206442984782], + [-45.40546048552996, -23.7432264430264], + [-45.40546048566967, -23.743279443054565], + [-45.40548948588422, -23.743312443007788], + [-45.40553948617245, -23.743338442910826], + [-45.40558248636147, -23.743338442815524], + [-45.4056044864581, -23.74333844276677], + [-45.40563248658118, -23.743338442704726], + [-45.40563948671479, -23.743377442709953], + [-45.40566848689487, -23.74339744265626], + [-45.40569748709097, -23.743423442605824], + [-45.40570448714014, -23.743430442593965], + [-45.40575448735722, -23.74342944248265], + [-45.405826487657876, -23.74342344231996], + [-45.405854487709874, -23.743396442243544], + [-45.405868487702776, -23.74337044219872], + [-45.4059474880158, -23.743357442016755], + [-45.40600448826362, -23.743356441889908], + [-45.40602648836036, -23.74335644184114], + [-45.40606248853707, -23.743363441765133], + [-45.40606948870749, -23.743416441777693], + [-45.40610548900283, -23.743468441725536], + [-45.40613448928572, -23.743527441692585], + [-45.40617548951076, -23.743544441610723], + [-45.406256490030245, -23.7436064414641], + [-45.406285490294756, -23.743658441427467], + [-45.40636449086864, -23.743744441298027], + [-45.4064504913837, -23.743796441134986], + [-45.40649349162543, -23.743816441050356], + [-45.40655049187597, -23.743816440924046], + [-45.40660749208959, -23.74380244079031], + [-45.40667949244033, -23.743815440637626], + [-45.406772492970305, -23.743861440455913], + [-45.406793493131104, -23.743887440423098], + [-45.406815493436085, -23.743966440416305], + [-45.40686549376135, -23.74400644032674], + [-45.40688749392653, -23.744032440291807], + [-45.406944494314146, -23.744084440193014], + [-45.407002494708784, -23.744137440092516], + [-45.40704549508759, -23.744209440035526], + [-45.40710249552793, -23.744281439947397], + [-45.40718149608338, -23.744360439814173], + [-45.407232496447286, -23.744413439729307], + [-45.407332496955284, -23.744439439521383], + [-45.40739649735791, -23.74448543940402], + [-45.407454497628656, -23.744491439278587], + [-45.40754749814019, -23.744530439093214], + [-45.40760449854628, -23.744589438998066], + [-45.407676498984, -23.744635438862964], + [-45.40771249938473, -23.744727438831926], + [-45.40776249981281, -23.744806438762993], + [-45.407799500165225, -23.744878438719176], + [-45.40779950033923, -23.744944438754228], + [-45.407799500547505, -23.7450234387961], + [-45.40779950073996, -23.74509643883481], + [-45.40777850081906, -23.745161438915893], + [-45.40776450093153, -23.7452274389819], + [-45.407757501040464, -23.74528043902553], + [-45.40775750123029, -23.745352439063733], + [-45.40777950146676, -23.7454054390431], + [-45.40780050168029, -23.745451439020965], + [-45.40782250187986, -23.745490438992906], + [-45.40785850223061, -23.74556343895172], + [-45.40791550267089, -23.745635438863594], + [-45.40801650328623, -23.745700438674223], + [-45.40812350393061, -23.745766438472025], + [-45.40818150432263, -23.745818438371067], + [-45.40823850471293, -23.74587143827277], + [-45.408289505092604, -23.745930438191003], + [-45.40828950528246, -23.74600243822921], + [-45.4082895054222, -23.74605543825735], + [-45.4083255056674, -23.74608843819501], + [-45.40836850592496, -23.746114438113526], + [-45.40839750617382, -23.746160438073606], + [-45.408397506382116, -23.74623943811556], + [-45.40839750662469, -23.74633143816432], + [-45.40840550693667, -23.746436438202245], + [-45.40841950719069, -23.74650943820994], + [-45.40843750736472, -23.74654543818907], + [-45.408455507538754, -23.74658143816832], + [-45.40842750757125, -23.746640438261682], + [-45.40841350756244, -23.746660438303284], + [-45.40839850756516, -23.74668643835034], + [-45.408377507525536, -23.74670643840757], + [-45.408363507551016, -23.746739438456075], + [-45.40838450774874, -23.746779438430742], + [-45.408427507987874, -23.746798438345476], + [-45.4084635082859, -23.74685143829372], + [-45.408506508559306, -23.746883438215356], + [-45.4085715088977, -23.746903438081926], + [-45.40861450917374, -23.746936438004077], + [-45.4086715095113, -23.746969437895206], + [-45.40872150986814, -23.747021437811956], + [-45.408772510213666, -23.747067437723285], + [-45.40880851049328, -23.747113437667938], + [-45.40884401074424, -23.74714943760829], + [-45.408879510995135, -23.74718543754864], + [-45.40894451143647, -23.747244437435825], + [-45.408994511917285, -23.747343437377488], + [-45.40903851228473, -23.74740943731496], + [-45.409074512580126, -23.74746143726267], + [-45.40908151267944, -23.747487437260965], + [-45.40913151307321, -23.74755343718508], + [-45.40913151330001, -23.747639437230674], + [-45.409067513364214, -23.747770437442036], + [-45.409046513445986, -23.747836437523603], + [-45.40904651368862, -23.74792843757239], + [-45.40904751398836, -23.748040437629562], + [-45.40906151431098, -23.74813943765094], + [-45.40908351454742, -23.74819243763031], + [-45.40910551474703, -23.74823143760226], + [-45.40913351497288, -23.748270437560883], + [-45.40915551524369, -23.74833643754704], + [-45.409191515504844, -23.748375437487944], + [-45.40925651601732, -23.74846143738935], + [-45.409313516579076, -23.74857943732561], + [-45.40938551719097, -23.74869143722539], + [-45.409428517551426, -23.74875643716446], + [-45.409478517789736, -23.748763437057285], + [-45.40955051817468, -23.74878943691145], + [-45.4095935185035, -23.74884243684414], + [-45.4096585187708, -23.74883543669635], + [-45.40975151910834, -23.748808436475823], + [-45.40982251940464, -23.74880243631525], + [-45.40991551976065, -23.748782436098494], + [-45.409987519987475, -23.748748435920735], + [-45.410089520338225, -23.74871143567502], + [-45.410144520659124, -23.748741435568974], + [-45.41025252120238, -23.748767435343197], + [-45.41035952177829, -23.74880743512718], + [-45.410438522296936, -23.748872434986517], + [-45.410517522731276, -23.748905434828814], + [-45.410603523230634, -23.74895143466249], + [-45.41064652354098, -23.748997434591498], + [-45.41066052365257, -23.74901643457051], + [-45.41075352418264, -23.749062434388737], + [-45.410825524586265, -23.749095434246538], + [-45.41092652525434, -23.749180434067643], + [-45.410990525691346, -23.749239433956998], + [-45.4110765262593, -23.749311433804458], + [-45.411155526762116, -23.74937043366053], + [-45.41124952741795, -23.74946243350082], + [-45.411327527813626, -23.749482433338493], + [-45.411399528198686, -23.749508433192535], + [-45.41144252847475, -23.74954143311465], + [-45.41144252857763, -23.74958043313536], + [-45.411514528946874, -23.749600432986245], + [-45.41161452943657, -23.74961943277462], + [-45.411650529629064, -23.749632432701592], + [-45.41170753001944, -23.74968543260329], + [-45.41175153033418, -23.749731432530172], + [-45.41177953061291, -23.74979043249925], + [-45.41181553091091, -23.74984343244752], + [-45.411887531573, -23.749974432357277], + [-45.4119095319652, -23.750086432367855], + [-45.41191053248928, -23.75028343246998], + [-45.41188153260443, -23.750375432583], + [-45.41183253265026, -23.750474432744134], + [-45.41179653271893, -23.750560432869566], + [-45.41179653289305, -23.75062643290459], + [-45.41181153318323, -23.750711432916283], + [-45.41181853324835, -23.750724432907656], + [-45.41184753365539, -23.75083043289956], + [-45.411876533938525, -23.75088943286652], + [-45.411876534197056, -23.750987432918464], + [-45.411869534219115, -23.751007432944533], + [-45.411869534427524, -23.75108643298638], + [-45.411870534640336, -23.75116543302606], + [-45.41187553491029, -23.75125943306472], + [-45.41184953499922, -23.751336433163168], + [-45.41180653501862, -23.751415433300462], + [-45.41178553516899, -23.751507433395748], + [-45.41173553517611, -23.751593433552223], + [-45.41173553538456, -23.75167243359406], + [-45.41173553562727, -23.751764433642776], + [-45.411736535892864, -23.751863433693124], + [-45.41173653604852, -23.751922433724292], + [-45.4117365361699, -23.751968433748644], + [-45.41177253650234, -23.75203443370381], + [-45.4118375369093, -23.752080433584005], + [-45.411880537322595, -23.75216543353367], + [-45.411887537509095, -23.75222443354941], + [-45.41190253773334, -23.75228443354792], + [-45.41190953788554, -23.752330433556754], + [-45.411923538015586, -23.7523564335395], + [-45.412017538550224, -23.75240243335545], + [-45.41205353877704, -23.752428433289307], + [-45.41203853886679, -23.752487433353814], + [-45.41201053889935, -23.752546433447176], + [-45.41203153902866, -23.752560433408032], + [-45.412053539193934, -23.75258643337302], + [-45.41205353929684, -23.752625433393625], + [-45.412032539275806, -23.752652433454596], + [-45.41206053946749, -23.75267843340621], + [-45.41206153959327, -23.752724433428344], + [-45.4120465396487, -23.752770433486067], + [-45.41201853966545, -23.752823433576204], + [-45.41205453994514, -23.75286943352071], + [-45.4121045402335, -23.752895433423586], + [-45.41219054073295, -23.752941433257195], + [-45.41226254108378, -23.75295443310438], + [-45.41229854129476, -23.752974433035103], + [-45.41234154156823, -23.75300643295665], + [-45.412427542120454, -23.7530724328009], + [-45.41242754220754, -23.753105432818458], + [-45.412463542452834, -23.75313843275596], + [-45.412513542844195, -23.75320343267955], + [-45.4125565432074, -23.75326943261916], + [-45.41261454363652, -23.753335432525418], + [-45.41270754442532, -23.753479432395395], + [-45.41277254481403, -23.753518432271914], + [-45.412801545237066, -23.75363043226683], + [-45.412844545703194, -23.753735432227145], + [-45.41281554564697, -23.753762432305706], + [-45.41281654580704, -23.75382143233483], + [-45.41281654594692, -23.753874432362828], + [-45.41282354605549, -23.7539039323629], + [-45.41283054616415, -23.753933432363027], + [-45.412795546165924, -23.753992432471918], + [-45.412766546281226, -23.75408443258496], + [-45.41275954639036, -23.754137432628596], + [-45.41273854652494, -23.75422343272075], + [-45.41272454658488, -23.75426943277615], + [-45.41271754672823, -23.75433543282659], + [-45.41266854703265, -23.75453243303969], + [-45.41264004710794, -23.75460843314315], + [-45.412611547183275, -23.75468443324661], + [-45.41256682123196, -23.754777416395147], + [-45.412497547307524, -23.754921433625054], + [-45.412447547433466, -23.75505243380535], + [-45.412419047482295, -23.755118433903586], + [-45.41239054753122, -23.755184434001816], + [-45.41226954754028, -23.755389434378834], + [-45.41220554763891, -23.75553343459711], + [-45.41211954753525, -23.75563743484288], + [-45.4120915475573, -23.755692434934225], + [-45.41207054760224, -23.755744435008324], + [-45.41201354759708, -23.755837435183995], + [-45.41199254774749, -23.755929435279324], + [-45.411935547792574, -23.756041435465118], + [-45.411835547648394, -23.756153435746338], + [-45.411771547488534, -23.756199435912656], + [-45.411700547437555, -23.756298436122634], + [-45.41165054749747, -23.756404436289692], + [-45.41162154759432, -23.756489436399086], + [-45.41160854788554, -23.756621436497856], + [-45.411572547830225, -23.75666043659841], + [-45.411543547929604, -23.756746436708223], + [-45.41154454812399, -23.756818436744243], + [-45.41154454828236, -23.756878436775942], + [-45.41154454836945, -23.75691143679349], + [-45.41145154827203, -23.757029437062304], + [-45.41139454822997, -23.75710843723068], + [-45.411359548321485, -23.75720143735755], + [-45.41131654846232, -23.757326437519147], + [-45.411210548516216, -23.757523437858723], + [-45.411131548535664, -23.75766243810757], + [-45.41102454860363, -23.757866438453046], + [-45.41093954878684, -23.75807743875346], + [-45.41089854878604, -23.758145438880405], + [-45.41089754886346, -23.758176438899028], + [-45.41086154889516, -23.75824843901705], + [-45.41079054893134, -23.758380439244497], + [-45.41067654886554, -23.758545439584832], + [-45.41059754882965, -23.758663439822694], + [-45.410533548896666, -23.758795440034525], + [-45.41041954889939, -23.758986440388743], + [-45.41029954901576, -23.75923044078428], + [-45.41020654904235, -23.759395441078023], + [-45.4100635489362, -23.759593441500158], + [-45.409928548741014, -23.759744441879743], + [-45.40983554869896, -23.75988344215969], + [-45.40976454875099, -23.760021442390407], + [-45.40967954872557, -23.760153442648924], + [-45.40962954866139, -23.760212442791037], + [-45.409572548621966, -23.760292442959937], + [-45.40950754847331, -23.76034444313175], + [-45.40944354829747, -23.76038444329487], + [-45.40936554807591, -23.76043044349239], + [-45.40930754792641, -23.76047044364217], + [-45.40926554791589, -23.76053644377039], + [-45.409265548105935, -23.760608443808547], + [-45.40932254849653, -23.76066144371013], + [-45.40933054872171, -23.760733443730643], + [-45.409316548937284, -23.76083844381723], + [-45.40928054897169, -23.760911443935807], + [-45.40923754897263, -23.76098344406947], + [-45.40916654888739, -23.761069444272483], + [-45.40913854886981, -23.76110944435582], + [-45.40908854887424, -23.76119444451182], + [-45.40899554874506, -23.761300444774317], + [-45.40892454870995, -23.761405444987464], + [-45.40886054862119, -23.76147844516824], + [-45.40878854856586, -23.761577445380397], + [-45.40871754853075, -23.761682445593532], + [-45.40865354835489, -23.76172244575677], + [-45.40860354834357, -23.761801445909523], + [-45.40853154823542, -23.76188044611112], + [-45.408496548221336, -23.76193344621699], + [-45.40841054807009, -23.76201944645338], + [-45.40838254810268, -23.762078446546692], + [-45.40836254810186, -23.76211144660861], + [-45.408346548134446, -23.762150446664734], + [-45.40832504810982, -23.76217694672654], + [-45.40830354808521, -23.762203446788277], + [-45.40822554802199, -23.76230944701748], + [-45.40815454784962, -23.762362447203135], + [-45.408139547920904, -23.76241444726394], + [-45.4080825478444, -23.762480447425443], + [-45.40803254781714, -23.762553447575065], + [-45.40798354781019, -23.7626324477256], + [-45.40791954778997, -23.762731447920103], + [-45.40784054763258, -23.762803448133553], + [-45.407740547401275, -23.762882448397246], + [-45.407661547193726, -23.762935448600654], + [-45.40762654719811, -23.76299544871009], + [-45.407576547133985, -23.763054448852305], + [-45.4075265470883, -23.763120448998308], + [-45.407469546993326, -23.763179449156027], + [-45.40744054697136, -23.763219449241518], + [-45.40740554695735, -23.763272449347287], + [-45.40734054674002, -23.763298449505296], + [-45.40731254672247, -23.76333844958858], + [-45.40728354668199, -23.763371449670473], + [-45.40724854661521, -23.763404449765584], + [-45.407226546655664, -23.76345644984192], + [-45.4071985466196, -23.7634894499216], + [-45.407126546442804, -23.7635424501094], + [-45.40709154641031, -23.763588450211433], + [-45.40700554617192, -23.76364145043034], + [-45.407005546240555, -23.763667450444178], + [-45.406991546284544, -23.763707450496447], + [-45.4069915465274, -23.7637994505452], + [-45.406991546632995, -23.763839450566447], + [-45.40701354686707, -23.76389145054524], + [-45.40702054700341, -23.763931450550857], + [-45.406992546983204, -23.763970450633693], + [-45.40698554705803, -23.764010450670362], + [-45.406985547195305, -23.764062450697974], + [-45.4069855473537, -23.764122450729776], + [-45.40700754753489, -23.764154450697905], + [-45.40702154766774, -23.764181450681175], + [-45.407021547772025, -23.7642209507021], + [-45.407021547876305, -23.76426045072312], + [-45.40700054790538, -23.764306450794084], + [-45.406986242885395, -23.76432272983447], + [-45.406971547864934, -23.7643394508759], + [-45.40695754783767, -23.76435245091389], + [-45.406957547977576, -23.764405450942007], + [-45.40695754811484, -23.764457450969516], + [-45.406922548066426, -23.764497451068397], + [-45.40683454787734, -23.764572451303405], + [-45.40679654782108, -23.76461445140999], + [-45.40670954756247, -23.764661451627934], + [-45.40664854743143, -23.764713451790787], + [-45.40659754737071, -23.764775451936885], + [-45.40642354714116, -23.764978452430586], + [-45.40633154706119, -23.765101452699888], + [-45.40628554705684, -23.765176452841718], + [-45.406239546991785, -23.765228452971375], + [-45.40618854697856, -23.765308453127016], + [-45.406158546933725, -23.765341453210947], + [-45.406106546842295, -23.765393453353948], + [-45.40605054672255, -23.76544145350371], + [-45.40599954663549, -23.76549345364439], + [-45.40593854645431, -23.7655264537972], + [-45.405851546272196, -23.765602454030606], + [-45.40580054624579, -23.765677454183503], + [-45.40573854614738, -23.76574345435603], + [-45.40567754599247, -23.76578645451417], + [-45.40560054577782, -23.76583345470991], + [-45.405523545576386, -23.76588545490838], + [-45.405457545473425, -23.765956455092468], + [-45.40539554535117, -23.766013455260275], + [-45.40533454525704, -23.766079455430564], + [-45.40528854519196, -23.766131455560156], + [-45.40524754513566, -23.76617845567613], + [-45.405170544984266, -23.766249455884623], + [-45.40509454482417, -23.766315456088197], + [-45.40497654453207, -23.766401456395624], + [-45.4048795443033, -23.766476456650686], + [-45.40468454392059, -23.766656457178748], + [-45.404600543746454, -23.766730457404382], + [-45.40455754366023, -23.7667694575205], + [-45.4044955435141, -23.766817457683498], + [-45.40444454342703, -23.766869457824168], + [-45.40434254316569, -23.766940458088158], + [-45.4042805430408, -23.766996458255427], + [-45.4042095428287, -23.767034458433038], + [-45.40414254269756, -23.76709645861465], + [-45.40410154265444, -23.767148458733136], + [-45.404066542637764, -23.767200458838413], + [-45.40397954244241, -23.767271459069114], + [-45.40389254224706, -23.767342459299723], + [-45.40383654216169, -23.76740345945637], + [-45.40369254194001, -23.767559459858667], + [-45.40361154178157, -23.767634460078053], + [-45.403580541721766, -23.767663460162222], + [-45.40353454161969, -23.767701460284478], + [-45.40349354158711, -23.767757460405175], + [-45.40347354161256, -23.767800460472344], + [-45.403445541536975, -23.767818460543992], + [-45.403357541339844, -23.767890460777455], + [-45.403295541130355, -23.76791446092767], + [-45.40309554077303, -23.768112461476484], + [-45.402964540597885, -23.768264461847814], + [-45.40294954069036, -23.768324461912925], + [-45.40295354085842, -23.768381461934215], + [-45.402968541066976, -23.76843546192971], + [-45.40306354155628, -23.768462461733193], + [-45.403180542176564, -23.768502461494872], + [-45.40323854258235, -23.768559461396446], + [-45.40330254317798, -23.768678461317588], + [-45.40336654377381, -23.768797461238716], + [-45.40334954383892, -23.768850461304606], + [-45.40333854415482, -23.768988461402163], + [-45.403291544267496, -23.76910946157073], + [-45.4032405442913, -23.769203461733692], + [-45.40317254435637, -23.769341461957755], + [-45.403150544534185, -23.769445462061725], + [-45.40314054494952, -23.76961946217624], + [-45.40314054515545, -23.769697462217685], + [-45.40314754538951, -23.769774462243003], + [-45.40319954586652, -23.76986846217745], + [-45.403265546288914, -23.76991846205752], + [-45.40337854694455, -23.7699784618387], + [-45.403572548062215, -23.770078461461313], + [-45.403616548538324, -23.77018546142042], + [-45.403616548725786, -23.770256461458107], + [-45.403613549103355, -23.77040446154327], + [-45.40359954920808, -23.770467461607744], + [-45.40357354923624, -23.770521461694113], + [-45.40353454945548, -23.770669461859143], + [-45.40346454936128, -23.770750462057393], + [-45.40333754920903, -23.770904462420933], + [-45.40322454916589, -23.771076462762956], + [-45.402973548824484, -23.771365463473256], + [-45.40282454852525, -23.77150046387548], + [-45.40244254786606, -23.771887464928483], + [-45.402096547285986, -23.772244465885638], + [-45.40192554696909, -23.772409466352578], + [-45.40177654677289, -23.77258346677556], + [-45.401368546080896, -23.77300146790265], + [-45.401029545415376, -23.773314468821027], + [-45.40076754479562, -23.773516469509598], + [-45.40050154430877, -23.77377547023731], + [-45.400421544072806, -23.773819470438156], + [-45.40036654399979, -23.773883470594125], + [-45.400429544630846, -23.77401747052557], + [-45.400400544661636, -23.77407747062166], + [-45.40045154530334, -23.774235470592384], + [-45.40046654551186, -23.77428947058779], + [-45.40045954557878, -23.774326470622935], + [-45.400485545780384, -23.77435947058281], + [-45.40053654607619, -23.77438647048402], + [-45.400558546278596, -23.774426470456362], + [-45.4005805465787, -23.774503470448394], + [-45.40059554667112, -23.774513470420427], + [-45.40060954671436, -23.774506470385695], + [-45.400627546759225, -23.77449347033884], + [-45.40065754691768, -23.77450347027753], + [-45.400657547015385, -23.774540470297204], + [-45.40063554703468, -23.774584470369383], + [-45.40063954713149, -23.774614470376413], + [-45.4006795473683, -23.77463747029992], + [-45.40070154751798, -23.77465747026168], + [-45.40070154761569, -23.77469447028135], + [-45.40069454780673, -23.774778470341406], + [-45.40071145292575, -23.774795375312856], + [-45.40073954812362, -23.77482347026544], + [-45.40077754848359, -23.774896470219947], + [-45.40077770650163, -23.774903031222994], + [-45.40077854859757, -23.774937970239655], + [-45.40077889063653, -23.774952146246516], + [-45.40077954871155, -23.774979470259495], + [-45.40076854882947, -23.77504247031734], + [-45.400794549107644, -23.775104470292632], + [-45.40084854940081, -23.775125470183887], + [-45.40088954950726, -23.775097470078045], + [-45.40090404944172, -23.7750484700199], + [-45.400918549376115, -23.774999469961664], + [-45.40093954947652, -23.77500246991663], + [-45.401013550058366, -23.775099469804015], + [-45.401028550248505, -23.775146469795658], + [-45.40105355050116, -23.77520046976879], + [-45.40113755097645, -23.775240469603638], + [-45.40116755133039, -23.77532446958168], + [-45.401189551675415, -23.775418469582682], + [-45.40118955189724, -23.775502469627316], + [-45.4011905521314, -23.775589469671267], + [-45.40121555238407, -23.775643469644464], + [-45.401267552726445, -23.775686469551882], + [-45.40130755303459, -23.775736469489633], + [-45.40134055344652, -23.775837469470016], + [-45.401370553879744, -23.775951469463866], + [-45.40137055420721, -23.776075469529722], + [-45.401359554362124, -23.776152469594955], + [-45.401323554436026, -23.776240469721554], + [-45.40129455462794, -23.77636146985019], + [-45.40128355470372, -23.77640846989954], + [-45.4012765548049, -23.776458469941563], + [-45.401233554837475, -23.776542470081612], + [-45.401211554981, -23.776633470178687], + [-45.40121155507874, -23.77667047019837], + [-45.401211555184375, -23.776710470219527], + [-45.40118655539387, -23.7768314703393], + [-45.40116455543963, -23.77688547041679], + [-45.40111755547046, -23.776975470568864], + [-45.40104155543966, -23.77709047079857], + [-45.40099455541766, -23.77716047093997], + [-45.40093955536305, -23.77723147109971], + [-45.4009175553903, -23.77727847117348], + [-45.40089955550661, -23.777352471252776], + [-45.400856555547115, -23.77743947139439], + [-45.40080855554177, -23.777517471542286], + [-45.40073655545461, -23.77760447174826], + [-45.40066655529699, -23.77766147193377], + [-45.40061255518348, -23.77770847207863], + [-45.400550555000294, -23.77774247223423], + [-45.400477554900796, -23.77782647244086], + [-45.400411554832175, -23.777910472631852], + [-45.40031755479346, -23.77805247291594], + [-45.400222554623475, -23.778146473176637], + [-45.40011355439986, -23.77824347346999], + [-45.39994655411895, -23.778415473931915], + [-45.399775553873326, -23.778607474413327], + [-45.399607553577425, -23.7787754748754], + [-45.399552553380154, -23.778792475006483], + [-45.39943655304645, -23.77885947529951], + [-45.399385552964496, -23.778913475441286], + [-45.399294552743505, -23.778981475679394], + [-45.39922555263524, -23.779055475871786], + [-45.399126552474065, -23.779159476146706], + [-45.3990025522741, -23.779290476491443], + [-45.39887155200914, -23.779408476844793], + [-45.398824551907765, -23.77944847697038], + [-45.39877355179157, -23.779489477105347], + [-45.398624551508014, -23.779630477510825], + [-45.398493551269354, -23.7797584778695], + [-45.39831155096454, -23.77994647837324], + [-45.398198550725944, -23.780044478676093], + [-45.39805655034106, -23.780135479039515], + [-45.39792855002576, -23.780229479373453], + [-45.39787354989978, -23.78027347951885], + [-45.397790549766846, -23.780361479749807], + [-45.397633549440044, -23.780499480171528], + [-45.39756054926126, -23.78055348036225], + [-45.39746554894066, -23.780590480592682], + [-45.397411548906334, -23.78066748075338], + [-45.39736354885611, -23.78072848089239], + [-45.3972835486808, -23.780795481105436], + [-45.397247548709764, -23.78086648122306], + [-45.39726954894665, -23.78091948120232], + [-45.3973065492257, -23.78096348114367], + [-45.39738654973645, -23.781023480997984], + [-45.397452550087856, -23.781046480863697], + [-45.397518550441795, -23.78107048073001], + [-45.39755555074465, -23.781123480675962], + [-45.39758055110301, -23.781217480670477], + [-45.3975815514085, -23.781331480728714], + [-45.39755255163739, -23.781466480864832], + [-45.39764155291408, -23.781801480845242], + [-45.39763355297664, -23.781838480882588], + [-45.39765255323725, -23.78190548087604], + [-45.397689553693404, -23.782016480852906], + [-45.39771855400589, -23.782086480825654], + [-45.39771855408513, -23.78211648084158], + [-45.397693554125674, -23.782173480927344], + [-45.397693554234, -23.782214480949115], + [-45.39773055447618, -23.78224448088293], + [-45.397752554670745, -23.782281480853822], + [-45.39778855499562, -23.782344480807335], + [-45.39780755511634, -23.7823584807726], + [-45.39781855523611, -23.782385480762546], + [-45.39781155537166, -23.782448480811492], + [-45.39782555561029, -23.78251548081605], + [-45.397855555919364, -23.782582480785006], + [-45.39783755604614, -23.782660480866337], + [-45.397866556385175, -23.78274048084448], + [-45.397910556906474, -23.782864480812737], + [-45.39796361040129, -23.782963382747486], + [-45.397970438465016, -23.782976111739092], + [-45.39799155766196, -23.783015480713107], + [-45.398017557882135, -23.783055480676648], + [-45.39813855859189, -23.783122480443613], + [-45.398189559038414, -23.783206480375046], + [-45.398240559466444, -23.783283480302707], + [-45.39826655963368, -23.78330348025565], + [-45.3982995598503, -23.78333048019668], + [-45.3983365601982, -23.783400480151744], + [-45.39838056060591, -23.78348148009713], + [-45.39842756099776, -23.783551480029995], + [-45.39853056169963, -23.783645479851224], + [-45.39855256190213, -23.783685479823646], + [-45.39858156209068, -23.78370847977144], + [-45.39858956219719, -23.783735479768012], + [-45.398629562452584, -23.783765479695237], + [-45.39868456276876, -23.783793479587953], + [-45.398736563061185, -23.783817479485286], + [-45.39875256319231, -23.78384047946203], + [-45.39878356339229, -23.783864479405917], + [-45.39882256363792, -23.783892479334202], + [-45.398827563697004, -23.783906479330547], + [-45.398840563772666, -23.78391347930535], + [-45.39886556393297, -23.783932479260017], + [-45.398891564084465, -23.783946479209728], + [-45.39891756426765, -23.783972479165843], + [-45.398943564450846, -23.78399847912183], + [-45.39896656462868, -23.784027479086213], + [-45.39900056483385, -23.78404847902193], + [-45.3990135649413, -23.784067479003127], + [-45.3990395652064, -23.784124478975684], + [-45.3990525653614, -23.784161478966418], + [-45.39907556557103, -23.78420247893716], + [-45.39909656586163, -23.78427747893033], + [-45.39912256615051, -23.784343478907704], + [-45.399142566383844, -23.784398478892513], + [-45.39915856656527, -23.784440478879304], + [-45.399176566758115, -23.784483478862093], + [-45.39918156683567, -23.78450447886218], + [-45.39918456690436, -23.784525478866616], + [-45.39918456704438, -23.784578478894797], + [-45.399184567155366, -23.78462047891701], + [-45.39919056731392, -23.784670478930295], + [-45.39919556739934, -23.784694478931964], + [-45.39921356760276, -23.784741478916935], + [-45.39922156779909, -23.78480247893162], + [-45.39922156790742, -23.784843478953324], + [-45.39922656804048, -23.78488547896453], + [-45.399224568145286, -23.784928478991812], + [-45.39922756826947, -23.784970479007452], + [-45.39923256834958, -23.784992479007965], + [-45.39922956844735, -23.785034479036927], + [-45.399232568555675, -23.785070479049352], + [-45.39923056863934, -23.785105479072417], + [-45.39923056877676, -23.78515747909998], + [-45.3992235688912, -23.78521247914472], + [-45.39920956899081, -23.78527347920827], + [-45.39920256908676, -23.785321479249266], + [-45.39919456921278, -23.785382479299383], + [-45.399184569356315, -23.785453479359187], + [-45.39917256942237, -23.78549847940978], + [-45.39915956953419, -23.78556247947258], + [-45.39913856959766, -23.785621479550528], + [-45.399128569617005, -23.7856454795855], + [-45.39912156965494, -23.78567147961487], + [-45.39909256967775, -23.78572847970951], + [-45.39907756969898, -23.785761479760307], + [-45.39907256978525, -23.78580247979318], + [-45.399059569878595, -23.785859479852316], + [-45.399036569901554, -23.785906479928304], + [-45.399020569923586, -23.785941479982377], + [-45.398997569972884, -23.785998480063704], + [-45.398974570003666, -23.78604848014137], + [-45.398959570022164, -23.786080480191544], + [-45.39893657000549, -23.786112480259654], + [-45.39890156997297, -23.786158480361767], + [-45.39886756996586, -23.78621248046594], + [-45.39884756997031, -23.786247480528885], + [-45.39882856996329, -23.78627648058647], + [-45.398801569936765, -23.786311480665034], + [-45.39878256990078, -23.786329480716663], + [-45.39876756990069, -23.786354480763357], + [-45.39875956992101, -23.786375480792213], + [-45.398744569958005, -23.786414480846155], + [-45.39874457000028, -23.786430480854726], + [-45.39874457004256, -23.78644648086322], + [-45.39875257020987, -23.78649648087197], + [-45.398717570214295, -23.786556480981535], + [-45.398679570189614, -23.786610481094574], + [-45.3986405701289, -23.786652481203454], + [-45.39859857014212, -23.7867274813365], + [-45.39855957024251, -23.78683048147776], + [-45.3985375702963, -23.786887481556857], + [-45.398483570198486, -23.786940481704924], + [-45.398390570193165, -23.787093481992574], + [-45.3983485701404, -23.787143482112423], + [-45.39829457016682, -23.787243482285298], + [-45.39826757024343, -23.787317482384537], + [-45.398225570190576, -23.78736748250437], + [-45.398179570138645, -23.78742448263676], + [-45.39812957006907, -23.787481482778045], + [-45.398086570001254, -23.78752748289791], + [-45.398033569929, -23.78758848304795], + [-45.39798656987266, -23.787645483182562], + [-45.39793656981104, -23.787705483325414], + [-45.39789056974049, -23.787755483454053], + [-45.39783656966128, -23.787815483605776], + [-45.39780956967449, -23.78786548369231], + [-45.397794569740554, -23.787915483752123], + [-45.39775956971845, -23.787965483856432], + [-45.39770656964365, -23.788025484005953], + [-45.397667569556425, -23.788057484109505], + [-45.397644569558224, -23.78809648418131], + [-45.397606569496546, -23.788136484286916], + [-45.39758456949474, -23.788172484354828], + [-45.39757956953352, -23.788195484378114], + [-45.397574569577586, -23.788220484402498], + [-45.39757356965245, -23.78825048442063], + [-45.397601885998434, -23.78833423540225], + [-45.397609070086204, -23.788355484397574], + [-45.39762157020209, -23.788378484382072], + [-45.39763557033244, -23.788404484364822], + [-45.397660570572064, -23.78845348433528], + [-45.39768357078165, -23.788494484306014], + [-45.397691570877726, -23.788517484300506], + [-45.397694570954336, -23.788541484306528], + [-45.39771157113754, -23.78858248429058], + [-45.39772657126966, -23.78860748427057], + [-45.39774657141594, -23.788629484237806], + [-45.397777571660804, -23.78867048419076], + [-45.397806571946994, -23.788730484158247], + [-45.397836572250995, -23.788795484126187], + [-45.39784157233904, -23.788820484128284], + [-45.39784957245881, -23.788852484127492], + [-45.397865572645635, -23.78889648411534], + [-45.39789057294329, -23.788967484097633], + [-45.39792457336001, -23.789068484075674], + [-45.397937573501856, -23.789100484063795], + [-45.397946573604855, -23.789124484056593], + [-45.39796557383386, -23.789179484043625], + [-45.398000574323696, -23.78930648403337], + [-45.398019574605556, -23.78938148403098], + [-45.398039574963256, -23.78948348404064], + [-45.39806157529534, -23.789572484039027], + [-45.398081575549895, -23.789635484028164], + [-45.39809457583973, -23.78972348404597], + [-45.398095575926064, -23.78975448406022], + [-45.398100576016844, -23.78978048406292], + [-45.39810557610491, -23.789805484065113], + [-45.3981045762538, -23.789863484098063], + [-45.398103576310184, -23.78988648411252], + [-45.398116576584165, -23.789968484127208], + [-45.39811457677623, -23.790044484171972], + [-45.39810857698772, -23.790134484233082], + [-45.39810457705989, -23.790168484259997], + [-45.39809857718405, -23.790225484303576], + [-45.398098577342644, -23.790285484335417], + [-45.39810057767396, -23.790407484395793], + [-45.39810157774443, -23.79043248440688], + [-45.398123578219256, -23.790575484433877], + [-45.398128578339126, -23.790612484442455], + [-45.39814257848271, -23.790643484427807], + [-45.39815857865098, -23.790680484411972], + [-45.39818557893379, -23.790742484384804], + [-45.398197579060664, -23.790770484373123], + [-45.398213579308134, -23.790837484373128], + [-45.39821657941382, -23.79087248438499], + [-45.39824157974079, -23.790954484373056], + [-45.39828183426819, -23.791086956354032], + [-45.39829658046136, -23.791135484347055], + [-45.398305580583, -23.791166484343535], + [-45.39831558071695, -23.791200484339345], + [-45.39833958098381, -23.79126148431841], + [-45.39836758125518, -23.791317484285972], + [-45.3984205816737, -23.79138748420546], + [-45.39846358208768, -23.79147248415509], + [-45.39847258228595, -23.79153248416695], + [-45.39847258239961, -23.791575484189718], + [-45.39847358264455, -23.791666484235847], + [-45.39847958283225, -23.791727484254906], + [-45.39848858298296, -23.791769484257212], + [-45.39849858312739, -23.79180748425521], + [-45.398514583332684, -23.791858484246713], + [-45.3985525837194, -23.791941484206415], + [-45.39861158422784, -23.79203548412524], + [-45.39867958484981, -23.792157484038952], + [-45.398692584975876, -23.79218348402392], + [-45.39870158507098, -23.792204484015116], + [-45.39872058527624, -23.792250483997325], + [-45.39876258571501, -23.792346483955065], + [-45.398804586066575, -23.792409483895103], + [-45.39882058620578, -23.792435483873465], + [-45.39886058654854, -23.792498483818044], + [-45.39888958672914, -23.792518483764226], + [-45.398889586789934, -23.792541483776496], + [-45.39886458687278, -23.792614483870754], + [-45.39886358704813, -23.792682483909086], + [-45.39887158719444, -23.79272448391353], + [-45.39889858736362, -23.792743483863614], + [-45.39894358759089, -23.792754483769638], + [-45.39898958773801, -23.792733483656267], + [-45.39900058756432, -23.792649483587244], + [-45.399015587519365, -23.792607483531633], + [-45.39904558767793, -23.792617483470337], + [-45.39906658787094, -23.79265548344382], + [-45.39910058827182, -23.79275048341878], + [-45.39911758851323, -23.792813483414434], + [-45.39913858875911, -23.792871483398564], + [-45.39915558891593, -23.792902483377265], + [-45.39917458906568, -23.792927483348343], + [-45.39921358936704, -23.7929764832878], + [-45.399232589508856, -23.792998483257236], + [-45.399269589843726, -23.793063483209625], + [-45.399318590326544, -23.793164483154285], + [-45.39933859052036, -23.793204483131145], + [-45.399380590877215, -23.793269483072397], + [-45.39939759104998, -23.793306483054213], + [-45.39941559122179, -23.793341483032876], + [-45.39942409130152, -23.793357483022483], + [-45.39943259138125, -23.793373483012083], + [-45.3994380914326, -23.793383733005268], + [-45.399443591483944, -23.793393982998527], + [-45.39944909153517, -23.793404232991723], + [-45.39945459158652, -23.793414482984907], + [-45.39946059171082, -23.79345148299124], + [-45.39946383277307, -23.79346963499367], + [-45.39947104889613, -23.793504161996], + [-45.39948259206951, -23.79355048299494], + [-45.39950259228976, -23.793600482977013], + [-45.39957559290742, -23.793712482874344], + [-45.39964059348717, -23.793823482788834], + [-45.399653593724224, -23.793891482796045], + [-45.39966159384676, -23.793924482795873], + [-45.399674594001766, -23.79396148278659], + [-45.39970959439659, -23.794052482757113], + [-45.39973559464862, -23.794104482726997], + [-45.399753594823075, -23.79414048270608], + [-45.39978259510418, -23.794198482672442], + [-45.39980959543729, -23.7942794826555], + [-45.39983659574387, -23.794350482633206], + [-45.39986059600032, -23.794407482610055], + [-45.39989459635112, -23.794483482574943], + [-45.39991559664981, -23.79456148256966], + [-45.399931596873614, -23.79461948256488], + [-45.39996159728076, -23.794723482553415], + [-45.399984597490516, -23.79476448252411], + [-45.39999859783511, -23.794871482549762], + [-45.39997659768528, -23.794851482588054], + [-45.39995359761839, -23.794864482645945], + [-45.39993859761312, -23.794887482691607], + [-45.39993959770743, -23.794921482707394], + [-45.39996359796118, -23.79497748268381], + [-45.39997859808013, -23.794997482661074], + [-45.40003759851717, -23.795064482565497], + [-45.400058598741936, -23.79511448254543], + [-45.40006759891648, -23.795165482552463], + [-45.40007359901426, -23.795192482553485], + [-45.40008159922398, -23.79525848257077], + [-45.40008559934734, -23.795298482583117], + [-45.4000925996162, -23.7953884826153], + [-45.40009459968846, -23.795412482623558], + [-45.40009259975899, -23.7954424826439], + [-45.400090599824225, -23.79547048266321], + [-45.40007859983747, -23.795495482703156], + [-45.400067599852534, -23.795519482740357], + [-45.40003059988255, -23.795592482861284], + [-45.39998959991345, -23.795672482994753], + [-45.39995659998228, -23.795753483111085], + [-45.39992859999378, -23.795804483200286], + [-45.39992360011185, -23.79585748323955], + [-45.399935600252, -23.795890483230362], + [-45.39995860040623, -23.795910483189875], + [-45.40000360061241, -23.795913483091468], + [-45.4000336007234, -23.795905483020636], + [-45.400123601085454, -23.795892482813798], + [-45.40015260121323, -23.795892482749387], + [-45.40022060153661, -23.79590148260314], + [-45.40027560177099, -23.795898482479295], + [-45.40030760192251, -23.795902482410405], + [-45.400339602081985, -23.79590948234298], + [-45.400393602367494, -23.79592748223264], + [-45.40043060254101, -23.795931482152557], + [-45.400391602466996, -23.795968482258857], + [-45.40035460233317, -23.79597948234682], + [-45.400326602230955, -23.795987482413214], + [-45.400300602137555, -23.79599548247524], + [-45.40024160195433, -23.796024482621704], + [-45.40015160162928, -23.796051482835978], + [-45.400113601454, -23.79604848291882], + [-45.400032601081264, -23.796042483095512], + [-45.39999060100202, -23.796082483210057], + [-45.39998460106553, -23.79611648324138], + [-45.39998460114485, -23.796146483257303], + [-45.39999060122677, -23.796167483255175], + [-45.40000560133519, -23.79618348323033], + [-45.40003160152113, -23.796210483186904], + [-45.40006160176433, -23.79625248314257], + [-45.40009060195027, -23.79627448308977], + [-45.40013460216526, -23.79628248299622], + [-45.40018960234146, -23.796257482860824], + [-45.40024360248682, -23.796222482722353], + [-45.40027860263039, -23.796218482642516], + [-45.400278602799645, -23.796282482676325], + [-45.400274602895735, -23.79632548270803], + [-45.40024760312057, -23.79645548283707], + [-45.40023760327481, -23.79653048289899], + [-45.40020960337889, -23.796616483006826], + [-45.40018560350056, -23.79670248310577], + [-45.4001696036337, -23.79677948318224], + [-45.40016460376245, -23.796836483223583], + [-45.40016160383916, -23.796870483248252], + [-45.400146603926466, -23.796928483312367], + [-45.400136603988166, -23.796968483355815], + [-45.40012060400761, -23.797002483409372], + [-45.40010560411077, -23.797066483476627], + [-45.40010560417954, -23.79709248349042], + [-45.40010260435675, -23.79716448353531], + [-45.400091604453706, -23.79721948358892], + [-45.400083604510996, -23.797254483625334], + [-45.400068604556076, -23.797296483680864], + [-45.40005460456306, -23.797322483725768], + [-45.40003560458517, -23.79736248378913], + [-45.40001160468302, -23.797439483883366], + [-45.39999260473422, -23.79749048395259], + [-45.399992604869105, -23.797541483979707], + [-45.3999646050816, -23.797668484109295], + [-45.399945605111654, -23.797711484174325], + [-45.39990660516998, -23.797798484307133], + [-45.39985160525823, -23.797923484495595], + [-45.39978260531126, -23.798058484720496], + [-45.39974560533863, -23.79813048484098], + [-45.39972660535545, -23.798168484903297], + [-45.39964060535472, -23.798311485170238], + [-45.39939060541433, -23.79875048595856], + [-45.399058299554966, -23.799357238018775], + [-45.39880060567639, -23.799832487843453], + [-45.39886160618592, -23.799923487756185], + [-45.398880606515604, -23.80001648776331], + [-45.39888260669894, -23.80008248779392], + [-45.39888160681358, -23.80012748782002], + [-45.39889360696433, -23.800164487812946], + [-45.398886607084194, -23.800221487858746], + [-45.39886160708517, -23.800263487936586], + [-45.39883860708959, -23.80030348800894], + [-45.39885860725448, -23.800332487979894], + [-45.3988966075118, -23.800366487913482], + [-45.398903607619374, -23.800395487913317], + [-45.398892607716355, -23.800450487966955], + [-45.39885360775609, -23.800530488096026], + [-45.398814607743, -23.80059048821459], + [-45.39880060778703, -23.800630488266943], + [-45.39878160785683, -23.800688488339848], + [-45.39875060809311, -23.800829488483554], + [-45.39874560815309, -23.800860488511113], + [-45.3987226082686, -23.800942488605664], + [-45.39867760835863, -23.801051488763534], + [-45.39866160844684, -23.801111488830895], + [-45.398636608580006, -23.801203488935233], + [-45.39862260867712, -23.801263488998277], + [-45.398595608862216, -23.801378489119283], + [-45.39856560896552, -23.801467489233175], + [-45.398546609199165, -23.801587489339028], + [-45.39852160930859, -23.801670489438667], + [-45.39851260948317, -23.801751489501573], + [-45.398498609555034, -23.801801989559497], + [-45.39848460962692, -23.801852489617406], + [-45.398469609880905, -23.801973489714918], + [-45.39844860999207, -23.80205048980251], + [-45.39842761004762, -23.802106489878806], + [-45.39839561001773, -23.802148489972208], + [-45.3983536099067, -23.8021764900804], + [-45.39833060987417, -23.802202490145294], + [-45.39832010989263, -23.80222699018161], + [-45.39830480304132, -23.802308708259005], + [-45.398303860050575, -23.802313740263745], + [-45.398287610208435, -23.802400490345875], + [-45.39830161032295, -23.802420490325424], + [-45.398342610548596, -23.80243749024332], + [-45.398370610716974, -23.80245449019013], + [-45.39839861092499, -23.802486490144883], + [-45.39840861105903, -23.802520490140765], + [-45.398396611162205, -23.80257949019872], + [-45.39838561126714, -23.80263749025395], + [-45.39838111131482, -23.80266299027745], + [-45.39837661136243, -23.802688490300966], + [-45.398371611469955, -23.802737490338036], + [-45.39837861182888, -23.802861490388345], + [-45.39838161224416, -23.803013490462284], + [-45.398379612441694, -23.803091490508198], + [-45.39837261261979, -23.803170490565627], + [-45.39836361274947, -23.80323449061955], + [-45.39836661302457, -23.80333349066543], + [-45.39835061317893, -23.803418490746125], + [-45.39832261320368, -23.803474490838063], + [-45.398283613211674, -23.803542490960822], + [-45.39824161315101, -23.803589491079084], + [-45.398208113082724, -23.803619491169425], + [-45.398174613014426, -23.80364949125979], + [-45.398141112917045, -23.803668491344293], + [-45.398107612819665, -23.803687491428782], + [-45.39803361259143, -23.80372449161288], + [-45.3979686123896, -23.80375649177427], + [-45.39793961230421, -23.80377249184718], + [-45.39791061221872, -23.803788491920116], + [-45.397886112145166, -23.80380149198145], + [-45.397861612071594, -23.803814492042804], + [-45.39783161201867, -23.803844492125368], + [-45.39781061204522, -23.803889492195914], + [-45.397804612164215, -23.80394449223847], + [-45.39780461221183, -23.803962492248097], + [-45.39780461225945, -23.803980492257526], + [-45.39782261244203, -23.804019492238268], + [-45.39786961272055, -23.80404649214816], + [-45.39792261297786, -23.804055492035214], + [-45.39797661321588, -23.804055491915214], + [-45.39801861337187, -23.80404449181605], + [-45.39806461354547, -23.804033491707948], + [-45.39810361366182, -23.8040124916102], + [-45.398161613808966, -23.803971491459546], + [-45.39821961396139, -23.80393249130993], + [-45.39827261409974, -23.803896491173088], + [-45.39832861431208, -23.803883491041773], + [-45.39837761452279, -23.803881490931833], + [-45.39841961470248, -23.80387949083745], + [-45.39846061488054, -23.80387849074584], + [-45.39850961513083, -23.80389149064376], + [-45.39859161555307, -23.803914490473804], + [-45.398632615813135, -23.80394449039861], + [-45.39867961611549, -23.803980490313215], + [-45.39873561651053, -23.80403649021851], + [-45.398800616963506, -23.804099490107564], + [-45.39884261730734, -23.80415949004605], + [-45.39887561761686, -23.804221490005595], + [-45.398898617892876, -23.80428748998956], + [-45.39894561833543, -23.804376489932316], + [-45.39897561868195, -23.804457489908565], + [-45.39902961920303, -23.80456448984531], + [-45.3990696195036, -23.80461148978134], + [-45.39910161981392, -23.804675489744234], + [-45.399125620065234, -23.804730489720097], + [-45.39915362028917, -23.804768489677986], + [-45.39917662052013, -23.804817489652915], + [-45.399223620954785, -23.804903489594032], + [-45.39925162122899, -23.80496048956212], + [-45.39926062139833, -23.805009489568096], + [-45.39928662167696, -23.805071489543188], + [-45.39930962188677, -23.80511248951384], + [-45.39932862205524, -23.805144489488573], + [-45.39934262226237, -23.80519948948665], + [-45.39934962245731, -23.805261489503962], + [-45.399361622634565, -23.805308489502202], + [-45.399361622724506, -23.80534248952032], + [-45.399347622871844, -23.805421489593293], + [-45.3993476229724, -23.805459489613483], + [-45.399352623108165, -23.805502489625184], + [-45.39937662334891, -23.80555348959887], + [-45.399397623587035, -23.80560848958139], + [-45.39941862379864, -23.805653489558583], + [-45.39943262404553, -23.805723489564624], + [-45.39944462424663, -23.8057794895676], + [-45.39944862436478, -23.80581748957889], + [-45.399458624522644, -23.80586048957949], + [-45.39947062469452, -23.80590548957668], + [-45.399484624840994, -23.80593748956253], + [-45.39948662495565, -23.805977489579302], + [-45.39948462505533, -23.80601848960553], + [-45.39946562508532, -23.806061489670597], + [-45.399463625261745, -23.80613148971218], + [-45.3994686254584, -23.80619748973601], + [-45.399485625731835, -23.806272489738014], + [-45.399497626043974, -23.806370489763342], + [-45.3995016262416, -23.806438489790565], + [-45.399520626563465, -23.80652848979607], + [-45.399541626830626, -23.806594489784374], + [-45.399567627114585, -23.80665848976057], + [-45.399595627394106, -23.806717489729643], + [-45.399579627413594, -23.806751489783213], + [-45.39958462755995, -23.80679848979708], + [-45.39958462762877, -23.806824489810808], + [-45.39956862758746, -23.806835489852233], + [-45.39954462749744, -23.806841489908717], + [-45.39951962736086, -23.806831489959045], + [-45.39950262720657, -23.806801489980906], + [-45.39947262702928, -23.806784490038503], + [-45.39945162693676, -23.806784490085175], + [-45.39941462684784, -23.80681249018226], + [-45.39937062671478, -23.806835490292293], + [-45.399343626640764, -23.806852490361305], + [-45.39931262653853, -23.806865490437104], + [-45.399296626502355, -23.806878490479576], + [-45.39926862644255, -23.806902490554503], + [-45.39924362643288, -23.806940490630243], + [-45.39922262649905, -23.80700049070874], + [-45.39919762653449, -23.807055490793495], + [-45.39917662652126, -23.807085490856085], + [-45.39915362649403, -23.80711349092208], + [-45.39914662650813, -23.807130490946616], + [-45.3991556266272, -23.807160490942515], + [-45.3991726267815, -23.807190490920664], + [-45.399181626927046, -23.807230490921892], + [-45.39917462699407, -23.807267490957038], + [-45.399158626995, -23.80729449100704], + [-45.39916562706559, -23.80730949099933], + [-45.39921962736175, -23.807331490891027], + [-45.39922862741733, -23.807337490874186], + [-45.39924762760158, -23.80737549085211], + [-45.399274627715315, -23.80737349079108], + [-45.399302627769934, -23.807347490715035], + [-45.39933562781481, -23.80730949062147], + [-45.39937662784203, -23.807251490499677], + [-45.39942062789039, -23.807196490372597], + [-45.39947662799961, -23.807144490220608], + [-45.39954562816879, -23.807093490040216], + [-45.39958962829382, -23.807067489928635], + [-45.399654628440075, -23.807014489755996], + [-45.39970062848402, -23.806954489621965], + [-45.399728628459236, -23.806898489530003], + [-45.399765628408005, -23.80681748940474], + [-45.3998066284034, -23.80674748927656], + [-45.3998326284386, -23.80671748920287], + [-45.399860628567296, -23.80671948914168], + [-45.39986962863347, -23.80672948912694], + [-45.399869628673166, -23.806744489134985], + [-45.399848628659946, -23.80677448919745], + [-45.399802628650406, -23.806847489338523], + [-45.399777628685825, -23.806902489423184], + [-45.39974262865062, -23.80694748952485], + [-45.39972862872387, -23.80699848958305], + [-45.39969862877953, -23.807069489687414], + [-45.3996716287849, -23.80711648977232], + [-45.39966462885465, -23.80715448980799], + [-45.39962562889178, -23.807233489936635], + [-45.39958362890516, -23.807308490069754], + [-45.39956062886737, -23.807332490133618], + [-45.39953462880832, -23.807353490202512], + [-45.39949562866552, -23.80736449029507], + [-45.39942362839316, -23.80738149046409], + [-45.39937762820897, -23.80738849057011], + [-45.399353628103256, -23.807388490623445], + [-45.399337628077625, -23.807405490668003], + [-45.39933562812969, -23.807428490684682], + [-45.39933562819849, -23.807454490698415], + [-45.39934462830437, -23.807479490691694], + [-45.399365628476346, -23.807509490660934], + [-45.399391628649106, -23.807531490614778], + [-45.39941962878309, -23.807535490554734], + [-45.399451628924105, -23.807535490483584], + [-45.3994776290149, -23.807526490420997], + [-45.39949862907833, -23.80751549036847], + [-45.399523629207046, -23.80752249031665], + [-45.39954262928548, -23.807520490273372], + [-45.39956362937541, -23.807519490226188], + [-45.39958162947326, -23.80752649018985], + [-45.399602629600274, -23.807539490150067], + [-45.39961462969023, -23.807553490130843], + [-45.39962362976423, -23.807566490117733], + [-45.39961262991948, -23.80764349018299], + [-45.399598630050974, -23.807716490252847], + [-45.399573630171105, -23.807803490354555], + [-45.39954163032373, -23.807914490484595], + [-45.39950963046059, -23.808019490611404], + [-45.3994696305092, -23.808104490745418], + [-45.39942163054115, -23.808196490900873], + [-45.399365630498195, -23.808273491066167], + [-45.39931063048864, -23.808361491235107], + [-45.399266630464, -23.808425491366904], + [-45.39923863052592, -23.808495491466292], + [-45.39918863048809, -23.80856449161395], + [-45.39916063047054, -23.808604491697444], + [-45.39910963039931, -23.808662491841584], + [-45.39907763039853, -23.808715491940855], + [-45.39904963041793, -23.80876949203166], + [-45.39901663037838, -23.808809492126265], + [-45.398996630377574, -23.808842492188212], + [-45.39897063031324, -23.808861492256042], + [-45.398963630372414, -23.808895492289693], + [-45.39893363027459, -23.808908492363297], + [-45.39890163019445, -23.80893149244657], + [-45.398820629885016, -23.80894949263612], + [-45.39874362957208, -23.80895949281272], + [-45.398629629117245, -23.808977493075535], + [-45.398543628748754, -23.808981493268874], + [-45.39847462846841, -23.808990493426972], + [-45.39840462817052, -23.808994493584734], + [-45.39834162794042, -23.809012493734294], + [-45.39824262753851, -23.80902549396116], + [-45.39818462734893, -23.809050494103463], + [-45.39814062720794, -23.809070494211827], + [-45.39807962697876, -23.809085494355365], + [-45.39798262662005, -23.809111494584698], + [-45.39790862631505, -23.809119494753453], + [-45.3978226259836, -23.809137494954122], + [-45.39772262558782, -23.809154495185382], + [-45.39767162538148, -23.8091614953025], + [-45.3976116251568, -23.80917649544383], + [-45.39754162490371, -23.809197495610512], + [-45.397490624702755, -23.809206495728656], + [-45.397446624532634, -23.809215495831243], + [-45.397418624401276, -23.809212495891924], + [-45.397367624139456, -23.80919849599776], + [-45.39732762392342, -23.809183496078703], + [-45.39729762378589, -23.809181496144312], + [-45.39724662358222, -23.809189496261947], + [-45.39719562341567, -23.80921149638703], + [-45.39713762321028, -23.809230496526], + [-45.39709562305425, -23.809241496625088], + [-45.39704762287179, -23.80925249673775], + [-45.39700062269897, -23.809265496848994], + [-45.39694562250688, -23.80928449698129], + [-45.39689162230849, -23.809299497109354], + [-45.39684062211804, -23.809312497229538], + [-45.39678762191888, -23.809325497354234], + [-45.39674062174612, -23.809338497465586], + [-45.396685621538055, -23.809351497594736], + [-45.39663162131586, -23.809357497717908], + [-45.39659762119513, -23.80936849779934], + [-45.39657862112992, -23.80937549784532], + [-45.396569621116676, -23.809385497870565], + [-45.396580621223414, -23.809407497857837], + [-45.39661862141203, -23.809415497777675], + [-45.396683621709194, -23.809419497635293], + [-45.39673162190486, -23.80941349752539], + [-45.39678562210853, -23.809400497398475], + [-45.396822622231994, -23.809385497308273], + [-45.396868622400326, -23.80937249719922], + [-45.396905622563374, -23.809372497116986], + [-45.39692662264266, -23.80936749706762], + [-45.39701962304208, -23.809363496858822], + [-45.39708462332328, -23.809361496713215], + [-45.397114623452964, -23.809360496646004], + [-45.39719162382146, -23.80937149648083], + [-45.39727062423051, -23.80939449631742], + [-45.39731962450213, -23.80941549621969], + [-45.397372624804525, -23.80944149611562], + [-45.397447625206546, -23.809468495963266], + [-45.397519625608616, -23.80950049582029], + [-45.397616626176465, -23.809553495632777], + [-45.39768662653524, -23.80957249548725], + [-45.39771462669838, -23.80958749543296], + [-45.39769662673283, -23.809630495495792], + [-45.39766562661207, -23.809636495567926], + [-45.397607626279665, -23.80960749568137], + [-45.397566626294754, -23.809681495811844], + [-45.397677626932285, -23.80973749559476], + [-45.397761627413644, -23.809779495430348], + [-45.39781262772319, -23.809811495333953], + [-45.39785262773544, -23.80974949521227], + [-45.39786362774426, -23.809734495179796], + [-45.39782462751144, -23.80971149525433], + [-45.39781762740123, -23.809681495253972], + [-45.39784462741167, -23.80964049517218], + [-45.39787962760571, -23.809655495102334], + [-45.39793562789747, -23.809672494986863], + [-45.39797462813027, -23.80969549491235], + [-45.39801262838769, -23.80972949484596], + [-45.398047628600246, -23.809751494779892], + [-45.39807962881801, -23.809780494724084], + [-45.39811462908616, -23.80982349466909], + [-45.3981496293198, -23.809853494607218], + [-45.39821462967773, -23.80988049447706], + [-45.3982496298506, -23.80988749440304], + [-45.398307630183, -23.809916494289496], + [-45.398426630816054, -23.809957494046756], + [-45.39849563115727, -23.80997149390073], + [-45.39856063149402, -23.809990493766396], + [-45.398628631873194, -23.810020493631132], + [-45.398711632344856, -23.810060493467805], + [-45.3987746327126, -23.810094493345844], + [-45.398814632957745, -23.810120493270762], + [-45.398886633335906, -23.810143493122865], + [-45.39895363368157, -23.810162492984066], + [-45.39901863404754, -23.8101924928554], + [-45.39907263437547, -23.810226492753447], + [-45.39914463475374, -23.810249492605653], + [-45.399188634947684, -23.81024949250781], + [-45.399214635096726, -23.810262492456854], + [-45.39923563525019, -23.81028549242241], + [-45.39932363592129, -23.810392492283505], + [-45.39940563653413, -23.810487492151655], + [-45.39945663692839, -23.810551492072193], + [-45.3994686370262, -23.810568492054514], + [-45.39946563710301, -23.8106024920793], + [-45.399445637112805, -23.81063949214333], + [-45.399447637232775, -23.810681492161162], + [-45.39927163683814, -23.810825492628812], + [-45.39907963637561, -23.81097049313255], + [-45.39891263597559, -23.811097493571204], + [-45.39881763573685, -23.811165493818372], + [-45.398780635658504, -23.811197493917607], + [-45.39875263557468, -23.81121249398789], + [-45.39871063539747, -23.811215494082838], + [-45.39858763485532, -23.811215494356265], + [-45.3983976339966, -23.811207494774333], + [-45.39817663299593, -23.811197495260267], + [-45.397914631814515, -23.811187495837316], + [-45.39787963164174, -23.811180495911472], + [-45.3977496307881, -23.81107449614421], + [-45.39754662942745, -23.810898496502055], + [-45.39740762848655, -23.810774496745175], + [-45.39735862816464, -23.81073449683282], + [-45.39733462800851, -23.810715496876213], + [-45.39701062737687, -23.811016497756043], + [-45.39813563508354, -23.812054495806105], + [-45.39839463553711, -23.81179449509239], + [-45.398528635770454, -23.8116594947229], + [-45.398575635998796, -23.811667494622704], + [-45.39862163620156, -23.811667494520453], + [-45.398809636503564, -23.811468493996923], + [-45.398978636885936, -23.811331493548604], + [-45.399154637322965, -23.81120349308941], + [-45.39926563760836, -23.811126492801847], + [-45.39938163794765, -23.811061492509438], + [-45.39950163828609, -23.810989492204488], + [-45.399592638488684, -23.810914491962404], + [-45.39966163862874, -23.81085249177615], + [-45.39970863873266, -23.810813491650944], + [-45.399765638875365, -23.810772491502476], + [-45.399828638983635, -23.810708491328516], + [-45.399858639025894, -23.810674491243812], + [-45.399969639300686, -23.81059349095406], + [-45.40004163945404, -23.81053149076114], + [-45.40012963966446, -23.810464490529927], + [-45.400233639953534, -23.810400490264815], + [-45.4003246402117, -23.81034649003387], + [-45.40039664041524, -23.81030348985098], + [-45.400472640615206, -23.810252489655007], + [-45.400560640778096, -23.810167489414294], + [-45.400629640939314, -23.810113489232226], + [-45.40071564110916, -23.810034488999182], + [-45.400826641365526, -23.809946488705737], + [-45.40097764179817, -23.809858488323307], + [-45.40101964192242, -23.809835488217782], + [-45.40105364204313, -23.809824488136343], + [-45.40110064227673, -23.809834488037193], + [-45.40126064311694, -23.809885487708563], + [-45.40147264423659, -23.80995548727434], + [-45.401555644687136, -23.809987487106692], + [-45.40159364491547, -23.810010487034425], + [-45.401625645141294, -23.810042486980336], + [-45.40165864541642, -23.810091486932908], + [-45.401714645822075, -23.810151486840116], + [-45.40174664610871, -23.810206486798222], + [-45.401826646646654, -23.810276486657408], + [-45.40187264699763, -23.810332486584826], + [-45.40194264753119, -23.810417486474268], + [-45.4020146480126, -23.810479486347035], + [-45.40208464850117, -23.810547486227463], + [-45.402175649108706, -23.810625486066545], + [-45.40227564981431, -23.810725485897155], + [-45.402352650352206, -23.810800485765668], + [-45.40244365104451, -23.81091048562167], + [-45.40256965200231, -23.811062485422035], + [-45.4026506525949, -23.811151485289088], + [-45.402736653159295, -23.811221485134993], + [-45.402832653836526, -23.811317484972346], + [-45.40291665445567, -23.811411484835418], + [-45.40305865547606, -23.811560484598623], + [-45.403202656492034, -23.811704484354713], + [-45.4032986571693, -23.81180048419217], + [-45.40341265801071, -23.811928484006415], + [-45.4035246588089, -23.81204348381837], + [-45.40356865909286, -23.812077483738513], + [-45.403605659287756, -23.812089483662625], + [-45.40365165950373, -23.812094483562937], + [-45.40373365981752, -23.812076483371072], + [-45.40381466010034, -23.81204848317606], + [-45.40386766023856, -23.812012483039105], + [-45.40392766032824, -23.81194648287064], + [-45.403950660336974, -23.81191148280098], + [-45.404022660468954, -23.811841482603853], + [-45.4041266606943, -23.81175348232594], + [-45.40424266099638, -23.811674482026067], + [-45.404298661139954, -23.811635481880842], + [-45.40443466149571, -23.811543481529675], + [-45.40456666174923, -23.81141948117048], + [-45.4046596619605, -23.81134448092383], + [-45.40474966218766, -23.81128048068982], + [-45.40488866252748, -23.811177480326137], + [-45.40511866304335, -23.81098947971503], + [-45.40528966345541, -23.810860479266374], + [-45.405377663668474, -23.810794479035756], + [-45.40553766407969, -23.810683478621083], + [-45.40556266412106, -23.8106574785517], + [-45.40568866441676, -23.810559478219634], + [-45.40583866472563, -23.810426477815614], + [-45.40592466489544, -23.810347477582468], + [-45.40605666524942, -23.810261477243316], + [-45.40617966558755, -23.81018447692902], + [-45.40633666596699, -23.81006647651738], + [-45.406426666109375, -23.809970476266322], + [-45.40651966624653, -23.809867476004968], + [-45.40654966627809, -23.809829475918168], + [-45.40658866639164, -23.809807475819717], + [-45.40664466651936, -23.809762475671352], + [-45.406695666677855, -23.809737475544672], + [-45.40678566684672, -23.809651475298956], + [-45.40684166696377, -23.809602475148488], + [-45.40692266721209, -23.809561474946623], + [-45.40694666790574, -23.809783475010867], + [-45.4069466680461, -23.809836475038864], + [-45.4069466682394, -23.809909475077536], + [-45.40694666839565, -23.80996847510877], + [-45.406956668603925, -23.810030475119348], + [-45.40700766907756, -23.81012447505574], + [-45.407054669673926, -23.81027147502904], + [-45.407065169810224, -23.810305475023647], + [-45.407075669946586, -23.810339475018353], + [-45.40707367009669, -23.810399475054467], + [-45.40712267050325, -23.810471474983707], + [-45.40711167055284, -23.810508475027724], + [-45.40710817058233, -23.810525475044514], + [-45.40710467061199, -23.810542475061357], + [-45.40711367073641, -23.810574475058267], + [-45.40714167100538, -23.81062947502513], + [-45.407190671459716, -23.81071947496378], + [-45.40719417155055, -23.81074797497104], + [-45.40719767164146, -23.81077647497831], + [-45.407197671744775, -23.810815474999004], + [-45.407198671849805, -23.810853475016934], + [-45.40717567183316, -23.810885475085012], + [-45.407161671861566, -23.810919475134217], + [-45.407178672034476, -23.810956475115933], + [-45.4071966721747, -23.810979475088033], + [-45.4072016723451, -23.811035475106586], + [-45.407238672661684, -23.811093475054992], + [-45.40727867295982, -23.811139474990348], + [-45.40730767316442, -23.811168474941297], + [-45.407334673283316, -23.811168474881246], + [-45.407358673381275, -23.8111654748262], + [-45.40737667332012, -23.81111247475809], + [-45.40739367342427, -23.81112347472619], + [-45.407410673528275, -23.811134474694146], + [-45.40743767364727, -23.811134474634077], + [-45.40749267390813, -23.81114147451542], + [-45.40752167404928, -23.811146474453604], + [-45.407556674190225, -23.811141474373056], + [-45.407593674340006, -23.811136474288134], + [-45.4076186744661, -23.81114247423576], + [-45.40765817463949, -23.811142224147734], + [-45.40766700667828, -23.811142168128065], + [-45.40769767481296, -23.811141974059748], + [-45.40771467489704, -23.811145474023796], + [-45.407749675136074, -23.81117747396288], + [-45.40778167539098, -23.811220473914453], + [-45.407831675778205, -23.81128347383655], + [-45.407942676582486, -23.81140247365262], + [-45.40792467661177, -23.811443473714412], + [-45.407924676709776, -23.811480473734026], + [-45.40794367684918, -23.81150147370283], + [-45.407956676951414, -23.811518473682906], + [-45.40793567699401, -23.81156947375665], + [-45.407948677136055, -23.811601473744677], + [-45.40799667753296, -23.811671473674963], + [-45.408041677969635, -23.81176147362249], + [-45.408057678111646, -23.8117884736012], + [-45.40810067843624, -23.8118394735325], + [-45.408142678703435, -23.81187047345556], + [-45.40821967911957, -23.811899473299544], + [-45.40828267937871, -23.811892473155737], + [-45.4083276796141, -23.811906473063043], + [-45.40836467983537, -23.811928472992328], + [-45.40838067996151, -23.811949472967903], + [-45.40839168004975, -23.811964472951377], + [-45.40842868026308, -23.8119834728791], + [-45.40845968043145, -23.811995472816513], + [-45.40853168098724, -23.81208547270395], + [-45.4086006814899, -23.81216047259015], + [-45.4086566818718, -23.812211472492617], + [-45.40871168224929, -23.81226247239722], + [-45.40874168250333, -23.81230847235479], + [-45.40874168257751, -23.81233647236971], + [-45.408741682651666, -23.812364472384452], + [-45.40876568288461, -23.81241247235653], + [-45.40880268321451, -23.812475472307536], + [-45.40882068343684, -23.812529472296003], + [-45.40882168356848, -23.81257747231926], + [-45.40883468392767, -23.812691472350593], + [-45.4088346841025, -23.812757472385567], + [-45.408821684243954, -23.812832472454275], + [-45.408827684503464, -23.812920472487395], + [-45.408832684692364, -23.812983472509575], + [-45.408814684689865, -23.81301247256506], + [-45.40877268445445, -23.812993472648397], + [-45.408737684234026, -23.812968472713095], + [-45.408716684167906, -23.812978472765042], + [-45.40867468407286, -23.813012472876533], + [-45.408627683950506, -23.813044472997998], + [-45.40854568367915, -23.813078473198395], + [-45.40848168348722, -23.813112473358753], + [-45.40840568321851, -23.813137473541097], + [-45.408349682913425, -23.813115473654076], + [-45.408275682523715, -23.813091473805972], + [-45.40822268223978, -23.813072473913827], + [-45.40818068209174, -23.813086474014682], + [-45.40815168205409, -23.81312047409716], + [-45.40808868193268, -23.81317947426855], + [-45.40806468191701, -23.813213474339896], + [-45.40808068212792, -23.813266474332405], + [-45.40810468236349, -23.813315474304915], + [-45.40813968265812, -23.813368474255142], + [-45.40818968297379, -23.813404474162933], + [-45.40825068326382, -23.813412474031477], + [-45.4082876833872, -23.81339747394124], + [-45.40839268373338, -23.813353473684348], + [-45.40843768387343, -23.813331473572646], + [-45.40850368410596, -23.813309473414133], + [-45.408564684393426, -23.81331647328208], + [-45.40862768471606, -23.813333473150987], + [-45.4086866850529, -23.813362473034996], + [-45.408725685333415, -23.81340347296995], + [-45.40873668549053, -23.81344447296718], + [-45.40872068558152, -23.813505473035054], + [-45.408697685705384, -23.813590473131224], + [-45.40868168579646, -23.813651473199084], + [-45.40860268572384, -23.81375547342998], + [-45.4085686856905, -23.813799473528903], + [-45.408542685673915, -23.813836473606287], + [-45.40853968575075, -23.813870473630917], + [-45.40853968593621, -23.81394047366799], + [-45.40852168593373, -23.813969473723404], + [-45.408503685970864, -23.81401347378673], + [-45.408479685955236, -23.81404747385815], + [-45.40845368595717, -23.814091473939218], + [-45.4084536860605, -23.814130473959878], + [-45.408453686124076, -23.81415447397261], + [-45.40844068615694, -23.814188474019495], + [-45.40842068611774, -23.81420697407382], + [-45.40840068607863, -23.81422547412805], + [-45.408387686098145, -23.814254474172415], + [-45.408387686180276, -23.814285474188797], + [-45.40835668617348, -23.814334474283672], + [-45.40831168609701, -23.814380474408118], + [-45.4082376859722, -23.81445647461305], + [-45.408208685921124, -23.814485474692837], + [-45.408185685923115, -23.814524474764674], + [-45.40816168592062, -23.81456347483864], + [-45.40812168582113, -23.81459247494308], + [-45.40810668581339, -23.814614474988073], + [-45.40809618582136, -23.814634975022276], + [-45.408085685829406, -23.81465547505651], + [-45.408056685812845, -23.814697475143277], + [-45.40804068579797, -23.814718475189945], + [-45.407969685551265, -23.81474347536116], + [-45.407921685416554, -23.814772475483295], + [-45.4078666852536, -23.81480247562154], + [-45.40783968519022, -23.81482347569271], + [-45.40780568515164, -23.814865475790583], + [-45.40777968508736, -23.814884475858534], + [-45.407766685061844, -23.814896475893743], + [-45.407729684920014, -23.814904475980327], + [-45.40768968481521, -23.814931476083633], + [-45.40766568475445, -23.814948476146014], + [-45.40762668461961, -23.814962476240197], + [-45.40759468454481, -23.814987476324664], + [-45.407547684409195, -23.81501447644343], + [-45.40750468431502, -23.815050476558202], + [-45.40747568426405, -23.815079476638086], + [-45.40744468421748, -23.81511347672502], + [-45.40740468407567, -23.815126476820893], + [-45.40736268396738, -23.815155476929686], + [-45.4073336838898, -23.81517447700432], + [-45.40729668374795, -23.815182477090833], + [-45.40723568351619, -23.815196477233954], + [-45.407190683331116, -23.815201477336682], + [-45.40713268305153, -23.815192477460922], + [-45.407114682972285, -23.815192477500958], + [-45.40709568292028, -23.815204477549692], + [-45.40709568298385, -23.815228477562332], + [-45.40708768300154, -23.815248477590785], + [-45.40707468294963, -23.815250477620758], + [-45.4070616829188, -23.815260477654906], + [-45.40706168295854, -23.815275477662837], + [-45.407080683092595, -23.815294477630697], + [-45.40708868315967, -23.815306477619178], + [-45.4070806832012, -23.81533547765242], + [-45.40705968319346, -23.815367477716066], + [-45.407038683159115, -23.81538947777439], + [-45.40703568319625, -23.815408477791184], + [-45.407033683240414, -23.815428477806208], + [-45.40701968326084, -23.815459477853747], + [-45.406990683178044, -23.81547647792724], + [-45.40698368321346, -23.81550147795608], + [-45.40698368328234, -23.815527477969784], + [-45.40696468323295, -23.815540478019017], + [-45.40693068313346, -23.815559478104706], + [-45.406911683102734, -23.815579478157538], + [-45.40689368312407, -23.815617478217728], + [-45.40689118319117, -23.81564697823895], + [-45.40688868325827, -23.815676478260087], + [-45.40690768336584, -23.815685478222527], + [-45.40691268345945, -23.8157124782257], + [-45.40693368360497, -23.815732478189545], + [-45.40696268376459, -23.81574447813147], + [-45.406994683892385, -23.815739478057584], + [-45.40701268392666, -23.815722478008546], + [-45.40704968410831, -23.815729477929896], + [-45.40707368425123, -23.815743477884006], + [-45.40711368439579, -23.81573147778857], + [-45.40714768450587, -23.81571647770505], + [-45.40717468463276, -23.815719477646557], + [-45.40719568476245, -23.815733477607154], + [-45.40720868482771, -23.815736477579915], + [-45.407240684857484, -23.815694477486492], + [-45.407279684952584, -23.815665477384343], + [-45.40736668525924, -23.815636477175445], + [-45.40742368545872, -23.815616977038285], + [-45.40748068565839, -23.81559747690114], + [-45.40763368618171, -23.81554047653064], + [-45.407765686628416, -23.815489476209905], + [-45.40781268678265, -23.815469476094783], + [-45.40785768690417, -23.8154404759792], + [-45.40789768695058, -23.81539147586432], + [-45.40792668698307, -23.815355475780784], + [-45.40795568703404, -23.815326475700903], + [-45.40801068722348, -23.815306475567894], + [-45.408065687465914, -23.81530647544553], + [-45.40811368767744, -23.815306475338737], + [-45.40815068787237, -23.815318475262778], + [-45.408174688023124, -23.815335475218447], + [-45.408198688173975, -23.815352475173942], + [-45.40823568841914, -23.815383475108103], + [-45.408267688637075, -23.81541247505227], + [-45.40836568918553, -23.815456474857513], + [-45.40842568944997, -23.815456474724023], + [-45.40845768959099, -23.815456474652805], + [-45.408510689867, -23.815472474543355], + [-45.408560690204006, -23.815516474455386], + [-45.408590690463306, -23.815564474414018], + [-45.40860869066724, -23.815611474398825], + [-45.40860069080414, -23.815676474451063], + [-45.40857469087774, -23.815747474546505], + [-45.40855669089901, -23.81578547460662], + [-45.40851669089233, -23.815849474729557], + [-45.40847769085552, -23.815900474843254], + [-45.40843269077376, -23.815944474966695], + [-45.40840669076778, -23.815985475046254], + [-45.4083936908509, -23.816038475103248], + [-45.40839369100721, -23.816097475134484], + [-45.40835969099781, -23.816150475238135], + [-45.408322690938014, -23.81618947534111], + [-45.40827769081649, -23.816218475456594], + [-45.408227690667694, -23.816245475582143], + [-45.40818769053641, -23.81626247568014], + [-45.40807169019996, -23.81632847597322], + [-45.40801169004679, -23.816370476128952], + [-45.40799269000015, -23.81638447617856], + [-45.40797969000113, -23.816406476219182], + [-45.40795568994036, -23.81642347628157], + [-45.40793768995907, -23.816460476341245], + [-45.40791669000689, -23.816513476415953], + [-45.40789868999389, -23.816538476469255], + [-45.40784268984763, -23.81657647661402], + [-45.407805689750816, -23.81660147670949], + [-45.40776668966896, -23.816635476814252], + [-45.407737689586185, -23.816652476887754], + [-45.40767668938884, -23.816679477037784], + [-45.40760268916072, -23.816716477222084], + [-45.40756368907895, -23.816750477326888], + [-45.407499688976955, -23.81681847750523], + [-45.40746568893034, -23.816857477601467], + [-45.40744968897385, -23.816900477659846], + [-45.40743168899247, -23.816937477719513], + [-45.407431689122284, -23.81698647774543], + [-45.40742668919566, -23.817022477775673], + [-45.40741668922838, -23.817051477813255], + [-45.40739268924454, -23.81709747789099], + [-45.40736068922008, -23.817141477985476], + [-45.40731868910115, -23.81716647809219], + [-45.407260688940795, -23.817202478240247], + [-45.40723168887662, -23.817226478317522], + [-45.407205688878584, -23.817270478398665], + [-45.40718468887603, -23.817304478463356], + [-45.40716068880209, -23.817316478523125], + [-45.40712668869984, -23.817334478608373], + [-45.407086688613596, -23.81736847871535], + [-45.4070736886385, -23.81739947876056], + [-45.40706068867127, -23.81743347880755], + [-45.40702868864152, -23.817475478901006], + [-45.40700568861693, -23.817504478967532], + [-45.406976688579164, -23.81753847905013], + [-45.40694968853166, -23.817565479124422], + [-45.40692068846212, -23.817587479200636], + [-45.40689168838463, -23.81760647927519], + [-45.40685768826658, -23.817618479357193], + [-45.40678668797477, -23.81762647951936], + [-45.406725687777424, -23.817653479669385], + [-45.406667687603885, -23.817684479814844], + [-45.406633687525485, -23.817711479904805], + [-45.40660168751435, -23.8177604800019], + [-45.40659368767247, -23.817833480058447], + [-45.406602687865835, -23.817891480069065], + [-45.40661068803616, -23.817942480078308], + [-45.40660568816254, -23.817998480119073], + [-45.406589688264134, -23.818063480189057], + [-45.406563688252945, -23.818102480267594], + [-45.406531688260245, -23.81815848036843], + [-45.40648468825445, -23.81823448051325], + [-45.40642668817089, -23.818299480676668], + [-45.406376688093594, -23.81835348081654], + [-45.40630768795632, -23.81841648100348], + [-45.406255687915255, -23.818487481156705], + [-45.406207687973826, -23.818589481317495], + [-45.406168688021886, -23.818672481448257], + [-45.406136688007905, -23.81872048154484], + [-45.40606368786636, -23.81878848174331], + [-45.405986687709756, -23.8188574819511], + [-45.405889687494074, -23.818937482209325], + [-45.40576768711249, -23.818996482512027], + [-45.4057286871208, -23.81906448263474], + [-45.40567868697184, -23.8190914827604], + [-45.40566268691325, -23.81909598279829], + [-45.40564668685463, -23.81910048283629], + [-45.40562568676211, -23.819100482883027], + [-45.405622686825645, -23.81912948290505], + [-45.40563868700744, -23.819171482891704], + [-45.40564668715138, -23.81921248289564], + [-45.40563668725564, -23.819268482947457], + [-45.4056236872884, -23.819302482994438], + [-45.40558968724718, -23.819343483091828], + [-45.40555768719091, -23.819375483179968], + [-45.40552568713463, -23.8194074832681], + [-45.40549168708014, -23.81944348336276], + [-45.405473687143804, -23.81949748343152], + [-45.40546168715845, -23.8195229834717], + [-45.40544968717319, -23.81954848351189], + [-45.405410687059494, -23.819570483610278], + [-45.40537868696878, -23.819589483691594], + [-45.405354686998066, -23.81964048377194], + [-45.40533168722519, -23.819764483888765], + [-45.40531868719446, -23.819774483922995], + [-45.405305687105326, -23.81976248394557], + [-45.405278686920056, -23.81973748399246], + [-45.40526768688478, -23.819742484019546], + [-45.40526868694747, -23.819764484028934], + [-45.405283687066586, -23.81978448400619], + [-45.40528468713988, -23.819810484017673], + [-45.40528468720611, -23.819835484031035], + [-45.405276687207994, -23.819849484056157], + [-45.405268687262776, -23.819883484092024], + [-45.40526368728581, -23.819900484112118], + [-45.40524268722504, -23.819912484165236], + [-45.405242687315145, -23.819946484183205], + [-45.40525068749873, -23.82000248419506], + [-45.40526668769912, -23.820051484185388], + [-45.40529568796209, -23.82010248414783], + [-45.40532468823037, -23.820155484111403], + [-45.40534868847665, -23.820208484086116], + [-45.40537268862216, -23.820223484040653], + [-45.40541268879057, -23.820220483950077], + [-45.40544368891398, -23.82021548387839], + [-45.40546468902773, -23.820223483835946], + [-45.405483689103605, -23.8202204837921], + [-45.405507689119275, -23.820186483720615], + [-45.405517689091845, -23.82015948368415], + [-45.40554968909776, -23.820108483585912], + [-45.40558068919743, -23.8200944835095], + [-45.40561768943733, -23.820123483442533], + [-45.405662689749654, -23.820166483365163], + [-45.40568969000385, -23.820217483332165], + [-45.405718690216496, -23.820249483284538], + [-45.405750690376095, -23.820256483217005], + [-45.405790690576346, -23.820265483132797], + [-45.40583769082327, -23.820280483036168], + [-45.405850190902264, -23.82028948301316], + [-45.40586269098119, -23.82029848299003], + [-45.40594069154773, -23.820382482860996], + [-45.40597069175144, -23.82040948280853], + [-45.40598569187065, -23.82042948278571], + [-45.406010692076194, -23.820465482749185], + [-45.40605869253422, -23.82055848269158], + [-45.406071692647195, -23.820579482673825], + [-45.406094692849344, -23.820617482642696], + [-45.40611869305578, -23.820655482609453], + [-45.40614069321907, -23.82068048257368], + [-45.40616969342111, -23.82070848252399], + [-45.40618869357906, -23.820736482496518], + [-45.40617869361709, -23.82076748253518], + [-45.406150693565266, -23.820794482611806], + [-45.406157693680896, -23.820826482613153], + [-45.406191693984546, -23.820884482568207], + [-45.406233694315475, -23.82093948250389], + [-45.40628169469136, -23.821001482429864], + [-45.40630769490662, -23.821039482392163], + [-45.406353695257906, -23.82109548231946], + [-45.40638969538742, -23.821084482233495], + [-45.40641269538551, -23.82104548216164], + [-45.406446695543345, -23.821048482087544], + [-45.40646669569508, -23.821072482055797], + [-45.40649069586717, -23.821097482015652], + [-45.406527696136344, -23.821137481954402], + [-45.406604696656004, -23.8212054818191], + [-45.40665169693475, -23.821232481728792], + [-45.406674697065235, -23.82124348168346], + [-45.40672469730163, -23.82124948157534], + [-45.40679169760757, -23.821253481428396], + [-45.40682369783882, -23.821287481375165], + [-45.406876698117486, -23.821304481266193], + [-45.40696369855671, -23.821325481083758], + [-45.40704169893767, -23.82133948091749], + [-45.407122699231195, -23.821315480724508], + [-45.40715169932194, -23.821301480652647], + [-45.4072056995097, -23.821282480522413], + [-45.40729769988612, -23.821271480311744], + [-45.40737270021146, -23.821269480143787], + [-45.40743570048925, -23.821269480003576], + [-45.40751870088427, -23.82128047982471], + [-45.40755070103329, -23.821283479755156], + [-45.40758170118055, -23.821287479688262], + [-45.40764270144953, -23.821287479552502], + [-45.407683701619725, -23.821283479459158], + [-45.40772770183225, -23.82129047936489], + [-45.407781702112665, -23.821306479253195], + [-45.4078237023535, -23.82132747917087], + [-45.407848702482276, -23.821334479118896], + [-45.407904702742435, -23.821339478996883], + [-45.40793670285963, -23.82133047892095], + [-45.408007703114265, -23.82130847875124], + [-45.408082703482094, -23.82132247859173], + [-45.408136703767816, -23.82134047848105], + [-45.40816770392831, -23.821349478416852], + [-45.40820970414263, -23.82136047832923], + [-45.408274704429225, -23.821360478184562], + [-45.40834170475638, -23.8213724780418], + [-45.40838370498128, -23.82138747795627], + [-45.408413705153315, -23.82140247789742], + [-45.40845570539412, -23.821423477815028], + [-45.408496705619946, -23.821440477732754], + [-45.40853870582368, -23.82144747764301], + [-45.40861570625587, -23.821482477490136], + [-45.40868670665901, -23.82151647735008], + [-45.40873470692901, -23.821538477254926], + [-45.40875770705421, -23.821547477208522], + [-45.40879270724293, -23.821560477137425], + [-45.40881320735982, -23.8215704770971], + [-45.408833707476695, -23.821580477056795], + [-45.408890707807494, -23.821610476945796], + [-45.40893970807659, -23.821630476847286], + [-45.40898470834652, -23.821657476761413], + [-45.40902070856086, -23.82167847669237], + [-45.40906570881227, -23.82169847660284], + [-45.40911770912106, -23.821728476502976], + [-45.409169709429776, -23.8217584764031], + [-45.409211709675894, -23.82178147632182], + [-45.40925670991405, -23.821796476229583], + [-45.4092877100931, -23.82181247616896], + [-45.409318710272245, -23.821828476108514], + [-45.409421710858766, -23.82187847590566], + [-45.40949471125482, -23.821906475757967], + [-45.409621711944595, -23.82195547550128], + [-45.409732712502915, -23.82198147526788], + [-45.40977721272686, -23.82199197517434], + [-45.4098217129509, -23.822002475080932], + [-45.409853713070774, -23.821994475005425], + [-45.40987771315265, -23.821985474947198], + [-45.40991271330965, -23.821986474869895], + [-45.40993871346141, -23.822000474819436], + [-45.40996271359101, -23.82200947477072], + [-45.4100197138583, -23.82201547464698], + [-45.41004471394722, -23.822007474587124], + [-45.41011971421953, -23.821985474408503], + [-45.410141714284755, -23.821973474353246], + [-45.4101677143569, -23.821957474286947], + [-45.410183714382434, -23.821940474242243], + [-45.410214714479245, -23.821925474165322], + [-45.41026471455126, -23.82186947402446], + [-45.41029971458093, -23.82182247392162], + [-45.41035371469442, -23.821775473776583], + [-45.4103787147596, -23.821758473711924], + [-45.41042171492529, -23.82174947361152], + [-45.41045971509277, -23.821749473526936], + [-45.41052971543052, -23.821760473376894], + [-45.410584715696864, -23.821769473259238], + [-45.41062171587583, -23.821775473180004], + [-45.410687716201295, -23.821788473039955], + [-45.41072521639178, -23.821797972961505], + [-45.410762716582255, -23.821807472883044], + [-45.41080071677367, -23.82181647280325], + [-45.41083871696499, -23.821825472723443], + [-45.410913717332704, -23.8218394725639], + [-45.4109587175629, -23.821851472469977], + [-45.41098071768377, -23.8218604724258], + [-45.41100271780457, -23.821869472381636], + [-45.41105471812928, -23.821905472284865], + [-45.41110171849825, -23.82196647221249], + [-45.41112571875776, -23.82202447218971], + [-45.41115071899257, -23.82207147215891], + [-45.41117271921413, -23.822118472134868], + [-45.41118871934571, -23.82214147211136], + [-45.41125571978418, -23.822195471990778], + [-45.411304720116775, -23.82223947190498], + [-45.41135172044866, -23.822286471825166], + [-45.41139272076451, -23.822337471760903], + [-45.41142772100636, -23.822370471700413], + [-45.41145472117304, -23.822388471649802], + [-45.41150572143768, -23.822403471544213], + [-45.41153572156992, -23.822403471477433], + [-45.41157072172425, -23.822403471399493], + [-45.41159672184939, -23.822407471343787], + [-45.41163972207078, -23.822419471254328], + [-45.4116657222782, -23.822454471214993], + [-45.41170072255973, -23.82250247116244], + [-45.411722722837034, -23.822570471149454], + [-45.41174072310461, -23.82264147114685], + [-45.4117627233501, -23.822697471127483], + [-45.41177572357709, -23.822761471132427], + [-45.411788723740365, -23.82280147112458], + [-45.41180172387989, -23.822832471112108], + [-45.411801723975344, -23.822868471131088], + [-45.41179372404618, -23.822908471170084], + [-45.41175472402267, -23.82296447128653], + [-45.41174572407842, -23.823000471325585], + [-45.41175072419597, -23.82303647133351], + [-45.411763724324885, -23.823063471318775], + [-45.411776724509444, -23.823111471315283], + [-45.41177672466853, -23.823171471347006], + [-45.41178572488846, -23.823239471362836], + [-45.4117857249733, -23.823271471379755], + [-45.41179422505194, -23.823286971369075], + [-45.411802731130436, -23.823302467358356], + [-45.411824725333496, -23.823342471330488], + [-45.41183372547916, -23.82338247133162], + [-45.41182072554919, -23.823430471385894], + [-45.411812725672995, -23.823490471435523], + [-45.411794725686455, -23.823525471494058], + [-45.41180372581091, -23.823557471490936], + [-45.41182172597518, -23.823589471467745], + [-45.411860726221285, -23.823617471395732], + [-45.41188672642078, -23.82364947135476], + [-45.411912726649426, -23.823692471319614], + [-45.411951727022895, -23.823768471272935], + [-45.41199572739708, -23.82383647121096], + [-45.412008727557804, -23.823875471202662], + [-45.41201772767177, -23.823903471197458], + [-45.41204372789246, -23.823943471160636], + [-45.4120867281775, -23.823979471083966], + [-45.412117728399004, -23.824011471031852], + [-45.41214772860285, -23.824038470979335], + [-45.41215672878044, -23.824090470986818], + [-45.4121737289083, -23.824110470959514], + [-45.4121827290753, -23.82415847096482], + [-45.41219572922807, -23.824194470954975], + [-45.41221972946915, -23.824245470928453], + [-45.412230729623715, -23.824285470925123], + [-45.41223072970859, -23.82431747094203], + [-45.41223972981185, -23.824341470934694], + [-45.412252729922194, -23.82436147091628], + [-45.412278730097825, -23.8243844708706], + [-45.412296730208986, -23.824396470836795], + [-45.412317730365245, -23.82442047080275], + [-45.412324730438485, -23.824436470795618], + [-45.41233173051174, -23.82445247078858], + [-45.412352730710424, -23.82449247076288], + [-45.41235373079969, -23.824524470777558], + [-45.41236673101346, -23.824583470779814], + [-45.41235773109052, -23.824627470823124], + [-45.41235773119657, -23.824667470844275], + [-45.41236673144834, -23.824747470866573], + [-45.412371731626806, -23.824806470886536], + [-45.41237573173988, -23.824842470896712], + [-45.41237173189199, -23.824906470939506], + [-45.41236373200526, -23.824962470986847], + [-45.41235873207872, -23.82499847101706], + [-45.41237173222876, -23.825033471006588], + [-45.41238573235414, -23.825057470988124], + [-45.41239873245388, -23.82507347096762], + [-45.41242873260735, -23.825081470905122], + [-45.41245873273961, -23.825081470838295], + [-45.41248473289669, -23.82509747078877], + [-45.412515733118184, -23.825129470736723], + [-45.412532733256775, -23.825153470711484], + [-45.41255073341832, -23.825184470687784], + [-45.412584733621294, -23.8252044706227], + [-45.41262873371982, -23.825168470505655], + [-45.41263273359953, -23.825116470469318], + [-45.412636733534924, -23.825085470444034], + [-45.412658733515286, -23.82504147037176], + [-45.4127057336058, -23.82499747024386], + [-45.41274473372473, -23.824977470146404], + [-45.412787733829425, -23.824945470033736], + [-45.41281873382819, -23.82489346993719], + [-45.41284373381105, -23.824845469856168], + [-45.41287473390536, -23.8248294697787], + [-45.4129087340234, -23.824817469696626], + [-45.4129277731125, -23.824819422655253], + [-45.41296973436656, -23.824845469575596], + [-45.412999734562455, -23.824869469521516], + [-45.41304373485985, -23.824908469444185], + [-45.41307873507785, -23.82493246937885], + [-45.41311373531698, -23.82496446931783], + [-45.41315673557019, -23.82498846923479], + [-45.41318673576344, -23.8250114691802], + [-45.41324773607478, -23.825027469052795], + [-45.413295736350015, -23.825051468958534], + [-45.413330736568014, -23.825075468893317], + [-45.41338073692629, -23.825127468809466], + [-45.41342173719989, -23.825162468736664], + [-45.413451737395775, -23.82518646868247], + [-45.413473737598906, -23.82522646865464], + [-45.41349173779229, -23.82526946863728], + [-45.41351273796967, -23.825301468607414], + [-45.413543738138166, -23.82531346854474], + [-45.413586738359555, -23.82532546845533], + [-45.41359973841688, -23.825325468426406], + [-45.41363473857123, -23.825325468348463], + [-45.413656738668166, -23.82532546829947], + [-45.413686738821724, -23.825333468236927], + [-45.413712738936276, -23.82533346817901], + [-45.41377373920253, -23.825332468042664], + [-45.41381273935328, -23.825324467951535], + [-45.4138687395153, -23.825292467809913], + [-45.41392073964902, -23.825256467675054], + [-45.413954739767064, -23.825244467593066], + [-45.41398573993561, -23.82525646753032], + [-45.41399874004589, -23.825276467511987], + [-45.414032740140144, -23.825255467425116], + [-45.414067740238806, -23.825234467336113], + [-45.414091740283524, -23.825211467270474], + [-45.41410674030988, -23.82519646722912], + [-45.41410674025949, -23.825177467219124], + [-45.41411074018164, -23.825141467191155], + [-45.41413474013364, -23.82508346710713], + [-45.41415174013431, -23.82505546705438], + [-45.41416174009886, -23.825025467016275], + [-45.414161740021946, -23.82499646700104], + [-45.41416773998738, -23.824973466975482], + [-45.41416773995821, -23.824962466969648], + [-45.41417573994312, -23.82494346694181], + [-45.41419273992257, -23.824907466884966], + [-45.41421073996477, -23.82489346683739], + [-45.41423574004052, -23.82488046677494], + [-45.414260740110876, -23.824865466711344], + [-45.414274740127624, -23.824848466671106], + [-45.41428074004529, -23.82480746663604], + [-45.41426673990137, -23.824776466650853], + [-45.41425373979365, -23.82475746666981], + [-45.414226739603, -23.824730466715643], + [-45.41419573941066, -23.824709466773623], + [-45.414164739170594, -23.824670466822006], + [-45.41414173902415, -23.824653466864262], + [-45.41413173890836, -23.824626466872253], + [-45.41412573882095, -23.824603466873434], + [-45.414123238767544, -23.824587466870646], + [-45.41412073871407, -23.82457146686776], + [-45.41412073862921, -23.82453946685088], + [-45.414120738592075, -23.824525466843365], + [-45.414122738516014, -23.82449346682202], + [-45.41412273847094, -23.82447646681306], + [-45.414122738409944, -23.824453466800943], + [-45.41412673836654, -23.82443046677986], + [-45.4141387383505, -23.82440446673937], + [-45.414169738410266, -23.82437546665502], + [-45.41420073846734, -23.824345466570122], + [-45.41420073844082, -23.824335466564815], + [-45.41420073842226, -23.82432846656115], + [-45.41419273836052, -23.824318466573672], + [-45.41417973826342, -23.82430346659469], + [-45.41416773818133, -23.824292466615645], + [-45.414167738144215, -23.824278466608185], + [-45.41417573815565, -23.82426946658567], + [-45.41418173814227, -23.824254466564376], + [-45.4141857381202, -23.824239466547542], + [-45.41419673811293, -23.824218466511898], + [-45.414194738066996, -23.824204466509034], + [-45.41416973785335, -23.82416546654406], + [-45.4141583637555, -23.82414745855991], + [-45.41413373754352, -23.82410846659413], + [-45.414115737397886, -23.82408346662096], + [-45.41411573736343, -23.82407046661407], + [-45.41412173731822, -23.824043466586534], + [-45.41414873731263, -23.823996466501516], + [-45.41416285234681, -23.823985880464477], + [-45.414208737457784, -23.823951466344106], + [-45.414245237578896, -23.823936466254914], + [-45.41428173770002, -23.823921466165693], + [-45.41437873800821, -23.82387646592591], + [-45.4145327385174, -23.823812465549096], + [-45.41461773883377, -23.823790465348242], + [-45.41473173929652, -23.82377546508645], + [-45.4147957395574, -23.823767464939678], + [-45.41484873973272, -23.823745464810052], + [-45.41488873986928, -23.823730464713055], + [-45.41501074029566, -23.823688464419174], + [-45.41502674040596, -23.823703464391453], + [-45.41508774066422, -23.82369946425353], + [-45.41516074093561, -23.823680464080862], + [-45.41524974125897, -23.823654463868973], + [-45.41533074153651, -23.823624463672733], + [-45.415398741836285, -23.823624463521323], + [-45.41550474229281, -23.823620463283167], + [-45.415577742532456, -23.82358946310414], + [-45.415649742772935, -23.82356046292847], + [-45.41574374318724, -23.82356046271913], + [-45.41578374336357, -23.823560462630066], + [-45.41585674370393, -23.823567462471246], + [-45.41588474381675, -23.82356346240669], + [-45.41591374389418, -23.82354446233209], + [-45.41593774399207, -23.823541462277085], + [-45.416006744293476, -23.823540462122892], + [-45.41608774465047, -23.823540461942503], + [-45.41612824481976, -23.823536961850426], + [-45.41616874498899, -23.823533461758437], + [-45.41621724517759, -23.82352396164534], + [-45.41626574536619, -23.823514461532316], + [-45.416281745436706, -23.823514461496675], + [-45.4163507456613, -23.82348446132717], + [-45.416427745960895, -23.823469461147763], + [-45.416544746473974, -23.823468460886666], + [-45.41663874688827, -23.823468460677308], + [-45.416747747368746, -23.82346846043454], + [-45.41682074764014, -23.823449460261966], + [-45.41688174792756, -23.82345646012974], + [-45.41695874826692, -23.823456459958265], + [-45.417043748591205, -23.823437459758928], + [-45.417091748802754, -23.823437459652006], + [-45.41712874901619, -23.823456459579614], + [-45.4171777493781, -23.823511459499546], + [-45.41719774957508, -23.823552459476673], + [-45.41718174955494, -23.82357145952232], + [-45.417189749637885, -23.823589459514], + [-45.41722174981871, -23.82360445945065], + [-45.417282750137964, -23.82362345932486], + [-45.4173277503363, -23.823623459224645], + [-45.41734775041391, -23.823619459177994], + [-45.41736375044463, -23.82360445913435], + [-45.41740875062177, -23.823596459029957], + [-45.41746775088181, -23.823596458898567], + [-45.417513751084556, -23.82359645879609], + [-45.41754675124059, -23.823600458724663], + [-45.41757475139319, -23.82361145866814], + [-45.417647751784, -23.823637458519222], + [-45.417670251936215, -23.823657458479683], + [-45.41769275208843, -23.823677458440102], + [-45.41771675237189, -23.823744458422077], + [-45.4177297526361, -23.823822458434265], + [-45.41776175297608, -23.82389745840259], + [-45.417769753088294, -23.82392645840008], + [-45.41777075319349, -23.823964458417958], + [-45.41774175319298, -23.824012458507873], + [-45.4177547533404, -23.824046458496934], + [-45.41778275360978, -23.824101458463524], + [-45.41781575383481, -23.82413145840587], + [-45.41784775406603, -23.824165458352596], + [-45.41787675428138, -23.824198458305393], + [-45.417896754427964, -23.824220458272425], + [-45.41794175474566, -23.824265458195946], + [-45.417981754900694, -23.824257458102664], + [-45.41796175473554, -23.824228458131913], + [-45.41792875455041, -23.8242134581975], + [-45.41792875448941, -23.82419045818531], + [-45.41792475441336, -23.824168458182655], + [-45.417940754502524, -23.824175458150645], + [-45.417965754652464, -23.824190458102873], + [-45.41799375480505, -23.824201458046364], + [-45.41802175495765, -23.82421245798982], + [-45.41804875510851, -23.824224457936033], + [-45.41807875527256, -23.824236457875568], + [-45.418122755490394, -23.824245457782254], + [-45.41814175560329, -23.824256457745754], + [-45.418178755808846, -23.824272457671782], + [-45.41819775593237, -23.82428745763736], + [-45.41821975604521, -23.82429345759158], + [-45.41823475612467, -23.82429845756079], + [-45.41824875622873, -23.824314457538033], + [-45.41827075638146, -23.824335457500094], + [-45.41828175646445, -23.824348457482447], + [-45.41830575657017, -23.824348457428986], + [-45.41830275649861, -23.824326457424107], + [-45.418302756488, -23.824322457421996], + [-45.418310756494115, -23.824311457398263], + [-45.41831975650455, -23.824300457372484], + [-45.41832875652834, -23.824294457349286], + [-45.418337756570594, -23.824295457329786], + [-45.41834575660591, -23.82429545731196], + [-45.418380756744234, -23.82428945723077], + [-45.418372756634746, -23.824261457233813], + [-45.41838575667349, -23.82425445720119], + [-45.41839975671398, -23.824246457165845], + [-45.4184167567889, -23.824246457127973], + [-45.41847575704894, -23.824246456996537], + [-45.41852975729228, -23.824248456877307], + [-45.4185937575876, -23.824253456737353], + [-45.418674757963146, -23.82426045656056], + [-45.418736758241785, -23.824262456423497], + [-45.418866758830724, -23.824268456137137], + [-45.41891575905196, -23.82427045602903], + [-45.41897575934561, -23.824281455901197], + [-45.419023759589045, -23.824293455800614], + [-45.41907275981031, -23.82429545569252], + [-45.41913976010831, -23.82429645554379], + [-45.419208760415, -23.8242974553906], + [-45.41929476081266, -23.82430445520268], + [-45.41934476103299, -23.8243044550913], + [-45.41940376130108, -23.82430745496142], + [-45.419470761604295, -23.824310454813716], + [-45.419541761970294, -23.824330454666175], + [-45.41955976206554, -23.82433645462929], + [-45.419603762267435, -23.82433945453283], + [-45.41966276253809, -23.824343454403493], + [-45.41970776276823, -23.8243554543095], + [-45.419778763142205, -23.824378454163497], + [-45.41983076343504, -23.824402454060376], + [-45.41988176375802, -23.824439453966214], + [-45.419943764142786, -23.824481453850268], + [-45.41996976432894, -23.824508453806637], + [-45.419992764504634, -23.824536453770172], + [-45.420018764797014, -23.824603453747557], + [-45.42002576491802, -23.82463745374996], + [-45.4200327650523, -23.82467645375497], + [-45.420038765211444, -23.824726453767937], + [-45.420036765306115, -23.824765453793013], + [-45.42004426543071, -23.824799953794535], + [-45.420051765555286, -23.824834453796036], + [-45.420069765700944, -23.824859453769083], + [-45.4201077659401, -23.824886453698667], + [-45.420154766221515, -23.82491445360875], + [-45.42018976643145, -23.82493545354183], + [-45.42022476664946, -23.824959453476556], + [-45.42025076679848, -23.82497245342547], + [-45.42029176714104, -23.82503345336632], + [-45.42031676731759, -23.82505845332383], + [-45.420346767479, -23.825069453262824], + [-45.42037676760325, -23.82506645319434], + [-45.420400767690495, -23.825059453137197], + [-45.420424767775, -23.825051453079467], + [-45.42045076786838, -23.825043453017386], + [-45.420509768146985, -23.825050452889574], + [-45.420593768580936, -23.82507445271514], + [-45.420643768833195, -23.825086452610087], + [-45.42073276925995, -23.825099452418574], + [-45.42077076942739, -23.825099452333895], + [-45.42080576959498, -23.82510445225862], + [-45.42083076971572, -23.825108452205], + [-45.420890770004036, -23.825117452076114], + [-45.42091877015133, -23.825126452018512], + [-45.42094677029862, -23.825135451960815], + [-45.42100677061083, -23.82515345183662], + [-45.42104877083975, -23.82516995175177], + [-45.421090771068634, -23.82518645166685], + [-45.42114577133495, -23.825195451549106], + [-45.421170771460986, -23.825201451496607], + [-45.42120477166132, -23.825220451430845], + [-45.42126177200809, -23.825256451322815], + [-45.42130477227985, -23.825287451243433], + [-45.42132977240592, -23.825293451190838], + [-45.421358272559345, -23.825303951132863], + [-45.42138677271286, -23.82531445107488], + [-45.421435772992574, -23.825338450978396], + [-45.42148677327038, -23.825358450875278], + [-45.42154177361356, -23.825396450772825], + [-45.42159277393656, -23.825433450678652], + [-45.42164277426311, -23.825473450588373], + [-45.42171777474228, -23.825529450450812], + [-45.42175977500435, -23.825558450372544], + [-45.421821775386384, -23.82559945025603], + [-45.42190177591407, -23.825665450112634], + [-45.421919776033185, -23.825680450080352], + [-45.421971776387124, -23.82572744998925], + [-45.42202677672508, -23.82576344988573], + [-45.422135777534514, -23.82588744970821], + [-45.422192778029896, -23.8259794496298], + [-45.422205778142924, -23.82600044961185], + [-45.42222777834872, -23.82604144958449], + [-45.42222577839831, -23.826063449600497], + [-45.42221877848154, -23.82610644963881], + [-45.422207778507314, -23.826134449678072], + [-45.42219877860038, -23.82618444972454], + [-45.42221677887344, -23.82625744972295], + [-45.42222577905113, -23.82630944973027], + [-45.42222877914395, -23.8263394497394], + [-45.42222677935276, -23.826421449787148], + [-45.422241779615256, -23.82649544979275], + [-45.42219377961061, -23.8265734499409], + [-45.42218277968161, -23.826618449989148], + [-45.4221797797321, -23.826642450008443], + [-45.422164779726955, -23.826665450054026], + [-45.422144779726395, -23.82669845011598], + [-45.422124779760274, -23.826744450184794], + [-45.42212277983638, -23.82677645020612], + [-45.42212777992482, -23.82680145020819], + [-45.42215378017478, -23.82685245017711], + [-45.42215878026578, -23.826878450179702], + [-45.4221927805324, -23.826922450127135], + [-45.42222578078406, -23.826962450074717], + [-45.42225978106128, -23.827010450024236], + [-45.42226478121068, -23.827058450038397], + [-45.42230878162762, -23.827142449984677], + [-45.42234178188973, -23.82718644993434], + [-45.42237078212373, -23.82722644989082], + [-45.42237078225111, -23.82727444991611], + [-45.422375782366096, -23.82730944992348], + [-45.4223857827048, -23.827420449959778], + [-45.42237178273588, -23.827455450009417], + [-45.422366782784195, -23.827481950034503], + [-45.422361782832525, -23.827508450059586], + [-45.422338782871776, -23.827561450138845], + [-45.422266782671265, -23.827605450322494], + [-45.42218978241408, -23.827636450510415], + [-45.42210378215443, -23.827681450725816], + [-45.42205578200127, -23.827703450844435], + [-45.422007781858724, -23.827729450965048], + [-45.42195978174263, -23.82776545109104], + [-45.42195028174723, -23.827782951121467], + [-45.42194078175179, -23.827800451151802], + [-45.42191178168237, -23.82782245122808], + [-45.421864781629125, -23.82788045136342], + [-45.42184578174447, -23.827955451445305], + [-45.4218317820436, -23.82809145154823], + [-45.42183178232492, -23.828197451604197], + [-45.42180778241825, -23.828272451697227], + [-45.42177478237897, -23.82831245179181], + [-45.421703782307496, -23.828403451998092], + [-45.42168878242186, -23.828471452067337], + [-45.42165978246919, -23.82853745216681], + [-45.42166978270164, -23.828608452181992], + [-45.421722783062705, -23.82865645208918], + [-45.421742283172556, -23.828665452050508], + [-45.42176178328243, -23.828674452011747], + [-45.42183778368643, -23.828700451856108], + [-45.42186678390714, -23.82873545180989], + [-45.42190078413926, -23.828766451750475], + [-45.421934784289185, -23.828766451674703], + [-45.42193478421754, -23.82873945166052], + [-45.42191478401254, -23.828695451681902], + [-45.42190278392522, -23.82868245170177], + [-45.42189078383782, -23.82866945172164], + [-45.42191478387186, -23.82864245165389], + [-45.42196778410551, -23.828642451535785], + [-45.42201078437737, -23.828673451456293], + [-45.42205378463591, -23.82869945137419], + [-45.42209778490151, -23.828726451290386], + [-45.42216478532421, -23.828774451166367], + [-45.42224178576719, -23.828813451015378], + [-45.422318786141076, -23.828826450850617], + [-45.42239578646988, -23.828822450676924], + [-45.422433786671924, -23.828835450599023], + [-45.422519787051016, -23.828835450407325], + [-45.42261578747146, -23.828834450192875], + [-45.422692787845435, -23.828847450028128], + [-45.42275078814879, -23.828865449908402], + [-45.42278378831821, -23.828874449839564], + [-45.42281528842648, -23.828862949763316], + [-45.42284678853483, -23.82885144968698], + [-45.42287478855474, -23.82881244960398], + [-45.42289878849599, -23.828750449517912], + [-45.42292278853007, -23.828723449450088], + [-45.42295178859949, -23.828701449373902], + [-45.42298978876702, -23.828701449289188], + [-45.42303778895469, -23.828692449177456], + [-45.423095789138664, -23.828665449034002], + [-45.423119789209984, -23.828652448973646], + [-45.4230997889812, -23.828599448990257], + [-45.4230807888151, -23.828568449016252], + [-45.4230767736951, -23.828529905004885], + [-45.423075788665685, -23.828520449002017], + [-45.42307578853827, -23.828472448976733], + [-45.423085288532356, -23.828454448946097], + [-45.42309478852644, -23.82843644891544], + [-45.42313278863558, -23.82841444881921], + [-45.423214788983685, -23.828409448633753], + [-45.42327178923494, -23.828409448506708], + [-45.42329178931245, -23.828405448460057], + [-45.42331578941826, -23.828405448406567], + [-45.42333478958162, -23.828435448380024], + [-45.42335378972648, -23.828458448349842], + [-45.42337778982954, -23.828457448295843], + [-45.423411789979475, -23.82845744822006], + [-45.42343079006318, -23.828457448177726], + [-45.4234497901469, -23.82845744813536], + [-45.423464790284704, -23.828484448116082], + [-45.42349379049214, -23.828514448067274], + [-45.42354179079924, -23.82855044797933], + [-45.42361379130251, -23.828620447855766], + [-45.42367579170319, -23.828668447742864], + [-45.42371479199182, -23.828712447679138], + [-45.423743792236436, -23.82875644763767], + [-45.42378179255529, -23.82881344758307], + [-45.42382118593055, -23.82888942053529], + [-45.42382379295543, -23.828894447532114], + [-45.42381179308568, -23.828963447595257], + [-45.423753793066275, -23.829052447771424], + [-45.423715793002266, -23.829091447876735], + [-45.423686793004606, -23.829140447967177], + [-45.42370679319892, -23.8291804479437], + [-45.42371179331383, -23.829215447950975], + [-45.42369679337513, -23.82926344800968], + [-45.423677793421476, -23.829312448077946], + [-45.42362579324003, -23.829330448203315], + [-45.4235777930736, -23.829347448319258], + [-45.423538792973325, -23.829374448420438], + [-45.42351079292165, -23.82940144849709], + [-45.42351079300129, -23.82943144851291], + [-45.42353479316543, -23.829453448471046], + [-45.42353479323709, -23.829480448485207], + [-45.423522793271786, -23.829513448529323], + [-45.42351079330656, -23.829546448573545], + [-45.423525793454985, -23.829577448556453], + [-45.42355879370661, -23.829617448504006], + [-45.42358779386894, -23.829630448446235], + [-45.423597793995334, -23.829661448440262], + [-45.42360279417927, -23.829722448461276], + [-45.42361279427107, -23.829740448448447], + [-45.42361779437548, -23.82977144845364], + [-45.423617794492266, -23.829815448476843], + [-45.423602794519056, -23.829850448528692], + [-45.423636794737924, -23.829876448466724], + [-45.42367879497086, -23.829894448382486], + [-45.4236997951563, -23.82992944835417], + [-45.423728795332025, -23.829947448299084], + [-45.423761795522566, -23.829964448234406], + [-45.42380079569443, -23.829964448147468], + [-45.423857795945686, -23.829964448020423], + [-45.423886796073525, -23.82996444795578], + [-45.42391079618996, -23.829968447904452], + [-45.42394479638759, -23.829986447838127], + [-45.42397279654553, -23.82999944778258], + [-45.424001796673366, -23.82999944771794], + [-45.42401179661128, -23.82995944767453], + [-45.42402579659068, -23.829928447626997], + [-45.42403979655941, -23.829893447577295], + [-45.42406379657231, -23.82985844750537], + [-45.42409779661606, -23.829818447408584], + [-45.42412579670489, -23.829805447339204], + [-45.42414579679043, -23.829804447294116], + [-45.424164796874145, -23.82980444725175], + [-45.42417879687748, -23.829782447208974], + [-45.42417879681908, -23.82976044719734], + [-45.42415979669024, -23.829743447230836], + [-45.42412079642537, -23.829708447299268], + [-45.42409679622406, -23.82967244733382], + [-45.42409679610726, -23.829628447310615], + [-45.42411079608668, -23.82959744726301], + [-45.42414479608521, -23.829540447157243], + [-45.42417279612633, -23.829509447078408], + [-45.42419779618071, -23.82948844701165], + [-45.42418579605357, -23.829460447023635], + [-45.42417679597669, -23.829446447036307], + [-45.424157795869085, -23.82943744707388], + [-45.42413879574819, -23.829423447108844], + [-45.42412179564398, -23.829412447141], + [-45.42411179556811, -23.829400447156956], + [-45.42410879549376, -23.82937744715149], + [-45.42410679545311, -23.82936544714969], + [-45.424119795449336, -23.829342447108555], + [-45.42414479549321, -23.829317447039614], + [-45.42415429550321, -23.829305447012093], + [-45.424163795513216, -23.82929344698468], + [-45.424176795546636, -23.82928444695092], + [-45.4241887955783, -23.829276446919916], + [-45.424205795626705, -23.82926644687671], + [-45.42421879564948, -23.829253446840966], + [-45.42424679570921, -23.82922944676587], + [-45.424266795757575, -23.829214446713372], + [-45.4242817958077, -23.829208446676823], + [-45.424288795833206, -23.829206446660173], + [-45.4242957958588, -23.82920444664354], + [-45.424312795944424, -23.829208446607737], + [-45.4243487961296, -23.829218446532696], + [-45.42437379626362, -23.829227446481745], + [-45.42439079635985, -23.829235446448095], + [-45.42440979645419, -23.829239446407847], + [-45.42443579656881, -23.829239446349884], + [-45.42445879666749, -23.829238446298092], + [-45.42447579674251, -23.829238446260202], + [-45.42449479684216, -23.82924444622108], + [-45.42454392511043, -23.82926393912175], + [-45.42455553317374, -23.82926852809834], + [-45.4245565811795, -23.829268953096154], + [-45.424557797186175, -23.829269446093747], + [-45.424597797373124, -23.82927344600666], + [-45.4246267975275, -23.829283445947333], + [-45.42465179760587, -23.829271445885265], + [-45.424622797427524, -23.82925244593992], + [-45.424616797363925, -23.829238445945897], + [-45.4246057972757, -23.829223445962526], + [-45.42460579724916, -23.82921344595721], + [-45.424630797348655, -23.829209445899394], + [-45.42464979747229, -23.829224445864977], + [-45.42466479756487, -23.829234445836835], + [-45.424677797672615, -23.829253445817837], + [-45.42469679782014, -23.82927744578818], + [-45.42471379794019, -23.82929444575923], + [-45.42472579804884, -23.829315445743507], + [-45.42474079820787, -23.829350445728483], + [-45.42475979836857, -23.82937944570151], + [-45.42479179859189, -23.829410445646513], + [-45.42481679877378, -23.829437445604913], + [-45.424844798952975, -23.829458445553637], + [-45.42487379913114, -23.829477445498952], + [-45.42494779957686, -23.82952244535774], + [-45.42499079984871, -23.829553445278183], + [-45.42504080014339, -23.829581445181503], + [-45.4250858003736, -23.829593445087546], + [-45.425125800565866, -23.829599445001495], + [-45.42515580072199, -23.82960844493938], + [-45.4251558577294, -23.829611149940746], + [-45.42515680085115, -23.829655444962015], + [-45.42515680088034, -23.829666444967735], + [-45.42516580093059, -23.82967044494975], + [-45.42518337400815, -23.829670473910596], + [-45.42525183320037, -23.829629219736315], + [-45.425266551206086, -23.829606919691763], + [-45.42527080117312, -23.829587444672025], + [-45.42527380117041, -23.829581444662125], + [-45.425276801167655, -23.829575444652285], + [-45.425282801162304, -23.82956344463259], + [-45.42529580119565, -23.829554444598823], + [-45.42531680124578, -23.829538444543676], + [-45.425331801301255, -23.829534444508077], + [-45.42536080141846, -23.82953044444134], + [-45.42538380151989, -23.829530444390084], + [-45.42540780159109, -23.829517444329703], + [-45.4254408017207, -23.829511444252933], + [-45.4254348016172, -23.829482444250996], + [-45.425434801553465, -23.82945844423841], + [-45.425442801543646, -23.82944144421163], + [-45.42545780157782, -23.82942944417186], + [-45.4254708016352, -23.829429444142903], + [-45.42548280168812, -23.829429444116133], + [-45.425493801757774, -23.829437444095785], + [-45.4255128018761, -23.82945044406037], + [-45.42552780198999, -23.82946844403629], + [-45.42553580205441, -23.829479444024294], + [-45.42555680214172, -23.82947744397644], + [-45.42558180223325, -23.829470443917057], + [-45.42559880226578, -23.829454443870755], + [-45.42561380231588, -23.829448443834092], + [-45.42561580227424, -23.829429443819652], + [-45.42562680224044, -23.829398443778786], + [-45.42566180230706, -23.829365443683418], + [-45.42567680233077, -23.829349443641444], + [-45.425676802296266, -23.829336443634713], + [-45.425673802227216, -23.82931544363025], + [-45.42566780214241, -23.829293443632082], + [-45.42567380211838, -23.829274443608636], + [-45.42568280210232, -23.829253443577553], + [-45.42569280209864, -23.829235443545787], + [-45.42570380207005, -23.82920644350598], + [-45.42570580204434, -23.829193443494656], + [-45.42571380202124, -23.829171443465178], + [-45.425728802058146, -23.829160443426023], + [-45.42574980212944, -23.82915244337495], + [-45.425780802250216, -23.829146443302626], + [-45.42581680238229, -23.829136443217145], + [-45.42585080253751, -23.829138443142426], + [-45.42587380264947, -23.829142443093232], + [-45.425903802805564, -23.82915144303115], + [-45.42592880296359, -23.82916944298486], + [-45.42595780315245, -23.82919244293237], + [-45.42597480327782, -23.829211442904455], + [-45.42599380341198, -23.829230442872078], + [-45.4260048035242, -23.829254442860247], + [-45.42602780366013, -23.829267442815834], + [-45.42604680378103, -23.829281442780847], + [-45.426080803938824, -23.82928444270662], + [-45.42611280409052, -23.82928844263735], + [-45.42615480428087, -23.82929044254487], + [-45.42617580438943, -23.829296442501153], + [-45.426217804603745, -23.82930744241328], + [-45.42625180478013, -23.82931744234278], + [-45.42627480491607, -23.829330442298357], + [-45.426297805065175, -23.829348442256542], + [-45.426314805185235, -23.82936544222768], + [-45.42632980527257, -23.829373442198417], + [-45.42634680536085, -23.82937844216311], + [-45.426365805460485, -23.829384442123956], + [-45.42638680555832, -23.8293864420782], + [-45.42641580570738, -23.829394442017705], + [-45.426445805874124, -23.82940744195779], + [-45.426455805950084, -23.82941944194174], + [-45.426470806037436, -23.829427441912546], + [-45.426487806141544, -23.829438441880377], + [-45.42651780629501, -23.82944644181775], + [-45.42654080640705, -23.829450441768632], + [-45.42656180652346, -23.829459441726527], + [-45.42658480664079, -23.82946544167838], + [-45.426605806767846, -23.829478441638415], + [-45.426628806895785, -23.82948844159244], + [-45.42665680708028, -23.829511441542074], + [-45.426692807281384, -23.82952744147032], + [-45.42671580741731, -23.829540441425905], + [-45.42672880751177, -23.82955444140423], + [-45.42673880760095, -23.82957144139095], + [-45.42675580774755, -23.829598441367207], + [-45.42676680783332, -23.829612441350154], + [-45.42678580795145, -23.829625441314544], + [-45.42679980805309, -23.82964044129125], + [-45.42682380819066, -23.829652441244086], + [-45.42683580827542, -23.829664441223667], + [-45.42685480839897, -23.829679441189203], + [-45.42687380854376, -23.829702441158997], + [-45.42689980871414, -23.829723441112076], + [-45.426920808875785, -23.829749441078963], + [-45.426941809018736, -23.829768441042116], + [-45.42696080913696, -23.829781441006638], + [-45.42697180922804, -23.829797440990518], + [-45.42698880937457, -23.82982444096687], + [-45.42700280949205, -23.82984544094666], + [-45.42701780959541, -23.8298594409206], + [-45.42703480973129, -23.829882440894853], + [-45.42704980984263, -23.82989944087035], + [-45.42707280997583, -23.829911440825413], + [-45.42709981013467, -23.829926440773118], + [-45.42713181032613, -23.829945440711757], + [-45.42715981048675, -23.829959440656715], + [-45.4271888106597, -23.82997644060099], + [-45.42721681082826, -23.8299934405476], + [-45.427235810949135, -23.83000744051254], + [-45.42727281118397, -23.830034440444347], + [-45.42729681136667, -23.83006344040605], + [-45.42731481155229, -23.830103440386996], + [-45.42730481158785, -23.830133440425097], + [-45.427293811595106, -23.830154440460724], + [-45.42726681155585, -23.83018444053665], + [-45.427229811488324, -23.830220440638143], + [-45.42721981150264, -23.83024244067208], + [-45.42721481152046, -23.830257440691103], + [-45.42720581150465, -23.83026644071588], + [-45.42719781149068, -23.830274440737973], + [-45.42718881146427, -23.830279440760638], + [-45.42716981140444, -23.83028844080778], + [-45.427158811369225, -23.830293440834915], + [-45.42715981142406, -23.830312440842654], + [-45.427159811461244, -23.83032644085014], + [-45.42716281151959, -23.830343440852285], + [-45.42716681157171, -23.830356440850235], + [-45.42716881160979, -23.830367440851596], + [-45.42718181165914, -23.830364440821043], + [-45.427187811682884, -23.830363440807155], + [-45.427195811712885, -23.830361440788256], + [-45.42719981173581, -23.83036344078039], + [-45.42720581177285, -23.830367440769095], + [-45.42721281181171, -23.830370440755143], + [-45.42722081186027, -23.8303754407399], + [-45.427222811898304, -23.83038644074117], + [-45.427227811981375, -23.830409440742184], + [-45.42723281208569, -23.83044044074735], + [-45.42724481215985, -23.830448440724844], + [-45.42725781223576, -23.830455440699506], + [-45.427289812467066, -23.83048944064616], + [-45.4272988125705, -23.830513440638665], + [-45.427298812658115, -23.830546440656015], + [-45.427297812712126, -23.830568440669886], + [-45.427316812862244, -23.830593440640637], + [-45.42734581304317, -23.830613440586554], + [-45.42738081326908, -23.83064044052276], + [-45.427412813479165, -23.83066644046513], + [-45.427444813731796, -23.83070844041589], + [-45.42747981398164, -23.830744440356767], + [-45.42751581427047, -23.830793440302294], + [-45.4275588145556, -23.83082944022542], + [-45.42760881490341, -23.830877440139204], + [-45.427629815057, -23.830900440104532], + [-45.42765481520174, -23.830913440055642], + [-45.42767281530761, -23.83092344002073], + [-45.4276938154427, -23.830939439982327], + [-45.4276938155038, -23.830962439994476], + [-45.42769381561534, -23.831004440016606], + [-45.42772581582541, -23.831030439958955], + [-45.42776181602661, -23.83104643988709], + [-45.42777581614135, -23.831066439866387], + [-45.42779681623396, -23.83106643981957], + [-45.42782881640152, -23.83107643975351], + [-45.42785781650281, -23.831066439683557], + [-45.42788181660861, -23.831066439630042], + [-45.42789981671182, -23.831075439594688], + [-45.42791781683629, -23.831092439563488], + [-45.427942817004926, -23.831114439519276], + [-45.427963817123995, -23.831124439477748], + [-45.42799281725981, -23.831127439414654], + [-45.42800981736128, -23.83113743938203], + [-45.42802781748316, -23.831153439350334], + [-45.428038817611245, -23.831183439341583], + [-45.42806381775599, -23.831196439292693], + [-45.42808881791667, -23.831215439246925], + [-45.42812381810542, -23.83122843917575], + [-45.428141818184805, -23.831228439135604], + [-45.428141818166225, -23.831221439131877], + [-45.42813081805929, -23.83119943914487], + [-45.428120817988656, -23.83118943916186], + [-45.4280988178386, -23.83116943920043], + [-45.4280988178147, -23.83116043919574], + [-45.428116817894015, -23.831160439155617], + [-45.428137817986524, -23.831160439108782], + [-45.428144817972296, -23.831143439084133], + [-45.42814481791121, -23.831120439072084], + [-45.42814481787668, -23.831107439065235], + [-45.428173817991244, -23.831102438997874], + [-45.42818381809366, -23.831124438987196], + [-45.4281838181521, -23.831146438998736], + [-45.42820181829248, -23.831169438970743], + [-45.428230818481474, -23.831192438918233], + [-45.428262818672955, -23.831211438856858], + [-45.42831181895, -23.83123443875965], + [-45.42833681910268, -23.831250438712416], + [-45.42835481922716, -23.831267438681113], + [-45.428368819339326, -23.831286438659976], + [-45.42839781952026, -23.83130643860581], + [-45.42841181955543, -23.83129643856939], + [-45.428436819665635, -23.83129643851364], + [-45.428454819760866, -23.831302438476616], + [-45.428468819891634, -23.831328438459124], + [-45.428489820010704, -23.831338438417593], + [-45.42851882014649, -23.8313414383545], + [-45.428553820300834, -23.831341438276436], + [-45.428592820480624, -23.831344438191028], + [-45.42863182066053, -23.831347438105634], + [-45.42867782090838, -23.831364438012088], + [-45.42872782114477, -23.831370437903697], + [-45.428773821363436, -23.83137643780425], + [-45.42880582153898, -23.83138943773975], + [-45.42881682162999, -23.83140543772364], + [-45.42883482177038, -23.831428437695646], + [-45.42884882191176, -23.831458437680233], + [-45.42886982205475, -23.831477437643372], + [-45.42889482219948, -23.831490437594468], + [-45.42892482240076, -23.83151643754119], + [-45.428949822582666, -23.831543437499775], + [-45.42896182267533, -23.83155843748081], + [-45.42897682278668, -23.831575437456387], + [-45.42899182288458, -23.83158743742927], + [-45.42900182295789, -23.831598437412694], + [-45.42901682304791, -23.831607437384008], + [-45.42902682310794, -23.83161343736492], + [-45.42903682316524, -23.831618437345213], + [-45.429042823205016, -23.831623437334464], + [-45.42905082324298, -23.831624437317107], + [-45.42908182337153, -23.831621437246458], + [-45.42907382327258, -23.831597437251617], + [-45.42906782322759, -23.83159043726136], + [-45.42906282319497, -23.831586437270406], + [-45.42905082312081, -23.831578437292944], + [-45.429044823083686, -23.831574437304216], + [-45.429049823100456, -23.831572437292042], + [-45.42905882312946, -23.831568437269805], + [-45.42906982316468, -23.831563437242647], + [-45.42907482318668, -23.83156343723151], + [-45.42907882320696, -23.83156443722309], + [-45.42908982325546, -23.831564437198576], + [-45.42909582328462, -23.831565437185713], + [-45.429105823315346, -23.83156043716074], + [-45.42911482333911, -23.831554437137534], + [-45.42914382340052, -23.831529437059753], + [-45.42916982354701, -23.83154143700813], + [-45.42917682359376, -23.83154743699562], + [-45.42918482364501, -23.831553436980926], + [-45.429191823691745, -23.831559436968426], + [-45.42920182375708, -23.831567436950387], + [-45.42921082380468, -23.83157043693195], + [-45.429225823892125, -23.831578436902664], + [-45.42925382404998, -23.831591436847088], + [-45.42927082415154, -23.831601436814374], + [-45.42927982420178, -23.831605436796487], + [-45.429296824308565, -23.83161743676492], + [-45.42931282441369, -23.83163043673599], + [-45.42932782449298, -23.831635436705223], + [-45.429335824541575, -23.83164043669], + [-45.42934582459099, -23.831642436668727], + [-45.42935782465717, -23.831647436644673], + [-45.42937582474179, -23.831649436605563], + [-45.429382824775274, -23.831650436590458], + [-45.42938982480615, -23.831650436574847], + [-45.42939082479198, -23.83164343656891], + [-45.42939082475745, -23.831630436562037], + [-45.42939082473087, -23.831620436556836], + [-45.42938282467964, -23.831614436571567], + [-45.42937382461338, -23.83160443658635], + [-45.429363824550784, -23.831597436604902], + [-45.429363824521566, -23.83158643659918], + [-45.429363824495006, -23.8315764365939], + [-45.4293758245426, -23.831574436566076], + [-45.42938682458578, -23.831572436540508], + [-45.42940082466077, -23.8315774365119], + [-45.42941182471981, -23.831581436489444], + [-45.42942382479133, -23.8315884364664], + [-45.429435824884045, -23.83160343644745], + [-45.42945282502006, -23.83162643642169], + [-45.429469825140124, -23.831643436392724], + [-45.42949582531317, -23.83166543634638], + [-45.42951482544743, -23.831684436313974], + [-45.429533825578865, -23.83170243628116], + [-45.42954882567695, -23.83171443625394], + [-45.429562825759895, -23.831722436226983], + [-45.429574825833974, -23.831730436204378], + [-45.42958982591601, -23.83173643617414], + [-45.42960282597342, -23.83173643614515], + [-45.42961382602712, -23.831738436121665], + [-45.42962282606676, -23.831738436101574], + [-45.42965382617956, -23.83172943602767], + [-45.42967282619688, -23.83170443597217], + [-45.429682826211746, -23.831693435944093], + [-45.429689826229286, -23.83168843592578], + [-45.429702826281286, -23.83168643589576], + [-45.42971482633155, -23.831685435868465], + [-45.429726826395054, -23.83168943584379], + [-45.42973982645503, -23.831690435815403], + [-45.429750826511395, -23.83169343579244], + [-45.42976482658914, -23.83169943576443], + [-45.42977782666496, -23.831706435739083], + [-45.42979082674616, -23.831715435714766], + [-45.42980482683176, -23.831724435688326], + [-45.42982282694297, -23.831736435654516], + [-45.429844827066525, -23.83174643561073], + [-45.429870827218224, -23.831760435560046], + [-45.429892827357754, -23.831776435519483], + [-45.42991382748213, -23.831788435478984], + [-45.42993682765527, -23.831815435441833], + [-45.4299478277436, -23.831830435425186], + [-45.4299598278204, -23.8318394354032], + [-45.42997682791658, -23.831847435369454], + [-45.43000282804712, -23.83185343531467], + [-45.43002182816005, -23.831864435278128], + [-45.43005182834006, -23.83188243522067], + [-45.43009082859434, -23.831913435149996], + [-45.430121828789375, -23.83193543509238], + [-45.430143828931556, -23.83195243505235], + [-45.43016582907628, -23.831970435012725], + [-45.430190829242285, -23.831991434968092], + [-45.4302058293561, -23.83200943494401], + [-45.43022282948956, -23.832031434917727], + [-45.43025482971291, -23.83206243486265], + [-45.43028682993627, -23.832093434807582], + [-45.43031383011108, -23.8321144347585], + [-45.43035083033263, -23.83213643468751], + [-45.43038483053291, -23.832155434621733], + [-45.430398830615886, -23.832163434594662], + [-45.43040383065116, -23.832168434586126], + [-45.43040983070147, -23.832177434577503], + [-45.430421830778286, -23.83218643455544], + [-45.43043683087635, -23.8321984345284], + [-45.43044983096016, -23.83220843450461], + [-45.43046483105549, -23.832219434476947], + [-45.4304798311508, -23.83223043444923], + [-45.43049983127611, -23.83224443441209], + [-45.43051783138473, -23.832255434377657], + [-45.430535831490616, -23.83226543434282], + [-45.43054983158153, -23.83227643431741], + [-45.43056683167502, -23.832283434283127], + [-45.43058683178184, -23.832290434242246], + [-45.43060183186655, -23.83229743421244], + [-45.43063083201295, -23.832304434151393], + [-45.43065783215048, -23.83231143409489], + [-45.430687832311996, -23.8323224340338], + [-45.43072583252193, -23.83233843395747], + [-45.430770832784, -23.832362433869775], + [-45.430795832942025, -23.832380433823456], + [-45.43082583313802, -23.832404433769213], + [-45.430853833351726, -23.832438433724654], + [-45.43088183353359, -23.83246043367372], + [-45.43091783376925, -23.832489433608767], + [-45.43093383386377, -23.83249843357777], + [-45.43094983395544, -23.832506433546254], + [-45.43096083402254, -23.832513433525463], + [-45.430982834124855, -23.832515433477422], + [-45.431002834223584, -23.832519433434893], + [-45.43102483432327, -23.832520433386335], + [-45.431036834376066, -23.832520433359566], + [-45.4310488344343, -23.83252243333384], + [-45.431062834514606, -23.832529433306355], + [-45.43108183464347, -23.83254643327291], + [-45.43110283479718, -23.832569433238202], + [-45.43112683498258, -23.832599433200457], + [-45.431143835097444, -23.832614433170438], + [-45.431172835289, -23.83263843311832], + [-45.43121183554317, -23.83266943304773], + [-45.43124983579039, -23.83269943297875], + [-45.4312728359343, -23.832715432935874], + [-45.43130983616375, -23.832740432866522], + [-45.43132483624581, -23.832746432836174], + [-45.43133783631108, -23.832749432808757], + [-45.43135183638608, -23.832754432780124], + [-45.43136383644428, -23.83275643275451], + [-45.43137383649893, -23.832760432734265], + [-45.43140383665248, -23.83276843267153], + [-45.43142683676443, -23.832772432622374], + [-45.43144983687645, -23.832776432573166], + [-45.43147683702203, -23.83278643251821], + [-45.431503837172855, -23.83279843246424], + [-45.43152183727882, -23.832808432429395], + [-45.43156083749845, -23.83282643235193], + [-45.431586837647615, -23.8328394323007], + [-45.431618837823166, -23.83285243223617], + [-45.43163883792731, -23.83285843219477], + [-45.431662838051615, -23.832865432144885], + [-45.43169883822893, -23.832872432068314], + [-45.43172083834718, -23.83288043202341], + [-45.4317438384618, -23.832885431974685], + [-45.43176783857822, -23.83288943192324], + [-45.43178183864516, -23.83289143189314], + [-45.43179483870246, -23.832891431864137], + [-45.43180583875096, -23.832891431839613], + [-45.431818838802954, -23.832889431809466], + [-45.431840838881364, -23.83288243175676], + [-45.43185883895272, -23.832879431715075], + [-45.431874839012586, -23.83287543167728], + [-45.43189383909099, -23.832873431633857], + [-45.431912839164085, -23.8328694315894], + [-45.431942839285675, -23.832865431520315], + [-45.431966839391485, -23.83286543146679], + [-45.43199283951406, -23.83286843141035], + [-45.43203483973372, -23.8328814313235], + [-45.43205383983868, -23.832889431285277], + [-45.4320768399719, -23.832901431240398], + [-45.432082840014324, -23.832907431230154], + [-45.43209584011679, -23.832924431210074], + [-45.43210384020789, -23.83294543120335], + [-45.4321158403351, -23.832973431191224], + [-45.432126840415464, -23.832985431173007], + [-45.43214584056028, -23.833008431142765], + [-45.43217484075983, -23.83303543109229], + [-45.43218984086843, -23.833051431067236], + [-45.4322138409902, -23.833057431016815], + [-45.4322268410661, -23.833064430991566], + [-45.43224284116052, -23.833073430960642], + [-45.43225684125676, -23.83308643093616], + [-45.43227484137327, -23.83310043090338], + [-45.43229384151278, -23.833121430872104], + [-45.43230784159849, -23.83313043084555], + [-45.432328841733515, -23.8331464308071], + [-45.43235284188448, -23.833163430762603], + [-45.43237384201418, -23.833177430723037], + [-45.43239384214216, -23.8331924306863], + [-45.43240684225792, -23.833214430668928], + [-45.4324328424602, -23.833247430628266], + [-45.432451842612984, -23.833273430599597], + [-45.4324678427128, -23.833284430569716], + [-45.43250384295113, -23.83331443050517], + [-45.43253384314978, -23.83333943045134], + [-45.43256184334758, -23.83336743040373], + [-45.4325888435463, -23.833397430359167], + [-45.43261784374044, -23.833422430307667], + [-45.43264484391001, -23.833441430257395], + [-45.43267384408831, -23.833460430202734], + [-45.43269184419421, -23.833470430167814], + [-45.43270484426735, -23.833476430142017], + [-45.432725844354636, -23.833474430094043], + [-45.43273684440316, -23.833474430069522], + [-45.43274684443653, -23.833470430045104], + [-45.432759844475314, -23.83346343001248], + [-45.43276784449194, -23.833456429990974], + [-45.432772844500654, -23.833451429977135], + [-45.43277684447576, -23.833435429959813], + [-45.43278184447926, -23.83342842994492], + [-45.43279184450467, -23.83342142991899], + [-45.43279984452138, -23.833414429897484], + [-45.43280984456549, -23.83341442987519], + [-45.43282284462545, -23.833415429846724], + [-45.432832844669434, -23.83341542982441], + [-45.43284584472685, -23.833415429795394], + [-45.43285684476995, -23.833413429769806], + [-45.43286984482192, -23.83341142973977], + [-45.43289884493912, -23.833407429672903], + [-45.43291684497328, -23.83339042962385], + [-45.432929844985395, -23.83337342958591], + [-45.43292784495002, -23.833363429585074], + [-45.432926844911094, -23.833350429580456], + [-45.432920844834115, -23.833331429583875], + [-45.43292084481287, -23.83332342957969], + [-45.43292784479592, -23.83330542955456], + [-45.43294284480093, -23.83328242950905], + [-45.43295384479887, -23.833263429474453], + [-45.43295784477139, -23.8332464294566], + [-45.43294184464508, -23.833225429481192], + [-45.43293384456995, -23.833210429491256], + [-45.43291184434274, -23.83316142951447], + [-45.43291584414522, -23.833080429463], + [-45.432914844000024, -23.833027429437305], + [-45.43290984390088, -23.832998429433214], + [-45.432878843689856, -23.83297042948761], + [-45.43285184348063, -23.832936429529997], + [-45.432830843337534, -23.832917429566866], + [-45.432841843295705, -23.832883429524394], + [-45.43285184326276, -23.83285442948682], + [-45.43283084314625, -23.832845429528895], + [-45.432809842987325, -23.83282042956265], + [-45.43279384285302, -23.832796429585677], + [-45.4327568425624, -23.83274842964301], + [-45.43273084236014, -23.83271542968366], + [-45.43271484219928, -23.83268142970142], + [-45.43268884203429, -23.83266242974943], + [-45.43265984182404, -23.83263142979781], + [-45.43261484151678, -23.832590429876593], + [-45.432614841375994, -23.832537429848777], + [-45.43258884114722, -23.83249442988415], + [-45.432551840893794, -23.83246042994874], + [-45.43253084064718, -23.832402429965082], + [-45.43249384036985, -23.83235943002496], + [-45.43247284013653, -23.83230643004399], + [-45.43246183988348, -23.832229430027947], + [-45.43243583957758, -23.832157430048124], + [-45.43240683932227, -23.8321094300875], + [-45.4323728391087, -23.832085430150773], + [-45.432335838868546, -23.83205643021795], + [-45.43234083886673, -23.83204743020212], + [-45.43231983867054, -23.832008430228417], + [-45.432293838468254, -23.83197543026907], + [-45.432277838333974, -23.831951430292182], + [-45.43225183814235, -23.831922430334835], + [-45.43222483788264, -23.83186943036722], + [-45.43221383769333, -23.83181643036385], + [-45.43218783743792, -23.83176343039392], + [-45.432145837074835, -23.831696430452364], + [-45.43211383676648, -23.83163343049064], + [-45.4320878365642, -23.831600430531218], + [-45.432082836451876, -23.831566430524486], + [-45.432076836361645, -23.831542430525325], + [-45.43207683627132, -23.831508430507373], + [-45.432055836101775, -23.83147943053893], + [-45.43202983592341, -23.831455430584352], + [-45.432029835849036, -23.83142743056952], + [-45.432039835802804, -23.831393430529356], + [-45.432018835633265, -23.831364430561027], + [-45.43199783545037, -23.831330430589933], + [-45.431965835234955, -23.831302430646534], + [-45.431923834959555, -23.831268430722268], + [-45.43188783473717, -23.831244430789997], + [-45.43184583443784, -23.831201430861036], + [-45.431813834129485, -23.83113843089928], + [-45.43178183386089, -23.83109043094542], + [-45.431771833702655, -23.831047430945095], + [-45.43179383364815, -23.83099043086602], + [-45.43180683364437, -23.830967430824874], + [-45.43183183364299, -23.830925430747], + [-45.43185683365759, -23.830889430672347], + [-45.431886833593225, -23.830815430566506], + [-45.43192683362078, -23.830759430447806], + [-45.43197183367299, -23.83070443031847], + [-45.43201183373764, -23.83066243020722], + [-45.43205683381386, -23.830616430082596], + [-45.432095833815644, -23.830552429961962], + [-45.43213583379541, -23.83047842983373], + [-45.43219083390222, -23.830427429684264], + [-45.43224583399853, -23.83037242953273], + [-45.4323258341651, -23.830302429317435], + [-45.43238083428531, -23.830256429170486], + [-45.43244083441435, -23.83020542900988], + [-45.43249083448855, -23.830150428869402], + [-45.4325658346464, -23.830085428667953], + [-45.43261583473388, -23.83003542853016], + [-45.43270583501892, -23.829993428307315], + [-45.43275583516494, -23.829965428181072], + [-45.43279583528012, -23.8299424280797], + [-45.432850835349875, -23.829877427922877], + [-45.43297583570409, -23.82980342760507], + [-45.43303583584628, -23.829757427447053], + [-45.4330808359702, -23.829729427331948], + [-45.43317083623133, -23.829678427104415], + [-45.43324583642633, -23.829627426910342], + [-45.43334083669892, -23.829572426669476], + [-45.43338883686001, -23.829553426552376], + [-45.43345083704811, -23.829521426397292], + [-45.43352083724512, -23.82947942621905], + [-45.433570837417584, -23.829461426098085], + [-45.43362583758552, -23.829433425960648], + [-45.433691837791386, -23.82940142579663], + [-45.43373683790201, -23.829368425678922], + [-45.43377083796689, -23.829336425586273], + [-45.43382083806499, -23.829290425450573], + [-45.43387083818699, -23.82925342531952], + [-45.43392583834172, -23.829220425179432], + [-45.43399183857139, -23.829197425020183], + [-45.43406183880556, -23.829169424849297], + [-45.43413183901565, -23.829132424673766], + [-45.434186839196926, -23.829109424538938], + [-45.434246839376314, -23.829077424388302], + [-45.434301839520394, -23.829040424246116], + [-45.43435183966629, -23.829012424119853], + [-45.43439183978149, -23.8289894240186], + [-45.43442183990038, -23.82898442394897], + [-45.43446684005085, -23.828966423839162], + [-45.43451184019874, -23.828947423728835], + [-45.434546840329006, -23.828938423645997], + [-45.43456684041711, -23.82893842360137], + [-45.4346318406159, -23.828905423439057], + [-45.43469184077136, -23.82886442328366], + [-45.43474184091726, -23.828836423157384], + [-45.43480684111604, -23.828803422995087], + [-45.43487684132613, -23.828766422819438], + [-45.4349218414766, -23.82874842270962], + [-45.434956841630765, -23.828748422631527], + [-45.435007841818354, -23.8287344225104], + [-45.43506184199521, -23.828711422377932], + [-45.435122842200215, -23.82868742222919], + [-45.43517284238339, -23.82867342211029], + [-45.43523284257603, -23.828646421962258], + [-45.435307842818816, -23.828613421777625], + [-45.43537284302017, -23.82858142161583], + [-45.435427843225334, -23.828567421485783], + [-45.43547284338643, -23.828553421378057], + [-45.435527843604866, -23.82854442125058], + [-45.43557784377466, -23.82852542112909], + [-45.43562284391183, -23.82850242101666], + [-45.43564784396089, -23.828479420948785], + [-45.43568784406279, -23.828451420844793], + [-45.4357378442432, -23.828436420725396], + [-45.435792844451015, -23.828423420595847], + [-45.4358378445749, -23.82839542048075], + [-45.43588284473598, -23.828381420373017], + [-45.43591784480514, -23.82834942027813], + [-45.43596284494242, -23.828326420165688], + [-45.43601784511027, -23.828298420028275], + [-45.43607884533121, -23.828280419882695], + [-45.43616884561625, -23.828238419659918], + [-45.43624884585713, -23.82819641945935], + [-45.436323846113176, -23.828168419277322], + [-45.43639884638251, -23.828145419097883], + [-45.4365038467708, -23.828117418848944], + [-45.43655384694324, -23.828099418727955], + [-45.43661884722694, -23.82809841858245], + [-45.43666884739946, -23.828080418461454], + [-45.436718847569324, -23.828061418339875], + [-45.43674884759249, -23.82802041825139], + [-45.43679884771454, -23.82798341812044], + [-45.43684884792151, -23.8279784180062], + [-45.43696984839356, -23.827955417724247], + [-45.43704484869743, -23.82794541755167], + [-45.43712984897356, -23.82790841734263], + [-45.43720984926495, -23.827885417152032], + [-45.43727984948563, -23.827852416978565], + [-45.437344849734856, -23.82783841682619], + [-45.43736984978385, -23.827815416758295], + [-45.437414849944986, -23.827801416650544], + [-45.43755485040243, -23.827741416306782], + [-45.43762485063635, -23.827713416135904], + [-45.43769585090134, -23.827695415967995], + [-45.437760851150564, -23.827681415815615], + [-45.43782585137578, -23.827658415658593], + [-45.43790085166901, -23.8276444154838], + [-45.43797085190303, -23.827616415313006], + [-45.438030852140805, -23.82760641517387], + [-45.43809085240513, -23.827606415040012], + [-45.43813585259018, -23.827601414937025], + [-45.43821785287166, -23.827571414738326], + [-45.438260852936246, -23.827524414617628], + [-45.438300852969036, -23.827470414500066], + [-45.43831685296245, -23.827441414449147], + [-45.43838185320096, -23.82742341429469], + [-45.438419853341834, -23.827413414204642], + [-45.43846385353036, -23.827411414105423], + [-45.43852185375136, -23.82739841396918], + [-45.43858685396594, -23.827371413809992], + [-45.43863685414111, -23.827354413689534], + [-45.438696854333585, -23.827327413541447], + [-45.43880185465807, -23.827275413279843], + [-45.438855854826826, -23.827249413145783], + [-45.43894885516486, -23.827222412924073], + [-45.43901285543082, -23.827216412778103], + [-45.43906085562375, -23.827209412667365], + [-45.4391178558482, -23.82719941253502], + [-45.43918385612573, -23.827194412385076], + [-45.43923185632654, -23.827190412275918], + [-45.439290856565194, -23.827182412140033], + [-45.439414857095564, -23.82717641186025], + [-45.43947285734574, -23.82717441172983], + [-45.439537857608144, -23.827165411580047], + [-45.43964185806098, -23.827163411346987], + [-45.43967785821429, -23.827161411265624], + [-45.43974285847669, -23.82715241111584], + [-45.43979685872257, -23.827155410996912], + [-45.439870859059205, -23.82715941083399], + [-45.43992885928814, -23.82714941069929], + [-45.43998785951349, -23.82713641056082], + [-45.44003385969753, -23.82712941045455], + [-45.440067859807414, -23.827114410370815], + [-45.44010385993681, -23.827103410284593], + [-45.440146860102345, -23.82709441018397], + [-45.44021486036738, -23.827081410025407], + [-45.440258860561215, -23.827081409927256], + [-45.44033286085788, -23.82707040975642], + [-45.440399861113214, -23.82705540959898], + [-45.44046386133941, -23.827034409445186], + [-45.4405158615259, -23.82701840932077], + [-45.44061686192035, -23.826999409085467], + [-45.440674862159916, -23.82699340895292], + [-45.44078986266652, -23.826993408696353], + [-45.440883863085965, -23.826995408487626], + [-45.440967863474526, -23.827002408303855], + [-45.44104486381634, -23.82700340813255], + [-45.44115086435234, -23.82702940790971], + [-45.44119686460281, -23.827047407816504], + [-45.44131886519606, -23.827068407555274], + [-45.44138986553807, -23.827079407402653], + [-45.44146786595347, -23.8271064072428], + [-45.44151386621455, -23.827128407151744], + [-45.4415788665407, -23.827143407014493], + [-45.44162086677347, -23.827161406930287], + [-45.44166286700631, -23.827179406845993], + [-45.441706867306415, -23.827219406768855], + [-45.4417468676288, -23.827274406708437], + [-45.44177486790363, -23.827331406675974], + [-45.44179486814592, -23.82738940666171], + [-45.441799868396444, -23.827475406695694], + [-45.441807868524734, -23.82751040669628], + [-45.44182986872258, -23.827548406667095], + [-45.441851868925845, -23.82758840663905], + [-45.441881869137696, -23.827618406587845], + [-45.441889869273886, -23.82765640658999], + [-45.44189586937742, -23.82768540659174], + [-45.441903869495, -23.827716406590238], + [-45.44193186971137, -23.827751406546092], + [-45.44196586998344, -23.82779740649435], + [-45.44197387007976, -23.827820406488627], + [-45.44198587026019, -23.827868406487017], + [-45.44199787042992, -23.827912406483367], + [-45.44201587062885, -23.827957406466812], + [-45.44203587086841, -23.82801440645212], + [-45.4420518710558, -23.82805840643951], + [-45.44208087134832, -23.828120406407425], + [-45.442100871494944, -23.828142406374287], + [-45.44210487169857, -23.828212406402148], + [-45.44210487178096, -23.8282434064184], + [-45.44213087193272, -23.828257406367726], + [-45.442140872051134, -23.828285406360134], + [-45.442128872059456, -23.82830840639893], + [-45.442130872126725, -23.828330406406074], + [-45.442140872229196, -23.828352406395258], + [-45.44214487232662, -23.828382406402074], + [-45.44215687244052, -23.8284054063874], + [-45.44215087249651, -23.828436406417072], + [-45.44219287287288, -23.82850840636116], + [-45.442185872972225, -23.82855740640248], + [-45.44212787290808, -23.828629406569714], + [-45.44212787298516, -23.82865840658493], + [-45.44214787316898, -23.82869440655925], + [-45.442143873215166, -23.82871840658072], + [-45.44211987319712, -23.828751406651694], + [-45.4421208732839, -23.82878240666573], + [-45.44213487342797, -23.828813406650735], + [-45.44216687369118, -23.828859406603474], + [-45.44217687382297, -23.828892406598438], + [-45.44217687390004, -23.828921406613674], + [-45.44214487394512, -23.82899140672186], + [-45.44210987397959, -23.82906240683726], + [-45.442093874084506, -23.829128406907582], + [-45.4420898742822, -23.82920940695907], + [-45.44208387445506, -23.829284407011837], + [-45.442084874637516, -23.829351407044737], + [-45.44209687488707, -23.829425407056892], + [-45.4421128750931, -23.829476407047906], + [-45.44214687535459, -23.82951840699408], + [-45.4421528754421, -23.8295414069928], + [-45.44210687525009, -23.82954540709755], + [-45.44208287521876, -23.82957340716582], + [-45.44208787530464, -23.82959740716719], + [-45.44210187547794, -23.829639407158016], + [-45.44211187558306, -23.829662407147836], + [-45.44209187555346, -23.829684407203963], + [-45.442101875666644, -23.829710407195307], + [-45.44210787578872, -23.82974640720086], + [-45.44211987599842, -23.82980540720497], + [-45.44211187605617, -23.829840407241253], + [-45.442163876434115, -23.829896407154617], + [-45.44216987652963, -23.8299224071549], + [-45.44215387655217, -23.82995740720894], + [-45.442142876586075, -23.829988407249775], + [-45.44214287667912, -23.830023407268115], + [-45.442154876790475, -23.830045407252914], + [-45.44216487687708, -23.830061407238993], + [-45.442168876953154, -23.83008340724167], + [-45.44216287698522, -23.83010540726656], + [-45.44216287702774, -23.83012140727495], + [-45.44219687728117, -23.830160407219566], + [-45.442252877581055, -23.830180407105065], + [-45.44229687781742, -23.83019640701533], + [-45.4423108779482, -23.830222406997667], + [-45.442306877997055, -23.830247407019762], + [-45.442306878074135, -23.83027640703498], + [-45.44232087821546, -23.83030640701948], + [-45.44235087840885, -23.830329406964623], + [-45.44238887858153, -23.830331406880866], + [-45.442418878679135, -23.830318406807063], + [-45.44243387868142, -23.830294406760967], + [-45.442479878825594, -23.8302724066467], + [-45.44246787871432, -23.83025040666199], + [-45.44240187827467, -23.830194406779867], + [-45.44234387788358, -23.830143406882478], + [-45.44231987769011, -23.83011040691884], + [-45.4423078775071, -23.830061406919846], + [-45.4423258774827, -23.830022406859158], + [-45.44236987763667, -23.8300074067531], + [-45.4424308779293, -23.83001640662171], + [-45.442472878143576, -23.830027406533773], + [-45.442494878229816, -23.830023406482496], + [-45.44251687825501, -23.8299964064193], + [-45.442508878113514, -23.829956406416134], + [-45.44250687800104, -23.82991740640009], + [-45.44251287799023, -23.829903406379344], + [-45.44254987802569, -23.829855406271616], + [-45.44258987812475, -23.8298264061671], + [-45.44261787820823, -23.829811406096738], + [-45.44266387839495, -23.829805405990857], + [-45.442728878681336, -23.8298054058458], + [-45.442786878926114, -23.82980140571427], + [-45.44285287920627, -23.82979740556489], + [-45.44292687950835, -23.829788405395053], + [-45.44300187982278, -23.82978240522447], + [-45.44304988003962, -23.829784405118456], + [-45.443091880272505, -23.82980240503405], + [-45.44312588047541, -23.8298224049687], + [-45.44318988082112, -23.82984640483842], + [-45.44326088110468, -23.829835404674245], + [-45.44328488130602, -23.829871404639512], + [-45.44327488134976, -23.82990440467922], + [-45.4432888814699, -23.82992640465949], + [-45.44333088179051, -23.82997740459248], + [-45.44336888204024, -23.830008404523916], + [-45.44339488219999, -23.830025404474874], + [-45.4434228823898, -23.83005040442543], + [-45.4434408824877, -23.830057404388985], + [-45.443544882940515, -23.830055404155804], + [-45.44359088314322, -23.830055404053155], + [-45.44363188335842, -23.83006840396846], + [-45.44366988352578, -23.83006840388364], + [-45.443719883823185, -23.83009740378719], + [-45.44372388389924, -23.83011940378983], + [-45.443705883912926, -23.83015440384844], + [-45.44368888395502, -23.830198403909478], + [-45.44368888401614, -23.830221403921485], + [-45.443692884108174, -23.830249403927283], + [-45.44372288436005, -23.830294403883926], + [-45.44375488465783, -23.830353403843432], + [-45.44377488479374, -23.830371403808325], + [-45.44382688503341, -23.83037540369434], + [-45.44385488515951, -23.830376403632357], + [-45.443919885416584, -23.830365403481466], + [-45.4439658856192, -23.83036540337878], + [-45.443991885773634, -23.83038040332863], + [-45.44403388605961, -23.830418403254843], + [-45.44406588629368, -23.830453403201744], + [-45.44408988644197, -23.830469403156574], + [-45.444107886545176, -23.83047840312107], + [-45.44413588666852, -23.830478403058546], + [-45.44418688686924, -23.83046940294005], + [-45.444214887016514, -23.83047840288223], + [-45.44424488721513, -23.830503402828402], + [-45.4442608873548, -23.830529402806356], + [-45.44428888764289, -23.830591402776353], + [-45.4442988877295, -23.830607402762418], + [-45.44437688827779, -23.830684402628698], + [-45.4443868884282, -23.830724402627382], + [-45.44440588874582, -23.83081240263115], + [-45.444433888999434, -23.83086140259442], + [-45.44445188915846, -23.830891402569968], + [-45.44448188940228, -23.83093340252506], + [-45.44450188959677, -23.830973402501336], + [-45.44450388973584, -23.83102240252264], + [-45.444505889962635, -23.831104402561145], + [-45.44451389018402, -23.83117440258003], + [-45.44454189046691, -23.831234402549015], + [-45.44458089079019, -23.831291402491864], + [-45.44462389107266, -23.831326402414312], + [-45.44466589141192, -23.831384402350977], + [-45.44473589186919, -23.831440402224015], + [-45.44482389244295, -23.831510402064303], + [-45.44489189287814, -23.831561401939318], + [-45.444947893225795, -23.8315994018342], + [-45.44497789344569, -23.831632401784596], + [-45.4450298938237, -23.831688401697818], + [-45.44507589413533, -23.831729401616634], + [-45.44509389427054, -23.831750401587527], + [-45.445121894532065, -23.831802401552235], + [-45.44514589473885, -23.83184040151863], + [-45.44518589501081, -23.831876401448195], + [-45.44521389522192, -23.831909401403063], + [-45.44525389562672, -23.831995401358874], + [-45.44528389591842, -23.832055401323284], + [-45.445311896129496, -23.832088401278156], + [-45.44534189632556, -23.832112401223814], + [-45.44537589648596, -23.83211640114996], + [-45.44539589657137, -23.832115401104804], + [-45.445431896817745, -23.832148401041724], + [-45.44548389721696, -23.832212400959175], + [-45.44556789773328, -23.832267400800482], + [-45.445601898042554, -23.832327400756053], + [-45.4456298982776, -23.832369400715596], + [-45.44566989852298, -23.83239540063992], + [-45.44572089879015, -23.832411400534454], + [-45.44577489913442, -23.832451400434902], + [-45.44583289953884, -23.83250740033471], + [-45.44589089996187, -23.83257040023834], + [-45.445942900339816, -23.832626400151618], + [-45.44596890056606, -23.832668400115587], + [-45.44599890078065, -23.83269940006487], + [-45.446038901026036, -23.832725399989126], + [-45.4460809012536, -23.83274139990383], + [-45.44615290161337, -23.832757399751465], + [-45.446228902046514, -23.832794399601127], + [-45.44626990231757, -23.83282839952748], + [-45.44629390248716, -23.83285239948642], + [-45.446341902858144, -23.83291239941071], + [-45.44637590314087, -23.832962399361083], + [-45.446425903515404, -23.833020399279732], + [-45.44647190381111, -23.83305539919547], + [-45.44653390417997, -23.83309139907584], + [-45.44659990458237, -23.833133398950523], + [-45.446661905015034, -23.833193398843633], + [-45.446757905690646, -23.833288398679066], + [-45.446811906018965, -23.833322398576357], + [-45.446770905537825, -23.83320939860862], + [-45.44680890589674, -23.83328139856155], + [-45.44683990622212, -23.833352398529485], + [-45.446911906523354, -23.833346398365613], + [-45.446934906584715, -23.83333139830638], + [-45.44696290666022, -23.833313398234427], + [-45.44698290662064, -23.83326539816456], + [-45.44698890652212, -23.833218398126537], + [-45.44699890644389, -23.833172398080087], + [-45.44697990620855, -23.83311539809261], + [-45.44696590608179, -23.833090898111045], + [-45.446951905954876, -23.833066398129468], + [-45.44693390574796, -23.833018398144425], + [-45.446937905723, -23.833002398127103], + [-45.44697990588943, -23.832995398029688], + [-45.447019906009814, -23.832974397929313], + [-45.44703190596963, -23.83293939788421], + [-45.44701290573172, -23.832881397896195], + [-45.44698690543633, -23.832813397918553], + [-45.446958905153416, -23.83275339794966], + [-45.446908904704394, -23.832667398016255], + [-45.44687490441371, -23.832614398064354], + [-45.44684090412834, -23.832563398113482], + [-45.446844904087435, -23.832541398093053], + [-45.446862904126824, -23.832526398044998], + [-45.44692390425999, -23.832475397882032], + [-45.446975904273614, -23.83239439772348], + [-45.446989904157135, -23.832327397657046], + [-45.446998904045245, -23.83227039760704], + [-45.4470349041506, -23.83225039751619], + [-45.44706090423058, -23.83223739745133], + [-45.44708090419102, -23.832189397381523], + [-45.447080904066034, -23.83214239735681], + [-45.44707890395885, -23.832105397341927], + [-45.44709390394248, -23.832074397292168], + [-45.44711390397738, -23.832054397236973], + [-45.447113903908225, -23.83202839722341], + [-45.447095903751865, -23.831999397248392], + [-45.447085903678605, -23.83198839726492], + [-45.447093903649986, -23.831964397234454], + [-45.44713190379879, -23.83195739714598], + [-45.44718190400306, -23.831951397031233], + [-45.447202904055644, -23.83193639697639], + [-45.44721890403578, -23.831902396922846], + [-45.44722490394785, -23.831859396886898], + [-45.44724090395715, -23.831836396839172], + [-45.44726690407171, -23.831836396781117], + [-45.44730490423914, -23.831836396696268], + [-45.44733790438715, -23.831837396623108], + [-45.44735990444146, -23.8318213965656], + [-45.44736790439697, -23.831791396532005], + [-45.44736790430655, -23.83175739651412], + [-45.447361904216244, -23.83173339651499], + [-45.44733190397775, -23.831693396560976], + [-45.447325903876894, -23.831665396559664], + [-45.447357903876906, -23.831612396460404], + [-45.447404903937674, -23.831557396326634], + [-45.44743890394657, -23.83150439622295], + [-45.44750390407597, -23.831445396046888], + [-45.44753390409111, -23.83140139595683], + [-45.44755390403833, -23.831348395884344], + [-45.44755590400724, -23.831333395872026], + [-45.44757990400654, -23.831293395797527], + [-45.447632904157594, -23.831262395662865], + [-45.44773090453878, -23.831243395434097], + [-45.44777190464761, -23.83121639532839], + [-45.44779990467256, -23.831179395246426], + [-45.44785990479583, -23.831126395084738], + [-45.44790490490628, -23.831093394966967], + [-45.44792290492184, -23.831069394914152], + [-45.44793090486404, -23.83103439487798], + [-45.447930904768306, -23.830998394859066], + [-45.44794890474912, -23.83096139479953], + [-45.44799490491722, -23.830948394689973], + [-45.448039905046315, -23.830922394575854], + [-45.44809790513691, -23.830860394413854], + [-45.44814090508702, -23.83077039427058], + [-45.4481629049738, -23.83069139418008], + [-45.44817690477753, -23.83059439409795], + [-45.44818390458506, -23.830510394038335], + [-45.44820790462158, -23.830484393971094], + [-45.44824790477919, -23.830477393878052], + [-45.448251904727734, -23.830451393855572], + [-45.4482419045187, -23.830389393845316], + [-45.44824390446377, -23.83036539382832], + [-45.44819490412823, -23.83032039391415], + [-45.44816790390301, -23.830280393953434], + [-45.44813490343063, -23.83015739396265], + [-45.44812890314622, -23.830060393925166], + [-45.44811290288697, -23.82998939392365], + [-45.4480869026714, -23.829951393961817], + [-45.4480659022519, -23.829828393944183], + [-45.448057902017176, -23.829753393922722], + [-45.44800790167734, -23.829708394010776], + [-45.44797590132635, -23.829629394040804], + [-45.44794190114731, -23.829618394110927], + [-45.44793190100758, -23.829582394114432], + [-45.44791190083967, -23.829552394143292], + [-45.44792790084899, -23.829529394095534], + [-45.44792190072423, -23.829492394089595], + [-45.44785190005694, -23.82935739417502], + [-45.44778189938434, -23.829220394259394], + [-45.44776089916427, -23.829172394281134], + [-45.44778889913339, -23.829114394188313], + [-45.4477708989158, -23.829062394201177], + [-45.44772889858199, -23.829006394265583], + [-45.4476868982029, -23.828933394321055], + [-45.44765889792803, -23.828876394353674], + [-45.44763089773291, -23.828849394401995], + [-45.447585897415074, -23.828804394478883], + [-45.44762289754608, -23.82879239438998], + [-45.447628897474196, -23.828755394357213], + [-45.44760689728685, -23.828721394388435], + [-45.44756489696097, -23.828668394454475], + [-45.44749889653472, -23.8286173945751], + [-45.44745089621956, -23.828578394661793], + [-45.44740489589199, -23.828531394739848], + [-45.44737289561019, -23.82847839478346], + [-45.4473168951455, -23.828396394865432], + [-45.44728089488064, -23.8283563949248], + [-45.44725889461367, -23.82829239494039], + [-45.44724289441549, -23.828244394950964], + [-45.447253894339, -23.828197394901764], + [-45.447271894319904, -23.82816039484214], + [-45.44726989422869, -23.828129394830356], + [-45.44724789402552, -23.82808939485847], + [-45.447237893901686, -23.828059394865058], + [-45.447241893842175, -23.828030394840933], + [-45.447296893954196, -23.827981394692483], + [-45.44739889416948, -23.82789339441861], + [-45.44740351217992, -23.8278896534064], + [-45.447403855180745, -23.8278894264054], + [-45.44770995098921, -23.827686406615687], + [-45.44789089546711, -23.82756639314876], + [-45.447946895586085, -23.82751839299859], + [-45.44811789607338, -23.8274183925644], + [-45.44831689666804, -23.827312392064584], + [-45.448393896868886, -23.82726039186541], + [-45.4485048972222, -23.827209391590902], + [-45.44859889751385, -23.827163391356923], + [-45.448664897716846, -23.827130391192334], + [-45.44875589802454, -23.82709539097075], + [-45.44890089848235, -23.827027390611438], + [-45.44902389884588, -23.826960390301696], + [-45.449166899265634, -23.826881389941068], + [-45.449298899652874, -23.82680838960802], + [-45.449449900110466, -23.826730389230036], + [-45.449586900549015, -23.826668388891697], + [-45.44974190108003, -23.826611388515786], + [-45.44997090182267, -23.826511387952092], + [-45.45012790229873, -23.826430387559157], + [-45.45028290277122, -23.82635138717166], + [-45.450431903275906, -23.826294386809103], + [-45.450544903656564, -23.82625038653384], + [-45.45065890402556, -23.826200386253063], + [-45.45076790435404, -23.826143385979826], + [-45.4508869047079, -23.82607938568064], + [-45.45098090497823, -23.826025385442435], + [-45.45112390546173, -23.825970385094298], + [-45.451302906058515, -23.825898384656917], + [-45.45144790652686, -23.82583438429968], + [-45.451592906934046, -23.825747383930338], + [-45.45180590759283, -23.82564238339976], + [-45.451960908070575, -23.825565383013288], + [-45.4521279086491, -23.825506382609486], + [-45.4522289090007, -23.825471382365677], + [-45.45238790960785, -23.825436381992265], + [-45.45249190999125, -23.825408381745447], + [-45.45256291022147, -23.825377381570707], + [-45.45265691056097, -23.82534938134614], + [-45.452841911208075, -23.82528638090007], + [-45.45296891164491, -23.82524038059233], + [-45.45312791213496, -23.825161380195965], + [-45.453264912575975, -23.82510037985802], + [-45.45337091289652, -23.825045379592595], + [-45.45344791314247, -23.825010379402265], + [-45.45349391324659, -23.824973379280234], + [-45.45351591325045, -23.824938379212707], + [-45.45354491331166, -23.824913379134927], + [-45.45358491347984, -23.824910379044056], + [-45.453616913594026, -23.824900378967335], + [-45.45367691373066, -23.824852378808153], + [-45.45377191400797, -23.824799378568333], + [-45.45384191426035, -23.824778378401053], + [-45.45390291447573, -23.824758378254323], + [-45.453968914678626, -23.824725378089678], + [-45.45410991511856, -23.82465737773926], + [-45.45421591543378, -23.824600377472628], + [-45.45431691578531, -23.8245653772288], + [-45.45439991610026, -23.82454637703353], + [-45.45452391650789, -23.824494376729454], + [-45.454638916860084, -23.824436376442193], + [-45.45477591726114, -23.824360376096482], + [-45.454891917625616, -23.824305375808652], + [-45.45500291802129, -23.824270375542476], + [-45.455123918460906, -23.824235375253874], + [-45.45520991873053, -23.824194375040435], + [-45.45532691907004, -23.824128374744586], + [-45.45544791942732, -23.824062374439762], + [-45.4555319197173, -23.824032374236584], + [-45.45575392042615, -23.823931373687923], + [-45.45591892094779, -23.823854373279083], + [-45.45603692129974, -23.823791372982615], + [-45.45616992165134, -23.823703372639528], + [-45.45628892199429, -23.823635372338178], + [-45.456425922445916, -23.82357837200246], + [-45.456596922900815, -23.823466371561935], + [-45.45675792335972, -23.82337237115321], + [-45.45692892386777, -23.823280370723108], + [-45.457035924205826, -23.82323037045791], + [-45.457153924642846, -23.823199370178287], + [-45.45726292504829, -23.823171369920185], + [-45.457391925477886, -23.823119369604825], + [-45.45752792593029, -23.823064369272302], + [-45.457670926360365, -23.822989368913714], + [-45.4578279268361, -23.82290836852072], + [-45.45796092721413, -23.822830368182895], + [-45.45805792745758, -23.822761367930138], + [-45.45816192779313, -23.822715367673805], + [-45.458298928276506, -23.82267036734429], + [-45.458501928906834, -23.822571366839096], + [-45.45871392954488, -23.8224603663075], + [-45.458793929766685, -23.82241136610321], + [-45.45889893004801, -23.82234336583311], + [-45.45901193041245, -23.822293365554614], + [-45.45916093084225, -23.822208365177353], + [-45.45928493125773, -23.822159364874807], + [-45.45944793176774, -23.822081364469877], + [-45.459544932083034, -23.822039364231316], + [-45.45971993270971, -23.821985363812093], + [-45.45988893330205, -23.82192836340489], + [-45.45995093353504, -23.821913363258574], + [-45.46006593390559, -23.82186236297498], + [-45.46023093439246, -23.821772362559397], + [-45.46039993491552, -23.82168936213846], + [-45.460614935649104, -23.821609361616442], + [-45.46082793638717, -23.821534361101495], + [-45.46106593717934, -23.821438360519625], + [-45.46117593754651, -23.82139436025092], + [-45.46129693792214, -23.8213353599498], + [-45.46138193814997, -23.821280359731144], + [-45.46153093855042, -23.821184359348177], + [-45.46163493883259, -23.82111835908131], + [-45.4617659391884, -23.82103535874537], + [-45.46188693957998, -23.820982358447335], + [-45.46209594028975, -23.820903357939127], + [-45.462286940917586, -23.820823357470704], + [-45.46245994148747, -23.820751357046618], + [-45.462530941728055, -23.82072435687387], + [-45.462656942149636, -23.820674356566325], + [-45.4628369427211, -23.82059135612082], + [-45.46297294316802, -23.82053435578721], + [-45.46306394346473, -23.820495355563594], + [-45.463143943699734, -23.820451355361897], + [-45.463238943971575, -23.820396355120913], + [-45.46333194425324, -23.820348354887994], + [-45.463493944785206, -23.82028035449063], + [-45.46363094526051, -23.82023235415943], + [-45.46381794588124, -23.82015635370199], + [-45.46392494628036, -23.820129353448948], + [-45.46399494652458, -23.82010535327998], + [-45.464065946757174, -23.820075353105704], + [-45.46411994687781, -23.82003135296207], + [-45.46416994702872, -23.82000535283676], + [-45.46422094721588, -23.819991352715526], + [-45.46426094732809, -23.819967352613567], + [-45.464312947471754, -23.819935352480712], + [-45.46434994757343, -23.819912352386083], + [-45.46440194778094, -23.8199043522657], + [-45.46444394794983, -23.81989835216866], + [-45.464532948253684, -23.81986535195272], + [-45.46464694861441, -23.819812351670326], + [-45.464789949081435, -23.819751351318978], + [-45.46494094958896, -23.819692350950742], + [-45.46509395009205, -23.81962835057552], + [-45.465200950464435, -23.81959135031719], + [-45.46531495088099, -23.819559350045736], + [-45.465385951153536, -23.819544349879354], + [-45.465455951477544, -23.81955034972606], + [-45.46554395181424, -23.819531349519547], + [-45.46563295212607, -23.81950134930505], + [-45.46574495251786, -23.819463349034937], + [-45.465813952736305, -23.819431348864097], + [-45.46590595308259, -23.81940934864702], + [-45.466010953510114, -23.819396348405615], + [-45.466124953982515, -23.819385348145246], + [-45.46630795476111, -23.81937534773113], + [-45.466450955369076, -23.8193673474075], + [-45.46658295594994, -23.819367347112557], + [-45.46668395634382, -23.81934834687694], + [-45.46674795658551, -23.819333346726108], + [-45.46679995681434, -23.81933334660991], + [-45.46684895702992, -23.819333346500436], + [-45.466900957293255, -23.81934634639106], + [-45.466952957540734, -23.819353346278486], + [-45.467012957804755, -23.81935334614442], + [-45.46712595827008, -23.81934134588578], + [-45.46718595852078, -23.81933634574904], + [-45.4672259586968, -23.81933634565966], + [-45.46727395896119, -23.819356345562824], + [-45.4673529593327, -23.819365345391038], + [-45.467402959550114, -23.81936434527878], + [-45.46742895964058, -23.819355345215985], + [-45.46747095984929, -23.819364345126864], + [-45.46751996006492, -23.819364345017377], + [-45.46758596035537, -23.819364344869904], + [-45.46766396071717, -23.819371344699316], + [-45.46782696154878, -23.81941434435757], + [-45.4679589622573, -23.819462344087654], + [-45.46810596300788, -23.819501343779585], + [-45.468313964130594, -23.8195793433555], + [-45.4683939645943, -23.819621343198666], + [-45.468446964899364, -23.819648343094244], + [-45.46849096516746, -23.819676343010634], + [-45.46852604040746, -23.819708544949073], + [-45.468764684741735, -23.819815364471523], + [-45.468961017839426, -23.819903246078656], + [-45.469015968146664, -23.819927841968692], + [-45.46905596837458, -23.819947341889495], + [-45.46910396872148, -23.81999834180889], + [-45.469131969014946, -23.82006234177967], + [-45.46915396925283, -23.82011534175823], + [-45.469189969570834, -23.820175341709067], + [-45.469276970190464, -23.820264341561096], + [-45.469315970441826, -23.820294341489596], + [-45.46934097064243, -23.820328341451454], + [-45.46934097069297, -23.820347341461336], + [-45.46931297056968, -23.820347341523934], + [-45.46922097016489, -23.82034734172951], + [-45.469193970101955, -23.820368341800865], + [-45.46920397031629, -23.820432341811888], + [-45.469196970376025, -23.820466341845332], + [-45.469186970411805, -23.82049634188334], + [-45.46917197042298, -23.82052534193191], + [-45.469159970439335, -23.82055134197232], + [-45.46915497047058, -23.82057134199398], + [-45.46915497050784, -23.820585342001305], + [-45.469192970704285, -23.820596341922045], + [-45.46920297080418, -23.8206173419107], + [-45.469184970802154, -23.820646341966082], + [-45.46921797111764, -23.82071034192572], + [-45.46920997114368, -23.82073334195561], + [-45.469197971138776, -23.82075134199181], + [-45.469187971187885, -23.820786342032473], + [-45.46908897097043, -23.820868342296478], + [-45.46910397125465, -23.820950342305796], + [-45.46907697119179, -23.82097134237705], + [-45.46906697120355, -23.820992342410428], + [-45.46907197129746, -23.821019342413255], + [-45.469029971221744, -23.821060342528543], + [-45.46902797137793, -23.82112234256545], + [-45.4689959713702, -23.821172342663008], + [-45.46901797152815, -23.8211953426258], + [-45.469049971626454, -23.82117934254596], + [-45.46905297166891, -23.821190342545005], + [-45.46906297179269, -23.82122034253831], + [-45.469072971860676, -23.82122934252069], + [-45.4691129720846, -23.82124734244068], + [-45.46909797211173, -23.821282342492527], + [-45.46906797199837, -23.821289342563183], + [-45.46905797200756, -23.82130934259592], + [-45.469067972118104, -23.821334342586646], + [-45.46909097219531, -23.82132534253061], + [-45.46913597250243, -23.821366342451384], + [-45.46912297248787, -23.82138234248877], + [-45.46909297239847, -23.82139834256417], + [-45.469103972513324, -23.82142334255263], + [-45.4691229726156, -23.8214303425138], + [-45.469125972700645, -23.821457342521306], + [-45.469120972734544, -23.82147834254338], + [-45.46907697266334, -23.82152434266574], + [-45.469076972844306, -23.82159234270126], + [-45.469086973101135, -23.821672342720607], + [-45.469116973270395, -23.821686342660865], + [-45.46911497347982, -23.82176834270809], + [-45.46909697348579, -23.82180034276509], + [-45.46914197374502, -23.821823342676552], + [-45.46913697380809, -23.82185534270433], + [-45.469122973831745, -23.8218873427524], + [-45.46913497398029, -23.821923342744324], + [-45.46914297411929, -23.821962342746833], + [-45.46914297417519, -23.821983342757754], + [-45.4691579742891, -23.822001342733696], + [-45.46917297429389, -23.821978342688137], + [-45.469184974365334, -23.821985342664913], + [-45.469184974426554, -23.82200834267696], + [-45.46918297448962, -23.82203534269553], + [-45.46914797450586, -23.822099342807146], + [-45.469142974422674, -23.822076342806355], + [-45.46911797424611, -23.822051342849168], + [-45.46909597413871, -23.822047342896255], + [-45.469093974342805, -23.82212734294244], + [-45.469085974392726, -23.822159342977084], + [-45.46909897455906, -23.822200342969378], + [-45.46912897471503, -23.822209342907055], + [-45.46915397487297, -23.822227342860558], + [-45.46915397501932, -23.822282342889267], + [-45.46915897521162, -23.822346342911466], + [-45.469188975452745, -23.822387342865852], + [-45.46920697563581, -23.822426342846004], + [-45.469198975709666, -23.822467342885293], + [-45.46920897589211, -23.822519342890033], + [-45.46923497619006, -23.82258834286798], + [-45.4692569764386, -23.82264534284846], + [-45.46926197662293, -23.82270634286919], + [-45.46926197676932, -23.822761342897895], + [-45.46925997677382, -23.82276634290496], + [-45.469259976877616, -23.82280534292535], + [-45.46927497706339, -23.822850342915313], + [-45.46930797725648, -23.82286834285092], + [-45.46935697751465, -23.82288434274973], + [-45.46940197777921, -23.822909342662243], + [-45.469453978032014, -23.822918342550743], + [-45.46948697814794, -23.822907342471225], + [-45.469550978482864, -23.822927342338573], + [-45.469595978680864, -23.822927342238007], + [-45.46964297888767, -23.82292734213294], + [-45.4696729789638, -23.822906342054974], + [-45.46966297882404, -23.822870342058483], + [-45.46963797863417, -23.822840342098708], + [-45.469620978487505, -23.82281334212261], + [-45.46963497853049, -23.82280634208771], + [-45.469659978640415, -23.822806342031846], + [-45.46967997867793, -23.82278734197725], + [-45.469673978620875, -23.82277584198459], + [-45.4696679785639, -23.822764341992], + [-45.46968297857134, -23.82274234194705], + [-45.469706978676975, -23.822742341893395], + [-45.46975497893609, -23.822760341795508], + [-45.46980897921624, -23.82277634168315], + [-45.469883979647484, -23.822814341535278], + [-45.46994898001331, -23.82284434140564], + [-45.46998098023129, -23.82287334134934], + [-45.470008980444995, -23.82290734130447], + [-45.47003398057367, -23.822914341252208], + [-45.47007098069384, -23.822898341161157], + [-45.47010098080722, -23.822891341090404], + [-45.47012598095451, -23.822905341041906], + [-45.47015798113791, -23.822921340978723], + [-45.47018498130996, -23.82294134092879], + [-45.47021298148907, -23.82296234087713], + [-45.470277981846905, -23.822989340745938], + [-45.47032698212913, -23.823014340649472], + [-45.47040698257695, -23.823050340489395], + [-45.47044898278573, -23.82305934040023], + [-45.47051398321021, -23.823111340282114], + [-45.470578983605314, -23.823152340158146], + [-45.470658984047894, -23.82318633999702], + [-45.47074098448853, -23.823216339829468], + [-45.47079098476714, -23.82323833972913], + [-45.470834985021966, -23.823261339642805], + [-45.47092498543664, -23.82326833944523], + [-45.470981985692674, -23.823270339318857], + [-45.47103698595876, -23.823279339200624], + [-45.47108698618406, -23.823281339089892], + [-45.47113098633509, -23.823265338983205], + [-45.471195986669, -23.82328333884734], + [-45.47122798677783, -23.823271338769448], + [-45.47128798704196, -23.82327133863533], + [-45.471359987372, -23.82327633847705], + [-45.4714249877113, -23.823296338342153], + [-45.47146398788293, -23.823296338254963], + [-45.47149198798751, -23.823289338188754], + [-45.47151398806031, -23.823280338134847], + [-45.47147398767135, -23.823200338182588], + [-45.47154098793425, -23.823188338026515], + [-45.47155598792838, -23.823161337978892], + [-45.471545987823134, -23.823138337989207], + [-45.47154343378736, -23.823129097990137], + [-45.471535987718, -23.8231153379996], + [-45.471557987772144, -23.823099337942086], + [-45.47162998815552, -23.823124337794226], + [-45.47167903237455, -23.823125534685133], + [-45.47171198852169, -23.823126337611942], + [-45.47177198879625, -23.823130337479878], + [-45.471792769877005, -23.8231262724313], + [-45.47186898917529, -23.823112337253676], + [-45.471948989575175, -23.82313033708419], + [-45.471948989489974, -23.823098337067528], + [-45.471920989300216, -23.82307333711703], + [-45.47192228129793, -23.823070365112596], + [-45.47193098928303, -23.823050337082652], + [-45.47212198999303, -23.82300133663015], + [-45.47221399046437, -23.823026336437536], + [-45.472232990571904, -23.823035336399773], + [-45.47225199067952, -23.823044336361946], + [-45.47228199087273, -23.823067336306828], + [-45.472320991110834, -23.823092336232683], + [-45.4723589913526, -23.823120336162454], + [-45.4723689914206, -23.823129336144728], + [-45.472373991477156, -23.82314233614026], + [-45.47237099151457, -23.823161336156936], + [-45.47236599152188, -23.82317233617386], + [-45.47235699150088, -23.82317933619762], + [-45.472351991521414, -23.8231953362171], + [-45.472346991518066, -23.823202336231986], + [-45.47234399153417, -23.82321333624447], + [-45.47234899158809, -23.82322533623946], + [-45.47236199169323, -23.823243336219868], + [-45.472378991802614, -23.823256336188635], + [-45.47238399185661, -23.823268336183645], + [-45.472391991934366, -23.823284336174208], + [-45.47240899209442, -23.82331633615275], + [-45.472426992202884, -23.82332733611838], + [-45.472431992262116, -23.823341336114403], + [-45.47244399236817, -23.82336133609808], + [-45.472443992418754, -23.82338033610795], + [-45.472443992453364, -23.82339333611473], + [-45.47243399245194, -23.82340933614542], + [-45.472419992446234, -23.82343033618764], + [-45.47240499241749, -23.82344433622849], + [-45.47238999237545, -23.82345333626676], + [-45.472362992299225, -23.82346933633544], + [-45.47236299232851, -23.82348033634121], + [-45.472362992389726, -23.823503336353248], + [-45.47236999245784, -23.82351733634481], + [-45.472389992612364, -23.823542336313164], + [-45.47239999268568, -23.823553336296563], + [-45.47240499273959, -23.823565336291562], + [-45.47241299280413, -23.823576336279544], + [-45.47242299289065, -23.823592336265413], + [-45.47243499294349, -23.8235923362386], + [-45.472452993036065, -23.823597336201036], + [-45.47246499312338, -23.823610336180984], + [-45.47247299319591, -23.82362433617038], + [-45.47249199331675, -23.823638336135236], + [-45.47256199377386, -23.82369433600785], + [-45.47257999391427, -23.823717335979637], + [-45.47259199403364, -23.823742335965893], + [-45.47258999409941, -23.82377033598489], + [-45.47258699414744, -23.823793336003625], + [-45.47258799418645, -23.823806336008186], + [-45.47258799422371, -23.82382033601548], + [-45.47259149425101, -23.823824836010036], + [-45.47259499427842, -23.823829336004557], + [-45.47259799431558, -23.82383833600251], + [-45.47260999440033, -23.823850335981923], + [-45.47260999442963, -23.823861335987697], + [-45.4726124944593, -23.823868335985807], + [-45.47262971964849, -23.823910969969496], + [-45.472629475668, -23.823918674974], + [-45.472629357677334, -23.823922373976224], + [-45.47262599494459, -23.82402833603896], + [-45.47263299500472, -23.824039336029074], + [-45.47264299511523, -23.824064336019774], + [-45.472662995269836, -23.82408933598814], + [-45.47267599541225, -23.824121335975736], + [-45.472692995534956, -23.824139335947102], + [-45.472710995694015, -23.82416933592251], + [-45.47274799600327, -23.82422433586848], + [-45.47276599616765, -23.824256335844908], + [-45.472775996278166, -23.824281335835604], + [-45.4727829963516, -23.824297335828298], + [-45.47278099639606, -23.82431733584315], + [-45.47278099644663, -23.82433633585312], + [-45.47277599649112, -23.824361335877274], + [-45.47277599654437, -23.824381335887782], + [-45.47277599661093, -23.82440633590073], + [-45.472782496658176, -23.824413335889915], + [-45.47278899670552, -23.82442033587897], + [-45.47279899678673, -23.824434335863927], + [-45.472818996917304, -23.824450335827535], + [-45.47284599707073, -23.824463335773967], + [-45.47287599725871, -23.824484335717802], + [-45.47289599740785, -23.82450733568512], + [-45.47291099753251, -23.824529335663108], + [-45.47292599767838, -23.824559335645116], + [-45.47293299777038, -23.824582335641484], + [-45.472945997931404, -23.824621335632802], + [-45.472945998021935, -23.824655335650483], + [-45.47295399809976, -23.82467133564095], + [-45.47295599816181, -23.824691335646964], + [-45.47296899832286, -23.824730335638172], + [-45.47296899842668, -23.824769335658527], + [-45.4729689986024, -23.824835335692985], + [-45.472976998698776, -23.82485833568703], + [-45.47297699879731, -23.824895335706294], + [-45.47299699905309, -23.82495833569449], + [-45.47301699926356, -23.82500433567374], + [-45.473036999503364, -23.82506133565874], + [-45.47306199982631, -23.825141335644524], + [-45.47307199992625, -23.82516233563317], + [-45.47309200003021, -23.825168335591545], + [-45.47311700015354, -23.825173335538324], + [-45.47313700026549, -23.82518233549822], + [-45.47315400042016, -23.82521233547585], + [-45.473164000522765, -23.82523433546502], + [-45.473177000635886, -23.82525533544687], + [-45.47319400075327, -23.82527133541719], + [-45.47321400090259, -23.82529433538448], + [-45.47324400107453, -23.825309335325237], + [-45.47328400128776, -23.82532333524309], + [-45.47330900147767, -23.825353335202827], + [-45.4733340016303, -23.82536933515527], + [-45.47337600188169, -23.82539433507443], + [-45.47340900208013, -23.825414335011025], + [-45.47343100224878, -23.825441334975924], + [-45.47347100248607, -23.8254643348985], + [-45.47349100262204, -23.82548233486314], + [-45.47352100279125, -23.825496334803365], + [-45.47355600297461, -23.825507334730858], + [-45.47357600309452, -23.82551933469233], + [-45.47361600331851, -23.82553733461234], + [-45.473638003463186, -23.825555334572503], + [-45.473663003626484, -23.82557533452701], + [-45.47369500384714, -23.825605334471085], + [-45.4737630043035, -23.825664334349874], + [-45.473830004744826, -23.825719334228644], + [-45.47385000488073, -23.8257373341933], + [-45.473877004999544, -23.825737334132928], + [-45.473880004956804, -23.825716334115306], + [-45.47386500481892, -23.825689334134765], + [-45.473845004683014, -23.82567133417012], + [-45.47382700454258, -23.82564833419834], + [-45.47382200449123, -23.825637334203773], + [-45.47385900452618, -23.825589334096033], + [-45.47381400408323, -23.825497334148718], + [-45.473804003954086, -23.825465334154398], + [-45.47380200386805, -23.825436334143692], + [-45.4738020037882, -23.825406334128143], + [-45.47381400380363, -23.8253923340939], + [-45.47382600385122, -23.825390334066057], + [-45.473856003945855, -23.82537633399174], + [-45.47388600409118, -23.825381333927243], + [-45.473912004211, -23.825383333870136], + [-45.473938004330684, -23.82538533381303], + [-45.47395600440988, -23.825385333772783], + [-45.47400500458293, -23.82536933365487], + [-45.47402300458757, -23.825341333600036], + [-45.47402200451653, -23.825316333589203], + [-45.47402200445928, -23.825294833577978], + [-45.47402200440201, -23.825273333566777], + [-45.474017004281535, -23.82523633355872], + [-45.47400850418424, -23.825213833565996], + [-45.47400000408693, -23.82519133357327], + [-45.47401400400208, -23.825136333513303], + [-45.47402700400872, -23.825117333474335], + [-45.47400700384354, -23.82508833350394], + [-45.47395900351785, -23.825045333588843], + [-45.47391400320269, -23.825001333666517], + [-45.47390200304062, -23.82496033367195], + [-45.47389200293011, -23.82493533368127], + [-45.47390900300492, -23.824935333643243], + [-45.47393200316197, -23.824956333602824], + [-45.47394900327944, -23.824972333573147], + [-45.4739620033766, -23.824987333551885], + [-45.47398200351517, -23.825006333517045], + [-45.4739940036026, -23.825019333497007], + [-45.47402100375327, -23.825031333442894], + [-45.47405100394395, -23.825053333387242], + [-45.4740940041518, -23.82506033329478], + [-45.47412300428474, -23.82506233323096], + [-45.474141004339955, -23.825053333185995], + [-45.474148004333436, -23.82503933316313], + [-45.474148004280195, -23.825019333152657], + [-45.47414600423412, -23.825005333149836], + [-45.47411300402237, -23.824980333210533], + [-45.47409600387569, -23.824953333234564], + [-45.47405600348131, -23.824871333281244], + [-45.474036003313465, -23.824841333310317], + [-45.47404000321656, -23.824798333278935], + [-45.4740300030687, -23.824759333280934], + [-45.474030002988805, -23.82472933326528], + [-45.474030002916926, -23.8247023332513], + [-45.47403000285036, -23.824677333238252], + [-45.4740300027705, -23.824647333222533], + [-45.474037002734775, -23.824622333193904], + [-45.47402200253556, -23.824572333201417], + [-45.47402200245568, -23.82454233318578], + [-45.474064002560624, -23.824512333076147], + [-45.47410400262748, -23.824471332965402], + [-45.47416300272744, -23.824411332802214], + [-45.47421800290281, -23.82438633266618], + [-45.4742830031649, -23.824377332516118], + [-45.47434700337192, -23.824349332358384], + [-45.47439200349003, -23.82431933224212], + [-45.47441900356094, -23.824301332172404], + [-45.474454003653754, -23.82427833208212], + [-45.47449300382527, -23.824278331994897], + [-45.47455800403139, -23.824248331834017], + [-45.4746180042209, -23.82422033168517], + [-45.47469096656304, -23.824228255526176], + [-45.474735004764895, -23.824231331429285], + [-45.474809005047916, -23.824215331255502], + [-45.47488100528492, -23.824185331078862], + [-45.474931005456945, -23.824167330957714], + [-45.4750000057233, -23.82415333079612], + [-45.475045005884006, -23.824139330688183], + [-45.47508700606351, -23.824137330593246], + [-45.47514700633804, -23.82414133046112], + [-45.475172006485415, -23.824155330412513], + [-45.47519200663198, -23.824177330379197], + [-45.47520700677786, -23.82420733036139], + [-45.47521700683519, -23.824212330341634], + [-45.475256006980096, -23.824202330249264], + [-45.47530900721332, -23.824202330130728], + [-45.475346007376096, -23.824202330048], + [-45.47539300761215, -23.82421332994857], + [-45.475435007796946, -23.82421332985465], + [-45.475455007916956, -23.82422532981621], + [-45.4754900081002, -23.824236329743695], + [-45.475523008293315, -23.824254329679242], + [-45.47555500849542, -23.824277329619626], + [-45.47557800866323, -23.82430232958125], + [-45.475592008762014, -23.824316329557245], + [-45.47561000887582, -23.824329329523774], + [-45.47563000903045, -23.824354329492014], + [-45.47566000921836, -23.824375329435913], + [-45.47567000930496, -23.824391329421886], + [-45.47570000950354, -23.82441632936785], + [-45.47575200982282, -23.824450329269265], + [-45.475765009922654, -23.824466329248516], + [-45.47576700998469, -23.82448632925452], + [-45.47577701007129, -23.824502329240488], + [-45.47578001018301, -23.824539329253092], + [-45.47578701024317, -23.824550329243113], + [-45.475795010302264, -23.824559329229874], + [-45.4758170104363, -23.824573329188038], + [-45.47583501055817, -23.82458932915612], + [-45.47585001066677, -23.824605329130925], + [-45.475882010850164, -23.824621329067693], + [-45.475929011123505, -23.82464632897554], + [-45.4759690113661, -23.82467132889914], + [-45.475984011485345, -23.82469132887606], + [-45.47596201152973, -23.824744328952917], + [-45.47601701180628, -23.824757328836615], + [-45.47604701206078, -23.824803328793468], + [-45.47609901232423, -23.82481632868399], + [-45.47612901249883, -23.824832328625295], + [-45.4761660126803, -23.824839328546176], + [-45.47619301279901, -23.82483932848579], + [-45.476218012933, -23.824848328434516], + [-45.47622101297814, -23.824860328434067], + [-45.47619601291081, -23.82487632849838], + [-45.476196012988034, -23.824905328513413], + [-45.4762260132531, -23.824955328472427], + [-45.47623601337168, -23.824983328464675], + [-45.47622601339425, -23.825008328499997], + [-45.476244013526774, -23.825028328470207], + [-45.47624401356937, -23.825044328478548], + [-45.47625601365946, -23.825058328459015], + [-45.47625901372857, -23.825079328463293], + [-45.476269013839094, -23.82510432845387], + [-45.476269013905664, -23.825129328466947], + [-45.476274014012944, -23.82516132847241], + [-45.47626701407797, -23.82519732850676], + [-45.47629701426056, -23.825216328449642], + [-45.47631401438859, -23.82523632842202], + [-45.47632901453456, -23.825266328404098], + [-45.47633401460449, -23.825284328402365], + [-45.476357014734916, -23.82529532835658], + [-45.476421015021906, -23.82529732821448], + [-45.47646101524053, -23.825313328133365], + [-45.476474015316306, -23.825320328107978], + [-45.47648401540293, -23.82533632809395], + [-45.47649101548172, -23.825354328087624], + [-45.4764910155057, -23.82536332809236], + [-45.476474015449455, -23.825370328133996], + [-45.47645401536148, -23.82537032817872], + [-45.476434015273526, -23.825370328223435], + [-45.47641701517476, -23.82536132825684], + [-45.47640901513951, -23.82536132827474], + [-45.476402015127405, -23.825368328293983], + [-45.47639701512931, -23.825377328309887], + [-45.476387015122576, -23.825391328339446], + [-45.476387015159844, -23.82540532834685], + [-45.47638901519269, -23.82541432834702], + [-45.47640201527921, -23.825425328323703], + [-45.476424015399935, -23.825434328279144], + [-45.47645201553645, -23.825439328219172], + [-45.47647701564639, -23.82543932816327], + [-45.47650201577514, -23.82544632811095], + [-45.476531015932025, -23.825457328051836], + [-45.47654601601668, -23.82546432802198], + [-45.476564016101094, -23.825466327982756], + [-45.476586016203264, -23.825468327934587], + [-45.476628016401385, -23.82547332784324], + [-45.47668101668255, -23.825491327734134], + [-45.47669101677444, -23.825509327721146], + [-45.47669801684789, -23.82552532771382], + [-45.47669801687186, -23.82553432771853], + [-45.476698016914455, -23.825550327726756], + [-45.47669601693764, -23.825562327737497], + [-45.47669101697416, -23.825584327760208], + [-45.476691017030085, -23.825605327771104], + [-45.47669101708337, -23.825625327781566], + [-45.47669601716132, -23.82564632778129], + [-45.47669901721714, -23.8256623277829], + [-45.476704017287126, -23.825680327781086], + [-45.47670401734305, -23.82570132779208], + [-45.47670401738567, -23.825717327800394], + [-45.47670601744241, -23.825735327805305], + [-45.47671401753881, -23.825758327799416], + [-45.47672901764739, -23.825774327774187], + [-45.476734017722634, -23.825794327773394], + [-45.476738017770934, -23.8258058277705], + [-45.476737040781515, -23.825811447775553], + [-45.47674108880785, -23.82581465676818], + [-45.47674201781912, -23.825817327767528], + [-45.476739517853375, -23.825834327781983], + [-45.47673701788772, -23.825851327796403], + [-45.47671901784041, -23.82586332784293], + [-45.47670401781711, -23.825879327884792], + [-45.47668701777153, -23.825890327928562], + [-45.47668701782212, -23.825909327938433], + [-45.47668001785787, -23.82593432796714], + [-45.47667001781392, -23.825934327989515], + [-45.47665501776656, -23.825941328026683], + [-45.476645017765165, -23.82595732805744], + [-45.47664001778579, -23.825973328076856], + [-45.47664801786355, -23.825989328067397], + [-45.476673018045496, -23.826016328025464], + [-45.47668801813015, -23.82602332799563], + [-45.47671001826959, -23.826039327954717], + [-45.47672201837027, -23.82605732793726], + [-45.476735018483396, -23.826078327919173], + [-45.476745018599324, -23.826105327910803], + [-45.47675001870128, -23.826135327915246], + [-45.4767680188523, -23.826162327889158], + [-45.476788019001596, -23.826185327856354], + [-45.47681301915416, -23.826201327808747], + [-45.47683201929108, -23.82622132777665], + [-45.476847019405035, -23.826239327752536], + [-45.4768650195348, -23.826258327722165], + [-45.47686501959341, -23.826280327733663], + [-45.47686501965465, -23.826303327745606], + [-45.476870019751274, -23.826331327749013], + [-45.47689501993314, -23.82635832770717], + [-45.47690502003844, -23.826381327696733], + [-45.47692802021158, -23.826408327659365], + [-45.47694802036081, -23.82643132762667], + [-45.476995020786, -23.82651332756419], + [-45.47699502083392, -23.826531327573658], + [-45.47698502082186, -23.82654332760226], + [-45.476966020762255, -23.82655232764942], + [-45.47694302071703, -23.826573327711845], + [-45.476908020634895, -23.82660032780412], + [-45.47689902064319, -23.826618327833703], + [-45.476899020693786, -23.82663732784357], + [-45.47690902078054, -23.826653327829526], + [-45.4769260209085, -23.826673327801885], + [-45.47693902100833, -23.826689327781132], + [-45.47695402110637, -23.82670132775394], + [-45.476968021183865, -23.826707327725707], + [-45.476976021243075, -23.826716327712465], + [-45.47699302133119, -23.826721327677017], + [-45.47700302132726, -23.826703327645372], + [-45.47703102139454, -23.82668232757174], + [-45.477043021418076, -23.826671327539163], + [-45.477033021280825, -23.82663632754332], + [-45.47704302127159, -23.826616327510585], + [-45.47705002128904, -23.826611327492248], + [-45.47706002132232, -23.82660732746784], + [-45.4770700213903, -23.82661632745019], + [-45.47709502160953, -23.826657327415557], + [-45.47712002175418, -23.82667032736641], + [-45.47715502201735, -23.826711327309507], + [-45.47717202213478, -23.8267273272798], + [-45.47717502216659, -23.826734327276696], + [-45.47717802222248, -23.826750327278415], + [-45.477170022277804, -23.82678432731399], + [-45.47716802234358, -23.826812327333048], + [-45.47716802240485, -23.826835327345073], + [-45.477183022513465, -23.82685132731976], + [-45.47720302264146, -23.826866327282943], + [-45.47725302286144, -23.826866327171082], + [-45.47728002298027, -23.826866327110682], + [-45.47732502320222, -23.826875327014672], + [-45.4773470233416, -23.82689132697378], + [-45.47737002347481, -23.82690332692861], + [-45.47739702362815, -23.826916326875004], + [-45.47743402380433, -23.826921326794807], + [-45.477464023933656, -23.826920326727187], + [-45.4774860240678, -23.82693432668528], + [-45.47750402420824, -23.82695732665702], + [-45.47751902430354, -23.826968326629125], + [-45.47753402441748, -23.82698632660503], + [-45.47755902456479, -23.827000326556412], + [-45.47757402467874, -23.82701832653222], + [-45.47759902482598, -23.827032326483593], + [-45.47762402499726, -23.827055326439602], + [-45.47762902508059, -23.827078326440418], + [-45.4776290251232, -23.827094326448755], + [-45.477629025176476, -23.827114326459217], + [-45.47762902521909, -23.827130326467554], + [-45.47763402528899, -23.82714832646573], + [-45.47766602551503, -23.827180326410804], + [-45.47768902566413, -23.827198326368688], + [-45.477731025915524, -23.827223326287793], + [-45.47775402610199, -23.82725532625301], + [-45.47777102622741, -23.82727432622483], + [-45.47782902666383, -23.827342326130545], + [-45.47783602675587, -23.82736532612688], + [-45.477854026893645, -23.827387326098073], + [-45.477869027058205, -23.827424326083815], + [-45.47787602713698, -23.827442326077495], + [-45.477879027216765, -23.82746732608385], + [-45.4778860273088, -23.827490326080106], + [-45.47789102742932, -23.827527326088227], + [-45.4779190276059, -23.827547326035997], + [-45.47795602776866, -23.82754732595322], + [-45.47799102794669, -23.827556325879634], + [-45.47800802805869, -23.827570325848917], + [-45.47802602820453, -23.827595325821616], + [-45.47803602835246, -23.82763432581958], + [-45.47804902848683, -23.827663325805595], + [-45.478068028650405, -23.827693325778725], + [-45.478106028884156, -23.827718325706744], + [-45.47812302900699, -23.827736325678078], + [-45.4781230290443, -23.82775032568539], + [-45.47810902904919, -23.82777532572974], + [-45.478124029168534, -23.82779532570658], + [-45.47814602928395, -23.827802325660947], + [-45.478176029463896, -23.827820325603287], + [-45.47818102954715, -23.82784332560404], + [-45.478171029516524, -23.82784832562906], + [-45.478161029501784, -23.82785932565711], + [-45.47816102953908, -23.827873325664477], + [-45.47816102960568, -23.827898325677438], + [-45.478154029588254, -23.827903325695736], + [-45.47813402952415, -23.827912325745135], + [-45.47811702946802, -23.82791932578687], + [-45.478117029515964, -23.827937325796203], + [-45.47811702953994, -23.827946325800937], + [-45.47812702962126, -23.827960325785774], + [-45.47815402983065, -23.82799432574313], + [-45.47816702991184, -23.828003325718683], + [-45.47818203001504, -23.828017325692414], + [-45.47819203013099, -23.82804432568412], + [-45.478194030182394, -23.82806032568797], + [-45.47819203021624, -23.828076325700852], + [-45.47820403033034, -23.828099325685926], + [-45.47821903043896, -23.828115325660704], + [-45.47824403061557, -23.82814032561773], + [-45.47826903077348, -23.82815832557126], + [-45.478287030900695, -23.828176325540326], + [-45.47830403103677, -23.828199325514333], + [-45.47832903126933, -23.828245325482342], + [-45.478349031410566, -23.828265325447973], + [-45.47836203151041, -23.82828132542731], + [-45.478374031600524, -23.82829532540767], + [-45.47840903183976, -23.828327325346123], + [-45.47843403201095, -23.828350325302104], + [-45.47845403215229, -23.82837032526784], + [-45.47846603224242, -23.828384325248184], + [-45.47848903239694, -23.828404325207202], + [-45.47851903257681, -23.828422325149457], + [-45.47855903279547, -23.828438325068284], + [-45.47860803301103, -23.82843832495865], + [-45.47863803314838, -23.828440324892586], + [-45.47867003333721, -23.828458324830432], + [-45.478675033396456, -23.828472324826457], + [-45.47867803342831, -23.828479324823423], + [-45.47869003349978, -23.828486324800195], + [-45.478715033639105, -23.828497324749996], + [-45.478733033718285, -23.828497324709723], + [-45.478750033793084, -23.8284973246717], + [-45.47876803390156, -23.828508324637177], + [-45.478803034202144, -23.828563324587442], + [-45.4788550344309, -23.828563324471123], + [-45.47888203454972, -23.828563324410705], + [-45.47891503471365, -23.82857032434057], + [-45.47892903482313, -23.8285883243186], + [-45.4789370349063, -23.82860632431006], + [-45.478942034994894, -23.82863132431192], + [-45.478952035081534, -23.828647324297872], + [-45.47897203520681, -23.828661324260494], + [-45.4789790352057, -23.828649324238487], + [-45.47898903521508, -23.828636324209434], + [-45.47900703529961, -23.828638324170196], + [-45.47903203543361, -23.828647324118883], + [-45.47905403555967, -23.82865832407543], + [-45.47907903566437, -23.828656324018453], + [-45.479116035813895, -23.828651323933098], + [-45.47915303600063, -23.82866032385505], + [-45.479178036110575, -23.82866032379911], + [-45.47933503668422, -23.82861632342495], + [-45.47935703680504, -23.828625323380358], + [-45.47937503694017, -23.828646323351], + [-45.47940503710679, -23.828659323290733], + [-45.47945403737307, -23.82867832319088], + [-45.47951703769812, -23.828696323059376], + [-45.47957603799778, -23.828711322935167], + [-45.47965103836509, -23.828725322774556], + [-45.479701038627766, -23.828741322671114], + [-45.479746038879064, -23.828761322580817], + [-45.47979003910995, -23.82877532248967], + [-45.47983803937443, -23.828795322392747], + [-45.47988203959733, -23.82880632229994], + [-45.47994003991381, -23.828829322182177], + [-45.47998904015338, -23.828838322077182], + [-45.480042040429254, -23.82885432196691], + [-45.480092040715824, -23.828879321868072], + [-45.48012104089671, -23.828899321813672], + [-45.480144041072464, -23.82892732177671], + [-45.48016904125443, -23.828954321734937], + [-45.480209041483754, -23.828974321655792], + [-45.48023404163639, -23.82899032160818], + [-45.4802740418976, -23.829022321535312], + [-45.48031304214918, -23.82905232146367], + [-45.480383042590425, -23.829102321333043], + [-45.48042104280028, -23.829118321256395], + [-45.480530043375765, -23.829154321031222], + [-45.480560043550405, -23.829170320972416], + [-45.480640044064906, -23.829231320825144], + [-45.48066004417695, -23.829240320785118], + [-45.480709044448474, -23.829261320686378], + [-45.48076704475163, -23.829279320566027], + [-45.48081404501706, -23.829301320472254], + [-45.480879045377705, -23.82932932034141], + [-45.48095104577712, -23.829360320196383], + [-45.481003046061836, -23.829381320091024], + [-45.481123046685816, -23.829417319841216], + [-45.48127504748783, -23.82946731952707], + [-45.48132704778328, -23.829492319423807], + [-45.48138704809526, -23.8295103192988], + [-45.4814390483773, -23.82953031919293], + [-45.48146904847999, -23.829519319120024], + [-45.48146904841336, -23.829494319107074], + [-45.48144904828274, -23.82947831914344], + [-45.481439048172106, -23.829453319152865], + [-45.481473048319025, -23.82945231907628], + [-45.4814830483817, -23.829459319057502], + [-45.4815080485237, -23.829471319007837], + [-45.481548048729046, -23.829482318923972], + [-45.48158604892549, -23.829493318844783], + [-45.481645049214414, -23.829504318718392], + [-45.48170204949728, -23.829516318597097], + [-45.481740049693734, -23.82952731851781], + [-45.48180204997183, -23.8295293183801], + [-45.48189905039868, -23.829529318163033], + [-45.48202605105334, -23.829565317897536], + [-45.482073051236206, -23.82955631778764], + [-45.48214305151216, -23.829544317624812], + [-45.48223905191594, -23.82953731740638], + [-45.48232905232791, -23.82954331720807], + [-45.48238105258872, -23.82955531709787], + [-45.48246305300809, -23.829577316925853], + [-45.48247605313192, -23.829602316909696], + [-45.482429052986426, -23.829625317026878], + [-45.482466053223796, -23.82965331695866], + [-45.482518053433985, -23.82964631683868], + [-45.48256605374642, -23.829684316750967], + [-45.48263505400205, -23.829666316587222], + [-45.48267805420192, -23.829670316493043], + [-45.48273005449196, -23.829693316388674], + [-45.48276005462937, -23.829695316322578], + [-45.482792054836764, -23.82972031626399], + [-45.48280705495073, -23.82973831623976], + [-45.48284205525128, -23.82979331619004], + [-45.4828600553865, -23.82981431616067], + [-45.48288905556198, -23.829832316105193], + [-45.482929055804625, -23.829857316028612], + [-45.48297905607256, -23.829875315926163], + [-45.48302605629008, -23.829879315822993], + [-45.483064056451894, -23.829877315736947], + [-45.48307305644356, -23.829859315707374], + [-45.48306305631424, -23.829827315713118], + [-45.48304605607956, -23.82976731571997], + [-45.48302605590098, -23.82973331574707], + [-45.483018055799114, -23.82970831575195], + [-45.483018055708506, -23.829674315734284], + [-45.48302505565939, -23.829644315702932], + [-45.483043055733255, -23.829642315661612], + [-45.48307305588122, -23.829648315597662], + [-45.483093056019825, -23.82966731556274], + [-45.483105056096626, -23.829676315540603], + [-45.48311505616996, -23.82968731552388], + [-45.48312305624251, -23.82970131551336], + [-45.48313005635321, -23.829731315513197], + [-45.483153056502424, -23.829749315471155], + [-45.48317805666565, -23.829769315425587], + [-45.48322205685924, -23.82976931532711], + [-45.483255057015164, -23.829773315255323], + [-45.48327505704983, -23.829753315200172], + [-45.48329205711929, -23.82975131516112], + [-45.483337057285276, -23.82973931505412], + [-45.48338905751937, -23.829741314938865], + [-45.48343405773067, -23.829746314840726], + [-45.48346805789631, -23.82975231476771], + [-45.48349305795302, -23.8297323147014], + [-45.48350605795426, -23.829711314661342], + [-45.483523057938434, -23.82967731460562], + [-45.48353805796712, -23.829663314564776], + [-45.48356205803534, -23.82964931450379], + [-45.48359005819586, -23.829663314448396], + [-45.48359705826933, -23.829679314441048], + [-45.483615058383165, -23.82969231440751], + [-45.48363205849525, -23.82970631437677], + [-45.48366005850927, -23.829665314292757], + [-45.48370205869399, -23.82966531419877], + [-45.48373205883663, -23.829669314133668], + [-45.483757058970646, -23.829678314082436], + [-45.48379605914226, -23.829678313995142], + [-45.4838110592215, -23.82968331396414], + [-45.48382405923614, -23.829667313926745], + [-45.48383905927008, -23.829655313886988], + [-45.48385105929355, -23.829644313854295], + [-45.48387605942223, -23.82965131380205], + [-45.48390805960308, -23.82966631373822], + [-45.483931059754845, -23.829685313696594], + [-45.48395305987567, -23.829694313652087], + [-45.48398006002904, -23.829707313598433], + [-45.484003060154265, -23.829716313551565], + [-45.48401806022017, -23.829716313517995], + [-45.48405206034052, -23.82970531343623], + [-45.484067060382515, -23.829696313397942], + [-45.484080060397076, -23.829680313360537], + [-45.484100060442394, -23.829664313307482], + [-45.48411706049858, -23.82965731326582], + [-45.484127060510545, -23.82964531323711], + [-45.484137060493275, -23.829622313202798], + [-45.484117060357335, -23.82960431323824], + [-45.48410706023335, -23.829574313245004], + [-45.48412706029202, -23.829563313194495], + [-45.48414906038884, -23.829563313145268], + [-45.48416906046348, -23.82955831309785], + [-45.48419906055815, -23.82954431302351], + [-45.48421306061976, -23.829544312992176], + [-45.48421606061425, -23.829537312981856], + [-45.48422106058826, -23.82951931296123], + [-45.48422106051097, -23.82949031294614], + [-45.484221060473665, -23.829476312938873], + [-45.484226060405106, -23.829442312910036], + [-45.48428806071784, -23.82945731277906], + [-45.4843470609774, -23.829457312647015], + [-45.484382061131456, -23.82945731256867], + [-45.48440706127078, -23.829468312518376], + [-45.484412061319404, -23.829478312512418], + [-45.48444206144872, -23.829477312444745], + [-45.48447206155138, -23.829466312371867], + [-45.4844970616614, -23.829466312315915], + [-45.4845260618183, -23.829477312256753], + [-45.4845440619268, -23.829488312222196], + [-45.48457406202945, -23.829477312149322], + [-45.48464306230099, -23.829465311988628], + [-45.48466306237836, -23.829461311941817], + [-45.48468506244315, -23.829449311886393], + [-45.48473506266316, -23.829449311774475], + [-45.48474006271711, -23.829461311769467], + [-45.48476006283439, -23.829472311730434], + [-45.48481506310036, -23.829481311611964], + [-45.484837063197205, -23.82948131156273], + [-45.484855063257726, -23.829474311518844], + [-45.48487506333768, -23.829471311472535], + [-45.484902063440494, -23.829465311408924], + [-45.484919063512606, -23.829464311370355], + [-45.48492906356996, -23.829469311350625], + [-45.48493085157974, -23.829470003346962], + [-45.48493489260331, -23.829472226339092], + [-45.48493906362733, -23.82947431133082], + [-45.48496906378861, -23.829485311269412], + [-45.48497199780627, -23.829487105263777], + [-45.48498706389709, -23.829496311234873], + [-45.48500704600524, -23.8295039111941], + [-45.48500889801501, -23.82950449919022], + [-45.48501494404762, -23.82950676717788], + [-45.485019064069846, -23.829508311169413], + [-45.485029064113874, -23.829508311147034], + [-45.485039064187205, -23.8295193111304], + [-45.48504256422652, -23.82952831112728], + [-45.485046064265944, -23.82953731112416], + [-45.48506606439654, -23.82955331108761], + [-45.48508606455654, -23.829580311056898], + [-45.48509606464313, -23.829596311042824], + [-45.485104064697026, -23.829603311028613], + [-45.48514906489501, -23.829603310927883], + [-45.48515806496661, -23.82961531091399], + [-45.485176065056436, -23.82961931087575], + [-45.485193065179196, -23.82963731084704], + [-45.48519606522446, -23.829649310846598], + [-45.48520306528453, -23.829660310836648], + [-45.48522306540981, -23.82967431079915], + [-45.48523606548301, -23.82968031077314], + [-45.485228065522406, -23.82970831080562], + [-45.48527306573113, -23.829712310706963], + [-45.48528306577514, -23.829712310684563], + [-45.485296065845574, -23.829717310658147], + [-45.48530106590487, -23.829731310654132], + [-45.48530306596697, -23.829751310660118], + [-45.485303065990976, -23.829760310664735], + [-45.485303066014936, -23.829769310669448], + [-45.485316066096225, -23.829778310645064], + [-45.485333066170995, -23.829778310607015], + [-45.48535106626882, -23.829785310570415], + [-45.48537506639844, -23.82979431052133], + [-45.485395066505056, -23.82980131048015], + [-45.485405066578416, -23.8298123104635], + [-45.48542306670821, -23.829831310433146], + [-45.48543306681078, -23.829853310422173], + [-45.485435066875546, -23.82987431042865], + [-45.485436066936, -23.829895310437298], + [-45.485428066959415, -23.829917310466584], + [-45.485416066944, -23.829931310500726], + [-45.485406066937294, -23.829945310530398], + [-45.48539106690055, -23.82995631056971], + [-45.48536906684112, -23.82997031062626], + [-45.48534606676387, -23.829979310682333], + [-45.485331066748614, -23.829998310725856], + [-45.48536106691524, -23.830011310665473], + [-45.485384067016376, -23.830011310613987], + [-45.48539906709572, -23.830016310582973], + [-45.485416067237196, -23.830041310557945], + [-45.48542606737178, -23.83007531055323], + [-45.48544406749893, -23.83009331052227], + [-45.4854740677162, -23.83012531047184], + [-45.48551806798175, -23.830152310387298], + [-45.48556106822692, -23.830173310302015], + [-45.4856110684896, -23.8301893101984], + [-45.485663068649025, -23.830163310068453], + [-45.48569506875521, -23.830150309990064], + [-45.485727068882575, -23.830145309915846], + [-45.48574506902314, -23.83016830988757], + [-45.48572006896646, -23.83018830995389], + [-45.485723069054266, -23.830216309961745], + [-45.48574506915108, -23.830216309912505], + [-45.48574506920439, -23.830236309922853], + [-45.48573506920304, -23.83025230995354], + [-45.485733069236886, -23.830268309966346], + [-45.48572006922233, -23.830284310003844], + [-45.485725069276306, -23.83029630999881], + [-45.48573306938885, -23.83032530999608], + [-45.48575006948228, -23.83033230996162], + [-45.48577506960563, -23.830337309908217], + [-45.485800069744954, -23.830348309857996], + [-45.485830069895606, -23.830355309794445], + [-45.485850070031546, -23.8303733097591], + [-45.48586207013232, -23.83039130974148], + [-45.48586707018637, -23.830403309736646], + [-45.485872070237654, -23.830414309731104], + [-45.48587507030682, -23.830435309735257], + [-45.48589207040561, -23.830444309701925], + [-45.48592207051891, -23.830437309631154], + [-45.48596207069492, -23.830437309541615], + [-45.48599407087032, -23.830450309476756], + [-45.4860180709972, -23.83045830942714], + [-45.486042071124146, -23.83046630937762], + [-45.48610407133558, -23.830443309226837], + [-45.486121071362476, -23.830425309179436], + [-45.48613907145762, -23.830431309142217], + [-45.48616307158192, -23.830438309092184], + [-45.48617807169047, -23.830454309066926], + [-45.48618807179047, -23.8304753090554], + [-45.48620107185833, -23.830479309028448], + [-45.486218071938445, -23.830481308991413], + [-45.48623607201771, -23.83048130895113], + [-45.48624807199846, -23.83045430891022], + [-45.48627007209528, -23.83045430886097], + [-45.4862900722019, -23.83046130881988], + [-45.48630507229188, -23.83047030879093], + [-45.48633807242905, -23.830467308715527], + [-45.48633507235456, -23.830444308710245], + [-45.48633507227725, -23.83041530869524], + [-45.4863350722346, -23.830399308686857], + [-45.48635507224802, -23.83037130862761], + [-45.48638707239411, -23.83037330855701], + [-45.48642707257001, -23.830373308467475], + [-45.48646107267167, -23.83035530838192], + [-45.486444072540934, -23.8303343084091], + [-45.48647107260098, -23.83031230833719], + [-45.48649607267633, -23.83029930827444], + [-45.4865210727517, -23.830286308211814], + [-45.48656607288302, -23.830261308098063], + [-45.486598072882494, -23.830208307998834], + [-45.486641573047265, -23.83019830789632], + [-45.48668507321192, -23.83018830779372], + [-45.486714073288866, -23.830169307718954], + [-45.486722073257475, -23.830144307688023], + [-45.4866990731136, -23.830128307731197], + [-45.48671407311826, -23.830105307685635], + [-45.48675607333504, -23.830117307597867], + [-45.48678607346435, -23.8301163075302], + [-45.48682307359784, -23.83010530744163], + [-45.48686607373103, -23.830084307334477], + [-45.486903073765816, -23.83003630722674], + [-45.48692807385183, -23.830027307166063], + [-45.48697207405608, -23.830031307069625], + [-45.48700707409004, -23.829986306967886], + [-45.48702707417543, -23.829985306922598], + [-45.48706207432937, -23.829985306844247], + [-45.48708707446337, -23.829994306792997], + [-45.48719307487371, -23.82997330654472], + [-45.487228075059626, -23.829985306472622], + [-45.48723607515617, -23.830008306466638], + [-45.48725107525148, -23.83001930643879], + [-45.48728607544817, -23.830035306368824], + [-45.48731307562021, -23.83005530631876], + [-45.48731807572223, -23.83008530632312], + [-45.48731807577821, -23.830106306334013], + [-45.487328075864795, -23.830122306320014], + [-45.48736107606868, -23.830144306257516], + [-45.48739107626721, -23.83016930620339], + [-45.487440076520166, -23.83018330610088], + [-45.4874750766981, -23.83019230602723], + [-45.48748807671797, -23.830178305990845], + [-45.48749807671934, -23.83016230596016], + [-45.4875020766996, -23.830148305943926], + [-45.4875150767088, -23.830130305905488], + [-45.48754207678496, -23.83011430583672], + [-45.487594076952355, -23.830091305708343], + [-45.48767407726702, -23.830077305522064], + [-45.487713077467944, -23.830088305440388], + [-45.48772807760315, -23.830114305420324], + [-45.487758077732536, -23.83011330535267], + [-45.487791077816375, -23.8300903052668], + [-45.48781307776917, -23.830036305189534], + [-45.48782807777924, -23.830015305144993], + [-45.48783707778946, -23.830004305119104], + [-45.48784707779073, -23.829988305088413], + [-45.48789707792276, -23.829955304959352], + [-45.48795407808822, -23.829923304815132], + [-45.48801407831483, -23.829909304673524], + [-45.48804407850282, -23.829930304617246], + [-45.48804407854545, -23.82994630462555], + [-45.48805407860815, -23.82995330460683], + [-45.488083078751714, -23.82995930454502], + [-45.48810807887503, -23.8299643044916], + [-45.48813107901882, -23.82998030444841], + [-45.48816307921301, -23.8300003043872], + [-45.48820007939438, -23.830007304307962], + [-45.48821507945503, -23.830005304273367], + [-45.488228079442926, -23.82997930423072], + [-45.488228079309614, -23.82992930420479], + [-45.4883020795445, -23.829895304021488], + [-45.488332079676475, -23.829895303954334], + [-45.4883590797926, -23.829894303893273], + [-45.48838207993104, -23.829908303849155], + [-45.48839707999703, -23.829908303815575], + [-45.48844108015327, -23.82989430370969], + [-45.48848108031061, -23.829887303616548], + [-45.48852808049343, -23.829878303506682], + [-45.48856508065616, -23.82987830342386], + [-45.48859008076608, -23.82987830336789], + [-45.48861508085217, -23.82986930330721], + [-45.48871208123351, -23.82985230308121], + [-45.48876208152008, -23.82987730298229], + [-45.488792081689354, -23.829891302922306], + [-45.488851081948894, -23.829891302790195], + [-45.48890908222014, -23.82989730266352], + [-45.48898308254566, -23.829897302497837], + [-45.489050082907006, -23.829922302360856], + [-45.48910008319359, -23.829947302261928], + [-45.489147083400404, -23.829947302156683], + [-45.48919208359035, -23.82994430205431], + [-45.48922908372905, -23.82993530196676], + [-45.48927908393042, -23.829928301851222], + [-45.48932408415767, -23.829939301756212], + [-45.48937108438307, -23.829946301654562], + [-45.48940608456642, -23.829957301581917], + [-45.48947608487429, -23.829957301425207], + [-45.489498084971096, -23.82995730137594], + [-45.48955308519966, -23.829952301250245], + [-45.489595085384416, -23.829952301156183], + [-45.48965708567055, -23.829957301019956], + [-45.489707085930455, -23.829972300915784], + [-45.48975408617452, -23.8299863008178], + [-45.48978908635253, -23.829995300744145], + [-45.48993108705446, -23.830024300441277], + [-45.48996808725456, -23.830038300365704], + [-45.490068087809135, -23.830081300164142], + [-45.490105088062485, -23.83011530009892], + [-45.49016008838979, -23.830147299992365], + [-45.490205088659714, -23.830174299905647], + [-45.490247088911154, -23.830199299824592], + [-45.49027008905494, -23.830215299781404], + [-45.490297089235064, -23.830238299732834], + [-45.49036008964023, -23.83028629961676], + [-45.490394089861766, -23.830313299554593], + [-45.49043709014692, -23.83034929947705], + [-45.49047209038084, -23.83037929941424], + [-45.49050409062556, -23.83041829936287], + [-45.490542090926105, -23.830468299303696], + [-45.490557091149405, -23.830527299300737], + [-45.490552091199426, -23.830554299325993], + [-45.49057009141992, -23.83060729931314], + [-45.49058209155804, -23.830639299302852], + [-45.49063009190783, -23.830691299222423], + [-45.49066709221197, -23.830744299167133], + [-45.49069909243804, -23.83077629911206], + [-45.490722092616494, -23.83080529907564], + [-45.490739092758034, -23.830830299050564], + [-45.490752092924545, -23.830871299042748], + [-45.490752093028554, -23.830910299063046], + [-45.490765093184315, -23.830947299053083], + [-45.490780093370375, -23.830992299042865], + [-45.490812093596475, -23.831024298987785], + [-45.490825093714996, -23.831047298970663], + [-45.49084709391575, -23.831086298941596], + [-45.490865094085656, -23.831120298919007], + [-45.49088009419954, -23.83113829889473], + [-45.4909220945363, -23.83119529883029], + [-45.490970094912775, -23.831257298754974], + [-45.49098009503414, -23.831286298747635], + [-45.490987095150295, -23.831318298748545], + [-45.490978095281356, -23.83138229880191], + [-45.490945095173544, -23.831396298883064], + [-45.49094609524461, -23.831421298893837], + [-45.49098309538331, -23.831412298806374], + [-45.49102809563469, -23.831432298715946], + [-45.49103809572929, -23.83145129870346], + [-45.491045095813455, -23.831471298698066], + [-45.49104509592815, -23.831514298720393], + [-45.49104509600281, -23.831542298735044], + [-45.491075096262776, -23.831590298692728], + [-45.49109009640076, -23.831617298673205], + [-45.49109109648516, -23.831647298686523], + [-45.491076096541846, -23.831693298743986], + [-45.49105409657836, -23.831743298819255], + [-45.49103109654391, -23.831768298883688], + [-45.49099409642377, -23.831784298974846], + [-45.49097209629226, -23.83177129901734], + [-45.4909420961604, -23.83177129908454], + [-45.49093009619284, -23.831803299128], + [-45.49094209629907, -23.831823299111576], + [-45.49096909648444, -23.831848299064028], + [-45.49098409661186, -23.831871299042408], + [-45.4909870967477, -23.83191729905957], + [-45.49098509685361, -23.831960299086376], + [-45.49098209695766, -23.832004299115923], + [-45.49098309710074, -23.832056299140632], + [-45.49098309717274, -23.832083299154746], + [-45.49100309739678, -23.832134299136428], + [-45.49098009758893, -23.832244299245062], + [-45.49092509804836, -23.832507299504694], + [-45.49096209831785, -23.832547299442627], + [-45.49100609867943, -23.832610299376864], + [-45.49101909893398, -23.832684299386077], + [-45.4910690994126, -23.83278129932457], + [-45.49113710000248, -23.832890299228758], + [-45.49115010015038, -23.83292429921735], + [-45.491200100690335, -23.833044299167636], + [-45.49124410114261, -23.833141299119482], + [-45.49127510152436, -23.8332332990978], + [-45.49130610175141, -23.83326729904597], + [-45.49133110202946, -23.833330299022766], + [-45.491350102297034, -23.833399299016033], + [-45.49136310249037, -23.833450299013368], + [-45.4913691026074, -23.833484299017552], + [-45.49136910265541, -23.833502299026975], + [-45.4913821028779, -23.833564299030005], + [-45.49138210309394, -23.833645299072007], + [-45.491420103426535, -23.83370729901915], + [-45.491426103743606, -23.833816299062274], + [-45.491479104120835, -23.833870298971615], + [-45.49150610446903, -23.833956298955805], + [-45.49152410466823, -23.834001298938848], + [-45.49154410485763, -23.8340392989137], + [-45.49154910493294, -23.834059298912845], + [-45.491557105010756, -23.834075298903322], + [-45.491576105137085, -23.834091298869062], + [-45.49159910529691, -23.834113298829017], + [-45.491616105454455, -23.834144298806937], + [-45.491631105616484, -23.83418029879207], + [-45.49166110579382, -23.8341972987337], + [-45.491683105986574, -23.834233298703147], + [-45.49170110614318, -23.834262298677782], + [-45.49171810627923, -23.834285298651686], + [-45.49173310643332, -23.834318298635285], + [-45.49175810666327, -23.834363298602636], + [-45.49179510691411, -23.83439629853686], + [-45.4918301071641, -23.834432298477136], + [-45.491865107416835, -23.83446929841796], + [-45.49188410754308, -23.834485298383715], + [-45.49190410773782, -23.8345252983597], + [-45.491944108081775, -23.834588298302766], + [-45.4919741083498, -23.834639298262008], + [-45.49199710853373, -23.834670298226655], + [-45.49201410865651, -23.834688298197904], + [-45.492017108717704, -23.83470629820049], + [-45.492037108925786, -23.83475129817905], + [-45.492037108979154, -23.83477129818939], + [-45.49205810920222, -23.83482029816785], + [-45.492060109264344, -23.834840298173706], + [-45.49206510929963, -23.83484529816508], + [-45.49206510933432, -23.834858298171845], + [-45.49206610941083, -23.834885298183643], + [-45.49206910952005, -23.834921298195646], + [-45.492069109576086, -23.834942298206496], + [-45.49206910961075, -23.834955298213256], + [-45.492070109663146, -23.834973298220344], + [-45.4920731098017, -23.83502029823798], + [-45.49207610989492, -23.835050298246852], + [-45.492076109905575, -23.835054298248977], + [-45.49207610991091, -23.835056298249995], + [-45.49207810995705, -23.835070298252806], + [-45.492078109962385, -23.835072298253824], + [-45.49207911000947, -23.835088298259876], + [-45.49207411004085, -23.835108298281515], + [-45.49207411007818, -23.83512229828879], + [-45.49207511016529, -23.83515329830262], + [-45.49207511027466, -23.835194298323916], + [-45.492076110351064, -23.835221298335608], + [-45.49207611040976, -23.835243298347073], + [-45.49207711052354, -23.835284298366133], + [-45.492077110587566, -23.835308298378532], + [-45.49207711064358, -23.83532929838949], + [-45.49207811068265, -23.835342298393915], + [-45.49207811078934, -23.8353822984147], + [-45.49207911088445, -23.835416298430175], + [-45.49208111094134, -23.835434298435008], + [-45.49208711102906, -23.83545729843343], + [-45.49209411113183, -23.835484298431783], + [-45.49210211122576, -23.83550629842535], + [-45.49210711130642, -23.83552829842552], + [-45.49211511136032, -23.835535298411266], + [-45.49212211143911, -23.83555329840492], + [-45.492144111594634, -23.83557529836709], + [-45.492147111661154, -23.83559529837071], + [-45.4921551117151, -23.835602298356417], + [-45.49216211179385, -23.835620298350136], + [-45.49217911191664, -23.835638298321342], + [-45.49218511199103, -23.83565629831724], + [-45.492187612022065, -23.835663798315537], + [-45.49219011205309, -23.83567129831383], + [-45.49219711212662, -23.835687298306446], + [-45.492212112235215, -23.835703298281146], + [-45.4922301123785, -23.835727298253303], + [-45.4922451125032, -23.83574929823106], + [-45.49224711255465, -23.8357652982349], + [-45.49225511262715, -23.83577929822431], + [-45.492255112661844, -23.835792298231002], + [-45.49225711267064, -23.835792298226522], + [-45.49225811272304, -23.835810298233582], + [-45.49225311274376, -23.835826298253174], + [-45.492246112723656, -23.83583029827092], + [-45.49223111270036, -23.83584629831283], + [-45.49222711272537, -23.83586229833006], + [-45.49221511267255, -23.83586229835693], + [-45.49220711265608, -23.835869298378533], + [-45.49219311260249, -23.835872298411445], + [-45.49217311251988, -23.835874298457256], + [-45.49215911246627, -23.835877298490185], + [-45.492152112446185, -23.83588129850791], + [-45.49213711238812, -23.83588429854304], + [-45.49213211237147, -23.83588629855537], + [-45.49211811232324, -23.835891298589292], + [-45.49208811220993, -23.835898298660176], + [-45.49208411221102, -23.83590529867275], + [-45.4920791121943, -23.835907298684937], + [-45.492069112150354, -23.83590729870736], + [-45.49205211208083, -23.835909298746547], + [-45.4920471120722, -23.8359142987603], + [-45.492033112010596, -23.835914298791664], + [-45.49201811194459, -23.835914298825262], + [-45.4919841117977, -23.83591529890195], + [-45.49195511166478, -23.835913298965888], + [-45.491938111589995, -23.835913299003956], + [-45.4919031114307, -23.835911299081328], + [-45.4918741112977, -23.835909299145268], + [-45.49184011113746, -23.83590529921929], + [-45.491823111065344, -23.83590629925789], + [-45.49181111101253, -23.83590629928478], + [-45.49177911087176, -23.835906299356456], + [-45.49177711087631, -23.835911299363584], + [-45.49176211082891, -23.83591829940078], + [-45.491728110727365, -23.835936299486267], + [-45.491721110709946, -23.835941299504608], + [-45.491704110677844, -23.83595729955098], + [-45.49170011067095, -23.835961299562], + [-45.49169211067838, -23.835977299588208], + [-45.49168111072066, -23.83601129963048], + [-45.49167411073783, -23.836029299655557], + [-45.49166711074978, -23.836045299679522], + [-45.491660110767015, -23.836063299704524], + [-45.49165311080287, -23.83608829973322], + [-45.49163911083198, -23.83612229978219], + [-45.49163211089193, -23.836156299815574], + [-45.4916251109091, -23.836174299840508], + [-45.491618110926375, -23.836192299865587], + [-45.49160411094746, -23.83622329991296], + [-45.49159611093091, -23.83623029993456], + [-45.49158211094933, -23.836260299981475], + [-45.49157811098511, -23.836280300000873], + [-45.49156311097245, -23.83630030004482], + [-45.49155911101626, -23.836323300065764], + [-45.49155611100832, -23.836325300073522], + [-45.49155211103343, -23.83634130009078], + [-45.49153811105185, -23.836371300137678], + [-45.4915331110779, -23.836389300158213], + [-45.49152611105248, -23.836391300174913], + [-45.49151911107499, -23.83641130020104], + [-45.4915021111096, -23.836452300260405], + [-45.49149811114004, -23.836470300278613], + [-45.49149311113133, -23.836475300292467], + [-45.49148611114057, -23.836490300315937], + [-45.49146911110839, -23.836506300362302], + [-45.49146911115106, -23.836522300370582], + [-45.49146711119031, -23.83654030038451], + [-45.491465111224194, -23.836556300397188], + [-45.491450111211634, -23.836576300441223], + [-45.491451111258726, -23.83659230044728], + [-45.49144411128391, -23.836613300473907], + [-45.491441111276046, -23.836615300481654], + [-45.491437111301074, -23.836631300498908], + [-45.49143011131301, -23.836647300522884], + [-45.491428111357564, -23.83666730053771], + [-45.491423111402206, -23.83669230056192], + [-45.49142311143687, -23.83670530056867], + [-45.491423111442224, -23.836707300569717], + [-45.49142411155065, -23.836746300587745], + [-45.49142711161188, -23.836764300590332], + [-45.49143211167394, -23.836779300586933], + [-45.491437111743934, -23.83679730058505], + [-45.49144211180333, -23.836811300581118], + [-45.49145011191595, -23.836840300578242], + [-45.49145411193885, -23.836842300570314], + [-45.49148711217207, -23.8368753005135], + [-45.49148911223422, -23.83689530051945], + [-45.4914971122828, -23.836900300504105], + [-45.491512112402056, -23.83692030048084], + [-45.49152711253484, -23.83694530046025], + [-45.49152711259352, -23.83696730047172], + [-45.491532112626174, -23.83697130046258], + [-45.49153511271138, -23.83699830046987], + [-45.49153811283395, -23.83703930048445], + [-45.49153811283928, -23.837041300485474], + [-45.49154111297261, -23.83708630050212], + [-45.49154411308718, -23.837124300515143], + [-45.49155911322521, -23.837151300495496], + [-45.491559113273226, -23.83716930050489], + [-45.4915601133203, -23.837185300510864], + [-45.49156011332564, -23.837187300511957], + [-45.49155511337561, -23.8372143005372], + [-45.491548113392874, -23.837232300562203], + [-45.491546113493484, -23.837273300587974], + [-45.491547113556564, -23.837295300597116], + [-45.49154711363661, -23.837325300612683], + [-45.49154811372368, -23.837356300626528], + [-45.49155511380249, -23.837374300620258], + [-45.491570113921924, -23.837394300597], + [-45.4915901141006, -23.83742830056982], + [-45.49159311423916, -23.837475300587474], + [-45.491608114363856, -23.837497300565328], + [-45.49161311443395, -23.837515300563453], + [-45.49163011451407, -23.837517300526397], + [-45.49163611458845, -23.837535300522354], + [-45.49164311462455, -23.837537300507712], + [-45.4916601147421, -23.837553300477914], + [-45.49167711485159, -23.837566300446596], + [-45.49169711496358, -23.8375753004065], + [-45.49171411504369, -23.83757730036944], + [-45.49173611513787, -23.83757630031963], + [-45.491768115278646, -23.837576300247925], + [-45.49178511531608, -23.837562300202524], + [-45.49179911536701, -23.837558300169096], + [-45.49182111538915, -23.837530300105353], + [-45.49184211541482, -23.837505300045223], + [-45.49185911541223, -23.83747629999208], + [-45.49189211542401, -23.83742629989222], + [-45.49190911538948, -23.837385299832846], + [-45.49192311539242, -23.83736329979012], + [-45.4919301153858, -23.837349299767173], + [-45.491949115402754, -23.8373242997116], + [-45.49195411540605, -23.83731729969681], + [-45.49196111539415, -23.837301299672745], + [-45.49196811541431, -23.837297299655024], + [-45.49198511543305, -23.837276299606064], + [-45.4920021154358, -23.837249299553967], + [-45.49202111548201, -23.837235299504112], + [-45.49203511550094, -23.837219299464465], + [-45.49205411551249, -23.83719229940787], + [-45.49205711551508, -23.8371882993991], + [-45.492064115527164, -23.837181299379747], + [-45.492078115556744, -23.83716929934221], + [-45.49208311556013, -23.837162299327332], + [-45.49209311558005, -23.837153299300333], + [-45.49210711562298, -23.837146299265275], + [-45.49211211563438, -23.83714229925194], + [-45.49212711568168, -23.837135299214726], + [-45.49212911567713, -23.837130299207715], + [-45.49213611569721, -23.83712629918995], + [-45.49214311571472, -23.83712129917162], + [-45.49216311578402, -23.837114299123243], + [-45.49216811578732, -23.837107299108375], + [-45.49218211584356, -23.837105299075958], + [-45.49218511585675, -23.837105299069243], + [-45.492192115887605, -23.837105299053558], + [-45.49220911596237, -23.83710529901548], + [-45.49222611602915, -23.837102298975857], + [-45.49224611611721, -23.837102298931054], + [-45.49226511620079, -23.837102298888492], + [-45.49228711634298, -23.837119298848002], + [-45.4923241165164, -23.83712329876716], + [-45.492365116744836, -23.837141298684642], + [-45.49238811689935, -23.837161298643565], + [-45.49241011706556, -23.837187298607745], + [-45.49243211722901, -23.83721229857137], + [-45.49245011735629, -23.83723029854049], + [-45.492470117580325, -23.837281298522097], + [-45.492500117851066, -23.837333298481923], + [-45.49250311790428, -23.837348298482883], + [-45.49253511814654, -23.837386298430964], + [-45.492540118240534, -23.837413298433773], + [-45.49256311848576, -23.8374672984103], + [-45.492583118637825, -23.837491298377973], + [-45.492583118680535, -23.837507298386278], + [-45.49260311883521, -23.837532298354454], + [-45.49260611891241, -23.837556298360138], + [-45.49261111897183, -23.8375702983562], + [-45.49261311898063, -23.83757029835171], + [-45.49262811909198, -23.837587298326905], + [-45.492631119142516, -23.83760129832747], + [-45.492636119169816, -23.837603298317298], + [-45.49265311935142, -23.83764329829998], + [-45.49268311957937, -23.837679298251405], + [-45.49270311974482, -23.837708298221663], + [-45.49271811985883, -23.837726298197364], + [-45.49273512000565, -23.83775329817331], + [-45.492753120167556, -23.83778429814913], + [-45.49280012052374, -23.83784029807284], + [-45.49284212086863, -23.837900298009927], + [-45.49288212112738, -23.83793129793633], + [-45.492896121199664, -23.837935297907098], + [-45.49291912134892, -23.837953297864885], + [-45.492921121400414, -23.83796929786868], + [-45.49293612147708, -23.83797329783711], + [-45.49295312159989, -23.837991297808422], + [-45.49295812163253, -23.837995297799306], + [-45.49299512184339, -23.838013297725723], + [-45.49302012199343, -23.838028297677567], + [-45.49303912211704, -23.83804329764269], + [-45.49307112230594, -23.8380612975803], + [-45.49309312243729, -23.838074297537887], + [-45.493113122573384, -23.838092297502378], + [-45.4931301226535, -23.838094297465297], + [-45.49316712286971, -23.838114297392757], + [-45.493201123035284, -23.838120297319755], + [-45.49322112316595, -23.838136297283132], + [-45.49323612323737, -23.838138297250655], + [-45.493267123384335, -23.838142297183264], + [-45.49329012350159, -23.83814829713488], + [-45.49332912368389, -23.83815229704955], + [-45.49335312380276, -23.83815729699834], + [-45.49339012397626, -23.838161296917576], + [-45.493414124092574, -23.838165296865846], + [-45.49345312426946, -23.83816729677949], + [-45.49347312436275, -23.838169296735707], + [-45.493517124564434, -23.838172296638653], + [-45.49353412463923, -23.838172296600543], + [-45.49356512477562, -23.838172296531113], + [-45.49359412490053, -23.838171296465628], + [-45.493619125010575, -23.838171296409612], + [-45.49364812513815, -23.83817129634462], + [-45.49367012523225, -23.838170296294823], + [-45.49368512529823, -23.838170296261225], + [-45.49369912535983, -23.83817029622984], + [-45.49370412537657, -23.83816829621763], + [-45.49372312544678, -23.83816329617248], + [-45.49376012558554, -23.83815429608489], + [-45.49376512557014, -23.838140296066435], + [-45.49379812567803, -23.838126295985212], + [-45.493823125750716, -23.83811229592193], + [-45.49386612584383, -23.838076295806943], + [-45.493888125903226, -23.838062295750394], + [-45.493905125964766, -23.838057295709643], + [-45.49390712596286, -23.8380532957031], + [-45.493909125963654, -23.838050295697094], + [-45.49391412598026, -23.83804829568485], + [-45.49391912598891, -23.838043295671], + [-45.49393612605303, -23.838039295630857], + [-45.49395112610043, -23.838032295593678], + [-45.493953126109204, -23.838032295589183], + [-45.493967126152036, -23.83802529555413], + [-45.49396712611468, -23.838011295546856], + [-45.49397212610739, -23.838000295529927], + [-45.49397212610206, -23.83799829552892], + [-45.49397412607882, -23.83798629551828], + [-45.49397412604412, -23.83797329551144], + [-45.49397412600142, -23.83795729550323], + [-45.49397412598674, -23.83795179550028], + [-45.49397412597208, -23.837946295497495], + [-45.49397312593833, -23.837935295494013], + [-45.49397112585739, -23.837908295484468], + [-45.49393969357368, -23.83785376752665], + [-45.493946125224454, -23.837712295438866], + [-45.4939451251667, -23.837692295430667], + [-45.49394512513734, -23.837681295424943], + [-45.493950125116704, -23.837665295405507], + [-45.49396912516284, -23.837651295355695], + [-45.49396912515217, -23.837647295353545], + [-45.493988125150416, -23.837615295294402], + [-45.493993125095, -23.83758629526814], + [-45.49401212514123, -23.837572295218326], + [-45.4940161251162, -23.83755629520106], + [-45.49403312511893, -23.837529295148954], + [-45.494064125193944, -23.837506295067506], + [-45.4940841252206, -23.837483295010838], + [-45.49410012521887, -23.837456294960937], + [-45.49411712522703, -23.83743129490987], + [-45.49413412526443, -23.8374172948646], + [-45.49415312531342, -23.837404294815272], + [-45.494155125314194, -23.837401294809265], + [-45.49415512530886, -23.837399294808147], + [-45.49417512535413, -23.83738329475505], + [-45.494179125342356, -23.837372294740454], + [-45.49419412540034, -23.837369294705212], + [-45.494208125427235, -23.83735629466709], + [-45.49420812541389, -23.83735129466452], + [-45.49422512545131, -23.83733729461917], + [-45.49425912556618, -23.837324294536227], + [-45.494293125689154, -23.837314294454846], + [-45.49430712573207, -23.83730729441988], + [-45.49432412578816, -23.837300294378117], + [-45.49434612588493, -23.83730029432883], + [-45.49437812600711, -23.83729329425353], + [-45.4943951260632, -23.83728629421185], + [-45.49441912616608, -23.83728529415757], + [-45.49444412627073, -23.837283294100523], + [-45.49446312635431, -23.837283294057954], + [-45.49448012642652, -23.83728229401935], + [-45.49449712650129, -23.837282293981257], + [-45.49452912664207, -23.83728229390956], + [-45.49454312668498, -23.8372752938745], + [-45.494587126846525, -23.8372632937697], + [-45.494626127018144, -23.83726329368232], + [-45.49464312709028, -23.837262293643704], + [-45.49467512723103, -23.837262293572014], + [-45.49468912729264, -23.83726229354063], + [-45.49471412740789, -23.837264293485635], + [-45.49473312750756, -23.837270293446135], + [-45.49479512782033, -23.83728529331509], + [-45.49483912806194, -23.837303293225716], + [-45.494868128200196, -23.83730729316288], + [-45.49491412843725, -23.83732029306656], + [-45.494951128634774, -23.83733329299041], + [-45.49497112873875, -23.83733929294868], + [-45.49501312900092, -23.837368292869623], + [-45.49504512919506, -23.837388292808242], + [-45.495067129345266, -23.83740829276937], + [-45.49509912952606, -23.837423292705452], + [-45.49511612964888, -23.837441292676658], + [-45.495158129911054, -23.837470292597587], + [-45.495185130088565, -23.83749229254856], + [-45.495229130356876, -23.837520292464397], + [-45.49530013072261, -23.83754029231573], + [-45.49534713096942, -23.8375552922182], + [-45.495371131091055, -23.837561292167493], + [-45.495408131301815, -23.837579292093988], + [-45.49542513141128, -23.837592292062546], + [-45.49545013152663, -23.837594292007562], + [-45.49546713164411, -23.837610291977843], + [-45.49546713164945, -23.837612291978857], + [-45.4954671316548, -23.837614291979868], + [-45.49549913184892, -23.8376342919185], + [-45.49549913185962, -23.837638291920573], + [-45.49550213187277, -23.83763829191385], + [-45.495519131966326, -23.83764529187944], + [-45.49554613217312, -23.83767829183602], + [-45.495593132468024, -23.837711291747883], + [-45.495610132580175, -23.837725291716968], + [-45.49563713274422, -23.83774229166536], + [-45.49565913288377, -23.837758291624343], + [-45.49569113304062, -23.8377642915557], + [-45.49573313326545, -23.837779291469445], + [-45.495770133476235, -23.83779729139578], + [-45.49580613367461, -23.837812291322855], + [-45.49582613381068, -23.837830291287432], + [-45.49584813394747, -23.83784529124596], + [-45.49588013413093, -23.837861291182506], + [-45.4958981342689, -23.837883291153545], + [-45.495930134463045, -23.837903291092264], + [-45.49593863454447, -23.837919791081703], + [-45.495947134625894, -23.83793629107126], + [-45.49598213486266, -23.83796729100887], + [-45.4960041350555, -23.83800329097829], + [-45.49602413522617, -23.83803429094953], + [-45.496056135428326, -23.838057290889694], + [-45.49607413557163, -23.838081290861826], + [-45.496106135813825, -23.838119290809864], + [-45.49614013600876, -23.838136290742373], + [-45.49614513606817, -23.83815029073852], + [-45.49616813623336, -23.83817429069937], + [-45.49619013642628, -23.83821029066878], + [-45.49620713650639, -23.838212290631716], + [-45.4962241366292, -23.838230290602922], + [-45.49624413678123, -23.838254290570582], + [-45.49624513682832, -23.83827029057662], + [-45.496267136967845, -23.838286290535628], + [-45.49631813728567, -23.83832129043952], + [-45.49636713755461, -23.83834129034004], + [-45.49640213775392, -23.838358290270417], + [-45.496413137805, -23.838359290246267], + [-45.49642413785602, -23.838360290222127], + [-45.496465138076445, -23.838375290138003], + [-45.49648313819307, -23.838389290104935], + [-45.4965001382732, -23.838391290067875], + [-45.49651713838799, -23.83840629003755], + [-45.49653413851082, -23.838424290008774], + [-45.4965691387049, -23.838439289938094], + [-45.49658413881359, -23.83845528991286], + [-45.496618138973815, -23.838459289838713], + [-45.49663513909664, -23.838477289809916], + [-45.49665213920619, -23.838490289778562], + [-45.49665513922472, -23.838492289772873], + [-45.49667213934212, -23.838508289743054], + [-45.496709139569, -23.838532289672624], + [-45.496729139673036, -23.838538289630865], + [-45.496748139804644, -23.83855628959759], + [-45.496766139902526, -23.83856328956093], + [-45.49678814001537, -23.83856928951478], + [-45.49681014016547, -23.83858928947582], + [-45.49685414045515, -23.838625289395825], + [-45.496869140526485, -23.838627289363224], + [-45.496869140531835, -23.838629289364267], + [-45.49691114079401, -23.838658289285263], + [-45.49691814083545, -23.83866228927161], + [-45.49693814097686, -23.838682289237138], + [-45.4969531410909, -23.83870028921292], + [-45.496988141370295, -23.83874728915881], + [-45.4970231416658, -23.83880028910778], + [-45.49702814170112, -23.838805289099145], + [-45.497052141852016, -23.838822289054235], + [-45.49707414199155, -23.83883828901321], + [-45.4971141422503, -23.838869288939648], + [-45.49711914227761, -23.838871288929454], + [-45.49713314237392, -23.838884288904815], + [-45.497151142458506, -23.83888628886549], + [-45.49719014264871, -23.838893288781716], + [-45.497224142814275, -23.838899288708646], + [-45.49726314300191, -23.838905288624403], + [-45.49731914328833, -23.838920288506557], + [-45.49735814347596, -23.83892628842233], + [-45.497375143564085, -23.838931288386785], + [-45.49739514364936, -23.838930288341437], + [-45.49741414373294, -23.83893028829888], + [-45.49741914375498, -23.838930288287653], + [-45.49743414382098, -23.83893028825403], + [-45.497470143984664, -23.838932288174377], + [-45.49749014408339, -23.838936288131595], + [-45.49752714428081, -23.838949288055524], + [-45.49754114434241, -23.838949288024136], + [-45.497571144479735, -23.838951287957922], + [-45.497573144493856, -23.83895328795447], + [-45.497590144573955, -23.838955287917376], + [-45.497605144645384, -23.838957287884803], + [-45.49762414473963, -23.838961287844246], + [-45.49763214478011, -23.83896328782735], + [-45.49767314497919, -23.838970287739144], + [-45.49769014506997, -23.838976287704106], + [-45.497708145159834, -23.83898028766581], + [-45.49773914531499, -23.838987287600013], + [-45.49777614549373, -23.838993287520232], + [-45.497822145712206, -23.83899928742022], + [-45.497866145929684, -23.839008287326198], + [-45.49788614602832, -23.839012287283413], + [-45.49790814612516, -23.839012287234105], + [-45.49795714633812, -23.839011287123768], + [-45.497978146393095, -23.83899728706952], + [-45.497995146454535, -23.83899228702879], + [-45.498034146583436, -23.838976286933086], + [-45.4980561466428, -23.8389622868765], + [-45.49809214678255, -23.83895528679224], + [-45.49810714683786, -23.83895128675657], + [-45.498129146921244, -23.838946286704623], + [-45.49815014700033, -23.83894128665498], + [-45.498167147056414, -23.838934286613206], + [-45.49818914713455, -23.838927286560306], + [-45.49820614719066, -23.83892028651853], + [-45.49822614726527, -23.83891528647112], + [-45.49824214731695, -23.838908286431693], + [-45.498257147377615, -23.838906286397037], + [-45.49825514736882, -23.838906286401535], + [-45.49828414744838, -23.838888286327133], + [-45.498313147554576, -23.83888028625805], + [-45.49833414761224, -23.838867286204216], + [-45.4983491476355, -23.838851286162228], + [-45.49835614765835, -23.838848286144998], + [-45.4983751477072, -23.838835286095748], + [-45.49837664770983, -23.838833786091595], + [-45.498378147712366, -23.838832286087417], + [-45.49839514774453, -23.838816286041023], + [-45.49841914780735, -23.838800285978948], + [-45.49843314783423, -23.8387872859408], + [-45.498469147931175, -23.83876428584818], + [-45.498469147899144, -23.83875228584202], + [-45.498472147907066, -23.838750285834287], + [-45.49849814792539, -23.838714285757288], + [-45.49851714797156, -23.83870028570755], + [-45.49853614801241, -23.838684285656573], + [-45.498556148062995, -23.83867028560449], + [-45.49860114818096, -23.8386402854881], + [-45.49863014826041, -23.838622285413773], + [-45.498635148277124, -23.83862028540155], + [-45.49865714832322, -23.838601285342328], + [-45.49867814833283, -23.838570285279282], + [-45.49869314839615, -23.838569285245157], + [-45.49871214841563, -23.83854528519011], + [-45.498734148504454, -23.83854228513919], + [-45.49875614856382, -23.83852828508271], + [-45.49878214866488, -23.838523285021765], + [-45.498802148734136, -23.838516284973277], + [-45.498826148829075, -23.838512284917424], + [-45.498872148986045, -23.838495284805518], + [-45.49889414904552, -23.838481284748962], + [-45.49889614905429, -23.838481284744486], + [-45.49891814913234, -23.83847428469158], + [-45.498955149276455, -23.838467284604963], + [-45.49895514926578, -23.838463284602913], + [-45.498974149341336, -23.838460284558796], + [-45.499008149490884, -23.8384602844826], + [-45.49901114950405, -23.83846028447587], + [-45.49903014958503, -23.838459284432766], + [-45.49906414972925, -23.83845728435554], + [-45.499098149865425, -23.838452284276755], + [-45.49913015000361, -23.838451284204424], + [-45.49915915013118, -23.83845128413943], + [-45.49919815030011, -23.838450284051493], + [-45.49923015044086, -23.838450283979764], + [-45.4992541505464, -23.83845028392597], + [-45.499276150653905, -23.838454283878797], + [-45.499310150814104, -23.83845828380463], + [-45.49933015091284, -23.83846228376185], + [-45.499359151059096, -23.838469283700423], + [-45.499389151212334, -23.83847728363738], + [-45.49940615132456, -23.838491283606537], + [-45.49946015160745, -23.83850828349427], + [-45.49953115196516, -23.83852528334393], + [-45.49955715208492, -23.838527283286755], + [-45.499594152335725, -23.838560283220893], + [-45.49962915252978, -23.838575283150202], + [-45.49963415255977, -23.838578283140524], + [-45.499690152851514, -23.83859528302381], + [-45.49973415309046, -23.83861228293406], + [-45.49973415310381, -23.838617282936603], + [-45.49973715311706, -23.838617282929892], + [-45.49978615339666, -23.83864128283241], + [-45.499805153485575, -23.838643282790866], + [-45.49982315359942, -23.838656282757327], + [-45.49982715362243, -23.838658282749396], + [-45.499857153797095, -23.83867428269034], + [-45.49987915393923, -23.838691282649886], + [-45.49990115404139, -23.838693282601614], + [-45.4999161541501, -23.83870928257627], + [-45.49992115418274, -23.838713282567106], + [-45.49993615429143, -23.838729282541784], + [-45.499960154437, -23.838744282495735], + [-45.49996315446363, -23.838749282491666], + [-45.49998015457844, -23.838764282461234], + [-45.49999715469592, -23.838780282431486], + [-45.50000015476249, -23.83880028243509], + [-45.50003915497413, -23.83881528235543], + [-45.50004415500411, -23.838818282345848], + [-45.50004415500946, -23.838820282346887], + [-45.50006415513754, -23.838835282309812], + [-45.50007515521664, -23.838846782291085], + [-45.500086155295676, -23.838858282272376], + [-45.50009115532831, -23.838862282263285], + [-45.50010915545562, -23.838880282232246], + [-45.50011315548387, -23.838884282225344], + [-45.500133155609205, -23.838898282187763], + [-45.50015115574184, -23.838918282157717], + [-45.50018215591292, -23.838931282094954], + [-45.50018515593141, -23.838933282089297], + [-45.500205156054086, -23.838946282051193], + [-45.50020715606819, -23.838948282047806], + [-45.500222156171574, -23.838962282021342], + [-45.50026115638855, -23.83897928194272], + [-45.50027615650268, -23.83899728191849], + [-45.500291156568565, -23.83899728188487], + [-45.50029615660657, -23.839003281876725], + [-45.500330156841635, -23.839035281817058], + [-45.50034515691829, -23.83903928178557], + [-45.50034815697417, -23.839055281787044], + [-45.50035215698906, -23.839054281777557], + [-45.50036715709786, -23.83907028175229], + [-45.50038515722499, -23.839088281721256], + [-45.500387157239196, -23.83909028171779], + [-45.50040215734792, -23.83910628169246], + [-45.50040215738797, -23.839121281700212], + [-45.50040515740114, -23.839121281693494], + [-45.500424157538085, -23.83914128166122], + [-45.5004471576767, -23.839155281617003], + [-45.50044915768547, -23.83915528161252], + [-45.50045115769158, -23.83915428160752], + [-45.50045415771279, -23.83915728160234], + [-45.500471157798245, -23.839161281566287], + [-45.500471157803574, -23.839163281567306], + [-45.500476157830974, -23.83916528155711], + [-45.50049115790228, -23.83916728152452], + [-45.50049315791908, -23.839170281521557], + [-45.50049515792786, -23.839170281517077], + [-45.500530158116604, -23.83918328144536], + [-45.50055215827475, -23.839206281408], + [-45.500567158340715, -23.839206281374363], + [-45.50057415840894, -23.839220281365936], + [-45.50058215846011, -23.839226281351063], + [-45.50058415848757, -23.839233281350257], + [-45.5006021585962, -23.839244281315615], + [-45.50060915864563, -23.83925128130351], + [-45.500624158746334, -23.83926428127666], + [-45.500629158781656, -23.839269281267974], + [-45.50065115891317, -23.839282281225397], + [-45.50066615901656, -23.83929628119903], + [-45.500683159131356, -23.839311281168676], + [-45.50070615931801, -23.83934328113368], + [-45.50072115942394, -23.83935828110782], + [-45.500736159556794, -23.83938328108718], + [-45.50073815960828, -23.839399281090962], + [-45.5007561597355, -23.839417281059912], + [-45.500773159850326, -23.83943228102957], + [-45.50078815998307, -23.839457281008933], + [-45.50080116008295, -23.839473280988038], + [-45.50080816017254, -23.83949528098378], + [-45.500821160307176, -23.839524280969677], + [-45.50082916038503, -23.839540280960012], + [-45.50083416044173, -23.839553280955467], + [-45.50084116053931, -23.83957828095282], + [-45.5008561607014, -23.83961428093781], + [-45.50086916086808, -23.839655280929925], + [-45.500877160999345, -23.83969128093058], + [-45.50089516115603, -23.839720280905244], + [-45.50090216124017, -23.839740280899957], + [-45.50092016137275, -23.839760280869946], + [-45.50093516150548, -23.839785280849274], + [-45.50094916160712, -23.839800280825568], + [-45.500982161813766, -23.83982328076355], + [-45.501001161937374, -23.839838280728713], + [-45.50101916203522, -23.839845280691943], + [-45.501043162159526, -23.83985228064181], + [-45.50105816226022, -23.839865280614912], + [-45.50107316237962, -23.839885280591613], + [-45.501101162556196, -23.839905280539256], + [-45.50111516265516, -23.839919280515122], + [-45.50113016278515, -23.839943280493927], + [-45.50114816291246, -23.83996128046288], + [-45.50116316302117, -23.839977280437544], + [-45.501202163232804, -23.83999228035787], + [-45.50123216343688, -23.840019280304524], + [-45.50127416366972, -23.840037280219754], + [-45.50131116386713, -23.840050280143455], + [-45.501340164005406, -23.84005428008057], + [-45.50135816412203, -23.84006828004747], + [-45.50139016427872, -23.84007427997887], + [-45.50142216444352, -23.840083279911752], + [-45.50143616451589, -23.840087279882393], + [-45.50145116459522, -23.84009227985132], + [-45.50148316475199, -23.840098279782747], + [-45.501498164836676, -23.8401052797527], + [-45.501515164930126, -23.84011227971826], + [-45.50154516507812, -23.840118279654064], + [-45.501562165171585, -23.840125279619613], + [-45.50158716528693, -23.840127279564598], + [-45.50160416536169, -23.840127279526477], + [-45.50163116552054, -23.8401422794737], + [-45.501646165605216, -23.840149279443736], + [-45.501663165696, -23.840155279408695], + [-45.50168316582668, -23.840171279372132], + [-45.50170016592023, -23.84017827933761], + [-45.50171716601102, -23.84018427930265], + [-45.50173216607699, -23.840184279269025], + [-45.50174916619451, -23.840200279239202], + [-45.50186516684098, -23.84025127900547], + [-45.5018681668595, -23.840253278999743], + [-45.50188816697682, -23.840264278960635], + [-45.501905167065026, -23.840269278925174], + [-45.501935167237036, -23.840284278865663], + [-45.50194016729641, -23.84029827886163], + [-45.501969167469376, -23.840315278805495], + [-45.501987167628734, -23.84034527878063], + [-45.50201416780082, -23.840365278730435], + [-45.50203116791566, -23.840380278700067], + [-45.50204616804842, -23.840405278679405], + [-45.502066168171154, -23.84041827864131], + [-45.502084168298396, -23.84043627861025], + [-45.50209816840272, -23.84045227858714], + [-45.502131168643984, -23.84048827853181], + [-45.50215816889362, -23.840537278496637], + [-45.502171169041624, -23.84057127848516], + [-45.50220616927833, -23.84060227842263], + [-45.50222116942709, -23.840633278405015], + [-45.50224116959525, -23.8406632783758], + [-45.50225816971007, -23.840678278345344], + [-45.50227816983543, -23.840692278307845], + [-45.50230817003146, -23.840716278252952], + [-45.50232517017309, -23.840741278227814], + [-45.50235817038233, -23.84076527816617], + [-45.502372170486645, -23.84078127814316], + [-45.50239017060052, -23.840794278109545], + [-45.50242717082469, -23.84081727803843], + [-45.502432170862775, -23.84082327803037], + [-45.50245917104822, -23.84084827798272], + [-45.502484171198354, -23.840863277934496], + [-45.50250117132913, -23.840884277907218], + [-45.50250417135833, -23.840890277903572], + [-45.50252417149443, -23.84090827786808], + [-45.50253917165656, -23.84094427785307], + [-45.5025421717178, -23.84096227785565], + [-45.502557171861234, -23.840991277837023], + [-45.50257417202688, -23.841025277816573], + [-45.50257917211562, -23.841050277818233], + [-45.50258717222286, -23.841077277814282], + [-45.502605172427636, -23.841124277798233], + [-45.50261317254024, -23.8411532777953], + [-45.5026281726543, -23.841171277770975], + [-45.502635172770496, -23.841203277771907], + [-45.50263817283183, -23.841221277774384], + [-45.50265317295123, -23.841241277751173], + [-45.502660173040724, -23.84126327774681], + [-45.50266617312861, -23.8412862777453], + [-45.50267117317995, -23.8412972777398], + [-45.50267117322269, -23.841313277748075], + [-45.50267417330795, -23.841340277755343], + [-45.502676173364826, -23.841358277760158], + [-45.5026791734501, -23.841385277767408], + [-45.50268217356485, -23.841423277780304], + [-45.50268517366084, -23.841454277789715], + [-45.502688173759466, -23.84148627779953], + [-45.502693173824255, -23.841502277796582], + [-45.50269817397172, -23.841549277809694], + [-45.502698174014455, -23.841565277817978], + [-45.502716174141696, -23.84158327778701], + [-45.50272417423035, -23.841603277779353], + [-45.50273117434389, -23.841634277779722], + [-45.50273717443712, -23.84165927777923], + [-45.50274417451059, -23.8416752777718], + [-45.502747174571844, -23.841693277774365], + [-45.502749174615346, -23.841706277776623], + [-45.50275717473603, -23.841738277775235], + [-45.502765174843304, -23.841765277771295], + [-45.50276717490024, -23.84178327777611], + [-45.50276817494738, -23.841799277782126], + [-45.50276817501947, -23.84182627779614], + [-45.502768175072895, -23.84184627780644], + [-45.50276617517093, -23.841886277831676], + [-45.502762175228064, -23.841914277855143], + [-45.50276217527613, -23.84193227786443], + [-45.50276217532421, -23.841950277873828], + [-45.502762175358924, -23.84196327788046], + [-45.50274517531352, -23.84197427792431], + [-45.50273817532016, -23.84198827794733], + [-45.502738175368236, -23.842006277956546], + [-45.50271917532197, -23.842020278006395], + [-45.50271417533472, -23.84203327802444], + [-45.50269917528208, -23.842038278060627], + [-45.502697175326716, -23.842058278075438], + [-45.50267817528046, -23.842072278125297], + [-45.502678175315175, -23.84208527813202], + [-45.50266117528313, -23.84210127817842], + [-45.502629175217145, -23.842129278264697], + [-45.502625175247665, -23.84214727828295], + [-45.50260517523181, -23.842174278341798], + [-45.502598175249055, -23.84219227836679], + [-45.502591175290306, -23.84221927839647], + [-45.502591175373105, -23.84225027841251], + [-45.502592175428255, -23.842269278420076], + [-45.50259217552973, -23.842307278439787], + [-45.50259317561692, -23.84233827845358], + [-45.502593175689036, -23.842365278467582], + [-45.50259317576916, -23.8423952784831], + [-45.5025941758324, -23.84241727849229], + [-45.502594175869795, -23.84243127849945], + [-45.50259617591329, -23.842444278501798], + [-45.502599175963866, -23.842458278502228], + [-45.50260117597265, -23.84245827849775], + [-45.50260417603399, -23.842476278500403], + [-45.502609176096016, -23.84249127849696], + [-45.50261717618733, -23.842512278489835], + [-45.50263217630132, -23.842530278465578], + [-45.50264717640212, -23.842543278438605], + [-45.50265217644277, -23.84255027843108], + [-45.50266917652823, -23.842554278394978], + [-45.50268417663161, -23.8425682783686], + [-45.50269817669856, -23.842570278338233], + [-45.502718176826576, -23.842585278301147], + [-45.50273617692452, -23.842592278264338], + [-45.502760177046085, -23.84259827821367], + [-45.502777177139635, -23.84260527817926], + [-45.50280017725947, -23.84261227813127], + [-45.50290317780073, -23.84264527791733], + [-45.5029081778227, -23.84264527790612], + [-45.5029301779249, -23.8426472778578], + [-45.50295217802162, -23.842647277808457], + [-45.502972178106994, -23.842646277763105], + [-45.50297917813774, -23.84264627774738], + [-45.50299417820375, -23.84264627771376], + [-45.50301117827318, -23.842644277674637], + [-45.50301317826861, -23.84263927766757], + [-45.50303117833718, -23.842635277625057], + [-45.503038178319855, -23.842617277600084], + [-45.50304517830796, -23.842601277576097], + [-45.503045178299935, -23.842598277574567], + [-45.5030501782872, -23.842585277556633], + [-45.50305417826202, -23.84256927753939], + [-45.5030541782567, -23.84256727753834], + [-45.50305617822275, -23.84255127752561], + [-45.503056178174674, -23.842533277516292], + [-45.50305617816397, -23.84252927751426], + [-45.50305917812917, -23.842511277498144], + [-45.50305817804999, -23.842483277485893], + [-45.50306017801338, -23.842466277472635], + [-45.503077178045416, -23.84245027742622], + [-45.50308517806722, -23.842445277405716], + [-45.50309217809271, -23.842443277389], + [-45.5030941780828, -23.84243627738085], + [-45.50311117814422, -23.842431277340086], + [-45.50311917816876, -23.84242727732009], + [-45.50313317821158, -23.842420277285118], + [-45.5031481782643, -23.84241527724893], + [-45.50315117827748, -23.842415277242193], + [-45.50316817831754, -23.842402277197323], + [-45.50317217832176, -23.84239727718572], + [-45.503189178353864, -23.842381277139307], + [-45.50320917834034, -23.84234327707476], + [-45.50323017834196, -23.842309277010102], + [-45.5032471783205, -23.842273276953367], + [-45.50326617836676, -23.842259276903526], + [-45.50329317843747, -23.842241276833672], + [-45.50332913933614, -23.84214412470272], + [-45.50342317866877, -23.842113776476083], + [-45.50342917866984, -23.84210427645773], + [-45.50344617870988, -23.842091276412866], + [-45.50347017873537, -23.84206127634352], + [-45.50348717875672, -23.842041276295095], + [-45.5034921787306, -23.842023276274592], + [-45.503518178748855, -23.84198727619767], + [-45.5035331787641, -23.841968276154137], + [-45.50355017873739, -23.841930276096324], + [-45.50356417870282, -23.841894276046325], + [-45.503578178654905, -23.84185327599368], + [-45.5035831786181, -23.841831275971142], + [-45.5036001786075, -23.84179927591639], + [-45.503614178621014, -23.841781275875682], + [-45.5036291786442, -23.841765275833776], + [-45.50363317861911, -23.84174927581652], + [-45.50365017864046, -23.84172927576811], + [-45.503670178680345, -23.84171127571387], + [-45.50368417869921, -23.84169527567429], + [-45.503686178670684, -23.841681275662467], + [-45.50370417873916, -23.841677275620043], + [-45.50371817875792, -23.841661275580385], + [-45.50373517877668, -23.841640275531326], + [-45.503762178860775, -23.841627275464155], + [-45.5037791788928, -23.84161127541776], + [-45.50380117897084, -23.84160427536474], + [-45.50383317910367, -23.841601275291463], + [-45.50385017913571, -23.84158527524505], + [-45.50387917921523, -23.841567275170725], + [-45.503908179329436, -23.841562275103033], + [-45.50394517943874, -23.84154227500975], + [-45.50397417952357, -23.841526274936452], + [-45.503996179612386, -23.841523274885567], + [-45.50401817966638, -23.84150727482788], + [-45.504048179793, -23.841505274759566], + [-45.50406417982075, -23.84148927471542], + [-45.50409117992075, -23.841482274651295], + [-45.504108179982246, -23.841477274610508], + [-45.50412318003747, -23.841473274574824], + [-45.50413818008476, -23.84146627453753], + [-45.50416218017701, -23.841461274481148], + [-45.50417918024643, -23.841459274441995], + [-45.50419718032568, -23.841459274401643], + [-45.50424318052534, -23.841458274297967], + [-45.50427018064413, -23.841458274237414], + [-45.504290180737414, -23.841460274193604], + [-45.50438318113848, -23.841457273983494], + [-45.50438618115166, -23.841457273976754], + [-45.50438818116045, -23.841457273972285], + [-45.50440818125382, -23.841459273928454], + [-45.504435181372614, -23.841459273867894], + [-45.50446418152957, -23.84147027380857], + [-45.50448218162207, -23.841475273770744], + [-45.50454818193906, -23.841485273627956], + [-45.50454818194707, -23.841488273629484], + [-45.50457718208542, -23.841492273566576], + [-45.504604182209555, -23.84149427350706], + [-45.50463118233359, -23.84149627344754], + [-45.50466318247434, -23.841496273375782], + [-45.50471718270923, -23.841495273254132], + [-45.50475218285783, -23.841493273174624], + [-45.504803183074216, -23.841490273058625], + [-45.50485018326757, -23.841485272950674], + [-45.50488618340719, -23.841478272866258], + [-45.504918183529355, -23.841471272790905], + [-45.504950183651395, -23.841464272715474], + [-45.50497918376026, -23.841457272646856], + [-45.504992183812114, -23.84145527261667], + [-45.50502118389696, -23.841439272543376], + [-45.505065183999676, -23.841405272427124], + [-45.50509618408797, -23.841387272348225], + [-45.505113184111984, -23.841368272300286], + [-45.5051501842267, -23.841350272207933], + [-45.505169184296896, -23.84134527216279], + [-45.50519618436225, -23.841325272091897], + [-45.505243184550274, -23.841318271982903], + [-45.50526718464788, -23.84131527192747], + [-45.50530218480179, -23.84131527184898], + [-45.50532118488545, -23.841315271806344], + [-45.50534818500948, -23.841317271746906], + [-45.50537818515212, -23.841321271681657], + [-45.505407185293045, -23.841326271619184], + [-45.50544218545773, -23.84133027154275], + [-45.50546918561116, -23.841343271488924], + [-45.50550118579473, -23.841359271425425], + [-45.50551818590955, -23.841374271395065], + [-45.5055531861009, -23.84138827132379], + [-45.50556818619632, -23.841399271295856], + [-45.50558518631108, -23.841414271265506], + [-45.505615186456474, -23.84141927120078], + [-45.50564218658587, -23.84142327114224], + [-45.505673186722184, -23.84142327107272], + [-45.50571018688233, -23.841422270989256], + [-45.50574518703626, -23.841422270910726], + [-45.505887187725016, -23.841446270604706], + [-45.50589018774354, -23.84144827059909], + [-45.50590218780167, -23.8414502705732], + [-45.505937188027794, -23.84147727050858], + [-45.505964188157186, -23.841481270450146], + [-45.505981188232035, -23.841481270412025], + [-45.5060031883181, -23.841477270360542], + [-45.506027188415665, -23.841474270305174], + [-45.50604218840953, -23.841447270257653], + [-45.50605618843372, -23.841433270218914], + [-45.50605918838812, -23.84141127020086], + [-45.50606618835219, -23.841386270172208], + [-45.506066188346836, -23.841384270171183], + [-45.50606518829437, -23.841366270164155], + [-45.50606518823828, -23.841345270153226], + [-45.50606518815012, -23.84131227013618], + [-45.50606518810738, -23.841296270127916], + [-45.50606418806025, -23.84128027012189], + [-45.50606418800683, -23.841260270111476], + [-45.50606418799346, -23.84125527010894], + [-45.50606618795951, -23.84123927009617], + [-45.50606918792461, -23.84122127008007], + [-45.5060831879701, -23.841215270045602], + [-45.506091188005314, -23.841215270027664], + [-45.50610818801872, -23.84119226997768], + [-45.50612518807469, -23.841185269935895], + [-45.50613918812294, -23.84118026990192], + [-45.50618118829433, -23.841175269805078], + [-45.506210188405866, -23.841169269736987], + [-45.506252188582614, -23.841166269641246], + [-45.50629118874084, -23.841161269551215], + [-45.506306188788116, -23.841154269513993], + [-45.50636518904228, -23.841152269380565], + [-45.50639718917502, -23.84114926930724], + [-45.50642618929724, -23.84114726924117], + [-45.50646318945193, -23.841144269156587], + [-45.506497189596196, -23.841142269079295], + [-45.506549189811516, -23.841137268960107], + [-45.50656818988714, -23.84113426891594], + [-45.50661719008928, -23.841129268803407], + [-45.50663919018609, -23.841129268754056], + [-45.50667319029822, -23.841115268670634], + [-45.506715190434896, -23.841097268567072], + [-45.506752190560185, -23.84108326847683], + [-45.506805190750626, -23.8410672683497], + [-45.50682519082518, -23.841062268302274], + [-45.506857190923284, -23.84104626822223], + [-45.50688319098949, -23.841028268154602], + [-45.50690319107218, -23.841026268108745], + [-45.506947191252365, -23.84102126800741], + [-45.50698219139826, -23.84101826792737], + [-45.50702819159524, -23.84101626782318], + [-45.50707719179746, -23.841011267710623], + [-45.507109191924826, -23.84100626763628], + [-45.50717819222828, -23.841006267481536], + [-45.507244192515955, -23.841005267333], + [-45.50730019276229, -23.84100526720736], + [-45.50734419295315, -23.841004267108175], + [-45.50737919310706, -23.841004267029664], + [-45.507416193275176, -23.841006266947687], + [-45.50744819342125, -23.841008266876937], + [-45.50752419375553, -23.84100826670645], + [-45.50753819381445, -23.84100726667457], + [-45.507570193984556, -23.84101826660848], + [-45.50759019409121, -23.84102526656729], + [-45.50760819420517, -23.84103826653357], + [-45.50762519432268, -23.841054266503672], + [-45.507645194453424, -23.84107026646717], + [-45.50767919460831, -23.841072266391944], + [-45.50772319479915, -23.84107126629272], + [-45.507753194920426, -23.841067266223284], + [-45.507792195078544, -23.841062266133257], + [-45.50781619517613, -23.841059266077895], + [-45.50784819527412, -23.841043265997854], + [-45.507877195358915, -23.841027265924556], + [-45.507894195380345, -23.84100726587601], + [-45.507911195417705, -23.840993265830633], + [-45.50793319541825, -23.840957265762736], + [-45.5079461954327, -23.840941265725302], + [-45.50795919544712, -23.840925265687783], + [-45.507981195418374, -23.840878265614148], + [-45.50799619544153, -23.84086226557232], + [-45.508010195425626, -23.84083326552583], + [-45.508039195510456, -23.840817265452525], + [-45.50805619549446, -23.840783265396848], + [-45.508070195507976, -23.840765265356076], + [-45.50808719553989, -23.840749265309757], + [-45.50810519561112, -23.84074626526776], + [-45.50816119580133, -23.840725265131308], + [-45.50820019593007, -23.840709265035585], + [-45.508239196066896, -23.840696264941375], + [-45.5082711961997, -23.840693264868072], + [-45.508305196306466, -23.84067726478342], + [-45.508361196510045, -23.84066126464964], + [-45.508388196585976, -23.840645264580743], + [-45.50842219672215, -23.840640264501918], + [-45.50845419681489, -23.84062226442084], + [-45.508500196969074, -23.84060426430838], + [-45.50854719713039, -23.840587264194088], + [-45.50857419723847, -23.84058326413147], + [-45.50861819738924, -23.840567264024518], + [-45.508674197632885, -23.840566263898392], + [-45.5087131977616, -23.840550263802637], + [-45.508750197924385, -23.840550263719667], + [-45.5087891980532, -23.840534263623887], + [-45.5088231981947, -23.840531263546108], + [-45.50885819834869, -23.840531263467575], + [-45.508899198529036, -23.8405312633756], + [-45.508941198711014, -23.840530263280883], + [-45.50897319885708, -23.84053226321011], + [-45.509022199115385, -23.840548263108477], + [-45.509081199372204, -23.840547262975615], + [-45.509138199657635, -23.840560262854382], + [-45.509209199975174, -23.84056226269623], + [-45.50927820032677, -23.840580262550727], + [-45.50931220048705, -23.840584262476515], + [-45.50933920061641, -23.84058826241797], + [-45.509357200701, -23.840590262378605], + [-45.50947020137157, -23.84065526215877], + [-45.509473201384836, -23.840655262152033], + [-45.50948020141558, -23.84065526213634], + [-45.5095032015808, -23.840679262097098], + [-45.50954220176304, -23.84068326201173], + [-45.509564201859845, -23.84068326196238], + [-45.509603202031414, -23.840683261874883], + [-45.50965020223009, -23.840680261767815], + [-45.509682202370804, -23.840680261696036], + [-45.509701202406255, -23.84066226164423], + [-45.509725202463756, -23.84064426158101], + [-45.509745202538326, -23.840639261533607], + [-45.50978120261655, -23.840609261437354], + [-45.50980120265638, -23.840591261383185], + [-45.50980970267237, -23.84058326135995], + [-45.509818202688386, -23.8405752613368], + [-45.50984020271298, -23.84054826127347], + [-45.50985720274505, -23.84053226122708], + [-45.5098732027139, -23.8404942611715], + [-45.50988820273712, -23.840478261129594], + [-45.50990720271646, -23.840439261066784], + [-45.509926202741234, -23.84041726101284], + [-45.50994120272178, -23.840385260962577], + [-45.509945202691256, -23.840367260944404], + [-45.50995220262582, -23.84033126091007], + [-45.50995720260513, -23.840315260890574], + [-45.50996420263053, -23.84031326087384], + [-45.50996720260097, -23.840297260858748], + [-45.5099862026365, -23.84027926080694], + [-45.509996202632315, -23.840261260775133], + [-45.51001020268053, -23.840256260741192], + [-45.510027202720636, -23.840243260696322], + [-45.51003420270063, -23.840224260670738], + [-45.510051202759335, -23.84021826062954], + [-45.51006920283849, -23.840218260589143], + [-45.51010520294609, -23.8401992604986], + [-45.51013720308148, -23.840197260425796], + [-45.510154203156226, -23.840197260387654], + [-45.5101812032723, -23.84019626032658], + [-45.51019420333483, -23.840198260298436], + [-45.51023520353388, -23.840205260210045], + [-45.51023520353922, -23.84020726021106], + [-45.51025520364584, -23.840214260169848], + [-45.51028720383465, -23.84023226010734], + [-45.510307203933365, -23.840236260064604], + [-45.51034120411759, -23.840249259994973], + [-45.51036420429627, -23.840278259958453], + [-45.51039820448317, -23.840292259889324], + [-45.510413204578526, -23.840303259861372], + [-45.51042820471663, -23.8403302598417], + [-45.51045820491269, -23.840354259786743], + [-45.51047520503018, -23.840370259756945], + [-45.510508205252776, -23.840399259697897], + [-45.5105252053757, -23.840417259669053], + [-45.510555205595814, -23.840450259618773], + [-45.51058720582203, -23.840482259563494], + [-45.51060720598744, -23.840511259533617], + [-45.510652206220065, -23.840524259439377], + [-45.51067920640563, -23.84054925939177], + [-45.51071120658107, -23.840562259326692], + [-45.510736206707094, -23.840568259273674], + [-45.51077520692139, -23.84058425919443], + [-45.51080720706744, -23.84058625912366], + [-45.51082720715538, -23.840586259078798], + [-45.510854207271464, -23.840585259017708], + [-45.510873207355004, -23.84058525897509], + [-45.51090820752768, -23.840592258900227], + [-45.510910207536455, -23.84059225889574], + [-45.51094220774933, -23.840619258837908], + [-45.51094720781136, -23.84063425883437], + [-45.51095020786737, -23.840650258835964], + [-45.51096720800091, -23.840672258809157], + [-45.510973208059326, -23.840684258801897], + [-45.510987208169006, -23.840702258779782], + [-45.511005208306926, -23.840724258750797], + [-45.5110122083805, -23.84074025874334], + [-45.511030208507734, -23.84075825871227], + [-45.51105720866657, -23.84077325865942], + [-45.51109220886321, -23.840789258589158], + [-45.51113620907277, -23.840795258493575], + [-45.51118020927695, -23.840799258396924], + [-45.51121720945843, -23.840806258317496], + [-45.51124620960201, -23.84081225825556], + [-45.511281209774594, -23.840819258180712], + [-45.51131520995893, -23.840832258111064], + [-45.511360210172846, -23.840838258013164], + [-45.51137921026441, -23.840841257972162], + [-45.51141621049654, -23.8408672579026], + [-45.511431210610695, -23.84088525787822], + [-45.511471210869374, -23.84091625780446], + [-45.511501211116205, -23.840959257759383], + [-45.51152121127103, -23.84098425772743], + [-45.51154821144849, -23.841006257678195], + [-45.511595211762135, -23.84104625759343], + [-45.51165021211094, -23.84108625749064], + [-45.511680212296305, -23.841106257433697], + [-45.5117122125091, -23.84113325737587], + [-45.51172721264729, -23.841160257356183], + [-45.51175421284346, -23.841189257310575], + [-45.51176921298699, -23.84121825729182], + [-45.51179621315377, -23.84123625724061], + [-45.51181621332731, -23.841268257212253], + [-45.51184621356077, -23.841306257164504], + [-45.511862213762065, -23.841355257153975], + [-45.51188421394162, -23.841386257120618], + [-45.511894214033724, -23.84140425710755], + [-45.51190421412584, -23.841422257094294], + [-45.51192421430995, -23.84145825706808], + [-45.511959214554714, -23.841492257007154], + [-45.511977214711436, -23.84152125698166], + [-45.51201621492306, -23.841536256901907], + [-45.51204121509442, -23.84155925685774], + [-45.51206621524448, -23.84157425680936], + [-45.512088215370575, -23.841585256765708], + [-45.5121252155761, -23.841601256690954], + [-45.51215921576035, -23.841614256621373], + [-45.51219421595709, -23.841630256551117], + [-45.5122382162281, -23.84165925646737], + [-45.512273216422074, -23.841674256396573], + [-45.51231721668772, -23.841701256311804], + [-45.512355216913676, -23.841723256237874], + [-45.5124092171912, -23.84173825612444], + [-45.51245321743814, -23.841758256035998], + [-45.51249521768969, -23.841783255954677], + [-45.51253521791105, -23.841800255873697], + [-45.5125812181561, -23.841816255778838], + [-45.51263121841604, -23.84183125567438], + [-45.51268521869642, -23.841847255561355], + [-45.512739218968576, -23.841860255447013], + [-45.5127812192308, -23.84188925536767], + [-45.51280321936761, -23.841904255326117], + [-45.51281821947107, -23.841918255299614], + [-45.51285021965989, -23.84193625523717], + [-45.51289521992193, -23.841960255148532], + [-45.51292722010274, -23.841975255084467], + [-45.51296122028964, -23.841989255015466], + [-45.51299122043228, -23.841993254950214], + [-45.51301622055295, -23.841997254896146], + [-45.51305722073861, -23.841999254805167], + [-45.513116221003415, -23.84200125467379], + [-45.51315822118814, -23.842001254579532], + [-45.51319022132619, -23.842000254507226], + [-45.51323422152504, -23.842002254409515], + [-45.51326622167111, -23.84200425433872], + [-45.513298221817166, -23.84200625426795], + [-45.513342222024036, -23.84201125417182], + [-45.51338622222019, -23.842012254073616], + [-45.51341822236625, -23.84201425400281], + [-45.5134652225783, -23.842016253898382], + [-45.513492222699796, -23.84201725383828], + [-45.51351922282125, -23.842018253778203], + [-45.51355822299269, -23.842018253690682], + [-45.51358937113365, -23.84201973762157], + [-45.51360022318276, -23.84202025359747], + [-45.513651223412424, -23.842022253484128], + [-45.513663555465925, -23.842021991456285], + [-45.51368357355279, -23.842021565411105], + [-45.513698223616444, -23.842021253378135], + [-45.51373522377912, -23.842021253295105], + [-45.51376222389787, -23.842021253234506], + [-45.51377722396383, -23.842021253200862], + [-45.513806224091375, -23.84202125313576], + [-45.51384822427341, -23.84202025304092], + [-45.51386022432621, -23.842020253013974], + [-45.51388922445373, -23.84202025294892], + [-45.513909224541656, -23.842020252904028], + [-45.51392422461297, -23.84202225287147], + [-45.51394122469307, -23.842024252834346], + [-45.51397122486775, -23.84204025277527], + [-45.5139902249487, -23.842039252732132], + [-45.51401522505858, -23.842039252676035], + [-45.51403422514221, -23.842039252633374], + [-45.5140612252476, -23.842034252570222], + [-45.51406988328323, -23.842033331550258], + [-45.51407632331008, -23.842032786535555], + [-45.5140793673222, -23.84203232252854], + [-45.51411922548121, -23.842026252435915], + [-45.51413022552156, -23.842023252409696], + [-45.514159225641095, -23.84202025234299], + [-45.514184225751066, -23.84202025228686], + [-45.51421822592996, -23.842031252216277], + [-45.51424322605596, -23.842037252163337], + [-45.514263226181306, -23.84205125212558], + [-45.51428322631742, -23.842069252090056], + [-45.514300226464336, -23.84209625206577], + [-45.51431522657038, -23.84211125203993], + [-45.514330226679114, -23.84212725201452], + [-45.51434522677983, -23.842140251987505], + [-45.51436222692139, -23.84216525196226], + [-45.51438022704863, -23.842183251931143], + [-45.51439222713619, -23.84219625191104], + [-45.51441222728557, -23.842219251877967], + [-45.51444422746647, -23.8422342518139], + [-45.51447622765529, -23.84225225175136], + [-45.51450622778721, -23.842252251684023], + [-45.514533227903286, -23.84225125162292], + [-45.514562228030826, -23.84225125155785], + [-45.51458422812754, -23.84225125150848], + [-45.51462122828495, -23.842249251424406], + [-45.5146412283702, -23.84224825137901], + [-45.51466022845373, -23.842248251336393], + [-45.514687228561876, -23.842244251273748], + [-45.51470722864704, -23.842243251228336], + [-45.51474122875384, -23.842227251143772], + [-45.5147602287946, -23.842211251092802], + [-45.51478022883986, -23.84219525103975], + [-45.51480422884378, -23.842157250966252], + [-45.51481922889637, -23.842152250930035], + [-45.51484322895919, -23.842136250867814], + [-45.514848228946384, -23.842123250849966], + [-45.51485522895316, -23.842114250829574], + [-45.51486222895986, -23.842105250809183], + [-45.51487422896451, -23.842087250772995], + [-45.51488922898773, -23.842071250731077], + [-45.51490322900119, -23.842053250690306], + [-45.51492722903458, -23.842026250622563], + [-45.51493722902248, -23.842005250589224], + [-45.51494422895164, -23.841967250553974], + [-45.51494922891212, -23.84194425053094], + [-45.51495122882467, -23.841908250507803], + [-45.51495322873722, -23.841872250484673], + [-45.51495722870679, -23.841854250466444], + [-45.51496222863785, -23.841820250437696], + [-45.5149662285886, -23.841795250415775], + [-45.51497122851443, -23.841759250385916], + [-45.514976228458885, -23.841730250359827], + [-45.514980228423084, -23.84171025034048], + [-45.51498722840571, -23.84169225031548], + [-45.514992228376876, -23.841673250294487], + [-45.515009228355396, -23.841637250237696], + [-45.51502622837678, -23.841617250189252], + [-45.5150432283953, -23.84159625014021], + [-45.51506022842203, -23.841578250092805], + [-45.51507922845209, -23.841558250039853], + [-45.51509322846556, -23.841540249999166], + [-45.51510822849409, -23.84152624995827], + [-45.515115228490174, -23.841513249935755], + [-45.51513022848924, -23.84148824988924], + [-45.51514622849819, -23.84146524984144], + [-45.515154228490566, -23.841449249815312], + [-45.51515322840331, -23.841418249801492], + [-45.5151532283178, -23.841386249784968], + [-45.51515022825115, -23.84136624978142], + [-45.51514822819962, -23.841350249777562], + [-45.51514222807169, -23.841312249771473], + [-45.5151422280236, -23.84129424976221], + [-45.515127227872, -23.84126224977927], + [-45.51510722774401, -23.8412472498165], + [-45.51508922758735, -23.841218249841845], + [-45.51507022746106, -23.841202249876325], + [-45.515050227300875, -23.841175249907163], + [-45.515030227140805, -23.841148249938186], + [-45.515024227031624, -23.841117249935657], + [-45.51499222684271, -23.841099249998123], + [-45.514975226695796, -23.8410722500224], + [-45.51495722653381, -23.841041250046743], + [-45.51494022639227, -23.841016250072038], + [-45.51491722618951, -23.840978250103998], + [-45.51491222609005, -23.840949250100238], + [-45.51488022585304, -23.840913250153516], + [-45.51485722561832, -23.840863250179343], + [-45.514857225583576, -23.840850250172544], + [-45.51483922543219, -23.840823250199094], + [-45.51482222529073, -23.840798250224285], + [-45.51480722519002, -23.840785250251244], + [-45.51478922502794, -23.840754250275648], + [-45.51478422494451, -23.840731250274963], + [-45.514764224797815, -23.84070925030852], + [-45.5147442246724, -23.840695250346165], + [-45.514724224512314, -23.840668250377092], + [-45.51470722438403, -23.840648250404954], + [-45.51469922429011, -23.84062625041153], + [-45.514694224230716, -23.840612250415482], + [-45.51468722411714, -23.840581250415212], + [-45.51467922403381, -23.840563250423894], + [-45.51467622397778, -23.840547250422382], + [-45.514671223907726, -23.840529250424332], + [-45.514666223832315, -23.84050925042517], + [-45.514661223732766, -23.84048025042138], + [-45.51465822367148, -23.840462250418867], + [-45.51465322360142, -23.84044425042083], + [-45.514653223510564, -23.84041025040321], + [-45.51465022341188, -23.840378250393442], + [-45.514645223336466, -23.840358250394367], + [-45.51464222325105, -23.84033125038714], + [-45.51462722313696, -23.840313250411544], + [-45.51461922302433, -23.84028425041452], + [-45.51461722300211, -23.840279250416447], + [-45.51460222287744, -23.840257250438707], + [-45.51457922272284, -23.840237250480016], + [-45.5145592225868, -23.840219250515542], + [-45.5145422224692, -23.84020325054542], + [-45.51452222236525, -23.840197250587252], + [-45.514490222181784, -23.840181250650733], + [-45.5144702220537, -23.840166250687954], + [-45.514438221875686, -23.84015225075253], + [-45.51442122178483, -23.840146250787534], + [-45.51440422169671, -23.840141250823105], + [-45.51438222158389, -23.84013525086935], + [-45.514360221468486, -23.840128250915143], + [-45.514342221373326, -23.84012225095247], + [-45.51431822125438, -23.84011725100369], + [-45.514298221161035, -23.840115251047546], + [-45.51428122107571, -23.840111251083655], + [-45.51426622099639, -23.840106251114758], + [-45.51423222083611, -23.840102251188917], + [-45.514207220710134, -23.84009625124195], + [-45.51419022061676, -23.840089251276453], + [-45.51417022052342, -23.840087251320323], + [-45.51414822037861, -23.8400692513604], + [-45.51412822027993, -23.840065251403235], + [-45.5141082201439, -23.84004725143874], + [-45.514066219863, -23.840011251514454], + [-45.514046219732236, -23.839995251551084], + [-45.514026219590875, -23.839975251585575], + [-45.513987219374, -23.839958251664306], + [-45.513970219251064, -23.839940251693204], + [-45.51395021911505, -23.839922251728794], + [-45.51393221903056, -23.83992025176817], + [-45.51390321886029, -23.839904251824986], + [-45.51387321868018, -23.83988625188295], + [-45.51385821860362, -23.839882251914545], + [-45.51385321857098, -23.83987825192373], + [-45.513836218458735, -23.839864251954648], + [-45.51381621835211, -23.83985725199597], + [-45.513811218319475, -23.83985325200506], + [-45.51379221822516, -23.839849252045646], + [-45.51377021812848, -23.839849252095], + [-45.51376221809325, -23.83984925211296], + [-45.51366921759604, -23.83981625230459], + [-45.51366921759071, -23.839814252303597], + [-45.51364921748416, -23.839807252344816], + [-45.51362921737746, -23.83980025238602], + [-45.51362721736333, -23.83979825238948], + [-45.513599217186766, -23.839778252442013], + [-45.51357221700923, -23.839756252491203], + [-45.51355521689708, -23.839742252522207], + [-45.51353721676984, -23.83972425255322], + [-45.51352021665501, -23.839709252583617], + [-45.51351721659899, -23.839693252582112], + [-45.51350021644676, -23.83966425260527], + [-45.51349521637137, -23.839644252606195], + [-45.513490216306565, -23.839628252609153], + [-45.51348921625406, -23.83961025260213], + [-45.5134842161466, -23.839578252596834], + [-45.51347921608456, -23.839563252600225], + [-45.51347621602865, -23.839547252598695], + [-45.513471215929094, -23.839518252594935], + [-45.513471215824886, -23.839479252574844], + [-45.51347021576706, -23.839459252566723], + [-45.513470215756364, -23.839455252564676], + [-45.513470215670836, -23.83942325254818], + [-45.513467215598894, -23.839401252543475], + [-45.513464215500136, -23.839369252533714], + [-45.513462215456585, -23.839356252531484], + [-45.51345921534721, -23.839320252519673], + [-45.51345621529665, -23.839306252519073], + [-45.51345321518194, -23.839268252506237], + [-45.513451215125045, -23.839250252501436], + [-45.5134512150823, -23.839234252493203], + [-45.51345021500042, -23.839205252480465], + [-45.5134502149523, -23.8391872524712], + [-45.513449214851725, -23.839151252454812], + [-45.51344921479561, -23.839130252443994], + [-45.51344621469951, -23.839099252434618], + [-45.51344321458481, -23.839061252421793], + [-45.513438214472, -23.839027252415466], + [-45.51343321440196, -23.83900925241734], + [-45.51342821433714, -23.838993252420376], + [-45.51342671428251, -23.83897525241439], + [-45.51342521422779, -23.838957252408473], + [-45.51341721409636, -23.838921252407783], + [-45.513414214024394, -23.838899252403202], + [-45.51341421401106, -23.83889425240056], + [-45.51341421395761, -23.838874252390266], + [-45.513411213866945, -23.838845252382015], + [-45.51341121382954, -23.83883125237479], + [-45.51340821374421, -23.83880425236755], + [-45.51340621368733, -23.838786252362766], + [-45.51340521359745, -23.83875425234852], + [-45.51340321354858, -23.838739252345245], + [-45.5134002134792, -23.838718252341092], + [-45.51339521340917, -23.838700252343113], + [-45.51339221334789, -23.83868225234049], + [-45.51337221314766, -23.838640252363657], + [-45.51336921308104, -23.83862025236009], + [-45.5133472128935, -23.838586252391835], + [-45.5133292127555, -23.83856425242091], + [-45.51332221271676, -23.838561252435067], + [-45.51331421263352, -23.83854325244376], + [-45.51330021253178, -23.83852825246742], + [-45.513299212514035, -23.838523252467024], + [-45.513280212382426, -23.838505252500386], + [-45.513262212255185, -23.838487252531497], + [-45.513243212155565, -23.83848125257097], + [-45.51324021209429, -23.838463252568406], + [-45.51322221196173, -23.838443252598516], + [-45.513205211844216, -23.8384272526283], + [-45.51319021173552, -23.8384112526538], + [-45.51318321169409, -23.838407252667444], + [-45.513175211568026, -23.838373252667783], + [-45.513175211562704, -23.838371252666775], + [-45.51317521150926, -23.838351252656384], + [-45.51317521146652, -23.838335252648115], + [-45.513177211432534, -23.838319252635372], + [-45.513181211415365, -23.838306252619688], + [-45.5131892114319, -23.838299252598148], + [-45.513196211443926, -23.838292252578793], + [-45.51320321146139, -23.83828725256053], + [-45.5132112114618, -23.838274252535868], + [-45.51322521150464, -23.838267252500795], + [-45.51323221149273, -23.838251252476926], + [-45.51324021151716, -23.838247252456835], + [-45.51323921145667, -23.83822625244828], + [-45.51323921142727, -23.838215252442573], + [-45.513241444396066, -23.838199897429615], + [-45.513239211379314, -23.83819730443333], + [-45.51315221072674, -23.83809625257631], + [-45.51313521064665, -23.83809425261342], + [-45.5131322106148, -23.838087252616518], + [-45.51309321042723, -23.838081252700928], + [-45.51307321033398, -23.838079252744787], + [-45.51306821029333, -23.838072252752443], + [-45.513026210092605, -23.83806625284351], + [-45.51300220997368, -23.838061252894718], + [-45.512982209880434, -23.83805925293855], + [-45.51297520983891, -23.838055252952234], + [-45.51295820974547, -23.8380482529868], + [-45.51294020965566, -23.838044253025036], + [-45.512925209570994, -23.83803725305514], + [-45.5129012094494, -23.8380312531059], + [-45.512896209414095, -23.838026253114474], + [-45.51287620932075, -23.838024253158316], + [-45.51287120929346, -23.838022253168525], + [-45.51285620918474, -23.83800625319393], + [-45.512832209063134, -23.838000253244623], + [-45.51281720898392, -23.83799525327574], + [-45.512797208879896, -23.837989253317534], + [-45.512780208797125, -23.83798625335414], + [-45.51275320863831, -23.83797125340688], + [-45.512731208541624, -23.837971253456242], + [-45.51270820840037, -23.83795625350008], + [-45.5126742082428, -23.83795325357485], + [-45.51265720812264, -23.8379362536042], + [-45.51265420809076, -23.837929253607264], + [-45.51262220794472, -23.837927253678036], + [-45.512602207808726, -23.83790925371364], + [-45.512580207669174, -23.837893253754736], + [-45.51256520756315, -23.837878253780644], + [-45.51253620743029, -23.83787625384468], + [-45.512513207243714, -23.83784425387967], + [-45.512489207090056, -23.837826253924348], + [-45.5124592069047, -23.837806253981253], + [-45.51245920686997, -23.837793253974535], + [-45.51243720676794, -23.837791254022857], + [-45.512414206541195, -23.837744254050204], + [-45.51239620640865, -23.837724254080204], + [-45.512381206286484, -23.83770325410301], + [-45.51237920623762, -23.837688254099774], + [-45.51236120611041, -23.837670254130884], + [-45.51233920597089, -23.83765425417197], + [-45.51232420585159, -23.83763425419524], + [-45.51229220566271, -23.837616254257746], + [-45.51226720547004, -23.83758525429784], + [-45.51224720534728, -23.837572254335964], + [-45.5122252051651, -23.83754025436881], + [-45.5122032050336, -23.837527254411427], + [-45.51219820496891, -23.837511254414387], + [-45.51216520478106, -23.837495254480164], + [-45.51214120462207, -23.837475254523614], + [-45.512121204464705, -23.837449254555136], + [-45.51209820432077, -23.837433254598366], + [-45.51208320420139, -23.837413254621715], + [-45.512034203943216, -23.83739725472339], + [-45.51201420374835, -23.837357254747566], + [-45.511989203585046, -23.83733725479333], + [-45.51196920340621, -23.837303254820597], + [-45.511952203283386, -23.837285254849526], + [-45.51194420314675, -23.837247254847814], + [-45.51192420304273, -23.837241254889626], + [-45.511904202898705, -23.837220254923597], + [-45.51188220276187, -23.83720525496519], + [-45.51186220262052, -23.837185254999657], + [-45.51184220248976, -23.837169255036347], + [-45.51182320234747, -23.83714725506758], + [-45.511815202274946, -23.837133255078275], + [-45.51181520224022, -23.837120255071554], + [-45.51179520213352, -23.83711325511284], + [-45.511790202092854, -23.83710625512042], + [-45.511785202070904, -23.837106255131605], + [-45.51178020204888, -23.83710625514282], + [-45.51172120161847, -23.837042255242157], + [-45.51170620151511, -23.83702825526856], + [-45.51170320150194, -23.837028255275285], + [-45.511698201437234, -23.837012255278243], + [-45.51167820131451, -23.83699925531639], + [-45.51167120124904, -23.836986255325368], + [-45.511666201208286, -23.836979255332906], + [-45.511663201109656, -23.83694725532321], + [-45.511643200968294, -23.83692725535768], + [-45.51163620087337, -23.836903255361037], + [-45.51161820070341, -23.836869255383792], + [-45.5116002005094, -23.836826255401945], + [-45.511593200443855, -23.83681325541091], + [-45.51158420040167, -23.836812255430623], + [-45.51157220021799, -23.836763255432146], + [-45.51155320008639, -23.836745255465587], + [-45.511535199953826, -23.836725255495555], + [-45.51151819983904, -23.83671025552595], + [-45.511513199774264, -23.8366942555289], + [-45.511498199660195, -23.83667625555328], + [-45.51149819960677, -23.836656255542955], + [-45.51148019948489, -23.836640255574988], + [-45.51146019934882, -23.83662225561058], + [-45.51145319927803, -23.836607255618517], + [-45.511448199213326, -23.83659125562149], + [-45.511428199053185, -23.836564255652394], + [-45.51142219894939, -23.836535255650862], + [-45.51141719886591, -23.83651225565017], + [-45.51141519879835, -23.836490255643305], + [-45.51141419873786, -23.836469255634672], + [-45.51141419866573, -23.83644225562079], + [-45.511414198553545, -23.836400255599095], + [-45.51141319842894, -23.836355255578052], + [-45.51141319834882, -23.836325255562578], + [-45.511410198244825, -23.83629125555177], + [-45.511410198210086, -23.836278255545025], + [-45.51140419813567, -23.836260255549128], + [-45.51140219804141, -23.83622825553709], + [-45.51139619794284, -23.836201255536682], + [-45.51139419788065, -23.83618125553079], + [-45.51139119782472, -23.836165255529245], + [-45.51138619772522, -23.836136255525485], + [-45.5113831976159, -23.836100255513553], + [-45.51137819754586, -23.836082255515485], + [-45.51137219742324, -23.83604625551041], + [-45.511370197347695, -23.836021255501937], + [-45.511364197233185, -23.83598825549836], + [-45.51136219718168, -23.8359722554945], + [-45.511359197042964, -23.83592525547695], + [-45.51135819692906, -23.83588425545801], + [-45.51135819688098, -23.835866255448813], + [-45.51135819680353, -23.83583725543373], + [-45.511357196751035, -23.835819255426706], + [-45.511357196660214, -23.835785255409164], + [-45.51135719661215, -23.835767255399784], + [-45.511356196565025, -23.835751255393866], + [-45.51135619646885, -23.835715255375206], + [-45.51135619642077, -23.835697255365915], + [-45.5113561963727, -23.835679255356577], + [-45.511355196325574, -23.835663255350646], + [-45.51135519624276, -23.83563225533454], + [-45.511355196194685, -23.835614255325265], + [-45.51135419607008, -23.835569255304257], + [-45.51135419602202, -23.835551255294977], + [-45.511354195925854, -23.835515255276324], + [-45.511353195825215, -23.835479255259994], + [-45.51135319573441, -23.835445255242465], + [-45.511352195668564, -23.83542225523279], + [-45.51135219557777, -23.835388255215154], + [-45.5113521955377, -23.835373255207507], + [-45.51135419547981, -23.835348255190066], + [-45.5113541954317, -23.83533025518077], + [-45.511356195384394, -23.83530925516541], + [-45.51135819535311, -23.835294255153176], + [-45.51136019531383, -23.8352762551394], + [-45.51136219522645, -23.835240255116357], + [-45.51136219517035, -23.835219255105446], + [-45.51136219513029, -23.83520425509771], + [-45.51136219508221, -23.83518625508843], + [-45.511361195005705, -23.835159255076704], + [-45.51136119499237, -23.835154255074144], + [-45.51136119490688, -23.835122255057637], + [-45.51136119483478, -23.835095255043584], + [-45.511360194776955, -23.835075255035616], + [-45.511360194723544, -23.835055255025235], + [-45.5113601946808, -23.835039255016962], + [-45.51136019462738, -23.83501925500657], + [-45.511359194537526, -23.83498725499229], + [-45.51135919446006, -23.834958254977302], + [-45.51135919444671, -23.834953254974746], + [-45.51135919439329, -23.83493325496436], + [-45.5113591943452, -23.83491525495508], + [-45.511358194298076, -23.834899254949075], + [-45.511358194215276, -23.834868254933053], + [-45.51135819420194, -23.834863254930525], + [-45.51135819415384, -23.834845254921124], + [-45.51135819411913, -23.834832254914485], + [-45.51135719406666, -23.83481425490737], + [-45.51135719405332, -23.834809254904822], + [-45.51135719400523, -23.834791254895524], + [-45.511357193965154, -23.834776254887785], + [-45.511357193946466, -23.83476925488411], + [-45.511357193909085, -23.83475525487688], + [-45.51135619386194, -23.834739254870964], + [-45.51135619381653, -23.834722254862086], + [-45.511356193712395, -23.8346832548419], + [-45.51135619366965, -23.834667254833647], + [-45.511355193625185, -23.834652254828146], + [-45.5113551935691, -23.83463125481733], + [-45.51135219345968, -23.834595254805414], + [-45.51138019351871, -23.834571254730275], + [-45.51137919339948, -23.834528254710282], + [-45.5113881933643, -23.83450025467562], + [-45.51140119327724, -23.83444625461855], + [-45.51142919313852, -23.834348254505063], + [-45.51146319301287, -23.834245254375677], + [-45.51147619287783, -23.834173254309235], + [-45.51150219278641, -23.834096254211165], + [-45.51152819267641, -23.834012254109407], + [-45.51155619266598, -23.833962254020815], + [-45.51160019263775, -23.833879253879207], + [-45.51162819258994, -23.83381525378338], + [-45.5116451925151, -23.8337592537163], + [-45.511680192527486, -23.83370625361046], + [-45.511719192527956, -23.833642253489877], + [-45.511767192522726, -23.833561253340324], + [-45.51182519246784, -23.8334452531504], + [-45.51186219240886, -23.833362253024486], + [-45.511873192393175, -23.833338252987392], + [-45.51190819237073, -23.833272252874824], + [-45.51194219234132, -23.833205252763925], + [-45.51197019224002, -23.83312125265778], + [-45.511981192213604, -23.833093252618543], + [-45.51200719222111, -23.83305325253963], + [-45.512073192289655, -23.832970252348712], + [-45.512147192422695, -23.83289825214553], + [-45.51217119246139, -23.83287325207884], + [-45.51219919253642, -23.832855252006677], + [-45.512232192590766, -23.832821251915142], + [-45.51228619265717, -23.83275725176099], + [-45.51236919289122, -23.832708251549462], + [-45.512421193039664, -23.832678251417338], + [-45.512452193063766, -23.832636251326104], + [-45.512515193113785, -23.832551251140863], + [-45.512641193360544, -23.832436250798864], + [-45.51276319363254, -23.832337250474193], + [-45.51280219371313, -23.83230325036905], + [-45.51286119379098, -23.832235250201684], + [-45.51295019400854, -23.83217024996844], + [-45.512983194094936, -23.8321482498831], + [-45.51301519405932, -23.832082249777272], + [-45.51309219425091, -23.832027249576146], + [-45.513194194507015, -23.831955249310173], + [-45.51326819468543, -23.83190024911578], + [-45.513301194777064, -23.831880249031496], + [-45.51335919488524, -23.83182524887297], + [-45.513390195021515, -23.831825248803423], + [-45.513416195151756, -23.831831248748177], + [-45.51344119530977, -23.83184924870138], + [-45.51346219542342, -23.83185724865845], + [-45.513495195573874, -23.83185924858547], + [-45.513519195609994, -23.831833248518276], + [-45.51351919552986, -23.831803248502695], + [-45.513536195492314, -23.831761248442856], + [-45.513565195609196, -23.83175724837576], + [-45.5136001957951, -23.83176924830347], + [-45.513624195908555, -23.831772248251184], + [-45.513641195961995, -23.83176424820889], + [-45.51368519612337, -23.831752248104095], + [-45.51370519623794, -23.831762248064326], + [-45.51372519643812, -23.831804248041184], + [-45.513746196567766, -23.831818248001316], + [-45.51378119672694, -23.831820247923897], + [-45.51381619688083, -23.831820247845418], + [-45.51384019698631, -23.831820247791576], + [-45.51387519711885, -23.83181224770889], + [-45.5139231973405, -23.83181624760329], + [-45.51396719759269, -23.831838247515993], + [-45.51399419776482, -23.831858247465743], + [-45.51402419788867, -23.831855247396913], + [-45.51404819791935, -23.83182724732863], + [-45.514072197998146, -23.831817247269612], + [-45.514135198312474, -23.831831247135526], + [-45.51417519855243, -23.83185524705824], + [-45.51421019874364, -23.83186924698698], + [-45.51423419887053, -23.831877246937225], + [-45.5142781990907, -23.83188724684375], + [-45.51430819929208, -23.831913246789888], + [-45.51432619944063, -23.831939246762932], + [-45.5143571995769, -23.831939246693405], + [-45.514416199780165, -23.83191824655019], + [-45.51446419999114, -23.831918246442523], + [-45.51449620016919, -23.83193224637797], + [-45.51448820023557, -23.831970246415565], + [-45.51452320041076, -23.831978246341155], + [-45.51455820060207, -23.831992246269976], + [-45.51458020073612, -23.832006246227767], + [-45.51460820083251, -23.831996246159857], + [-45.51462320083434, -23.83197224611378], + [-45.51462320079161, -23.83195624610554], + [-45.51465820097216, -23.831966246032145], + [-45.51468920122601, -23.83201024598531], + [-45.51470720134777, -23.83202624595328], + [-45.514729701433325, -23.832021245900172], + [-45.51475220151889, -23.832016245847132], + [-45.51479220169206, -23.83201524575692], + [-45.514846201966854, -23.83202924564302], + [-45.51491420235662, -23.832063245508024], + [-45.51498020277502, -23.8321112453848], + [-45.51501520300362, -23.832139245320707], + [-45.515059203346624, -23.83219524525092], + [-45.51509020352562, -23.832211245189637], + [-45.515136203786575, -23.832233245097868], + [-45.51518220412234, -23.83228324502045], + [-45.5152102043576, -23.832325244979323], + [-45.51523020452573, -23.832355244949945], + [-45.51526520472229, -23.832371244879702], + [-45.515316205010635, -23.832395244777718], + [-45.51534820519403, -23.832411244714194], + [-45.515367205290865, -23.8324162446741], + [-45.51538620538772, -23.832421244634148], + [-45.51542920563551, -23.83244324454901], + [-45.5154432057505, -23.83246324452788], + [-45.51547320593578, -23.832483244470964], + [-45.515515206136435, -23.832489244379897], + [-45.515556206364785, -23.832507244297112], + [-45.51561520665619, -23.832519244170975], + [-45.51565320682328, -23.832519244085724], + [-45.515681206943604, -23.832518244022413], + [-45.515714207120695, -23.832530243954583], + [-45.51575320732957, -23.832544243874327], + [-45.515779207443885, -23.832544243816013], + [-45.51580820755533, -23.8325382437479], + [-45.51584720772678, -23.832538243660412], + [-45.515869207876875, -23.832558243621335], + [-45.51589320801981, -23.832572243574734], + [-45.515913208107705, -23.83257224352986], + [-45.51596320834349, -23.832578243420855], + [-45.51600520854949, -23.832586243330702], + [-45.51604620877782, -23.83260424324801], + [-45.516077208943464, -23.832615243184172], + [-45.516101209038304, -23.832611243128277], + [-45.5161322091532, -23.83260324305456], + [-45.51615820932095, -23.83262324300662], + [-45.516173209397564, -23.832627242975022], + [-45.51621020956017, -23.832627242892], + [-45.5162362096264, -23.832609242824397], + [-45.516263209734404, -23.8326052427617], + [-45.51630020989709, -23.832605242678685], + [-45.516328210046794, -23.83261524262105], + [-45.51635421014517, -23.83260924255968], + [-45.516387210266174, -23.83260024248098], + [-45.51646621063475, -23.832608242307824], + [-45.516521210876554, -23.83260824218445], + [-45.51663221142856, -23.832632241947834], + [-45.5166982117668, -23.832650241809034], + [-45.51674421196097, -23.832647241704326], + [-45.516776212101625, -23.832647241632518], + [-45.51681821230762, -23.83265524154248], + [-45.51689421261506, -23.83264524136679], + [-45.51696721301065, -23.832673241217456], + [-45.516984213106824, -23.83268124118339], + [-45.51702321327821, -23.832681241095905], + [-45.517061213410564, -23.832668241004015], + [-45.51710221358012, -23.8326642409099], + [-45.517133213716356, -23.832664240840355], + [-45.517168213870164, -23.832664240761826], + [-45.51720021398944, -23.832656240685967], + [-45.517224214036204, -23.832634240620706], + [-45.51730321423647, -23.83257924041517], + [-45.51734021436443, -23.832566240325423], + [-45.517377214492306, -23.832553240235608], + [-45.517447214800015, -23.832553240078543], + [-45.51749921505534, -23.83256323996709], + [-45.51754321526201, -23.832568239871016], + [-45.517594215550346, -23.832592239768914], + [-45.517611215694515, -23.832618239744217], + [-45.51762621578182, -23.832626239714717], + [-45.51767021598594, -23.832630239618044], + [-45.517686716074515, -23.83263623958408], + [-45.517703216163106, -23.832642239550133], + [-45.5177362163402, -23.83265423948239], + [-45.51777121659027, -23.832690239422405], + [-45.51778021664047, -23.832694239404244], + [-45.51779721667778, -23.832680239358876], + [-45.517810216660116, -23.83265223931534], + [-45.51782571670692, -23.832644239276387], + [-45.51784121675364, -23.832636239237463], + [-45.517873216904945, -23.832640239167706], + [-45.51787513091848, -23.83264215916446], + [-45.51792494426753, -23.83269083707786], + [-45.51796321753565, -23.832728239011164], + [-45.517998217764365, -23.832756238947194], + [-45.5180162179076, -23.832780238919135], + [-45.51802921800215, -23.832794238897176], + [-45.51804921810605, -23.832800238855384], + [-45.518079218224564, -23.832795238785522], + [-45.51809721832511, -23.8328032387493], + [-45.51811921849125, -23.83282923871338], + [-45.51813921861662, -23.832843238675622], + [-45.51817621881126, -23.832855238598842], + [-45.51821121898645, -23.832863238524443], + [-45.51825021920065, -23.83287923844522], + [-45.5182812193369, -23.832879238375675], + [-45.51829821932612, -23.832847238321023], + [-45.51829821926734, -23.832825238309727], + [-45.518283219131945, -23.832799238329866], + [-45.51828321906782, -23.83277523831751], + [-45.51829321906905, -23.832759238286837], + [-45.51831521916046, -23.83275723823646], + [-45.51834421932001, -23.832769238177505], + [-45.51837921953792, -23.832793238111385], + [-45.51841021978638, -23.832835238063513], + [-45.51842671990705, -23.832853238035764], + [-45.51844322002763, -23.832871238008106], + [-45.51846022014507, -23.832887237978117], + [-45.51850822040688, -23.83290623788028], + [-45.518548220609354, -23.832916237795704], + [-45.518576220737785, -23.832918237733914], + [-45.5186092208722, -23.832914237657818], + [-45.518650221063126, -23.832918237567856], + [-45.51868322125092, -23.832934237501966], + [-45.51870722142582, -23.83296023746164], + [-45.51873422160864, -23.832984237413392], + [-45.518782221873046, -23.83300423731606], + [-45.51882122206053, -23.833010237231626], + [-45.51886122226309, -23.83302023714696], + [-45.51890422245744, -23.83302223705158], + [-45.51894822269091, -23.833037236960585], + [-45.51899022289691, -23.83304523687045], + [-45.519015222964086, -23.833029236806084], + [-45.51901122282352, -23.83298323679131], + [-45.518991222703576, -23.832971236830023], + [-45.51898022256436, -23.832937236837182], + [-45.518974222441855, -23.832901236832107], + [-45.51898522239936, -23.832867236789852], + [-45.519000222411776, -23.832847236745888], + [-45.51903222253913, -23.832842236671446], + [-45.51905922265784, -23.832842236610873], + [-45.51908722276479, -23.832836236544974], + [-45.519100222763235, -23.83281423650443], + [-45.519100222720496, -23.83279823649618], + [-45.51908722259912, -23.832774236513025], + [-45.519100222560176, -23.832738236465318], + [-45.51909822251927, -23.832726236463525], + [-45.51908222243824, -23.832722236497382], + [-45.519069222370405, -23.832718236524514], + [-45.519049222250466, -23.832706236563176], + [-45.51903822215401, -23.832688236578598], + [-45.51906222222214, -23.832674236517498], + [-45.51908422230808, -23.83267023646612], + [-45.519097222322486, -23.832654236428706], + [-45.519086222252746, -23.832646236449214], + [-45.5190712221761, -23.83264223648075], + [-45.519040222050556, -23.83264623655245], + [-45.51902122194569, -23.832638236590903], + [-45.51901222184734, -23.83261623659979], + [-45.51901222182597, -23.832608236595625], + [-45.51905122182908, -23.832545236475635], + [-45.51909022185082, -23.832489236359304], + [-45.51913122187606, -23.83243123623732], + [-45.51915522195219, -23.832420236177857], + [-45.51919322211926, -23.8324202360926], + [-45.519210222215335, -23.832428236058526], + [-45.51923222229063, -23.832420236005092], + [-45.5192362222762, -23.832408235989906], + [-45.51923622221208, -23.832384235977504], + [-45.51923622213193, -23.832354235962026], + [-45.519242222067426, -23.832320235931054], + [-45.51926422214813, -23.832314235878524], + [-45.51929522225756, -23.832304235803797], + [-45.51932322235668, -23.832295235736368], + [-45.51934322242318, -23.832287235687424], + [-45.51936922253747, -23.832287235629078], + [-45.519391222612754, -23.832279235575555], + [-45.5194212226591, -23.832247235491753], + [-45.519441222624145, -23.832201235423174], + [-45.51945222264038, -23.83218923539228], + [-45.51946722269029, -23.832183235355473], + [-45.51948722277558, -23.832182235310075], + [-45.51950622287507, -23.832188235270596], + [-45.519521222908935, -23.832176235230737], + [-45.51953422287526, -23.832142235183976], + [-45.51952622274396, -23.832106235183396], + [-45.51949722253091, -23.832074235231982], + [-45.519482222374215, -23.832040235248108], + [-45.51947322227585, -23.83201823525693], + [-45.51947722225064, -23.832002235239724], + [-45.51950822236552, -23.831994235166075], + [-45.51955422256501, -23.83199323506233], + [-45.519593222736454, -23.83199323497484], + [-45.519628222911635, -23.832001234900385], + [-45.51964322297764, -23.83200123486673], + [-45.51966122303538, -23.831993234822253], + [-45.51967822303527, -23.831965234769584], + [-45.51967422294814, -23.83193923476521], + [-45.519687222951944, -23.831919234725667], + [-45.519711223025304, -23.831907234665714], + [-45.51974122312776, -23.831896234592698], + [-45.51975422315286, -23.831884234557315], + [-45.519754223078046, -23.831856234542872], + [-45.519754223024606, -23.831836234532588], + [-45.519769223058475, -23.83182423449271], + [-45.519798223191266, -23.831826234428664], + [-45.51982222333421, -23.83184023438204], + [-45.51983522340194, -23.83184423435493], + [-45.5198502234359, -23.831832234315048], + [-45.519861223425394, -23.831810234279068], + [-45.519872223382905, -23.831776234236873], + [-45.519865223258684, -23.83174123423447], + [-45.51985022312329, -23.831715234254716], + [-45.519832222953255, -23.83168123427758], + [-45.51983222286777, -23.831649234261107], + [-45.519843222819944, -23.831613234217887], + [-45.519878222957715, -23.831607234136204], + [-45.51991722311312, -23.83160123404555], + [-45.51993422318256, -23.831599234006383], + [-45.51995822323455, -23.831579233942254], + [-45.51998222326258, -23.83155023387343], + [-45.519998223284794, -23.83153223382826], + [-45.520026223381144, -23.831522233760257], + [-45.52005422349889, -23.83152023369642], + [-45.52007222357796, -23.831520233656033], + [-45.520083223647624, -23.831528233635538], + [-45.52011822381755, -23.831534233560046], + [-45.520164224009, -23.831530233454785], + [-45.520196224144286, -23.83152823338197], + [-45.520233224261524, -23.83151123329011], + [-45.52024722427498, -23.831493233249414], + [-45.520260224289366, -23.831477233212006], + [-45.52028822441235, -23.831477233149194], + [-45.52031022454114, -23.83148923310602], + [-45.52033022470919, -23.83151923307662], + [-45.52034522480726, -23.831531233049162], + [-45.52036222488195, -23.831531233011017], + [-45.52039322499682, -23.831523232937275], + [-45.52041722511827, -23.83152923288657], + [-45.52043222523773, -23.831549232863207], + [-45.52044322532341, -23.831563232845728], + [-45.52045722541699, -23.831575232820537], + [-45.52048122551717, -23.83157323276567], + [-45.520494225547594, -23.8315632327313], + [-45.5205092255494, -23.83153923268523], + [-45.52052022555767, -23.83152423265283], + [-45.52053522563419, -23.831528232621288], + [-45.52056822581136, -23.83154023255337], + [-45.52058822589924, -23.831540232508484], + [-45.5206092259702, -23.83153223245729], + [-45.52061822597765, -23.83152023243088], + [-45.52062722597439, -23.831504232402438], + [-45.52064022601026, -23.8314962323692], + [-45.52066222611757, -23.831500232321854], + [-45.520686226271174, -23.831518232277283], + [-45.52069922636575, -23.831532232255324], + [-45.520704226462506, -23.831560232258465], + [-45.520710226526234, -23.831574232252308], + [-45.520715226580336, -23.831586232247286], + [-45.52074122669464, -23.831586232188947], + [-45.52076522678936, -23.831582232132963], + [-45.520795226921216, -23.831582232065653], + [-45.520819227032085, -23.831584232012816], + [-45.52083922716804, -23.831602231977204], + [-45.52086522728768, -23.831604231919965], + [-45.520892227398306, -23.83160123185778], + [-45.52092222755689, -23.83161123179563], + [-45.52095322775727, -23.831635231738492], + [-45.520966227867824, -23.83165523171958], + [-45.521001228075065, -23.831675231651325], + [-45.521054228388195, -23.831705231547936], + [-45.52109122862024, -23.831731231478244], + [-45.52112222879389, -23.83174523141598], + [-45.52115022892774, -23.831749231355193], + [-45.521178229050804, -23.831749231292363], + [-45.521209229160206, -23.831739231217615], + [-45.521235229279846, -23.83174123116029], + [-45.521253229391014, -23.831753231126115], + [-45.521262229489395, -23.83177523111724], + [-45.5212492295124, -23.831805231161866], + [-45.521242229540455, -23.83182723118893], + [-45.521251229628064, -23.831845231177997], + [-45.52128422982662, -23.831865231114328], + [-45.521314229958456, -23.83186523104701], + [-45.52136023014992, -23.831861230941644], + [-45.52141023028946, -23.831831230813982], + [-45.52145423044275, -23.831816230707513], + [-45.52148223056582, -23.83181623064468], + [-45.52152023075424, -23.831824230563573], + [-45.521546230953966, -23.831856230521705], + [-45.52158323128763, -23.83192023047164], + [-45.521595231431235, -23.8319542304623], + [-45.5215792314491, -23.83198723051519], + [-45.52155823141029, -23.832007230572607], + [-45.52152923137906, -23.83204323065629], + [-45.521486231307634, -23.83208723077546], + [-45.52144423118984, -23.832112230882625], + [-45.5213882310399, -23.832148231026828], + [-45.521370231008824, -23.83216623107648], + [-45.52137023105157, -23.83218223108471], + [-45.521386231170084, -23.832200231058167], + [-45.52137323116638, -23.832220231097626], + [-45.521360231151995, -23.832236231135024], + [-45.52136023121077, -23.83225823114632], + [-45.52136923129303, -23.83227423113446], + [-45.52139123146994, -23.83230423110047], + [-45.52140823163281, -23.832337231079375], + [-45.52142123177014, -23.83236723106568], + [-45.52143023192731, -23.83241123106816], + [-45.52144623210983, -23.832453231053922], + [-45.52148323248085, -23.832531231011075], + [-45.52151623278096, -23.832589230966917], + [-45.521518232880595, -23.832623230980026], + [-45.52151023295762, -23.83266523101955], + [-45.52149523292644, -23.832678231059933], + [-45.521451232738414, -23.832680231159678], + [-45.52141423259713, -23.832688231246905], + [-45.521392232575295, -23.8327162313107], + [-45.5213702325801, -23.83275423137961], + [-45.521360232600344, -23.832778231414437], + [-45.52135123270249, -23.832831231462016], + [-45.52133623273268, -23.83286723151419], + [-45.52133623281285, -23.832897231529667], + [-45.521343232923826, -23.83292723152942], + [-45.5213602330199, -23.83293523149544], + [-45.52138223313794, -23.83294323145013], + [-45.5213952332326, -23.832957231428196], + [-45.52139123326305, -23.832975231446426], + [-45.521371233191104, -23.83298123149445], + [-45.521374233263174, -23.83300323149902], + [-45.52139123339133, -23.83302323147124], + [-45.52143123358852, -23.83303123138563], + [-45.52149223391541, -23.833053231260024], + [-45.52154923427285, -23.833093231152684], + [-45.52168523517521, -23.83320723090633], + [-45.52173723551604, -23.833249230811223], + [-45.52180323588625, -23.833279230678635], + [-45.52187723622218, -23.8332832305146], + [-45.52192123638084, -23.833270230409106], + [-45.52195223650636, -23.833266230337415], + [-45.52202623691723, -23.83329823018792], + [-45.522127237478635, -23.833342229983906], + [-45.52216823772301, -23.833366229904314], + [-45.52221423800533, -23.833396229816426], + [-45.52224923819655, -23.833410229745184], + [-45.52228023833289, -23.833410229675607], + [-45.5223082383811, -23.833382229598215], + [-45.52230823833032, -23.833363229588475], + [-45.52232123838213, -23.833361229558268], + [-45.52233923847725, -23.833367229521013], + [-45.52236923867326, -23.83339122946599], + [-45.52239423881524, -23.833403229416106], + [-45.52241823893133, -23.833407229364262], + [-45.522463239086356, -23.833391229255028], + [-45.52249223914966, -23.833367229177625], + [-45.52250523909992, -23.833327229127804], + [-45.52251373911054, -23.833317229103535], + [-45.52252223912125, -23.833307229079285], + [-45.52257023926537, -23.833282228958737], + [-45.52259623937431, -23.833280228899362], + [-45.52263623952332, -23.833270228804402], + [-45.52267523973217, -23.833284228724114], + [-45.52270823993065, -23.833304228660285], + [-45.52274524010935, -23.833310228580302], + [-45.52278724026712, -23.833300228480944], + [-45.522859240500814, -23.833269228303294], + [-45.52288724057042, -23.83324922823017], + [-45.522937240699264, -23.83321522810046], + [-45.52296324081881, -23.833217228043118], + [-45.52298324096022, -23.833237228008592], + [-45.52299824109029, -23.833261227987233], + [-45.52299924125504, -23.833321228015887], + [-45.52299024129028, -23.833349228050544], + [-45.52296824126846, -23.83337722811438], + [-45.522936241181306, -23.83339722819646], + [-45.52290324108174, -23.833414228279377], + [-45.52288324104722, -23.83343422833453], + [-45.522881241123976, -23.833466228355505], + [-45.522886241194044, -23.833484228353537], + [-45.52290324132763, -23.833506228326744], + [-45.52292324143688, -23.833514228285935], + [-45.522988241679755, -23.833498228131795], + [-45.52305224188893, -23.83347122797423], + [-45.523067241922774, -23.83345922793447], + [-45.523097241958396, -23.833423227848513], + [-45.5231132419806, -23.83340522780335], + [-45.52313224206408, -23.833405227760696], + [-45.523167242244604, -23.833415227687322], + [-45.523211242454, -23.833421227591632], + [-45.52323724254156, -23.83341122752818], + [-45.523252242540686, -23.833386227481487], + [-45.52325024248379, -23.83336822747683], + [-45.523228242328344, -23.833346227514834], + [-45.52319724212795, -23.833322227572108], + [-45.52318024199445, -23.83330022759886], + [-45.523171241890715, -23.833276227606675], + [-45.52316424179042, -23.83325022760896], + [-45.52313824161209, -23.833226227654915], + [-45.523107241417044, -23.83320422771321], + [-45.52308824127467, -23.83318222774447], + [-45.52308524117065, -23.833148227733695], + [-45.52307924108008, -23.833124227734857], + [-45.523063240972434, -23.83311022776354], + [-45.52304624083885, -23.833088227790345], + [-45.52303924071192, -23.833052227787526], + [-45.52305424068162, -23.83301622773526], + [-45.52308224068968, -23.832973227650253], + [-45.52309724060601, -23.832917227587785], + [-45.52311324056942, -23.832877227531238], + [-45.52310424042293, -23.832837227530813], + [-45.52309524031395, -23.832811227537594], + [-45.5230712401924, -23.832805227588405], + [-45.523019240017355, -23.83282522771545], + [-45.52298423990626, -23.832841227802184], + [-45.52296023978472, -23.83283522785299], + [-45.522933239639386, -23.832825227908494], + [-45.52290023944618, -23.832807227973205], + [-45.522802238833805, -23.83273922815816], + [-45.52274923847789, -23.832693228253348], + [-45.52271623823669, -23.832657228308893], + [-45.522701238122664, -23.832639228333207], + [-45.52270323807799, -23.832619228318457], + [-45.522723238139115, -23.832609228268474], + [-45.52273623819627, -23.83260922823929], + [-45.522736238137455, -23.83258722822792], + [-45.522736238067985, -23.832561228214495], + [-45.5227462380692, -23.832545228183793], + [-45.522766238162404, -23.832547228139926], + [-45.522806238397024, -23.832569228061537], + [-45.52283223853796, -23.832579228008388], + [-45.5228602386611, -23.83257922794554], + [-45.52287823871344, -23.832569227899956], + [-45.52289723876219, -23.8325562278506], + [-45.522906238732304, -23.832530227816964], + [-45.52288223857868, -23.832512227861564], + [-45.522838238326514, -23.832490227949037], + [-45.52281623820849, -23.832482227994255], + [-45.52274423781712, -23.83245422814142], + [-45.522709237639305, -23.83244522821528], + [-45.522663237399726, -23.83243122831131], + [-45.522623237186494, -23.83241722839385], + [-45.52260423707095, -23.832405228430385], + [-45.52259723698141, -23.83238322843473], + [-45.522608236992305, -23.83236922840282], + [-45.522636237064596, -23.83235022833012], + [-45.52266523714392, -23.83233222825585], + [-45.522684237158, -23.832306228199784], + [-45.52269523713147, -23.832278228160664], + [-45.52268023698001, -23.83224622817786], + [-45.52264723676017, -23.8322182282375], + [-45.52260923653433, -23.83219622831138], + [-45.52257923637578, -23.832186228373534], + [-45.5225592362131, -23.832158228404044], + [-45.522546236075776, -23.832128228417776], + [-45.52255023602385, -23.832102228395375], + [-45.522574236075904, -23.83208222833126], + [-45.52259623612187, -23.832063228272016], + [-45.5226072361274, -23.83204722823909], + [-45.52262423616466, -23.8320332281937], + [-45.52261523600759, -23.831989228191222], + [-45.52258523580081, -23.831961228244115], + [-45.52255623564138, -23.831949228303106], + [-45.52251223544266, -23.831947228400736], + [-45.522466235243186, -23.831948228504558], + [-45.522438235109426, -23.83194422856527], + [-45.52237223479797, -23.831936228709246], + [-45.52234423465353, -23.831928228767996], + [-45.52227423434596, -23.8319282289251], + [-45.52222823410637, -23.831914229021113], + [-45.52220223391719, -23.831886229065], + [-45.5221912337941, -23.83185822907527], + [-45.52220423368012, -23.831794229013123], + [-45.522203233488675, -23.83172422897927], + [-45.522184233343815, -23.831701229010093], + [-45.52215523313076, -23.831669229058623], + [-45.52213923293753, -23.831623229070807], + [-45.52213923280393, -23.83157322904507], + [-45.52216323265291, -23.831477228941694], + [-45.52219123247935, -23.831366228821704], + [-45.52221523236564, -23.831284228725526], + [-45.52222123227449, -23.83124022868937], + [-45.52222123218629, -23.831207228672394], + [-45.52223423209916, -23.831153228615342], + [-45.522290232136754, -23.831075228449507], + [-45.52233623210107, -23.83098622830041], + [-45.52243123213115, -23.83084122801238], + [-45.52246823213345, -23.830781227898527], + [-45.522512232107694, -23.83069922775748], + [-45.5225462320941, -23.83063822764964], + [-45.522590232105735, -23.830570227515913], + [-45.5226442321106, -23.830483227349887], + [-45.522696232119955, -23.83040122719089], + [-45.52273523213371, -23.83034222707297], + [-45.52276123209302, -23.830284226984805], + [-45.52280723212947, -23.830222226849564], + [-45.522863232121715, -23.830127226674964], + [-45.52291123213491, -23.830053226529017], + [-45.522955232117155, -23.829974226389595], + [-45.52297823210604, -23.82993222631633], + [-45.52301323212087, -23.829880226211028], + [-45.52305523216917, -23.82982922609052], + [-45.52310023227073, -23.82979322597095], + [-45.52314423238925, -23.829765225857777], + [-45.523207232471, -23.829692225678762], + [-45.52325923254992, -23.829636225533193], + [-45.5232962326216, -23.829602225432595], + [-45.52334023268401, -23.829553225308608], + [-45.5233752328057, -23.829541225223963], + [-45.52343423295819, -23.829501225070924], + [-45.52347523303683, -23.82946322495929], + [-45.52353123315189, -23.82941422480841], + [-45.52357723330591, -23.82939622469584], + [-45.52360823339947, -23.829380224618113], + [-45.5236512335136, -23.829352224507105], + [-45.523689233683214, -23.829353224422324], + [-45.523715233834885, -23.829367224371293], + [-45.52373923399381, -23.829387224327707], + [-45.52376723416495, -23.829405224274126], + [-45.523791234270384, -23.82940522422027], + [-45.52382923441599, -23.82939722413093], + [-45.52387023453197, -23.8293732240265], + [-45.5238962345234, -23.829327223944464], + [-45.52389623443789, -23.829295223927996], + [-45.52391123443156, -23.829268223880394], + [-45.52394823455143, -23.82925222378912], + [-45.52398823472723, -23.82925222369936], + [-45.52402023487851, -23.829256223629585], + [-45.524055235069774, -23.82927022355825], + [-45.52409523527755, -23.8292822234747], + [-45.524132235466894, -23.829292223396845], + [-45.524173235689744, -23.82930822331296], + [-45.524235236069124, -23.829348223194483], + [-45.524270236260314, -23.829362223123137], + [-45.52430923645576, -23.829371223040297], + [-45.524346236618285, -23.82937122295723], + [-45.524381236772136, -23.82937122287871], + [-45.52442123696387, -23.82937722279199], + [-45.52444723712624, -23.8293952227429], + [-45.52449123735698, -23.829409222651453], + [-45.52451723748195, -23.829413222595132], + [-45.52457023774692, -23.829425222482392], + [-45.52460923795031, -23.829437222400983], + [-45.524659238194126, -23.829446222293445], + [-45.5247072384157, -23.82945022218783], + [-45.52473323844979, -23.82942022211393], + [-45.52474923849871, -23.82941222207397], + [-45.524788238702094, -23.829424221992614], + [-45.52484323898653, -23.829440221877423], + [-45.524886239207554, -23.82945222178711], + [-45.52492623939938, -23.829458221700403], + [-45.52494123939312, -23.82943122165282], + [-45.52494323934313, -23.829409221637054], + [-45.524965239434486, -23.829407221586635], + [-45.52499823957947, -23.829407221512586], + [-45.52502623972389, -23.82941522145381], + [-45.52504823986327, -23.82943122141268], + [-45.52507223999013, -23.82943922136287], + [-45.525098240104406, -23.829439221304522], + [-45.52512024016896, -23.82942722124907], + [-45.525155240269356, -23.829407221160217], + [-45.52519424044066, -23.82940722107269], + [-45.52522924059185, -23.829406220993615], + [-45.5252752408474, -23.829426220900668], + [-45.525341241158735, -23.829434220756625], + [-45.525354241258626, -23.829450220735755], + [-45.525420241607456, -23.829472220598912], + [-45.52546624185768, -23.829490220504926], + [-45.525503242030894, -23.829494220423996], + [-45.52555524224874, -23.82949022030518], + [-45.525584242298656, -23.829461220225134], + [-45.52561224232549, -23.82942522014381], + [-45.525640242389734, -23.829403220069572], + [-45.52568024255482, -23.829399219977763], + [-45.52570824267244, -23.829397219913904], + [-45.52577124297069, -23.829405219776586], + [-45.5257892430551, -23.829407219737273], + [-45.52583324326179, -23.829412219641075], + [-45.52586924340392, -23.82940621955723], + [-45.52588824346073, -23.8293962195093], + [-45.52591324357051, -23.82939621945318], + [-45.52594824372435, -23.82939621937464], + [-45.525976243860754, -23.829401219314427], + [-45.5260232440993, -23.82941321921513], + [-45.52605824426652, -23.82941821913913], + [-45.526144244697775, -23.829438218956366], + [-45.52621824507636, -23.829458218800628], + [-45.526287245481136, -23.829496218665366], + [-45.52635624589123, -23.82953621853102], + [-45.52638124604911, -23.829554218484166], + [-45.52643324625625, -23.829546218363376], + [-45.5264852464714, -23.829541218244113], + [-45.52654924675259, -23.829541218100466], + [-45.52658724690347, -23.82953521801202], + [-45.52662824709165, -23.82953821792159], + [-45.5266582472288, -23.829540217855303], + [-45.526680247325515, -23.829540217805892], + [-45.52669124732576, -23.829522217771878], + [-45.52666124713507, -23.82950021782794], + [-45.52662824696337, -23.829490217896826], + [-45.526581246730146, -23.829480217997137], + [-45.52656224659857, -23.829462218030528], + [-45.526556246518815, -23.829442218033744], + [-45.52659224667694, -23.829442217952923], + [-45.526633246875804, -23.829449217864564], + [-45.52668824713888, -23.82945721774518], + [-45.52673824735586, -23.829456217632433], + [-45.5268012476861, -23.82947621750131], + [-45.526851247967315, -23.82949921740095], + [-45.52688424811227, -23.829499217326884], + [-45.52691924818316, -23.829468217232286], + [-45.52695024826592, -23.829448217152436], + [-45.526985248371645, -23.82943021706461], + [-45.52705424860001, -23.829402216895296], + [-45.52709524865189, -23.82935421677858], + [-45.52711124863388, -23.829321216725706], + [-45.52715824876029, -23.829291216604766], + [-45.52722124895419, -23.829260216447317], + [-45.52729324931866, -23.829278216295048], + [-45.52732624944225, -23.82927021621679], + [-45.527353249534166, -23.82926021615101], + [-45.527375249644145, -23.82926521610417], + [-45.52738624974596, -23.829285216089833], + [-45.52739524983899, -23.829305216079906], + [-45.52740324990081, -23.82931521606711], + [-45.527439250099135, -23.829330215994045], + [-45.52748025030601, -23.82934021590718], + [-45.52750525041045, -23.829338215850065], + [-45.52751325031735, -23.82929021580741], + [-45.52753225036604, -23.829277215758047], + [-45.52755925045797, -23.82926721569226], + [-45.52758425055447, -23.829262215633513], + [-45.52761425068359, -23.829261215565662], + [-45.52765025088182, -23.829276215492584], + [-45.52768625108816, -23.829294215421104], + [-45.527705251150216, -23.82928621537429], + [-45.5277052510647, -23.829254215357842], + [-45.52768325090661, -23.82923121539534], + [-45.52766425074287, -23.82920121542264], + [-45.52768325078366, -23.829185215371666], + [-45.52770225086711, -23.829185215329026], + [-45.52772125095056, -23.829185215286376], + [-45.5277652512107, -23.829210215200497], + [-45.527796251408375, -23.829233215142708], + [-45.527818251518426, -23.82923821509595], + [-45.527876251861464, -23.829271214982732], + [-45.52793425220985, -23.82930621487052], + [-45.527959252386445, -23.829331214827288], + [-45.52797225250516, -23.829354214810003], + [-45.52799425260175, -23.829354214760603], + [-45.528008252641904, -23.829346214725003], + [-45.52802225267668, -23.829336214688514], + [-45.528069252875135, -23.829333214581386], + [-45.52812625316033, -23.829346214460124], + [-45.528170253399075, -23.829363214370193], + [-45.52822325372019, -23.82939621426809], + [-45.52828125410858, -23.8294462141637], + [-45.5283252543901, -23.829479214081868], + [-45.52835825456189, -23.829489214012973], + [-45.528375254716764, -23.82951921399025], + [-45.52838025482691, -23.82955221399599], + [-45.52841325501196, -23.82956721392963], + [-45.52844925518354, -23.82957221385145], + [-45.52848525533365, -23.829569213769098], + [-45.52851025544352, -23.829569213712972], + [-45.52852925562052, -23.829604213688313], + [-45.52854525574694, -23.829625213663167], + [-45.52856825590149, -23.829645213621795], + [-45.528598256033305, -23.82964521355444], + [-45.528631256218354, -23.82966021348819], + [-45.52866425636332, -23.829660213414087], + [-45.52868925647327, -23.82966021335797], + [-45.52870325658816, -23.829680213336804], + [-45.52869725666343, -23.82971821336988], + [-45.528706256801804, -23.829755213368678], + [-45.52871425695195, -23.82979821337284], + [-45.528709256999505, -23.829824213397494], + [-45.528684256881604, -23.82982121345207], + [-45.5286672567615, -23.829804213481403], + [-45.52864525666487, -23.82980421353079], + [-45.52864325669611, -23.8298192135431], + [-45.52865925683324, -23.829844213519983], + [-45.528676256982834, -23.829872213496248], + [-45.52865725703295, -23.82992221356468], + [-45.528638257107204, -23.829981213637705], + [-45.52863525717424, -23.83001121365989], + [-45.528663257364, -23.830036213609908], + [-45.52868225746092, -23.8300412135698], + [-45.528740257635555, -23.830011213424143], + [-45.528783257728264, -23.82997521330904], + [-45.52877025759094, -23.82994521332278], + [-45.52875025740678, -23.829909213349197], + [-45.528758257383146, -23.829887213319882], + [-45.5287752574017, -23.829866213270943], + [-45.528810257536826, -23.829859213188737], + [-45.528841257673, -23.829859213119136], + [-45.52886625782823, -23.829876213071827], + [-45.52887125792511, -23.829904213075018], + [-45.52889125809314, -23.829934213045455], + [-45.52891025820332, -23.829944213007984], + [-45.528957258391095, -23.82993721289884], + [-45.52900625861713, -23.829941212790942], + [-45.52902525870058, -23.82994121274827], + [-45.52905025876499, -23.829924212683437], + [-45.52907225885369, -23.82992121263251], + [-45.52912125899408, -23.829893212508015], + [-45.529154259090944, -23.829875212424753], + [-45.529171259104125, -23.82985221237469], + [-45.52921525927873, -23.82984521227229], + [-45.52927325956563, -23.82985721214826], + [-45.529328259868805, -23.82988021203667], + [-45.529363260049266, -23.829890211963185], + [-45.529396260213026, -23.829897211892746], + [-45.52942426030933, -23.82988721182469], + [-45.52944026033148, -23.829869211779535], + [-45.52948226050266, -23.82986421168271], + [-45.529548260811296, -23.829871211538094], + [-45.52958926104492, -23.829891211456296], + [-45.529647261299736, -23.82989121132609], + [-45.52970726160345, -23.829906211199177], + [-45.52975726189802, -23.829934211101257], + [-45.52979026208833, -23.829951211036], + [-45.52980926217187, -23.829951210993343], + [-45.529853262218154, -23.829896210866224], + [-45.52989126234238, -23.82988021077268], + [-45.52993526253567, -23.829880210673895], + [-45.52997426270706, -23.829880210586342], + [-45.53002626293548, -23.829880210469597], + [-45.53011426329268, -23.829869210266345], + [-45.5301422634157, -23.829869210203476], + [-45.53018626364377, -23.829882210111382], + [-45.530205263705845, -23.82987421006466], + [-45.53022126370136, -23.82984621001424], + [-45.53025426365106, -23.829773209902584], + [-45.530254263570875, -23.829743209887233], + [-45.53025426347463, -23.829707209868683], + [-45.53027026351827, -23.829697209827565], + [-45.53031126369842, -23.829697209735514], + [-45.5303392637866, -23.829684209665952], + [-45.53035826378992, -23.829654209607877], + [-45.53039126390814, -23.82964420952861], + [-45.53042726405835, -23.829641209446244], + [-45.53044626414179, -23.829641209403604], + [-45.530468264203655, -23.829628209347597], + [-45.530517264392245, -23.829618209232418], + [-45.53057826464676, -23.829613209092905], + [-45.530627264819316, -23.829597208974576], + [-45.530674264999064, -23.829587208863973], + [-45.53070726508252, -23.829564208778], + [-45.530737265059265, -23.829506208680797], + [-45.53074526503296, -23.829483208651055], + [-45.5307622650596, -23.82946520860355], + [-45.53079226518595, -23.829463208535184], + [-45.53083626531777, -23.829440208424614], + [-45.530860265361746, -23.829417208358866], + [-45.53090726550672, -23.82939420824146], + [-45.530940265651786, -23.82939420816735], + [-45.530995265893324, -23.829394208043873], + [-45.53104726608705, -23.829381207920523], + [-45.531086266210224, -23.829363207823725], + [-45.53111926630171, -23.82934320773927], + [-45.53113226632417, -23.82933020770339], + [-45.531165266415655, -23.829310207618956], + [-45.531187266525606, -23.829315207572197], + [-45.531209266683796, -23.82933820753466], + [-45.53124026683068, -23.829342207467082], + [-45.531256266874216, -23.829332207426003], + [-45.53127826682387, -23.829277207348376], + [-45.531302266800935, -23.829229207269723], + [-45.53133826687626, -23.82919820717297], + [-45.531357266858116, -23.829160207110828], + [-45.53135726678325, -23.829132207096404], + [-45.53136526675151, -23.829107207065544], + [-45.531390266794546, -23.829082206996514], + [-45.53139026668492, -23.829041206975507], + [-45.531411266630094, -23.828986206900044], + [-45.531466266767566, -23.828947206756457], + [-45.531505266933486, -23.82894520666788], + [-45.53153526707865, -23.828950206603047], + [-45.53158226728512, -23.82895020649753], + [-45.53160926736095, -23.828934206428695], + [-45.53165026754109, -23.828934206336644], + [-45.53168126771202, -23.828947206273725], + [-45.531730267892584, -23.828934206157008], + [-45.53176626797047, -23.828904206060756], + [-45.531796268032764, -23.828878205979976], + [-45.5318322681561, -23.82886520589256], + [-45.53190626855606, -23.828893205740755], + [-45.53192826875967, -23.828933205711945], + [-45.531956269093904, -23.829012205689665], + [-45.531973269337, -23.82907520568396], + [-45.53198126953261, -23.829135205696844], + [-45.53201426977378, -23.829171205641227], + [-45.532056269990385, -23.829183205553118], + [-45.53210027020239, -23.829190205457863], + [-45.53213327037407, -23.82920020538905], + [-45.532169270558924, -23.829210205313295], + [-45.53221827077425, -23.829210205203275], + [-45.53225727096699, -23.829218205119766], + [-45.53231727128938, -23.829240204996402], + [-45.532328271399116, -23.829263204983484], + [-45.53239427165435, -23.829250204828664], + [-45.532449271984234, -23.82928320472212], + [-45.532510272265554, -23.829288204587687], + [-45.53255727249872, -23.829298204487312], + [-45.53260927276463, -23.829312204377768], + [-45.53265027287782, -23.82928720427283], + [-45.53268927300907, -23.829272204177542], + [-45.53271627312772, -23.829272204116904], + [-45.53275227332591, -23.829287204043784], + [-45.53277727339566, -23.829272203979926], + [-45.532807273554184, -23.829282203917735], + [-45.53283227377633, -23.82932420388321], + [-45.532879273956055, -23.829314203772505], + [-45.53290627400782, -23.82928920369908], + [-45.53299427420456, -23.829218203464865], + [-45.53302427428823, -23.829200203388357], + [-45.53304627435819, -23.8291902033337], + [-45.53309827465339, -23.82921520322981], + [-45.533167274996636, -23.829230203082567], + [-45.5332222752035, -23.82921720295238], + [-45.53325227536203, -23.82922720289018], + [-45.533274275520135, -23.829250202852645], + [-45.53330527561361, -23.829234202774817], + [-45.5333042755209, -23.829201202760103], + [-45.53328827535168, -23.82916420277698], + [-45.53329927535726, -23.829148202744054], + [-45.53335727559867, -23.82914320261119], + [-45.53338927572586, -23.829138202536786], + [-45.533442275958706, -23.82913820241777], + [-45.533491276187306, -23.829143202310263], + [-45.53352427635898, -23.829153202241347], + [-45.533590276662316, -23.829158202095762], + [-45.53364827692244, -23.829160201966516], + [-45.53368927710257, -23.829160201874465], + [-45.53374427726123, -23.82912920173495], + [-45.533796277409465, -23.82909920160275], + [-45.533799277347754, -23.8290712015817], + [-45.533782277219615, -23.829051201609538], + [-45.53375527706625, -23.82903820166347], + [-45.53376927707963, -23.829020201622782], + [-45.53380227717116, -23.829000201538438], + [-45.533821277254525, -23.829000201495763], + [-45.53384327731645, -23.828987201439656], + [-45.53389027758982, -23.82901220134692], + [-45.533920277804384, -23.82904320129558], + [-45.53397227808633, -23.829063201189044], + [-45.533997278254915, -23.829085201144174], + [-45.53401927847996, -23.829133201119497], + [-45.534058278726164, -23.829161201046343], + [-45.53409927896513, -23.829183200965534], + [-45.53414927922482, -23.829198200860954], + [-45.53418727939177, -23.829198200775615], + [-45.53422027958486, -23.829216200710732], + [-45.534254279822406, -23.829249200651414], + [-45.534265279916205, -23.82926620063536], + [-45.53428127999987, -23.829271200602044], + [-45.53431128013967, -23.829274200536197], + [-45.53432828020097, -23.82926920049547], + [-45.53440528053649, -23.82926820032206], + [-45.534443280724844, -23.829276200240784], + [-45.53446328083147, -23.829283200199495], + [-45.534479280861646, -23.829268200155866], + [-45.534498280918335, -23.829258200108033], + [-45.53450928095331, -23.82925320008078], + [-45.53453128112478, -23.829281200045777], + [-45.534548281204785, -23.829283200008604], + [-45.53457628135452, -23.829293199950897], + [-45.5346062814863, -23.829293199883534], + [-45.53463328166644, -23.829316199834658], + [-45.53465028175446, -23.82932119979912], + [-45.53466928182193, -23.82931519975332], + [-45.53468028191306, -23.82933119973683], + [-45.53468028196654, -23.829351199747055], + [-45.5346972820732, -23.82936319971518], + [-45.53473828226669, -23.829368199625634], + [-45.53477928248157, -23.82938119954025], + [-45.5348232827203, -23.829398199450154], + [-45.53488428304181, -23.82941819932342], + [-45.53492528324859, -23.8294281992365], + [-45.534969283463255, -23.829436199141742], + [-45.53501628372325, -23.829456199046533], + [-45.53503628387786, -23.829481199014385], + [-45.53501128380821, -23.829496199078346], + [-45.53501128389111, -23.82952719909426], + [-45.535030284019996, -23.82954419906032], + [-45.53507728424784, -23.829552198958833], + [-45.53515728467151, -23.829579198793045], + [-45.5352262850896, -23.829622198660168], + [-45.535295285534374, -23.829675198532495], + [-45.535350285834824, -23.829697198420238], + [-45.53540528612992, -23.829717198307048], + [-45.53546028644643, -23.82974519819791], + [-45.53549028661029, -23.829757198136633], + [-45.5355372867766, -23.82974219802345], + [-45.53557028689479, -23.829732197944157], + [-45.535595287044764, -23.829747197895724], + [-45.53562828722981, -23.829762197829297], + [-45.53565628735281, -23.82976219776643], + [-45.535683287450034, -23.829754197701643], + [-45.53569728758641, -23.82978219768459], + [-45.53570328777586, -23.82984319770244], + [-45.53572528795811, -23.829875197669544], + [-45.53576328820799, -23.82990619760012], + [-45.53579928840353, -23.829920197526462], + [-45.53584028858365, -23.829920197434397], + [-45.53586828876004, -23.829940197381728], + [-45.535898288934675, -23.829956197322563], + [-45.53593428903664, -23.829935197230856], + [-45.53598928937185, -23.829970197125373], + [-45.53602028957754, -23.829996197069132], + [-45.53604428973648, -23.830016197025465], + [-45.53603128977298, -23.830051197072596], + [-45.535998289702825, -23.83007919716122], + [-45.53598428970294, -23.83010219720443], + [-45.53599028980948, -23.83013219720636], + [-45.536017289989616, -23.830155197157577], + [-45.536018290060866, -23.830180197168115], + [-45.536018290141094, -23.830210197183543], + [-45.53605429042229, -23.830256197126293], + [-45.536100290704574, -23.83028619703847], + [-45.53615829104485, -23.830318196924612], + [-45.53625229158083, -23.830364196737136], + [-45.53632129195617, -23.83039119659593], + [-45.53640429238221, -23.83041419642136], + [-45.53647529273958, -23.830431196270577], + [-45.53654129304826, -23.830438196126007], + [-45.53657729323309, -23.83044819605029], + [-45.53662729350627, -23.830468195948214], + [-45.536654293659566, -23.83048119589425], + [-45.536690293817735, -23.830481195813405], + [-45.53672029399498, -23.83049819575471], + [-45.53673129409145, -23.830516195739275], + [-45.536723294117806, -23.83053919576907], + [-45.536712294163074, -23.830574195811845], + [-45.536718294291134, -23.830612195817835], + [-45.53671329435211, -23.83064319584498], + [-45.536710294411066, -23.830670195865586], + [-45.53671329449386, -23.83069619587224], + [-45.53674029469262, -23.830726195826898], + [-45.53674629475104, -23.830738195819695], + [-45.536746294839304, -23.830771195836654], + [-45.53675829495097, -23.830793195820913], + [-45.53681329527273, -23.83082319571289], + [-45.53685629549104, -23.830834195621875], + [-45.53689229565993, -23.830838195543045], + [-45.53693229592392, -23.830871195470202], + [-45.5369752960914, -23.83086319536948], + [-45.53700929623539, -23.830861195292083], + [-45.53704929652078, -23.830902195223317], + [-45.537089296790036, -23.830937195151407], + [-45.53712329696343, -23.83094619507969], + [-45.53715929709218, -23.83093519499313], + [-45.53721229732236, -23.83093419487358], + [-45.537248297512555, -23.830946194798873], + [-45.53728829768292, -23.830944194707996], + [-45.537324297814266, -23.830934194621985], + [-45.53734829796253, -23.830950194576296], + [-45.537405298413525, -23.83102519448674], + [-45.537452298702895, -23.8310561943971], + [-45.53750729900602, -23.8310791942854], + [-45.53754129919813, -23.83109519421722], + [-45.53759629947987, -23.831110194101356], + [-45.53762229963147, -23.831124194050165], + [-45.53766229988477, -23.831153193975197], + [-45.53768130000841, -23.831168193940215], + [-45.53770730012255, -23.83116819388182], + [-45.5377243001652, -23.83115619383744], + [-45.53775130028372, -23.831156193776778], + [-45.53776630033098, -23.831149193739535], + [-45.53777430027512, -23.83111519370413], + [-45.53777430017082, -23.83107619368408], + [-45.53778530015762, -23.83105319364749], + [-45.53780630021237, -23.831039193593128], + [-45.53785030037621, -23.831028193488617], + [-45.53787330041845, -23.831006193425694], + [-45.53786130031489, -23.830987193442922], + [-45.53783930018086, -23.83097319348506], + [-45.53781030004277, -23.830969193548174], + [-45.537788299916656, -23.830958193592004], + [-45.53776529978893, -23.8309481936385], + [-45.53773129957801, -23.83092519370302], + [-45.537699299410725, -23.830915193769844], + [-45.537682299274515, -23.830892193796185], + [-45.537665299151634, -23.830874193825128], + [-45.53764429903536, -23.830865193867645], + [-45.53764429897651, -23.83084319385642], + [-45.53766129900034, -23.830824193808482], + [-45.53773029919381, -23.830783193632413], + [-45.53775029926022, -23.83077519358334], + [-45.537802299488675, -23.83077519346651], + [-45.53783229960974, -23.830771193397094], + [-45.537847299659575, -23.830765193360254], + [-45.53787229979883, -23.83077619330976], + [-45.5379152999583, -23.8307651932075], + [-45.537951300167194, -23.830784193136452], + [-45.53796830026336, -23.830792193102337], + [-45.53798030023576, -23.83076219305996], + [-45.53798730017826, -23.83072919302731], + [-45.5379612999624, -23.830691193066166], + [-45.53795229981852, -23.830652193066403], + [-45.53796729982028, -23.830628193020353], + [-45.53796729976413, -23.83060719300952], + [-45.537952299650016, -23.83058919303399], + [-45.53793729947178, -23.830547193046105], + [-45.53794129936894, -23.830502193014016], + [-45.537958299344716, -23.83046519295686], + [-45.53795429926558, -23.830442192953992], + [-45.537945299140496, -23.830410192957793], + [-45.537943299070214, -23.830387192950443], + [-45.53793229896035, -23.83036419296341], + [-45.53791129880119, -23.830339192997698], + [-45.537889298656445, -23.83032119303788], + [-45.53788329859, -23.830306193043647], + [-45.53789829865054, -23.83030419300897], + [-45.537947298937965, -23.830331192912762], + [-45.537983299168275, -23.830358192845694], + [-45.53800629934156, -23.830385192807885], + [-45.53802129950642, -23.830422192793254], + [-45.53803629966056, -23.83045519277649], + [-45.53806229983094, -23.830476192728838], + [-45.538070299898145, -23.83048819271711], + [-45.538079299967144, -23.83049919270248], + [-45.53810930015776, -23.830521192646337], + [-45.53812330016576, -23.830501192604654], + [-45.538155300260826, -23.830484192524054], + [-45.53817230013219, -23.83040819244685], + [-45.538097299615536, -23.830338192579354], + [-45.538108299631766, -23.830326192548544], + [-45.5381332997202, -23.830318192488228], + [-45.53815029973333, -23.83029519243819], + [-45.53819229991784, -23.830295192343847], + [-45.538201299935906, -23.83028719231958], + [-45.53822229996938, -23.83026519226104], + [-45.538243299890375, -23.83020119218105], + [-45.53825129985868, -23.830176192150194], + [-45.53823429967964, -23.830137192168323], + [-45.53824929972411, -23.83012919213057], + [-45.538261299710044, -23.830104192090772], + [-45.53824029951345, -23.83006519211786], + [-45.53820829929534, -23.830036192174955], + [-45.53819329920272, -23.830026192203473], + [-45.538164299075326, -23.83002619226862], + [-45.53815729896695, -23.829997192269445], + [-45.53818929908609, -23.82998919219342], + [-45.538240299221904, -23.82995619206193], + [-45.53826329929622, -23.829946192005107], + [-45.53830129946306, -23.829946191919735], + [-45.538322299456304, -23.829909191853577], + [-45.53834929947602, -23.829872191773894], + [-45.53836429953646, -23.829870191739186], + [-45.538392299686215, -23.829880191681443], + [-45.53841929978341, -23.82987219161665], + [-45.53843029985583, -23.829881191596602], + [-45.53844729996791, -23.8298951915656], + [-45.538460300065154, -23.829910191544094], + [-45.53847230002426, -23.829875191499205], + [-45.538493299982726, -23.829825191426295], + [-45.53849329986236, -23.82978019140321], + [-45.538535299958575, -23.82974719129192], + [-45.53853529989973, -23.829725191280588], + [-45.53858030007063, -23.82971519117432], + [-45.5386503004102, -23.82972719102324], + [-45.53869830063171, -23.82973119091745], + [-45.538741300871386, -23.82975019083069], + [-45.538764301028635, -23.82977119078976], + [-45.53881730123996, -23.829763190666647], + [-45.53885130138934, -23.82976319059026], + [-45.538853301331244, -23.829738190572897], + [-45.538842301183934, -23.829701190578664], + [-45.538848301138145, -23.829674190551298], + [-45.53878930083612, -23.82965819067564], + [-45.5388043006988, -23.829582190602913], + [-45.53880830066951, -23.829564690584927], + [-45.53881230064026, -23.829547190566913], + [-45.5388293006427, -23.82952019051484], + [-45.53887330079318, -23.82950419040779], + [-45.53888630078341, -23.82947919036574], + [-45.53892030093279, -23.829479190289348], + [-45.538939300973404, -23.829463190238453], + [-45.538928300831465, -23.829428190245228], + [-45.538909300713186, -23.82941519028124], + [-45.53888830062108, -23.829415190328422], + [-45.53884730048109, -23.82943019042821], + [-45.53882830043505, -23.829444190478082], + [-45.53880530033406, -23.829444190529756], + [-45.53878230017149, -23.82942119056958], + [-45.5387693000475, -23.829396190585893], + [-45.538750299854414, -23.829355190607608], + [-45.53873129971751, -23.829335190640045], + [-45.53870929953792, -23.82930419067348], + [-45.5387032994286, -23.829273190671028], + [-45.538711299458406, -23.82927119065204], + [-45.53872429950483, -23.829267190620815], + [-45.53874529961308, -23.829273190576682], + [-45.538762299746665, -23.829295190549832], + [-45.53877729980987, -23.82929419051564], + [-45.5387942998444, -23.82927919046976], + [-45.538802299791314, -23.829246190434834], + [-45.53882429983973, -23.829228190376124], + [-45.53884229981983, -23.82919119031672], + [-45.53885329976383, -23.829152190271966], + [-45.53886129970531, -23.829117190236044], + [-45.53888929982304, -23.829115190172143], + [-45.5389183000065, -23.82913619011773], + [-45.538950300235285, -23.82916919006277], + [-45.5389693003295, -23.829173190022118], + [-45.53900130043793, -23.829161189944138], + [-45.53900930047309, -23.829161189926182], + [-45.539001300531545, -23.82919618996208], + [-45.53900130059039, -23.829218189973354], + [-45.539025300717235, -23.829226189923578], + [-45.53904130078483, -23.829225189887126], + [-45.539058300814, -23.829208189840212], + [-45.53906530075644, -23.829175189807497], + [-45.539045300569654, -23.829138189833458], + [-45.53903030042086, -23.829107189851246], + [-45.53905630051367, -23.829099189788693], + [-45.539079300660134, -23.829116189745832], + [-45.539103300829765, -23.829140189704173], + [-45.539139300987905, -23.82914018962332], + [-45.5391703011214, -23.82913918955317], + [-45.53919630131842, -23.82917018951066], + [-45.539240301616, -23.829209189431882], + [-45.53927730183203, -23.829229189358983], + [-45.53933630203767, -23.829209189216215], + [-45.53937030212811, -23.829187189128497], + [-45.53941030224767, -23.829166189027898], + [-45.539448302414506, -23.82916618894252], + [-45.53953530282069, -23.82917518875164], + [-45.53959830311349, -23.829181188613244], + [-45.53964330331113, -23.829181188512162], + [-45.53966230340257, -23.829184188470983], + [-45.53973030364508, -23.829163188307493], + [-45.53979330392978, -23.829166188167477], + [-45.5398613042445, -23.829172188017772], + [-45.53986130431139, -23.829197188030633], + [-45.53988030445365, -23.829219187999183], + [-45.5398683044678, -23.82924418803909], + [-45.539863304502056, -23.829265188060987], + [-45.539895304674694, -23.829277187995388], + [-45.53993830486889, -23.829279187899782], + [-45.53996330497336, -23.829277187842585], + [-45.539986304999424, -23.829249187776533], + [-45.53998030481262, -23.829189187759148], + [-45.54001130492202, -23.82917918768443], + [-45.54006030512657, -23.829175187572208], + [-45.540126305394985, -23.829167187419905], + [-45.54014930542917, -23.82914218735535], + [-45.540161305382824, -23.82910518730944], + [-45.540195305451974, -23.82907518721767], + [-45.54021430551665, -23.82906818717133], + [-45.540197305367116, -23.82904018719515], + [-45.54018230521833, -23.829009187212932], + [-45.54019730518522, -23.828972187160222], + [-45.54015630492757, -23.82894318723751], + [-45.54016930486429, -23.828898187185114], + [-45.540182304843825, -23.82886918714112], + [-45.540165304723715, -23.828852187170508], + [-45.540122304497416, -23.828838187259922], + [-45.54010130432222, -23.828807187291194], + [-45.54005230402412, -23.828776187385355], + [-45.540016303809885, -23.82875518745549], + [-45.54000530368396, -23.828726187465303], + [-45.539982303540114, -23.82871018750877], + [-45.539950303375534, -23.828701187576005], + [-45.5399353032722, -23.828687187602508], + [-45.539916303154016, -23.82867418763852], + [-45.53987630298903, -23.82867818773041], + [-45.53986530283636, -23.828639187735153], + [-45.53982930262469, -23.828619187805792], + [-45.53977830228306, -23.82857518789777], + [-45.53975530214466, -23.828561187942153], + [-45.53973830206457, -23.828559187979323], + [-45.539704301818986, -23.828523188037266], + [-45.53968030167084, -23.82850718808297], + [-45.53962930136391, -23.828476188181536], + [-45.53957030102721, -23.828447188299293], + [-45.53954430091836, -23.828449188358718], + [-45.53953230096995, -23.82848818840569], + [-45.53951330089722, -23.82849218845042], + [-45.539479300707804, -23.828477188519003], + [-45.539462300611774, -23.828469188553132], + [-45.539422300425365, -23.828465188640962], + [-45.539381300199814, -23.82844818872435], + [-45.539354300003644, -23.828419188770113], + [-45.539332299834854, -23.828392188805676], + [-45.53930529966813, -23.828374188857083], + [-45.53927129948941, -23.828363188927792], + [-45.53924529933231, -23.82834718897798], + [-45.53923929925518, -23.82832818898174], + [-45.539266299258756, -23.828285188899], + [-45.53928729926804, -23.828254188835924], + [-45.539287299163746, -23.82821518881586], + [-45.539279299059096, -23.828189188820467], + [-45.539262298955045, -23.828178188852974], + [-45.539255798893045, -23.828165688861194], + [-45.5392613709034, -23.828160433845984], + [-45.53924929883107, -23.828153188869397], + [-45.53925329876836, -23.828123188845034], + [-45.53920429849168, -23.82810018894323], + [-45.53919129836237, -23.828073188958562], + [-45.5391742982262, -23.828050188984914], + [-45.539147298096914, -23.828046189043526], + [-45.53911729798122, -23.828052189114022], + [-45.539094297832094, -23.828034189156494], + [-45.539051297629854, -23.82802918925047], + [-45.53903429753375, -23.828021189284485], + [-45.539017297344074, -23.82797818930059], + [-45.539007297222675, -23.82794918930825], + [-45.53896429699903, -23.82793618939806], + [-45.538956297057474, -23.82797118943404], + [-45.53893329702871, -23.827998189499606], + [-45.5389162969433, -23.827994189535747], + [-45.53888429677602, -23.827984189602475], + [-45.53888429666904, -23.82794418958191], + [-45.53883729644659, -23.827938189684446], + [-45.53883129646298, -23.827954189706137], + [-45.538814296412404, -23.827963189748974], + [-45.538763296169726, -23.827956189859893], + [-45.53878029616414, -23.82792618980628], + [-45.538771296047024, -23.82789718981162], + [-45.5387482958899, -23.827876189852514], + [-45.538716295727966, -23.827868189920263], + [-45.538695295630355, -23.827866189966418], + [-45.53867829547814, -23.827837189989722], + [-45.53868429542156, -23.82780618996032], + [-45.538663295283904, -23.827789189998754], + [-45.53861829508092, -23.827787190098835], + [-45.53859729497803, -23.827783190143986], + [-45.53856129488404, -23.827807190237124], + [-45.53853429476545, -23.82780719029776], + [-45.53851029463336, -23.8277971903465], + [-45.538487294454754, -23.827768190383274], + [-45.53845929427027, -23.827745190434406], + [-45.53844029413872, -23.827727190467765], + [-45.53840229396642, -23.827725190552112], + [-45.53830929343499, -23.827679190737378], + [-45.53826429318122, -23.827658190827705], + [-45.53819629286112, -23.827650190976307], + [-45.53821829302732, -23.827676190940263], + [-45.53819429292188, -23.827676190994158], + [-45.538162292781266, -23.82767619106604], + [-45.53814829265568, -23.827652191085114], + [-45.53810929241218, -23.82762519115892], + [-45.53806029213013, -23.827600191256032], + [-45.53801429190405, -23.8275911913548], + [-45.537967291721706, -23.82760019146491], + [-45.537925291539906, -23.827601191559847], + [-45.537893291420694, -23.827609191635776], + [-45.53787229138467, -23.827630191693775], + [-45.53783629129872, -23.827657191788525], + [-45.53780629103859, -23.827609191831186], + [-45.53776829084501, -23.82759919191136], + [-45.537734290706325, -23.82760319198986], + [-45.53770129062023, -23.827625192075317], + [-45.537673290548064, -23.827644192147847], + [-45.537637290406025, -23.827650192231847], + [-45.53761029030882, -23.827658192296635], + [-45.537548289985736, -23.82763919242608], + [-45.5374972896788, -23.827608192524714], + [-45.53734928882288, -23.827531192817574], + [-45.5372532882354, -23.82746919300135], + [-45.537168287707054, -23.82741119316247], + [-45.537102287275395, -23.82735819328342], + [-45.53704728687339, -23.82729819337613], + [-45.537011286653815, -23.827275193445132], + [-45.53698528650751, -23.827263193497426], + [-45.536937286299384, -23.827264193605735], + [-45.53690528612668, -23.827252193671402], + [-45.536896285998985, -23.827219193674715], + [-45.53689028586301, -23.8271781936671], + [-45.53686828569414, -23.827151193702612], + [-45.53684128553008, -23.82713419375454], + [-45.53681928538537, -23.827116193794698], + [-45.53680228515027, -23.827056193801987], + [-45.53677228482067, -23.826982193831334], + [-45.536770284664726, -23.826927193807652], + [-45.53675728449004, -23.826883193814222], + [-45.53674028436719, -23.826865193843187], + [-45.536727284286115, -23.826856193867727], + [-45.5367442842243, -23.82680519380327], + [-45.53672928401412, -23.826751193809287], + [-45.5367122838645, -23.82672319383307], + [-45.536695283706976, -23.826692193855305], + [-45.53669328358322, -23.826649193837728], + [-45.53669328353242, -23.826630193827892], + [-45.53667528340793, -23.826613193859593], + [-45.536697283413595, -23.826579193792732], + [-45.53669028322782, -23.826521193778653], + [-45.536749283449495, -23.826507193638985], + [-45.53673828333966, -23.826484193651808], + [-45.53670528312254, -23.82645719371211], + [-45.536709283041155, -23.826420193684072], + [-45.53667228277978, -23.826383193748104], + [-45.53663228238483, -23.826301193795857], + [-45.53663028227446, -23.826263193780797], + [-45.53657028179704, -23.826183193874474], + [-45.53658928176548, -23.826140193809717], + [-45.53657028163128, -23.826121193842642], + [-45.53660828173929, -23.82609919374596], + [-45.53659928164365, -23.826078193755407], + [-45.53657128141105, -23.82603719379719], + [-45.5365862813165, -23.825977193732598], + [-45.536567281107324, -23.82593019375114], + [-45.536567280987015, -23.825885193728013], + [-45.53653328073881, -23.825848193785404], + [-45.536509280566605, -23.825823193826434], + [-45.536501280448554, -23.825792193828477], + [-45.53650528039924, -23.825767193806616], + [-45.53644527997533, -23.825707193910535], + [-45.536428279820456, -23.825677193933288], + [-45.536428279713526, -23.82563719391271], + [-45.53640227952445, -23.825609193956712], + [-45.53639827943471, -23.825582193951902], + [-45.5364022793373, -23.825539193920793], + [-45.53639827927966, -23.82552419392208], + [-45.53637427913144, -23.825508193967764], + [-45.536360278997755, -23.825481193985308], + [-45.53640027915206, -23.82547319389132], + [-45.536425279240504, -23.825465193831132], + [-45.536450279278036, -23.825438193761094], + [-45.536450279200494, -23.82540919374619], + [-45.53640827895988, -23.825388193829657], + [-45.536382278781595, -23.82536419387577], + [-45.536359278656484, -23.82535519392276], + [-45.53633127853352, -23.82535519398565], + [-45.5362892783223, -23.825345194074785], + [-45.53626427817783, -23.825332194124325], + [-45.53621527799475, -23.825344194240447], + [-45.536196278050255, -23.82539619430989], + [-45.53619627815452, -23.82543519432987], + [-45.536147277917976, -23.825427194435854], + [-45.53612827775694, -23.825398194463595], + [-45.53610927762272, -23.82537919449651], + [-45.53608627748967, -23.825367194541993], + [-45.53609827743278, -23.82532619449394], + [-45.536094277337604, -23.825297194488027], + [-45.53604927704106, -23.825260194570095], + [-45.536017276750826, -23.825204194613153], + [-45.536009276654255, -23.825181194619287], + [-45.53599227652604, -23.825161194647187], + [-45.53597727645483, -23.825159194679845], + [-45.535947276277625, -23.825142194738422], + [-45.53593227610215, -23.825101194751085], + [-45.53587727580443, -23.82508019486385], + [-45.535856275650744, -23.825057194899138], + [-45.53582427546737, -23.82504119496277], + [-45.535792275337556, -23.82504519503665], + [-45.535767275302675, -23.8250731951072], + [-45.535748275253894, -23.82508619515655], + [-45.535708275032846, -23.82506919523766], + [-45.53565927476144, -23.825048195336844], + [-45.53561827450385, -23.825019195413983], + [-45.53556127420546, -23.82500119553273], + [-45.53550627400667, -23.82501719566445], + [-45.53543827361443, -23.824982195799063], + [-45.53538127336407, -23.824982195927067], + [-45.535322273137055, -23.824994196065816], + [-45.53529427299001, -23.824985196124043], + [-45.535271272830244, -23.824963196164315], + [-45.535243272640415, -23.824938196214326], + [-45.53521127242236, -23.824909196271356], + [-45.53519627226294, -23.82487419628699], + [-45.53518427208455, -23.8248271962898], + [-45.53515627187068, -23.824793196335207], + [-45.53514127172195, -23.824762196352868], + [-45.535151271675, -23.82472819631297], + [-45.53510027126652, -23.824659196392084], + [-45.53500427058565, -23.824562196557704], + [-45.53497527055184, -23.82459719664081], + [-45.534933270340645, -23.82458719673001], + [-45.534920270232746, -23.82456819674938], + [-45.534882270065836, -23.8245681968347], + [-45.5348752701287, -23.82460319686838], + [-45.53487627022128, -23.824636196883144], + [-45.534840270156685, -23.824671196981914], + [-45.53482727017177, -23.82469819702502], + [-45.53480827012578, -23.824712197074867], + [-45.53478526996324, -23.824689197114665], + [-45.53479326988881, -23.824648197075685], + [-45.53478226976296, -23.824619197085468], + [-45.53472126928656, -23.82454119718236], + [-45.534693269064675, -23.82450419722615], + [-45.534686268884265, -23.824448197213076], + [-45.53466126864882, -23.82440119724505], + [-45.53460526825852, -23.824347197343005], + [-45.53454826789857, -23.82430619744986], + [-45.53450326759402, -23.824266197530328], + [-45.53446126723311, -23.82420019759074], + [-45.53444426707295, -23.824168197612465], + [-45.53425126589655, -23.824045197982567], + [-45.53419826561562, -23.82402719809223], + [-45.53414726530884, -23.823996198190795], + [-45.534096265055496, -23.823985198299614], + [-45.53404326476657, -23.823964198407854], + [-45.53401126455655, -23.823938198466298], + [-45.53396976431007, -23.82391419854719], + [-45.53384126330741, -23.823750198751284], + [-45.53383226303262, -23.823662198726307], + [-45.533855262949245, -23.823593198639166], + [-45.53385426279252, -23.823536198612103], + [-45.533837262573535, -23.823482198622475], + [-45.53382026237317, -23.823435198636485], + [-45.53381826226014, -23.823396198620866], + [-45.53382426201127, -23.82329319855445], + [-45.533828261887145, -23.82324019851828], + [-45.533818261653444, -23.823169198504196], + [-45.533793261276436, -23.823069198508872], + [-45.53380526092825, -23.822919198404822], + [-45.53381526056318, -23.82276619830366], + [-45.53382925981754, -23.822464198116894], + [-45.53384825972464, -23.82239819804034], + [-45.53386625935458, -23.8222301979135], + [-45.5338662591488, -23.822153197873916], + [-45.53388425889918, -23.8220301977703], + [-45.53389525869361, -23.821935197696696], + [-45.53390025837614, -23.821808197620133], + [-45.53390625817795, -23.82172419756354], + [-45.533923258049576, -23.821648197486223], + [-45.53394325770175, -23.821485197357546], + [-45.533973257464694, -23.82134719721925], + [-45.53398525725016, -23.821247197140885], + [-45.533993257074115, -23.821168197082347], + [-45.533990256700186, -23.821033197019663], + [-45.53399625651271, -23.820953196965007], + [-45.53402125641675, -23.820876196869317], + [-45.53405925634315, -23.82078619673772], + [-45.53408025617877, -23.820690196641195], + [-45.53408825600817, -23.82061319658367], + [-45.53410025580434, -23.820517196507325], + [-45.53413225568564, -23.82042019638568], + [-45.53414225551046, -23.820338196321025], + [-45.53417625543524, -23.820254196201493], + [-45.534222255356624, -23.820149196044273], + [-45.53425075533619, -23.82009469595228], + [-45.53427925531567, -23.820040195860305], + [-45.534316255192174, -23.81993319572218], + [-45.53433925502598, -23.81983319561919], + [-45.53436225489443, -23.819746195522836], + [-45.534379254846215, -23.819700195460932], + [-45.53439625479794, -23.819654195399146], + [-45.53445025477045, -23.819555195227007], + [-45.534453784744116, -23.819539533211056], + [-45.53447563473434, -23.819499956141666], + [-45.5346117156732, -23.819253471709427], + [-45.53467716064378, -23.819134930501622], + [-45.534780254597486, -23.818948194174215], + [-45.53488925448292, -23.818726193815333], + [-45.53500525445517, -23.818525193451688], + [-45.5350832543754, -23.818367193195357], + [-45.535135254317865, -23.818260193023654], + [-45.53522625450364, -23.8181801927782], + [-45.53528725453631, -23.81809219259606], + [-45.535354254477795, -23.81796019237781], + [-45.53537525438826, -23.817892192295687], + [-45.53542625430494, -23.817777192122065], + [-45.535516254344685, -23.817644191851713], + [-45.53561525449337, -23.817537191574516], + [-45.53572925470534, -23.817429191263138], + [-45.53578825471052, -23.817334191081915], + [-45.53584525465348, -23.817219190894754], + [-45.53590825458537, -23.817090190687118], + [-45.53596925452997, -23.816969190487935], + [-45.53605325448728, -23.816815190220172], + [-45.53611625448321, -23.8167101900249], + [-45.53623025455086, -23.816548189685754], + [-45.53631625462115, -23.816433189433596], + [-45.53640225468609, -23.81631618918034], + [-45.53650625474721, -23.81616818887093], + [-45.53658125479857, -23.81606418864906], + [-45.53662325477992, -23.81598818851574], + [-45.53668725488457, -23.815922188338224], + [-45.53673125497887, -23.815885188220417], + [-45.53677525507317, -23.815848188102674], + [-45.53684525520682, -23.815783187912096], + [-45.53696325535078, -23.815643187575255], + [-45.53704925539968, -23.81552018731903], + [-45.53711025543765, -23.815434187137924], + [-45.53716325550729, -23.81537318698763], + [-45.53726225561325, -23.81525018670224], + [-45.53733625570031, -23.815161186490403], + [-45.537420255938144, -23.815112186276625], + [-45.53750525628992, -23.8151041860817], + [-45.53753925638572, -23.81508418599523], + [-45.53757325647883, -23.815063185908055], + [-45.537623256695696, -23.81506218579533], + [-45.53767025693942, -23.81507618569702], + [-45.537708257151586, -23.81509318562048], + [-45.53772925720642, -23.815079185566123], + [-45.537710257045546, -23.815050185593876], + [-45.537678256849, -23.815029185654854], + [-45.53767825678752, -23.815006185643085], + [-45.53773125693462, -23.814974185507694], + [-45.537744756949856, -23.814957685468887], + [-45.537758256964985, -23.81494118543008], + [-45.53776325687745, -23.814900185397768], + [-45.53779025690238, -23.814865185319213], + [-45.53781525702284, -23.814869185265206], + [-45.53783225714822, -23.814888185236782], + [-45.537839257232434, -23.81490818523133], + [-45.53786225735741, -23.81491718518435], + [-45.53786425725928, -23.814877185159283], + [-45.537883257342735, -23.81487718511664], + [-45.53791525738167, -23.814839185025356], + [-45.53793625750053, -23.81484918498328], + [-45.53795125750492, -23.814826184937857], + [-45.537938257316924, -23.814777184941793], + [-45.53792975722215, -23.814755684949816], + [-45.53792125712741, -23.814734184957857], + [-45.537929257058366, -23.814695184919906], + [-45.53797125702097, -23.81461218478296], + [-45.53800525716483, -23.814610184705643], + [-45.538023257201104, -23.814594184657015], + [-45.538041257237325, -23.814578184608386], + [-45.53805325719651, -23.814543184563522], + [-45.53806851822349, -23.814528200521476], + [-45.53810825729366, -23.814489184412295], + [-45.53813825741735, -23.81448618434333], + [-45.53817225757725, -23.814490184269157], + [-45.53820325765186, -23.814467184187684], + [-45.53820525757246, -23.814434184166274], + [-45.53819675750051, -23.814421184178695], + [-45.53818825742839, -23.81440818419105], + [-45.53817125729766, -23.81438718421845], + [-45.53820325726177, -23.81432118411268], + [-45.538251257362994, -23.814280183983865], + [-45.538312257433006, -23.81420618380902], + [-45.538350257407465, -23.814134183686633], + [-45.53840725747323, -23.814065183523205], + [-45.53847725763623, -23.814011183338398], + [-45.53850025765307, -23.813979683270656], + [-45.538523257669816, -23.813948183202807], + [-45.53857425772271, -23.81388418305541], + [-45.53859025765668, -23.813833182993314], + [-45.53864525775651, -23.813780182842617], + [-45.53870425789514, -23.813735182687065], + [-45.53871025780397, -23.813691182651013], + [-45.538710257699776, -23.81365218263092], + [-45.53873125773856, -23.81363218257356], + [-45.538770257965815, -23.813653182496772], + [-45.53880425816853, -23.81367318243079], + [-45.53882125823781, -23.813671182391612], + [-45.53883725823322, -23.81364318234129], + [-45.538890258433824, -23.81363118221616], + [-45.53893025858795, -23.813623182122328], + [-45.53895325861404, -23.813595182056225], + [-45.53901525880876, -23.813566181902154], + [-45.53904225886049, -23.813541181828768], + [-45.53904625875512, -23.81349518179617], + [-45.53904525861714, -23.81344518177267], + [-45.539069258714505, -23.813442181717285], + [-45.53909225888229, -23.81346718167852], + [-45.53910725905226, -23.81350618166483], + [-45.53915425931463, -23.813527181570173], + [-45.53917725933814, -23.813498181503636], + [-45.53917725923394, -23.813459181483594], + [-45.53918825912192, -23.813399181428057], + [-45.53923425931315, -23.813395181322793], + [-45.53926525953469, -23.813427181269624], + [-45.53928525967857, -23.813448181235486], + [-45.539304259762005, -23.813448181192868], + [-45.53934325989583, -23.81343418109812], + [-45.539381259977056, -23.8134021809964], + [-45.53935825975317, -23.8133561810244], + [-45.53936925963046, -23.813292180966876], + [-45.53936925955298, -23.813263180951967], + [-45.53941125965183, -23.813231180841175], + [-45.53946525979536, -23.813196180702032], + [-45.5395772601907, -23.813160180432174], + [-45.53963526040529, -23.81314518029422], + [-45.539762260650036, -23.81302817994901], + [-45.53998526110508, -23.812832179347932], + [-45.540235261689325, -23.812640178688063], + [-45.54036626195969, -23.812526178335435], + [-45.54040826194363, -23.812451178202654], + [-45.54043126189232, -23.812394178121735], + [-45.54058526223417, -23.812269177711908], + [-45.54079626271407, -23.812102177152475], + [-45.54094626308647, -23.811995176760863], + [-45.54099626316426, -23.81194217662136], + [-45.54120426375121, -23.81182017609185], + [-45.541297263969604, -23.81174917584661], + [-45.541347264114286, -23.811721175720013], + [-45.54143926433634, -23.81165317547853], + [-45.54145126428472, -23.81161417543163], + [-45.541466264273154, -23.811585175383076], + [-45.54149726440918, -23.81158517531349], + [-45.54153226456274, -23.811585175234924], + [-45.54157026472956, -23.81158517514963], + [-45.54164726496324, -23.81154617495672], + [-45.54183226547858, -23.8114351744845], + [-45.5419402657441, -23.811357174201962], + [-45.54204426603751, -23.81129617393721], + [-45.542105266219664, -23.81126417378385], + [-45.54220126640321, -23.811175173522674], + [-45.54230926660992, -23.811075173228858], + [-45.542378266771124, -23.811022173046744], + [-45.54247526708194, -23.81097917280693], + [-45.54252126721699, -23.810954172690902], + [-45.542609267402774, -23.81087917245486], + [-45.54270926762251, -23.810797172188245], + [-45.54275626767644, -23.81074017205347], + [-45.54279026775882, -23.810715171964368], + [-45.542856267944295, -23.81067617179616], + [-45.54291326809824, -23.81064017164968], + [-45.543086268429896, -23.810480171179204], + [-45.5431442685508, -23.81043017102335], + [-45.54321726877496, -23.810394170840958], + [-45.54332126901478, -23.810313170565973], + [-45.54341726928378, -23.810256170321203], + [-45.54346026937628, -23.81022017020622], + [-45.543525269471765, -23.810149170023774], + [-45.54365226971375, -23.81003116967811], + [-45.54387927030107, -23.809878169090048], + [-45.543964270503054, -23.809814168866417], + [-45.544095270840074, -23.80972516852667], + [-45.54423027122134, -23.80964616818303], + [-45.54433209551074, -23.8095872759242], + [-45.54444158482196, -23.809523951645932], + [-45.54459727230661, -23.809449667258285], + [-45.54464927245858, -23.809421167126953], + [-45.544742272762484, -23.80938216689814], + [-45.54486927315667, -23.809321166581743], + [-45.544958273443065, -23.809282166361903], + [-45.54501527359699, -23.809246166215498], + [-45.54509627390425, -23.809228166024376], + [-45.5452042742338, -23.80917416575426], + [-45.54526027447426, -23.80917216562754], + [-45.54531227478254, -23.80920216552618], + [-45.545355275134234, -23.809263165460912], + [-45.5454022755756, -23.80935116540056], + [-45.54544827585223, -23.809379165311668], + [-45.54549127610771, -23.809404165227892], + [-45.545529276341185, -23.80942916515543], + [-45.54560327689311, -23.809514165032912], + [-45.54566527740031, -23.809602164938863], + [-45.545723277740315, -23.809634164825138], + [-45.5457892781234, -23.809669164694863], + [-45.54585127848904, -23.8097041645736], + [-45.54590527874463, -23.809711164456008], + [-45.54595527899345, -23.809722164349314], + [-45.54599827929438, -23.809764164274323], + [-45.54605227961686, -23.80979616416958], + [-45.546110279868586, -23.80979516403886], + [-45.546156280155934, -23.80982716395198], + [-45.54619928041142, -23.809852163868193], + [-45.54624928066826, -23.80986616376312], + [-45.546327281055916, -23.809883163596798], + [-45.54638428133541, -23.809894163474393], + [-45.54643928164092, -23.809918163363246], + [-45.54650128199844, -23.809950163240416], + [-45.546586282446256, -23.80997816306394], + [-45.54667128288604, -23.810003162885955], + [-45.54676328338321, -23.810038162697296], + [-45.54682528377817, -23.81008416258176], + [-45.54686028398792, -23.810105162513803], + [-45.546891284190764, -23.810130162457142], + [-45.546930284369914, -23.81013316237109], + [-45.5469682845366, -23.81013316228578], + [-45.54700728470774, -23.810133162198206], + [-45.547084284930655, -23.810090162003245], + [-45.54712628504811, -23.81006516189611], + [-45.54715328520401, -23.810079161842662], + [-45.54717328534794, -23.81010016180847], + [-45.54719228541249, -23.810093161762246], + [-45.54723128558363, -23.810093161674708], + [-45.547258285758225, -23.810114161624778], + [-45.54727728591907, -23.810143161597015], + [-45.547300286094874, -23.81017116155973], + [-45.54734728637591, -23.810199161468578], + [-45.54738628654707, -23.81019916138098], + [-45.5474322868157, -23.81022416129055], + [-45.547459287035764, -23.810262161249376], + [-45.54750228732063, -23.810298161171303], + [-45.547560287649965, -23.810326161055432], + [-45.54763328801571, -23.81034316090023], + [-45.54769528832512, -23.81035716076819], + [-45.54773828852449, -23.810361160673672], + [-45.54777628869116, -23.810361160588336], + [-45.54780328875085, -23.810339160516463], + [-45.547834288897626, -23.81034316044889], + [-45.547873289114115, -23.810360160369992], + [-45.54792328938167, -23.810378160267017], + [-45.5479882895893, -23.810349160106096], + [-45.54805028991744, -23.81037015997771], + [-45.548147290532846, -23.810441159796206], + [-45.54819729082704, -23.810469159698368], + [-45.548240291045104, -23.810480159607394], + [-45.54826729109676, -23.81045515953401], + [-45.54822429087868, -23.810444159624907], + [-45.548189290612896, -23.810402159681956], + [-45.54820529065368, -23.810391159640364], + [-45.548220290719485, -23.810391159606684], + [-45.548255290891824, -23.810398159531637], + [-45.54832829126815, -23.81041915937852], + [-45.54837929156681, -23.810447159278368], + [-45.54845229197263, -23.810479159130814], + [-45.54850329230861, -23.81052115903784], + [-45.548557292649825, -23.81056015893659], + [-45.548576292733145, -23.810560158893917], + [-45.54862229286013, -23.81053215877627], + [-45.54864529292098, -23.810517158716916], + [-45.548703293231576, -23.810538158597414], + [-45.54874629342025, -23.810538158500858], + [-45.54879229365146, -23.8105491584032], + [-45.54883529389628, -23.810570158317365], + [-45.54887329406304, -23.810570158232032], + [-45.548904294198955, -23.81057015816241], + [-45.54893529437246, -23.81058415810005], + [-45.54895829451074, -23.81059815805549], + [-45.54899729468187, -23.81059815796792], + [-45.54904729486121, -23.810583157848026], + [-45.54910529523856, -23.810629157741346], + [-45.54914029552585, -23.810679157688323], + [-45.54916329567215, -23.810696157645392], + [-45.54918729577748, -23.810696157591483], + [-45.54922529583998, -23.810657157486123], + [-45.54927929599933, -23.810628157350077], + [-45.54931429607809, -23.810600157257042], + [-45.549313296006865, -23.810575157246525], + [-45.54928629584295, -23.810558157298463], + [-45.54926329572061, -23.810550157345958], + [-45.54933229594854, -23.810522157176653], + [-45.54937529608909, -23.810504157070877], + [-45.54941029622389, -23.810497156988724], + [-45.54943329623928, -23.8104651569206], + [-45.54940529606031, -23.81044415697276], + [-45.54939029590896, -23.81041215699006], + [-45.54936729568504, -23.810366157018052], + [-45.54934029551855, -23.810348157069463], + [-45.54930829531124, -23.810323157128504], + [-45.54926629508153, -23.810306157214118], + [-45.54924329490314, -23.810277157250926], + [-45.549216294701786, -23.810246157295666], + [-45.54918529449899, -23.81022115735253], + [-45.549165294336404, -23.81019315738301], + [-45.549142294157946, -23.81016415741988], + [-45.54913829398004, -23.810104157398015], + [-45.54914929380102, -23.810019157329798], + [-45.54914829350261, -23.809909157275623], + [-45.549133293228394, -23.80983115726935], + [-45.54912529304088, -23.809774157258108], + [-45.5491132929027, -23.80974215726866], + [-45.54914829291455, -23.809689157162857], + [-45.54925929323851, -23.80962815688234], + [-45.549394293697134, -23.809578156553577], + [-45.54944029389892, -23.80957815645026], + [-45.54949129405589, -23.809553156322906], + [-45.549475293892165, -23.809518156340857], + [-45.54951029398686, -23.80949615625101], + [-45.54953729410532, -23.809496156190374], + [-45.549614294443124, -23.809496156017442], + [-45.54969129487447, -23.80953115586245], + [-45.549768295297895, -23.809563155705916], + [-45.54985329571625, -23.809580155523786], + [-45.54990829601362, -23.809601155411027], + [-45.54997029636054, -23.80962915528615], + [-45.55005529680028, -23.809654155108102], + [-45.55012029712284, -23.8096681549693], + [-45.550170297320875, -23.809660154852864], + [-45.55022429758712, -23.809671154737273], + [-45.55029829791175, -23.809671154571067], + [-45.55034429806544, -23.809653154458466], + [-45.550355298028165, -23.809621154417478], + [-45.55036329798571, -23.80959215438462], + [-45.5504132982051, -23.809592154272323], + [-45.55046329833094, -23.80955715414206], + [-45.55051029847832, -23.809535154025273], + [-45.55056029868693, -23.80953115391088], + [-45.550606298888724, -23.809531153807562], + [-45.55067229921575, -23.80954515366661], + [-45.55071829944695, -23.80955615356886], + [-45.55078029976436, -23.809573153438322], + [-45.55083830012306, -23.809612153328047], + [-45.55087330048509, -23.809690153289417], + [-45.55090830070552, -23.80971515322364], + [-45.55096630108295, -23.809761153116924], + [-45.550970301194035, -23.809796153125916], + [-45.55099330138845, -23.809831153092183], + [-45.55102430157266, -23.809849153031735], + [-45.55105530166053, -23.80983115295293], + [-45.55109430183165, -23.809831152865335], + [-45.551144302107105, -23.80985215276376], + [-45.55120230239096, -23.809863152639146], + [-45.551283302858536, -23.809905152478755], + [-45.551380303538096, -23.810000152309613], + [-45.55142730389665, -23.810057152233174], + [-45.55150430453663, -23.81017015211814], + [-45.55154730487766, -23.81022715205078], + [-45.55158230514346, -23.810269151993705], + [-45.55158230528517, -23.81032215202078], + [-45.55160230549584, -23.810368151999512], + [-45.551652305792686, -23.810397151901995], + [-45.55171830610903, -23.810407151758877], + [-45.55175630638807, -23.81044915169506], + [-45.55179530655116, -23.810446151605966], + [-45.5518063064951, -23.810407151561236], + [-45.55178730631551, -23.810371151585507], + [-45.55180630627584, -23.810325151519272], + [-45.55182530643404, -23.810353151490865], + [-45.55186430672815, -23.810399151426825], + [-45.55190730706919, -23.81045615135954], + [-45.55199630758261, -23.810502151183165], + [-45.552143308414664, -23.81057215088876], + [-45.55231330931022, -23.81062815053571], + [-45.5524173098226, -23.810649150312795], + [-45.5524683100651, -23.810656150201797], + [-45.55251031034295, -23.810691150125336], + [-45.55254531053389, -23.81070515005398], + [-45.55265331108519, -23.810734149826168], + [-45.55276531169689, -23.81077914959771], + [-45.552808311933646, -23.81079714951031], + [-45.5528733122081, -23.810793149362265], + [-45.552908312428436, -23.81081814929638], + [-45.552943312694346, -23.810860149239286], + [-45.55295531284327, -23.81089614923082], + [-45.5529983131148, -23.81092714915009], + [-45.5530563134254, -23.810948149030523], + [-45.55308331357327, -23.810959148975524], + [-45.55313731381009, -23.81095914885422], + [-45.55320631419572, -23.81099014871506], + [-45.55325331445009, -23.811008148618786], + [-45.55328031464337, -23.81103614857239], + [-45.553307314809935, -23.811054148521023], + [-45.55334631501851, -23.8110681484405], + [-45.553388315192066, -23.811064148344116], + [-45.55342331527873, -23.811039148252757], + [-45.55345331538358, -23.811029148180207], + [-45.55348831559325, -23.811050148112308], + [-45.553519315737255, -23.81105314804426], + [-45.55355031580649, -23.811028147961796], + [-45.553581315838166, -23.810989147872164], + [-45.553615315931154, -23.810968147785058], + [-45.55363931607391, -23.81098214773825], + [-45.55370031641635, -23.81101014761564], + [-45.55373531662601, -23.81103114754771], + [-45.553782316917754, -23.81106314745851], + [-45.55382031715937, -23.811091147387483], + [-45.5538753174381, -23.811105147271107], + [-45.55392931772315, -23.81112314715907], + [-45.55396731788712, -23.811122147073092], + [-45.55401731810643, -23.81112214696079], + [-45.55406831841579, -23.811154146862574], + [-45.554107318672386, -23.81118614679134], + [-45.554145318839126, -23.811186146705953], + [-45.554195319029006, -23.81117514658804], + [-45.55422631911694, -23.81115714650921], + [-45.554272319185024, -23.811107146380223], + [-45.554342319444, -23.811089146213753], + [-45.55439631971023, -23.811100146098088], + [-45.5544803200012, -23.811071145894545], + [-45.554507319985944, -23.811021145808233], + [-45.55455331998984, -23.810947145667008], + [-45.554592319922946, -23.810858145533835], + [-45.55459131975544, -23.810797145504864], + [-45.554591319632436, -23.810751145481333], + [-45.554626319633506, -23.810694145373517], + [-45.554672319768535, -23.810669145257332], + [-45.554699319926996, -23.810684145204352], + [-45.5547453201662, -23.810698145108184], + [-45.554815320548165, -23.81072614496527], + [-45.55488032084137, -23.810729144820744], + [-45.554919321041915, -23.810740144738798], + [-45.55495832117282, -23.81072514464349], + [-45.55500432139331, -23.810732144543675], + [-45.5550393216512, -23.81077114448505], + [-45.55507032183521, -23.810789144424668], + [-45.55510932200632, -23.810789144337058], + [-45.55512432191967, -23.81073214427407], + [-45.555108321697084, -23.810675144280925], + [-45.55510832156338, -23.81062514425537], + [-45.5550853213502, -23.810583144285523], + [-45.555046321026694, -23.810526144343875], + [-45.55504532088056, -23.810473144319033], + [-45.55504532068269, -23.810399144281096], + [-45.55503732049514, -23.810342144269967], + [-45.55505232051278, -23.81032414422707], + [-45.55508332068629, -23.81033814416459], + [-45.555118320887914, -23.810356144095163], + [-45.555153321041416, -23.810356144016513], + [-45.55517232118096, -23.810377143984628], + [-45.55521532136961, -23.81037714388804], + [-45.555222321304015, -23.810341143853837], + [-45.55520332103081, -23.810270143860162], + [-45.55522632088564, -23.81017814376142], + [-45.55517932056716, -23.8101361438455], + [-45.5551443201944, -23.8100541438821], + [-45.55511331997276, -23.81002214393538], + [-45.55509031979705, -23.809994143972734], + [-45.55509331962035, -23.80992314392963], + [-45.55508531947297, -23.80988114392607], + [-45.55505031923384, -23.809849143988345], + [-45.55501231898163, -23.80981714405735], + [-45.55495431859618, -23.80976814416251], + [-45.55488031819402, -23.8097391443139], + [-45.55482631785552, -23.80970114441581], + [-45.554791317568345, -23.809651144468805], + [-45.5547453172916, -23.809623144557875], + [-45.55470631708316, -23.809609144638223], + [-45.554667316837175, -23.80958114471159], + [-45.55462831648433, -23.809513144764356], + [-45.55459331621845, -23.809471144821448], + [-45.55457031603195, -23.809439144856782], + [-45.554547315856254, -23.809411144894092], + [-45.55452831579157, -23.80941814494039], + [-45.55449731563687, -23.80941114500639], + [-45.55448131545171, -23.80936814502032], + [-45.554477315217625, -23.80928714498789], + [-45.55447631493782, -23.809184144937397], + [-45.55445331465777, -23.80911714495475], + [-45.554453314457234, -23.809042144916344], + [-45.554425314013635, -23.80892214491781], + [-45.554413313752434, -23.808844144904782], + [-45.55439031355524, -23.808808144938045], + [-45.55435131329057, -23.808773145007684], + [-45.55431631310767, -23.80876214508073], + [-45.554278312866074, -23.808734145151767], + [-45.554258312711546, -23.80870914518387], + [-45.554223312568745, -23.808713145264587], + [-45.55419731251349, -23.80873514533421], + [-45.554158312331715, -23.808731145419706], + [-45.55412731212086, -23.808703145475096], + [-45.5541043119638, -23.808682145515938], + [-45.55407731182674, -23.80867514557307], + [-45.554042311718604, -23.808692145660356], + [-45.554019311620436, -23.80869314571254], + [-45.55398431146686, -23.80869314579116], + [-45.55395731128164, -23.808668145839068], + [-45.55394531119949, -23.80865714586028], + [-45.553914310913896, -23.808601145901296], + [-45.55389531064067, -23.80853014590762], + [-45.55389831046399, -23.808459145864504], + [-45.55391731038699, -23.808399145791107], + [-45.5539023101687, -23.80834214579559], + [-45.55388230996603, -23.808299145818513], + [-45.55388230987245, -23.808264145800596], + [-45.55390930988663, -23.808225145719973], + [-45.55393530983762, -23.80816414563035], + [-45.55393530971464, -23.808118145606787], + [-45.55394730961481, -23.80806114555066], + [-45.55391630937734, -23.80802314560078], + [-45.55388130905266, -23.807959145646656], + [-45.55384630879492, -23.807920145705253], + [-45.553818308444846, -23.80783514572471], + [-45.55385330843526, -23.80777414561479], + [-45.553852308289166, -23.807721145589934], + [-45.553845308108784, -23.807665145576983], + [-45.553864308077145, -23.807622145512287], + [-45.55388330794133, -23.807540145427573], + [-45.55392930790515, -23.807451145278677], + [-45.5539513078305, -23.80738714519653], + [-45.55396330773343, -23.80733114514088], + [-45.55393930751319, -23.807288145172773], + [-45.55391630732679, -23.80725614520806], + [-45.553947307320996, -23.807203145111238], + [-45.553985307439575, -23.807185145016717], + [-45.553997307387974, -23.80714614496975], + [-45.554000307163264, -23.807057144917454], + [-45.553973306865714, -23.806990144943732], + [-45.55398430679092, -23.806944144895482], + [-45.55400330677005, -23.80690514483281], + [-45.55400330663641, -23.806855144807244], + [-45.55398430644073, -23.80681314482841], + [-45.5539763062827, -23.806767144822842], + [-45.553999306297975, -23.80673514475481], + [-45.55401430625953, -23.806696144701096], + [-45.55399130605444, -23.806657144732867], + [-45.55400630594913, -23.806593144666337], + [-45.55402930589759, -23.806536144585483], + [-45.55402930580134, -23.80650014456707], + [-45.554005305535746, -23.806440144590265], + [-45.553986305358784, -23.806405144614956], + [-45.55398630521711, -23.806352144587876], + [-45.55396630498773, -23.80629914460561], + [-45.553943304819974, -23.806274144644448], + [-45.55395430473458, -23.80622414459418], + [-45.55392330443824, -23.806164144633094], + [-45.55388830421794, -23.806139144698868], + [-45.553857304055164, -23.806129144763414], + [-45.55379930371533, -23.80609714487723], + [-45.55373730333907, -23.80605814499657], + [-45.55368330299002, -23.80601614509632], + [-45.55363730275886, -23.806005145193975], + [-45.55363730269204, -23.805980145181156], + [-45.553613302522585, -23.8059561452228], + [-45.553525302222155, -23.805988145436825], + [-45.55344730176772, -23.80594614559048], + [-45.55340930150487, -23.80591014565741], + [-45.55336230126123, -23.80589614575572], + [-45.55331230104197, -23.805896145868005], + [-45.55328930079946, -23.805843145892567], + [-45.553250300524134, -23.805804145960142], + [-45.553215300314534, -23.80578314602803], + [-45.553188300131936, -23.805759146076344], + [-45.55314529985781, -23.80572714615654], + [-45.55310329964417, -23.805716146245214], + [-45.55302229917659, -23.80567414640568], + [-45.5529522987654, -23.805635146542873], + [-45.552913298594305, -23.805635146630475], + [-45.552879298426504, -23.805628146703274], + [-45.55282429809171, -23.805593146808782], + [-45.55278629785816, -23.8055681468813], + [-45.55273529757038, -23.805544146983603], + [-45.55267429720931, -23.8055091471026], + [-45.55255429658943, -23.805474147354186], + [-45.552484296215475, -23.80544914749854], + [-45.55244229599391, -23.805435147585683], + [-45.55232229542208, -23.805418147846463], + [-45.55225629509523, -23.805404147987495], + [-45.5522172948387, -23.805372148058712], + [-45.55223729488889, -23.8053581480066], + [-45.552294295138985, -23.805358147878607], + [-45.55232929530048, -23.805361147801527], + [-45.55234529528513, -23.805329147749223], + [-45.55232929510002, -23.80528614776313], + [-45.552302294877364, -23.80524714780375], + [-45.552302294754405, -23.805201147780195], + [-45.55232129474417, -23.805166147719635], + [-45.55234029464582, -23.805098147642095], + [-45.55234029451487, -23.805049147617012], + [-45.55234329437564, -23.804992147581068], + [-45.55238929435021, -23.80490714743422], + [-45.5524082942999, -23.804857147365862], + [-45.55242029412544, -23.80477214729545], + [-45.552442294069564, -23.80471514721686], + [-45.552465294055565, -23.804672147143172], + [-45.55247329394896, -23.80461914709802], + [-45.55247329380728, -23.80456614707082], + [-45.55249929375029, -23.804502146979786], + [-45.55257229358663, -23.804321146723083], + [-45.55261029346738, -23.804214146582947], + [-45.55262529330597, -23.804129146505716], + [-45.55263329318077, -23.804069146456936], + [-45.5526292930109, -23.804012146436797], + [-45.55269829300878, -23.80389814622344], + [-45.552759293001124, -23.803795146033703], + [-45.55281629297574, -23.803692145852935], + [-45.55290129289155, -23.80352114557445], + [-45.55298929273764, -23.803319145273363], + [-45.55305429271009, -23.803202145067473], + [-45.55309629267515, -23.803120144931206], + [-45.55308429247018, -23.80306314492894], + [-45.553080292310916, -23.80301014491074], + [-45.5530992922981, -23.802974144849667], + [-45.553161292484475, -23.802942144693993], + [-45.55317629246475, -23.80291014464393], + [-45.553172292305575, -23.802857144625815], + [-45.55318329212658, -23.80277214455757], + [-45.55320229211377, -23.80273614449642], + [-45.55322129203674, -23.802676144423035], + [-45.553225291920626, -23.80262614438846], + [-45.55328329201464, -23.8025661442275], + [-45.55341329196742, -23.80233514381725], + [-45.55345529200999, -23.80228214369577], + [-45.55347029186466, -23.80220314362165], + [-45.5535122918885, -23.80214314349663], + [-45.55353929194011, -23.80211814342316], + [-45.55358129191586, -23.802040143288945], + [-45.55367029205762, -23.801947143041403], + [-45.553727292117856, -23.80187614287713], + [-45.55378529215309, -23.801794142704853], + [-45.55380429210541, -23.801745142637127], + [-45.55390029237404, -23.80168814239237], + [-45.55393529248748, -23.801673142306083], + [-45.55403529265078, -23.801570142028716], + [-45.554108292770444, -23.801495141826383], + [-45.55417329281761, -23.801406141634867], + [-45.55422329285788, -23.80133914148833], + [-45.55424629276894, -23.80126814140033], + [-45.554300292842754, -23.801207141247833], + [-45.55431929289932, -23.801197141200035], + [-45.55433429289828, -23.801172141153597], + [-45.55435029286422, -23.80113314109768], + [-45.55438429299199, -23.801125141017206], + [-45.554400293166275, -23.80116414100128], + [-45.55441529331767, -23.801196140983954], + [-45.55445029352722, -23.801217140916183], + [-45.55450429380146, -23.801231140802003], + [-45.554543294001896, -23.801242140720085], + [-45.55460529438598, -23.801284140602377], + [-45.55464029455814, -23.80129114052743], + [-45.55472929501522, -23.801316140340315], + [-45.55477929527986, -23.801333140236824], + [-45.554845295654836, -23.801365140104895], + [-45.5548792958521, -23.801383140037846], + [-45.55496829626908, -23.801393139843057], + [-45.55502629662757, -23.801432139732807], + [-45.55508129699169, -23.80147813963286], + [-45.55515029740653, -23.80152013949941], + [-45.55520029767117, -23.801537139395816], + [-45.55525529797651, -23.801561139284633], + [-45.55533229844786, -23.801611139137272], + [-45.555379298758176, -23.801650139051745], + [-45.555425299037374, -23.8016791389633], + [-45.55548329932912, -23.80169313884021], + [-45.55554529967579, -23.801721138715333], + [-45.5555832998692, -23.801731138635144], + [-45.55564930015854, -23.801731138486925], + [-45.55572230048669, -23.801734138324516], + [-45.55578030080784, -23.80175913820707], + [-45.5558423011653, -23.801791138084212], + [-45.555950301692306, -23.801811137851878], + [-45.556008301965356, -23.801818137725185], + [-45.556043302148176, -23.801829137652213], + [-45.55612030254194, -23.801850137490096], + [-45.55620930295898, -23.80186013729528], + [-45.55629830342409, -23.801888137109756], + [-45.55639530391619, -23.80191313690472], + [-45.556437304127094, -23.801923136815567], + [-45.55649930441773, -23.801930136679854], + [-45.55657230476448, -23.80194013652106], + [-45.55662630501198, -23.8019441364018], + [-45.55664230501531, -23.80191913635314], + [-45.556688304912285, -23.801805136191444], + [-45.55671830489148, -23.8017481360949], + [-45.55673830491233, -23.801723136037165], + [-45.556794305043056, -23.801680135889377], + [-45.556799304944654, -23.801635135855115], + [-45.556826304956154, -23.801595135773972], + [-45.55684530484165, -23.80152113569343], + [-45.55690230494725, -23.801467135537855], + [-45.556968305151166, -23.801435135373172], + [-45.55699930520154, -23.801403135287195], + [-45.55701430515506, -23.801361135231993], + [-45.55701430494659, -23.801283135192094], + [-45.556979304622004, -23.801219135237975], + [-45.556971304386515, -23.801144135217484], + [-45.55697030422177, -23.80108413518912], + [-45.55693530397471, -23.80104913524975], + [-45.556916303813914, -23.801020135277575], + [-45.556927303731186, -23.800971135227822], + [-45.556927303626956, -23.800932135207827], + [-45.55690030342303, -23.80090013525212], + [-45.55685030318504, -23.800893135360763], + [-45.556765302708165, -23.80085413553175], + [-45.55668030214837, -23.8007841356868], + [-45.55661830173478, -23.800731135798856], + [-45.55654830126759, -23.800671135925377], + [-45.556517301046135, -23.80063913597862], + [-45.55647430064911, -23.80056113603528], + [-45.55641630030126, -23.80052613614757], + [-45.55637730003402, -23.800490136216666], + [-45.55631929971557, -23.800466136334688], + [-45.55625029929013, -23.8004201364661], + [-45.55620729894926, -23.80036313653347], + [-45.55616829874082, -23.800349136613868], + [-45.5561372985675, -23.800335136676313], + [-45.55602929789613, -23.800261136880945], + [-45.55599429764915, -23.80022613694167], + [-45.555939297170134, -23.800137137019625], + [-45.55588529674626, -23.800067137105017], + [-45.55582729640643, -23.80003513721882], + [-45.55570329572113, -23.799982137470185], + [-45.5556492953908, -23.79994713757347], + [-45.55557629491039, -23.79988713770674], + [-45.55549829454971, -23.799880137878272], + [-45.55546729432828, -23.79984813793152], + [-45.555429294068084, -23.799813137998846], + [-45.555382293682975, -23.799746138070116], + [-45.555339293256594, -23.79965713812105], + [-45.55533529303065, -23.799579138090092], + [-45.55526129228133, -23.79942013817492], + [-45.55524529208825, -23.799374138187208], + [-45.55524929194277, -23.799313138147014], + [-45.555291291899806, -23.799228138009177], + [-45.55527129155551, -23.799132138004953], + [-45.55524429119129, -23.79904013801851], + [-45.55523629098525, -23.79897613800366], + [-45.55526329098073, -23.798930137919474], + [-45.55529029092812, -23.798866137826035], + [-45.55530529084155, -23.798809137763236], + [-45.55527429058265, -23.798763137809296], + [-45.55522329023885, -23.798718137900778], + [-45.55517728997839, -23.79869613799273], + [-45.55513028967078, -23.79865813807878], + [-45.5550292886881, -23.79845613820218], + [-45.55492828775371, -23.798272138334674], + [-45.55489728743611, -23.79820413836942], + [-45.554893287202106, -23.798123138336962], + [-45.55489228703473, -23.79806213830801], + [-45.55488028677378, -23.79798413829493], + [-45.55488828653628, -23.797882138224807], + [-45.55489928646963, -23.797839138178087], + [-45.554880286196656, -23.79776813818428], + [-45.55488328603881, -23.797704138144805], + [-45.55488728591472, -23.797651138108634], + [-45.55486328570527, -23.7976121381426], + [-45.55478628525547, -23.79757013829395], + [-45.55473628495071, -23.797538138389836], + [-45.55469728466756, -23.797496138455887], + [-45.55464328436397, -23.797471138564287], + [-45.55457728396242, -23.797429138690937], + [-45.55454628363685, -23.797358138724167], + [-45.55453428345063, -23.797308138725516], + [-45.55455728345793, -23.79727313865589], + [-45.554576283314184, -23.797188138569787], + [-45.554614283355185, -23.79714113846041], + [-45.55464128347357, -23.797141138399798], + [-45.55470728372557, -23.797127138244452], + [-45.55474628392321, -23.797137138161975], + [-45.55478428412726, -23.79715113808383], + [-45.55485028441657, -23.79715113793566], + [-45.55490428459726, -23.797130137803713], + [-45.55495428477644, -23.797115137683708], + [-45.55500828485293, -23.79705513753184], + [-45.55502328477432, -23.797001137470495], + [-45.55499628450641, -23.796945137502405], + [-45.55498428432011, -23.796895137503764], + [-45.554999284252375, -23.796845137444443], + [-45.555042284432886, -23.796842137346392], + [-45.55507328464359, -23.796870137291144], + [-45.555092284820375, -23.796905137266375], + [-45.5551312849914, -23.79690513717881], + [-45.555200285208336, -23.796873137007534], + [-45.55523928537934, -23.796873136919977], + [-45.55529628561057, -23.796866136788395], + [-45.555339285721594, -23.796837136677073], + [-45.55536628583999, -23.79683713661647], + [-45.55542428611298, -23.7968441364898], + [-45.55547428633215, -23.796844136377523], + [-45.55550528643874, -23.796833136302382], + [-45.555532286490255, -23.79680813622893], + [-45.555570286590005, -23.796783136130788], + [-45.55565128686768, -23.796754135934098], + [-45.55575128722061, -23.79672213569321], + [-45.55583228754637, -23.796711135505703], + [-45.55589028776326, -23.796697135368298], + [-45.55591328780526, -23.79667513530546], + [-45.555898287683405, -23.796654135328325], + [-45.55588628759343, -23.796640135348092], + [-45.55590128762171, -23.796626135307243], + [-45.555913287607545, -23.796601135267554], + [-45.55589028742126, -23.796569135302757], + [-45.55585128713804, -23.796527135368773], + [-45.55583128682329, -23.796442135370242], + [-45.555842286708554, -23.796381135314316], + [-45.55586928671465, -23.796339135232213], + [-45.55586928664784, -23.79631413521936], + [-45.55585428649658, -23.796282135236577], + [-45.555854286421784, -23.796254135222327], + [-45.55587328646507, -23.796239135172005], + [-45.55586128632685, -23.796207135182566], + [-45.55581528599429, -23.796158135260676], + [-45.555760285622334, -23.796109135359103], + [-45.55568328518853, -23.796073135513506], + [-45.55566728495017, -23.796010135517186], + [-45.55563228467111, -23.795963135571732], + [-45.55560928445, -23.795918135600303], + [-45.55560928437253, -23.795889135585476], + [-45.55564028449782, -23.795885135513842], + [-45.555686284699476, -23.795885135410558], + [-45.55571328481786, -23.79588513534994], + [-45.55571328473238, -23.795853135333502], + [-45.55569328456982, -23.795825135364044], + [-45.55565528435511, -23.79580713544017], + [-45.55561628412008, -23.795783135515382], + [-45.555585283861284, -23.795737135561442], + [-45.55559328381884, -23.79570813552872], + [-45.55560028375607, -23.79567313549505], + [-45.55558128351252, -23.79561313550698], + [-45.55557328326901, -23.795535135484926], + [-45.55553428287896, -23.795453135530554], + [-45.55551828267523, -23.795403135540806], + [-45.5554982824193, -23.795340135553577], + [-45.55546328214301, -23.795294135608504], + [-45.555429281927104, -23.795269135672005], + [-45.55540528175507, -23.795244135713123], + [-45.555397281597166, -23.79519813570747], + [-45.555366281367775, -23.795163135759154], + [-45.55532428106875, -23.795120135831425], + [-45.55530128092257, -23.795103135874356], + [-45.55530728087671, -23.795076135847047], + [-45.555351281056254, -23.79507113574575], + [-45.55538528126937, -23.79509513568176], + [-45.55542828143119, -23.795085135580067], + [-45.55545128145458, -23.79505613551358], + [-45.555466281397436, -23.795010135456362], + [-45.555501281494756, -23.794989135366993], + [-45.555555281643336, -23.794956135228887], + [-45.555570281604815, -23.794917135175226], + [-45.55561628167299, -23.79486713504637], + [-45.55565528177979, -23.7948431349466], + [-45.555701281914736, -23.794818134830415], + [-45.55575128202702, -23.794778134697783], + [-45.555839282346, -23.794753134487372], + [-45.555920282548854, -23.79469613427635], + [-45.55601328276684, -23.79462513403123], + [-45.556066282828134, -23.794561133879494], + [-45.556109282920474, -23.794525133764502], + [-45.55618628313522, -23.794479133568085], + [-45.55628928333826, -23.794386133289287], + [-45.5563782835681, -23.794326133058785], + [-45.556478283862226, -23.794272132806615], + [-45.55659028418224, -23.794208132522428], + [-45.55671328456912, -23.794151132217113], + [-45.556771284631026, -23.794079132050037], + [-45.55685128489616, -23.79404713185408], + [-45.55698628533563, -23.793990131521824], + [-45.55702528540244, -23.79395113141426], + [-45.5571562857763, -23.793876131081813], + [-45.55718728584005, -23.79384913099837], + [-45.557294286095406, -23.79376913071724], + [-45.55739428636271, -23.793705130459923], + [-45.5574942866755, -23.79365813021138], + [-45.55764128715955, -23.793598129850672], + [-45.55773728749223, -23.793565129618287], + [-45.55778328763773, -23.793544129504287], + [-45.55783728783438, -23.7935291293753], + [-45.557961288236356, -23.793476129069848], + [-45.55809928866754, -23.793411128726703], + [-45.55821528902373, -23.793354128437105], + [-45.55830728929339, -23.79330412820501], + [-45.558411289663724, -23.793272127955174], + [-45.55843828976339, -23.793265127890912], + [-45.558519289992795, -23.793218127685005], + [-45.55857329008793, -23.793165127536636], + [-45.5586892905189, -23.79313612726145], + [-45.55875029071952, -23.793111127111672], + [-45.55886229108748, -23.793065126836677], + [-45.558982291562685, -23.793046126557563], + [-45.55905129177964, -23.793014126386193], + [-45.55912029203398, -23.792996126222107], + [-45.559209292424065, -23.792996126022278], + [-45.55925929269928, -23.793017125920716], + [-45.55934029299558, -23.792995125727664], + [-45.55948729350627, -23.792945125371965], + [-45.559599293919625, -23.792916125105663], + [-45.55963729408622, -23.79291612502035], + [-45.55986829486089, -23.792827124456174], + [-45.56006529548381, -23.79273712396782], + [-45.560192295840054, -23.79266212364432], + [-45.56028429608294, -23.79260212340706], + [-45.56041229656647, -23.792573123104823], + [-45.560547297072716, -23.79254112278535], + [-45.56059329721552, -23.792519122670775], + [-45.56071629768777, -23.792494122381793], + [-45.56089729830732, -23.792429121942163], + [-45.56100129864829, -23.792386121686633], + [-45.5611792993616, -23.792361121274144], + [-45.56141030029642, -23.79233212074062], + [-45.56149930064647, -23.792317120533095], + [-45.56174630159536, -23.792267119952943], + [-45.5618693020836, -23.792248119667068], + [-45.56201230264352, -23.792223119333133], + [-45.56214730315764, -23.79219411901515], + [-45.562359303838164, -23.79210111849159], + [-45.562636304710054, -23.791973117804094], + [-45.5627903052594, -23.791926117434258], + [-45.562929305780294, -23.791893117105264], + [-45.563037306234946, -23.79188611685912], + [-45.5631953069727, -23.79190311651299], + [-45.56330030743291, -23.791903116277187], + [-45.56344330814233, -23.79193411597189], + [-45.56354330858867, -23.791937115748837], + [-45.56366630912766, -23.791937115472592], + [-45.56377530965069, -23.791954115236507], + [-45.56389831022707, -23.791968114967506], + [-45.56399931066978, -23.79196811474071], + [-45.56423031160182, -23.791938114206587], + [-45.56437331219105, -23.79192411387826], + [-45.56460431312317, -23.791894113344167], + [-45.564747313731104, -23.79188711301937], + [-45.564847314158634, -23.79188311279279], + [-45.564901314336396, -23.79186111266021], + [-45.56503631487193, -23.7918401123463], + [-45.56514831524774, -23.791797112072803], + [-45.56526431569725, -23.791775111800966], + [-45.56534131600523, -23.791764111622477], + [-45.565395316212474, -23.79175311149556], + [-45.56550331673389, -23.791771111262165], + [-45.56556931704978, -23.791781111119057], + [-45.56562331728643, -23.791781110997793], + [-45.56572331766576, -23.79175911076195], + [-45.565862318320306, -23.79177611045836], + [-45.56595831880783, -23.79180111025553], + [-45.56606331933204, -23.791825110031994], + [-45.56621032010713, -23.791874109726812], + [-45.566322320645945, -23.791892109484436], + [-45.56640732103445, -23.79189810929661], + [-45.56658132194933, -23.791955108934904], + [-45.566669322369606, -23.79196810874392], + [-45.5667973229786, -23.79198610846556], + [-45.56691332345749, -23.791975108199374], + [-45.56696732366473, -23.791964108072516], + [-45.56702132396542, -23.79198810796341], + [-45.56708232423279, -23.791988107826395], + [-45.56712132440362, -23.791988107738774], + [-45.56721432477375, -23.791974107522723], + [-45.56728732509094, -23.791973107358253], + [-45.56737632552902, -23.79199110716751], + [-45.56773132715665, -23.792018106383836], + [-45.567874327791266, -23.792021106064144], + [-45.56794732811914, -23.792024105901657], + [-45.568055328677865, -23.792056105675474], + [-45.56814432913199, -23.79208010548774], + [-45.56826032964025, -23.792080105227146], + [-45.56836433009326, -23.79207910499299], + [-45.568492330710264, -23.792100104716233], + [-45.568619331322886, -23.79212110444161], + [-45.568789332094504, -23.792131104064847], + [-45.56890933261758, -23.79213010379476], + [-45.56899033292432, -23.792112103603525], + [-45.56905933328281, -23.792133103459285], + [-45.56911333355679, -23.792147103345112], + [-45.569148333702174, -23.79214410326496], + [-45.569210333906945, -23.792119103112896], + [-45.56927133418224, -23.792122102977366], + [-45.56946133520185, -23.79219210258625], + [-45.569527335547214, -23.79221310244875], + [-45.56959233584265, -23.792217102304747], + [-45.56975033646543, -23.792191101936456], + [-45.56982433678965, -23.79219110177022], + [-45.5699133371877, -23.79219410157177], + [-45.57000933757885, -23.792183101350442], + [-45.570144338092774, -23.792154101032352], + [-45.570210338381976, -23.792154100884048], + [-45.57037533904609, -23.792132100502165], + [-45.57048733955541, -23.792139100254037], + [-45.57060334006099, -23.7921380999929], + [-45.5706963404605, -23.79213509978244], + [-45.57077334077644, -23.792127099605395], + [-45.570920341447206, -23.79213709928016], + [-45.571051342047895, -23.79214709899093], + [-45.57114434248473, -23.792158098787535], + [-45.571232342840844, -23.792147098584266], + [-45.57138734354672, -23.792157098241013], + [-45.57149934410159, -23.792181098001652], + [-45.57156834441453, -23.792185097848716], + [-45.57174234507802, -23.79214809743883], + [-45.57187734559458, -23.79212009712117], + [-45.571989346053115, -23.79210809686337], + [-45.572097346518326, -23.7921050966192], + [-45.5723253477043, -23.792175096142596], + [-45.5724643483668, -23.792195095840434], + [-45.572599349033105, -23.792223095551332], + [-45.572653349317825, -23.79224109543918], + [-45.57275734975204, -23.792233095201414], + [-45.572861350215675, -23.792236094969233], + [-45.57292735055291, -23.79225409483007], + [-45.57305535109231, -23.79224609453833], + [-45.5731283513747, -23.79223209436721], + [-45.57320135176936, -23.79226009421745], + [-45.57324035198839, -23.792278094138982], + [-45.573363352476406, -23.792259093852895], + [-45.57347535291094, -23.792238093590456], + [-45.57356835336379, -23.792255093390132], + [-45.57363035359804, -23.792241093243643], + [-45.57375335408871, -23.792223092958068], + [-45.57394235494076, -23.792232092537933], + [-45.57417435590899, -23.792214092007406], + [-45.57427435634432, -23.792213091782155], + [-45.57436335673429, -23.792213091582152], + [-45.574432357036514, -23.792213091427065], + [-45.574513357455565, -23.79223709125721], + [-45.57459535781476, -23.79223709107292], + [-45.57473735836998, -23.792212090741018], + [-45.574899359076966, -23.79221109037642], + [-45.574996359550056, -23.79222909016758], + [-45.57520836052429, -23.792246089699773], + [-45.575332361064774, -23.792245089420557], + [-45.5754943618386, -23.792269089068725], + [-45.57564836252119, -23.792272088724104], + [-45.575787363130146, -23.792272088411703], + [-45.575895363525646, -23.79224308815415], + [-45.5759573638535, -23.792264088025565], + [-45.57602336422815, -23.792296087893508], + [-45.57611536462855, -23.79229508768623], + [-45.5762543652267, -23.792291087371773], + [-45.57636236569985, -23.792291087129033], + [-45.57662836669118, -23.79222608649798], + [-45.57673736716862, -23.792226086252953], + [-45.576852367669716, -23.792225085993962], + [-45.5768813678128, -23.792231085931906], + [-45.57694936804116, -23.79220508576577], + [-45.577083368507765, -23.792160085441548], + [-45.57737636966817, -23.792114084759515], + [-45.577803371503784, -23.792101083793128], + [-45.578023372526275, -23.792123083309757], + [-45.57823137337317, -23.79209908283], + [-45.5784263742247, -23.792098082391146], + [-45.578561374877516, -23.79212108209934], + [-45.578866376269644, -23.79214208142443], + [-45.57911037736519, -23.792152080880946], + [-45.579221378273985, -23.792310080711868], + [-45.579405379318054, -23.792399080343543], + [-45.579820381191944, -23.79242007942128], + [-45.58012638267939, -23.792475078761267], + [-45.580394383850525, -23.7924740781582], + [-45.580699385092885, -23.79243907745466], + [-45.58089438567395, -23.792337076964298], + [-45.581029386174336, -23.792303076643478], + [-45.5811143864236, -23.79225707642896], + [-45.58127338702895, -23.792223076054082], + [-45.581468387821545, -23.792200075603898], + [-45.58162738854471, -23.792210075251507], + [-45.581773389184136, -23.79221007492322], + [-45.58192038982528, -23.79220907459218], + [-45.58217639085548, -23.792175073999278], + [-45.582384391702234, -23.79215107351932], + [-45.58260439269518, -23.79216207303026], + [-45.58282439374706, -23.792195072552314], + [-45.58326339563486, -23.792182071558507], + [-45.58345939658158, -23.792215071134617], + [-45.58364239747131, -23.792248070739852], + [-45.58380139816498, -23.792247070381798], + [-45.58398439893435, -23.792235069964118], + [-45.58420439986573, -23.792223069463247], + [-45.58435140053895, -23.79223406913829], + [-45.58448540112307, -23.792233068836435], + [-45.58464440175787, -23.792210068467114], + [-45.58474140215327, -23.792199068243338], + [-45.58488840282379, -23.792209067917867], + [-45.58495840323473, -23.792248067780296], + [-45.58503340362203, -23.792270067622766], + [-45.58506640379596, -23.792281067554175], + [-45.58508840391111, -23.79228806750822], + [-45.58512440411956, -23.792307067436987], + [-45.585151404235134, -23.792306067375748], + [-45.58518340440468, -23.792317067309313], + [-45.585234404622724, -23.792315067193606], + [-45.5852764048468, -23.792330067106757], + [-45.58531840505743, -23.79234006701741], + [-45.58535540524895, -23.79235106693982], + [-45.58537740537199, -23.792361066895353], + [-45.585417405581985, -23.792374066812027], + [-45.585456405750136, -23.79237306672382], + [-45.585491405938164, -23.79238606665171], + [-45.58552040609194, -23.792396066591596], + [-45.58556040630726, -23.792411066509267], + [-45.58560240651798, -23.79242106641992], + [-45.58567340682624, -23.792420066259712], + [-45.58572940709817, -23.792430066138827], + [-45.585759407226874, -23.792429066070827], + [-45.58578840739945, -23.79244606601423], + [-45.585821407573384, -23.792457065945612], + [-45.58585240770645, -23.7924560658754], + [-45.58588940790323, -23.79246906579879], + [-45.58595640823948, -23.79248506565622], + [-45.585974408366475, -23.79250306562488], + [-45.58601540854335, -23.79250206553216], + [-45.58605540876397, -23.792519065450822], + [-45.58608440888839, -23.79251806538509], + [-45.586111409041415, -23.792531065330977], + [-45.58615140921385, -23.79253006524051], + [-45.586195409433394, -23.79254006514664], + [-45.58623640961019, -23.79253906505395], + [-45.58630240988313, -23.79253306490239], + [-45.58634641004902, -23.79252306479839], + [-45.586380410171216, -23.792513064716804], + [-45.5864264103566, -23.79250706461032], + [-45.58648241057507, -23.792497064479257], + [-45.58653441078677, -23.79249106435919], + [-45.586592411024625, -23.792485064225712], + [-45.586660411276924, -23.792468064064117], + [-45.58671441151076, -23.792467063942176], + [-45.58675841173022, -23.792477063848224], + [-45.58680541196813, -23.792489063748626], + [-45.58684941215813, -23.792488063649163], + [-45.58689641239069, -23.792498063548557], + [-45.58693841261478, -23.792513063461698], + [-45.58697541277408, -23.792512063377977], + [-45.58706841317604, -23.792510063167782], + [-45.587111413361676, -23.79250906307055], + [-45.58717141365116, -23.792519062940617], + [-45.58723241391292, -23.792517062802403], + [-45.587274414126306, -23.792528062713515], + [-45.58731141432049, -23.79254006263642], + [-45.58736541458374, -23.79255006252005], + [-45.58739941476206, -23.7925610624491], + [-45.58745941508635, -23.792584062325872], + [-45.58749141526125, -23.792597062260516], + [-45.58754341551575, -23.79260706214858], + [-45.587585415731716, -23.792619062060197], + [-45.58762941598866, -23.792643061973457], + [-45.58767141620737, -23.792656061885513], + [-45.58770141637097, -23.792668061824237], + [-45.58772841651856, -23.792679061769018], + [-45.58775441669669, -23.792703061722765], + [-45.58778341685844, -23.792716061664166], + [-45.587811417050666, -23.79274206161432], + [-45.58785341727475, -23.792757061527535], + [-45.58788341746501, -23.792779061471194], + [-45.58791841765838, -23.79279406140008], + [-45.58793141780367, -23.792827061387573], + [-45.587946417930915, -23.79285006136556], + [-45.587959418046715, -23.792872061347484], + [-45.58799241826624, -23.792900061287472], + [-45.58800841843257, -23.79293606126985], + [-45.588023418575894, -23.792965061250822], + [-45.588068418877434, -23.793004061169462], + [-45.588101419128975, -23.793044061115502], + [-45.58813641931165, -23.793055061042338], + [-45.588178419565196, -23.793081060961093], + [-45.588192419639896, -23.793086060932122], + [-45.58820641971458, -23.79309106090323], + [-45.588233419891715, -23.793113060853624], + [-45.588263420100716, -23.79314206080089], + [-45.58829442032478, -23.7931750607479], + [-45.58832442052574, -23.79320106069363], + [-45.58833742065496, -23.79322806067812], + [-45.58833842074232, -23.793259060691625], + [-45.58835642088001, -23.793281060662256], + [-45.58838242116253, -23.793344060635864], + [-45.58838342125792, -23.793378060650852], + [-45.58837942129933, -23.793400060670994], + [-45.588395421465734, -23.793436060653328], + [-45.58839542154337, -23.79346506066807], + [-45.58840842167258, -23.793492060652575], + [-45.588410421807154, -23.793539060671936], + [-45.588412421968464, -23.793596060696416], + [-45.58840342203617, -23.793636060736997], + [-45.58838942207384, -23.79367306078735], + [-45.58836942209071, -23.79371206085211], + [-45.58836042211826, -23.793737060884986], + [-45.5883464221345, -23.793766060931322], + [-45.58834242218392, -23.793791060952962], + [-45.58832842217883, -23.793812060995176], + [-45.588316422193266, -23.7938370610349], + [-45.5883074222261, -23.7938640610688], + [-45.58830442233336, -23.793909061098404], + [-45.58829942237842, -23.79393406112239], + [-45.5883134225254, -23.793966061107227], + [-45.58831342258962, -23.793990061119363], + [-45.58832742276072, -23.794031061108647], + [-45.58835242293448, -23.79405506106471], + [-45.588367423064405, -23.794079061043103], + [-45.588383423193356, -23.79410106101833], + [-45.588413423397014, -23.794128060964564], + [-45.58844142363208, -23.794170060922838], + [-45.588459423788514, -23.7941990608971], + [-45.58847542392818, -23.794225060874332], + [-45.58850242408122, -23.794238060820213], + [-45.58852042423231, -23.794265060793443], + [-45.58853342436696, -23.79429406077894], + [-45.58855142451528, -23.794320060751577], + [-45.58856642465871, -23.794349060732667], + [-45.58859442486957, -23.794382060686416], + [-45.588596425012184, -23.794432060707273], + [-45.58860942514151, -23.794459060691786], + [-45.58861042524226, -23.794495060707767], + [-45.58861142537244, -23.794542060729476], + [-45.58862542554083, -23.79458206071825], + [-45.58862642566569, -23.794627060738943], + [-45.58864042586076, -23.794677060732827], + [-45.588653426030234, -23.79471906072493], + [-45.58866742619328, -23.794757060712776], + [-45.588681426393734, -23.794809060707653], + [-45.58869442652839, -23.794838060693145], + [-45.5887104267108, -23.794880060678494], + [-45.588728426867355, -23.79490906065274], + [-45.588744427044496, -23.794949060637], + [-45.58875642715586, -23.79497106062123], + [-45.58878542742218, -23.795023060582448], + [-45.588798427543274, -23.795047060565405], + [-45.588811427683225, -23.79507806055182], + [-45.58882442780708, -23.79510306053531], + [-45.588852428042166, -23.795145060493653], + [-45.58887542821253, -23.795171060455147], + [-45.588888428347026, -23.79520006044055], + [-45.58893542862252, -23.79522606034811], + [-45.588963428804064, -23.795248060296245], + [-45.58899842904566, -23.79528106023423], + [-45.589030429220685, -23.795294060168867], + [-45.589060429416236, -23.795318060113576], + [-45.58907842954331, -23.795336060082192], + [-45.58911142974403, -23.795357060018592], + [-45.589131429890486, -23.795379059984793], + [-45.589170430101476, -23.795394059904666], + [-45.58922543039849, -23.795415059791566], + [-45.58928443072121, -23.79543905967104], + [-45.58932243096799, -23.795469059600766], + [-45.58935543118477, -23.795496059540238], + [-45.5893724313181, -23.795518059513206], + [-45.589415431581386, -23.7955460594307], + [-45.589460431877534, -23.795583059348196], + [-45.58949243207119, -23.795603059286318], + [-45.5895304323367, -23.795640059219668], + [-45.589565432530115, -23.7956550591485], + [-45.58959543273378, -23.795682059094755], + [-45.58962843295325, -23.79571005903474], + [-45.58966743316958, -23.7957270589556], + [-45.5897334336113, -23.79578405883596], + [-45.58975143375435, -23.795808058807676], + [-45.58978143394464, -23.79583005875139], + [-45.58979943411447, -23.795864058728142], + [-45.589817434270934, -23.79589305870236], + [-45.58983043438679, -23.795915058684333], + [-45.58984343456958, -23.795962058678946], + [-45.58986043479932, -23.796020058670155], + [-45.58987543494265, -23.79604905865115], + [-45.589891435109124, -23.79608505863338], + [-45.58990443523565, -23.796111058617353], + [-45.589919435373666, -23.796138058597336], + [-45.589935435497274, -23.796158058571447], + [-45.58994843561312, -23.796180058553414], + [-45.589973435770816, -23.796198058506285], + [-45.58999343595746, -23.79623505848004], + [-45.59003843621878, -23.796259058390998], + [-45.59006943647244, -23.796303058343586], + [-45.59009443666488, -23.79633405830307], + [-45.590107436807486, -23.796366058290044], + [-45.59012043693405, -23.796392058274026], + [-45.590146437138976, -23.796426058232846], + [-45.590164437282056, -23.796450058204474], + [-45.59017943740666, -23.79647205818195], + [-45.59022943770592, -23.796502058084652], + [-45.59026443796629, -23.796542058026247], + [-45.590309438227706, -23.79656605793712], + [-45.590351438457176, -23.796583057851215], + [-45.59038843865933, -23.796598057775668], + [-45.59042643886594, -23.796613057697684], + [-45.59046543910095, -23.796637057622135], + [-45.59050743928222, -23.796636057527117], + [-45.59053943945457, -23.79664805746121], + [-45.590576439646014, -23.796659057383486], + [-45.59062143988056, -23.796673057289393], + [-45.59064844003361, -23.796686057235153], + [-45.590680440213916, -23.796701057170768], + [-45.59073044050792, -23.796729057072483], + [-45.59077444073542, -23.796742056980072], + [-45.59082444098649, -23.796754056873677], + [-45.59085444115803, -23.796769056813794], + [-45.59089844138554, -23.796782056721373], + [-45.59094344165223, -23.796808056633303], + [-45.590970441802625, -23.79682005657856], + [-45.59101444199262, -23.796819056479062], + [-45.59104644210864, -23.79681005640252], + [-45.591075442195475, -23.79679505632964], + [-45.591088442161364, -23.796761056283152], + [-45.591096442138785, -23.79673955625421], + [-45.59110444211627, -23.796718056225306], + [-45.591117442052706, -23.7966730561732], + [-45.591117441980394, -23.796646056159457], + [-45.591116441903715, -23.796619056148014], + [-45.59111044180517, -23.796592056147777], + [-45.591094441652025, -23.79656105616805], + [-45.5910784414669, -23.79651805618221], + [-45.59105844130158, -23.796489056212508], + [-45.591042441129765, -23.79645105622918], + [-45.59104144102365, -23.796413056212185], + [-45.59105244098604, -23.79638105617118], + [-45.59106344091372, -23.796336056123582], + [-45.59107544089399, -23.79630905608284], + [-45.59109844088229, -23.796267056009754], + [-45.59112644093796, -23.796242055934], + [-45.591140440913485, -23.796210055886288], + [-45.59116944100309, -23.796196055813905], + [-45.59119544106073, -23.796175055744765], + [-45.59121944111491, -23.796156055681042], + [-45.59125544118681, -23.796124055583807], + [-45.591281441225796, -23.796096055511054], + [-45.59131044129111, -23.79607305543409], + [-45.59133644131929, -23.79604105535931], + [-45.59136644134623, -23.796002055272073], + [-45.59137844133185, -23.795977055232356], + [-45.5913914413031, -23.795945055186863], + [-45.591408441278446, -23.795908055129765], + [-45.591419441235594, -23.795874055087786], + [-45.59144544125841, -23.795840055012025], + [-45.591461441253486, -23.795812054961793], + [-45.59148544131578, -23.79579605489968], + [-45.59150844132541, -23.795762054830575], + [-45.59152244131708, -23.795736054785863], + [-45.59154844135856, -23.795709054713726], + [-45.591598441459745, -23.795665054578862], + [-45.591635441576194, -23.795648054486872], + [-45.59166844166989, -23.795629054402987], + [-45.59168244167766, -23.795609054361364], + [-45.591696441682735, -23.79558805431923], + [-45.59171344168486, -23.795561054267154], + [-45.59173744173373, -23.795540054202533], + [-45.59174744164357, -23.79549005415458], + [-45.59176144163259, -23.79546305410945], + [-45.591772441581696, -23.79542605406585], + [-45.59177144149967, -23.795397054053367], + [-45.59178344149062, -23.795374054014754], + [-45.59179744147963, -23.79534705396954], + [-45.59181144147935, -23.795324053926297], + [-45.5918224414365, -23.795290053884298], + [-45.59183344138552, -23.79525305384081], + [-45.591857441466544, -23.795244053782184], + [-45.59188944159328, -23.7952390537076], + [-45.59191344168232, -23.79523305365057], + [-45.59194044180055, -23.7952330535898], + [-45.59197944196861, -23.795232053501532], + [-45.59202644220664, -23.795244053401873], + [-45.59206044235278, -23.795243053324782], + [-45.59209044251897, -23.79525605326397], + [-45.59212244268854, -23.79526705319747], + [-45.592154442855424, -23.79527705313055], + [-45.5921824430182, -23.795292053075155], + [-45.59220944313645, -23.795292053014414], + [-45.59224844333939, -23.795304052932746], + [-45.59227544345765, -23.795304052871973], + [-45.592314443655134, -23.79531405278922], + [-45.59235644383637, -23.795313052694215], + [-45.59240244402173, -23.795307052587667], + [-45.59243444414845, -23.795302052513136], + [-45.59246644426179, -23.795292052436036], + [-45.59249244435155, -23.79528305237292], + [-45.5925384445235, -23.795272052263876], + [-45.59259044474856, -23.79527105214633], + [-45.59263644494729, -23.795270052042312], + [-45.592665445071596, -23.795269051976444], + [-45.592695445202956, -23.795269051908928], + [-45.59274644542364, -23.795268051793652], + [-45.592780445569815, -23.795267051716635], + [-45.59281044572797, -23.795277051654224], + [-45.59284544591063, -23.795288051581075], + [-45.592872446026206, -23.79528705151979], + [-45.59292344630581, -23.795308051415613], + [-45.59296644656365, -23.795334051332087], + [-45.59299644672991, -23.795347051271197], + [-45.59303144694206, -23.79536905120352], + [-45.59307544719631, -23.79539205111621], + [-45.593115447449144, -23.795421051040915], + [-45.593143447601214, -23.795432050983493], + [-45.593167447733045, -23.795442050934508], + [-45.59320644790116, -23.79544105084622], + [-45.593233448019404, -23.795441050785456], + [-45.593268448242256, -23.795467050719886], + [-45.59331644850872, -23.795488050622478], + [-45.593346448704274, -23.79551205056718], + [-45.59337344888689, -23.79553605051863], + [-45.59340144903895, -23.795547050461217], + [-45.59342844919194, -23.79556005040696], + [-45.59346544939952, -23.795577050332323], + [-45.593495449619255, -23.79561005028159], + [-45.59352544979615, -23.795627050222684], + [-45.593564449964255, -23.79562605013443], + [-45.59360945019076, -23.79563705003875], + [-45.5936534504102, -23.79564704994473], + [-45.59368545054764, -23.79564604987221], + [-45.593734450826425, -23.795670049774127], + [-45.59377445102839, -23.79568004968919], + [-45.593801451176084, -23.79569104963395], + [-45.59383445137682, -23.795712049570373], + [-45.59387145161656, -23.79574104950172], + [-45.59389645179559, -23.795767049458767], + [-45.59390945192482, -23.795794049443224], + [-45.593925452083255, -23.79582704942384], + [-45.59394545222981, -23.79584904939005], + [-45.59395945236879, -23.795878049373254], + [-45.59397245252741, -23.795916049363292], + [-45.593985452638, -23.795936049344174], + [-45.59399845278056, -23.79596804933121], + [-45.59401145291515, -23.795997049316604], + [-45.59401245299184, -23.79602404932805], + [-45.59402545312646, -23.79605304931352], + [-45.59404345326954, -23.796077049285223], + [-45.59407345343579, -23.796090049224297], + [-45.59408845356567, -23.796114049202654], + [-45.59413845385429, -23.796140049103343], + [-45.59416745401074, -23.79615104904365], + [-45.59419745418227, -23.796166048983725], + [-45.59422945434918, -23.79617604891681], + [-45.594281454641184, -23.796200048811876], + [-45.59431645483458, -23.796215048740788], + [-45.594346454992724, -23.796225048678284], + [-45.59437345515114, -23.79624004862513], + [-45.59439645532956, -23.796269048588066], + [-45.59442145547914, -23.796284048539423], + [-45.594469455825916, -23.7963350484573], + [-45.59449645598433, -23.796350048404033], + [-45.594549456320905, -23.79638904830456], + [-45.59457145645211, -23.796402048261648], + [-45.594599456604065, -23.79641304820422], + [-45.59462645678125, -23.796435048154574], + [-45.59465845695627, -23.796448048089136], + [-45.59469345713627, -23.796458048015456], + [-45.59472345730781, -23.796473047955544], + [-45.5947504574555, -23.79648404790027], + [-45.59476345757664, -23.796508047883325], + [-45.59479145775826, -23.796530047831315], + [-45.59491945841244, -23.796565047560993], + [-45.59495345859082, -23.796576047490053], + [-45.59499145882682, -23.796602047417725], + [-45.59502145898497, -23.796612047355218], + [-45.59504345911081, -23.796623047311318], + [-45.59507845930419, -23.796638047240116], + [-45.595134459581566, -23.796650047120167], + [-45.59516945976962, -23.796663047047968], + [-45.595228460097594, -23.796689046928392], + [-45.595285460419525, -23.79671604681379], + [-45.5953064605785, -23.796741046779115], + [-45.595336460768785, -23.796763046722795], + [-45.595396461122554, -23.796797046604958], + [-45.595417461340375, -23.79684404658152], + [-45.59544146147498, -23.796855046533068], + [-45.59545946162343, -23.79688104650577], + [-45.59548746182373, -23.79691004645744], + [-45.595503461966096, -23.796937046435133], + [-45.59551846209605, -23.7969610464135], + [-45.59553146221997, -23.79698604639694], + [-45.59554646233653, -23.797005046372856], + [-45.595571462504964, -23.7970270463277], + [-45.595590462695284, -23.79706704630516], + [-45.595591462785386, -23.79709904631922], + [-45.59558746284558, -23.797128046342944], + [-45.59558346295666, -23.797176046376254], + [-45.595579463030255, -23.797210046402498], + [-45.59558046311233, -23.79723904641494], + [-45.595576463191186, -23.797275046442262], + [-45.59556346323871, -23.79731404649126], + [-45.59555446326089, -23.797337046523214], + [-45.59554046329611, -23.79737304657295], + [-45.59553146332901, -23.79740004660693], + [-45.59552246335127, -23.79742304663888], + [-45.595518463411366, -23.797452046662617], + [-45.59551446349836, -23.797491046691352], + [-45.5955304636461, -23.797520046670037], + [-45.59554846380258, -23.797549046644317], + [-45.59558846403402, -23.797570046564882], + [-45.59562046423306, -23.797592046504043], + [-45.59568046456544, -23.7976180463821], + [-45.595712464761796, -23.79763904632076], + [-45.59574546496531, -23.797661046257574], + [-45.59576946510516, -23.797674046210155], + [-45.59578546523423, -23.797696046185255], + [-45.59581046540257, -23.79771804614017], + [-45.595838465594845, -23.797744046090333], + [-45.59586346577132, -23.797769046046774], + [-45.595876465897916, -23.79779504603072], + [-45.595906466058736, -23.797806045968677], + [-45.595919466179964, -23.797830045951635], + [-45.595932466309144, -23.79785704593597], + [-45.59596246651295, -23.79788404588222], + [-45.595977466648264, -23.79791004586158], + [-45.596010466857045, -23.797934045799483], + [-45.5960404670661, -23.797963045746663], + [-45.596070467224244, -23.797973045684206], + [-45.596132467570726, -23.798001045558838], + [-45.59615746773917, -23.79802304551368], + [-45.596191467922935, -23.79803604544373], + [-45.59622146811851, -23.798060045388326], + [-45.59624946830006, -23.79808204533647], + [-45.59629646855675, -23.798101045240262], + [-45.59632446874374, -23.798125045189412], + [-45.59635846892745, -23.798138045119497], + [-45.59638646908478, -23.79815104506296], + [-45.59642346927899, -23.79816304498577], + [-45.59645346944518, -23.798176044924904], + [-45.59653446986153, -23.798199044754156], + [-45.59655447000803, -23.798221044720318], + [-45.59658247016545, -23.798234044663786], + [-45.59659447028232, -23.79825804464899], + [-45.59660847042132, -23.798287044632175], + [-45.59660947052214, -23.79832304464814], + [-45.596605470571646, -23.798348044669847], + [-45.59660547064934, -23.79837704468456], + [-45.59660647072069, -23.798402044695013], + [-45.59660247078884, -23.798434044720214], + [-45.5966034708603, -23.79845904473069], + [-45.596616470986866, -23.79848504471452], + [-45.59663047119279, -23.798539044710424], + [-45.59664347136492, -23.798582044702968], + [-45.59666147150277, -23.798604044673628], + [-45.596694471716894, -23.798630044612548], + [-45.596726471891834, -23.798643044547017], + [-45.596776472172465, -23.79866604444611], + [-45.59679847230358, -23.798679044403197], + [-45.59684047251698, -23.798690044314146], + [-45.59687247271334, -23.798711044252794], + [-45.59690547289265, -23.798724044185096], + [-45.59694947314159, -23.79874504409663], + [-45.5969764732893, -23.798756044041436], + [-45.59700947349273, -23.798778043978256], + [-45.597041473659644, -23.798788043911287], + [-45.59706847375386, -23.798779043845915], + [-45.59709747385394, -23.79876904377562], + [-45.59712647395415, -23.798759043705214], + [-45.59715747402833, -23.798736043623705], + [-45.59718647411237, -23.798720043550386], + [-45.597202474126235, -23.79869904350366], + [-45.59721947411485, -23.79866704344919], + [-45.597230474090765, -23.798640043410717], + [-45.59724147407725, -23.798617043374243], + [-45.59724147401027, -23.79859204336163], + [-45.59723547387685, -23.798552043354814], + [-45.59722347369032, -23.79850204335653], + [-45.59719047345208, -23.798467043413126], + [-45.597165473278274, -23.79844304345711], + [-45.597130473066, -23.798421043524822], + [-45.59708147278181, -23.798395043621937], + [-45.59705847263025, -23.798376043664103], + [-45.59705247251283, -23.79834204366041], + [-45.597064472498396, -23.79831704362069], + [-45.5970759725233, -23.79830754358999], + [-45.59724976526518, -23.79830041919502], + [-45.59730023445877, -23.79829019507623], + [-45.597535474361145, -23.79824254252247], + [-45.5975414743513, -23.798229042502072], + [-45.59754047426119, -23.798197042488113], + [-45.59752347405548, -23.798148042501467], + [-45.59751247391073, -23.798112042508], + [-45.59750247379467, -23.79808504251684], + [-45.597496473704155, -23.79806104251815], + [-45.597491473615186, -23.798036042516788], + [-45.59748047347601, -23.79800204252434], + [-45.597479473351065, -23.79795704250371], + [-45.59747847328231, -23.797933042493845], + [-45.59747747317345, -23.797894042476297], + [-45.59748847311176, -23.797853042430695], + [-45.597514473172055, -23.797833042362054], + [-45.597521473167824, -23.797820042339694], + [-45.597528473163685, -23.79780704231734], + [-45.59755247320709, -23.7977840422516], + [-45.59758047328683, -23.79776804218046], + [-45.59761747340333, -23.79775104208853], + [-45.597645473458975, -23.79772604201288], + [-45.59767047355498, -23.797721041954002], + [-45.59771647371619, -23.797706041842822], + [-45.59774747380645, -23.797689041764418], + [-45.597793473970334, -23.797675041653736], + [-45.5978374741228, -23.797660041547072], + [-45.59786347421254, -23.797651041483917], + [-45.59789747431048, -23.797632041397772], + [-45.597923474386846, -23.797618041332118], + [-45.5979474744598, -23.79760604127199], + [-45.59795947445601, -23.79758504123436], + [-45.59798847454021, -23.79756904116096], + [-45.59801647452071, -23.797516041070992], + [-45.59804747458944, -23.797491040988525], + [-45.59808347470158, -23.79747404089884], + [-45.59812447486503, -23.797468040803516], + [-45.59816747497284, -23.797438040691496], + [-45.59818147496716, -23.797413040647278], + [-45.59821547507857, -23.797399040563633], + [-45.59827147531842, -23.79739704043653], + [-45.59831147552296, -23.797408040352064], + [-45.59834047564726, -23.797407040286167], + [-45.59839447591053, -23.79741704016977], + [-45.59842147602606, -23.797416040108377], + [-45.59844847614432, -23.797416040047608], + [-45.59850047640408, -23.797428039936605], + [-45.59853747659292, -23.797438039858395], + [-45.59856747675373, -23.797449039796355], + [-45.598601476929375, -23.797459039724885], + [-45.59865347721334, -23.797480039618492], + [-45.59868047736096, -23.7974910395632], + [-45.59871347759393, -23.7975240395057], + [-45.598743477794955, -23.797550039451345], + [-45.59876147792198, -23.797568039419914], + [-45.59879347809154, -23.79757903935338], + [-45.598821478254415, -23.797594039298026], + [-45.5988504784081, -23.797604039237733], + [-45.59890247866261, -23.797614039125737], + [-45.5989344788322, -23.79762503905928], + [-45.59897847905164, -23.7976350389653], + [-45.5990234792808, -23.79764703886997], + [-45.59907947952332, -23.79764603874336], + [-45.599116479682664, -23.797645038659557], + [-45.59915047986099, -23.7976560385886], + [-45.599214480165294, -23.797665038448983], + [-45.59924848031146, -23.797664038371938], + [-45.599278480442884, -23.797664038304358], + [-45.59935148074374, -23.797657038136453], + [-45.599382480823095, -23.79763603805606], + [-45.59941448094988, -23.797631037981425], + [-45.59944848107191, -23.79762103789976], + [-45.599489481238045, -23.79761603780491], + [-45.599523481370895, -23.79761003772528], + [-45.59956248153889, -23.79760903763694], + [-45.5996044817094, -23.79760403753986], + [-45.599641481868666, -23.79760303745603], + [-45.599694482098066, -23.797602037336194], + [-45.59972248224747, -23.797612037278224], + [-45.59976348242432, -23.79761103718541], + [-45.599810482627404, -23.797610037078975], + [-45.59984948279549, -23.797609036990657], + [-45.59989848307431, -23.7976330368925], + [-45.59993348325431, -23.79764303681878], + [-45.59996148345999, -23.797674036771415], + [-45.59999148363153, -23.79768903671148], + [-45.60002048378798, -23.797700036651776], + [-45.60007048408197, -23.79772803655337], + [-45.60010748430831, -23.797752036482244], + [-45.60012548445936, -23.797779036455296], + [-45.6001554846551, -23.79780303639995], + [-45.60020248489838, -23.797817036301204], + [-45.600234485035784, -23.797816036228628], + [-45.60027148519784, -23.79781603614531], + [-45.600310485365846, -23.797815036056978], + [-45.600359485575076, -23.797813035945545], + [-45.60040348576504, -23.79781203584596], + [-45.600447485955, -23.797811035746378], + [-45.60051348622783, -23.797805035594752], + [-45.600566486443824, -23.79779903547236], + [-45.6005984865598, -23.7977900353957], + [-45.600630486683805, -23.797784035320536], + [-45.600673486810436, -23.79776103521213], + [-45.60070748690298, -23.797740035124836], + [-45.60073548696939, -23.797719035051195], + [-45.60075948703689, -23.797705034990052], + [-45.6007844871303, -23.797699034930645], + [-45.60080848721118, -23.797690034872097], + [-45.600837487324746, -23.797685034804303], + [-45.60086448744031, -23.79768403474299], + [-45.60090548761713, -23.797683034650152], + [-45.6009354877458, -23.797682034582067], + [-45.60096448787277, -23.79768203451677], + [-45.60099648803965, -23.797692034449714], + [-45.601030488185884, -23.79769103437264], + [-45.60106548837392, -23.7977040343004], + [-45.60109748855956, -23.797721034236943], + [-45.60115248882718, -23.797731034118165], + [-45.60117948897478, -23.79774203406288], + [-45.60122848921618, -23.797752033957693], + [-45.60127548948356, -23.797775033863445], + [-45.60132548973737, -23.797788033757445], + [-45.60135448986164, -23.797787033691638], + [-45.60137648998738, -23.79779803364769], + [-45.60141349014675, -23.797797033563842], + [-45.601447490322386, -23.79780703349228], + [-45.60147249046132, -23.797818033441587], + [-45.60151949069389, -23.797828033340735], + [-45.60154649084158, -23.797839033285587], + [-45.60157349095711, -23.797838033224274], + [-45.601594491132104, -23.79786903319261], + [-45.60161949127643, -23.79788203314298], + [-45.601644491458266, -23.797909033100282], + [-45.60165749158477, -23.7979350330842], + [-45.601685491852095, -23.797989033048403], + [-45.60171049200178, -23.798004032999803], + [-45.60172349213643, -23.798033032985103], + [-45.60175149232334, -23.79805703293425], + [-45.60177649249714, -23.798081032890117], + [-45.60181149268518, -23.79809403281789], + [-45.60185149291928, -23.798116032738914], + [-45.601896493177925, -23.798139032649257], + [-45.6019454934514, -23.79816103254997], + [-45.601985493653316, -23.798171032464964], + [-45.602009493798555, -23.79818603241851], + [-45.602064494071534, -23.798198032300732], + [-45.60212049434888, -23.798210032180712], + [-45.60214849450631, -23.798223032124216], + [-45.60217749463327, -23.798223032058903], + [-45.60222149485271, -23.798233031964802], + [-45.60226149505991, -23.798245031880814], + [-45.60229349520009, -23.798245031808747], + [-45.602320495315624, -23.798244031747416], + [-45.60235249551469, -23.79826603168652], + [-45.602394495725385, -23.798276031596938], + [-45.602426495900296, -23.798289031531464], + [-45.60245949611443, -23.79831503147032], + [-45.60249949636463, -23.798343031394406], + [-45.60254049654146, -23.798342031301562], + [-45.60257549673484, -23.79835703123033], + [-45.60262549701805, -23.798381031129885], + [-45.602664497186154, -23.79838003104155], + [-45.60270149737498, -23.798390030963226], + [-45.60272849753339, -23.798405030909993], + [-45.60276049770295, -23.7984160308435], + [-45.602819497988065, -23.7984260307157], + [-45.602849498146206, -23.798436030653136], + [-45.60288149832112, -23.798449030587655], + [-45.602920498489205, -23.79844803049931], + [-45.60296249867034, -23.798447030404205], + [-45.60300649884688, -23.798441030301998], + [-45.603055499058776, -23.79844003019114], + [-45.60310849927475, -23.798434030068748], + [-45.603147499442834, -23.798433029980398], + [-45.60317949958283, -23.798433029908313], + [-45.60321849975092, -23.798432029819956], + [-45.603258499952865, -23.79844202973486], + [-45.60332250028933, -23.798463029601386], + [-45.60335450042679, -23.798462029528828], + [-45.603399500701514, -23.798491029442143], + [-45.6034715010944, -23.798520029294636], + [-45.603498501242086, -23.79853102923933], + [-45.603535501473814, -23.798557029169235], + [-45.60356850167722, -23.79857902910602], + [-45.60359850187826, -23.79860502905162], + [-45.60364850220978, -23.79864702896026], + [-45.60368650246454, -23.798680028891358], + [-45.603715502618314, -23.79869002883102], + [-45.60374150280988, -23.79871902878724], + [-45.60376650300783, -23.7987520287476], + [-45.603799503254116, -23.798790028692455], + [-45.60382750349467, -23.798834028651747], + [-45.60384050362388, -23.798861028636058], + [-45.603869503844756, -23.798896028588512], + [-45.60388450399343, -23.79892702857039], + [-45.60389750413623, -23.798959028557302], + [-45.60392350431967, -23.798985028511893], + [-45.60397550467603, -23.799033028419036], + [-45.60400550483686, -23.79904402835705], + [-45.60403750500374, -23.799054028290044], + [-45.6040655051853, -23.799076028238073], + [-45.60410450539627, -23.799091028157804], + [-45.60416350568675, -23.79910302803099], + [-45.60419850586942, -23.799114027957646], + [-45.60424250605937, -23.799113027858034], + [-45.60429650629044, -23.79911102773536], + [-45.604347506511004, -23.799110027620006], + [-45.604394506748996, -23.799122027520223], + [-45.60441950694953, -23.799156027481054], + [-45.604457507185636, -23.79918202740864], + [-45.60451350741471, -23.799176027279483], + [-45.60454250752825, -23.799171027211653], + [-45.60458650771822, -23.79917002711202], + [-45.604614507872974, -23.799182027054954], + [-45.60465850810045, -23.799195026962426], + [-45.60469350829922, -23.79921202689226], + [-45.60470850843727, -23.799239026872055], + [-45.60473850859539, -23.799249026809544], + [-45.60478750879648, -23.799244026696584], + [-45.60483650902445, -23.79924902658878], + [-45.60486850916185, -23.799248026516178], + [-45.60490250931075, -23.799248026439596], + [-45.60492750947912, -23.799270026394353], + [-45.60496050969326, -23.799296026333185], + [-45.60501451001013, -23.799326026226694], + [-45.60503051015254, -23.799353026204326], + [-45.605067510370866, -23.799374026131584], + [-45.605094510523834, -23.79938702607735], + [-45.60512251071883, -23.79941402602794], + [-45.60518251104859, -23.79943902590544], + [-45.6052095111962, -23.799450025850128], + [-45.60524951143569, -23.79947402577217], + [-45.60528851164399, -23.799488025691403], + [-45.60530651178979, -23.79951302566353], + [-45.60533651195597, -23.79952602560251], + [-45.60535851207914, -23.799536025557966], + [-45.60537951224341, -23.799563025524332], + [-45.605403512378004, -23.799574025475867], + [-45.605421512502375, -23.79959102544388], + [-45.60545451271652, -23.799617025382716], + [-45.60547051288308, -23.799653025364844], + [-45.60550751315224, -23.799693025301735], + [-45.60552051327361, -23.799717025284647], + [-45.605541513413755, -23.799735025246417], + [-45.60555651354377, -23.799759025224795], + [-45.6055865137475, -23.79978602517079], + [-45.6056165139539, -23.799814025117367], + [-45.605644514111326, -23.799827025060882], + [-45.60568151433769, -23.799851024989685], + [-45.60570851449068, -23.79986402493546], + [-45.60573651464015, -23.79987402487743], + [-45.605760514774666, -23.799885024828985], + [-45.60580551499847, -23.799895024732592], + [-45.605841015188744, -23.79990802465919], + [-45.60587651537904, -23.7999210245858], + [-45.60591351553837, -23.79992002450193], + [-45.60593651567386, -23.79993302445669], + [-45.60600951601758, -23.799942024296712], + [-45.60604651617681, -23.79994102421285], + [-45.606083516373694, -23.79995402413607], + [-45.6061305166116, -23.799966024036266], + [-45.606167516770945, -23.79996502395241], + [-45.606208516947774, -23.799964023859506], + [-45.60624051707443, -23.799959023784933], + [-45.60628951727283, -23.799953023671424], + [-45.60633251742354, -23.799939023567465], + [-45.60636851755438, -23.799929023481248], + [-45.606422517763924, -23.799919023354587], + [-45.606463517927324, -23.79991302325912], + [-45.60651051811698, -23.799907023150222], + [-45.60654151823928, -23.799902023077788], + [-45.60656851835756, -23.799902023016937], + [-45.60660051849496, -23.79990102294434], + [-45.606627518610416, -23.799900022882987], + [-45.606681518873636, -23.799910022766426], + [-45.60672651910547, -23.79992302267162], + [-45.606748519236696, -23.7999360226286], + [-45.60678051942236, -23.799953022565102], + [-45.60680551956666, -23.79996602251537], + [-45.60683051971091, -23.799979022465624], + [-45.60686051990668, -23.80000302241021], + [-45.606873520022496, -23.800025022392], + [-45.60688652017595, -23.80006102238088], + [-45.60691752039208, -23.800091022326264], + [-45.606930520526774, -23.80012002231158], + [-45.60697052077965, -23.80014902223611], + [-45.60699052093152, -23.800173022203236], + [-45.60700352107157, -23.80020402218962], + [-45.60703052122465, -23.800217022135364], + [-45.607046521377804, -23.80024802211497], + [-45.607076521568125, -23.800270022058555], + [-45.607101521736574, -23.800292022013302], + [-45.60712752192275, -23.8003190219684], + [-45.60714252204749, -23.80034102194575], + [-45.60716752219707, -23.80035602189693], + [-45.60718252234049, -23.8003850218779], + [-45.6072085225187, -23.800409021831392], + [-45.60723252265864, -23.800422021783877], + [-45.60724852279305, -23.8004460217599], + [-45.607273522932026, -23.800457021709274], + [-45.60729752306651, -23.80046802166069], + [-45.607327523195174, -23.800467021592578], + [-45.60736352333941, -23.800462021508963], + [-45.607402523494066, -23.800456021417993], + [-45.60743152354049, -23.800426021337554], + [-45.607470523679076, -23.800414021243583], + [-45.60750052372997, -23.800384021160813], + [-45.607546523848185, -23.8003530210414], + [-45.6075675238919, -23.800335020984996], + [-45.60759152391112, -23.80030302091475], + [-45.60760752389542, -23.800271020862517], + [-45.60762952394878, -23.800255020804865], + [-45.607645523962496, -23.80023402075814], + [-45.60766952400583, -23.800211020692473], + [-45.60769852407655, -23.800190020616455], + [-45.60771752409803, -23.80016702056206], + [-45.60774352416093, -23.80014802049379], + [-45.60777252426107, -23.80013802042343], + [-45.60779652435266, -23.80013302036686], + [-45.60783052445328, -23.800115020281066], + [-45.60785752454467, -23.800105020215153], + [-45.60788852466698, -23.800100020142807], + [-45.60792252479968, -23.800094020063174], + [-45.60795252491762, -23.80008901999307], + [-45.60800052509552, -23.800077019878735], + [-45.608036525212945, -23.800062019790026], + [-45.60806152530898, -23.800057019731188], + [-45.608075525313986, -23.80003601968907], + [-45.608114525457815, -23.800026019596107], + [-45.60812552544701, -23.80000401956023], + [-45.6081485254378, -23.799963019487638], + [-45.60816052542855, -23.799940019448922], + [-45.608186525432444, -23.799899019369587], + [-45.608197525400186, -23.79986901932963], + [-45.60820952539633, -23.799848019292014], + [-45.60823452539592, -23.799807019214917], + [-45.60825852543927, -23.79978401914916], + [-45.60828452551555, -23.799770019083493], + [-45.60832152566408, -23.799765018997615], + [-45.6083585258234, -23.79976401891375], + [-45.60839252596951, -23.799763018836618], + [-45.608448526198586, -23.799757018707435], + [-45.60850452641692, -23.79974701857616], + [-45.608540526547664, -23.79973701848995], + [-45.608571526602994, -23.799707018404913], + [-45.608600526649475, -23.799677018324424], + [-45.608611526592995, -23.799638018279946], + [-45.60862252653658, -23.79959901823541], + [-45.60863352646934, -23.79955601818886], + [-45.60863252636308, -23.799518018171867], + [-45.60862152622382, -23.799484018179502], + [-45.608615526095704, -23.799446018173764], + [-45.608626526066004, -23.79941701813431], + [-45.6086385260569, -23.79939401809568], + [-45.60863752598547, -23.79936901808527], + [-45.608648525980016, -23.79934901805041], + [-45.608663525984, -23.79932601800493], + [-45.60868652603376, -23.79930701794352], + [-45.60871352611434, -23.79929301787558], + [-45.608737526176505, -23.799277017813417], + [-45.608766526263246, -23.79926201774048], + [-45.608795526347286, -23.79924601766705], + [-45.608836526475734, -23.799227017565006], + [-45.60888252662613, -23.799208017451743], + [-45.608911526726345, -23.799198017381322], + [-45.608947526851715, -23.799186017294122], + [-45.608979526965044, -23.799176017217], + [-45.609005526998324, -23.79914601714325], + [-45.60903152705585, -23.799125017073997], + [-45.60906052718279, -23.799125017008635], + [-45.60908452719392, -23.799090016936887], + [-45.60911952729624, -23.799071016848355], + [-45.60914652730718, -23.79903101676736], + [-45.6091715273924, -23.799022016706438], + [-45.609192527428064, -23.79900101664852], + [-45.60921152746831, -23.79898501659761], + [-45.60922552743842, -23.79895101654882], + [-45.609237527434644, -23.798930016511203], + [-45.60925052740575, -23.79889801646575], + [-45.60926452736245, -23.798859016414454], + [-45.60927852736205, -23.79883601637132], + [-45.6093095274173, -23.798806016286303], + [-45.60933152748405, -23.79879501623114], + [-45.609347527497846, -23.798774016184403], + [-45.60937152757067, -23.798762016124357], + [-45.609388527564626, -23.79873201607077], + [-45.609407527586185, -23.79870901601638], + [-45.60943252755074, -23.798655015932724], + [-45.609448527516264, -23.798616015876917], + [-45.60945952745442, -23.798575015831354], + [-45.60947352745937, -23.798554015789236], + [-45.60950752755722, -23.798535015703038], + [-45.609536527660026, -23.798526015633108], + [-45.609572527801554, -23.798520015548988], + [-45.609602527919456, -23.798515015478888], + [-45.60963652804143, -23.798505015397172], + [-45.60966252814186, -23.798500015336085], + [-45.6096945282685, -23.798495015261395], + [-45.60972352838203, -23.79849001519355], + [-45.60975552850598, -23.798484015118337], + [-45.609786528641735, -23.79848401504848], + [-45.60981352875725, -23.798483014987145], + [-45.609852528925224, -23.798482014898756], + [-45.60989152909327, -23.798481014810374], + [-45.60992352923063, -23.798480014737745], + [-45.609950529348836, -23.7984800146769], + [-45.609984529494945, -23.798479014599803], + [-45.61003552971554, -23.79847801448434], + [-45.610065529844164, -23.798477014416278], + [-45.610087529969896, -23.798488014372182], + [-45.610131530159826, -23.798487014272496], + [-45.61018053037165, -23.79848601416156], + [-45.61020753052195, -23.798498014106826], + [-45.610236530648955, -23.798498014041467], + [-45.61027353084303, -23.798510013964183], + [-45.610298531000666, -23.798528013916922], + [-45.61033053113814, -23.798527013844314], + [-45.610398531462614, -23.798537013696134], + [-45.61043353165063, -23.798550013623828], + [-45.61048553191044, -23.798562013512736], + [-45.61052953212985, -23.798572013418564], + [-45.61058253235911, -23.798571013298638], + [-45.61065453269836, -23.798580013140956], + [-45.61071353301562, -23.79860201301915], + [-45.610759533243765, -23.79861201292048], + [-45.61081153346873, -23.79861101280278], + [-45.610879533790424, -23.798620012654112], + [-45.61091853395846, -23.798619012565712], + [-45.61095053409718, -23.798618512493313], + [-45.6114003313352, -23.798718929530278], + [-45.61160633536018, -23.79876492008933], + [-45.612662542051545, -23.798790508721655], + [-45.61268454214656, -23.79879000867178], + [-45.61271154226197, -23.798789008610434], + [-45.61274554240816, -23.7987880085333], + [-45.61277454253241, -23.798787008467432], + [-45.612813542700444, -23.798786008379032], + [-45.61286254291218, -23.7987850082681], + [-45.612896543058355, -23.798784008190943], + [-45.612928543227895, -23.798795008124404], + [-45.61296754339584, -23.79879400803601], + [-45.612997543524465, -23.798793007967873], + [-45.613021543659045, -23.79880400791927], + [-45.613048543774546, -23.798803007857916], + [-45.6130855439713, -23.798816007781085], + [-45.61311754410865, -23.798815007708452], + [-45.613149544278286, -23.798826007641914], + [-45.613195544476916, -23.798825007537715], + [-45.61321854460702, -23.798836007491456], + [-45.613269544862476, -23.79884800738249], + [-45.61330854503051, -23.79884700729409], + [-45.61336054528486, -23.798857007181944], + [-45.613414545548046, -23.798867007065226], + [-45.61346354578931, -23.79887700695992], + [-45.61351954606122, -23.798887006838704], + [-45.61356454628499, -23.798897006742326], + [-45.6136035464852, -23.798908006659936], + [-45.613632546609445, -23.798907006594042], + [-45.613666546755546, -23.798906006516912], + [-45.61370854696619, -23.798916006427305], + [-45.613757547177926, -23.798915006316356], + [-45.613811547459896, -23.79893200620319], + [-45.61385854769239, -23.79894200610234], + [-45.61390054790305, -23.798952006012644], + [-45.61392954807288, -23.79896800595545], + [-45.61396454825286, -23.798978005881555], + [-45.61399454842975, -23.798995005822494], + [-45.61402854865104, -23.799022005759483], + [-45.614078548936895, -23.799047005659435], + [-45.61411054911187, -23.799060005593876], + [-45.614137549270204, -23.799075005540583], + [-45.61416754943638, -23.79908800547954], + [-45.61419254962896, -23.799119005438822], + [-45.614234549847666, -23.79913200535073], + [-45.614278550037554, -23.799131005251027], + [-45.61434455035855, -23.79914300510833], + [-45.61436455048638, -23.79915800507072], + [-45.61440455068826, -23.79916800498563], + [-45.614473551065316, -23.799196004844237], + [-45.61451755132234, -23.7992200047572], + [-45.61455755152416, -23.79923000467202], + [-45.614587551719836, -23.799254004616525], + [-45.61464155199106, -23.799267004501377], + [-45.61466855213598, -23.79927700444557], + [-45.61470855237008, -23.799299004366485], + [-45.61474955257637, -23.79930900427913], + [-45.614779552747905, -23.799324004219073], + [-45.61481855294812, -23.799335004136722], + [-45.61487055321857, -23.799351004027574], + [-45.61489855340023, -23.79937300397551], + [-45.61493055356977, -23.79938400390894], + [-45.614957553746876, -23.79940600385915], + [-45.61498555393917, -23.799432003809166], + [-45.615017554157085, -23.79946100375177], + [-45.6150475543634, -23.799489003698195], + [-45.6150785546011, -23.79952700364753], + [-45.61510555475416, -23.799540003593226], + [-45.61513555494983, -23.79956400353765], + [-45.615167555159616, -23.799590003478663], + [-45.615200555368396, -23.799614003416327], + [-45.615224555508355, -23.79962700336887], + [-45.615269555769665, -23.799651003279497], + [-45.61530655595836, -23.799661003201148], + [-45.61536055623498, -23.799676003086983], + [-45.615400556479806, -23.799702003009966], + [-45.61544955672107, -23.799712002904553], + [-45.61548355689944, -23.799723002833385], + [-45.61554255718437, -23.799733002705448], + [-45.6155895573847, -23.799731002598485], + [-45.61563755759213, -23.799730002489756], + [-45.615664557710296, -23.799730002428905], + [-45.615716557964674, -23.79974000231665], + [-45.61576555817649, -23.799739002205676], + [-45.61580455834443, -23.79973800211724], + [-45.61583355846865, -23.799737002051366], + [-45.61586055861633, -23.799748001996075], + [-45.6158925587833, -23.799758001929], + [-45.6159195589309, -23.799769001873624], + [-45.615957559161615, -23.799793001800076], + [-45.61599155933721, -23.799803001728524], + [-45.616018559484914, -23.799814001673127], + [-45.616048559643026, -23.79982400161055], + [-45.61607755979944, -23.799835001550754], + [-45.61610555998641, -23.799859001499666], + [-45.616142560226166, -23.799888001431004], + [-45.61617456039303, -23.799898001363818], + [-45.61623156066934, -23.799908001240404], + [-45.61627556088873, -23.799918001146256], + [-45.61633456122196, -23.799946001027287], + [-45.61638256150722, -23.799974000933215], + [-45.61640456163295, -23.799985000889176], + [-45.61644856186039, -23.79999800079655], + [-45.61648356204046, -23.800008000722706], + [-45.616537562351844, -23.800036000615094], + [-45.616579562605416, -23.800062000533458], + [-45.61660656272361, -23.800062000472572], + [-45.616628562846664, -23.800072000428045], + [-45.61667356312148, -23.800101000341208], + [-45.61673556347329, -23.800131000216567], + [-45.616799563777505, -23.800140000076826], + [-45.61683156398461, -23.80016500001732], + [-45.616885564277304, -23.800185999906127], + [-45.61691356442669, -23.80019599984795], + [-45.61694056457437, -23.800206999792685], + [-45.616972564792206, -23.800235999735165], + [-45.61700056498987, -23.800263999686152], + [-45.61703556522085, -23.800292999621874], + [-45.61705056536439, -23.800321999602666], + [-45.61706356550446, -23.80035299958902], + [-45.61707656563909, -23.80038199957444], + [-45.617089565768445, -23.800408999558666], + [-45.61709056586403, -23.800442999573537], + [-45.61710356598005, -23.800464999555388], + [-45.617104566129306, -23.800518999580408], + [-45.61710556620077, -23.800543999590786], + [-45.617106566296364, -23.80057799960568], + [-45.61710256639956, -23.800622999637387], + [-45.617099566507186, -23.800667999666835], + [-45.61710056660815, -23.80070399968273], + [-45.617096566706046, -23.800746999713468], + [-45.61709756681506, -23.800785999730913], + [-45.617093566861975, -23.80080999975208], + [-45.61709056702589, -23.800875999792098], + [-45.61708556707112, -23.80090099981601], + [-45.617081567115335, -23.80092399983671], + [-45.617077567189, -23.800957999862852], + [-45.617068567232856, -23.800988999898767], + [-45.61706956732846, -23.801022999913627], + [-45.61706056735621, -23.801047999946608], + [-45.61705156738924, -23.80107499998053], + [-45.617047567433374, -23.801098000001115], + [-45.61704356753665, -23.801143000032816], + [-45.617035567654554, -23.80120000007964], + [-45.61702656775475, -23.801252000126198], + [-45.61702356787043, -23.801300000157173], + [-45.6170195679254, -23.801327000179835], + [-45.61701556799906, -23.801361000205983], + [-45.61700656804282, -23.801392000241915], + [-45.61700256813, -23.801431000270647], + [-45.61699356821142, -23.801476000313652], + [-45.61699456829629, -23.801506000326608], + [-45.61698556832394, -23.80153100035948], + [-45.61698156838429, -23.801560000383123], + [-45.61697256840658, -23.801583000415064], + [-45.61696356844498, -23.801612000449907], + [-45.61696456854603, -23.801648000465853], + [-45.61696056862774, -23.801685000493507], + [-45.616956568712254, -23.80172300052175], + [-45.61695756880246, -23.801755000535724], + [-45.616958568927615, -23.80180000055615], + [-45.61695956906346, -23.801849000578613], + [-45.616960569172484, -23.801888000595984], + [-45.6169615692681, -23.80192200061093], + [-45.61696256933686, -23.801946000620756], + [-45.61696356942174, -23.801976000633612], + [-45.61697656957266, -23.802011000622002], + [-45.616989569707314, -23.802040000607345], + [-45.61699056982706, -23.802083000626805], + [-45.61699156994155, -23.80212400064527], + [-45.6170045701057, -23.802164000636054], + [-45.61700557017715, -23.80218900064646], + [-45.61701857034149, -23.802229000637347], + [-45.61701957041296, -23.802254000647736], + [-45.61703257058515, -23.802297000640134], + [-45.61704557072526, -23.80232800062635], + [-45.61704657080746, -23.802357000638747], + [-45.61704757087891, -23.80238200064912], + [-45.617060571027146, -23.80241600063703], + [-45.61706157109593, -23.80244000064682], + [-45.617074571238625, -23.80247200063365], + [-45.61707457131108, -23.80249900064727], + [-45.61707557140668, -23.80253300066215], + [-45.61707657152377, -23.802575000681102], + [-45.61707857168549, -23.802632000705472], + [-45.61707957182134, -23.80268100072792], + [-45.61709257194535, -23.802706000711137], + [-45.61709357201689, -23.802731000721522], + [-45.61709457212323, -23.802769000738493], + [-45.61709557226715, -23.802821000762407], + [-45.61709657236815, -23.80285700077839], + [-45.61711057255017, -23.802902000769507], + [-45.61712257267508, -23.802929000756095], + [-45.617123572757286, -23.80295800076848], + [-45.61714157288982, -23.802978000737948], + [-45.617142573001516, -23.803018000755888], + [-45.61715557311212, -23.803038000736624], + [-45.61716857327361, -23.80307700072703], + [-45.6171965734848, -23.80311000068052], + [-45.61721157362822, -23.803139000661325], + [-45.6172365738128, -23.8031670006191], + [-45.61728457411689, -23.80320200052847], + [-45.61731457430721, -23.803224000471953], + [-45.617336574432976, -23.803235000427822], + [-45.61735857455885, -23.80324600038378], + [-45.6173935747442, -23.803258000310915], + [-45.617417574884094, -23.803271000263365], + [-45.617464575119364, -23.80328200016294], + [-45.617482575267935, -23.803308000135473], + [-45.61751457546709, -23.803330000074364], + [-45.617532575642485, -23.803366000051902], + [-45.61754657582981, -23.80341300004411], + [-45.61757257609391, -23.803469000013735], + [-45.617599576287255, -23.803496999966985], + [-45.61761357649346, -23.803550999962592], + [-45.617626576652356, -23.80358899995249], + [-45.617627576742606, -23.803620999966366], + [-45.61764257686729, -23.803642999943584], + [-45.61764357693886, -23.803667999953984], + [-45.617656577084276, -23.80370099994129], + [-45.617657577174505, -23.803732999955162], + [-45.61765857726209, -23.803763999968623], + [-45.617671577391455, -23.80379099995294], + [-45.61767157745857, -23.803815999965483], + [-45.61768557763524, -23.803858999955615], + [-45.61768757782381, -23.803925999984973], + [-45.617703578057565, -23.803986999979625], + [-45.61770457817733, -23.804029999999077], + [-45.617717578352334, -23.804073999991957], + [-45.6177315785344, -23.80411899998308], + [-45.61774457865842, -23.804143999966414], + [-45.61777657887362, -23.80417199990836], + [-45.61780957912548, -23.804211999854132], + [-45.61783957931573, -23.80423399979755], + [-45.61789857964386, -23.804259999677598], + [-45.61792057978036, -23.80427499963546], + [-45.61794857994319, -23.80428999957996], + [-45.617985580150794, -23.80430699950508], + [-45.61800558028124, -23.80432299946803], + [-45.61803758045349, -23.804334999401906], + [-45.618066580580425, -23.80433499933652], + [-45.61810058072662, -23.804333999259327], + [-45.61812458076987, -23.804310999193568], + [-45.618136580766055, -23.804289999155937], + [-45.618155580763315, -23.80425799909696], + [-45.618181580839554, -23.804243999031247], + [-45.618208580984586, -23.804253998975422], + [-45.61823758109808, -23.804248998907422], + [-45.61826258123705, -23.804259998856622], + [-45.61831158147832, -23.80426999875109], + [-45.61833858159653, -23.80426999869018], + [-45.61837258174262, -23.804268998613], + [-45.61839958185815, -23.804267998551616], + [-45.6184215819839, -23.804278998507566], + [-45.61845858214322, -23.8042779984236], + [-45.618490582310095, -23.804287998356507], + [-45.61852258247975, -23.804298998289884], + [-45.61858158275937, -23.8043069981608], + [-45.618618582934786, -23.804311998079836], + [-45.61864658300902, -23.80429399800763], + [-45.61867858308464, -23.804269997923317], + [-45.61867758300242, -23.804240997910956], + [-45.61871558309891, -23.804214997812164], + [-45.61874458316411, -23.804191997735124], + [-45.6187735832777, -23.804186997667216], + [-45.61879258331789, -23.80417099761632], + [-45.61881958342266, -23.804165997552815], + [-45.61884858350395, -23.804148997478862], + [-45.61887758359321, -23.804134997406383], + [-45.61890558366484, -23.804115997333675], + [-45.61895258385444, -23.80410999722456], + [-45.61898158394378, -23.804095997152185], + [-45.61901558407914, -23.804090997072922], + [-45.619039584170814, -23.804085997016294], + [-45.61908358433645, -23.804075996911966], + [-45.61911958449137, -23.804074996830273], + [-45.619146584596145, -23.80406999676679], + [-45.61918258472692, -23.804059996680614], + [-45.61920658478894, -23.804043996618425], + [-45.61922858482891, -23.804022996558146], + [-45.619252584896316, -23.804008996497036], + [-45.61929858509226, -23.804006996392275], + [-45.61933558525425, -23.80400699630882], + [-45.61936458540801, -23.804016996248397], + [-45.6193995855907, -23.804027996175012], + [-45.61942858571492, -23.804026996109023], + [-45.619460585841544, -23.804021996034354], + [-45.61948458591978, -23.804011995975216], + [-45.61951358601985, -23.80400199590474], + [-45.61953258605465, -23.803983995852814], + [-45.61957858618082, -23.803955995734928], + [-45.61961658625859, -23.803922995632593], + [-45.619642586310675, -23.803899995562315], + [-45.61966458636395, -23.803883995504638], + [-45.6196905864214, -23.80386299543535], + [-45.61970658642431, -23.803837995386704], + [-45.61974358653528, -23.803818995293618], + [-45.61980158672472, -23.803794995150735], + [-45.61983258680937, -23.80377599507116], + [-45.61986658694472, -23.803770994991975], + [-45.61989858708215, -23.803769994919296], + [-45.61993958727494, -23.80377499482929], + [-45.61998358744873, -23.803767994726577], + [-45.6200155876157, -23.80377799465937], + [-45.62006258784822, -23.803787994558434], + [-45.620104588080366, -23.803805994472825], + [-45.62014558827325, -23.803810994382832], + [-45.620163588400224, -23.80382899435128], + [-45.62021058863284, -23.803838994250352], + [-45.620261588896255, -23.80385399414286], + [-45.62027958902074, -23.803870994110817], + [-45.62031358916685, -23.803869994033622], + [-45.62034558933639, -23.80388099396702], + [-45.6203905895924, -23.803902993876562], + [-45.620426589763426, -23.80390799379783], + [-45.62047758993559, -23.803888993673237], + [-45.62050158998418, -23.803867993608538], + [-45.62052559004101, -23.80384999354536], + [-45.62053959004583, -23.803828993503128], + [-45.620570590082274, -23.803791993414606], + [-45.62059859012428, -23.803761993336302], + [-45.62062559017526, -23.80373699326277], + [-45.62065459028876, -23.803731993194788], + [-45.62068859043493, -23.803730993117576], + [-45.62074759071988, -23.803740992989567], + [-45.62078159089558, -23.80375099291793], + [-45.62081559104168, -23.80374999284072], + [-45.620854591209714, -23.80374899275227], + [-45.62090459145535, -23.803758992644532], + [-45.62094159164684, -23.803769992566565], + [-45.62096559179746, -23.803786992520973], + [-45.62102259211679, -23.80381299240553], + [-45.621075592442665, -23.803847992303666], + [-45.62110559264375, -23.80387399224901], + [-45.62115959297944, -23.803910992145898], + [-45.62118159310529, -23.803921992101838], + [-45.62122459338207, -23.803954992021435], + [-45.62125359353574, -23.803964991961085], + [-45.62128359370192, -23.80397799189989], + [-45.62132859397671, -23.804006991813107], + [-45.62136259415781, -23.804018991742364], + [-45.62139559437468, -23.804045991681566], + [-45.62142059454308, -23.804067991636195], + [-45.62145259471005, -23.80407799156907], + [-45.621489594930985, -23.80409999149675], + [-45.62151959513217, -23.804125991442174], + [-45.62154159526332, -23.80413899139903], + [-45.621596595622165, -23.804182991297118], + [-45.621641595883524, -23.80420699120774], + [-45.621669596081155, -23.804234991158694], + [-45.621708596310924, -23.804256991081846], + [-45.62174859656117, -23.804284991005627], + [-45.6217805967361, -23.804297990940096], + [-45.621847597134085, -23.80433699080855], + [-45.62187259730786, -23.804360990764174], + [-45.621922597609945, -23.80439199066709], + [-45.62196259784948, -23.804415990588954], + [-45.62201659816099, -23.804443990481165], + [-45.62204659836738, -23.80447199042761], + [-45.62207959857094, -23.804493990364307], + [-45.622109598766656, -23.804517990308653], + [-45.62212659891352, -23.804544990283915], + [-45.622151599057865, -23.804557990234095], + [-45.622191599297366, -23.804581990155963], + [-45.622208599430756, -23.804603990128665], + [-45.62225159968874, -23.804629990044777], + [-45.62228359986913, -23.804644989980133], + [-45.622316600131654, -23.80468898992784], + [-45.62235160034932, -23.804712989861006], + [-45.62237160051458, -23.804741989830514], + [-45.622420600798925, -23.804767989732984], + [-45.62245060096511, -23.80478098967187], + [-45.622465601089814, -23.804802989649158], + [-45.622503601325974, -23.80482898957654], + [-45.62253560152505, -23.804850989515383], + [-45.62255560165292, -23.804865989477822], + [-45.622584601779764, -23.80486598941239], + [-45.62264160208561, -23.804886989294413], + [-45.622676602303265, -23.8049109892275], + [-45.62270860250227, -23.804932989166424], + [-45.62274260264846, -23.8049319890892], + [-45.62277760286076, -23.80495398902127], + [-45.62281260304074, -23.80496398894739], + [-45.622834603201404, -23.804987988909797], + [-45.62287460344899, -23.805014988833165], + [-45.62290460362054, -23.80502998877304], + [-45.62292960376491, -23.80504298872326], + [-45.62295960397136, -23.80507098866962], + [-45.622999604234955, -23.805103988595988], + [-45.62302660443108, -23.805132988549754], + [-45.623054604636884, -23.80516398850216], + [-45.623081604752294, -23.805162988440753], + [-45.62311360495676, -23.805186988380594], + [-45.623143605085446, -23.805185988312406], + [-45.623170605233064, -23.805196988257048], + [-45.62320760542458, -23.805207988179127], + [-45.62326860571569, -23.805216988045977], + [-45.62332660596685, -23.805215987914604], + [-45.62335860609344, -23.805210987839903], + [-45.62341560621669, -23.805163987687635], + [-45.623415606149564, -23.80513898767502], + [-45.623438606145534, -23.80509998760345], + [-45.62343760603375, -23.80505998758553], + [-45.62344960602444, -23.805036987546902], + [-45.62346060593835, -23.804986987496832], + [-45.62345960584268, -23.80495298748201], + [-45.62347360582609, -23.8049239874358], + [-45.623472605725055, -23.80488798741994], + [-45.623483605687284, -23.804855987378946], + [-45.62349460560648, -23.804807987329955], + [-45.623505605598254, -23.80478698729459], + [-45.623505605515, -23.804755987278988], + [-45.62351660545845, -23.80471698723448], + [-45.623544605481634, -23.80467998715262], + [-45.623543605394026, -23.80464898713928], + [-45.623569605365525, -23.80459598705396], + [-45.62358560534962, -23.80456398700164], + [-45.62360260537566, -23.80454598695432], + [-45.62361360531911, -23.80450698690983], + [-45.62363660530962, -23.80446598683727], + [-45.62365860535762, -23.804447986778502], + [-45.623674605328276, -23.8044109867238], + [-45.62370260533536, -23.804367986638933], + [-45.62374760542487, -23.804327986517244], + [-45.62376360540358, -23.804293986464028], + [-45.623782605395405, -23.80425998640405], + [-45.623793605368384, -23.80423198636512], + [-45.62381760538753, -23.804199986294766], + [-45.62382860534432, -23.804165986252855], + [-45.62382760525401, -23.804133986238995], + [-45.62382760516541, -23.804100986222398], + [-45.62382660509391, -23.80407598621204], + [-45.62382560502241, -23.804050986201766], + [-45.62381960486998, -23.804003986191553], + [-45.623818604798494, -23.803978986181175], + [-45.62381860471257, -23.80394698616508], + [-45.62381260458971, -23.803910986160513], + [-45.62381160448859, -23.803874986144685], + [-45.623805604384486, -23.803845986143518], + [-45.62380060430357, -23.803823986143755], + [-45.62378960416941, -23.80379198615246], + [-45.623773604005514, -23.803756986170868], + [-45.62375560382464, -23.803718986192408], + [-45.62375460370482, -23.803675986172998], + [-45.62375360362795, -23.803648986161637], + [-45.62376460354722, -23.803600986112624], + [-45.623763603392504, -23.803544986086667], + [-45.62378860338371, -23.8035009860081], + [-45.62381260340293, -23.80346898593784], + [-45.62382660340773, -23.803447985895613], + [-45.6238406033616, -23.803407985843855], + [-45.623854603366496, -23.803386985801726], + [-45.6238536032762, -23.803354985787877], + [-45.62386760327034, -23.80332998574367], + [-45.623881603264486, -23.803304985699466], + [-45.62388060318227, -23.803275985687087], + [-45.623894603138815, -23.803236985635845], + [-45.62390560309567, -23.80320298559394], + [-45.62390460297049, -23.80315798557351], + [-45.62390360286142, -23.80311898555618], + [-45.62390260273622, -23.803073985535672], + [-45.62391360268764, -23.803037985492747], + [-45.62391260258124, -23.802999985475914], + [-45.623923602476374, -23.802942985422288], + [-45.62393460242787, -23.802906985379362], + [-45.62395060240389, -23.802871985325684], + [-45.623961602366045, -23.80283998528474], + [-45.62397360236497, -23.802819985247528], + [-45.62398960235434, -23.802789985196334], + [-45.624008602340886, -23.802753985135368], + [-45.62403660237473, -23.8027209850555], + [-45.62406060243155, -23.802702984992294], + [-45.62410160249812, -23.80266098487864], + [-45.62415860266433, -23.802629984734416], + [-45.62419560277526, -23.802610984641397], + [-45.6242356028831, -23.802585984538528], + [-45.62428360300452, -23.80255298441363], + [-45.624310603061, -23.802529984341074], + [-45.62434860317085, -23.802508984244803], + [-45.62437960326084, -23.802491984166313], + [-45.62441060333473, -23.802468984084747], + [-45.624451603444356, -23.802442983979123], + [-45.62447660354035, -23.802437983920232], + [-45.62450060360773, -23.802423983859022], + [-45.62452660367587, -23.802406983791816], + [-45.62456260377705, -23.802385983700074], + [-45.62458660384441, -23.802371983638842], + [-45.62462360397953, -23.8023619835503], + [-45.624649604050354, -23.802345983483587], + [-45.62467360414189, -23.802340983426948], + [-45.62471560429883, -23.80233098332712], + [-45.62475660447556, -23.802329983234117], + [-45.62480560468465, -23.802327983122485], + [-45.62483760485409, -23.802338983055936], + [-45.62486460498836, -23.802344982998004], + [-45.62491360518663, -23.80233898288445], + [-45.6249466052935, -23.802324982802876], + [-45.62496060524469, -23.802283982750605], + [-45.62497660525293, -23.802260982702965], + [-45.6249886052276, -23.80223198266128], + [-45.62498760513732, -23.802199982647423], + [-45.6249986050941, -23.80216598260551], + [-45.624997604993055, -23.80212998258957], + [-45.62499260487457, -23.802093982582768], + [-45.62497660473207, -23.80206698260517], + [-45.62494960456827, -23.802049982657632], + [-45.62492660443278, -23.802036982702965], + [-45.624894604268604, -23.802027982770607], + [-45.6248576040315, -23.80199998283996], + [-45.62481860382592, -23.801986982921395], + [-45.624785603601005, -23.801956982980737], + [-45.624750603394105, -23.801936983049675], + [-45.62471860316549, -23.80190398310518], + [-45.62469060298937, -23.801883983158298], + [-45.624668602834014, -23.801861983196837], + [-45.624662602748636, -23.80183998319932], + [-45.62466160264761, -23.801803983183454], + [-45.62466160256169, -23.801771983167274], + [-45.62467260254809, -23.801748983130917], + [-45.624701602618615, -23.801727983054864], + [-45.62472560268607, -23.801713982993757], + [-45.624749602777605, -23.801708982937022], + [-45.624786602926115, -23.80170398285107], + [-45.62481360304157, -23.80170298278965], + [-45.624842603198005, -23.801713982729787], + [-45.62487760337796, -23.8017239826558], + [-45.62490660350486, -23.80172398259037], + [-45.624938603642256, -23.801722982517674], + [-45.62496560378716, -23.80173298246182], + [-45.62499760392717, -23.80173298238962], + [-45.625048604145015, -23.801730982273558], + [-45.62509260432409, -23.80172598217171], + [-45.62514860455304, -23.80171998204238], + [-45.62519660471204, -23.801700981924437], + [-45.62522360481676, -23.801695981861037], + [-45.62524760490829, -23.80169098180442], + [-45.62528160503026, -23.80168098172263], + [-45.625305605108444, -23.801670981663477], + [-45.625334605208394, -23.801660981593013], + [-45.625361605302395, -23.80165198152751], + [-45.62540460545026, -23.801636981422934], + [-45.625477605694506, -23.80160898124413], + [-45.62564760641687, -23.801600980856573], + [-45.62566160647814, -23.80160098082499], + [-45.62566460649124, -23.801600980818225], + [-45.62568860658825, -23.80159798076258], + [-45.625703606648415, -23.801595980727726], + [-45.62572360673597, -23.801595980682624], + [-45.62574560682682, -23.801593980631882], + [-45.62579360703153, -23.801591980522602], + [-45.625815607127755, -23.801591980472956], + [-45.62585260728966, -23.80159198038945], + [-45.625908607534726, -23.80159198026311], + [-45.62595260772187, -23.801589980162824], + [-45.62597960783464, -23.801587980100923], + [-45.6260236079842, -23.801571979993522], + [-45.62602560799292, -23.80157197998899], + [-45.62604760808376, -23.80156997993834], + [-45.626069608161266, -23.801562979885247], + [-45.62610160827174, -23.801551979807552], + [-45.62612860838183, -23.801548979745053], + [-45.626128608376476, -23.801546979744074], + [-45.626145608415925, -23.80153397969916], + [-45.6261626084527, -23.80151997965373], + [-45.62619760856552, -23.80150497956722], + [-45.62621660861649, -23.80149297951829], + [-45.626221608608816, -23.801481979501432], + [-45.62624160864258, -23.801461979446355], + [-45.62625860864454, -23.8014349793943], + [-45.62627560868134, -23.80142097934898], + [-45.62628060862531, -23.801391979323025], + [-45.626319608675125, -23.801346979212354], + [-45.62636060868003, -23.801281979087126], + [-45.62640760874603, -23.801229978954872], + [-45.626412608727584, -23.801214978936134], + [-45.626446608731335, -23.801160978832208], + [-45.6264636087333, -23.801133978780225], + [-45.626507608839894, -23.801101978664846], + [-45.626510608799286, -23.801081978647968], + [-45.62651760874674, -23.801050978616566], + [-45.62653460873509, -23.801018978562098], + [-45.626537608718756, -23.801007978549766], + [-45.626542608692276, -23.80098997852944], + [-45.62654760864697, -23.800964978505544], + [-45.626554608605154, -23.800937978476156], + [-45.62657160851574, -23.800876978407082], + [-45.626574608450994, -23.80084797838573], + [-45.62657460831944, -23.80079897836107], + [-45.626574608203974, -23.80075597833941], + [-45.62657460818517, -23.80074897833592], + [-45.62657460812611, -23.800726978324803], + [-45.626571607954595, -23.800667978301863], + [-45.62657160785795, -23.800631978283775], + [-45.62657260785693, -23.800629978280536], + [-45.6265746077556, -23.800588978255355], + [-45.62659160774681, -23.800557978201315], + [-45.626591607741446, -23.80055597820032], + [-45.626613607770544, -23.800530978138053], + [-45.626613607765165, -23.800528978137077], + [-45.626635607770176, -23.800494978070322], + [-45.62665760774557, -23.80044997799805], + [-45.62666060772375, -23.800436977984727], + [-45.62666560769728, -23.80041897796438], + [-45.62668960774056, -23.80039597789862], + [-45.626706607723634, -23.800361977843185], + [-45.62675560784946, -23.80032897771602], + [-45.626770607896304, -23.8003219776786], + [-45.62679460793413, -23.80029697761192], + [-45.6267946079046, -23.800285977606343], + [-45.62679460789921, -23.800283977605293], + [-45.62679460785625, -23.800267977597315], + [-45.626799607805694, -23.800240977572336], + [-45.62680460773089, -23.800204977543], + [-45.62680460763962, -23.80017097752589], + [-45.626804607556366, -23.800139977510295], + [-45.626804607459725, -23.800103977492114], + [-45.626812607373935, -23.800058977451407], + [-45.62681260736857, -23.800056977450414], + [-45.626812607277294, -23.80002297743331], + [-45.62681260724775, -23.80001197742776], + [-45.6268076071937, -23.799999977432986], + [-45.62679260704475, -23.799968977451215], + [-45.62679060698231, -23.79994897744562], + [-45.62677560680125, -23.799905977457794], + [-45.626770606741815, -23.799891977462103], + [-45.62675160661835, -23.799876977497423], + [-45.6267466065294, -23.79985197749609], + [-45.62674460652067, -23.79985197750061], + [-45.626714606284715, -23.79981297754863], + [-45.62668760607796, -23.79977997759295], + [-45.626688606068925, -23.799774977588196], + [-45.62668560605043, -23.79977297759399], + [-45.6266396056559, -23.79970097766153], + [-45.62663960565053, -23.79969897766042], + [-45.62663660562938, -23.799695977665717], + [-45.626600605238266, -23.799608977703095], + [-45.6265836050055, -23.79954997771183], + [-45.62657660484327, -23.799500977702895], + [-45.62656360466568, -23.79945597770956], + [-45.62653460440447, -23.799405977749775], + [-45.62653260436083, -23.799392977747814], + [-45.626529604347716, -23.79939297775458], + [-45.6265176041906, -23.79935397776198], + [-45.626517604142286, -23.799335977752936], + [-45.62651760404563, -23.799299977734865], + [-45.626500603858425, -23.79925797775205], + [-45.62650060376714, -23.799223977734876], + [-45.626493603658716, -23.799194977736082], + [-45.62648860353209, -23.79915597772767], + [-45.62648360343775, -23.799128977725434], + [-45.62646960326913, -23.799088977736833], + [-45.626456603145115, -23.799063977753566], + [-45.62644460302548, -23.79903897776801], + [-45.626442603011384, -23.799036977771536], + [-45.62639660270006, -23.79899597785465], + [-45.62636160246378, -23.7989649779181], + [-45.626344602389416, -23.798964977956455], + [-45.626327602277385, -23.798950977987673], + [-45.62631560221959, -23.798948978013733], + [-45.626298602091445, -23.79892897804206], + [-45.6262816019795, -23.798914978073352], + [-45.62622560162184, -23.798872978178526], + [-45.62622260159532, -23.79886797818283], + [-45.62617660130273, -23.7988339782695], + [-45.626135600986416, -23.79878297833627], + [-45.626113600839226, -23.798763978376353], + [-45.626071600615184, -23.798748978463543], + [-45.626071600601755, -23.79874397846097], + [-45.626049600457165, -23.798725978501555], + [-45.62603760037512, -23.79871497852314], + [-45.62603260033447, -23.79870797853085], + [-45.6260136001977, -23.798687978563592], + [-45.6259835999403, -23.798640978607636], + [-45.62594959966262, -23.798592978660185], + [-45.625913599365575, -23.798540978715163], + [-45.6258745990634, -23.798491978778486], + [-45.62586159892876, -23.798462978793214], + [-45.62584459872555, -23.79841497880742], + [-45.625830598605155, -23.79839297882787], + [-45.62583059859978, -23.79839097882688], + [-45.625822598527236, -23.79837697883785], + [-45.62582059851851, -23.798376978842395], + [-45.62579859837391, -23.798358978882966], + [-45.62577159817264, -23.798327978928253], + [-45.625766598131925, -23.79832097893597], + [-45.625749597985084, -23.798293978960814], + [-45.6257475979709, -23.798291978964226], + [-45.62573059785366, -23.79827597899454], + [-45.62569359760588, -23.79824397906189], + [-45.62561059703334, -23.798165979209884], + [-45.62552159642121, -23.798082979368807], + [-45.62547959614896, -23.79804997944695], + [-45.62545759600972, -23.798033979488448], + [-45.625417595759565, -23.798005979564657], + [-45.62539459561873, -23.797990979608887], + [-45.62537259546873, -23.797970979648476], + [-45.62534659522353, -23.797921979682485], + [-45.625331595098785, -23.797899979705182], + [-45.62531159493886, -23.797872979736784], + [-45.625283594708975, -23.79783297977976], + [-45.62527759459955, -23.797801979777695], + [-45.62525959446168, -23.797779979807153], + [-45.625239594301746, -23.79775297983878], + [-45.625216594131295, -23.79772697987752], + [-45.62519459395728, -23.797697979912453], + [-45.625176593824854, -23.79767797994302], + [-45.62514659363456, -23.79765597999965], + [-45.625141593545635, -23.7976309799983], + [-45.62511059330257, -23.797590980048145], + [-45.625084593051916, -23.797539980081062], + [-45.62506859286112, -23.797494980094495], + [-45.62506359276681, -23.797467980092147], + [-45.6250475925653, -23.79741898010359], + [-45.62503459240643, -23.797380980113733], + [-45.62502759222545, -23.797324980101294], + [-45.62502259213117, -23.79729798009905], + [-45.6250065920021, -23.797275980123988], + [-45.62497159172824, -23.7972309801803], + [-45.624934591534135, -23.79721898025768], + [-45.624904591368015, -23.797205980318783], + [-45.62486059112988, -23.79718898040951], + [-45.62483559096682, -23.797168980455833], + [-45.6248105907931, -23.797144980500107], + [-45.62479559066835, -23.79712298052282], + [-45.62478959057501, -23.797097980523805], + [-45.624784590480715, -23.79707098052148], + [-45.624778590387315, -23.797045980522384], + [-45.62476259016176, -23.79698798052925], + [-45.62475159005447, -23.79696598054302], + [-45.624736589892336, -23.79692998055865], + [-45.624725589771714, -23.796902980569875], + [-45.62470358962443, -23.79688398060994], + [-45.62467858949097, -23.796874980661745], + [-45.62466058935311, -23.796852980691337], + [-45.62464058921734, -23.796834980727386], + [-45.62461358905895, -23.796819980780644], + [-45.6245905888886, -23.796793980819494], + [-45.62457558876923, -23.796773980843188], + [-45.624548588578705, -23.79674698089055], + [-45.62453258843885, -23.79672098091352], + [-45.624520588332764, -23.796700980930446], + [-45.624497588165, -23.796675980969805], + [-45.62447958801651, -23.79664998099729], + [-45.624461587859926, -23.79662098102328], + [-45.62445158773835, -23.796591981031217], + [-45.62444558761552, -23.79655598102663], + [-45.6244395874926, -23.796519981021987], + [-45.624433587380494, -23.796487981019407], + [-45.62443258725537, -23.796442980999], + [-45.624438587171554, -23.796401980964795], + [-45.62443758704104, -23.796354980943384], + [-45.62443658696422, -23.79632798093203], + [-45.62443558684444, -23.796284980912603], + [-45.624429586721625, -23.79624898090804], + [-45.624419586594634, -23.796217980915003], + [-45.62440858642574, -23.79617298091712], + [-45.62440258632708, -23.796145980916933], + [-45.62438458618931, -23.796123980946508], + [-45.624369586045766, -23.79609498096572], + [-45.62435858590109, -23.79605898097243], + [-45.62435758580012, -23.79602298095651], + [-45.62435758572229, -23.795993980941876], + [-45.624355585598146, -23.795950980924736], + [-45.624355585517655, -23.795920980909592], + [-45.624354585430076, -23.795889980896263], + [-45.62436558539226, -23.795857980855335], + [-45.62437758535891, -23.79582598081207], + [-45.62440558539016, -23.795791980731828], + [-45.62443458544725, -23.795765980653393], + [-45.624462585508006, -23.795742980578613], + [-45.62448658556195, -23.795723980514946], + [-45.62450058556953, -23.79570398047322], + [-45.62452758566081, -23.79569398040724], + [-45.62454858570979, -23.795677980351932], + [-45.624577585796324, -23.795662980278866], + [-45.62459458582245, -23.795644980231494], + [-45.624606585818604, -23.79562398019388], + [-45.624629585865485, -23.795603980131872], + [-45.62465358591417, -23.795582980067195], + [-45.62467058593215, -23.795561980018242], + [-45.62469658594662, -23.795524979940982], + [-45.6247215859406, -23.795481979862927], + [-45.62474858598887, -23.795455979788922], + [-45.62475958596454, -23.79542897975059], + [-45.62478358600785, -23.795405979684812], + [-45.62479758599396, -23.795377979639134], + [-45.62480858598843, -23.795357979604187], + [-45.62482058596569, -23.795329979563093], + [-45.624834585954474, -23.795302979517885], + [-45.62486558600958, -23.795272979432866], + [-45.624894586123105, -23.795267979364887], + [-45.62492658626037, -23.79526697929222], + [-45.62495558638448, -23.795265979226322], + [-45.62499958657426, -23.79526497912657], + [-45.62503158674382, -23.795275979059966], + [-45.62506158690995, -23.795288978998848], + [-45.62508758702093, -23.79528797893971], + [-45.62511558720246, -23.795309978887612], + [-45.62514758733983, -23.79530897881494], + [-45.62517358744009, -23.79530397875382], + [-45.62519758750751, -23.795289978692615], + [-45.62522158757497, -23.795275978631416], + [-45.62523358755232, -23.79524797859025], + [-45.62525758761969, -23.79523397852906], + [-45.62527158761383, -23.79520897848488], + [-45.62529758764172, -23.795176978410115], + [-45.62532158769038, -23.795155978345353], + [-45.625347587777284, -23.795145978281745], + [-45.62537258787316, -23.795140978222864], + [-45.62540658799504, -23.795130978141103], + [-45.62544758814756, -23.79512097804357], + [-45.62549058829807, -23.79510697793954], + [-45.625520588415895, -23.795101977869376], + [-45.62555058852564, -23.795093977797727], + [-45.62558958868016, -23.7950879777067], + [-45.625609588756895, -23.7950839776596], + [-45.62563258883069, -23.795073977602637], + [-45.625656588916826, -23.795066977545023], + [-45.62567858897017, -23.79505097748737], + [-45.62569158899483, -23.795038977451984], + [-45.625710589051096, -23.79502897740406], + [-45.62573058910642, -23.795016977352883], + [-45.625743589112226, -23.79499797731401], + [-45.62575658912615, -23.79498197727665], + [-45.625762589101456, -23.794962977253554], + [-45.625769589067644, -23.794938977225666], + [-45.62578058905138, -23.794914977188714], + [-45.62578058899501, -23.79489397717819], + [-45.62578058894938, -23.79487697716965], + [-45.625778588889666, -23.794857977164515], + [-45.62577458882121, -23.794838977163995], + [-45.625770588758, -23.794821977164467], + [-45.62576158866234, -23.79480097717422], + [-45.62574458852887, -23.79477897720142], + [-45.62572758839825, -23.79475797722923], + [-45.625712588281544, -23.794738977253434], + [-45.625690588145126, -23.794723977295508], + [-45.625671588043154, -23.794716977334893], + [-45.62564658789359, -23.794701977383625], + [-45.62563058777801, -23.794684977411233], + [-45.62560758762905, -23.794666977453982], + [-45.62556858739403, -23.794642977529904], + [-45.625536587176235, -23.794613977587392], + [-45.625511587032065, -23.794600977637323], + [-45.62549158688548, -23.794578977671282], + [-45.625473586747724, -23.794556977700847], + [-45.62544358656283, -23.79453697775838], + [-45.62542158640214, -23.794512977795936], + [-45.625386586184675, -23.794488977862784], + [-45.62535358591961, -23.794443977914543], + [-45.62531558565405, -23.79440697798157], + [-45.62530058548644, -23.794368977996303], + [-45.625284585333304, -23.794337978016767], + [-45.62527458522779, -23.7943149780277], + [-45.625268585118405, -23.794283978025643], + [-45.62526758499329, -23.794238978005225], + [-45.62526158488389, -23.79420797800314], + [-45.62526058476412, -23.794164977983744], + [-45.6252545846278, -23.794123977976593], + [-45.625249584546836, -23.794101977976826], + [-45.62524258440087, -23.79405897797093], + [-45.62523758432, -23.79403697797109], + [-45.62522658418599, -23.79400497797981], + [-45.6252135840513, -23.793975977994524], + [-45.6251985839025, -23.79394497801273], + [-45.62519258377433, -23.79390697800709], + [-45.625176583613104, -23.793872978026066], + [-45.62517058346068, -23.79382597801584], + [-45.62516058332568, -23.793791978021297], + [-45.62513158307548, -23.793745978063534], + [-45.62512558290428, -23.793691978049843], + [-45.62511558279878, -23.79366897806087], + [-45.62510458261925, -23.793619978060907], + [-45.625093582504036, -23.79359497807318], + [-45.62508358239588, -23.793570978083615], + [-45.62505758214537, -23.793519978116585], + [-45.62504658201135, -23.793487978125206], + [-45.62503158187599, -23.79346197814602], + [-45.625021581770504, -23.793438978156924], + [-45.62501058164453, -23.793409978167126], + [-45.62500558156366, -23.79338797816736], + [-45.62498758141251, -23.793360978194322], + [-45.62496958120769, -23.79331397821126], + [-45.624952580964205, -23.79325097821778], + [-45.62494158077126, -23.793196978215356], + [-45.62493058060506, -23.793152978218092], + [-45.62492958049603, -23.79311397820066], + [-45.62492358041071, -23.793091978203154], + [-45.624922580296335, -23.793050978184734], + [-45.62491758018595, -23.793017978179414], + [-45.62491658010108, -23.792987978166465], + [-45.624910580002336, -23.79296097816647], + [-45.62489957982282, -23.792911978166526], + [-45.624893579681235, -23.79286897815837], + [-45.62488857960026, -23.792846978158607], + [-45.62488757951541, -23.79281697814577], + [-45.62488157941129, -23.792787978144688], + [-45.62487157930858, -23.79276597815609], + [-45.62486557919108, -23.79273197815252], + [-45.624864579090115, -23.79269597813659], + [-45.62486357901868, -23.792670978126296], + [-45.62485857893778, -23.792648978126465], + [-45.624857578852925, -23.7926189781136], + [-45.62485657876003, -23.79258597809926], + [-45.62485557866978, -23.792553978085405], + [-45.624850578588905, -23.79253197808555], + [-45.62486157856184, -23.79250397804662], + [-45.62487557852648, -23.79246797799695], + [-45.6248745784443, -23.79243897798459], + [-45.624885578374396, -23.79239497793762], + [-45.62489757835981, -23.79236997789794], + [-45.62489657829106, -23.79234597788815], + [-45.62492057832619, -23.792319977820906], + [-45.62493757833884, -23.79229697777096], + [-45.624965578329835, -23.792247977683132], + [-45.62498657831709, -23.79220897761609], + [-45.62499057822188, -23.7921669775859], + [-45.62499657814346, -23.792127977552788], + [-45.624998578015344, -23.792076977522544], + [-45.62499857781412, -23.792001977484748], + [-45.62499357771446, -23.79197297748143], + [-45.62499557762393, -23.79193597745822], + [-45.62502157775109, -23.79194097740218], + [-45.62506957799587, -23.7919539773004], + [-45.62509357810088, -23.791953977246273], + [-45.62512657824521, -23.79195397717186], + [-45.625136578243364, -23.79193697714076], + [-45.625130578149985, -23.791911977141755], + [-45.625111577932756, -23.791861977159336], + [-45.625105577818, -23.791828977156293], + [-45.625126577799804, -23.791787977088255], + [-45.62514857785046, -23.79177097703009], + [-45.62517757785122, -23.79172397694103], + [-45.6251995778508, -23.79168797687323], + [-45.625242577982526, -23.79166697676573], + [-45.62529357816261, -23.79165097664266], + [-45.625332578242, -23.791616976537536], + [-45.62535057823494, -23.79158497648083], + [-45.625350578183955, -23.791565976471276], + [-45.625350578068584, -23.791522976449603], + [-45.62536657804198, -23.79148697639543], + [-45.62540357816618, -23.791472976304927], + [-45.62545157839755, -23.791480976200695], + [-45.62550657861667, -23.79147297607267], + [-45.62556257881601, -23.791455975937748], + [-45.62562157902844, -23.791438975796133], + [-45.625703579349455, -23.791424975604265], + [-45.62581457977326, -23.791401975342314], + [-45.62587858003711, -23.791395975194916], + [-45.625943580294546, -23.791385975043333], + [-45.626005580554946, -23.791381974901565], + [-45.626052580760565, -23.791381974795563], + [-45.62608558090487, -23.79138197472114], + [-45.62611658104043, -23.791381974651234], + [-45.626169581269494, -23.791380974531222], + [-45.62621058142468, -23.791371974434174], + [-45.62624558156709, -23.79136797435319], + [-45.626309581825495, -23.79135997420486], + [-45.62637458207486, -23.79134697405171], + [-45.62642058227074, -23.791344973946984], + [-45.62645558243183, -23.791347973869545], + [-45.62647558253008, -23.79135197382652], + [-45.62652458274436, -23.791351973716004], + [-45.62657058294553, -23.79135197361226], + [-45.6266235831746, -23.79135097349216], + [-45.626672583405046, -23.791356973384755], + [-45.62674758373841, -23.79135897321658], + [-45.62679858395882, -23.79135797310105], + [-45.62685158421471, -23.79136697298604], + [-45.62689858443644, -23.79137297288311], + [-45.62694258461814, -23.79136897278179], + [-45.62698558476047, -23.79135197267635], + [-45.627026584883446, -23.791330972573267], + [-45.62706958508226, -23.791334972478275], + [-45.627098585238606, -23.791345972418426], + [-45.62712658538521, -23.79135497235985], + [-45.6271635855765, -23.79136597228187], + [-45.62720258574709, -23.79136597219392], + [-45.627221585790004, -23.791350972143512], + [-45.62725458585113, -23.791319972053493], + [-45.627274585919785, -23.791312972004903], + [-45.62731758612662, -23.791319971911417], + [-45.62736158635931, -23.791334971819722], + [-45.62738558648576, -23.79134297176968], + [-45.62741058660844, -23.791347971715773], + [-45.627445586772296, -23.79135197163891], + [-45.62747458687232, -23.79134197156844], + [-45.627498586902064, -23.791313971500212], + [-45.62749058680004, -23.791288971505637], + [-45.62746758664584, -23.791268971547467], + [-45.62745058653387, -23.791254971578763], + [-45.62741858635634, -23.791240971643877], + [-45.62739558615922, -23.791204971677566], + [-45.62738458603329, -23.791175971687863], + [-45.62738658596152, -23.79114597166815], + [-45.62740358597949, -23.79112497161929], + [-45.62746658616375, -23.791090971460108], + [-45.627524586355676, -23.791067971317666], + [-45.627585586576814, -23.79105097117156], + [-45.62760858670696, -23.791061971125234], + [-45.62764558698152, -23.791103971062864], + [-45.62768258723185, -23.791136970996092], + [-45.62770158738199, -23.791161970965792], + [-45.62772158752048, -23.79118097093029], + [-45.62773658761025, -23.791189970900945], + [-45.62776058772061, -23.791191970847784], + [-45.62777958781977, -23.79119797080804], + [-45.627814587991594, -23.791204970732576], + [-45.62784758813597, -23.791204970658157], + [-45.6278735882496, -23.79120497059952], + [-45.62789458829051, -23.791185970542596], + [-45.62792058826731, -23.791134970458312], + [-45.62794758817607, -23.791056970358095], + [-45.62794758814118, -23.79104397035154], + [-45.62794658805097, -23.791011970337696], + [-45.627975588081185, -23.7909759702542], + [-45.6279875880666, -23.79095097021453], + [-45.62797558796311, -23.79093197023206], + [-45.62794658778262, -23.79091197028732], + [-45.62791958764307, -23.790903970344246], + [-45.62788058746989, -23.790902970431723], + [-45.62786058738237, -23.790902970476807], + [-45.62783958723421, -23.79088197051365], + [-45.6278315871482, -23.790862970522053], + [-45.627847587153845, -23.790838970473946], + [-45.62786358718081, -23.79082297042972], + [-45.627863587145924, -23.790809970423144], + [-45.627841586985355, -23.79078597046065], + [-45.62778358665658, -23.790757970577456], + [-45.62776058650505, -23.7907389706197], + [-45.62770358621543, -23.790723970740782], + [-45.62763558586713, -23.790704970884484], + [-45.627596585661735, -23.790691970965916], + [-45.627561585460334, -23.7906739710358], + [-45.627532585255686, -23.79064497108661], + [-45.62752158513779, -23.790618971098283], + [-45.62744958471291, -23.79057797124001], + [-45.62740858445309, -23.790547971317448], + [-45.627365584254285, -23.790543971412347], + [-45.62733458411337, -23.790541971481254], + [-45.62730158401469, -23.790558971564238], + [-45.6272775839258, -23.790564971621453], + [-45.62724858374799, -23.79054597167723], + [-45.6272135835091, -23.790513971740044], + [-45.62718058328968, -23.790485971800347], + [-45.62715758314882, -23.790470971844663], + [-45.62714558299712, -23.790433971853147], + [-45.62714058292423, -23.790414971854798], + [-45.627111582757145, -23.790399971912635], + [-45.62708158263669, -23.790403971982272], + [-45.6270385824379, -23.790399972077264], + [-45.62701358225887, -23.79037397212051], + [-45.626974582048035, -23.790358972200938], + [-45.62690458163456, -23.790318972338707], + [-45.62684458133729, -23.790305972467447], + [-45.62679758110226, -23.79029497256789], + [-45.62674758079768, -23.79026297266452], + [-45.626727580656585, -23.79024297269951], + [-45.62669658049151, -23.79023197276392], + [-45.626671580349964, -23.790219972814274], + [-45.626644580247955, -23.790225972878137], + [-45.626618580206674, -23.790252972950363], + [-45.62659358012155, -23.790261973011322], + [-45.62655857998991, -23.790269973094226], + [-45.6265215797718, -23.79024897316713], + [-45.62645557937848, -23.790209973296285], + [-45.62640857911661, -23.79018897339173], + [-45.62632657873381, -23.79017997357208], + [-45.62627457847696, -23.790168973683866], + [-45.62621957816127, -23.79014097379379], + [-45.62616157780565, -23.790102973905384], + [-45.62611857763368, -23.79010897400534], + [-45.62606757747241, -23.790131974131967], + [-45.626009577224096, -23.790133974263746], + [-45.62589457675335, -23.790145974529132], + [-45.625849576602164, -23.79016297463916], + [-45.62578157633693, -23.790174974798568], + [-45.62570257600481, -23.790179974979193], + [-45.62569757569591, -23.790072974936578], + [-45.62570557559947, -23.79002397489389], + [-45.62570857550526, -23.789983974866946], + [-45.62568057532914, -23.78996397492003], + [-45.625616575019784, -23.789952975058696], + [-45.62556457467962, -23.789910975154868], + [-45.625535574458915, -23.789875975202584], + [-45.62551157422792, -23.789828975233032], + [-45.625492574002585, -23.789775975249235], + [-45.625473573715624, -23.78969997525369], + [-45.62544457338222, -23.789622975280302], + [-45.62542157312868, -23.789565975303457], + [-45.62540057293226, -23.789526975331114], + [-45.62537557259487, -23.789441975344733], + [-45.625365572374065, -23.78937597533398], + [-45.625371572279626, -23.78933097529779], + [-45.62536857209753, -23.789267975272836], + [-45.625362571904915, -23.789205975255058], + [-45.625361571734224, -23.7891439752261], + [-45.62535557161144, -23.789107975221516], + [-45.62537557147087, -23.789022975133555], + [-45.62540157133509, -23.788929975028104], + [-45.62543257134994, -23.788884974935552], + [-45.625432571248005, -23.788846974916375], + [-45.62543857112407, -23.788790974874615], + [-45.62542957094788, -23.788739974869145], + [-45.625427570775514, -23.788678974843023], + [-45.62543157057034, -23.788595974792187], + [-45.62542857036408, -23.788523974762636], + [-45.62544457027846, -23.78846597469734], + [-45.62545457019339, -23.78841797465062], + [-45.62548557019222, -23.788366974555004], + [-45.62551157011815, -23.78829697446118], + [-45.625524570059675, -23.7882539744102], + [-45.625533569889754, -23.78817597435052], + [-45.6255525697878, -23.7881069742729], + [-45.625605569877365, -23.788053974126772], + [-45.62565256998897, -23.788018974003105], + [-45.62569357007709, -23.787984973893565], + [-45.6256965698327, -23.78788897383849], + [-45.62571956964897, -23.787782973733126], + [-45.625759569676376, -23.78772797361532], + [-45.625814569683456, -23.78764097344745], + [-45.6258495696488, -23.787570973333274], + [-45.625974569870856, -23.78744997299038], + [-45.6260535700178, -23.787375972775006], + [-45.62610757009559, -23.787316972623515], + [-45.626174570144514, -23.787225972426636], + [-45.62622357008526, -23.78712397226476], + [-45.62625157006008, -23.78706897217392], + [-45.62630257014097, -23.78701597203228], + [-45.62637457019823, -23.786919971821543], + [-45.62643157030005, -23.786864971665302], + [-45.62652557045622, -23.78676997140554], + [-45.626593570528264, -23.786685971209884], + [-45.626680570645824, -23.786587970964423], + [-45.626729570672275, -23.786517970818675], + [-45.626772570718146, -23.786464970694983], + [-45.62687257089514, -23.786367970420628], + [-45.62697157116452, -23.786306970166677], + [-45.62705157136138, -23.786249969957595], + [-45.62709857145691, -23.786208969830966], + [-45.627130571529754, -23.786183969746286], + [-45.62729057196917, -23.786086969336633], + [-45.62742157230859, -23.78599996899746], + [-45.62753057259477, -23.785928968716007], + [-45.627651572941396, -23.785860968408915], + [-45.62779057332381, -23.785776968053174], + [-45.62795057380076, -23.785693967650577], + [-45.62803657402657, -23.785637967428553], + [-45.6280935741497, -23.785590967276285], + [-45.628206574485546, -23.78553196699178], + [-45.628249574641366, -23.785519966888746], + [-45.62841757516395, -23.785440966470226], + [-45.6285585755739, -23.785363966113525], + [-45.62867357591041, -23.785301965823056], + [-45.62875757616502, -23.785259965612497], + [-45.62885557648077, -23.78521796537035], + [-45.62893557678496, -23.785200965181314], + [-45.62907157724543, -23.78515096484954], + [-45.629167577557894, -23.785110964612883], + [-45.62932957807031, -23.78503796421086], + [-45.62942957839755, -23.784996963964716], + [-45.62954657879372, -23.78495396367924], + [-45.6296825792622, -23.78490696334892], + [-45.62983857979403, -23.78485096296905], + [-45.629928580101634, -23.784818962749913], + [-45.63002858041545, -23.784772962501275], + [-45.63011058067732, -23.78473696229828], + [-45.630237581119886, -23.78469496199077], + [-45.63034458150457, -23.78466396173387], + [-45.63047958196866, -23.784616961405725], + [-45.630543582186704, -23.784593961249858], + [-45.63064358247905, -23.784539960997172], + [-45.63072758274435, -23.784501960788685], + [-45.63083058314893, -23.7844849605479], + [-45.63094358354907, -23.784449960275378], + [-45.63112158419576, -23.78440095984934], + [-45.63123658460997, -23.784367959573327], + [-45.631384585144396, -23.784325959218442], + [-45.63148258550569, -23.78430095898492], + [-45.631595585967496, -23.784288958724044], + [-45.631712586417265, -23.78426595844868], + [-45.63179858675298, -23.7842509582471], + [-45.63189558709926, -23.784221958013838], + [-45.63197958745567, -23.7842179578224], + [-45.6320635877746, -23.784199957623855], + [-45.63213758807395, -23.784190957452406], + [-45.63224658848868, -23.784167957195073], + [-45.632363588935746, -23.784143956919102], + [-45.63240858912174, -23.784139956815647], + [-45.63243358919081, -23.784124956751686], + [-45.63249858947489, -23.784124956605122], + [-45.632564589731274, -23.784112956450205], + [-45.632712590316515, -23.784089956104907], + [-45.63292759117321, -23.784058955604436], + [-45.633036591606746, -23.784042955350465], + [-45.63319259223234, -23.784021954988134], + [-45.633324592736905, -23.783994954676817], + [-45.63347559334605, -23.78397595432673], + [-45.63360359387331, -23.783963954032], + [-45.63370359431313, -23.783964953806933], + [-45.633788594663244, -23.783956953611167], + [-45.633876595007656, -23.783941953405154], + [-45.633962595383586, -23.783941953211198], + [-45.6340265956499, -23.78393695306434], + [-45.63416159619437, -23.78391995275133], + [-45.63431959684746, -23.78390595238792], + [-45.63444359738416, -23.783903952107238], + [-45.63457459797021, -23.783908951814258], + [-45.63465659833661, -23.783911951630795], + [-45.63475359879015, -23.783922951417555], + [-45.6348085990145, -23.783916951290504], + [-45.63501459980223, -23.783874950804726], + [-45.635194600521885, -23.783849950386127], + [-45.63531360103937, -23.78384895011721], + [-45.63557260215805, -23.783843949530517], + [-45.63565260251304, -23.78384594935105], + [-45.63580260313655, -23.783833949006656], + [-45.63591760362311, -23.783827948744158], + [-45.63596960385035, -23.783827948626875], + [-45.636028604094825, -23.78382294849131], + [-45.636067604235805, -23.783811948397872], + [-45.63608360425473, -23.78379294835216], + [-45.63613360442502, -23.78377494823035], + [-45.636190604700914, -23.783784948106746], + [-45.63622560492909, -23.783812948041952], + [-45.636264605134464, -23.783825947960423], + [-45.63628760524032, -23.783827947909558], + [-45.63631860530603, -23.783801947826614], + [-45.63634260537341, -23.78378794776544], + [-45.636361605502024, -23.783804947731085], + [-45.63638160567538, -23.783836947702053], + [-45.63641960588167, -23.783851947623873], + [-45.636447606009426, -23.783853947561703], + [-45.63647860610467, -23.783838947484227], + [-45.63648460605303, -23.78380994745621], + [-45.63647660594834, -23.78378394746108], + [-45.636490605988065, -23.783775947425543], + [-45.636506606057985, -23.783775947389433], + [-45.63651960607456, -23.78376094735259], + [-45.6365126059635, -23.78373094735328], + [-45.636562606114914, -23.78370594722792], + [-45.6365886062232, -23.783703947168256], + [-45.63667260656078, -23.783692946973243], + [-45.63673260687132, -23.78371094684699], + [-45.636784607114734, -23.783716946732664], + [-45.636837607370566, -23.78372594661767], + [-45.636907607695235, -23.783732946463232], + [-45.63696460796854, -23.783741946339195], + [-45.637047608360874, -23.783752946157414], + [-45.63726960936871, -23.78376694566374], + [-45.637386609880096, -23.783766945399808], + [-45.63761261089466, -23.78377694489493], + [-45.637768611576504, -23.783776944542968], + [-45.63782561182296, -23.7837759444139], + [-45.63788361206839, -23.783772944281555], + [-45.63794461236722, -23.7837849441499], + [-45.63799861260863, -23.78378694402915], + [-45.638117613128685, -23.783786943760695], + [-45.63821861354329, -23.783776943527773], + [-45.638300613880254, -23.783768943338803], + [-45.63837261416265, -23.783756943170303], + [-45.63841361434185, -23.7837569430778], + [-45.638454614590856, -23.783782942998318], + [-45.63848361477934, -23.783805942944472], + [-45.638520614975974, -23.78381894286753], + [-45.63856161517933, -23.78382794277951], + [-45.63863961552557, -23.78382994260451], + [-45.63871161581341, -23.78381994243712], + [-45.63875061598381, -23.783819942349105], + [-45.63877761610719, -23.783821942289197], + [-45.638818616350825, -23.783845942208792], + [-45.63884361648427, -23.78385494215693], + [-45.63887961664155, -23.783854942075703], + [-45.63892361683395, -23.783854941976447], + [-45.63900761716881, -23.78384294178089], + [-45.63905061738625, -23.783853941689316], + [-45.639081617594194, -23.783880941632944], + [-45.63911461780819, -23.78390694157159], + [-45.63914561796253, -23.783913941505133], + [-45.639184618132916, -23.7839139414171], + [-45.63922961832958, -23.783913941315582], + [-45.639268618500076, -23.783913941227592], + [-45.639305618661815, -23.783913941144117], + [-45.6393546189001, -23.783922941038107], + [-45.639492619487086, -23.78391694072377], + [-45.63960361997493, -23.783917940473795], + [-45.639662620238134, -23.78391994034168], + [-45.639716620533214, -23.783941940230836], + [-45.639749620717666, -23.78395694016392], + [-45.639854621227556, -23.78397593993662], + [-45.63992062155631, -23.78399093979521], + [-45.63996562177174, -23.78399793969715], + [-45.639998621926686, -23.784001939624677], + [-45.64002862205511, -23.7840009395565], + [-45.64008262222672, -23.783976939422658], + [-45.64011762237965, -23.78397693934366], + [-45.640158622572265, -23.783981939253653], + [-45.64020162281112, -23.784000939166123], + [-45.640226622995655, -23.784028939123775], + [-45.640242623145994, -23.78405893910286], + [-45.640263623262, -23.784067939059916], + [-45.64028662336246, -23.78406793900803], + [-45.640312623476106, -23.784067938949352], + [-45.640323623545676, -23.784075938928513], + [-45.64032962359065, -23.784082938918527], + [-45.640329623641655, -23.78410193892804], + [-45.640331623685356, -23.784114938930074], + [-45.64033962374712, -23.784124938917074], + [-45.64035662383482, -23.784129938881197], + [-45.64041762412833, -23.784139938748602], + [-45.640475624384486, -23.784140938618222], + [-45.64053762468496, -23.784151938483866], + [-45.64058262492727, -23.784168938390838], + [-45.64061562515736, -23.78420093833243], + [-45.6406386253492, -23.784234938297594], + [-45.640646625459254, -23.784262938293686], + [-45.64065662554325, -23.784277938278564], + [-45.64067762566999, -23.78429093823771], + [-45.640716625781295, -23.784268938138705], + [-45.64073062578612, -23.784247938096517], + [-45.64075962588603, -23.784237938026116], + [-45.64079262601411, -23.784231937948608], + [-45.64082762622878, -23.784254937881187], + [-45.64083362630606, -23.78427393787717], + [-45.64085062644477, -23.78429793785089], + [-45.640899626728675, -23.784323937753303], + [-45.64094662699051, -23.784344937657856], + [-45.64099862724188, -23.784353937545056], + [-45.64104562748226, -23.78436693744545], + [-45.64110562777936, -23.784379937316608], + [-45.64114062800745, -23.784407937251668], + [-45.64119362823903, -23.784407937132077], + [-45.641226628359156, -23.78439893705314], + [-45.64126562852694, -23.784397936964655], + [-45.64128662865625, -23.78441193692418], + [-45.64129262876298, -23.784441936925802], + [-45.641310628871246, -23.784452936890645], + [-45.64132962891398, -23.784437936840245], + [-45.64134562892216, -23.784414936792636], + [-45.64135962892697, -23.784393936750455], + [-45.64139262912217, -23.784412936685502], + [-45.64143162932216, -23.78442393660311], + [-45.64145462940652, -23.784417936548156], + [-45.6414666294188, -23.784402936513537], + [-45.64149162955484, -23.78441293646209], + [-45.641516629672175, -23.784415936407232], + [-45.641532629637396, -23.78437693635151], + [-45.64154262964355, -23.784362936321923], + [-45.64157562978764, -23.78436293624746], + [-45.64159862985868, -23.784351936190095], + [-45.64163263000732, -23.78435193611338], + [-45.64165963010376, -23.78434393604839], + [-45.64165363001583, -23.78432093605033], + [-45.64164962990711, -23.784286936042324], + [-45.64167162996839, -23.784273935986146], + [-45.6417046301125, -23.784273935911692], + [-45.64172163024323, -23.784294935883914], + [-45.641749630475694, -23.784335935841234], + [-45.64176663059022, -23.78435093581048], + [-45.64179163070489, -23.78435293575506], + [-45.64182463088934, -23.78436793568803], + [-45.641850631088886, -23.7843999356455], + [-45.641875631243714, -23.784416935597587], + [-45.64189863138991, -23.784433935554205], + [-45.6419166314981, -23.784444935519133], + [-45.641906631602026, -23.784499935569258], + [-45.64191963175012, -23.784533935557025], + [-45.641950631928545, -23.784549935495093], + [-45.64197463199855, -23.784536935434392], + [-45.64198463194563, -23.78450093539379], + [-45.64200163202528, -23.784502935356443], + [-45.64203063222721, -23.784530935305035], + [-45.642040632311186, -23.78454593529], + [-45.64205763251701, -23.784594935276207], + [-45.64209463279152, -23.784636935213797], + [-45.642139633087496, -23.784673935130847], + [-45.642170633263234, -23.784688935068434], + [-45.64221463350653, -23.784707934978638], + [-45.64225363373329, -23.784728934901135], + [-45.64227163388174, -23.784754934873565], + [-45.64229663403128, -23.78476993482469], + [-45.64232563418757, -23.78478093476478], + [-45.64233363426821, -23.78479793475523], + [-45.64232563428422, -23.7848169347828], + [-45.64231763428949, -23.784831934808388], + [-45.64231763435659, -23.784856934820958], + [-45.64232563442115, -23.784867934808467], + [-45.642370634641956, -23.78487693471136], + [-45.64241863485179, -23.784876934603023], + [-45.64246363499206, -23.784855934490977], + [-45.64250263508188, -23.784825934387886], + [-45.64252363509318, -23.78479593432546], + [-45.642532635038485, -23.78476093428762], + [-45.642522634919665, -23.78473293429611], + [-45.642515634819226, -23.784706934298846], + [-45.64252863481966, -23.784685934258896], + [-45.64250763461517, -23.7846439342853], + [-45.64248063438171, -23.784600934324654], + [-45.642439634097826, -23.784561934397573], + [-45.642389633710216, -23.784498934478744], + [-45.64235863348607, -23.78446593453214], + [-45.642325633285495, -23.784444934596127], + [-45.64230763318806, -23.78443793463319], + [-45.642276633122385, -23.78446393471621], + [-45.64226463311559, -23.784480934751812], + [-45.642221633000155, -23.7845079348624], + [-45.64219063283515, -23.784496934926846], + [-45.64216963268166, -23.784473934962733], + [-45.64215163251166, -23.78443993498631], + [-45.642128632381656, -23.784428935032675], + [-45.64209963225493, -23.784428935098134], + [-45.642081632200366, -23.784437935143206], + [-45.642075632184905, -23.78444193515882], + [-45.64206063207908, -23.784426935185152], + [-45.64204863196219, -23.784402935200156], + [-45.64203963186109, -23.784379935208875], + [-45.64200863162907, -23.784343935260818], + [-45.64198663148992, -23.78432793530243], + [-45.64196163134305, -23.784313935351822], + [-45.641926631120334, -23.78428793541774], + [-45.64187663076484, -23.784236935504918], + [-45.64184363054013, -23.78420693556432], + [-45.641833630431975, -23.784182935574897], + [-45.64185163030667, -23.784106935496155], + [-45.64182863003432, -23.78404293551588], + [-45.64181462990333, -23.784016935534474], + [-45.64181462984694, -23.78399593552389], + [-45.64182662986452, -23.783982935490265], + [-45.64184262987805, -23.783961935443674], + [-45.641834629767985, -23.783933935447642], + [-45.64185262978486, -23.783910935395447], + [-45.64186262978287, -23.783893935364368], + [-45.641856629678834, -23.783864935363344], + [-45.64184862955801, -23.78383293536535], + [-45.64183162939774, -23.78380093538767], + [-45.641839629333425, -23.783763935350997], + [-45.64186462943189, -23.783759935292615], + [-45.64189062956431, -23.78376693523749], + [-45.6419326297425, -23.78376493514173], + [-45.64195262976008, -23.78373893508343], + [-45.6419466296426, -23.783704935079914], + [-45.641915629472244, -23.78369193514334], + [-45.641870629275594, -23.783691935244885], + [-45.641818629064424, -23.783697935365282], + [-45.641789628937694, -23.783697935430745], + [-45.64176562876039, -23.783670935471335], + [-45.64174262856587, -23.783635935505703], + [-45.64172162843389, -23.78362093554548], + [-45.64168662827551, -23.78361893562348], + [-45.64166662817202, -23.783612935665598], + [-45.641622627818684, -23.7835529357348], + [-45.64156962743134, -23.78349493582526], + [-45.64151562703972, -23.783436935917994], + [-45.6414866268217, -23.78340293596632], + [-45.64148462667062, -23.783349935944262], + [-45.64146162646817, -23.783311935977054], + [-45.64143662630251, -23.783290936022958], + [-45.64139962614356, -23.783291936106934], + [-45.64136262593618, -23.783274936181922], + [-45.6413646258778, -23.783249936164832], + [-45.641383625960884, -23.783249936121965], + [-45.641403626042894, -23.78324793607584], + [-45.641424626099806, -23.78323493602191], + [-45.641436626085074, -23.783209935982253], + [-45.641436625993805, -23.7831759359652], + [-45.64141762584102, -23.78314993599501], + [-45.641403625739585, -23.783134936019085], + [-45.641409625685206, -23.783104935990487], + [-45.641376625495404, -23.78308793605642], + [-45.64137262546185, -23.78308193606239], + [-45.641384625457924, -23.783060936024803], + [-45.641400625527844, -23.783060935988715], + [-45.64141962554642, -23.783036935933747], + [-45.64141662547696, -23.783015935930003], + [-45.64140062538556, -23.783007935962143], + [-45.64137162529105, -23.783019936033522], + [-45.641346625101235, -23.782989936074877], + [-45.64131862497887, -23.78298993613806], + [-45.64127062475303, -23.782983936243415], + [-45.64122562450808, -23.78296593633592], + [-45.64120762437842, -23.78294693636696], + [-45.64119662422296, -23.782906936371642], + [-45.64117962407354, -23.782878936396028], + [-45.64117962403326, -23.782863936388505], + [-45.64123162425509, -23.782861936270063], + [-45.641257624368755, -23.782861936211415], + [-45.64131562454974, -23.782834936067072], + [-45.64130462434057, -23.782774936061756], + [-45.64127362413801, -23.782749936119153], + [-45.64125162394797, -23.782714936151237], + [-45.641250623876495, -23.782689936140926], + [-45.641271623933335, -23.782676936086997], + [-45.64126762384342, -23.782649936082443], + [-45.641242623648246, -23.782617936122815], + [-45.64120362342411, -23.782597936200798], + [-45.64115162308417, -23.782555936297054], + [-45.64113762289147, -23.78250693630397], + [-45.641120622717786, -23.7824699363238], + [-45.6411206225809, -23.782418936298143], + [-45.64113862250664, -23.7823619362289], + [-45.641134622392556, -23.782325936219888], + [-45.641117622237665, -23.78229593624319], + [-45.64112162216395, -23.782261936217118], + [-45.641129622118335, -23.782231936183926], + [-45.64113762201108, -23.782178936139307], + [-45.641155621920596, -23.78211593606701], + [-45.641202622107194, -23.782108935957478], + [-45.64123362224265, -23.78210893588755], + [-45.6412606222989, -23.78208593581502], + [-45.64126062222107, -23.782056935800565], + [-45.64126062214056, -23.78202693578541], + [-45.641301622295586, -23.78201793568845], + [-45.64131762236549, -23.782017935652345], + [-45.64133562233677, -23.781977935591616], + [-45.641335622309924, -23.781967935586646], + [-45.641360622424564, -23.781969935531237], + [-45.64139362259022, -23.78197793546074], + [-45.64140362264737, -23.781982935440677], + [-45.64141362264546, -23.78196593540957], + [-45.64140162253396, -23.78194393542566], + [-45.64140162245612, -23.781914935411006], + [-45.6414156224663, -23.781895935369977], + [-45.641460622657576, -23.781893935267373], + [-45.64150962287176, -23.78189393515681], + [-45.641532622937305, -23.781880935098382], + [-45.64153262284068, -23.78184493508034], + [-45.64151762268387, -23.781810935097152], + [-45.641493622538704, -23.781795935143776], + [-45.641466622415436, -23.781793935203613], + [-45.64143362223089, -23.78177893527055], + [-45.641420622077455, -23.781742935281848], + [-45.64140662188477, -23.78169393528887], + [-45.64140662178814, -23.78165793527073], + [-45.64141862178689, -23.781637935233668], + [-45.64143662183332, -23.781625935186984], + [-45.64148662207601, -23.781634935078735], + [-45.641506622098966, -23.781610935021543], + [-45.64149862200222, -23.781587935027986], + [-45.64151262192662, -23.78153693497084], + [-45.641539622020375, -23.781527934905377], + [-45.64157962211198, -23.781496934799552], + [-45.64159862216546, -23.781485934751178], + [-45.641641622353355, -23.781485934654132], + [-45.64166862246062, -23.781481934591223], + [-45.641702622536705, -23.78145493450093], + [-45.64172762257081, -23.78142693443056], + [-45.64172562244397, -23.781382934412893], + [-45.64169862232329, -23.7813819344733], + [-45.64167562219601, -23.78137193452014], + [-45.64166762212613, -23.78135893453176], + [-45.641688622131966, -23.781326934468243], + [-45.6417106221825, -23.78130993441009], + [-45.64171462215441, -23.78129293439254], + [-45.64170462203813, -23.781265934401628], + [-45.641703621929096, -23.78122693438425], + [-45.64171662188937, -23.781190934336824], + [-45.64174262193582, -23.781165934265566], + [-45.64175462198291, -23.781163934237497], + [-45.64176762207193, -23.78117593421421], + [-45.64177362212227, -23.78118493420523], + [-45.64180662223433, -23.78117293412473], + [-45.641818622283985, -23.781171934097156], + [-45.641828622341144, -23.78117693407708], + [-45.641839622416065, -23.78118693405731], + [-45.64186662255811, -23.78119593400084], + [-45.64188262259861, -23.781184933959295], + [-45.64189662257659, -23.781153933912144], + [-45.6418866224738, -23.781131933923632], + [-45.64186762238535, -23.78112993396551], + [-45.64183262224854, -23.781135934047544], + [-45.64181462214305, -23.78112593408311], + [-45.64180162201657, -23.781099934099352], + [-45.64177962180766, -23.781057934127904], + [-45.64175462163397, -23.781033934172214], + [-45.64174162154228, -23.781020934195105], + [-45.64172362142874, -23.78100793422918], + [-45.6417106213263, -23.78099093424992], + [-45.64173162127578, -23.78093793417595], + [-45.641731621168425, -23.780897934155867], + [-45.64171862099628, -23.7808549341636], + [-45.641701620779685, -23.780801934175404], + [-45.64170162067768, -23.78076393415629], + [-45.64171962062489, -23.780714934091094], + [-45.641719620539014, -23.78068293407506], + [-45.641750620647606, -23.78067293400007], + [-45.64178362071128, -23.780642933910542], + [-45.64178362059051, -23.780597933887982], + [-45.64181162057059, -23.78054493379815], + [-45.64184062057922, -23.78050093371062], + [-45.64188162070203, -23.78047993360762], + [-45.64193062081144, -23.780440933477458], + [-45.6419486207505, -23.78038893341079], + [-45.64195062061967, -23.78033693338013], + [-45.641931620445426, -23.780302933405956], + [-45.6419316203166, -23.7802549333818], + [-45.64193762016571, -23.78018893333518], + [-45.64194762013957, -23.78016293329953], + [-45.64193661993314, -23.78010393329473], + [-45.64192661974995, -23.78005193329115], + [-45.64191361954016, -23.779994933291864], + [-45.64191361944354, -23.779958933273807], + [-45.64195061958101, -23.779949933185794], + [-45.64199161977359, -23.779954933095773], + [-45.642013619869765, -23.77995493304613], + [-45.64203862005946, -23.77998493300487], + [-45.642057620164, -23.779992932965985], + [-45.64207562023994, -23.779991932924865], + [-45.642085620117264, -23.779929932871216], + [-45.64211262009828, -23.77987893278464], + [-45.64211262000168, -23.779842932766606], + [-45.64209761981546, -23.779797932777868], + [-45.642113619783274, -23.779759932722644], + [-45.64214261978932, -23.779714932634658], + [-45.64216261960291, -23.779612932538285], + [-45.64213961942464, -23.779583932575626], + [-45.64211261932267, -23.779589932639595], + [-45.64208861919371, -23.7795809326892], + [-45.64208161909598, -23.779555932692514], + [-45.642049618956264, -23.779555932764712], + [-45.64203261891949, -23.77956993281001], + [-45.64200561877469, -23.77955993286597], + [-45.64204061872636, -23.779484932749266], + [-45.64205661866476, -23.779435932688585], + [-45.64205661860303, -23.779412932677022], + [-45.64207261863269, -23.77939793263347], + [-45.64209561874664, -23.779402932584063], + [-45.64210161868693, -23.779370932554382], + [-45.64208961857545, -23.779348932570457], + [-45.642058618434646, -23.779346932639413], + [-45.64204361833959, -23.7793359326677], + [-45.64204361828858, -23.779316932658194], + [-45.64206861834677, -23.779297932592286], + [-45.64209061835436, -23.779264932526104], + [-45.642076618177796, -23.779221932536107], + [-45.64206561800894, -23.77917693253833], + [-45.64205961784052, -23.779123932525124], + [-45.64205261767314, -23.779072932515362], + [-45.642075617682295, -23.779038932446433], + [-45.64209961776037, -23.779028932387234], + [-45.642107617714785, -23.778998932354146], + [-45.64210761764499, -23.77897293234116], + [-45.64212261763806, -23.77894593229366], + [-45.642148617711435, -23.778930932227553], + [-45.642175617778435, -23.778911932157047], + [-45.642216617917335, -23.778896932056995], + [-45.64228661820164, -23.778888931895125], + [-45.64232061833413, -23.778882931815335], + [-45.642356618526264, -23.778895931740646], + [-45.64238461871034, -23.77891893168908], + [-45.64241161884175, -23.778923931630644], + [-45.642446618994626, -23.778923931551688], + [-45.64249361919997, -23.778923931445625], + [-45.642524619365, -23.778934931381222], + [-45.64254961956012, -23.778966931340864], + [-45.642557619640655, -23.77898393133134], + [-45.642572619773304, -23.779008931310088], + [-45.64258461987136, -23.779025931291528], + [-45.64259761999258, -23.779049931274283], + [-45.64261362014836, -23.77908193125423], + [-45.64264862036299, -23.77910493118684], + [-45.642673620485645, -23.77910993113291], + [-45.64269562057637, -23.779107931082297], + [-45.642706620594915, -23.77909693105193], + [-45.642732620708536, -23.779096930993255], + [-45.64275362081913, -23.77910393094945], + [-45.642782620986, -23.779118930891464], + [-45.642813621188516, -23.779143930834095], + [-45.642829621317475, -23.77916593080898], + [-45.642856621451564, -23.779171930751122], + [-45.64286062141811, -23.779152930732597], + [-45.64286262135973, -23.779127930715497], + [-45.64288262144181, -23.77912593066939], + [-45.64289962150256, -23.779120930628476], + [-45.64291562156171, -23.779116930590387], + [-45.64292162153163, -23.779095930566342], + [-45.642903621383134, -23.77906993059388], + [-45.64287262116986, -23.779040930649277], + [-45.64282862090249, -23.77901293073447], + [-45.64279862070174, -23.778986930789088], + [-45.642781620557585, -23.778960930814385], + [-45.642756620381334, -23.77893593085831], + [-45.64275062027992, -23.778907930857756], + [-45.64277062020902, -23.77884893078303], + [-45.642795620157145, -23.778788930696518], + [-45.642780619960114, -23.7787399307057], + [-45.64275361976977, -23.778712930753134], + [-45.642714619518834, -23.778682930826104], + [-45.642701619325166, -23.778631930829764], + [-45.64270861928323, -23.778604930800416], + [-45.6427266192734, -23.77857193074327], + [-45.64275261929029, -23.778535930666468], + [-45.64282861952573, -23.778499930476976], + [-45.64286361959279, -23.778467930381975], + [-45.642934619728585, -23.778402930189113], + [-45.643022619949335, -23.778341929959964], + [-45.643082620149734, -23.77831892981309], + [-45.643115620275104, -23.778311929735082], + [-45.64314562035517, -23.778292929657876], + [-45.64322162053431, -23.77823592945781], + [-45.64327262065511, -23.77819792932364], + [-45.64332662084265, -23.778179929192785], + [-45.64337962101788, -23.778158929062695], + [-45.64347162128838, -23.778109928830474], + [-45.643559621565494, -23.77806992861195], + [-45.64362762180617, -23.77804892844789], + [-45.6437156221075, -23.778017928233815], + [-45.64374862225155, -23.778017928159368], + [-45.643791622423315, -23.77801192805937], + [-45.64385962268554, -23.777998927899347], + [-45.6439106228466, -23.777975927772765], + [-45.6439926231485, -23.777954927577174], + [-45.64407662347792, -23.777940927380705], + [-45.64414262373669, -23.777929927226236], + [-45.64420162396223, -23.77791792708709], + [-45.64426362421169, -23.777909926943156], + [-45.64430662438613, -23.777904926843632], + [-45.64437862466847, -23.777892926675243], + [-45.644419624820785, -23.777882926577703], + [-45.64449362507419, -23.777856926397643], + [-45.644554625292436, -23.777838926251015], + [-45.64466362574175, -23.77782892600002], + [-45.64471762597769, -23.777828925878165], + [-45.6447826262616, -23.777828925731505], + [-45.644825626449474, -23.777828925634505], + [-45.644879626639764, -23.77781192550413], + [-45.6449496269482, -23.77781292534668], + [-45.64496762702689, -23.77781292530607], + [-45.644996627148224, -23.777810925239642], + [-45.645068627411774, -23.777791925067575], + [-45.645158627761994, -23.777775924856584], + [-45.645220628054275, -23.777783924720627], + [-45.64526962827108, -23.777784924610568], + [-45.64533062854292, -23.777786924473926], + [-45.64540462883398, -23.777774924300928], + [-45.64548562918241, -23.777772924117137], + [-45.64562462978433, -23.77777092380251], + [-45.645692630110844, -23.77778192365461], + [-45.645756630393166, -23.77778292351068], + [-45.64584463086348, -23.777814923328137], + [-45.645887631075496, -23.77782392323567], + [-45.64592763131737, -23.777848923157954], + [-45.64597263155421, -23.777863923063876], + [-45.646025631809835, -23.777872922948802], + [-45.64606463197486, -23.777870922859805], + [-45.64610563212179, -23.77785892276124], + [-45.64614263230484, -23.777866922681813], + [-45.646177632498045, -23.777881922610376], + [-45.64620263266089, -23.77790192256394], + [-45.64623963285207, -23.777912922486006], + [-45.646274633031766, -23.777922922412053], + [-45.64632563325462, -23.777922922296977], + [-45.64636463344373, -23.777929922212437], + [-45.64639763362285, -23.777942922144486], + [-45.64646963399643, -23.777964921993], + [-45.646506634209025, -23.7779839219191], + [-45.64653563433035, -23.77798192185268], + [-45.64656863445836, -23.777975921775123], + [-45.64659163460451, -23.77799292173176], + [-45.646618634819106, -23.77802892168892], + [-45.64669063530544, -23.778092921558514], + [-45.64674563563152, -23.77812492145041], + [-45.64676063577766, -23.77815492143161], + [-45.646766635844116, -23.778169921425576], + [-45.646756635891755, -23.77820392146525], + [-45.64676763603637, -23.778239921458464], + [-45.64679163623252, -23.778273921421384], + [-45.646822636478, -23.77831492137194], + [-45.64683563665022, -23.77835792136415], + [-45.64681963668225, -23.778395921419364], + [-45.64680563674734, -23.778442921474515], + [-45.64680563685472, -23.778482921494597], + [-45.64682563700379, -23.77850592146094], + [-45.64685063717746, -23.778529921416595], + [-45.64685263724793, -23.778552921423653], + [-45.64684063728675, -23.778586921467763], + [-45.64681463721878, -23.77860392153493], + [-45.64680563723053, -23.778622921564743], + [-45.64681663732953, -23.77864192154951], + [-45.64683663745723, -23.778656921511903], + [-45.64683463751293, -23.778680921528498], + [-45.64681863748321, -23.778695921572016], + [-45.64678363735184, -23.77870392165507], + [-45.64677563736246, -23.778720921681614], + [-45.64677563743764, -23.778748921695676], + [-45.64679263754421, -23.778760921663345], + [-45.64681463768053, -23.778775921621218], + [-45.64682363776014, -23.778790921608422], + [-45.64681063774896, -23.778807921646276], + [-45.64678663766021, -23.778813921703488], + [-45.64676563761414, -23.77883092175931], + [-45.6467746377071, -23.778850921749093], + [-45.64679263782607, -23.778865921715973], + [-45.64681163794125, -23.77887792167916], + [-45.64680763801508, -23.778911921705188], + [-45.64681763812314, -23.778935921694707], + [-45.64683663827329, -23.77896092166428], + [-45.6468526383942, -23.77897992163778], + [-45.64685563848243, -23.779007921645047], + [-45.64683663846925, -23.779033921700893], + [-45.64681063842814, -23.779060921773215], + [-45.646806638434846, -23.779069921786707], + [-45.64682863859804, -23.779094921749614], + [-45.64688063887088, -23.779111921640755], + [-45.6468986389978, -23.77912992160917], + [-45.64690063904681, -23.779144921612158], + [-45.64687663899036, -23.779162921675326], + [-45.64687463905134, -23.77918892169289], + [-45.64688863916349, -23.779207921670803], + [-45.646899639230355, -23.77921492164955], + [-45.64689763928339, -23.779237921665523], + [-45.64689363931695, -23.779256921684166], + [-45.64693663957997, -23.77928492160115], + [-45.64695963973139, -23.779303921558736], + [-45.64696963984492, -23.779329921549234], + [-45.64695363984751, -23.77935692159891], + [-45.646934639793976, -23.779367921647218], + [-45.64690163963104, -23.77936092171825], + [-45.64686263941499, -23.779343921797736], + [-45.64680363909559, -23.77932092191934], + [-45.64677063891111, -23.77930592198627], + [-45.64675163882812, -23.779305922029174], + [-45.64670863865637, -23.77931192212927], + [-45.64670863874764, -23.779345922146295], + [-45.646737638970976, -23.779381922098864], + [-45.64676263912586, -23.77939892205102], + [-45.64679163931697, -23.779422921997586], + [-45.64682263950878, -23.779443921938178], + [-45.646828639636965, -23.779481921943642], + [-45.64684163975821, -23.779505921926376], + [-45.64685563985425, -23.779518921901303], + [-45.64685763994621, -23.77954992191233], + [-45.64685964000324, -23.779567921916822], + [-45.64682063985432, -23.779575922008796], + [-45.64680463982479, -23.77959092205252], + [-45.646810639901965, -23.77960992204847], + [-45.646833640053494, -23.779628922006065], + [-45.6468416401394, -23.779647921997594], + [-45.646825640109775, -23.779662922041137], + [-45.64680964008554, -23.77967992208586], + [-45.646809640147275, -23.779702922097336], + [-45.64681764023855, -23.77972392208984], + [-45.6468296403769, -23.779755922078817], + [-45.646842640559875, -23.779802922073028], + [-45.646865640746235, -23.779834922037153], + [-45.646902640993815, -23.779866921969667], + [-45.64694564126758, -23.779898921888748], + [-45.64699364159809, -23.779943921802975], + [-45.647030641802715, -23.779959921727478], + [-45.647050641927734, -23.779973921689358], + [-45.647083642066505, -23.77997192161389], + [-45.64711864224355, -23.779980921539366], + [-45.64714364241721, -23.780004921494996], + [-45.6471886426702, -23.780025921403926], + [-45.647229642903014, -23.780045921321488], + [-45.647295643282575, -23.78007992118954], + [-45.647330643486555, -23.780098921120125], + [-45.64734764360109, -23.78011392108919], + [-45.6473246435274, -23.780123921146128], + [-45.64733564366139, -23.78015592113735], + [-45.647316643704514, -23.780202921203774], + [-45.64736664404919, -23.780249921114546], + [-45.64742264435827, -23.780273921000127], + [-45.64746164455016, -23.78028192091616], + [-45.64748164463215, -23.780279920870015], + [-45.647506644647414, -23.780244920796], + [-45.64754164479224, -23.780241920715532], + [-45.64756764496492, -23.780263920667913], + [-45.64758264508145, -23.780282920643536], + [-45.647611645253775, -23.780299920586614], + [-45.647629645286756, -23.78028292053747], + [-45.64763164521224, -23.78025192051742], + [-45.64764364521635, -23.780233920481336], + [-45.64766864533367, -23.780236920426383], + [-45.64773864578169, -23.78028992029491], + [-45.6478786465437, -23.780345920007097], + [-45.64793464684744, -23.78036791989168], + [-45.647991647198495, -23.78040591978202], + [-45.64804964749214, -23.780420919658628], + [-45.64810664776533, -23.780429919534505], + [-45.648162647966934, -23.780413919400093], + [-45.64820764816362, -23.780413919298528], + [-45.648267648492855, -23.780438919175634], + [-45.64829164866208, -23.78046291913345], + [-45.64834964901213, -23.780498919020616], + [-45.648398649223566, -23.78049791890944], + [-45.64842964935896, -23.780497918839465], + [-45.64843764932408, -23.78047191880845], + [-45.64841964911389, -23.780422918824527], + [-45.64839464893483, -23.78039691886793], + [-45.648361648712836, -23.78036791892786], + [-45.648352648603655, -23.78034191893512], + [-45.64836364859534, -23.780320918899807], + [-45.648398648748305, -23.78032091882082], + [-45.64842264889346, -23.78033591877415], + [-45.648468649153465, -23.7803579186813], + [-45.648494649277715, -23.780361918624617], + [-45.64852564936212, -23.78034291854514], + [-45.64852564924129, -23.78029791852257], + [-45.648510649084486, -23.780263918539422], + [-45.64848764887657, -23.780223918571266], + [-45.64847364872419, -23.780189918585833], + [-45.64846264851502, -23.780129918580602], + [-45.64840864799985, -23.78002591865028], + [-45.64837764771947, -23.779971918693267], + [-45.64833664741958, -23.779926918763252], + [-45.64830764721226, -23.77989691881367], + [-45.648256646954614, -23.779883918922256], + [-45.64822964678563, -23.779864918973598], + [-45.64820464661466, -23.77984191901856], + [-45.648212646579815, -23.77981591898745], + [-45.64824764670582, -23.779805918903484], + [-45.648298646877656, -23.77978691877881], + [-45.64833564706349, -23.77979591869983], + [-45.648370647313016, -23.779831918638827], + [-45.648403647537705, -23.779861918579382], + [-45.64844564776148, -23.779876918492103], + [-45.64851764810017, -23.77988591833414], + [-45.648539648201606, -23.779887918285453], + [-45.64855664830549, -23.77989891825261], + [-45.64857664844919, -23.779919918217956], + [-45.648615648630255, -23.779923918132], + [-45.648669648839316, -23.779913918004993], + [-45.64872864900577, -23.77987991785481], + [-45.64876564904931, -23.77983591774924], + [-45.64876564892312, -23.779788917725693], + [-45.648750648704564, -23.779731917730963], + [-45.64871364845168, -23.779697917797463], + [-45.64867464819804, -23.779666917869985], + [-45.648641647951784, -23.779628917925375], + [-45.64860864770563, -23.779590917980858], + [-45.64858364755342, -23.779574918029184], + [-45.648560647466425, -23.779579918083677], + [-45.648546647273726, -23.77953091809065], + [-45.64851764709601, -23.779511918146714], + [-45.648517647042304, -23.77949191813663], + [-45.64853764712965, -23.779491918091484], + [-45.64859164740049, -23.779504917976112], + [-45.64863864757355, -23.779492917863998], + [-45.64865064757498, -23.779473917827424], + [-45.648650647505164, -23.779447917814366], + [-45.64862764734837, -23.779426917855787], + [-45.64861364726294, -23.779417917882853], + [-45.64858264712753, -23.779417917952816], + [-45.64855764692711, -23.77938391799223], + [-45.64855364682365, -23.779351917985238], + [-45.64856364669823, -23.779288917931044], + [-45.64855064650718, -23.779238917935256], + [-45.64852564631203, -23.779206917975646], + [-45.64849364613199, -23.779191918040357], + [-45.6484496459344, -23.779189918138698], + [-45.648353645541945, -23.779199918360394], + [-45.64830464535199, -23.77920891847546], + [-45.64823064502067, -23.779205918641], + [-45.648187644776456, -23.779184918727562], + [-45.64809264430244, -23.7791629189309], + [-45.64805164406423, -23.779140919012466], + [-45.647983643700044, -23.779115919153366], + [-45.64793364338232, -23.779078919247635], + [-45.647894643131394, -23.779048919320687], + [-45.6478346428129, -23.779027919445532], + [-45.64778764262371, -23.779033919554585], + [-45.64773664235525, -23.77901691966128], + [-45.64770564212588, -23.778981919713626], + [-45.64766864197235, -23.778984919798628], + [-45.64766264185747, -23.77895191979566], + [-45.647760642202385, -23.77892091955893], + [-45.647799642391576, -23.778927919474484], + [-45.64782264255913, -23.77895291943503], + [-45.647865642760394, -23.778957919340478], + [-45.64792064295502, -23.77894091920782], + [-45.64794364302056, -23.77892791914948], + [-45.64796764312543, -23.778927919095295], + [-45.64799264328835, -23.77894791904889], + [-45.64800964344046, -23.77897691902506], + [-45.6480316435768, -23.77899191898292], + [-45.648066643732434, -23.778992918904418], + [-45.64812464394553, -23.778977918765996], + [-45.648175644214014, -23.778994918659397], + [-45.64820064433658, -23.778999918605443], + [-45.648280644600085, -23.778967918408863], + [-45.64834564478742, -23.778931918244155], + [-45.648415644940194, -23.778874918057483], + [-45.64849964505211, -23.778779917820312], + [-45.64858364526059, -23.77872091760114], + [-45.64863464542703, -23.778699917475553], + [-45.648714645749706, -23.778689917289945], + [-45.64878664604533, -23.77868291712397], + [-45.64882364615053, -23.778661917029883], + [-45.64888864640229, -23.778649916877136], + [-45.64893164655791, -23.778637916774148], + [-45.64898564667836, -23.77859491663071], + [-45.64901964675437, -23.77856791654041], + [-45.64919664739061, -23.778516916115294], + [-45.64929864776367, -23.778489915871514], + [-45.64938064806552, -23.778468915675962], + [-45.64946964840056, -23.77844891546499], + [-45.64962164899198, -23.77842191510845], + [-45.6497276493987, -23.778400914858626], + [-45.64980364970917, -23.778392914683078], + [-45.64985764991009, -23.778379914554677], + [-45.649957650320054, -23.77836991432393], + [-45.65023965157327, -23.778377913691457], + [-45.650354652083664, -23.778380913433338], + [-45.650608653212, -23.778387912863547], + [-45.65072165371901, -23.778392912610954], + [-45.650804654100284, -23.778399912427062], + [-45.65087165436881, -23.778390912271355], + [-45.650937654635555, -23.778382912118325], + [-45.65102165502128, -23.778389911932237], + [-45.65108565536532, -23.778413911799767], + [-45.651143655658856, -23.778428911676336], + [-45.651176655859445, -23.77844991161231], + [-45.65123565614132, -23.778458911483664], + [-45.65132865652063, -23.778448911268708], + [-45.65140465685257, -23.778448911097133], + [-45.65145365709083, -23.778457910991058], + [-45.65151765737035, -23.778457910846598], + [-45.65159965772585, -23.778456910660978], + [-45.65165265798683, -23.77846791054687], + [-45.65168965814312, -23.778465910462348], + [-45.65175565842606, -23.77846391031237], + [-45.65179865858972, -23.778454910210755], + [-45.651833658710316, -23.7784429101257], + [-45.65187265887523, -23.778440910036668], + [-45.651899658993194, -23.77844090997573], + [-45.65195865929653, -23.778457909851046], + [-45.65203065962446, -23.778462909690973], + [-45.652084659838856, -23.77845490956511], + [-45.65214966010122, -23.77844690941432], + [-45.65221966039625, -23.778442909254313], + [-45.65232866089655, -23.778451909012773], + [-45.65239466120089, -23.778457908866724], + [-45.65248066156577, -23.778453908670613], + [-45.65256866193401, -23.77844790846888], + [-45.65265566233818, -23.778456908277008], + [-45.65274566272858, -23.77845590807332], + [-45.65283566313784, -23.778461907873105], + [-45.65290766344955, -23.778460907710055], + [-45.652950663607825, -23.77844990760745], + [-45.653004663846396, -23.77845090748604], + [-45.653062664172204, -23.778477907368714], + [-45.65312766452062, -23.778501907233935], + [-45.653166664704315, -23.77850690714844], + [-45.653220664961694, -23.77851490703048], + [-45.65331466536414, -23.778511906816764], + [-45.653382665696085, -23.778524906669748], + [-45.653434665958066, -23.778537906558775], + [-45.65351266632834, -23.778548906388203], + [-45.653555666551064, -23.77856190629764], + [-45.65359666673006, -23.77856190620508], + [-45.653668667049985, -23.778563906043598], + [-45.65372366730356, -23.778568905921883], + [-45.65380466771377, -23.77858990574947], + [-45.65387466811352, -23.778624905608925], + [-45.65391966836109, -23.778643905516873], + [-45.654053669075246, -23.778691905238357], + [-45.65411066937512, -23.778710905119116], + [-45.654190669780974, -23.778731904949073], + [-45.65427567021132, -23.778753904768106], + [-45.65447467121468, -23.778803904343867], + [-45.65464767202399, -23.77882390396321], + [-45.654834672889095, -23.77884190355004], + [-45.65496567345852, -23.778840903253652], + [-45.65500267362016, -23.77884090317011], + [-45.65523367471759, -23.778873902665016], + [-45.65550267597039, -23.778902902072176], + [-45.65558667636143, -23.778911901886957], + [-45.65582967750323, -23.77894190135321], + [-45.65606967866416, -23.778983900832284], + [-45.65628167968947, -23.779020900372103], + [-45.65640668028368, -23.779038900098794], + [-45.65649368072817, -23.779062899914365], + [-45.656567681142604, -23.77909689976424], + [-45.65669268183898, -23.779152899509995], + [-45.656812682448965, -23.779184899254986], + [-45.65692568299622, -23.77920489900976], + [-45.656986683267995, -23.779206898872992], + [-45.65704668356503, -23.77921989874408], + [-45.657211684379604, -23.77925489838893], + [-45.65730968487738, -23.779280898180545], + [-45.65738368524094, -23.779295898020912], + [-45.657459685626534, -23.779315897859323], + [-45.65760368635474, -23.779352897552656], + [-45.65767368672493, -23.779376897406518], + [-45.657733686997695, -23.779380897272986], + [-45.657828687498586, -23.779412897074415], + [-45.657889687807966, -23.77942889694472], + [-45.65796368820635, -23.779456896791512], + [-45.65800968840722, -23.77945689668763], + [-45.65806468869309, -23.77947389657198], + [-45.65811168892788, -23.779484896471264], + [-45.65818868932054, -23.7795058963079], + [-45.65834469009589, -23.779540895973028], + [-45.65845169058203, -23.779547895734886], + [-45.65856669113252, -23.779565895484133], + [-45.658615691381485, -23.779578895379977], + [-45.65870669188098, -23.779616895193357], + [-45.65878669230831, -23.77964589502729], + [-45.658817692499994, -23.77966689496772], + [-45.658838692704585, -23.779708894941304], + [-45.658851692836606, -23.77973689492596], + [-45.658888692995454, -23.779735894841895], + [-45.658908692951215, -23.77968689477214], + [-45.658941693127524, -23.779698894703632], + [-45.65897569339958, -23.77974489464981], + [-45.65900569367039, -23.779796894608097], + [-45.659038694067036, -23.779890894580525], + [-45.65907569445693, -23.77997589453947], + [-45.659102694730706, -23.780033894507476], + [-45.65913969498907, -23.780069894441862], + [-45.659192695293, -23.780096894335752], + [-45.65923569563664, -23.78015489426754], + [-45.65929569593097, -23.780166894138013], + [-45.65939469636056, -23.780165893913896], + [-45.65942469660712, -23.780208893867645], + [-45.659501697040156, -23.780244893711664], + [-45.659531697227514, -23.78026589365446], + [-45.65963769791082, -23.78034789345603], + [-45.65978069890336, -23.78048489320148], + [-45.6598706996216, -23.78060589305861], + [-45.659967700289684, -23.78069689288498], + [-45.65998470064336, -23.780800892898622], + [-45.660001700838606, -23.780845892882716], + [-45.660087701402276, -23.78091589272338], + [-45.66015470183187, -23.780966892597547], + [-45.66016470193468, -23.78098889258592], + [-45.660164702047545, -23.78103089260692], + [-45.66018470220204, -23.781055892574265], + [-45.66022170238517, -23.781063892494693], + [-45.6602517026156, -23.781100892445387], + [-45.660331703249774, -23.781206892317613], + [-45.660391703576295, -23.7812308921941], + [-45.660440703897734, -23.781270892103425], + [-45.66046170411848, -23.781318892079952], + [-45.66042170403522, -23.78135289218728], + [-45.66042870420551, -23.78140489219749], + [-45.66035570383028, -23.781383892351933], + [-45.66030870360085, -23.781374892453595], + [-45.66026570338081, -23.78136289254472], + [-45.66024670334623, -23.781380892596637], + [-45.66025270345571, -23.78141189259856], + [-45.66032670398041, -23.781486892468845], + [-45.660342704117475, -23.781511892445234], + [-45.66035270419333, -23.781523892428655], + [-45.66037570432606, -23.781535892382713], + [-45.660399704503455, -23.78156289234201], + [-45.6604127046758, -23.781605892334124], + [-45.66045270493112, -23.781635892258745], + [-45.66045270503862, -23.781675892278766], + [-45.66043370497978, -23.781684892326123], + [-45.66038670485784, -23.78171589244779], + [-45.66038070492842, -23.781751892479303], + [-45.66041070513201, -23.781778892425034], + [-45.6604507053308, -23.781787892339217], + [-45.66046670546795, -23.781812892315568], + [-45.660447705441335, -23.781833892368965], + [-45.66040770529887, -23.781845892465338], + [-45.66038170526064, -23.781873892538087], + [-45.66037470532945, -23.781910892572345], + [-45.66033170520616, -23.78193489268153], + [-45.66030870512996, -23.781943892738024], + [-45.66026570499321, -23.781962892844643], + [-45.66024270497336, -23.781992892911582], + [-45.660245705085856, -23.782029892923255], + [-45.66029270544709, -23.782087892846153], + [-45.660379706060844, -23.782174892693103], + [-45.66048570676821, -23.78226589249906], + [-45.66062870765353, -23.782362892224423], + [-45.66072570820073, -23.78240889202825], + [-45.66076870843692, -23.782426891940165], + [-45.66081170877789, -23.78248389187151], + [-45.66085470905708, -23.782517891791308], + [-45.66091770940483, -23.7825448916625], + [-45.660971709705116, -23.782568891552405], + [-45.66099770987511, -23.78258989150422], + [-45.661014710021924, -23.782616891479314], + [-45.66102171013575, -23.782647891478977], + [-45.66110071057759, -23.78268389131852], + [-45.66120371109191, -23.782707891097743], + [-45.6612807114604, -23.782719890929766], + [-45.66133971171809, -23.782719890796468], + [-45.66137671196033, -23.782749890727864], + [-45.66141271219815, -23.782779890661498], + [-45.66147271241986, -23.782764890518443], + [-45.66152571258418, -23.78273989038617], + [-45.66155871271214, -23.782733890308634], + [-45.66159871280352, -23.7827028902027], + [-45.661591712676135, -23.782666890200577], + [-45.66162471276925, -23.78264789011654], + [-45.66166771292481, -23.782635890013363], + [-45.66174371329703, -23.782650889849148], + [-45.66179371353952, -23.782659889740614], + [-45.66184671374415, -23.782649889615904], + [-45.661899713919105, -23.782628889485707], + [-45.66194271410688, -23.782628889388548], + [-45.66197271433467, -23.782664889338704], + [-45.66199271447849, -23.782685889304048], + [-45.66206571474893, -23.78266788913007], + [-45.6621217149505, -23.782651888995535], + [-45.66216771509492, -23.782630888881137], + [-45.66214471491919, -23.782602888919115], + [-45.66214771482745, -23.78256388889282], + [-45.66217771491823, -23.782548888817526], + [-45.6622167150858, -23.782547888728903], + [-45.66224671521681, -23.78254788866111], + [-45.66228671533506, -23.782526888560316], + [-45.66231271530081, -23.782471888474042], + [-45.66232571532531, -23.78245988843865], + [-45.66235971549798, -23.78246888836635], + [-45.66241271577784, -23.782486888255587], + [-45.66245271602502, -23.782513888178695], + [-45.66247871613859, -23.782513888119958], + [-45.66250171617187, -23.782488888055457], + [-45.662514716188234, -23.782473888018608], + [-45.66255471637101, -23.78247688792969], + [-45.66260771661861, -23.78248288781299], + [-45.66266471693206, -23.78250688769612], + [-45.66270471724385, -23.78255788763126], + [-45.662757717574706, -23.782594887530024], + [-45.66281371782733, -23.782597887404965], + [-45.66286371797846, -23.782572887279464], + [-45.66290671795388, -23.782493887142785], + [-45.66292571789714, -23.78244188707392], + [-45.662958718006294, -23.782428886992847], + [-45.662985718175285, -23.782447886941288], + [-45.66303171850516, -23.782495886861305], + [-45.66308871889388, -23.782547886758504], + [-45.663138719168636, -23.782568886655987], + [-45.66318471939369, -23.78257788655657], + [-45.66319171954526, -23.78262288656323], + [-45.663201719656165, -23.78264788655313], + [-45.66317171955742, -23.78265988662685], + [-45.663115719312856, -23.782659886753386], + [-45.66310271925606, -23.782659886782756], + [-45.6630757191731, -23.782672886850378], + [-45.66307271924065, -23.782702886872045], + [-45.66308371954139, -23.782796886894168], + [-45.66309371970865, -23.782842886894546], + [-45.66311671989783, -23.782875886859053], + [-45.663116720045664, -23.782930886886525], + [-45.663107720138065, -23.7829798869314], + [-45.66312072030236, -23.78301988692195], + [-45.66315072053013, -23.783055886872187], + [-45.663203720777766, -23.783061886755377], + [-45.663247721066675, -23.783097886673964], + [-45.663287721389224, -23.783152886610974], + [-45.663350721720775, -23.783173886479133], + [-45.663416722138074, -23.78322188635395], + [-45.66344672236847, -23.783258886304683], + [-45.66348672263993, -23.78329488623221], + [-45.66350672277573, -23.783312886196015], + [-45.6635007228086, -23.783334886220587], + [-45.66347372273908, -23.783352886290572], + [-45.6634877228486, -23.783370886267907], + [-45.663493722934, -23.783392886265386], + [-45.66348072293358, -23.783413886305226], + [-45.663444722784476, -23.78341688638805], + [-45.66342472269716, -23.783416886433244], + [-45.66337472254605, -23.783441886558744], + [-45.66336172254564, -23.783462886598652], + [-45.66334872258034, -23.783496886645008], + [-45.66334572268006, -23.783538886672765], + [-45.66336272285376, -23.783575886652766], + [-45.66339872309169, -23.783605886586397], + [-45.66339872315889, -23.783630886598903], + [-45.66337272304541, -23.783630886657658], + [-45.6633327228707, -23.783630886748057], + [-45.66331672286526, -23.783654886796235], + [-45.66335272321069, -23.783724886749866], + [-45.663376723447264, -23.783773886720073], + [-45.66337372356591, -23.783822886751306], + [-45.66335372352689, -23.783840886805542], + [-45.663320723415055, -23.783852886886063], + [-45.66328372318087, -23.78382588695616], + [-45.66323372280654, -23.783767887040277], + [-45.66319372251899, -23.783725887109693], + [-45.66317072240247, -23.783719887158686], + [-45.663144722353344, -23.78374388722936], + [-45.66312472235751, -23.78377788729153], + [-45.663124722481186, -23.78382388731449], + [-45.663105722462646, -23.783847887369454], + [-45.66305572226853, -23.783856887486973], + [-45.66299572207372, -23.783881887634987], + [-45.66298272214049, -23.78392788768742], + [-45.66301272235224, -23.783957887634507], + [-45.663042722523585, -23.783972887574294], + [-45.66306972253388, -23.783932887493272], + [-45.66306872242469, -23.78389388747601], + [-45.66308872247983, -23.78388188742483], + [-45.663131722664936, -23.783880887327143], + [-45.663164722868174, -23.78390288726362], + [-45.66321872313629, -23.783914887147517], + [-45.66324472332243, -23.783941887102237], + [-45.663251723484684, -23.78399088711095], + [-45.66321572339205, -23.78401488720433], + [-45.663132723169326, -23.78406688741781], + [-45.66307372311866, -23.784143887589575], + [-45.66305372318717, -23.784201887663773], + [-45.66305772343322, -23.784286887697178], + [-45.663094723815185, -23.784368887654477], + [-45.6631347242426, -23.784462887611085], + [-45.66316172461325, -23.784556887597056], + [-45.663172724973165, -23.78467288763014], + [-45.663163725326335, -23.78481888772332], + [-45.663150725672814, -23.78496888782767], + [-45.66315772604756, -23.785096887875806], + [-45.66319772641577, -23.785168887821303], + [-45.66326772695003, -23.785253887705547], + [-45.66334172746946, -23.78532688757476], + [-45.66337472779378, -23.785393887533683], + [-45.66342472824872, -23.785481887464645], + [-45.66344872840188, -23.78549988741935], + [-45.66346172850983, -23.78551888739944], + [-45.66346172859052, -23.785548887414507], + [-45.66346172868997, -23.78558588743294], + [-45.66349872891604, -23.78560988736124], + [-45.66354872915051, -23.78561588725127], + [-45.66359772936191, -23.78561488714004], + [-45.66364172962934, -23.78564288705459], + [-45.663684729849315, -23.7856548869633], + [-45.663740730058954, -23.785641886830355], + [-45.663796730287416, -23.785635886700813], + [-45.66390973085355, -23.78566288645882], + [-45.66397673126712, -23.78570788632984], + [-45.66403573162166, -23.785743886214426], + [-45.66411573206244, -23.78577788605066], + [-45.664208732525125, -23.785798885850987], + [-45.66425873277572, -23.785810885743885], + [-45.664341733235034, -23.785846885574298], + [-45.66449773409383, -23.785912885254607], + [-45.66460073464845, -23.785951885041307], + [-45.6646537348961, -23.78595788492445], + [-45.66471373516619, -23.7859608847904], + [-45.66479273553547, -23.785969884616275], + [-45.664908736154935, -23.78601188437506], + [-45.66504873687934, -23.786053884079564], + [-45.66518073750421, -23.78607188379018], + [-45.6652677379487, -23.786095883605544], + [-45.66533073825078, -23.786105883468128], + [-45.6653937385527, -23.78611588333066], + [-45.66552273919678, -23.786145883053997], + [-45.66565173979244, -23.78615788276844], + [-45.665721740146566, -23.786175882619233], + [-45.665764740415035, -23.786205882536915], + [-45.66579874058771, -23.786214882464588], + [-45.665821740580625, -23.7861748823926], + [-45.66582774046155, -23.786120882352062], + [-45.66584774049789, -23.786101882297395], + [-45.665946740954354, -23.786110882078116], + [-45.666036741355555, -23.78611388187615], + [-45.666072741528865, -23.786119881797735], + [-45.66610274174862, -23.786152881746464], + [-45.6660927418098, -23.78619188178845], + [-45.66609274186896, -23.78621388179948], + [-45.66612274200813, -23.786216881733132], + [-45.66618574227247, -23.786212881588753], + [-45.66622574237449, -23.786185881484847], + [-45.666288742754574, -23.786224881361903], + [-45.66629174265469, -23.78618288133417], + [-45.66635474298628, -23.78620388120218], + [-45.66641474324569, -23.786202881066064], + [-45.66651074364875, -23.78619688084606], + [-45.6665537437532, -23.78616588073333], + [-45.66658674386501, -23.786153880652787], + [-45.66662274403036, -23.786156880572893], + [-45.66665274413177, -23.78614588049956], + [-45.66666424410129, -23.7861158804586], + [-45.666675744070815, -23.786085880417634], + [-45.66667174382475, -23.786000880384247], + [-45.6667047438802, -23.785967880293203], + [-45.66675774383999, -23.785866880122974], + [-45.66677777087193, -23.78584624606739], + [-45.66679074389264, -23.785832880031446], + [-45.666790743844984, -23.785815156022554], + [-45.666790743820044, -23.78580588001795], + [-45.66682674377024, -23.78572887989818], + [-45.66685574388066, -23.78572287982957], + [-45.66689274397771, -23.785698879733907], + [-45.666892743862086, -23.785655879712554], + [-45.66690874386741, -23.785631879664372], + [-45.66696874411866, -23.785627879526754], + [-45.66700474433509, -23.785649879456287], + [-45.66704774452018, -23.785648879358607], + [-45.66706774451068, -23.785612879295453], + [-45.66704374424187, -23.785551879319293], + [-45.66700074395728, -23.78551587939849], + [-45.666993743786826, -23.785463879388416], + [-45.667023743834456, -23.78543287930514], + [-45.66707974407096, -23.785429879176974], + [-45.66709674406181, -23.785398879123104], + [-45.66707674382124, -23.78534187913983], + [-45.66703974349558, -23.785280879193095], + [-45.667002743121586, -23.785201879237245], + [-45.667002742933356, -23.785131879202382], + [-45.667015742801816, -23.785061879138055], + [-45.667014742566174, -23.7849758790974], + [-45.666974742246346, -23.784921879160926], + [-45.66690774178969, -23.784860879281876], + [-45.66685174140799, -23.78480987938306], + [-45.66678774088386, -23.784718879482348], + [-45.666738740645705, -23.784709879588576], + [-45.66671474040104, -23.78465787961685], + [-45.666684740154416, -23.784614879663195], + [-45.66664873996489, -23.784602879738657], + [-45.66659473963235, -23.7845668798427], + [-45.666554739333954, -23.784520879910165], + [-45.66653173912053, -23.784478879941187], + [-45.66648873889241, -23.784463880030916], + [-45.66645573864087, -23.784423880085605], + [-45.666408738198946, -23.784335880147847], + [-45.66636173783238, -23.784275880224133], + [-45.66635173765693, -23.784226880222334], + [-45.66635173750903, -23.78417188019486], + [-45.666314737210286, -23.784120880252985], + [-45.66626773672542, -23.784016880307416], + [-45.66624373640022, -23.783934880320707], + [-45.66624373619586, -23.7838588802828], + [-45.66620973585919, -23.78378888032468], + [-45.66616673556656, -23.78374988040237], + [-45.66612673521173, -23.78368288045942], + [-45.666112734962375, -23.783612880456108], + [-45.66609673478497, -23.783572880472256], + [-45.66610573458761, -23.783484880408015], + [-45.66612573451099, -23.78342388033237], + [-45.6661487345361, -23.783395880266404], + [-45.6661477344188, -23.783353880247702], + [-45.666118734192686, -23.783316880294816], + [-45.666081733974714, -23.78329588036792], + [-45.666051733763055, -23.78326588042075], + [-45.66601473352885, -23.78323888049088], + [-45.66595573324701, -23.78322988061981], + [-45.66590573299645, -23.783217880726788], + [-45.66587173269207, -23.783159880774697], + [-45.66587173256035, -23.783110880750197], + [-45.66589473257199, -23.783077880681773], + [-45.665997732946465, -23.783049880435055], + [-45.666023732944325, -23.783006880354815], + [-45.66603073289428, -23.782976880324043], + [-45.666146733454596, -23.78299688007172], + [-45.666146733373935, -23.78296688005684], + [-45.66610673307557, -23.782920880124305], + [-45.66606973284146, -23.782893880194436], + [-45.66602973249469, -23.78282988025284], + [-45.666029732422096, -23.782802880239455], + [-45.66601273224033, -23.782762880257863], + [-45.6659927320966, -23.78274188029255], + [-45.66597273191242, -23.782705880319806], + [-45.66594873172433, -23.7826748803586], + [-45.66590273146693, -23.782653880452013], + [-45.66583673113037, -23.782635880592224], + [-45.665829730887474, -23.78255688056866], + [-45.66581873061888, -23.78247488055255], + [-45.66576173014153, -23.782389880638913], + [-45.66572272995507, -23.782383880724115], + [-45.665682729699746, -23.782353880799548], + [-45.66568272954383, -23.782295880770572], + [-45.665708729509504, -23.782240880684355], + [-45.665704729360336, -23.782191880668957], + [-45.66566472900551, -23.78212488072589], + [-45.66561472870658, -23.78209488082392], + [-45.66553472819591, -23.78203488097477], + [-45.6654817277682, -23.781961881058105], + [-45.66544872746015, -23.78190088110225], + [-45.66541172716691, -23.78185188116143], + [-45.66537772681416, -23.78177588120027], + [-45.66537072658731, -23.781702881179644], + [-45.6653607263877, -23.781644881173275], + [-45.665330726135814, -23.7815998812186], + [-45.66529072587243, -23.781566881292555], + [-45.6652547256668, -23.781548881364944], + [-45.66519472526503, -23.781496881474553], + [-45.66516272502319, -23.781458881527826], + [-45.66514172488573, -23.781441881566828], + [-45.665117724732596, -23.781423881612106], + [-45.66510272464551, -23.78141588164198], + [-45.66506772432068, -23.781351881689133], + [-45.665062724255854, -23.78133588169246], + [-45.66506272415908, -23.78129988167455], + [-45.66506272407844, -23.781269881659572], + [-45.66505172398739, -23.781253881676335], + [-45.66502772383417, -23.781235881721603], + [-45.66501472373446, -23.78121988174301], + [-45.66499472362021, -23.781209881783187], + [-45.664972723459684, -23.781185881820967], + [-45.66495972338142, -23.781177881846407], + [-45.66491372311605, -23.781153881938348], + [-45.66489372297489, -23.78113388197349], + [-45.664880722837566, -23.78110388198792], + [-45.66491972281694, -23.781032881864306], + [-45.66491972274167, -23.781004881850325], + [-45.66491872265669, -23.78097488183769], + [-45.66491872259756, -23.780952881826668], + [-45.66491872251154, -23.78092088181067], + [-45.66492272243757, -23.780886881784713], + [-45.66492472237112, -23.780858881766118], + [-45.6649287222703, -23.780814881735115], + [-45.66492272218491, -23.780792881737735], + [-45.66486972187828, -23.780764881843496], + [-45.66487172181174, -23.780736881825], + [-45.66489372172228, -23.780667881740793], + [-45.66489772157306, -23.78060588170083], + [-45.66488672141759, -23.780565881705694], + [-45.664857721167316, -23.780519881748276], + [-45.66482472096949, -23.7804998818129], + [-45.66477172056062, -23.78043388189974], + [-45.664741720381265, -23.780415881958476], + [-45.66471772021193, -23.780391882000796], + [-45.66468471999798, -23.78036588206236], + [-45.66466071984485, -23.78034788210761], + [-45.66463171966448, -23.780327882163103], + [-45.66458971940582, -23.780299882244027], + [-45.664578719277124, -23.780269882253894], + [-45.66458771922508, -23.780235882216594], + [-45.664609719227016, -23.780200882149376], + [-45.664641719280716, -23.780168882061087], + [-45.664698719448964, -23.780138881917328], + [-45.66472071948584, -23.78011688185658], + [-45.66473971948018, -23.78008388179716], + [-45.66475271944017, -23.780047881749876], + [-45.664765719319455, -23.779981881687508], + [-45.66477771914878, -23.77989888161902], + [-45.664794718900545, -23.779778881520603], + [-45.66480371873552, -23.77970288146232], + [-45.66481571851108, -23.779599881383863], + [-45.66481471802024, -23.779418881295708], + [-45.66482771785662, -23.77933688122536], + [-45.6648427177501, -23.77927288115953], + [-45.66485371770132, -23.77923688111664], + [-45.66488571771476, -23.779189881020898], + [-45.664911717758436, -23.77916388094916], + [-45.66493971773547, -23.779109880858986], + [-45.66497971779455, -23.77906688074712], + [-45.66503771788116, -23.779004880585134], + [-45.66506171792281, -23.77898138051908], + [-45.66508571796448, -23.778957880453117], + [-45.665129718016814, -23.778905880327805], + [-45.665204717959924, -23.778762880086905], + [-45.665335718276545, -23.77866787974342], + [-45.665424718447404, -23.778586879501916], + [-45.66547071847083, -23.778520879365068], + [-45.66548571850408, -23.778508879325162], + [-45.66552271856344, -23.778470879222553], + [-45.665576718694396, -23.77843187908113], + [-45.66562871879782, -23.778385878940604], + [-45.66566171881556, -23.77833887884258], + [-45.66570771886049, -23.778280878709694], + [-45.66574171895515, -23.778260878622895], + [-45.66582471918584, -23.778211878410843], + [-45.665861719261336, -23.77817987831125], + [-45.6658987193584, -23.77815587821565], + [-45.66603871977345, -23.778082877862854], + [-45.66613671999427, -23.778005877602997], + [-45.66625172024639, -23.77791287729676], + [-45.6663457204875, -23.777849877052944], + [-45.66638872060535, -23.77782387694275], + [-45.66644772075006, -23.777781876788474], + [-45.66650872092225, -23.777746876633113], + [-45.66657572110191, -23.777704876460742], + [-45.66663072124249, -23.77766787631804], + [-45.66672172150537, -23.7776178760874], + [-45.66682472177503, -23.777550875821266], + [-45.66696772215466, -23.777459875452735], + [-45.66708772248239, -23.777386875145126], + [-45.6671947227667, -23.777318874869387], + [-45.667261722938164, -23.77727387469553], + [-45.667316723076176, -23.777235874552336], + [-45.667399723360575, -23.77720687435021], + [-45.667460723524734, -23.77716887419345], + [-45.66750672366102, -23.777144874077493], + [-45.66759772390504, -23.777087873843392], + [-45.66770272423177, -23.777038873581702], + [-45.667754724404965, -23.777018873454256], + [-45.66779372455911, -23.777012873363162], + [-45.6678197246403, -23.77700087329832], + [-45.667896724855545, -23.776955873101883], + [-45.66795972506064, -23.77692987294661], + [-45.66797872508981, -23.77690987289363], + [-45.66800072516169, -23.776900872839487], + [-45.66802672522684, -23.77688287277168], + [-45.668055725310424, -23.776866872698182], + [-45.66808372538429, -23.77684887262594], + [-45.66813172554002, -23.77682887250742], + [-45.668249725885794, -23.776765872209467], + [-45.6683347261359, -23.77672087199493], + [-45.668377726302104, -23.77671287189373], + [-45.66840172635305, -23.776692871829475], + [-45.66850172659875, -23.77662187156802], + [-45.66857172676994, -23.776571871384938], + [-45.66865272699178, -23.77652287117747], + [-45.668721727196214, -23.776486871003534], + [-45.66879372741108, -23.776449870822432], + [-45.668846727567185, -23.776421870688665], + [-45.66903772817782, -23.776338870215596], + [-45.66918172866394, -23.776285869863713], + [-45.66922772882172, -23.776269869751868], + [-45.66926972894861, -23.77624886964643], + [-45.66934972921177, -23.776216869449694], + [-45.66941772942527, -23.776185869280553], + [-45.66949172968377, -23.776161869101337], + [-45.66959373001341, -23.77611886884936], + [-45.66967673028972, -23.776086868645834], + [-45.66975073056435, -23.776068868469647], + [-45.66980373074994, -23.776051868341412], + [-45.66990173112395, -23.776031868109893], + [-45.66999973150605, -23.77601486787995], + [-45.670078731764825, -23.775982867685475], + [-45.670161732022294, -23.77594386747842], + [-45.67023573220552, -23.7758918672853], + [-45.67030773239883, -23.775846867100125], + [-45.670378732595836, -23.775804866918726], + [-45.67043573278273, -23.775781866778384], + [-45.67048573296876, -23.77576986665939], + [-45.67052573310576, -23.775755866562005], + [-45.670566733284616, -23.775755866469343], + [-45.67059773337702, -23.775739866391298], + [-45.670636733506846, -23.775724866295693], + [-45.670655733600604, -23.77572886625481], + [-45.670680733709645, -23.775728866198314], + [-45.670712733822526, -23.77571886612099], + [-45.6707417339491, -23.775718866055435], + [-45.670769734055085, -23.775712865989103], + [-45.670804734207906, -23.77571286591001], + [-45.670850734405995, -23.775711865805558], + [-45.67088573455871, -23.77571186572644], + [-45.67095073482098, -23.7757038655755], + [-45.671016735031046, -23.775674865411972], + [-45.67106473518676, -23.775654865293475], + [-45.67111873530967, -23.775612865150453], + [-45.67115373537636, -23.775580865055414], + [-45.67119273545245, -23.775545864949848], + [-45.671240735608244, -23.775525864831433], + [-45.671310735868005, -23.775508864664676], + [-45.67132973593487, -23.77550286461879], + [-45.67138673613528, -23.775484864481008], + [-45.67144373635172, -23.775472864346163], + [-45.67152673665219, -23.77544986414707], + [-45.67158973688959, -23.775435863997792], + [-45.67163173705668, -23.77542986389982], + [-45.67167273720339, -23.775417863801138], + [-45.671720737383275, -23.775406863687156], + [-45.671753737511246, -23.775400863609633], + [-45.67180773771461, -23.77538886348157], + [-45.67190873808294, -23.77536186323982], + [-45.6719807383541, -23.77534586306913], + [-45.67204173859352, -23.775335862926212], + [-45.67207173869487, -23.775324862853015], + [-45.672126738897234, -23.775310862721707], + [-45.672163739058746, -23.77531086263809], + [-45.67224673938339, -23.775296862443504], + [-45.672305739605854, -23.775283862303652], + [-45.67243674009696, -23.77525386199262], + [-45.672552740519876, -23.775222861714987], + [-45.6725807406153, -23.775212861646708], + [-45.672639740800136, -23.775185861499864], + [-45.67266774088469, -23.77517186142958], + [-45.672695740990775, -23.775165861363355], + [-45.67273974115056, -23.77515386125791], + [-45.67276874127712, -23.775153861192358], + [-45.67280074139526, -23.77514586111608], + [-45.67284074155105, -23.77513886102215], + [-45.67286874167325, -23.775138860958844], + [-45.67289274177792, -23.77513886090461], + [-45.67295174200324, -23.77512686076523], + [-45.67300574220124, -23.775112860636202], + [-45.673091742520114, -23.775091860431395], + [-45.67315274276479, -23.77508386028949], + [-45.67320674295479, -23.775066860158976], + [-45.673243743094815, -23.775058860071407], + [-45.67328974329557, -23.77505885996743], + [-45.67334274351069, -23.7750528598446], + [-45.67339074372024, -23.77505285973609], + [-45.67343674390215, -23.77504585962867], + [-45.673477744081005, -23.77504585953598], + [-45.67351274423382, -23.77504585945686], + [-45.67355174440404, -23.775045859368717], + [-45.673608744625945, -23.775035859234865], + [-45.67368274494082, -23.775032859066123], + [-45.6737507452161, -23.775024858908377], + [-45.67380074543427, -23.77502485879537], + [-45.67389674584512, -23.775021858576885], + [-45.67402574636511, -23.775005858277318], + [-45.674130746777614, -23.774988858031502], + [-45.674189747029715, -23.774986857897154], + [-45.67424474726977, -23.774986857772824], + [-45.67429874752965, -23.774995857655206], + [-45.6743367477224, -23.77500585757432], + [-45.674377747906654, -23.775007857482606], + [-45.674464748286326, -23.77500785728594], + [-45.67450674846427, -23.775005857190013], + [-45.674554748665656, -23.775002857080043], + [-45.67460974890568, -23.775002856955712], + [-45.674665749171595, -23.77501085683306], + [-45.67472474944521, -23.77501685670272], + [-45.67484574998666, -23.775021856431657], + [-45.67494375035522, -23.774999856199106], + [-45.67498475052878, -23.77499785610544], + [-45.67502675066102, -23.774978856001074], + [-45.675074750822056, -23.774960855883606], + [-45.675109750937125, -23.774946855797495], + [-45.6751687511651, -23.774935855658626], + [-45.67532175184888, -23.774941855315802], + [-45.675417752259804, -23.77493885509729], + [-45.67552175268666, -23.77492885485717], + [-45.67555975285252, -23.774928854771275], + [-45.67558575294449, -23.77492085470847], + [-45.675618753059005, -23.774909854628355], + [-45.67569275332804, -23.77488985445113], + [-45.67573175347139, -23.774879854357973], + [-45.67577775363985, -23.774867854247972], + [-45.67582775378011, -23.77483885412048], + [-45.67585375385586, -23.77482485405473], + [-45.67590875402598, -23.77479885391752], + [-45.675966754238765, -23.774783853778928], + [-45.67606075464893, -23.774783853566408], + [-45.6761007548235, -23.774783853475995], + [-45.676161755122045, -23.774795853344003], + [-45.67622275538545, -23.774794853205588], + [-45.67629075572523, -23.77481085305992], + [-45.67639175620363, -23.77482485283845], + [-45.67646375656892, -23.774843852685194], + [-45.676568757097, -23.774869852460707], + [-45.67660175727865, -23.77488385239315], + [-45.67668475767313, -23.774895852211507], + [-45.676727757874225, -23.774900852116733], + [-45.67678475812296, -23.774900851987862], + [-45.67685675843716, -23.77490085182509], + [-45.67690075861841, -23.774896851723653], + [-45.6770007590091, -23.774879851489], + [-45.67707275924799, -23.77485185131236], + [-45.67713175946241, -23.774835851170902], + [-45.67721075975064, -23.774814850981887], + [-45.67726975998121, -23.774804850843502], + [-45.6773697603665, -23.77478585060796], + [-45.67744676072935, -23.77479585043879], + [-45.677548761179835, -23.774797850209247], + [-45.67759476139398, -23.77480285010771], + [-45.677697761843525, -23.774802849874817], + [-45.6777347620103, -23.774804849792154], + [-45.67775676212241, -23.774810849745442], + [-45.67785276256554, -23.77481984953281], + [-45.677920762905345, -23.774835849387017], + [-45.67796276312626, -23.77484984929913], + [-45.67801676342101, -23.774871849187935], + [-45.678071763725576, -23.774895849075556], + [-45.67812476400528, -23.774913848964566], + [-45.67815076411059, -23.77491084890431], + [-45.678174764215335, -23.774910848850045], + [-45.678233764510445, -23.774924848723614], + [-45.678296764753036, -23.774912848575177], + [-45.67834476498946, -23.774922848471665], + [-45.678395765236154, -23.774931848360843], + [-45.67844176546377, -23.77494184826184], + [-45.67848276566958, -23.77495184817405], + [-45.678524765863635, -23.774955848081042], + [-45.67858776616, -23.774963847942622], + [-45.678655766454064, -23.774962847788355], + [-45.678690766612135, -23.77496484771022], + [-45.67871276670816, -23.774964847660467], + [-45.67878676703644, -23.774966847494138], + [-45.67888076732555, -23.774921847259172], + [-45.67894376754673, -23.77490184710681], + [-45.67903276790548, -23.774890846900057], + [-45.679094768175986, -23.77489084675987], + [-45.67915576846904, -23.77490084662695], + [-45.67922376879805, -23.77491284647908], + [-45.67926476901454, -23.77492684639342], + [-45.679293769186884, -23.77494384633629], + [-45.67930876932488, -23.774970846315828], + [-45.67932676946803, -23.774994846286997], + [-45.67933576954499, -23.775008846273636], + [-45.67937676979105, -23.77503384619338], + [-45.679411769997614, -23.775053846124177], + [-45.67942977011918, -23.775069846091423], + [-45.6795017704172, -23.775063845925644], + [-45.67951677048265, -23.775063845891715], + [-45.67953477055042, -23.775059845849057], + [-45.67957777070577, -23.775047845745842], + [-45.67961077082553, -23.775038845666682], + [-45.679643770948, -23.775030845588137], + [-45.679763771417875, -23.775010845306767], + [-45.679796771572605, -23.775014845234207], + [-45.679826771679316, -23.775005845161846], + [-45.67991177202332, -23.77499584496466], + [-45.67994477216727, -23.77499584489002], + [-45.67996477230301, -23.775013844853802], + [-45.67997777241344, -23.77503384483433], + [-45.68003277275574, -23.775071844728807], + [-45.68004577286081, -23.77508984470844], + [-45.6800827730922, -23.77511584463765], + [-45.680102773211715, -23.775127844598384], + [-45.680120773317135, -23.77513784456268], + [-45.6801287733736, -23.775145844548614], + [-45.68017077359452, -23.775159844460532], + [-45.68023877396927, -23.77518884432127], + [-45.680341774526184, -23.775228844108184], + [-45.680363774654495, -23.775240844064413], + [-45.68041577495673, -23.775268843960735], + [-45.68052077558693, -23.77533284375511], + [-45.680580775894526, -23.775349843627946], + [-45.680628776152346, -23.77536784352833], + [-45.680674776401474, -23.77538584343326], + [-45.680717776642915, -23.77540584334592], + [-45.6807927769809, -23.775409843178263], + [-45.680842777258306, -23.775431843076188], + [-45.6809147775859, -23.775436842915905], + [-45.68099977794065, -23.775430842720628], + [-45.681067778226556, -23.77542684256488], + [-45.681135778434516, -23.775393842394706], + [-45.68118977861089, -23.77537184226159], + [-45.68122277873871, -23.77536584218392], + [-45.68130577906054, -23.77535084198882], + [-45.68139777945664, -23.77534884177978], + [-45.68143677958371, -23.77533284168353], + [-45.68150677985955, -23.775321841519816], + [-45.68154978003641, -23.775317841420513], + [-45.68160078024813, -23.7753138413032], + [-45.68168978062308, -23.775308841099463], + [-45.68179278104559, -23.775298840861506], + [-45.681883781375376, -23.775273840643244], + [-45.68192378156067, -23.77527784055481], + [-45.68195878170259, -23.775273840473606], + [-45.682004781854864, -23.77525584036064], + [-45.68204978194091, -23.775214840238455], + [-45.68209378200915, -23.775168840116084], + [-45.68212378208086, -23.775146840037323], + [-45.68213878207098, -23.775118839989464], + [-45.682151782084674, -23.77510283995212], + [-45.682173782113466, -23.7750778398899], + [-45.68220178220334, -23.775065839820613], + [-45.68224178237788, -23.775065839730104], + [-45.68226078248227, -23.77507383969117], + [-45.68228078261793, -23.775091839654866], + [-45.682324782863695, -23.77511183956525], + [-45.68235078304709, -23.775137839519402], + [-45.682374783221775, -23.775163839478093], + [-45.68239778343505, -23.775205839446862], + [-45.682412783570456, -23.775231839425967], + [-45.682430783735064, -23.77526383940117], + [-45.682465783995404, -23.77530383934192], + [-45.68248078414693, -23.775335839323795], + [-45.68248978428847, -23.775373839322373], + [-45.68250078447627, -23.77542583932339], + [-45.68255178481712, -23.775469839229928], + [-45.68259078505186, -23.77549383915359], + [-45.682643785326185, -23.775509839041757], + [-45.68267878552727, -23.77552783897152], + [-45.68271378571231, -23.775539838898244], + [-45.68272678579585, -23.775549838873854], + [-45.68279278614307, -23.775571838735548], + [-45.682836786361925, -23.775581838640928], + [-45.682873786552996, -23.77559283856275], + [-45.682919786775194, -23.77560083846271], + [-45.68297378704841, -23.775614838347526], + [-45.68300078719312, -23.77562483829138], + [-45.683059787504355, -23.775644838167928], + [-45.68308978766752, -23.775656838105945], + [-45.68312078783513, -23.775668838041824], + [-45.683144787950546, -23.775672837989585], + [-45.68317578812614, -23.775687837926924], + [-45.683232788396374, -23.77569583780193], + [-45.683260788513174, -23.775693837737602], + [-45.68328678862124, -23.77569183767782], + [-45.6833177887565, -23.775691837607692], + [-45.6833457888625, -23.775685837541406], + [-45.68337678899774, -23.775685837471297], + [-45.68343578925248, -23.775684837337348], + [-45.683540789726734, -23.775690837102783], + [-45.683627790122436, -23.77569683690894], + [-45.6837047904719, -23.775701836737227], + [-45.6837387906256, -23.775703836661307], + [-45.68379579086892, -23.775701836531383], + [-45.68384179105345, -23.775695836424383], + [-45.68391179137233, -23.775700836268495], + [-45.684047791987176, -23.77570883596487], + [-45.68408479216479, -23.775714835884113], + [-45.68409979224629, -23.77572083585323], + [-45.68414579242822, -23.77571383574567], + [-45.684184792636, -23.77572783566449], + [-45.68422279283948, -23.775741835585407], + [-45.68423979290825, -23.77573983554596], + [-45.68431979337032, -23.775781835385885], + [-45.6843407934942, -23.775793835344334], + [-45.684401793797974, -23.775807835213325], + [-45.68448479417895, -23.775814835028992], + [-45.6845437944848, -23.77583283490447], + [-45.684565794623786, -23.775848834862717], + [-45.68458379471852, -23.77585483482495], + [-45.68469479528885, -23.775886834589734], + [-45.68476279550215, -23.775855834420504], + [-45.68478679557999, -23.775845834361313], + [-45.68480879567592, -23.77584583431154], + [-45.68484579583729, -23.775845834227844], + [-45.684869795979715, -23.77585983418042], + [-45.684904796164744, -23.77587183410724], + [-45.68495279643062, -23.775892834009134], + [-45.68497479653736, -23.775896833961333], + [-45.685013796750574, -23.775912833881026], + [-45.68505179696473, -23.775930833804104], + [-45.68507579711261, -23.775946833757647], + [-45.68511079730294, -23.77596083368542], + [-45.6851387974573, -23.775972833628074], + [-45.685180797683614, -23.775988833540993], + [-45.68520479782065, -23.776000833492667], + [-45.685235797982756, -23.776010833427534], + [-45.685254798098015, -23.77602283339056], + [-45.68527879824033, -23.77603683334314], + [-45.68527879827262, -23.77604883334911], + [-45.68527979830935, -23.776060833352826], + [-45.685270798313134, -23.776076833381133], + [-45.685255798290726, -23.77609283342299], + [-45.685233798221624, -23.77610283347777], + [-45.68521879819384, -23.776116833518675], + [-45.685202798161725, -23.77613083356184], + [-45.68520079819604, -23.776146833574295], + [-45.68521179828711, -23.77616283355734], + [-45.68522979839253, -23.77617283352163], + [-45.68523679848769, -23.776196833517666], + [-45.685225798506856, -23.776221833555006], + [-45.685205798489605, -23.776247833613176], + [-45.68519279848668, -23.77626783365259], + [-45.685181798519395, -23.77629783369229], + [-45.68519079863401, -23.77632583368584], + [-45.68519579870972, -23.77634583368455], + [-45.68519979881325, -23.77637783369137], + [-45.68520479894267, -23.776417833699863], + [-45.68521379909766, -23.776460833700906], + [-45.68522479931243, -23.776522833706878], + [-45.685224799376996, -23.776546833718754], + [-45.68523179948024, -23.776573833716338], + [-45.68522079951564, -23.776604833756725], + [-45.68521679959507, -23.77664083378361], + [-45.68521679972961, -23.776690833808434], + [-45.68521679982918, -23.776727833826854], + [-45.68522379997807, -23.776771833832886], + [-45.685223800037264, -23.77679383384378], + [-45.68521980010595, -23.776825833868706], + [-45.68520880012252, -23.776849833905562], + [-45.68519380015403, -23.77688583395742], + [-45.68518980019841, -23.776908833977863], + [-45.68519880027538, -23.776922833964456], + [-45.68522080044667, -23.776950833928602], + [-45.6852338005572, -23.776970833909196], + [-45.68523380064332, -23.77700283392497], + [-45.68522980068509, -23.77702483394502], + [-45.685244800798976, -23.777042833919985], + [-45.68525880093002, -23.777068833901257], + [-45.685286801106, -23.777088833847827], + [-45.68530480125987, -23.777116833821005], + [-45.68533480146072, -23.777142833766096], + [-45.68534380156449, -23.77716683375769], + [-45.68534380159679, -23.777178833763667], + [-45.6853228015376, -23.777190833817162], + [-45.68527180126122, -23.777170833922558], + [-45.685241801157254, -23.777180833995423], + [-45.685234801193936, -23.77720583402361], + [-45.68523480125852, -23.777229834035563], + [-45.685245801392625, -23.777261834026667], + [-45.68525780150958, -23.77728583401138], + [-45.685268801589814, -23.777297833992474], + [-45.68528680194288, -23.777399834002438], + [-45.685259801889636, -23.77742383407539], + [-45.68525180191929, -23.777447834105455], + [-45.68526280208301, -23.77749083410195], + [-45.685264802156304, -23.77751483410937], + [-45.68526780223396, -23.77753883411444], + [-45.685273802357074, -23.777574834118813], + [-45.68527480253365, -23.777638834148302], + [-45.68526980260866, -23.77767483417758], + [-45.68525780264516, -23.777707834221093], + [-45.685257802736665, -23.77774183423797], + [-45.68525780283355, -23.777777834255893], + [-45.685257802881964, -23.777795834264833], + [-45.685262802968346, -23.777819834265383], + [-45.68526280303832, -23.777845834278413], + [-45.68525880316082, -23.777897834313244], + [-45.685295803588616, -23.77799683427865], + [-45.685298803747024, -23.778050834298742], + [-45.68530280383448, -23.778076834302638], + [-45.68530280392061, -23.778108834318523], + [-45.68530080399801, -23.778140834339013], + [-45.68530180408849, -23.778172834352617], + [-45.68529280407071, -23.778180834377014], + [-45.68525780396915, -23.778199834465514], + [-45.685253804027, -23.778227834488607], + [-45.68523580399692, -23.778245834538154], + [-45.68521480395376, -23.77826383459468], + [-45.68520380392728, -23.77827183462358], + [-45.685183803883014, -23.778287834676682], + [-45.68516380381732, -23.778295834725963], + [-45.685153803789895, -23.778301834751595], + [-45.68513780376574, -23.77831883479626], + [-45.68512780375986, -23.778332834825743], + [-45.68511480375157, -23.778350834864174], + [-45.68510580375533, -23.778366834892463], + [-45.6851018038294, -23.778400834918394], + [-45.685101803845534, -23.778406834921423], + [-45.685110803927905, -23.77842283490901], + [-45.68512380399002, -23.77842483488057], + [-45.685142804035216, -23.778410834830634], + [-45.68514680399343, -23.77838883481069], + [-45.68516280407398, -23.77839283477645], + [-45.68516880412177, -23.778400834766792], + [-45.685171804172505, -23.77841483476696], + [-45.68517580423837, -23.778432834766956], + [-45.68520180440027, -23.77845083471695], + [-45.6852178045239, -23.778470834690733], + [-45.68524880474527, -23.778502834636488], + [-45.68527480492872, -23.778528834590603], + [-45.6853028051047, -23.778548834537162], + [-45.68532080520475, -23.778556834500446], + [-45.6853388053317, -23.77857483446865], + [-45.68533880538015, -23.77859283447764], + [-45.68533880541244, -23.778604834483538], + [-45.68532280534812, -23.77860683452071], + [-45.685309805296676, -23.7786088345512], + [-45.68530380528667, -23.77861483456773], + [-45.68529680526148, -23.77861683458455], + [-45.685292805314035, -23.778642834606554], + [-45.685294805387315, -23.778666834613887], + [-45.68532980554009, -23.778666834534697], + [-45.685338805622365, -23.778682834522357], + [-45.68533880566004, -23.778696834529228], + [-45.68533880568156, -23.778704834533247], + [-45.68534380577871, -23.77873283453584], + [-45.685352805871844, -23.778752834525395], + [-45.68536580596087, -23.778764834501974], + [-45.68538980610868, -23.778780834455606], + [-45.68542480628287, -23.778788834380418], + [-45.685461806465874, -23.778796834300643], + [-45.68551680661968, -23.77876483416029], + [-45.68553580660306, -23.778727834098987], + [-45.68554380648183, -23.778669834052053], + [-45.685550806383254, -23.778621834012288], + [-45.68556180635042, -23.778591833972516], + [-45.68558080639035, -23.778575833921575], + [-45.68561580649197, -23.77855683383297], + [-45.68563780663098, -23.778572833791124], + [-45.68565280676102, -23.77859683376915], + [-45.68567280693974, -23.778630833740774], + [-45.685714807198366, -23.778658833659648], + [-45.685738807351555, -23.778676833614252], + [-45.68575180745135, -23.77869283359279], + [-45.68578280769425, -23.77873283354255], + [-45.685824807925975, -23.778750833456456], + [-45.68586580826634, -23.778810833393482], + [-45.68590980851216, -23.77883083330382], + [-45.68594680870583, -23.778842833226168], + [-45.685981808901566, -23.778858833154928], + [-45.686016809075774, -23.778866833079636], + [-45.686058809275195, -23.778872832987545], + [-45.686134809539574, -23.778847832803223], + [-45.6861878098246, -23.778867832693187], + [-45.686248810015485, -23.778839832541255], + [-45.68633381045355, -23.778864832361368], + [-45.68637381067117, -23.7788808322788], + [-45.68641081088648, -23.778900832204975], + [-45.68644581108759, -23.778918832134792], + [-45.686471811233346, -23.778930832081937], + [-45.68650081141371, -23.77895083202622], + [-45.68652881159511, -23.77897283197382], + [-45.68655281174822, -23.77899083192834], + [-45.68658381197506, -23.779024831875173], + [-45.68662581219052, -23.779036831786083], + [-45.68665381229663, -23.77903083171971], + [-45.68666481231766, -23.779020831689895], + [-45.68668181240259, -23.779024831653377], + [-45.68669781248862, -23.779030831620137], + [-45.68671481258692, -23.779039831586157], + [-45.68680881304554, -23.779057831382367], + [-45.68687081329988, -23.77905183123912], + [-45.68689481340463, -23.779051831184834], + [-45.68699081382083, -23.779050830967112], + [-45.687007813830306, -23.779026830916678], + [-45.68703581393104, -23.77901883084938], + [-45.687062814070295, -23.77902683079222], + [-45.68707581408397, -23.779010830754842], + [-45.687059813949574, -23.778986830779115], + [-45.68704881381542, -23.77895483078813], + [-45.687072813914774, -23.778952830732823], + [-45.68711481412226, -23.778961830642295], + [-45.68719981449853, -23.778963830450937], + [-45.68723481462966, -23.778955830367707], + [-45.68722781453985, -23.77893383037269], + [-45.68720981426217, -23.77885983037668], + [-45.68723181427477, -23.778828830311404], + [-45.68724831434131, -23.778826830273086], + [-45.687264650407286, -23.778824850235143], + [-45.68726445741834, -23.77882927323779], + [-45.68740031506646, -23.778849829940587], + [-45.68741381513879, -23.778854829912483], + [-45.68744381525092, -23.778847829841133], + [-45.687443815202464, -23.778829829832166], + [-45.687449815185545, -23.778813829810723], + [-45.6874658152338, -23.77880582977051], + [-45.68750681540733, -23.778803829676722], + [-45.687539815556654, -23.778805829603034], + [-45.687587815722985, -23.778789829486474], + [-45.68767481600836, -23.778754829272174], + [-45.68772981621605, -23.778742829141752], + [-45.68776481631488, -23.778722829052715], + [-45.687803816342424, -23.778669828938103], + [-45.68781181626421, -23.778627828899136], + [-45.68783981633795, -23.778609828826845], + [-45.687868816453786, -23.778605828759165], + [-45.687914816646376, -23.778602828653597], + [-45.687947816811864, -23.77861082858295], + [-45.68797981692993, -23.778602828506525], + [-45.68799981694719, -23.77857682844831], + [-45.688036817049436, -23.778554828353716], + [-45.688069817169165, -23.778545828274513], + [-45.68812681748245, -23.77856982815748], + [-45.688158817632825, -23.778573828087033], + [-45.68817481765952, -23.778557828042878], + [-45.688138817411016, -23.77852382810749], + [-45.68811281723833, -23.778501828155356], + [-45.68809581713727, -23.778491828188834], + [-45.68811281713606, -23.77846382813653], + [-45.6881298172102, -23.77846382809808], + [-45.68816081734552, -23.778463828027927], + [-45.688180817459575, -23.77847382798764], + [-45.68819981756407, -23.77848182794859], + [-45.68820881766797, -23.77850582794007], + [-45.68821781780946, -23.778543827938602], + [-45.688217817836374, -23.77855382794362], + [-45.68824181795187, -23.77855782789127], + [-45.68826381802092, -23.778547827836483], + [-45.688285818098095, -23.778540827783257], + [-45.68830081816354, -23.778540827749318], + [-45.68832081826162, -23.778544827706003], + [-45.688340818364985, -23.77855082766378], + [-45.688348818421375, -23.77855882764961], + [-45.688368818508664, -23.77855882760435], + [-45.68839281861334, -23.77855882755003], + [-45.68841881869987, -23.77854882748619], + [-45.68845581880213, -23.778526827391584], + [-45.68850181893012, -23.77849982727406], + [-45.68852981901999, -23.778487827204724], + [-45.68854281900673, -23.778461827162374], + [-45.6885468189434, -23.778431827138522], + [-45.688568819017895, -23.778423827084733], + [-45.68859981920687, -23.778443827024468], + [-45.688636819438315, -23.778469826953675], + [-45.68865881959895, -23.77849382691573], + [-45.68868781976845, -23.778509826858127], + [-45.68872481997028, -23.77852482678183], + [-45.68876582015995, -23.778528826691], + [-45.68881182036062, -23.778528826586907], + [-45.68885982058617, -23.77853482648121], + [-45.688890820742934, -23.778542826415066], + [-45.6889308209713, -23.77856282633445], + [-45.688949821091946, -23.7785768262984], + [-45.688993821302724, -23.778583826202347], + [-45.68904182146366, -23.778565826084783], + [-45.68907882162506, -23.778565826001056], + [-45.689104821749275, -23.77856982594418], + [-45.68917482216773, -23.778611825806596], + [-45.68920782238166, -23.778637825744852], + [-45.68923482252639, -23.778647825688644], + [-45.68926082270436, -23.77867182564176], + [-45.68929182289353, -23.77869182558149], + [-45.68934582315327, -23.77870082546379], + [-45.68937882322732, -23.778674825376164], + [-45.68940082332324, -23.77867482532638], + [-45.689417823418935, -23.77868282529192], + [-45.689433823547965, -23.77870482526657], + [-45.68946182375087, -23.778734825218088], + [-45.68947982388331, -23.778754825187256], + [-45.68950582405589, -23.778776825139374], + [-45.6895168241416, -23.778790825121444], + [-45.68953882428607, -23.778808825080546], + [-45.68955482438278, -23.77881882504934], + [-45.68956782446106, -23.778826825023845], + [-45.68958482457288, -23.778840824992322], + [-45.68960282470523, -23.77886082496156], + [-45.689628824856364, -23.77887482490959], + [-45.689652825025696, -23.7788988248672], + [-45.68970382526971, -23.7789068247558], + [-45.68972782539597, -23.778914824705392], + [-45.689757825561855, -23.778927824644068], + [-45.68980882589737, -23.778969824549392], + [-45.689850826204434, -23.779015824477234], + [-45.68988082648338, -23.77907082443657], + [-45.68989682658549, -23.779082824406323], + [-45.689922826742006, -23.77909882435542], + [-45.689944826835344, -23.77909782430513], + [-45.689959826933006, -23.779109824277153], + [-45.68998682707781, -23.77911982422094], + [-45.68999282714704, -23.77913582421541], + [-45.6900108273063, -23.77916582418944], + [-45.690045827615094, -23.779223824139113], + [-45.690072827859524, -23.779270824101282], + [-45.69012082826274, -23.779342824028394], + [-45.690160828641794, -23.779418823975583], + [-45.69017182877595, -23.779450823966535], + [-45.69019582893454, -23.779470823922185], + [-45.690226829155925, -23.779502823867887], + [-45.690248829300316, -23.779520823827006], + [-45.69027082948248, -23.779552823793086], + [-45.690270829547096, -23.779576823805023], + [-45.69025782953882, -23.77959482384336], + [-45.690248829553376, -23.779614823873626], + [-45.69024482959518, -23.779636823893636], + [-45.690253829677545, -23.779652823881225], + [-45.69027582981117, -23.77966682383836], + [-45.69030382996566, -23.77967882378096], + [-45.690345830191966, -23.779694823693813], + [-45.69036983032364, -23.779704823644387], + [-45.6904178306138, -23.77973482355071], + [-45.690478830917584, -23.77974882341952], + [-45.69050983108513, -23.779760823355417], + [-45.69051883115135, -23.77977082333996], + [-45.69052083119238, -23.77978282334138], + [-45.69052083124623, -23.77980282335127], + [-45.690514831263066, -23.7798188233728], + [-45.69050183128183, -23.77984682341621], + [-45.69050183131952, -23.779860823423068], + [-45.69051683144947, -23.779884823401044], + [-45.690499831536854, -23.779944823469314], + [-45.69051983169956, -23.77997282343795], + [-45.690523831816606, -23.780009823447287], + [-45.6904868317037, -23.780027823539942], + [-45.69046083159023, -23.78002782359879], + [-45.69043883149959, -23.780029823649595], + [-45.69041983142212, -23.78003182369357], + [-45.690395831338925, -23.78003982375182], + [-45.69037983126911, -23.780039823788027], + [-45.69036283129998, -23.78007882384589], + [-45.69039783160886, -23.780136823795466], + [-45.69042283179328, -23.78016482375277], + [-45.6904418319247, -23.78018282371868], + [-45.690457832026794, -23.78019482368844], + [-45.6904878322169, -23.780216823631488], + [-45.690520832412005, -23.780235823566187], + [-45.69057183273687, -23.780273823469543], + [-45.6905888328594, -23.780291823439978], + [-45.69061083304158, -23.780323823406142], + [-45.69063483323239, -23.780355823367685], + [-45.690648833360875, -23.780380823348413], + [-45.690685833568025, -23.780397823273084], + [-45.69071483376455, -23.780423823220357], + [-45.69075183400139, -23.78045182315043], + [-45.69077783417408, -23.780473823102525], + [-45.69080383431978, -23.78048582304963], + [-45.69082783443527, -23.780489822997264], + [-45.69084583451378, -23.780489822956543], + [-45.69086783462595, -23.78049582290968], + [-45.69088783475089, -23.780509822871444], + [-45.690887834815506, -23.780533822883296], + [-45.69089383491166, -23.780559822882616], + [-45.69091583506691, -23.780581822843686], + [-45.6909298351603, -23.780593822818062], + [-45.69093783524363, -23.780611822808776], + [-45.69094883534011, -23.780629822792875], + [-45.69096283544426, -23.78064582276913], + [-45.690977835552786, -23.7806618227431], + [-45.69098183559722, -23.780671822739034], + [-45.6910018357383, -23.780691822703645], + [-45.69102383588809, -23.780711822663747], + [-45.6910418360367, -23.7807378226359], + [-45.69106183621548, -23.780771822607562], + [-45.69108083640065, -23.78080982258336], + [-45.69108383648912, -23.780837822590474], + [-45.69107483652801, -23.780866822625253], + [-45.69107483658723, -23.780888822636193], + [-45.69107483659263, -23.78089082263717], + [-45.6910928367519, -23.780920822611304], + [-45.691099836841644, -23.780942822606338], + [-45.69108883682602, -23.780954822637195], + [-45.691064836721274, -23.78095482269154], + [-45.6910378365604, -23.780938822744726], + [-45.69099883636875, -23.780930822829085], + [-45.69097283630376, -23.780948822896768], + [-45.69096483641692, -23.781003822942193], + [-45.69097283653264, -23.78103382293897], + [-45.690986836733735, -23.78108582293311], + [-45.69100383689944, -23.781119822911474], + [-45.691019837157725, -23.781189822909994], + [-45.69103083737806, -23.78125382291683], + [-45.69103783754322, -23.78130382292585], + [-45.69103783763746, -23.78133882294318], + [-45.69102783769082, -23.78137482298371], + [-45.691007837711204, -23.781414823048785], + [-45.69098583769066, -23.78144282311248], + [-45.6909628377276, -23.781493823189923], + [-45.690949837746274, -23.781521823233234], + [-45.6908948376517, -23.781575823384497], + [-45.6908718376564, -23.781614823455932], + [-45.69086283767643, -23.781636823487254], + [-45.69084783777246, -23.78169682355098], + [-45.69084783784785, -23.781724823564886], + [-45.69086983805161, -23.781764823534928], + [-45.69088783821628, -23.781796823510074], + [-45.69090983842002, -23.781836823480052], + [-45.69092783858461, -23.78186882345515], + [-45.690942838698625, -23.781886823430195], + [-45.69097183890583, -23.78191682337943], + [-45.69097983896772, -23.78192682336631], + [-45.69099583905376, -23.781932823333026], + [-45.691014839222696, -23.781964823305856], + [-45.69103483938542, -23.781992823274493], + [-45.691039839493385, -23.78202482327905], + [-45.69105083965988, -23.782068823275967], + [-45.691055839754355, -23.78209582327806], + [-45.691048839820816, -23.782131823311804], + [-45.6910668400232, -23.78217782329389], + [-45.69107384011304, -23.78219982328889], + [-45.69107584014866, -23.782209823289385], + [-45.691075840197136, -23.78222782329827], + [-45.691071840265884, -23.78225982332328], + [-45.69107184031437, -23.78227782333209], + [-45.69108884045853, -23.782303823306606], + [-45.69108884049084, -23.78231582331251], + [-45.69111384067535, -23.782343823269798], + [-45.69116384097964, -23.78237582317246], + [-45.691187841154395, -23.782401823131046], + [-45.69119884123473, -23.78241382311211], + [-45.69124484149467, -23.782435823018854], + [-45.691266841633706, -23.782451822976974], + [-45.69127384170198, -23.78246582296818], + [-45.69128684178017, -23.78247382294265], + [-45.69135884219125, -23.782509822797547], + [-45.691426842466456, -23.782501822639595], + [-45.69146584276042, -23.782547822574106], + [-45.691496842976555, -23.782577822518807], + [-45.69150784306756, -23.78259382250183], + [-45.69151884313711, -23.782601822480924], + [-45.69154084324931, -23.782607822434066], + [-45.691560843344604, -23.782610822390236], + [-45.691569843416225, -23.78262282237584], + [-45.69157584349893, -23.78264382237273], + [-45.69158884358798, -23.78265582234917], + [-45.691599843679086, -23.78267182233228], + [-45.69161784377913, -23.78267982229546], + [-45.69163784390676, -23.78269482225763], + [-45.69165084400927, -23.782711822236607], + [-45.691665844109735, -23.782724822209104], + [-45.69174084457169, -23.78277482206416], + [-45.69175784455957, -23.78274282200972], + [-45.691755844475466, -23.78271482200045], + [-45.69172484424866, -23.78268082205371], + [-45.69172484418941, -23.782658822042734], + [-45.691761844307806, -23.78264282195115], + [-45.69183184467516, -23.782665821804006], + [-45.69187984494921, -23.782689821707258], + [-45.69192184517555, -23.7827058216201], + [-45.69195484535721, -23.782719821552334], + [-45.69199384554894, -23.782727821467976], + [-45.69202684575214, -23.7827498214042], + [-45.69205284589783, -23.782761821351308], + [-45.69207284605518, -23.782787821318863], + [-45.69215184655611, -23.782845821168856], + [-45.69219384682017, -23.782875821088535], + [-45.69222384691326, -23.78286182101367], + [-45.69225184688192, -23.782804820922088], + [-45.69228484704214, -23.782810820850305], + [-45.692319847248676, -23.782830820780944], + [-45.69235984745551, -23.782842820696345], + [-45.69243584782479, -23.78285682053121], + [-45.69247984796023, -23.78283582042122], + [-45.6925118480998, -23.782835820348755], + [-45.69255784834897, -23.782853820253507], + [-45.6926678489313, -23.78289182002334], + [-45.69270884914251, -23.782903819936383], + [-45.69273584926303, -23.78290481987574], + [-45.69275484938897, -23.782920819840722], + [-45.69272484930388, -23.78293781991707], + [-45.69271184932794, -23.782967819961378], + [-45.69275584957381, -23.78298781987165], + [-45.69281684986954, -23.782998819738992], + [-45.69284985004582, -23.783010819670263], + [-45.6928828502167, -23.783020819600427], + [-45.69292385043331, -23.78303481951452], + [-45.69297685070766, -23.783050819402547], + [-45.6930118509142, -23.783070819333172], + [-45.69303185100151, -23.783070819287897], + [-45.693041851045095, -23.78307081926525], + [-45.6930398509502, -23.783038819253854], + [-45.69308185110921, -23.78302981915433], + [-45.693267852093115, -23.783093818764957], + [-45.693345852339135, -23.78305881857091], + [-45.69339885265119, -23.783088818465803], + [-45.693413852765126, -23.78310681844071], + [-45.69342885285212, -23.78311481841079], + [-45.69348185315342, -23.783140818303696], + [-45.69350385324397, -23.783138818252898], + [-45.693538853299664, -23.78310281815573], + [-45.693518853147786, -23.783078818189065], + [-45.69349185299227, -23.783064818243297], + [-45.69347085285752, -23.783048818282893], + [-45.69344585272156, -23.783038818334532], + [-45.69343085261842, -23.78302481836163], + [-45.69341985254347, -23.783014818381567], + [-45.693419852441124, -23.782976818362766], + [-45.69345885261399, -23.782977818274947], + [-45.69356585315084, -23.783003818045486], + [-45.69360385333282, -23.78300981796248], + [-45.69363185343882, -23.783003817896038], + [-45.693721853877264, -23.78302081770067], + [-45.69374585397124, -23.783016817644366], + [-45.693882854445015, -23.782970817311348], + [-45.69396185478694, -23.782969817131953], + [-45.69399185489096, -23.78295981705903], + [-45.694011854967314, -23.782955817011764], + [-45.694046855120085, -23.78295581693252], + [-45.69409485534565, -23.78296181682677], + [-45.69415585556066, -23.782942816679256], + [-45.69417985563298, -23.782930816618943], + [-45.69421885581932, -23.78293681653363], + [-45.69427185609369, -23.782952816421474], + [-45.694293856227326, -23.782966816378675], + [-45.694317856332056, -23.782966816324343], + [-45.69437185651642, -23.78294781619258], + [-45.69438085641565, -23.782895816146457], + [-45.694399856396245, -23.782857816084583], + [-45.694412856431335, -23.782849816051204], + [-45.69443285651857, -23.782849816005914], + [-45.69446385672391, -23.782875815948533], + [-45.69448285678254, -23.782866815901112], + [-45.69449685680592, -23.78285281586245], + [-45.69451785690288, -23.78285481581589], + [-45.69453385696199, -23.782850815777692], + [-45.69455085698757, -23.782832815730202], + [-45.69458185707442, -23.782814815651108], + [-45.694596857123685, -23.782808815614192], + [-45.69458985715235, -23.7828308156409], + [-45.69458585716725, -23.782842815655936], + [-45.69459685725298, -23.78285681563797], + [-45.69462085735772, -23.782856815583635], + [-45.69464485748391, -23.782864815533284], + [-45.694668857642526, -23.78288481548882], + [-45.69470585778504, -23.782877815401584], + [-45.694727857908006, -23.782887815356748], + [-45.69473685800924, -23.78291081534774], + [-45.6947718581646, -23.782911815268957], + [-45.69479185818718, -23.782887815211843], + [-45.69480185815001, -23.782857815174225], + [-45.694891858553426, -23.782861814972364], + [-45.69493985875472, -23.7828588148622], + [-45.69500085897773, -23.78284281471614], + [-45.695004858925216, -23.782816814694197], + [-45.69503185899453, -23.78279881462414], + [-45.69505285909688, -23.78280281457864], + [-45.69514485938779, -23.782761814349946], + [-45.69517285948839, -23.782753814282522], + [-45.69517285953688, -23.782771814291426], + [-45.69520785966809, -23.782763814208238], + [-45.69521685962648, -23.782733814173], + [-45.69523885969288, -23.782722814117697], + [-45.69526085982113, -23.782734814073855], + [-45.69529386000818, -23.78275081400704], + [-45.69531986010554, -23.78274481394514], + [-45.69532986004676, -23.78270681390371], + [-45.69534986005316, -23.782676813843555], + [-45.695399860177055, -23.782641813713013], + [-45.69542786021294, -23.78260981363366], + [-45.69544286018688, -23.78257581358289], + [-45.695440860108114, -23.782549813574494], + [-45.69545786010146, -23.782519813521127], + [-45.69547986020278, -23.78252181347229], + [-45.6954888603229, -23.78255181346687], + [-45.69549586039648, -23.78256781345884], + [-45.69549586043959, -23.782583813466783], + [-45.695523860583286, -23.782591813407365], + [-45.69557886083132, -23.78259481328438], + [-45.695591860904216, -23.782600813257858], + [-45.69563086102042, -23.782580813159573], + [-45.695599860766656, -23.782536813207976], + [-45.69560886073054, -23.782508813173795], + [-45.69564186086369, -23.78250481309701], + [-45.695660860930495, -23.782498813050978], + [-45.695654860796516, -23.78245881304479], + [-45.69566786083438, -23.782451813011853], + [-45.69570086099448, -23.78245781294013], + [-45.69575286124832, -23.782467812827345], + [-45.695789861409686, -23.782467812743576], + [-45.69582086146419, -23.782437812658483], + [-45.69585786158784, -23.782423812567757], + [-45.69587886161209, -23.78239881250779], + [-45.695871861344536, -23.782310812480024], + [-45.69589886142462, -23.78229681241193], + [-45.69587886116492, -23.782232812425455], + [-45.69589586111792, -23.78218781236468], + [-45.69593486119104, -23.78215181225854], + [-45.695951861189855, -23.782123812206166], + [-45.69597186113699, -23.782071812135037], + [-45.696033861038416, -23.781934811926792], + [-45.69605386112563, -23.78193481188149], + [-45.696077861268066, -23.781948811834088], + [-45.69608886135378, -23.78196281181611], + [-45.696110861447096, -23.781961811765814], + [-45.69612786151039, -23.78195781172527], + [-45.69614086150246, -23.781933811683988], + [-45.69614486142299, -23.781897811657117], + [-45.6961338612026, -23.78183381165026], + [-45.69615086116898, -23.78179381159192], + [-45.69617286117064, -23.781758811524785], + [-45.69619686120004, -23.78173081145657], + [-45.69621186121151, -23.781710811412697], + [-45.69624286121753, -23.781662811318647], + [-45.696272861281045, -23.781637811238387], + [-45.696294861247665, -23.781589811164825], + [-45.69631186119791, -23.781543811103443], + [-45.69634386127824, -23.781521811020095], + [-45.69637086131251, -23.781490810943613], + [-45.69643186147624, -23.78145281078661], + [-45.69645086142991, -23.78140481071981], + [-45.6964658615114, -23.781410810688772], + [-45.696494861681074, -23.781426810631114], + [-45.696531861839745, -23.781425810546757], + [-45.696548861849244, -23.781401810496412], + [-45.69654886167684, -23.781337810464645], + [-45.6965638616077, -23.781287810405935], + [-45.69660986174638, -23.781264810290324], + [-45.696678861869536, -23.7811988101014], + [-45.6966918618993, -23.781188810066986], + [-45.69672286201297, -23.781180809992886], + [-45.696742862137995, -23.781194809954425], + [-45.696776862262034, -23.781185809873033], + [-45.69680786230026, -23.78114980978492], + [-45.69680986222278, -23.781117809764563], + [-45.69681586215742, -23.78108380973414], + [-45.69684686218221, -23.781042809643637], + [-45.696859862276625, -23.781056809621116], + [-45.69687986238539, -23.781064809579824], + [-45.69690086249859, -23.781072809536205], + [-45.696925862645294, -23.78108680948652], + [-45.69695386279976, -23.781098809429068], + [-45.696992862975314, -23.781100809341716], + [-45.69701686307994, -23.781100809287377], + [-45.69706086323954, -23.781088809181757], + [-45.69710486338576, -23.781071809073712], + [-45.697167863617466, -23.781055808923114], + [-45.69719586368572, -23.781035808849737], + [-45.69718686361949, -23.78102580886524], + [-45.69715186345068, -23.78101980894155], + [-45.697138863377816, -23.781013808967973], + [-45.697158863389596, -23.78098580890879], + [-45.697186863441715, -23.78095980883247], + [-45.697221863516226, -23.780930808738944], + [-45.697256863512706, -23.780872808630857], + [-45.69729586358581, -23.78083680852473], + [-45.69732186361034, -23.780803808449523], + [-45.69736286361142, -23.78073780832392], + [-45.69736286356293, -23.780719808315013], + [-45.69733886340434, -23.780699808359415], + [-45.697320863277355, -23.780681808391368], + [-45.69731386318221, -23.780657808395297], + [-45.697313863052926, -23.780609808371466], + [-45.69732286296562, -23.780562808327797], + [-45.697302862775956, -23.78052480835432], + [-45.69723486238783, -23.78049080849143], + [-45.69721286227027, -23.78048280853733], + [-45.69720386216095, -23.78045680854481], + [-45.69719286203761, -23.780428808555836], + [-45.69717786192361, -23.780410808580896], + [-45.69715986176969, -23.780382808607786], + [-45.697150861676626, -23.78036280861818], + [-45.69713386154853, -23.78034280864681], + [-45.69710286132173, -23.78030880870021], + [-45.69707186109495, -23.78027480875359], + [-45.69705686094871, -23.78024480877262], + [-45.697036860769934, -23.780210808801062], + [-45.697016860504846, -23.780144808813713], + [-45.696983860215504, -23.78009080886165], + [-45.69697685996414, -23.78000880883685], + [-45.69695385968868, -23.779943808856764], + [-45.696936859528364, -23.779911808879337], + [-45.69690985929207, -23.779867808918674], + [-45.696876859029636, -23.77982380897161], + [-45.69683785874638, -23.77978180903918], + [-45.696808858560644, -23.779759809093907], + [-45.69678485839135, -23.779735809136405], + [-45.696758858213215, -23.77971180918336], + [-45.69671485795403, -23.779686809270586], + [-45.69667785769027, -23.7796488093356], + [-45.69660285720692, -23.77959080947668], + [-45.69655185685514, -23.77954280956832], + [-45.6965018565078, -23.779494809657766], + [-45.696477856284666, -23.77945080969031], + [-45.69646585610563, -23.77940380969421], + [-45.696498856168844, -23.77937380960463], + [-45.69649685603624, -23.779327809586267], + [-45.696496855971596, -23.77930380957445], + [-45.696517855982364, -23.77927380951203], + [-45.69654185608169, -23.779271809456706], + [-45.69657685628818, -23.77929180938733], + [-45.6965948563963, -23.779302809352053], + [-45.696664856663936, -23.7792888091866], + [-45.69664685649387, -23.77925480921054], + [-45.69660785624843, -23.779226809284978], + [-45.69653985591408, -23.779212809432007], + [-45.696486855674785, -23.77920980955045], + [-45.69642785543898, -23.77921780968807], + [-45.696414855382265, -23.779217809717505], + [-45.696379855105754, -23.77917180977395], + [-45.69636185495725, -23.779145809801815], + [-45.69632685471834, -23.779113809865244], + [-45.6962608542419, -23.779043809979974], + [-45.69620685391485, -23.779009810085405], + [-45.69619085371579, -23.77896181009786], + [-45.69618885359935, -23.778921810082558], + [-45.696176853428504, -23.778877810087916], + [-45.69615985325741, -23.77884181010861], + [-45.696159853192775, -23.77881781009668], + [-45.696167853122596, -23.778778810059222], + [-45.696189853218605, -23.778778810009385], + [-45.69621785335141, -23.77878280994794], + [-45.69624485351777, -23.778800809895806], + [-45.69626685365137, -23.778814809852932], + [-45.696290853793805, -23.778828809805447], + [-45.69632385397005, -23.77884080973669], + [-45.6963608541584, -23.778850809657904], + [-45.69639385428616, -23.778844809580256], + [-45.69646085452178, -23.778823809418082], + [-45.69648685457596, -23.778801809348348], + [-45.69649585453446, -23.778771809313092], + [-45.696479854383874, -23.778741809334377], + [-45.69646285426117, -23.778723809364067], + [-45.696442854136265, -23.77870980940229], + [-45.696429854063396, -23.778703809428812], + [-45.69639085383402, -23.778681809506256], + [-45.69636385367322, -23.778665809559406], + [-45.69634885360781, -23.778665809593353], + [-45.69633085352922, -23.778665809634116], + [-45.696311853414066, -23.778653809671233], + [-45.69628085319269, -23.778621809725518], + [-45.69623485292741, -23.778597809817843], + [-45.69617085258896, -23.778575809951793], + [-45.69611385225695, -23.778544810065505], + [-45.69607085201012, -23.778522810152005], + [-45.696004851684506, -23.778508810294497], + [-45.695963851511046, -23.77851081038833], + [-45.695930851394074, -23.778520810468006], + [-45.69587385115889, -23.77852581059952], + [-45.69583185083566, -23.778473810668892], + [-45.69580985062395, -23.77843081069739], + [-45.695802850480256, -23.77838881069241], + [-45.69577685027538, -23.77835481073436], + [-45.695721849965416, -23.778328810845995], + [-45.695658849650265, -23.778313810981192], + [-45.695614849436794, -23.778305811076887], + [-45.69558184927126, -23.778297811147596], + [-45.695544849039905, -23.778271811218552], + [-45.69555584893163, -23.778213811164814], + [-45.69553784876695, -23.7781818111898], + [-45.69550284854433, -23.77815581125604], + [-45.695475848291885, -23.77810581129243], + [-45.69545584801348, -23.778034811302504], + [-45.6954488478429, -23.777982811292635], + [-45.69544884762746, -23.777902811252915], + [-45.69542684745067, -23.77787281128785], + [-45.695380847093865, -23.777814811363257], + [-45.695334846710125, -23.777746811433637], + [-45.69531284649035, -23.777700811460683], + [-45.6952928462415, -23.77764081147632], + [-45.69526184592051, -23.77757181151218], + [-45.695203845468264, -23.777497811606796], + [-45.695170845178936, -23.777443811654813], + [-45.695142844927545, -23.77739581169441], + [-45.695126844723156, -23.7773458117058], + [-45.6951158445405, -23.77729581170597], + [-45.69509384431537, -23.77724781173191], + [-45.69505684406777, -23.77721581179981], + [-45.69499084374764, -23.7772038119433], + [-45.69496484360728, -23.777193811997236], + [-45.69492984340611, -23.777175812067565], + [-45.69486784302798, -23.77713581218808], + [-45.69484984285795, -23.777101812212003], + [-45.69483084266741, -23.777061812235154], + [-45.69481884245888, -23.777003812233556], + [-45.694812842303506, -23.776955812223267], + [-45.69480584218408, -23.776922812222775], + [-45.69479484193414, -23.77684781221052], + [-45.69482084173253, -23.77673081209364], + [-45.69483584172526, -23.776703812046282], + [-45.69481584148727, -23.776647812063807], + [-45.694793841280884, -23.77660681209333], + [-45.69478884118641, -23.776579812091146], + [-45.69479484106985, -23.776526812051365], + [-45.69480384099067, -23.776482812009167], + [-45.69480384088298, -23.7764428119893], + [-45.69480184080693, -23.77641781198143], + [-45.694790840683545, -23.776389811992523], + [-45.69479684057239, -23.776338811953607], + [-45.694806340543884, -23.776312811919276], + [-45.694815840515304, -23.776286811884766], + [-45.69484084050582, -23.77624281180635], + [-45.694862840499496, -23.776204811737788], + [-45.69487284047583, -23.776179811702796], + [-45.69488584045706, -23.776151811659396], + [-45.69489684043774, -23.776126811622078], + [-45.69492484043604, -23.776080811535888], + [-45.694930840373324, -23.776047811505965], + [-45.69499284032072, -23.77592781130613], + [-45.69504384036271, -23.775860811157425], + [-45.695105840501256, -23.77581181099282], + [-45.695144840560914, -23.775770810884175], + [-45.69517684060084, -23.775733810793458], + [-45.69526084081646, -23.775677810575516], + [-45.69530784092987, -23.77564381045229], + [-45.695357841024155, -23.7755978103163], + [-45.69537884106721, -23.775579810259767], + [-45.69541884117438, -23.77555481015691], + [-45.69548584135086, -23.775511809983886], + [-45.69555884151041, -23.77545280978929], + [-45.695604841627535, -23.775421809669826], + [-45.69566384178522, -23.775384809517977], + [-45.69570684191622, -23.775363809410134], + [-45.695762842074224, -23.77533180926752], + [-45.69582784223389, -23.775285809097596], + [-45.69590584245567, -23.775241808899214], + [-45.6959378425629, -23.775229808820804], + [-45.69598084268581, -23.775205808711558], + [-45.69602484280771, -23.775179808599095], + [-45.696069842947416, -23.775158808486793], + [-45.69612284311389, -23.77513480835497], + [-45.69615584323364, -23.77512580827574], + [-45.69618784334894, -23.775116808198817], + [-45.696212843409434, -23.77509880813341], + [-45.696249843517, -23.775078808039687], + [-45.69626384353767, -23.77506380800056], + [-45.69628784358315, -23.775041807935256], + [-45.69632484366905, -23.775013807837723], + [-45.696356843744, -23.77498980775335], + [-45.69638984384479, -23.774973807670705], + [-45.696475844131015, -23.77494080745969], + [-45.696534844345315, -23.774924807318115], + [-45.69656784443806, -23.774905807234006], + [-45.69659684449982, -23.77488180715644], + [-45.69663184456905, -23.77485080706193], + [-45.6966688446415, -23.77481780696175], + [-45.69672084477139, -23.774781806826226], + [-45.69677184492922, -23.77475780669884], + [-45.696822845100435, -23.774738806574003], + [-45.69685784519118, -23.77471580648333], + [-45.69688784527078, -23.774696806406016], + [-45.696935845396716, -23.774665806281917], + [-45.69695984545823, -23.77464980621974], + [-45.696985845566346, -23.77464780615991], + [-45.697008845639644, -23.774637806102838], + [-45.69705384578743, -23.774619805991996], + [-45.697126846038465, -23.7745948058144], + [-45.697168846213565, -23.774591805717826], + [-45.69720884634215, -23.774574805618794], + [-45.697241846451114, -23.77456180553772], + [-45.69727384653143, -23.774539805454314], + [-45.69728784656823, -23.774530805418145], + [-45.69732284670747, -23.774525805336438], + [-45.69737284689316, -23.774513805217378], + [-45.69741084705882, -23.774513805131342], + [-45.697445847184575, -23.77450380504703], + [-45.69747984728168, -23.774484804960675], + [-45.69751284739325, -23.774472804880098], + [-45.69755284751385, -23.77445280477957], + [-45.6975798475966, -23.77443980471198], + [-45.697630847732796, -23.774407804580676], + [-45.69768684789355, -23.774376804438553], + [-45.6977188479954, -23.774362804359164], + [-45.6977698481236, -23.77432780422631], + [-45.69783184831048, -23.774296804070595], + [-45.69787884843732, -23.774267803949904], + [-45.69792184853867, -23.774235803836632], + [-45.69798284869435, -23.774194803678178], + [-45.6980388488658, -23.774167803538], + [-45.698071848942455, -23.774142803450964], + [-45.698098848995485, -23.77411880337793], + [-45.69811784900839, -23.774092803322098], + [-45.69816084913666, -23.774070803213803], + [-45.69818284918408, -23.77405280315511], + [-45.69821684929193, -23.774037803070573], + [-45.69825284939243, -23.77401680297884], + [-45.698287849510024, -23.77400380289302], + [-45.69833884970013, -23.773991802771594], + [-45.698367849778144, -23.773973802697153], + [-45.69841884994933, -23.773954802572195], + [-45.698453850085855, -23.773948802490022], + [-45.69848885020072, -23.77393480240384], + [-45.69853985039892, -23.77392580228388], + [-45.698602850657466, -23.773919802138238], + [-45.69862985077522, -23.7739198020771], + [-45.698645850844976, -23.773919802040886], + [-45.69868085094642, -23.773900801952248], + [-45.69870585099082, -23.77387680188373], + [-45.69873285107358, -23.773863801816226], + [-45.69876385117644, -23.77385180174008], + [-45.69880285132221, -23.77384280164729], + [-45.69894185184489, -23.773811801317244], + [-45.6989928520027, -23.77378780118985], + [-45.69904085212312, -23.77375480106486], + [-45.69910785231299, -23.77371680089439], + [-45.6991778525212, -23.773680800718093], + [-45.699249852751684, -23.773649800539655], + [-45.69927285280895, -23.77363380047967], + [-45.69929885287917, -23.773617800412886], + [-45.699333852967214, -23.773593800321727], + [-45.69936385306572, -23.773581800247843], + [-45.69939085312152, -23.773558800175362], + [-45.69943585324503, -23.77353180006008], + [-45.69949585342317, -23.77350079990889], + [-45.69954585357653, -23.773476799783857], + [-45.69969085405808, -23.773420799427722], + [-45.69974985425871, -23.77339979928376], + [-45.699765854312304, -23.773393799244605], + [-45.69984185457635, -23.77336879906011], + [-45.69987585472198, -23.773367798982665], + [-45.69995485502062, -23.773350798795377], + [-45.700007855205996, -23.773333798666894], + [-45.70007185539624, -23.773300798505648], + [-45.700119855567806, -23.773286798390025], + [-45.7001528556955, -23.773280798312385], + [-45.7002008559021, -23.773279798203216], + [-45.70025685618129, -23.773292798082778], + [-45.70030785643603, -23.773304797973335], + [-45.70036085666706, -23.773304797853335], + [-45.70042485694876, -23.77330579770893], + [-45.70046885712715, -23.77330079760675], + [-45.700529857374356, -23.773293797465197], + [-45.70059185760427, -23.7732787973174], + [-45.70068885796261, -23.77325479708585], + [-45.700749858188175, -23.773239796940295], + [-45.700830858509, -23.773227796751023], + [-45.70090585881724, -23.773220796577686], + [-45.70094485898452, -23.773219796488878], + [-45.70099585920694, -23.77321979637342], + [-45.70106785951012, -23.77321579620832], + [-45.70125886035088, -23.773218795777414], + [-45.70135186074296, -23.773213795564274], + [-45.701428861067896, -23.77320979538796], + [-45.70145086115039, -23.77320479533559], + [-45.7014728612328, -23.773199795283343], + [-45.70152786147263, -23.77319979515881], + [-45.70163086187863, -23.77318379491775], + [-45.70166286202351, -23.773185794846263], + [-45.7016918621339, -23.773179794777576], + [-45.70172186226459, -23.773179794709637], + [-45.70174786237529, -23.77317879465028], + [-45.701777862522235, -23.773184794585354], + [-45.70182886275273, -23.77318779447134], + [-45.7018648629285, -23.77319479439325], + [-45.70189986311349, -23.773206794319954], + [-45.70193686329361, -23.77321379423957], + [-45.701963863438266, -23.77322379418341], + [-45.70204386381395, -23.773233794007236], + [-45.702162864373186, -23.773248793745086], + [-45.702250864843045, -23.773280793561742], + [-45.70230886512026, -23.773289793434785], + [-45.70235886536245, -23.773298793326067], + [-45.70241886568598, -23.77332179320162], + [-45.70245486585368, -23.773325793122023], + [-45.702508866105305, -23.773331793002676], + [-45.70253286622884, -23.773338792951833], + [-45.70255186631433, -23.773339792909304], + [-45.70261386658473, -23.773339792768873], + [-45.70266686683459, -23.77334679265239], + [-45.70272086707006, -23.773346792530095], + [-45.70276286728272, -23.77335779244037], + [-45.702802867521775, -23.773381792361675], + [-45.70282886775906, -23.77342779232556], + [-45.702831867847536, -23.773455792332616], + [-45.702825867945286, -23.773501792368954], + [-45.70282886804992, -23.773535792378958], + [-45.70284186817665, -23.77356179236242], + [-45.70287286834951, -23.77357579229914], + [-45.70290086845274, -23.773568792232325], + [-45.70293486859286, -23.773565792153867], + [-45.70295686875885, -23.773591792116825], + [-45.70298286897458, -23.773629792076775], + [-45.70299286912585, -23.77366979207386], + [-45.703002369264304, -23.773705792070217], + [-45.70302021647201, -23.77375403405368], + [-45.703034369636775, -23.77379229204059], + [-45.70304186974625, -23.773820792037693], + [-45.70304786985858, -23.77385279203989], + [-45.703007869697615, -23.77385779213295], + [-45.702971869540676, -23.773857792214482], + [-45.70296486965286, -23.773910792256597], + [-45.70295786972206, -23.773947792290713], + [-45.7029468697441, -23.77397379232859], + [-45.70294486981349, -23.774002792347392], + [-45.702976869971856, -23.77400979227842], + [-45.7029848699556, -23.77399079225085], + [-45.703005870071365, -23.77399979220778], + [-45.70301387024096, -23.77404979221445], + [-45.703010870362476, -23.77409979224595], + [-45.70300187039871, -23.774127792280208], + [-45.70299687042273, -23.774144792299925], + [-45.70301787058966, -23.774172792266242], + [-45.70305487077518, -23.774181792186916], + [-45.703071870876315, -23.7741917921533], + [-45.70308387099322, -23.774215792138033], + [-45.703080870998996, -23.774222792148343], + [-45.703075871023024, -23.774239792167975], + [-45.70306587101181, -23.774251792196562], + [-45.70305187101532, -23.7742757922402], + [-45.703042871021914, -23.77429279226897], + [-45.70302487098924, -23.774309792318228], + [-45.7029868708316, -23.774312792405762], + [-45.70298087088897, -23.774343792434674], + [-45.702933870745944, -23.774366792552456], + [-45.70291187066623, -23.774372792605195], + [-45.70290287069158, -23.77439679263749], + [-45.702924870846715, -23.774418792598603], + [-45.70295687103211, -23.774435792534533], + [-45.70296987113728, -23.774453792513974], + [-45.702963871210734, -23.77449079254592], + [-45.70297687133745, -23.774516792529365], + [-45.70300587149892, -23.77452979247003], + [-45.70301487159475, -23.774550792460087], + [-45.703000871598356, -23.774574792503632], + [-45.702979871522984, -23.774580792554183], + [-45.70295787145934, -23.774592792609965], + [-45.70294787142919, -23.774597792635078], + [-45.702957871502456, -23.774608792617897], + [-45.7029578715186, -23.77461479262083], + [-45.70295787154015, -23.774622792624736], + [-45.70295187155982, -23.77463979264681], + [-45.70290387138818, -23.77465379276246], + [-45.702911871517344, -23.774688792761633], + [-45.70294087171115, -23.77471379270832], + [-45.70298387190133, -23.774714792611444], + [-45.70315987288421, -23.774794792252376], + [-45.703186873020805, -23.77480179219477], + [-45.70326587351067, -23.77485579204257], + [-45.703295873633394, -23.77485279197315], + [-45.7032798734505, -23.774810791988575], + [-45.70324987327121, -23.77479279204757], + [-45.70326387324069, -23.774758791999062], + [-45.70329587334516, -23.774745791920132], + [-45.70332587351368, -23.774759791859132], + [-45.70334687368871, -23.7747907918269], + [-45.70337087379339, -23.77479079177255], + [-45.703370873736816, -23.77476979176219], + [-45.7033788737017, -23.774743791731176], + [-45.70342387387634, -23.77473579162526], + [-45.70346287398708, -23.7747137915261], + [-45.7035128741782, -23.774703791407862], + [-45.703541874331584, -23.774713791347157], + [-45.7035668744406, -23.77471379129056], + [-45.70358587444798, -23.774685791233654], + [-45.70359387442358, -23.77466379120462], + [-45.703586874320365, -23.774636791207165], + [-45.703578874223474, -23.774613791213866], + [-45.70360287421233, -23.774570791138228], + [-45.70361187415733, -23.77453579110055], + [-45.7035818739565, -23.774509791155626], + [-45.703477873435716, -23.774484791378782], + [-45.703402873011775, -23.774448791530876], + [-45.70334487273454, -23.774439791657738], + [-45.70332387259722, -23.774422791696903], + [-45.70333987255924, -23.774382791640843], + [-45.70336687260695, -23.774356791566916], + [-45.70337787264945, -23.774354791541015], + [-45.703385872630484, -23.77433479151294], + [-45.70336687248843, -23.774312791545146], + [-45.70336687243184, -23.77429179153468], + [-45.703390872536545, -23.774291791480337], + [-45.7034438728376, -23.77431779137316], + [-45.70347387303572, -23.774342791317615], + [-45.70351387326135, -23.774361791236434], + [-45.70354887343274, -23.774368791160573], + [-45.70357487358654, -23.774383791109106], + [-45.70360487377928, -23.77440679105258], + [-45.703622873925084, -23.77443179102421], + [-45.703648874068094, -23.77444279097069], + [-45.70367887421506, -23.774448790905776], + [-45.70370587435165, -23.77445579084803], + [-45.70373487447808, -23.774455790782344], + [-45.703775874654156, -23.774454790689017], + [-45.70381987484331, -23.774453790588854], + [-45.70383687494974, -23.774465790556313], + [-45.703878875165195, -23.774477790467138], + [-45.70394087551631, -23.77450779034154], + [-45.7040038758152, -23.77451679020334], + [-45.70404987596187, -23.77449679008921], + [-45.704090876154105, -23.774501789998784], + [-45.704114876296494, -23.77451578995144], + [-45.7041668765502, -23.774525789838556], + [-45.70418987658047, -23.77449978977356], + [-45.70420887653929, -23.774453789707795], + [-45.70426987673257, -23.77442678955628], + [-45.70430787674736, -23.774370789442482], + [-45.70433287677824, -23.774341789371597], + [-45.7043598768448, -23.774322789300953], + [-45.704390876947635, -23.774310789224906], + [-45.70441387699936, -23.774292789163837], + [-45.70444287704778, -23.774263789083808], + [-45.70447487711455, -23.774236788997953], + [-45.704483877113404, -23.774221788970245], + [-45.70450287719343, -23.774220788926634], + [-45.70451487724846, -23.774221788900014], + [-45.70450787726917, -23.774240788925244], + [-45.70449987728543, -23.774259788952744], + [-45.70448887731028, -23.774286788991024], + [-45.704489877341565, -23.77429678899364], + [-45.70451687746469, -23.774298788933546], + [-45.704540877528856, -23.774283788871692], + [-45.704565877648655, -23.77428778881712], + [-45.704584877763786, -23.77429978878002], + [-45.70460787792606, -23.77432278873925], + [-45.70461387796295, -23.774326788727628], + [-45.7046318780064, -23.7743137886805], + [-45.704637877932946, -23.774276788648564], + [-45.704669878034714, -23.774262788569164], + [-45.7046838780473, -23.774244788528573], + [-45.704665877909555, -23.774222788558486], + [-45.70463287773059, -23.774209788626724], + [-45.70459787758343, -23.774211788706967], + [-45.70456987746135, -23.77421178877035], + [-45.70456087733326, -23.774178788774556], + [-45.704611877461296, -23.774143788641677], + [-45.704620877465544, -23.77413078861484], + [-45.70472887782054, -23.77408778834895], + [-45.70481687816379, -23.774072788142213], + [-45.704888878423844, -23.77405278796928], + [-45.70497987876945, -23.77403378775368], + [-45.70501987892224, -23.774025787659184], + [-45.70505687905126, -23.774013787569427], + [-45.70510587914362, -23.773968787436186], + [-45.705092879030374, -23.773947787455192], + [-45.705108879016606, -23.773916787403632], + [-45.70513887910432, -23.773900787327772], + [-45.705159879131244, -23.7738767872683], + [-45.70516587912505, -23.773864787248826], + [-45.70516587901999, -23.773825787229526], + [-45.70518287901868, -23.773797787177166], + [-45.70520687909101, -23.773785787116875], + [-45.7052488793361, -23.773808787033143], + [-45.705284879498386, -23.773810786952577], + [-45.70530887953031, -23.773783786884835], + [-45.705348879712815, -23.773786786795714], + [-45.70537287976619, -23.773767786731977], + [-45.70537587972269, -23.773746786714838], + [-45.70535987957753, -23.773718786737227], + [-45.70538387965792, -23.773709786678356], + [-45.70541687981795, -23.773715786606626], + [-45.70545087990966, -23.77369478651919], + [-45.7054358797931, -23.7736757865438], + [-45.70540387963464, -23.77366878661278], + [-45.70539287951134, -23.77364078662393], + [-45.705378879399014, -23.773621786646164], + [-45.70536087929372, -23.773611786682046], + [-45.705349879194564, -23.773592786697517], + [-45.70538287927106, -23.77356778661047], + [-45.705390879297795, -23.773564786590782], + [-45.705435879496775, -23.773565786489435], + [-45.70546587952779, -23.773528786403126], + [-45.705498879617856, -23.77350878631854], + [-45.705551879789574, -23.773486786187572], + [-45.705581879914995, -23.77348478611864], + [-45.705620880095815, -23.773488786032257], + [-45.70564888021788, -23.773488785968837], + [-45.7056668803152, -23.773495785931487], + [-45.70571188051137, -23.773495785829535], + [-45.70573388059117, -23.773489785776786], + [-45.70577988079976, -23.773492785674048], + [-45.70584688109458, -23.773493785522774], + [-45.705870881185696, -23.773488785466], + [-45.705910881271194, -23.773455785359058], + [-45.70594288134065, -23.77342978527371], + [-45.70595488125829, -23.77337978522186], + [-45.70594188103188, -23.77331678522007], + [-45.705951880940816, -23.773266785172726], + [-45.705986880999085, -23.77323178507619], + [-45.706025881101795, -23.773206784975457], + [-45.70604988105281, -23.773149784892905], + [-45.70606588103375, -23.773116784840365], + [-45.70606888097946, -23.77309178482117], + [-45.70605588083658, -23.77305978483483], + [-45.70602388064323, -23.773039784897353], + [-45.706002880500435, -23.773020784935557], + [-45.70601388047569, -23.77299378489725], + [-45.7060428805617, -23.77297878482416], + [-45.70605988061155, -23.772969784781242], + [-45.706062880479244, -23.77291578474775], + [-45.70607188042414, -23.77288078470998], + [-45.706050880208615, -23.77283478473481], + [-45.70609588028636, -23.772790784611132], + [-45.70614488039757, -23.772752784481387], + [-45.706210880617895, -23.77272778431952], + [-45.70622988067654, -23.77271878427208], + [-45.706246880653666, -23.77268278421574], + [-45.70624688057554, -23.772653784201395], + [-45.70624688053245, -23.77263778419349], + [-45.70622588032511, -23.772594784219752], + [-45.70623488028348, -23.77256478418457], + [-45.70625688027428, -23.77252578411543], + [-45.70629088035522, -23.77250078402602], + [-45.70630788039429, -23.772487783981163], + [-45.706344880423636, -23.77243878387307], + [-45.70635688029548, -23.772371783812716], + [-45.70631988002369, -23.77233078387633], + [-45.70631187989729, -23.77229678387756], + [-45.70632587988281, -23.772268783832075], + [-45.70634487991451, -23.772249783779593], + [-45.706368879992155, -23.772239783720362], + [-45.70639588000481, -23.77220078363988], + [-45.70642588002246, -23.77215878355114], + [-45.7064468800413, -23.77213178349024], + [-45.70644687989854, -23.772078783463986], + [-45.70644687984467, -23.772058783454202], + [-45.706428879666475, -23.77202178347665], + [-45.7064208795697, -23.771998783483358], + [-45.70642387952888, -23.771978783466704], + [-45.706453879605775, -23.77195878338879], + [-45.706470879650226, -23.771947783344913], + [-45.70646687954663, -23.771915783338073], + [-45.70644087935794, -23.77188778338322], + [-45.70643287927182, -23.771868783391884], + [-45.706432879185634, -23.771836783376067], + [-45.706468879226705, -23.771793783273257], + [-45.70660287976781, -23.771777782961852], + [-45.70664387987374, -23.771750782855616], + [-45.706682879957576, -23.77171878275147], + [-45.706725880056126, -23.771685782637807], + [-45.70679588034504, -23.771679782476305], + [-45.70682588052708, -23.77169878241773], + [-45.70684988065319, -23.771706782367254], + [-45.706902880873464, -23.771702782245274], + [-45.70692188095627, -23.77170278220223], + [-45.706948881033576, -23.771687782133657], + [-45.70698588114373, -23.77166878204039], + [-45.707002881217726, -23.771668782001882], + [-45.70703988133864, -23.771653781910764], + [-45.70708588146372, -23.771625781792615], + [-45.707114881573965, -23.771619781724006], + [-45.707150881690545, -23.77160478163505], + [-45.70720588185479, -23.771576781496616], + [-45.70726288203053, -23.771549781354146], + [-45.70729688217881, -23.77154978127713], + [-45.70732988232261, -23.77154978120238], + [-45.70740188267689, -23.7715647810468], + [-45.70746588302048, -23.771588780913646], + [-45.70756988348467, -23.77159278068003], + [-45.70762088371232, -23.771594780565565], + [-45.707671883934594, -23.771594780450016], + [-45.7077548842883, -23.77159178026048], + [-45.70779488441692, -23.771574780161473], + [-45.707824884520726, -23.771564780088653], + [-45.70788088471357, -23.771545779952344], + [-45.70790788482597, -23.771543779890195], + [-45.70794488498184, -23.77154177980543], + [-45.707993885195386, -23.771541779694413], + [-45.70803088535671, -23.77154177961061], + [-45.708070885531086, -23.77154177952], + [-45.7080918855741, -23.771523779463564], + [-45.70809788558145, -23.77151677944654], + [-45.70812388568931, -23.771514779386603], + [-45.708139885764524, -23.771516779351405], + [-45.70815988592441, -23.77154377931937], + [-45.708180886050926, -23.77155677927823], + [-45.708230886268915, -23.77155677916499], + [-45.7082708864433, -23.77155677907438], + [-45.708306886581305, -23.771549778989314], + [-45.70833288667041, -23.77154077892603], + [-45.70834588666245, -23.77151677888477], + [-45.70836588673882, -23.77151277883742], + [-45.70840888691008, -23.771506778737], + [-45.70847488719512, -23.771505778587002], + [-45.70855188753072, -23.771505778412568], + [-45.70860888777918, -23.77150577828345], + [-45.7086648880286, -23.77150777815765], + [-45.708729888311964, -23.77150777801043], + [-45.70878788856477, -23.771507777879044], + [-45.708883888843076, -23.771455777635822], + [-45.7089508891648, -23.7714667774895], + [-45.709005889450246, -23.77148377737332], + [-45.70905488966929, -23.77148577726326], + [-45.709081889830095, -23.771501777210016], + [-45.70910388992601, -23.771501777160168], + [-45.70911989001182, -23.77150777712696], + [-45.709141890110445, -23.77150877707757], + [-45.70917089023148, -23.77150677701083], + [-45.70920489037694, -23.77150577693332], + [-45.70922089042512, -23.771497776893174], + [-45.70925589057774, -23.771497776813884], + [-45.70928989062085, -23.77145877671755], + [-45.709329890819454, -23.77146777663143], + [-45.70937289098535, -23.77145977653002], + [-45.70946389137925, -23.771458776323374], + [-45.70953889172232, -23.771464776156485], + [-45.70961489215055, -23.77150077600207], + [-45.70967489238782, -23.771491775861662], + [-45.709709892421905, -23.77144777576062], + [-45.70977589274732, -23.771461775618008], + [-45.709865893142265, -23.771462775414626], + [-45.70993189342449, -23.77146077526414], + [-45.71000189376196, -23.771472775111487], + [-45.71007089402771, -23.771459774948735], + [-45.710127894305685, -23.771470774825076], + [-45.71019989464108, -23.771478774665937], + [-45.71024689486487, -23.771485774562866], + [-45.71028189504162, -23.771494774488048], + [-45.71030889510814, -23.771475774417528], + [-45.71033789520759, -23.771465774346854], + [-45.71039489545335, -23.77146477421724], + [-45.710489895789216, -23.771435773987687], + [-45.71056689618688, -23.771458773824552], + [-45.71056689616262, -23.771449773820173], + [-45.71062189636724, -23.77143677368913], + [-45.71066889646161, -23.771395773562368], + [-45.710743896804736, -23.77140177339538], + [-45.710825897092036, -23.771375773196723], + [-45.71095789763233, -23.771362772891308], + [-45.71104989801713, -23.77135677267988], + [-45.71120789875426, -23.771374772330784], + [-45.711240899035566, -23.771425772281244], + [-45.71129189917967, -23.77139677215136], + [-45.71133689945394, -23.771425772063736], + [-45.7113678995567, -23.771413771987547], + [-45.71142589984182, -23.771425771862084], + [-45.71146989993658, -23.77138977174467], + [-45.71157190042695, -23.77140677152193], + [-45.711667900813076, -23.771394771298475], + [-45.71179490149046, -23.77144077103345], + [-45.71185890175328, -23.77143477088551], + [-45.7119539022131, -23.771451770678627], + [-45.711998902425385, -23.771457770579595], + [-45.71205790280655, -23.771503770468613], + [-45.712097902980815, -23.771503770377986], + [-45.71215290322056, -23.77150377025338], + [-45.712203903442784, -23.771503770137823], + [-45.71225590368294, -23.77150877002251], + [-45.712263903747484, -23.77151977000982], + [-45.71228190389598, -23.771545769981827], + [-45.712336904211064, -23.771573769871026], + [-45.712400904543934, -23.77159376973595], + [-45.712493905097446, -23.77164876955233], + [-45.712555905470126, -23.771686769430648], + [-45.712574905652595, -23.77172376940591], + [-45.712586905747955, -23.771739769386507], + [-45.7125919058156, -23.77175676938365], + [-45.712675906267954, -23.7717887692091], + [-45.71270490644285, -23.771806769152242], + [-45.712723906593006, -23.771831769121572], + [-45.71275690682573, -23.77186476906305], + [-45.71276790690873, -23.77187776904456], + [-45.71280990716724, -23.771905768963222], + [-45.71282390729292, -23.771929768943384], + [-45.71283090736113, -23.77194376893435], + [-45.71285090749955, -23.77196276889847], + [-45.71287390763477, -23.771975768852784], + [-45.712902907796284, -23.771988768793403], + [-45.71294090799419, -23.772000768713248], + [-45.71295390811823, -23.77202576869615], + [-45.712958908191176, -23.772044768694197], + [-45.7129589082424, -23.772063768703617], + [-45.71296990833077, -23.772078768686026], + [-45.71299290846071, -23.77208976863935], + [-45.713014908580796, -23.772098768593985], + [-45.71304890875589, -23.772108768521907], + [-45.71309290899078, -23.77212476843008], + [-45.71312990921407, -23.772147768357634], + [-45.71314790933292, -23.772162768324147], + [-45.7131639094808, -23.77219176830221], + [-45.713178909621625, -23.772219768282064], + [-45.71320090977682, -23.77224176824312], + [-45.71322290988074, -23.772244768194717], + [-45.713281910073206, -23.772220768049213], + [-45.71331091018352, -23.772214767980504], + [-45.71334091032496, -23.77221876791447], + [-45.71338091051009, -23.772222767825863], + [-45.71340691062343, -23.772222767766934], + [-45.71346091080752, -23.77220376763513], + [-45.713497910928375, -23.772188767543884], + [-45.713521911033006, -23.7721887674895], + [-45.71353791110274, -23.772188767453244], + [-45.71355091115941, -23.772188767423785], + [-45.71356791123618, -23.772189767385733], + [-45.71358591131459, -23.77218976734496], + [-45.713639911549976, -23.772189767222578], + [-45.713668911684444, -23.772192767158426], + [-45.713711911917585, -23.772209767069267], + [-45.71374991209401, -23.772213766985175], + [-45.71380291227113, -23.77219376685524], + [-45.71382791235046, -23.772182766793126], + [-45.71385891245322, -23.772170766716926], + [-45.71388291255778, -23.77217076666257], + [-45.71394291282744, -23.77217376652805], + [-45.71399291306687, -23.772181766418726], + [-45.71403091326754, -23.77219476633905], + [-45.71407391349537, -23.772209766248906], + [-45.71417891408232, -23.77225776603471], + [-45.71424091443876, -23.772289765909978], + [-45.714296914771765, -23.77232276579933], + [-45.71433991506967, -23.772363765722144], + [-45.7143799153248, -23.772393765646296], + [-45.71446191577114, -23.772426765476816], + [-45.71449991597174, -23.772439765397117], + [-45.71455791627043, -23.772456765273976], + [-45.71464091670225, -23.772482765098715], + [-45.71468591697112, -23.772509765010078], + [-45.71474191727171, -23.772530764893553], + [-45.7148049176299, -23.77256176476608], + [-45.714879918059076, -23.772599764614874], + [-45.71492291831115, -23.772623764529204], + [-45.71494591846265, -23.77264276448653], + [-45.71499991872226, -23.772651764368554], + [-45.71505091899032, -23.772668764261315], + [-45.715090919256305, -23.77270276418743], + [-45.71512991953143, -23.77274176411831], + [-45.71515591976873, -23.772787764082047], + [-45.71516491991303, -23.77282676408095], + [-45.71517792001012, -23.77284176405887], + [-45.71519792020237, -23.772880764032724], + [-45.71522292037604, -23.772904763987942], + [-45.71524892055675, -23.772929763941374], + [-45.715280920750104, -23.772949763878685], + [-45.71529192084658, -23.7729677638627], + [-45.71529992094071, -23.772989763855378], + [-45.71532092122902, -23.773062763843793], + [-45.71533892139373, -23.773094763818786], + [-45.715367921595565, -23.773122763766874], + [-45.715394921764464, -23.77314176371511], + [-45.71543392204499, -23.77318276364695], + [-45.71546092224883, -23.773214763601455], + [-45.71549992251317, -23.773249763530295], + [-45.71552192267918, -23.773275763493377], + [-45.715555922918995, -23.77330976343305], + [-45.71557992308282, -23.773331763389468], + [-45.71559592322271, -23.77335776336606], + [-45.71562492337327, -23.773366763304796], + [-45.71570292378604, -23.773393763141335], + [-45.71573692396923, -23.773406763070625], + [-45.715760924117, -23.773422763024183], + [-45.71577692421907, -23.77343476299385], + [-45.715821924455604, -23.77344976289918], + [-45.715834924533844, -23.773457762873694], + [-45.715864924672665, -23.773460762807158], + [-45.71590992486878, -23.77346076270516], + [-45.71593692498106, -23.773458762642978], + [-45.715965925123626, -23.773464762580176], + [-45.71600592529799, -23.77346476248952], + [-45.716046925460425, -23.773458762393645], + [-45.71608192559144, -23.77345076231033], + [-45.71614292580875, -23.773432762163306], + [-45.716196926025255, -23.773425762037395], + [-45.716222926133206, -23.773423761977487], + [-45.71625092629557, -23.773438761921415], + [-45.71627092642053, -23.773452761882996], + [-45.71629792655168, -23.773457761824215], + [-45.716318926640476, -23.77345676177614], + [-45.716346926727475, -23.773443761706258], + [-45.71639192692628, -23.773444761604754], + [-45.716436927146624, -23.773453761507213], + [-45.71648492737477, -23.773460761401843], + [-45.71653592765629, -23.773482761297128], + [-45.71655192776913, -23.773498761268733], + [-45.71657092790314, -23.773517761235013], + [-45.716589928039916, -23.77353776120178], + [-45.71662092821814, -23.773553761139485], + [-45.71663392833949, -23.773577761121782], + [-45.71664192842562, -23.773596761113083], + [-45.71667192865062, -23.773631761062354], + [-45.71672492901913, -23.773682760967397], + [-45.71676192923973, -23.77370476089433], + [-45.71684192967728, -23.77373776072923], + [-45.71685992981501, -23.773759760699328], + [-45.71688592998495, -23.773780760650713], + [-45.7169019301167, -23.773803760625817], + [-45.71693393034247, -23.77383576056906], + [-45.71698793072332, -23.773889760473295], + [-45.71700793086977, -23.773911760438764], + [-45.7170879313856, -23.77397376028807], + [-45.71711693156592, -23.773993760232162], + [-45.71714193171534, -23.774008760182873], + [-45.71716793189057, -23.774031760135237], + [-45.717230932305384, -23.774083760018108], + [-45.71726793255016, -23.77411475994952], + [-45.717321932855626, -23.774140759839945], + [-45.71734093298693, -23.774158759805722], + [-45.717358933124665, -23.774180759775817], + [-45.71737293324767, -23.774203759755373], + [-45.71737993335103, -23.77423075975284], + [-45.71738493344559, -23.77425775975484], + [-45.717387933566464, -23.774297759767688], + [-45.71739493366444, -23.774322759764175], + [-45.71741093380965, -23.774350759741722], + [-45.71743993403309, -23.774386759693773], + [-45.71745393415073, -23.774407759672354], + [-45.717481934350936, -23.774436759623185], + [-45.717492934490465, -23.774470759615074], + [-45.717500934608964, -23.77450175961212], + [-45.717525934906654, -23.774571759589982], + [-45.717533934992716, -23.77459075958129], + [-45.71755293513759, -23.77461375954951], + [-45.71756693524713, -23.77463175952662], + [-45.71756893531785, -23.77465475953347], + [-45.71757393542318, -23.774685759537427], + [-45.71759493561449, -23.774722759508094], + [-45.7176349358346, -23.774739759425767], + [-45.71770593619796, -23.774759759274648], + [-45.717738936390305, -23.774777759208696], + [-45.71777393657795, -23.774790759135787], + [-45.71781793679664, -23.77480075904098], + [-45.71786093704608, -23.774823758954774], + [-45.71788293718506, -23.774839758912883], + [-45.717897937298936, -23.77485775888774], + [-45.71791093740144, -23.77487475886663], + [-45.71793093752102, -23.77488675882721], + [-45.71795093760816, -23.77488675878189], + [-45.71797093766831, -23.774876758731565], + [-45.71799193779764, -23.77489075869087], + [-45.718001937881596, -23.774905758675594], + [-45.71801093796398, -23.77492175866307], + [-45.71801893802317, -23.774930758649383], + [-45.71804793814948, -23.774930758583643], + [-45.71808693828711, -23.774918758489274], + [-45.71811193837452, -23.774910758428636], + [-45.71813393847574, -23.77491275837975], + [-45.71814693853779, -23.774914758351244], + [-45.718159938602554, -23.77491775832332], + [-45.71817293868349, -23.774926758298328], + [-45.718186938822704, -23.774955758280786], + [-45.718213938967345, -23.77496575822454], + [-45.71825293913726, -23.774965758136133], + [-45.7183009392629, -23.774934758012], + [-45.718333939277294, -23.774886757913553], + [-45.718371939359265, -23.774855757812112], + [-45.71839293940229, -23.774837757755595], + [-45.718452939590975, -23.774810757606307], + [-45.71849793973044, -23.774789757493895], + [-45.718527939799166, -23.774766757414593], + [-45.71857193984264, -23.774711757287672], + [-45.71861693995245, -23.774679757169928], + [-45.718651940016066, -23.774646757074315], + [-45.718671940008804, -23.774611757011666], + [-45.71867693990933, -23.774566756978125], + [-45.718689939858145, -23.774526756928925], + [-45.7186989398326, -23.774502756896652], + [-45.71871793983719, -23.774473756839374], + [-45.71873093984533, -23.774455756800954], + [-45.718752939881824, -23.774433756740265], + [-45.71879093997196, -23.77440575664031], + [-45.71884194011877, -23.77437775651088], + [-45.7188689402149, -23.774369756445665], + [-45.71888994028478, -23.77436175639418], + [-45.71892694040023, -23.774344756301907], + [-45.718997940628675, -23.774314756126156], + [-45.71904894081323, -23.77430075600362], + [-45.71909994101396, -23.774292755883994], + [-45.719122941087186, -23.77428275582692], + [-45.719145941130826, -23.774261755764456], + [-45.71916694108479, -23.774210755691673], + [-45.71917794104915, -23.774179755651552], + [-45.71917794095749, -23.774145755634713], + [-45.71915694078233, -23.774114755667043], + [-45.7191129404423, -23.774059755739668], + [-45.719093940240874, -23.77401575576117], + [-45.71908594007386, -23.773966755755087], + [-45.71907293986361, -23.773909755756456], + [-45.71911493984435, -23.773834755624282], + [-45.71914993992952, -23.773809755532575], + [-45.71919794006316, -23.773781755409917], + [-45.719219940159086, -23.773781755360044], + [-45.71925094025362, -23.77376675528238], + [-45.71931894050147, -23.773748755119357], + [-45.7193699406941, -23.773737754998272], + [-45.71943394087058, -23.77369975483442], + [-45.7194739409936, -23.773680754734475], + [-45.719521941094975, -23.773640754605914], + [-45.719536941111734, -23.773622754562968], + [-45.719564941217556, -23.773616754496572], + [-45.719642941508994, -23.773598754310868], + [-45.71966994162658, -23.77359875424965], + [-45.71969894173679, -23.773592754180903], + [-45.719758941901226, -23.77355675402717], + [-45.71978594197299, -23.773539753957493], + [-45.71982694208427, -23.77351475385228], + [-45.71986994221772, -23.773494753744856], + [-45.719900942320436, -23.77348275366874], + [-45.719946942477726, -23.773466753556583], + [-45.72000094264566, -23.773441753421807], + [-45.720032942755424, -23.773430753343806], + [-45.72005194281672, -23.77342275329684], + [-45.72009694298316, -23.773411753189365], + [-45.720144943157244, -23.77339875307412], + [-45.72017994329631, -23.773393752992348], + [-45.7202259434698, -23.773383752883078], + [-45.72030594376171, -23.773362752691387], + [-45.720361943959944, -23.77334575255606], + [-45.72043494420252, -23.77331775237674], + [-45.720542944538295, -23.773267752107184], + [-45.72058594465287, -23.773240751996365], + [-45.720619944768636, -23.773228751913436], + [-45.720663944884855, -23.773200751799784], + [-45.72072094501738, -23.773157751649357], + [-45.72078794510976, -23.773083751460995], + [-45.72085594524432, -23.77302375127724], + [-45.72094694547362, -23.772961751040384], + [-45.720986945564356, -23.77293075093442], + [-45.72104594571351, -23.77289075078101], + [-45.72111594591878, -23.77285375060404], + [-45.72116694606554, -23.77282575047458], + [-45.72125394634756, -23.772789750259548], + [-45.72132294656197, -23.77275775008735], + [-45.72137694673247, -23.77273374995313], + [-45.72145994698092, -23.772691749744247], + [-45.72155694726607, -23.772640749499136], + [-45.72162894748535, -23.772605749318668], + [-45.72169694769808, -23.77257474914921], + [-45.72177794786499, -23.77250574893155], + [-45.72185094800781, -23.772440748734038], + [-45.72189694810035, -23.772400748610004], + [-45.72195894817903, -23.77232974843445], + [-45.72201194820777, -23.772254748277323], + [-45.72203194821668, -23.772225748217693], + [-45.7220589482157, -23.772181748134813], + [-45.7220959482556, -23.772136748028753], + [-45.72213494823672, -23.772066747905818], + [-45.72215694826789, -23.772042747844075], + [-45.72218594827293, -23.77199774775615], + [-45.72222394829831, -23.771945747644434], + [-45.722277948363654, -23.771882747490896], + [-45.72230794839729, -23.771846747405178], + [-45.722351948478426, -23.771805747285196], + [-45.722421948643245, -23.771753747100824], + [-45.72249094884402, -23.7717167469262], + [-45.72257194908912, -23.77167674672281], + [-45.72263294926051, -23.77164174656729], + [-45.72266094929892, -23.771610746488538], + [-45.72269294937631, -23.771587746404602], + [-45.722737949491474, -23.771557746287815], + [-45.72280494975916, -23.771548746131423], + [-45.72290695016579, -23.771534745893256], + [-45.72293095018952, -23.771504745824057], + [-45.72295795020191, -23.771465745743686], + [-45.722981950252574, -23.77144574567936], + [-45.72301695025681, -23.77139074557296], + [-45.72305595036465, -23.771367745473185], + [-45.72310195057324, -23.771370745370337], + [-45.723197950856616, -23.771320745128076], + [-45.72327295102426, -23.77126174492898], + [-45.723296951018284, -23.771220744854336], + [-45.72330495087244, -23.771153744803165], + [-45.7233019507704, -23.771120744793723], + [-45.72336795100398, -23.771100744634246], + [-45.72341095114819, -23.771084744528792], + [-45.723466951313966, -23.77105574438764], + [-45.72347895123953, -23.77100874433719], + [-45.72352695141897, -23.770997744222914], + [-45.72356595158891, -23.770997744134476], + [-45.72362995186769, -23.770997743989362], + [-45.72370495228883, -23.771032743836592], + [-45.723782952666454, -23.771046743666638], + [-45.72381395283654, -23.771059743602752], + [-45.72390095324526, -23.771070743410917], + [-45.72397895362818, -23.771086743241902], + [-45.724075954050804, -23.77108674302194], + [-45.72416295436781, -23.771063742813315], + [-45.724237954575905, -23.771019742621572], + [-45.72429495467322, -23.770963742464726], + [-45.7243549547917, -23.770910742302643], + [-45.7244119549807, -23.770888742162505], + [-45.724510955409315, -23.770887741937525], + [-45.72460795583183, -23.77088774171756], + [-45.72465595608417, -23.770903741616582], + [-45.724697956253586, -23.770898741518895], + [-45.724754956499226, -23.770897741389163], + [-45.72483895674654, -23.770853741177], + [-45.724928957025426, -23.77081174095224], + [-45.72502495729257, -23.770755740706964], + [-45.72513395772155, -23.77073874045143], + [-45.72519395794517, -23.770724740308477], + [-45.72526295814602, -23.77068774013382], + [-45.72530495830742, -23.770679740034616], + [-45.72547695902438, -23.770667739638636], + [-45.725584959411236, -23.770636739378478], + [-45.72567195972282, -23.770611739168857], + [-45.7257259599419, -23.770605739043468], + [-45.725806960173436, -23.77056073883764], + [-45.725917960543676, -23.770518738565222], + [-45.72599096077269, -23.77048573838344], + [-45.72606896105853, -23.770465738196673], + [-45.7261199612214, -23.770443738070245], + [-45.72620396153331, -23.770423737869805], + [-45.72629096182061, -23.770389737655815], + [-45.726395962194474, -23.770358737402468], + [-45.72646196242801, -23.77033873724287], + [-45.726579962844944, -23.770302736957593], + [-45.72669396323637, -23.770263736679933], + [-45.72678396354482, -23.770232736460486], + [-45.72682896367342, -23.7702077363461], + [-45.72690696393774, -23.77017973615552], + [-45.7269609641648, -23.770176736031583], + [-45.72701496436232, -23.77016273590214], + [-45.727057964525365, -23.770153735800246], + [-45.72711796474085, -23.770136735655836], + [-45.727204965065894, -23.770116735448596], + [-45.727264965305686, -23.770108735308632], + [-45.72737896573216, -23.77008273503729], + [-45.72749096610669, -23.77004073476258], + [-45.72757196639216, -23.770015734566652], + [-45.727607966511265, -23.770001734478022], + [-45.72769496679313, -23.769965734263046], + [-45.727769967065875, -23.769945734083134], + [-45.72782996728945, -23.76993173394016], + [-45.72786896741342, -23.76991473384327], + [-45.72788996748878, -23.76990873379273], + [-45.727922967610915, -23.769900733713985], + [-45.72798096784739, -23.76989473357944], + [-45.728088968293605, -23.769885733330128], + [-45.728151968576086, -23.769888733188694], + [-45.728266969103984, -23.769898732932806], + [-45.72833596938831, -23.76989273277331], + [-45.72842596971295, -23.769867732556865], + [-45.72853097010288, -23.769842732306476], + [-45.72861797040632, -23.769814732095366], + [-45.72870597071133, -23.769785731881502], + [-45.72880797110446, -23.769766731640843], + [-45.72891297149976, -23.769743731391333], + [-45.728978971719854, -23.7697187312293], + [-45.72907297207529, -23.769698731006315], + [-45.7291749724144, -23.769659730755734], + [-45.72920497251268, -23.76964773068186], + [-45.72934897308058, -23.769625730344366], + [-45.72941497333564, -23.76961373018877], + [-45.729481973627514, -23.76961373003677], + [-45.72960797410612, -23.769587729738184], + [-45.72964997428908, -23.769587729642907], + [-45.729691974458554, -23.769582729545228], + [-45.729757974624675, -23.76953772937339], + [-45.72982997487076, -23.769512729197764], + [-45.729889975086316, -23.769495729053318], + [-45.72995997532371, -23.769470728882222], + [-45.73002597554109, -23.769444728719716], + [-45.73016697608781, -23.769419728387557], + [-45.73021197630539, -23.769427728289465], + [-45.73027797659818, -23.769429728140807], + [-45.73038097700094, -23.769412727898747], + [-45.730431977201555, -23.769404727779182], + [-45.73052797751982, -23.769367727543184], + [-45.73059697777451, -23.769350727378324], + [-45.73064197794082, -23.769339727270822], + [-45.73076297837617, -23.769305726979667], + [-45.73084997868766, -23.769280726769985], + [-45.73093997907696, -23.76927972656533], + [-45.73102397944273, -23.76927972637479], + [-45.73109397974761, -23.769279726216013], + [-45.73116597995601, -23.769240726033473], + [-45.73121698008647, -23.76920672590111], + [-45.731246980165785, -23.76918772582375], + [-45.73131298039124, -23.769164725662687], + [-45.731372980644444, -23.769161725525127], + [-45.73142398084504, -23.769153725405534], + [-45.73152898126187, -23.769138725159983], + [-45.73158398149333, -23.769135725033667], + [-45.731658981819955, -23.769135724863542], + [-45.73184498252214, -23.769095724422], + [-45.73207698341919, -23.769053723875047], + [-45.73224498408075, -23.769027723481123], + [-45.7322729842243, -23.769035723421474], + [-45.732374984622666, -23.769018723181848], + [-45.73244398488534, -23.769004723018348], + [-45.73255498532291, -23.768987722758176], + [-45.732645985665265, -23.768967722541944], + [-45.73270298583798, -23.76893972239886], + [-45.73276298600764, -23.768905722246064], + [-45.73287098638884, -23.768872721984746], + [-45.73292198661639, -23.768874721870038], + [-45.732996986943, -23.76887472169989], + [-45.733087987307016, -23.768862721487604], + [-45.733207987770236, -23.76884072120451], + [-45.7333489883007, -23.768809720869406], + [-45.73341198854255, -23.76879772072056], + [-45.733487988843926, -23.76878672054272], + [-45.73354498909217, -23.768786720413413], + [-45.73367398962161, -23.76877472011491], + [-45.733755989975954, -23.76877371992838], + [-45.73391199058789, -23.76874871956215], + [-45.734049991110666, -23.7687197192348], + [-45.73419199168314, -23.768702718904308], + [-45.73439899243349, -23.768646718407116], + [-45.73445599264932, -23.768634718271883], + [-45.73456499305661, -23.76860971801226], + [-45.73471799368236, -23.768594717657763], + [-45.734780993943204, -23.768589717512405], + [-45.73481999405102, -23.768566717412583], + [-45.734877994303595, -23.768566717280983], + [-45.734922994499556, -23.76856671717886], + [-45.73499199480006, -23.768566717022328], + [-45.73507299515002, -23.768565716838058], + [-45.73513299538171, -23.768554716696592], + [-45.735211995723, -23.768553716516855], + [-45.73530799606555, -23.768525716285264], + [-45.73539799633873, -23.768481716059462], + [-45.73549399673243, -23.76847271583719], + [-45.73558799711753, -23.768463715619443], + [-45.73565099742153, -23.768474715481897], + [-45.735782998017896, -23.768482715186366], + [-45.73584699827239, -23.768473715036706], + [-45.735903998444975, -23.768445714893605], + [-45.735954998650904, -23.76843971477497], + [-45.735999998817164, -23.768428714667454], + [-45.73606599910452, -23.768428714517697], + [-45.73611999933699, -23.76842771439467], + [-45.736207999720186, -23.768427714194974], + [-45.73628900007286, -23.768427714011175], + [-45.73641500047047, -23.768371713697768], + [-45.73652300090031, -23.76835671344534], + [-45.7367010016511, -23.76834771303707], + [-45.736815002085464, -23.768324712767047], + [-45.73692400256005, -23.76832471251971], + [-45.73698700280467, -23.768313712371317], + [-45.737065003111994, -23.768301712188418], + [-45.73711598028865, -23.76828492906453], + [-45.73716695746535, -23.768268145940656], + [-45.73722750367514, -23.76824821179341], + [-45.73728800388602, -23.768228711646536], + [-45.73736900421438, -23.76821971145837], + [-45.73749500472527, -23.768205711165493], + [-45.73754300491807, -23.768199711053644], + [-45.737613005236376, -23.768204710897226], + [-45.73765800543231, -23.76820471079512], + [-45.73783800619186, -23.768195710382276], + [-45.737941006624126, -23.76818971014565], + [-45.73806100709265, -23.768169709863425], + [-45.73820500762793, -23.768135709519985], + [-45.73825700785438, -23.76813570940198], + [-45.738308008076395, -23.768135709286238], + [-45.73842200857009, -23.76813470902703], + [-45.73858500925554, -23.76812570865268], + [-45.738705009775295, -23.768124708379858], + [-45.7387620100316, -23.76812770825196], + [-45.7387920101622, -23.76812770818388], + [-45.73885001039856, -23.76812170804935], + [-45.738898010599435, -23.768118707938946], + [-45.73893701075308, -23.768112707847454], + [-45.73904801118244, -23.76809270758575], + [-45.73913001152323, -23.768086707396645], + [-45.73920501187947, -23.768097707231867], + [-45.739250012126654, -23.768116707139114], + [-45.73932501245319, -23.768116706968915], + [-45.73937001261134, -23.768102706859903], + [-45.739434012814506, -23.768074706700894], + [-45.73949101301671, -23.768057706563216], + [-45.73953301319958, -23.76805770646788], + [-45.73958101340864, -23.76805770635894], + [-45.7396290136095, -23.768054706248485], + [-45.73969501389421, -23.768053706098204], + [-45.739798014372354, -23.768064705869854], + [-45.73984301454397, -23.768055705763356], + [-45.73993001494438, -23.768063705569762], + [-45.73998201517073, -23.76806370545175], + [-45.74004801545814, -23.76806370530196], + [-45.740066015504105, -23.768051705255196], + [-45.74010201566091, -23.76805170517349], + [-45.740177016009, -23.76805970500724], + [-45.740225016277336, -23.768081704909047], + [-45.74027401650416, -23.768086704800236], + [-45.740331016782015, -23.768097704676293], + [-45.74040001708247, -23.768097704519693], + [-45.740479017447974, -23.768105704344354], + [-45.740536017725844, -23.76811670422038], + [-45.740593018025315, -23.768135704100317], + [-45.74064401826898, -23.76814370398852], + [-45.740714018571076, -23.768142703829156], + [-45.740756018753935, -23.768142703733815], + [-45.740816019015085, -23.768142703597622], + [-45.74089701941095, -23.768158703421534], + [-45.74096701972924, -23.768163703265163], + [-45.74116002072607, -23.768221702855534], + [-45.74124702110213, -23.768220702657565], + [-45.741331021475986, -23.768223702468358], + [-45.741373021656074, -23.768222702372526], + [-45.74147002207841, -23.768222702152357], + [-45.74156902253103, -23.7682307019316], + [-45.74162902277605, -23.768224701792427], + [-45.74170202309117, -23.768223701626237], + [-45.74174402329024, -23.768229701533897], + [-45.741867023793326, -23.768217701248705], + [-45.74195502417644, -23.768217701048947], + [-45.74209602475795, -23.768205700722987], + [-45.742367025897266, -23.768190700100547], + [-45.7425020264149, -23.768164699781323], + [-45.74271602730608, -23.76814969928819], + [-45.74276702750649, -23.768141699168552], + [-45.74282402771676, -23.768127699032206], + [-45.7428780279061, -23.768110698901296], + [-45.74292402809014, -23.76810469879396], + [-45.74298102830852, -23.76809369865916], + [-45.74305302858427, -23.768079698488837], + [-45.74317602911704, -23.768078698209155], + [-45.74322702930932, -23.768067698087957], + [-45.74333302964126, -23.76801969782381], + [-45.74343503006104, -23.768010697587805], + [-45.74348603026142, -23.768002697468088], + [-45.74356103047454, -23.76796069727731], + [-45.74366303086461, -23.767940697035968], + [-45.74372403115985, -23.767951696902813], + [-45.74374803126436, -23.767951696848343], + [-45.74380803152285, -23.767950696711655], + [-45.743862031757956, -23.767950696589043], + [-45.7440730326819, -23.767952696111003], + [-45.744142032982275, -23.767952695954367], + [-45.74431703373332, -23.767948695555123], + [-45.74440403411207, -23.767948695357592], + [-45.744434034256166, -23.767953695291908], + [-45.74449403448765, -23.76794269515039], + [-45.74458203488963, -23.767949694953987], + [-45.74462103509724, -23.76796369487232], + [-45.744672035349, -23.76797469476195], + [-45.74470803551916, -23.767979694682605], + [-45.74475703579994, -23.768004694583645], + [-45.74479003601108, -23.76802969452099], + [-45.74483503625834, -23.768048694428135], + [-45.74490203666065, -23.768089694296105], + [-45.74495003692896, -23.768111694197863], + [-45.74497403707667, -23.7681276941512], + [-45.74503503740971, -23.768152694024987], + [-45.74507103762577, -23.768174693954006], + [-45.74510403780728, -23.768188693886017], + [-45.74514003799366, -23.76819969380961], + [-45.745173038158995, -23.768207693738628], + [-45.74521003836321, -23.76822369366245], + [-45.74523403850552, -23.768237693614843], + [-45.74527303868331, -23.768240693527737], + [-45.745309038861684, -23.76824869344987], + [-45.74535103904994, -23.768250693355487], + [-45.74539003921964, -23.768250693266936], + [-45.74543003939381, -23.76825069317613], + [-45.7455140397892, -23.768261692990915], + [-45.745568040051204, -23.76827169287312], + [-45.745631040347114, -23.76827969273404], + [-45.74570404067298, -23.768282692569755], + [-45.745734040817084, -23.76828769250406], + [-45.74607704230748, -23.76828669172477], + [-45.746119042503814, -23.76829169163183], + [-45.746204042917064, -23.768307691446747], + [-45.74647504426419, -23.768369690861746], + [-45.746535044600975, -23.768397690739242], + [-45.746671045257756, -23.768421690442132], + [-45.74672804557339, -23.768446690324964], + [-45.74682204602575, -23.768462690119332], + [-45.74689704640352, -23.768481689958403], + [-45.74699404687708, -23.768500689747437], + [-45.747172047708716, -23.768521689353484], + [-45.74739804875725, -23.768545688852072], + [-45.74746104908279, -23.768564688718275], + [-45.7475720495929, -23.76857468847116], + [-45.74765404997958, -23.76858568829025], + [-45.74777105052397, -23.76859868803102], + [-45.74783405079827, -23.768598687887973], + [-45.74791305116372, -23.76860668771242], + [-45.74798505147715, -23.76860668754892], + [-45.7480600517712, -23.76859468737272], + [-45.74814805216236, -23.768597687174424], + [-45.74828005265865, -23.76856868686044], + [-45.74836105296525, -23.768551686668104], + [-45.74845705330755, -23.768523686436456], + [-45.748553053633664, -23.76848968620172], + [-45.74861705385279, -23.76846768604567], + [-45.74864705392396, -23.768445685966746], + [-45.748710054098325, -23.768408685805515], + [-45.748800054384745, -23.76836968558208], + [-45.74888105463206, -23.76833068537902], + [-45.74890505473646, -23.768330685324507], + [-45.74893505482923, -23.768316685249516], + [-45.748977054974254, -23.768302685147297], + [-45.74904005521875, -23.768291684998818], + [-45.749109055516406, -23.768290684841624], + [-45.74920905590581, -23.768273684606214], + [-45.74929005621241, -23.76825668441392], + [-45.749353056486605, -23.76825668427087], + [-45.74942205678434, -23.76825568411368], + [-45.749513057180415, -23.768255683907007], + [-45.749627057644204, -23.768243683642222], + [-45.74972305804582, -23.768237683421276], + [-45.74987105864409, -23.768220683076862], + [-45.75002705932033, -23.76821968272207], + [-45.750148059830856, -23.768213682444273], + [-45.75023806022257, -23.768213682239878], + [-45.750379060790415, -23.76819668191131], + [-45.7505690616146, -23.768195681479323], + [-45.750657062011214, -23.76820068128186], + [-45.75070506224711, -23.76821068117775], + [-45.750780062603226, -23.768221681012815], + [-45.75082506279909, -23.768221680910596], + [-45.750867062981904, -23.768221680815213], + [-45.75093106325781, -23.76822068066936], + [-45.7509850634928, -23.76822068054671], + [-45.75105406377152, -23.76821268038603], + [-45.75108406389939, -23.768211680317414], + [-45.75111706406731, -23.76822068024689], + [-45.75118706436928, -23.768219680087416], + [-45.75121706449986, -23.768219680019286], + [-45.75125006467327, -23.76823067994972], + [-45.751280064803765, -23.76823067988158], + [-45.75131606496049, -23.768230679799824], + [-45.751337065051935, -23.76823067975212], + [-45.75136406517479, -23.768232679691767], + [-45.751410065391184, -23.76823867959017], + [-45.75145506560054, -23.76824367949037], + [-45.75147906571853, -23.76824867943829], + [-45.751575066136304, -23.768248679220225], + [-45.75176206701503, -23.768272678807236], + [-45.751867067418004, -23.76825267855898], + [-45.75190006756171, -23.768252678484025], + [-45.751946067759185, -23.768251678378977], + [-45.75198506792886, -23.768251678290387], + [-45.752015068059535, -23.768251678222253], + [-45.75205706827205, -23.76826267813233], + [-45.75207806840931, -23.768279678092938], + [-45.75212006858942, -23.76827867799705], + [-45.752150068719985, -23.76827867792889], + [-45.752289069287194, -23.768264677606307], + [-45.75231006937854, -23.768264677558594], + [-45.75234306951945, -23.768263677483162], + [-45.75238506973198, -23.768274677393162], + [-45.7524030698103, -23.768274677352263], + [-45.75243306994085, -23.76827467728411], + [-45.75246107007092, -23.76827767722196], + [-45.75250007023789, -23.768276677132896], + [-45.7526110706399, -23.768246676866], + [-45.75270707100914, -23.76822867663914], + [-45.75280907141524, -23.768214676400603], + [-45.752864071705964, -23.768233676284996], + [-45.752906071918396, -23.768244676194904], + [-45.75294507211786, -23.768255676111714], + [-45.752993072326824, -23.76825567600269], + [-45.753051072600876, -23.76826367587488], + [-45.75320107334822, -23.76829867555121], + [-45.753220073460604, -23.76830967551346], + [-45.75325007360465, -23.76831467544774], + [-45.75328307377797, -23.76832567537816], + [-45.75338807433768, -23.76836367515817], + [-45.753458074815214, -23.76842767503048], + [-45.75348507496776, -23.768440674975526], + [-45.75350907509657, -23.76844967492535], + [-45.75356107538766, -23.768473674818978], + [-45.753606075659135, -23.76850167473046], + [-45.753642075905006, -23.76853467466477], + [-45.75367307611284, -23.768561674607586], + [-45.753848077163504, -23.768668674262297], + [-45.75392407767535, -23.76873567412244], + [-45.75394807789859, -23.76877967408941], + [-45.75396607804986, -23.76880667406174], + [-45.75399607823173, -23.76882567400284], + [-45.75410507890066, -23.768897673790438], + [-45.754114079007316, -23.76892267378222], + [-45.75413307917921, -23.768955673755187], + [-45.75415107932509, -23.768980673726524], + [-45.75421407961273, -23.768985673585828], + [-45.7542470797105, -23.76896867350253], + [-45.754298079881096, -23.76894967337741], + [-45.754373080131835, -23.76892167319324], + [-45.75443308031733, -23.76889367304331], + [-45.75452408066741, -23.76887667282817], + [-45.754569080860534, -23.76887567272546], + [-45.75462308101994, -23.768847672589164], + [-45.754680081254506, -23.768842672457172], + [-45.75473708149988, -23.768841672327188], + [-45.75479108172682, -23.76883867220305], + [-45.75486108203949, -23.76884167204546], + [-45.75488508208994, -23.7688216719812], + [-45.75491208217774, -23.768810671914448], + [-45.75494208234613, -23.768824671853142], + [-45.75496308245917, -23.7688326718093], + [-45.75499308259505, -23.768834671742106], + [-45.755020082720684, -23.768837671682295], + [-45.755053082877865, -23.768842671609722], + [-45.75509608311094, -23.76885967152039], + [-45.75511408324058, -23.768878671488682], + [-45.75510508327702, -23.768906671522902], + [-45.755081083218556, -23.768923671585743], + [-45.755078083308106, -23.76896167161107], + [-45.755105083485034, -23.768983671560513], + [-45.755130083623584, -23.768994671509034], + [-45.75514808373972, -23.769008671475067], + [-45.75516308386445, -23.769030671451688], + [-45.75516908393655, -23.76904767144635], + [-45.75517208400899, -23.769069671450346], + [-45.75517508408148, -23.769091671454213], + [-45.75517508416253, -23.76912167146888], + [-45.75518508428171, -23.769149671459843], + [-45.755194084409986, -23.769182671455603], + [-45.75520608451628, -23.76920267143808], + [-45.755261085090666, -23.769326671373666], + [-45.75525808516679, -23.76935967139669], + [-45.75526408528203, -23.76939267139916], + [-45.75524308529604, -23.769431671465966], + [-45.755217085296316, -23.769473671545583], + [-45.755208085430056, -23.76953767159728], + [-45.755202085493124, -23.769570671627022], + [-45.75520208552825, -23.76958367163336], + [-45.755211085635, -23.769608671625175], + [-45.75519608563177, -23.769631671670453], + [-45.755188085678064, -23.769661671703297], + [-45.75518808575912, -23.76969167171793], + [-45.75518808582124, -23.76971467172922], + [-45.755200085932934, -23.769736671712675], + [-45.75523008615265, -23.76976967166069], + [-45.75524208625614, -23.769788671642676], + [-45.75524308634433, -23.769819671655547], + [-45.75524308642536, -23.76984967167021], + [-45.7552580865663, -23.769877671649812], + [-45.75526708664055, -23.76989067163572], + [-45.75529108679097, -23.769907671589493], + [-45.75532808697357, -23.769915671509267], + [-45.75535208711587, -23.769929671461693], + [-45.755385087289184, -23.769940671392096], + [-45.75540608738603, -23.769942671345348], + [-45.75543908755936, -23.769953671275687], + [-45.75555108814409, -23.76998967103883], + [-45.755644088673115, -23.770035670849975], + [-45.755699088874664, -23.770021670718148], + [-45.75575308915294, -23.77003767060326], + [-45.75577108923935, -23.77004067056381], + [-45.75579508934383, -23.770040670509278], + [-45.755837089556266, -23.770051670419246], + [-45.75585508967782, -23.770067670386144], + [-45.755867089759796, -23.77007867036429], + [-45.755874089828126, -23.770092670355222], + [-45.75589208995237, -23.77010967032262], + [-45.75589808999196, -23.770114670311404], + [-45.75591309007354, -23.7701206702803], + [-45.75593109016537, -23.770125670241796], + [-45.75594309023915, -23.770133670218495], + [-45.75596409033057, -23.770133670170758], + [-45.75601509058222, -23.770144670060276], + [-45.75603709069963, -23.770152670014156], + [-45.75605809084503, -23.770172669976162], + [-45.7560790909959, -23.770194669939244], + [-45.756106091134974, -23.770202669881765], + [-45.7561180912007, -23.77020766985689], + [-45.7561510913443, -23.770207669781904], + [-45.75616609140965, -23.77020766974783], + [-45.75618709146319, -23.770193669693366], + [-45.75623209159148, -23.77016866957885], + [-45.75624409159779, -23.7701516695433], + [-45.756256091650016, -23.770151669516032], + [-45.75627109173152, -23.77015766948483], + [-45.756289091831455, -23.770165669447866], + [-45.75629009186551, -23.77017666945102], + [-45.75628109187765, -23.77019566948072], + [-45.75626609182869, -23.770201669517693], + [-45.756254091806156, -23.770212669550357], + [-45.75623609174396, -23.770218669594144], + [-45.75623309176064, -23.770229669606373], + [-45.7562270917562, -23.77023766962395], + [-45.7562240917891, -23.770254669639066], + [-45.75623309184173, -23.77025966962102], + [-45.75624809194492, -23.770273669593806], + [-45.75626309203982, -23.7702846695651], + [-45.756275092129904, -23.77029866954467], + [-45.75628709220375, -23.770306669521354], + [-45.7563090924859, -23.770375669505007], + [-45.756330092674624, -23.77041166947483], + [-45.756348092804295, -23.770430669443257], + [-45.75633009280972, -23.770461669499316], + [-45.75629109264006, -23.770461669587934], + [-45.75626409253056, -23.770464669650753], + [-45.75623709245897, -23.77048166972048], + [-45.75621009237935, -23.770495669788595], + [-45.75618309228344, -23.77050366985388], + [-45.75616809230193, -23.77053466990312], + [-45.75615909236001, -23.77057066994111], + [-45.75615009238836, -23.770595669973794], + [-45.7561390924135, -23.770622670012013], + [-45.75615109252511, -23.77064466999553], + [-45.756169092611614, -23.770647669956084], + [-45.756193092753854, -23.770661669908392], + [-45.75621409284531, -23.770661669860676], + [-45.75622009290111, -23.770672669852342], + [-45.756238093009124, -23.770683669816915], + [-45.75624709307805, -23.770694669801774], + [-45.75625409321127, -23.770732669804474], + [-45.75626609329323, -23.77074366978252], + [-45.756281093412454, -23.770763669758256], + [-45.75631109358635, -23.770779669697898], + [-45.75632609368136, -23.770790669669115], + [-45.75633509375839, -23.770804669655597], + [-45.756341093814186, -23.77081566964728], + [-45.756345093869406, -23.77082966964502], + [-45.75635709397298, -23.770848669627085], + [-45.75638709414948, -23.77086566956722], + [-45.75640209423638, -23.77087366953699], + [-45.75642309432782, -23.77087366948927], + [-45.75645009443714, -23.770870669426465], + [-45.756471094520485, -23.7708676693773], + [-45.75650109464294, -23.77086466930768], + [-45.75658309499985, -23.770864669121327], + [-45.75663709526994, -23.77087766900488], + [-45.75671809571978, -23.77091366883845], + [-45.756773095964476, -23.770915668714416], + [-45.75688109648591, -23.77093466847834], + [-45.756938096801456, -23.770959668360955], + [-45.75698709707422, -23.770981668260372], + [-45.75707709746319, -23.770980668055355], + [-45.757098097503224, -23.770961667998307], + [-45.75709809742755, -23.770933667984714], + [-45.75707709724702, -23.770900668016253], + [-45.75708309721373, -23.77087866799182], + [-45.75711909737036, -23.770878667910008], + [-45.75715809753743, -23.770877667820898], + [-45.75719409773999, -23.770894667747456], + [-45.75722709792143, -23.770908667679297], + [-45.75725409805244, -23.770913667620377], + [-45.75727809814884, -23.770910667564365], + [-45.75732009826398, -23.770885667456675], + [-45.7573600984516, -23.77089066736829], + [-45.75738109861058, -23.77091566733271], + [-45.757408098787565, -23.77093766728215], + [-45.75742609891183, -23.770954667249526], + [-45.757459099098746, -23.77097066718235], + [-45.757475099198004, -23.770981667151375], + [-45.75751109935472, -23.770981667069535], + [-45.75754109946098, -23.770972666996947], + [-45.757577099536526, -23.77094266690048], + [-45.75760409957026, -23.770911666824013], + [-45.757619099597704, -23.770897666783053], + [-45.757664099734086, -23.77087566667], + [-45.75770609984932, -23.770850666562385], + [-45.75769609972201, -23.770819666570006], + [-45.75769009965269, -23.770803666575826], + [-45.757690099585126, -23.770778666563597], + [-45.75767509945229, -23.770753666585435], + [-45.75765709934425, -23.77074266662095], + [-45.757600099066444, -23.770731666745196], + [-45.75751509863976, -23.770710666928068], + [-45.75747909848304, -23.77071066700988], + [-45.757416098157655, -23.770691667143765], + [-45.75737009790604, -23.770672667238976], + [-45.75732209766743, -23.77066166734277], + [-45.75728909751572, -23.77065866741623], + [-45.75725609733699, -23.77064566748495], + [-45.75722909718969, -23.7706346675409], + [-45.7571990970348, -23.770625667604644], + [-45.7571620968387, -23.77061266768238], + [-45.757141096695904, -23.77059366772083], + [-45.75713209660274, -23.770573667731558], + [-45.757141096590516, -23.77055466770184], + [-45.75717409665854, -23.77052666761316], + [-45.75721309677425, -23.770506667514724], + [-45.757252096930394, -23.770501667423577], + [-45.75731509720186, -23.77050066727994], + [-45.75736309743233, -23.770508667174816], + [-45.75741809769343, -23.770516667053776], + [-45.75744509784056, -23.77052766699778], + [-45.757472097949986, -23.770524666934897], + [-45.757493097998186, -23.770508666879387], + [-45.75752009812103, -23.77051066681896], + [-45.75753509821061, -23.77051966678932], + [-45.75755009829761, -23.770527666759154], + [-45.75762009860757, -23.770529666601057], + [-45.757635098710686, -23.770543666573715], + [-45.757668098824645, -23.770532666493427], + [-45.75769209886958, -23.770510666428084], + [-45.757716098941614, -23.77049866636765], + [-45.75776109912394, -23.770493666262993], + [-45.7577760991568, -23.770481666223112], + [-45.75786609929443, -23.77038766597264], + [-45.757907099351264, -23.770342665857466], + [-45.7579550994115, -23.770287665721494], + [-45.75798309957659, -23.770303665665676], + [-45.75800109968472, -23.770314665630142], + [-45.75804909988009, -23.770309665518663], + [-45.758076099943445, -23.770289665447486], + [-45.758082099864225, -23.770250665414775], + [-45.75809709987816, -23.770231665371412], + [-45.75814810003249, -23.77020666524328], + [-45.7581961002765, -23.770219665140644], + [-45.758235100492186, -23.7702366650603], + [-45.75827710063714, -23.770222664958], + [-45.75831610074474, -23.770199664858076], + [-45.758325100762214, -23.770191664833796], + [-45.75840410116552, -23.770213664664947], + [-45.75850010152118, -23.770190664435603], + [-45.75852710157913, -23.770168664363432], + [-45.75858410170558, -23.770123664211912], + [-45.75865010187384, -23.770079664040445], + [-45.758683101933734, -23.770048663950323], + [-45.758737102138944, -23.7700376638222], + [-45.75877910229742, -23.7700286637223], + [-45.758812102441084, -23.770028663647317], + [-45.75886010246346, -23.769959663504498], + [-45.758938102673156, -23.769911663303816], + [-45.75900910260109, -23.769770663073672], + [-45.759060102769, -23.769750662947935], + [-45.75909310283693, -23.769722662859355], + [-45.75915310280615, -23.7696146626702], + [-45.75918010275879, -23.769553662579057], + [-45.75918310272048, -23.769534662562883], + [-45.75920310271569, -23.769500662500878], + [-45.759221102683185, -23.769459662439928], + [-45.75923310251646, -23.769378662373153], + [-45.75925710248579, -23.769328662294154], + [-45.75929510251066, -23.76927666218246], + [-45.75932810256234, -23.76924266209088], + [-45.759349102572614, -23.769212662028444], + [-45.75934010235245, -23.769145662016225], + [-45.75938110240657, -23.769099661900587], + [-45.75942110259145, -23.769103661811588], + [-45.75943910275884, -23.769136661786778], + [-45.75945410289179, -23.769161661764926], + [-45.759473103050105, -23.769189661735414], + [-45.759488103174824, -23.76921166171204], + [-45.75950910330409, -23.769225661671225], + [-45.75953910346975, -23.769238661609325], + [-45.7595571035778, -23.76924966157381], + [-45.75959010372947, -23.769252661500257], + [-45.75961410383393, -23.769252661445698], + [-45.75966610399809, -23.76922966131635], + [-45.759681104041675, -23.769221661278294], + [-45.75975310433065, -23.76921266111025], + [-45.759774104362535, -23.769190661051827], + [-45.75985210470198, -23.769190660874532], + [-45.75993010492788, -23.769148660676766], + [-45.75995110497336, -23.76913166062075], + [-45.75995710493186, -23.76910666059487], + [-45.75998110497688, -23.769084660529554], + [-45.76000810510789, -23.76908966047067], + [-45.760029105228966, -23.769100660428347], + [-45.76008910540086, -23.769067660275883], + [-45.76011310550532, -23.769067660221307], + [-45.760131105589025, -23.769069660181387], + [-45.7601471057127, -23.769089660154748], + [-45.76016810586356, -23.769111660117808], + [-45.760183105958575, -23.769122660089018], + [-45.76024010624164, -23.76913565996582], + [-45.76029410646312, -23.769130659840673], + [-45.760339106642725, -23.769124659735432], + [-45.760400106891936, -23.769118659593882], + [-45.76044810707113, -23.769107659479463], + [-45.76051710742266, -23.769126659331818], + [-45.76056810750948, -23.76907665919154], + [-45.760649107791615, -23.769050658994736], + [-45.76069710786541, -23.769000658861245], + [-45.76071210790905, -23.76899265882321], + [-45.76072710797432, -23.768992658789113], + [-45.76073910804818, -23.76900065876579], + [-45.76075710816432, -23.769014658731706], + [-45.76076610824666, -23.769030658719075], + [-45.76077310830688, -23.76904165870854], + [-45.76078210837042, -23.76905065869242], + [-45.76079410842266, -23.769050658665133], + [-45.76080310845904, -23.769049658644228], + [-45.76086910865708, -23.769016658478126], + [-45.76090810878078, -23.768999658381194], + [-45.760923108778485, -23.768974658334947], + [-45.76090410863636, -23.768952658367365], + [-45.76088310851531, -23.768941658409698], + [-45.76088010842111, -23.76891165840188], + [-45.76093110855927, -23.768880658270856], + [-45.76096710861859, -23.768844658171407], + [-45.76097310853935, -23.768805658138785], + [-45.76097610840375, -23.768750658105102], + [-45.76098410835472, -23.768719658071802], + [-45.761008108361885, -23.768683657999727], + [-45.761035108465855, -23.76867865793586], + [-45.761075108637236, -23.76867765784446], + [-45.76109610869883, -23.768666657791343], + [-45.76115010891753, -23.768660657665716], + [-45.76118910905751, -23.768649657571686], + [-45.76122210920117, -23.768649657496667], + [-45.7612581093875, -23.76866065742024], + [-45.761294109587446, -23.7686766573462], + [-45.76133710982588, -23.768695657257727], + [-45.761361109984314, -23.768715657212898], + [-45.76139111015809, -23.7687316571526], + [-45.76141811032152, -23.768748657099508], + [-45.76144811044935, -23.768747657030833], + [-45.761466110535764, -23.768750656991376], + [-45.76149011061859, -23.768742656932876], + [-45.76150511065413, -23.768731656893497], + [-45.76149611055286, -23.768708656902678], + [-45.7614691103624, -23.768681656950875], + [-45.76148111033886, -23.768653656909912], + [-45.761505110429795, -23.76864865685295], + [-45.76152011050857, -23.76865365682126], + [-45.7615291105775, -23.768664656806212], + [-45.76156211058592, -23.768614656706813], + [-45.76157111054937, -23.76858665667262], + [-45.76158611056337, -23.768567656629358], + [-45.76160111056908, -23.76854565658449], + [-45.76161011054611, -23.76852265655285], + [-45.76161511045711, -23.768481656521477], + [-45.76159711031115, -23.768456656550164], + [-45.761597110235485, -23.76842865653648], + [-45.76160911024445, -23.768412656501408], + [-45.76162711029314, -23.76840165645511], + [-45.76165111039479, -23.768400656400065], + [-45.76168411051674, -23.768392656321208], + [-45.76171411061762, -23.768381656247637], + [-45.76174711072335, -23.768367656165786], + [-45.761765110763804, -23.768353656118027], + [-45.76178911083852, -23.768342656058095], + [-45.76179811085331, -23.76833365603319], + [-45.76182811098384, -23.768333655965026], + [-45.76186411114051, -23.768333655883204], + [-45.761886111249694, -23.76833865583571], + [-45.76190711134111, -23.76833865578795], + [-45.76192811143246, -23.768338655740237], + [-45.76194311143015, -23.76831365569391], + [-45.76196411149185, -23.768302655640788], + [-45.76197611152236, -23.768294655609573], + [-45.76198511150749, -23.768274655579482], + [-45.76199911150085, -23.76824965553534], + [-45.7620141114607, -23.76821065548227], + [-45.76206211162627, -23.76819465536536], + [-45.76208011160736, -23.768158655306852], + [-45.76206811148748, -23.768133655321968], + [-45.762092111500046, -23.76809965525086], + [-45.762110111548616, -23.768088655204473], + [-45.76214311169227, -23.76808865512945], + [-45.76217311185252, -23.768099655066766], + [-45.76219111196865, -23.768113655032593], + [-45.76222711210902, -23.76810765494788], + [-45.76225511223093, -23.768107654884222], + [-45.76228211234834, -23.768107654822863], + [-45.76230611245279, -23.768107654768308], + [-45.76232111249374, -23.76809865472987], + [-45.762619112957786, -23.767790653902143], + [-45.76264811320018, -23.767833653857217], + [-45.7626811133843, -23.76784865378953], + [-45.762715113594446, -23.767871653723507], + [-45.7627561138485, -23.767899653643966], + [-45.76278711394283, -23.767884653566185], + [-45.762784113816295, -23.767842653552506], + [-45.762775113693316, -23.767811653557843], + [-45.7627621135854, -23.767792653578066], + [-45.76272611337736, -23.767773653650668], + [-45.76269911319239, -23.7677486536998], + [-45.7626871130726, -23.767723653714942], + [-45.762678112957744, -23.767695653721738], + [-45.76267711288583, -23.767670653711797], + [-45.76267711278583, -23.767633653693693], + [-45.76267111270299, -23.767612653697128], + [-45.762671112602995, -23.76757565367903], + [-45.76267211258303, -23.767566653672436], + [-45.762679112529646, -23.7675356536414], + [-45.76268711248069, -23.76750465360803], + [-45.76268111239779, -23.767483653611457], + [-45.7626561121945, -23.76744865365123], + [-45.76263211206031, -23.767437653700398], + [-45.762596111887525, -23.767431653779326], + [-45.762572111753336, -23.767420653828506], + [-45.76254111156173, -23.767399653888745], + [-45.762513111391236, -23.76738165394353], + [-45.76249111128205, -23.767376653991146], + [-45.762457111109825, -23.767367654063992], + [-45.76243611098059, -23.767353654104976], + [-45.76241511084602, -23.767337654144818], + [-45.76239911074661, -23.76732665417579], + [-45.762376110616856, -23.767315654222777], + [-45.76233011041943, -23.76731665432782], + [-45.76230911033884, -23.767320654377475], + [-45.7622811102089, -23.76731765443967], + [-45.762245110028, -23.76730865451716], + [-45.76221110983954, -23.76729365458705], + [-45.76219010971569, -23.76728165462888], + [-45.76216010957165, -23.76727665469466], + [-45.76214110947543, -23.76727165473545], + [-45.76211910936624, -23.76726665478304], + [-45.762096109276946, -23.767270654837226], + [-45.76207710919972, -23.767272654881392], + [-45.7620561091084, -23.767272654929116], + [-45.76203510902778, -23.76727665497877], + [-45.76199510885381, -23.767276655069693], + [-45.76194810864927, -23.76727665517651], + [-45.761914108493265, -23.767273655252335], + [-45.76189310839373, -23.76727065529864], + [-45.761844108161654, -23.76726365540654], + [-45.76181710803067, -23.767258655465483], + [-45.76180110794483, -23.76725265549889], + [-45.76176010773409, -23.767240655586303], + [-45.76164510725798, -23.767249655852005], + [-45.76161110711819, -23.767252655930715], + [-45.761583106972104, -23.76724365599001], + [-45.76155510682047, -23.76723265604826], + [-45.76151510660057, -23.76721565613089], + [-45.76148410641697, -23.767197656192597], + [-45.76145810626607, -23.76718365624483], + [-45.76143010610371, -23.767168656301067], + [-45.761404105931106, -23.767146656349475], + [-45.76139010583506, -23.767133656374952], + [-45.761365105658705, -23.76710865641962], + [-45.76134610552473, -23.76708965645347], + [-45.76133310542771, -23.7670746564757], + [-45.761321105337565, -23.767060656496216], + [-45.761302105187355, -23.7670356565271], + [-45.7612811050447, -23.767016656565648], + [-45.76120210449554, -23.766940656708048], + [-45.76122510445513, -23.766888656630453], + [-45.761224104223786, -23.766804656591678], + [-45.76122410417785, -23.766787656583322], + [-45.76123010409312, -23.766746656549746], + [-45.76124710404286, -23.766700656488688], + [-45.76130110411831, -23.766641656337143], + [-45.761345104342155, -23.766653656243037], + [-45.76139910455824, -23.766646656116837], + [-45.76143410469154, -23.76663965603392], + [-45.7615041049691, -23.766629655869945], + [-45.76155310517954, -23.76662865575799], + [-45.76160210536305, -23.766617655641323], + [-45.76163810542776, -23.766583655542863], + [-45.76163910525377, -23.766517655508427], + [-45.76163310511418, -23.766475655501637], + [-45.76160710486323, -23.766424655535804], + [-45.761577104640836, -23.766390655587408], + [-45.76153810436313, -23.7663506556565], + [-45.76151710420416, -23.766325655692004], + [-45.761485104, -23.766301655752976], + [-45.76146410386815, -23.766286655793387], + [-45.761437103734465, -23.76628065585187], + [-45.761419103650745, -23.766278655891817], + [-45.76140210352548, -23.766259655921097], + [-45.761378103313014, -23.76621965595618], + [-45.76135010310193, -23.76618665600372], + [-45.761313102865344, -23.766158656074143], + [-45.76127810264546, -23.76613365614149], + [-45.76125410247895, -23.76611065618475], + [-45.76124110234671, -23.766082656200602], + [-45.76123210222106, -23.766050656205458], + [-45.76123010207724, -23.766000656185646], + [-45.76122510195827, -23.76596465617941], + [-45.761225101936645, -23.765956656175536], + [-45.76123710180782, -23.765889656115533], + [-45.761223101576675, -23.7658266561166], + [-45.76122010145284, -23.765785656103407], + [-45.76124510140483, -23.765727656018278], + [-45.76125510131595, -23.765678655971676], + [-45.76126010113505, -23.765603655923716], + [-45.76129110105111, -23.765522655813687], + [-45.761331100954855, -23.765422655673984], + [-45.76135910091454, -23.76536265558106], + [-45.761375100813915, -23.765299655513978], + [-45.76139210076628, -23.7652546554533], + [-45.76142210081041, -23.76522265536963], + [-45.76144410082501, -23.76519265530498], + [-45.7614911008241, -23.765116655161002], + [-45.761535100850715, -23.76505565503125], + [-45.7615691008635, -23.765005654929556], + [-45.76158410085048, -23.764976654881394], + [-45.761610100850035, -23.76493465480178], + [-45.761637100832395, -23.764884654715974], + [-45.76166810083757, -23.764836654622123], + [-45.76170610090023, -23.76479865451719], + [-45.76172410091096, -23.764773654464154], + [-45.76174910095761, -23.764750654396074], + [-45.76180610112992, -23.764722654252857], + [-45.761847101251476, -23.764701654149487], + [-45.7618921013932, -23.764681654037485], + [-45.76194210151078, -23.76464465390576], + [-45.761967101560124, -23.76462265383816], + [-45.76199810161662, -23.764593653753572], + [-45.762019101651205, -23.764572653695634], + [-45.76203210165372, -23.76455265365637], + [-45.762051101657995, -23.76452365359902], + [-45.76206310166156, -23.76450565356293], + [-45.76208410167191, -23.764475653500632], + [-45.762113101698105, -23.764438653416637], + [-45.76215310176394, -23.76439865330618], + [-45.762190101854706, -23.764372653209392], + [-45.76222110190041, -23.76433965312287], + [-45.76225210194876, -23.76430765303682], + [-45.76229410204231, -23.7642746529253], + [-45.76233510212883, -23.764240652815467], + [-45.762366102193425, -23.764214652732317], + [-45.76240610229181, -23.764186652627814], + [-45.76243910238401, -23.76416765254349], + [-45.76250310253548, -23.764120652375137], + [-45.76255910269254, -23.764088652232285], + [-45.76261210280424, -23.76404465209036], + [-45.762630102871704, -23.76404065204743], + [-45.762655102929145, -23.764021651981484], + [-45.76269810302705, -23.76398865186757], + [-45.76278010323778, -23.763934651654942], + [-45.76283010335805, -23.7638986515237], + [-45.76290410354758, -23.763849651331657], + [-45.762938103633275, -23.763826651243125], + [-45.76297510373214, -23.763803651147796], + [-45.763033103906096, -23.763774651001892], + [-45.763072104008124, -23.763749650901044], + [-45.76311510412762, -23.763724650791104], + [-45.763176104301095, -23.763690650635922], + [-45.76323810448169, -23.763657650478844], + [-45.76329010461875, -23.763624650344607], + [-45.76333410472358, -23.763592650229004], + [-45.76337710482418, -23.763560650115693], + [-45.7634281049461, -23.763523649981682], + [-45.763503105175054, -23.76348764979373], + [-45.76357710539967, -23.763451649607944], + [-45.76362310554841, -23.763432649494153], + [-45.763661105665086, -23.763414649399028], + [-45.7637151058513, -23.76339664926754], + [-45.76376610599213, -23.763366649137], + [-45.76383610620475, -23.76333264896129], + [-45.7638921063672, -23.763302648819376], + [-45.76393910649327, -23.763273648698412], + [-45.7639781066143, -23.76325564860102], + [-45.764009106722106, -23.763245648525658], + [-45.764064106901934, -23.76322364838997], + [-45.76411610706872, -23.76320164826101], + [-45.76418410729687, -23.76317664809426], + [-45.76422610744716, -23.76316464799303], + [-45.76425910757185, -23.763157647914554], + [-45.764306107738435, -23.76314364780099], + [-45.76436410795559, -23.763130647662724], + [-45.76439810807104, -23.763118647579685], + [-45.76443510820219, -23.763107647490205], + [-45.76446910833124, -23.763100647409573], + [-45.764507108431715, -23.763076647311454], + [-45.764532108526886, -23.763071647252147], + [-45.76455910863081, -23.763066647188364], + [-45.76460610882443, -23.763062647079632], + [-45.76465510902952, -23.76305964696682], + [-45.7646921091742, -23.76305364687974], + [-45.76473810934994, -23.76304464677077], + [-45.76479310954326, -23.763027646637486], + [-45.76486210978938, -23.763007646470957], + [-45.7649181099735, -23.762985646332975], + [-45.76495711011345, -23.76297464623896], + [-45.76498211020051, -23.762966646178203], + [-45.765021110345764, -23.762957646085134], + [-45.76514511084462, -23.76294264579608], + [-45.765200111051435, -23.762930645665225], + [-45.76526111125189, -23.76290664551483], + [-45.76531011140555, -23.76288464539269], + [-45.76531611142358, -23.7628816453776], + [-45.76534711151519, -23.762865645299364], + [-45.76537411161642, -23.76285964523509], + [-45.76541111175305, -23.76285064514659], + [-45.7654591119348, -23.76284064503259], + [-45.765506112120285, -23.762833644922363], + [-45.76553611223996, -23.762829644852278], + [-45.765576112408574, -23.762827644760403], + [-45.76560711254871, -23.76282964469091], + [-45.76563111265311, -23.762829644636344], + [-45.76566211278534, -23.762828644565403], + [-45.76568211287772, -23.76283064452091], + [-45.76573511310006, -23.762827644398993], + [-45.76580511337752, -23.762817644235007], + [-45.765859113604314, -23.76281464411081], + [-45.765929113873675, -23.76280164394535], + [-45.76596011399225, -23.762795643871932], + [-45.765994114134706, -23.762793643793678], + [-45.76608211447701, -23.762778643586344], + [-45.76611911463789, -23.762778643502234], + [-45.76616111480707, -23.76277364340436], + [-45.76624511514002, -23.762761643207572], + [-45.76628111529657, -23.762761643125764], + [-45.76631111541894, -23.762758643056113], + [-45.76636311559638, -23.76274064292915], + [-45.76639711570651, -23.762726642845063], + [-45.76644011588534, -23.76272364274586], + [-45.76647411602517, -23.76272064266708], + [-45.76651311618401, -23.76271664257649], + [-45.76654711632375, -23.762713642497758], + [-45.76658411650364, -23.762720642417033], + [-45.76660711662525, -23.762728642368668], + [-45.766647116820856, -23.76273664228171], + [-45.766683116977404, -23.76273664219988], + [-45.76672411715573, -23.76273664210668], + [-45.76675711729392, -23.76273464203063], + [-45.76679111743096, -23.762730641951418], + [-45.76685711769094, -23.762720641796477], + [-45.76687911777046, -23.762714641743614], + [-45.76691011790529, -23.76271464167312], + [-45.7670051183185, -23.762714641457176], + [-45.7670421184929, -23.762719641375487], + [-45.76711711884069, -23.762727641208933], + [-45.76715411900439, -23.76272864112531], + [-45.767239119387504, -23.762733640934517], + [-45.76728411958601, -23.762734640832694], + [-45.76733011977793, -23.762731640726695], + [-45.76737411996661, -23.762730640626184], + [-45.76743212018094, -23.76271664048754], + [-45.76748112036439, -23.762705640370744], + [-45.76751712051821, -23.762704640288455], + [-45.767578120764675, -23.762697640146413], + [-45.76763312100381, -23.762697640021393], + [-45.76768412123918, -23.762702639907864], + [-45.767713121365304, -23.76270263984194], + [-45.76773412148093, -23.762711639798507], + [-45.76775612158206, -23.762713639749563], + [-45.7677971217604, -23.762713639656372], + [-45.767846121981584, -23.762716639546436], + [-45.76792312231645, -23.762716639371412], + [-45.768119123139186, -23.762705638920455], + [-45.768224123587736, -23.762702638680327], + [-45.768292123880805, -23.762701638525236], + [-45.76831612397702, -23.76269863846927], + [-45.76842412444409, -23.762697638223255], + [-45.76848412469412, -23.762693638084926], + [-45.768551124980135, -23.762691637931656], + [-45.768588125130286, -23.762687637845513], + [-45.768643125374815, -23.76268963772147], + [-45.768716125714015, -23.762697637559455], + [-45.76881312615744, -23.76270563734278], + [-45.76892312667372, -23.762719637099522], + [-45.76897812691555, -23.762720636974972], + [-45.76902712714762, -23.762727636867034], + [-45.76913012759287, -23.7627266366324], + [-45.76916412774071, -23.762726636555122], + [-45.769235128030566, -23.762719636390223], + [-45.769280128226285, -23.76271963628792], + [-45.76932312840788, -23.76271763618922], + [-45.769380128655776, -23.762717636059623], + [-45.769460128984825, -23.762710635874296], + [-45.7695211292473, -23.762709635735153], + [-45.76961512967779, -23.762717635525348], + [-45.769692130015336, -23.762718635350772], + [-45.76981413055939, -23.762723635075904], + [-45.769851130723026, -23.762724634992274], + [-45.769938131112205, -23.76272863479638], + [-45.77001313143293, -23.76272663462492], + [-45.77005513161563, -23.762726634529436], + [-45.770170132150895, -23.762739634274304], + [-45.77035313300076, -23.762759633867958], + [-45.770478133568716, -23.762768633588152], + [-45.77056613398115, -23.76277963339338], + [-45.77058513406926, -23.762781633351253], + [-45.77060613416053, -23.762781633303486], + [-45.77062513423503, -23.762778633258755], + [-45.770643134313296, -23.762778633217824], + [-45.770688134519794, -23.762782633117517], + [-45.77074713480889, -23.762794632989177], + [-45.77078613497573, -23.7627936329], + [-45.77085013525402, -23.762793632754484], + [-45.770887135417674, -23.762794632670843], + [-45.770927135634906, -23.762810632587776], + [-45.771034136138034, -23.762824632351208], + [-45.7710761363369, -23.76283063225869], + [-45.77127313727738, -23.76286163182585], + [-45.77134113759475, -23.76286963167509], + [-45.77139613786639, -23.762881631555874], + [-45.77144113809452, -23.762893631459427], + [-45.7715011383987, -23.76290963133076], + [-45.77151613848825, -23.762918631301087], + [-45.771541138599694, -23.76291963124473], + [-45.77157513876375, -23.762925631170297], + [-45.77164513911413, -23.7629426310195], + [-45.77173313955088, -23.76296263082909], + [-45.77175513967353, -23.762972630783956], + [-45.771797139867, -23.762976630690375], + [-45.77185714017387, -23.762993630562228], + [-45.77189514036081, -23.76300163047966], + [-45.77193014052377, -23.763005630402084], + [-45.77197914075576, -23.763012630294032], + [-45.7720381410097, -23.763011630159376], + [-45.77210814132216, -23.76301463000175], + [-45.772159141527766, -23.763008629882815], + [-45.77221514174426, -23.76299862975058], + [-45.77224814188775, -23.762998629675522], + [-45.77227614200951, -23.762998629611868], + [-45.77231814219487, -23.762999629516834], + [-45.7723661424279, -23.76300862941211], + [-45.77248514301837, -23.76303562915467], + [-45.77261014360526, -23.7630516288782], + [-45.77269214397529, -23.763056628694134], + [-45.77279914444337, -23.763057628451385], + [-45.77283314459119, -23.763057628374064], + [-45.77285714469287, -23.76305662831892], + [-45.772895144855376, -23.76305562823203], + [-45.7729151449424, -23.763055628186546], + [-45.772944145063086, -23.76305362811963], + [-45.772980145219606, -23.763053628037788], + [-45.77301414537554, -23.76305662796191], + [-45.77304614552828, -23.76306162789163], + [-45.773071145637026, -23.763061627834777], + [-45.77312914591897, -23.76307262770816], + [-45.773156146049836, -23.76307762764927], + [-45.77320514628461, -23.763085627541667], + [-45.773239146443245, -23.763089627466286], + [-45.77326914657369, -23.763089627398063], + [-45.77330314673502, -23.76309462732322], + [-45.773338146887276, -23.763094627243635], + [-45.77339614715561, -23.763100627114724], + [-45.773437147350144, -23.763106627024353], + [-45.77349814764251, -23.763116626890454], + [-45.7735471478853, -23.763127626784396], + [-45.77361014818897, -23.763138626646505], + [-45.77367314849273, -23.763149626508614], + [-45.77370214863507, -23.763155626445517], + [-45.77377114894857, -23.76316062629101], + [-45.77381114914144, -23.763167626203497], + [-45.77384114927729, -23.763169626136225], + [-45.77386314938112, -23.763172626087634], + [-45.77391514959908, -23.763169625967947], + [-45.773958149777975, -23.76316662586871], + [-45.77399114992152, -23.763166625793648], + [-45.77402815007966, -23.76316562570903], + [-45.77407415027968, -23.76316562560443], + [-45.77410915045888, -23.76317562552964], + [-45.77414915063014, -23.763174625438175], + [-45.77419315084309, -23.763182625342054], + [-45.77421615094317, -23.76318262528974], + [-45.774243151079496, -23.763189625231767], + [-45.774280151261976, -23.76319762515148], + [-45.774322151474344, -23.763208625061353], + [-45.77437115172264, -23.763221624956227], + [-45.77439315182636, -23.76322462490764], + [-45.77441215192797, -23.763231624867903], + [-45.77443515204416, -23.76323762481847], + [-45.77446215218322, -23.7632456247609], + [-45.77449415235208, -23.763256624693497], + [-45.77452115248293, -23.763261624634502], + [-45.77457815273088, -23.763261624504867], + [-45.77462415294171, -23.76326562440226], + [-45.77464015301939, -23.76326862436731], + [-45.77468615323023, -23.763272624264605], + [-45.7747071533216, -23.763272624216842], + [-45.77474615349383, -23.763273624128637], + [-45.77478215364499, -23.763271624045796], + [-45.774798153706456, -23.76326862400796], + [-45.77487715405265, -23.76326962382877], + [-45.77493615432811, -23.763276623698022], + [-45.77500215464758, -23.763288623553688], + [-45.775070154989194, -23.76330562340729], + [-45.77512115524345, -23.76331762329716], + [-45.77517815549131, -23.7633176231675], + [-45.77521515563591, -23.76331162308046], + [-45.77524315574958, -23.763308623015345], + [-45.77527015586428, -23.763307622953462], + [-45.77530415599587, -23.763301622873158], + [-45.775344156169815, -23.763301622782176], + [-45.7753651562693, -23.763304622735852], + [-45.775405156470214, -23.763314622649766], + [-45.77543515665744, -23.76333562259171], + [-45.7754591568078, -23.763352622545483], + [-45.775492156989124, -23.763366622477236], + [-45.77551915716062, -23.76338662242553], + [-45.77556815741421, -23.763401622321364], + [-45.77571715807562, -23.76340662198489], + [-45.77580615842745, -23.763393621776196], + [-45.77584315860188, -23.76339862169443], + [-45.77586415870136, -23.763401621648118], + [-45.77590415889415, -23.763408621560508], + [-45.775931159046706, -23.76342162150541], + [-45.77596115920423, -23.76343162144208], + [-45.77599615938349, -23.763441621367367], + [-45.77603515959097, -23.763455621285384], + [-45.77607415979022, -23.763466621202042], + [-45.776105159957474, -23.76347862113747], + [-45.77613516009872, -23.763482621071162], + [-45.77616616025513, -23.763490621004486], + [-45.776214160463915, -23.763490620895315], + [-45.776277160762156, -23.763499620756335], + [-45.776330161003465, -23.763503620637785], + [-45.77638416124633, -23.76350662051639], + [-45.776415161432496, -23.7635256204552], + [-45.776446161616036, -23.763543620393317], + [-45.77648416181906, -23.763557620313783], + [-45.77651316197628, -23.763569120253397], + [-45.77654216213347, -23.763580620192997], + [-45.776570162306605, -23.763599620138585], + [-45.77661516253742, -23.763612620042498], + [-45.77665216270646, -23.76361561995986], + [-45.77668916288082, -23.763620619878104], + [-45.77672816304493, -23.76361861978842], + [-45.77676816325675, -23.763632619704257], + [-45.776814163443234, -23.763627619597113], + [-45.776868163664595, -23.763622619471885], + [-45.77689916379119, -23.763619619399904], + [-45.776965164064684, -23.763614619247402], + [-45.777020164303764, -23.763614619122286], + [-45.777072164519076, -23.763610619001987], + [-45.777110164681645, -23.763609618915066], + [-45.77716516493703, -23.76361561879294], + [-45.777200165105405, -23.7636216187162], + [-45.77722916525854, -23.76363161865502], + [-45.777246165354086, -23.763639618620278], + [-45.77726416545666, -23.763648618583773], + [-45.777279165570654, -23.763666618558386], + [-45.77730116573388, -23.76369161852052], + [-45.777337166022896, -23.76374061846242], + [-45.77734516607936, -23.763748618448044], + [-45.77735416614278, -23.76375761843199], + [-45.77737616628986, -23.763776618391244], + [-45.77739416641679, -23.763794618359025], + [-45.77741616655578, -23.763810618316754], + [-45.77742816665385, -23.7638276182977], + [-45.77744816681659, -23.763855618265843], + [-45.77746316693319, -23.76387461824092], + [-45.77748016707743, -23.763900618214905], + [-45.777490167166924, -23.76391761820042], + [-45.7775031672532, -23.763928618176205], + [-45.77750916731442, -23.763941618168893], + [-45.777525167451586, -23.76396661814458], + [-45.77753816754869, -23.76398161812239], + [-45.77756016766865, -23.763990618076654], + [-45.777572167747984, -23.764000618054236], + [-45.77758316781196, -23.764006618032106], + [-45.777602167932415, -23.76402061799579], + [-45.77762316807516, -23.764039617957124], + [-45.777657168282566, -23.76406161789053], + [-45.77769316845527, -23.764067617811616], + [-45.77775116874533, -23.764081617686376], + [-45.7777961689464, -23.764083617584973], + [-45.777821169065966, -23.76408761753012], + [-45.77785816919433, -23.76407561744008], + [-45.77792416944337, -23.764061617283133], + [-45.7779731696565, -23.76406161717168], + [-45.77798016975179, -23.764085617167353], + [-45.77798316979197, -23.76409561716541], + [-45.77795416971726, -23.764114617240665], + [-45.7779291696491, -23.764129617304764], + [-45.77788616952975, -23.764154617414853], + [-45.77787216951217, -23.764170617454376], + [-45.77786116958331, -23.764214617500787], + [-45.77788816978727, -23.76424661745499], + [-45.777910169950594, -23.764271617417123], + [-45.777924170079, -23.764296617397367], + [-45.77791917018713, -23.76434461743205], + [-45.77792917030366, -23.764371617422444], + [-45.77794117048839, -23.764420617418935], + [-45.77796617077825, -23.76448761739466], + [-45.77799317096608, -23.76451361734588], + [-45.778010171088575, -23.764531617315956], + [-45.778034171309265, -23.76457461728226], + [-45.7780451714518, -23.764609617274306], + [-45.77805417158284, -23.764643617270327], + [-45.778055171649385, -23.76466661727918], + [-45.77804817168933, -23.764692617307745], + [-45.77804417177475, -23.764730617335374], + [-45.77804517182777, -23.76474861734179], + [-45.778026171804676, -23.764770617395794], + [-45.77800517173498, -23.764778617447405], + [-45.77797617166567, -23.764799617523554], + [-45.77797117170348, -23.76482161754566], + [-45.77797217175108, -23.764837617551144], + [-45.77797217184846, -23.764873617568618], + [-45.77796417182718, -23.764878617589307], + [-45.777941171756964, -23.764889617647004], + [-45.777912171668724, -23.764903617719767], + [-45.777887171605975, -23.76492061778491], + [-45.77787217157862, -23.764934617825837], + [-45.77784017149361, -23.76495461790832], + [-45.77780717140144, -23.764973617992688], + [-45.77780117138891, -23.76497861800876], + [-45.77780017141973, -23.764991618017365], + [-45.777813171554705, -23.765020618001866], + [-45.77782817166862, -23.765038617976483], + [-45.77784317177709, -23.765054617950128], + [-45.77784517181555, -23.76506561795094], + [-45.777847171878335, -23.765085617956093], + [-45.77784717191621, -23.76509961796289], + [-45.7778501719563, -23.76510961796096], + [-45.7778591720306, -23.76512261794684], + [-45.77788417222048, -23.765152617904516], + [-45.77789817232194, -23.76516761787996], + [-45.77791017241472, -23.76518261785993], + [-45.777920172498696, -23.765197617844482], + [-45.77792917261901, -23.765227617838587], + [-45.77793517269649, -23.76524661783413], + [-45.77794117276321, -23.765261617827765], + [-45.777949172838596, -23.765276617816873], + [-45.77796217291399, -23.765283617790747], + [-45.777974172998626, -23.765295617769212], + [-45.777991173102286, -23.765306617735884], + [-45.77800717319891, -23.76531661770438], + [-45.778031173346584, -23.76533261765755], + [-45.778049173468105, -23.765348617624383], + [-45.778059173546694, -23.765361617607947], + [-45.77807317367257, -23.765385617587803], + [-45.77807817373216, -23.765399617583235], + [-45.77812117400569, -23.76543161750093], + [-45.778143174139174, -23.76544561745769], + [-45.778170174308, -23.76546461740547], + [-45.77820317448671, -23.76547761733672], + [-45.77822217460447, -23.765490617299804], + [-45.77826117480915, -23.765503617217334], + [-45.77827217487595, -23.765510617195755], + [-45.77829117494238, -23.76550461714965], + [-45.77830717491728, -23.765469617096173], + [-45.77831417483678, -23.76542861706039], + [-45.77833817489789, -23.76541261699795], + [-45.77838917514124, -23.765420616885837], + [-45.77841217522776, -23.765415616831106], + [-45.77843217526869, -23.765398616777365], + [-45.778455175349826, -23.76539161672159], + [-45.77848417549755, -23.765399616659533], + [-45.77850217566237, -23.765431616634135], + [-45.778517175781694, -23.76545161660968], + [-45.77853917592338, -23.76546861656788], + [-45.778570176093325, -23.765481616503667], + [-45.77859717621066, -23.76548161644224], + [-45.77862417633628, -23.765484616382334], + [-45.77864517644919, -23.76549261633838], + [-45.77866317655178, -23.76550161630176], + [-45.778676176619136, -23.7655056162742], + [-45.77869317669305, -23.76550561623553], + [-45.77872817679922, -23.76548861614764], + [-45.778743176869924, -23.765490616114487], + [-45.778773176989546, -23.765486616044292], + [-45.778794177094355, -23.76549161599892], + [-45.77881517720995, -23.765500615955457], + [-45.778827177289294, -23.76551061593305], + [-45.778829177311515, -23.765515615930994], + [-45.77883817736139, -23.76551961591244], + [-45.778846177425905, -23.765530615899593], + [-45.77885817751867, -23.765545615879493], + [-45.77887117762128, -23.765562615858236], + [-45.778885177744286, -23.765585615837512], + [-45.778933178163975, -23.765663615766286], + [-45.778933178209975, -23.765680615774517], + [-45.77893017826459, -23.765705615793436], + [-45.77894217840875, -23.765739615782703], + [-45.7789561785535, -23.765770615765906], + [-45.7789721786501, -23.765780615734382], + [-45.77901417890307, -23.76580661565147], + [-45.77904617915311, -23.765847615598553], + [-45.77907317932191, -23.765866615546383], + [-45.77909417946459, -23.765885615507816], + [-45.779114179594906, -23.765901615470092], + [-45.77915817992691, -23.76595361539519], + [-45.77917718003655, -23.765963615356846], + [-45.77921218026994, -23.76599361529178], + [-45.779236180412134, -23.766007615243975], + [-45.7792741805882, -23.766011615159517], + [-45.77931218089406, -23.766063615098286], + [-45.77933618104986, -23.766082615052877], + [-45.77936318119432, -23.766092614996342], + [-45.77940118142723, -23.766117614922052], + [-45.77942418157048, -23.76613361487748], + [-45.779451181717626, -23.766144614821435], + [-45.77948518189522, -23.766155614749334], + [-45.779512182045096, -23.766167614693746], + [-45.779553182253146, -23.766178614605813], + [-45.779583182397104, -23.766183614540044], + [-45.77960618252691, -23.76619461449297], + [-45.77963118268695, -23.76621361444529], + [-45.77965518286168, -23.766239614403354], + [-45.77973818328754, -23.766263614226183], + [-45.779779183517256, -23.76628261414209], + [-45.779831183770355, -23.76629261402856], + [-45.779853183890324, -23.766301613982908], + [-45.77987118402006, -23.76632061395125], + [-45.77988018406996, -23.766324613932674], + [-45.77991118424001, -23.766337613868483], + [-45.779964184521795, -23.766356613757075], + [-45.77998518464562, -23.766368613715155], + [-45.78000118474765, -23.766380613684575], + [-45.78003118491868, -23.766395613623594], + [-45.78005918509175, -23.766414613569083], + [-45.78014018555765, -23.766456613405182], + [-45.78015918569172, -23.766475613371245], + [-45.78018818585561, -23.766489613311958], + [-45.780226186026276, -23.766491613226442], + [-45.780250186119844, -23.76648761316993], + [-45.78027518624743, -23.76649461311639], + [-45.780322186470784, -23.766501613012895], + [-45.780391186749114, -23.76649361285198], + [-45.780432186894934, -23.766481612752887], + [-45.78050618715716, -23.766459612573787], + [-45.780549187327914, -23.76645361247304], + [-45.78056818741058, -23.76645361242982], + [-45.78061418759977, -23.76644961232313], + [-45.78066018774294, -23.76642861220828], + [-45.78068218776007, -23.76639961214414], + [-45.78069718773881, -23.766367612094463], + [-45.78071218770924, -23.766332612043293], + [-45.78071818763256, -23.766294612011222], + [-45.78071618758873, -23.76628161200945], + [-45.78071318755394, -23.766273612012434], + [-45.78071418750149, -23.76625261199993], + [-45.78072318750008, -23.766237611972155], + [-45.78072818751094, -23.766233611958846], + [-45.780742187571896, -23.766233611927003], + [-45.780759187645714, -23.766233611888314], + [-45.78077118770872, -23.76623761186291], + [-45.78077118774662, -23.766251611869706], + [-45.780775187796536, -23.766263611866464], + [-45.78077918788427, -23.766289611869908], + [-45.78078818800189, -23.766318611863614], + [-45.78079118806634, -23.76633761186599], + [-45.78079418809016, -23.766341611861094], + [-45.780832188290596, -23.766354611780937], + [-45.78085318831154, -23.766328611720493], + [-45.780853188246596, -23.766304611708893], + [-45.78085318819519, -23.766285611699633], + [-45.7808531881573, -23.766271611692908], + [-45.78085018811713, -23.766261611694826], + [-45.78083818801092, -23.76624161171236], + [-45.78086018801462, -23.76620761164583], + [-45.78088718808866, -23.766191611576613], + [-45.780909188222225, -23.76620561153336], + [-45.780915188250994, -23.76620661152019], + [-45.78093718829528, -23.76618761146092], + [-45.78092918816576, -23.76615261146208], + [-45.78088818783866, -23.766097611528725], + [-45.78090218784813, -23.766078611487576], + [-45.780937188035544, -23.766091611414257], + [-45.78099818847392, -23.766155611306495], + [-45.781031188598455, -23.766148611228036], + [-45.78105318862099, -23.766121611164845], + [-45.78105918857678, -23.76609561113853], + [-45.78105718850046, -23.766070611131028], + [-45.781049188425065, -23.766055611141933], + [-45.78103118830623, -23.766040611175526], + [-45.780997188107015, -23.766021611243684], + [-45.780940187786136, -23.765994611360284], + [-45.78089918755103, -23.765973611443396], + [-45.780891187456675, -23.765951611450888], + [-45.78090118740549, -23.765916611411185], + [-45.78093818750418, -23.76589361131584], + [-45.780983187648424, -23.765874611204147], + [-45.781014187715556, -23.765849611121535], + [-45.78103518772034, -23.765817611058143], + [-45.781039187637596, -23.765780611031097], + [-45.78102818750317, -23.765748611040515], + [-45.78100018729483, -23.765716611088713], + [-45.78098318709648, -23.76567061110509], + [-45.78099918702266, -23.765617611042956], + [-45.78099918695769, -23.765593611031264], + [-45.78099118686076, -23.765570611038264], + [-45.78096418663783, -23.76553161108085], + [-45.780942186485305, -23.765510611120643], + [-45.780936186345535, -23.76546861111387], + [-45.780936186248134, -23.765432611096433], + [-45.780929186128475, -23.76539961109636], + [-45.780923186056434, -23.76538261110167], + [-45.78092218603045, -23.765374611100114], + [-45.7809161859502, -23.765354611104097], + [-45.78092318586706, -23.765312611067742], + [-45.78100418609202, -23.765265610860627], + [-45.78101518612633, -23.765260610833096], + [-45.78104618616371, -23.765224610745104], + [-45.78108318623804, -23.765192610645407], + [-45.78113018635579, -23.765160610522837], + [-45.78120118654276, -23.7651156103394], + [-45.781239186708014, -23.765115610252952], + [-45.78132818700026, -23.765080610033458], + [-45.78139318722059, -23.76505760987433], + [-45.78144918736939, -23.76502260972995], + [-45.781476187448824, -23.7650086096617], + [-45.781506187554996, -23.764999609589026], + [-45.78153718767354, -23.7649936095156], + [-45.78159818785215, -23.764961609361183], + [-45.78161618792227, -23.764958609318786], + [-45.78164518805646, -23.76496160925425], + [-45.78170918832665, -23.764958609107154], + [-45.7818001886898, -23.764946608894338], + [-45.78185518888015, -23.76492860876037], + [-45.78191318908912, -23.764912608620616], + [-45.78202218958191, -23.764919608376026], + [-45.78216019018195, -23.76491960806197], + [-45.782228190458575, -23.764912607903778], + [-45.782300190779736, -23.76491560774139], + [-45.78235319100197, -23.764912607619337], + [-45.782393191175906, -23.764912607528288], + [-45.78241719128029, -23.764912607473686], + [-45.782447191410704, -23.764912607405424], + [-45.78250319162442, -23.764901607272712], + [-45.782581191960794, -23.764900607094738], + [-45.78262419211798, -23.764889606991506], + [-45.78267119234123, -23.764896606887888], + [-45.78273719263362, -23.76489860673874], + [-45.78277719281567, -23.76490160664916], + [-45.78280819295305, -23.764902606579103], + [-45.78288019329052, -23.764911606419545], + [-45.78299719382354, -23.7649206061577], + [-45.783158194623574, -23.764957605809204], + [-45.783239194986585, -23.76496160562679], + [-45.783411195829, -23.764996605252392], + [-45.78350119621754, -23.764995605047087], + [-45.78354419639367, -23.764991604947284], + [-45.78368119699735, -23.764994604636946], + [-45.7837811974836, -23.76501360441855], + [-45.78388219798755, -23.76503760420035], + [-45.78396519844314, -23.765072604028415], + [-45.78399219862275, -23.765095603978175], + [-45.78400719872856, -23.765110603951303], + [-45.78403919891636, -23.765128603887185], + [-45.78406819910198, -23.76515060383191], + [-45.78409419926103, -23.76516760378098], + [-45.784116199432475, -23.76519560374449], + [-45.78413019954466, -23.765214603721823], + [-45.78415719977573, -23.76525660368077], + [-45.78418220000341, -23.76530060364523], + [-45.78422320032511, -23.76535360357767], + [-45.78423220044543, -23.76538360357166], + [-45.784249200595106, -23.765411603546568], + [-45.78425520068889, -23.765436603545073], + [-45.78425920074955, -23.76545260354372], + [-45.784288200932444, -23.765473603487948], + [-45.784316201065, -23.765477603426127], + [-45.7843352011909, -23.765493603390645], + [-45.78432820123898, -23.765522603420663], + [-45.78430920118878, -23.765534603469742], + [-45.78421520081264, -23.765546603689447], + [-45.7841532005431, -23.765546603830565], + [-45.78412320041541, -23.765547603899407], + [-45.78405620022692, -23.7655856040703], + [-45.78403720026883, -23.765631604135844], + [-45.78404020035221, -23.765657604141666], + [-45.7840402003928, -23.76567260414894], + [-45.78405220051264, -23.76569760413379], + [-45.78407620067113, -23.76571760408884], + [-45.7840902007698, -23.765731604063852], + [-45.7841052008783, -23.7657476040374], + [-45.78410620090437, -23.765755604039054], + [-45.784114200990516, -23.765774604030018], + [-45.784120201046434, -23.76578560402172], + [-45.784136201161914, -23.765802603993524], + [-45.78415120125426, -23.765812603964278], + [-45.78415420128351, -23.76581860396033], + [-45.784147201296335, -23.765834603984047], + [-45.78413820129505, -23.765848604011396], + [-45.784112201271405, -23.765881604086484], + [-45.784110201273535, -23.765885604093036], + [-45.78410420137731, -23.76593360412998], + [-45.784097201352346, -23.765935604146954], + [-45.78405820127473, -23.765969604252202], + [-45.78408620152639, -23.766017604211726], + [-45.78408620160215, -23.766045604225326], + [-45.78408920164495, -23.766056604223856], + [-45.784108201795256, -23.76608160419269], + [-45.784120201871815, -23.766090604169783], + [-45.78413420193799, -23.76609260413887], + [-45.784185202140826, -23.766085604019363], + [-45.78421120232966, -23.76611360397386], + [-45.78421120240814, -23.766142603987927], + [-45.78423520255853, -23.766159603941546], + [-45.784266202687796, -23.766157603869935], + [-45.78430220288222, -23.766171603794778], + [-45.78433820316047, -23.76621660373468], + [-45.784377203357124, -23.76622660365089], + [-45.784398203448475, -23.766226603603105], + [-45.784417203525635, -23.7662246035588], + [-45.784436203600094, -23.76622160351411], + [-45.78445320367398, -23.766221603475422], + [-45.78447720380541, -23.766231603425673], + [-45.78450320395096, -23.766243603372235], + [-45.784524204090935, -23.766261603333245], + [-45.78453920419673, -23.76627660330637], + [-45.78455020427705, -23.7662886032871], + [-45.7845692043921, -23.766300603249675], + [-45.78457820445563, -23.766309603233598], + [-45.78458720452446, -23.76632060321846], + [-45.78460120460698, -23.766328603190455], + [-45.78461120467484, -23.766337603172076], + [-45.78463720482849, -23.766352603120172], + [-45.78465020490666, -23.76636060309451], + [-45.78469920516297, -23.766376602990654], + [-45.78471620527746, -23.766391602959317], + [-45.78471620531806, -23.766406602966597], + [-45.78470420537962, -23.766448603014204], + [-45.78470420544457, -23.766472603025864], + [-45.78472120556168, -23.76648860299495], + [-45.78473120562956, -23.76649760297656], + [-45.784746205724616, -23.76650860294771], + [-45.78477020586407, -23.766521602899488], + [-45.78478820598831, -23.76653860286667], + [-45.784803206086, -23.766550602838358], + [-45.78481920619623, -23.766565602809305], + [-45.78483120632683, -23.766594602795987], + [-45.78484020642825, -23.7666176027867], + [-45.78486020659364, -23.76664660275523], + [-45.78488820673704, -23.76665460269544], + [-45.784902206808724, -23.766658602665483], + [-45.784923206940576, -23.766673602624948], + [-45.78494520709854, -23.766696602585974], + [-45.78496920726505, -23.766719602542544], + [-45.78500020745945, -23.766741602482615], + [-45.78503320757582, -23.766731602402697], + [-45.7850512076243, -23.766720602356372], + [-45.785073207747054, -23.76673060231118], + [-45.78508520785608, -23.766751602294015], + [-45.78509620792819, -23.76676060227338], + [-45.785112208022184, -23.766769602241347], + [-45.785132208130754, -23.766777602199646], + [-45.78517520832582, -23.76678060210321], + [-45.78521020850502, -23.766790602028397], + [-45.78524020866793, -23.76680260196597], + [-45.78526420881289, -23.766817601918618], + [-45.785319209060134, -23.766820601794844], + [-45.785371209329476, -23.766836601684236], + [-45.78539520948798, -23.766856601639354], + [-45.78541520964255, -23.766881601605885], + [-45.785468209905495, -23.766893601491073], + [-45.7854712099591, -23.766908601491533], + [-45.78546920996394, -23.766913601498484], + [-45.785439209879534, -23.766930601575087], + [-45.785435209940594, -23.766959601598202], + [-45.785447210065946, -23.766986601583994], + [-45.785551210574816, -23.7670076013575], + [-45.7855762106321, -23.766988601291295], + [-45.7856412108551, -23.766966601132705], + [-45.78565821086683, -23.766943601082787], + [-45.78566821093732, -23.7669536010649], + [-45.785682211036075, -23.766967601039852], + [-45.78571021117675, -23.76697460097956], + [-45.78573221123187, -23.766959600922096], + [-45.785789211536496, -23.766980600802576], + [-45.78586921188427, -23.766980600620457], + [-45.78592121211307, -23.76698160050256], + [-45.78593221216354, -23.766982600478016], + [-45.78594421221579, -23.766982600450692], + [-45.78595821224951, -23.76697260041395], + [-45.785982212340365, -23.7669676003569], + [-45.78599721238662, -23.766960600319315], + [-45.78600121230385, -23.766923600292316], + [-45.786006212236224, -23.76689060026495], + [-45.7860062121009, -23.76684060024064], + [-45.786051212220734, -23.76681260012469], + [-45.786071212137216, -23.76674960004853], + [-45.78602621179814, -23.766696600125226], + [-45.786005211449655, -23.766601600126986], + [-45.785977211244024, -23.766570600175708], + [-45.78598721116853, -23.76652660013161], + [-45.786014211234395, -23.76650760006087], + [-45.78600421105558, -23.766457600059393], + [-45.785963210690646, -23.766388600119228], + [-45.78593521029555, -23.76628760013397], + [-45.785968210227885, -23.766209600021053], + [-45.78598821013627, -23.766143599943533], + [-45.78595220979838, -23.766076599992946], + [-45.785975209681794, -23.765996599901747], + [-45.78603420968666, -23.765903599722353], + [-45.786069209838786, -23.765903599642684], + [-45.78612421001296, -23.76587959950579], + [-45.786199210190105, -23.76582459930847], + [-45.78626021037951, -23.765796599156015], + [-45.78635521070312, -23.765763598923776], + [-45.78644021100769, -23.765739598718593], + [-45.786505211214525, -23.765711598557036], + [-45.78664121175429, -23.765692598238257], + [-45.78673621214295, -23.765683598017592], + [-45.78682121250977, -23.76568259782362], + [-45.7869972132477, -23.765672597418085], + [-45.78709721374197, -23.765694597201144], + [-45.787153214047656, -23.765717597084777], + [-45.78727821452884, -23.765694596789114], + [-45.7873742149434, -23.765693596570085], + [-45.78743421526646, -23.76571659644459], + [-45.78751921568468, -23.76573459625989], + [-45.78759021610433, -23.765775596118154], + [-45.787670216452035, -23.76577559593603], + [-45.787806217040504, -23.765774595625842], + [-45.787911217545734, -23.76579259539551], + [-45.787997217968304, -23.765810595208514], + [-45.78816821875759, -23.765827594827446], + [-45.78822821908073, -23.76585059470202], + [-45.788309219457155, -23.76585959452192], + [-45.78838921980486, -23.76585959433979], + [-45.788454220111845, -23.765868594196185], + [-45.78854522052903, -23.765876593992854], + [-45.78857522065954, -23.76587659392454], + [-45.78859522079777, -23.76589559388829], + [-45.7886402210422, -23.765913593794547], + [-45.78877122166036, -23.765931593504988], + [-45.78879872178528, -23.765933593443357], + [-45.78882622191029, -23.765935593381762], + [-45.788892222270235, -23.765962593244524], + [-45.78896222257452, -23.76596259308516], + [-45.789108223293084, -23.765993592767746], + [-45.789218223846994, -23.766021592530887], + [-45.78929922419643, -23.766020592345974], + [-45.78937922461721, -23.766047592176925], + [-45.78945022495022, -23.76605659201965], + [-45.78950522528948, -23.76609359191231], + [-45.78955522554468, -23.76610759180526], + [-45.789616225883016, -23.76613459167948], + [-45.78967622614371, -23.76613459154287], + [-45.78972622639629, -23.766147591435317], + [-45.78979122667889, -23.766147591287332], + [-45.78983722694109, -23.766170591193678], + [-45.789877227163615, -23.76618859111139], + [-45.78991722739979, -23.766211591031418], + [-45.789978227664946, -23.76621159089252], + [-45.79003322792838, -23.766220590771688], + [-45.79014422849483, -23.76625159053395], + [-45.79011922847547, -23.76628459060684], + [-45.79014922861671, -23.766288590540448], + [-45.79025422914619, -23.766315590314544], + [-45.79032022947103, -23.766329590170944], + [-45.790375229683036, -23.766319590040936], + [-45.79044022996554, -23.766319589892916], + [-45.79052123036641, -23.766337589717168], + [-45.79056123064037, -23.766374589643974], + [-45.79059623088993, -23.76641058958177], + [-45.79068723119894, -23.766378589358975], + [-45.7907322314189, -23.766387589260905], + [-45.79076723163325, -23.766410589192382], + [-45.790823231963316, -23.766442589080377], + [-45.790863232210334, -23.766469589002362], + [-45.790888232394735, -23.766497588959037], + [-45.7909432326691, -23.766510588840084], + [-45.79098423292305, -23.766538588760213], + [-45.79100423307222, -23.766561588725843], + [-45.79104423329484, -23.76657958864346], + [-45.79112523369572, -23.766597588467807], + [-45.79116523394269, -23.766624588389725], + [-45.79119023411357, -23.766647588343957], + [-45.791251234416634, -23.76666158821186], + [-45.79129623473677, -23.766707588131634], + [-45.79137223517818, -23.76674858797845], + [-45.79146223573183, -23.76680858780257], + [-45.791503235969635, -23.766830587719788], + [-45.79152823620288, -23.76687658768513], + [-45.79152823629223, -23.7669095877012], + [-45.7915412364732, -23.76695558769386], + [-45.791549236608205, -23.766992587693604], + [-45.7915892368172, -23.767005587608725], + [-45.791614236988266, -23.767028587562983], + [-45.79161523708195, -23.767061587576737], + [-45.79162023725257, -23.76711658759195], + [-45.79162023740152, -23.767171587618602], + [-45.791610237358, -23.767171587641375], + [-45.79159523742007, -23.767218587698295], + [-45.79159123755163, -23.767273587734078], + [-45.79158123760832, -23.76731058777482], + [-45.79156123757286, -23.767329587829536], + [-45.79153623752646, -23.76735258789766], + [-45.79148623742286, -23.76739458803178], + [-45.7914662374848, -23.767449588103997], + [-45.79145223759995, -23.76751458816743], + [-45.791437237672845, -23.767565588226255], + [-45.79142223777011, -23.76762558828946], + [-45.791443237972466, -23.76766658826153], + [-45.791483238222156, -23.767694588183975], + [-45.79151323836331, -23.767698588117593], + [-45.79153823855867, -23.767730588076137], + [-45.79153323859924, -23.767753588098607], + [-45.7915242386738, -23.767795588139474], + [-45.79151423871696, -23.76782758817781], + [-45.79151423880631, -23.76786058819379], + [-45.79152923894471, -23.767887588172723], + [-45.79155423910208, -23.767905588124464], + [-45.79157523925839, -23.76792958808832], + [-45.791595239431935, -23.767961588058252], + [-45.79161523955415, -23.767974588019], + [-45.79163523967886, -23.767988587980245], + [-45.791645239798186, -23.768016587971033], + [-45.79166123995445, -23.768048587950084], + [-45.79166124009256, -23.76809958797485], + [-45.79169124032314, -23.76813658792439], + [-45.79172724059062, -23.76817758786228], + [-45.79177724089466, -23.768209587763888], + [-45.79183824130875, -23.768264587651622], + [-45.79186324150412, -23.768296587610173], + [-45.79187324163417, -23.76832858760288], + [-45.79187824170733, -23.76834758760076], + [-45.7918992418474, -23.768365587561647], + [-45.791954242124426, -23.768379587443054], + [-45.791984242327935, -23.76840658738782], + [-45.79202024258457, -23.768443587323794], + [-45.79205524286124, -23.76848958726635], + [-45.7920852430783, -23.768521587213502], + [-45.79209624322633, -23.768558587206424], + [-45.79209624335091, -23.768604587228676], + [-45.79214124366024, -23.768646587146556], + [-45.79219224396864, -23.76867858704587], + [-45.79224224428345, -23.768714586949383], + [-45.792308244657036, -23.768746586814554], + [-45.79232824480625, -23.76876958678025], + [-45.792378245072285, -23.768787586674982], + [-45.792434245429476, -23.768829586567797], + [-45.7924592456492, -23.76887058653072], + [-45.792494245850136, -23.768888586459795], + [-45.79252024605247, -23.76892158641643], + [-45.792535246190766, -23.76894858639536], + [-45.792545246296555, -23.768971586383767], + [-45.79255524636435, -23.76898058636537], + [-45.79259524658969, -23.768999586283456], + [-45.792631246770625, -23.769008586205846], + [-45.792651246906345, -23.769026586168987], + [-45.79269124732933, -23.769118586122403], + [-45.7927172475182, -23.769146586076747], + [-45.79274224767565, -23.7691645860285], + [-45.79276724786009, -23.769192585985117], + [-45.792798248130254, -23.769242585938773], + [-45.79282324831478, -23.769270585895402], + [-45.79284824851014, -23.769302585853936], + [-45.79287424872338, -23.769339585812588], + [-45.792909248924246, -23.769357585741634], + [-45.7929442491631, -23.769389585677406], + [-45.79301524954477, -23.76941658552868], + [-45.79309024999537, -23.76946258538011], + [-45.79311625020864, -23.76949958533884], + [-45.79313125029822, -23.769508585309072], + [-45.7931712504721, -23.76950858521796], + [-45.79319125062129, -23.769531585183476], + [-45.793221250851914, -23.76956858513311], + [-45.79328225106567, -23.76954958498498], + [-45.793302251201354, -23.769567584948124], + [-45.79334225143745, -23.76959058486807], + [-45.79338825181074, -23.769654584794342], + [-45.79341325201966, -23.76969158475527], + [-45.793438252266476, -23.769742584723048], + [-45.793489252523436, -23.76975558461318], + [-45.79351925260508, -23.769737584536077], + [-45.79354825254144, -23.769667584436085], + [-45.793594252730564, -23.7696635843294], + [-45.793644252983185, -23.7696765842218], + [-45.793905254215225, -23.769712583644726], + [-45.79396625457786, -23.76974858352316], + [-45.793966254642875, -23.76977258353481], + [-45.79400125483029, -23.769785583461385], + [-45.79404625503943, -23.769790583361274], + [-45.79407125514541, -23.76978958330382], + [-45.79409125518355, -23.76977158324957], + [-45.7941262553113, -23.769762583165466], + [-45.7941622554651, -23.769761583082953], + [-45.79422225581259, -23.76979358296178], + [-45.794277256038136, -23.769788582834078], + [-45.79430725616845, -23.76978858276573], + [-45.79435325651746, -23.7698435826876], + [-45.794398256788895, -23.769871582598554], + [-45.794448256992666, -23.76986658248226], + [-45.79451425720376, -23.76983858231835], + [-45.794574257388696, -23.769810582168184], + [-45.79460425742971, -23.769777582083798], + [-45.794614257438006, -23.769764582054812], + [-45.79459825730607, -23.76974158208007], + [-45.79457325719748, -23.76974158213704], + [-45.79454825708878, -23.769741582193973], + [-45.79451825692045, -23.769727582255552], + [-45.79450325685526, -23.769727582289725], + [-45.79448825675213, -23.769713582317113], + [-45.794487256674664, -23.76968658230629], + [-45.79452825683934, -23.769681582210513], + [-45.794543256891004, -23.769676582173858], + [-45.794573256997026, -23.76966758210114], + [-45.794618257192624, -23.769667581998615], + [-45.7946432572986, -23.769666581941184], + [-45.79464825732031, -23.76966658192981], + [-45.7946582573638, -23.769666581907014], + [-45.794663257336744, -23.769648581887033], + [-45.79466325727445, -23.769625581875857], + [-45.79466325723654, -23.769611581869068], + [-45.794663257160686, -23.76958358185551], + [-45.794667257129305, -23.769565581837718], + [-45.794687257140446, -23.769537581778593], + [-45.79469825723702, -23.769555581762223], + [-45.794723257445874, -23.76959258172321], + [-45.79472325749733, -23.769611581732388], + [-45.79473825766275, -23.76964858171617], + [-45.794753257752305, -23.769657581686293], + [-45.794769257846234, -23.76966658165416], + [-45.79478425793582, -23.76967558162436], + [-45.79484425820743, -23.769679581489676], + [-45.79487425833783, -23.769679581421336], + [-45.79498525889348, -23.769706581181453], + [-45.79505025920038, -23.76971558103776], + [-45.79508525935255, -23.769715580958025], + [-45.79512025952903, -23.76972458088269], + [-45.79512125963362, -23.769761580898265], + [-45.79514125976934, -23.7697795808614], + [-45.79521626018202, -23.769811580706083], + [-45.79528726053941, -23.769829580553033], + [-45.795392261106855, -23.769870580333578], + [-45.7954282613256, -23.76989358026272], + [-45.79547326158349, -23.769916580171287], + [-45.7955032617139, -23.76991658010294], + [-45.795543261936544, -23.76993458002058], + [-45.79555426203584, -23.769953580004707], + [-45.79558926223668, -23.769971579933735], + [-45.79563426244313, -23.769975579833122], + [-45.79567426261701, -23.769975579742006], + [-45.79575836498988, -23.769978257551628], + [-45.79581770725295, -23.769980147417396], + [-45.79609766249393, -23.769989060783832], + [-45.7968934899804, -23.769999183975553], + [-45.79728024655882, -23.768853920540252], + [-45.798922079661665, -23.768841817793508], + [-45.80030193297148, -23.769695516061873], + [-45.80164407086821, -23.770088128192768], + [-45.803303406561554, -23.77026610049653], + [-45.80463514886195, -23.76971754219587], + [-45.80478015079436, -23.768353281206576], + [-45.80461108694941, -23.767205565037703], + [-45.804588864444035, -23.767054702015553], + [-45.803780783991876, -23.765969328333075], + [-45.80264155205126, -23.76560363175265], + [-45.80247089916138, -23.765548851114996], + [-45.80232323031078, -23.763995230700832], + [-45.80292429967221, -23.762426346573147], + [-45.80400266988993, -23.76151563167613], + [-45.805140125244264, -23.76092991980138], + [-45.81005284123043, -23.758954774652494], + [-45.811218219021804, -23.75848623777045], + [-45.8125561208059, -23.758476804716256], + [-45.818810053642565, -23.75762197704621], + [-45.81909287688362, -23.757626847403586], + [-45.820840815553275, -23.757656950432004], + [-45.821809286518516, -23.75756884118082], + [-45.82215934422968, -23.757639514416283], + [-45.82404235240604, -23.75764051012169], + [-45.82517735723222, -23.757603507514784], + [-45.82664136356479, -23.757595504170926], + [-45.82806336985312, -23.75763850094713], + [-45.829164374642254, -23.757642498436837], + [-45.831613385585044, -23.757758492903676], + [-45.833575394913055, -23.75805848856937], + [-45.83464439973094, -23.758124486160863], + [-45.83553740383921, -23.758210484163516], + [-45.83646140814976, -23.75832148210723], + [-45.83732441174774, -23.758267480110874], + [-45.838267415861004, -23.758275477961625], + [-45.83927442037659, -23.758329475688118], + [-45.84020442456353, -23.75838547359112], + [-45.841225429041984, -23.758403471268117], + [-45.84229943391315, -23.7584814688525], + [-45.84246493462699, -23.758479968473832], + [-45.84263043534091, -23.75847846809507], + [-45.84362244005708, -23.758630465901906], + [-45.84545344836649, -23.758765461783813], + [-45.847382248058544, -23.75888525143452], + [-45.84738245706005, -23.758885457434136], + [-45.84885846380983, -23.759013454122698], + [-45.85074347218129, -23.759085449849607], + [-45.852952482530775, -23.759368444935962], + [-45.85541849412481, -23.759699439456856], + [-45.857067501642724, -23.759834435751184], + [-45.85758459701785, -23.759883293592125], + [-45.85859150864278, -23.75997843233518], + [-45.863476530691294, -23.760297421314956], + [-45.86529453901122, -23.760458417232886], + [-45.86975355941617, -23.760853407218235], + [-45.86975455942048, -23.760853407215947], + [-45.86976355946226, -23.760854407195815], + [-45.86977355951098, -23.760856407173865], + [-45.86977955953977, -23.76085740716062], + [-45.87733859765716, -23.76282439079107], + [-45.87930160755602, -23.76333538653804], + [-45.87930360756468, -23.763335386533463], + [-45.879305607576065, -23.763336386529343], + [-45.879308607589145, -23.763336386522475], + [-45.880220611794904, -23.763429384477917], + [-45.88113161599634, -23.763522382435404], + [-45.88113461600934, -23.763522382428544], + [-45.88113661601797, -23.76352238242396], + [-45.8811376160223, -23.763522382421677], + [-45.88113961603094, -23.763522382417086], + [-45.881141616036885, -23.763521382412048], + [-45.881142616041224, -23.763521382409746], + [-45.881144616047145, -23.763520382404707], + [-45.88114561605149, -23.763520382402398], + [-45.8811476160575, -23.763519382397348], + [-45.8811486160591, -23.763518382394594], + [-45.881149616063446, -23.7635183823923], + [-45.88115161606936, -23.76351738238726], + [-45.88115361607258, -23.763515382381758], + [-45.882008617746735, -23.762769380069933], + [-45.882009617751145, -23.762769380067635], + [-45.882016617765096, -23.762763380048714], + [-45.88202461778347, -23.762757380027573], + [-45.882032617804555, -23.76275238000682], + [-45.88204161783262, -23.762748379984338], + [-45.88204961785633, -23.762744379964136], + [-45.882058617887225, -23.76274137994213], + [-45.88206861792242, -23.762738379917813], + [-45.88207761795328, -23.762735379895794], + [-45.882087617993825, -23.762734379872445], + [-45.88209661802733, -23.762732379850785], + [-45.882106618070715, -23.762732379827895], + [-45.88212461814878, -23.76273237978667], + [-45.88477463023675, -23.762954373821326], + [-45.88628263711699, -23.763081370426494], + [-45.88628463712565, -23.763081370421936], + [-45.886293637167405, -23.763082370401783], + [-45.8863036372161, -23.763084370379804], + [-45.886308637240575, -23.763085370368827], + [-45.88648263811436, -23.763129369990963], + [-45.88926665280029, -23.76409236406699], + [-45.892741669556365, -23.764716356397038], + [-45.89310267137109, -23.764808355612907], + [-45.89310467137976, -23.7648083556083], + [-45.89310767139548, -23.764809355601905], + [-45.89310967140421, -23.76480935559733], + [-45.89646568695694, -23.7651813480787], + [-45.90356471995908, -23.766007332186085], + [-45.90357071998502, -23.76600733217231], + [-45.903580720033816, -23.766009332150322], + [-45.90358172004088, -23.76601033214849], + [-45.91852679410831, -23.76943629945331], + [-45.91852693610733, -23.769435710452758], + [-45.91859479444371, -23.769451299304162], + [-45.923290817716214, -23.770528289021385], + [-45.92329781775205, -23.770530289006206], + [-45.92330081776774, -23.770531288999777], + [-45.930292853754445, -23.772624273909912], + [-45.93920489963643, -23.775297254662984], + [-45.94119790966774, -23.77581125031725], + [-45.94984895321154, -23.77804323144439], + [-45.94985495324022, -23.778044231431025], + [-45.951395960729165, -23.778344228022092], + [-45.95139996074656, -23.778344228012863], + [-45.95140896079366, -23.778347227993606], + [-45.95141796084084, -23.77835022797425], + [-45.95141896084515, -23.77835022797194], + [-45.97069806279758, -23.78512018668066], + [-45.97884110588143, -23.78798716921722], + [-45.9788461059086, -23.787989169206593], + [-45.98951316356538, -23.792188146510643], + [-45.989517163585504, -23.792189146501855], + [-45.98952516363112, -23.792193146485193], + [-45.98953416368372, -23.792198146466685], + [-45.98954216373209, -23.792203146450564], + [-45.98955016378036, -23.792208146434337], + [-45.989556163822755, -23.792214146423223], + [-45.99326018855419, -23.795386139324208], + [-45.99326118855853, -23.795386139321906], + [-45.99326818860808, -23.795393139308896], + [-45.993274188650474, -23.795399139297746], + [-45.99328018869569, -23.795406139287163], + [-45.99328518873928, -23.795414139279245], + [-45.99329018878285, -23.795422139271416], + [-45.99329518882643, -23.795430139263544], + [-45.99329818886146, -23.79543813926025], + [-45.99330118889914, -23.795447139257504], + [-45.993304188934076, -23.7954551392542], + [-45.993306188967445, -23.79546413925374], + [-45.9933071889965, -23.795473139255606], + [-45.99330818902556, -23.7954821392574], + [-45.99330818904203, -23.795488139260108], + [-45.99330818906402, -23.79549613926383], + [-45.99330818906679, -23.795497139264274], + [-45.99330818906953, -23.795498139264726], + [-45.99330818907502, -23.795500139265638], + [-45.99330918908208, -23.795501139263774], + [-45.99330918908483, -23.795502139264244], + [-45.99331018909474, -23.795504139262917], + [-45.99331118910179, -23.795505139261085], + [-45.993314189128505, -23.79551013925641], + [-45.993316189148125, -23.795514139253697], + [-45.99332018918737, -23.795522139248074], + [-45.99332418922674, -23.795530139242448], + [-45.99332718926442, -23.795539139239708], + [-45.99332918929503, -23.79554713923881], + [-45.993331189328394, -23.795556139238258], + [-45.99333318936178, -23.795565139237816], + [-45.993333189386505, -23.79557413924189], + [-45.993333189411246, -23.795583139246077], + [-45.99333318943598, -23.795592139250246], + [-45.993331189452064, -23.795601139258945], + [-45.99332918946543, -23.795609139267295], + [-45.99332718948151, -23.79561813927601], + [-45.9933241894933, -23.79562713928713], + [-45.99332018949792, -23.795635139300078], + [-45.99331818950029, -23.795639139306502], + [-45.99216019040975, -23.797792142973524], + [-45.99216019041252, -23.797793142973973], + [-45.99215919041368, -23.79779514297719], + [-45.99215819041488, -23.79779714298053], + [-45.992158190417605, -23.797798142980962], + [-45.99215719041879, -23.797800142984183], + [-45.99215719042153, -23.797801142984635], + [-45.99215719042704, -23.797803142985543], + [-45.99215719042978, -23.79780414298601], + [-45.99215719043528, -23.797806142986893], + [-45.992157190438036, -23.79780714298734], + [-45.99215819044785, -23.79780914298604], + [-45.99215819045058, -23.7978101429865], + [-45.99215919045766, -23.797811142984646], + [-45.99216019047023, -23.79781414298368], + [-45.993698205128965, -23.800727140768373], + [-45.99369920513603, -23.80072814076651], + [-45.99370020514585, -23.800730140765104], + [-45.99370120515291, -23.800731140763254], + [-45.99370220515999, -23.80073214076139], + [-45.993703205169815, -23.80073414075999], + [-45.99370420517698, -23.800735140758135], + [-45.99370520518403, -23.80073614075636], + [-45.99370820519975, -23.800737140749874], + [-45.99773222973325, -23.80333013263658], + [-45.99773522974908, -23.803331132630117], + [-45.99773722976046, -23.803332132625954], + [-45.99773822976753, -23.80333313262408], + [-45.997739229771845, -23.80333313262178], + [-45.99774122978324, -23.803334132617607], + [-45.997744229796204, -23.80333413261066], + [-45.997745229803265, -23.803335132608783], + [-46.00094224523843, -23.803920125482417], + [-46.00094324524274, -23.803920125480097], + [-46.00094624525847, -23.803921125473607], + [-46.00094724526278, -23.803921125471305], + [-46.00094924527141, -23.803921125466672], + [-46.00095124528004, -23.803921125462043], + [-46.0009522452816, -23.80392012545928], + [-46.00095424529034, -23.803920125454667], + [-46.000955245294655, -23.803920125452343], + [-46.00095724530053, -23.80391912544718], + [-46.000958245304865, -23.803919125444853], + [-46.00096024531075, -23.803918125439782], + [-46.000961245312325, -23.803917125437014], + [-46.0009632453182, -23.803916125431925], + [-46.00096424532254, -23.803916125429616], + [-46.0009652453241, -23.80391512542685], + [-46.00096724532722, -23.80391312542132], + [-46.0009682453288, -23.803912125418552], + [-46.001827246529004, -23.802998123011825], + [-46.00182924652936, -23.802995123005832], + [-46.00183024653094, -23.80299412300304], + [-46.00183124653258, -23.8029931230003], + [-46.00183224653142, -23.802991122997057], + [-46.001832246528664, -23.802990122996615], + [-46.00183324653022, -23.80298912299385], + [-46.00183324652471, -23.802987122992953], + [-46.00183424652631, -23.80298612299011], + [-46.00183424652081, -23.802984122989173], + [-46.001834246518044, -23.80298312298872], + [-46.001834246512544, -23.80298112298782], + [-46.001834246509794, -23.80298012298738], + [-46.00183424650428, -23.802978122986477], + [-46.00183324649722, -23.802977122988324], + [-46.0018332464917, -23.802975122987426], + [-46.00183224648464, -23.802974122989276], + [-46.0018322464819, -23.802973122988835], + [-46.001831246472086, -23.802971122990254], + [-46.001830246464905, -23.80297012299209], + [-46.00182924645785, -23.802969122993947], + [-46.00182824644802, -23.802967122995366], + [-46.001827246440946, -23.802966122997127], + [-46.00105524088544, -23.802160124413128], + [-46.001051240859915, -23.80215712442101], + [-46.001045240812, -23.80214912443119], + [-46.00104024077106, -23.802142124439587], + [-46.00103524072748, -23.802134124447523], + [-46.00103024068387, -23.802126124455384], + [-46.00102724064891, -23.802118124458595], + [-46.0010242406112, -23.80210912446147], + [-46.00102124057616, -23.80210112446471], + [-46.00101924054276, -23.802092124465236], + [-46.00101824051368, -23.802083124463405], + [-46.00101724048461, -23.80207412446156], + [-46.00101724045984, -23.80206512445746], + [-46.001018240439414, -23.802056124450974], + [-46.00101924041896, -23.802047124444517], + [-46.00102124040285, -23.80203812443571], + [-46.001024240393875, -23.802030124425148], + [-46.00102524038719, -23.802026124421033], + [-46.00164023848316, -23.80036712223695], + [-46.00164223848079, -23.8003631222305], + [-46.001645238468996, -23.800354122219506], + [-46.00165023846858, -23.800346122204214], + [-46.001655238470995, -23.800339122189495], + [-46.00166023847059, -23.8003311221742], + [-46.001666238477235, -23.800324122157065], + [-46.001672238483906, -23.80031712214002], + [-46.001679238497694, -23.80031112212112], + [-46.00168723851583, -23.800305122099807], + [-46.0016942385323, -23.80030012208133], + [-46.00170323855751, -23.800295122058166], + [-46.001711238578295, -23.80029012203742], + [-46.00172023860626, -23.800286122014768], + [-46.00172123861056, -23.800286122012462], + [-46.001897239176245, -23.80021512157275], + [-46.00284624222589, -23.79983211920182], + [-46.00379624527964, -23.799449116828463], + [-46.003803245301626, -23.799446116810884], + [-46.0038122453323, -23.799443116788726], + [-46.00382224537007, -23.7994411167647], + [-46.003831245403425, -23.799439116742974], + [-46.00384124544392, -23.799438116719358], + [-46.00385124548718, -23.799438116696233], + [-46.003860245526134, -23.79943811667543], + [-46.0038702455693, -23.79943811665228], + [-46.00387224557795, -23.79943811664767], + [-46.006251256536785, -23.799683111256172], + [-46.00742026192325, -23.79980410860679], + [-46.00742826196061, -23.799805108588735], + [-46.007438262006644, -23.79980610856603], + [-46.00744726205372, -23.79980910854655], + [-46.007451262073744, -23.799810108537773], + [-46.0109812803271, -23.800898100866906], + [-46.01579930523754, -23.80238209039208], + [-46.02114033289291, -23.80404207878093], + [-46.02147133460991, -23.804146078061642], + [-46.021476334637, -23.80414807805097], + [-46.021485334684115, -23.80415107803148], + [-46.021494334734065, -23.80415507801243], + [-46.02149533474113, -23.804156078010564], + [-46.022142338440915, -23.80448407666149], + [-46.02553035782163, -23.806204069596085], + [-46.02578835929763, -23.806335069057937], + [-46.03090938858896, -23.808933058371338], + [-46.03263139845391, -23.80981205477861], + [-46.03700842616413, -23.813001046076952], + [-46.03701042617828, -23.81300304607322], + [-46.03701742622504, -23.81300904605975], + [-46.03702442627189, -23.8130150460462], + [-46.0370314263214, -23.81302204603311], + [-46.03703742636663, -23.813029046022407], + [-46.03704242640759, -23.813036046013973], + [-46.03704342641467, -23.81303704601208], + [-46.03904644339834, -23.81605504273602], + [-46.03905144343933, -23.816062042727552], + [-46.03905544347869, -23.816070042721943], + [-46.03905944352077, -23.816079042716705], + [-46.03906244355579, -23.816087042713413], + [-46.03906444358649, -23.816095042712437], + [-46.03929144694669, -23.816957042577215], + [-46.039518450306986, -23.81781904244182], + [-46.03951845031251, -23.817821042442727], + [-46.03952045034331, -23.817829042441744], + [-46.03952145037248, -23.817838042443544], + [-46.039522450390585, -23.817843042443478], + [-46.03952245040163, -23.817847042445365], + [-46.03952245042646, -23.817856042449385], + [-46.039521450447005, -23.81786504245574], + [-46.039520450467506, -23.81787404246219], + [-46.039520450473056, -23.817876042463183], + [-46.03949245086263, -23.81806104261211], + [-46.039044455057635, -23.820282044660733], + [-46.0390434550616, -23.820285044664402], + [-46.03904345506988, -23.82028804466583], + [-46.03904045578581, -23.820552044792706], + [-46.03904045579408, -23.82055504479406], + [-46.03904045581892, -23.82056404479808], + [-46.03903845583504, -23.820573044806842], + [-46.03903645585125, -23.820582044815612], + [-46.03903445586471, -23.82059004482383], + [-46.039031455876604, -23.82059904483491], + [-46.03902745588143, -23.820607044847794], + [-46.039023455886166, -23.82061504486073], + [-46.03901845588667, -23.820623044876022], + [-46.039012455880105, -23.82063004489307], + [-46.03900645587353, -23.82063704491015], + [-46.039004455873076, -23.820640044916214], + [-46.03768545407282, -23.822053048619647], + [-46.037683454069715, -23.82205504862521], + [-46.037682454070925, -23.822057048628494], + [-46.037681454069364, -23.822058048631252], + [-46.037681454072136, -23.822059048631726], + [-46.037680454073325, -23.822061048634925], + [-46.03768045407609, -23.822062048635384], + [-46.037679454074535, -23.822063048638157], + [-46.03767945408007, -23.822065048639047], + [-46.03767945408281, -23.8220660486395], + [-46.037679454088334, -23.822068048640393], + [-46.037679454091105, -23.82206904864085], + [-46.037679454096626, -23.822071048641746], + [-46.03767945409939, -23.82207204864218], + [-46.03767945410491, -23.822074048643156], + [-46.03768045411199, -23.822075048641295], + [-46.037680454117506, -23.82207704864219], + [-46.03768145412458, -23.822078048640314], + [-46.03768145412734, -23.822079048640777], + [-46.037682454137176, -23.822081048639344], + [-46.03768345414428, -23.822082048637462], + [-46.03768545416118, -23.82208504863427], + [-46.040007471466176, -23.82471704443924], + [-46.04001347151142, -23.82472404442846], + [-46.04001847155242, -23.824731044419977], + [-46.04002347159609, -23.824739044412038], + [-46.04002847163977, -23.8247470444041], + [-46.04003147167482, -23.824755044400725], + [-46.04003447171262, -23.824764044397885], + [-46.04003747175052, -23.82477304439494], + [-46.040039471781235, -23.824781044393976], + [-46.040040471810435, -23.824790044395762], + [-46.0400414718396, -23.824799044397476], + [-46.040041471850635, -23.82480304439927], + [-46.04004147186169, -23.824807044401137], + [-46.04004147186722, -23.824809044402045], + [-46.040041471869976, -23.824810044402472], + [-46.040041471875504, -23.82481204440338], + [-46.04004247188258, -23.82481304440154], + [-46.040042471888114, -23.824815044402396], + [-46.04004347189518, -23.82481604440054], + [-46.040044471902334, -23.824817044398664], + [-46.0400454719122, -23.824819044397238], + [-46.04004747193188, -23.824823044394478], + [-46.040049471948784, -23.82482604439118], + [-46.04005447199246, -23.824834044383238], + [-46.040059472036134, -23.8248420443752], + [-46.04006247207128, -23.824850044371928], + [-46.04006547210632, -23.824858044368543], + [-46.040068472144135, -23.824867044365707], + [-46.04007047217762, -23.82487604436517], + [-46.04007147220679, -23.824885044366884], + [-46.040072472235956, -23.82489404436869], + [-46.04007247226082, -23.824903044372718], + [-46.04007147228137, -23.824912044379154], + [-46.0400704723019, -23.824921044385608], + [-46.04006847231534, -23.824929044393826], + [-46.040065472327264, -23.82493804440482], + [-46.04006447233123, -23.82494104440859], + [-46.039447474461205, -23.82667804662987], + [-46.03944647446519, -23.82668104663353], + [-46.03944647447071, -23.826683046634443], + [-46.03944647447348, -23.826684046634888], + [-46.03944647447898, -23.826686046635782], + [-46.03944647448176, -23.826687046636234], + [-46.03944647448727, -23.82668904663714], + [-46.03944647449005, -23.826690046637566], + [-46.03944647449557, -23.82669204663847], + [-46.039447474502644, -23.82669304663659], + [-46.03944747450817, -23.826695046637564], + [-46.03944847451525, -23.826696046635714], + [-46.03944847451801, -23.826697046636138], + [-46.03944947452786, -23.826699046634733], + [-46.03945047453492, -23.826700046632865], + [-46.0394514745421, -23.82670104663097], + [-46.03945247454918, -23.826702046629094], + [-46.039455474570424, -23.826705046623577], + [-46.04492351131987, -23.831450036076124], + [-46.044926511341224, -23.8314530360706], + [-46.04492751134555, -23.831453036068268], + [-46.04492951135694, -23.831454036064077], + [-46.044930511364015, -23.831455036062188], + [-46.044931511371104, -23.831456036060327], + [-46.04493351137973, -23.83145603605567], + [-46.044936511395434, -23.83145703604914], + [-46.04896653160672, -23.83246602714176], + [-46.048967531611034, -23.832466027139443], + [-46.04897053162399, -23.832466027132465], + [-46.04897153163108, -23.83246702713059], + [-46.04897353163971, -23.832467027125944], + [-46.04897553164835, -23.832467027121286], + [-46.048976531652656, -23.832467027118984], + [-46.04897853165861, -23.83246602711387], + [-46.04897953166296, -23.832466027111558], + [-46.04898153167158, -23.832466027106896], + [-46.048982531673126, -23.832465027104128], + [-46.04898453168175, -23.832465027099474], + [-46.04898553168331, -23.832464027096712], + [-46.04898753168918, -23.832463027091613], + [-46.04898853169071, -23.83246202708885], + [-46.04899153169814, -23.83246002708099], + [-46.05168253778135, -23.830453019918007], + [-46.051685537788785, -23.83045101991015], + [-46.051686537790324, -23.83045001990739], + [-46.051687537789114, -23.830448019904185], + [-46.05168853779066, -23.830447019901396], + [-46.05168953779222, -23.830446019898545], + [-46.05169053779378, -23.830445019895777], + [-46.05169053778825, -23.830443019894894], + [-46.0516915377898, -23.83044201989211], + [-46.051691537787036, -23.830441019891662], + [-46.05169253778581, -23.830439019888452], + [-46.05169253778303, -23.830438019887982], + [-46.05169253777753, -23.830436019887106], + [-46.051693537776316, -23.83043401988389], + [-46.05169353777078, -23.830432019882995], + [-46.05166453396852, -23.829102019348376], + [-46.051664533960206, -23.829099019347034], + [-46.05166353395037, -23.829097019348467], + [-46.051663533947604, -23.829096019348025], + [-46.05166353394207, -23.82909401934713], + [-46.05166253393489, -23.829093019349017], + [-46.05166253393214, -23.829092019348558], + [-46.051661533922285, -23.829090019350005], + [-46.05166053391521, -23.829089019351883], + [-46.05165953390814, -23.829088019353755], + [-46.05165853390106, -23.82908701935562], + [-46.051657533891216, -23.82908501935706], + [-46.05165653388413, -23.829084019358923], + [-46.051655533877046, -23.829083019360823], + [-46.05165353386556, -23.82908201936502], + [-46.05165253386125, -23.82908201936733], + [-46.051651533854155, -23.82908101936912], + [-46.05164953384276, -23.82908001937334], + [-46.05164853383847, -23.82908001937565], + [-46.051646533827075, -23.82907901937987], + [-46.05164553382274, -23.829079019382178], + [-46.05164353381411, -23.829079019386832], + [-46.051641533802716, -23.829078019391023], + [-46.05163853378976, -23.829078019397997], + [-46.047486515597726, -23.828989029005935], + [-46.047484515589105, -23.828989029010593], + [-46.04747551555026, -23.828989029031515], + [-46.04746551550147, -23.828987029053845], + [-46.047455515455546, -23.828986029076557], + [-46.04744651540831, -23.828983029096115], + [-46.047437515361075, -23.828980029115698], + [-46.047428515313946, -23.828977029135267], + [-46.04741951526396, -23.828973029154398], + [-46.04741151521829, -23.828969029171176], + [-46.04740351516993, -23.828964029187443], + [-46.04739551511872, -23.828958029203335], + [-46.04738751506762, -23.82895202921916], + [-46.04738151502513, -23.828946029230405], + [-46.04737451497549, -23.828939029243454], + [-46.04736851493015, -23.828932029254293], + [-46.04736651491322, -23.82892902925758], + [-46.04498649569779, -23.825698033321945], + [-46.04498249566947, -23.825694033329377], + [-46.044977495625794, -23.825686033337387], + [-46.04497349558642, -23.825678033343003], + [-46.0449694955443, -23.825669033348284], + [-46.04496649550915, -23.825661033351587], + [-46.04496449547565, -23.82565203335211], + [-46.04496249544493, -23.825644033353175], + [-46.04496149541575, -23.825635033351386], + [-46.044960495386555, -23.825626033349668], + [-46.0449604953617, -23.825617033345576], + [-46.04496149534114, -23.825608033339122], + [-46.0449624953206, -23.825599033332786], + [-46.04496249530955, -23.825595033331], + [-46.04496249530679, -23.82559403333055], + [-46.044962495304006, -23.825593033330104], + [-46.04496249529849, -23.82559103332912], + [-46.04496249529573, -23.82559003332867], + [-46.0449624952902, -23.825588033327776], + [-46.04496149528313, -23.825587033329658], + [-46.04496149527761, -23.825585033328764], + [-46.044960495267766, -23.825583033330172], + [-46.04495849525084, -23.825580033333477], + [-46.044956495231155, -23.825576033336226], + [-46.044953495196026, -23.82556803333956], + [-46.04495049516096, -23.825560033342956], + [-46.04494749512315, -23.825551033345867], + [-46.04494549508956, -23.825542033346412], + [-46.0449444950604, -23.825533033344612], + [-46.0449434950312, -23.825524033342937], + [-46.04494349500635, -23.825515033338796], + [-46.0449444949858, -23.825506033332445], + [-46.04494549496801, -23.825498033326465], + [-46.04494749495186, -23.825489033317705], + [-46.04495049493994, -23.825480033306707], + [-46.04495349493079, -23.82547203329607], + [-46.04495649492449, -23.82546503328597], + [-46.045022494822945, -23.82532503306917], + [-46.045023494821734, -23.825323033065935], + [-46.04502449482053, -23.825321033062707], + [-46.04502549481656, -23.82531803305898], + [-46.045383491974135, -23.823729031507074], + [-46.045383491965865, -23.82372603150573], + [-46.04538649195395, -23.823717031494645], + [-46.0453894919448, -23.823709031484103], + [-46.0453934919372, -23.82370003147071], + [-46.04539749193245, -23.82369203145776], + [-46.04540249193469, -23.823685031442984], + [-46.04540749193418, -23.823677031427724], + [-46.04541049193606, -23.823673031418952], + [-46.0463374928871, -23.82256702876457], + [-46.04633849288862, -23.822566028761806], + [-46.04633949288742, -23.822564028758585], + [-46.04634049288899, -23.82256302875582], + [-46.04634249288941, -23.82256002874983], + [-46.04664949243428, -23.821915027744467], + [-46.046650492433066, -23.82191302774124], + [-46.04665449242823, -23.82190502772829], + [-46.046659492430564, -23.821898027713438], + [-46.04666549243445, -23.82189002769594], + [-46.046670492436675, -23.8218830276812], + [-46.04667749244755, -23.821876027661723], + [-46.04667849244909, -23.82187502765894], + [-46.04876449592159, -23.819869021905152], + [-46.04876649592193, -23.819866021899077], + [-46.04876749592348, -23.81986502189631], + [-46.04876849592502, -23.81986402189354], + [-46.04876949592383, -23.81986202189033], + [-46.04876949592106, -23.819861021889892], + [-46.04877049592261, -23.819860021887123], + [-46.04877049591708, -23.819858021886233], + [-46.048771495918636, -23.81985702188344], + [-46.04877149591314, -23.81985502188254], + [-46.04877149591036, -23.819854021882108], + [-46.048772495909134, -23.819852021878898], + [-46.04877249590638, -23.81985102187845], + [-46.04877149589655, -23.819849021879797], + [-46.048771495893774, -23.819848021879338], + [-46.04877149588826, -23.81984602187845], + [-46.048770495881186, -23.81984502188033], + [-46.048770495878415, -23.819844021879863], + [-46.04876949586581, -23.819841021880855], + [-46.04876849585873, -23.819840021882722], + [-46.04932649705975, -23.819402020388317], + [-46.05021149822876, -23.818441017897502], + [-46.05216050156569, -23.816601012537507], + [-46.052166501575094, -23.8165950125209], + [-46.052173501588726, -23.81658901250196], + [-46.052181501609496, -23.816584012481055], + [-46.0521895016302, -23.816579012460267], + [-46.052198501655305, -23.816574012437023], + [-46.052201501665465, -23.8165730124296], + [-46.05385450668962, -23.815807008243443], + [-46.054496508642124, -23.815510006617796], + [-46.05450150865549, -23.81550700660486], + [-46.05451050868604, -23.815504006582522], + [-46.05452050872094, -23.815501006557955], + [-46.054525508739765, -23.815500006545896], + [-46.056605516325334, -23.814994001485076], + [-46.057164518363855, -23.814858000124946], + [-46.05902552515176, -23.814405995596907], + [-46.06043153028096, -23.814064992175965], + [-46.06043653029984, -23.8140639921639], + [-46.06044553033588, -23.814062992142453], + [-46.06045553037631, -23.81406199211878], + [-46.06046553041675, -23.814060992095108], + [-46.060471530442655, -23.814060992081167], + [-46.06107053302917, -23.814060990689274], + [-46.06291954108766, -23.81408798640474], + [-46.0629225411006, -23.814087986397777], + [-46.06293254114648, -23.814088986374994], + [-46.06294254119245, -23.814089986352194], + [-46.06295154123686, -23.814091986332162], + [-46.06295754126551, -23.81409298631865], + [-46.07287659076065, -23.816505964345893], + [-46.07674561058241, -23.81763395585358], + [-46.09084268684103, -23.823201925536413], + [-46.095126709994354, -23.82488591630981], + [-46.09512971001006, -23.82488691630325], + [-46.09513571004155, -23.824888916290153], + [-46.10610877153377, -23.829989892987903], + [-46.11335581211414, -23.833345877574967], + [-46.1165428299532, -23.83481887079119], + [-46.11919684488249, -23.836071865151585], + [-46.11919984490103, -23.836073865145462], + [-46.119207844946615, -23.836077865128527], + [-46.11921584499504, -23.83608286511214], + [-46.11922284503917, -23.83608786509799], + [-46.123048869306565, -23.838881857403038], + [-46.128308905463065, -23.843725847260572], + [-46.13093892354487, -23.846147842185378], + [-46.1329609433411, -23.85012783921906], + [-46.13344594808841, -23.851081838506925], + [-46.13344694809551, -23.851082838504997], + [-46.13345094813777, -23.85109183849959], + [-46.13345394817305, -23.851099838496133], + [-46.13345594820672, -23.8511088384955], + [-46.133457948240384, -23.851117838494726], + [-46.13345894825307, -23.85112083849372], + [-46.13346394836929, -23.851154838497116], + [-46.13346394837765, -23.851157838498416], + [-46.13346494838474, -23.851158838496524], + [-46.13346494839032, -23.851160838497393], + [-46.13346694840726, -23.85116383849403], + [-46.1334769485061, -23.851183838479447], + [-46.133477948515974, -23.85118583847808], + [-46.133481948555485, -23.851193838472224], + [-46.13348494859345, -23.851202838469213], + [-46.13348694862433, -23.851210838468024], + [-46.133488948657984, -23.851219838467365], + [-46.13348994867064, -23.851222838466338], + [-46.13385095668811, -23.853543838648886], + [-46.1330429620701, -23.85672984194894], + [-46.132872962216105, -23.857045842486546], + [-46.13255596182523, -23.85739684338355], + [-46.132272960901645, -23.857503844093003], + [-46.13198895997106, -23.85760984480443], + [-46.13162295845267, -23.857631845670415], + [-46.1311899563472, -23.857546846645807], + [-46.130688953881446, -23.857437847769663], + [-46.129950950490105, -23.85736384946333], + [-46.129659949122754, -23.857323850126313], + [-46.12923694709659, -23.857251851083902], + [-46.12892094563528, -23.857216851807532], + [-46.12860994413977, -23.85716185251067], + [-46.128207942179195, -23.85708085341504], + [-46.128022941230334, -23.857026853823893], + [-46.12782094028607, -23.857000854284824], + [-46.127641939566324, -23.857019854711872], + [-46.12748993903272, -23.85706385508688], + [-46.12739093874451, -23.857113855340636], + [-46.127290938449235, -23.85716285559622], + [-46.12698693747093, -23.857282856360378], + [-46.12672293652903, -23.85735385700931], + [-46.126306934886316, -23.857408858006643], + [-46.12609193404165, -23.857438858522766], + [-46.12590493336798, -23.857486858981357], + [-46.125844933214836, -23.857524859138564], + [-46.12578393322693, -23.857623859325034], + [-46.12577993367719, -23.857791859408927], + [-46.12580693439208, -23.85800685944103], + [-46.12582593572637, -23.858456859596103], + [-46.125807936169096, -23.858643859721127], + [-46.1257729363714, -23.858770859859312], + [-46.12557293662124, -23.859170860504385], + [-46.125270936714514, -23.859672861433243], + [-46.12509093689204, -23.86001586200638], + [-46.12497093711984, -23.860283862405844], + [-46.12494293762517, -23.860508862571052], + [-46.124960938509986, -23.860798862657553], + [-46.125028939429725, -23.861023862598326], + [-46.125105940126865, -23.861154862476308], + [-46.12541494233773, -23.86146986189314], + [-46.125675943982344, -23.861655861365115], + [-46.12607994619975, -23.86182586049547], + [-46.12650394863441, -23.862042859599796], + [-46.12675995032431, -23.862252859093967], + [-46.127155953208835, -23.86267485835455], + [-46.12745395529999, -23.862963857785363], + [-46.127673956684234, -23.863119857339797], + [-46.12788895784352, -23.86320285687355], + [-46.12839296032581, -23.863312855743114], + [-46.128635961478004, -23.863349855190894], + [-46.12923496432017, -23.863441853830125], + [-46.1299019674059, -23.863515852302037], + [-46.130482969930945, -23.863521850945176], + [-46.13075697100249, -23.86348185028626], + [-46.1308849714242, -23.863434849965934], + [-46.130958971453964, -23.86333084974674], + [-46.130950971090805, -23.863212849713236], + [-46.13088197019706, -23.86299884977995], + [-46.13089496995244, -23.86289084970174], + [-46.13096097009531, -23.86283984952466], + [-46.13105797044448, -23.862814849286693], + [-46.131132970776584, -23.862817849112485], + [-46.131285971450964, -23.862822848756615], + [-46.13137097186805, -23.862840848565654], + [-46.131454972280814, -23.862858848377126], + [-46.13169497363718, -23.8629738478663], + [-46.131966975382305, -23.863178847320448], + [-46.13244897878027, -23.863651846401744], + [-46.133055983213865, -23.86430284526904], + [-46.13386698873429, -23.86502784369148], + [-46.13451799279545, -23.865476842366153], + [-46.134885995119525, -23.86574084162139], + [-46.135254997670835, -23.866084840909565], + [-46.135626000347905, -23.866470840211587], + [-46.13602000296825, -23.86680083943503], + [-46.13633400534633, -23.867167838862024], + [-46.13656500724082, -23.867489838463452], + [-46.13684000986866, -23.868006838047958], + [-46.137027011520246, -23.868309837744054], + [-46.13707301197798, -23.868402837677422], + [-46.1372710139392, -23.868799837389126], + [-46.137354015002636, -23.86905283730651], + [-46.13740801643408, -23.869482837370075], + [-46.137393016996505, -23.86970783750457], + [-46.13737701755453, -23.86993283764151], + [-46.137314018352704, -23.870316837958654], + [-46.137247019317634, -23.870766838314402], + [-46.13718801995202, -23.871085838593423], + [-46.1371360209428, -23.871521838907945], + [-46.13713302143718, -23.87170383899531], + [-46.137190022296494, -23.871923838958935], + [-46.13731902349174, -23.872152838758073], + [-46.137505024874685, -23.87236083841428], + [-46.13757602538196, -23.872432838279806], + [-46.13771002633126, -23.872565838024677], + [-46.13805302832803, -23.87275083730292], + [-46.13819602905692, -23.87279083698564], + [-46.13859303083246, -23.872812836065478], + [-46.138854031964854, -23.872814835454975], + [-46.138935032353665, -23.8728288352714], + [-46.13898503265873, -23.872860835168385], + [-46.139093033398325, -23.872958834958606], + [-46.13923803453178, -23.873140834699345], + [-46.13946503669407, -23.87356483435476], + [-46.139694038931886, -23.8740128340161], + [-46.140026042239164, -23.874684833534918], + [-46.140239044787286, -23.87526883329365], + [-46.14034304608138, -23.875571833183642], + [-46.14039104670691, -23.87572183313745], + [-46.14038204713651, -23.87588983323261], + [-46.14034804731601, -23.876006833363917], + [-46.14017204752651, -23.876354833929923], + [-46.13993604737476, -23.876665834620113], + [-46.139744046980624, -23.876821835138884], + [-46.13959104653192, -23.87689783553091], + [-46.13939804578218, -23.87692783599635], + [-46.139081044469, -23.876947836747973], + [-46.13888004363734, -23.876960837224587], + [-46.138747043088, -23.876969837540198], + [-46.138441041822325, -23.876989838265956], + [-46.13829404129906, -23.877029838628026], + [-46.13815204094515, -23.877122839001736], + [-46.13806204098873, -23.8772778392811], + [-46.13803204128024, -23.877428839418027], + [-46.138059041826295, -23.877582839422818], + [-46.138102042338275, -23.87769983937374], + [-46.138303043973224, -23.87797483902425], + [-46.13861504610982, -23.87825783841813], + [-46.13904604888876, -23.878586837553467], + [-46.139512051782596, -23.878902836601025], + [-46.13996805454957, -23.879188835658724], + [-46.140403057150536, -23.879447834753627], + [-46.14072605908666, -23.879641834082282], + [-46.14109006154291, -23.879958833368995], + [-46.14139306370502, -23.880264832793923], + [-46.141522064808925, -23.880460832578024], + [-46.14158506568085, -23.88067583252523], + [-46.14162806643847, -23.88088083251479], + [-46.141636066983516, -23.881063832576796], + [-46.14165006744853, -23.881208832607943], + [-46.14165106782111, -23.88134083266382], + [-46.1416230682749, -23.88154683282032], + [-46.141574068783044, -23.881804833049017], + [-46.141480069122025, -23.882071833387105], + [-46.14121106984636, -23.88274783431582], + [-46.14103107002586, -23.883090834889106], + [-46.140920069981746, -23.88324683521805], + [-46.140778069577635, -23.883321835584066], + [-46.140621068997156, -23.883356835967483], + [-46.14051406850713, -23.88334683621393], + [-46.140412067994006, -23.883320836441545], + [-46.14018206685825, -23.883269836958075], + [-46.14010606649375, -23.88325683713048], + [-46.13992206580784, -23.883295837579], + [-46.13984106559186, -23.883343837790022], + [-46.139781065631226, -23.883450837977843], + [-46.13975606587764, -23.883577838092513], + [-46.139800066500044, -23.88373283805781], + [-46.13991306731182, -23.883848837844127], + [-46.14005606814715, -23.883926837543342], + [-46.140147068615555, -23.883953837341952], + [-46.1401780688387, -23.883985837283397], + [-46.14017406898049, -23.88404283731793], + [-46.14014306896379, -23.88408483740913], + [-46.14005706870112, -23.884123837627875], + [-46.13997106834359, -23.884128837831724], + [-46.13990906819569, -23.884171837996007], + [-46.139885068365516, -23.884269838095552], + [-46.13993206881684, -23.884358838024657], + [-46.14000906931413, -23.884417837870103], + [-46.140126069886485, -23.884441837606484], + [-46.14021207035841, -23.884477837420796], + [-46.14024407066673, -23.88453883737271], + [-46.14025507092084, -23.884612837379592], + [-46.14023007102487, -23.884688837471696], + [-46.14018907102078, -23.884750837595135], + [-46.14002307067198, -23.884882838042493], + [-46.13982607022842, -23.885028838568697], + [-46.13965406968633, -23.88510083900375], + [-46.13954706935807, -23.88514883927571], + [-46.13925106819109, -23.88518883998722], + [-46.138890066690195, -23.885209840842627], + [-46.138615065571976, -23.885234841498296], + [-46.138413064847214, -23.88528784199508], + [-46.138271064524005, -23.88539184237392], + [-46.1381840644523, -23.885500842625824], + [-46.13815006468202, -23.88563584276518], + [-46.13812606493274, -23.88576284287752], + [-46.13816406578881, -23.886010842897942], + [-46.138242066775874, -23.88624384281788], + [-46.13835606804965, -23.88652384267434], + [-46.13847106949798, -23.886864842555255], + [-46.13849907045609, -23.887164842621996], + [-46.13847207140827, -23.887547842854442], + [-46.13847007214742, -23.88781584297739], + [-46.13851707276634, -23.88796484293293], + [-46.13873307466503, -23.888310842579326], + [-46.138930076462266, -23.888649842267096], + [-46.13900807740205, -23.888865842179563], + [-46.13900507794729, -23.889065842274903], + [-46.13897207838246, -23.889272842443592], + [-46.13891307883635, -23.88952684269396], + [-46.13887307917435, -23.88970984286855], + [-46.13888408106398, -23.89036984313403], + [-46.13891108176672, -23.890579843163366], + [-46.138999082666096, -23.890765843039148], + [-46.1392170846632, -23.891143842694802], + [-46.139434086421424, -23.891437842315707], + [-46.139690088214294, -23.891683841823976], + [-46.140244091721804, -23.89208284070089], + [-46.14062709396858, -23.8922948398963], + [-46.14099109588748, -23.892418839097328], + [-46.14146009832161, -23.892564838061837], + [-46.14213410179499, -23.89276583656976], + [-46.14287910573149, -23.893022834935767], + [-46.14317110723604, -23.89310983428913], + [-46.14367110963369, -23.893194833153828], + [-46.144124111791946, -23.89326683212298], + [-46.14455311392198, -23.89336583116028], + [-46.145411118190175, -23.893566829236107], + [-46.145957120912236, -23.893696828012352], + [-46.146329122787485, -23.893792827181958], + [-46.14673712470939, -23.893849826249852], + [-46.14718112671411, -23.89388082522177], + [-46.14786412988546, -23.89395982365397], + [-46.14797613043641, -23.893983823401772], + [-46.14822113164012, -23.894035822849855], + [-46.14862313367006, -23.89414082195276], + [-46.14907313607781, -23.894306820969923], + [-46.149360137677974, -23.89443582035313], + [-46.149800140171116, -23.89464781941392], + [-46.15038914381357, -23.895040818204453], + [-46.150932147170735, -23.895402817089323], + [-46.15138415025226, -23.895806816206143], + [-46.15162015199829, -23.89606681576656], + [-46.151873154002274, -23.896392815316023], + [-46.151966154842754, -23.896549815166793], + [-46.152028155703036, -23.896761815114502], + [-46.152279158430616, -23.897349814783805], + [-46.152588161313865, -23.897903814301863], + [-46.152666162095294, -23.89806281418865], + [-46.15266716234835, -23.898151814225418], + [-46.15261816231827, -23.89821681436907], + [-46.152439161838444, -23.89832181483544], + [-46.1522871613942, -23.89839781522567], + [-46.15218116124083, -23.89850681552245], + [-46.15214216141337, -23.898628815667617], + [-46.15212316173661, -23.898773815775975], + [-46.15216516251899, -23.898988815771904], + [-46.15224816333313, -23.899151815648686], + [-46.152412164469304, -23.899304815330975], + [-46.152592165624384, -23.899439814967714], + [-46.15282216696464, -23.8995638144822], + [-46.153026168078014, -23.899646814039745], + [-46.15323116912861, -23.89970581358437], + [-46.153376169878086, -23.899749813263252], + [-46.15393116758811, -23.898072811223287], + [-46.153634170615376, -23.899614812598116], + [-46.153506171915716, -23.900277813190048], + [-46.153255174507485, -23.901592814357254], + [-46.153003177092344, -23.90290681552639], + [-46.15198118076779, -23.90580081919821], + [-46.15171518073395, -23.906199819998225], + [-46.15167418072732, -23.906260820121382], + [-46.15161118056963, -23.906301820287304], + [-46.15154918035204, -23.906319820440782], + [-46.15148618007977, -23.906319820588752], + [-46.15139917962269, -23.90629082078029], + [-46.151232178766676, -23.9062428211514], + [-46.1510501777984, -23.90617782155025], + [-46.15090117692239, -23.906094821863622], + [-46.150710175859246, -23.906009822274758], + [-46.1505031748528, -23.9059698227433], + [-46.15020017331677, -23.905888823419133], + [-46.14998717226476, -23.905841823898623], + [-46.14990517181805, -23.90580882407659], + [-46.149760170987356, -23.90573582438496], + [-46.14949316946711, -23.90560482495425], + [-46.14927516831243, -23.905528825432707], + [-46.14923516810326, -23.905515825520908], + [-46.14903516699842, -23.905429825952734], + [-46.14894116637412, -23.905351826139075], + [-46.14881316558884, -23.90526882640305], + [-46.14862816462161, -23.90520882681102], + [-46.14842016364709, -23.905181827287546], + [-46.148249163003115, -23.90521582770394], + [-46.148033162374155, -23.905324828258994], + [-46.14785316187575, -23.905424828725582], + [-46.14772216142137, -23.905464829050775], + [-46.14755616072909, -23.90547382944447], + [-46.147231159215345, -23.905434830190284], + [-46.14685615754417, -23.90541683106273], + [-46.14668015681143, -23.905426831480217], + [-46.146586156497406, -23.905459831715483], + [-46.14653715647282, -23.905526831859962], + [-46.1464971565907, -23.905630831999627], + [-46.14648115703299, -23.905813832117776], + [-46.14650715742772, -23.90591483210122], + [-46.14653215781813, -23.906015832086986], + [-46.14669215912472, -23.906235831808097], + [-46.14691516065047, -23.906436831373075], + [-46.147110161988124, -23.90661383099314], + [-46.147352163688375, -23.906847830528044], + [-46.1474971645947, -23.90694783023154], + [-46.14768716557251, -23.907003829810133], + [-46.14785816634236, -23.90701482941349], + [-46.148065167047044, -23.906946828897496], + [-46.14830816789325, -23.906873828294827], + [-46.148547168817274, -23.906834827716583], + [-46.1487641698335, -23.9068628272193], + [-46.14904617133475, -23.90696382660167], + [-46.14929417271701, -23.90707482606811], + [-46.14948017391234, -23.907214825692964], + [-46.149599174865756, -23.907371825482514], + [-46.149660175680246, -23.907568825425944], + [-46.14976517676042, -23.907792825277856], + [-46.14997917830896, -23.908015824873363], + [-46.15036918070489, -23.90826982406922], + [-46.150710182671034, -23.908445823345755], + [-46.15105418451021, -23.90857182259319], + [-46.151366186026586, -23.908631821886903], + [-46.15183918815205, -23.908660820788626], + [-46.15265619157413, -23.908621818852613], + [-46.15295919288933, -23.908623818141756], + [-46.15326219434148, -23.908674817452503], + [-46.153664196409, -23.90879281656005], + [-46.15385919750348, -23.908882816141535], + [-46.15410419901832, -23.90904581563759], + [-46.15442220103888, -23.909276814991934], + [-46.15482620332195, -23.909468814127266], + [-46.15514220499543, -23.909578813433157], + [-46.15545120646234, -23.909625812727903], + [-46.1556582073989, -23.909640812248163], + [-46.1560062091407, -23.9097258114678], + [-46.15625021031834, -23.909769810913843], + [-46.15633121071039, -23.90978481073011], + [-46.15660721196746, -23.90980781009177], + [-46.15680021268131, -23.909764809619425], + [-46.156877212896546, -23.90972280942007], + [-46.156988213107596, -23.909626809117167], + [-46.15706921310798, -23.90950180887198], + [-46.157104212853504, -23.9093568087261], + [-46.157097212406434, -23.909207808677152], + [-46.15706021187438, -23.90907480870573], + [-46.15705321178822, -23.90905480871343], + [-46.15701021127505, -23.90893780876301], + [-46.15688721027067, -23.908768808977907], + [-46.156827209686845, -23.90865280906794], + [-46.156775208698356, -23.90837980907036], + [-46.15674120794999, -23.908164809055855], + [-46.15674920752861, -23.908001808965516], + [-46.156793207416634, -23.90789380881468], + [-46.15688220738159, -23.907743808539788], + [-46.156948207420655, -23.907655808346032], + [-46.157033207533324, -23.907564808106407], + [-46.15711420769594, -23.90749780788674], + [-46.15724920816747, -23.907457807552003], + [-46.15731920849507, -23.907466807391522], + [-46.15738920881995, -23.90747480723054], + [-46.157516209483376, -23.907515806950173], + [-46.15773821067775, -23.907599806465463], + [-46.157974211868165, -23.907660805937738], + [-46.15831721347059, -23.907703805150717], + [-46.15861521485624, -23.907738804465854], + [-46.15905821677322, -23.9077398034254], + [-46.15933621786534, -23.90770080275513], + [-46.159615218855436, -23.907623802065796], + [-46.159728219237415, -23.907585801783572], + [-46.161227223674366, -23.906856797941508], + [-46.16140622470804, -23.906949797561595], + [-46.161695226124486, -23.907009796908827], + [-46.16198922769138, -23.90711579626437], + [-46.16227922932204, -23.907250795642], + [-46.162783232302715, -23.90753779458332], + [-46.16320023474526, -23.907766793703534], + [-46.16359923737865, -23.908091792908195], + [-46.164032240203746, -23.908432792039807], + [-46.16452724336676, -23.908798791036578], + [-46.16496424606653, -23.90908879013634], + [-46.16563025013924, -23.90951578875765], + [-46.16612025302612, -23.909790787726106], + [-46.16683725728835, -23.910206786222435], + [-46.16719025949656, -23.910450785499275], + [-46.16755926202308, -23.9107837847774], + [-46.16782426384569, -23.91102578426011], + [-46.16802226529186, -23.91123678388692], + [-46.168204266666244, -23.911446783550808], + [-46.16846826870569, -23.911767783070434], + [-46.16884827159078, -23.912211782371095], + [-46.16904227344551, -23.912574782073555], + [-46.16919627518072, -23.912956781878542], + [-46.16935127714984, -23.91342078171694], + [-46.1694402788367, -23.91388578171092], + [-46.16945227958887, -23.914135781792005], + [-46.169449280026775, -23.914296781869467], + [-46.169396280469954, -23.914536782099127], + [-46.169342280726845, -23.91471178230267], + [-46.169309281206026, -23.91493378247736], + [-46.1693252817402, -23.915099782512314], + [-46.16939228239098, -23.915228782411138], + [-46.16951328316869, -23.915319782166303], + [-46.169754284436955, -23.91540078163479], + [-46.170148286623984, -23.915573780783664], + [-46.17038928795378, -23.91567678026186], + [-46.170556289101235, -23.91582877993544], + [-46.17068829006658, -23.915969779686584], + [-46.1707492906775, -23.916093779597276], + [-46.17075529092191, -23.916171779617304], + [-46.17076029111447, -23.916232779632093], + [-46.17072729140044, -23.916385779776654], + [-46.17069829167301, -23.91652777990698], + [-46.170749292215525, -23.91664277983728], + [-46.17085029300214, -23.916767779654286], + [-46.17101729416637, -23.91692577933047], + [-46.17131529604244, -23.91713577872121], + [-46.17159829767429, -23.917281778119143], + [-46.17179329868213, -23.917340777686224], + [-46.17202529974346, -23.917361777149512], + [-46.17217930035286, -23.917341776778475], + [-46.172300300783206, -23.917308776479306], + [-46.17254630181534, -23.91729777589577], + [-46.17273130264823, -23.917309775465654], + [-46.17282330318872, -23.917360775271494], + [-46.17285830349402, -23.917415775213193], + [-46.17290930400866, -23.917520775139053], + [-46.17291030437444, -23.917649775192988], + [-46.17288130470307, -23.917811775332087], + [-46.17281230480563, -23.917954775556915], + [-46.172743304922264, -23.91810277578391], + [-46.172719305222046, -23.91824677590332], + [-46.17272630562493, -23.91837977594493], + [-46.17277830637927, -23.918568775905065], + [-46.17287530736453, -23.91877077576507], + [-46.17311430912862, -23.919031775316697], + [-46.17344731134665, -23.919309774654508], + [-46.17371431291232, -23.91945677409039], + [-46.17388631407586, -23.919606773751113], + [-46.173957314755526, -23.919739773642082], + [-46.17404931591536, -23.920011773544385], + [-46.17415231696582, -23.92022777339633], + [-46.17431531818308, -23.92041077309267], + [-46.17453231976265, -23.920639772681874], + [-46.17464432065857, -23.92078677248244], + [-46.174788322273216, -23.92114077229807], + [-46.17500332488971, -23.921742772054905], + [-46.175111325947945, -23.921953771892746], + [-46.17531832746199, -23.922174771501993], + [-46.17551132876694, -23.922342771121055], + [-46.17587433094954, -23.922561770362137], + [-46.17646333430781, -23.92285176910209], + [-46.17706233755511, -23.923086767794555], + [-46.17758034017208, -23.923221766633933], + [-46.17790234175135, -23.923288765905074], + [-46.17796984308054, -23.92330214175194], + [-46.177936342431, -23.923478765907802], + [-46.17820334419885, -23.923697765374705], + [-46.17837934592962, -23.92404376511124], + [-46.17883334880564, -23.924369764184465], + [-46.17922835120802, -23.924617763362406], + [-46.17956535374962, -23.925004762737608], + [-46.179681354427586, -23.925067762491885], + [-46.179723354670784, -23.92508976240262], + [-46.17988035558764, -23.925174762069968], + [-46.180018357168414, -23.925525761897898], + [-46.18028236005395, -23.926147761547316], + [-46.18044336207917, -23.926621761374797], + [-46.180604364101754, -23.9270947612017], + [-46.18072536570465, -23.92747976108447], + [-46.18080736821637, -23.928248761226484], + [-46.180901370449064, -23.928899761288704], + [-46.1810593731407, -23.929615761228476], + [-46.18115037536904, -23.930269761299094], + [-46.18128738276317, -23.93269376203241], + [-46.18111838714058, -23.93451376322343], + [-46.18072838937851, -23.935911764751516], + [-46.17989639062359, -23.93763676746349], + [-46.17964739053514, -23.937988768203613], + [-46.178529390136504, -23.939568771526655], + [-46.17701138691009, -23.940757775622053], + [-46.175286381900904, -23.941630780067342], + [-46.17420637735362, -23.941674782631], + [-46.17403237662074, -23.94168178304408], + [-46.17365237504181, -23.941704783949422], + [-46.173666374734694, -23.94157378385925], + [-46.17384937475148, -23.94129778330767], + [-46.17399037471858, -23.941068782875504], + [-46.17396937367628, -23.940729782777076], + [-46.17392437311123, -23.940597782825503], + [-46.17387937254614, -23.940465782873904], + [-46.17374937147315, -23.940283783100764], + [-46.17373437146721, -23.940304783145237], + [-46.17295436627268, -23.939655784699426], + [-46.17183735994913, -23.939123787098147], + [-46.17061535066631, -23.937698789353856], + [-46.168791342999484, -23.93777779368362], + [-46.16750833985712, -23.938635797079762], + [-46.16742134304055, -23.93990479783943], + [-46.16670134279875, -23.940928799982483], + [-46.1660063445193, -23.94261380235599], + [-46.16610534719209, -23.943413802472726], + [-46.16620434986223, -23.944212802588893], + [-46.16220033390711, -23.9447008122312], + [-46.16255833652495, -23.94508181155501], + [-46.16248733632722, -23.945120811739297], + [-46.1624173361337, -23.94515981192114], + [-46.16222833578718, -23.945327812439736], + [-46.16205733544555, -23.945469812904477], + [-46.16188533509682, -23.945610813371243], + [-46.161537333753714, -23.945668814216027], + [-46.16131833304436, -23.9457538147689], + [-46.161371334011626, -23.94601681475916], + [-46.161519335128915, -23.946186814485138], + [-46.161870336701206, -23.946205813667042], + [-46.16211933791338, -23.946253813101695], + [-46.162453339111835, -23.946165812276696], + [-46.1627573404609, -23.94617781156602], + [-46.162998341130645, -23.946044810940403], + [-46.163332342458105, -23.94600281013547], + [-46.16368334397963, -23.946003809309346], + [-46.16397734537804, -23.946048808636668], + [-46.16451334798916, -23.946152807419868], + [-46.165036350187634, -23.946129806178032], + [-46.16541735165378, -23.946064805252313], + [-46.16574635306891, -23.94606180447615], + [-46.166559357324566, -23.94632480267625], + [-46.167106360317064, -23.94654780148529], + [-46.16748036265372, -23.94680380071615], + [-46.16796036585602, -23.94720479976074], + [-46.16833036864423, -23.947627799073942], + [-46.16852837039347, -23.947945798746463], + [-46.168586371562306, -23.948272798752654], + [-46.168632372797134, -23.9486417988055], + [-46.1685643733085, -23.94892879909113], + [-46.168697374613934, -23.94918879889139], + [-46.16880737555865, -23.94935579870514], + [-46.16892737648213, -23.949499798485327], + [-46.16922637805096, -23.94959779782357], + [-46.169376379244696, -23.94979179755495], + [-46.16953138048534, -23.949994797278393], + [-46.169692381805234, -23.950216796995992], + [-46.169862383015264, -23.950385796669146], + [-46.17016438489762, -23.950590796047045], + [-46.17017238538983, -23.950753796099455], + [-46.17027338677871, -23.95109279600948], + [-46.17049338893817, -23.951522795678745], + [-46.170856391379296, -23.9518327949587], + [-46.17112639376361, -23.952265794511355], + [-46.171230395131914, -23.95259279440896], + [-46.17135039643468, -23.952871794248008], + [-46.17149839749074, -23.953019793963787], + [-46.17154139835926, -23.953262793968467], + [-46.17165939947941, -23.953479793785046], + [-46.17172140010146, -23.953605793693942], + [-46.17195140179621, -23.953854793260493], + [-46.172101402953544, -23.954035792985966], + [-46.17209040341438, -23.95421679309087], + [-46.172091404210775, -23.954498793211556], + [-46.172162405512346, -23.954852793198654], + [-46.17211740594402, -23.95507579340212], + [-46.172341408112764, -23.955502793060383], + [-46.17232940861701, -23.955700793175037], + [-46.1724094093144, -23.955825793041036], + [-46.172547410594184, -23.956068792821775], + [-46.17277241256793, -23.956424792446615], + [-46.17301341491729, -23.95688979208125], + [-46.17310641597434, -23.95712279196373], + [-46.173157417321704, -23.957523792018392], + [-46.17331841905239, -23.957891791799312], + [-46.17356142096376, -23.95819779135984], + [-46.17371742201825, -23.958332791050864], + [-46.173873423072756, -23.958467790741885], + [-46.1740244240044, -23.958566790429114], + [-46.174175424936045, -23.95866579011616], + [-46.1743514259085, -23.958740789733856], + [-46.174527426881035, -23.95881578935159], + [-46.17479642827, -23.95889578875213], + [-46.17499642940816, -23.9589927883228], + [-46.17686344000897, -23.959889784310658], + [-46.17707144107493, -23.95994878384576], + [-46.17792244543796, -23.96019078194399], + [-46.177924445446585, -23.960190781939268], + [-46.17805844641156, -23.960327781682835], + [-46.17806344645005, -23.9603337816736], + [-46.1780904466428, -23.960360781621702], + [-46.17831544817314, -23.960558781177234], + [-46.17853244941302, -23.960665780711953], + [-46.17885445118873, -23.960801780011565], + [-46.179091452315625, -23.960837779468203], + [-46.179255452744194, -23.96073777903775], + [-46.1794074531687, -23.960654778643097], + [-46.17963845419358, -23.960663778102028], + [-46.1801204568276, -23.96085877704987], + [-46.180482458613426, -23.960936776229776], + [-46.18100146124168, -23.961072775064455], + [-46.18136246320309, -23.961214774274442], + [-46.181784465507235, -23.96138477335278], + [-46.18212346707535, -23.96142077256861], + [-46.18223446696806, -23.9612117722157], + [-46.18232446710442, -23.9611217719642], + [-46.18258546835193, -23.961163771366632], + [-46.182903470222854, -23.961339770692824], + [-46.183323472928876, -23.961655769839236], + [-46.18360947527154, -23.962048769335208], + [-46.18395047801823, -23.962500768727043], + [-46.18429148088883, -23.96299676813807], + [-46.18465048400886, -23.963553767532886], + [-46.18506248743714, -23.964138766814866], + [-46.18536449033896, -23.96470576634845], + [-46.18561549286541, -23.965217765978508], + [-46.18593649642353, -23.965988765555874], + [-46.186263500908105, -23.967079765258063], + [-46.186326503158824, -23.967782765414807], + [-46.186343503952706, -23.968038765485844], + [-46.186351504808925, -23.96833076559385], + [-46.186344506466995, -23.96893076587119], + [-46.186240507604, -23.969494766361752], + [-46.186066508412694, -23.970049767013744], + [-46.18590150865534, -23.970389767551058], + [-46.185735508798025, -23.97069576807599], + [-46.18555350892762, -23.971021768647468], + [-46.18542750902666, -23.97125076904443], + [-46.185361509433335, -23.97149676930722], + [-46.185429510253876, -23.971683769227948], + [-46.1856915114359, -23.971700768616646], + [-46.186045513030095, -23.97172276779033], + [-46.186449514987025, -23.97179676686837], + [-46.186733516559734, -23.971918766250774], + [-46.187535520990934, -23.97225976450488], + [-46.18794752343852, -23.972495763634317], + [-46.18811052496881, -23.972788763376588], + [-46.188146525645365, -23.972973763371932], + [-46.18814752633384, -23.973216763475122], + [-46.18807952649269, -23.97337776370565], + [-46.187828525755315, -23.973501764352285], + [-46.18740152372685, -23.97343776533301], + [-46.18730452344198, -23.973485765582936], + [-46.18731552398795, -23.97366276563382], + [-46.1873535246028, -23.97382276561355], + [-46.18713052388522, -23.973910766178463], + [-46.18697852366634, -23.974066766605254], + [-46.18679052359015, -23.974328767163087], + [-46.18669752389125, -23.974578767491327], + [-46.18675352490783, -23.974853767478535], + [-46.18673752541287, -23.975057767604937], + [-46.18656852499379, -23.97516876805227], + [-46.18661352552924, -23.975289767998596], + [-46.18684152682305, -23.975398767507393], + [-46.18701352786327, -23.975503767146723], + [-46.186976528057805, -23.975629767288893], + [-46.186975528844584, -23.97591076741328], + [-46.18685452847281, -23.97596476772253], + [-46.1869095291811, -23.976131767665134], + [-46.187152530990474, -23.976400767208034], + [-46.18739053242331, -23.9765437667079], + [-46.18763253387647, -23.976687766198886], + [-46.18772553477458, -23.97686376605553], + [-46.18764453506312, -23.977090766345484], + [-46.18769553606393, -23.9773677663453], + [-46.1877595369717, -23.97759176629134], + [-46.187700537414585, -23.977839766538406], + [-46.187543537664084, -23.978169767052545], + [-46.18743453776103, -23.978371767397782], + [-46.187208537095074, -23.97848276797992], + [-46.186859535679865, -23.97851676881919], + [-46.186415533684254, -23.97849076985674], + [-46.18605553225224, -23.978535770726673], + [-46.18578653138322, -23.978640771407708], + [-46.18564453098801, -23.978718771776972], + [-46.185489531015214, -23.978966772250857], + [-46.18530553077598, -23.97916477277157], + [-46.185276531244504, -23.97937577293169], + [-46.18561353287264, -23.979435772161793], + [-46.18583153449799, -23.979677771751902], + [-46.185999535571746, -23.97980077140843], + [-46.18605953610749, -23.97989877130928], + [-46.1859055356491, -23.97997277170522], + [-46.18581653551716, -23.980062771954636], + [-46.185934536833486, -23.98034877180007], + [-46.186023538308646, -23.98073577175786], + [-46.186047539327845, -23.981060771842433], + [-46.18609353997196, -23.981218771802297], + [-46.18634954216188, -23.981602771364344], + [-46.18667354488854, -23.982072770802958], + [-46.18694654688761, -23.982362770283885], + [-46.187116548099695, -23.982531769955525], + [-46.1871305486448, -23.98270376999715], + [-46.187037549087094, -23.98300377034713], + [-46.186906549088775, -23.983205770744394], + [-46.18680754903749, -23.983339771036505], + [-46.186662548553215, -23.983390771401297], + [-46.18638354726333, -23.983361772047935], + [-46.18612454590511, -23.983277772623385], + [-46.185754544088795, -23.983201773464614], + [-46.18545554272065, -23.983175774159747], + [-46.18516654145781, -23.98317177484083], + [-46.18497954068469, -23.9831847752883], + [-46.18484054039246, -23.98329477566445], + [-46.18475454057766, -23.9834927759537], + [-46.184873541814, -23.983748775783724], + [-46.185135543531686, -23.98395577525461], + [-46.18545854531921, -23.984093774551443], + [-46.185810547375965, -23.984282773801876], + [-46.18611454905598, -23.984411773139595], + [-46.1862995501923, -23.984530772754116], + [-46.18651755182371, -23.984774772344977], + [-46.186766553789425, -23.985089771893307], + [-46.18692955504182, -23.985283771592357], + [-46.18702955606088, -23.98549177144643], + [-46.186918556239334, -23.985725771810316], + [-46.1867925559867, -23.98582977215323], + [-46.18657855535845, -23.98593577270497], + [-46.18650455539575, -23.98606277293499], + [-46.186562556052614, -23.98620677286038], + [-46.18652455660931, -23.9864627730614], + [-46.18663455779562, -23.98671477291086], + [-46.1867785591011, -23.986956772675658], + [-46.18679955982595, -23.98718177272379], + [-46.18675656049902, -23.98748677295775], + [-46.18666056071438, -23.987710773281872], + [-46.186530560433056, -23.98781077363264], + [-46.18630455971898, -23.987904774207525], + [-46.18614555901338, -23.98789877458073], + [-46.18598255794112, -23.98776877490949], + [-46.18577055680034, -23.98768977537614], + [-46.1854345557676, -23.987839776235294], + [-46.18494655395816, -23.98794777743549], + [-46.18474255321818, -23.987998777939673], + [-46.184661553177186, -23.98810877817893], + [-46.1847395540194, -23.98828777807232], + [-46.184651554446695, -23.988574778405027], + [-46.18459555522396, -23.98893677869465], + [-46.18455955559773, -23.98912477886131], + [-46.184280554797674, -23.98926977958365], + [-46.18402055422921, -23.989467780284127], + [-46.18384855357706, -23.98950078070494], + [-46.18357655219598, -23.989428781316416], + [-46.1833575512163, -23.989417781829122], + [-46.18308855012701, -23.989444782476536], + [-46.182744548884735, -23.98953278332766], + [-46.18251054791891, -23.98954978388807], + [-46.18231654708695, -23.989552784347755], + [-46.182217546970655, -23.98966378462991], + [-46.1822205473753, -23.989802784683267], + [-46.182179547831524, -23.990027784877938], + [-46.18230954890461, -23.990208784649393], + [-46.182529550054916, -23.990278784159962], + [-46.182692551118855, -23.990405783829996], + [-46.18258755084146, -23.99046878410558], + [-46.18244355019225, -23.990459784441917], + [-46.18238155027302, -23.99058378464226], + [-46.18253155107498, -23.990637784311307], + [-46.18261655153903, -23.99067178412519], + [-46.18252955154527, -23.990807784389972], + [-46.18251555212414, -23.99103478452164], + [-46.182644553319776, -23.991260784315095], + [-46.18274255453608, -23.99154178420561], + [-46.18299055617121, -23.991740783705954], + [-46.18328555790854, -23.99190378307959], + [-46.18355455938108, -23.992012782491223], + [-46.18391356091387, -23.99200478163926], + [-46.18419356247917, -23.992129781031824], + [-46.18448356412443, -23.99226778040638], + [-46.18483556613127, -23.99243877964859], + [-46.18538156877283, -23.992536778400602], + [-46.18598457126967, -23.992495776957437], + [-46.18623757180767, -23.99229777627343], + [-46.18650357250342, -23.992135775574308], + [-46.18651957206261, -23.991954775457852], + [-46.18678057293116, -23.99186177480054], + [-46.18706257400901, -23.991810774111748], + [-46.18714457412471, -23.99172577388107], + [-46.18735057500578, -23.9917217733923], + [-46.187558575241646, -23.991485772798185], + [-46.18767757504971, -23.991234772407946], + [-46.18754857385962, -23.99101077261571], + [-46.187707574043884, -23.990831772162075], + [-46.18773157370259, -23.990673772036743], + [-46.18793857470068, -23.990709771563097], + [-46.18810057523892, -23.990651771154955], + [-46.18807457481636, -23.99054177116863], + [-46.18807857430947, -23.990355771078512], + [-46.18821257457142, -23.990242770712687], + [-46.188492576266135, -23.990413770124945], + [-46.18877957769248, -23.990478769474727], + [-46.189045578726244, -23.99043676882763], + [-46.18924457930357, -23.990335768313376], + [-46.18959058108116, -23.990434767538346], + [-46.19006358310736, -23.990426766416686], + [-46.19047658442824, -23.990260765368184], + [-46.190867585859586, -23.990167764403445], + [-46.19121558735545, -23.990163763578877], + [-46.19153758898116, -23.99024576285314], + [-46.191919591430526, -23.990527762072166], + [-46.192187593414445, -23.99081976156504], + [-46.1924445950237, -23.99099576103363], + [-46.19268759649893, -23.99114576052408], + [-46.19274859762863, -23.991452760512825], + [-46.19298159968091, -23.991822760122254], + [-46.19338160260313, -23.9922447593592], + [-46.19380960526046, -23.99252975847044], + [-46.194503609444844, -23.99294775701017], + [-46.19515261325682, -23.99330275562896], + [-46.19560161594597, -23.99356675468114], + [-46.195842618143196, -23.99397575428818], + [-46.19595361958569, -23.99431675417333], + [-46.196300621362084, -23.994413753394397], + [-46.19662262321928, -23.994577752703638], + [-46.19699262535488, -23.994766751910237], + [-46.19722662680555, -23.994921751423664], + [-46.19765562892304, -23.995013750448603], + [-46.198059631126945, -23.99517474956242], + [-46.198301632115744, -23.99515374898072], + [-46.1985306328706, -23.99506974840252], + [-46.198976635290244, -23.995242747422104], + [-46.19937063727579, -23.995341746532674], + [-46.19975663903499, -23.995372745632704], + [-46.20012364091213, -23.995474744808416], + [-46.20036964197467, -23.99547374422588], + [-46.200609643160725, -23.995525743680368], + [-46.20091764542001, -23.995853743093367], + [-46.201225648249306, -23.996383742593597], + [-46.20140464994162, -23.996708742310464], + [-46.2014876508823, -23.996914742203092], + [-46.20141665120125, -23.99713674246715], + [-46.20134965137109, -23.997299742696168], + [-46.20145465222369, -23.99744074250858], + [-46.201380652312395, -23.99758574274641], + [-46.20107965114135, -23.9976327434792], + [-46.20083065022662, -23.997690744093482], + [-46.200647649899665, -23.997855744598002], + [-46.200383648812604, -23.997875745231436], + [-46.200339649149704, -23.998062745416448], + [-46.20036865009092, -23.998351745472792], + [-46.20071865262265, -23.998711744800044], + [-46.20102465505717, -23.9991047442457], + [-46.20115565689737, -23.999555744130635], + [-46.201284658714776, -24.000001744018103], + [-46.20159766131241, -24.000441743467402], + [-46.20191066321002, -24.000633742809462], + [-46.20212766457333, -24.000783742360582], + [-46.20244966635759, -24.00092174165796], + [-46.20433767455753, -24.000929737191587], + [-46.20472567571014, -24.00074273619216], + [-46.20497367664589, -24.000693735583834], + [-46.205283678411945, -24.000843734914703], + [-46.20539867910201, -24.000911734671703], + [-46.20580468093946, -24.000939733722465], + [-46.20565967991335, -24.000798734004906], + [-46.20587868061329, -24.000710733448354], + [-46.20641368311949, -24.000777732210512], + [-46.20682468470744, -24.0007097312079], + [-46.20715268587951, -24.000621730393224], + [-46.207407685964505, -24.000260729633652], + [-46.207702686400594, -23.999962728806434], + [-46.20810168691442, -23.999532727675984], + [-46.20820068647072, -23.999223727308355], + [-46.2075386810885, -23.998332728491295], + [-46.20722067847507, -23.997894729055297], + [-46.20692567649467, -23.9976457296462], + [-46.20659967415717, -23.99731773027648], + [-46.20636167235319, -23.99704373072162], + [-46.20621667086724, -23.99673973093366], + [-46.20596766880963, -23.996392731373366], + [-46.20558566629178, -23.99608673214553], + [-46.205033662978764, -23.995759733311015], + [-46.20452965996098, -23.995463734376102], + [-46.20401965674242, -23.995105735428623], + [-46.20352065394113, -23.994878736511566], + [-46.202951651186495, -23.994775737813725], + [-46.20259864948019, -23.994712738621935], + [-46.20254664849315, -23.994442738628276], + [-46.20245564728653, -23.994154738719118], + [-46.20239464589676, -23.993755738691043], + [-46.2025706446246, -23.993034737962905], + [-46.20300664376737, -23.992061736510593], + [-46.20337564261161, -23.991085735215588], + [-46.20399364339434, -23.990414733463222], + [-46.20486564471786, -23.989545731024382], + [-46.2052426453005, -23.98917372997162], + [-46.206081647361046, -23.988616727745537], + [-46.20704464963935, -23.987946725177405], + [-46.20775765142779, -23.98748672329143], + [-46.208013652078854, -23.987324722615657], + [-46.20826965272705, -23.98716172193948], + [-46.208677654083765, -23.987016720911306], + [-46.20912065569357, -23.986907719815882], + [-46.21227366729614, -23.986183712040773], + [-46.21409967489032, -23.986074707671346], + [-46.216857686358374, -23.98590970107056], + [-46.2168826864807, -23.985914701013467], + [-46.21755368972264, -23.986034699476427], + [-46.21766269025064, -23.986054699226997], + [-46.2188066957621, -23.98625369660365], + [-46.21992070127616, -23.986499694071323], + [-46.22088170622436, -23.98677969191587], + [-46.22110570730082, -23.986817691401704], + [-46.221357708526554, -23.98686569082547], + [-46.22168170990002, -23.986855690053744], + [-46.22200471126634, -23.986844689284013], + [-46.22210371170313, -23.986847689050762], + [-46.22230271258382, -23.986854688582387], + [-46.22234271275963, -23.98685568848807], + [-46.22258871399331, -23.98691568793117], + [-46.22286171505578, -23.98687368726644], + [-46.2231497165728, -23.986969686625535], + [-46.22327571723643, -23.987011686345134], + [-46.22381371995355, -23.987149685129943], + [-46.22432272244636, -23.98725268396841], + [-46.22526272711143, -23.98746468183258], + [-46.22610473104188, -23.987566679881496], + [-46.226421732715316, -23.987673679176332], + [-46.226607733361746, -23.98761767871155], + [-46.226893734381456, -23.98754067800087], + [-46.22726773625341, -23.98763067715329], + [-46.22777173874711, -23.987741676006745], + [-46.2283407416688, -23.987904674728373], + [-46.2286817432031, -23.987925673929283], + [-46.229104745120345, -23.987956672940136], + [-46.22964674786023, -23.988096671715773], + [-46.229920749183826, -23.98814567108752], + [-46.230284751032215, -23.988242670266395], + [-46.230740753354965, -23.988366669238786], + [-46.2310997552214, -23.98847766843552], + [-46.231336756438594, -23.98854566790298], + [-46.231525757278675, -23.988553667458472], + [-46.23186275896795, -23.988635666694808], + [-46.232147760760036, -23.988833666104117], + [-46.2325487627799, -23.988934665196986], + [-46.233010765292434, -23.98911666417978], + [-46.2334217674261, -23.98924266325942], + [-46.23390576961257, -23.989275662126225], + [-46.23446177243281, -23.989422660871092], + [-46.23493777477124, -23.989521659784984], + [-46.23519377575681, -23.989478659159616], + [-46.23584177872332, -23.989536657647985], + [-46.236200780640466, -23.989665656852043], + [-46.23637078179969, -23.98981565651323], + [-46.236567782662924, -23.989819656047832], + [-46.23672778350198, -23.989871655690653], + [-46.23683778418965, -23.989946655461996], + [-46.23708178526186, -23.989952654885954], + [-46.23740578682701, -23.99001065414249], + [-46.237691788244724, -23.99007465349164], + [-46.23791178947599, -23.99017365301237], + [-46.23803178989891, -23.99013965271324], + [-46.23823579087442, -23.990172652243572], + [-46.238354791284415, -23.99013565194557], + [-46.23848279212069, -23.990235651684756], + [-46.238559792668525, -23.990311651534757], + [-46.238888794224216, -23.990358650774592], + [-46.23905879546821, -23.99053865044843], + [-46.239470797433675, -23.990603649499167], + [-46.23985679938852, -23.99070464862681], + [-46.24019380134631, -23.9908816479033], + [-46.24046580254802, -23.99089064726192], + [-46.24079680416878, -23.990957646505542], + [-46.241100805616306, -23.99100464580455], + [-46.241457807603986, -23.99116164502479], + [-46.241754809012775, -23.991205644339093], + [-46.24195880993172, -23.99121864386083], + [-46.24214681108111, -23.991337643465748], + [-46.242488813156676, -23.99154864274461], + [-46.24293981520595, -23.99158364168962], + [-46.24357481834768, -23.991723640243023], + [-46.24383181975315, -23.99182763967773], + [-46.24410682131553, -23.991959639081678], + [-46.24428782221421, -23.992000638669783], + [-46.244560823570076, -23.99206263804861], + [-46.24509182619137, -23.992177636837855], + [-46.24563982914639, -23.99238463562595], + [-46.24573782967201, -23.99242063540876], + [-46.245777829887416, -23.992435635320266], + [-46.246536834133906, -23.992776633664782], + [-46.24714583765541, -23.993090632353685], + [-46.24773784119971, -23.993438631097305], + [-46.24821484406574, -23.99372263008639], + [-46.24845784570206, -23.993929629597982], + [-46.24855784642592, -23.994032629404582], + [-46.248895847573266, -23.993921628555015], + [-46.24909684815375, -23.99381962803442], + [-46.24905084846135, -23.99399862821996], + [-46.24878484756025, -23.99408662888887], + [-46.248555847014316, -23.994243629499348], + [-46.248326846239145, -23.99431963007538], + [-46.24803384535705, -23.994455630828813], + [-46.24782284489461, -23.9946146313975], + [-46.24784884553899, -23.994802631416047], + [-46.24797284690136, -23.995094631246364], + [-46.24815984793638, -23.995174630836683], + [-46.248279848817454, -23.99530263060642], + [-46.248213849069735, -23.99549263084418], + [-46.24805784895259, -23.99568963129858], + [-46.24826485026083, -23.99583563086953], + [-46.248412851579964, -23.996075630620602], + [-46.24859285269232, -23.99619363024369], + [-46.24874085359539, -23.996286629932012], + [-46.249014855193415, -23.996432629343975], + [-46.24934985702692, -23.99656862860673], + [-46.24960885836482, -23.996645628024723], + [-46.24994286017421, -23.996774627286833], + [-46.25022786193014, -23.996959626689094], + [-46.25041586303744, -23.997063626287176], + [-46.25057486393726, -23.99713862594168], + [-46.25071386463743, -23.99717362562655], + [-46.25087586545396, -23.997214625259435], + [-46.251002866011646, -23.997217624959173], + [-46.2511188663235, -23.99715062465522], + [-46.251182866481415, -23.997108624485353], + [-46.25132486717462, -23.997136624160163], + [-46.25134586710695, -23.997080624086408], + [-46.25134586696543, -23.997030624065044], + [-46.25146486737808, -23.99699462376719], + [-46.251467867153266, -23.996910623724233], + [-46.251473866918836, -23.996818623670798], + [-46.25154986705213, -23.996749623460907], + [-46.251552866617864, -23.996591623386497], + [-46.25158086639928, -23.996471623268782], + [-46.2518098670016, -23.9963346226667], + [-46.25214186817669, -23.99624262183917], + [-46.252452869498775, -23.996234621097383], + [-46.25310387270975, -23.996374619611274], + [-46.25339487437273, -23.996517618981244], + [-46.253763876525795, -23.996714618189007], + [-46.25387787746033, -23.99687061798474], + [-46.254493881377826, -23.99731361671071], + [-46.25499188470592, -23.99772861570478], + [-46.255508888320186, -23.99821561468439], + [-46.25593389144327, -23.998669613868284], + [-46.25628489351304, -23.998864613117608], + [-46.25679589648134, -23.999132612017913], + [-46.25720789860531, -23.99925361109082], + [-46.25785590201864, -23.99946960964347], + [-46.258487904819034, -23.999493608152246], + [-46.258667905713466, -23.999534607741996], + [-46.25892690701167, -23.999597607153557], + [-46.259387909656134, -23.999827606156106], + [-46.26026091428588, -24.00012960421051], + [-46.26125491982398, -24.00056760203484], + [-46.261876923501795, -24.000916600705203], + [-46.26215292504909, -24.00104160010249], + [-46.2624289265426, -24.001147599491617], + [-46.26297792937789, -24.00131059825619], + [-46.263405932035695, -24.00159559736016], + [-46.2642389369885, -24.002072595582923], + [-46.264784941295844, -24.002759594577036], + [-46.265269944446736, -24.003131593582083], + [-46.26614295016516, -24.003817591798057], + [-46.266217950636765, -24.003869591641802], + [-46.26623795098972, -24.003963591634193], + [-46.266237951341196, -24.004087591686798], + [-46.26624095149588, -24.004137591700935], + [-46.266402952516536, -24.00425059136371], + [-46.266456952931414, -24.00431459126255], + [-46.266491953283946, -24.004385591209473], + [-46.26650495356126, -24.004463591211653], + [-46.266554954052346, -24.004560591133995], + [-46.26659995449064, -24.00464659106342], + [-46.26672895517308, -24.004690590775418], + [-46.267034956521584, -24.00469959005174], + [-46.26715395710689, -24.004724589779446], + [-46.26726095773954, -24.004784589550503], + [-46.267402958855214, -24.004961589287973], + [-46.26759696085621, -24.00537158900068], + [-46.26768696163932, -24.005510588845716], + [-46.26805796458988, -24.005985588165043], + [-46.268249966074954, -24.00621658780649], + [-46.268404967621095, -24.00652558756899], + [-46.268566969271326, -24.006860587325864], + [-46.268773971691715, -24.00739858706183], + [-46.268983974431514, -24.008044586836398], + [-46.26908197612283, -24.008491586792825], + [-46.26909197657435, -24.00863558683023], + [-46.26905497682268, -24.00877958697922], + [-46.26894797696414, -24.008992587324084], + [-46.26884197772527, -24.009422587758593], + [-46.26860397821056, -24.0099565885511], + [-46.26830397808751, -24.0103705894402], + [-46.268003977224275, -24.010523590218565], + [-46.26769897652081, -24.01074059103604], + [-46.267422975650625, -24.010854591740845], + [-46.26717497458956, -24.010858592332358], + [-46.2669109734026, -24.010842592953534], + [-46.266820972792225, -24.0107645931344], + [-46.26685097240867, -24.01058359298628], + [-46.266857971888754, -24.01038959288734], + [-46.26677597148036, -24.01037059307424], + [-46.26669397099529, -24.01032459324973], + [-46.2666659706615, -24.01024959328452], + [-46.2665599701493, -24.01023059352846], + [-46.266395969564826, -24.010274593937165], + [-46.266256969312586, -24.010397594319972], + [-46.266102968859286, -24.010472594718003], + [-46.26592896852377, -24.010619595194196], + [-46.26577296832269, -24.01078659563612], + [-46.26561196827583, -24.01101559611611], + [-46.26544596847106, -24.01133759664765], + [-46.26502896893904, -24.01213859797929], + [-46.26505196959154, -24.012333598007434], + [-46.26507697010805, -24.012477598009028], + [-46.26511197038981, -24.012523597945307], + [-46.2651019704685, -24.01256659798736], + [-46.26503997029962, -24.012601598149725], + [-46.26496596994557, -24.012589598320574], + [-46.26492296979929, -24.012603598428814], + [-46.26480096909578, -24.012541598692618], + [-46.26472896874468, -24.012527598857826], + [-46.264545968165955, -24.012602599324943], + [-46.264438967924335, -24.01268059961248], + [-46.264257967419454, -24.012778600084566], + [-46.2639549665514, -24.012934600871382], + [-46.26381796641254, -24.013094601265138], + [-46.26368896668545, -24.013387601696323], + [-46.263567967004356, -24.013684602110168], + [-46.263567967134804, -24.013730602129694], + [-46.26360096736826, -24.013762602064787], + [-46.263629967643986, -24.01381560201836], + [-46.26359596763876, -24.013865602120415], + [-46.2634839673046, -24.013918602409305], + [-46.263474164382636, -24.013961082450635], + [-46.26345696751967, -24.014035602523204], + [-46.26343696771103, -24.0141336026124], + [-46.26344196807008, -24.014252602651045], + [-46.26352696843775, -24.0142526024489], + [-46.26363096902379, -24.014300602221937], + [-46.26365596928217, -24.01435360218503], + [-46.263571969210915, -24.01445660242852], + [-46.2635499694079, -24.01455960252459], + [-46.26358496970956, -24.01461260246379], + [-46.26364697004296, -24.014635602326155], + [-46.263730970159585, -24.014548602089434], + [-46.26380797014661, -24.014426601854527], + [-46.263862970333484, -24.014408601716017], + [-46.26392697066423, -24.014427601571953], + [-46.26403897113452, -24.01442260130349], + [-46.26415297117944, -24.014264600965266], + [-46.2642129713113, -24.014219600803475], + [-46.26437897191308, -24.014178600391237], + [-46.26455297260034, -24.01415559996761], + [-46.26457097258185, -24.014121599910407], + [-46.26460797265108, -24.014089599808838], + [-46.26464297279959, -24.01408859972518], + [-46.264724973318785, -24.014146599554717], + [-46.26479897359347, -24.01413059937199], + [-46.26495797408547, -24.01406159896452], + [-46.26510497474961, -24.01407159861909], + [-46.265129975044964, -24.014137598587695], + [-46.26521897560005, -24.01419759840148], + [-46.26559497851396, -24.014651597699864], + [-46.265699979115574, -24.014703597472234], + [-46.265888979921684, -24.01469959702092], + [-46.26590098008989, -24.01474059700979], + [-46.26592398034531, -24.01479559697844], + [-46.26596798052427, -24.014791596872136], + [-46.26603098085355, -24.014811596730745], + [-46.26609798122837, -24.014841596584088], + [-46.266156981336046, -24.014789596421735], + [-46.26622398154077, -24.014759596249643], + [-46.26627898197438, -24.014828596148053], + [-46.266370982326876, -24.014812595922415], + [-46.26639098200205, -24.014667595813297], + [-46.26677298300744, -24.014439594807897], + [-46.266901983443404, -24.014396594482882], + [-46.267023983976685, -24.014398594193526], + [-46.26707098416585, -24.01439359407955], + [-46.267112984165955, -24.014329593952514], + [-46.26708098378083, -24.014242593991703], + [-46.26715498382287, -24.01414459377407], + [-46.26734898389032, -24.013872593197277], + [-46.26769398487738, -24.013694592301057], + [-46.26799398559618, -24.013490591500908], + [-46.26826798669025, -24.013458590835658], + [-46.268788988529295, -24.013312589534276], + [-46.26905798954502, -24.013260588872352], + [-46.269198990200174, -24.013276588543725], + [-46.26945299107159, -24.013196587905497], + [-46.269715991956424, -24.01310758724212], + [-46.27076399817328, -24.013701585000685], + [-46.27561102693338, -24.016450574630436], + [-46.275807028095926, -24.016561574210918], + [-46.27582802822938, -24.016576574167285], + [-46.27599802930228, -24.01669557381299], + [-46.27609503000265, -24.01679457362399], + [-46.27616003053073, -24.01688157350609], + [-46.276177030916465, -24.016991573512122], + [-46.27612303089016, -24.017064573671544], + [-46.2760680307631, -24.017103573819018], + [-46.27609303098185, -24.017142573775956], + [-46.27617803152541, -24.017204573599916], + [-46.27623303217771, -24.01735057353075], + [-46.276243032905114, -24.01759157360889], + [-46.2762730338069, -24.01786357365259], + [-46.27626403443231, -24.018097573773023], + [-46.2762760347681, -24.018197573786765], + [-46.2764080357051, -24.018326573527137], + [-46.27660503697996, -24.018475573121187], + [-46.27682703882296, -24.018786572724203], + [-46.27689203954689, -24.018942572635396], + [-46.27693704052224, -24.019217572644678], + [-46.27705104156888, -24.01941257245575], + [-46.27721804267998, -24.01954957211606], + [-46.27737504348386, -24.019593571760872], + [-46.277509044225155, -24.019650571465952], + [-46.27773104540092, -24.019726570969507], + [-46.278029046749246, -24.0197475702689], + [-46.27868704956337, -24.0197365686975], + [-46.2790060509058, -24.01972356793242], + [-46.27909305127634, -24.01972156772444], + [-46.27926205237063, -24.019849567376138], + [-46.27948405411151, -24.020124566963748], + [-46.27975805640956, -24.0205165664769], + [-46.27987705771647, -24.020795566311524], + [-46.27990305814986, -24.02090856629731], + [-46.279803057825326, -24.02094656655154], + [-46.27971405785794, -24.021093566825584], + [-46.279697058153644, -24.021223566921048], + [-46.279747058651004, -24.02132256684375], + [-46.27985105912627, -24.02133156659991], + [-46.28001305977, -24.021311566205686], + [-46.28006506000059, -24.021313566082696], + [-46.280067060151225, -24.021363566099016], + [-46.280080060579515, -24.02149456612342], + [-46.280145061093464, -24.021576566003294], + [-46.28029406170092, -24.02156356564294], + [-46.28045806205791, -24.021439565199934], + [-46.28054006245228, -24.02145356501064], + [-46.280677063271895, -24.02153356471813], + [-46.28087806485117, -24.02178356434504], + [-46.280976065783314, -24.02196256418732], + [-46.28113306695647, -24.022136563886832], + [-46.281227067786155, -24.02228556372597], + [-46.281245068273094, -24.022429563743838], + [-46.281176068150806, -24.02249156393445], + [-46.28111606835436, -24.022654564146222], + [-46.28115406904421, -24.022839564133882], + [-46.281301070083174, -24.022981563843683], + [-46.28139007062996, -24.023038563655778], + [-46.281423071170416, -24.023178563636357], + [-46.281361071430695, -24.023364563862526], + [-46.28122707100454, -24.023418564204558], + [-46.280817069328144, -24.02345256519546], + [-46.280586068647324, -24.02356456579301], + [-46.280286068136725, -24.023841566624633], + [-46.28011506828637, -24.02415456716412], + [-46.28007506834911, -24.024237567294506], + [-46.28004506856311, -24.024358567417075], + [-46.28006806922782, -24.024557567446422], + [-46.28012806978843, -24.024663567348277], + [-46.280173070190415, -24.02473656727194], + [-46.28017307039777, -24.024809567302782], + [-46.28009907031921, -24.024894567514977], + [-46.280054070397306, -24.024990567662783], + [-46.280065071180665, -24.025249567746023], + [-46.28017207247011, -24.02554056761405], + [-46.280331073683364, -24.02572556731349], + [-46.280762076570184, -24.026085566438923], + [-46.28087907781786, -24.0263465662704], + [-46.28087707880648, -24.026697566423426], + [-46.28087807952681, -24.026949566527573], + [-46.28083307953389, -24.027020566664696], + [-46.28085107989018, -24.027118566663226], + [-46.280827080743876, -24.027455566862848], + [-46.280812081062585, -24.02759056695561], + [-46.28052808201929, -24.02835956795699], + [-46.280399081947195, -24.028530568336596], + [-46.280285082346296, -24.02884456874079], + [-46.280223082578146, -24.02902056896287], + [-46.2801360824747, -24.029116569210725], + [-46.28001208219971, -24.02920856954499], + [-46.27986308158644, -24.02921956990466], + [-46.27976108107417, -24.02919457013705], + [-46.279595080432856, -24.029221570543953], + [-46.279513080311105, -24.029303570773983], + [-46.27936408024056, -24.029505571214337], + [-46.279347080726815, -24.029702571338053], + [-46.27931708071924, -24.02974557142769], + [-46.279230080524755, -24.029809571661986], + [-46.279213080652966, -24.029880571732487], + [-46.27927108165121, -24.030143571705445], + [-46.279281081975824, -24.03024257172349], + [-46.27918408228922, -24.030500572063634], + [-46.279025081973714, -24.030631572497793], + [-46.27876008117104, -24.03075257318028], + [-46.27859108054229, -24.03078857359815], + [-46.27841907972712, -24.03076357399725], + [-46.27831007924141, -24.03075857425483], + [-46.278283079229716, -24.030795574334853], + [-46.278322079514965, -24.03083657425927], + [-46.27839508001832, -24.030902574113238], + [-46.27842708043239, -24.030999574078017], + [-46.27841508072431, -24.03112057415771], + [-46.27838808114736, -24.031310574302356], + [-46.278348081221544, -24.0313975744344], + [-46.27834808134374, -24.031440574452613], + [-46.27828908140115, -24.031550574639606], + [-46.2782070813078, -24.031642574873924], + [-46.278170081284095, -24.03169057498234], + [-46.27817008148584, -24.031761575012368], + [-46.27829008265584, -24.031990574823283], + [-46.278369083395425, -24.032130574694186], + [-46.27838508392503, -24.032292574724547], + [-46.27838008405406, -24.03234557475888], + [-46.27847908480058, -24.03245757457037], + [-46.278554085295575, -24.03251757441694], + [-46.27857208556109, -24.032583574401983], + [-46.27850708552705, -24.032670574593638], + [-46.27841308549271, -24.032801574872956], + [-46.27840808568425, -24.032876574916568], + [-46.278428086032214, -24.032968574907766], + [-46.27847108657634, -24.033094574858595], + [-46.27846808708349, -24.03327757494313], + [-46.27839908757783, -24.033556575225447], + [-46.27839708790742, -24.03367557528047], + [-46.2784400884061, -24.033785575224563], + [-46.27851708933325, -24.03399457512938], + [-46.27859208995049, -24.034097574994195], + [-46.278619090300396, -24.03417957496447], + [-46.27860409046287, -24.034259575034064], + [-46.278545090398026, -24.034326575203004], + [-46.2785400905498, -24.03438757524059], + [-46.27859509184219, -24.034758575266373], + [-46.27861309223281, -24.034868575270004], + [-46.27860609237302, -24.034928575311934], + [-46.2785510921407, -24.034930575443926], + [-46.278509092069825, -24.034969575560428], + [-46.278477092016644, -24.034999575649454], + [-46.27843409188742, -24.035019575760234], + [-46.278365091739566, -24.03507257594717], + [-46.278358091871254, -24.03512957598787], + [-46.27838309220117, -24.03520757596131], + [-46.27840509240726, -24.035246575925406], + [-46.278370092477466, -24.03532457604172], + [-46.27846709327517, -24.035457575866783], + [-46.27850509349649, -24.03547757578468], + [-46.27854909348505, -24.035406575649787], + [-46.27856809337972, -24.03534057557668], + [-46.278562093132, -24.03526257555794], + [-46.278571093085695, -24.035232575523832], + [-46.27860409327396, -24.03524857545206], + [-46.27856909338403, -24.03534057557428], + [-46.278622094127805, -24.035521575524445], + [-46.27864209439054, -24.035583575503065], + [-46.27873109517937, -24.035725575350906], + [-46.278761095431406, -24.03576857529758], + [-46.278761095505324, -24.03579457530859], + [-46.278675095255394, -24.035837575531712], + [-46.27860709506631, -24.03587457570935], + [-46.278593095108064, -24.03591057575798], + [-46.2786100954489, -24.03600457575715], + [-46.278593095855676, -24.036173575869114], + [-46.278541095968976, -24.036292576043294], + [-46.27850909624829, -24.036439576181685], + [-46.27858409717272, -24.03665057609205], + [-46.27915910091734, -24.037092574908584], + [-46.279453102547706, -24.037218574261075], + [-46.27953510294806, -24.03723457407237], + [-46.27959410338815, -24.037299573959277], + [-46.27959010378586, -24.037445574030485], + [-46.27964210447433, -24.037608573975387], + [-46.27974210516863, -24.03770057377597], + [-46.27988910597815, -24.037761573451284], + [-46.27995810648715, -24.037835573318148], + [-46.28008810725146, -24.037906573038317], + [-46.28016710764455, -24.037924572857605], + [-46.28028410805417, -24.037890572564297], + [-46.28036410831507, -24.037860572360962], + [-46.28044610875515, -24.037890572178185], + [-46.28050310913828, -24.037938572062572], + [-46.2805001092362, -24.037977572086227], + [-46.280414109020455, -24.03803257231446], + [-46.28039610911316, -24.03809257238269], + [-46.280424109350825, -24.03813357233329], + [-46.28050610968578, -24.038126572134836], + [-46.28063211008318, -24.038074571812572], + [-46.28076711066163, -24.03807257148997], + [-46.28083611102563, -24.038095571335166], + [-46.28090311145207, -24.038143571195707], + [-46.28096311202438, -24.038253571099187], + [-46.28099311228224, -24.038298571046646], + [-46.28107511278771, -24.038351570873523], + [-46.28116511296387, -24.038276570627406], + [-46.28122211306551, -24.038225570469976], + [-46.28128411325708, -24.038198570310858], + [-46.2814781143581, -24.03829056988724], + [-46.28153011465425, -24.038315569773783], + [-46.281634114922184, -24.03825156949889], + [-46.28178611557425, -24.038249569135715], + [-46.28216411756817, -24.038375568287872], + [-46.28222111799671, -24.03843956817896], + [-46.2822491184762, -24.038565568165346], + [-46.28254312045934, -24.038815567569984], + [-46.28259812093331, -24.038898567473932], + [-46.28252312108369, -24.039065567723256], + [-46.28249112133485, -24.039202567857348], + [-46.28214412044474, -24.03941756877535], + [-46.28211912047313, -24.03946556885519], + [-46.28213612064329, -24.039499568828987], + [-46.28232112157474, -24.039545568407444], + [-46.282380122046085, -24.039621568298834], + [-46.28234812220058, -24.039724568418503], + [-46.28229412214889, -24.039788568574334], + [-46.28228912238038, -24.0398775686238], + [-46.28240612342135, -24.04006556842422], + [-46.282506124283536, -24.040216568249523], + [-46.282536125013436, -24.040427568267074], + [-46.282489125435774, -24.040647568471996], + [-46.28242712526979, -24.040683568634968], + [-46.28235512481611, -24.040633568785562], + [-46.28229512442565, -24.040587568909203], + [-46.28224812422789, -24.040589569022092], + [-46.28218112413982, -24.0406605692118], + [-46.282109124050194, -24.04073856941634], + [-46.2820821244595, -24.04092356955884], + [-46.28210712496019, -24.04106156955745], + [-46.28231612594139, -24.041088569070556], + [-46.28238112630227, -24.041116568927414], + [-46.282415126611575, -24.04117356887041], + [-46.28241612688326, -24.041267568907667], + [-46.28240812701081, -24.04132456895089], + [-46.28240112712554, -24.041375568989068], + [-46.28244612744255, -24.041418568899942], + [-46.28251512785203, -24.041457568751806], + [-46.2825751281658, -24.041476568616744], + [-46.282610128368425, -24.041494568540973], + [-46.282643129051635, -24.04168456854247], + [-46.28263512925883, -24.041769568597328], + [-46.282678129678146, -24.041851568529456], + [-46.282785130525156, -24.04198656833136], + [-46.28299913162194, -24.042046567846405], + [-46.28309613226354, -24.042124567648003], + [-46.28314113263464, -24.04218656756684], + [-46.28315113314158, -24.042349567611755], + [-46.28311613329452, -24.042456567740423], + [-46.28309413344676, -24.042543567829593], + [-46.28308913368684, -24.04263556788031], + [-46.283101408304645, -24.042834083934807], + [-46.28313525413516, -24.04307454295557], + [-46.28306358331981, -24.043248477199853], + [-46.28293920119528, -24.04339396455779], + [-46.282955598457654, -24.04346123554715], + [-46.28311878135172, -24.043527275185834], + [-46.28338262298037, -24.043698398628926], + [-46.2837451127597, -24.0437723967957], + [-46.284097405577285, -24.04387536899901], + [-46.28440752114483, -24.043954620292848], + [-46.28475471598151, -24.044072078514414], + [-46.284913281033845, -24.044200748190505], + [-46.28500315037902, -24.044185375969658], + [-46.28518468785932, -24.044078099491465], + [-46.285352684650874, -24.04410076310038], + [-46.285589310874755, -24.044170999565566], + [-46.28583079700992, -24.044202675003017], + [-46.286000040162946, -24.04435051366166], + [-46.28622671049468, -24.044473795173065], + [-46.286374121307226, -24.044535149847327], + [-46.28652682215618, -24.044601274510942], + [-46.286549182649736, -24.044740716516383], + [-46.286665187340795, -24.044807149267672], + [-46.28680245020545, -24.044902292980318], + [-46.286903159954065, -24.045012187786465], + [-46.287035132782336, -24.04510256050977], + [-46.28717773369747, -24.045207287213685], + [-46.2873352464439, -24.045230037847574], + [-46.28751945244215, -24.045300710437935], + [-46.287693269423094, -24.045381101057153], + [-46.287835871338224, -24.045485827761144], + [-46.28800892009667, -24.045489187349744], + [-46.28820264986183, -24.04546348287679], + [-46.28843807973797, -24.045413353293945], + [-46.288631329364044, -24.045339504801827], + [-46.288761189580306, -24.045218041440876], + [-46.28896598055748, -24.04525002096584], + [-46.28912440656811, -24.045364243635937], + [-46.289229185401354, -24.045497689442183], + [-46.289373013268346, -24.045583632135177], + [-46.28955072688232, -24.045529171688276], + [-46.289643840926765, -24.04540320241304], + [-46.28973705099895, -24.045286861141733], + [-46.289740610534565, -24.04511831206225], + [-46.289634318666046, -24.0449747622554], + [-46.289507635874344, -24.044889162521503], + [-46.28941197409269, -24.04475996769539], + [-46.28925407723508, -24.044698705046265], + [-46.289158271411694, -24.04455506621435], + [-46.28906756456922, -24.044396941364113], + [-46.288892883337894, -24.04422989271041], + [-46.288726860322434, -24.04412550306254], + [-46.288722772934506, -24.04399539801747], + [-46.28867434236985, -24.043870620080487], + [-46.28863105779992, -24.043736169127097], + [-46.288435696561905, -24.043598182534918], + [-46.28828814170777, -24.04352238685501], + [-46.28818175781154, -24.043369207044176], + [-46.28810567571692, -24.043100217112343], + [-46.28819315576182, -24.042631555706247], + [-46.28828515566483, -24.042457555413478], + [-46.28833915552567, -24.042326555229508], + [-46.28847615602736, -24.042294554889235], + [-46.288689156943306, -24.042292554380346], + [-46.288756157090894, -24.042242554199433], + [-46.28880815706835, -24.04215555403873], + [-46.28878315669278, -24.042061554058712], + [-46.28886015674134, -24.041961553832998], + [-46.28892915642522, -24.041745553577396], + [-46.28899415605486, -24.041516553325845], + [-46.28915015639411, -24.04139855290405], + [-46.28942815742607, -24.041338552215688], + [-46.28969715841638, -24.041277551548358], + [-46.28991815940382, -24.041288551025847], + [-46.29013115991561, -24.04114455045712], + [-46.29020815972799, -24.040961550196336], + [-46.29020515932517, -24.040824550145818], + [-46.290255159143086, -24.040684549967565], + [-46.2903091591434, -24.04060254980428], + [-46.29033915892604, -24.04048054968128], + [-46.29032915846731, -24.040334549643735], + [-46.29027615799053, -24.04024754973353], + [-46.29021915750767, -24.040164549834497], + [-46.2901121567518, -24.040061550046353], + [-46.29006515633501, -24.039986550126873], + [-46.290054155960206, -24.039871550104674], + [-46.2899521549983, -24.039688550270856], + [-46.289639152952795, -24.039445550915097], + [-46.28925815078956, -24.039264551747507], + [-46.288982149222846, -24.03913355235058], + [-46.288741148126206, -24.039114552917383], + [-46.28852914709237, -24.03907355340567], + [-46.28844714667793, -24.039052553592438], + [-46.28833514630429, -24.039091553875906], + [-46.28819414587075, -24.03915355423838], + [-46.28795014476956, -24.039137554813443], + [-46.28765414336382, -24.039093555500813], + [-46.2875551427647, -24.039033555711708], + [-46.287475142000474, -24.038886555840442], + [-46.28745214154261, -24.038760555842227], + [-46.28745714145611, -24.03872255581425], + [-46.28753914145808, -24.038598555566402], + [-46.28776314223938, -24.038532555004476], + [-46.28812814372752, -24.038500554120574], + [-46.2884061446514, -24.038402553416276], + [-46.28868414556674, -24.038301552710724], + [-46.28893814625588, -24.03815755204439], + [-46.28924814717589, -24.038009551242677], + [-46.28954414802678, -24.03785855047315], + [-46.28957814767322, -24.037682550317946], + [-46.289543147325475, -24.037613550372303], + [-46.28959814720497, -24.03748755018813], + [-46.28957014669989, -24.037352550197973], + [-46.289500146104054, -24.03724955032161], + [-46.28946314556562, -24.037116550353826], + [-46.28938814484294, -24.03697655047357], + [-46.28929814416917, -24.03687655064616], + [-46.28903914285819, -24.036809551235528], + [-46.28878614168415, -24.03678155182714], + [-46.28858914059866, -24.036699552262302], + [-46.28848714001814, -24.036650552484854], + [-46.28837313953911, -24.036655552758866], + [-46.28825913892078, -24.03661155301215], + [-46.28817913845814, -24.036570553185626], + [-46.28816413795808, -24.036417553156962], + [-46.28820813773029, -24.036270552990025], + [-46.28828013789384, -24.03621855279645], + [-46.28843913813796, -24.036062552351538], + [-46.288583138254594, -24.035884551933183], + [-46.288625137887315, -24.03569155175174], + [-46.28861213683558, -24.035341551635234], + [-46.288542135835954, -24.03509655169886], + [-46.288347134463415, -24.03491055208551], + [-46.288225133728126, -24.03483755234556], + [-46.28779313151255, -24.03471555332419], + [-46.287735131156445, -24.034678553446827], + [-46.28765113064518, -24.03462655362523], + [-46.28754412998616, -24.03455755385125], + [-46.28741712922062, -24.034481554122014], + [-46.28729512822371, -24.03431655434334], + [-46.287250127761766, -24.034222554410967], + [-46.28717312729781, -24.034176554575176], + [-46.28701312641804, -24.034110554928816], + [-46.28682412513706, -24.033947555310696], + [-46.28661512401682, -24.03387155577693], + [-46.286332122616415, -24.033809556425382], + [-46.286180121816706, -24.033759556766697], + [-46.28605312086924, -24.03361955701037], + [-46.28599612051185, -24.033580557129856], + [-46.285869119857274, -24.03354355741694], + [-46.28577411944637, -24.033543557643416], + [-46.2856851187997, -24.033451557816804], + [-46.28557311817315, -24.03340155806264], + [-46.28543411741546, -24.033346558370766], + [-46.285369116619684, -24.033165558449394], + [-46.28531111606172, -24.033057558542044], + [-46.28517911487947, -24.03284255876606], + [-46.285074114217764, -24.03276955898554], + [-46.28507911380719, -24.032617558909553], + [-46.28510111312331, -24.03234355874148], + [-46.285086112583635, -24.032176558706738], + [-46.28500611172308, -24.031995558821116], + [-46.28483410991582, -24.03162155907334], + [-46.28471610819439, -24.031195559174773], + [-46.28471310731724, -24.030891559053646], + [-46.28473810687109, -24.03069655891181], + [-46.28484210660456, -24.03044455855765], + [-46.284891106321844, -24.03027055836742], + [-46.285049105475906, -24.0297325577639], + [-46.285106105458105, -24.02963955758882], + [-46.28519810563996, -24.029563557337436], + [-46.28547410672565, -24.029525556663675], + [-46.28589410822378, -24.029413555615506], + [-46.28606710877586, -24.02934455517397], + [-46.286132108687376, -24.029214554964305], + [-46.286144107917785, -24.02892555481378], + [-46.285677103430885, -24.02805755556057], + [-46.28518209973258, -24.027509556509038], + [-46.2848280974144, -24.027232557235745], + [-46.284509095358445, -24.026994557895456], + [-46.28424609382317, -24.02685455846302], + [-46.2841000929303, -24.0267625587721], + [-46.28410909263679, -24.026645558701286], + [-46.28428009251811, -24.02634355816633], + [-46.28444609255392, -24.0261035576695], + [-46.28475309237257, -24.02557255671392], + [-46.28493409262101, -24.025384556203413], + [-46.285172092973845, -24.02514655553583], + [-46.285339093417534, -24.025048555096614], + [-46.2855420935622, -24.024790554504044], + [-46.285768093823314, -24.024538553859244], + [-46.28594709402619, -24.024337553347916], + [-46.28603809471803, -24.024442553175373], + [-46.28619309577193, -24.024577552862947], + [-46.28631709648426, -24.024639552593626], + [-46.28655109747048, -24.024630552032285], + [-46.2867220984855, -24.024727551665652], + [-46.28688209974287, -24.024926551368374], + [-46.28725010201912, -24.025167550593107], + [-46.28763110455897, -24.025481549817517], + [-46.28796410629155, -24.025584549067336], + [-46.28842410882347, -24.02577554805156], + [-46.28920311318382, -24.02612454634202], + [-46.289511114637776, -24.026167545626045], + [-46.289663115212626, -24.026138545251523], + [-46.28992611607679, -24.02604254458427], + [-46.290097116398314, -24.02589554411464], + [-46.290189116017245, -24.025621543779987], + [-46.29022311530291, -24.025318543571252], + [-46.29030211460972, -24.02495454322957], + [-46.29032211423006, -24.02479054311281], + [-46.29040111423339, -24.024671542874398], + [-46.29052711459619, -24.02460754254705], + [-46.29061511506761, -24.024639542350776], + [-46.29074911589423, -24.024726542068056], + [-46.29091011655051, -24.0247125416785], + [-46.29130511773235, -24.02452754065902], + [-46.29165811855062, -24.024278539712732], + [-46.291966119356246, -24.024093538900637], + [-46.29211211955826, -24.023942538489056], + [-46.29220411970864, -24.023855538233118], + [-46.29241012043145, -24.02379653771725], + [-46.29259612073517, -24.02362053719978], + [-46.292675120607676, -24.023455536942006], + [-46.292727120292284, -24.02326553673798], + [-46.29281912024662, -24.02310953645305], + [-46.292883120054206, -24.022944536230963], + [-46.292905119623455, -24.02275953610069], + [-46.29278011838096, -24.022512536294627], + [-46.2926661174646, -24.022363536503626], + [-46.29249911629932, -24.022207536835957], + [-46.29243411567152, -24.022085536939525], + [-46.292367115089185, -24.021982537055774], + [-46.29224011432699, -24.02190753732695], + [-46.29212811372343, -24.021865537576197], + [-46.29201311306997, -24.02181053782711], + [-46.29181711174242, -24.021641538223005], + [-46.29160811011425, -24.021386538613758], + [-46.291464108792596, -24.02114053885332], + [-46.291989107279235, -24.01980953704148], + [-46.295240113898124, -24.017194528192636], + [-46.297223121560684, -24.016875523332125], + [-46.29884012854491, -24.016874519477216], + [-46.29940212969696, -24.01642551794881], + [-46.299658130942404, -24.0164745173591], + [-46.29995413263635, -24.016620516714852], + [-46.30015613375079, -24.01670551626902], + [-46.30022513427068, -24.01678351613729], + [-46.30032013487156, -24.016850515938998], + [-46.30045913541242, -24.016829515598747], + [-46.30058313608468, -24.016877515323344], + [-46.30074813715577, -24.017003514982868], + [-46.30100413895268, -24.017246514474664], + [-46.301201140813184, -24.017601514154105], + [-46.30143614279247, -24.017940513736203], + [-46.30161214410728, -24.018135513398544], + [-46.30186414591839, -24.018389512904328], + [-46.30205114732059, -24.01859851254618], + [-46.302170147996826, -24.018655512286387], + [-46.302337148732654, -24.01866051189026], + [-46.3024691494082, -24.018697511591068], + [-46.30258815031194, -24.018834511364897], + [-46.30293215246373, -24.019068510642764], + [-46.303320154637774, -24.019243509790954], + [-46.303471155537686, -24.01933050946739], + [-46.30354615610337, -24.01941550932424], + [-46.303805157651894, -24.01956650876992], + [-46.304183159447234, -24.019623507892465], + [-46.304471160921985, -24.019704507239542], + [-46.30474816245157, -24.019821506628002], + [-46.30496416367201, -24.01992250615522], + [-46.30518016498935, -24.02005750569668], + [-46.30532516603955, -24.020206505413316], + [-46.30539516661516, -24.020302505286658], + [-46.3055541677202, -24.020449504969093], + [-46.30562416846639, -24.020605504867536], + [-46.30570116953293, -24.02086350479214], + [-46.305754169887045, -24.020907504684185], + [-46.305913170619625, -24.02092350431161], + [-46.30599017135623, -24.021065504187547], + [-46.306080172365235, -24.021283504064336], + [-46.306307174043006, -24.02152850362552], + [-46.306578176021794, -24.021812503098236], + [-46.30669517697114, -24.021968502884597], + [-46.30676517784543, -24.022169502801916], + [-46.30674817832108, -24.022362502923396], + [-46.3067091785167, -24.02249050307006], + [-46.30673417923641, -24.022705503100624], + [-46.30677717998838, -24.022904503081527], + [-46.30684418077289, -24.02307850299466], + [-46.30695618143326, -24.023140502753442], + [-46.307282183194644, -24.02326450202762], + [-46.30732718356549, -24.023326501946336], + [-46.30728218345072, -24.02335450206538], + [-46.307253183578624, -24.023443502171865], + [-46.3072901840373, -24.023548502127685], + [-46.308320192901306, -24.025099500320337], + [-46.30841219363757, -24.025218500150668], + [-46.30864919511128, -24.02537649965137], + [-46.308795196154826, -24.02552149936374], + [-46.30902219750857, -24.025652498876948], + [-46.30907919825569, -24.025828498814686], + [-46.309281199598175, -24.025993498401746], + [-46.30974720267626, -24.02636749744638], + [-46.3097892030513, -24.026435497374575], + [-46.30996620445656, -24.02666049704649], + [-46.31012320561034, -24.02682749674167], + [-46.31037220781349, -24.027223496313287], + [-46.31060920988798, -24.02759249590225], + [-46.31068421053089, -24.0277044957702], + [-46.31073421106014, -24.027814495696784], + [-46.31074921139244, -24.02790849570039], + [-46.31075221167297, -24.02800249573265], + [-46.31082421228314, -24.028107495604758], + [-46.31097821333571, -24.02824349529411], + [-46.31106121399332, -24.028348495139923], + [-46.31106821438791, -24.02847649517688], + [-46.31106421462405, -24.028565495223692], + [-46.311059214852996, -24.028653495272483], + [-46.31135265471424, -24.028861852659283], + [-46.31130221665177, -24.02891649480256], + [-46.31145021753615, -24.029002494485283], + [-46.31157221817159, -24.029040494210005], + [-46.31170121870345, -24.029031493898245], + [-46.31183821915591, -24.028982493550615], + [-46.312087219796275, -24.028829492892267], + [-46.31224121994077, -24.028646492447894], + [-46.3124772196452, -24.028184491691146], + [-46.31262721893526, -24.02770749113343], + [-46.31264121791392, -24.027327490940905], + [-46.31263021712049, -24.027065490857385], + [-46.31257421564014, -24.026630490808998], + [-46.31254521470065, -24.026344490758476], + [-46.31248621250715, -24.025663490614214], + [-46.31242321146925, -24.0253944906519], + [-46.31228920983428, -24.025023490816427], + [-46.312243208912555, -24.024769490819807], + [-46.31216020675221, -24.02413649075288], + [-46.31204920401845, -24.023344490686146], + [-46.312044202756006, -24.02290849051548], + [-46.31208320188859, -24.022544490269954], + [-46.31219220120398, -24.02213848983978], + [-46.312268200988825, -24.02194748957844], + [-46.3124212012627, -24.021811489156395], + [-46.31267120208938, -24.021722488522517], + [-46.312886202787645, -24.021641487975447], + [-46.31304920321571, -24.021544487545917], + [-46.313261203425746, -24.021296486936127], + [-46.31356920387113, -24.02098548607082], + [-46.31390320442587, -24.02067348514314], + [-46.314315205562366, -24.02044748406533], + [-46.31462420659816, -24.020342483283947], + [-46.314952207938106, -24.020315482489714], + [-46.31514320891679, -24.020369482056488], + [-46.31536821011058, -24.02044748155219], + [-46.31568021198762, -24.020633480885348], + [-46.31588021332399, -24.020799480477415], + [-46.31602821413972, -24.02086148015006], + [-46.316140214620646, -24.02086047988232], + [-46.31632921525188, -24.020795479404057], + [-46.31650221597069, -24.020785478986905], + [-46.31661521670356, -24.020871478753143], + [-46.31670221743798, -24.020997478598236], + [-46.31677521876948, -24.02135447857325], + [-46.316863219642045, -24.02152747843547], + [-46.31710122177166, -24.02191447802924], + [-46.317267223140625, -24.022143477728754], + [-46.31741722489022, -24.02253047753243], + [-46.317473225963425, -24.022822477520855], + [-46.31751022689188, -24.023092477545468], + [-46.31758122796442, -24.023361477488404], + [-46.3176602288665, -24.02355847738212], + [-46.31778322993598, -24.023747477167564], + [-46.31788923086362, -24.023912476983472], + [-46.31795023155702, -24.024063476900917], + [-46.31803923261625, -24.024300476787477], + [-46.31811923350288, -24.02449047667592], + [-46.31818123408388, -24.0246004765739], + [-46.31824123458792, -24.024686476466574], + [-46.31834623526651, -24.024765476248877], + [-46.318467235831854, -24.024780475966246], + [-46.318630236530254, -24.024778475576227], + [-46.3188892374412, -24.024705474927263], + [-46.31904423810496, -24.024703474556336], + [-46.31925123910729, -24.024741474078002], + [-46.31933023958235, -24.02478847390897], + [-46.319442240128815, -24.024810473650685], + [-46.31968324107588, -24.024777473061427], + [-46.31993324189942, -24.02468747242686], + [-46.32016624281186, -24.024654471856614], + [-46.32027824329281, -24.02465347158876], + [-46.32044124381175, -24.0245884711724], + [-46.320562244038186, -24.024484470839997], + [-46.32069724389506, -24.024229470411065], + [-46.320797243467, -24.02392747004616], + [-46.32095924350886, -24.023696469562804], + [-46.32107824359282, -24.023545469215595], + [-46.32129224405579, -24.023383468636894], + [-46.32137724410681, -24.02327246838753], + [-46.321393243745895, -24.023121468286295], + [-46.32150324376816, -24.022962467957182], + [-46.32164024399541, -24.022834467576565], + [-46.32175324438939, -24.02280146729295], + [-46.32181324467138, -24.02280946715298], + [-46.32189124516198, -24.022863466989286], + [-46.321970246021515, -24.023045466876678], + [-46.32203324674352, -24.02320346679215], + [-46.322093247204855, -24.023274466678536], + [-46.32220624780388, -24.023313466424995], + [-46.32232724829806, -24.023303466131818], + [-46.322456248604496, -24.02321546578702], + [-46.32255924882442, -24.023136465508077], + [-46.32271224909499, -24.022999465085533], + [-46.32276424929681, -24.02299146495796], + [-46.322850249822025, -24.023045464775166], + [-46.32292925045651, -24.02314846462939], + [-46.323061251428136, -24.023289464373054], + [-46.323216252368155, -24.02338446404258], + [-46.323468253670036, -24.023459463472047], + [-46.32363125439391, -24.023466463085605], + [-46.32385625533994, -24.023457462544506], + [-46.3241582563907, -24.02336846178609], + [-46.324397256895985, -24.02318346113802], + [-46.324637257359896, -24.022982460480897], + [-46.324374255383916, -24.02268746098596], + [-46.32483025791135, -24.02288345997861], + [-46.3248822575777, -24.02268745977266], + [-46.3248502570009, -24.02253345978478], + [-46.32476425615672, -24.022367459920957], + [-46.324739255752526, -24.022263459937264], + [-46.32480825589956, -24.02221045975041], + [-46.32498625647454, -24.022142459296894], + [-46.32510525672067, -24.022048458973387], + [-46.32520125665098, -24.021878458673243], + [-46.32514725595933, -24.021717458735026], + [-46.32498625444671, -24.021430458999777], + [-46.32481325290793, -24.021152459296946], + [-46.324729252135086, -24.02100845943746], + [-46.32470925074446, -24.02055045929414], + [-46.32470925080425, -24.020571459302836], + [-46.324657249825016, -24.02030645931644], + [-46.32447624798417, -24.019934459593387], + [-46.32418224583194, -24.01962446016618], + [-46.32402924459037, -24.019420460446394], + [-46.32375024188511, -24.018893460892542], + [-46.32370524076259, -24.018567460863927], + [-46.32366624009591, -24.01839246088398], + [-46.3235242391412, -24.018272461172963], + [-46.3234912388022, -24.018203461222924], + [-46.3235012384411, -24.01806146113974], + [-46.323541238010236, -24.01784946095579], + [-46.32349123718505, -24.017635460985765], + [-46.3234442366234, -24.01750946104544], + [-46.32338923511056, -24.01706146098969], + [-46.323354234651944, -24.01695346102818], + [-46.32330823420851, -24.016867461102102], + [-46.32334423395689, -24.016724460956414], + [-46.323374233716216, -24.01659446083051], + [-46.32338223305905, -24.016351460709902], + [-46.32343223285365, -24.01620346052875], + [-46.323516232444774, -24.01593246021511], + [-46.32356323226052, -24.015796460046133], + [-46.32354123144536, -24.015543459992987], + [-46.323425230210134, -24.015285460162143], + [-46.323236228710996, -24.015045460513193], + [-46.32317922778459, -24.014806460549494], + [-46.3232832257373, -24.013929459934992], + [-46.32338422595128, -24.013851459661282], + [-46.32352722645764, -24.01381245930366], + [-46.32370022738383, -24.013875458916974], + [-46.32377722770197, -24.013870458731112], + [-46.323804227590834, -24.013790458633213], + [-46.32386522738166, -24.013624458418292], + [-46.32391222754754, -24.013611458300677], + [-46.323984227889675, -24.01362245813341], + [-46.32406122826483, -24.01363745795586], + [-46.32413222844316, -24.013592457767565], + [-46.32416322833218, -24.01350645765765], + [-46.32410022792078, -24.01345745778763], + [-46.324074227572275, -24.01337445781502], + [-46.324036224610346, -24.012391457495255], + [-46.32397722384913, -24.01221345756189], + [-46.32373222198325, -24.01192945802807], + [-46.323538220496886, -24.011701458395898], + [-46.323428219794415, -24.011621458625104], + [-46.323381218925626, -24.011387458639568], + [-46.323085216543774, -24.01099945918399], + [-46.323061215996205, -24.010843459176186], + [-46.322740212331304, -24.01004245960771], + [-46.3227522121953, -24.009976459551474], + [-46.32282321233105, -24.00991645935697], + [-46.32296421297944, -24.009930459026325], + [-46.32311521379631, -24.009988458690145], + [-46.32356321631334, -24.010193457706517], + [-46.32365521678166, -24.01021845749742], + [-46.32377821717593, -24.010170457183808], + [-46.3238852173049, -24.010053456879568], + [-46.32396321719476, -24.00989645662781], + [-46.32398621662526, -24.00966145647479], + [-46.32381721517595, -24.009408456772466], + [-46.32379921485638, -24.009323456779917], + [-46.32371821366163, -24.009026456849245], + [-46.32331921072452, -24.008599457623163], + [-46.323212209926915, -24.008481457829237], + [-46.322914207354714, -24.008029458351604], + [-46.322850206970394, -24.007991458488444], + [-46.32279020638131, -24.007875458583246], + [-46.32253920462658, -24.007639459083556], + [-46.32202119943226, -24.006599459885106], + [-46.32201319853015, -24.00629445977674], + [-46.321976197957945, -24.006149459804426], + [-46.32187519704983, -24.005983459976086], + [-46.32153519419426, -24.005495460583308], + [-46.321565193956886, -24.00536646045782], + [-46.32156419378761, -24.00530846043606], + [-46.32147319325265, -24.005258460632295], + [-46.321453192893216, -24.00516246063985], + [-46.321476192844614, -24.00511046056323], + [-46.321586193290855, -24.00510046029668], + [-46.32174019299973, -24.00476445978884], + [-46.32174519276253, -24.004673459738893], + [-46.3216801924394, -24.00465845988762], + [-46.321617191942735, -24.00457946000494], + [-46.32147919118227, -24.00452146030992], + [-46.32115618972575, -24.004499461071294], + [-46.32104518913004, -24.004458461319025], + [-46.320894188054616, -24.00430946161692], + [-46.32055218430635, -24.00351046209883], + [-46.32049618283319, -24.003077462051387], + [-46.32048518252983, -24.002987462040004], + [-46.32060718232546, -24.002730461641494], + [-46.32076718196375, -24.00236046110519], + [-46.32074118101833, -24.00206746104472], + [-46.32081718087999, -24.001903460794917], + [-46.32088518076674, -24.001760460572893], + [-46.321079181251264, -24.001636460058354], + [-46.321156181299244, -24.00153645983276], + [-46.32113318091273, -24.001435459845503], + [-46.321051180237625, -24.001322459993833], + [-46.32106518012174, -24.00126045993454], + [-46.321172180276335, -24.001152459634124], + [-46.3213241808355, -24.00111845925735], + [-46.32154918210502, -24.001223458764525], + [-46.32193118417709, -24.001372457915554], + [-46.322180185123564, -24.00132745730278], + [-46.32241618536552, -24.001054456625774], + [-46.32237518472507, -24.00089145665549], + [-46.32244518452379, -24.000714456414567], + [-46.32236418389556, -24.000616456566696], + [-46.32224218332651, -24.000601456851548], + [-46.32218718258301, -24.00042345690838], + [-46.32205218120718, -24.00014445711373], + [-46.32193918009684, -23.99992545729183], + [-46.321760178312275, -23.99956945756994], + [-46.3215891767385, -23.99927545785493], + [-46.32138517530961, -23.99908245826082], + [-46.32110017336056, -23.99882945883476], + [-46.320763171101916, -23.998546459520213], + [-46.32043216874408, -23.998219460172916], + [-46.32023916748778, -23.998070460570794], + [-46.319959165981174, -23.997965461194735], + [-46.31966016470808, -23.997971461910247], + [-46.319367163452384, -23.9979744626102], + [-46.31918516262165, -23.997958463037527], + [-46.31882816141946, -23.998077463938586], + [-46.318681161169025, -23.998212464345578], + [-46.31839515994628, -23.99821646502931], + [-46.31824615942551, -23.998259465402608], + [-46.318267160061914, -23.998451465432744], + [-46.31824516014602, -23.998514465511654], + [-46.31805815932498, -23.998509465955486], + [-46.3179451585531, -23.998409466182995], + [-46.317786157358185, -23.998230466487247], + [-46.31727615420246, -23.997894467562755], + [-46.317110153159334, -23.997779467910323], + [-46.31698215234266, -23.997686468176614], + [-46.31678615151676, -23.997693468646915], + [-46.31658415051443, -23.997647469109285], + [-46.31653815060575, -23.997749469261578], + [-46.31638914996859, -23.99775146961773], + [-46.31625014947673, -23.997789469964975], + [-46.31617414946426, -23.997900470192697], + [-46.31604114958657, -23.998145470612364], + [-46.31603915017196, -23.99835447070462], + [-46.3161081509046, -23.998507470604203], + [-46.31612115152061, -23.998704470655635], + [-46.316060151481935, -23.99878347083412], + [-46.31575015036292, -23.998860471605443], + [-46.315451149442126, -23.998990472372768], + [-46.31517714862351, -23.999118473079662], + [-46.31464514650661, -23.999181474374446], + [-46.31428714507239, -23.999220475244215], + [-46.3139361433985, -23.999164476057548], + [-46.31388614270238, -23.998995476105986], + [-46.31374314116447, -23.99867147631118], + [-46.3136431402925, -23.998516476484586], + [-46.31341013843158, -23.998215476913987], + [-46.313121136451194, -23.997957477494733], + [-46.312799134473366, -23.997750478175558], + [-46.31241913195826, -23.997442478952166], + [-46.312023129493475, -23.997176479784667], + [-46.311736127649695, -23.996963480379385], + [-46.31136512552017, -23.9967774811856], + [-46.31103912404785, -23.99675448195295], + [-46.310774123043394, -23.99680348260504], + [-46.310538122246456, -23.996881483200156], + [-46.31029112104692, -23.996834483769092], + [-46.30999211951789, -23.996750484446398], + [-46.30965611763028, -23.99659648518257], + [-46.30936811601231, -23.996464485813505], + [-46.30912711499768, -23.996473486391512], + [-46.30891911367676, -23.996324486824673], + [-46.30877111242447, -23.99610848708669], + [-46.30858911091469, -23.99585348741341], + [-46.30831510912713, -23.995640487976875], + [-46.30803910744456, -23.99546748856198], + [-46.30779210584456, -23.995279489071486], + [-46.307541104366514, -23.995140489611224], + [-46.30742710377223, -23.995104489867774], + [-46.30734410310167, -23.994994490019288], + [-46.30721010203763, -23.994823490266732], + [-46.306731098223885, -23.994208491149717], + [-46.30642155615694, -23.993598918631196], + [-46.30736109908563, -23.993554489374375], + [-46.309905108274975, -23.99292448304903], + [-46.30991901994992, -23.99208466166354], + [-46.3089374423069, -23.991236889646306], + [-46.309264099275644, -23.99072948365523], + [-46.30962709946183, -23.990243482586582], + [-46.31054009901984, -23.98870047976429], + [-46.311105095900956, -23.986743477597503], + [-46.31164709458802, -23.985457475767117], + [-46.31204309510667, -23.985038474648167], + [-46.313462097107916, -23.983587470659668], + [-46.315118099534466, -23.981926466018873], + [-46.316591101971675, -23.98054746193222], + [-46.317461103625185, -23.979808459550252], + [-46.318991107621486, -23.97889245552193], + [-46.32090611144288, -23.977330450305857], + [-46.322586114849265, -23.975979445738233], + [-46.32288311578032, -23.975856444979208], + [-46.32352411774832, -23.97557644333482], + [-46.3259341253104, -23.974581437176532], + [-46.32782313147488, -23.973885432384407], + [-46.33016313901106, -23.97298842643319], + [-46.33527515707949, -23.971595413667174], + [-46.33981017398095, -23.97066840246862], + [-46.342731185973484, -23.97046139541675], + [-46.346184200349356, -23.97028738710844], + [-46.34749220629453, -23.97039738403388], + [-46.35038522056252, -23.971034377396023], + [-46.35034122388441, -23.97226937801341], + [-46.350359224359956, -23.972409378028583], + [-46.350413225047454, -23.97256937796613], + [-46.35053522587986, -23.97267737771977], + [-46.35073122713897, -23.972823377312647], + [-46.35095722813209, -23.97283037677617], + [-46.3512412288943, -23.972668376031212], + [-46.351327228883584, -23.972534375770408], + [-46.35136222863333, -23.972393375628446], + [-46.351408225518895, -23.971228375035363], + [-46.35186922707442, -23.97107737387254], + [-46.35232822924694, -23.971146372805915], + [-46.35282823190014, -23.97132237168555], + [-46.3529872326018, -23.97132837130864], + [-46.35336223422767, -23.971332370415304], + [-46.35363423515991, -23.971248369731285], + [-46.35422523676021, -23.97091636818309], + [-46.35490723904801, -23.970688366460884], + [-46.35555624150069, -23.970568364862118], + [-46.35584124270776, -23.970561364178902], + [-46.35558858336446, -23.971526359181826], + [-46.356683248081694, -23.971176362423822], + [-46.35781825189822, -23.97080035955863], + [-46.358408254236075, -23.970729358120796], + [-46.358924256505595, -23.97074635689594], + [-46.36229227229443, -23.971200349042068], + [-46.36410828099558, -23.971511344833793], + [-46.3650272854091, -23.971672342705435], + [-46.36578128903266, -23.97180534095944], + [-46.36648629261038, -23.97199633935437], + [-46.367612298811295, -23.97247233686116], + [-46.367950300949076, -23.97271233615274], + [-46.368248303048496, -23.972999335559333], + [-46.36874230676298, -23.97355733460941], + [-46.36939131161725, -23.9742813333576], + [-46.370205317443826, -23.975097331749247], + [-46.37060732041539, -23.97553333096839], + [-46.370896322635915, -23.975876330419254], + [-46.371021324051014, -23.97618433024754], + [-46.37103732550669, -23.976671330410152], + [-46.3709633273212, -23.97742033089589], + [-46.37085432773486, -23.97773033128431], + [-46.37068332740037, -23.9778713317511], + [-46.370142325678366, -23.97808433313199], + [-46.37009132551868, -23.97810533326259], + [-46.36976832419103, -23.97812733404358], + [-46.36955632332402, -23.978143334556826], + [-46.36946332306045, -23.97819133479888], + [-46.36890332148432, -23.97848433625807], + [-46.36865832106473, -23.9787073369356], + [-46.36850632080628, -23.978846337356252], + [-46.368399320618984, -23.97894233765162], + [-46.3682863204601, -23.97905733796915], + [-46.3682023203747, -23.979154338209863], + [-46.368171320457705, -23.979230338315393], + [-46.36816732057719, -23.979278338344727], + [-46.3682223210759, -23.97937033825124], + [-46.3682743215988, -23.97947533817027], + [-46.36828232194652, -23.97958533819651], + [-46.36824832192542, -23.979629338295943], + [-46.36824332209757, -23.979697338335985], + [-46.368175321967136, -23.979754338522014], + [-46.36814932220263, -23.979876338634487], + [-46.36818832269804, -23.979991338588757], + [-46.36813032309198, -23.980217338820683], + [-46.36801932302703, -23.980362339145827], + [-46.3679423232794, -23.98056733941446], + [-46.36796032422835, -23.980873339497762], + [-46.36798532499105, -23.98110333953294], + [-46.36795232506545, -23.98117933964318], + [-46.367874324883466, -23.9812333398519], + [-46.36778432447322, -23.98122534006367], + [-46.36773032457671, -23.981343340241406], + [-46.36768032482285, -23.981505340427766], + [-46.36744632521952, -23.981998341190568], + [-46.36742632640658, -23.982445341422814], + [-46.367554176877675, -23.982768606250705], + [-46.367968358150144, -23.982940338331623], + [-46.368513864469996, -23.982930235023584], + [-46.36875631225487, -23.982839317406512], + [-46.36893814680745, -23.982758500938573], + [-46.36917049128985, -23.982576666308134], + [-46.36956446869824, -23.982475645324694], + [-46.369776609352506, -23.9823847277801], + [-46.36990793425607, -23.982152383370302], + [-46.370086336599556, -23.98200333488239], + [-46.370382337668694, -23.98193133414513], + [-46.37061733825875, -23.98178333352233], + [-46.37076533840305, -23.981610333097194], + [-46.370825338234134, -23.9814603328919], + [-46.37082533790656, -23.98134533284447], + [-46.37086733786803, -23.98126833271235], + [-46.37098933879768, -23.981410332479197], + [-46.37109433944905, -23.981480332257174], + [-46.37129534001808, -23.981376331733717], + [-46.37138634060065, -23.981443331543836], + [-46.37150134119541, -23.981478331283327], + [-46.37158334147713, -23.981453331076967], + [-46.37185934271368, -23.981470330424212], + [-46.372210344087875, -23.981422329565277], + [-46.37230134433144, -23.98137032932632], + [-46.372447344769114, -23.981303328949622], + [-46.37248934464498, -23.981196328805147], + [-46.37247234439522, -23.981134328820236], + [-46.37261434498084, -23.98112532847702], + [-46.37274334536235, -23.981064328143507], + [-46.37285434544125, -23.980924327820386], + [-46.372968345538844, -23.980786327491007], + [-46.37298734527874, -23.98066632739606], + [-46.373137344707914, -23.98023932686147], + [-46.37316934407657, -23.97996932667375], + [-46.37325134411041, -23.979857326431528], + [-46.373205343604766, -23.97974932649703], + [-46.37324534338668, -23.979612326344984], + [-46.37326934278346, -23.97936432618538], + [-46.3732033419639, -23.979176326265673], + [-46.37305534091953, -23.979033326560526], + [-46.37281933947652, -23.978883327062874], + [-46.37271633861733, -23.97873732724891], + [-46.372607337575594, -23.978536327426593], + [-46.37254933687022, -23.978376327499245], + [-46.37254133654816, -23.978275327476744], + [-46.37253333622609, -23.978174327454248], + [-46.372569336047746, -23.97805732731996], + [-46.372579335666416, -23.97790832723463], + [-46.37257733519063, -23.977744327171838], + [-46.37252733471915, -23.977654327254267], + [-46.37244533414972, -23.977578327418872], + [-46.37232433315048, -23.97741032763886], + [-46.3722883326766, -23.977298327678724], + [-46.372226331991016, -23.9771513277663], + [-46.37219133146162, -23.977018327795133], + [-46.37225033151618, -23.97694832762525], + [-46.37232933171091, -23.97689732741545], + [-46.37244233221434, -23.9769033271478], + [-46.37258233278273, -23.976891326808293], + [-46.37275033324371, -23.976799326368738], + [-46.37294833389654, -23.9767293258666], + [-46.37303633410152, -23.976668325631138], + [-46.37314033434108, -23.976595325352456], + [-46.37317433430517, -23.976531325244842], + [-46.37316933408434, -23.976461325227934], + [-46.373102333664946, -23.97641532536913], + [-46.373007333281755, -23.976424325599837], + [-46.372840332508886, -23.976405325991212], + [-46.37266833165197, -23.976364326385397], + [-46.37252333079144, -23.976281326697787], + [-46.37241533004759, -23.976183326915503], + [-46.37224932905126, -23.9760843272714], + [-46.3722149548273, -23.976057626342584], + [-46.37213732832146, -23.975997327503233], + [-46.37211032790624, -23.97589232752448], + [-46.37212332769164, -23.975797327454192], + [-46.37213632747707, -23.975702327384], + [-46.37220632720024, -23.975499327133], + [-46.37232532717129, -23.975309326770244], + [-46.37245732739192, -23.97518732640451], + [-46.37253932731485, -23.97503632614623], + [-46.3727303277552, -23.974902325634503], + [-46.37284548783835, -23.97475752229957], + [-46.37357332836434, -23.973842323182843], + [-46.373608746350435, -23.973783954074104], + [-46.37443715102746, -23.97241873253163], + [-46.374502328002016, -23.972311320331595], + [-46.374623327762315, -23.972044319932312], + [-46.374954327113514, -23.97131631884136], + [-46.37555632807196, -23.97074331716654], + [-46.37616632904483, -23.970163315469765], + [-46.37804133654433, -23.969964310906377], + [-46.379094340757945, -23.969853308343808], + [-46.38488937491515, -23.97309329582033], + [-46.38529237728982, -23.97331829494899], + [-46.38527537755013, -23.973435295037717], + [-46.38527637787925, -23.973549295082076], + [-46.38531837842187, -23.973676295033822], + [-46.38537037903028, -23.97381129496497], + [-46.3854263796045, -23.973928294879094], + [-46.385481380151745, -23.974037294792282], + [-46.38563338134701, -23.974227294506758], + [-46.38578438262642, -23.974448294236343], + [-46.3860003840942, -23.974637293797308], + [-46.38624238564245, -23.974815293291545], + [-46.386490387113945, -23.97495729275664], + [-46.3866983881655, -23.975012292281697], + [-46.38703538992007, -23.975119291519444], + [-46.387353391473134, -23.97518429078546], + [-46.387580392586415, -23.975232290262106], + [-46.38792339398764, -23.975206289430865], + [-46.38819039505921, -23.975179288781007], + [-46.38841439602838, -23.97518128824593], + [-46.388614396911485, -23.975189287770768], + [-46.38886339819058, -23.97526228720501], + [-46.38935240447603, -23.97672928663689], + [-46.38923240402828, -23.976753286933885], + [-46.388730402079936, -23.976827288165342], + [-46.38818940009772, -23.976948289509387], + [-46.38781539873687, -23.977035290439904], + [-46.38764239848583, -23.97720829092483], + [-46.387551398775734, -23.977447291240615], + [-46.387579399360845, -23.977610291240616], + [-46.38733939884436, -23.977791291889066], + [-46.38702039781706, -23.97791229270192], + [-46.386701396655646, -23.977986293495505], + [-46.386511396223014, -23.978121294005483], + [-46.38636239610382, -23.97830429443713], + [-46.38591739483354, -23.97853029559453], + [-46.385386393298695, -23.97879329697289], + [-46.3850733921887, -23.978876297755807], + [-46.38483539103646, -23.978831298306677], + [-46.38447538944763, -23.978817299162152], + [-46.38412238794881, -23.978824300009524], + [-46.38396638694123, -23.978706300334146], + [-46.383884386052614, -23.978518300453107], + [-46.383710384731046, -23.978317300786706], + [-46.3834853829678, -23.978038301210294], + [-46.38319338098754, -23.977784301804295], + [-46.38290937960598, -23.977728302460633], + [-46.38269937866829, -23.977716302957983], + [-46.38247037741792, -23.97762330346741], + [-46.3822663764205, -23.97758130393808], + [-46.382027375511896, -23.97762330452696], + [-46.38183537468581, -23.97762330498618], + [-46.38170337414921, -23.977634305306417], + [-46.38160937395275, -23.97770730556126], + [-46.38136837344874, -23.97789430621455], + [-46.381245373535, -23.978110306597568], + [-46.381109373853235, -23.9784273070531], + [-46.38105337474936, -23.97882630735118], + [-46.38100637547052, -23.979150307596807], + [-46.38097537624913, -23.979470307802544], + [-46.38077537584733, -23.9796313083471], + [-46.380713375765815, -23.97969630852209], + [-46.38053137493139, -23.97967830895001], + [-46.38021137343748, -23.979637309698468], + [-46.380075372917844, -23.979660310033236], + [-46.379993372815704, -23.979748310265542], + [-46.379831372446326, -23.9798633107003], + [-46.379634371510186, -23.979832311158635], + [-46.3795303711567, -23.979865311420987], + [-46.37952737136608, -23.979943311460218], + [-46.37957737168666, -23.979980311355916], + [-46.37958037185354, -23.980034311370872], + [-46.37943437129355, -23.980058311729962], + [-46.3793003707853, -23.98008231206025], + [-46.37917537031294, -23.980105312368703], + [-46.37910637022404, -23.98017831256374], + [-46.3790123700104, -23.98024531281618], + [-46.37898837006962, -23.980302312897024], + [-46.379032370449906, -23.98036931281931], + [-46.37916137118175, -23.980431312536368], + [-46.37915237151919, -23.9805633126122], + [-46.37916637200408, -23.98071231264], + [-46.37911537208672, -23.980818312805557], + [-46.3790813721541, -23.980893312917722], + [-46.37910737253959, -23.980989312895083], + [-46.37910437266351, -23.981037312921945], + [-46.379230373405214, -23.981107312649428], + [-46.37933237399816, -23.98116131242764], + [-46.379448374725385, -23.981241312183137], + [-46.37954437559735, -23.981402312019775], + [-46.37955137590676, -23.98150031204328], + [-46.37966437674651, -23.981624311824056], + [-46.379734377406905, -23.981750311708478], + [-46.37976637778118, -23.981833311666016], + [-46.3798933786812, -23.981957311413304], + [-46.379991379519126, -23.982103311238944], + [-46.38002137991902, -23.982198311206204], + [-46.37997138061021, -23.982516311456692], + [-46.37991738186855, -23.983039311800887], + [-46.37988838260744, -23.98334231199492], + [-46.37981538281784, -23.98352631224516], + [-46.37973438302505, -23.98372131251918], + [-46.37964138365095, -23.984081312889646], + [-46.37947738405684, -23.984471313442405], + [-46.37926338404508, -23.98479031408555], + [-46.379003383727095, -23.98507131482308], + [-46.37879138327348, -23.985232315396434], + [-46.37867638311484, -23.985350315720062], + [-46.37865938323561, -23.985418315788753], + [-46.377632379986395, -23.985829318414503], + [-46.37662637573278, -23.985856320831942], + [-46.37576837189668, -23.985806322863557], + [-46.37533537024932, -23.985882323930444], + [-46.37494837013382, -23.98642632508003], + [-46.374993373539915, -23.987553325436494], + [-46.37544937864738, -23.98865632479992], + [-46.37591938229877, -23.989227323910804], + [-46.37627438492197, -23.989611323219624], + [-46.37646638763325, -23.99027232303233], + [-46.37705939249326, -23.991081321946517], + [-46.37740039476275, -23.99136232124624], + [-46.378150399688835, -23.991957319696507], + [-46.3789044052368, -23.992764318224243], + [-46.37927240904033, -23.993542317663483], + [-46.37935741093808, -23.99407931768081], + [-46.37979841369271, -23.99437931674874], + [-46.380105415613656, -23.994589316100285], + [-46.38617544437599, -23.995510301947345], + [-46.38660144639271, -23.99557430095351], + [-46.3869714478914, -23.995541300053937], + [-46.38718244883968, -23.9955552995545], + [-46.387414449935505, -23.995589299012863], + [-46.38777745171525, -23.995665298174746], + [-46.388637456750416, -23.996132296306726], + [-46.389158460914466, -23.996805295334884], + [-46.389892465153416, -23.997183293731823], + [-46.39071946980413, -23.99756529190742], + [-46.39152647505421, -23.998187290229165], + [-46.39220123483237, -23.998843338881333], + [-46.3925486101371, -23.999126791165192], + [-46.39253148262459, -23.999323288286714], + [-46.39254548375856, -23.999699288407164], + [-46.39263148507121, -24.000029288336215], + [-46.39260348578468, -24.00032128852288], + [-46.39246348596445, -24.000595288970647], + [-46.39243748714054, -24.001046289217587], + [-46.39243048802153, -24.001365289365005], + [-46.39235248846537, -24.00163828966374], + [-46.39223148853853, -24.00184629003883], + [-46.39196848805737, -24.002074290762344], + [-46.3916744874713, -24.002312291564344], + [-46.391563487424705, -24.00246329189213], + [-46.391473487711174, -24.002699292204454], + [-46.39136648840726, -24.003104292626755], + [-46.39127648871953, -24.003349292942787], + [-46.391063488345004, -24.00353929353101], + [-46.39079048776927, -24.003749294271156], + [-46.39045448673374, -24.00389329513526], + [-46.39018048620516, -24.004121295885156], + [-46.39006048627969, -24.004328296257594], + [-46.390067486883865, -24.00452929632313], + [-46.39000648702395, -24.004670296527088], + [-46.389926487113556, -24.004822296781033], + [-46.389919487780396, -24.005066296897834], + [-46.38997348868128, -24.005300296864313], + [-46.39009648961091, -24.005440296627004], + [-46.39045649163542, -24.005606295832315], + [-46.39081549354699, -24.005734295024485], + [-46.39132049673013, -24.00608729395885], + [-46.39238250350323, -24.006857291729006], + [-46.392732505913415, -24.007173291019548], + [-46.3928995074897, -24.007473290742052], + [-46.39305750932165, -24.00787629052832], + [-46.39315451223676, -24.008750290653538], + [-46.39298251448236, -24.00979529149364], + [-46.39284751613283, -24.01057629213692], + [-46.392669517115266, -24.011188292814186], + [-46.39260951726267, -24.011330293016183], + [-46.392438517203466, -24.011567293523125], + [-46.39227751696728, -24.01172729397462], + [-46.392135516735756, -24.01186029436948], + [-46.39209551691507, -24.011983294515662], + [-46.3920575175059, -24.012247294714957], + [-46.39195851770823, -24.012467295042352], + [-46.39172551749056, -24.012742295713448], + [-46.39141151668109, -24.01293229654404], + [-46.39111551560329, -24.0130012972819], + [-46.39066551357054, -24.012968298347182], + [-46.38994851028476, -24.012899300037667], + [-46.38965350907686, -24.012921300753874], + [-46.38939750813978, -24.012979301391265], + [-46.38914350737424, -24.013094302047236], + [-46.38901250732431, -24.01327430243498], + [-46.388770507121905, -24.013568303135525], + [-46.38854750667565, -24.013748303743775], + [-46.38834450620975, -24.013891304289], + [-46.38812250587635, -24.01410930491048], + [-46.387949505619666, -24.014280305395186], + [-46.38780750522793, -24.014357305767177], + [-46.38761350455504, -24.014414306255567], + [-46.38746150414595, -24.014500306655158], + [-46.38738150439565, -24.014708306932143], + [-46.38726050436016, -24.01487830729191], + [-46.38703850413527, -24.01513430792893], + [-46.386796503958436, -24.015437308633253], + [-46.38635550306999, -24.015791309835414], + [-46.385930502081784, -24.01608631097515], + [-46.38568550124901, -24.016164311594327], + [-46.3853584999286, -24.01619531239069], + [-46.38522549954698, -24.016262312737002], + [-46.385114499474426, -24.016404313061308], + [-46.385046499990096, -24.016687313340352], + [-46.3849055000284, -24.016913313771035], + [-46.38455249969884, -24.01733031478824], + [-46.38436049973458, -24.017632315372254], + [-46.38431249998491, -24.01779231555296], + [-46.38435450067461, -24.017970315525293], + [-46.38467550309816, -24.018334314905214], + [-46.38521150671127, -24.018790313807518], + [-46.3856435090959, -24.01897331284698], + [-46.385827509886, -24.018972312405484], + [-46.38610251052802, -24.01878231166832], + [-46.3864455110028, -24.01843131070216], + [-46.38656751117414, -24.01830731035885], + [-46.386648511468834, -24.018288310156876], + [-46.38694451265578, -24.0182573094346], + [-46.38711851340262, -24.01825630901705], + [-46.38721051368755, -24.01821730878049], + [-46.387270513623186, -24.018104308590317], + [-46.38730751292222, -24.01780330837828], + [-46.38739851293712, -24.017671308106024], + [-46.387520513297, -24.017613307789773], + [-46.38779751456193, -24.017638307136007], + [-46.388011515478325, -24.01763630662206], + [-46.38825551633818, -24.017569306009605], + [-46.3884395168309, -24.017464305525568], + [-46.38886851850493, -24.017403304471966], + [-46.38908251926121, -24.017345303935148], + [-46.389466519912354, -24.016994302870714], + [-46.389649520429295, -24.016899302393103], + [-46.39019152266724, -24.016865301079633], + [-46.39049752381686, -24.016806300321853], + [-46.390794525196526, -24.016841299624062], + [-46.39094752603861, -24.016905299283394], + [-46.39106252696003, -24.017054299068732], + [-46.3912815291071, -24.01747529871592], + [-46.391416530466365, -24.017747298503604], + [-46.39180653354472, -24.018236297768553], + [-46.39191053471328, -24.018488297622305], + [-46.391934535866056, -24.018855297715035], + [-46.391977536586005, -24.01904229768849], + [-46.39207153744561, -24.019201297528063], + [-46.39213453806585, -24.019323297426983], + [-46.392166538604116, -24.01946329740758], + [-46.392126538700545, -24.019557297541937], + [-46.392026538730036, -24.019718297847646], + [-46.39188553858287, -24.019879298251713], + [-46.39183553877064, -24.02002029842928], + [-46.39183853956418, -24.020293298533876], + [-46.39186054016804, -24.020471298553936], + [-46.39199654139739, -24.02069629831993], + [-46.39226454324417, -24.020938297776148], + [-46.39234854419237, -24.021143297658575], + [-46.39239154499824, -24.02136029764425], + [-46.39237254537396, -24.021520297755313], + [-46.392241545295654, -24.021690298139042], + [-46.39193654423023, -24.021777298906194], + [-46.391763543704954, -24.021854299352707], + [-46.39152954315992, -24.022016299980262], + [-46.39142854321084, -24.022186300292123], + [-46.39142254409723, -24.0225053004371], + [-46.39137654532896, -24.023005300752065], + [-46.39128654540159, -24.023166301033864], + [-46.39114454527878, -24.023337301444485], + [-46.39106454520567, -24.023432301675207], + [-46.391045545549964, -24.023581301781768], + [-46.391087546082744, -24.023704301731406], + [-46.3913135473455, -24.023805301230606], + [-46.391693549349256, -24.023933300371542], + [-46.39176554979389, -24.023980300218067], + [-46.391848550497706, -24.02410130006856], + [-46.39189155124645, -24.02429830004598], + [-46.391995552229524, -24.024485299873053], + [-46.39209955312961, -24.024643299688275], + [-46.39223355411049, -24.024784299424553], + [-46.39239855516476, -24.024904299077818], + [-46.39254355616143, -24.025034298783183], + [-46.39263755705, -24.025203298626792], + [-46.39276455858701, -24.025549298463698], + [-46.392889559955336, -24.02583929828247], + [-46.39305556117707, -24.02601629795665], + [-46.39337556332857, -24.0262862972993], + [-46.39360356524672, -24.026613296886087], + [-46.39380056692253, -24.026902296531574], + [-46.39418357011822, -24.027442295833453], + [-46.39445257186116, -24.027646295271396], + [-46.39479257401604, -24.02788729455412], + [-46.39510057568391, -24.028006293863676], + [-46.39534757712041, -24.028136293324113], + [-46.39553357848007, -24.028331292957432], + [-46.39566857973147, -24.02856529272911], + [-46.39600958191936, -24.02881629201334], + [-46.39667958621204, -24.029307290606038], + [-46.39689758790151, -24.029569290189862], + [-46.39700158896211, -24.02978329002772], + [-46.39702559022192, -24.03018729013513], + [-46.39706059140326, -24.030547290198225], + [-46.39717559245984, -24.030743290002242], + [-46.39743459424305, -24.030976289475735], + [-46.39773159597255, -24.031133288826975], + [-46.397997597167596, -24.031150288195377], + [-46.39823459852966, -24.03126928767505], + [-46.39845260027075, -24.03154928726607], + [-46.39864060218035, -24.03193328697154], + [-46.39874460302937, -24.03207328677905], + [-46.3989086039738, -24.032156286419255], + [-46.399176605741495, -24.03237028586325], + [-46.39946660800776, -24.032725285311923], + [-46.39980461111659, -24.033302284735885], + [-46.400044613141674, -24.033648284300895], + [-46.40031161482222, -24.033833283735337], + [-46.40057761609753, -24.03387828311496], + [-46.40097561753229, -24.033780282119263], + [-46.4016986196889, -24.03344528024644], + [-46.40184061991992, -24.033312279851206], + [-46.401939619722405, -24.03309427952454], + [-46.40212161977648, -24.0328392789835], + [-46.402607620539264, -24.032374277626776], + [-46.402666620226505, -24.032176277404304], + [-46.40269461967422, -24.031941277241213], + [-46.402659618340806, -24.031528277156827], + [-46.40253361693877, -24.031228277336975], + [-46.402232614464914, -24.03081727789207], + [-46.40190861135648, -24.03021927842603], + [-46.40165760893502, -24.0297512788378], + [-46.40142060722095, -24.02950927930802], + [-46.40092460376962, -24.029050280311427], + [-46.40059460146877, -24.02874328097842], + [-46.40052160086233, -24.028641281111923], + [-46.400485599387515, -24.02818028101023], + [-46.4004215956711, -24.02697828067315], + [-46.40037759480891, -24.026743280682908], + [-46.40026459394999, -24.026613280901067], + [-46.400119592870155, -24.026454281184186], + [-46.400087592383024, -24.026332281211214], + [-46.40006459166864, -24.026117281178625], + [-46.40015459151261, -24.025927280885035], + [-46.4004165916655, -24.02558628011699], + [-46.40045659154308, -24.02548327997887], + [-46.4004545910222, -24.025304279910625], + [-46.40035958980864, -24.025023280023937], + [-46.40008758708278, -24.024480280454974], + [-46.40008358593521, -24.02408528030339], + [-46.40017958451739, -24.023445279811675], + [-46.400378584241466, -24.02304927917243], + [-46.40040658336355, -24.022700278962724], + [-46.4003415822794, -24.022419279004016], + [-46.400236581131765, -24.02217627915675], + [-46.40023458069398, -24.022026279100228], + [-46.40031558052783, -24.02184627883237], + [-46.40043558042395, -24.021629278455887], + [-46.400462579518724, -24.021272278245277], + [-46.400397578323165, -24.020952278270602], + [-46.40034257695897, -24.02055827824168], + [-46.40040657561824, -24.019993277857495], + [-46.40039357464673, -24.019673277758017], + [-46.40029757321473, -24.019317277842926], + [-46.400181571668, -24.018951277971805], + [-46.40013857102794, -24.018792278010128], + [-46.40018757069841, -24.018603277815302], + [-46.40043157126012, -24.01843227716009], + [-46.4009705729209, -24.018201275772466], + [-46.40137657408599, -24.01799727471504], + [-46.40269857763117, -24.017246271236417], + [-46.40460958271675, -24.016147266202296], + [-46.405345585105, -24.015874264324808], + [-46.40782359361767, -24.015120258070375], + [-46.408740597022216, -24.014930255792045], + [-46.41053760401488, -24.014670251372866], + [-46.41170060845215, -24.014471248500026], + [-46.417758633782064, -24.014210233848495], + [-46.41825263599698, -24.01424123267472], + [-46.419145640166924, -24.014355230576417], + [-46.42145465117529, -24.014729225182247], + [-46.42328866001607, -24.015060220910872], + [-46.42481666751688, -24.015383217370815], + [-46.428374684646585, -24.016018209078414], + [-46.4308136968003, -24.016597203450658], + [-46.43399771305339, -24.017488196156716], + [-46.43621272434325, -24.01810219107894], + [-46.43749573101545, -24.01850418815597], + [-46.43831173558117, -24.018872186342094], + [-46.44046574662281, -24.019491181410867], + [-46.443010759813816, -24.020273175603702], + [-46.4476547837176, -24.02164216497984], + [-46.44985179515904, -24.0223361599709], + [-46.45124980231434, -24.022734156765452], + [-46.453262812860864, -24.023392152183266], + [-46.45399181670528, -24.023639150527146], + [-46.45514282294747, -24.024089147936163], + [-46.45636482938587, -24.024501145158556], + [-46.45891584321121, -24.025495139412808], + [-46.45966584714603, -24.025742137705105], + [-46.46048585110593, -24.02589313579006], + [-46.461161854484104, -24.02605713422709], + [-46.46185985806012, -24.02625713262547], + [-46.46271286275672, -24.026615130713623], + [-46.46459687346416, -24.02752212653673], + [-46.464921875232335, -24.027651125805022], + [-46.46707388702052, -24.028533120971044], + [-46.468510894645135, -24.029036117708127], + [-46.4699799023269, -24.02951111435627], + [-46.472192914374865, -24.030392109372027], + [-46.473712922594984, -24.030978105940264], + [-46.478720949487, -24.032842094602984], + [-46.47997795620279, -24.033298091751615], + [-46.48109296207792, -24.033674089210766], + [-46.48210996764123, -24.03408808692123], + [-46.48406397799509, -24.034767082475177], + [-46.485297984836585, -24.03530107970886], + [-46.48642899126135, -24.035844077194326], + [-46.48736499647671, -24.036258075099095], + [-46.48854600262987, -24.036632072395996], + [-46.48940300726378, -24.03696207045765], + [-46.49051401360287, -24.037505067990246], + [-46.491593019700844, -24.03801206558545], + [-46.49323802863487, -24.038659061868778], + [-46.4945340360113, -24.03928605898664], + [-46.49587904388951, -24.040014056025633], + [-46.49655704754407, -24.040271054489292], + [-46.4973590518093, -24.040555052663787], + [-46.49790205445134, -24.040662051394023], + [-46.49840205710449, -24.04083705025503], + [-46.49921906137944, -24.041102048385422], + [-46.50048106774259, -24.041428045464173], + [-46.50110607065336, -24.041506043984366], + [-46.50169207391247, -24.041763042669487], + [-46.50293608084975, -24.042315039880613], + [-46.50431408835724, -24.042865036766567], + [-46.505223093465816, -24.04328203473354], + [-46.505756096119505, -24.043408033494433], + [-46.50639309951719, -24.043637032044476], + [-46.50735910496885, -24.044088029886534], + [-46.50856311170857, -24.04463102718902], + [-46.509818118774305, -24.045211024382404], + [-46.510573123077215, -24.04557802270087], + [-46.51112512617029, -24.04582802146422], + [-46.51304013673285, -24.046637017150072], + [-46.51473814650183, -24.047494013379158], + [-46.516168154432435, -24.04811301016224], + [-46.517690162911585, -24.048785006743028], + [-46.51884116925984, -24.049271004148075], + [-46.5193281719642, -24.04948300305263], + [-46.51971817381881, -24.049545002132792], + [-46.520272176562656, -24.04967100084104], + [-46.52115518117055, -24.049952998814128], + [-46.52190618532676, -24.05027499712235], + [-46.52263718969462, -24.050699995519384], + [-46.523306193475584, -24.051013994022707], + [-46.52408819775938, -24.051333992254644], + [-46.52452020012069, -24.05150899127713], + [-46.525977208523344, -24.052250988039646], + [-46.527273215763515, -24.052829985127616], + [-46.52916622636887, -24.053685980877315], + [-46.53094523607721, -24.054400976847088], + [-46.53220024306063, -24.054951974021762], + [-46.53292724711726, -24.055274972386385], + [-46.53322224876308, -24.055405971722756], + [-46.53408525350499, -24.055763969771192], + [-46.53500325891686, -24.056271967744983], + [-46.536833269116485, -24.057080963625225], + [-46.53771327405446, -24.057481461648326], + [-46.538593278992465, -24.05788195967127], + [-46.53941028368455, -24.058290957850073], + [-46.540902292007694, -24.05895295449061], + [-46.54274330209027, -24.059704950319084], + [-46.54410230990034, -24.060386947288713], + [-46.5452963166836, -24.060958944615333], + [-46.54663432424163, -24.06158494161311], + [-46.54788033137873, -24.06220193883031], + [-46.54818550505908, -24.062329698139543], + [-46.54888833692919, -24.0626239365486], + [-46.55100234889718, -24.063621931806516], + [-46.552083355062535, -24.06414792938728], + [-46.553946365512836, -24.064993925193683], + [-46.555685375164416, -24.06574792126442], + [-46.556426379386366, -24.066106919604664], + [-46.55768738668718, -24.06675791679523], + [-46.55873939291405, -24.067347914469458], + [-46.559675398298026, -24.06781891237884], + [-46.560241401473085, -24.068075911103747], + [-46.561117406463346, -24.068499909140268], + [-46.56186941072996, -24.0688579074522], + [-46.5625734146745, -24.06917590586512], + [-46.56434442459778, -24.0699759018721], + [-46.56575543276972, -24.070704898725698], + [-46.56683543860141, -24.071116896260385], + [-46.568118445818, -24.071705893369895], + [-46.56962145440845, -24.0724428900015], + [-46.57044745895839, -24.072788888127118], + [-46.571273463508284, -24.07313488625268], + [-46.574372480976216, -24.07456987927135], + [-46.57543348722007, -24.07515187691569], + [-46.57695049595858, -24.075918873521776], + [-46.578466504585506, -24.07664887011554], + [-46.579536510647834, -24.077154867707318], + [-46.58075051740671, -24.077687864958882], + [-46.582032524605715, -24.078271862064202], + [-46.583762534247576, -24.07903485814758], + [-46.58578054577087, -24.08001985361458], + [-46.58683555165014, -24.080484851225084], + [-46.5878479595705, -24.081026899968705], + [-46.58824755990733, -24.081240848077947], + [-46.589340566478654, -24.081887845665335], + [-46.590122570904605, -24.082255843902395], + [-46.59145157856478, -24.082928840924268], + [-46.59238358398335, -24.083416838841607], + [-46.593484590098434, -24.08389483634317], + [-46.59432859484302, -24.084280834435308], + [-46.595837603636696, -24.085077831064634], + [-46.59782561500696, -24.086053826594693], + [-46.60004262784318, -24.08719582162912], + [-46.600618537118926, -24.087472287331217], + [-46.60219864010673, -24.08823081676992], + [-46.604013650520336, -24.089132812690053], + [-46.60534165809621, -24.089777809698575], + [-46.60591266121306, -24.09000680839372], + [-46.606119662424405, -24.090117807931307], + [-46.606395795551514, -24.08975427411861], + [-46.60654813043208, -24.089832230776977], + [-46.60654900443713, -24.08983265477504], + [-46.60670868436009, -24.089914345416858], + [-46.60739537332923, -24.090265647876365], + [-46.608228790553554, -24.090831819060153], + [-46.608336315186705, -24.090890807820415], + [-46.60863839798718, -24.09106404214974], + [-46.60886657332831, -24.09118836864075], + [-46.60894669879963, -24.091232181462033], + [-46.609503645878206, -24.091468742193843], + [-46.60990033907461, -24.091638491290887], + [-46.61023603192602, -24.091779614525898], + [-46.610899853635175, -24.09207523801934], + [-46.61131181794314, -24.09226075708507], + [-46.6119183703274, -24.092529171707643], + [-46.61278432216511, -24.092914481741783], + [-46.61295579015935, -24.09300324435723], + [-46.614443721712725, -24.093747976010402], + [-46.61654569382081, -24.09480847028458], + [-46.61709501498342, -24.09508503104919], + [-46.61803340438775, -24.095558027938726], + [-46.61833859814193, -24.095710652251814], + [-46.61877729284105, -24.095991026287674], + [-46.61886885726164, -24.096000525067744], + [-46.6194410509114, -24.09606733469613], + [-46.61961655371993, -24.09608639727488], + [-46.62024218909334, -24.096322894837385], + [-46.62024981424837, -24.096364831834766], + [-46.620379504327275, -24.096544145586336], + [-46.62078769803453, -24.096872206714632], + [-46.62167652504882, -24.09728420470101], + [-46.62234028446363, -24.09747876415401], + [-46.62259203716021, -24.09734713748907], + [-46.6226038611653, -24.097331508454296], + [-46.623220725784584, -24.097665224074742], + [-46.623221484789006, -24.097665635073064], + [-46.623980621174546, -24.09805282136626], + [-46.62547076679891, -24.098818232017493], + [-46.62576103349143, -24.09897164636674], + [-46.625763117503595, -24.098972760362095], + [-46.6265609882096, -24.099412802580243], + [-46.62696379458832, -24.099635937680947], + [-46.62705163410929, -24.099685376485148], + [-46.62705197211133, -24.099685568484407], + [-46.62705630213753, -24.099688216474874], + [-46.62705868915264, -24.09968984446961], + [-46.628156196130874, -24.100468287083956], + [-46.62815709113648, -24.10046889708197], + [-46.62815994215378, -24.100470641075717], + [-46.628867327358606, -24.100871870499645], + [-46.629397484508914, -24.101172173318172], + [-46.62949479505367, -24.101215834096926], + [-46.630675543747266, -24.101774052423323], + [-46.63089994402325, -24.101881459915667], + [-46.63214419083933, -24.102388235066904], + [-46.63267399773574, -24.10260201185302], + [-46.633657752399294, -24.103096740635916], + [-46.63411658503294, -24.10332479460078], + [-46.63477811688844, -24.103673570115742], + [-46.63543582777043, -24.104037037645472], + [-46.637339979930516, -24.105062203377997], + [-46.63734708692745, -24.10505071635629], + [-46.63778434253028, -24.105299852381414], + [-46.638244038200625, -24.10553915534785], + [-46.639193218730355, -24.106038680215573], + [-46.63921706186927, -24.10605122816206], + [-46.6392178538739, -24.106051662160244], + [-46.64100371028691, -24.106994492148967], + [-46.64293998852717, -24.107999577792338], + [-46.64473106191984, -24.10892756176077], + [-46.64474814394569, -24.1089113237129], + [-46.645493924298094, -24.109306272037188], + [-46.6463236691437, -24.10974675517296], + [-46.64632400714571, -24.109746935172222], + [-46.64738759635044, -24.110309311781567], + [-46.64905784410309, -24.111195372027815], + [-46.649147920625545, -24.111241958824845], + [-46.65005066559025, -24.11161593375606], + [-46.65033298213552, -24.11173037010804], + [-46.65085180307983, -24.111976430930696], + [-46.65202945376786, -24.1125366442586], + [-46.65203024977245, -24.112537028256842], + [-46.652031662780516, -24.112537736253636], + [-46.654070619582946, -24.113583805655097], + [-46.65477771967405, -24.113945871059727], + [-46.65575995936661, -24.114452129844693], + [-46.65636052582929, -24.11475550648796], + [-46.65718809051579, -24.115144473607266], + [-46.657926559687986, -24.11548822092758], + [-46.658858991957395, -24.115922717806786], + [-46.65916298867778, -24.116065186115588], + [-46.659164210684736, -24.11606577111286], + [-46.6591652286906, -24.116066277110487], + [-46.65949337458362, -24.116232380369073], + [-46.65949568959659, -24.11623342436369], + [-46.65949719060474, -24.116233992360193], + [-46.65949872861268, -24.116234469356648], + [-46.659501179625565, -24.11623527135091], + [-46.65951065967769, -24.11623919832922], + [-46.65952700877751, -24.11624935329295], + [-46.65952872178752, -24.116250273289072], + [-46.660087149009094, -24.11653294002718], + [-46.660087644011995, -24.1165331930261], + [-46.66059465894859, -24.116793827881754], + [-46.660606145016125, -24.116800087855946], + [-46.66063270716808, -24.11681307279585], + [-46.66175053765902, -24.117393272274715], + [-46.66177554280028, -24.1174049252178], + [-46.66299113685674, -24.11803508547555], + [-46.66382016268363, -24.11846974960692], + [-46.66461418729754, -24.118882931815865], + [-46.665571749859, -24.119380223655316], + [-46.666318121193825, -24.11976782997111], + [-46.66738846051155, -24.12035820356851], + [-46.6673901765215, -24.12035909456463], + [-46.66739189753111, -24.120359870560666], + [-46.66739339753924, -24.120360438557245], + [-46.66739506054782, -24.120360954553316], + [-46.66739643655483, -24.120361322550114], + [-46.66740136658041, -24.12036285153854], + [-46.667406176606406, -24.120364672527515], + [-46.66741084663264, -24.120366778516843], + [-46.66741535765888, -24.1203691595067], + [-46.66741968868531, -24.120371807497015], + [-46.66742382071141, -24.12037470948795], + [-46.667427738737466, -24.1203778524796], + [-46.66742961075032, -24.120379511475605], + [-46.66743096175974, -24.12038074647276], + [-46.667432183767886, -24.12038172747013], + [-46.66743347277599, -24.120382632467305], + [-46.66743557378884, -24.120383917462636], + [-46.66830803691812, -24.120858155501328], + [-46.66830945392636, -24.120858886498112], + [-46.668311270936506, -24.12085970549393], + [-46.66831277094466, -24.1208602734905], + [-46.66831434095278, -24.12086076048688], + [-46.66831627796256, -24.120861272482273], + [-46.66832120798813, -24.120862800470793], + [-46.66832601801413, -24.12086462145966], + [-46.66833068804034, -24.120866727448988], + [-46.66833519906662, -24.12086910943885], + [-46.668339529093004, -24.12087175642918], + [-46.6683436621192, -24.120874658420117], + [-46.66834758014519, -24.12087780241175], + [-46.668349452158026, -24.120879460407732], + [-46.6683505801659, -24.120880492405387], + [-46.66835180217402, -24.12088147340272], + [-46.66835309118221, -24.120882378399898], + [-46.66835514019466, -24.120883630395358], + [-46.66835531719571, -24.120883728394965], + [-46.66883768102607, -24.12114400830975], + [-46.66883891803316, -24.12114464430699], + [-46.66884079204362, -24.121145489302716], + [-46.668842293051775, -24.12114605729928], + [-46.66884391906017, -24.121146562295543], + [-46.66884547306807, -24.12114697629182], + [-46.66885040209367, -24.121148504280338], + [-46.66885521311968, -24.121150326269202], + [-46.66885988314588, -24.121152431258537], + [-46.66886439317213, -24.121154813248395], + [-46.66886872419845, -24.121157461238717], + [-46.66887285722473, -24.121160362229638], + [-46.66887677425073, -24.12116350622131], + [-46.66887864726358, -24.121165164217288], + [-46.668879399268874, -24.12116585221567], + [-46.66888062127691, -24.12116683321303], + [-46.66888191128511, -24.1211677382102], + [-46.668883965297674, -24.121168994205643], + [-46.66888412229852, -24.121169081205302], + [-46.66941045438756, -24.121453312021284], + [-46.66941171139482, -24.121453958018403], + [-46.669413578405276, -24.12145480001413], + [-46.669415079413426, -24.121455368010615], + [-46.66941662242139, -24.12145584700706], + [-46.66941890943295, -24.121456446001716], + [-46.669423839458624, -24.12145797399014], + [-46.66942864948452, -24.121459794979007], + [-46.66943332051067, -24.12146190096845], + [-46.66943783053699, -24.121464282958197], + [-46.669442161563325, -24.1214669299486], + [-46.669446294589534, -24.121469831939535], + [-46.66945021161558, -24.121472975931106], + [-46.66945208462845, -24.121474633927182], + [-46.669452926634285, -24.121475404925384], + [-46.66945414864242, -24.121476385922744], + [-46.66945543865064, -24.1214772909199], + [-46.66945742266267, -24.12147850391552], + [-46.669457814664916, -24.121478720914652], + [-46.670619868468364, -24.122100559297902], + [-46.67301151448012, -24.12338345891239], + [-46.67301276848729, -24.123384102909604], + [-46.67301463749786, -24.123384945905304], + [-46.6730161375059, -24.123385513901898], + [-46.673018444517886, -24.12338622889647], + [-46.673023084541946, -24.123387675885667], + [-46.67302789556798, -24.12338949687454], + [-46.673032565594205, -24.123391602863844], + [-46.673037075620435, -24.1233939848537], + [-46.67304140664686, -24.123396631844024], + [-46.67304553967306, -24.123399533834938], + [-46.673049457699015, -24.123402676826608], + [-46.67305132971188, -24.123404334822578], + [-46.67305319372495, -24.123406040818708], + [-46.67305441573297, -24.123407021815982], + [-46.673055705741184, -24.123407926813236], + [-46.67305804975543, -24.123409359807955], + [-46.673598458966644, -24.123714626596637], + [-46.673600823980365, -24.12371587059131], + [-46.67360233598887, -24.12371655258782], + [-46.67360383699693, -24.123717120584395], + [-46.673607687017, -24.123718314575395], + [-46.67361013902988, -24.12371911556967], + [-46.673614949055796, -24.123720936558517], + [-46.67361961908201, -24.12372304254785], + [-46.67362413010833, -24.123725423537707], + [-46.67362846113457, -24.123728071528017], + [-46.67363259416078, -24.123730972519038], + [-46.673636511186835, -24.12373411551058], + [-46.67363838419971, -24.123735774506564], + [-46.673640558214856, -24.123737763501964], + [-46.67364178022297, -24.12373874349932], + [-46.67364306923119, -24.12373964949658], + [-46.67364537024517, -24.123741055491504], + [-46.67420910559117, -24.124058219227216], + [-46.67421137160446, -24.124059408222113], + [-46.67421291561308, -24.12406010421855], + [-46.67421441662115, -24.12406067321513], + [-46.67421764163789, -24.124061672207578], + [-46.67422094765517, -24.12406273319987], + [-46.67422575768118, -24.124064554188735], + [-46.6742304287073, -24.12406666017805], + [-46.67423493873364, -24.124069042167918], + [-46.67423926975998, -24.124071689158217], + [-46.67424340278627, -24.12407459114913], + [-46.67424732081225, -24.124077734140773], + [-46.674249192825116, -24.124079392136768], + [-46.674251456840885, -24.124081464131976], + [-46.67425267884901, -24.124082444129346], + [-46.67425396885722, -24.12408335012661], + [-46.67425627087122, -24.12408475712142], + [-46.67507508473156, -24.124545499285027], + [-46.67507591873647, -24.124545961283093], + [-46.67539439960934, -24.124719158566553], + [-46.67539583061766, -24.12471989656328], + [-46.67539764362781, -24.124720713559224], + [-46.67539914363594, -24.124721281555708], + [-46.675401610648784, -24.124722046549902], + [-46.67540597567151, -24.124723416539744], + [-46.67541078669743, -24.124725237528683], + [-46.67541545672365, -24.12472734251799], + [-46.675419967749896, -24.12472972450784], + [-46.67542429877632, -24.124732371498173], + [-46.67542843180251, -24.12473527348909], + [-46.675432348828494, -24.124738416480646], + [-46.67543422184136, -24.124740074476716], + [-46.675434430842834, -24.124740266476287], + [-46.67543565285096, -24.124741246473544], + [-46.67543694185916, -24.12474215147081], + [-46.675439044871936, -24.124743437466144], + [-46.67866470783609, -24.126495743205986], + [-46.67866608084408, -24.12649645020284], + [-46.67866791185432, -24.12649727619873], + [-46.67866940886243, -24.126497842195217], + [-46.67867340988322, -24.1264990821859], + [-46.67867586789613, -24.12649988518023], + [-46.67868067892204, -24.126501706168984], + [-46.67868534994827, -24.126503812158404], + [-46.67868985997461, -24.126506194148128], + [-46.678694191000936, -24.12650884113854], + [-46.67869832402705, -24.12651174212945], + [-46.67870224205313, -24.126514886121008], + [-46.678704000065174, -24.12651643911731], + [-46.67870523307337, -24.126517428114678], + [-46.67870652208156, -24.126518333111804], + [-46.678708632094384, -24.126519623107125], + [-46.679408548193486, -24.126894391529383], + [-46.67968751378959, -24.12668959476811], + [-46.6799355182778, -24.126834594213673], + [-46.680252148115926, -24.126998593497735], + [-46.680787221229295, -24.127278140288727], + [-46.6810527487652, -24.127413786687644], + [-46.681318276301205, -24.12754943208655], + [-46.681789291037454, -24.1277940160216], + [-46.68217855429879, -24.127996150141485], + [-46.68253392440944, -24.128196414343773], + [-46.68328562087409, -24.1286201106564], + [-46.684414413562756, -24.129250904120273], + [-46.684691791193465, -24.129401521495307], + [-46.68481746593233, -24.129469764212228], + [-46.68494314167121, -24.12953800592903], + [-46.685281414663194, -24.129722775167284], + [-46.685619686655166, -24.129907544405444], + [-46.68630101669466, -24.130289017874617], + [-46.686742439298655, -24.130531675880892], + [-46.6867753404928, -24.130549762806808], + [-46.68698519471208, -24.130658762332114], + [-46.68734138377629, -24.130841953525522], + [-46.68749818567899, -24.130920547169744], + [-46.68761521135272, -24.130979203904218], + [-46.68832586746642, -24.131343056294266], + [-46.68891144888555, -24.131652898971275], + [-46.689312169212, -24.131860380064143], + [-46.68983333022214, -24.13212492888245], + [-46.69125388858528, -24.132899874680977], + [-46.69195424667639, -24.133270981098388], + [-46.69340080217389, -24.13405365083506], + [-46.69397786155942, -24.134364368532502], + [-46.694336544664516, -24.134557786722937], + [-46.69359153864117, -24.136320096209026], + [-46.69344347566776, -24.136204701530037], + [-46.693427507760575, -24.136259690589664], + [-46.6938436854788, -24.136577940685203], + [-46.693864086422515, -24.136528978616884], + [-46.6936804782044, -24.136382094013463], + [-46.694433375232705, -24.134609954504356], + [-46.698868275688234, -24.137146312545266], + [-46.701538379576746, -24.138659548541455], + [-46.70212212710001, -24.139007219234813], + [-46.704349977537085, -24.140330901246013], + [-46.70462408118363, -24.14049144963125], + [-46.70518708851362, -24.1408035503619], + [-46.70698566114496, -24.141798172305528], + [-46.707618634886586, -24.142148240877727], + [-46.708741417522624, -24.14276883134466], + [-46.70955770135539, -24.143222768503865], + [-46.71008487847374, -24.143514978314602], + [-46.71043033951233, -24.14370481153449], + [-46.71077752556634, -24.143897351751235], + [-46.71012112133607, -24.14443620856602], + [-46.70971599648315, -24.144736930674192], + [-46.70991042980387, -24.144902738257024], + [-46.71016040641003, -24.14508466070901], + [-46.7101627194246, -24.14508626370394], + [-46.71041956702416, -24.14525589413451], + [-46.71042059103047, -24.145256550132192], + [-46.71079654933356, -24.145491828293846], + [-46.71079674433468, -24.145491950293422], + [-46.71112278133611, -24.1456973825668], + [-46.711123904343054, -24.14569810456436], + [-46.711125282351716, -24.1456990295613], + [-46.711726978146714, -24.14611268923307], + [-46.71172724214839, -24.14611286623249], + [-46.71172991616475, -24.146114512226553], + [-46.71228664749555, -24.14643578597484], + [-46.71228731649952, -24.146436176973282], + [-46.71275420031165, -24.14671199692585], + [-46.71275716632986, -24.1467138439192], + [-46.71275774633343, -24.146714227917954], + [-46.713136175699326, -24.14696724707974], + [-46.71313659370197, -24.146967524078832], + [-46.713136665702436, -24.14696757107867], + [-46.71365592991942, -24.14730472692484], + [-46.71365807893246, -24.147306032920035], + [-46.71365999794365, -24.147307045915692], + [-46.713661020949516, -24.14730752291328], + [-46.71419747395003, -24.14754596468059], + [-46.7142000069644, -24.147547145674782], + [-46.71420247797864, -24.147548407669184], + [-46.714374058983545, -24.147640049280604], + [-46.71437581799398, -24.14764101827663], + [-46.714376262996595, -24.147641273275653], + [-46.71465736867888, -24.147803593643474], + [-46.714660111694855, -24.147805040637174], + [-46.714661103700344, -24.14780550363494], + [-46.71502036071055, -24.147965412809317], + [-46.715022856724694, -24.147966576803682], + [-46.715024174732214, -24.147967236800667], + [-46.715314098411916, -24.148115811141565], + [-46.71531485641626, -24.14811619013988], + [-46.71531566942085, -24.148116577138047], + [-46.71563864124616, -24.148266521398078], + [-46.71564001625399, -24.148267176394917], + [-46.71564424627867, -24.148269408385318], + [-46.71564830730336, -24.148271889376268], + [-46.71565056931761, -24.1482734313713], + [-46.71586164666249, -24.14842309390672], + [-46.71586326067281, -24.14842427090319], + [-46.71586361667519, -24.14842453990244], + [-46.716029472756695, -24.14855058554047], + [-46.7160318327717, -24.14855224153532], + [-46.71603333878093, -24.14855317853196], + [-46.71642174711918, -24.14878219566001], + [-46.716424736136695, -24.148783772653182], + [-46.71665055142027, -24.14889109713669], + [-46.71665120142392, -24.14889140113522], + [-46.717012219461566, -24.14905807430766], + [-46.71701374447017, -24.149058798304132], + [-46.71701797349487, -24.149061030294565], + [-46.717019358503215, -24.149061837291416], + [-46.71723053677896, -24.149187860817886], + [-46.71723321279541, -24.14918953481185], + [-46.717235785811575, -24.149191298806148], + [-46.7176201742695, -24.14946682596116], + [-46.71762217428212, -24.149468201956765], + [-46.71805934700349, -24.149756349986262], + [-46.718060160008484, -24.149756872984486], + [-46.71837691095411, -24.149956736277957], + [-46.7183779909607, -24.149957430275617], + [-46.71838047397637, -24.14995913027009], + [-46.71879573662903, -24.150255848356707], + [-46.71879712863802, -24.150256868353647], + [-46.71879738663962, -24.1502570633531], + [-46.71891482240463, -24.15034600009661], + [-46.71891788442408, -24.150348148089765], + [-46.719103367575066, -24.150469143677547], + [-46.719106587594645, -24.150471106670334], + [-46.720476960736065, -24.151241967578745], + [-46.72084409091723, -24.15144848575043], + [-46.724146711586926, -24.153322466302956], + [-46.72414906460067, -24.153323705297616], + [-46.72415072760996, -24.153324454293763], + [-46.72415277162111, -24.15332523828909], + [-46.724269159241224, -24.1533664600174], + [-46.72427296326188, -24.15336792000848], + [-46.724277343286374, -24.1533698929984], + [-46.72428157331106, -24.1533721249889], + [-46.72428500533198, -24.153374197981186], + [-46.724503487680494, -24.153514227494252], + [-46.724505334691735, -24.153515366490137], + [-46.7248232696095, -24.15370396477606], + [-46.72482541962205, -24.153705098771194], + [-46.724827525633856, -24.153706047766246], + [-46.72482792963602, -24.153706208765335], + [-46.72523219582648, -24.153861714826306], + [-46.72523402383644, -24.153862443822042], + [-46.72523585284666, -24.1538632288178], + [-46.725784683916295, -24.154106965554824], + [-46.72578573092212, -24.154107419552425], + [-46.726074462519385, -24.154229608885746], + [-46.72607644253042, -24.15423047888116], + [-46.726455430663805, -24.154403450010665], + [-46.726455649665056, -24.154403549010187], + [-46.72684197383484, -24.154578130122104], + [-46.726903137186426, -24.154608521982567], + [-46.72708793924872, -24.154700349560827], + [-46.72718703181924, -24.154749871334726], + [-46.72727619133254, -24.1547944281314], + [-46.72763988551043, -24.15500474431217], + [-46.72764218652435, -24.15500612930704], + [-46.7278644228631, -24.155137332807367], + [-46.728001592702064, -24.155222617500623], + [-46.72800420271733, -24.15522399449463], + [-46.7280054307242, -24.15522456449184], + [-46.728278142246445, -24.155344616863683], + [-46.72827836924782, -24.155344712863172], + [-46.72828139426406, -24.15534585685615], + [-46.72870161246727, -24.155482447870433], + [-46.72870285747384, -24.155482862867558], + [-46.72870736849821, -24.15548456985704], + [-46.7287117485228, -24.15548654284692], + [-46.728715977547495, -24.15548877383731], + [-46.72872003957219, -24.15549125482826], + [-46.72872011457265, -24.15549130382809], + [-46.72878555197965, -24.1555342846825], + [-46.72907769679668, -24.155726166032835], + [-46.7294615871734, -24.155974604177686], + [-46.729596371998404, -24.156058619876173], + [-46.72959697100214, -24.156059004874876], + [-46.72985586360772, -24.156227448298452], + [-46.729856059608856, -24.156227576298015], + [-46.72985865162524, -24.156229353292268], + [-46.73013727640778, -24.156429171678695], + [-46.73013832641445, -24.15642990767634], + [-46.73054692299121, -24.156710295771894], + [-46.730547047992, -24.15671037877161], + [-46.73054929600569, -24.156711751766494], + [-46.73055098001553, -24.156712655762654], + [-46.73126037211172, -24.157071217145226], + [-46.73126334012844, -24.157072555138324], + [-46.73126356512962, -24.15707264513789], + [-46.73183931125509, -24.1572960458001], + [-46.73184003625899, -24.15729633079845], + [-46.732195937203116, -24.157438518973034], + [-46.73219682320796, -24.157438878970932], + [-46.73220120323256, -24.157440851960843], + [-46.73220543225727, -24.157443083951218], + [-46.732209494281925, -24.157445563942147], + [-46.732210279286804, -24.15744608494045], + [-46.732403039495175, -24.157575855512718], + [-46.732403625498804, -24.15757624451135], + [-46.732403655499056, -24.157576264511288], + [-46.73294657286334, -24.157928537301643], + [-46.73294684586505, -24.15792871430105], + [-46.73295072188966, -24.15793143429245], + [-46.73295279590328, -24.157933049287976], + [-46.733432078097856, -24.158320262247983], + [-46.733432876102995, -24.15832088324621], + [-46.73343459511398, -24.158322089242496], + [-46.73343594712224, -24.158322914239363], + [-46.73343775113274, -24.158323866235335], + [-46.73343892913939, -24.158324414232588], + [-46.7337866130813, -24.158477809431346], + [-46.73428171784663, -24.158696244290372], + [-46.73428199484817, -24.158696363289742], + [-46.73428439786109, -24.15869727228412], + [-46.73428641787163, -24.158697909279343], + [-46.73443216261996, -24.15873988593527], + [-46.73469221517995, -24.158891111349377], + [-46.73469493719591, -24.15889258534314], + [-46.73469899822062, -24.158895066334054], + [-46.73469918922182, -24.158895191333652], + [-46.734935407693015, -24.15905095480812], + [-46.734938004708766, -24.159052540802257], + [-46.73493937071682, -24.159053278799096], + [-46.73517899810556, -24.15917608225312], + [-46.7351819001226, -24.159177650246484], + [-46.73518495214105, -24.159179480239583], + [-46.73554428435049, -24.15940671143658], + [-46.735546410363355, -24.159407986431827], + [-46.73554705236714, -24.159408340430392], + [-46.73595390775191, -24.159625970506518], + [-46.7359551817593, -24.15962662250359], + [-46.73595736077159, -24.159627622498558], + [-46.73638710815768, -24.159812406506163], + [-46.73638774716127, -24.159812676504718], + [-46.73666264367742, -24.159927412868587], + [-46.73666680070077, -24.15992929385899], + [-46.73667103072547, -24.159931524849398], + [-46.73667306173768, -24.15993272184484], + [-46.73701125079508, -24.16013909708605], + [-46.737012025799736, -24.160139562084357], + [-46.73723118108864, -24.160258214587202], + [-46.73748108755821, -24.160393517020214], + [-46.73759647319444, -24.160441608753164], + [-46.73759987421084, -24.160442254745035], + [-46.737604589234564, -24.16044340473374], + [-46.737609212258526, -24.160444836722895], + [-46.73761372328292, -24.160446542712364], + [-46.737618103307526, -24.16044851570227], + [-46.73761976831707, -24.160449353698528], + [-46.73773230297134, -24.16050772844229], + [-46.73773486698647, -24.160509122436412], + [-46.737738929011144, -24.16051160242734], + [-46.7377398990172, -24.160512248425142], + [-46.737917418132426, -24.16063252403121], + [-46.73791790213537, -24.160632847030172], + [-46.7379187511406, -24.16063339002824], + [-46.73814740454216, -24.1607764585165], + [-46.73814871755021, -24.16077729951355], + [-46.73814955855553, -24.16077785851173], + [-46.73833687773055, -24.16090420409577], + [-46.738337471734205, -24.16090459809441], + [-46.738337619735155, -24.160904695094093], + [-46.73859174330744, -24.16106865952719], + [-46.73859339831754, -24.161069690523455], + [-46.73878384847161, -24.16118435009551], + [-46.73878626548648, -24.161185868090147], + [-46.73879014151107, -24.161188587081515], + [-46.73879381553545, -24.16119153307351], + [-46.738796098551234, -24.161193573068722], + [-46.73881124565584, -24.161207038036242], + [-46.73897044875521, -24.1613485656952], + [-46.739100256695615, -24.16147891042265], + [-46.73910154870458, -24.161480071419813], + [-46.7391030057143, -24.161481239416645], + [-46.739105007726906, -24.161482643412263], + [-46.7392797938028, -24.16159352302157], + [-46.739281813815026, -24.16159473701706], + [-46.739283057822355, -24.16159541401418], + [-46.739488771019545, -24.161702509545854], + [-46.739491234034084, -24.161703850540206], + [-46.7394914840356, -24.161703992539657], + [-46.73975955363731, -24.16185767193442], + [-46.73976336566049, -24.16186000992587], + [-46.73976430466633, -24.16186063492375], + [-46.74007325260662, -24.16206972323784], + [-46.74007613162412, -24.162071481231443], + [-46.74050491016194, -24.162309068260207], + [-46.74050562416614, -24.162309469258613], + [-46.740509686190855, -24.16231194924954], + [-46.74051021419418, -24.16231229924832], + [-46.74082112513792, -24.16251972655693], + [-46.740823491152945, -24.16252137155174], + [-46.741124741087376, -24.162739685888095], + [-46.741126228096796, -24.162740710884794], + [-46.741128678111764, -24.16274221287932], + [-46.74134759041938, -24.162867567384875], + [-46.741350600437634, -24.16286938537808], + [-46.74147607321063, -24.162949213097637], + [-46.74147774222071, -24.16295021809389], + [-46.741479371230255, -24.162951077090167], + [-46.7414808292384, -24.162951733086874], + [-46.74148336325211, -24.162952692080957], + [-46.741692772359734, -24.16302400159016], + [-46.74169296636078, -24.1630240675897], + [-46.741697478385056, -24.163025773579157], + [-46.74170185740975, -24.163027746569153], + [-46.74170608743445, -24.163029977559535], + [-46.74170921045335, -24.16303185255247], + [-46.741787301933904, -24.163081354377862], + [-46.74178888294343, -24.163082303374278], + [-46.74179119695696, -24.163083524369043], + [-46.7417914799586, -24.163083658368386], + [-46.74207766257263, -24.16321516271011], + [-46.742079697583975, -24.163216050705476], + [-46.74207984258476, -24.163216109705157], + [-46.74260111142953, -24.16342332049424], + [-46.74260211943504, -24.16342372949193], + [-46.74260649945953, -24.163425701481835], + [-46.74260793546794, -24.16342642247852], + [-46.74292846832763, -24.163591318747677], + [-46.74292894133039, -24.16359155574664], + [-46.742931033342195, -24.16359252274181], + [-46.74332459253611, -24.163764627833217], + [-46.74332754155273, -24.163765991826455], + [-46.743331771577445, -24.163768222816838], + [-46.743333536588125, -24.163769257812845], + [-46.74358295010141, -24.163920037252257], + [-46.74358462411169, -24.16392107924859], + [-46.74397746353734, -24.164172846370825], + [-46.74397808654124, -24.164173249369487], + [-46.74398196356583, -24.164175968360873], + [-46.743983821578105, -24.16417740935684], + [-46.74423987028041, -24.164382642799687], + [-46.74424081628661, -24.16438337679766], + [-46.74424240629685, -24.164384518794165], + [-46.74454823922744, -24.16459480011599], + [-46.74454841622857, -24.1645949191156], + [-46.74455068924241, -24.164596307110532], + [-46.7445522302514, -24.16459713610701], + [-46.74527489035558, -24.164938762447736], + [-46.745390624048056, -24.16500541018628], + [-46.74585465582504, -24.165272792138293], + [-46.74624024013262, -24.165494986267507], + [-46.74641120112097, -24.165581700876956], + [-46.746411549122904, -24.165581868876252], + [-46.746413084131795, -24.165582639872703], + [-46.746766367183575, -24.165765021066992], + [-46.74676708118768, -24.165765394065396], + [-46.74704902683625, -24.16591472642365], + [-46.74705058784533, -24.16591552042016], + [-46.747051078848074, -24.16591575441904], + [-46.747432847008575, -24.166093578541258], + [-46.74743345101196, -24.166093862539867], + [-46.74776019587119, -24.166249504789747], + [-46.74776086687499, -24.16624982878821], + [-46.747765096899705, -24.16625205977862], + [-46.74776913592425, -24.16625452476957], + [-46.748065809768185, -24.166448669107787], + [-46.74806655877283, -24.166449166106077], + [-46.74827083405307, -24.16658643265179], + [-46.74827111905489, -24.166586621651074], + [-46.74827204406058, -24.166587213649056], + [-46.74864059331941, -24.166817616822946], + [-46.74864251333101, -24.166818770818637], + [-46.74871787277498, -24.166859762647512], + [-46.749201463680755, -24.167142354556322], + [-46.74920374369409, -24.16714355655107], + [-46.749205883706146, -24.167144529546214], + [-46.749295815203375, -24.167182464337884], + [-46.749299695225254, -24.167184228329], + [-46.74930351824752, -24.16718623032026], + [-46.74938392672492, -24.167231266138103], + [-46.74938433472727, -24.167231496137195], + [-46.74938696374329, -24.16723306113123], + [-46.74954176469105, -24.16732950278416], + [-46.74954293169811, -24.167330196781514], + [-46.749545038710416, -24.16733130777661], + [-46.7495464837186, -24.167331974773344], + [-46.74983534332766, -24.167457827105835], + [-46.74983838634484, -24.16745923209879], + [-46.74984261636955, -24.16746146308915], + [-46.74984351437489, -24.16746198108718], + [-46.74991425580041, -24.167503463927552], + [-46.749914351800996, -24.16750352092732], + [-46.75006903273231, -24.167594531578466], + [-46.75007210075105, -24.167596437571646], + [-46.75007392476248, -24.167597670567595], + [-46.7503681876293, -24.167803041915615], + [-46.75036907663487, -24.1678036419137], + [-46.75037076564528, -24.16780469990992], + [-46.750592448986495, -24.167937342410674], + [-46.750592646987705, -24.167937458410233], + [-46.75059473399988, -24.1679385594055], + [-46.75059725201404, -24.16793969339968], + [-46.75085746844571, -24.168047031796085], + [-46.75085754044613, -24.16804706079592], + [-46.75086002045996, -24.168048137790194], + [-46.75111493989453, -24.168164123202803], + [-46.75111683990529, -24.16816501919842], + [-46.75112106993001, -24.168167250188798], + [-46.75112505495422, -24.168169680179865], + [-46.75147157710683, -24.168396006406365], + [-46.75150744224224, -24.168389804315538], + [-46.751770217747236, -24.168518262713214], + [-46.75176365387371, -24.168570663748508], + [-46.751767530898405, -24.16857338273989], + [-46.751771204922775, -24.168576327731962], + [-46.75177351293877, -24.168578390726992], + [-46.75196301730108, -24.168764881326805], + [-46.75204301280792, -24.16882049114954], + [-46.752044893820496, -24.168821999145376], + [-46.75204692183326, -24.168823421140928], + [-46.75258903417676, -24.169169274927633], + [-46.75259077318738, -24.16917032292373], + [-46.752592380196695, -24.169171169920123], + [-46.75259463820938, -24.169172186914913], + [-46.753024008552, -24.169342564916214], + [-46.75302505655775, -24.169342988913805], + [-46.75302873957831, -24.16934462590525], + [-46.753587822759116, -24.16961065962088], + [-46.753590251772714, -24.169611738615366], + [-46.75359148977939, -24.16961222561243], + [-46.75382421703233, -24.169698851068944], + [-46.75382683104651, -24.16969987806287], + [-46.75382780005185, -24.16970028606066], + [-46.75410445658807, -24.16981911542037], + [-46.75410786860723, -24.169820680412457], + [-46.754112098631936, -24.169822911402836], + [-46.75411329763914, -24.16982360640019], + [-46.754240141404495, -24.169898773114138], + [-46.754243004422, -24.16990055810769], + [-46.7542468814467, -24.169903276099152], + [-46.75425055547109, -24.16990622209112], + [-46.75425401249523, -24.16990938108373], + [-46.75425512450326, -24.169910491081374], + [-46.7542566575145, -24.169912054078218], + [-46.75428140769439, -24.169937068026112], + [-46.754412691652824, -24.170071211750574], + [-46.754414415664826, -24.170072787746825], + [-46.75441692868119, -24.17007467274137], + [-46.75441828068935, -24.17007549773831], + [-46.754420517702435, -24.170076678733217], + [-46.75474791456524, -24.17023252098103], + [-46.7547498935764, -24.170233399976436], + [-46.75475246359023, -24.17023437197044], + [-46.75485041425931, -24.17031885975924], + [-46.75495712391459, -24.170385954519933], + [-46.754958496923635, -24.170387036516946], + [-46.754960033933436, -24.170388114513553], + [-46.75496138594159, -24.170388940510485], + [-46.75496279394985, -24.170389682507246], + [-46.754964251958064, -24.170390339503935], + [-46.75496575296611, -24.17039090650039], + [-46.754967291974154, -24.17039138349679], + [-46.7549689859826, -24.170391796492787], + [-46.75497135399405, -24.170392232487046], + [-46.75506637144496, -24.17040707825776], + [-46.755070649465615, -24.170407866247345], + [-46.75507536548925, -24.17040901623612], + [-46.75507998851333, -24.170410447225258], + [-46.755084500537706, -24.170412153214784], + [-46.755086270547494, -24.170412911210647], + [-46.75530954379609, -24.170511800694953], + [-46.755309912798154, -24.17051195969402], + [-46.75531218481035, -24.170512817688795], + [-46.75531455982273, -24.170513559683158], + [-46.75559051123474, -24.17059134202961], + [-46.75559474825678, -24.17059266501959], + [-46.75559925928119, -24.170594370009105], + [-46.75560363930578, -24.17059634299897], + [-46.75560674632383, -24.170597947991826], + [-46.755824842609826, -24.17071702749623], + [-46.75600600767809, -24.170815963084657], + [-46.75600712568474, -24.170816586082076], + [-46.75600897769584, -24.17081767307791], + [-46.75625790220796, -24.17096858251764], + [-46.756403499064625, -24.171047460186582], + [-46.75692944019885, -24.171345799995358], + [-46.757242520021656, -24.171508859280912], + [-46.757243260026, -24.17150923827917], + [-46.75763906231126, -24.171708883373576], + [-46.75764239433083, -24.171710668366057], + [-46.75764645735555, -24.171713148356936], + [-46.75765002337821, -24.171715636349056], + [-46.75795104932728, -24.171938962686184], + [-46.757953413342285, -24.17194061068099], + [-46.7579545883495, -24.171941347678317], + [-46.75828189233141, -24.172137636940732], + [-46.75828214733296, -24.172137785940166], + [-46.758285162350575, -24.172139375933234], + [-46.7586816946155, -24.172331029022875], + [-46.75868196661708, -24.172331161022267], + [-46.7586861966418, -24.172333392012618], + [-46.758687740651, -24.1723342930091], + [-46.75896490232933, -24.17250051638444], + [-46.75896667334015, -24.17250161238047], + [-46.75932181853079, -24.172728187584994], + [-46.75932356054142, -24.172729236581045], + [-46.75932516655076, -24.17273008357745], + [-46.759327103561596, -24.17273095557298], + [-46.75932808656697, -24.172731342570614], + [-46.759535570646214, -24.17279576608116], + [-46.759940953777836, -24.17292939612767], + [-46.75994391179272, -24.172930153120593], + [-46.75994853581667, -24.17293158410973], + [-46.759952835839876, -24.172933202099642], + [-46.76012296777494, -24.173002986704436], + [-46.76012316477605, -24.173003066703977], + [-46.760364422104196, -24.17310279214382], + [-46.76036881012884, -24.17310476813365], + [-46.76037304115355, -24.173106999124037], + [-46.7603735561567, -24.17310729512287], + [-46.760685259024626, -24.173287616417813], + [-46.76108189940123, -24.17351690552051], + [-46.76108386741281, -24.173517974516045], + [-46.76172340213287, -24.173849795055464], + [-46.76172493114186, -24.17385061005194], + [-46.76216682975028, -24.17409274504736], + [-46.762167850756356, -24.17409331504501], + [-46.762171912781064, -24.174095795035893], + [-46.76217513780148, -24.174098030028716], + [-46.76274889450176, -24.174518571762764], + [-46.762750607512665, -24.17451975875898], + [-46.762752134521996, -24.17452069075552], + [-46.762753541530174, -24.17452143375239], + [-46.762755043538625, -24.174522109748878], + [-46.76275752255205, -24.174523049743087], + [-46.76304481107656, -24.17462246606876], + [-46.763249738164035, -24.174693379587886], + [-46.76330455845497, -24.174712350459185], + [-46.76330844147587, -24.174713810450147], + [-46.763384671894094, -24.174744788272807], + [-46.763387281908095, -24.17474576526677], + [-46.763388887916534, -24.174746279262934], + [-46.76353906869171, -24.174790871907792], + [-46.76354224170823, -24.17479188690024], + [-46.763544569720764, -24.174792727894864], + [-46.76369046550912, -24.1748480025541], + [-46.763691270513405, -24.174848292552255], + [-46.76369438952961, -24.17484925754488], + [-46.763846268326944, -24.174898875187356], + [-46.76397937308782, -24.174963396881633], + [-46.76398048309406, -24.174963926879013], + [-46.76398272310701, -24.1749650658739], + [-46.764098169782216, -24.17502617661059], + [-46.764100159793955, -24.175027268606065], + [-46.764100523796074, -24.17502747660525], + [-46.76433690816525, -24.175148121064527], + [-46.76457663879516, -24.175352171545708], + [-46.764578698808236, -24.175353615541106], + [-46.7645809438219, -24.175354986536057], + [-46.76486419850573, -24.175514170893333], + [-46.764865494513394, -24.175514879890347], + [-46.76517671333571, -24.175680378180743], + [-46.765177620340936, -24.175680840178636], + [-46.76518035835637, -24.175682073172304], + [-46.76548467302733, -24.175806374464738], + [-46.76601228191769, -24.176019551237218], + [-46.76615639479728, -24.176108302912944], + [-46.76615862381206, -24.176110072908145], + [-46.766159187815724, -24.17611048290685], + [-46.76633810395624, -24.176237067510204], + [-46.76633906996233, -24.176237725508123], + [-46.7663415379774, -24.176239242502497], + [-46.76656805533361, -24.176369792989554], + [-46.76657170635583, -24.17637203798142], + [-46.76657174335605, -24.176372061981255], + [-46.76676731157276, -24.176500278544058], + [-46.76676967558726, -24.176501751538783], + [-46.767119285697305, -24.17670891374911], + [-46.76711966669955, -24.17670914074817], + [-46.7673606741597, -24.176853868204574], + [-46.76736315217493, -24.176855423198948], + [-46.76736472018481, -24.17685647819546], + [-46.7677241404591, -24.17710503239652], + [-46.767724463461164, -24.177105248395726], + [-46.76772642647308, -24.177106447391317], + [-46.76772832448416, -24.177107448386973], + [-46.767729183489024, -24.177107850385028], + [-46.76790426147059, -24.177186188980343], + [-46.767906597483844, -24.177187280974948], + [-46.76791025150519, -24.177189187966583], + [-46.768219416338226, -24.177361269264182], + [-46.7682222413547, -24.17736275025767], + [-46.76862926569133, -24.177563350323528], + [-46.768631704704944, -24.17756444831789], + [-46.7686332067131, -24.17756501631434], + [-46.76863474472113, -24.17756549231066], + [-46.768636314728944, -24.177565875307046], + [-46.76863870274046, -24.177566306301227], + [-46.768638849741166, -24.177566326300873], + [-46.7686678118763, -24.177570062230618], + [-46.76866943588396, -24.177570288226622], + [-46.768674223906984, -24.17757115321515], + [-46.768678938930606, -24.177572303203927], + [-46.76868356295461, -24.177573734192933], + [-46.768688074979, -24.177575439182352], + [-46.76869224100235, -24.1775773071727], + [-46.7689352553913, -24.1776949926142], + [-46.768935469392446, -24.17769509661372], + [-46.76893915641397, -24.177697021605248], + [-46.769318874666084, -24.17790861074251], + [-46.76932005367304, -24.177909251739802], + [-46.769552558033304, -24.178032455209276], + [-46.76990564609761, -24.178219125403306], + [-46.77009734520048, -24.17831437396347], + [-46.77009818820535, -24.178314778961575], + [-46.77010241823006, -24.178317008951808], + [-46.77010596825156, -24.178319155943896], + [-46.7702524191574, -24.17841334261565], + [-46.77025293216051, -24.178413675614532], + [-46.77025470417162, -24.17841487161048], + [-46.77045795846084, -24.17855643115893], + [-46.770459011467544, -24.17855717815657], + [-46.77054015698857, -24.17861581697699], + [-46.770541208995354, -24.17861659197463], + [-46.77054157099766, -24.178616864973847], + [-46.77065236072105, -24.17870101973025], + [-46.77065447473449, -24.17870250272558], + [-46.77065667674791, -24.178703846720552], + [-46.770830866782106, -24.17880125132479], + [-46.7708313117847, -24.1788015013238], + [-46.770833978800866, -24.17880309031772], + [-46.77091392929081, -24.178852951137987], + [-46.770915129297975, -24.178853665135364], + [-46.77091690530834, -24.178854602131267], + [-46.7709191083207, -24.178855594126187], + [-46.770919184321116, -24.178855625126], + [-46.77103508094694, -24.178899365855038], + [-46.77117111380708, -24.178993177552446], + [-46.77117356582273, -24.178994938547007], + [-46.77117623784045, -24.17899704154114], + [-46.771214260096116, -24.17902841545841], + [-46.77121526210289, -24.17902925745623], + [-46.77121871912706, -24.17903241644883], + [-46.77122104814399, -24.17903479844394], + [-46.77132922995034, -24.179150771218218], + [-46.771330355958476, -24.17915192221587], + [-46.771331752968266, -24.179153199212788], + [-46.77133297597642, -24.179154179210215], + [-46.77133451198613, -24.179155256206794], + [-46.77133601499538, -24.179156190203386], + [-46.771442423636614, -24.17921889396283], + [-46.77147541483526, -24.179238288888122], + [-46.77147849885411, -24.179240202881253], + [-46.771482375878804, -24.179242920872607], + [-46.7714860509032, -24.17924586686456], + [-46.77148702190994, -24.179246712862458], + [-46.77157116449106, -24.179321368681315], + [-46.77157304050362, -24.17932287267714], + [-46.77157433051175, -24.17932377667435], + [-46.77157568251998, -24.17932460167129], + [-46.77157812253417, -24.17932588866573], + [-46.77178835973766, -24.179428295182582], + [-46.771788414738, -24.179428322182364], + [-46.77179264476269, -24.17943055217272], + [-46.77179364176867, -24.179431129170517], + [-46.771845494081006, -24.179461631053208], + [-46.77184857909903, -24.179463258046198], + [-46.77202239709096, -24.17954690064632], + [-46.77202278309311, -24.179547087645464], + [-46.7720270131178, -24.179549317635693], + [-46.77202804612408, -24.179549915633412], + [-46.77212706672063, -24.179608239409518], + [-46.772130009737836, -24.179609791402747], + [-46.77235586601914, -24.17971589988223], + [-46.77235690102505, -24.17971639487988], + [-46.77236113104975, -24.179718625870215], + [-46.77236126205054, -24.17971869986993], + [-46.77251287395585, -24.179805213526006], + [-46.77251582597308, -24.179806770519285], + [-46.7725164709768, -24.179807073517836], + [-46.77271437308892, -24.179896488060372], + [-46.77271627009943, -24.17989730805595], + [-46.77287042894805, -24.179960944697488], + [-46.772873021962106, -24.179961923691422], + [-46.772875463974735, -24.179962678685623], + [-46.773145883345, -24.180034302042376], + [-46.77314670734915, -24.180034525040423], + [-46.77315133137323, -24.180035956029418], + [-46.773155842397614, -24.18003766101887], + [-46.77316022342224, -24.180039633008807], + [-46.77316445444694, -24.180041863999147], + [-46.77316799346835, -24.18004400399115], + [-46.77350462455038, -24.18026041223628], + [-46.77350514755365, -24.180260752235146], + [-46.773509025578285, -24.180263470226475], + [-46.77350922557961, -24.18026362022604], + [-46.77358740408906, -24.180322663053914], + [-46.77358956210278, -24.18032417604917], + [-46.77359123711295, -24.18032519804538], + [-46.77359257612083, -24.1803259210423], + [-46.77384424358062, -24.18045498146613], + [-46.77384430658099, -24.180455013465973], + [-46.77384651259331, -24.180456006460854], + [-46.773848013601445, -24.18045657445732], + [-46.77384955260949, -24.180457050453732], + [-46.7738511226173, -24.180457432450023], + [-46.77385373362991, -24.18045790444367], + [-46.773873490722906, -24.180460745395777], + [-46.773873949725086, -24.180460812394763], + [-46.77387873674811, -24.180461677383192], + [-46.77388345277174, -24.18046282737193], + [-46.77388807679583, -24.180464258360953], + [-46.773892588820125, -24.18046596335045], + [-46.7738966028427, -24.18046775734115], + [-46.773953839169415, -24.18049531920952], + [-46.77395420517146, -24.180495496208604], + [-46.773958436196175, -24.180497727198922], + [-46.773960292207306, -24.180498816194746], + [-46.77410787910415, -24.18058828386185], + [-46.77411008611773, -24.18058967485683], + [-46.77411015911819, -24.180589721856762], + [-46.77426695109418, -24.180692633505885], + [-46.774270755118415, -24.18069530449739], + [-46.77427176812495, -24.180696077495227], + [-46.77447762529099, -24.180792155020395], + [-46.77468726239922, -24.180863239527145], + [-46.7746911604203, -24.180864730518078], + [-46.77469554144492, -24.180866702508016], + [-46.77469977146962, -24.180868933498278], + [-46.77470383449444, -24.18087141348913], + [-46.77470423249686, -24.180871676488273], + [-46.774804694124484, -24.180938365263753], + [-46.77480782114351, -24.180940278256653], + [-46.77487162952444, -24.180976675111864], + [-46.77499377725319, -24.181046132834624], + [-46.774996227267515, -24.181047424829025], + [-46.77499814427828, -24.181048287824588], + [-46.775198526357336, -24.181122905355636], + [-46.775201130371535, -24.18112392734953], + [-46.77520551039616, -24.18112589933938], + [-46.77520741640715, -24.18112686333501], + [-46.775323358083035, -24.18118749506997], + [-46.77532398008672, -24.18118781606848], + [-46.77542895469441, -24.181241255828034], + [-46.77542941269709, -24.18124148482689], + [-46.77543083570521, -24.181242152823604], + [-46.77554943237177, -24.181295770549504], + [-46.77555040537725, -24.18129621954718], + [-46.775663352017745, -24.181349177286783], + [-46.775665784031375, -24.181350257281157], + [-46.77578086866713, -24.181398549013714], + [-46.77578487468972, -24.181400364004435], + [-46.77578910471444, -24.181402594994776], + [-46.77579316773916, -24.181405074985634], + [-46.77579704476387, -24.18140779297699], + [-46.77579847977323, -24.18140889697384], + [-46.77586852012696, -24.18142704780701], + [-46.77588644340373, -24.181494684787175], + [-46.77588838042122, -24.181497794783414], + [-46.77589054644235, -24.181501805779565], + [-46.77589108844802, -24.181502923778627], + [-46.77590693761496, -24.18153642275152], + [-46.77590804462576, -24.181538470749505], + [-46.775908858633045, -24.181539759747974], + [-46.77590976364057, -24.181540996746094], + [-46.77591075464838, -24.181542176744088], + [-46.77591182865619, -24.181543294741854], + [-46.77591297866424, -24.181544346739365], + [-46.775914395673695, -24.18154548173628], + [-46.77591596668368, -24.181546598732787], + [-46.77596836301266, -24.181581913615844], + [-46.77596859601414, -24.181582068615338], + [-46.77597005202313, -24.18158299061208], + [-46.775971481031895, -24.18158390360884], + [-46.77597535805658, -24.181586621600246], + [-46.77597805007435, -24.181588740594364], + [-46.77604025349269, -24.181640099458935], + [-46.77604157050141, -24.18164113545603], + [-46.77604372751504, -24.181642648451284], + [-46.776043992516804, -24.18164281745062], + [-46.77614698314701, -24.181706761218745], + [-46.77614850415643, -24.181707731215415], + [-46.776149954165554, -24.18170870521215], + [-46.77627125693225, -24.181792237942055], + [-46.77627148093358, -24.181792387941545], + [-46.7762734749457, -24.181793605937067], + [-46.77627581095944, -24.181794836931733], + [-46.776393586631976, -24.181851639660696], + [-46.77639654464852, -24.181852963653878], + [-46.776396946650664, -24.181853123652957], + [-46.77646708903124, -24.181880196489015], + [-46.776467474033375, -24.181880345488153], + [-46.77658672368251, -24.181927095209886], + [-46.776588062689775, -24.181927635206687], + [-46.77658874169358, -24.181927919205123], + [-46.77671508039343, -24.18198156191175], + [-46.7767187814143, -24.18198324990317], + [-46.776723012439035, -24.18198547989351], + [-46.776727074463736, -24.181987959884363], + [-46.776730951488446, -24.18199067787571], + [-46.77673345450489, -24.18199264087021], + [-46.7768474602698, -24.18208612862178], + [-46.776848617277466, -24.182087036619297], + [-46.77685106229302, -24.18208875061382], + [-46.77695948396498, -24.182158910370795], + [-46.776961572977605, -24.182160178366093], + [-46.77696306998636, -24.18216096736257], + [-46.7769645279946, -24.18216162335925], + [-46.77696602900263, -24.182162191355687], + [-46.776967914012516, -24.18216277435129], + [-46.77696948402037, -24.18216317234757], + [-46.777087318605744, -24.182190395065632], + [-46.777090615622264, -24.182191231057846], + [-46.77709523864633, -24.18219266104685], + [-46.77709975067071, -24.18219436603636], + [-46.77710413169533, -24.1821963380262], + [-46.777108361720046, -24.18219856901653], + [-46.77710991872932, -24.182199477013], + [-46.777226640436425, -24.182269493749253], + [-46.777226907438056, -24.182269649748662], + [-46.7772289744502, -24.18227073974394], + [-46.77723126446308, -24.18227177073872], + [-46.77730329585685, -24.182300570570774], + [-46.7773041438614, -24.182300915568756], + [-46.777306802876254, -24.18230207356267], + [-46.777417528500536, -24.182352771306803], + [-46.777419251510295, -24.182353585302796], + [-46.77742348153501, -24.18235581629314], + [-46.777425967550066, -24.182357291287556], + [-46.77747875487296, -24.18239000116864], + [-46.77747980187927, -24.18239062216631], + [-46.777482105892744, -24.182391837161056], + [-46.7774829998978, -24.18239225515894], + [-46.77772137623391, -24.18249873360725], + [-46.777723754247404, -24.182499844601768], + [-46.77772798527204, -24.182502075592108], + [-46.77772918027931, -24.18250276858937], + [-46.77786266108492, -24.182581831287496], + [-46.77786552910244, -24.182583618281026], + [-46.777869406127174, -24.182586336272358], + [-46.777873081151554, -24.18258928126437], + [-46.77787653817583, -24.182592440256975], + [-46.77787976219949, -24.18259580025021], + [-46.7778821972184, -24.1825986612452], + [-46.7779190235115, -24.182644406170485], + [-46.777920301521334, -24.182645908167906], + [-46.77792152653037, -24.18264718516534], + [-46.777923464543974, -24.182648955161145], + [-46.77795190473733, -24.182673151099536], + [-46.77795206573845, -24.18267328909909], + [-46.777955522762625, -24.182676448091676], + [-46.77795874678637, -24.182679808084924], + [-46.77795937379109, -24.182680515083693], + [-46.77800121411191, -24.18272838299735], + [-46.77800289212435, -24.182730131993875], + [-46.77800404313238, -24.18273118299132], + [-46.77800526614054, -24.182732162988724], + [-46.778007035151745, -24.182733402984717], + [-46.77800772615595, -24.182733839983204], + [-46.77813681994186, -24.182812562692046], + [-46.778137481945826, -24.18281295269047], + [-46.77813942595718, -24.182813977686017], + [-46.778141765970304, -24.182815030680693], + [-46.77829187379255, -24.18287561933088], + [-46.77829248379595, -24.18287586832946], + [-46.77829686482057, -24.182877840319314], + [-46.77830109584528, -24.182880071309672], + [-46.77830515787001, -24.182882551300523], + [-46.77830523787051, -24.18288260330026], + [-46.77847489492674, -24.18299397592047], + [-46.77847820794692, -24.182995999912993], + [-46.77880977092506, -24.18318456516008], + [-46.77881176793708, -24.183185741155572], + [-46.77912299083184, -24.183375576453464], + [-46.77912365883592, -24.183375969451994], + [-46.779125600847266, -24.183376993447535], + [-46.77912711985572, -24.18337767744401], + [-46.77912954086886, -24.183378596438335], + [-46.779327402919606, -24.18344725697317], + [-46.77933166194262, -24.183448874963258], + [-46.77933604196714, -24.183450846953125], + [-46.77934027299196, -24.183453076943433], + [-46.77934233100436, -24.183454289938787], + [-46.779482814859826, -24.183540047621868], + [-46.779484321868956, -24.183540935618453], + [-46.779484501869945, -24.183541036618045], + [-46.779718042251304, -24.183669784086216], + [-46.7797201112634, -24.18367087608148], + [-46.779980306766305, -24.183802117484554], + [-46.779983234782726, -24.18380343547779], + [-46.77998362078478, -24.18380358947681], + [-46.78010899446461, -24.183851816183836], + [-46.78011079947445, -24.183852536179586], + [-46.780115180499045, -24.183854508169436], + [-46.78011941152377, -24.18385673915978], + [-46.78012145153605, -24.183857940155175], + [-46.78038685115201, -24.184019852556364], + [-46.780388518162205, -24.18402089955258], + [-46.78061421556077, -24.18416682704631], + [-46.78061457156292, -24.18416705904553], + [-46.78061549156876, -24.184167671043443], + [-46.78078187261423, -24.18428013867205], + [-46.78078190461444, -24.18428015967196], + [-46.78078417462834, -24.184281570666794], + [-46.781050095231166, -24.184438304064802], + [-46.78105038023293, -24.184438469064165], + [-46.781052126243175, -24.18443941906018], + [-46.78135858102846, -24.1845991333588], + [-46.78136099804274, -24.184600449353294], + [-46.781363036054984, -24.184601648348703], + [-46.78163858373275, -24.18476972972685], + [-46.781778311583594, -24.18485502541159], + [-46.78177945059047, -24.18485569640907], + [-46.78178088659898, -24.184856479405656], + [-46.78196873969402, -24.18495460097584], + [-46.78196923369691, -24.184954849974723], + [-46.78197130570855, -24.1849557829699], + [-46.78197393772272, -24.184956777963745], + [-46.78218524284241, -24.185029277466583], + [-46.78218975786682, -24.18503098345598], + [-46.78219181287831, -24.185031867451197], + [-46.78235711880534, -24.18510584706843], + [-46.782357472807256, -24.18510600606761], + [-46.78250688564784, -24.185173771722], + [-46.78250885865905, -24.18517470071744], + [-46.78251308868375, -24.185176930707765], + [-46.782517151708475, -24.185179410698616], + [-46.78251917372119, -24.185180781694044], + [-46.78269036181038, -24.1853010363134], + [-46.78269047081109, -24.185301112313155], + [-46.782835689736196, -24.185403509990405], + [-46.78283721474574, -24.185404546986998], + [-46.78283751974764, -24.185404742986336], + [-46.78296171351183, -24.185483211707016], + [-46.78296251251668, -24.18548370770516], + [-46.78304461401689, -24.185533874519862], + [-46.783046020025544, -24.18553475551668], + [-46.783216396078934, -24.185644095134155], + [-46.78321828809039, -24.18564523712988], + [-46.78321984709944, -24.185646059126277], + [-46.78322130510766, -24.185646716122882], + [-46.783222806115816, -24.18564728311941], + [-46.78322434512377, -24.185647759115717], + [-46.78322666513538, -24.18564832511025], + [-46.78322692013666, -24.185648376109626], + [-46.78331704457314, -24.185665414892508], + [-46.78331878158167, -24.18566576288836], + [-46.78332349760521, -24.18566691287711], + [-46.78332812162928, -24.185668343866105], + [-46.78333263365367, -24.185670048855595], + [-46.78333691367771, -24.18567197184567], + [-46.78339028598311, -24.185697920722735], + [-46.783392755997, -24.185699030717124], + [-46.7833942840052, -24.185699607713488], + [-46.783396757018075, -24.185700372707718], + [-46.78346173834785, -24.18571775655295], + [-46.78346236635109, -24.185717927551455], + [-46.78346699037517, -24.185719358540556], + [-46.783471502399465, -24.185721062529943], + [-46.783475883424074, -24.185723034519796], + [-46.783480113448796, -24.18572526551012], + [-46.78348218346127, -24.185726484505448], + [-46.78354065981748, -24.185762194373503], + [-46.783856641665174, -24.18592915965092], + [-46.78389440987949, -24.185946932563805], + [-46.783932897115015, -24.185970787477014], + [-46.78393489612682, -24.185971883472526], + [-46.78393895915145, -24.185974362463288], + [-46.783942633174824, -24.185976928455144], + [-46.78407326702227, -24.186074177166553], + [-46.78407619904086, -24.186076224160036], + [-46.78421070287461, -24.186163254858187], + [-46.784212792887224, -24.18616452285349], + [-46.784214981900114, -24.186165676848496], + [-46.78421514690098, -24.186165755848116], + [-46.78443965616946, -24.186269402329252], + [-46.78444115517804, -24.18627011332586], + [-46.784444520197624, -24.186271860318126], + [-46.784604080141186, -24.186359745954483], + [-46.78460582215139, -24.186360648950483], + [-46.78460833016541, -24.186361778944672], + [-46.784848074475484, -24.186457417385217], + [-46.784848506477886, -24.186457588384222], + [-46.78500025930335, -24.186516877029668], + [-46.785002614316, -24.1865177400241], + [-46.78522093446492, -24.186589962509295], + [-46.78522176646937, -24.186590242507346], + [-46.785226277493656, -24.18659194749674], + [-46.785230658518365, -24.186593919486572], + [-46.785234874543, -24.186596141476976], + [-46.78531449501776, -24.18664133429599], + [-46.78531583802583, -24.1866421142929], + [-46.78551366022172, -24.186759849845178], + [-46.78551392422324, -24.186760003844594], + [-46.785516475238225, -24.18676136683881], + [-46.78567714116509, -24.1868419694698], + [-46.78567986718099, -24.18684340646359], + [-46.78604379833576, -24.18704471163436], + [-46.78604639835086, -24.187046063628447], + [-46.78604654435177, -24.187046132628097], + [-46.78623153439936, -24.187132357200845], + [-46.78623304940786, -24.187133023197283], + [-46.786234875417705, -24.18713371319298], + [-46.78623641342573, -24.18713418918928], + [-46.78623798343353, -24.18713457118565], + [-46.786239576441254, -24.187134859181754], + [-46.786241187448695, -24.187135051177844], + [-46.78624280845585, -24.187135145173876], + [-46.78624443246286, -24.187135142169836], + [-46.78624605246954, -24.187135042165796], + [-46.786248200477864, -24.18713477816037], + [-46.786249885484295, -24.187134491156126], + [-46.78625121948938, -24.187134275152648], + [-46.78625605550831, -24.187133682140495], + [-46.78626092452834, -24.18713338012839], + [-46.78626580454914, -24.18713337111619], + [-46.78627067457091, -24.18713365510426], + [-46.786275513593296, -24.187134231092536], + [-46.7862803016164, -24.187135095080958], + [-46.78628446463717, -24.187136095070997], + [-46.78662398236136, -24.18722727226259], + [-46.78662453536422, -24.187227422261284], + [-46.78662612737233, -24.187227880257474], + [-46.78667437062174, -24.18724229614317], + [-46.78667542862715, -24.187242620140687], + [-46.78678130417915, -24.187275869890314], + [-46.786782337184505, -24.18727618488782], + [-46.786978368196074, -24.187334249422992], + [-46.78698158221288, -24.18733527641538], + [-46.78698258421829, -24.187335628413063], + [-46.78713503103289, -24.187390248055], + [-46.78713530603439, -24.18739034605435], + [-46.78739891443918, -24.18748347143468], + [-46.7874009504502, -24.187484222429955], + [-46.787531476157895, -24.187534426124575], + [-46.7875334031682, -24.187535127120032], + [-46.78753382517046, -24.187535268119042], + [-46.78767683492002, -24.187581531781337], + [-46.787678934930874, -24.187582160776405], + [-46.78768028593772, -24.187582509773137], + [-46.787847163771076, -24.18762257537407], + [-46.78784978578437, -24.187623251367764], + [-46.787854409808354, -24.187624682356883], + [-46.78785594681657, -24.187625227353205], + [-46.787917878149024, -24.187647923207926], + [-46.787920853165275, -24.187649083201], + [-46.787925234189885, -24.187651055190823], + [-46.78792946521451, -24.18765328518113], + [-46.7879335282393, -24.18765576517199], + [-46.78793604525516, -24.187657487166337], + [-46.78803478688701, -24.187728059947123], + [-46.788035905894105, -24.187728825944586], + [-46.78803762090448, -24.187729871940725], + [-46.78803902891274, -24.18773061393746], + [-46.788041126924604, -24.1877315589327], + [-46.78804156092695, -24.1877317309316], + [-46.78817306163953, -24.1877821886239], + [-46.78817413364537, -24.18778257862142], + [-46.788176154655865, -24.187783203616597], + [-46.78817772366367, -24.18778358661288], + [-46.78817931767131, -24.18778387360897], + [-46.78818092767883, -24.18778406560506], + [-46.78818340568988, -24.187784209598984], + [-46.78821634183199, -24.18778456251754], + [-46.78821776283818, -24.187784589514013], + [-46.78822263285984, -24.187784873501986], + [-46.7882274718823, -24.18778544849026], + [-46.78823225990534, -24.187786313478693], + [-46.78823697592899, -24.187787463467412], + [-46.788238748938056, -24.187787975463248], + [-46.78833499243617, -24.187816983235102], + [-46.78833784345114, -24.187817901228417], + [-46.78834235547553, -24.18781960621785], + [-46.78834673650004, -24.187821578207664], + [-46.78834820550857, -24.18782231420435], + [-46.78835064452276, -24.187823570198788], + [-46.78835236653252, -24.187824365194775], + [-46.78841348987331, -24.187851061052903], + [-46.7884135628737, -24.18785109305274], + [-46.78841583288598, -24.18785195004741], + [-46.788417371894006, -24.187852426043715], + [-46.788418940901835, -24.187852809040077], + [-46.78842053490954, -24.187853097036168], + [-46.78842272491971, -24.187853357030864], + [-46.788423621923705, -24.187853422028688], + [-46.78851097929692, -24.187853078812033], + [-46.78868163415901, -24.187897365405085], + [-46.78868539617935, -24.18789880839633], + [-46.788689776203974, -24.187900780386155], + [-46.78869400722868, -24.187903010376395], + [-46.78869631924266, -24.187904378371172], + [-46.788737782495815, -24.187929911277593], + [-46.78873868350124, -24.187930444275597], + [-46.788740553512135, -24.187931430271313], + [-46.78874293052559, -24.187932500265806], + [-46.78907107136213, -24.18807808250505], + [-46.78928672154901, -24.188166976002595], + [-46.78928904256329, -24.18816843599729], + [-46.78929291958792, -24.18817115398873], + [-46.78929340159111, -24.188171517987588], + [-46.78938424218527, -24.188240798787433], + [-46.78938688120202, -24.188242648781525], + [-46.7893872942046, -24.188242911780616], + [-46.789589735685944, -24.188788093474994], + [-46.78962873298117, -24.189169146515376], + [-46.78970812550389, -24.189906283583774], + [-46.790414088089655, -24.191109022266378], + [-46.79225378028584, -24.192228495108193], + [-46.79225525029731, -24.192230232105146], + [-46.7922564123058, -24.192231443102806], + [-46.79225756331384, -24.19223249410021], + [-46.79225878632202, -24.192233474097534], + [-46.79226007733024, -24.19223437809474], + [-46.79226142933841, -24.192235203091656], + [-46.79226359735116, -24.1922363460867], + [-46.792343980807, -24.192273983900943], + [-46.79234560081599, -24.19227469789714], + [-46.79234795182871, -24.192275585891643], + [-46.792348738832914, -24.19227584288979], + [-46.792452833374064, -24.192308001643283], + [-46.79245368937845, -24.19230825264126], + [-46.79245668839347, -24.19230899163405], + [-46.792619762197056, -24.192344458242523], + [-46.79262406221862, -24.19234551823222], + [-46.7926286862427, -24.19234694822128], + [-46.7926331982671, -24.19234865321072], + [-46.792637579291714, -24.19235062520053], + [-46.79264181031643, -24.192352855190858], + [-46.792643090324056, -24.1923535981879], + [-46.79264524533706, -24.192354879183057], + [-46.7926452813373, -24.192354899182977], + [-46.792647419349784, -24.192356026178075], + [-46.79264887735802, -24.192356683174758], + [-46.792650379366066, -24.19235725017119], + [-46.7926519173741, -24.192357726167597], + [-46.792653487381926, -24.19235810916377], + [-46.792655080389636, -24.19235839615995], + [-46.79265669139708, -24.19235858815604], + [-46.79265831240433, -24.192358682152058], + [-46.792659936411226, -24.19235867914805], + [-46.792661556417904, -24.19235857914397], + [-46.79266316642426, -24.192358381139893], + [-46.792664758430185, -24.192358088135812], + [-46.79266693643792, -24.19235754813028], + [-46.792667641440374, -24.192357339128428], + [-46.79287299713004, -24.19229321559629], + [-46.792875236137675, -24.192292552590448], + [-46.792879947154425, -24.192291385578407], + [-46.79288473217226, -24.19229050356617], + [-46.79288956819127, -24.192289909554006], + [-46.792893548207495, -24.192289641544036], + [-46.79291216928485, -24.192288843497607], + [-46.79291305828861, -24.19228881049536], + [-46.792917938309465, -24.19228880148325], + [-46.79292280833123, -24.19228908447132], + [-46.792927648353604, -24.192289660459494], + [-46.792932436376724, -24.192290524447916], + [-46.79293715240028, -24.19229167443666], + [-46.79294177642434, -24.192293104425712], + [-46.792946288448746, -24.192294809415117], + [-46.79295066947334, -24.192296780404938], + [-46.79295117547621, -24.192297029403793], + [-46.79295347848916, -24.192298066398475], + [-46.79295498049732, -24.192298634394888], + [-46.79295651950536, -24.192299110391293], + [-46.792958088513146, -24.19229949238758], + [-46.79295968252081, -24.19229978038374], + [-46.79296129252831, -24.192299971379754], + [-46.79296291353547, -24.19230006637576], + [-46.792964537542474, -24.19230006337174], + [-46.792966157549145, -24.19229996236768], + [-46.792967767555425, -24.192299765363686], + [-46.79296942656159, -24.192299459359457], + [-46.79297195557061, -24.192298837352876], + [-46.793067311900934, -24.192272459107034], + [-46.79307176291677, -24.192271364095618], + [-46.793076546934685, -24.19227048208346], + [-46.793081383953584, -24.19226988907128], + [-46.79308235095748, -24.19226980506884], + [-46.79311461608806, -24.192267218987894], + [-46.793118519104176, -24.192266999978113], + [-46.793123399124994, -24.192266990966015], + [-46.79312826914667, -24.19226727495406], + [-46.79313310816914, -24.19226784994223], + [-46.79313789619224, -24.192268714930666], + [-46.79314261221581, -24.19226986391949], + [-46.79314723623979, -24.192271294908466], + [-46.79315174826427, -24.192272998897838], + [-46.79315613028881, -24.19227497088777], + [-46.79315799429964, -24.192275911883485], + [-46.79319973054285, -24.192297699787847], + [-46.7932002145457, -24.19229794378667], + [-46.793202290557446, -24.19229887878185], + [-46.79320434256842, -24.192299653777102], + [-46.79320515757277, -24.1922999187751], + [-46.79327985696098, -24.192322961598215], + [-46.793282214973374, -24.192323729592612], + [-46.79328672699777, -24.192325433581992], + [-46.79329110802238, -24.192327405571927], + [-46.79329482004397, -24.192329343563408], + [-46.793348443362206, -24.19235923944119], + [-46.79334896236535, -24.192359531440033], + [-46.79335302539008, -24.19236201143087], + [-46.7933569024147, -24.1923647294222], + [-46.79335932943075, -24.192366629416924], + [-46.79342059384156, -24.192416718282903], + [-46.793421842849995, -24.192417762280275], + [-46.7934253008741, -24.192420921272742], + [-46.79342852589789, -24.192424280265953], + [-46.7934315039212, -24.19242782625988], + [-46.79343422394382, -24.19243154325449], + [-46.7934366719658, -24.192435415249783], + [-46.79343883898697, -24.192439426245826], + [-46.793440716007254, -24.192443558242733], + [-46.79344229402658, -24.192447794240348], + [-46.79344296203573, -24.192449924239448], + [-46.79344425305423, -24.19245430223783], + [-46.793489734636296, -24.192585016172], + [-46.7934904176445, -24.192586813170916], + [-46.79349116165253, -24.192588451169616], + [-46.79349230366371, -24.192590576167635], + [-46.79359430662194, -24.192766551977908], + [-46.79359632564169, -24.19277030797422], + [-46.793597250651416, -24.1927722509726], + [-46.79365218724333, -24.192892625879622], + [-46.79365246924633, -24.19289321887919], + [-46.79365372825853, -24.192895546876915], + [-46.793654197262946, -24.192896315876006], + [-46.79375212113858, -24.19305032668847], + [-46.79375246414162, -24.193050848687857], + [-46.79375373515224, -24.193052584685276], + [-46.79375509016275, -24.19305419868256], + [-46.79375564716693, -24.193054797681334], + [-46.7938348817505, -24.19313721551447], + [-46.793836500762644, -24.19313895651112], + [-46.79383947878589, -24.193142502505044], + [-46.79384219780848, -24.193146219499596], + [-46.793843937823965, -24.193148908496195], + [-46.79396901796364, -24.193352767259253], + [-46.79396919796531, -24.193353063258932], + [-46.79404979170423, -24.19348595610679], + [-46.794050319709086, -24.193486842105866], + [-46.79405248673032, -24.193490853101917], + [-46.794053659742644, -24.193493343099934], + [-46.79415626786478, -24.193723765928212], + [-46.79415670186966, -24.19372476392748], + [-46.79423468974681, -24.1939080637999], + [-46.79423527175318, -24.19390938279895], + [-46.794314446605426, -24.194082576664805], + [-46.794314705608244, -24.19408315066435], + [-46.79436022410594, -24.194185309588164], + [-46.79436093311386, -24.194186963587054], + [-46.794361758123586, -24.19418906358575], + [-46.794416010787295, -24.19433464850345], + [-46.79441632079097, -24.19433543750295], + [-46.794417503803835, -24.19433806450099], + [-46.79445971324041, -24.194424378427364], + [-46.79446090025199, -24.1944265754251], + [-46.79446171525928, -24.194427863423588], + [-46.79446262026681, -24.19442910042177], + [-46.79446361127455, -24.194430280419745], + [-46.79446478828322, -24.194431506417278], + [-46.79446642929471, -24.194433017413722], + [-46.794530221732536, -24.194488524275506], + [-46.79453219374558, -24.194490103271125], + [-46.7945334837538, -24.19449100826825], + [-46.794535013763145, -24.194491941264786], + [-46.79453685877394, -24.19449292726065], + [-46.79591054769939, -24.195181753101174], + [-46.79591285071242, -24.195182790095853], + [-46.79591435272048, -24.195183357092276], + [-46.795915891728434, -24.195183833088667], + [-46.795917460736334, -24.19518421608495], + [-46.795919054744054, -24.19518450408104], + [-46.79592066475149, -24.19518469507712], + [-46.79592228575874, -24.195184789073153], + [-46.795923909765655, -24.195184786069124], + [-46.79592553077235, -24.19518468606505], + [-46.7959271397786, -24.195184488061052], + [-46.79592873278451, -24.195184195056985], + [-46.79593029979012, -24.195183806052906], + [-46.795931836795305, -24.195183325048912], + [-46.79593333579997, -24.195182752045003], + [-46.79593479080427, -24.19518209004112], + [-46.7959361958081, -24.19518134303739], + [-46.79593754481136, -24.195180513033765], + [-46.795938830814194, -24.19517960303028], + [-46.795940049816515, -24.195178619026922], + [-46.795941666819076, -24.19517713002232], + [-46.79594208581955, -24.19517670502119], + [-46.79597285985617, -24.195144580933242], + [-46.7959743468581, -24.195143074929085], + [-46.79597779086348, -24.19513990291939], + [-46.79598145287044, -24.19513694490919], + [-46.79598531787886, -24.19513421289868], + [-46.795989369888815, -24.19513171788769], + [-46.79599359190024, -24.19512947187641], + [-46.795997963913074, -24.195127483864862], + [-46.79600044992082, -24.19512649485835], + [-46.79609881023189, -24.19508929060109], + [-46.79610082123812, -24.195088490595843], + [-46.79617498246348, -24.195057330400722], + [-46.79617639946776, -24.195056714396937], + [-46.796179610477246, -24.195055274388523], + [-46.796181452482735, -24.19505447638369], + [-46.79618595749695, -24.195052755371854], + [-46.79619057551246, -24.19505130835985], + [-46.79619419552519, -24.195050384350544], + [-46.796289803869456, -24.195028349105563], + [-46.796338446044494, -24.19501709298086], + [-46.79634022905075, -24.195016636976295], + [-46.79634278605936, -24.195015835969617], + [-46.79634302006014, -24.195015750968984], + [-46.79638981220889, -24.194998323846775], + [-46.79639164321456, -24.194997600841905], + [-46.79639329021944, -24.194996882837586], + [-46.796394379222825, -24.194996417834684], + [-46.796398883237046, -24.19499469682292], + [-46.79640350125246, -24.194993249810924], + [-46.79640821226913, -24.194992081798908], + [-46.79641299628714, -24.194991199786745], + [-46.79641783330608, -24.19499060677447], + [-46.79642013931533, -24.194990426768683], + [-46.796483559575066, -24.194986395609973], + [-46.796484264577984, -24.19498634060819], + [-46.796486511586785, -24.19498606560249], + [-46.79648899259599, -24.194985607596145], + [-46.796590826963055, -24.1949622403352], + [-46.796591842966734, -24.19496201433267], + [-46.79659662698456, -24.194961131320515], + [-46.79660120600251, -24.194960563308896], + [-46.796723372491236, -24.19494890100175], + [-46.79672716050612, -24.194948429992145], + [-46.796761365637, -24.194943160905417], + [-46.79676411164725, -24.194942653898476], + [-46.79676673765658, -24.194942002891686], + [-46.796839101905704, -24.19492144970482], + [-46.79683936690654, -24.194921374704137], + [-46.79684407792331, -24.194920207692018], + [-46.796845420928165, -24.19491992968857], + [-46.79687556703963, -24.19491395961169], + [-46.79692072520651, -24.194905002496455], + [-46.79692418921955, -24.19490439348768], + [-46.79692902623857, -24.19490380047552], + [-46.79693389525849, -24.19490349846332], + [-46.796938775279344, -24.194903489451185], + [-46.79694364530107, -24.19490377243916], + [-46.79694848432356, -24.194904347427407], + [-46.796953272346585, -24.194905212415826], + [-46.79695798937021, -24.19490636240453], + [-46.79696183439011, -24.194907529395437], + [-46.79696462840461, -24.194908393388797], + [-46.79696619741249, -24.194908776385088], + [-46.79696779142023, -24.194909063381242], + [-46.79696940242765, -24.19490925537734], + [-46.79697102243491, -24.194909349373358], + [-46.79697264644182, -24.194909346369233], + [-46.796974267448434, -24.19490924636527], + [-46.79697587645477, -24.19490904836117], + [-46.79697746946068, -24.19490875535711], + [-46.79697903646628, -24.194908366353065], + [-46.79698059147153, -24.194907879349064], + [-46.796984268483094, -24.194906476339515], + [-46.79698650049025, -24.194905662333607], + [-46.79699111850576, -24.194904215321596], + [-46.79699582952243, -24.194903048309587], + [-46.79703984170629, -24.194901472199803], + [-46.79712419218372, -24.19494064200462], + [-46.797272379880376, -24.194961531644605], + [-46.79727407988833, -24.19496176664049], + [-46.797278868911434, -24.19496263162891], + [-46.79728358493498, -24.194963780617627], + [-46.79728401293722, -24.194963900616635], + [-46.79752194315533, -24.195031050050538], + [-46.797524554168874, -24.195031835044304], + [-46.79774958534593, -24.195103768511956], + [-46.79775095635303, -24.19510417650874], + [-46.797752933362915, -24.195104658504054], + [-46.79775458937087, -24.19510495749999], + [-46.79775719938301, -24.19510527249366], + [-46.797953841278705, -24.195123288012436], + [-46.79795842730002, -24.19512384100112], + [-46.797963215323016, -24.19512470498962], + [-46.79796793134667, -24.19512585497834], + [-46.79797255537068, -24.195127284967334], + [-46.79797672939326, -24.19512884995757], + [-46.79806951990283, -24.19516669674102], + [-46.7980718669155, -24.195167576735518], + [-46.798073493923916, -24.195168079731697], + [-46.79807609393697, -24.195168713725423], + [-46.798239457736976, -24.1952025373324], + [-46.79824195574902, -24.195202982326304], + [-46.79824483176234, -24.195203325319305], + [-46.798370179332295, -24.195214484012347], + [-46.798374972354544, -24.195215055000634], + [-46.79837976137758, -24.195215918989142], + [-46.79838042138079, -24.195216061987566], + [-46.798468152814024, -24.195235424776897], + [-46.79847062182594, -24.195235895770878], + [-46.798682910842096, -24.19527195825729], + [-46.79868611585772, -24.195272569249518], + [-46.79869083288128, -24.195273719238234], + [-46.798695456905364, -24.195275149227303], + [-46.79869996892975, -24.195276854216687], + [-46.79870434995437, -24.195278825206604], + [-46.79870662696755, -24.195279983201264], + [-46.798766988320885, -24.195311960063002], + [-46.798767817325675, -24.195312382061147], + [-46.798769787336724, -24.195313268056644], + [-46.79877128834489, -24.195313835053078], + [-46.79877282735282, -24.19531431104947], + [-46.798774397360724, -24.19531469404567], + [-46.79877599036835, -24.195314981041737], + [-46.79877760137586, -24.19531517303784], + [-46.798779222383054, -24.195315267033948], + [-46.798781603393245, -24.195315263028043], + [-46.79878192739462, -24.195315249027125], + [-46.798807941501835, -24.195313823962156], + [-46.79880979250953, -24.195313743957534], + [-46.79881467253035, -24.19531373494541], + [-46.79881954255211, -24.195314018933384], + [-46.798824381574484, -24.195314593921626], + [-46.79882916959761, -24.19531545791004], + [-46.79883388662115, -24.195316607898768], + [-46.79883636863398, -24.195317336892916], + [-46.79886596178804, -24.195326556822778], + [-46.79886686679265, -24.195326822820554], + [-46.798869498805885, -24.195327463814326], + [-46.79887055781103, -24.19532766981179], + [-46.79892586007684, -24.195337422678115], + [-46.79892856508994, -24.195337947671558], + [-46.79893259011002, -24.195338909661892], + [-46.79912573208989, -24.195390393201233], + [-46.79912642409336, -24.195390580199604], + [-46.799131048117445, -24.19539201018867], + [-46.799132527125366, -24.19539253418523], + [-46.7994510128345, -24.195508940436874], + [-46.79945203483995, -24.195509304434406], + [-46.79961014467976, -24.19556414906193], + [-46.7996120446899, -24.195564836057454], + [-46.80005827909843, -24.19573256901059], + [-46.80005926510368, -24.19573294800822], + [-46.80022750801952, -24.195798787614486], + [-46.800228882026964, -24.195799339611206], + [-46.80023235404642, -24.195800875603197], + [-46.8002894253707, -24.195827801471268], + [-46.80045612531786, -24.195906451085904], + [-46.800456888322174, -24.19590681608419], + [-46.800632508326956, -24.19599203667895], + [-46.80063547634367, -24.195993368672003], + [-46.80063630234817, -24.195993694670097], + [-46.80076630804552, -24.196041093364563], + [-46.8008272014292, -24.19608255122833], + [-46.80109024210287, -24.1962670966419], + [-46.80109212711497, -24.196268463637676], + [-46.801093750125666, -24.196269716634173], + [-46.80128522439662, -24.19642178621349], + [-46.80128564339932, -24.196422109212584], + [-46.80128779441299, -24.196423616207827], + [-46.80128906742082, -24.196424411204944], + [-46.80148099558126, -24.19653856776966], + [-46.80148373559802, -24.19654027776345], + [-46.80148642661506, -24.1965421247575], + [-46.801657582712885, -24.19666517637687], + [-46.801659778726844, -24.196666683371916], + [-46.80176375937321, -24.196734488138215], + [-46.801763863373765, -24.19673455613798], + [-46.80176774039848, -24.196737273129386], + [-46.801771416422895, -24.196740218121295], + [-46.80177487444719, -24.196743377113844], + [-46.80177809947095, -24.196746736107073], + [-46.80178107849422, -24.19675028210089], + [-46.80178379751683, -24.19675399809551], + [-46.80178624653875, -24.196757870090774], + [-46.801788413560004, -24.1967618810869], + [-46.80178955557208, -24.196764302084958], + [-46.80181080280405, -24.196811861049206], + [-46.801811269809015, -24.1968128510484], + [-46.801812213818145, -24.196814598046736], + [-46.8018130288255, -24.196815886045197], + [-46.80181393383306, -24.19681712304332], + [-46.80181492484079, -24.196818303041294], + [-46.80181623385047, -24.19681966703855], + [-46.80181739785865, -24.19682075003605], + [-46.80191516353506, -24.196907660824586], + [-46.801915218535434, -24.1969077088245], + [-46.80191773655219, -24.196909737818938], + [-46.80198657600183, -24.196961950666807], + [-46.80198992002416, -24.19696464465952], + [-46.80199337704835, -24.19696780265206], + [-46.801996603072126, -24.19697116264529], + [-46.80199958109537, -24.19697470763918], + [-46.802002301118094, -24.196978424633713], + [-46.80200475014008, -24.196982296628985], + [-46.80200691716116, -24.196986306625032], + [-46.802008794181525, -24.19699043862194], + [-46.80201037220078, -24.196994674619532], + [-46.80201043620165, -24.196994869619452], + [-46.80201290123439, -24.197002345615928], + [-46.802014103249114, -24.197005573614184], + [-46.80204930864609, -24.19708861755652], + [-46.80204954464868, -24.19708918155617], + [-46.80205112266803, -24.197093416553784], + [-46.802052395686324, -24.197097738552166], + [-46.80205250968816, -24.19709818755198], + [-46.8020551947316, -24.197108979549185], + [-46.80205604274689, -24.19711291854858], + [-46.802056689762885, -24.19711735554847], + [-46.80205701977755, -24.19712182154926], + [-46.802057029790866, -24.19712629755084], + [-46.80205671980277, -24.197130765553233], + [-46.8020560928132, -24.19713520455637], + [-46.80205515082218, -24.197139596560312], + [-46.80205389782962, -24.19714392256498], + [-46.80205233883557, -24.197148164570336], + [-46.80205048083981, -24.197152303576427], + [-46.80204833084251, -24.197156321583186], + [-46.80204589984369, -24.19716020259066], + [-46.8020431968431, -24.19716392959866], + [-46.80204023384098, -24.197167486607324], + [-46.80203702383724, -24.197170858616506], + [-46.80203358083186, -24.19717402962616], + [-46.80202991782502, -24.197176988636308], + [-46.80202605281657, -24.19717972064682], + [-46.80202200080655, -24.1971822146578], + [-46.80201777979514, -24.197184461669096], + [-46.80201340678231, -24.19718644968064], + [-46.802008902768094, -24.197188170692485], + [-46.802004284752655, -24.19718961870448], + [-46.80199957373591, -24.197190785716515], + [-46.80199478971799, -24.197191667728774], + [-46.80198995269908, -24.197192261740945], + [-46.80198508367918, -24.197192563753077], + [-46.80198020365825, -24.197192572765175], + [-46.80197533263649, -24.197192288777238], + [-46.801973003625875, -24.197192048782906], + [-46.801963749583045, -24.197190960805486], + [-46.80196191157439, -24.19719072280995], + [-46.80185249306003, -24.19717530307597], + [-46.80184955604648, -24.19717496708311], + [-46.80184881204306, -24.197174911084932], + [-46.80178530275949, -24.19717099024113], + [-46.801780192737326, -24.19717091425378], + [-46.80177925273346, -24.197170973256114], + [-46.801776517722814, -24.19717130826297], + [-46.80169843442428, -24.19718345346109], + [-46.801695785414445, -24.197183945467884], + [-46.801694176408695, -24.19718434447195], + [-46.80169263940358, -24.197184825475986], + [-46.80169114039882, -24.197185398479874], + [-46.80168953139414, -24.197186130484106], + [-46.801687559388796, -24.19718716848943], + [-46.80164016226464, -24.197213774616543], + [-46.801638001259334, -24.19721510462243], + [-46.80163671525651, -24.197216014625923], + [-46.80163549625418, -24.197216998629298], + [-46.8016343502524, -24.197218054632515], + [-46.801632855250716, -24.19721962463673], + [-46.80163242925029, -24.197220118638008], + [-46.801579875211466, -24.19728294579086], + [-46.801579316211054, -24.19728363779255], + [-46.80157810021092, -24.197285315796133], + [-46.801576752211496, -24.197287466800226], + [-46.80153578524736, -24.197358763927465], + [-46.80153463924884, -24.19736091593107], + [-46.80153399425038, -24.197362352933222], + [-46.801533475252285, -24.19736376493496], + [-46.80153305825481, -24.19736520493653], + [-46.8015327442578, -24.19736666593778], + [-46.80153253626127, -24.19736814393885], + [-46.80153243326521, -24.197369629939583], + [-46.80153243626964, -24.197371119940176], + [-46.80153254627452, -24.19737260594045], + [-46.80153276127985, -24.197374082940474], + [-46.80153308128547, -24.197375542940136], + [-46.801533505291594, -24.197376981939644], + [-46.80153433130179, -24.197379199938386], + [-46.801544470415394, -24.197402884921623], + [-46.8015447954191, -24.197403658921164], + [-46.801545726430135, -24.19740604591963], + [-46.80157236575923, -24.19747856987958], + [-46.80157272976358, -24.197479504878984], + [-46.801573558772525, -24.197481328877565], + [-46.80157427977954, -24.197482662876357], + [-46.80157509478692, -24.19748395187473], + [-46.80157618279592, -24.19748543987259], + [-46.80157723880431, -24.197486718870362], + [-46.80162731619008, -24.19754450276687], + [-46.80162896420227, -24.197546219763357], + [-46.80163011521025, -24.197547271760893], + [-46.801631338218414, -24.197548251758196], + [-46.80163310922972, -24.197549492754263], + [-46.80163379623393, -24.19754992575265], + [-46.801660289395265, -24.197566079692795], + [-46.801662319407754, -24.197567362688226], + [-46.80166619743245, -24.197570079679537], + [-46.80166987245689, -24.197573024671456], + [-46.80167333048109, -24.197576182663997], + [-46.80167655550488, -24.197579542657223], + [-46.80167953452812, -24.197583087651118], + [-46.801681009540225, -24.19758503764813], + [-46.80170592274824, -24.197619231598555], + [-46.80170645575265, -24.19761993559745], + [-46.80170817476606, -24.197621981593908], + [-46.801708686769935, -24.197622532592895], + [-46.80175141008493, -24.197667068502785], + [-46.80175297409666, -24.197668752499563], + [-46.80175351410075, -24.19766936049847], + [-46.801783139327746, -24.197703114437026], + [-46.80178557034561, -24.19770565043184], + [-46.80183737571786, -24.197756352321456], + [-46.801840512740995, -24.197759625314873], + [-46.80184349176425, -24.19776317130877], + [-46.80184621178697, -24.197766887303377], + [-46.80184683479236, -24.19776781930206], + [-46.80189300019849, -24.19783807921272], + [-46.80189316219983, -24.197838321212426], + [-46.80189424220895, -24.197839844210232], + [-46.80195259569338, -24.19791891609383], + [-46.80195362170198, -24.197920344091816], + [-46.80198949700779, -24.197971675021154], + [-46.801990688017675, -24.197973283018737], + [-46.801991813026454, -24.197974621016453], + [-46.80199288603436, -24.197975739014186], + [-46.801994384044875, -24.19797710801089], + [-46.80199528805093, -24.19797785100899], + [-46.80203593732033, -24.198009992919605], + [-46.80203811233496, -24.19801178191483], + [-46.80204157035915, -24.198014939907473], + [-46.80204234436472, -24.198015706905796], + [-46.80207978763672, -24.198053362826272], + [-46.802081570649264, -24.198054991822495], + [-46.80208279365731, -24.198055970819894], + [-46.80208408466563, -24.198056875816906], + [-46.80208543667381, -24.198057700813834], + [-46.802086844682066, -24.198058442810648], + [-46.802088302690194, -24.19805909880727], + [-46.802089804698376, -24.19805966680376], + [-46.8020913437063, -24.19806014180007], + [-46.80209291371419, -24.19806052479634], + [-46.80209509872473, -24.19806091979101], + [-46.802095927728594, -24.198061030789088], + [-46.80218431813827, -24.198071500573484], + [-46.80218510114183, -24.19807158157159], + [-46.80218733915183, -24.198071712565984], + [-46.80218896315881, -24.198071709562054], + [-46.80219165516979, -24.198071542555308], + [-46.80225486242241, -24.198065434396216], + [-46.80225521242385, -24.198065401395333], + [-46.80225772043397, -24.19806520938902], + [-46.80227328349787, -24.198064258350076], + [-46.80227564450768, -24.19806414934424], + [-46.80228052452849, -24.198064139332047], + [-46.802285394550246, -24.198064423320115], + [-46.80229023457263, -24.198064998308332], + [-46.80229502259576, -24.198065862296744], + [-46.8022997386194, -24.198067012285456], + [-46.8023014966284, -24.19806751928122], + [-46.802330394777975, -24.19807622021266], + [-46.802333261792946, -24.198077143205953], + [-46.802337774817374, -24.19807884819533], + [-46.8023397088281, -24.198079678190815], + [-46.80238305407101, -24.19809898109016], + [-46.80238550108481, -24.19810012308448], + [-46.80238973210954, -24.198102353074805], + [-46.80239379513436, -24.198104832065646], + [-46.802397673159014, -24.198107550056942], + [-46.802401349183526, -24.19811049404886], + [-46.80240480720772, -24.198113653041396], + [-46.80240669322142, -24.19811556303738], + [-46.802408168232276, -24.198117116034336], + [-46.80240950724234, -24.198118564031528], + [-46.80241248626568, -24.198122110025352], + [-46.802415205288305, -24.198125827019993], + [-46.80241765431028, -24.19812969901528], + [-46.8024198223314, -24.198133709011376], + [-46.802421698351736, -24.198137841008187], + [-46.80242327737103, -24.198142077005777], + [-46.80242454938929, -24.19814639800418], + [-46.80242551140642, -24.19815078600337], + [-46.8024261584224, -24.198155223003372], + [-46.8024264564348, -24.198158969003927], + [-46.802428068538354, -24.19819157901161], + [-46.802428100540624, -24.198192299011765], + [-46.80242811055395, -24.198196775013372], + [-46.80242780156583, -24.198201242015752], + [-46.80242717457634, -24.1982056810189], + [-46.80242623158533, -24.198210073022835], + [-46.80242497859278, -24.198214399027393], + [-46.80242341959864, -24.198218641032856], + [-46.80242318359937, -24.198219211033624], + [-46.802419510609624, -24.198227980045896], + [-46.8024178886133, -24.198231549051204], + [-46.802415738616006, -24.19823556705797], + [-46.80241330761699, -24.19823944806545], + [-46.80241060461649, -24.19824317507345], + [-46.80240764161438, -24.198246732082108], + [-46.80240443161062, -24.198250104091187], + [-46.80240098860525, -24.198253275100843], + [-46.8023973255984, -24.198256234111085], + [-46.80239346058988, -24.198258966121614], + [-46.80239252558769, -24.19825957312419], + [-46.80239145958515, -24.198260254127057], + [-46.80238879457936, -24.198262134134307], + [-46.802353373506584, -24.19828879423173], + [-46.80234963049844, -24.198291434242016], + [-46.80234557848847, -24.1982939282529], + [-46.80234135747699, -24.198296174264193], + [-46.80233698546424, -24.198298163275837], + [-46.80233248045003, -24.1982998842876], + [-46.802330280442746, -24.198300612293263], + [-46.8023133903861, -24.198305930337085], + [-46.80231270438397, -24.198306157338887], + [-46.80231061837741, -24.198306955344414], + [-46.80230916337309, -24.19830761634824], + [-46.80230775836925, -24.198308364351952], + [-46.80230641036592, -24.198309194355577], + [-46.80230512336311, -24.198310103359173], + [-46.802303904360855, -24.198311088362548], + [-46.802302334358394, -24.1983125343669], + [-46.80230177035773, -24.198313108368563], + [-46.802258203306835, -24.19835890749302], + [-46.80225769730636, -24.198359457494533], + [-46.80225633530533, -24.19836109249844], + [-46.802255436305096, -24.19836233250113], + [-46.80225462730558, -24.198363624503614], + [-46.80225391130641, -24.1983649615059], + [-46.80225329330788, -24.198366339507853], + [-46.802252575310526, -24.198368293510324], + [-46.80225236531172, -24.198368970511066], + [-46.802250601322115, -24.198375041517668], + [-46.80225039432347, -24.198375806518413], + [-46.80224996532752, -24.198377804520195], + [-46.80224975633107, -24.198379282521287], + [-46.80224965433504, -24.19838076852201], + [-46.802249658340315, -24.198382547522705], + [-46.802249764345675, -24.198384192522976], + [-46.80225583356922, -24.198450834531876], + [-46.802256165577425, -24.198453107531876], + [-46.80225648558306, -24.198454568531556], + [-46.80225690858918, -24.198456006531035], + [-46.80225752859678, -24.19845766953007], + [-46.802258235604505, -24.198459260528825], + [-46.80231553820678, -24.19857959142973], + [-46.80231568220828, -24.19857989542951], + [-46.802370376787636, -24.198696279335394], + [-46.80237039878779, -24.198696324335454], + [-46.80237149179855, -24.19869834833345], + [-46.80237230680584, -24.19869963733188], + [-46.80237321181337, -24.19870087433004], + [-46.80237421382119, -24.198702066327968], + [-46.802376054834745, -24.19870398532418], + [-46.802533933968434, -24.1988582549876], + [-46.802537109991924, -24.198861566980895], + [-46.80254008901519, -24.198865111974822], + [-46.80254280903781, -24.198868828969342], + [-46.802542931038886, -24.198869008969105], + [-46.80257218629237, -24.19891226191203], + [-46.80257370730507, -24.198914340908985], + [-46.802574699312835, -24.19891552090687], + [-46.802575772320814, -24.198916638904613], + [-46.802576923328786, -24.198917689902228], + [-46.80257814633696, -24.19891866989954], + [-46.802579911348225, -24.198919906895522], + [-46.80258061935254, -24.198920353893964], + [-46.80273660630248, -24.199015372540845], + [-46.80273866231504, -24.199016671536224], + [-46.80274254033977, -24.199019388527617], + [-46.8027462163642, -24.199022333519537], + [-46.80274954538754, -24.199025367512338], + [-46.80290160347638, -24.199172925187842], + [-46.80290351148968, -24.199174664183708], + [-46.80290476949808, -24.19917567218093], + [-46.80290606050622, -24.19917657617805], + [-46.80290741251447, -24.19917740117505], + [-46.80290957952714, -24.199178543170003], + [-46.80308423351755, -24.199260266765847], + [-46.80308584152657, -24.199260975762073], + [-46.803087638536354, -24.19926165375791], + [-46.80308937654536, -24.19926219175383], + [-46.80309144855574, -24.199262707748836], + [-46.803102354609685, -24.199265137722655], + [-46.80310625562926, -24.199266109713314], + [-46.80311087965331, -24.199267539702376], + [-46.80311539267763, -24.19926924469175], + [-46.803119773702264, -24.19927121568159], + [-46.80312400472699, -24.19927344567187], + [-46.803128068751796, -24.19927592466272], + [-46.803131945776435, -24.19927864265401], + [-46.803134019790114, -24.199280255649498], + [-46.80331011796587, -24.199422386263283], + [-46.803310914971185, -24.199423006261583], + [-46.80331311898512, -24.19942455125663], + [-46.80331379398923, -24.199424977255145], + [-46.803354208235504, -24.199449631163663], + [-46.80335488723965, -24.199450030162144], + [-46.803356826250884, -24.19945105215769], + [-46.80335828425919, -24.199451709154282], + [-46.803359786267265, -24.199452276150797], + [-46.80336153727633, -24.199452817146607], + [-46.80336356328661, -24.199453323141796], + [-46.80350472798478, -24.199484873802696], + [-46.803507663998886, -24.199485403795645], + [-46.803509829009, -24.199485684790304], + [-46.80351138301633, -24.199485901786552], + [-46.80351617203946, -24.19948676577496], + [-46.803520888063005, -24.19948791576367], + [-46.803525512087, -24.199489345752742], + [-46.80353002511141, -24.199491049742118], + [-46.80353440613603, -24.199493021731936], + [-46.803538637160756, -24.199495251722244], + [-46.803542701185485, -24.199497730713073], + [-46.803546578210224, -24.199500448704455], + [-46.803550254234636, -24.199503392696375], + [-46.803551647244255, -24.19950461569328], + [-46.80369008920715, -24.19962935139443], + [-46.80369036820907, -24.19962959639377], + [-46.803692148220904, -24.199631022389884], + [-46.803693438229146, -24.199631927386996], + [-46.8036947912374, -24.199632752384012], + [-46.803696199245564, -24.199633494380745], + [-46.80369765725377, -24.199634150377328], + [-46.80369915926195, -24.19963471737377], + [-46.8037013052731, -24.199635381368733], + [-46.80370198827653, -24.199635559367103], + [-46.80376220157825, -24.199650334222937], + [-46.80376443058953, -24.19965091521766], + [-46.80376905461361, -24.199652345206644], + [-46.803772740633406, -24.199653713198007], + [-46.803949602600746, -24.199724459784374], + [-46.80395154261118, -24.19972517977978], + [-46.80395329662034, -24.199725721775664], + [-46.80395486562822, -24.199726104771855], + [-46.80395645963588, -24.199726391768035], + [-46.803958069643386, -24.199726583764107], + [-46.803959690650565, -24.199726677760122], + [-46.803961314657464, -24.199726674756114], + [-46.80396293566415, -24.19972657375204], + [-46.80396566867483, -24.199726238745114], + [-46.80404224796754, -24.19971432255078], + [-46.80404606298175, -24.199713615541086], + [-46.80413738531458, -24.199693940307355], + [-46.80413878431964, -24.19969362230376], + [-46.80421826560384, -24.19967465009983], + [-46.80422066261229, -24.199674028093607], + [-46.8042954478695, -24.199652759900392], + [-46.80429789987774, -24.19965198589397], + [-46.804299468882725, -24.19965138588991], + [-46.804301715889345, -24.199650364883972], + [-46.80441425820051, -24.199592747583967], + [-46.804415313203464, -24.19959221758123], + [-46.80441968621629, -24.19959022956967], + [-46.80442419023042, -24.199588507557827], + [-46.80442767624204, -24.199587386548874], + [-46.804501995495066, -24.199565361356488], + [-46.8045037485009, -24.199564798351886], + [-46.80450552150652, -24.199564120347247], + [-46.80450697651074, -24.19956345834345], + [-46.80450861151519, -24.199562588339088], + [-46.804510246519236, -24.199561598334686], + [-46.80461671177305, -24.199493407046017], + [-46.80461907877888, -24.199491951039665], + [-46.804664515894075, -24.19946515891725], + [-46.804665331896054, -24.199464683915096], + [-46.80466955390756, -24.199462437903808], + [-46.8046739259204, -24.19946044989225], + [-46.804678430934516, -24.199458727880483], + [-46.804683047950036, -24.199457280868483], + [-46.804687759966775, -24.199456112856364], + [-46.80469140698037, -24.199455413847012], + [-46.80472756311719, -24.199449338755123], + [-46.804730373127576, -24.199448799748], + [-46.804768155264114, -24.19944026365118], + [-46.80476890626683, -24.199440097649237], + [-46.80477369028475, -24.199439214636982], + [-46.80477852730365, -24.199438621624825], + [-46.80478339632366, -24.199438319612668], + [-46.80478827634449, -24.199438310600467], + [-46.80479314636623, -24.19943859358853], + [-46.804797986388635, -24.19943916857675], + [-46.80479943739556, -24.19943939957325], + [-46.804840120590086, -24.199446239474657], + [-46.804843457606275, -24.199446873466584], + [-46.80484817462982, -24.19944802345529], + [-46.804850257640645, -24.199448629450377], + [-46.804879517792436, -24.199457575380894], + [-46.80488009079543, -24.199457742379565], + [-46.80488231180645, -24.19945828337428], + [-46.80488390481418, -24.199458571370446], + [-46.8048855158216, -24.199458762366458], + [-46.80488713682886, -24.19945885736246], + [-46.80488943783872, -24.199458852356766], + [-46.80489057284342, -24.199458801353924], + [-46.80489165984796, -24.199458759351273], + [-46.804896539868814, -24.199458749339176], + [-46.80490140989055, -24.199459033327134], + [-46.80490624991294, -24.19945960831536], + [-46.80491103793606, -24.199460472303777], + [-46.8049157539597, -24.19946162229249], + [-46.80492037898368, -24.19946305228145], + [-46.80492489100808, -24.19946475627093], + [-46.80492927203273, -24.199466728260752], + [-46.80492948803396, -24.19946683326023], + [-46.8049318410472, -24.199467892254784], + [-46.80493334305527, -24.199468459251214], + [-46.80493550306649, -24.199469127246164], + [-46.80493614106976, -24.199469294244643], + [-46.804981033281514, -24.199475860135482], + [-46.80503877866398, -24.199521431008513], + [-46.805041450680314, -24.19952310000252], + [-46.805045328704935, -24.199525817993827], + [-46.80504900372947, -24.199528761985732], + [-46.80505246175366, -24.199531920978274], + [-46.80505467676984, -24.199534178973604], + [-46.80513581137393, -24.19962070080323], + [-46.80513682238151, -24.199621801801115], + [-46.80513980040486, -24.19962534779493], + [-46.80514026840858, -24.19962595079403], + [-46.80516451560625, -24.199657567745085], + [-46.805166767625046, -24.199660680740607], + [-46.80516921664705, -24.19966455273597], + [-46.80517138366824, -24.199668562732004], + [-46.80517326068849, -24.199672695728818], + [-46.80517483870786, -24.19967693072643], + [-46.80517611172617, -24.19968125172479], + [-46.80517707374327, -24.199685640724], + [-46.805177720759175, -24.19969007672397], + [-46.805178049773836, -24.199694542724764], + [-46.80517800979042, -24.199700191726915], + [-46.805177055840645, -24.199718497735844], + [-46.805177029851144, -24.19972208373713], + [-46.80517711785509, -24.19972327673736], + [-46.805177332860396, -24.199724752737286], + [-46.80517765386613, -24.19972621373705], + [-46.805178076872146, -24.19972765173654], + [-46.80517860187864, -24.199729061735763], + [-46.805179245885554, -24.199730477734608], + [-46.80518043389719, -24.199732683732464], + [-46.805200291083395, -24.19976680269545], + [-46.80520236610368, -24.19977065569164], + [-46.80520424312406, -24.19977478768846], + [-46.80520582114332, -24.19977902368603], + [-46.80520709416161, -24.199783344684434], + [-46.80520744116735, -24.1997847636841], + [-46.805208235180835, -24.19978818268328], + [-46.80520885019226, -24.199791151682877], + [-46.805209497208224, -24.199795588682864], + [-46.80520982622291, -24.199800054683664], + [-46.80520983623624, -24.199804530685256], + [-46.80520952724813, -24.19980899868756], + [-46.80520908425615, -24.19981234868985], + [-46.80520314534102, -24.199849534717874], + [-46.80520296234345, -24.19985062271879], + [-46.80520252234816, -24.1998528617206], + [-46.805175556604425, -24.199978221832428], + [-46.80517505360872, -24.199980375834475], + [-46.80517466261139, -24.199981852835926], + [-46.805155648733184, -24.200050375907605], + [-46.80515561073345, -24.200050519907737], + [-46.80515497073949, -24.200053502910396], + [-46.80514923882146, -24.200089394937493], + [-46.80514905482387, -24.200090483938343], + [-46.80514811283289, -24.200094875942256], + [-46.80514685984034, -24.200099201946912], + [-46.80514530084618, -24.200103442952315], + [-46.805143442850614, -24.200107581958378], + [-46.80514129285333, -24.200111600965112], + [-46.8051388618543, -24.20011548197251], + [-46.805138374854394, -24.200116193974036], + [-46.80509147085401, -24.200183828114632], + [-46.80509019885466, -24.20018585911851], + [-46.80508929285581, -24.20018755312143], + [-46.8050887428569, -24.200188737123145], + [-46.805048835956875, -24.200280084254953], + [-46.80504875595718, -24.200280274255167], + [-46.80504798496003, -24.2002823712578], + [-46.80504756796257, -24.20028381025938], + [-46.80504725496555, -24.200285272260718], + [-46.80504704596901, -24.2002867492617], + [-46.80504687897546, -24.20028916826302], + [-46.8050438523127, -24.200407251312754], + [-46.80504386531929, -24.20040945431351], + [-46.8050439843246, -24.200411062313748], + [-46.805044199329906, -24.200412538313785], + [-46.805044664338126, -24.200414657313374], + [-46.80504476233971, -24.2004150213133], + [-46.80505190144404, -24.20043989730441], + [-46.8050523744512, -24.200441638303914], + [-46.805053336468305, -24.200446027303023], + [-46.805053983484285, -24.200450463303092], + [-46.805054127489285, -24.200451932303217], + [-46.8050619057909, -24.200542417316314], + [-46.80506191679125, -24.200542526316312], + [-46.80506226479985, -24.20054491231622], + [-46.80506269580772, -24.200546930315955], + [-46.80509562534666, -24.200681103282196], + [-46.80509630135635, -24.20068340028128], + [-46.805096827362824, -24.200684809280503], + [-46.80509745136951, -24.20068618427947], + [-46.805098457379344, -24.200688045277598], + [-46.80509880538258, -24.200688618277006], + [-46.80519549425179, -24.20084204809186], + [-46.805195964255866, -24.20084276409093], + [-46.80519719326613, -24.20084444408853], + [-46.80519852527654, -24.200846030085764], + [-46.80519916528131, -24.20084671708446], + [-46.805267248782116, -24.20091723394067], + [-46.80526768078527, -24.200917667939784], + [-46.80526930079657, -24.200919147936236], + [-46.805270523804715, -24.200920127933554], + [-46.80527214281497, -24.20092126292992], + [-46.805273357822436, -24.200922021927266], + [-46.80531184805547, -24.200944970839863], + [-46.80531198005617, -24.20094504783958], + [-46.80531408806857, -24.200946158834743], + [-46.805316475081916, -24.200947232829208], + [-46.80619518590453, -24.201304186775676], + [-46.80619745091668, -24.201305034770257], + [-46.80619987792932, -24.201305784764564], + [-46.80619999892994, -24.201305816764272], + [-46.809395870032255, -24.202119504120805], + [-46.809397323039505, -24.20211984311726], + [-46.8093993130491, -24.202120202112475], + [-46.809400924056526, -24.20212039310856], + [-46.80940254506378, -24.202120488104583], + [-46.809404169070675, -24.20212048510054], + [-46.80940665508091, -24.202120330094306], + [-46.81025845842882, -24.20201908794311], + [-46.81089781798573, -24.201957966333712], + [-46.81267413471312, -24.20199840793711], + [-46.81308609658082, -24.202033278926432], + [-46.813090422600126, -24.20203354491579], + [-46.81309526262262, -24.20203411990394], + [-46.813095504623774, -24.202034155903355], + [-46.81519754355129, -24.202346124793802], + [-46.816785964104895, -24.202599364938532], + [-46.82057229436716, -24.20463700325676], + [-46.8213388618748, -24.205049629498557], + [-46.82388001585008, -24.20642830467303], + [-46.823881435858496, -24.20642909066975], + [-46.823882815866725, -24.206429893666684], + [-46.830146142770175, -24.210161129418257], + [-46.83034017294446, -24.21027671897674], + [-46.83133294993742, -24.210862939715255], + [-46.837125161911196, -24.214285167516213], + [-46.8376667241814, -24.21460511228162], + [-46.83842797582251, -24.215069777551385], + [-46.839020925444125, -24.215433879204202], + [-46.84034865952428, -24.216239231183888], + [-46.84035319353472, -24.21623623817154], + [-46.84381138146241, -24.218293948288242], + [-46.845317674603194, -24.219198565856285], + [-46.845320295619324, -24.219200199850373], + [-46.849042049712125, -24.22160534642767], + [-46.84937522279477, -24.2218257996753], + [-46.850746865369345, -24.22273338557741], + [-46.85120469423979, -24.223039138544134], + [-46.85521899422897, -24.22565922446096], + [-46.85552069010723, -24.225856137778152], + [-46.85753000753418, -24.227139985219896], + [-46.857735827807126, -24.22727149375294], + [-46.85961937262422, -24.22853113749842], + [-46.85961943662465, -24.228531178498272], + [-46.8596212016357, -24.22853236949432], + [-46.861073722837986, -24.229533575223073], + [-46.86133968352306, -24.22971689862409], + [-46.86268958600742, -24.23062450357521], + [-46.86290772637851, -24.230771170082523], + [-46.863837017335285, -24.231434809996884], + [-46.8641854405688, -24.231683631214715], + [-46.86642007580501, -24.233249705187628], + [-46.86696620428439, -24.233632441958754], + [-46.86900595324305, -24.2350494863639], + [-46.871604678618745, -24.23680951649204], + [-46.87195401575946, -24.2370257536955], + [-46.87511806211645, -24.23930837259187], + [-46.87511854911956, -24.23930870059069], + [-46.87512125913605, -24.23931035258456], + [-46.87516530339741, -24.239334749483053], + [-46.87516790741267, -24.23933611447704], + [-46.875497770312215, -24.239499453710156], + [-46.875500152325614, -24.23950052370458], + [-46.87550165533379, -24.23950109070108], + [-46.8755039803459, -24.239501808695483], + [-46.87550406234632, -24.23950183069529], + [-46.8757740277073, -24.239570642045095], + [-46.875775533714965, -24.239571042041508], + [-46.87578015973898, -24.239572470030488], + [-46.87578467276337, -24.239574173019765], + [-46.87578905578803, -24.239576143009486], + [-46.8757932888128, -24.239578371999706], + [-46.87579376681571, -24.23957864499862], + [-46.876068577465176, -24.23973715536754], + [-46.87607119048119, -24.239738733361527], + [-46.8763625112778, -24.239922840698178], + [-46.876364064287266, -24.239923771694613], + [-46.87636640830092, -24.239925005689194], + [-46.876366627302176, -24.239925109688706], + [-46.87659570359731, -24.240030464153328], + [-46.87659708160494, -24.240031065150056], + [-46.876599670619, -24.240032052143928], + [-46.87683408486793, -24.24011427558716], + [-46.87683805688945, -24.240115790577722], + [-46.87683923389596, -24.240116287574992], + [-46.87706878117468, -24.24021548403619], + [-46.87707198719278, -24.24021695702872], + [-46.87707622021757, -24.240219186018933], + [-46.87708028524232, -24.240221663009674], + [-46.877082266254824, -24.240223005005216], + [-46.877533211128444, -24.24053892098892], + [-46.87753388113253, -24.240539373987428], + [-46.87753573714392, -24.240540505983127], + [-46.87753714715221, -24.2405412479799], + [-46.8775396991665, -24.24054239497395], + [-46.877563687300146, -24.2405527549176], + [-46.878111250349995, -24.2407892176323], + [-46.87820775391487, -24.240840055408977], + [-46.87838397794641, -24.240932889001083], + [-46.878583592281004, -24.241093686558447], + [-46.87884580429682, -24.241392858007693], + [-46.87884842631513, -24.241395250001922], + [-46.879048508679865, -24.24156544856141], + [-46.879048832682095, -24.241565721560647], + [-46.87923275792998, -24.24171996815495], + [-46.87923327593345, -24.241720406153856], + [-46.8792367349578, -24.241723564146213], + [-46.87923964097909, -24.241726567140063], + [-46.87948734985077, -24.24199822761586], + [-46.879488960862695, -24.241999892612373], + [-46.879490201871405, -24.24200102460965], + [-46.87949142487949, -24.242002003606938], + [-46.879492944889186, -24.242003067603516], + [-46.87949450989873, -24.24200403759993], + [-46.879914970435486, -24.242250785635417], + [-46.87991523943703, -24.242250941634808], + [-46.88020929320538, -24.24242156895963], + [-46.88021134721748, -24.242422679954817], + [-46.88058359238379, -24.242614539091623], + [-46.88058627939966, -24.242615993085376], + [-46.880587242405525, -24.242616549083188], + [-46.88101222796922, -24.242865870108158], + [-46.881014703983816, -24.24286719610235], + [-46.88126121341059, -24.242991626529715], + [-46.881264477429895, -24.24299337452213], + [-46.881266385441386, -24.242994493517777], + [-46.88167955795824, -24.24324502657262], + [-46.881680915966534, -24.2432458705695], + [-46.881923428465214, -24.243400056017123], + [-46.881924386470985, -24.243400654015], + [-46.88198838786078, -24.243439414868554], + [-46.88240397839154, -24.243691105917645], + [-46.882627818852846, -24.24385955741681], + [-46.882753845672624, -24.243953388134546], + [-46.88275400767369, -24.243953509134194], + [-46.88275498768012, -24.243954256132056], + [-46.882888699562095, -24.244057920833924], + [-46.882888836563005, -24.244058024833613], + [-46.8828909105764, -24.24405950382891], + [-46.88304461054599, -24.244163866481145], + [-46.88304740256312, -24.24416558047471], + [-46.88318720640156, -24.24424594715336], + [-46.883190886424075, -24.244248204144963], + [-46.883194215445165, -24.244250512137448], + [-46.88331913725398, -24.244342254857113], + [-46.88331968725762, -24.244342663855917], + [-46.88332336528218, -24.24434560584773], + [-46.88332682430633, -24.244348762840183], + [-46.88332720830914, -24.244349139839386], + [-46.8834587962612, -24.24447929155571], + [-46.88346067427435, -24.24448100555166], + [-46.88346277828846, -24.24448269054697], + [-46.88362841533349, -24.24459518317211], + [-46.88397478251893, -24.244830418388283], + [-46.88423482031153, -24.245057875817395], + [-46.88423534431499, -24.245058264816286], + [-46.884238005332556, -24.24506035481033], + [-46.88447870595516, -24.245258578277618], + [-46.88447972196204, -24.245259430275457], + [-46.88448318198631, -24.24526258826788], + [-46.88448640901015, -24.245265945260996], + [-46.88448740901784, -24.245267081258806], + [-46.88457416069018, -24.24536783507708], + [-46.88457462269379, -24.245368360076046], + [-46.88457564170141, -24.24536945607389], + [-46.884801490371814, -24.245604940591274], + [-46.884803022383245, -24.24560658958799], + [-46.884806003406574, -24.24561013358179], + [-46.88480806442366, -24.24561289857766], + [-46.88493901653765, -24.24579808931465], + [-46.884940045546095, -24.245799469312516], + [-46.884941224555334, -24.24580087231007], + [-46.88494248956468, -24.245802187307394], + [-46.884943816574086, -24.245803417304515], + [-46.88518028220901, -24.246011848785898], + [-46.88518217822173, -24.246013365781625], + [-46.885183469229894, -24.246014269778787], + [-46.88518525124081, -24.246015355774734], + [-46.88518622324656, -24.246015883772415], + [-46.88548679000036, -24.246172250075432], + [-46.88548814800824, -24.246172936072345], + [-46.885810080858015, -24.246330820322378], + [-46.88581223287049, -24.246331917317374], + [-46.886112969634155, -24.246491327621026], + [-46.88611487364541, -24.246492371616633], + [-46.8861189386702, -24.24649484960736], + [-46.88612239369216, -24.24649724959957], + [-46.886462402897024, -24.246748050836725], + [-46.88646282789974, -24.246748366835778], + [-46.88646367190535, -24.246749007833845], + [-46.886763549880406, -24.24698036516451], + [-46.88676626489767, -24.246982266158437], + [-46.88698303623537, -24.247119397664118], + [-46.88698397724119, -24.247120002661944], + [-46.886987856265876, -24.247122718653245], + [-46.88699153429045, -24.247125661645047], + [-46.88699499431472, -24.24712881863749], + [-46.88699771933472, -24.247131623631695], + [-46.88702020749322, -24.24715245558266], + [-46.88721917689581, -24.247336768149204], + [-46.887342167894246, -24.24749466289656], + [-46.88734399890705, -24.2474963338926], + [-46.88734522291522, -24.247497312889873], + [-46.887346513923376, -24.247498216886942], + [-46.88734842993514, -24.247499384882587], + [-46.887348941938136, -24.247499665881413], + [-46.8875438370815, -24.247603088430004], + [-46.887545709092585, -24.2476041154257], + [-46.88754977411735, -24.247606593416407], + [-46.88755365314214, -24.2476093084077], + [-46.88755558115485, -24.247610802403326], + [-46.887681709997004, -24.24771195312314], + [-46.8876823840015, -24.247712475121574], + [-46.887684905017586, -24.247714239115858], + [-46.88781356481413, -24.247796491822807], + [-46.887814101817426, -24.24779683882161], + [-46.88796483975618, -24.24789502647877], + [-46.88796494075672, -24.247895092478547], + [-46.88796831077815, -24.247897430470957], + [-46.88824286655692, -24.248099341854576], + [-46.88824470156858, -24.248100613850454], + [-46.888246190577604, -24.248101521847033], + [-46.888248584591636, -24.248102781841503], + [-46.88848705595778, -24.248218333285315], + [-46.888487206958665, -24.248218406284977], + [-46.888490442977506, -24.248220079277523], + [-46.88881161687783, -24.248395902535467], + [-46.88881261388375, -24.248396458533097], + [-46.88881667890854, -24.24839893552384], + [-46.88881949892637, -24.248400872517443], + [-46.88912269887801, -24.24861958083517], + [-46.889123757884846, -24.248620358832852], + [-46.88912410188705, -24.24862061783212], + [-46.88932757721904, -24.248774829376817], + [-46.889329099228895, -24.248775931373366], + [-46.88950800536837, -24.24890095796935], + [-46.88950996838102, -24.24890237896495], + [-46.889513645405486, -24.24890532095676], + [-46.889517105429775, -24.24890847794921], + [-46.88951994445074, -24.248911407943183], + [-46.88973669808706, -24.24914841348329], + [-46.88973708708995, -24.2491488414825], + [-46.88974006711338, -24.2491523854763], + [-46.889742789136115, -24.24915610047083], + [-46.889745240158184, -24.249159971466003], + [-46.889747413179485, -24.24916398646193], + [-46.88984448217872, -24.249359247286925], + [-46.88984574819122, -24.249361587284593], + [-46.88984656219844, -24.249362873283008], + [-46.88984746820609, -24.249364110281206], + [-46.88984846021387, -24.24936528927914], + [-46.889849534221796, -24.24936640727683], + [-46.889850686229785, -24.24936745727423], + [-46.88985191023808, -24.24936843627148], + [-46.88985320124622, -24.24936934026868], + [-46.88985504325752, -24.249370463264462], + [-46.88985580826202, -24.249370881262628], + [-46.89105960126686, -24.249990392467016], + [-46.89154101713942, -24.249593127125365], + [-46.89174191553449, -24.249437698568983], + [-46.89191235751952, -24.24952316017239], + [-46.89221835953791, -24.249760159489085], + [-46.89255336157575, -24.24996215872122], + [-46.892847363189915, -24.250081158027225], + [-46.89316836479405, -24.25015815725095], + [-46.89380036823163, -24.250403155754995], + [-46.89427237103237, -24.250664154664733], + [-46.895544379012655, -24.25151215177615], + [-46.896674386032636, -24.252242149201706], + [-46.89751539115177, -24.25275014727309], + [-46.898313576040884, -24.253242507446036], + [-46.89899839982638, -24.253528143831137], + [-46.89938740232607, -24.253807142954063], + [-46.90009540659491, -24.254221141325182], + [-46.90080041091685, -24.25465713971134], + [-46.901732416327114, -24.25513213754251], + [-46.9031814246354, -24.255836134158262], + [-46.90333892551755, -24.25590563378802], + [-46.90349642639959, -24.255975133417678], + [-46.90421143030053, -24.25625613172455], + [-46.90436543118114, -24.25633013136452], + [-46.90510843584273, -24.256825129674993], + [-46.90569443945526, -24.257194128335037], + [-46.90646344378813, -24.25754212652934], + [-46.90734744907432, -24.25804412448857], + [-46.908730457909485, -24.259018121360477], + [-46.9088524586233, -24.25908212107702], + [-46.90922746068621, -24.259235120190386], + [-46.909555462634984, -24.259417119431458], + [-46.91064946995838, -24.26029911699474], + [-46.910944813998626, -24.260558285344114], + [-46.91133674651731, -24.26083918445889], + [-46.91159414913574, -24.261011741873382], + [-46.91160840923593, -24.261024803842155], + [-46.91191552717815, -24.26123441914487], + [-46.91194403637845, -24.261260535082457], + [-46.91230738955859, -24.26146925524386], + [-46.9123144896084, -24.2614757482283], + [-46.91234994887684, -24.261514697152812], + [-46.91235704992673, -24.26152119213733], + [-46.91274861842155, -24.261794609250178], + [-46.91277714362185, -24.26182073618773], + [-46.91280571776389, -24.261827314118413], + [-46.9133127757394, -24.262096236940433], + [-46.913982995998666, -24.262560518420617], + [-46.91401149917934, -24.26258012535594], + [-46.91468948533251, -24.262997882800565], + [-46.91558882910024, -24.263638303766744], + [-46.916737996017225, -24.26430541911572], + [-46.91796099756637, -24.265077994315366], + [-46.9189313594823, -24.265666308084718], + [-46.92002807021012, -24.266345006568034], + [-46.92068579228051, -24.26676393106255], + [-46.92119184950329, -24.267116530914585], + [-46.92121310067246, -24.267142594870283], + [-46.92125535194455, -24.267173061774713], + [-46.92198331963372, -24.26769799512923], + [-46.922696936039856, -24.26814900649426], + [-46.92347715484003, -24.268636310704455], + [-46.92379501481462, -24.26884120097743], + [-46.92386256623426, -24.268884743822973], + [-46.92443415568184, -24.26921869750374], + [-46.924455498851366, -24.269244776459058], + [-46.92483425329676, -24.269519715603213], + [-46.92554712063951, -24.26995054296257], + [-46.92638214178153, -24.270473547046883], + [-46.927245611221366, -24.271055189079636], + [-46.92899056546447, -24.272313781131885], + [-46.92901896264462, -24.272333309067236], + [-46.92904021579413, -24.272352825020597], + [-46.929068554993506, -24.272378846958386], + [-46.929103982242715, -24.272411376880637], + [-46.92912530037302, -24.272424404831625], + [-46.929153704553144, -24.272443938766955], + [-46.929189197783174, -24.27246998168681], + [-46.929217605963395, -24.27248951862222], + [-46.92924608312436, -24.27250256855515], + [-46.92928205027888, -24.272502757465073], + [-46.92932520646414, -24.272502984356787], + [-46.929368473611014, -24.272490227243836], + [-46.92939004670368, -24.272490341189773], + [-46.92942599785812, -24.272490532099624], + [-46.92945481496239, -24.272484193025154], + [-46.92949098603979, -24.272458420925474], + [-46.92951283303626, -24.2724260878597], + [-46.92952743302102, -24.27240020881419], + [-46.92954927401749, -24.272367883748323], + [-46.92956425098499, -24.27233570769973], + [-46.92957207194146, -24.27231003967134], + [-46.929594296979374, -24.272290998608998], + [-46.929615836111, -24.27230414655947], + [-46.92962969726745, -24.272336518535777], + [-46.929643696405186, -24.272362454509516], + [-46.92964302149898, -24.272394658522224], + [-46.929642211611466, -24.272433315537477], + [-46.92964185570727, -24.272465714549455], + [-46.929620076691585, -24.27249155761295], + [-46.92959829467594, -24.272517403676442], + [-46.92957656664105, -24.27253676273749], + [-46.92956191167558, -24.272569144785454], + [-46.92956168775253, -24.27259511179482], + [-46.929561407848816, -24.272627573806634], + [-46.929575560987466, -24.272653617780055], + [-46.92958971512623, -24.272679662753376], + [-46.929611113276565, -24.272699250706403], + [-46.929632567407644, -24.272712345657073], + [-46.92965396555809, -24.272731933610086], + [-46.929696870820166, -24.272758121511288], + [-46.92971832295125, -24.272771214461972], + [-46.929761279194246, -24.272790906360925], + [-46.92978997033681, -24.272797539291123], + [-46.92983292157968, -24.27281722919019], + [-46.92986150076091, -24.272836848125106], + [-46.92990444800375, -24.272856536024], + [-46.92991876308465, -24.27286309799032], + [-46.92995452329666, -24.272882749907314], + [-46.92999033348939, -24.272895905822], + [-46.9300189076706, -24.272915522757003], + [-46.930033168770734, -24.2729285777256], + [-46.930061741951924, -24.272948192660717], + [-46.930083082121484, -24.272974268615993], + [-46.93010452425252, -24.27298735556669], + [-46.93013304545286, -24.273013464503986], + [-46.9303830320327, -24.27318344393474], + [-46.93077674940556, -24.273412751025063], + [-46.93192106394352, -24.274292794453622], + [-46.932399334853606, -24.274580480351375], + [-46.933013441736726, -24.274998702952622], + [-46.934055043430384, -24.275743731592147], + [-46.93506964683996, -24.276432553279985], + [-46.935591722215115, -24.276812608098723], + [-46.93624849238029, -24.277263821603533], + [-46.936839504964844, -24.277615339239297], + [-46.93741092851099, -24.277982007929346], + [-46.93765325021383, -24.278203749396365], + [-46.93768449940365, -24.27822242732427], + [-46.93811092699378, -24.278477292340174], + [-46.93814570220504, -24.27849807725994], + [-46.93888782606683, -24.27905952758736], + [-46.93946539571583, -24.27945157627025], + [-46.93973687630965, -24.27959546263738], + [-46.940549514512966, -24.280170055791682], + [-46.94058513170462, -24.280183122706777], + [-46.941137973509676, -24.280662261481037], + [-46.94155315511628, -24.280938558532096], + [-46.94178105963017, -24.281117838020535], + [-46.942008964143966, -24.281297117509002], + [-46.94236029242319, -24.281555321714105], + [-46.942877845780636, -24.281935691543207], + [-46.9433485118743, -24.282294988482775], + [-46.944047182466626, -24.282828338908537], + [-46.94568992015489, -24.28404580319411], + [-46.94648783629388, -24.284619623383577], + [-46.9467441178996, -24.284788960797016], + [-46.94690279893636, -24.28490798943859], + [-46.948285110968385, -24.28594488431597], + [-46.94964801976542, -24.286931065224227], + [-46.95084456348434, -24.287795372508956], + [-46.95099597147978, -24.287910943167486], + [-46.95131556558093, -24.288154890446503], + [-46.95165095672403, -24.28839028468295], + [-46.95167234587444, -24.28840986463583], + [-46.95169371304426, -24.28843593659088], + [-46.95171510219467, -24.28845551654375], + [-46.95173649134507, -24.288475096496597], + [-46.951765031526264, -24.28849471143152], + [-46.95179357070732, -24.288514326366347], + [-46.951814959857714, -24.28853390531918], + [-46.9523783746077, -24.28897915705335], + [-46.95238549865785, -24.28898569603756], + [-46.952413991858464, -24.289011847974805], + [-46.95244249703956, -24.289031521909827], + [-46.95246387717054, -24.289044656860444], + [-46.95249952436296, -24.289057912775323], + [-46.95253516255532, -24.28907116569012], + [-46.95257791079774, -24.289090949589355], + [-46.95260641095908, -24.28910406852214], + [-46.95263489215925, -24.28913007845934], + [-46.95264913325935, -24.289143084427884], + [-46.952670473448286, -24.289175545385316], + [-46.95268469558723, -24.289201505358264], + [-46.952729389878364, -24.289234716257138], + [-46.9528771418408, -24.28934450792276], + [-46.95445017506191, -24.290504747359392], + [-46.955720566392465, -24.291466849489538], + [-46.95679198247451, -24.292296874074935], + [-46.95753396496636, -24.292734559356255], + [-46.95789208609306, -24.29293207552202], + [-46.95834187400208, -24.293259176500868], + [-46.958348997052205, -24.293265696485147], + [-46.95838449134103, -24.293311188411174], + [-46.95839873744118, -24.293324227379728], + [-46.958420071591256, -24.293343744332688], + [-46.95844843181021, -24.293376185272304], + [-46.95846975896027, -24.29339569422524], + [-46.9584980531983, -24.293434577167236], + [-46.95851931236746, -24.293460526122505], + [-46.95854064451736, -24.293480040075362], + [-46.95856908871742, -24.293506059012596], + [-46.95859028690562, -24.293538454970225], + [-46.958611489093855, -24.293570856927857], + [-46.95863276126308, -24.293596820883117], + [-46.95864692238227, -24.293616279854], + [-46.95866819855145, -24.29364224880926], + [-46.95869672173244, -24.293661835744118], + [-46.95871800190164, -24.293687808699378], + [-46.958739347051726, -24.293707334652183], + [-46.95876780925195, -24.2937333715894], + [-46.958789119382104, -24.29374633154017], + [-46.95912973971714, -24.294037908781654], + [-46.95915828191797, -24.2940640277186], + [-46.95964376495908, -24.294384225605132], + [-46.96022202759406, -24.2947698282802], + [-46.960773176267544, -24.295206699040676], + [-46.9615172402269, -24.295796484367106], + [-46.96328359659256, -24.297061128347785], + [-46.964057144793294, -24.297688996612234], + [-46.9644345204078, -24.298020985774166], + [-46.96481189602238, -24.298352973936026], + [-46.96550742162731, -24.298893776367155], + [-46.965792500612956, -24.299148033735047], + [-46.96606122457059, -24.299416193148847], + [-46.96689001200777, -24.30004394827328], + [-46.967682646289326, -24.300671304488542], + [-46.968331369833486, -24.301258221052453], + [-46.96885099317564, -24.301629564868616], + [-46.96889143946728, -24.301668888780057], + [-46.9693052294501, -24.30207118887325], + [-46.96941637923831, -24.302174940628245], + [-46.97044543653624, -24.30313550235921], + [-46.97084056833858, -24.303504333487954], + [-46.97163799791032, -24.304220857720015], + [-46.972442457511285, -24.304937013933877], + [-46.972714904329635, -24.305153499320255], + [-46.9731972965493, -24.305536808233565], + [-46.973652644656106, -24.305921049215264], + [-46.97401584627022, -24.306272649418112], + [-46.97487766606535, -24.306971624481008], + [-46.974910237284405, -24.30699804140776], + [-46.97530912987577, -24.307291402500965], + [-46.97632195033523, -24.307996312184816], + [-46.97635457554324, -24.308019018110226], + [-46.97703857916105, -24.308579696574288], + [-46.97754403779998, -24.30906911246432], + [-46.978380298723906, -24.30984678061695], + [-46.97844541415515, -24.309897394469882], + [-46.97941140355366, -24.310648247286096], + [-46.980611105542835, -24.311594797578316], + [-46.98065850887678, -24.311638272473278], + [-46.98128114026398, -24.31220930809459], + [-46.98216193147051, -24.31301711014385], + [-46.98438784795199, -24.314990814190043], + [-46.985110559151536, -24.3156888176004], + [-46.986570420655084, -24.317098768388675], + [-46.987225172266704, -24.317698189936973], + [-46.98837769716681, -24.318681197357012], + [-46.988391918267006, -24.318694215325475], + [-46.98842034044769, -24.318713793260336], + [-46.988441670597915, -24.318733319213035], + [-46.988455879688296, -24.318743107180453], + [-46.988470089778694, -24.318752895147878], + [-46.98849850595945, -24.318772469082717], + [-46.988519812090054, -24.318785534033324], + [-46.988555262261976, -24.31879223794602], + [-46.988583620403354, -24.318798889876707], + [-46.98861202458403, -24.318818457811567], + [-46.98863334573421, -24.318837975764207], + [-46.98863350085195, -24.31887673177678], + [-46.98864068796087, -24.318902621767315], + [-46.98865498411992, -24.318935023742075], + [-46.98871913468846, -24.319032385612676], + [-46.988911027001144, -24.31919515918281], + [-46.98935770332749, -24.319663651211904], + [-46.990628647710125, -24.320969390439924], + [-46.99108416607424, -24.32143773944639], + [-46.991403897467634, -24.321777098752527], + [-46.9917978234165, -24.322195206897526], + [-46.99197730171476, -24.3223707005029], + [-46.992516651616114, -24.322898074317155], + [-46.99333421057723, -24.32371302952473], + [-46.994036451957605, -24.3244990630136], + [-46.99446856321636, -24.324965466077813], + [-46.99482105687474, -24.325345932314484], + [-46.99514245952431, -24.32576751164327], + [-46.99575401808727, -24.326411254313154], + [-46.99602994034438, -24.326767308734922], + [-46.99649150475183, -24.327241091726826], + [-46.99687517106454, -24.327793776941782], + [-46.99720315463126, -24.328178473241387], + [-46.997709618553934, -24.328759012155214], + [-46.99812251183392, -24.329259407278673], + [-46.998559204026215, -24.329697057321095], + [-46.998905081659686, -24.330078453574068], + [-46.999273000330845, -24.3304410937651], + [-46.99929423351989, -24.33047352972225], + [-46.999315527689575, -24.33049950967711], + [-46.99934394190947, -24.330531998616156], + [-46.999365238079164, -24.330557980570923], + [-46.99938653624888, -24.330583963525783], + [-46.99940065838768, -24.330609901498743], + [-46.999429020626934, -24.33064885844004], + [-46.99945037777735, -24.33066838239259], + [-46.9994681199221, -24.330691116355275], + [-46.999485862066734, -24.33071385131801], + [-46.999507111255824, -24.330746307275124], + [-46.99952836244499, -24.330778767232264], + [-46.99956385473444, -24.330824247157647], + [-46.99959228195434, -24.330856751096672], + [-46.99962767828258, -24.33091518202659], + [-46.999634697371484, -24.330934637015424], + [-46.99965591058007, -24.330973588974732], + [-46.99967000473844, -24.331006036949937], + [-46.9996840509163, -24.33104496692741], + [-46.99970522414445, -24.331090416889058], + [-46.999733620383914, -24.331129423830216], + [-46.99974772554248, -24.33116189380541], + [-46.9997617847205, -24.331200853782867], + [-46.99979014497944, -24.331246361726294], + [-46.99980434909929, -24.331265874696886], + [-46.99983267037782, -24.331317879642597], + [-46.999853957567254, -24.331350400599643], + [-46.99988241978755, -24.331382946538554], + [-46.99989662890733, -24.33140246550918], + [-46.99991796507737, -24.33142850046385], + [-46.999946387317145, -24.331467543405054], + [-46.99995347238677, -24.331480552391504], + [-46.9999676015456, -24.331513067366622], + [-46.99998179766541, -24.331532590337257], + [-46.99999599178525, -24.331552113307822], + [-47.000010106944046, -24.331584636282987], + [-47.000031423114, -24.331610678237816], + [-47.000031265191986, -24.33163668324689], + [-47.000052585362006, -24.331662732201604], + [-47.00005951150977, -24.331701768197124], + [-47.00008792074949, -24.331740850138253], + [-47.00010216584994, -24.33175388710662], + [-47.000123423059094, -24.33179296706593], + [-47.00022007385053, -24.33191787386327], + [-47.00024144200095, -24.331937370815705], + [-47.000255502178256, -24.331976090793127], + [-47.000269611336336, -24.332008386768152], + [-47.00029089452531, -24.33204075772512], + [-47.00030505566419, -24.332066630697952], + [-47.00032638883396, -24.332092574652695], + [-47.00034768102302, -24.33212495760966], + [-47.0003689762122, -24.332157346566543], + [-47.00039744543218, -24.33218980450543], + [-47.000425959632885, -24.332215825442024], + [-47.000440176752576, -24.33223527741258], + [-47.0004686539727, -24.332267744351345], + [-47.000490044123275, -24.332287263303886], + [-47.000511328332, -24.33232614926296], + [-47.000539825552224, -24.33235865420179], + [-47.00053976261087, -24.332378133208437], + [-47.000561132781, -24.33240413916311], + [-47.00058963500136, -24.332436652101812], + [-47.0006038561409, -24.332462651074543], + [-47.00063952543168, -24.332508307999618], + [-47.000646641521286, -24.33252786898807], + [-47.000682315812035, -24.332573541913153], + [-47.00071083907228, -24.332619202856215], + [-47.00072511817282, -24.33263225782449], + [-47.00076080444412, -24.332671413747352], + [-47.000782212614666, -24.33269751370197], + [-47.00079647973486, -24.332717085672343], + [-47.000825014975455, -24.332756229613207], + [-47.00084642214602, -24.332782329567817], + [-47.00086067728588, -24.33280841854047], + [-47.000889224506814, -24.332841046479125], + [-47.00090350360744, -24.332854101447396], + [-47.00091774676695, -24.332886706422272], + [-47.00093201488727, -24.332906279392738], + [-47.000967714138795, -24.332938917313395], + [-47.00098913328969, -24.33295850026573], + [-47.001010552440604, -24.33297808421812], + [-47.001039124622125, -24.332997678152438], + [-47.00106769580372, -24.33301727208668], + [-47.00108911495464, -24.333036855039065], + [-47.00113199019744, -24.333056471937258], + [-47.00116056137897, -24.33307606587152], + [-47.0011819935102, -24.33308913282171], + [-47.001210563691714, -24.333108726756024], + [-47.001231983842615, -24.333128309708428], + [-47.00126056700456, -24.333141386640534], + [-47.001289139186085, -24.33316098057478], + [-47.00131772234794, -24.333174058506888], + [-47.00134630550989, -24.333187135439008], + [-47.0013820287221, -24.333206740355266], + [-47.00140346085323, -24.333219806305458], + [-47.00142488000424, -24.33323938925784], + [-47.00146060721673, -24.33325910617406], + [-47.001474886317375, -24.333272172142312], + [-47.00150346747973, -24.333285387074504], + [-47.001532055622484, -24.333292142004414], + [-47.00156777281554, -24.3333054259186], + [-47.0017034703419, -24.33328747656959], + [-47.001924469841015, -24.333470354071817], + [-47.00191735890802, -24.333502571100606], + [-47.00191024195556, -24.33352834212708], + [-47.00191025807292, -24.333567111139953], + [-47.00193166126287, -24.333599619096685], + [-47.00194593440249, -24.333625603069255], + [-47.00197446660365, -24.33365171100575], + [-47.00198873672382, -24.333671232976183], + [-47.00201013587452, -24.33369081292863], + [-47.00203866005607, -24.333710451863066], + [-47.00206005820688, -24.33373003081542], + [-47.00208145435765, -24.33374960976788], + [-47.00210997253916, -24.333769243702356], + [-47.00212424665926, -24.33378876667278], + [-47.00215277386036, -24.33381487060927], + [-47.00217416801116, -24.333834446561738], + [-47.002195498181585, -24.33386061251656], + [-47.00221681233236, -24.333880297469257], + [-47.00222389242185, -24.333899877457792], + [-47.002245187592294, -24.333926063412704], + [-47.002266477762596, -24.333952242367637], + [-47.00228776293287, -24.33397841532247], + [-47.002309044103086, -24.334004582277398], + [-47.00233741332351, -24.33403729221651], + [-47.00235158844342, -24.33405689718724], + [-47.002365749583106, -24.334083001160156], + [-47.002387010753075, -24.334109144115033], + [-47.002408254942736, -24.334141783072216], + [-47.00242240708225, -24.33416787304507], + [-47.002436569202146, -24.334187457015776], + [-47.00244361931116, -24.33421350100662], + [-47.002464849500676, -24.33424611696375], + [-47.00247899264012, -24.33427218993669], + [-47.00249310981875, -24.33431125791404], + [-47.0025001798884, -24.334324290900515], + [-47.00251431702778, -24.334350351873475], + [-47.002528440186744, -24.334382907848607], + [-47.002535483295574, -24.33440892983938], + [-47.00254253738489, -24.334428453828057], + [-47.00254957949371, -24.334454471818916], + [-47.00254951959175, -24.334486959829807], + [-47.002670315659856, -24.334669091584942], + [-47.00267747976912, -24.334695077575496], + [-47.00269177094831, -24.334734071552365], + [-47.002706042107754, -24.3347665765271], + [-47.00272031526714, -24.33479908550178], + [-47.00273456840687, -24.334825100474387], + [-47.002748844566405, -24.334857615449145], + [-47.00275599465599, -24.33487712343758], + [-47.00277027381545, -24.334909644412313], + [-47.00278450793555, -24.334929166382736], + [-47.00279876607525, -24.334955190355377], + [-47.002813048234835, -24.3349877183301], + [-47.00282020232448, -24.335007236318432], + [-47.0028274054537, -24.335039766311063], + [-47.00284169261334, -24.335072306285788], + [-47.002848897742616, -24.33510484827841], + [-47.00287024591278, -24.33513088823302], + [-47.00288456309227, -24.335169948209867], + [-47.002891722182, -24.335189481198263], + [-47.00289889829157, -24.33521552518871], + [-47.00291300245031, -24.335248036163865], + [-47.002920035559065, -24.33527404315476], + [-47.00293412373741, -24.335313047132136], + [-47.00294823387639, -24.33533904210503], + [-47.00296940506536, -24.335371525062328], + [-47.00299764828448, -24.33540399000174], + [-47.00300466141277, -24.335436478994847], + [-47.00301873759094, -24.335475451972144], + [-47.00303282174949, -24.335507918947346], + [-47.00303278484769, -24.33554042195826], + [-47.00309105549546, -24.33567210185468], + [-47.00310519761567, -24.335691814825516], + [-47.00312640678619, -24.33571814478059], + [-47.00314054094549, -24.335750793755743], + [-47.0031546740851, -24.335776967728755], + [-47.00317587227511, -24.33580975368602], + [-47.00320413049561, -24.335842672625482], + [-47.003218255654815, -24.335875302600652], + [-47.00323943082504, -24.335901615555894], + [-47.00325335696492, -24.335928143529475], + [-47.00326022107417, -24.33595452252085], + [-47.00328119024456, -24.335981165476756], + [-47.00328799737327, -24.336014080470367], + [-47.00330895054351, -24.336040695426327], + [-47.00332994269401, -24.336060747379882], + [-47.003343780853086, -24.336093755355858], + [-47.00335771297294, -24.336113655327278], + [-47.003371589112426, -24.33614009230094], + [-47.00339249728222, -24.336166645256892], + [-47.00340625444105, -24.33619968023316], + [-47.003433549699956, -24.336246620179697], + [-47.00344035476944, -24.336259977166986], + [-47.00346080795842, -24.336293493126437], + [-47.00347439509734, -24.336320167100833], + [-47.00348791925559, -24.336353340077743], + [-47.003501486394214, -24.336379971052285], + [-47.00350821348302, -24.3363997940418], + [-47.00352171064102, -24.336432904018665], + [-47.003535307759925, -24.336452972991033], + [-47.00354196586802, -24.336479267982885], + [-47.0035554930062, -24.336505811957473], + [-47.0035690101443, -24.336532337932177], + [-47.00357565325219, -24.336558587924063], + [-47.00358902340954, -24.33659165790131], + [-47.00359506253616, -24.336624966897006], + [-47.0036079406927, -24.3366584828756], + [-47.00361396081907, -24.33669170887142], + [-47.00362664199441, -24.336731717852647], + [-47.00363280910115, -24.336758277845888], + [-47.00363880322707, -24.33679138284171], + [-47.00363791034221, -24.33683068685707], + [-47.003637475438474, -24.33686312186897], + [-47.00363712851546, -24.33688905887837], + [-47.00363669361165, -24.336921467890274], + [-47.0036361717271, -24.33696033890452], + [-47.003635910784745, -24.336979766911643], + [-47.003635476880916, -24.337012135923505], + [-47.0036283949281, -24.337037758949922], + [-47.00362887111718, -24.337099547969274], + [-47.00361807025582, -24.33716063501687], + [-47.00356709991011, -24.33744890924145], + [-47.00349710009171, -24.337607909471274], + [-47.00340910034764, -24.337816909763156], + [-47.00330610092081, -24.338151910134872], + [-47.00320410174322, -24.338567910531005], + [-47.00320226776076, -24.338576287538316], + [-47.00315310223021, -24.33880091073726], + [-47.00314981025427, -24.338813513749848], + [-47.00311902247929, -24.33893138786683], + [-47.003118102485935, -24.338934910870346], + [-47.00309410281004, -24.339075910977883], + [-47.00303210297449, -24.33921791118179], + [-47.00290810295218, -24.339385911551076], + [-47.00275710291729, -24.339587911999992], + [-47.00249810242307, -24.339790912722336], + [-47.00239810214938, -24.339841912992146], + [-47.00221010177745, -24.33998491351505], + [-47.00207710174388, -24.3401619139101], + [-47.0020331019339, -24.34028691406286], + [-47.00197310223097, -24.340469914275342], + [-47.00184710205185, -24.340588914633543], + [-47.00170210143415, -24.340589915000503], + [-47.0015658335829, -24.34050139131557], + [-47.001565100578254, -24.340500915317314], + [-47.00141909968088, -24.34041091565656], + [-47.00131109937597, -24.340462915946848], + [-47.00124109960598, -24.340637916181997], + [-47.00123409993017, -24.34075491623859], + [-47.00121506515887, -24.340857412320837], + [-47.001208100242614, -24.3408949163509], + [-47.00119901325659, -24.34091240437972], + [-47.00115510032442, -24.3409969165188], + [-47.001143292314964, -24.341010496553146], + [-47.00107510026045, -24.34108891675163], + [-47.00104210074568, -24.341295916903864], + [-47.001063101265444, -24.341437916898002], + [-47.00106511928526, -24.34144160789407], + [-47.00120907469852, -24.341704915617644], + [-47.00122110281663, -24.3417269165946], + [-47.00147110473142, -24.342005916055182], + [-47.00168510667075, -24.342343915626387], + [-47.00197510978614, -24.342962915098745], + [-47.00221211260199, -24.343557914697143], + [-47.0023161140252, -24.343880914541423], + [-47.00239211487737, -24.344054914407064], + [-47.00251411604756, -24.34426891416965], + [-47.00264311702372, -24.34440891388987], + [-47.0027631180098, -24.34456491363822], + [-47.00285611898329, -24.344754913466126], + [-47.00292311982116, -24.344936913357095], + [-47.002964120774884, -24.345193913338797], + [-47.00296612141325, -24.345401913402895], + [-47.002825121693704, -24.345693913856397], + [-47.002594121446606, -24.34593891452205], + [-47.002350120662285, -24.34602491516773], + [-47.00200811950977, -24.346127916066923], + [-47.00180111901106, -24.346255916632916], + [-47.00166711877038, -24.34636591700838], + [-47.00158711878509, -24.346483917250012], + [-47.00153511898942, -24.34662491742831], + [-47.00153811958362, -24.34681691748451], + [-47.0015591202247, -24.346998917491852], + [-47.001608121288385, -24.347280917461678], + [-47.00174412305166, -24.34767091724722], + [-47.00178712418364, -24.347983917242512], + [-47.001757124660855, -24.348183917384873], + [-47.001694124860464, -24.348338917595637], + [-47.001544125090234, -24.34862691807077], + [-47.001350125228676, -24.348946918667792], + [-47.00117212526282, -24.349209919205407], + [-47.00103112514661, -24.349370919615556], + [-47.000904124975214, -24.34949391997762], + [-47.00073012463284, -24.3496269204619], + [-47.00058712485323, -24.349901920915], + [-47.00046812512798, -24.35016092130211], + [-47.00038412540419, -24.350370921584346], + [-47.00032612555858, -24.35050392177524], + [-47.00022112560558, -24.350667922095322], + [-47.00007012543437, -24.35082492252946], + [-46.99995112539719, -24.35098092288235], + [-46.99985912529393, -24.351076923146998], + [-46.99970412491474, -24.351170923570272], + [-46.99955512448253, -24.351238923969785], + [-46.99934012380999, -24.351320924540794], + [-46.99916612323131, -24.3513759249992], + [-46.99895112237406, -24.351396925550024], + [-46.99874012141887, -24.351379926077986], + [-46.99853012034384, -24.351321926589822], + [-46.998424119596024, -24.3512249268257], + [-46.99834011904543, -24.351161927017152], + [-46.998253118518356, -24.351110927220255], + [-46.99804011736386, -24.35103092773239], + [-46.99792311689907, -24.351042928032236], + [-46.99779911638911, -24.3510499283481], + [-46.99770811585098, -24.35100092856199], + [-46.99761211524909, -24.35093792878384], + [-46.997421114128144, -24.35083792923358], + [-46.9973031134169, -24.35076992950944], + [-46.99720311287655, -24.350732929750002], + [-46.997116112349474, -24.35068192995298], + [-46.99701711181641, -24.350645930191437], + [-46.99690711150883, -24.35069993048759], + [-46.99680811154199, -24.350850930788173], + [-46.99667911136489, -24.3509749311557], + [-46.99666511160771, -24.35107493122432], + [-46.99674711217388, -24.351145931040595], + [-46.996797112715115, -24.35125393095007], + [-46.99703311369568, -24.351243930349952], + [-46.99713711427739, -24.351288930101898], + [-46.997155114687644, -24.351398930093023], + [-46.997089114674395, -24.351487930289547], + [-46.99695311429781, -24.35155593065607], + [-46.996845113922966, -24.351584930938856], + [-46.99690311445301, -24.351677930823087], + [-46.997036115116565, -24.35170893049712], + [-46.99714511559864, -24.35171393022309], + [-46.997334116420305, -24.3517179297464], + [-46.9974701170361, -24.351728929406118], + [-46.99758711759479, -24.35174792911652], + [-46.99771011823061, -24.35178392881746], + [-46.9978381189182, -24.351829928509016], + [-46.997941119395705, -24.35184192825251], + [-46.99806911987736, -24.351819927921525], + [-46.99822512057284, -24.35182892752989], + [-46.99832012116745, -24.3518909273102], + [-46.998502121837916, -24.351854926837955], + [-46.99860612221986, -24.351833926567885], + [-46.998725122793125, -24.351854926273912], + [-46.99889512375448, -24.35193192586954], + [-46.9990001243223, -24.35197092561694], + [-46.999118124888284, -24.351990925325083], + [-46.99922412540285, -24.35201092506359], + [-46.99933912594992, -24.352028924778768], + [-46.99927612595267, -24.35211892496804], + [-46.99914412571441, -24.35222692533777], + [-46.99908712580332, -24.352336925518575], + [-46.99906012600574, -24.35244192562176], + [-46.99908212647548, -24.352565925607383], + [-46.99906912675303, -24.352675925676806], + [-46.999203127496564, -24.352731925356494], + [-46.99927312806598, -24.35282092520899], + [-46.99939012892147, -24.352937924951945], + [-46.99949612964805, -24.353027924713732], + [-46.999568130395645, -24.353172924579805], + [-46.999615130866516, -24.353261924490504], + [-46.99966613147564, -24.353390924404376], + [-46.99972113200505, -24.353487924297543], + [-46.999748132478125, -24.353605924268425], + [-46.999687132580355, -24.353725924462623], + [-46.99971713305414, -24.353839924424566], + [-46.999848133609206, -24.3538379240925], + [-46.999956134002105, -24.353814923811697], + [-47.00006613454602, -24.35383892354137], + [-47.00016413509294, -24.35388092330741], + [-47.00024113562273, -24.353946923134618], + [-47.00024613607425, -24.35408892316909], + [-47.00020013617107, -24.354185923317736], + [-47.00005813587782, -24.354289923711526], + [-46.999931135588355, -24.354373924060724], + [-46.99982313560124, -24.354530924386165], + [-46.999767135691535, -24.354639924564015], + [-46.99972013579313, -24.354739924716164], + [-46.99967113596489, -24.354865924882052], + [-46.99965313639072, -24.355031924982708], + [-46.99970413708776, -24.355189924906234], + [-46.9997991381005, -24.355389924732403], + [-46.99986613882075, -24.355532924610365], + [-46.99990313930647, -24.355640924552702], + [-46.999970139987234, -24.355770924426416], + [-47.00006714084509, -24.355916924229522], + [-47.00020014190254, -24.35607792394655], + [-47.00032114279347, -24.356200923681236], + [-47.000386143326445, -24.356284923544724], + [-47.000473144077844, -24.356409923366098], + [-47.000643145333186, -24.35658392299379], + [-47.000743146000886, -24.35666292276706], + [-47.001357149364296, -24.356904921293847], + [-47.00193515254323, -24.357136919908378], + [-47.00235615484359, -24.35730091889748], + [-47.002657156544984, -24.357436918181005], + [-47.0028351577529, -24.357583917779372], + [-47.002922158531625, -24.357717917603697], + [-47.002964159490325, -24.357974917582737], + [-47.00290816045957, -24.358373917856895], + [-47.00280616148936, -24.358857918275678], + [-47.00278816304877, -24.359397918500495], + [-47.00291316514197, -24.35991191835475], + [-47.00326316939347, -24.360819917770293], + [-47.003790175158116, -24.36197691682039], + [-47.00430218008, -24.362876915822866], + [-47.00461918295993, -24.363378915186875], + [-47.0050251861213, -24.363847914314675], + [-47.005396189078255, -24.364298913524877], + [-47.005746191648036, -24.364651912755853], + [-47.00594119338108, -24.364947912360254], + [-47.00617419555589, -24.36533591189884], + [-47.00633319703758, -24.36559991158385], + [-47.0064711980777, -24.36574791128338], + [-47.00664519924472, -24.3658869108889], + [-47.00691820057808, -24.365940910215528], + [-47.00708220140203, -24.365980909813512], + [-47.00725520213414, -24.365977909374386], + [-47.0073722026051, -24.365967909074772], + [-47.00751920338056, -24.366015908718495], + [-47.00750220373829, -24.366157908808503], + [-47.00736820349474, -24.366266909184024], + [-47.007280203578695, -24.36641890945718], + [-47.007428204858854, -24.366631909153018], + [-47.007666206221174, -24.366744908587666], + [-47.00805820818891, -24.366839907626463], + [-47.008549210550356, -24.366924906411146], + [-47.00894021248643, -24.367010905449398], + [-47.00924021386267, -24.36704090469953], + [-47.00952121512729, -24.367060903994503], + [-47.00978521642821, -24.36711690334432], + [-47.0100322177745, -24.367211902750142], + [-47.010289219370065, -24.36737490215312], + [-47.01061922153015, -24.367620901398684], + [-47.01155522923533, -24.36883889943073], + [-47.0119722326391, -24.36937189855059], + [-47.01314120578272, -24.370734753039667], + [-47.01316807399299, -24.370766076981962], + [-47.01343124405153, -24.37107289541655], + [-47.01477825408381, -24.372476892467233], + [-47.01518525724511, -24.372943891590047], + [-47.01547925943056, -24.373248890945643], + [-47.01565226055428, -24.373374890548835], + [-47.01580226152791, -24.37348389020471], + [-47.01617726390561, -24.373737889338102], + [-47.01652526588541, -24.373898888509228], + [-47.01703426857316, -24.374065887274277], + [-47.01752827130297, -24.374267886088777], + [-47.01774727263898, -24.374398885576806], + [-47.017941273965114, -24.374561885138913], + [-47.018236276149, -24.374864884490997], + [-47.01834227688853, -24.374958884253264], + [-47.01832327735674, -24.37513988436121], + [-47.01833027867715, -24.375564884483644], + [-47.018303279672864, -24.375930884672837], + [-47.0182742805051, -24.37624588485023], + [-47.01823428104424, -24.376479885028917], + [-47.018173281563286, -24.37673688526829], + [-47.018045281561406, -24.376916885652147], + [-47.017936282057, -24.377233886033093], + [-47.01782828308214, -24.37772388646863], + [-47.01776128377291, -24.378045886744694], + [-47.01779528558884, -24.378595886839985], + [-47.017829287404844, -24.379145886935213], + [-47.01793329123991, -24.380261887039733], + [-47.01799629388812, -24.381044887138202], + [-47.01806229578996, -24.381577887146626], + [-47.01823529931081, -24.382492887009747], + [-47.01831630140465, -24.38306788699396], + [-47.01837330442865, -24.383982887151205], + [-47.01829030603547, -24.3846288875747], + [-47.01828476511535, -24.384662967599972], + [-47.0182173070868, -24.385077887907947], + [-47.01817930731278, -24.385205888046563], + [-47.01808230783275, -24.38551388839412], + [-47.01781730834968, -24.386057889245606], + [-47.01767830861982, -24.3863428896922], + [-47.017454308926546, -24.386759890397816], + [-47.017330808802846, -24.386893390755116], + [-47.01720730867896, -24.38702689111233], + [-47.01686630798895, -24.387280892061057], + [-47.01670530756309, -24.387367892498002], + [-47.01644530674321, -24.387464893189545], + [-47.016273306069714, -24.387485893632665], + [-47.0155930591665, -24.387490196359263], + [-47.015324302019536, -24.387491896041368], + [-47.01491430020098, -24.387471897074565], + [-47.01471329942741, -24.387500897593878], + [-47.01454829884764, -24.38754289802617], + [-47.01438529849517, -24.387656898477072], + [-47.014315298474536, -24.387748898685047], + [-47.014274298660276, -24.38786789882831], + [-47.01423329886726, -24.387993898973825], + [-47.014098298795844, -24.388160899371382], + [-47.013928298352525, -24.388254899833566], + [-47.01374829776917, -24.388316900310485], + [-47.01346129662977, -24.3883469010482], + [-47.01310229508451, -24.388344901957907], + [-47.012598292704794, -24.38827290321214], + [-47.012078290156225, -24.388167904496008], + [-47.01155928759376, -24.388056905775265], + [-47.011200285866096, -24.38799490666494], + [-47.01103528528621, -24.388036907097188], + [-47.010798284379376, -24.388072907710043], + [-47.01050528343588, -24.388175908486954], + [-47.010133282171886, -24.38828490946613], + [-47.00986028119562, -24.388348910179488], + [-47.009581280072084, -24.38837291089471], + [-47.00942227937214, -24.38836691129589], + [-47.00923627862311, -24.38838291177282], + [-47.009036277953776, -24.388444912300255], + [-47.00892827759395, -24.388478912585363], + [-47.00883027759588, -24.38861791287975], + [-47.00880427796735, -24.388776912998278], + [-47.00885127882797, -24.388993912950937], + [-47.00897427977159, -24.38913091268447], + [-47.00920828142496, -24.389344912161945], + [-47.00960628369369, -24.389529911214094], + [-47.009795284795686, -24.389625910766597], + [-47.00992528542912, -24.389650910445276], + [-47.01010428629096, -24.38968191000166], + [-47.01025628697614, -24.389692909619935], + [-47.010471287813054, -24.389664909065527], + [-47.010692288447856, -24.389561908471098], + [-47.010842288826744, -24.389474908061995], + [-47.010949289039495, -24.389393907763875], + [-47.01105628941332, -24.389365907483285], + [-47.01120029002768, -24.389364907117848], + [-47.01138129111371, -24.38946690669269], + [-47.011462291737445, -24.38955790651736], + [-47.011646293562386, -24.389898906163445], + [-47.011753295254614, -24.39030490602632], + [-47.01181529767763, -24.391014906103695], + [-47.011786298914316, -24.39146290632531], + [-47.01165430071217, -24.392240906917127], + [-47.01137930320634, -24.393449908014134], + [-47.01088330517824, -24.394798909717974], + [-47.01065730567963, -24.395282910451073], + [-47.010598305809545, -24.39540891064238], + [-47.01036530579769, -24.39573391134074], + [-47.00998230511214, -24.396048912416305], + [-47.00962830446889, -24.39633691340939], + [-47.00951730415081, -24.396388913708048], + [-47.00929930353167, -24.39649291429531], + [-47.00898430246919, -24.396587915125668], + [-47.00866230130368, -24.396658915965727], + [-47.00753429651046, -24.396673918831404], + [-47.00721029513265, -24.396677919654365], + [-47.00680929356741, -24.39672892068808], + [-47.00655929266811, -24.396785921340914], + [-47.006372292151475, -24.396879921846292], + [-47.00624429180895, -24.396947922193316], + [-47.006068291543066, -24.397108922692905], + [-47.00586829114997, -24.39726192325076], + [-47.005676290614915, -24.39735692376905], + [-47.005505290109134, -24.397431924227476], + [-47.005375289593935, -24.397445924561765], + [-47.0051732886969, -24.39743592507072], + [-47.00487028716906, -24.397360925814098], + [-47.00446728505427, -24.397233926793955], + [-47.004372284512975, -24.397189927020257], + [-47.00419928367656, -24.39715892744864], + [-47.00406228309488, -24.397160927796666], + [-47.00391228255767, -24.397195928188538], + [-47.00367628189451, -24.39731092882503], + [-47.0032552805044, -24.3974479299378], + [-47.00315528018166, -24.39748293020299], + [-47.00298127938039, -24.397464930638204], + [-47.00291327904152, -24.39744943080544], + [-47.00284527870275, -24.39743393097276], + [-47.00263527767103, -24.39739093149092], + [-47.00247027690842, -24.3973729319032], + [-47.002312276236644, -24.397374932304505], + [-47.00219027580123, -24.39740393262332], + [-47.00204827551392, -24.39750993301854], + [-47.001899275421394, -24.397689933455926], + [-47.00176727553851, -24.39791493386524], + [-47.001657276032574, -24.398232934249492], + [-47.00159027662903, -24.39852393451584], + [-47.001562278088585, -24.39904393475929], + [-47.001572278569, -24.399187934781622], + [-47.001648279833844, -24.399496934691452], + [-47.00177428113104, -24.39974593445453], + [-47.00193628263737, -24.400012934132278], + [-47.0021342841007, -24.40021493369722], + [-47.002352285525355, -24.400375933197836], + [-47.00298128888077, -24.40059193167449], + [-47.003204289968316, -24.40063493112328], + [-47.003650292028034, -24.400682930008188], + [-47.00400429365035, -24.40071692912171], + [-47.00434929523409, -24.400750928258145], + [-47.004574296354505, -24.400801927704393], + [-47.004812297804285, -24.400942927147458], + [-47.00520430027333, -24.40120192623911], + [-47.005445301814994, -24.401368925683247], + [-47.00562530282136, -24.401445925252187], + [-47.00577730356784, -24.401476924876917], + [-47.0058843040391, -24.40148092460684], + [-47.00608630489968, -24.40147892409387], + [-47.006186305225555, -24.401444923828997], + [-47.00631430558629, -24.401382923483858], + [-47.006450306026956, -24.401335923123366], + [-47.00655130647857, -24.40134192286916], + [-47.006659307036216, -24.40137292260549], + [-47.00678530809349, -24.401542922342177], + [-47.00683030876374, -24.40169992227993], + [-47.006832309292044, -24.401870922331465], + [-47.006796310298675, -24.40225292254927], + [-47.006575312599644, -24.403321923463473], + [-47.00627531460736, -24.404405924583198], + [-47.00569131704699, -24.406032926603174], + [-47.00551931779688, -24.406522427201512], + [-47.00534731854678, -24.407011927799893], + [-47.005152318980635, -24.407429928432975], + [-47.00504831930031, -24.40768192878023], + [-47.00492831914706, -24.407800929124022], + [-47.004836318955896, -24.407867929379623], + [-47.00474931874665, -24.40792192961816], + [-47.004663818442026, -24.407942429841853], + [-47.00457831813731, -24.40796293006555], + [-47.00445631763801, -24.407970930377747], + [-47.00429931709179, -24.408012930789848], + [-47.00421431703096, -24.40811293103862], + [-47.00412931709168, -24.408252931300623], + [-47.004095317368375, -24.408391931432863], + [-47.00406931757604, -24.408496931533673], + [-47.004056317878984, -24.408614931605722], + [-47.004059318332686, -24.408759931646127], + [-47.00406831883346, -24.40891193167357], + [-47.00409831930273, -24.409023931634515], + [-47.004129319794444, -24.409141931595023], + [-47.00417432032518, -24.40925293151767], + [-47.00424232109435, -24.409409931397068], + [-47.004307321610554, -24.40948793125795], + [-47.00439432216035, -24.409545931056527], + [-47.004517322782625, -24.40957693075471], + [-47.00479732395402, -24.409566930040913], + [-47.005027324889625, -24.409549929451874], + [-47.005214325668, -24.409541928974743], + [-47.005351326268254, -24.409545928628525], + [-47.005509326979826, -24.409556928231225], + [-47.005617327543696, -24.40958992796813], + [-47.00578332834751, -24.409619927556943], + [-47.00597832931828, -24.409663927076743], + [-47.00607332984163, -24.409701926848225], + [-47.006202330510824, -24.409739926533533], + [-47.00638933138352, -24.409762926066605], + [-47.006533331974154, -24.409753925698315], + [-47.00673433271223, -24.40971292517471], + [-47.00684033299995, -24.409657924887554], + [-47.00709833380023, -24.40955692419947], + [-47.007312334551514, -24.409501923638334], + [-47.00752833546636, -24.40949792308886], + [-47.00792433726943, -24.409531922095216], + [-47.00814033818739, -24.40952892154614], + [-47.00830333872272, -24.40947492111464], + [-47.00846933926799, -24.409419920675266], + [-47.008662339886484, -24.409350920162687], + [-47.00884134048743, -24.40929591969023], + [-47.00899134102476, -24.409260919298042], + [-47.009099341524816, -24.409272919027867], + [-47.00925834239882, -24.409335918645287], + [-47.0093373429355, -24.409400918466243], + [-47.00944834374952, -24.409511918221256], + [-47.00962334497191, -24.409666917828403], + [-47.009863346695425, -24.409894917294597], + [-47.010039348043875, -24.410089916912437], + [-47.010201349393064, -24.410304916572258], + [-47.01030435033093, -24.410467916364684], + [-47.01038535102534, -24.41058191619688], + [-47.01042335151689, -24.410689916135997], + [-47.01041035180478, -24.410802916206347], + [-47.010305351856125, -24.41096791652739], + [-47.010155351340025, -24.41100991692199], + [-47.010086350975435, -24.410987417089704], + [-47.01001735061088, -24.4109649172574], + [-47.00990135007956, -24.410953917548124], + [-47.00980234970028, -24.410968917804354], + [-47.009673349392955, -24.41104991815849], + [-47.009583349569375, -24.411234918448052], + [-47.00955034982927, -24.41136691857544], + [-47.009495350277554, -24.41159191878933], + [-47.0094493509227, -24.41186891899764], + [-47.00930335124202, -24.412179919471015], + [-47.009183351192355, -24.412332919826117], + [-47.00907035099322, -24.41242692014393], + [-47.008977350715746, -24.412466920393232], + [-47.00881935012573, -24.41249592080381], + [-47.0086043491724, -24.412485921346168], + [-47.008466348464424, -24.412447921683896], + [-47.0083363477908, -24.412409922001213], + [-47.008242347302186, -24.412381922230537], + [-47.00814834681357, -24.41235392245983], + [-47.00804734638307, -24.4123549227165], + [-47.00791234590996, -24.41238992307071], + [-47.00784234587113, -24.412475923276826], + [-47.007836346365444, -24.41264692334852], + [-47.007928347618176, -24.412928923208316], + [-47.00803234876114, -24.413157923020133], + [-47.00820935055514, -24.41349792268328], + [-47.008408352160686, -24.41374492225985], + [-47.00859835351177, -24.41392092183578], + [-47.00883035493957, -24.414062921293805], + [-47.00909035626254, -24.41413092065637], + [-47.00957935844069, -24.414156919423736], + [-47.01008236044171, -24.41410491812972], + [-47.0107833630613, -24.413976916307963], + [-47.011522365743545, -24.413815914378823], + [-47.01212436788314, -24.41366991280245], + [-47.012774370104076, -24.413482911090437], + [-47.013261371616224, -24.413292909791455], + [-47.01356137256904, -24.413182908993484], + [-47.01378237326804, -24.41310090840531], + [-47.01395237357169, -24.41296090792756], + [-47.01408637366299, -24.412801907534877], + [-47.01433837344826, -24.412375906754598], + [-47.01451437327867, -24.412071906207455], + [-47.014732373243525, -24.411752905548838], + [-47.01483137330329, -24.411632905257857], + [-47.01493037356386, -24.411578904988758], + [-47.01506537403668, -24.411543904634424], + [-47.015217374682926, -24.411541904247855], + [-47.01547637602251, -24.411616903614984], + [-47.016216380333134, -24.41198990185917], + [-47.017273386366185, -24.412481899337315], + [-47.018237391887645, -24.412936897039238], + [-47.01892839603383, -24.413324895412224], + [-47.019209397720445, -24.413482894750526], + [-47.0197544012189, -24.413863893491897], + [-47.02081940861088, -24.414790891091883], + [-47.021049410355914, -24.415039890589696], + [-47.0211634112195, -24.415162890340508], + [-47.02182141618038, -24.415864888899947], + [-47.022274419406145, -24.416285887887607], + [-47.02258142173447, -24.41661788721678], + [-47.02272742293345, -24.416805886907685], + [-47.022831423940026, -24.416989886704], + [-47.02288542481126, -24.417199886635814], + [-47.02287442556492, -24.417462886750243], + [-47.02284242619195, -24.417713886914036], + [-47.02283042650281, -24.417832886983746], + [-47.022811426741065, -24.417937887066433], + [-47.022754426758326, -24.41802388723954], + [-47.02268342671857, -24.418110887448545], + [-47.02259842653657, -24.418170887684326], + [-47.022483426189204, -24.41821888799226], + [-47.02228342540091, -24.418241888508028], + [-47.02190842374281, -24.418225889455453], + [-47.02148542198532, -24.41824489053645], + [-47.02117642069574, -24.418256891325363], + [-47.02106142028437, -24.418283891626434], + [-47.02089041990076, -24.418398892098715], + [-47.02079141971639, -24.418477892376192], + [-47.02072841977184, -24.418584892571495], + [-47.020688419983834, -24.418710892714614], + [-47.020683420562285, -24.418907892792102], + [-47.02076542153232, -24.419110892650583], + [-47.020854422431945, -24.41928089248043], + [-47.02088542292443, -24.419398892440384], + [-47.02087342327478, -24.419530892514395], + [-47.020812423795626, -24.419787892753874], + [-47.020793424176986, -24.419939892852117], + [-47.02080342474067, -24.420110892883002], + [-47.02085642544621, -24.42026789280001], + [-47.0209594264852, -24.42046389260277], + [-47.021106427591214, -24.42061989228059], + [-47.0213104290211, -24.420801891822087], + [-47.02155743053203, -24.42094989124324], + [-47.021681431359724, -24.421046890960007], + [-47.021776432005005, -24.421124890744323], + [-47.02189243288054, -24.421248890490304], + [-47.021972433562055, -24.421359890323558], + [-47.02204043430766, -24.421508890199732], + [-47.02204343496626, -24.421720890261795], + [-47.022046435460425, -24.421878890306115], + [-47.02205543593772, -24.422022890330627], + [-47.02210943678778, -24.422225890260155], + [-47.02222043782166, -24.422408890038305], + [-47.022329438648924, -24.422526889800096], + [-47.02243243940475, -24.42262988957222], + [-47.02257044023468, -24.422707889247135], + [-47.02280144131464, -24.422736888669608], + [-47.02311644261485, -24.422719887863504], + [-47.0233104433409, -24.422684887358926], + [-47.02354644424416, -24.422648886747346], + [-47.02380544532234, -24.422637886085475], + [-47.02400644619725, -24.422641885575906], + [-47.02425144739813, -24.422690884969384], + [-47.024419448393324, -24.42278088457197], + [-47.02459444961969, -24.422936884178352], + [-47.0247924511855, -24.423171883752378], + [-47.024975452763044, -24.42343188337259], + [-47.02511045426258, -24.423733883128666], + [-47.025264455679206, -24.42398188281867], + [-47.0254794576776, -24.42433488238808], + [-47.02575845986236, -24.424658881785334], + [-47.0260354619044, -24.424938881173002], + [-47.0262094629256, -24.425028880760305], + [-47.02631746356281, -24.42508588050448], + [-47.026427464193425, -24.425137880241856], + [-47.02656446491552, -24.425181879908017], + [-47.0267794658657, -24.425190879364425], + [-47.02697446672103, -24.425196878870615], + [-47.02714646746843, -24.42519987843439], + [-47.027325468248875, -24.425203877980596], + [-47.02752046918027, -24.425234877495022], + [-47.027643469802705, -24.425265877192462], + [-47.02787547109103, -24.42536187663415], + [-47.02807147226443, -24.42547087617158], + [-47.028303473793535, -24.425645875639095], + [-47.0285154752337, -24.425819875157188], + [-47.028741476798, -24.426014874646476], + [-47.02907547899962, -24.426266873879833], + [-47.029583481862716, -24.42649087266162], + [-47.02994548390417, -24.426650871793566], + [-47.030212485318415, -24.42673887114345], + [-47.03060248721474, -24.426811870175637], + [-47.03115548956681, -24.426804868766958], + [-47.03152849095421, -24.42673486779553], + [-47.031980492631924, -24.42664886661783], + [-47.03241749422993, -24.426557865476568], + [-47.032761495514244, -24.426494864581066], + [-47.03322049732241, -24.426441863396285], + [-47.033413998125404, -24.426432862901258], + [-47.033607498928376, -24.426423862406136], + [-47.034047500895845, -24.426449861295538], + [-47.03443750277675, -24.426517860325745], + [-47.034689003846886, -24.426514859685085], + [-47.03494050491702, -24.426511859044417], + [-47.03563650779396, -24.426475857262172], + [-47.03581750856148, -24.426472856800792], + [-47.03598950931472, -24.426477856364965], + [-47.036154510053315, -24.42648785594854], + [-47.03625451051903, -24.426499855698104], + [-47.03635751107993, -24.426538855448776], + [-47.036523512042244, -24.42662085505335], + [-47.036646512765266, -24.426684854761344], + [-47.03680551356039, -24.42672185436891], + [-47.037020514437124, -24.42670685381716], + [-47.037240514972524, -24.426572853213674], + [-47.0374695154398, -24.426403852575806], + [-47.03753301555067, -24.4263508523969], + [-47.03759651566155, -24.42629785221809], + [-47.03772551610833, -24.426262851878423], + [-47.03783351656561, -24.426260851603033], + [-47.038028517478516, -24.426285851115118], + [-47.03823751868632, -24.426387850616752], + [-47.038470520198516, -24.426555850078824], + [-47.03869052193532, -24.426815849604093], + [-47.038970524372, -24.427220849024053], + [-47.03922052645727, -24.427552848496376], + [-47.03942452786329, -24.427726848034183], + [-47.039534528576226, -24.42780584778013], + [-47.03968552935839, -24.427849847410297], + [-47.040203531657234, -24.427874846100405], + [-47.04108853551861, -24.427895843855207], + [-47.04200353982889, -24.42802184156779], + [-47.04251554248925, -24.428173840314443], + [-47.043239546425404, -24.42844583856063], + [-47.04394955049056, -24.4287798368625], + [-47.044448553232534, -24.428976835656595], + [-47.045125557613986, -24.42946083409112], + [-47.045837562228044, -24.429971832445215], + [-47.046018563318896, -24.430074832017997], + [-47.04607306361984, -24.430096831886388], + [-47.04612756392086, -24.430118831754843], + [-47.04640156514519, -24.430134831062507], + [-47.046580565766725, -24.430086830591193], + [-47.04676656627472, -24.429991830086763], + [-47.046850566329944, -24.429891829840244], + [-47.04694256629736, -24.429751829560473], + [-47.04708356651473, -24.429624829160105], + [-47.047176566791606, -24.42958482891038], + [-47.04729756724364, -24.429562828595124], + [-47.047492568132036, -24.42957982810421], + [-47.047715569262664, -24.429636827555026], + [-47.047983570741955, -24.42974482690794], + [-47.048303572664146, -24.429924826151808], + [-47.04871757514528, -24.430155825172953], + [-47.04890957635353, -24.43028182472513], + [-47.04910157756176, -24.430407824277232], + [-47.049327579004455, -24.430562823752165], + [-47.04940857978839, -24.430705823592483], + [-47.04944758051735, -24.430889823553077], + [-47.049443580964116, -24.4310418236127], + [-47.049373581088176, -24.431180823836137], + [-47.04894958073434, -24.431660825072125], + [-47.04885758070283, -24.431779825345135], + [-47.04883058089233, -24.43187982544643], + [-47.04878958101859, -24.43197882558299], + [-47.04878558152336, -24.432149825648867], + [-47.048838582312435, -24.432333825573846], + [-47.04891858285415, -24.43239882539125], + [-47.04902758343775, -24.432436825126082], + [-47.04915658398512, -24.43243482479688], + [-47.04927858446271, -24.432419824481407], + [-47.0494855851035, -24.432338823927868], + [-47.049628585546074, -24.4322828235455], + [-47.04975758595605, -24.432235823201697], + [-47.04985858624276, -24.432187822928913], + [-47.049964586572436, -24.432146822645617], + [-47.05007158698869, -24.43213282236857], + [-47.0502225876671, -24.43214282198722], + [-47.050324588162695, -24.432161821733732], + [-47.05045558893839, -24.43223182142291], + [-47.05062058990268, -24.43231582102996], + [-47.05075959073709, -24.432393820701396], + [-47.050854591379775, -24.432470820484482], + [-47.05095559199014, -24.432528820246127], + [-47.05105059257779, -24.432587820023386], + [-47.051195593370835, -24.43264381967231], + [-47.051324593960906, -24.432655819347694], + [-47.051453594486865, -24.432646819016174], + [-47.05159059502875, -24.432631818662404], + [-47.05174659544767, -24.432549818238396], + [-47.051867595682786, -24.432456817900018], + [-47.05198859603697, -24.432402817574335], + [-47.05213259663031, -24.432394817204926], + [-47.05228459735571, -24.43241881682555], + [-47.05238459784577, -24.43243881657741], + [-47.052731599535804, -24.432504815715017], + [-47.05303160062736, -24.432440814930143], + [-47.053275601441975, -24.432364814283964], + [-47.053519602418454, -24.43234181365496], + [-47.05386460384651, -24.43232481277067], + [-47.05458360698264, -24.432341810944735], + [-47.05498760885916, -24.43238880993086], + [-47.05515310971262, -24.432435809524527], + [-47.05531861056596, -24.432482809118266], + [-47.05589861387232, -24.432750807727714], + [-47.05621161584407, -24.43295680699718], + [-47.056699619204736, -24.433371805888676], + [-47.05685362028064, -24.43350780554047], + [-47.05696262104756, -24.433605805294565], + [-47.05707962186707, -24.43370980503023], + [-47.05714562240668, -24.43379380488934], + [-47.05721862309855, -24.43391780474353], + [-47.05725762364767, -24.434042804684776], + [-47.05730962417003, -24.434140804583993], + [-47.05741262499066, -24.434264804361774], + [-47.057594626345555, -24.434452803959136], + [-47.05767462694534, -24.43453680378256], + [-47.057778627910736, -24.434706803572677], + [-47.05784062895866, -24.434962803497676], + [-47.05782162940258, -24.435134803601937], + [-47.057796629777975, -24.4352928037169], + [-47.05781363051375, -24.435509803743997], + [-47.05784463116909, -24.43568080372041], + [-47.057904631844984, -24.435817803612004], + [-47.05800763258315, -24.435914803381046], + [-47.05813763337909, -24.435992803075038], + [-47.058303634222604, -24.43603580266598], + [-47.058440634785825, -24.43602780231433], + [-47.058611635351355, -24.435972801860608], + [-47.0587266357407, -24.43593880155656], + [-47.058891636399665, -24.435922801130893], + [-47.059099637343834, -24.43593980060633], + [-47.05944663914089, -24.436040799754796], + [-47.05957663987269, -24.43609779944197], + [-47.05977164090159, -24.43616079896551], + [-47.0599736417589, -24.436157798449738], + [-47.060166642379, -24.43608979793579], + [-47.06028164280508, -24.436067797635527], + [-47.0604176433273, -24.436047797282473], + [-47.060561643935806, -24.436044796914512], + [-47.06074864477155, -24.436055796441437], + [-47.060906645544016, -24.436086796048787], + [-47.06111664669529, -24.43616879554014], + [-47.06150864906726, -24.436394794614216], + [-47.06310765889605, -24.43736679085319], + [-47.06396266395395, -24.437821788820838], + [-47.06492666957722, -24.438308786520732], + [-47.065804674736945, -24.438764784429605], + [-47.06610167654267, -24.438938783728698], + [-47.066588679496576, -24.43922178257838], + [-47.06706668219183, -24.43943278142768], + [-47.06750968473692, -24.439643780366257], + [-47.06798868787684, -24.43999877925942], + [-47.06907969480345, -24.4407337767145], + [-47.06990170000472, -24.441281774794852], + [-47.07028570236429, -24.441514773890642], + [-47.070510703762, -24.44165627336235], + [-47.07073570515974, -24.441797772834104], + [-47.071201708207404, -24.442140771756137], + [-47.07193871322801, -24.442748770072132], + [-47.073055719805076, -24.443332767410755], + [-47.07398272493112, -24.443708765166825], + [-47.07459572815667, -24.44390376366557], + [-47.07509473075873, -24.444054762440796], + [-47.07563573352258, -24.444199761107082], + [-47.0760987357867, -24.444290759954832], + [-47.0765927384438, -24.444466758750828], + [-47.077086741100935, -24.444642757546777], + [-47.07882295635855, -24.445234853305983], + [-47.07894875602897, -24.445277629998746], + [-47.078957303074574, -24.445280527977822], + [-47.07902875145508, -24.445304752803217], + [-47.08025075862973, -24.445936749887256], + [-47.08124976498302, -24.44661274755425], + [-47.08218177177155, -24.447524745467824], + [-47.08292381815099, -24.448569071908633], + [-47.084833579108654, -24.45143227095096], + [-47.08813461222614, -24.453704635247387], + [-47.089341442757046, -24.45512611261945], + [-47.09241595759897, -24.457624418562112], + [-47.09530779629313, -24.45902450661755], + [-47.098308403772776, -24.461180637634023], + [-47.09952853625003, -24.461586463643183], + [-47.10868129434022, -24.467726256180722], + [-47.110285999282034, -24.468397447286275], + [-47.11682999227579, -24.472282782762115], + [-47.12003379668757, -24.474780270345555], + [-47.12302924615456, -24.476609653248325], + [-47.12497459052068, -24.477593561573165], + [-47.12620183286842, -24.478597065744182], + [-47.130608816679455, -24.4814956833587], + [-47.13483447526073, -24.48457111248793], + [-47.13838840041259, -24.486817290074747], + [-47.13988573447024, -24.488323535704737], + [-47.14260608099437, -24.49022647131843], + [-47.14521796453927, -24.49163745305418], + [-47.14700162328309, -24.492966984889716], + [-47.149551379415264, -24.495303327071074], + [-47.1532705247396, -24.49737250616137], + [-47.155829825386164, -24.49953668225885], + [-47.15874928118477, -24.502545556691096], + [-47.15994341683838, -24.503366771876195], + [-47.16144770845152, -24.50471594642741], + [-47.16275439042648, -24.505484704305626], + [-47.16406107340173, -24.50625346118335], + [-47.166293707598705, -24.508399214105758], + [-47.170945143209316, -24.512176957306313], + [-47.172802358519434, -24.513907674060974], + [-47.17608811359292, -24.51616812129926], + [-47.177363120406255, -24.517250778349936], + [-47.17881057714143, -24.518068905874085], + [-47.18108461941333, -24.520824740865837], + [-47.18216842787909, -24.521736128354117], + [-47.18339435754223, -24.523160715633857], + [-47.18533153694131, -24.524806867147728], + [-47.18730595668519, -24.5252199791846], + [-47.18766545397398, -24.526753890729783], + [-47.18866715149559, -24.527796353467497], + [-47.18905563749655, -24.529196774896427], + [-47.18841713710007, -24.53027608787511], + [-47.18755855968731, -24.531332028414287], + [-47.18727832908997, -24.53281922559472], + [-47.18778097732525, -24.53413671770363], + [-47.19108625206371, -24.536578478927233], + [-47.194888404552266, -24.535669060836714], + [-47.19594464645879, -24.536436270346055], + [-47.19722325529635, -24.53784159547664], + [-47.19868211894437, -24.538290772848246], + [-47.19988665267542, -24.538473317794438], + [-47.20152485151821, -24.53905991874429], + [-47.204942692165886, -24.541637697705802], + [-47.20817184231119, -24.543668680983995], + [-47.20970170854596, -24.544853346392465], + [-47.211087309575724, -24.545526501017058], + [-47.21469351034116, -24.547879812412663], + [-47.2210176044039, -24.553981661912797], + [-47.22325959966663, -24.555800198664112], + [-47.225824495569896, -24.557057110408046], + [-47.229005690956264, -24.559549343928396], + [-47.22816836123699, -24.56208120186176], + [-47.22672853129879, -24.563122181904102], + [-47.225497468760594, -24.56593386194218], + [-47.225693389937604, -24.567650086954465], + [-47.22629567193958, -24.569070855824965], + [-47.227259519048786, -24.5703487317157], + [-47.22841837575113, -24.571548155077192], + [-47.229701128517156, -24.57195419687737], + [-47.2320834448592, -24.572315018815075], + [-47.2343100596821, -24.57208111597581], + [-47.23575326243354, -24.57226152229076], + [-47.23716921221801, -24.57184757049693], + [-47.23841528171985, -24.572219553379874], + [-47.24075104220674, -24.57397651485466], + [-47.242085826190134, -24.574702020612605], + [-47.24341533874262, -24.574975243247952], + [-47.24467018186321, -24.574249378776415], + [-47.24608859908443, -24.573972952015687], + [-47.24716854085245, -24.57465919142131], + [-47.24847153768148, -24.57505790416175], + [-47.25124912352958, -24.576322183336387], + [-47.25336765905744, -24.577748475267487], + [-47.254702056781795, -24.578391191997486], + [-47.259693952655574, -24.58175001504537], + [-47.260968558221116, -24.583064955128727], + [-47.262061397880174, -24.583697767479975], + [-47.264859495703945, -24.58460417948406], + [-47.266777776484474, -24.586064560936574], + [-47.2680560433209, -24.587460510031256], + [-47.26956134448545, -24.588329116378734], + [-47.272508372954114, -24.589557489085784], + [-47.273836673906544, -24.590280689848235], + [-47.27794068586391, -24.592958814973557], + [-47.27950097154609, -24.593597017105548], + [-47.281058936197915, -24.59486870943029], + [-47.28424087725049, -24.59596083647686], + [-47.289005944163215, -24.598356210785834], + [-47.29053220555955, -24.599908630271184], + [-47.29313628625747, -24.60167869501382], + [-47.29674741114141, -24.603087121025666], + [-47.2985591531669, -24.60412906361344], + [-47.2997508691246, -24.605359225870536], + [-47.302353003902994, -24.60683698952517], + [-47.304640593462096, -24.608355619009565], + [-47.30937689700904, -24.610989195435266], + [-47.31297381136256, -24.613522842796776], + [-47.31442332171613, -24.614206190215896], + [-47.31755527681564, -24.616655388760126], + [-47.3235873674924, -24.619788986931013], + [-47.32689231248528, -24.621966162935422], + [-47.32944491198531, -24.62341981569154], + [-47.33216442002186, -24.62545333017766], + [-47.33636181371007, -24.627587925829094], + [-47.33869275210204, -24.62930851823442], + [-47.34181163047483, -24.63090291454194], + [-47.346511580604584, -24.633764097076646], + [-47.35102990607948, -24.63602755290831], + [-47.35408478429028, -24.638292152564514], + [-47.35603486638997, -24.63948253880205], + [-47.357396717778144, -24.640294160469683], + [-47.35804082776285, -24.640683513895073], + [-47.361055126411784, -24.642505801524255], + [-47.36232426184036, -24.643138458381657], + [-47.362800647628774, -24.64337593320197], + [-47.36741301562736, -24.64567516977651], + [-47.379100045157394, -24.653122242259897], + [-47.37915308749112, -24.653156041130412], + [-47.384712283184626, -24.65724021070414], + [-47.38962176136319, -24.66045671572849], + [-47.39377750874834, -24.66380955976281], + [-47.39746086333994, -24.66660059487417], + [-47.399954508216325, -24.66824513578516], + [-47.40268619732565, -24.671855131619616], + [-47.407443881023056, -24.67575124720389], + [-47.41386403016397, -24.679431353346462], + [-47.417509661288506, -24.6729565589515], + [-47.41793713281275, -24.67317592088816], + [-47.42506343669703, -24.674558759521755], + [-47.428162612382906, -24.673427956050883], + [-47.42942904781933, -24.674064762893785], + [-47.43188443312059, -24.674315105498977], + [-47.4348868188448, -24.676801551280807], + [-47.43546655663054, -24.677213398867785], + [-47.43458257660674, -24.679031511698568], + [-47.43409379834849, -24.680557280407704], + [-47.433057498366615, -24.685119126398792], + [-47.433723378904624, -24.68817565648964], + [-47.434253956688934, -24.6892837513979], + [-47.43605826460155, -24.692181289443344], + [-47.43773302994893, -24.694128692566483], + [-47.43726896360781, -24.69433245684598], + [-47.43761673977118, -24.69454498498778], + [-47.437848589825336, -24.694564305382006], + [-47.43813840367923, -24.694757512671305], + [-47.43838957499994, -24.694834795030477], + [-47.43860210509392, -24.694892756486173], + [-47.43877599339011, -24.6950666430757], + [-47.43891123909184, -24.695105284729785], + [-47.439259015132706, -24.69527917086085], + [-47.43943290324506, -24.695395094434353], + [-47.43964543333903, -24.695453056889992], + [-47.43997388823588, -24.695607622066607], + [-47.440302343316624, -24.695820150259145], + [-47.440465578277454, -24.69590267585151], + [-47.44050131257218, -24.695947341769525], + [-47.440608513172926, -24.695992008499246], + [-47.44071208272386, -24.696025888235443], + [-47.44075908297598, -24.69604188811592], + [-47.44085005651696, -24.696089621889232], + [-47.44093480702095, -24.69613409067796], + [-47.44108696892579, -24.696213929298764], + [-47.44117872447141, -24.696262073070066], + [-47.441251716805866, -24.69626894087953], + [-47.44131320127124, -24.696332632734897], + [-47.44144825098756, -24.6963761403908], + [-47.441455028114596, -24.69640704938143], + [-47.44162691909272, -24.696483339949186], + [-47.44160018497784, -24.69648321301962], + [-47.44167460142044, -24.69652225883417], + [-47.44187705350397, -24.6965905393191], + [-47.44192586991461, -24.696654098207873], + [-47.44200212152141, -24.696742405031138], + [-47.44214142119646, -24.696767197670624], + [-47.44222545564774, -24.696796004456953], + [-47.44239519060133, -24.696867471028973], + [-47.44237833360544, -24.69689150508007], + [-47.442495125299985, -24.696952784788866], + [-47.4427078584788, -24.697037203251163], + [-47.442728707689135, -24.697075345206635], + [-47.44280612612632, -24.69710867001164], + [-47.44296229107824, -24.69719790562437], + [-47.44312772790036, -24.697233736197965], + [-47.443280969973436, -24.69736511583002], + [-47.443380076562846, -24.697417116582894], + [-47.44342252984303, -24.697448135479465], + [-47.44353924250946, -24.69750063118616], + [-47.44360998393014, -24.69753774800977], + [-47.443744131730476, -24.6976089346755], + [-47.443976399951794, -24.697680400082625], + [-47.4441088448969, -24.697799498766084], + [-47.444254347762204, -24.697875844403324], + [-47.444342668370666, -24.697948399190288], + [-47.44444923092125, -24.69797809891736], + [-47.44455706962901, -24.698055598654253], + [-47.44472680455421, -24.69811813222379], + [-47.444869653421556, -24.69819869386918], + [-47.44497208903081, -24.69825244161377], + [-47.445218140536966, -24.698395064003975], + [-47.44531143704901, -24.698430496767614], + [-47.44534320829937, -24.69846653069377], + [-47.44548828910077, -24.698523290326666], + [-47.445629077118824, -24.698654129991265], + [-47.44573627769134, -24.69868986271833], + [-47.44585241141546, -24.698761329431598], + [-47.44600427923583, -24.69881492904572], + [-47.44615614611298, -24.698886394664704], + [-47.44632386007014, -24.698961712243005], + [-47.44646534191165, -24.699035946890195], + [-47.446531348428415, -24.699109727736406], + [-47.4467725498299, -24.699225860131936], + [-47.446906550715596, -24.69932412680542], + [-47.44700481824976, -24.699359859555997], + [-47.44725819162702, -24.69945195291295], + [-47.4474425537764, -24.69956532545768], + [-47.447547813349516, -24.6996039171906], + [-47.44756762153873, -24.699636792147295], + [-47.4476837552628, -24.699708257860593], + [-47.447844556206626, -24.699788657458438], + [-47.447919548560456, -24.69979896526338], + [-47.44802322425519, -24.699877991011522], + [-47.44817782109651, -24.6999344806192], + [-47.44829122585656, -24.700020923343704], + [-47.44852084513671, -24.70011446376356], + [-47.44856816152448, -24.700172789654776], + [-47.44871109530658, -24.70022638929234], + [-47.448807828843606, -24.700265044047725], + [-47.44890762948844, -24.700333588803225], + [-47.44909412154633, -24.700415260333575], + [-47.44920023317744, -24.700470937068857], + [-47.449298992764824, -24.700522755822515], + [-47.449398966499906, -24.700619453585258], + [-47.44948319586036, -24.700619407363014], + [-47.44955083329194, -24.700664120196766], + [-47.44966696790268, -24.700699852900176], + [-47.44980990182669, -24.700798119550008], + [-47.44992603532397, -24.700798119243583], + [-47.45015190283765, -24.70097027569474], + [-47.45030406474274, -24.701050115315144], + [-47.450431882502876, -24.70111717999621], + [-47.45054534517778, -24.701176713713174], + [-47.45060207551521, -24.701206480571617], + [-47.450662136872424, -24.701237994421795], + [-47.45075056239831, -24.70128439120112], + [-47.450828307860746, -24.70132518400722], + [-47.451018815925586, -24.701403627525895], + [-47.45116777690998, -24.70151278316281], + [-47.45131071055037, -24.701521715788072], + [-47.45144471129432, -24.701575315449123], + [-47.45157871209499, -24.70164678211506], + [-47.451739512925315, -24.701691447702977], + [-47.45202538148976, -24.701798646977835], + [-47.452124574105945, -24.701858933732673], + [-47.45226071486686, -24.70191499138868], + [-47.45243280182874, -24.701985849953918], + [-47.452588184580385, -24.702013045551233], + [-47.452674981182305, -24.702085569342078], + [-47.452748985637655, -24.702129179158682], + [-47.45296029477701, -24.702203050621257], + [-47.45301870510352, -24.70222710147372], + [-47.45311525471657, -24.702289978235992], + [-47.45325818844206, -24.702325710868564], + [-47.45343400239676, -24.702389302421953], + [-47.45367805772211, -24.702477576801975], + [-47.453803124371014, -24.702513309481592], + [-47.45391925909526, -24.70258477619468], + [-47.454035392649146, -24.70260264189299], + [-47.45420512665963, -24.70269197546945], + [-47.45432126138385, -24.702763442182434], + [-47.45440166184159, -24.70279917498003], + [-47.45449992834749, -24.702825974727965], + [-47.454562462757025, -24.70287064157518], + [-47.45466072926293, -24.702897441323138], + [-47.4547411297774, -24.702951041125562], + [-47.45483939716982, -24.70294210686368], + [-47.45491979774104, -24.703013573670965], + [-47.45500019817038, -24.703040373466177], + [-47.45509846559108, -24.703040373206772], + [-47.455169932010605, -24.70307610602781], + [-47.45529655765469, -24.703108197702427], + [-47.455363007987884, -24.703123531531133], + [-47.45539367820034, -24.703149089457153], + [-47.455424347477845, -24.703195093388768], + [-47.45546012867968, -24.703210428298522], + [-47.455521467007266, -24.703230874142214], + [-47.45558280625365, -24.703225761978917], + [-47.45562369850993, -24.703251319877936], + [-47.455700372903195, -24.703271765681126], + [-47.45573104208316, -24.703287100604392], + [-47.45576682328508, -24.703302434514132], + [-47.4558179385851, -24.703327992386093], + [-47.45584860874884, -24.70333821530801], + [-47.45589461304331, -24.703368885194884], + [-47.45593550528333, -24.703389331092524], + [-47.455981509626405, -24.703435334983755], + [-47.45607351808527, -24.703455780746456], + [-47.45613485646156, -24.70349156159424], + [-47.456206418946515, -24.70354778842073], + [-47.45623197713712, -24.703573346360233], + [-47.45629842745408, -24.703583569187565], + [-47.45632909666663, -24.70360912711367], + [-47.456349542851605, -24.703639796068025], + [-47.456410882162864, -24.703655130910324], + [-47.45645177541914, -24.703680687809346], + [-47.45650289071923, -24.703706245681435], + [-47.45657956414495, -24.703736914487294], + [-47.45664090350492, -24.703767584333786], + [-47.45667668472312, -24.70378803024491], + [-47.456758469154465, -24.703813588035974], + [-47.45686601476228, -24.703859974764754], + [-47.45695731031641, -24.703911361537852], + [-47.457003728598174, -24.703937489422394], + [-47.45707087200565, -24.703975282255467], + [-47.45716109955331, -24.70402606903107], + [-47.45723993100074, -24.70406068783244], + [-47.4573018533523, -24.70408788067641], + [-47.457350819630236, -24.704109384553018], + [-47.457411645975554, -24.70413609639972], + [-47.45751748457633, -24.70418257513301], + [-47.45759631602375, -24.704217193934277], + [-47.45766219139774, -24.70424612276825], + [-47.45773311680034, -24.704277269589497], + [-47.4578119482478, -24.70431188839084], + [-47.457877823621764, -24.704340817224804], + [-47.458006716353445, -24.70439741989994], + [-47.45813737209508, -24.704454797570687], + [-47.4582342086448, -24.704497323326596], + [-47.45833499821693, -24.704541585072576], + [-47.45845488889747, -24.70459423477042], + [-47.45852471829394, -24.704624900594375], + [-47.45857368457188, -24.704646403471042], + [-47.45866656709918, -24.70468719323684], + [-47.45874144552411, -24.704720075048176], + [-47.458852333153615, -24.704768771768727], + [-47.45890920647645, -24.704793747625292], + [-47.45898694291776, -24.704827885429424], + [-47.45903590819569, -24.704849388305927], + [-47.4591107866208, -24.704882271117242], + [-47.45919071407447, -24.70491737091574], + [-47.45926035447239, -24.704948774740448], + [-47.45936971509735, -24.704998090465146], + [-47.4594264084213, -24.7050236553224], + [-47.45950094884718, -24.705057268134794], + [-47.45958843734707, -24.7050967209145], + [-47.459654054722016, -24.705126309749286], + [-47.45977233939793, -24.705179649451555], + [-47.45988660005085, -24.705231174163888], + [-47.459995085670755, -24.705280094890732], + [-47.46010934632361, -24.70533161960307], + [-47.46019281180053, -24.70536925739295], + [-47.46028520032853, -24.705410919160308], + [-47.46035484072646, -24.705442322985], + [-47.46041643307845, -24.705470096829934], + [-47.46050392257831, -24.70550954960963], + [-47.46056551493022, -24.70553732345454], + [-47.46069762368512, -24.70559689712198], + [-47.46081590836102, -24.70565023682413], + [-47.46095519015698, -24.70571304447348], + [-47.46106630279184, -24.70576314919368], + [-47.46112789514374, -24.7057909230386], + [-47.461176539421714, -24.705812858916165], + [-47.46124705582463, -24.705844657738634], + [-47.46131267219961, -24.705874246573305], + [-47.46136936452353, -24.705899811430637], + [-47.46150864631949, -24.70596262007989], + [-47.46156131462045, -24.70598636994728], + [-47.46164478009737, -24.706024007737113], + [-47.46177198882431, -24.70608137141682], + [-47.46188537447219, -24.706132501131254], + [-47.462022382255036, -24.706194283786314], + [-47.46210987175502, -24.706233735565974], + [-47.46219648524993, -24.706272793347836], + [-47.46228397374982, -24.706312245127577], + [-47.462402258425755, -24.706365584829697], + [-47.46246787480072, -24.7063951746645], + [-47.462529468152695, -24.706422948509378], + [-47.46258213645366, -24.706446699376784], + [-47.462687473055496, -24.70649420011143], + [-47.462757113453534, -24.706525603936086], + [-47.46281870580544, -24.706553377780946], + [-47.46289237122644, -24.706586596595425], + [-47.46294503952741, -24.706610346462792], + [-47.46301870494832, -24.706643565277286], + [-47.46318248588417, -24.706717420864784], + [-47.463253877292175, -24.706749613685005], + [-47.46331949366713, -24.70677920351979], + [-47.463441803366045, -24.70683435721171], + [-47.46356008804197, -24.706887696913764], + [-47.463717217939895, -24.706958552518127], + [-47.463795783388754, -24.706993981320245], + [-47.46391896809267, -24.707049530009975], + [-47.4639635883477, -24.707069650897562], + [-47.46401135662061, -24.707091191777256], + [-47.464080997018556, -24.707122595601895], + [-47.46413769034258, -24.707148160459084], + [-47.464190358643485, -24.707171911326434], + [-47.46431266834247, -24.707227065018305], + [-47.4644220289674, -24.70727638074285], + [-47.46450549344433, -24.707314017532628], + [-47.464550113699254, -24.707334138420322], + [-47.46465859931921, -24.707383059147013], + [-47.46470549258722, -24.707404205028876], + [-47.46479788111516, -24.70744586679615], + [-47.46490409372211, -24.707493762528678], + [-47.46496078604604, -24.707519327385846], + [-47.46504337451801, -24.707556570177793], + [-47.46509604381897, -24.707580320045224], + [-47.465148712119955, -24.70760407091247], + [-47.46520628044891, -24.70763003076748], + [-47.465271896823864, -24.70765961960217], + [-47.4653285891479, -24.70768518445942], + [-47.46538125744878, -24.707708935326757], + [-47.46545177385172, -24.70774073314909], + [-47.465518266231754, -24.70777071798158], + [-47.465588782634676, -24.707802515803927], + [-47.46574276351457, -24.70787195241599], + [-47.465825352986506, -24.707909195208018], + [-47.46590794245846, -24.707946437999933], + [-47.46602622713439, -24.707999777702014], + [-47.46610076756041, -24.70803339051417], + [-47.46617128396334, -24.708065189336487], + [-47.466249849412314, -24.708100617138562], + [-47.466357459027265, -24.708149142867498], + [-47.46643689948123, -24.708184965667396], + [-47.46664757268517, -24.70827996713669], + [-47.466765858361036, -24.708333306838668], + [-47.466827450713026, -24.708361080683474], + [-47.46693768734304, -24.708410791405775], + [-47.46702027581501, -24.708448034197666], + [-47.467107765314914, -24.708487485977216], + [-47.46720417786586, -24.708530962734258], + [-47.46728764234278, -24.708568600524064], + [-47.467414852069794, -24.708625964203506], + [-47.467498316546724, -24.708663600993233], + [-47.46755990889872, -24.70869137583804], + [-47.46765229742668, -24.708733037605224], + [-47.46770496572768, -24.70875678747252], + [-47.467761659051625, -24.708782353329696], + [-47.46786209562554, -24.70882764407673], + [-47.46798038030151, -24.708880983778663], + [-47.46804599767651, -24.708910572613284], + [-47.46816830637543, -24.708965726305134], + [-47.46823392275042, -24.708995316139756], + [-47.46834328437536, -24.7090446308642], + [-47.46844372194929, -24.709089922611117], + [-47.468562006625255, -24.709143261313052], + [-47.46862359897729, -24.709171036157823], + [-47.46870391443623, -24.7092072539555], + [-47.4688610443341, -24.709278109559556], + [-47.46901012618615, -24.70934533718384], + [-47.469075742561046, -24.709374926018544], + [-47.469189128209045, -24.709426055732777], + [-47.469289564783054, -24.70947134647961], + [-47.46934625810693, -24.709496912336814], + [-47.469411874482034, -24.70952650117143], + [-47.46948641490795, -24.709560114983592], + [-47.46954800725987, -24.709587888828366], + [-47.469604699583826, -24.709613453685474], + [-47.46966629293586, -24.709641228530252], + [-47.46971896123683, -24.70966497839753], + [-47.469793501662856, -24.70969859220973], + [-47.46984214594088, -24.709720528087164], + [-47.469972503685774, -24.70977931175861], + [-47.47002517198677, -24.709803061625898], + [-47.47016130476471, -24.709864449282716], + [-47.47024476924167, -24.709902087072457], + [-47.470345206815686, -24.709947377819276], + [-47.47043759534366, -24.709989039586397], + [-47.470503211718665, -24.71001862942107], + [-47.47061747237157, -24.710070154133092], + [-47.47072683399654, -24.710119468857467], + [-47.47083217059852, -24.71016696959199], + [-47.47091966009855, -24.710206421371474], + [-47.4710031245755, -24.710244059161088], + [-47.47112140925148, -24.710297398862917], + [-47.4712121457612, -24.71033554963352], + [-47.47129282221443, -24.710369471429487], + [-47.471377336689294, -24.710405006215755], + [-47.47143976303991, -24.710431254057845], + [-47.471555489690026, -24.710479913765216], + [-47.47166209128892, -24.710524735495692], + [-47.471715392588436, -24.71054714636079], + [-47.47183111923856, -24.71059580506816], + [-47.471915633713316, -24.71063133985443], + [-47.471980445077456, -24.710658590690567], + [-47.47209472071938, -24.710706639401522], + [-47.47218597423205, -24.710745008170722], + [-47.472245497566384, -24.710770036020232], + [-47.47229112482276, -24.71078921990482], + [-47.47236267622478, -24.710819304723838], + [-47.47241597752419, -24.710841715589037], + [-47.47246544080209, -24.710862513463983], + [-47.47254082922563, -24.71089421127327], + [-47.47259941855473, -24.71091884612508], + [-47.47264888283263, -24.71093964399999], + [-47.47272043423456, -24.710969728819062], + [-47.47278286058529, -24.71099597666111], + [-47.472849123957516, -24.71102383749353], + [-47.472906261278546, -24.711047862349048], + [-47.47298787273703, -24.711082176142618], + [-47.47309063731432, -24.711125384882724], + [-47.47319723891323, -24.711170206613076], + [-47.47324286616952, -24.711189391497648], + [-47.47337010388437, -24.711242890175814], + [-47.47345845438074, -24.711280037952317], + [-47.47354680587705, -24.711317186728888], + [-47.47360923222777, -24.71134343457102], + [-47.47369758272415, -24.711380582347502], + [-47.47376384609639, -24.711408443179913], + [-47.473848359571164, -24.711443978966138], + [-47.47392903702449, -24.711477900762045], + [-47.47400587645613, -24.711510208567766], + [-47.47411102704687, -24.71155442030171], + [-47.47419554052163, -24.711589955087934], + [-47.47430214212045, -24.71163477681827], + [-47.474399618668144, -24.7116757625717], + [-47.47448942117263, -24.711713521344542], + [-47.474542722472144, -24.711735932209702], + [-47.474599859793145, -24.711759956065208], + [-47.47465316109257, -24.71178236693026], + [-47.474706461391975, -24.711804777795503], + [-47.4748077749612, -24.7118473765392], + [-47.474896125457484, -24.711884524315657], + [-47.4749494267569, -24.7119069361809], + [-47.47503010321024, -24.71194085697677], + [-47.47514054183067, -24.711987292697398], + [-47.47519000610858, -24.712008090572194], + [-47.47530428175053, -24.71205613928319], + [-47.47537583315256, -24.712086224102173], + [-47.47546947267864, -24.71212559586526], + [-47.47551748494836, -24.712145782743768], + [-47.475626472560606, -24.712191607468103], + [-47.47570714901387, -24.71222552926396], + [-47.47575661329178, -24.712246327138764], + [-47.47587617696344, -24.71229659983635], + [-47.475946277357295, -24.712326073658915], + [-47.476062004007424, -24.71237473236617], + [-47.476140295447344, -24.712407651168064], + [-47.47623777199496, -24.71244863692146], + [-47.47631699744002, -24.712481947721017], + [-47.476392385863505, -24.71251364553032], + [-47.4764860253896, -24.712553017293395], + [-47.47656141381316, -24.71258471610259], + [-47.476620003142294, -24.71260934995435], + [-47.47668626651462, -24.712637211786777], + [-47.47675252988685, -24.712665072619128], + [-47.4769109807771, -24.712731695218206], + [-47.476973407127836, -24.712757943060204], + [-47.47707710571041, -24.71280154479777], + [-47.47717987028772, -24.71284475353777], + [-47.47726054774096, -24.712878674333705], + [-47.477332099142934, -24.712908760152654], + [-47.47741277559621, -24.712942680948462], + [-47.47748432799814, -24.712972765767418], + [-47.47753379127604, -24.712993563642197], + [-47.477605342678096, -24.713023648461125], + [-47.47773019537947, -24.713076144145298], + [-47.47781180683796, -24.713110458938772], + [-47.477903994355884, -24.713149219705414], + [-47.47798705682255, -24.713184144495287], + [-47.478130159626566, -24.71324431413314], + [-47.47819787500701, -24.713272785961742], + [-47.47824733828492, -24.713293582836616], + [-47.47833714078939, -24.713331341609372], + [-47.47843461733703, -24.713372327362627], + [-47.478537381914435, -24.71341553610258], + [-47.47867084266418, -24.713471650764863], + [-47.47877215523341, -24.713514249508442], + [-47.47884899566507, -24.713546557313965], + [-47.478988261447455, -24.713605113961506], + [-47.47906748689257, -24.71363842476111], + [-47.47914671233773, -24.713671736560585], + [-47.479306615236084, -24.713738969155887], + [-47.47937287860834, -24.71376683098817], + [-47.479435304959075, -24.713793078830125], + [-47.479492442280026, -24.713817102685567], + [-47.479560157660465, -24.713845574514217], + [-47.47967972133224, -24.71389584621159], + [-47.47975365874762, -24.713926934024467], + [-47.47983433520089, -24.71396085582033], + [-47.47990588660294, -24.71399094063914], + [-47.47995918790235, -24.714013351504217], + [-47.48003457632594, -24.714045049313455], + [-47.48009700267667, -24.714071297155495], + [-47.48018151615147, -24.714106831941507], + [-47.480288117750405, -24.714151654671745], + [-47.48034141904983, -24.714174065536824], + [-47.48039472034926, -24.714196476401927], + [-47.480479233824056, -24.714232011188], + [-47.48058054739329, -24.714274609931536], + [-47.48064297374402, -24.714300857773484], + [-47.48072603521064, -24.71433578256329], + [-47.48077549948863, -24.714356579438107], + [-47.4808014036362, -24.714368132372684], + [-47.48088504511289, -24.71440543316153], + [-47.480976675635176, -24.714446297930238], + [-47.481029450935985, -24.714469833796997], + [-47.48107823121395, -24.714491588673884], + [-47.48113100651477, -24.714515125540643], + [-47.48120169591772, -24.714546650362227], + [-47.48126742329227, -24.714575963196328], + [-47.481311241542, -24.714595504085644], + [-47.48143071122293, -24.714648783784032], + [-47.48151435269963, -24.714686085572925], + [-47.481580080074274, -24.714715398407023], + [-47.48164580644889, -24.714744710241042], + [-47.48171153382354, -24.714774022075044], + [-47.481812122396704, -24.71481888182117], + [-47.4818728867431, -24.714845980667786], + [-47.481955560214296, -24.71488285045911], + [-47.482056147787674, -24.714927710205032], + [-47.48212780519605, -24.714959667024186], + [-47.48219849459885, -24.714991192845687], + [-47.48231602926879, -24.715043609549006], + [-47.48239870373999, -24.715080479340223], + [-47.482456441069125, -24.715106228194458], + [-47.48253911454034, -24.715143097985738], + [-47.48260084689212, -24.715170628829853], + [-47.482693445419926, -24.715211925596105], + [-47.48278907096488, -24.715254571354635], + [-47.48290357861758, -24.715305638065498], + [-47.48300017216812, -24.7153487158217], + [-47.483052947468934, -24.71537225168837], + [-47.483101727746906, -24.715394006565212], + [-47.4831724171498, -24.715425532386746], + [-47.48326308066656, -24.715465965157822], + [-47.48332481301845, -24.715493496001905], + [-47.483395502421345, -24.71552502082344], + [-47.48346619182425, -24.715556546644976], + [-47.48354184425546, -24.715590285453995], + [-47.48364339983417, -24.715635576197496], + [-47.483748950435796, -24.71568264793096], + [-47.483836585935244, -24.715721730709713], + [-47.48388936123615, -24.71574526757643], + [-47.48395109358797, -24.71577279842053], + [-47.48405168216134, -24.715817657166593], + [-47.48411740853588, -24.71584696900056], + [-47.4841880989388, -24.715878494822096], + [-47.48425382531344, -24.71590780765604], + [-47.48435344588121, -24.7159522344045], + [-47.484424135284094, -24.71598376022604], + [-47.48449881970983, -24.716017067037452], + [-47.48463923151011, -24.716079686682804], + [-47.484734856055134, -24.71612233244139], + [-47.484809540480775, -24.71615563925279], + [-47.48491509108243, -24.716202710986227], + [-47.48498578048531, -24.71623423680772], + [-47.485052475865466, -24.71626398063927], + [-47.48517497256366, -24.716318610329886], + [-47.4852785871542, -24.716364820068236], + [-47.48536815966477, -24.71640476584204], + [-47.48546378520983, -24.7164474116005], + [-47.48553943664104, -24.716481150409383], + [-47.4855942709535, -24.71650560527097], + [-47.485647046254314, -24.716529141137602], + [-47.48575852688972, -24.716578857856067], + [-47.48586407749134, -24.716625930589547], + [-47.48592883686052, -24.716654811425983], + [-47.485990569212305, -24.71668234227004], + [-47.486057264592475, -24.716712086101666], + [-47.48615579315414, -24.716756026852803], + [-47.48629620395434, -24.7168186454981], + [-47.48638287244839, -24.7168572972792], + [-47.486509364169336, -24.716913708959755], + [-47.486711508321534, -24.717003858449075], + [-47.486846957093505, -24.717064265106984], + [-47.486899732394406, -24.717087800973758], + [-47.48696545876897, -24.71711711280766], + [-47.48704413821744, -24.717152201608926], + [-47.48710986559202, -24.717181513442906], + [-47.487175591966675, -24.71721082627692], + [-47.48724628136965, -24.717242351098296], + [-47.48730002467591, -24.717266318962565], + [-47.48739262320372, -24.717307615728615], + [-47.48753908903859, -24.717372934358625], + [-47.4876604947305, -24.71742707805206], + [-47.487764109321134, -24.71747328679023], + [-47.48784775079786, -24.71751058857892], + [-47.48793538729735, -24.717549671357578], + [-47.48802302279692, -24.717588754136226], + [-47.488106664273666, -24.717626055924896], + [-47.48817335965381, -24.71765579975641], + [-47.48826099515328, -24.717694882535056], + [-47.48833870659627, -24.717729539338652], + [-47.488400438948084, -24.71775707018277], + [-47.48847609037925, -24.717790808991598], + [-47.48856469488433, -24.71783032376783], + [-47.48863937930999, -24.717863630579057], + [-47.48868815958817, -24.717885384455858], + [-47.48877386007662, -24.717923604239406], + [-47.488914271876865, -24.717986223884598], + [-47.48900687040475, -24.71802751965069], + [-47.48910346295524, -24.718070597406673], + [-47.48916519630717, -24.718098128250663], + [-47.48923588571008, -24.71812965407211], + [-47.48932352120957, -24.71816873685064], + [-47.48940316866356, -24.718204256649408], + [-47.48948983615754, -24.718242908430454], + [-47.48956851560603, -24.71827799723164], + [-47.48962129090686, -24.718301533098362], + [-47.48967406620768, -24.718325068965015], + [-47.489722846485684, -24.718346823841703], + [-47.489775621786535, -24.718370359708437], + [-47.489841349161175, -24.718399672542304], + [-47.489955856813836, -24.71845073925302], + [-47.49008138052931, -24.718506718935867], + [-47.49016901602891, -24.718545801714395], + [-47.49026258256214, -24.718587529477976], + [-47.4903462240389, -24.71862483126661], + [-47.49042490348739, -24.718659920067843], + [-47.490539411140155, -24.718710986778493], + [-47.490645928747234, -24.71875849050934], + [-47.490702699070795, -24.71878380836587], + [-47.49076842644545, -24.718813120199773], + [-47.49083814784298, -24.718844214023605], + [-47.49091283226862, -24.718877520834877], + [-47.490952512498374, -24.718896335734893], + [-47.490999600770984, -24.718918662616307], + [-47.4911076093963, -24.718969875344172], + [-47.49119022087462, -24.719009046136083], + [-47.49130790355595, -24.71906484483959], + [-47.491398829082435, -24.719107957610518], + [-47.491468063483254, -24.719140785436032], + [-47.491528529833445, -24.719169455283673], + [-47.491624519389184, -24.71921496904185], + [-47.49167621868852, -24.719239481911586], + [-47.49174084206269, -24.719270123748718], + [-47.491819750519504, -24.71930753754989], + [-47.4919332751768, -24.71936136626386], + [-47.491979910446844, -24.719383478146405], + [-47.49207128997584, -24.7194268059161], + [-47.49214097737931, -24.71945984874052], + [-47.49218436163053, -24.7194804196312], + [-47.49227574115962, -24.719523747401], + [-47.49235419561388, -24.719560946203277], + [-47.492431744062905, -24.71959771600789], + [-47.492475128314055, -24.719618286898584], + [-47.49251019851706, -24.719634915810254], + [-47.49259651501685, -24.719675842592686], + [-47.49268789354594, -24.719719170362463], + [-47.492766349000206, -24.719756369164813], + [-47.49282726835289, -24.71978525501129], + [-47.49290481680192, -24.719822024815816], + [-47.49297450420541, -24.719855066640292], + [-47.49303497055553, -24.7198837374879], + [-47.49309543690557, -24.7199124073355], + [-47.493169734335865, -24.719947636148273], + [-47.493208961562935, -24.719966235049434], + [-47.49328235298791, -24.72000103386444], + [-47.49337788954105, -24.720046332623717], + [-47.493464658043344, -24.72008747440508], + [-47.49357357267401, -24.720139117130614], + [-47.49362988200006, -24.720165815988704], + [-47.493668656224585, -24.720184200890984], + [-47.49374295365468, -24.720219428703736], + [-47.49385511930417, -24.72027261242103], + [-47.49391142863016, -24.720299311279113], + [-47.49400280815935, -24.720342639048837], + [-47.49407249556275, -24.720375681873282], + [-47.49412925789146, -24.720402595730146], + [-47.49420725934307, -24.720439580533633], + [-47.494302342893576, -24.720484664293984], + [-47.49439742544407, -24.720529748054364], + [-47.49448555495435, -24.720571534832228], + [-47.49451926514957, -24.720587518747266], + [-47.494623569753514, -24.72063697448439], + [-47.494679879079484, -24.720663673342454], + [-47.4947454084589, -24.720694745177294], + [-47.49485387008693, -24.720746171903915], + [-47.4949272615119, -24.72078097071899], + [-47.4950237040703, -24.720826699475968], + [-47.495097548497945, -24.720861712289793], + [-47.49518892802694, -24.720905040059414], + [-47.49527063350004, -24.7209437808535], + [-47.49539988024835, -24.721005064527738], + [-47.49547788170003, -24.721042048331064], + [-47.49557062123706, -24.721086021097392], + [-47.49564355865936, -24.721120604913487], + [-47.49574325323658, -24.72116787466228], + [-47.49579956156268, -24.72119457352033], + [-47.49590802319058, -24.72124600124694], + [-47.49596894354339, -24.721274886093358], + [-47.496087078227426, -24.721330900795586], + [-47.49617800475387, -24.721374013566315], + [-47.496216778978386, -24.72139239846859], + [-47.49630815850751, -24.721435726238266], + [-47.49633355465451, -24.721447767174194], + [-47.49643740525582, -24.721497008912486], + [-47.496494620587114, -24.721524137768267], + [-47.496546772889054, -24.721548865636713], + [-47.49662477434077, -24.721585850440118], + [-47.496728625942076, -24.721635091178317], + [-47.49678123124666, -24.721660034045712], + [-47.4967928973142, -24.721665566016313], + [-47.496881377826554, -24.72170751879329], + [-47.49697600837451, -24.72175238855471], + [-47.49704108475128, -24.721783244390625], + [-47.497106161128045, -24.721814101226556], + [-47.497175848531654, -24.721847143050844], + [-47.49722339080685, -24.721869684930986], + [-47.49732308438409, -24.721916954679752], + [-47.49742738898805, -24.7219664114168], + [-47.4975100004664, -24.722005582208485], + [-47.49756215276844, -24.722030310077006], + [-47.49764892127084, -24.722071451858294], + [-47.49774030079986, -24.72211477962782], + [-47.497835837353044, -24.72216007838696], + [-47.4979267638796, -24.722203191157742], + [-47.49797891618154, -24.72222791902627], + [-47.498043539555745, -24.722258560863306], + [-47.4981736933094, -24.72232027353519], + [-47.49823045563808, -24.72234718739209], + [-47.498330602217976, -24.722394672139586], + [-47.49845614594482, -24.72245419882302], + [-47.49850414022277, -24.72247695570203], + [-47.4985821426744, -24.722513940505298], + [-47.49869982435588, -24.722569739208573], + [-47.49876490073268, -24.722600595044558], + [-47.4988170530347, -24.722625323912972], + [-47.498886287435546, -24.722658150738454], + [-47.49897305593796, -24.72269929251968], + [-47.49903352228811, -24.72272796336721], + [-47.49914288992138, -24.722779820091453], + [-47.49922459539449, -24.72281856088543], + [-47.4993201329477, -24.72286385964455], + [-47.499437361626526, -24.722919444348925], + [-47.49944567567463, -24.72292338632792], + [-47.499523677126255, -24.72296037113116], + [-47.49957998645227, -24.722987069989266], + [-47.49967552300555, -24.723032368748278], + [-47.499749367433104, -24.723067382562125], + [-47.49981444381001, -24.723098238398016], + [-47.49987952118679, -24.723129095233958], + [-47.49993167348873, -24.723153823102347], + [-47.5000396811142, -24.723205034830052], + [-47.50006643726903, -24.723217721762555], + [-47.50006879128269, -24.72321883775663], + [-47.50014859574482, -24.723256677555412], + [-47.50020951509754, -24.72328556240176], + [-47.50032258675231, -24.723339175116603], + [-47.50040519923068, -24.723378345908216], + [-47.50047027560755, -24.723409202744087], + [-47.50055450008955, -24.72344736153124], + [-47.50064999863611, -24.723490629289806], + [-47.50075440723369, -24.723537934025924], + [-47.500824848636796, -24.72356984884792], + [-47.50088638098891, -24.72359772669239], + [-47.50099886263276, -24.72364868840812], + [-47.501109816267785, -24.72369895812755], + [-47.50122146190678, -24.72374954184536], + [-47.501288703291586, -24.72378000667543], + [-47.50138420183816, -24.723823274434054], + [-47.50148540941744, -24.723869128178197], + [-47.50155585082053, -24.723901043000108], + [-47.50162142019583, -24.72393075083441], + [-47.50171371772409, -24.7239725676011], + [-47.50181325329374, -24.724017664349482], + [-47.50191446087301, -24.724063518093622], + [-47.50196304615111, -24.724085530970722], + [-47.50203752457731, -24.724119274782506], + [-47.50206661874384, -24.724132456709], + [-47.50221961261953, -24.724201773322175], + [-47.50231594717086, -24.724245419078695], + [-47.502364532448965, -24.724267431955838], + [-47.50244151988956, -24.72430231276126], + [-47.5025798946815, -24.724365006411375], + [-47.50270615940415, -24.724422212092197], + [-47.502757945700644, -24.724445674961242], + [-47.50280653097867, -24.72446768783845], + [-47.50286889933563, -24.72449594468073], + [-47.502939340738756, -24.724527859502626], + [-47.5030356752901, -24.72457150625913], + [-47.50312310079052, -24.724611116038076], + [-47.503255074545834, -24.72467090870438], + [-47.50334973708764, -24.724713797465046], + [-47.503415305462944, -24.724743505299234], + [-47.5035076029912, -24.724785322065873], + [-47.50357317236648, -24.72481502990017], + [-47.50366546989475, -24.72485684666678], + [-47.50378853359906, -24.724912603355634], + [-47.50386567005609, -24.724952432161924], + [-47.50397206368652, -24.725007367894733], + [-47.50406205621983, -24.725053834668735], + [-47.50414301569949, -24.725095637465284], + [-47.50418568395229, -24.725117669358195], + [-47.50421987415495, -24.72513532327228], + [-47.50429645560867, -24.725174866080007], + [-47.50435170293596, -24.7252033919412], + [-47.50441570531527, -24.72523643978051], + [-47.504484086720396, -24.72527174760865], + [-47.50455274412723, -24.72530719843622], + [-47.50468922793595, -24.72537767109346], + [-47.504804654619946, -24.725437270803518], + [-47.50491542627623, -24.725494467525298], + [-47.50502209790832, -24.725549546257387], + [-47.50510715741236, -24.725593466043698], + [-47.50520945101851, -24.725646284786702], + [-47.50526935337343, -24.725677215636317], + [-47.5053976361335, -24.725743453314067], + [-47.50548325064081, -24.725787660099005], + [-47.505538219966525, -24.72581604296087], + [-47.50560687837335, -24.725851493788397], + [-47.505691660875726, -24.725895271575418], + [-47.50571382700711, -24.725906716519788], + [-47.50579916351273, -24.725950779305435], + [-47.50588450101837, -24.725994843091055], + [-47.50595670444623, -24.726032124909654], + [-47.50600812875093, -24.726058677780458], + [-47.50611862340565, -24.7261157305029], + [-47.506267685288975, -24.726192698128393], + [-47.50633224267155, -24.72622603196632], + [-47.506413202151215, -24.726267834762908], + [-47.50647282750455, -24.726298621613108], + [-47.506527796830206, -24.726327005474968], + [-47.50657567511398, -24.72635172635468], + [-47.50664815654343, -24.726389152172572], + [-47.506759205201476, -24.72644649089364], + [-47.5068658768336, -24.726501570625654], + [-47.50695969138944, -24.726550011389886], + [-47.50705760796968, -24.726600569143898], + [-47.507109031274375, -24.726627122014676], + [-47.5072157029065, -24.726682200746783], + [-47.50731799651266, -24.72673501948969], + [-47.507420844122095, -24.726788124231376], + [-47.50749687157259, -24.726827381040298], + [-47.507556218924194, -24.726858024891225], + [-47.507612021254836, -24.726886837751], + [-47.50764676546076, -24.72690477766369], + [-47.50772800194211, -24.726946723459584], + [-47.50783849659686, -24.72700377718195], + [-47.507915633054004, -24.72704360598807], + [-47.50800917060821, -24.727091903753156], + [-47.50812842131485, -24.72715347745344], + [-47.50821021179954, -24.72719570924796], + [-47.508273383173844, -24.72722832808926], + [-47.50843585613665, -24.727312219681014], + [-47.50849985851587, -24.727345267520175], + [-47.50859367407183, -24.72739370828439], + [-47.508705277733156, -24.72745133400399], + [-47.50879881528745, -24.72749963176892], + [-47.508884429794755, -24.7275438375538], + [-47.50902008159863, -24.72761388121286], + [-47.50912703023234, -24.72766910294414], + [-47.50922577781749, -24.72772009069595], + [-47.5093494055501, -24.727783925385314], + [-47.5094128539261, -24.72781668622582], + [-47.50948151233294, -24.72785213805337], + [-47.50957150386619, -24.72789860482718], + [-47.50969103157451, -24.727960321526815], + [-47.5097801911028, -24.728006359302753], + [-47.509882484708974, -24.728059177045676], + [-47.50997657726661, -24.728107761809227], + [-47.51004523567347, -24.72814321263658], + [-47.51015600732992, -24.728200409358234], + [-47.510296868164566, -24.728273142004173], + [-47.510416118871234, -24.7283347157045], + [-47.51047602122618, -24.728365646553932], + [-47.51057393680645, -24.728416204307845], + [-47.510646695237675, -24.728453773124972], + [-47.51077059997187, -24.728517750813513], + [-47.510847181425724, -24.72855729262111], + [-47.51097053215658, -24.728620984311007], + [-47.51101785543711, -24.72864541919204], + [-47.511112224996246, -24.728694145954883], + [-47.511214518602465, -24.728746964697816], + [-47.511307780155114, -24.728795119463346], + [-47.511410350763, -24.72884808120557], + [-47.51149103224112, -24.728889741002757], + [-47.5115088203465, -24.728898925958013], + [-47.51163654910342, -24.72896487763698], + [-47.51169179643085, -24.728993404498084], + [-47.51173064166105, -24.72901346240047], + [-47.51178644299165, -24.729042275260205], + [-47.51188873659786, -24.729095093003085], + [-47.51201236433049, -24.72915892769228], + [-47.512084568758425, -24.729196209510715], + [-47.512213128520244, -24.72926259118755], + [-47.5122856089498, -24.729300016005432], + [-47.51237914750413, -24.729348313770206], + [-47.51245600595958, -24.729387999577078], + [-47.51255419954143, -24.72943870033014], + [-47.51263953604718, -24.729482764115634], + [-47.51270036840765, -24.72951417396273], + [-47.512781654890816, -24.729556584758438], + [-47.51283820222296, -24.729584857616086], + [-47.512898283581514, -24.72961666546529], + [-47.512947761872134, -24.729641404340693], + [-47.512983104169955, -24.729687348259205], + [-47.51305025346848, -24.729690882082107], + [-47.51309266467252, -24.729697950971513], + [-47.51313723598493, -24.729736105863445], + [-47.51317748523844, -24.72976156576357], + [-47.51323403262697, -24.72980750962584], + [-47.5132941139968, -24.72984285147594], + [-47.51333652424586, -24.72986405636911], + [-47.51340072953947, -24.729869963200457], + [-47.51343742975592, -24.729888607108155], + [-47.51347082398963, -24.729917068027135], + [-47.51351676823137, -24.729931204909082], + [-47.51356978049195, -24.729941807771333], + [-47.5136135227948, -24.729978063664973], + [-47.51365106704282, -24.730005422572663], + [-47.51371777840985, -24.730031026402656], + [-47.51378890079035, -24.73005490022044], + [-47.51383484608842, -24.730086708107027], + [-47.51387277932433, -24.730109768012547], + [-47.51392067160685, -24.73013409689207], + [-47.5139762139188, -24.730157390750968], + [-47.51402922620203, -24.73017506161504], + [-47.51406729047189, -24.730208580523033], + [-47.514082239620635, -24.730235142490542], + [-47.514117581828216, -24.730252813401492], + [-47.514199773253445, -24.73027588318962], + [-47.514243383510774, -24.73029803707993], + [-47.51428722281344, -24.730334098973223], + [-47.514333167077645, -24.730355303857024], + [-47.51441813954177, -24.730386814640102], + [-47.514419575552566, -24.730388266636737], + [-47.514456864832496, -24.730425987547896], + [-47.51452048012711, -24.730433055381035], + [-47.51453815130431, -24.730464863342622], + [-47.51457349252317, -24.730486068254592], + [-47.514622971858955, -24.730524944133755], + [-47.514725288353844, -24.730542847867156], + [-47.51479614672392, -24.73056381968487], + [-47.51485781613575, -24.730610173533577], + [-47.51490570741816, -24.730634502413114], + [-47.51497285678445, -24.73065924124154], + [-47.51499227393787, -24.73068127619595], + [-47.51504786827167, -24.73071131405651], + [-47.51508241752394, -24.730744061973652], + [-47.51513229477845, -24.730756931844695], + [-47.51517784107882, -24.73079000573278], + [-47.51522181831577, -24.730805302620166], + [-47.515315673837726, -24.730843018381307], + [-47.51538039226764, -24.730890983222483], + [-47.5154252345885, -24.73093137211428], + [-47.515481781954485, -24.730970247974668], + [-47.51555012928667, -24.730982694796673], + [-47.51560547866418, -24.73102679466162], + [-47.515662025962484, -24.731044465516412], + [-47.51570027618797, -24.731063821420108], + [-47.51574892048, -24.731090105298033], + [-47.51580692776289, -24.731101012147107], + [-47.515863475095124, -24.73112928500469], + [-47.51589485335592, -24.731168954931928], + [-47.5159447616572, -24.731196433806915], + [-47.515990705910156, -24.731214104689723], + [-47.5160342781929, -24.731244288582296], + [-47.51611440259731, -24.731263583374822], + [-47.516153278865175, -24.731295390280234], + [-47.516208229237094, -24.731338277145895], + [-47.51626885260106, -24.731371032993778], + [-47.516337056989805, -24.731401415820983], + [-47.516404207446364, -24.731454427657024], + [-47.51646075380107, -24.73148976951644], + [-47.51654179023952, -24.73151850530913], + [-47.51658091648437, -24.731542782211772], + [-47.516630395808875, -24.731578123089914], + [-47.51671875026586, -24.73160286186225], + [-47.51677176358296, -24.731631135729085], + [-47.516811330857585, -24.731664142633004], + [-47.51683537899043, -24.731673545571688], + [-47.51690959735306, -24.73168768237852], + [-47.51696260963623, -24.731705353242635], + [-47.51699795195675, -24.73175836516296], + [-47.517016034086424, -24.731774748119363], + [-47.51705795033804, -24.731797396014212], + [-47.51710090259588, -24.73182060390643], + [-47.5171605249117, -24.731839650753418], + [-47.51722051731387, -24.73188523360635], + [-47.517275073641386, -24.731914711469535], + [-47.51733016695339, -24.731938607329674], + [-47.517371105217904, -24.731966598228613], + [-47.517404384462736, -24.73199868814885], + [-47.51745028169319, -24.732009379029957], + [-47.51750687601398, -24.73203402988639], + [-47.51755474032028, -24.73206581976784], + [-47.51760229959144, -24.732087042647322], + [-47.51764234384614, -24.732113153548074], + [-47.5176906551387, -24.73214005442708], + [-47.51776133848622, -24.732154191243342], + [-47.517800214720246, -24.732175396145827], + [-47.51785322807118, -24.73221427201554], + [-47.51790270639572, -24.732249613893714], + [-47.51797339083349, -24.732292023717424], + [-47.51801327906512, -24.73231111361666], + [-47.51804760933156, -24.73234857053566], + [-47.518105934603014, -24.73235545638271], + [-47.5181607028831, -24.73236977524126], + [-47.518205840183064, -24.732403270130455], + [-47.51825860648945, -24.73242852299713], + [-47.518312626803116, -24.73245437686073], + [-47.518355084109615, -24.73249347075853], + [-47.51839749434744, -24.732511141650672], + [-47.51844829159082, -24.73251930351812], + [-47.51847171281164, -24.732557085465977], + [-47.51852825908737, -24.732567688318856], + [-47.51857420434033, -24.732585358201632], + [-47.51864488773307, -24.73261363202165], + [-47.518697901050075, -24.73264190488856], + [-47.51876151638994, -24.73266310972542], + [-47.518811908702, -24.732693324599783], + [-47.51885340601999, -24.732737327501397], + [-47.51890995232959, -24.732758532356986], + [-47.51897356868074, -24.732783271194798], + [-47.51903560800085, -24.732800384034753], + [-47.51908549929046, -24.73282426090868], + [-47.519104333477216, -24.73285748886763], + [-47.519150277696205, -24.732864556747572], + [-47.51918561993777, -24.732892830661367], + [-47.51923156417944, -24.732906967543155], + [-47.519292191490536, -24.732923181386717], + [-47.51937646697988, -24.732963513173814], + [-47.519429705300325, -24.732992551040304], + [-47.51947188951221, -24.733002388931016], + [-47.51950448675055, -24.73303333985274], + [-47.51954964200278, -24.7330518677378], + [-47.51957802919318, -24.73307345266822], + [-47.51963092848601, -24.733094277533464], + [-47.519680407765414, -24.733115482407875], + [-47.51972281802588, -24.733140221301845], + [-47.519751091237055, -24.733168495234374], + [-47.519780831413975, -24.733184067159566], + [-47.519815497622666, -24.733202975072693], + [-47.51983237779929, -24.733235644036522], + [-47.519867720040764, -24.733263916950296], + [-47.51991719933137, -24.733288656825597], + [-47.51996134650064, -24.733282525706873], + [-47.51998434867508, -24.7333063266521], + [-47.52002498488375, -24.7333172365472], + [-47.520058567139316, -24.733352271467467], + [-47.52013278455831, -24.733384078278977], + [-47.5201889098705, -24.733406646136054], + [-47.5202176061357, -24.73345122807171], + [-47.52028746246375, -24.73346039988885], + [-47.5203094946416, -24.7334865688373], + [-47.520351904902, -24.733511308731345], + [-47.52041275921806, -24.733528740574545], + [-47.5204367263891, -24.733550184516634], + [-47.52050933079939, -24.73358141433232], + [-47.52054628613986, -24.73363853824945], + [-47.520616969476166, -24.73364914006471], + [-47.5206805858724, -24.73368801590626], + [-47.52073020912899, -24.73370188777827], + [-47.52078661148395, -24.733737494638092], + [-47.52082876172225, -24.733755642531083], + [-47.52086491393983, -24.73377536044042], + [-47.52091737622392, -24.733794041306123], + [-47.52097745760517, -24.733832917157038], + [-47.52102611491025, -24.73386328503603], + [-47.52108701822049, -24.733878860878523], + [-47.521135811570616, -24.733923116760824], + [-47.521190611900515, -24.733953006623356], + [-47.52122341812812, -24.73398034554353], + [-47.52127809636211, -24.733980345398443], + [-47.52134917773595, -24.734002216215647], + [-47.521398388016316, -24.73402408709092], + [-47.52146400138432, -24.73405142592403], + [-47.521480405576774, -24.734089699890728], + [-47.52154055093883, -24.734122506739794], + [-47.52161163234769, -24.734155313559842], + [-47.52165537563958, -24.73418811945253], + [-47.521704585989795, -24.734231862333555], + [-47.52178660241053, -24.73425373312177], + [-47.521852216761076, -24.734275603953492], + [-47.5219232981524, -24.734302942772082], + [-47.52196157240351, -24.734330281677735], + [-47.522027186736594, -24.734346684507997], + [-47.52210920320964, -24.73438495830057], + [-47.52219668870619, -24.734423233078562], + [-47.52228964129585, -24.73448337784785], + [-47.52245367517219, -24.734538055427073], + [-47.522557563703906, -24.734565394158686], + [-47.522672387334794, -24.734609135865547], + [-47.52280184209812, -24.734674718539424], + [-47.522889363636885, -24.734726201320814], + [-47.52299603025112, -24.734775637050884], + [-47.52307582372362, -24.73481668785006], + [-47.523163876244986, -24.734861987628307], + [-47.52323944661136, -24.734875499431404], + [-47.523282519947436, -24.734923024329653], + [-47.52336661944543, -24.734966291117956], + [-47.523460837003284, -24.7350147618808], + [-47.52352027635518, -24.735045340731208], + [-47.5236255668716, -24.73506598345718], + [-47.52372487856669, -24.735150600216134], + [-47.52379257696754, -24.735185429045643], + [-47.52384561528163, -24.735212714912162], + [-47.5239357628154, -24.735259091685137], + [-47.5239962432137, -24.73530280253619], + [-47.524091278736215, -24.73533909929367], + [-47.52415293010121, -24.735370816138392], + [-47.524207323544296, -24.735436656011522], + [-47.52434632628686, -24.735482990654823], + [-47.5244497738589, -24.735523529391077], + [-47.524511071221866, -24.735555065236795], + [-47.5246150369402, -24.73564070398355], + [-47.52472215150304, -24.73567347470789], + [-47.52476750085103, -24.735721663600287], + [-47.52488733956691, -24.735785299299113], + [-47.52496926803712, -24.735822773091574], + [-47.52505071554296, -24.735872053888453], + [-47.525123716960955, -24.735905144703437], + [-47.5252152265258, -24.735959411474997], + [-47.52528211192531, -24.73599492730688], + [-47.52538113140744, -24.736013257048924], + [-47.525468651897, -24.736049294826127], + [-47.5255447484944, -24.73613439064671], + [-47.52562368196592, -24.736176304448332], + [-47.52572606547511, -24.736198593182422], + [-47.52582388307449, -24.7362552239378], + [-47.52588869954926, -24.73631703278214], + [-47.525963865998214, -24.736356946593233], + [-47.52606585253713, -24.736389077331], + [-47.52614444107704, -24.736452834139236], + [-47.5262378026348, -24.736502409904578], + [-47.526364452275025, -24.736533228576494], + [-47.52646404798643, -24.736622548335816], + [-47.52659097665523, -24.73666193400929], + [-47.5266836462984, -24.73673915778375], + [-47.52681235299699, -24.736785491454448], + [-47.52689472553028, -24.73684212225068], + [-47.52698739409123, -24.7368936040183], + [-47.52704917338832, -24.736903900857072], + [-47.527131545822996, -24.736929641645208], + [-47.5272190674112, -24.736996568430555], + [-47.52731173597212, -24.73704805019826], + [-47.52736836734597, -24.737089237058758], + [-47.52742775269865, -24.73712013590936], + [-47.52753826043453, -24.737202497637764], + [-47.52768756020486, -24.737243683252352], + [-47.527776033758286, -24.737298454031983], + [-47.527901177498386, -24.737362526716687], + [-47.52800675403088, -24.737387833443144], + [-47.52814301292854, -24.73748634510734], + [-47.52822813048778, -24.737547428897525], + [-47.52835192316393, -24.737593305581086], + [-47.52846254481804, -24.737649943302355], + [-47.52847211887473, -24.737654845278293], + [-47.52861425071519, -24.73772761592009], + [-47.52874810653452, -24.737804839585223], + [-47.52884592411756, -24.73785632233914], + [-47.52890255449141, -24.737897508199612], + [-47.528974630980706, -24.737954138023305], + [-47.529123930882605, -24.738036509648662], + [-47.529190858300446, -24.738077695481874], + [-47.52930412101532, -24.738149771200142], + [-47.52940193859819, -24.738201252954042], + [-47.529520348384416, -24.738288773662834], + [-47.52962846207722, -24.738360848394848], + [-47.52976746600094, -24.738463813052984], + [-47.529942507947105, -24.73852559160451], + [-47.53007636265127, -24.738566777260015], + [-47.53023595967946, -24.738674889864797], + [-47.53034407340525, -24.73875726159946], + [-47.530441891037505, -24.73882418935744], + [-47.53053510370104, -24.73890701713182], + [-47.53063237723081, -24.73894259788296], + [-47.530683860582684, -24.73898378375707], + [-47.53077138100643, -24.738999228528787], + [-47.53083830845722, -24.739050711364673], + [-47.53096186724911, -24.739133083058405], + [-47.53106998089247, -24.739189712786253], + [-47.53113370636827, -24.739253277633747], + [-47.53120527780672, -24.739294677454684], + [-47.53128032926491, -24.73933756426672], + [-47.53132560857711, -24.739374660156216], + [-47.53136060879401, -24.73939566006888], + [-47.53138160891266, -24.739404660015445], + [-47.531394608984165, -24.7394096599823], + [-47.531406609054685, -24.739415659951973], + [-47.53142360914975, -24.739422659908744], + [-47.53143960924056, -24.73942965986805], + [-47.531453609319634, -24.7394356598325], + [-47.53147560944253, -24.739444659776392], + [-47.53149660957068, -24.73945665972384], + [-47.53152260972667, -24.739470659658473], + [-47.53154560986986, -24.73948465960111], + [-47.53157061002147, -24.739498659538413], + [-47.531600610200925, -24.739514659462994], + [-47.53165561052252, -24.739541659323947], + [-47.531682610654016, -24.739546659253655], + [-47.53170861077804, -24.739550659185635], + [-47.5317326108998, -24.739556659123522], + [-47.531752611004585, -24.73956265907198], + [-47.53177361111995, -24.739570659018344], + [-47.531809611315545, -24.73958365892611], + [-47.53184661153128, -24.739601658832658], + [-47.53188961178234, -24.739622658723988], + [-47.531933612040895, -24.739644658612985], + [-47.53197361228873, -24.739668658513033], + [-47.53200761250445, -24.739690658428607], + [-47.532031612661484, -24.739707658369348], + [-47.53205861282494, -24.73972265830159], + [-47.53208761301291, -24.739742658229815], + [-47.53211161316028, -24.7397566581698], + [-47.532128613277834, -24.739770658128435], + [-47.53214461339411, -24.739785658089822], + [-47.53215561347634, -24.739796658063536], + [-47.532179613627, -24.739811658003756], + [-47.53220961379689, -24.739824657927514], + [-47.53223561393368, -24.73983265786052], + [-47.532259614065126, -24.73984165779922], + [-47.532273614140905, -24.739846657763415], + [-47.53229661426491, -24.739854657704402], + [-47.53231361434399, -24.739856657659743], + [-47.532323614399594, -24.73986065763431], + [-47.532349614542774, -24.739870657567856], + [-47.532369614657064, -24.739879657517157], + [-47.53238861475431, -24.739884657467993], + [-47.53241961492852, -24.739897657389108], + [-47.532491615351496, -24.739933657207423], + [-47.53255161570735, -24.73996465705624], + [-47.532631616186954, -24.740007656855145], + [-47.53268361649243, -24.740033656723835], + [-47.53274161681725, -24.74005765657616], + [-47.53279361711643, -24.740081656444353], + [-47.532838617376036, -24.740102656330418], + [-47.53288061762283, -24.74012365622437], + [-47.53292861793362, -24.74015665610568], + [-47.53298461829787, -24.74019565596727], + [-47.5330406186493, -24.740230655827734], + [-47.533107619060516, -24.740269655660125], + [-47.53316561941101, -24.740301655514507], + [-47.53321761972288, -24.740329655383718], + [-47.53327862009568, -24.740364655230987], + [-47.53333962045258, -24.740394655076884], + [-47.533388620742066, -24.740419654953357], + [-47.53345562115647, -24.740459654785887], + [-47.53352262158059, -24.740502654619313], + [-47.53360762211034, -24.740554654407305], + [-47.533701622688284, -24.74060965417218], + [-47.533782623191385, -24.740658653969927], + [-47.533866623713756, -24.740709653760224], + [-47.534035121687175, -24.7407886923336], + [-47.5341866036779, -24.74089589895952], + [-47.534365445645705, -24.740959358501225], + [-47.53451544258249, -24.741051663127145], + [-47.5346481323529, -24.741115122791445], + [-47.534757744969326, -24.741161275512464], + [-47.534923034816735, -24.741205192084983], + [-47.535082346737106, -24.74127992168147], + [-47.53520773539209, -24.74131703935824], + [-47.53534042518095, -24.741386268023977], + [-47.5355077290442, -24.741432419591817], + [-47.53565192902763, -24.741547099238883], + [-47.535744262535474, -24.741582415003013], + [-47.535951052755756, -24.741687411481326], + [-47.53609617759421, -24.7417554861138], + [-47.536344249116475, -24.74189971249272], + [-47.53650001507782, -24.741992017103236], + [-47.53666155019303, -24.74212470570902], + [-47.53689231434613, -24.74217662710969], + [-47.53704808028913, -24.742263162718693], + [-47.53722692327544, -24.742332391261765], + [-47.53766537488871, -24.742563153157658], + [-47.53802882899682, -24.74273622423757], + [-47.5382942075378, -24.74286314256594], + [-47.53850766494896, -24.743018907039687], + [-47.538674968959775, -24.743111212619464], + [-47.53888265723561, -24.743232362099583], + [-47.53915957377058, -24.743341973392553], + [-47.539424952459164, -24.743515045732963], + [-47.53971917719738, -24.743665040990564], + [-47.54028454951978, -24.743947723562563], + [-47.54064223462164, -24.744126563659112], + [-47.540769154515175, -24.744236176350572], + [-47.540924920495144, -24.744334249962446], + [-47.54121337600566, -24.744420785218573], + [-47.541461447564984, -24.744576549600257], + [-47.54165182767456, -24.744668854118533], + [-47.541859515821194, -24.744749620587815], + [-47.5420498969123, -24.744836156104622], + [-47.54221143106469, -24.744980382713145], + [-47.542338351699726, -24.74500922838337], + [-47.54251719383384, -24.74512460893839], + [-47.54268449782624, -24.74521114451642], + [-47.542817187670686, -24.745297680186447], + [-47.54306525915614, -24.745430368561987], + [-47.54326140932729, -24.745534211067863], + [-47.54350371182514, -24.745678437461716], + [-47.54363640061412, -24.74574766612717], + [-47.54379216763108, -24.745857277741898], + [-47.54397100967282, -24.745943813289298], + [-47.54414985180699, -24.746059194844133], + [-47.5443113867932, -24.746151499438966], + [-47.544490228835045, -24.74623803498632], + [-47.54464599472276, -24.746307263590367], + [-47.544755608450046, -24.746388030320176], + [-47.545015218132576, -24.746566870676954], + [-47.54519982936536, -24.746705328222497], + [-47.545447900869426, -24.74684378559933], + [-47.54561520593576, -24.74695339718331], + [-47.54575943294027, -24.74707454783166], + [-47.54598442814261, -24.747149545253215], + [-47.546157501252004, -24.7472649258233], + [-47.546336344275446, -24.74734569236901], + [-47.54648634121235, -24.74743799699442], + [-47.54664787619868, -24.747530301589116], + [-47.546803641104816, -24.74760529919464], + [-47.546959407121946, -24.747714911809222], + [-47.5471036349049, -24.747766832439304], + [-47.547207479533746, -24.747824523178288], + [-47.54732286119336, -24.747876444885144], + [-47.54748439614266, -24.74795721147683], + [-47.547657469215274, -24.748061054043834], + [-47.54781900425703, -24.74817066564313], + [-47.54795746310773, -24.74825143329607], + [-47.5480901528229, -24.748297584955317], + [-47.54819399647022, -24.748361044695823], + [-47.5483100181343, -24.74841349240104], + [-47.54846895301506, -24.748476299994802], + [-47.548615140880685, -24.74855142262584], + [-47.54874206173748, -24.748649497313963], + [-47.54890936552682, -24.748672572875172], + [-47.5490882075318, -24.748747570419184], + [-47.549290126561445, -24.748799490895863], + [-47.549405508461305, -24.748926410622193], + [-47.54959012036159, -24.748961024140318], + [-47.54972960420668, -24.749038665789726], + [-47.54987857498301, -24.749082174404904], + [-47.55011510841945, -24.749214862810646], + [-47.55036894980048, -24.74930716715961], + [-47.55059394411366, -24.74941677858991], + [-47.550795863457466, -24.749566774092205], + [-47.55109008810355, -24.74968792434135], + [-47.55136511662838, -24.74979678863826], + [-47.55136700463883, -24.749797535633434], + [-47.55154584681003, -24.749924455190957], + [-47.55170738188882, -24.750045604793], + [-47.55194391528821, -24.750166755195604], + [-47.55222083289734, -24.750299442493713], + [-47.55240603616692, -24.750448558040063], + [-47.55255441611921, -24.750547765671335], + [-47.552729755600836, -24.751088508346292], + [-47.55375353131865, -24.7521312048953], + [-47.55619888776288, -24.75368787379556], + [-47.56200469043455, -24.75738374130608], + [-47.56211942015928, -24.75745677601965], + [-47.562234149884006, -24.757529811733214], + [-47.56629160401691, -24.759645305479285], + [-47.56826403788146, -24.760403174422727], + [-47.56942726428873, -24.76085012144024], + [-47.570816558858255, -24.762293161113234], + [-47.573646228268274, -24.763636777921633], + [-47.574845833027005, -24.764767802017474], + [-47.57637113300859, -24.765534210150356], + [-47.57903378786643, -24.767239242492895], + [-47.58098263225528, -24.768813987703176], + [-47.584006538705694, -24.770533254082018], + [-47.584145421553046, -24.77061221673188], + [-47.58594549714406, -24.772135931322577], + [-47.58767332846221, -24.773048132947594], + [-47.5887314490115, -24.773989634366337], + [-47.594926584941454, -24.777860757824683], + [-47.5970097491983, -24.779524691688867], + [-47.59767445518512, -24.779880713004985], + [-47.59833916117197, -24.780236733320983], + [-47.60401063246301, -24.784291185207014], + [-47.60986491091088, -24.787838952465048], + [-47.61264525789782, -24.79004396059216], + [-47.615091874299566, -24.791578394439057], + [-47.617229068050875, -24.7927004470074], + [-47.61814863372393, -24.79355140276322], + [-47.62764415181667, -24.800840743192644], + [-47.62834209608411, -24.80092877534616], + [-47.62904003935148, -24.80101680749961], + [-47.62959692737611, -24.80214636229276], + [-47.63117192929584, -24.803444046401562], + [-47.63314710023276, -24.804526692383433], + [-47.635644847907635, -24.80700445731437], + [-47.63678597656004, -24.80786381947246], + [-47.63837411265912, -24.8085793543961], + [-47.64253661850499, -24.812001495095725], + [-47.64453183696677, -24.81321885205059], + [-47.645431141545785, -24.8140652398505], + [-47.648818019434344, -24.816358367339134], + [-47.649847319055866, -24.81735499982643], + [-47.65309171702798, -24.819552117668607], + [-47.65428992253011, -24.820906544789928], + [-47.65695675918752, -24.823150238189317], + [-47.65800685559127, -24.82374218251718], + [-47.660926989358, -24.826302243311385], + [-47.66532080661774, -24.829230163234605], + [-47.66664531276958, -24.830616831018826], + [-47.66842477846604, -24.831879705549312], + [-47.671228791469424, -24.834354704623728], + [-47.67531725114865, -24.836886150255744], + [-47.67595205313605, -24.837279199645486], + [-47.677096475279356, -24.838899206966087], + [-47.6809820752656, -24.842407858375534], + [-47.687820468979766, -24.847488389215894], + [-47.69081938126699, -24.85009722777865], + [-47.69220234093934, -24.8509475742618], + [-47.693487860989684, -24.85235043414152], + [-47.69637009957067, -24.854278078846708], + [-47.70209461305986, -24.858592869468524], + [-47.704175795257306, -24.859916203178983], + [-47.70625697745536, -24.86123953588828], + [-47.70931383177583, -24.864085248332604], + [-47.713870779226696, -24.86776534792699], + [-47.71720420953617, -24.870242163527443], + [-47.718962152697465, -24.87136252305161], + [-47.720402450671976, -24.872535212445054], + [-47.72248787796406, -24.873879679136987], + [-47.726646356446835, -24.87716693469328], + [-47.730986798486086, -24.88130522595507], + [-47.73212594097881, -24.88211003506853], + [-47.73487027667765, -24.883633898013844], + [-47.73706454949084, -24.885300206478384], + [-47.737900820995186, -24.886198442430803], + [-47.74154211879846, -24.88903035325582], + [-47.74393121623064, -24.8915491463901], + [-47.74537122072489, -24.8922657216637], + [-47.74801384581165, -24.894652066076887], + [-47.75029198849815, -24.8958613041963], + [-47.75118396913625, -24.897032501058145], + [-47.75323552985071, -24.899158522005077], + [-47.755373143422986, -24.90020986446394], + [-47.76657271557615, -24.90916563221976], + [-47.77304396257336, -24.913852198766122], + [-47.77684998467114, -24.917770425353115], + [-47.78144366878059, -24.921578314770265], + [-47.78625706228986, -24.92521985654463], + [-47.7913484784316, -24.929604873727502], + [-47.79245855498559, -24.930766080979154], + [-47.7944352737991, -24.93209631591376], + [-47.79639750060056, -24.934050969030352], + [-47.80315106228365, -24.940086530052074], + [-47.810567062674465, -24.946384023313524], + [-47.81160116241414, -24.94708962165966], + [-47.81542545094036, -24.951097901160804], + [-47.820984531719674, -24.95566255105572], + [-47.82309558093006, -24.95784616579849], + [-47.826936117146495, -24.961126439073066], + [-47.82784852028044, -24.96210843780773], + [-47.82931452588335, -24.963121372039325], + [-47.832095297160826, -24.9659719920992], + [-47.83476352171643, -24.96814160730952], + [-47.83735283387632, -24.97089972986504], + [-47.84234990318594, -24.975432577242977], + [-47.84620689005591, -24.979791563686604], + [-47.84848286628194, -24.982062685977297], + [-47.850371353222705, -24.984748651417302], + [-47.85665660708773, -24.991104213652914], + [-47.85848246006164, -24.993878388276595], + [-47.860375575778534, -24.995881828543364], + [-47.86271309021741, -24.998738163781816], + [-47.86591496155575, -25.002259567799285], + [-47.86735607197875, -25.003547345139317], + [-47.86851629721959, -25.004840671248836], + [-47.869780852168404, -25.00681733122295], + [-47.871045406118625, -25.008793992196164], + [-47.872033782189746, -25.009955230745227], + [-47.87418533170486, -25.01307006453759], + [-47.88082565268375, -25.024712932894865], + [-47.88165604060511, -25.026030784906574], + [-47.881866127218956, -25.02654810544374], + [-47.881968759337504, -25.02675302420716], + [-47.88217159932295, -25.02709011672469], + [-47.88235147111212, -25.027096011232775], + [-47.88229291851049, -25.02729173343611], + [-47.882397048529775, -25.027464783188435], + [-47.88258105087865, -25.027935782786987], + [-47.88290009145007, -25.02829958699159], + [-47.88275605294376, -25.028332782393896], + [-47.8828368614048, -25.028669140245814], + [-47.88291605583666, -25.028998781100746], + [-47.88322305881827, -25.029501781368825], + [-47.88344406189625, -25.03014478090329], + [-47.88362906462785, -25.03072978052376], + [-47.883694709627754, -25.030946584391117], + [-47.883733006211045, -25.031073064313702], + [-47.883758350597084, -25.031156771262495], + [-47.88446607736693, -25.033490778831325], + [-47.88453544026515, -25.0339735427465], + [-47.88460480316336, -25.034456307661703], + [-47.884711347734665, -25.035395429574592], + [-47.884910312424815, -25.03625109121576], + [-47.884975090648496, -25.03683777816606], + [-47.88500951032995, -25.03699876810687], + [-47.885043929011395, -25.03715975804758], + [-47.88512039714683, -25.037704727956797], + [-47.88513866700854, -25.037940874958224], + [-47.88515693687026, -25.03817702295968], + [-47.88517809692885, -25.038468777965342], + [-47.885280099445936, -25.039095777822375], + [-47.8866808114441, -25.0393978000442], + [-47.885311867004866, -25.039524612828913], + [-47.88539037342733, -25.040454710816636], + [-47.88541209507241, -25.040922408859032], + [-47.8853960959424, -25.04120520696475], + [-47.886134656335855, -25.041576339018754], + [-47.88534660134282, -25.041691046206733], + [-47.8852761900059, -25.042885597660764], + [-47.88524011390642, -25.043504778895056], + [-47.885360115143826, -25.043722778613283], + [-47.88539011625474, -25.04401877859555], + [-47.88541511709526, -25.044239778575154], + [-47.88548311831583, -25.044519778449718], + [-47.88557011955135, -25.044779778267575], + [-47.88558086851606, -25.045056541298486], + [-47.88566141320138, -25.04546035616555], + [-47.885815124377984, -25.045917777843435], + [-47.885821490029734, -25.04610590886699], + [-47.885824125299465, -25.046183777876887], + [-47.88579984072181, -25.046342307978012], + [-47.88578570128412, -25.04652993905787], + [-47.88578212681277, -25.046693778103403], + [-47.88580212793417, -25.047005778116574], + [-47.88581533555502, -25.047175748117425], + [-47.88582512901528, -25.047301778118108], + [-47.88616913141131, -25.047579777234322], + [-47.886374246779766, -25.047727411703352], + [-47.88655927901417, -25.04786059122442], + [-47.88657551212251, -25.047872275182392], + [-47.88708329951203, -25.045226208211073], + [-47.886558317577574, -25.04833270433013], + [-47.88657399330532, -25.04853165333043], + [-47.886852079215146, -25.052060784336565], + [-47.88760045716645, -25.05318877152727], + [-47.888543554470935, -25.054171831151372], + [-47.88970422936277, -25.05475006108925], + [-47.890925178634355, -25.05355885447628], + [-47.89245665688799, -25.052865151118528], + [-47.90032421923094, -25.05426648680486], + [-47.90240906471487, -25.054434497111007], + [-47.903850883661484, -25.054366621133042], + [-47.90782364742819, -25.053693374065954], + [-47.910398554073424, -25.05388129202644], + [-47.91021254357502, -25.063590578627565], + [-47.908735285512165, -25.064270484837728], + [-47.907371260046126, -25.066186360002582], + [-47.90687739176258, -25.06853984486834], + [-47.90679473761793, -25.069804702368206], + [-47.904766616817156, -25.075479200171614], + [-47.90467930682978, -25.076796930696062], + [-47.90404458586338, -25.07942616100971], + [-47.9030664060399, -25.081338857114325], + [-47.90204345390388, -25.08261469720481], + [-47.90104110080732, -25.083575663170773], + [-47.899264270422805, -25.084546284270143], + [-47.897965785812, -25.08573435110015], + [-47.896652412626324, -25.089772142588117], + [-47.895959447631164, -25.09276769014373], + [-47.896819100144945, -25.09421684609126], + [-47.89729130036352, -25.095475632063753], + [-47.89884242478304, -25.097806689297396], + [-47.898513084807426, -25.099438291556794], + [-47.89681930498236, -25.104971551416956], + [-47.89537784062262, -25.105219175439892], + [-47.89523991426419, -25.107389281289418], + [-47.89570621892268, -25.108786351307362], + [-47.898761791171715, -25.110026911159245], + [-47.90298666801612, -25.11323924121147], + [-47.90404129975738, -25.11480250964164], + [-47.905151935517495, -25.115699771773542], + [-47.907235074929034, -25.11703979331927], + [-47.90890652476129, -25.118735323075065], + [-47.90834354988623, -25.120095654919382], + [-47.90929547336282, -25.12171046764094], + [-47.909927966257676, -25.12356135829376], + [-47.91165076160403, -25.127439278372773], + [-47.91263044274489, -25.128916702986324], + [-47.91315020993517, -25.13099954099789], + [-47.914267853407345, -25.132697578276872], + [-47.91479584355105, -25.134456046195645], + [-47.914908620998624, -25.136539328329587], + [-47.916741223270265, -25.139052738807422], + [-47.91559928032458, -25.140236509212894], + [-47.91576230441392, -25.141549205043063], + [-47.916381267976796, -25.142716847583397], + [-47.916657819864966, -25.144122337119654], + [-47.91795930312672, -25.144921223695917], + [-47.9193733755155, -25.146211320065323], + [-47.91973384714119, -25.148924476647583], + [-47.919793094109004, -25.152723575292846], + [-47.91959419635168, -25.153947720103087], + [-47.91866049244719, -25.155772342071558], + [-47.91782536820676, -25.15677257459233], + [-47.91657073379379, -25.157064842121144], + [-47.91543374851552, -25.156350012109996], + [-47.91373865911625, -25.15631571278551], + [-47.9127877724807, -25.157645772696473], + [-47.91382498529803, -25.158948388109284], + [-47.914234459967595, -25.16011646822742], + [-47.91297306731693, -25.16393163152742], + [-47.910771638460616, -25.16381448658509], + [-47.909379046441536, -25.166493600005882], + [-47.90932079223585, -25.16800050948937], + [-47.91104249204436, -25.167524177629883], + [-47.91254109427186, -25.167459636474813], + [-47.9144870642548, -25.167942283199558], + [-47.91475544865021, -25.16652131915465], + [-47.91375800779476, -25.165754610747655], + [-47.91312388603987, -25.16425262117925], + [-47.914625480993884, -25.160219723169128], + [-47.91632038381155, -25.160677662583335], + [-47.917657943083725, -25.16053540785678], + [-47.92048929747948, -25.16090217510966], + [-47.92192862102133, -25.160710075090368], + [-47.922933200629515, -25.161692895522158], + [-47.925049048257996, -25.161853132706653], + [-47.92760090136551, -25.163089840912697], + [-47.93151516862879, -25.166803556872335], + [-47.93421001768695, -25.16754320057295], + [-47.935512070205384, -25.168117138091258], + [-47.93993159814585, -25.171681302610025], + [-47.94379312180869, -25.174087465424215], + [-47.94821449214865, -25.178063498011802], + [-47.94968433114391, -25.178861851106767], + [-47.953737702950676, -25.182254295582993], + [-47.95616013098293, -25.183631071155457], + [-47.957881071985675, -25.185598149793847], + [-47.9600127104508, -25.187474875273317], + [-47.9665500460304, -25.193867210464138], + [-47.968046458059106, -25.194937263532857], + [-47.96909674879435, -25.1961924808773], + [-47.971956674805035, -25.19819041535096], + [-47.972826088167906, -25.199268262159396], + [-47.97305120455584, -25.200581718804973], + [-47.97479425516012, -25.2015070151554], + [-47.976187395184375, -25.201815412349923], + [-47.977685288065594, -25.202838678400006], + [-47.97884687951152, -25.203270792262266], + [-47.9828498679281, -25.206304413762886], + [-47.987593560024095, -25.210374551410794], + [-47.99201780076623, -25.214744695000068], + [-47.993827863829516, -25.21631211228459], + [-47.99524062918704, -25.21787963167324], + [-47.997829492011505, -25.21956937981327], + [-48.00056989129399, -25.221794161637966], + [-48.00429105264348, -25.223086113540976], + [-48.0068015698224, -25.22497947293329], + [-48.00807469295892, -25.226361353666658], + [-48.01068148695327, -25.22807684175169], + [-48.012990433412675, -25.230012362708614], + [-48.01626854564423, -25.232423251058126], + [-48.01898983473216, -25.234906988970916], + [-48.02043550594184, -25.235793790118198], + [-48.02696508662694, -25.24159744606715], + [-48.0295148243847, -25.24331218829498], + [-48.0319374578904, -25.2459996380686], + [-48.036102709716666, -25.249522727140327], + [-48.03807124915803, -25.252174753168482], + [-48.039605348738185, -25.25335194511682], + [-48.04329995879647, -25.257241904563777], + [-48.04715633200087, -25.260673204462925], + [-48.050297276942956, -25.26286843411427], + [-48.05277160908731, -25.26508274263017], + [-48.057988160240775, -25.271192611233964], + [-48.0602123962084, -25.273080141378486], + [-48.06158134355014, -25.274981945917837], + [-48.071354140909854, -25.285680473628794], + [-48.07284819156962, -25.286632713627096], + [-48.07510277329856, -25.288702133709002], + [-48.08048912000604, -25.29503691882991], + [-48.08421620207306, -25.297694101887853], + [-48.08710111558477, -25.301543801532148], + [-48.08851940907329, -25.30283297079905], + [-48.091101941500526, -25.304689510906126], + [-48.09487603009259, -25.308024919947197], + [-48.09646847735378, -25.309026794666554], + [-48.09764510651287, -25.31011130000609], + [-48.096921524649765, -25.307275898499356], + [-48.09733312983253, -25.306811095595243], + [-48.0978436645824, -25.30623457000227], + [-48.09890712570329, -25.305033622537145], + [-48.09963902202873, -25.30420708551793], + [-48.09963895796231, -25.304206650710775], + [-48.09963935890414, -25.30420619791955], + [-48.099152144551425, -25.3008994932094], + [-48.097617948284544, -25.298776960770557], + [-48.095495523423075, -25.296008756932753], + [-48.0929733205069, -25.294183696521326], + [-48.09297200480876, -25.294183344958917], + [-48.09204190114286, -25.293002995153444], + [-48.09004025257366, -25.2901961963858], + [-48.08835397829101, -25.28779860906385], + [-48.08626259821163, -25.285043730568947], + [-48.08434274377778, -25.282534022027047], + [-48.08213918231993, -25.279535076039785], + [-48.081236446980064, -25.278979871897302], + [-48.08025493935094, -25.27858945822705], + [-48.080254667361274, -25.278588383690572], + [-48.07875106234961, -25.276783282957048], + [-48.07481799179515, -25.274042383018813], + [-48.07048677708284, -25.27218109092132], + [-48.0674322686652, -25.270694600574938], + [-48.06742875879969, -25.270692892427995], + [-48.06668347303929, -25.27033018120259], + [-48.063028099139224, -25.268608901898926], + [-48.05997768862256, -25.266836256613814], + [-48.05717949851801, -25.263990684868684], + [-48.0558347035179, -25.262114067810256], + [-48.055427902456785, -25.261546377669514], + [-48.0542179578324, -25.258542249614173], + [-48.05284966864848, -25.2558520236888], + [-48.05257223073183, -25.25548571042176], + [-48.0521341229209, -25.254907252656153], + [-48.05150804906212, -25.254080602094227], + [-48.049051086311934, -25.251922516299874], + [-48.047997250198634, -25.251093804615447], + [-48.0472760245039, -25.25052663961378], + [-48.04723582001392, -25.2504950229604], + [-48.04719375994416, -25.250462023262187], + [-48.04633808984767, -25.249789125463046], + [-48.04257218490929, -25.246827483865513], + [-48.04110754620109, -25.245856140344337], + [-48.03466344068818, -25.242346591209714], + [-48.03242846750026, -25.24100389098984], + [-48.03050595196139, -25.239480053565], + [-48.029541063071726, -25.238715234268092], + [-48.0267409574773, -25.235819866590205], + [-48.025709723861695, -25.234582433891262], + [-48.024952348788275, -25.233350673948898], + [-48.023992731416335, -25.231789958992653], + [-48.023779252010684, -25.230650114473516], + [-48.02408118687915, -25.23012928949923], + [-48.02432404823298, -25.229992077107052], + [-48.02491236340377, -25.229659686296223], + [-48.02607950537653, -25.22927761486575], + [-48.02743948580871, -25.22889941611143], + [-48.027447602205676, -25.228894641677346], + [-48.02937272697473, -25.22776217126275], + [-48.029372910428975, -25.22776181791746], + [-48.02937337097002, -25.227761546994806], + [-48.02972762489743, -25.2270792258634], + [-48.029902830862824, -25.225825484226032], + [-48.02959095915526, -25.224764782097093], + [-48.02879498246464, -25.22377536651284], + [-48.02751283865233, -25.22293839578908], + [-48.02709663687298, -25.222200057040578], + [-48.02721272804957, -25.221391226498334], + [-48.02732664357058, -25.22119183210363], + [-48.027716518508136, -25.220509400385783], + [-48.028550389278344, -25.21991813933515], + [-48.02981783000219, -25.219375904247883], + [-48.0310812243445, -25.218995720362084], + [-48.03318840266024, -25.218632476977202], + [-48.03391557354894, -25.218484847424303], + [-48.03541514281156, -25.218312206292136], + [-48.03715090826474, -25.21834703673589], + [-48.038401605847994, -25.218493752306184], + [-48.03955279647204, -25.218760184574577], + [-48.04065100212457, -25.219228295682097], + [-48.04065506536466, -25.21923040515153], + [-48.041633449183536, -25.219738337183944], + [-48.041650942476046, -25.219748397515556], + [-48.042356720568876, -25.220154285069388], + [-48.04236236717594, -25.220157921251506], + [-48.04326755883565, -25.220740822031203], + [-48.04468716654812, -25.221694914029083], + [-48.04507131334617, -25.221953087297813], + [-48.04520420525176, -25.222442363446874], + [-48.04504484639346, -25.223047604195305], + [-48.0450399447503, -25.22308862161168], + [-48.04492396805054, -25.224059113801935], + [-48.0449496047846, -25.22499243726384], + [-48.045143012044186, -25.225969631748335], + [-48.04537041563336, -25.226542007223934], + [-48.04594022729013, -25.226918393175566], + [-48.04655020378621, -25.22697529142476], + [-48.04704725105575, -25.227021653816106], + [-48.04789662858741, -25.22683568553167], + [-48.048163083197224, -25.22677734507979], + [-48.048405202961575, -25.226724332260883], + [-48.0497237723077, -25.226061224581276], + [-48.05129421776012, -25.224957029073703], + [-48.0543492095692, -25.22230058189258], + [-48.05434972871941, -25.222300012801057], + [-48.05434975824128, -25.22229998712958], + [-48.055439281168276, -25.2211056379109], + [-48.05543982204097, -25.2211050449908], + [-48.055997589910255, -25.21998060148094], + [-48.05635948596059, -25.21897388338966], + [-48.056601090332386, -25.2185506672653], + [-48.05661107349987, -25.218533179757525], + [-48.05700037343196, -25.218378813769522], + [-48.05767153579627, -25.21855442274724], + [-48.05769185552321, -25.218572991306505], + [-48.05826144352691, -25.219093489009385], + [-48.0583875564022, -25.21986658185095], + [-48.05850196113203, -25.221126152688317], + [-48.058509904806144, -25.22129173926619], + [-48.058566229948404, -25.222465843412273], + [-48.058488770856755, -25.223680988139165], + [-48.058119939931494, -25.22497153687377], + [-48.05766156142525, -25.225976339965346], + [-48.057358675466276, -25.226538043269333], + [-48.05725243828527, -25.22694151828976], + [-48.05746352050333, -25.22718908012857], + [-48.05803630492876, -25.227443848682334], + [-48.05829026554565, -25.227465345667714], + [-48.05866225955329, -25.227496833020712], + [-48.059373730663516, -25.227611129131958], + [-48.059527197884286, -25.22763578279911], + [-48.05981261772275, -25.22780370345322], + [-48.05994557403736, -25.228292971885995], + [-48.05986421889233, -25.228607711362024], + [-48.05985617504831, -25.228638830552185], + [-48.05973624916251, -25.229102785026065], + [-48.05941363417626, -25.230350856079294], + [-48.05930338507517, -25.230533488501283], + [-48.059216741558885, -25.230677016702973], + [-48.05876043433432, -25.23143289950031], + [-48.05787584269686, -25.23210473601923], + [-48.05719093368475, -25.232496677652172], + [-48.05699417078343, -25.232654992258293], + [-48.05726787918086, -25.23330930493897], + [-48.0575396346786, -25.234044786967413], + [-48.05770118493377, -25.23429117955899], + [-48.05805156632407, -25.234825569219737], + [-48.05837249705336, -25.235521425826988], + [-48.058441567077324, -25.236494535479927], + [-48.058444566743276, -25.236536796910823], + [-48.05846066204258, -25.236843212141494], + [-48.05850065947555, -25.237604666529474], + [-48.05850943020161, -25.237771639771136], + [-48.05851067852922, -25.237795404434447], + [-48.05859251390631, -25.238405377999758], + [-48.058899371426456, -25.23859860250145], + [-48.05892516994349, -25.23861484747561], + [-48.05910654158383, -25.238708507318186], + [-48.060068898714704, -25.239205460323547], + [-48.06018868718891, -25.23925649842425], + [-48.060429880764765, -25.23935926299523], + [-48.06116727610288, -25.239673439263754], + [-48.06198150611708, -25.24020540886202], + [-48.06234775306178, -25.240444690048008], + [-48.06270391838758, -25.240531092026238], + [-48.06308863172355, -25.240598534406526], + [-48.063917161532764, -25.240629015666016], + [-48.06416606830156, -25.24061548038386], + [-48.064484201361395, -25.240598180036418], + [-48.06514697122809, -25.240484583423072], + [-48.06524141635076, -25.240460159620852], + [-48.06588700817556, -25.240293205592952], + [-48.06660695928066, -25.240149067304134], + [-48.067268586294794, -25.240082900286527], + [-48.06731820014082, -25.240085550972196], + [-48.06874714802775, -25.240161887247776], + [-48.06937349601575, -25.240195343227562], + [-48.06963208968357, -25.240209155034247], + [-48.070777594495205, -25.24040622092271], + [-48.0719605775402, -25.240568284835774], + [-48.07213083131056, -25.240591608116954], + [-48.072863804248094, -25.24066809188715], + [-48.07319372049303, -25.240702516544044], + [-48.07466469152235, -25.240855993918792], + [-48.07513097663464, -25.24090464182671], + [-48.075861656080356, -25.241099100710418], + [-48.07661128410161, -25.241298598119798], + [-48.076905089500876, -25.241430303816628], + [-48.07703149856152, -25.241486969615995], + [-48.07726717840164, -25.241545029545925], + [-48.07731250169831, -25.241575197424908], + [-48.077475596843755, -25.24168604576439], + [-48.07768404646931, -25.24177948691786], + [-48.07865096521462, -25.24234809003361], + [-48.07868681452034, -25.242369171253433], + [-48.07868821928563, -25.242369997316516], + [-48.07928224198584, -25.242762174901884], + [-48.079799386424725, -25.24321626299265], + [-48.07999583579946, -25.24339889123873], + [-48.08037289954219, -25.243749424663818], + [-48.08042655338101, -25.24379930318196], + [-48.08059791438402, -25.243917747324232], + [-48.080945979463216, -25.244158327466423], + [-48.08157770183231, -25.244551242451276], + [-48.08207295738807, -25.24492200793892], + [-48.082578130659826, -25.245300194312332], + [-48.08259784677603, -25.24527897300631], + [-48.08266501309268, -25.245206678875974], + [-48.08269198051162, -25.245177652598894], + [-48.08269619675624, -25.24517124180431], + [-48.08272203065176, -25.245197986641834], + [-48.08272705172213, -25.245192611344038], + [-48.082731090015635, -25.245186589845115], + [-48.08273404682755, -25.245180069409848], + [-48.08273584984414, -25.245173209493363], + [-48.08273645493952, -25.245166177818316], + [-48.08273580326428, -25.245158896668915], + [-48.08273386774856, -25.24515180672027], + [-48.08273069920654, -25.245145093887455], + [-48.082726380780834, -25.24513893429459], + [-48.08272102567247, -25.24513348948029], + [-48.082773695231154, -25.245053405475648], + [-48.08281676176993, -25.244987922785974], + [-48.08270945126633, -25.244378056700647], + [-48.08270996473083, -25.24437787222347], + [-48.082691116559424, -25.24427075374192], + [-48.082574793706925, -25.243609661348327], + [-48.08251835657958, -25.243380708273854], + [-48.08253976464736, -25.241803954644137], + [-48.08260261069716, -25.241461276435746], + [-48.08306515920847, -25.240791131131175], + [-48.08371064899818, -25.24061141855118], + [-48.084306241927294, -25.240580955549117], + [-48.085041049672306, -25.24062434316296], + [-48.08546576496299, -25.24067441769577], + [-48.08602551021885, -25.24080331357985], + [-48.087120203838296, -25.240982016723787], + [-48.087484259000284, -25.241071403191487], + [-48.08797474405905, -25.241225905039958], + [-48.088161285403395, -25.241270641289123], + [-48.08846429727252, -25.24130720775801], + [-48.08914520912362, -25.2413602499002], + [-48.090038889587476, -25.241369208916982], + [-48.09033805919461, -25.241310603429472], + [-48.090536076685886, -25.241271812683255], + [-48.0917494603745, -25.24087072533083], + [-48.09300029375064, -25.24017981289008], + [-48.093355984481676, -25.240053903365933], + [-48.09359903541299, -25.240058689206904], + [-48.09388737153035, -25.24020747674191], + [-48.094256414991555, -25.24054183891605], + [-48.09451705183509, -25.24083328083725], + [-48.09458428449978, -25.24094360872205], + [-48.094598976064134, -25.240967717350756], + [-48.094682113031666, -25.24105119567624], + [-48.09517862482003, -25.2414240679886], + [-48.09546448432791, -25.241510362337706], + [-48.095528390106566, -25.241506752137497], + [-48.09588739715274, -25.241486470392974], + [-48.09593244528932, -25.241474329215343], + [-48.09638975145942, -25.241351077105925], + [-48.09727615683917, -25.241207173540953], + [-48.097698588016236, -25.241199328424692], + [-48.0981548954542, -25.241385789861024], + [-48.098647068746175, -25.241716474923184], + [-48.09919402138748, -25.242083961710758], + [-48.09985216558081, -25.242661668747207], + [-48.10030211915506, -25.243550470291183], + [-48.10056488572263, -25.243506889375876], + [-48.10218706092867, -25.243237833693577], + [-48.10345964212934, -25.243678250951238], + [-48.1049482281975, -25.243244014338792], + [-48.10534030650456, -25.244056691], + [-48.10598118633841, -25.245385046053997], + [-48.10643385966588, -25.24588623655721], + [-48.10669461206394, -25.246174933789536], + [-48.10812098592068, -25.24775414235273], + [-48.1091020376108, -25.248840283254502], + [-48.11020399867109, -25.249338716630515], + [-48.11064032150404, -25.249536068662433], + [-48.11297892232301, -25.2504012099201], + [-48.11323531711458, -25.250496057616754], + [-48.113268724660664, -25.250519445944327], + [-48.113379490693035, -25.250564586998422], + [-48.11348097978291, -25.250602384138155], + [-48.11356528603016, -25.250634115234323], + [-48.113657498162034, -25.25066456839249], + [-48.11374351432895, -25.25069060292597], + [-48.11384034819776, -25.25072544382383], + [-48.11392934396573, -25.25075869890407], + [-48.1140152248812, -25.250790460520058], + [-48.11408697007227, -25.25082051317802], + [-48.114174594740646, -25.2508451464346], + [-48.1142216235844, -25.25085466100675], + [-48.11427197733731, -25.250862044821627], + [-48.11467420538045, -25.250547476039635], + [-48.11489800906705, -25.250365756630575], + [-48.11521965646254, -25.25008554937406], + [-48.11554062558905, -25.24983397760366], + [-48.115781689962844, -25.249630980085964], + [-48.1160165476923, -25.24942704261169], + [-48.11838618544929, -25.247476502919103], + [-48.11944860524863, -25.24691133018865], + [-48.121336234846076, -25.245907139372065], + [-48.12221457265746, -25.245622161866304], + [-48.12303151603244, -25.24529826381886], + [-48.123286217999315, -25.245057698884363], + [-48.12328621766167, -25.245057297301187], + [-48.123286487497836, -25.245057042441463], + [-48.12328577310232, -25.244207378304957], + [-48.123422680270984, -25.243681369220305], + [-48.1236643848384, -25.243101372779424], + [-48.12379195630293, -25.24297166478055], + [-48.12433256954287, -25.242925621103428], + [-48.12465273893172, -25.24270262706299], + [-48.1248600133378, -25.242558262107238], + [-48.12529689636471, -25.24251010386926], + [-48.125465672652055, -25.242404206269377], + [-48.125642762708125, -25.242307584129936], + [-48.12575002049752, -25.24222719781196], + [-48.12598819149043, -25.242001374749705], + [-48.126063013771876, -25.241895361444044], + [-48.126195379884564, -25.24165024288234], + [-48.126195423609225, -25.2416499999984], + [-48.12619563944518, -25.241649600307756], + [-48.12624506017174, -25.24137507531915], + [-48.12625664626344, -25.241076713571058], + [-48.12624584343282, -25.24067576999821], + [-48.12627319775121, -25.240386107061667], + [-48.126355172952, -25.24001698711345], + [-48.12639580713537, -25.239929568625872], + [-48.12644221695223, -25.239871458247123], + [-48.12652373529801, -25.239788584907668], + [-48.12661905000441, -25.239739186656664], + [-48.126703298611865, -25.239746872330613], + [-48.12680687820291, -25.23981845991141], + [-48.12686204019822, -25.239881705707067], + [-48.126901675725875, -25.23996567412246], + [-48.126906361479875, -25.23997560093917], + [-48.12696134963513, -25.240295021356147], + [-48.1270006702715, -25.24039062395333], + [-48.127069219892476, -25.240487878277523], + [-48.12718535918228, -25.240540129014263], + [-48.12737185602865, -25.24052002664052], + [-48.12757383687892, -25.240474327810283], + [-48.12767994380849, -25.240476482784242], + [-48.1287359841602, -25.24061487572729], + [-48.12900700381904, -25.24062880986966], + [-48.12913075314062, -25.240606401994224], + [-48.12940127497757, -25.24051068972025], + [-48.12963903497498, -25.24049185208741], + [-48.12986658887895, -25.2404935697284], + [-48.13011395831573, -25.24056398054811], + [-48.130344357245605, -25.24057973929818], + [-48.130733010635524, -25.24058242179367], + [-48.13118296531982, -25.240703871560473], + [-48.131369053333195, -25.240722286715087], + [-48.13147302361292, -25.240701387398698], + [-48.13158032442304, -25.2406485191223], + [-48.13162673609812, -25.240594467569576], + [-48.13168390639615, -25.240475204331645], + [-48.131683989524504, -25.2404748924297], + [-48.131684144996946, -25.24047456809774], + [-48.131756208386975, -25.240204182078024], + [-48.13191146812733, -25.239864129367934], + [-48.1321850270881, -25.239516442781376], + [-48.132472089917755, -25.239265389494193], + [-48.1327842384372, -25.239065625429102], + [-48.13290465030531, -25.238965546786993], + [-48.13299266096663, -25.238876388890855], + [-48.133122137781164, -25.238661901623768], + [-48.133177332657056, -25.238570467229717], + [-48.13349132594357, -25.237983445906888], + [-48.13367446453553, -25.237577873505902], + [-48.13380173823867, -25.237443186444615], + [-48.13394281067647, -25.23738844526654], + [-48.134139870801185, -25.23737034370416], + [-48.134280284985856, -25.23739860625047], + [-48.13453438282927, -25.23749079656798], + [-48.13467903992608, -25.237494687237465], + [-48.13491223657433, -25.23744597423135], + [-48.135203451845555, -25.237292359773722], + [-48.13545936567619, -25.23713796947586], + [-48.135699357341174, -25.236917939081994], + [-48.13586239724413, -25.236713289343452], + [-48.136106237054804, -25.236286783103925], + [-48.1364195003685, -25.235827333308958], + [-48.13674414270207, -25.235187090257536], + [-48.137435902797165, -25.233990171066278], + [-48.13767758086114, -25.233617309776626], + [-48.13776274323559, -25.233552005785636], + [-48.137838693858924, -25.23354111587665], + [-48.13796473890594, -25.233572795751193], + [-48.1381907401051, -25.233716500940215], + [-48.1384483332463, -25.23401927241357], + [-48.138650690385134, -25.23423218083144], + [-48.138890553028624, -25.23444915457363], + [-48.13900801711263, -25.23452533414522], + [-48.13912633463879, -25.234573557036047], + [-48.1392536879956, -25.234579092840892], + [-48.139384447556665, -25.234553563117217], + [-48.13950778156018, -25.23448502731054], + [-48.139773120500266, -25.234300492040035], + [-48.140797485770754, -25.23364618027676], + [-48.14096087187381, -25.233553333157005], + [-48.14107052975449, -25.23350952646366], + [-48.141311726667226, -25.23341529808472], + [-48.141756173417185, -25.233288278111075], + [-48.14211662233078, -25.23314717823139], + [-48.142316306509095, -25.23311837783288], + [-48.142502909487575, -25.233139856244307], + [-48.14277032170346, -25.233163259247323], + [-48.14307453811891, -25.23314009021269], + [-48.14331861324534, -25.233092385695375], + [-48.14359098721528, -25.2330011930113], + [-48.14393075349273, -25.232917168803223], + [-48.14412732183493, -25.232788233672835], + [-48.14444538435163, -25.232626816886444], + [-48.14486799074056, -25.23236013007684], + [-48.145055587033184, -25.23227117522476], + [-48.14550275945603, -25.23216305546589], + [-48.1460281283158, -25.231994543658555], + [-48.14659230335953, -25.231740333451665], + [-48.1467705067386, -25.23164993139567], + [-48.14703358114461, -25.231485190031385], + [-48.14739637149449, -25.23116689735852], + [-48.14753798886865, -25.23106703448783], + [-48.1476348276165, -25.231023967534476], + [-48.147797532653385, -25.230981180262475], + [-48.148353227982945, -25.23083914327397], + [-48.148580465695304, -25.230717742153544], + [-48.148737313073646, -25.2305901086198], + [-48.1490358148112, -25.23022915139456], + [-48.14941160470163, -25.229825289147954], + [-48.14957584322545, -25.229597634723316], + [-48.14966441524191, -25.22950486684279], + [-48.14983260075764, -25.229388640120856], + [-48.150145931229915, -25.22927629743911], + [-48.150506313674214, -25.229132918290933], + [-48.15066788064947, -25.229032444458678], + [-48.1508090408342, -25.228892413986447], + [-48.1510604815062, -25.228524137040264], + [-48.15118181289146, -25.228353764974067], + [-48.15123886323253, -25.22823855060495], + [-48.1512390145904, -25.228237999464017], + [-48.15123903050312, -25.228237967327942], + [-48.15140430044086, -25.22763616549298], + [-48.151498562129, -25.2274180756997], + [-48.15168643551515, -25.22708692165193], + [-48.15205783633103, -25.22654282904836], + [-48.15220482532668, -25.226301483250086], + [-48.15228936902836, -25.226177052931348], + [-48.15262137450302, -25.22579074474726], + [-48.1527642307152, -25.225598948750797], + [-48.15285732856016, -25.22543091814823], + [-48.152978635257575, -25.225146394231448], + [-48.15304849008592, -25.224937038126306], + [-48.15304855178659, -25.224936767254174], + [-48.15304865165743, -25.224936467939237], + [-48.153220042158054, -25.22418404194006], + [-48.15323979700827, -25.2239322119268], + [-48.153262184340925, -25.223706836580448], + [-48.15333993794426, -25.223561853313008], + [-48.15345309655318, -25.223439597905724], + [-48.15365955621406, -25.22331932109507], + [-48.15385742550988, -25.2231632348702], + [-48.154031979906534, -25.22290076105383], + [-48.15423119176479, -25.222375992448683], + [-48.154340556979164, -25.222028883146905], + [-48.15434058801055, -25.222028726514885], + [-48.154340714710365, -25.22202832438707], + [-48.15445600599389, -25.221446384902162], + [-48.15453063043388, -25.221223301182444], + [-48.15453068027275, -25.221223066847873], + [-48.154530787757615, -25.221222745530312], + [-48.15455759030602, -25.221096724215595], + [-48.1545897143209, -25.22094568159878], + [-48.154654542136214, -25.22055999632851], + [-48.154672968789384, -25.220083812169534], + [-48.15470086251033, -25.21995615310731], + [-48.154756991939934, -25.21983034406073], + [-48.15494772898302, -25.21963089496262], + [-48.155067128113444, -25.219559922455915], + [-48.15520716266806, -25.219518674285805], + [-48.15563595737427, -25.21944770438262], + [-48.15571727536939, -25.219414619355216], + [-48.155726391394936, -25.21940747216911], + [-48.155828824140734, -25.219327162112176], + [-48.1559601741139, -25.219173130250063], + [-48.156130876412064, -25.21889668247223], + [-48.15623037942147, -25.218576542528847], + [-48.15623039730474, -25.218576428253773], + [-48.156230531200315, -25.218575997458725], + [-48.1562684813802, -25.218333493997914], + [-48.15629157088339, -25.2182701027914], + [-48.156373543125035, -25.218161952764273], + [-48.15652615356805, -25.218023489327862], + [-48.1567084341933, -25.21789308652965], + [-48.15694804647117, -25.217758553259195], + [-48.15722932277351, -25.21755994097392], + [-48.157420249993656, -25.217467151948952], + [-48.1576430419958, -25.21730937351877], + [-48.15786648636252, -25.217174707962695], + [-48.157963019921596, -25.217088674422374], + [-48.158108318948635, -25.216884827040435], + [-48.15816007158186, -25.216766529317503], + [-48.158160216566806, -25.216765991748904], + [-48.15821018474946, -25.216586296469746], + [-48.15821033377165, -25.21658576055606], + [-48.15830495108842, -25.216099941462158], + [-48.158318272982434, -25.215936508241395], + [-48.15830967269147, -25.215568267079973], + [-48.15821851409439, -25.21522262109714], + [-48.15813507336837, -25.21503142840065], + [-48.158101619129525, -25.214904543588506], + [-48.15809841285239, -25.21484209059184], + [-48.158118202966044, -25.214778522626496], + [-48.158322072302006, -25.214589607843802], + [-48.158445243905405, -25.21452673576089], + [-48.158521856360125, -25.21451241793927], + [-48.158659859275005, -25.21454548228729], + [-48.15878325342844, -25.214605336674786], + [-48.15908359178973, -25.214815319586407], + [-48.15929986440088, -25.2150189027826], + [-48.15936094415221, -25.2150583379146], + [-48.159494310072006, -25.215111705985557], + [-48.15955907921761, -25.215107627417368], + [-48.15959971917951, -25.215061936700117], + [-48.15959985644528, -25.21506140921147], + [-48.1597299724759, -25.214557760026274], + [-48.15984375882936, -25.214262525369755], + [-48.16021162056603, -25.21374351452158], + [-48.16044586980794, -25.21336040669652], + [-48.16050981277769, -25.213255829283067], + [-48.160591083662815, -25.21314766289051], + [-48.160707325649376, -25.213049914213627], + [-48.16096285904838, -25.212925425001128], + [-48.16108466056905, -25.212848808095657], + [-48.16117236059035, -25.21274139653044], + [-48.16133693518016, -25.212445963782596], + [-48.16144618527032, -25.21212808152891], + [-48.16144626862176, -25.212127710162846], + [-48.16144631933147, -25.212127562613713], + [-48.1615061728689, -25.21186088940495], + [-48.16161237828471, -25.21083637866471], + [-48.16161238600601, -25.210836304180113], + [-48.16169198646236, -25.210559152964876], + [-48.161835078312976, -25.21015971692322], + [-48.161835211671644, -25.210159205578112], + [-48.16196206418666, -25.20970113216823], + [-48.16196220481797, -25.20970062433638], + [-48.1619847035679, -25.20949939751595], + [-48.162011863618034, -25.209440492326028], + [-48.162119190659126, -25.209367656909], + [-48.16302855550868, -25.209132636874973], + [-48.16374815319506, -25.208911113374928], + [-48.164109601264364, -25.208829709048633], + [-48.16425070235462, -25.208784591449653], + [-48.164651229339555, -25.20861766877628], + [-48.16502577171182, -25.20836073073302], + [-48.16537220487013, -25.208096845490132], + [-48.165498133004036, -25.208038711982738], + [-48.16564463943871, -25.208004254455368], + [-48.16579330005434, -25.207992397450276], + [-48.16601009520824, -25.207997999714244], + [-48.16655570535851, -25.208114673586895], + [-48.16671419925912, -25.20817501382176], + [-48.16712271748576, -25.208395085914056], + [-48.16739860181573, -25.208449013391583], + [-48.16866727019715, -25.208545701024875], + [-48.16901849453748, -25.20860585188863], + [-48.16922090554226, -25.208667301729708], + [-48.16950875974771, -25.208795539889486], + [-48.1697814473373, -25.20894911448233], + [-48.170054040624024, -25.209162514443673], + [-48.17024814682412, -25.20937287670574], + [-48.170416918186916, -25.209512187586085], + [-48.170543015246764, -25.209575332526754], + [-48.170691854307314, -25.209594425687214], + [-48.171148512518975, -25.209586385725544], + [-48.17151217413933, -25.209602191552484], + [-48.17180207881125, -25.209556215523026], + [-48.172228081306365, -25.20942404973074], + [-48.17289246804808, -25.20917895458508], + [-48.17318351464148, -25.209062070584512], + [-48.17378024152302, -25.208765865291266], + [-48.174366995429395, -25.20854914679095], + [-48.174715646123985, -25.208437512129976], + [-48.1748370091455, -25.208375041906397], + [-48.17529239388236, -25.20802261614823], + [-48.175783513185436, -25.20767321804855], + [-48.176012531271695, -25.207454526916315], + [-48.17616751770919, -25.207336209093356], + [-48.17655099887213, -25.207069033244146], + [-48.17671789332518, -25.206954732299945], + [-48.17696680252856, -25.20681952886117], + [-48.177796842329876, -25.206315162184453], + [-48.17792675240099, -25.206256100980344], + [-48.177993797718905, -25.20627353410833], + [-48.178187008960535, -25.20654893120661], + [-48.17840685294225, -25.2066975106023], + [-48.17878471791916, -25.207064776255255], + [-48.17890915506523, -25.20712688988489], + [-48.17903922652767, -25.20715545210453], + [-48.17918144525086, -25.207147609388365], + [-48.17925453374155, -25.207135288526302], + [-48.17952555151968, -25.207030551978406], + [-48.17973013357153, -25.207002332202947], + [-48.180049765074564, -25.207039023508564], + [-48.180351222994204, -25.207124005753307], + [-48.180598124035036, -25.20724736814178], + [-48.1806050975944, -25.207250852423023], + [-48.18066188784476, -25.20730012330201], + [-48.180728410048395, -25.207422041228504], + [-48.180742061968786, -25.207483844230385], + [-48.18073290260698, -25.20761009329742], + [-48.1806602996498, -25.20795414011221], + [-48.18066503856919, -25.20809707776017], + [-48.18074348826271, -25.20842875657247], + [-48.18085001175474, -25.208730199773605], + [-48.18098084650828, -25.20900972768947], + [-48.18108262050037, -25.20934943143225], + [-48.18108166781493, -25.209528445996302], + [-48.1809430894323, -25.21006235878599], + [-48.180953064175945, -25.210128784010195], + [-48.18101565680772, -25.210158764306453], + [-48.181085032211996, -25.21015268845453], + [-48.18145669273856, -25.2099507872766], + [-48.18153963422004, -25.209919883762957], + [-48.18167767179515, -25.209895625934372], + [-48.18186437499518, -25.209795503477967], + [-48.182056604146695, -25.20971813596766], + [-48.182689062798616, -25.209351376794086], + [-48.18303568245641, -25.209099543112174], + [-48.18326774913092, -25.208870149475025], + [-48.18346208880247, -25.208678047283364], + [-48.18354674583871, -25.20860773913747], + [-48.183639258307004, -25.208530906835207], + [-48.18392249816671, -25.208330471662062], + [-48.18413754959417, -25.20820949978484], + [-48.18446854444803, -25.208050129681332], + [-48.18497142720903, -25.207766075553756], + [-48.1851900506463, -25.20765789367939], + [-48.18548858832805, -25.2075769516894], + [-48.185798174342416, -25.207550362659788], + [-48.186000940968945, -25.207467415016705], + [-48.186110836535555, -25.207385766527512], + [-48.18620939275777, -25.20727962787755], + [-48.18627918656135, -25.207151825568943], + [-48.18628414045514, -25.207087399311995], + [-48.186229548970495, -25.20696832769048], + [-48.18617443101502, -25.206923873295448], + [-48.18593460714822, -25.20680686877549], + [-48.18555414932738, -25.20640907003903], + [-48.18496388004082, -25.205969553750897], + [-48.18461433582932, -25.205763015805005], + [-48.18451373323191, -25.20567798929492], + [-48.184436130118684, -25.205576255643983], + [-48.18437352282325, -25.205456489301667], + [-48.184360369832035, -25.205403725771788], + [-48.18429516118948, -25.20514213923918], + [-48.184276169248115, -25.204937387175967], + [-48.18419489268006, -25.204697969737552], + [-48.18406873542449, -25.204542521202356], + [-48.18390469608938, -25.204415374150788], + [-48.18390496317768, -25.204415060826012], + [-48.183727427399084, -25.204277452067732], + [-48.183592102665926, -25.204141139951545], + [-48.183539515056346, -25.204034288314624], + [-48.183504388477694, -25.20386694896664], + [-48.18350458279438, -25.20373386700339], + [-48.18352083852929, -25.203672016385536], + [-48.18355567015829, -25.203610957147884], + [-48.18361357056722, -25.203568926707526], + [-48.18381840614228, -25.20349495471332], + [-48.18422834743999, -25.203430034398327], + [-48.184626524716485, -25.203337546522054], + [-48.18484625516595, -25.203267105398847], + [-48.184906159940866, -25.203240529229962], + [-48.18491880627307, -25.20323491880325], + [-48.18516046130223, -25.203073753887267], + [-48.18527456321751, -25.202985869208995], + [-48.185371804011396, -25.202885029903204], + [-48.18548087670563, -25.202718270946153], + [-48.18558134203828, -25.20246002655745], + [-48.18559755450902, -25.20242941625921], + [-48.18564635523871, -25.20233727689444], + [-48.18576056591249, -25.202227375630454], + [-48.18578181584591, -25.202213246601477], + [-48.186028797782555, -25.202049028424028], + [-48.18610394694876, -25.20195128716804], + [-48.18619458136712, -25.201766760434012], + [-48.18626644449216, -25.20164469024396], + [-48.186376713510874, -25.201457381340134], + [-48.1864463279561, -25.20133913006878], + [-48.186612019092685, -25.20094866354708], + [-48.18665251977098, -25.200744502599573], + [-48.18665252956234, -25.200744188408493], + [-48.18665255992562, -25.20074403534941], + [-48.18665975204168, -25.20051325242679], + [-48.186578664166525, -25.19980882382574], + [-48.186630251789886, -25.199396815529575], + [-48.18667507363281, -25.199328185020967], + [-48.18679546591355, -25.19924258427408], + [-48.187159532040575, -25.199131842600657], + [-48.18764329426792, -25.199013180805412], + [-48.187920901201714, -25.198883917245276], + [-48.18828163599579, -25.198603009237868], + [-48.188550363191595, -25.19846301749089], + [-48.188884383948746, -25.19820506171144], + [-48.18915210520521, -25.19796632838828], + [-48.189281689501556, -25.197881983098526], + [-48.1896183987273, -25.19776160054249], + [-48.190167676376234, -25.197726563732473], + [-48.190450563961306, -25.197682400436364], + [-48.19046842707068, -25.197676024248363], + [-48.19090374331057, -25.197374653841056], + [-48.19093323031199, -25.197287124166284], + [-48.191019842982826, -25.19682367899505], + [-48.191067781793926, -25.196658009058233], + [-48.19124538573009, -25.196387057943966], + [-48.19142061181508, -25.196003623672386], + [-48.1915353717562, -25.195804481212235], + [-48.19171304481174, -25.1955476982178], + [-48.19183396360179, -25.195408591132853], + [-48.19200162908801, -25.195268025849153], + [-48.1922725276742, -25.195093415967733], + [-48.192447310598105, -25.19492789884641], + [-48.192525134075254, -25.19480394482057], + [-48.19266140552794, -25.194466783242735], + [-48.19266138095082, -25.194466450159446], + [-48.192661424756544, -25.194466341775442], + [-48.19262866625097, -25.194022377008466], + [-48.192557394369025, -25.193571183543785], + [-48.1925780167562, -25.19269389789446], + [-48.19259949939099, -25.19243143961517], + [-48.19267816713255, -25.192223037692717], + [-48.19288825302583, -25.19175913791981], + [-48.192944955893886, -25.191643535590615], + [-48.1930822925356, -25.191441300822664], + [-48.19317174192602, -25.191221101428496], + [-48.19317176335966, -25.19122106322149], + [-48.1932713194767, -25.191043596847326], + [-48.193429112725134, -25.190628244368032], + [-48.19357739917475, -25.19037225386652], + [-48.193610183072614, -25.190271118471276], + [-48.19237709980698, -25.18977197526101], + [-48.191509903862084, -25.188817603524164], + [-48.187094020987985, -25.18740919508447], + [-48.186902047503594, -25.187398827896953], + [-48.18646569756668, -25.18744159923231], + [-48.186218921866775, -25.18743879758441], + [-48.186144477588904, -25.187420054884296], + [-48.18588093247166, -25.18728825355722], + [-48.18540081708148, -25.18697871018356], + [-48.18519082667404, -25.186777902347284], + [-48.185082785797725, -25.1866907268523], + [-48.18255610381406, -25.185328774027873], + [-48.18197407703531, -25.184891657590665], + [-48.181784619939066, -25.18490653201095], + [-48.181645947079545, -25.18489504528828], + [-48.181516286247856, -25.184853951636864], + [-48.18144038730954, -25.18481300086613], + [-48.18119519606781, -25.18468070911659], + [-48.18084750439234, -25.184564530692207], + [-48.18029142633455, -25.184454032897168], + [-48.17960875005049, -25.184277229541763], + [-48.179406376881666, -25.18419838110592], + [-48.17903917086336, -25.18398671538562], + [-48.17876050101941, -25.18376744370725], + [-48.17849961971712, -25.183516476553642], + [-48.17832757151517, -25.183391281654927], + [-48.17816831590208, -25.183300530921002], + [-48.178127171833026, -25.18325273166001], + [-48.17810708314142, -25.183194956854344], + [-48.1781068340716, -25.183128576278815], + [-48.17831592728589, -25.18265854916377], + [-48.178425895688385, -25.182280292784974], + [-48.17854086926259, -25.181818210044327], + [-48.178540931107996, -25.18181788347307], + [-48.178540948997856, -25.18181781157278], + [-48.17866473181189, -25.18116417974636], + [-48.17875162379316, -25.180913440108284], + [-48.178935407621005, -25.180572235611503], + [-48.1790477220732, -25.180320086332095], + [-48.17911525826455, -25.18011761628082], + [-48.1791152814357, -25.180117389382563], + [-48.17911533645468, -25.180117224438295], + [-48.179119753412145, -25.180073972479782], + [-48.17911971699708, -25.1800739550774], + [-48.17912857599669, -25.179987205040312], + [-48.179101730718536, -25.17992569170129], + [-48.179049331606976, -25.17988435552318], + [-48.17870415420241, -25.179745751325356], + [-48.1780507320295, -25.179354913403717], + [-48.17774063131382, -25.17908856724669], + [-48.177386505793095, -25.17885471877517], + [-48.177186328038346, -25.178722529708445], + [-48.17706870095316, -25.17864485342432], + [-48.17631940317471, -25.178000052362982], + [-48.176193305944985, -25.177917492075085], + [-48.176192949242285, -25.177916814724206], + [-48.17601392751694, -25.17779960244055], + [-48.175472823998724, -25.17744531897709], + [-48.17533863864464, -25.177308481852105], + [-48.17511954876695, -25.176626609813784], + [-48.174998182281186, -25.175753585342267], + [-48.17482043393518, -25.175310450687626], + [-48.174819395354774, -25.175308478413495], + [-48.174597220615226, -25.174886565010866], + [-48.17459612779323, -25.174884489717133], + [-48.17435015647815, -25.17453300932976], + [-48.17416743136135, -25.174218016689913], + [-48.17378699328444, -25.173696210466442], + [-48.17355448529099, -25.173312767941646], + [-48.1734433791382, -25.17300157520248], + [-48.17343143673741, -25.1729639198139], + [-48.1734275104985, -25.172957785657893], + [-48.17339166642937, -25.172857391225143], + [-48.17333113278336, -25.172624262027067], + [-48.17332373088508, -25.17259575553914], + [-48.17327263138525, -25.17247683754685], + [-48.173189492161015, -25.17237129410703], + [-48.17306855160447, -25.17227098384908], + [-48.17295182600104, -25.17221459553266], + [-48.17295144141723, -25.172213994670678], + [-48.17258702919794, -25.172037951740023], + [-48.17247604557377, -25.171984336687643], + [-48.172336170941364, -25.171939701986084], + [-48.171612356867726, -25.17177020179698], + [-48.17127562515822, -25.171653762108605], + [-48.17097097744203, -25.171492004373924], + [-48.17086796331603, -25.171392757614512], + [-48.170479773978215, -25.170808261204414], + [-48.170170702190745, -25.17027156968204], + [-48.1701119365677, -25.170126397130534], + [-48.17011145335739, -25.1701258510551], + [-48.16998438313597, -25.16981194050918], + [-48.16974158852474, -25.169479640465216], + [-48.16962740659042, -25.169366198585877], + [-48.169596190223835, -25.16933518449533], + [-48.16948284619301, -25.169253967012313], + [-48.169119238723304, -25.169056516077802], + [-48.16890909078869, -25.168983795034862], + [-48.16890823174382, -25.168983102052074], + [-48.16882897299318, -25.16895567467398], + [-48.168641363562784, -25.16893928511787], + [-48.168555160079684, -25.16893175430272], + [-48.168218416755714, -25.168944979681715], + [-48.168086105589836, -25.16893369350852], + [-48.16794374922043, -25.168893699785368], + [-48.167889257830296, -25.168866036338688], + [-48.167846421764935, -25.168814592821253], + [-48.16781427512321, -25.168755413077275], + [-48.16780781310238, -25.168687520840127], + [-48.16788827481347, -25.168436482447678], + [-48.16788838860046, -25.168436127434436], + [-48.167907110544924, -25.168243918694102], + [-48.167885316633125, -25.168058604440017], + [-48.16783479596356, -25.167867777066075], + [-48.167782844966155, -25.167738825345797], + [-48.167687356465066, -25.167567350191224], + [-48.16713641445586, -25.166745563556667], + [-48.167036978538455, -25.166551904251246], + [-48.16694285466355, -25.166300053121056], + [-48.166861155235736, -25.165798210920933], + [-48.16674497617162, -25.16476357690626], + [-48.1667286211701, -25.16442460174281], + [-48.16675698361336, -25.164162824083697], + [-48.166938895699346, -25.16337078354007], + [-48.166990661827256, -25.163244862469874], + [-48.16709433827894, -25.163066463051585], + [-48.167403345127696, -25.162648260997067], + [-48.167590305952494, -25.162353964689952], + [-48.16766718754446, -25.162202122080956], + [-48.16766721866184, -25.16220199029209], + [-48.167667318001676, -25.162201794093885], + [-48.16769996119029, -25.162063543183585], + [-48.16772308702123, -25.161715036608303], + [-48.16777454459873, -25.161526342023546], + [-48.167953566149606, -25.161023123959566], + [-48.1682079662089, -25.160511215113868], + [-48.16820804658893, -25.160510991629135], + [-48.1682080952494, -25.160510893713088], + [-48.16839764092701, -25.159983887677292], + [-48.16839775710386, -25.15998356466163], + [-48.16845293293838, -25.159457902708766], + [-48.16854325888133, -25.1589342668893], + [-48.16861360268229, -25.15796654928851], + [-48.16867496989337, -25.157666329290922], + [-48.16869551256135, -25.157433728346636], + [-48.16875361930897, -25.157201665684337], + [-48.16874424399991, -25.15713110079924], + [-48.16868629323881, -25.157013043722802], + [-48.168433241961864, -25.156696700488094], + [-48.168180540093275, -25.156481159189212], + [-48.16808245437415, -25.15642667337657], + [-48.16793932417602, -25.1563735812894], + [-48.167869382801236, -25.156323965424214], + [-48.16771930965846, -25.156107951324575], + [-48.167581612212004, -25.155847385754562], + [-48.1675813285261, -25.155847405389107], + [-48.167567283577895, -25.155820828029885], + [-48.16724035052938, -25.155471123514534], + [-48.16707417122156, -25.155364348847446], + [-48.16694076184159, -25.155332557572795], + [-48.16663487286595, -25.155303599928043], + [-48.1661423044807, -25.155338474552874], + [-48.16551765036844, -25.155412958633296], + [-48.165375376036685, -25.15546013489523], + [-48.16485199009506, -25.155755312027168], + [-48.164851689246355, -25.155755258451], + [-48.164575789869474, -25.15591085759296], + [-48.164433042659596, -25.155957030995314], + [-48.164362158878674, -25.155952514289837], + [-48.16429069618956, -25.155934450849603], + [-48.163945901000936, -25.155710189720345], + [-48.163463302412005, -25.155558454202637], + [-48.16326283415803, -25.155459771510763], + [-48.16308185386236, -25.15534585113165], + [-48.162836918101746, -25.155103740062945], + [-48.16269642371247, -25.15487698645296], + [-48.162479069377156, -25.154599850166278], + [-48.1619502162272, -25.15395822610471], + [-48.161728281673575, -25.15362640735379], + [-48.16154247717811, -25.153408439221316], + [-48.1613191658703, -25.15323035825423], + [-48.16128026690181, -25.153184764058654], + [-48.161236049753825, -25.153069133752737], + [-48.161262707199526, -25.15275282131044], + [-48.161231875933126, -25.152632845690157], + [-48.1611730109235, -25.15252469481641], + [-48.16091446155047, -25.152147324723057], + [-48.160331914265605, -25.151508997271], + [-48.160092625142646, -25.151177746002986], + [-48.160037019483234, -25.15113011641335], + [-48.15990624317139, -25.15107057664799], + [-48.15962353651033, -25.151000180036476], + [-48.15913370140644, -25.15095215624733], + [-48.158663360364265, -25.15096135470373], + [-48.158514415566074, -25.150928626437764], + [-48.15840226008558, -25.150848507862914], + [-48.15836000536623, -25.150798065974318], + [-48.15831180188988, -25.15067920017408], + [-48.158292063419665, -25.150427239436826], + [-48.158298727299865, -25.150199608283522], + [-48.158318075004054, -25.149715585614878], + [-48.15829878826752, -25.149593846025475], + [-48.158258660894695, -25.149477301010645], + [-48.158171159051136, -25.149325917053563], + [-48.157828520303696, -25.148945754751526], + [-48.157765295652055, -25.148773540800864], + [-48.15770723110147, -25.148237588983694], + [-48.15771696874846, -25.147984299269808], + [-48.157778377247325, -25.147648893187224], + [-48.15777298155804, -25.147453967112956], + [-48.15775945377329, -25.14738747314389], + [-48.15770027838365, -25.147271554828784], + [-48.15765522658264, -25.147217810558924], + [-48.15753770163948, -25.147142822233807], + [-48.15742247071258, -25.14704585998251], + [-48.15737570944626, -25.146993165681653], + [-48.15731436621706, -25.146872423041618], + [-48.15728234319878, -25.14673563984862], + [-48.15722039582127, -25.14626891561227], + [-48.15720966362706, -25.145752551868327], + [-48.15711873535828, -25.14525305625417], + [-48.15701293671753, -25.14502299441081], + [-48.156934141778066, -25.144923844157614], + [-48.15684083129975, -25.144847876745757], + [-48.15669138337584, -25.14477732803191], + [-48.1563913040969, -25.144674468085565], + [-48.15626822637595, -25.144608215525643], + [-48.15619015839923, -25.14452478020322], + [-48.156082646905084, -25.14436867952476], + [-48.15604873823853, -25.144309012824724], + [-48.15605939888704, -25.14424546560891], + [-48.15625226565082, -25.144194438078085], + [-48.1564054676858, -25.14418429678383], + [-48.157200087571084, -25.144186655730127], + [-48.15753922219833, -25.144276909101933], + [-48.15760119406902, -25.144306343511307], + [-48.15780871964545, -25.14445461852396], + [-48.157995163321594, -25.14450304651403], + [-48.15817915805389, -25.14450315004619], + [-48.15850060584609, -25.144441191574874], + [-48.1588084191885, -25.144411456263683], + [-48.15907332601265, -25.14442366954822], + [-48.159415751299036, -25.144500355971417], + [-48.159710780704, -25.144710135339704], + [-48.16001686691713, -25.14502471197735], + [-48.16001951701473, -25.145028035134], + [-48.160196058365116, -25.14524941313265], + [-48.160358113467275, -25.14555915035448], + [-48.16053863871653, -25.14585047231197], + [-48.160699518173445, -25.146052623153363], + [-48.16079871206184, -25.146144402847575], + [-48.160903764653966, -25.146214367022356], + [-48.16103197969038, -25.14626447187473], + [-48.1613401615641, -25.14631429313945], + [-48.16150824092748, -25.146341464884088], + [-48.16171244304603, -25.146376693333355], + [-48.16184044870966, -25.14637589932346], + [-48.16216896694675, -25.14627418347191], + [-48.16261491631406, -25.146178778722117], + [-48.16347542457746, -25.145922031187162], + [-48.16375654029814, -25.145786556577672], + [-48.16399370802215, -25.145690936721714], + [-48.164706668823136, -25.145448138748005], + [-48.16554717178457, -25.14494563784647], + [-48.165810359251296, -25.144830750935117], + [-48.16639555659875, -25.144470714919652], + [-48.16656586269967, -25.144338166534467], + [-48.166805558814765, -25.144107142704044], + [-48.16709527091601, -25.14391678038626], + [-48.16757619758038, -25.14367999421579], + [-48.167849232126734, -25.143524865029985], + [-48.16803407017834, -25.14340685043545], + [-48.16816787898584, -25.1433521090461], + [-48.16836795956668, -25.143299537629883], + [-48.168522918224234, -25.14328625888487], + [-48.168875202199956, -25.14321521156674], + [-48.16913271667545, -25.143131071230133], + [-48.16998595636368, -25.142702420677622], + [-48.170884394774355, -25.14232110134711], + [-48.17101163237137, -25.142254590822063], + [-48.17120966880804, -25.142118595993935], + [-48.1716542048805, -25.141735364965317], + [-48.171876711356376, -25.14157420889107], + [-48.1723942813797, -25.14125653014484], + [-48.172507057657086, -25.141155000197504], + [-48.172575532576836, -25.141048653512065], + [-48.17257557319549, -25.141048530591146], + [-48.17257565257414, -25.141048407310148], + [-48.17261710743404, -25.140922955876178], + [-48.17269856273167, -25.140550203678202], + [-48.17290740269501, -25.139945177944764], + [-48.17295531699669, -25.13984851493924], + [-48.17317414828604, -25.139635850637475], + [-48.17353048558086, -25.139345318237076], + [-48.1740176563972, -25.13905565806689], + [-48.17435057684655, -25.138886408293647], + [-48.175021718970534, -25.138485472137127], + [-48.1756849922525, -25.1381720944795], + [-48.17586609227492, -25.138060765576263], + [-48.175979966656115, -25.13796295324452], + [-48.17605600269703, -25.137855214767463], + [-48.17605605948175, -25.137855053967638], + [-48.1760561103726, -25.13785498185839], + [-48.176127583905654, -25.137652586905954], + [-48.17614471935547, -25.13743787572399], + [-48.17612061793833, -25.137158489215775], + [-48.176123930959584, -25.13701886337387], + [-48.17615249578234, -25.136824403098846], + [-48.176217725921376, -25.136621888948934], + [-48.17635587991247, -25.13631334184578], + [-48.17660788567232, -25.135855852879054], + [-48.176727470500296, -25.135682077421656], + [-48.17684695668513, -25.13556857945844], + [-48.1770938354372, -25.135420151385887], + [-48.177255333150505, -25.135363492298634], + [-48.178392129749746, -25.135287070840647], + [-48.1786184843701, -25.135276675365315], + [-48.17876467975327, -25.135286229007054], + [-48.17931061129026, -25.13538443279701], + [-48.179529616154845, -25.13540484782457], + [-48.17981268619264, -25.135372339466837], + [-48.18016604019705, -25.13524921566169], + [-48.18041772737062, -25.135094105362278], + [-48.1807139399522, -25.134770012672075], + [-48.18099222295157, -25.134371942939758], + [-48.18122290710393, -25.134004730510572], + [-48.18131565670498, -25.13382502551392], + [-48.181315717042324, -25.133824864672675], + [-48.18131574542595, -25.13382480967851], + [-48.181399928530915, -25.13360040256769], + [-48.18140000998761, -25.1336001854279], + [-48.18152388107352, -25.13310993043309], + [-48.1815415508042, -25.132893062267502], + [-48.18152967951156, -25.132667600556612], + [-48.181497972463326, -25.132520268905793], + [-48.181441288186896, -25.132394389849576], + [-48.181249139415556, -25.13212425734893], + [-48.181157641288834, -25.131934548415067], + [-48.18103444139718, -25.131523963300545], + [-48.18093907940367, -25.131053718917105], + [-48.180853888386864, -25.13077769027631], + [-48.180780486378836, -25.13053985851152], + [-48.18072236289537, -25.130131504847135], + [-48.1807088252446, -25.12971542730633], + [-48.18078165537309, -25.12923331505069], + [-48.18085064267733, -25.129037324111568], + [-48.180936165624566, -25.128919898289546], + [-48.18103882432024, -25.12882646982026], + [-48.181108821015705, -25.128782682697896], + [-48.18122731200412, -25.12873792357864], + [-48.18148602438451, -25.12869059927714], + [-48.181606197508714, -25.128645962076764], + [-48.18238746788399, -25.128206926021917], + [-48.182551551569446, -25.12805005382217], + [-48.182799311075335, -25.12765067634431], + [-48.18294477282674, -25.127519077254743], + [-48.18305690782338, -25.127453169926692], + [-48.183244711623146, -25.12738563355327], + [-48.18345177841341, -25.12734688862839], + [-48.18373509502752, -25.127324392635494], + [-48.18414709200511, -25.127314088631753], + [-48.184358875290556, -25.12727281513838], + [-48.18460542458953, -25.127172193183966], + [-48.18502639338065, -25.12693059358329], + [-48.18537159448366, -25.126789974285227], + [-48.18565213408973, -25.1267069614301], + [-48.185865347137174, -25.126603267225736], + [-48.18593254210729, -25.126556175746227], + [-48.186040890120964, -25.126465107469347], + [-48.18613526412406, -25.126360959635637], + [-48.1862924431559, -25.126128782198904], + [-48.186292476210355, -25.1261286553314], + [-48.18629251554056, -25.126128597234548], + [-48.1864221233198, -25.125631142834404], + [-48.18646982783346, -25.125446868379274], + [-48.186692490806955, -25.124571000091205], + [-48.18694232152114, -25.123721272065684], + [-48.18713709726541, -25.122566121393884], + [-48.18720246664154, -25.122300074721892], + [-48.18730980554235, -25.122037973529228], + [-48.1875970639683, -25.121591869765485], + [-48.18759713310899, -25.121591702445162], + [-48.187890525108145, -25.121004202658924], + [-48.18789060507712, -25.121004042524948], + [-48.18798108723779, -25.12078971245393], + [-48.187981156363385, -25.120789548711922], + [-48.18837747436022, -25.119586587788863], + [-48.18837752807769, -25.119586424736017], + [-48.188710763721815, -25.11883886762132], + [-48.18905390788919, -25.11828481262238], + [-48.18928032656115, -25.118027775114946], + [-48.189546575020884, -25.11753750161056], + [-48.18954661934969, -25.117537385015996], + [-48.189546638187224, -25.117537350328167], + [-48.18963759639881, -25.117298109819433], + [-48.18963765417371, -25.11729795785819], + [-48.18970325146915, -25.11706918248214], + [-48.18974937258293, -25.116816575400026], + [-48.1898239982709, -25.116539615172268], + [-48.189863006042145, -25.11645375451555], + [-48.189941980326715, -25.11627993243352], + [-48.190074658234806, -25.116069484930133], + [-48.19034530606483, -25.115854433448735], + [-48.19063111335106, -25.115695888199593], + [-48.1909229451335, -25.11558591522568], + [-48.19125115682164, -25.115519044054615], + [-48.19258556434695, -25.115396524397617], + [-48.1931492621427, -25.11532571885922], + [-48.193385835189694, -25.11518320019586], + [-48.193546270629525, -25.11495035266494], + [-48.193879499676726, -25.114264705863725], + [-48.19431668320072, -25.113432040696907], + [-48.19431672934538, -25.113431906612092], + [-48.194445971173465, -25.113091486082986], + [-48.19444602107883, -25.113091354632722], + [-48.19460671917578, -25.11244625030799], + [-48.19460675225516, -25.112446117513645], + [-48.19470809411035, -25.11216003139928], + [-48.1949899933584, -25.111581787367747], + [-48.194990002162, -25.11158173327008], + [-48.19499003762348, -25.111581660529453], + [-48.19503615372697, -25.111298278997925], + [-48.19500820205899, -25.111020624168034], + [-48.194936870256534, -25.110815422583094], + [-48.194411908027114, -25.10959491979234], + [-48.19421080854469, -25.10938256833128], + [-48.19411349365068, -25.109156480335763], + [-48.19405691079352, -25.108904452707893], + [-48.194098202888334, -25.108671308379364], + [-48.1942479556644, -25.108465832323102], + [-48.19452536550215, -25.10820205692902], + [-48.194617834958564, -25.108114131869712], + [-48.19476954291948, -25.1079504210857], + [-48.19487950133937, -25.10776173549144], + [-48.19487949993893, -25.10776170490838], + [-48.19487954761138, -25.10776162310362], + [-48.1948728683542, -25.107615759727068], + [-48.19475616437038, -25.10723183701306], + [-48.1947307130685, -25.1070877630983], + [-48.19471561778784, -25.107002312102424], + [-48.19458870784676, -25.106501155354316], + [-48.19456334435617, -25.106296823971437], + [-48.1945678142115, -25.106105421742583], + [-48.194649390229465, -25.105929298733862], + [-48.19505796409635, -25.1054581296456], + [-48.19521736851522, -25.10530439992838], + [-48.19557780389449, -25.10507930455191], + [-48.19615483517912, -25.104804252610112], + [-48.19640207662052, -25.104666531461127], + [-48.19707811795984, -25.104117484792354], + [-48.197595090956746, -25.103611810198917], + [-48.19792742517378, -25.103336544977573], + [-48.19815142428419, -25.103209570855018], + [-48.19878359827612, -25.102906041562076], + [-48.199092802849215, -25.10281920890613], + [-48.19978634570599, -25.10271888263608], + [-48.20006436895641, -25.10264779220741], + [-48.200318951169024, -25.102531138300144], + [-48.20059552212358, -25.102367162157094], + [-48.20143081394059, -25.101725807476143], + [-48.202392224191925, -25.101155500962168], + [-48.20297328969777, -25.100762732454157], + [-48.20373251544931, -25.10015322629873], + [-48.204888365384875, -25.099303034440187], + [-48.20511893496917, -25.099108762988347], + [-48.20530698784593, -25.09889275364896], + [-48.20530699684167, -25.098892678462846], + [-48.205341881648756, -25.09865689095496], + [-48.20534189260211, -25.098656816920677], + [-48.20529731535084, -25.098472969340133], + [-48.20498266562527, -25.09774538561668], + [-48.20472063644788, -25.09724024313129], + [-48.204504301822475, -25.096861125206523], + [-48.204331612836654, -25.096602217907908], + [-48.20336828904617, -25.095311931101268], + [-48.20295824362334, -25.09497987156643], + [-48.202826007197196, -25.09483353364769], + [-48.20272843989353, -25.094648685618164], + [-48.20268709725398, -25.094449196817877], + [-48.20271386406973, -25.094222296880666], + [-48.20277309694303, -25.093992097989116], + [-48.20292839526815, -25.093760492205416], + [-48.20313796623784, -25.09354362785706], + [-48.20333996283822, -25.093407024560374], + [-48.20358902611097, -25.093283671704405], + [-48.20382119398345, -25.093145019829574], + [-48.20395831384989, -25.092924170577046], + [-48.20395833059131, -25.092924117580413], + [-48.204035455900716, -25.092695602213475], + [-48.20403547339487, -25.092695550379783], + [-48.20414616280395, -25.092498434803826], + [-48.20414618900104, -25.092498388152055], + [-48.20450063037532, -25.092071879023166], + [-48.20479793306999, -25.091626733243558], + [-48.20503126207969, -25.091471677251384], + [-48.20532693615723, -25.091315991251737], + [-48.20567269139019, -25.091106292057155], + [-48.20609787544112, -25.090719773329266], + [-48.206291398006755, -25.090454232324], + [-48.20629140660289, -25.090454189496224], + [-48.20653150840274, -25.08990855637033], + [-48.206531524914816, -25.08990851884637], + [-48.20669779726601, -25.089607125105363], + [-48.206697816135204, -25.089607090902003], + [-48.20687236957555, -25.08935169904611], + [-48.20708624230159, -25.089106212519724], + [-48.20740163328144, -25.088871752109227], + [-48.20776283613276, -25.088710075585006], + [-48.2081594393151, -25.088564766575146], + [-48.208453087608945, -25.088497832312335], + [-48.208696668882226, -25.088392685457737], + [-48.208836005040475, -25.088230709383776], + [-48.208836004558314, -25.088230675861872], + [-48.20888748473951, -25.088083951274193], + [-48.20888749517081, -25.088083921543653], + [-48.208954021908596, -25.08778524516024], + [-48.20895402867967, -25.087785214761002], + [-48.20901612899564, -25.087642025948355], + [-48.20901614058291, -25.08764199923081], + [-48.20910692984186, -25.087505851448743], + [-48.20924540454493, -25.087381759772423], + [-48.20940526261237, -25.087297866605425], + [-48.209811384204464, -25.087204439851348], + [-48.20999594534709, -25.087136712788556], + [-48.21020072035761, -25.087034081634442], + [-48.21037870265892, -25.08688068192587], + [-48.21065268125281, -25.086422539553045], + [-48.210881749465, -25.086166232834422], + [-48.21150657603877, -25.08565269213566], + [-48.2119042726518, -25.085209416938813], + [-48.212181132319195, -25.08499966840071], + [-48.21238262217053, -25.084823154934238], + [-48.2124540725493, -25.084555931844072], + [-48.21228013834427, -25.083853296414418], + [-48.21224891781627, -25.083464492973718], + [-48.21237449685956, -25.083279971185554], + [-48.21298928904643, -25.082915312245966], + [-48.21315720308196, -25.08266759251501], + [-48.21314056447687, -25.08262355874176], + [-48.213080834914685, -25.08246546650917], + [-48.21285666184134, -25.08232264311144], + [-48.21244286153817, -25.082114998360286], + [-48.2123245611821, -25.082055634982474], + [-48.21221204400394, -25.082008435334036], + [-48.211481933978284, -25.081702157976416], + [-48.211141833497514, -25.081559486092267], + [-48.21079647872863, -25.081414610056846], + [-48.210525399350374, -25.081251860846898], + [-48.210295744026716, -25.08106705959436], + [-48.21013124604334, -25.080827354180567], + [-48.21003220487542, -25.080545745107926], + [-48.20997503751133, -25.08028775468173], + [-48.20996387751075, -25.080089556863346], + [-48.20998456955686, -25.079876256444013], + [-48.210041960506885, -25.07972248329296], + [-48.210203001281805, -25.079647093761707], + [-48.21071155958959, -25.079531405712245], + [-48.2110700528994, -25.079483371806795], + [-48.21133885591673, -25.079405495441037], + [-48.21154057981091, -25.079310023753955], + [-48.211963994277426, -25.079059986235148], + [-48.21217082388504, -25.07886597650699], + [-48.212307201116545, -25.07867641757189], + [-48.212582235576946, -25.078235978391625], + [-48.21270667530003, -25.078096548971594], + [-48.21290542976989, -25.07797484713796], + [-48.21309641062574, -25.077907327457087], + [-48.21328011168048, -25.077876848091844], + [-48.213624358980894, -25.077792624666102], + [-48.21385771392136, -25.07775721292782], + [-48.21414315488876, -25.077731984089073], + [-48.21518209417, -25.07773940229136], + [-48.21555260106503, -25.077698799337767], + [-48.21586492558791, -25.077597633495174], + [-48.21611629563073, -25.077401117058084], + [-48.2162243196467, -25.076980359084917], + [-48.216247667272405, -25.07671485627861], + [-48.21624305465765, -25.076642527012893], + [-48.216232894012045, -25.076483200397124], + [-48.216192030436595, -25.076353884537994], + [-48.216174087299436, -25.07629710205537], + [-48.21612897896794, -25.076237888830235], + [-48.21608767633705, -25.076183671250174], + [-48.21593752423529, -25.07606550168411], + [-48.21593191557199, -25.07606108766428], + [-48.21552389470323, -25.075675497999434], + [-48.21517772409195, -25.07528466148417], + [-48.21504079221951, -25.075096374030338], + [-48.2149395399831, -25.074881413347114], + [-48.21488798614431, -25.07465953482971], + [-48.214866614296916, -25.07443497434168], + [-48.21483942100939, -25.074299524568495], + [-48.214825387465766, -25.074229623395176], + [-48.21476274153711, -25.074051303551926], + [-48.21465176823306, -25.0738543889325], + [-48.21451157125083, -25.073679124792175], + [-48.21430430736561, -25.07349023798962], + [-48.21387056334235, -25.07319106372815], + [-48.213819942169515, -25.073159575307084], + [-48.213386042909534, -25.072889671073465], + [-48.2132066362805, -25.07273523694022], + [-48.213055246921996, -25.07257744860694], + [-48.212974631121426, -25.072370093282338], + [-48.213024015409594, -25.07215799155312], + [-48.21302402887466, -25.07215796388405], + [-48.213072232837725, -25.07205891064412], + [-48.21307225033276, -25.072058885338723], + [-48.21317169828364, -25.07191504048198], + [-48.21317171900888, -25.071915018231024], + [-48.21331518752961, -25.071760987861122], + [-48.21362721595262, -25.07151922854092], + [-48.21391957424661, -25.071349742916297], + [-48.214492887111135, -25.071056481013926], + [-48.21449290097084, -25.07105644832129], + [-48.214729934723934, -25.070935199245827], + [-48.21487726171221, -25.07083472939974], + [-48.21506253495859, -25.070703658053656], + [-48.21519509239341, -25.070585945205195], + [-48.21532981482843, -25.07043822249738], + [-48.215425948064926, -25.070283819403766], + [-48.21549337451188, -25.07012824567356], + [-48.21558894339351, -25.06977981302128], + [-48.21576926455769, -25.068343487557826], + [-48.21585096091792, -25.06794245421139], + [-48.215948397659005, -25.06757700051201], + [-48.216022661465864, -25.06703144133638], + [-48.216007333271456, -25.066671000487474], + [-48.21596760257352, -25.066526500466107], + [-48.2158830387674, -25.06636672051853], + [-48.215721639076634, -25.066147924614675], + [-48.215289177534274, -25.06563969070729], + [-48.21476201934156, -25.065257730505213], + [-48.214300238138385, -25.06499467077196], + [-48.21424251306994, -25.06497068757864], + [-48.213744501436366, -25.064763776035768], + [-48.2129411526656, -25.064376532771178], + [-48.21240597960185, -25.06402969873031], + [-48.21215865910009, -25.06383410157058], + [-48.212162315413124, -25.063554574217875], + [-48.21216232368675, -25.063554513444927], + [-48.21218477693496, -25.06338958477109], + [-48.21218479169756, -25.063389525139865], + [-48.212229050818536, -25.063210747111377], + [-48.21236829186878, -25.062836968625597], + [-48.2123682857133, -25.06283693162409], + [-48.21236829581429, -25.062836904508924], + [-48.212270018326485, -25.06224614398536], + [-48.21183597042445, -25.060439932785503], + [-48.21179741016884, -25.060240370745817], + [-48.21162680465991, -25.05945589876426], + [-48.2115438143131, -25.059175656061697], + [-48.21154380179382, -25.059175579912562], + [-48.2114871289214, -25.058830863439194], + [-48.211661624950004, -25.05861061580463], + [-48.21219019360246, -25.05836850401224], + [-48.212869937954494, -25.057920773055113], + [-48.21324111514492, -25.05753709090044], + [-48.21332878859795, -25.057313947070813], + [-48.21332879808694, -25.057313862013817], + [-48.21335861589489, -25.057046581733317], + [-48.2133586095774, -25.057046495997177], + [-48.213338986198025, -25.05678018276571], + [-48.21333899147666, -25.056780095303495], + [-48.21326204210867, -25.056257867032304], + [-48.213262035020264, -25.056257778397637], + [-48.21323424420579, -25.055910278282884], + [-48.21323425403294, -25.055910188030584], + [-48.21326876073564, -25.055593278209383], + [-48.21340944762534, -25.055404518821348], + [-48.21375890259145, -25.05509162691862], + [-48.21388484588881, -25.054919555465684], + [-48.21400466580323, -25.054672198178295], + [-48.2140046853371, -25.054672104644848], + [-48.21405632804914, -25.0544248246936], + [-48.2140563294858, -25.054424727965657], + [-48.214064091465254, -25.05390211393446], + [-48.214187905441584, -25.053355501813726], + [-48.214516034812604, -25.052688642765673], + [-48.214593367685694, -25.052414317400263], + [-48.21459338245906, -25.052414213669035], + [-48.214635410045666, -25.05211911569994], + [-48.21463540959935, -25.052119010112822], + [-48.21463263319966, -25.051462198785845], + [-48.21463264747377, -25.05146209134267], + [-48.214696027227184, -25.0509850204726], + [-48.21508869396125, -25.050289320122268], + [-48.21516599523746, -25.04998557501963], + [-48.21516599387531, -25.049985504488745], + [-48.215165993041246, -25.04998546130122], + [-48.21515225857783, -25.04927430748464], + [-48.21515227817789, -25.049274192326994], + [-48.21522034335272, -25.048874282533614], + [-48.21539066424371, -25.048644926394804], + [-48.21558204336648, -25.048465597664293], + [-48.215756357766544, -25.048247957040758], + [-48.215827922587124, -25.04803569853496], + [-48.21582793125069, -25.048035582964815], + [-48.21585174839199, -25.047717864799246], + [-48.21585175094892, -25.04771774188328], + [-48.21586434695736, -25.047112221837068], + [-48.21586436173557, -25.04711209711497], + [-48.21594268794558, -25.046451050111752], + [-48.21594268736426, -25.046450922546953], + [-48.21594125831139, -25.046137344897016], + [-48.21594126946102, -25.046137216095207], + [-48.21590934265554, -25.04574839823604], + [-48.2158109977935, -25.045006663479665], + [-48.215591840884436, -25.043527456383263], + [-48.21569979896224, -25.04323354712605], + [-48.21585590180086, -25.043028017501715], + [-48.21597047487241, -25.042819182109987], + [-48.21597941666936, -25.042770710244273], + [-48.21597940876168, -25.04277066527957], + [-48.21601146149935, -25.042596912395123], + [-48.21597054752615, -25.04234716867983], + [-48.2158254294461, -25.041825468113714], + [-48.215752584742646, -25.041283555049212], + [-48.215511865625295, -25.040490690371637], + [-48.21529288612828, -25.040024636925555], + [-48.215111738844314, -25.039703589068576], + [-48.214903327829916, -25.03943184298186], + [-48.21433216455755, -25.03879710812431], + [-48.21411529225722, -25.0386631816312], + [-48.21381693898529, -25.038658937112068], + [-48.21342841543863, -25.038695503511725], + [-48.21303961659284, -25.03869605735043], + [-48.21283171141509, -25.038638731947376], + [-48.21231993878495, -25.03841371819134], + [-48.21192659946076, -25.03832579402153], + [-48.211341090234455, -25.03819491149118], + [-48.21114856102024, -25.03807100374962], + [-48.21099554570583, -25.03788620311311], + [-48.21091546051441, -25.03766902386024], + [-48.2108510671557, -25.03725926986509], + [-48.21085105465609, -25.037259109034014], + [-48.21078109298464, -25.037089765465037], + [-48.21066137124833, -25.036930767315873], + [-48.21051164666413, -25.036766964109606], + [-48.21012239680298, -25.036455176954004], + [-48.20987010872818, -25.036293416805854], + [-48.20962365007914, -25.036075455182388], + [-48.20948210652865, -25.0358391605674], + [-48.20940842754376, -25.035580137774478], + [-48.20937381540531, -25.035342680166835], + [-48.2094045433004, -25.034851715047726], + [-48.20940452260296, -25.034851555327617], + [-48.20937612803226, -25.03463243691386], + [-48.20937610865585, -25.034632266593757], + [-48.209232265672966, -25.034462616962177], + [-48.20895050527222, -25.034355980555976], + [-48.208707275329566, -25.03421000077135], + [-48.208563390871014, -25.034042244857247], + [-48.208474461413644, -25.033844479529506], + [-48.208434335868766, -25.03359266639738], + [-48.208433945253766, -25.03331688273197], + [-48.20847913337739, -25.03297039480742], + [-48.20858287719324, -25.032588098928457], + [-48.20901654886157, -25.031562720012328], + [-48.20911129091447, -25.0312103948362], + [-48.2091805192333, -25.030781877941962], + [-48.20918413845939, -25.0303813661128], + [-48.20918411598222, -25.030381246401085], + [-48.20918410382925, -25.030381181675477], + [-48.2090829326305, -25.02984234984547], + [-48.209082920440586, -25.02984216085231], + [-48.20906475073306, -25.029560456227728], + [-48.20919668862715, -25.028264908718914], + [-48.209277296689464, -25.027941736126103], + [-48.20955088297401, -25.027669294976377], + [-48.20990019658353, -25.027521184156097], + [-48.21021407426028, -25.027490261731213], + [-48.210624278078875, -25.027491919872695], + [-48.21101247018865, -25.02752528940336], + [-48.2114392427735, -25.027626431448684], + [-48.21185154110146, -25.027833333962487], + [-48.21223108280676, -25.02806976114207], + [-48.21248271763259, -25.028277346278486], + [-48.212685623335055, -25.02848491891602], + [-48.2128954697434, -25.028801723215313], + [-48.21315416272307, -25.02911781947162], + [-48.21347425039537, -25.029406121300998], + [-48.21347612595084, -25.02940762386922], + [-48.21365338800203, -25.02956728219588], + [-48.21374132492562, -25.029620082782213], + [-48.21384463457811, -25.029682113605414], + [-48.21388097916914, -25.02970393617178], + [-48.21392008955441, -25.029720787386047], + [-48.21398519653261, -25.029748839536005], + [-48.214632950914975, -25.030027930381795], + [-48.21497954723198, -25.030066014721044], + [-48.215014228357305, -25.03005187928192], + [-48.215014497968724, -25.030051958678776], + [-48.2152536558301, -25.029954481749765], + [-48.21578486633268, -25.029523612296067], + [-48.21590438143514, -25.029389137096096], + [-48.21595399526248, -25.029231603346023], + [-48.21595398346683, -25.029231461291555], + [-48.215953999543665, -25.029231410244265], + [-48.21594052798656, -25.029069173873296], + [-48.21589445553421, -25.02888566103881], + [-48.215876168697584, -25.028660692935365], + [-48.2158761750595, -25.028660617212324], + [-48.215902978223845, -25.028341589200437], + [-48.21598445781334, -25.02780798525018], + [-48.216041081180144, -25.02756368030011], + [-48.21616074117727, -25.027317398407057], + [-48.216358210568806, -25.027151806550762], + [-48.216544698869235, -25.027051433656016], + [-48.216796995428886, -25.02696231042668], + [-48.217055003052636, -25.026922926567067], + [-48.21733349752299, -25.0269105472606], + [-48.217658764567766, -25.026734713916575], + [-48.21785997054582, -25.02665798745069], + [-48.21813719430202, -25.02657898459487], + [-48.218430529841235, -25.02653213816128], + [-48.21876003003118, -25.02650663359492], + [-48.219078318452624, -25.026521527094776], + [-48.219901391663576, -25.026692060252554], + [-48.220212955578724, -25.026618659457224], + [-48.220446326233244, -25.026397964273016], + [-48.220579654965576, -25.026151211946114], + [-48.22066605456194, -25.02593002213596], + [-48.22074824529342, -25.02579448300183], + [-48.22094289972807, -25.02557324294502], + [-48.22149689676648, -25.02505244458437], + [-48.22173654327525, -25.024895845753875], + [-48.22223391787186, -25.024769153541754], + [-48.222390210614286, -25.024672268869686], + [-48.22271489966305, -25.024332443444866], + [-48.22333819627055, -25.02377719717788], + [-48.22369499435803, -25.023352690965993], + [-48.22384444285378, -25.023132947798878], + [-48.22404141483258, -25.0229491063654], + [-48.224335360521415, -25.022755886635363], + [-48.22464993782748, -25.022618460203688], + [-48.22510909759541, -25.022508189479886], + [-48.2255577003788, -25.02243571189778], + [-48.22596610247842, -25.022261501567147], + [-48.22658199945778, -25.021915282487832], + [-48.22666925896958, -25.021884243956023], + [-48.22693032046532, -25.021831813861535], + [-48.227295480861855, -25.021823108320635], + [-48.22761207989712, -25.021903918083378], + [-48.227900912455254, -25.022070029223215], + [-48.22853696448402, -25.022580755085432], + [-48.228804645755105, -25.0226701252601], + [-48.22907288272344, -25.022562867852034], + [-48.2292896029086, -25.022456273454356], + [-48.22948366544314, -25.02232660536078], + [-48.2296225639804, -25.022143928795064], + [-48.22971007175401, -25.02189017559855], + [-48.229710085981615, -25.02189006927117], + [-48.229710127147655, -25.021889949898192], + [-48.229746190329394, -25.02162043650915], + [-48.22973808754702, -25.02128449327668], + [-48.229615380183375, -25.020583893513944], + [-48.22969019451767, -25.020411729491588], + [-48.229892241289065, -25.020323269636965], + [-48.23041736375732, -25.02026086666443], + [-48.230553133046456, -25.020146804885652], + [-48.2306572274404, -25.019983421730164], + [-48.23071929886236, -25.01980373348874], + [-48.230719340422375, -25.01980354858555], + [-48.23071935169206, -25.01980349844591], + [-48.23076529136277, -25.019599109383982], + [-48.23076534997409, -25.01959887460751], + [-48.23082338935569, -25.019144050024455], + [-48.23087023204166, -25.018925963703953], + [-48.23095357445164, -25.01871192852791], + [-48.23110970655432, -25.018475967395165], + [-48.231242738072275, -25.018351385669117], + [-48.231412305140026, -25.018227213900833], + [-48.231629098892185, -25.018156623383824], + [-48.23187833293367, -25.0181321190555], + [-48.232975481517386, -25.01809209459734], + [-48.233254421152935, -25.018045761085652], + [-48.2333053353366, -25.017999740489724], + [-48.23330528096867, -25.017999609331564], + [-48.233342334084014, -25.017966117499995], + [-48.23331145061146, -25.017916811350638], + [-48.23328423784993, -25.017893584969812], + [-48.233248790894244, -25.017863330597304], + [-48.23319882150904, -25.017820681131642], + [-48.23283978802242, -25.01760084151857], + [-48.23268626584715, -25.017451337854734], + [-48.2325314104093, -25.017197939942452], + [-48.232319915634065, -25.01678962318954], + [-48.232255218371726, -25.01659214031995], + [-48.232242758273756, -25.016410341146734], + [-48.23238461428001, -25.01585878258709], + [-48.23239684382087, -25.01584146745675], + [-48.232121531103, -25.015680014720132], + [-48.23190976944559, -25.01555583021036], + [-48.231734691961414, -25.015470563957695], + [-48.23138754788632, -25.0153259345173], + [-48.23119237269637, -25.015285117661787], + [-48.23100017975654, -25.01528352144388], + [-48.23079637809221, -25.015243175046916], + [-48.23064312045045, -25.01512183018906], + [-48.23026210890555, -25.01463310393198], + [-48.23008638005108, -25.014486506296837], + [-48.22973841513896, -25.014196223256448], + [-48.22931338513002, -25.013925963537822], + [-48.22878211017263, -25.01351384545839], + [-48.22837944642551, -25.01326057973606], + [-48.228373425709506, -25.01325679283643], + [-48.227825941322685, -25.012971340459245], + [-48.227544469901524, -25.01280342475069], + [-48.227497393619494, -25.01277534064449], + [-48.22709656525846, -25.012569959805923], + [-48.22674177995819, -25.012360564215708], + [-48.226555423671705, -25.01214799452726], + [-48.22646843500674, -25.011964622799013], + [-48.22632555189883, -25.011523107221414], + [-48.22620125248444, -25.011338677979623], + [-48.225643827951544, -25.01089691360719], + [-48.22527227531975, -25.01045139870309], + [-48.22496479438903, -25.00992567195915], + [-48.224881661081014, -25.0097835309539], + [-48.22467596560398, -25.009620953405108], + [-48.22434162444896, -25.00958628272137], + [-48.224034661553034, -25.009589212331868], + [-48.22385263382761, -25.009566780122043], + [-48.223782633256405, -25.009558153531927], + [-48.22352382527632, -25.009449900789868], + [-48.22328795797537, -25.0092947893163], + [-48.223109481631845, -25.00909337273601], + [-48.22297868364441, -25.008859186577457], + [-48.22292346655371, -25.008610891069672], + [-48.22290977496512, -25.008361977889372], + [-48.223076141738765, -25.00815811635953], + [-48.22338132473872, -25.00812844378039], + [-48.22368119932975, -25.008171857636384], + [-48.22391739663309, -25.008153709532948], + [-48.22416799608596, -25.00802799091761], + [-48.224390783008495, -25.007844358500765], + [-48.22495057865306, -25.007607278814202], + [-48.22517426765179, -25.00745831489264], + [-48.22550324591221, -25.0072687219911], + [-48.22575530874982, -25.007046920016542], + [-48.22598942809681, -25.006869993879288], + [-48.22620674359208, -25.006916373526167], + [-48.22657412391461, -25.00740620547636], + [-48.22664957713871, -25.00749064639251], + [-48.22664980627016, -25.00749058139647], + [-48.22674350098479, -25.007595436364472], + [-48.22706767076583, -25.007901902250786], + [-48.2272742450835, -25.00804743707175], + [-48.227497650948436, -25.008122625846656], + [-48.228039452308394, -25.008395608833098], + [-48.22844644369257, -25.008819939402795], + [-48.22872580769333, -25.009049311571047], + [-48.229020814182206, -25.009226002595383], + [-48.22942597832585, -25.009379117947805], + [-48.22986092209204, -25.009401213692193], + [-48.23016158836439, -25.00924203495409], + [-48.230293436015785, -25.009046229366273], + [-48.230321982393626, -25.008995095759857], + [-48.23032208823711, -25.008995087036183], + [-48.23041988028897, -25.008819917075805], + [-48.2305085002911, -25.00859099966237], + [-48.23050854841716, -25.00859073314534], + [-48.23059105163458, -25.008133836635118], + [-48.230642603211386, -25.007937166705414], + [-48.23075857535852, -25.007747021451053], + [-48.23098660384206, -25.00764713072906], + [-48.231346093108634, -25.007677471841514], + [-48.23167520624377, -25.00768459545391], + [-48.231976842617435, -25.007649604846016], + [-48.232260949066614, -25.007641179361283], + [-48.23259135919361, -25.007652295742297], + [-48.23318697535862, -25.007570436074147], + [-48.23361713656029, -25.007328472376685], + [-48.23389877913267, -25.007138339822962], + [-48.23400745475731, -25.006955365467917], + [-48.23400740976764, -25.00695526870426], + [-48.23400752097718, -25.00695508146312], + [-48.23389481202826, -25.00671266723088], + [-48.23319296235793, -25.006139736863105], + [-48.232847274139154, -25.005895872405603], + [-48.232608451792366, -25.00569117712187], + [-48.232418469205314, -25.00548567632276], + [-48.232130938819175, -25.005081719882003], + [-48.23196907076799, -25.004916448980456], + [-48.23170193573403, -25.004587863365362], + [-48.23104277325381, -25.003640399946725], + [-48.23079243721737, -25.003393073632985], + [-48.23057698069806, -25.003109487593917], + [-48.22985923662508, -25.002094690305103], + [-48.229338876118504, -25.001529187503927], + [-48.22887599811329, -25.00094408926092], + [-48.22861547439223, -25.0006613753183], + [-48.228499533253924, -25.0005562494643], + [-48.228385407324346, -25.00047482498506], + [-48.2280655452867, -25.000134586512193], + [-48.22793938643518, -24.99992965325421], + [-48.228199665284095, -24.999994136363213], + [-48.2285911601255, -25.000061127586893], + [-48.22885171052244, -25.0001256767327], + [-48.22904732440526, -25.000165138300957], + [-48.22932016640333, -25.00026573075695], + [-48.22946259921877, -25.00034001550358], + [-48.229878410812375, -25.000491024954606], + [-48.23000882076647, -25.00051733185535], + [-48.2301913412438, -25.00055654798346], + [-48.2304401378349, -25.00056118377382], + [-48.23063869781546, -25.00046937654009], + [-48.23093079303139, -25.000295743147532], + [-48.231236517239715, -25.000098486294707], + [-48.231594886128896, -24.999890270835905], + [-48.231923586529696, -24.999836700459323], + [-48.232130690608244, -24.999948002019476], + [-48.23231026835374, -25.000118482532553], + [-48.232515768194965, -25.000301383808935], + [-48.232618384591234, -25.000398801052953], + [-48.232825222762386, -25.000522035161257], + [-48.23283751490628, -25.00055807903159], + [-48.23309699946707, -25.000670354471826], + [-48.23345055373464, -25.000676935171835], + [-48.23371538728795, -25.000550542072286], + [-48.23398557639289, -25.000476376983972], + [-48.23439178082023, -24.999887017185216], + [-48.23486906425359, -24.999633252317523], + [-48.23537360372507, -24.999332239239056], + [-48.235641639023804, -24.999062641494106], + [-48.23590994030931, -24.998781109731688], + [-48.23635968665827, -24.998001539057817], + [-48.236368750949666, -24.997968031471004], + [-48.2364882198877, -24.997526393536354], + [-48.23648823196216, -24.997526294858133], + [-48.23648829203582, -24.997526072784034], + [-48.23652035673232, -24.99726402357014], + [-48.236465301626446, -24.996797401714637], + [-48.236248041067455, -24.9965545944914], + [-48.23586496539024, -24.99629944732007], + [-48.23586082360266, -24.99629668867592], + [-48.23566975349712, -24.996054367680745], + [-48.235357940243915, -24.9953562411122], + [-48.235618637601824, -24.994824092204244], + [-48.236474814726066, -24.994028199699056], + [-48.2371444629827, -24.99337209595981], + [-48.23771363892773, -24.99310808890181], + [-48.23816069808138, -24.993032825365425], + [-48.238870434195285, -24.992926623720518], + [-48.23946499237449, -24.992698896108262], + [-48.23982786075673, -24.992287788889456], + [-48.24010165426148, -24.992178055517783], + [-48.24010190783655, -24.992177953887367], + [-48.24019795361158, -24.992139459643592], + [-48.24087209922421, -24.9918997542303], + [-48.24087289820529, -24.99189947013477], + [-48.24096379120022, -24.991867151069254], + [-48.241756346228776, -24.99157145706047], + [-48.24218333996296, -24.991221224955684], + [-48.24248152612424, -24.990773095332433], + [-48.24275512121145, -24.990252878361403], + [-48.24322085545479, -24.98992723796132], + [-48.24377264980497, -24.98985389824004], + [-48.24466407793121, -24.989822665684336], + [-48.24522896510277, -24.9897495630661], + [-48.24586437549705, -24.9894509340632], + [-48.246027351830925, -24.989191306785223], + [-48.246027384820735, -24.98919106787981], + [-48.24602745815191, -24.989190951060078], + [-48.24608994290403, -24.988738445520784], + [-48.24606476347446, -24.988105239004977], + [-48.24601127215396, -24.98756705037048], + [-48.24613751672224, -24.987187687531065], + [-48.24651397170778, -24.986752935856746], + [-48.24699384010621, -24.986379789828558], + [-48.247366300920824, -24.986124038534275], + [-48.24796586398561, -24.985669535226318], + [-48.24852454855533, -24.98528590366062], + [-48.24891408234739, -24.984851386799182], + [-48.24910456030694, -24.984532571586424], + [-48.24910460377341, -24.984532319397704], + [-48.24910467685733, -24.984532197071985], + [-48.24914980189218, -24.984270384327914], + [-48.24911822827533, -24.983923583230784], + [-48.248983239188256, -24.983515176660507], + [-48.2489500717143, -24.98323997720819], + [-48.24882578510906, -24.982939215183443], + [-48.24873087369214, -24.9824957342437], + [-48.248781038199844, -24.98200726890554], + [-48.249032544805765, -24.981295912735675], + [-48.24921231437864, -24.98086945248188], + [-48.249212404955315, -24.980869123072026], + [-48.24921242171833, -24.980869062108205], + [-48.24936908505237, -24.980299304825603], + [-48.249369200929145, -24.980298914087935], + [-48.24939291906918, -24.979821811641433], + [-48.24935356468244, -24.979236096083618], + [-48.24929147854792, -24.978494759231257], + [-48.249340012686275, -24.97807815258668], + [-48.24960630071187, -24.977880179470432], + [-48.25004286331825, -24.977685296852826], + [-48.25045244344164, -24.977525729562494], + [-48.25085804059371, -24.9775451648431], + [-48.25156157736349, -24.97771336643295], + [-48.25180847478062, -24.977801497717515], + [-48.25214489662885, -24.9779867904867], + [-48.25235039522012, -24.97816966419578], + [-48.252333853419934, -24.978324559167643], + [-48.252316094916544, -24.978414355198492], + [-48.252316139897424, -24.978414369605684], + [-48.2522786964421, -24.978603702593208], + [-48.252137953035394, -24.979042828791986], + [-48.25200658578888, -24.979649267640188], + [-48.25200287046226, -24.97981633860688], + [-48.25215440954539, -24.980069847651944], + [-48.25247774649886, -24.98025489893685], + [-48.25266419734392, -24.980335098041564], + [-48.25266594373988, -24.980336296367586], + [-48.25297062921149, -24.98046735180235], + [-48.253295558825315, -24.9805807992304], + [-48.25355025108067, -24.980907842168122], + [-48.25355242396585, -24.98110515381025], + [-48.25355256183364, -24.98110523577734], + [-48.25355472329029, -24.98130150469054], + [-48.25351368322947, -24.981969305704368], + [-48.2536550526087, -24.982091301716387], + [-48.254062524209196, -24.98202719388692], + [-48.254140051060084, -24.982011874662028], + [-48.254140153111216, -24.982012213563614], + [-48.254614940862545, -24.981918395168282], + [-48.255059832772105, -24.981938545296813], + [-48.255266137369034, -24.982085614948957], + [-48.25561328347247, -24.98237854546556], + [-48.25569963265378, -24.98261890917173], + [-48.25571960151999, -24.98266998753979], + [-48.25572011770154, -24.98267056120482], + [-48.255836110919624, -24.982967259127978], + [-48.25617016921577, -24.983259948056038], + [-48.256477247950414, -24.983587954371664], + [-48.25701364601157, -24.984206715519214], + [-48.25731310043158, -24.984440911334698], + [-48.257314600895576, -24.984442578834962], + [-48.257451247004624, -24.98454944596028], + [-48.257733204095906, -24.98482923153096], + [-48.258055236727486, -24.985073939956806], + [-48.25828508822269, -24.985340825395337], + [-48.25847380698248, -24.985690522002017], + [-48.25892386385563, -24.986068912758665], + [-48.25907648266445, -24.986274680899804], + [-48.25909051692633, -24.98638511969894], + [-48.25909510946072, -24.98642125937095], + [-48.25909534673226, -24.986421523045372], + [-48.25911009437873, -24.986537575070177], + [-48.258979013800136, -24.987132088062992], + [-48.25857614494861, -24.98757832766233], + [-48.25795359611534, -24.987889191059757], + [-48.257645290744314, -24.988205847144304], + [-48.25760230073527, -24.988372194294815], + [-48.25758178854328, -24.98870609592572], + [-48.257758211443466, -24.989019752277443], + [-48.25821189324764, -24.989394087913993], + [-48.2582117954971, -24.98939449369137], + [-48.25913445148578, -24.990155772785382], + [-48.25941615943138, -24.990447490064565], + [-48.2594881024524, -24.990747279378812], + [-48.259378219161874, -24.990983669833415], + [-48.258952853710724, -24.99126235339693], + [-48.258811573992794, -24.991310860808976], + [-48.25849085737467, -24.991420975975633], + [-48.25794738174856, -24.991709418695265], + [-48.257548202769506, -24.991988582229798], + [-48.257173619818374, -24.992339829650476], + [-48.25677825345243, -24.993036910688183], + [-48.25663936124872, -24.99341835912921], + [-48.2566393043932, -24.993418447011624], + [-48.25659674618753, -24.993535326598703], + [-48.25631718741449, -24.99432979759453], + [-48.25604634837949, -24.994730618096376], + [-48.255742357324046, -24.99518049688784], + [-48.25563999428263, -24.995331983809226], + [-48.25540890286922, -24.995709751386723], + [-48.25505571573495, -24.996276280901984], + [-48.25505253229287, -24.99641948462548], + [-48.25528664069352, -24.9964954381859], + [-48.25541268751541, -24.996443134780904], + [-48.25541260828173, -24.996443438242586], + [-48.255617037923415, -24.99635860945258], + [-48.25620787678869, -24.996297884206157], + [-48.25687569101364, -24.99631020795049], + [-48.25728002704833, -24.996389299113964], + [-48.257771784224396, -24.99666101801556], + [-48.25820560084118, -24.997182375670075], + [-48.258484671019154, -24.997593431975172], + [-48.25872392926031, -24.998027630744932], + [-48.25895539315769, -24.99822291507552], + [-48.25920207178246, -24.99832297146297], + [-48.25965020317784, -24.998199909221405], + [-48.260473191729126, -24.997713659589763], + [-48.261011302219025, -24.997288768148618], + [-48.261011643312706, -24.997288302028537], + [-48.26127958410827, -24.996922146524668], + [-48.26145719766576, -24.995880977758926], + [-48.26172663370367, -24.994954730798167], + [-48.261978142923425, -24.994243233179976], + [-48.26243858495873, -24.993559435543816], + [-48.2630883983721, -24.99320130377868], + [-48.263576054778795, -24.993067017098202], + [-48.26425827160895, -24.993019878733236], + [-48.26462173546385, -24.99316982884033], + [-48.264914443345184, -24.99355724776243], + [-48.26602616191465, -24.994819306119762], + [-48.26667295470989, -24.995189355911], + [-48.266902826218015, -24.99545621160462], + [-48.26676107912785, -24.99567437325604], + [-48.26672673028704, -24.995727239093387], + [-48.26640480103528, -24.996067540068598], + [-48.26617532455128, -24.996373724521067], + [-48.266175354210795, -24.996373768493676], + [-48.26617513599552, -24.996374059651455], + [-48.26640343966786, -24.996712537713773], + [-48.266650386881665, -24.99680064826661], + [-48.26725185695641, -24.996811705689172], + [-48.26805150571977, -24.996826402659195], + [-48.26888559961809, -24.997020806928976], + [-48.26936587755729, -24.997220646767108], + [-48.26963585089958, -24.997452438594635], + [-48.26991522576338, -24.997851542923467], + [-48.26991528627768, -24.997932418725792], + [-48.26992982988636, -24.997942687033287], + [-48.26996127172193, -24.998138914735154], + [-48.26991565443363, -24.99842460314644], + [-48.26983215388639, -24.998649680351974], + [-48.26951166555687, -24.99893021243635], + [-48.26951160547623, -24.998930414089777], + [-48.269511462836, -24.998930538946095], + [-48.26945486063943, -24.99912051666931], + [-48.2696991760847, -24.999327960138267], + [-48.269917989787984, -24.999498606026606], + [-48.26991802460675, -24.999498633180586], + [-48.27042035167385, -24.99989037932519], + [-48.27062406628121, -25.000156768899387], + [-48.27082461593106, -25.00056636328499], + [-48.2710118079238, -25.00098765078676], + [-48.271081936616355, -25.001370973296872], + [-48.27104598553665, -25.001812041240772], + [-48.27087459695265, -25.00245357855869], + [-48.27080015021957, -25.00285812377152], + [-48.27086061340206, -25.003086067175232], + [-48.271305757787324, -25.003691169477577], + [-48.27167866458501, -25.004008418422114], + [-48.27214587860293, -25.00420801144321], + [-48.27252142625589, -25.004405920953868], + [-48.27294592937002, -25.004759929694785], + [-48.273029160619785, -25.005143492045743], + [-48.2729547183221, -25.005548038670206], + [-48.272750901559185, -25.005878579640715], + [-48.27250674192381, -25.00625613427076], + [-48.272188661996786, -25.007014366717485], + [-48.2720916278394, -25.007274052402494], + [-48.27189624175679, -25.00779694638088], + [-48.27161612169091, -25.008615566738946], + [-48.27160424879014, -25.009152585234165], + [-48.2716688406517, -25.009786516242574], + [-48.27160511085448, -25.010298705458442], + [-48.27151571589289, -25.01078654617471], + [-48.27146903895944, -25.011119969519545], + [-48.27137964254153, -25.011607809975732], + [-48.27150295161522, -25.011956293095558], + [-48.271694019895484, -25.01279550217775], + [-48.27184009314267, -25.01329960465306], + [-48.271947933566345, -25.013755250786065], + [-48.27218278151869, -25.014392307306217], + [-48.272473183791256, -25.01488712034317], + [-48.272795585152615, -25.015119871332104], + [-48.27314760998172, -25.015197963667283], + [-48.27363429337396, -25.015111385778972], + [-48.2739873736649, -25.01514174115056], + [-48.274361901620345, -25.015387383876767], + [-48.27464264557946, -25.015726814367696], + [-48.27485553503639, -25.016172447303482], + [-48.27519912986557, -25.016632415705853], + [-48.27535233732104, -25.016814304330193], + [-48.27570489620326, -25.01686852361112], + [-48.2765538165239, -25.016991534263123], + [-48.27683983888679, -25.017092285704276], + [-48.27709914129632, -25.017216424177533], + [-48.277236094732416, -25.01754127654816], + [-48.27738588232122, -25.01787830265111], + [-48.27759190649771, -25.01826108385506], + [-48.27780122575654, -25.018649984673594], + [-48.27797562997945, -25.01905909310356], + [-48.278113640720036, -25.01933620980717], + [-48.278331482177286, -25.020152026691445], + [-48.278586511288786, -25.021064033587], + [-48.27857255540987, -25.021696524659], + [-48.27832830601838, -25.02267101645948], + [-48.278161918661965, -25.02308581942411], + [-48.277986532387665, -25.023321175642458], + [-48.27765629314477, -25.023446410736973], + [-48.27724631687336, -25.02361797683171], + [-48.276955271890955, -25.023743967236097], + [-48.27695515156626, -25.023744149092032], + [-48.27695502988853, -25.02374420176482], + [-48.27669748033566, -25.024133454246115], + [-48.276622768493525, -25.024549935599488], + [-48.27660036650312, -25.025564305926384], + [-48.276533742849196, -25.02620776873135], + [-48.27660125965964, -25.026710427782977], + [-48.27662297458109, -25.026913782090208], + [-48.276618820395356, -25.027101869047815], + [-48.276611113580685, -25.027450801544397], + [-48.27647038131659, -25.027889949158297], + [-48.2765315716047, -25.02867901849478], + [-48.27789783365935, -25.029706907348793], + [-48.27847362658238, -25.0297413364905], + [-48.27876961679405, -25.029985532067453], + [-48.278539834689866, -25.03030366418098], + [-48.27835013652705, -25.030586714557998], + [-48.278290366625406, -25.03091990015784], + [-48.2782394791089, -25.03144426613832], + [-48.27821399729715, -25.032004913457587], + [-48.27822043278083, -25.032900426510707], + [-48.27874377299328, -25.033530824444117], + [-48.27921972852321, -25.033933519181407], + [-48.27948821537427, -25.034236903121442], + [-48.28026511621787, -25.03525397691646], + [-48.280945926001, -25.035875313622995], + [-48.28183553608403, -25.03653628571724], + [-48.28230157206997, -25.036795526786342], + [-48.282625362888794, -25.03696859316143], + [-48.28292111504361, -25.03722471623451], + [-48.28308245783279, -25.03763358167923], + [-48.28344765547097, -25.038124883783226], + [-48.28357491496019, -25.038296085526103], + [-48.28357619352695, -25.038297255739536], + [-48.283604538149, -25.038335387550127], + [-48.28408440018839, -25.038910402818555], + [-48.28414076672269, -25.03897794601233], + [-48.28474209534839, -25.039364339042848], + [-48.284743404314085, -25.039365537049672], + [-48.28509668841268, -25.039592543256703], + [-48.28520339377886, -25.039594494278145], + [-48.285594461992844, -25.03960164398911], + [-48.28605578736443, -25.0400756839025], + [-48.28619828459208, -25.04035631452526], + [-48.28619882454761, -25.040356642156517], + [-48.28629471164781, -25.0405454789897], + [-48.286811070712446, -25.040901137471185], + [-48.287179170650795, -25.040848169959837], + [-48.28751322547745, -25.04055580565004], + [-48.287557763560045, -25.040462617839932], + [-48.287705548652845, -25.04015340326106], + [-48.287988778412874, -25.039788477038194], + [-48.28838754795304, -25.039521343261317], + [-48.28882214763231, -25.039421841668904], + [-48.288997552835625, -25.039409848255254], + [-48.288997715329614, -25.039409678413342], + [-48.28909805456234, -25.03940281754329], + [-48.2894024900425, -25.03926511084472], + [-48.289684138086855, -25.038971784271677], + [-48.28972695672984, -25.038647453685723], + [-48.28973130943569, -25.038614483902368], + [-48.28967657318037, -25.03812399759948], + [-48.2895290930299, -25.037679573297797], + [-48.28935777763999, -25.037127265406806], + [-48.289342340200676, -25.036637496396914], + [-48.289429070535256, -25.036268979439306], + [-48.289556671827086, -25.03582957605365], + [-48.28959625321114, -25.03522142401064], + [-48.28962168538333, -25.0346607685077], + [-48.289693214923126, -25.0343874834898], + [-48.28990202922348, -25.033830174487633], + [-48.28995178822086, -25.033580959915053], + [-48.28997565630978, -25.033461417745936], + [-48.289840752895905, -25.033041100747067], + [-48.28962550325141, -25.032572084553454], + [-48.28960316006756, -25.032523399884983], + [-48.28956021126393, -25.03209282216151], + [-48.28954426702583, -25.031029985045212], + [-48.28954376216279, -25.030456917222633], + [-48.289759108553326, -25.030198195090495], + [-48.29007931310751, -25.02992961019119], + [-48.291086742443824, -25.0293988661857], + [-48.291830984778606, -25.028922948173634], + [-48.29183119586526, -25.028922796765563], + [-48.29183129655129, -25.028922732381], + [-48.29183158624569, -25.02892222988902], + [-48.291833262362466, -25.02891932256608], + [-48.291836107292326, -25.028914387867676], + [-48.29187342069882, -25.028849665521445], + [-48.29188256010083, -25.02883381266635], + [-48.291900170543514, -25.02880326625552], + [-48.29202201156406, -25.028591924886655], + [-48.29209326891694, -25.028330571720257], + [-48.292087614292, -25.02827693073627], + [-48.2920390477766, -25.027816217345233], + [-48.29197670845351, -25.027074878894734], + [-48.29213493926951, -25.02643307141719], + [-48.292543077531136, -25.02574806383778], + [-48.29284040228912, -25.0253356265875], + [-48.293007270103956, -25.02489693381216], + [-48.29308271365221, -25.02444463604337], + [-48.29328719574391, -25.02407845095441], + [-48.29364272881851, -25.023989473057107], + [-48.29420750269864, -25.023928129107908], + [-48.294526037350344, -25.023742911338548], + [-48.29452613703706, -25.023742793896133], + [-48.29452634847373, -25.023742670951876], + [-48.29483559701525, -25.023378338765696], + [-48.29511385404273, -25.02322831210688], + [-48.295268670568696, -25.023338579458745], + [-48.29545806965381, -25.023664373306026], + [-48.29566161425296, -25.023942669573348], + [-48.296079957528285, -25.023986101093804], + [-48.29648703474608, -25.023945755334363], + [-48.297095024746284, -25.02370610575965], + [-48.29734492806178, -25.02366289766782], + [-48.2976713256901, -25.02371659055208], + [-48.29782457642032, -25.023898459384977], + [-48.298132125092074, -25.024214460692697], + [-48.298180236026255, -25.024302372841646], + [-48.29818111330734, -25.02430314122136], + [-48.298271036717836, -25.0244674559571], + [-48.29847798870835, -25.024590607557094], + [-48.2985152866425, -25.024595830909686], + [-48.298515672991215, -25.02459616929668], + [-48.298869551816225, -25.024645727552507], + [-48.29936648669477, -25.024690579087686], + [-48.29962452437903, -25.024874351291455], + [-48.29963265707612, -25.025101335336586], + [-48.29958656865789, -25.025410904895384], + [-48.29941185226915, -25.025610687268507], + [-48.29934372088279, -25.025662082700332], + [-48.29902580601778, -25.025901897120317], + [-48.29861218497437, -25.026240600409796], + [-48.29846209269699, -25.02651246276724], + [-48.29837592157321, -25.02685712024715], + [-48.29845215734616, -25.0269659558322], + [-48.2985637659491, -25.027254516473242], + [-48.298618511501076, -25.02733267184867], + [-48.298618651092504, -25.027333568409514], + [-48.298690497228655, -25.027436136701443], + [-48.29867388724302, -25.027688328474404], + [-48.298670862849846, -25.02773424806824], + [-48.298588351817536, -25.027911828483305], + [-48.29829313101634, -25.02822880475423], + [-48.297746426087365, -25.02866059248231], + [-48.2973183870648, -25.02905872113385], + [-48.29702080552337, -25.02948309999604], + [-48.29682853235765, -25.0298855173306], + [-48.296675029791075, -25.030312517458597], + [-48.29661609394675, -25.0306099127551], + [-48.29662186524973, -25.03094430198676], + [-48.29680787598626, -25.031425236528598], + [-48.29710732746602, -25.032111193823688], + [-48.29764493136172, -25.033290972050157], + [-48.29781994287637, -25.03367619577708], + [-48.29804368858939, -25.03422944816982], + [-48.29823342626804, -25.034668831629542], + [-48.29829311079176, -25.0348070449555], + [-48.298573179481316, -25.03518224054547], + [-48.29910030074791, -25.035645500421722], + [-48.29923972174594, -25.035694581728634], + [-48.29924425204734, -25.03569586233962], + [-48.299529766995974, -25.03579637343013], + [-48.2996008151217, -25.03579665393571], + [-48.299601523839, -25.03579685427158], + [-48.30008727668258, -25.03579877132209], + [-48.3000880132999, -25.035798576529462], + [-48.30036837156681, -25.035799682161304], + [-48.30097380557596, -25.035679360604576], + [-48.30151635580426, -25.035438505862437], + [-48.30161547142254, -25.03539464287265], + [-48.30161573153006, -25.035394574086027], + [-48.3021379364556, -25.035163474107204], + [-48.302853900938715, -25.034782500572312], + [-48.30322197800218, -25.034729491456716], + [-48.30358718318977, -25.034807755588336], + [-48.3043270403819, -25.03513159542163], + [-48.304719228685244, -25.03517453039342], + [-48.30538858463014, -25.0351269837411], + [-48.30564639175027, -25.035322681880118], + [-48.305745127142316, -25.035408497519608], + [-48.305955031065466, -25.035590934450582], + [-48.30618951086826, -25.035654882023476], + [-48.30641410149698, -25.035669200980742], + [-48.30671295392444, -25.035688254030035], + [-48.30723874390254, -25.03561421769666], + [-48.307626627653704, -25.0359307459413], + [-48.30762737718537, -25.035930859315894], + [-48.30779272980844, -25.03606579261669], + [-48.308084107745195, -25.036524750427624], + [-48.30833201977628, -25.037173941252142], + [-48.30837805257226, -25.037452922847887], + [-48.30841302982229, -25.037664901748684], + [-48.30834812184827, -25.03823678915728], + [-48.3081681846304, -25.038675264076627], + [-48.307962828898596, -25.039077461364368], + [-48.30771243729963, -25.039741495859708], + [-48.307734421889315, -25.03991577291612], + [-48.30776828901987, -25.04018424510174], + [-48.308024872595695, -25.041036553794918], + [-48.30806710437899, -25.04150293366375], + [-48.3079772948458, -25.04201467483296], + [-48.30775909274531, -25.04240469956025], + [-48.307383950703404, -25.042779938903994], + [-48.30724956100137, -25.042932706259663], + [-48.30716522355358, -25.043193830636085], + [-48.30714482078737, -25.043527747462644], + [-48.307203018126124, -25.043863089887314], + [-48.30741606950362, -25.044308690180433], + [-48.30767839354794, -25.044898449644723], + [-48.308171309151405, -25.045731166377145], + [-48.3086259728126, -25.046515433048583], + [-48.30888082633066, -25.04682043598687], + [-48.30891972100117, -25.046866984090748], + [-48.30904918406961, -25.047068044789707], + [-48.30909908610287, -25.04714554421399], + [-48.30919969508474, -25.047301792802415], + [-48.30926196271892, -25.047398495982154], + [-48.30964533312945, -25.047847180820117], + [-48.30976245390761, -25.047940342206303], + [-48.3100446733023, -25.048164827082672], + [-48.31024560943002, -25.048212627103503], + [-48.3106965738824, -25.048319904420936], + [-48.31123291546067, -25.048365436405494], + [-48.311746264060844, -25.048255386531924], + [-48.31174644201381, -25.0482553483826], + [-48.31217086774178, -25.048024256864498], + [-48.31246350571047, -25.047826594731905], + [-48.3127875501234, -25.04739072348804], + [-48.31311901943094, -25.047205821039537], + [-48.31311922672213, -25.047205705406544], + [-48.31351432269989, -25.04711734498509], + [-48.31398006024733, -25.047186579431614], + [-48.3140629810355, -25.04719890590333], + [-48.31417626072371, -25.04721507116478], + [-48.31435041103765, -25.047239922624183], + [-48.31441487044526, -25.047261792964935], + [-48.31487078886759, -25.047416479885708], + [-48.31532384521931, -25.0476753900091], + [-48.31560737628179, -25.047895416837985], + [-48.31600803366017, -25.048153377532742], + [-48.316392472411636, -25.04855431046817], + [-48.31665718768503, -25.049036650518406], + [-48.316974307922585, -25.049519937404714], + [-48.31730687053115, -25.04989605301594], + [-48.31770857751089, -25.050106273156047], + [-48.31785242671818, -25.050120811274756], + [-48.318324316375865, -25.05011739814871], + [-48.31861123577706, -25.050182275631073], + [-48.31912825665526, -25.050513963938283], + [-48.31984918238143, -25.05111198793488], + [-48.32027632121534, -25.05135847748091], + [-48.32087066005118, -25.051751250569833], + [-48.32123281710203, -25.05197268691577], + [-48.321763992142046, -25.05225686672944], + [-48.322343163588386, -25.05274487199445], + [-48.322533194983734, -25.05304677257747], + [-48.3226784756298, -25.053598582694224], + [-48.32305037056604, -25.05397539656738], + [-48.323529672021394, -25.05423475739562], + [-48.323828668605024, -25.05434759897355], + [-48.324051361799896, -25.054339690696196], + [-48.32405165070306, -25.054339680436467], + [-48.32426516142847, -25.0541644460552], + [-48.32424907084756, -25.053698538421525], + [-48.324258923363296, -25.0532450373559], + [-48.32438538996543, -25.052853332989038], + [-48.32469241813217, -25.05259622140524], + [-48.32499537822901, -25.052506308987216], + [-48.32499582062491, -25.05250616792001], + [-48.32550676584629, -25.05251537523415], + [-48.32599228626207, -25.052488305988764], + [-48.326295005913074, -25.052410302720492], + [-48.32629542656274, -25.0524101943291], + [-48.3264840237626, -25.052174812837656], + [-48.32660711468104, -25.05193825128758], + [-48.326588165313055, -25.051603619980995], + [-48.326642491709826, -25.05091214047275], + [-48.326614585380426, -25.050386324920805], + [-48.32648420308841, -25.049751213376435], + [-48.326338907861974, -25.049199405697788], + [-48.32616352660281, -25.048826139929385], + [-48.32605313195574, -25.048477922504894], + [-48.32604935674153, -25.04804805301487], + [-48.32581976169528, -25.047757382958032], + [-48.325522851012316, -25.047549072395867], + [-48.32517768472569, -25.04714886901553], + [-48.32515459294715, -25.04700518584794], + [-48.32500464158623, -25.046668194050586], + [-48.32487012368413, -25.04622402992719], + [-48.32448695749521, -25.04576344590074], + [-48.324391484158895, -25.04533192403444], + [-48.32440340039789, -25.04478319201603], + [-48.32440392400767, -25.044759079889566], + [-48.32423192309075, -25.044230667381687], + [-48.32409974242717, -25.043679094581297], + [-48.32388821607817, -25.04346113825594], + [-48.32380491772622, -25.043375307524467], + [-48.3235163158819, -25.042785098062463], + [-48.3233718170491, -25.042197486022825], + [-48.3234440374736, -25.040682544799], + [-48.32350263619084, -25.039191235513744], + [-48.32362310135907, -25.03786818592648], + [-48.32372568243152, -25.03736859974397], + [-48.324256958059294, -25.03703208755329], + [-48.32425717739043, -25.037031948627245], + [-48.324731868088534, -25.03689723394275], + [-48.32567373744372, -25.036973893895833], + [-48.32631664933945, -25.036937715039517], + [-48.327172936104596, -25.03733517627083], + [-48.327825844767574, -25.037442438340197], + [-48.32852270980789, -25.037335587109755], + [-48.32958655674748, -25.03721149790548], + [-48.32958687938872, -25.037211460270765], + [-48.3297484697478, -25.03701140360304], + [-48.329919625180274, -25.036369776856482], + [-48.33015955851907, -25.03617134125879], + [-48.3301598106804, -25.0361711327095], + [-48.33051349660746, -25.03617749102652], + [-48.33100166670204, -25.036451935744097], + [-48.33130326304318, -25.036621489064338], + [-48.33210285169919, -25.036611978388265], + [-48.3322269256199, -25.036565838566258], + [-48.332776610222155, -25.036361423624353], + [-48.333341955468775, -25.036276064748446], + [-48.33381302204716, -25.03630840098058], + [-48.33412379713853, -25.036481126227056], + [-48.33419594154329, -25.03678089623858], + [-48.33422465746827, -25.037270910526733], + [-48.334290865645556, -25.03784517086056], + [-48.33444367423115, -25.03805087685099], + [-48.33493578636528, -25.03832236770656], + [-48.33529716093848, -25.038579571994465], + [-48.335509278776726, -25.039072877384708], + [-48.335512521269685, -25.039202225413913], + [-48.33552335152714, -25.039634262946098], + [-48.3355050911183, -25.039872715275102], + [-48.335644288029144, -25.040102054031777], + [-48.33593119707591, -25.040166896941884], + [-48.33643054342251, -25.040104221174317], + [-48.3365753990897, -25.040055212684788], + [-48.3373014881639, -25.03980955481107], + [-48.337301845414174, -25.039809433941418], + [-48.33775291524541, -25.03955486362264], + [-48.33799593163428, -25.039224928024115], + [-48.33809613717438, -25.03883273682259], + [-48.33802192018988, -25.038628443074803], + [-48.337781272958836, -25.038242080359066], + [-48.33776254925942, -25.03789551317955], + [-48.33786610500572, -25.037348174909425], + [-48.33832747310696, -25.036616225852338], + [-48.339096468153805, -25.0361884441166], + [-48.33909678345607, -25.03618826871664], + [-48.33968884025461, -25.036079485821908], + [-48.34015836455303, -25.03618340849701], + [-48.3406232549358, -25.036502149423377], + [-48.34109841547257, -25.036952402316572], + [-48.34178394733843, -25.037370602714848], + [-48.34227787696408, -25.037558529292987], + [-48.34285169335758, -25.037688188525028], + [-48.34352123930751, -25.037628542551953], + [-48.343521325332034, -25.037628534888366], + [-48.34391843360774, -25.037444613385414], + [-48.344277012955416, -25.037224184559445], + [-48.344639190636805, -25.036836672234884], + [-48.34489991070376, -25.03629213708018], + [-48.34514238773263, -25.035986056487292], + [-48.3455284336658, -25.03569468804475], + [-48.345528701937475, -25.035694485565614], + [-48.34639410353787, -25.035662206435582], + [-48.34639430292287, -25.03566219899803], + [-48.346739773362586, -25.03544152927453], + [-48.34767886148122, -25.035016785696556], + [-48.34767934511625, -25.035016566949135], + [-48.348006320158476, -25.03504628445677], + [-48.34864871930669, -25.035642770026072], + [-48.34877285296756, -25.035845675874555], + [-48.348825953387994, -25.035932472308378], + [-48.3488267436758, -25.03593881915246], + [-48.34889300029144, -25.036470928214015], + [-48.348899141652176, -25.036483093712523], + [-48.348977026080085, -25.036637375745233], + [-48.34908153895638, -25.036844405730417], + [-48.34935329726124, -25.037004464853123], + [-48.34979791967523, -25.03704821774498], + [-48.34984974588508, -25.037031774504705], + [-48.350154179540766, -25.036935184382006], + [-48.35066838444381, -25.03677730180895], + [-48.35066866207379, -25.03677721656421], + [-48.350933478763736, -25.036650610684124], + [-48.351148204278175, -25.036415658875136], + [-48.35127610371146, -25.035952315149753], + [-48.35133824745643, -25.035499737597135], + [-48.35146325444196, -25.03529229561506], + [-48.35163720873285, -25.035003626892927], + [-48.35194875423305, -25.034531617984424], + [-48.35223358556258, -25.034083010204863], + [-48.35233249369804, -25.03382932916278], + [-48.3524814141808, -25.033094052443392], + [-48.35244235367514, -25.032904759842797], + [-48.35225150234623, -25.03263869700307], + [-48.35163427147766, -25.032090431975924], + [-48.35134042392297, -25.031738957748097], + [-48.35119066915349, -25.031390052912563], + [-48.35113568615138, -25.03089956886207], + [-48.35104371385529, -25.03030097313339], + [-48.35088060585453, -25.029963769045956], + [-48.350715960016245, -25.029698172036763], + [-48.350592406900056, -25.029349734132676], + [-48.350313462551256, -25.028914950477237], + [-48.34998725437205, -25.028240541058764], + [-48.349902744394726, -25.027904738387647], + [-48.34985855704939, -25.027521898688697], + [-48.35009149491832, -25.02704849008298], + [-48.350206575820124, -25.02695744729269], + [-48.35050450119765, -25.026721751499814], + [-48.350504735219914, -25.026721566358653], + [-48.35092594445261, -25.026633565699743], + [-48.35132227850795, -25.026461759360647], + [-48.351322750212944, -25.026461554880914], + [-48.35164198820611, -25.026240403538043], + [-48.35173957360269, -25.025967543580474], + [-48.35211331143731, -25.02564008836356], + [-48.35211351030004, -25.025639914126632], + [-48.35240321672848, -25.02557344311629], + [-48.35281029778136, -25.025532941432516], + [-48.352863042476564, -25.025546306188012], + [-48.35326644320339, -25.025648521494233], + [-48.35378859488062, -25.02574139779871], + [-48.354157150013194, -25.025652515583516], + [-48.354157404784544, -25.02565245414141], + [-48.3545295424904, -25.025408360037687], + [-48.35487906538236, -25.024996714230795], + [-48.35500565518526, -25.024593037455546], + [-48.35517819125884, -25.023879756317907], + [-48.35541597428851, -25.023764872636487], + [-48.355416524953114, -25.023764612278622], + [-48.35569133607324, -25.0237814433057], + [-48.35597515201135, -25.023989460436646], + [-48.3564177322122, -25.024116671939883], + [-48.35641794150889, -25.024116732098022], + [-48.356658574218116, -25.023894170106214], + [-48.35685243932478, -25.023408114193213], + [-48.35720680749622, -25.02276970416405], + [-48.35738935995918, -25.02219987190458], + [-48.357556255426154, -25.02174915238485], + [-48.35773701472256, -25.021262861694037], + [-48.35789489943592, -25.020620954701847], + [-48.35800965374036, -25.020157367943543], + [-48.35806971440954, -25.01980026096835], + [-48.358077638260646, -25.019430287714556], + [-48.357836189577604, -25.01907975840719], + [-48.35759244136748, -25.01883664035761], + [-48.3575980655306, -25.018574078756416], + [-48.357773961948354, -25.01831454519706], + [-48.358109332093846, -25.017950394491336], + [-48.35824797762142, -25.017594684520493], + [-48.358317300052214, -25.017416829438954], + [-48.3583147279173, -25.017411440749488], + [-48.358179358123095, -25.01712783686282], + [-48.35804141678739, -25.01683884416698], + [-48.358022121974955, -25.016516143501068], + [-48.35820974309078, -25.016316611846836], + [-48.35820983408865, -25.016316515071964], + [-48.358487440450816, -25.016202058674814], + [-48.35879871828451, -25.01635086205846], + [-48.359030644345914, -25.016534072014814], + [-48.3593039078688, -25.01662250290663], + [-48.35988173973132, -25.0165611358247], + [-48.360370949209255, -25.01633129363651], + [-48.36037146217116, -25.016331052633504], + [-48.36074560159757, -25.01599146213465], + [-48.361167200201585, -25.01527065924597], + [-48.36135604202877, -25.015011544584052], + [-48.3613561817058, -25.015011352929115], + [-48.36163276182951, -25.01494462878727], + [-48.36203980688739, -25.01490409864668], + [-48.362811287619124, -25.014977488331237], + [-48.3632953878635, -25.01500995744923], + [-48.36377580168994, -25.015115239123567], + [-48.36394746234131, -25.01515285778002], + [-48.36434115541667, -25.0151240236511], + [-48.36503966136879, -25.014933444890815], + [-48.36551593985664, -25.014691474547543], + [-48.365516526696695, -25.014691176361534], + [-48.365951578952135, -25.014555692218522], + [-48.36595180414366, -25.014555622088853], + [-48.3666158524579, -25.014137579351708], + [-48.366841566761785, -25.01399830839868], + [-48.366860776908965, -25.013712107305253], + [-48.36688482584874, -25.013199146576408], + [-48.36690880945496, -25.013045493426947], + [-48.366975889260345, -25.01261573784322], + [-48.36719435968595, -25.01220173541356], + [-48.36748962999008, -25.01187266767402], + [-48.36807507488418, -25.011453224620215], + [-48.368435827112805, -25.011125314366197], + [-48.36901122154285, -25.01056241824567], + [-48.36925663859446, -25.01011307131066], + [-48.36931793143626, -25.00969628255695], + [-48.36938380277982, -25.0090646682935], + [-48.36953651874855, -25.008661436755734], + [-48.36979248302344, -25.00833166769656], + [-48.37017941497883, -25.008004215505988], + [-48.37075042148495, -25.007632459978232], + [-48.37075071826602, -25.00763226675682], + [-48.37120017559733, -25.00743732086295], + [-48.371200333626696, -25.007437252319498], + [-48.37210235559263, -25.00691593645508], + [-48.373208187549736, -25.006051977569147], + [-48.373556321343386, -25.005699951246765], + [-48.37364074220294, -25.005426839470296], + [-48.37376724572664, -25.005023139084848], + [-48.37395897737686, -25.004632530183475], + [-48.374190980344856, -25.00419493720232], + [-48.37419101290421, -25.004194875790144], + [-48.374985181393996, -25.00381490611426], + [-48.37602741755904, -25.00347512892471], + [-48.37632889060485, -25.0034685110359], + [-48.377153716625955, -25.003495006470693], + [-48.37740385541409, -25.003416001419417], + [-48.37740432513928, -25.003415853058616], + [-48.37770030740361, -25.003050956189846], + [-48.378004399353685, -25.002304143731504], + [-48.37798758539337, -25.001862092593512], + [-48.377985135006696, -25.001360598250653], + [-48.37789278512949, -25.00077394305125], + [-48.37782941640781, -25.000056466516934], + [-48.3778587343604, -24.99929286752889], + [-48.377932832073114, -24.998888237718965], + [-48.37795251770804, -24.998578162678314], + [-48.378065142030785, -24.998210030148883], + [-48.37818156672257, -24.99766287472993], + [-48.37837377799834, -24.997248387998635], + [-48.379015552189394, -24.99663885832695], + [-48.37974419323042, -24.996010047833167], + [-48.380191424969915, -24.995539584611652], + [-48.380191678660296, -24.995539317741738], + [-48.38069496946465, -24.995396214253972], + [-48.38095140878078, -24.995455993735728], + [-48.38170703888711, -24.995566010971483], + [-48.38205264433143, -24.995710251939556], + [-48.38258389983347, -24.995678158623072], + [-48.38303763110016, -24.99572759208259], + [-48.38379502122694, -24.995754736623557], + [-48.384570783201546, -24.99563022947258], + [-48.38547330007353, -24.99524546429771], + [-48.38547332630269, -24.995245449019375], + [-48.38584103379309, -24.99503125998962], + [-48.38584169295136, -24.99503088033338], + [-48.38669926074081, -24.994604056314923], + [-48.38669964653592, -24.994603864297215], + [-48.38776101675775, -24.993876474206303], + [-48.38862567253198, -24.99313180547813], + [-48.389627573439846, -24.9923480936772], + [-48.39079614736474, -24.991567298860588], + [-48.3913491812295, -24.99120422185716], + [-48.39134953920486, -24.991203986838215], + [-48.39196237410375, -24.99089697750379], + [-48.392330131988665, -24.990710008465186], + [-48.392906534690674, -24.990692483923453], + [-48.393222419234526, -24.990808546612705], + [-48.39391276341968, -24.991138406003714], + [-48.39477183652324, -24.991374509223068], + [-48.39512112887743, -24.99133919412033], + [-48.39512123528048, -24.99133918336235], + [-48.39536718213759, -24.991177703957675], + [-48.39573726601193, -24.99088024189068], + [-48.39594182778494, -24.99052461778152], + [-48.39602254305196, -24.990291165418146], + [-48.39579144819058, -24.989748308840028], + [-48.39543854882371, -24.989230949978815], + [-48.39537064613491, -24.98885673861556], + [-48.39569394634434, -24.988613836713217], + [-48.39569409908016, -24.988613721959357], + [-48.39621541182773, -24.988332721985497], + [-48.39688796010167, -24.988068182964394], + [-48.39761937153047, -24.98788756463259], + [-48.39841263253634, -24.987625306390694], + [-48.398413137579624, -24.987625139417734], + [-48.39892655722766, -24.986998599651457], + [-48.39951980483334, -24.986180034212158], + [-48.400018641194485, -24.985525603487208], + [-48.40037190353637, -24.985283432698743], + [-48.40037238173934, -24.985283104876515], + [-48.40096856186888, -24.98504484213452], + [-48.40157669745812, -24.98495875824074], + [-48.4021233510398, -24.984913044951405], + [-48.402561904210756, -24.98496215159844], + [-48.402891486758236, -24.985147511097335], + [-48.40326826977541, -24.98525079988842], + [-48.40361852120952, -24.985174020508698], + [-48.40398584311611, -24.984973587407364], + [-48.40398653652447, -24.984973209040128], + [-48.40423623165416, -24.984632174619406], + [-48.40448621546897, -24.98427732900463], + [-48.40475512133647, -24.983743208848598], + [-48.40514901404928, -24.983031664309717], + [-48.40549211704792, -24.982568063768838], + [-48.40549222548823, -24.982567917243593], + [-48.40601262263894, -24.982328310797875], + [-48.40652924976719, -24.98226824103837], + [-48.40728773350284, -24.982240016895805], + [-48.40779411132343, -24.982174202045446], + [-48.40838504227734, -24.981924696319783], + [-48.40866505246902, -24.981614678838127], + [-48.40896134264209, -24.981219183836338], + [-48.409395875062096, -24.980729559137107], + [-48.409396026722334, -24.980729388247653], + [-48.40971740583126, -24.980583011835307], + [-48.410126802421765, -24.980576324636], + [-48.41044557580395, -24.980554242929095], + [-48.410705187474186, -24.980462051972413], + [-48.41102656454151, -24.980315672507945], + [-48.411498593922744, -24.980213361256308], + [-48.41166410991608, -24.980271504438868], + [-48.41201058369086, -24.98037424320208], + [-48.41212948697786, -24.980486837959685], + [-48.41230755306263, -24.98066954068816], + [-48.412380711173036, -24.980795155240443], + [-48.412631647425634, -24.98111728293017], + [-48.41285199130918, -24.98145269391582], + [-48.412870545380834, -24.981556973766647], + [-48.41287911524938, -24.98160513914069], + [-48.412983157303465, -24.981703659065708], + [-48.41327810831431, -24.982095630217177], + [-48.41354678648128, -24.982428640184995], + [-48.413761152159914, -24.982826372966127], + [-48.413961175441415, -24.983283553933436], + [-48.41402115389818, -24.98354726698806], + [-48.414054443356946, -24.983834395132234], + [-48.41401826196187, -24.984311348289808], + [-48.41389716071106, -24.98446445691449], + [-48.41391810446375, -24.98471555169976], + [-48.41382879268973, -24.985227399578328], + [-48.413777016136926, -24.985823476881087], + [-48.41380680737887, -24.98627769787186], + [-48.41391516936196, -24.986733285138484], + [-48.4141431371945, -24.987107375139214], + [-48.41430762880786, -24.98738484486067], + [-48.414654954659085, -24.98768937204228], + [-48.41510779348629, -24.987959913784834], + [-48.415240875501304, -24.988036525280855], + [-48.415599670593174, -24.988243072291258], + [-48.41598878466657, -24.988428927236004], + [-48.416584679827686, -24.988749708744137], + [-48.416972050201906, -24.989019107956402], + [-48.417345328767105, -24.989336019857635], + [-48.41751925392963, -24.989466142030363], + [-48.417590399252056, -24.989519369297547], + [-48.41779618403138, -24.989702036258407], + [-48.41805360299721, -24.989921418148775], + [-48.418377248867756, -24.990106130690588], + [-48.41869377973159, -24.990257308029854], + [-48.41880063717979, -24.990292814221135], + [-48.41881756927852, -24.990298440392507], + [-48.41894010293297, -24.990339155944525], + [-48.419118706247424, -24.9903577923093], + [-48.41949648264199, -24.99045986494138], + [-48.4200299110462, -24.990636274693234], + [-48.42056458733079, -24.990753006322493], + [-48.42107531624544, -24.99076186447873], + [-48.42161049269238, -24.990854721909784], + [-48.42210663227717, -24.99093496118851], + [-48.422434023460724, -24.99094063634099], + [-48.4227475719763, -24.990981889659786], + [-48.423191828445, -24.991037346924113], + [-48.42353057318489, -24.991126793662712], + [-48.42418510851046, -24.991150072348873], + [-48.42493106541437, -24.991186870942407], + [-48.42562439153431, -24.991234694280138], + [-48.42605580402735, -24.991277981138403], + [-48.42645041655534, -24.99120123372232], + [-48.426727591813986, -24.99106317693], + [-48.42672841042394, -24.99106276900251], + [-48.42704792831719, -24.990817565596178], + [-48.427179330209064, -24.990709488592028], + [-48.427474447415236, -24.99046675587283], + [-48.428019287967416, -24.990082376284263], + [-48.42801957020765, -24.990082177165345], + [-48.42845545265225, -24.989910620694882], + [-48.42876900181992, -24.98995186126158], + [-48.429120844531546, -24.990041521775634], + [-48.42949589863738, -24.99027485839853], + [-48.42985934857153, -24.990436355708063], + [-48.430155831221136, -24.99066833282499], + [-48.43031024835409, -24.990802337372557], + [-48.43063118632074, -24.991118313783616], + [-48.430888632958236, -24.991337675456762], + [-48.43115843167021, -24.991593069099178], + [-48.43147124192415, -24.991670110457978], + [-48.431863372125086, -24.991712702119642], + [-48.43217816832249, -24.991694259077157], + [-48.43261231547747, -24.99160623807875], + [-48.43288956033135, -24.99150356756029], + [-48.43339154163602, -24.99128554690904], + [-48.43339191363833, -24.991285385339925], + [-48.4337222583895, -24.991112408073096], + [-48.433723028256956, -24.99111200494859], + [-48.43394615250298, -24.99109197598869], + [-48.434273299236445, -24.9911095605052], + [-48.43452038400031, -24.99119740114784], + [-48.43480551723831, -24.991345596085413], + [-48.43505210722754, -24.991457306715642], + [-48.435375042418784, -24.991677790710913], + [-48.435670300248965, -24.9919694348751], + [-48.43586351762785, -24.992127982527347], + [-48.43615778667385, -24.992467367498108], + [-48.43647899247337, -24.99277139731874], + [-48.436866423049345, -24.993040749035185], + [-48.43724051162249, -24.99332180959694], + [-48.43768354901418, -24.993436901803378], + [-48.43799735960581, -24.99346618842466], + [-48.43841395868019, -24.99359276267069], + [-48.43857036926134, -24.99363127616313], + [-48.438817215137675, -24.993731045695206], + [-48.43912929457067, -24.9938438780161], + [-48.43947917840361, -24.994028998928165], + [-48.43972627335098, -24.994116831606643], + [-48.439959035458266, -24.99426411566764], + [-48.44019031386811, -24.994483012019508], + [-48.440393421668865, -24.99479694077506], + [-48.44051894219793, -24.99506177490099], + [-48.44051907375181, -24.995062236492696], + [-48.44060443229156, -24.99536173907287], + [-48.44074354479686, -24.995602927638625], + [-48.44094962354235, -24.99577363046499], + [-48.44108997371852, -24.995955141538378], + [-48.44138995393014, -24.99602000251283], + [-48.441703772624706, -24.99604928188639], + [-48.44172113956976, -24.996049015616695], + [-48.44207071880061, -24.996043655442207], + [-48.442515501900644, -24.996075186129115], + [-48.44301291806531, -24.996095680918597], + [-48.443379999141776, -24.996066209210323], + [-48.443380358819034, -24.996066180332587], + [-48.44369906656792, -24.995845019003877], + [-48.44369936687606, -24.995844810609864], + [-48.444055439686885, -24.99573153480787], + [-48.44430328292317, -24.995783553952606], + [-48.44460153617182, -24.995931956923698], + [-48.444831344578, -24.996222459795863], + [-48.4449427919346, -24.996534807928526], + [-48.445109095132146, -24.996728701310463], + [-48.445120327085895, -24.996763379602548], + [-48.44518298248134, -24.996956825780035], + [-48.44524278574657, -24.997232467150205], + [-48.4452331554198, -24.997697951045556], + [-48.445537350673554, -24.998192706645852], + [-48.445548965855494, -24.998264544610592], + [-48.44592284416326, -24.998557521399952], + [-48.44627299925851, -24.998730692560063], + [-48.4466384539984, -24.998794269372556], + [-48.44672990372575, -24.998810178395587], + [-48.44713442194278, -24.99888876337703], + [-48.44761974182062, -24.99886127677408], + [-48.447945433761426, -24.998950446024043], + [-48.44825605617388, -24.99913487385988], + [-48.4485123192525, -24.999413886193167], + [-48.44857762818385, -24.99954866616398], + [-48.44867567243931, -24.999751002444036], + [-48.4486835718668, -24.999821478097704], + [-48.4487075846059, -25.00003571023198], + [-48.44871992132693, -25.000145773395236], + [-48.44887412473644, -25.0002916965363], + [-48.44914620090834, -25.000439642074962], + [-48.44931208259413, -25.000679732738593], + [-48.44941334643925, -25.000826297557246], + [-48.4497775964692, -25.000951943904774], + [-48.45018064534722, -25.001102134418808], + [-48.45076976461715, -25.00112417734468], + [-48.45106927123722, -25.001212891202687], + [-48.451761936106784, -25.00129640437134], + [-48.45237577355478, -25.001390503272187], + [-48.452869276063275, -25.001601935649973], + [-48.45322117412637, -25.00169154297775], + [-48.453595328284294, -25.001972567053446], + [-48.45379971321512, -25.002226803081818], + [-48.45401153497091, -25.002755781023943], + [-48.454184312602706, -25.00327215029537], + [-48.45426983604864, -25.003666190028845], + [-48.45430396373806, -25.003823428987566], + [-48.4545279027569, -25.00440037300022], + [-48.454950520377515, -25.004873260584986], + [-48.45535088281397, -25.005154729698397], + [-48.455934612523535, -25.005439336319085], + [-48.456636960945495, -25.00569015107758], + [-48.457471271906336, -25.005895460802044], + [-48.45823019528585, -25.00594425955878], + [-48.4589520381286, -25.005884962399275], + [-48.459633518158974, -25.00570011649316], + [-48.45982163855199, -25.005649089704693], + [-48.46062427499774, -25.005483706625036], + [-48.46124256177884, -25.00536292987007], + [-48.46183465243249, -25.00524170315882], + [-48.46264743802833, -25.00521975993943], + [-48.46324943611568, -25.005253914273656], + [-48.46366586130404, -25.005392358369654], + [-48.46413296162162, -25.005615244699097], + [-48.464558073961264, -25.005968751590434], + [-48.464837643103365, -25.006391414189537], + [-48.46494841390065, -25.00673955857081], + [-48.4649175608047, -25.006965889208473], + [-48.46490849064568, -25.007407508318845], + [-48.46491023860112, -25.007758555458235], + [-48.464910265374634, -25.007763932601545], + [-48.46491104725068, -25.007920964728164], + [-48.46500284215598, -25.00834622028265], + [-48.465006760135196, -25.008364370937514], + [-48.465130875758895, -25.008700803029594], + [-48.46513637448527, -25.009071031595862], + [-48.46516610812145, -25.009537192163332], + [-48.46501369411962, -25.009940546900353], + [-48.46499642826193, -25.010143229511666], + [-48.46500241657402, -25.010489586686827], + [-48.46511539683627, -25.010730310308052], + [-48.46533659520238, -25.010805721841802], + [-48.46558570601888, -25.01079803020572], + [-48.466098006197704, -25.010735126409106], + [-48.466583129589814, -25.010719516897225], + [-48.46711893103935, -25.010788348376376], + [-48.467391054198686, -25.01093626388327], + [-48.46771655070456, -25.011037328906227], + [-48.46821110085371, -25.01120097247738], + [-48.468693288599894, -25.011328584372848], + [-48.469032130559754, -25.01141793409257], + [-48.46939643540756, -25.011543536228707], + [-48.4697874271428, -25.01164571213315], + [-48.470099095529896, -25.011782356335644], + [-48.47041051999483, -25.01193093561875], + [-48.47062878869549, -25.012149568063023], + [-48.470910348695334, -25.012476736021004], + [-48.47128457774999, -25.012757720938918], + [-48.471791749838545, -25.012945447723126], + [-48.47221984354252, -25.013155707575446], + [-48.47248034699944, -25.01323177750694], + [-48.47278063535236, -25.01328464384643], + [-48.473133562547446, -25.013326464729534], + [-48.47344719445276, -25.013367616733092], + [-48.47379914489595, -25.013457178949515], + [-48.47407226011761, -25.013557340330923], + [-48.474487261769674, -25.01376737146415], + [-48.474678611130805, -25.014021360711368], + [-48.47493179079987, -25.014455498586496], + [-48.47497856781843, -25.014730910696596], + [-48.47494308865857, -25.015184023401027], + [-48.47489280040577, -25.015720463568876], + [-48.474871396297374, -25.0161260558008], + [-48.47487545685067, -25.016567900396584], + [-48.47487057120023, -25.016806614965294], + [-48.47487487583196, -25.01723652377624], + [-48.474892523688005, -25.017654719415166], + [-48.47483279866776, -25.018011900824828], + [-48.47491814038982, -25.01832378794997], + [-48.47494455228244, -25.018456988456123], + [-48.47497499620774, -25.018610523038816], + [-48.475036916929405, -25.01892280025344], + [-48.47511786240675, -25.01944953034804], + [-48.47515486904018, -25.0202023714807], + [-48.47518634953433, -25.020584982499997], + [-48.4752852813084, -25.02087322062815], + [-48.4753196936583, -25.0211126029367], + [-48.475376640644335, -25.021531466250842], + [-48.47543847355193, -25.021711615078466], + [-48.47565652332594, -25.02194217760766], + [-48.47577197610834, -25.022063537943637], + [-48.47605430353944, -25.022354891442063], + [-48.476090182924075, -25.022522659266176], + [-48.47620490399581, -25.02267982648949], + [-48.47645956939925, -25.023042348724548], + [-48.47653206218025, -25.02334207706463], + [-48.47664116821381, -25.02377376594109], + [-48.47673693093388, -25.0242171680422], + [-48.47687150518598, -25.02468510900153], + [-48.476893553720394, -25.024888461441076], + [-48.47704220563136, -25.025308881837283], + [-48.477150582053135, -25.025776377713868], + [-48.47720704766458, -25.026219112257653], + [-48.47727246178939, -25.026415264116274], + [-48.47735521350826, -25.02666340396147], + [-48.47751745692522, -25.02706017509086], + [-48.47778474607313, -25.027446789765754], + [-48.47809133725693, -25.027834071309744], + [-48.478321281845375, -25.028124532138435], + [-48.47847482292445, -25.028306236769655], + [-48.478601675879425, -25.02851136805392], + [-48.47871738136864, -25.02862079094304], + [-48.478882803699754, -25.028862396357667], + [-48.47906083888485, -25.029128095391652], + [-48.47914863672622, -25.029320623612158], + [-48.479221626439355, -25.029596479738633], + [-48.479360362229514, -25.02986151157552], + [-48.47938546844608, -25.02988525410636], + [-48.47938607497402, -25.029885827689586], + [-48.47953961963958, -25.030067531508163], + [-48.47957031760998, -25.03013630158125], + [-48.47959698359042, -25.03019603906708], + [-48.479627222411224, -25.030263780409832], + [-48.47972758666294, -25.03048861701833], + [-48.479770444600035, -25.030870096733405], + [-48.47977193759753, -25.03088338592084], + [-48.4797903315904, -25.031265774520715], + [-48.47972841445489, -25.031730379641832], + [-48.47948528423716, -25.032084450667387], + [-48.47922758768694, -25.03250991332383], + [-48.47915964404249, -25.03262815906286], + [-48.47903306928798, -25.03286372080561], + [-48.478968912991505, -25.03298311835263], + [-48.478777936678334, -25.033350013021874], + [-48.47864253555929, -25.03356263239851], + [-48.47858232098191, -25.033943686319677], + [-48.478562140722204, -25.034289600207693], + [-48.47863293396817, -25.034672878187763], + [-48.4788070701141, -25.035129549760374], + [-48.47903531987668, -25.035503560559427], + [-48.479497192507324, -25.03598899509172], + [-48.479911300745336, -25.036246760109016], + [-48.48012913864535, -25.036489254090437], + [-48.48038725656883, -25.036684671653852], + [-48.48066913810459, -25.036999890799425], + [-48.48087363371844, -25.037254097408603], + [-48.48090830255991, -25.0374815433776], + [-48.48088788335419, -25.03783939363582], + [-48.480838578045024, -25.038328092660326], + [-48.480882689086314, -25.03873479708911], + [-48.48107311062054, -25.03903652436633], + [-48.481370539276995, -25.039232607378704], + [-48.481851144682025, -25.03944373601303], + [-48.48208477538584, -25.039555156627564], + [-48.4824239494517, -25.039632546548823], + [-48.482908458625104, -25.0396526997617], + [-48.48327759171439, -25.039617002896783], + [-48.48343373468484, -25.039601902869272], + [-48.4839718682864, -25.039563261859566], + [-48.484364180598746, -25.039605728009736], + [-48.48466502668022, -25.03963470397999], + [-48.48498988385097, -25.039771545187513], + [-48.48534216241637, -25.039849150513362], + [-48.48575800103007, -25.040023350503386], + [-48.486226003587866, -25.04021037234542], + [-48.48657365958049, -25.040514755066372], + [-48.48671023128408, -25.040887204086033], + [-48.48670828403191, -25.040982690480735], + [-48.48686789570789, -25.041510748308152], + [-48.48695133209462, -25.041918117634935], + [-48.486929224661196, -25.042359520484503], + [-48.48688164352275, -25.042764672376823], + [-48.48686825573287, -25.0434211412117], + [-48.486868699681466, -25.04404202432444], + [-48.486978584402095, -25.044437901384313], + [-48.48705305832348, -25.04464214044732], + [-48.48722022021829, -25.044800188417152], + [-48.487424985032966, -25.04504245199643], + [-48.48747276902781, -25.04527011904894], + [-48.48747254971704, -25.045280874421387], + [-48.48746887491844, -25.045461091836255], + [-48.487503557014264, -25.045688537166406], + [-48.48742080659922, -25.04589011539812], + [-48.487247071034176, -25.046054334002505], + [-48.48702238689114, -25.04614605056339], + [-48.48673121771026, -25.04628440097045], + [-48.48653200671267, -25.046412367665678], + [-48.4863041558547, -25.04665924827662], + [-48.4861915454502, -25.047039418683045], + [-48.486051511978815, -25.04747882416943], + [-48.48588795182821, -25.047786492050367], + [-48.48576418507537, -25.048070953819714], + [-48.48562828965972, -25.048307450399903], + [-48.48549336816134, -25.048496203722134], + [-48.48534534379055, -25.04868473491879], + [-48.48522449839048, -25.04882596677896], + [-48.484915345025684, -25.04920280636765], + [-48.48472752402485, -25.049414542442534], + [-48.4845790098983, -25.049626944216687], + [-48.48441544289795, -25.04993460991969], + [-48.48416911573193, -25.050443850986294], + [-48.48396745746318, -25.050691171038345], + [-48.48383710998578, -25.050822870152185], + [-48.48353533780838, -25.051127769929927], + [-48.483525805784176, -25.051137400708157], + [-48.48348210881013, -25.051351577929655], + [-48.48351654021903, -25.05159095932411], + [-48.48354709114862, -25.051654330655108], + [-48.48366743344313, -25.051903954228436], + [-48.48379187795311, -25.052228440608154], + [-48.48376079601987, -25.052466711470252], + [-48.4837037521177, -25.052692602352295], + [-48.48365859163373, -25.05297839407024], + [-48.483701981230666, -25.053420905320824], + [-48.4838303282509, -25.05355441969991], + [-48.484196234958986, -25.053608381253085], + [-48.48490354977098, -25.05363230731885], + [-48.48572983312319, -25.053598555899093], + [-48.48573000989821, -25.053598548677755], + [-48.486111700637665, -25.053521434020833], + [-48.48643055554382, -25.053311915403473], + [-48.48680425634424, -25.05298392559892], + [-48.48704570906939, -25.052713395517866], + [-48.48724760868294, -25.052454135344043], + [-48.487461879883185, -25.052230903956335], + [-48.487752191461496, -25.05211657635534], + [-48.487752576213246, -25.05211642483571], + [-48.488054427638794, -25.052097653138564], + [-48.488301677420154, -25.052185416183946], + [-48.488443131464415, -25.05231914857936], + [-48.48867849589079, -25.052347010397476], + [-48.48906793161996, -25.052532696975472], + [-48.48941903306413, -25.052669974567227], + [-48.489783724724205, -25.0527836013356], + [-48.49007101571247, -25.052836218919182], + [-48.490198446077436, -25.05281593617231], + [-48.490409533139164, -25.052798176580115], + [-48.490794644535754, -25.05275695354978], + [-48.490794857737406, -25.052756930727995], + [-48.491134806729356, -25.052691108929324], + [-48.491135835633514, -25.0526909097089], + [-48.491319033207844, -25.052705945765872], + [-48.49147553890325, -25.052744410410558], + [-48.4916048665705, -25.052830175389712], + [-48.49175869898543, -25.052999933837466], + [-48.49179411903499, -25.053191571261515], + [-48.491788771903416, -25.053454159391883], + [-48.49179628851699, -25.053512424010172], + [-48.49182273375125, -25.053717411757994], + [-48.491975838324784, -25.053922977546303], + [-48.49210297204919, -25.054165748539734], + [-48.49212724219473, -25.05421209401856], + [-48.49229174985881, -25.054501431749465], + [-48.49233283784306, -25.05465147918347], + [-48.49237715339642, -25.05481331282866], + [-48.4925659246946, -25.055198579708524], + [-48.49278138951227, -25.055560417384154], + [-48.49294492841673, -25.05589749794845], + [-48.493159666577604, -25.056295142721222], + [-48.49327249455689, -25.056547786955917], + [-48.49341225849443, -25.056765066208417], + [-48.493564397550294, -25.057018374108576], + [-48.49379588635877, -25.057237201982332], + [-48.494029319066, -25.057360542799035], + [-48.494368065488295, -25.05746178132831], + [-48.494624549426014, -25.057740729683385], + [-48.49492107342978, -25.057984533670588], + [-48.495192605460176, -25.058168215581635], + [-48.49549204463041, -25.058268788347437], + [-48.49587131925774, -25.058311007785715], + [-48.496131448763606, -25.058410916072344], + [-48.49658958825835, -25.058442524220887], + [-48.496781598475, -25.05846245500416], + [-48.49713896796915, -25.058499549513336], + [-48.49751872932968, -25.058517893087224], + [-48.49788441723771, -25.058583758301996], + [-48.498223170966014, -25.05868498851632], + [-48.498549549036774, -25.058750189515013], + [-48.498849477813465, -25.058826884044375], + [-48.49909626523831, -25.05893850244011], + [-48.49939449825907, -25.05909874714173], + [-48.499626971289935, -25.05926982339426], + [-48.49991137517208, -25.05946565407025], + [-48.500181707023806, -25.059709007106644], + [-48.50041103257319, -25.060035248916144], + [-48.50049839794274, -25.06025163984346], + [-48.50053243025135, -25.06027895773264], + [-48.50099482984928, -25.060537683260282], + [-48.501156049906605, -25.060735953576124], + [-48.50117251586607, -25.060756203524495], + [-48.50135112769677, -25.061090265301498], + [-48.501433882559695, -25.061372621666862], + [-48.501593869013035, -25.062097263100412], + [-48.50174456553718, -25.062532661952353], + [-48.501942011574904, -25.06302282004095], + [-48.50195168743296, -25.063039068054724], + [-48.50232444513076, -25.063665011948338], + [-48.50267320388467, -25.064155188805803], + [-48.50300714076091, -25.064511538459193], + [-48.50323178539237, -25.06478472898911], + [-48.50373933761039, -25.06519941472582], + [-48.5040536600584, -25.065598084178383], + [-48.50409436457192, -25.065649711300708], + [-48.50427368902272, -25.0659627225643], + [-48.50431965167167, -25.066042950212488], + [-48.50434416275676, -25.066379193920536], + [-48.504385551855236, -25.066946968147413], + [-48.50423269529117, -25.067451918020556], + [-48.50418684232379, -25.067603388831113], + [-48.50425429986202, -25.06790759924254], + [-48.50442070397807, -25.06817015151156], + [-48.50471510259316, -25.06853562778221], + [-48.50490691363222, -25.068773747057204], + [-48.505014584959966, -25.068907412554278], + [-48.505119481662945, -25.069114867248025], + [-48.505184241468065, -25.06935675614279], + [-48.50512453409817, -25.069946018962252], + [-48.50498803491971, -25.070222069584194], + [-48.50487405954651, -25.070394432423672], + [-48.50474585547213, -25.070588312396897], + [-48.50467052616328, -25.070734394482123], + [-48.50449973850332, -25.071065592174573], + [-48.5042319760275, -25.071466693236932], + [-48.50399480288661, -25.072108656825403], + [-48.50391901072963, -25.072238100520767], + [-48.503636650240615, -25.072720334493287], + [-48.50344530890752, -25.07330584647112], + [-48.50343714591402, -25.073678912460082], + [-48.50348597897523, -25.074373612703884], + [-48.50310153108194, -25.074805780462476], + [-48.50338100729377, -25.075478820415025], + [-48.503563550993356, -25.075698413538625], + [-48.503657729158405, -25.075872565432647], + [-48.503707269004444, -25.07603423304837], + [-48.50370045073921, -25.076170041915066], + [-48.50362664756436, -25.076267634523923], + [-48.50356532101771, -25.07634872861909], + [-48.50346272727038, -25.076882393014586], + [-48.50341169072544, -25.077111954365584], + [-48.50342587334513, -25.077233495378383], + [-48.503415069760116, -25.077365446435966], + [-48.50344656956834, -25.077634755125242], + [-48.503418317495886, -25.078030768537968], + [-48.50335295839485, -25.078321461895776], + [-48.503286351112706, -25.078468539013663], + [-48.50322051256987, -25.078714457881357], + [-48.503208957209786, -25.078868779384177], + [-48.503226100040884, -25.07902024453293], + [-48.50333872231122, -25.079135319587277], + [-48.50349088501267, -25.079149015985166], + [-48.50349165374634, -25.07914908517968], + [-48.50378135234983, -25.079024056822377], + [-48.503871865748074, -25.07898499280757], + [-48.50450809782524, -25.078744101543876], + [-48.504706273869864, -25.07866906700275], + [-48.50495643394648, -25.078574349450953], + [-48.50522474052967, -25.078503950826978], + [-48.50607399717091, -25.07820005788517], + [-48.5060746512004, -25.07819982384857], + [-48.50658421826275, -25.078332310139377], + [-48.506632866608044, -25.078562645940107], + [-48.506459110040545, -25.078784279139217], + [-48.5062140428949, -25.078954892516926], + [-48.505811296937914, -25.079169876954108], + [-48.505546059742166, -25.07935765940263], + [-48.50481857025598, -25.080065385540102], + [-48.50467348810231, -25.080285523328453], + [-48.50449382642821, -25.080558128316742], + [-48.50449156512769, -25.08076242698877], + [-48.50465420637938, -25.08123611614744], + [-48.50466421040502, -25.081265252528], + [-48.50492556917235, -25.081606118997726], + [-48.505289880869185, -25.08203647635512], + [-48.50549253611677, -25.082275869120064], + [-48.50570938210079, -25.08249549568458], + [-48.50580725797339, -25.082582476704236], + [-48.506210931093, -25.082941213963586], + [-48.507171529601614, -25.083382462797413], + [-48.50775330651613, -25.083630422662576], + [-48.5080734293129, -25.083679731539018], + [-48.50807360624526, -25.083679758791927], + [-48.50845976548252, -25.083637700854254], + [-48.5084605742294, -25.08363761276975], + [-48.50885080995633, -25.0836445290119], + [-48.509759806875074, -25.083884258425865], + [-48.510126586568994, -25.0841393396129], + [-48.510320293077996, -25.084322740368062], + [-48.51038236195526, -25.084390645047677], + [-48.51084193407065, -25.08489342371685], + [-48.51092239616771, -25.085104616953902], + [-48.51103198832156, -25.085321082584084], + [-48.51125564989555, -25.085620962640313], + [-48.51162215621869, -25.08602712280534], + [-48.511966538641566, -25.08636594182702], + [-48.512070903430406, -25.08644901246423], + [-48.5123436927402, -25.086603592487414], + [-48.51261554815395, -25.08678478158528], + [-48.51304667025807, -25.087015032309495], + [-48.513403012791265, -25.0872920436826], + [-48.513641533356626, -25.087587837579846], + [-48.513728346475844, -25.08775482087472], + [-48.513778092110336, -25.088147361830824], + [-48.51375847912562, -25.088289004237325], + [-48.5136797693527, -25.088446713966277], + [-48.5135062090425, -25.088526116452986], + [-48.51301260061783, -25.08868508148356], + [-48.512452615299765, -25.088788778369793], + [-48.51192278042178, -25.089008956548394], + [-48.51160728790203, -25.089377588941872], + [-48.51184000409947, -25.089979794076324], + [-48.51207973810352, -25.0902401406508], + [-48.51245382146739, -25.09056646075801], + [-48.51280074403803, -25.090834290484327], + [-48.512944328945444, -25.090914047378227], + [-48.51347322211773, -25.09114268837154], + [-48.51384591892643, -25.09122908417819], + [-48.51488654511364, -25.091197068657888], + [-48.51539565111283, -25.09129179389264], + [-48.51572251014312, -25.09143463873821], + [-48.51625387717695, -25.091423450990938], + [-48.516254868604086, -25.091423430114947], + [-48.51661740029308, -25.091367412111467], + [-48.5166179586047, -25.091367325840988], + [-48.51753880170289, -25.091411807526057], + [-48.518484942912465, -25.09156808181974], + [-48.519633501429475, -25.09165914239298], + [-48.519846652868786, -25.091705308282062], + [-48.52027612387333, -25.091704458468733], + [-48.520811194373834, -25.091755464764752], + [-48.52105011146485, -25.091900167334988], + [-48.521550171722815, -25.092114669954757], + [-48.52197796732726, -25.092162615438863], + [-48.5223769184098, -25.092338601390537], + [-48.522389736517184, -25.09234490865212], + [-48.52285672543511, -25.092574693467647], + [-48.52319433826796, -25.09282889688055], + [-48.524421475012325, -25.09402442636466], + [-48.52481960590397, -25.09450256795005], + [-48.52531427787041, -25.094872388834595], + [-48.52548747762191, -25.095081874465983], + [-48.52558655240828, -25.09532026818064], + [-48.52580831340318, -25.095597641383666], + [-48.52588114228726, -25.095688733638458], + [-48.525930835430394, -25.09579557265002], + [-48.52607992441313, -25.09611610913077], + [-48.526153523350104, -25.09627434385497], + [-48.52658143774857, -25.096460099168233], + [-48.527255512869885, -25.0965643968831], + [-48.52753964205673, -25.0966520052258], + [-48.5276689417653, -25.096691873258482], + [-48.527756289632485, -25.096703287125244], + [-48.52775682561648, -25.096703357162887], + [-48.52785047623622, -25.09668930458674], + [-48.52808092340285, -25.096600544804637], + [-48.52816897926493, -25.096585351086535], + [-48.52816964329645, -25.0965852365101], + [-48.52826603382114, -25.096597583965533], + [-48.528725706720834, -25.096717434653325], + [-48.5290966889109, -25.096747626060786], + [-48.52925757427882, -25.096760660192594], + [-48.529257986783335, -25.096760693611486], + [-48.53006475030535, -25.096692628380424], + [-48.53006557271505, -25.096692558992785], + [-48.53083878563808, -25.0967461067951], + [-48.53083949125166, -25.096746155659527], + [-48.531373207861186, -25.096662980554388], + [-48.5313737185855, -25.096662900961377], + [-48.532016466969, -25.096697041974068], + [-48.532017193333246, -25.09669708055497], + [-48.532295507926335, -25.0966573849097], + [-48.53244324950088, -25.096636312483895], + [-48.532443328132395, -25.096636310609185], + [-48.53255797634175, -25.096633577124702], + [-48.53255925104246, -25.09663353738901], + [-48.532800500101025, -25.096658311126586], + [-48.5331818324137, -25.09677540042844], + [-48.534149350142584, -25.09697128532044], + [-48.53451704012178, -25.09700763614118], + [-48.534752501706926, -25.097005532017338], + [-48.53475357652148, -25.097005522411706], + [-48.53524688965912, -25.096936014227015], + [-48.53553520598927, -25.09691377379451], + [-48.53553566855662, -25.09691373811203], + [-48.53611746601991, -25.09691097569136], + [-48.536118533944865, -25.096910970618616], + [-48.53634652816563, -25.096875137136834], + [-48.53656008738956, -25.096859627074], + [-48.536560933628316, -25.096859565613983], + [-48.53673897518075, -25.09686811971902], + [-48.53714235451221, -25.096933848695482], + [-48.537464137509915, -25.096963822697], + [-48.53746428191225, -25.0969638361479], + [-48.53782662864974, -25.0969469898113], + [-48.5378275883535, -25.09694694519126], + [-48.538282578633236, -25.096952967559087], + [-48.53828291244157, -25.096952971976958], + [-48.53841039685989, -25.096947055952427], + [-48.5387294375248, -25.09689383024495], + [-48.53872972976366, -25.096893781490234], + [-48.53897233024334, -25.096895732923386], + [-48.53923962118607, -25.096926885452643], + [-48.53958188839742, -25.09700540268375], + [-48.54006034520096, -25.097058821455622], + [-48.54006044928345, -25.097058833076105], + [-48.54011312649401, -25.097056548164463], + [-48.540321952662644, -25.097047377025433], + [-48.540629631601604, -25.096979391055296], + [-48.54063008396995, -25.09697929109768], + [-48.54110008828903, -25.097011777984644], + [-48.54110083654869, -25.097011829703444], + [-48.54120992960711, -25.09699378265972], + [-48.54130124199797, -25.096957840696806], + [-48.54154879495062, -25.09674686545572], + [-48.54180212356281, -25.096633642716025], + [-48.54194456482614, -25.096538978980707], + [-48.54201238769293, -25.09645833129802], + [-48.54214269832733, -25.09610777034596], + [-48.54224670899778, -25.095991890747545], + [-48.54231857802631, -25.09596663704308], + [-48.542658666392164, -25.095916134819408], + [-48.542730645195974, -25.09589034121081], + [-48.54277907675536, -25.095837621944593], + [-48.542938456986015, -25.09560451401961], + [-48.54300300470351, -25.095459549077113], + [-48.54308728176035, -25.095150644615764], + [-48.543120041637614, -25.095088549640227], + [-48.54318229563547, -25.0950434602702], + [-48.5441571065719, -25.0946959674239], + [-48.54424259561687, -25.094681900895743], + [-48.544243323477325, -25.094681781131975], + [-48.5443507133381, -25.094694300297586], + [-48.54441680347947, -25.094715161054904], + [-48.54460941343217, -25.094832886218725], + [-48.54474788395276, -25.0948591250311], + [-48.544748245281305, -25.094859193499104], + [-48.544927294349094, -25.094837067155076], + [-48.54510910150904, -25.094790978031316], + [-48.54538804968138, -25.094665085698708], + [-48.54546910143712, -25.094616696270414], + [-48.545542527399164, -25.094572964131373], + [-48.545597280492444, -25.094496430524387], + [-48.54573184466608, -25.094170485767783], + [-48.546067481394786, -25.093910687297402], + [-48.54642172935934, -25.093607241045394], + [-48.54653794766413, -25.093455457432604], + [-48.5467504746101, -25.093245607735206], + [-48.547009061222305, -25.0930272232831], + [-48.54713185269847, -25.092923474060477], + [-48.54773133601616, -25.09258364604677], + [-48.54785066444534, -25.09249942456595], + [-48.547947152396354, -25.092367711356584], + [-48.54799694803616, -25.09218179410415], + [-48.548024806676395, -25.091987571483433], + [-48.5483823789925, -25.091820101150695], + [-48.548997107936444, -25.0912470257793], + [-48.549382739402674, -25.090815294051055], + [-48.54976162405526, -25.0905330048865], + [-48.54997046363, -25.09032363045855], + [-48.55017771932189, -25.09007930021537], + [-48.550467167590696, -25.089808618583618], + [-48.55070064056104, -25.089621311519494], + [-48.550940235971375, -25.089452512986618], + [-48.55096501481739, -25.089435055869775], + [-48.55148070227036, -25.08912604861627], + [-48.551659462606345, -25.08899848894127], + [-48.55222212493116, -25.088435549917474], + [-48.55236427322842, -25.08830991215793], + [-48.55250010937781, -25.088217565001305], + [-48.552721545719216, -25.088101900071408], + [-48.553490394278086, -25.08778081655754], + [-48.5538042433398, -25.087613152108187], + [-48.55444280663244, -25.08722971282821], + [-48.55469085080701, -25.087036772343968], + [-48.555008858414276, -25.086814297525404], + [-48.5558020527372, -25.086439448352678], + [-48.556007907502995, -25.086259709631257], + [-48.55635392298435, -25.08587441839262], + [-48.556426802152416, -25.08578292532973], + [-48.55653428601067, -25.08560084286272], + [-48.55670685662788, -25.084946164013537], + [-48.556712835513984, -25.084725395922526], + [-48.556718383911786, -25.08452052154079], + [-48.55661630274192, -25.083547584588022], + [-48.55657579678447, -25.08338147622643], + [-48.55643526718803, -25.083002067397793], + [-48.556432249395776, -25.082744875545302], + [-48.556505291975625, -25.082580186575495], + [-48.556569110287384, -25.082510656981764], + [-48.55684231938758, -25.082307476267367], + [-48.55686002345745, -25.082294319582452], + [-48.55705083198702, -25.082083282586964], + [-48.55740810430011, -25.081863975372453], + [-48.55746561596519, -25.081817537529794], + [-48.55750800531486, -25.08175406285864], + [-48.557574827149736, -25.08161806276614], + [-48.5576214110637, -25.081468100588783], + [-48.55768490413549, -25.080980584725463], + [-48.55777054997341, -25.080580260769224], + [-48.55778082296267, -25.08035731449452], + [-48.557786260296695, -25.080238174419474], + [-48.55778031237551, -25.07980890417161], + [-48.557811618680184, -25.079709595288776], + [-48.55794980301638, -25.07955816255875], + [-48.55802102122413, -25.07948017957241], + [-48.55808771979604, -25.079370261403717], + [-48.55817874693236, -25.079063170930574], + [-48.558268041238975, -25.078913279680872], + [-48.55834962614047, -25.07884223642353], + [-48.55840115946569, -25.078797324322593], + [-48.55864072712707, -25.078640790267528], + [-48.559006395026884, -25.078452213690284], + [-48.55926272047673, -25.078295141980387], + [-48.559640101118426, -25.077960630100648], + [-48.559703278566, -25.07791320130871], + [-48.55979566574442, -25.077867065342467], + [-48.55996862788456, -25.077780736383243], + [-48.56009996987051, -25.077684245648857], + [-48.560140091512736, -25.077630029210606], + [-48.560144272255805, -25.07754913726593], + [-48.560097771363644, -25.077475264124473], + [-48.559894797712, -25.07729592400497], + [-48.55985333662722, -25.077232784014715], + [-48.559831139121385, -25.07714775766965], + [-48.55983696077818, -25.07707907743793], + [-48.559869242425, -25.07700541707002], + [-48.55997369715338, -25.076890432683243], + [-48.560002621244294, -25.076831158152505], + [-48.56001128626958, -25.07674402199062], + [-48.55999393960486, -25.076574653790825], + [-48.559984053426106, -25.076478127665013], + [-48.560022607929525, -25.076198061949448], + [-48.56007412965927, -25.076093669430865], + [-48.56023682592673, -25.075865196586978], + [-48.56027451826246, -25.075688551284948], + [-48.56026288526995, -25.075460550785472], + [-48.56022766147967, -25.075312761971915], + [-48.56022683604944, -25.075309408889662], + [-48.56013953726343, -25.075051659692132], + [-48.5601367522651, -25.075047733436435], + [-48.55999220340956, -25.074728509326576], + [-48.55992805109403, -25.074395399145953], + [-48.559848602403065, -25.074258977862534], + [-48.55972011255899, -25.074166878265768], + [-48.559625720654786, -25.074134367466375], + [-48.559473921652916, -25.07411328846463], + [-48.55924968207904, -25.07408215027352], + [-48.55900935421929, -25.073967812040753], + [-48.558852541333295, -25.073919742336738], + [-48.55878247307499, -25.073855048544758], + [-48.558751210544514, -25.073792437403565], + [-48.55874301857592, -25.073705836582366], + [-48.558796382613224, -25.073558512978504], + [-48.55879102418167, -25.07347394444392], + [-48.55871840573679, -25.07333799604213], + [-48.55860628630538, -25.073225044859683], + [-48.55851467225532, -25.073187434485344], + [-48.558300003416875, -25.073133538252304], + [-48.55804190249085, -25.073110968027], + [-48.557783937790624, -25.07306655743889], + [-48.557712075955656, -25.07304235898234], + [-48.55764245754701, -25.072995001434858], + [-48.55759653333071, -25.072942167229428], + [-48.55758994747151, -25.072874546739175], + [-48.557626824249844, -25.07278904885324], + [-48.55773859385458, -25.07266489035969], + [-48.55793857843762, -25.07255481977608], + [-48.55825435344768, -25.072467503983432], + [-48.5583772814532, -25.072380263117964], + [-48.55846594667348, -25.07224678832495], + [-48.55861318066388, -25.071938366711993], + [-48.55863541567219, -25.071861563010998], + [-48.558710056503415, -25.071730655224066], + [-48.558734791320646, -25.071567787597466], + [-48.558727241972754, -25.071463777729356], + [-48.55858125878674, -25.07103978587803], + [-48.55856752062443, -25.070763193366965], + [-48.55860787843457, -25.070627028081773], + [-48.55870448374933, -25.070482852854386], + [-48.55873344578327, -25.070406611072592], + [-48.558711382706775, -25.070274924327926], + [-48.55868494413579, -25.070223945443896], + [-48.55841231135865, -25.06988018374849], + [-48.558331997665114, -25.069677679612425], + [-48.558273271441024, -25.069406032890747], + [-48.55820841955041, -25.06927833529361], + [-48.558077793415045, -25.069149374670598], + [-48.557930255242674, -25.069053711115696], + [-48.55785732798878, -25.068988428468924], + [-48.557718704627774, -25.068718174229755], + [-48.557573652249886, -25.068527240094518], + [-48.557497646836744, -25.068397372985824], + [-48.557475959956925, -25.068326705916476], + [-48.55747392510047, -25.068254466962184], + [-48.55749151770403, -25.068186883460246], + [-48.55757715062315, -25.06809623109427], + [-48.557705904178086, -25.068019826957958], + [-48.55791287023489, -25.067947056666178], + [-48.55803239693382, -25.067876186521126], + [-48.558244582420855, -25.067690139007897], + [-48.5583401640445, -25.067572482555697], + [-48.55847966297988, -25.06733397264349], + [-48.55855881661915, -25.06715024843223], + [-48.55859929827241, -25.06702274975041], + [-48.558600484063604, -25.066957964815405], + [-48.558547344264255, -25.066834341103398], + [-48.55849467481793, -25.066781937824494], + [-48.55824118975385, -25.06665221949182], + [-48.558133778851115, -25.066566964348702], + [-48.558074835083275, -25.0664462234815], + [-48.55808436905268, -25.06638022211172], + [-48.558177889830475, -25.06628148571174], + [-48.558368398696885, -25.066173965603394], + [-48.55848117281601, -25.06608872331918], + [-48.558691912687856, -25.065855446766673], + [-48.55880810460659, -25.06562367045472], + [-48.558964807552805, -25.065311083905183], + [-48.55915391802817, -25.06501409037266], + [-48.55918989399951, -25.064888863974446], + [-48.55918532671327, -25.064824345373218], + [-48.55915551415458, -25.0647636536497], + [-48.559152846036305, -25.064758284602984], + [-48.5589472702806, -25.064676289285583], + [-48.55879643776335, -25.06464203760456], + [-48.558573083107746, -25.06462211683518], + [-48.55843813459355, -25.064559126694256], + [-48.558427772175584, -25.064554289811305], + [-48.55813777559003, -25.064332179534837], + [-48.55790455629403, -25.06407526139996], + [-48.55747917314778, -25.063789727755836], + [-48.55726631282844, -25.063600565717977], + [-48.557072597794395, -25.063330487408724], + [-48.55698225068741, -25.06320444565708], + [-48.556928840528464, -25.063084607859835], + [-48.556921675642414, -25.063021219869672], + [-48.556937223700736, -25.062956761651254], + [-48.556974945236966, -25.06289844492474], + [-48.55707655505182, -25.06280643098872], + [-48.55741596182154, -25.062705424410577], + [-48.55748688728579, -25.062691609129583], + [-48.55760248589672, -25.062618688724136], + [-48.55760311789703, -25.062618971131112], + [-48.557666230131176, -25.062647175652934], + [-48.55765991992187, -25.062710522382282], + [-48.55738063307248, -25.063022727347324], + [-48.55736155850693, -25.063085141917583], + [-48.55740540993439, -25.063212313588732], + [-48.55740547036796, -25.063279194922128], + [-48.55737737961191, -25.063341551329742], + [-48.55737045158846, -25.063406061210927], + [-48.55739462378701, -25.06346629939176], + [-48.55745736080445, -25.063500636783605], + [-48.557603474750366, -25.063522898164216], + [-48.55760445733221, -25.063522667340767], + [-48.55774494265587, -25.063489665443566], + [-48.55779670411653, -25.063437897545807], + [-48.55782448138455, -25.06337634820228], + [-48.55779102682607, -25.063104665951265], + [-48.55786363986186, -25.062845921074874], + [-48.55794607702985, -25.062741316045955], + [-48.55826808633027, -25.062568176645332], + [-48.55834798080625, -25.06245685052956], + [-48.55839550034093, -25.06232414235726], + [-48.55844042255272, -25.062122525421525], + [-48.55845208345992, -25.06197920873964], + [-48.558402116167166, -25.061765651104594], + [-48.55842008803771, -25.06156891592085], + [-48.558386493621256, -25.06143415114751], + [-48.55846016958885, -25.06125160012667], + [-48.55847446142859, -25.061120511412682], + [-48.55839871308993, -25.0609378488108], + [-48.55839318421533, -25.060871870295458], + [-48.55842831638889, -25.060814142268566], + [-48.558565348616135, -25.060769553244487], + [-48.55861099027299, -25.060716510934682], + [-48.55866545428773, -25.060523354425595], + [-48.55870215860166, -25.060466284009618], + [-48.558763516253514, -25.060430197682116], + [-48.558764815370026, -25.0604300501962], + [-48.558909405254646, -25.060413643103114], + [-48.559126865286544, -25.060475616003686], + [-48.55923029909945, -25.060471360141992], + [-48.559335913951706, -25.060467049833353], + [-48.559336251063655, -25.060466906491637], + [-48.55940396716026, -25.060438113627978], + [-48.55951131550084, -25.060351336782283], + [-48.55958157860973, -25.06032586638248], + [-48.559582392482355, -25.06032588068891], + [-48.559655967796, -25.060327179565096], + [-48.55979614239382, -25.06037398108703], + [-48.559871743477444, -25.06038415956129], + [-48.56009332138408, -25.060373361330498], + [-48.560323750415456, -25.060380940222373], + [-48.560613263426475, -25.060362141998496], + [-48.560749378529714, -25.06039380297367], + [-48.560796976786186, -25.060447024627113], + [-48.560821739992555, -25.060512506936895], + [-48.56083260757478, -25.060644190057605], + [-48.560862189112164, -25.060701538163112], + [-48.56093270544233, -25.060718311581017], + [-48.56093380453574, -25.0607180615876], + [-48.56100487033274, -25.060701897682673], + [-48.56113137588962, -25.060618412939352], + [-48.5613281667809, -25.060538339398096], + [-48.56148480301822, -25.060454446867663], + [-48.561577848830574, -25.06034929178005], + [-48.5615933958149, -25.060284742630163], + [-48.56159033601345, -25.060149035976977], + [-48.56155288023245, -25.06002395605892], + [-48.56144500830734, -25.059771991053744], + [-48.56144285284091, -25.059640929417206], + [-48.56144188160717, -25.059622757409354], + [-48.561443278427866, -25.059622992913784], + [-48.561562002065486, -25.059643027554298], + [-48.56175460452435, -25.059722428621605], + [-48.56207245261854, -25.059901469897447], + [-48.56230290025257, -25.06003080632522], + [-48.56236492067088, -25.059718015955504], + [-48.562423959648854, -25.059420260921225], + [-48.56578132655747, -25.05879475327142], + [-48.56750244332173, -25.05576107795177], + [-48.569484871320114, -25.05480179417275], + [-48.56956555815436, -25.053783985803253], + [-48.56928503179608, -25.052568487435728], + [-48.56953709936346, -25.051555124578744], + [-48.57029515173958, -25.05132351038777], + [-48.573942324289746, -25.051405949008917], + [-48.580099939685724, -25.053620247763394], + [-48.58041039498364, -25.053619837878394], + [-48.58312877825859, -25.052138932928926], + [-48.583495713138625, -25.05049690666056], + [-48.58185947087435, -25.049794722229112], + [-48.581124782262464, -25.047315120986106], + [-48.58284877879918, -25.042761859455563], + [-48.584272309396674, -25.0420772703065], + [-48.58383793265348, -25.03890287911389], + [-48.58220596635693, -25.03644109442893], + [-48.582005122762844, -25.035350022852864], + [-48.584840815976634, -25.03283812543468], + [-48.58616216148656, -25.030799570394706], + [-48.59005072661483, -25.03018188323376], + [-48.58847162230134, -25.028230667468694], + [-48.59115375333267, -25.027016458664257], + [-48.58971115110145, -25.02579483060896], + [-48.58878379551224, -25.024424461065074], + [-48.58883669326906, -25.022545067660392], + [-48.58933648628703, -25.020198505920046], + [-48.590454143467404, -25.019765566678707], + [-48.59231653055421, -25.0204362044651], + [-48.595733539698834, -25.019235925570687], + [-48.59865459325193, -25.02050114141883], + [-48.59971415414249, -25.019764471301464], + [-48.59996409492548, -25.019107401501376], + [-48.599886364676756, -25.018257536608886], + [-48.59822549724843, -25.017242329204482], + [-48.59767819037716, -25.015909176584596], + [-48.59919396329441, -25.014626428094978], + [-48.6001301407685, -25.011592571021804], + [-48.60129836460212, -25.01099843761474], + [-48.60049465713451, -25.006603570315217], + [-48.599364465382855, -25.00572101641529], + [-48.59852274810911, -25.003754306547954], + [-48.59755142995539, -25.001397634996707], + [-48.59719432948014, -24.999074001700794], + [-48.59566987471167, -24.996627089710262], + [-48.59551800180175, -24.996546686131687], + [-48.59523001707625, -24.99639422393069], + [-48.592016953313625, -24.997164489177436], + [-48.59035737552209, -24.99633021578646], + [-48.58969962824828, -24.99530270651861], + [-48.5897483739417, -24.993989353202128], + [-48.59091283028255, -24.99092603047515], + [-48.590882419935205, -24.989405472355866], + [-48.58892713528725, -24.98693211158155], + [-48.587063173725134, -24.986411906811167], + [-48.58706260172219, -24.986411746812756], + [-48.58342489523935, -24.987488709301683], + [-48.580601164267634, -24.987433942321267], + [-48.5767541606219, -24.984929582912024], + [-48.57585919139488, -24.983619777275454], + [-48.57519506419473, -24.980578389744966], + [-48.57428467657283, -24.97975499421805], + [-48.571528552559734, -24.97843874786523], + [-48.568349953242134, -24.97404574928493], + [-48.56783766069875, -24.97275973456154], + [-48.567939582633024, -24.967069216485278], + [-48.56855958229876, -24.965632373526965], + [-48.56877403648866, -24.965134569849553], + [-48.568940924032205, -24.964213951248723], + [-48.56910772057505, -24.963293157647975], + [-48.56829808488051, -24.96173997573077], + [-48.56841267614773, -24.960510061235524], + [-48.56916182896166, -24.95925100493571], + [-48.570245879330585, -24.958038317692164], + [-48.57205173383523, -24.956862641405767], + [-48.57313781043222, -24.955422265125367], + [-48.57298580881863, -24.95455171543668], + [-48.57092930185099, -24.952098865932772], + [-48.56935073410717, -24.951758871363623], + [-48.56478927077678, -24.95195940632882], + [-48.563448138283306, -24.950818773973417], + [-48.56352491279573, -24.949997950641567], + [-48.56449902439488, -24.949278172779437], + [-48.56940222837019, -24.947388801612977], + [-48.570142690811565, -24.945738754284758], + [-48.57014099076958, -24.943974432045568], + [-48.56916225365964, -24.942795710657773], + [-48.5681657468591, -24.94202139837598], + [-48.566567352045254, -24.941391731820254], + [-48.56447082936447, -24.940823151684324], + [-48.56333427654808, -24.939922203780476], + [-48.56730592430112, -24.935886372962678], + [-48.56752099333358, -24.935048647236876], + [-48.56689046635041, -24.933188889765823], + [-48.56689070435036, -24.933188574765108], + [-48.56689050634754, -24.933187991765557], + [-48.56783765898682, -24.931928013906372], + [-48.56936420537454, -24.932521737662338], + [-48.5706459620478, -24.93203450196198], + [-48.56982973853362, -24.928782389824995], + [-48.57205581664334, -24.925223954023842], + [-48.57235766076116, -24.92371998096055], + [-48.571729150149736, -24.92050169429625], + [-48.57033613727419, -24.920186500198987], + [-48.56888546525426, -24.920484890349933], + [-48.568642446187745, -24.920468866036156], + [-48.56812977993445, -24.920434048483664], + [-48.56597750769229, -24.91918031340543], + [-48.5656907012263, -24.918222059084375], + [-48.56635664690724, -24.917902398153974], + [-48.56687360522706, -24.91736579361524], + [-48.56688360903011, -24.917295946577173], + [-48.56689576206868, -24.917292413542356], + [-48.567637653767726, -24.914835367099684], + [-48.567637548765845, -24.914834941100022], + [-48.56686474486291, -24.911704553853134], + [-48.566864820860665, -24.911703803852756], + [-48.566864784860016, -24.911703654852843], + [-48.56761012991351, -24.90436404672186], + [-48.568834247103105, -24.90380628517922], + [-48.57071778060212, -24.904000643874003], + [-48.573301029210036, -24.903374224473378], + [-48.5729961971863, -24.896998308453433], + [-48.57252674014325, -24.895505965575396], + [-48.57102935396503, -24.894640648693265], + [-48.56775054264813, -24.894440696943764], + [-48.564190168177866, -24.895419520153556], + [-48.56294756950456, -24.896444645812146], + [-48.5620318384193, -24.898123422637536], + [-48.56138996720078, -24.901188431882055], + [-48.55977367813835, -24.90167606952329], + [-48.55841534560481, -24.897018067712875], + [-48.55694605144945, -24.89524542061957], + [-48.55655727019128, -24.893296925445235], + [-48.556557431190974, -24.89329663544465], + [-48.556557310188424, -24.893296026445018], + [-48.557425564460026, -24.891728977769688], + [-48.55990134896024, -24.889734270488983], + [-48.559912081254936, -24.88834036826316], + [-48.55881036456083, -24.88507879892066], + [-48.556830095599906, -24.88281053719971], + [-48.555330041331125, -24.882214137355497], + [-48.55394859056406, -24.88279489034141], + [-48.54947161803357, -24.882821042995857], + [-48.54728672296124, -24.88165057300271], + [-48.54705695716209, -24.88140277761671], + [-48.54705690716188, -24.881402791616793], + [-48.545251923030854, -24.879456717438984], + [-48.54589043105128, -24.87750692835879], + [-48.54752058040689, -24.88032062015351], + [-48.549856495862, -24.8796567474608], + [-48.548581680381815, -24.876959968680044], + [-48.54730587689981, -24.874263153900994], + [-48.54792006854062, -24.872819225961837], + [-48.5491630244155, -24.871557493272878], + [-48.54946577065473, -24.869200309083997], + [-48.55019642057201, -24.867989230849286], + [-48.554939345347755, -24.867419978374514], + [-48.557162119479685, -24.866213568926355], + [-48.5627740667329, -24.865607210987704], + [-48.564167093547304, -24.86502766497071], + [-48.56564032938406, -24.865532068878448], + [-48.567142133941545, -24.864450832483552], + [-48.565134684572385, -24.86032808557943], + [-48.56493771929565, -24.85666641862341], + [-48.565357768953675, -24.854583449145387], + [-48.5682150287049, -24.849259227331284], + [-48.56828040466772, -24.847992409969677], + [-48.567308211699604, -24.84712996159463], + [-48.56658365468545, -24.842422122981958], + [-48.56441584674613, -24.83743694940254], + [-48.564938416863846, -24.83477350555427], + [-48.56272114480952, -24.830694769237898], + [-48.56275178679846, -24.828887524897496], + [-48.561800752531376, -24.827025791318334], + [-48.55746664548908, -24.8252393842894], + [-48.55622047808353, -24.824285945668443], + [-48.556921368618774, -24.823292439551853], + [-48.55966517619841, -24.821583614574443], + [-48.55772336366293, -24.81348409790498], + [-48.55661117149242, -24.81243472289103], + [-48.55585974717896, -24.81060722474986], + [-48.55622012541206, -24.80669666918076], + [-48.555477556982446, -24.805413167090997], + [-48.55200376575853, -24.80192429038014], + [-48.549356885497446, -24.79770658523265], + [-48.548290584892065, -24.796765956100298], + [-48.54634063868678, -24.795843636457345], + [-48.5369732282166, -24.790040382980177], + [-48.536134185672225, -24.789134059209285], + [-48.5359434545915, -24.787866077562796], + [-48.53488650276952, -24.7871444434308], + [-48.533214798536406, -24.787350033160752], + [-48.53127328609902, -24.786939114559758], + [-48.52980105252906, -24.786209528592657], + [-48.52922056421771, -24.784759034013984], + [-48.52777006567895, -24.78371609293931], + [-48.51877586504331, -24.781541178891974], + [-48.51718998854494, -24.780675929219356], + [-48.5161386702183, -24.778909395912606], + [-48.51627796842835, -24.777320435288445], + [-48.51747158002692, -24.7763289017914], + [-48.51827513450094, -24.774891085324523], + [-48.517552169071216, -24.773578486162098], + [-48.517806553484625, -24.77072370102944], + [-48.51716666019245, -24.769053201580732], + [-48.51471890109241, -24.767584948235438], + [-48.51255118055038, -24.764456342858068], + [-48.51162384470604, -24.764455839459814], + [-48.51079979128965, -24.76445539277166], + [-48.5083321971327, -24.765661356872332], + [-48.50775776847909, -24.76528410642796], + [-48.507140703554455, -24.764878854098974], + [-48.5083535992303, -24.76181071824319], + [-48.508713164548226, -24.758795101788937], + [-48.507945843022405, -24.75602364153089], + [-48.50800531936848, -24.755163556236912], + [-48.50816424627715, -24.752865157451286], + [-48.507525856488016, -24.751635738059182], + [-48.503630337212506, -24.74773720840021], + [-48.50313765151036, -24.74724414270762], + [-48.502914293832305, -24.747020700300293], + [-48.50291424483221, -24.747020735300485], + [-48.502362552687266, -24.74646874976437], + [-48.50260826529568, -24.745160030881152], + [-48.504554804813765, -24.742030521962068], + [-48.50443941062209, -24.74063119507749], + [-48.503665357895905, -24.739585830090828], + [-48.50099888785713, -24.739883496604794], + [-48.499771997352426, -24.73946060697824], + [-48.50077339604564, -24.73784109893211], + [-48.50255336654991, -24.737880962952282], + [-48.50427156044247, -24.73543975177641], + [-48.50549965949564, -24.735430610334884], + [-48.50708379997942, -24.736299432025945], + [-48.50739969283301, -24.737055322253017], + [-48.508139746869624, -24.738828495442203], + [-48.5099385224296, -24.740643011669974], + [-48.51196809323374, -24.741059113043097], + [-48.513468841238264, -24.740700730783608], + [-48.51563593647248, -24.739295533501835], + [-48.51701890635391, -24.739342355631678], + [-48.52052942467391, -24.738094055606112], + [-48.52294042648132, -24.73656080862106], + [-48.52447173058421, -24.736788476360456], + [-48.526055427186016, -24.73769310605123], + [-48.52704840732972, -24.739186491483963], + [-48.52832715562864, -24.739782074983776], + [-48.52895036620797, -24.739782418235567], + [-48.528950412207614, -24.739782245235435], + [-48.52974687650463, -24.739782856001206], + [-48.529910009179815, -24.739782945543592], + [-48.53130585891637, -24.73888230249655], + [-48.532248607342545, -24.737259496615703], + [-48.53072275877018, -24.734809763539943], + [-48.530885368307764, -24.733583442905513], + [-48.52964043809955, -24.732082720178674], + [-48.53110503224998, -24.730627406859426], + [-48.53432916856251, -24.728545631514258], + [-48.53821799060509, -24.726756132347003], + [-48.53861038801989, -24.72669471823735], + [-48.53861042202033, -24.726694768237294], + [-48.54124789052917, -24.726281918778596], + [-48.54305808062337, -24.726463697725922], + [-48.54402368800892, -24.72569131590534], + [-48.5450439937988, -24.72319269768289], + [-48.546216501793694, -24.722347687271515], + [-48.54646842358549, -24.72108765938348], + [-48.54505042284425, -24.718452944982612], + [-48.54846801249281, -24.718313950374775], + [-48.55138404123261, -24.717927188137374], + [-48.55227627116396, -24.71711067651674], + [-48.552877411851, -24.715688644626457], + [-48.55174526609012, -24.711510724204814], + [-48.552576225773485, -24.71010240867201], + [-48.552577193777694, -24.710102476669295], + [-48.553886659494985, -24.710194830008927], + [-48.55845137545516, -24.71141575637484], + [-48.56057928651746, -24.71120192537254], + [-48.560476150826325, -24.709937122482092], + [-48.56216165003803, -24.70764058342532], + [-48.56519510548541, -24.70673028078238], + [-48.56966314861946, -24.701304374473857], + [-48.56847319843289, -24.700035470634344], + [-48.567971135506035, -24.698595148839622], + [-48.56877957244788, -24.69610573321891], + [-48.57166171570448, -24.694436382895294], + [-48.57135292861945, -24.692712291518504], + [-48.57266863371465, -24.691131358603588], + [-48.575662454261796, -24.690006019043857], + [-48.577028708083546, -24.688876030050693], + [-48.57742173629054, -24.687566969763726], + [-48.57949478265621, -24.686031223730406], + [-48.57940772484805, -24.68322774058148], + [-48.58049550917826, -24.680512430148276], + [-48.581216766676576, -24.672061688940033], + [-48.5825001770389, -24.671194180218333], + [-48.5825009630427, -24.671194352216173], + [-48.58394103502829, -24.67150791422018], + [-48.58513270753226, -24.672278959984794], + [-48.58603962510081, -24.67697793109614], + [-48.58699412008877, -24.679071772709364], + [-48.58827699549938, -24.68029615927907], + [-48.58971887088802, -24.681023061332446], + [-48.590999881044986, -24.680394842648795], + [-48.59135937231073, -24.677365219218597], + [-48.59383805982023, -24.674786102902388], + [-48.59755706754147, -24.671942648067862], + [-48.59930372860369, -24.671312131076917], + [-48.60163410640728, -24.66959619529703], + [-48.60449567846027, -24.668789499150773], + [-48.60777645786833, -24.66905994797407], + [-48.61191728271534, -24.67137657565893], + [-48.611917965717666, -24.671376440656974], + [-48.61372329193705, -24.67101895453577], + [-48.615830676444425, -24.668896922325317], + [-48.61708564851267, -24.6691658988354], + [-48.61891302579749, -24.67265365517351], + [-48.62177735302386, -24.67456348738039], + [-48.62558438589159, -24.679364109323526], + [-48.628639543994126, -24.681003392950434], + [-48.63008524777912, -24.680955910876754], + [-48.631278223547426, -24.68032328443541], + [-48.632031558687466, -24.679151968158887], + [-48.631527262024555, -24.67779360739547], + [-48.63271861684369, -24.67747417500089], + [-48.63399842972622, -24.678249822503954], + [-48.63827677001411, -24.678160887452794], + [-48.64052677627624, -24.679348195278138], + [-48.6415308196599, -24.680607289619243], + [-48.64330133401471, -24.681517350755595], + [-48.6446903664317, -24.68143080483311], + [-48.64578060189794, -24.682017784841076], + [-48.64525090292668, -24.683557218536556], + [-48.64155385733552, -24.686989663402468], + [-48.641220942166235, -24.688527071544183], + [-48.642108147338305, -24.690160100262503], + [-48.64383524560485, -24.68961749532632], + [-48.645526754172614, -24.690389706664156], + [-48.65544452336632, -24.691400054852156], + [-48.65863931435987, -24.69254055399612], + [-48.658945301736104, -24.693756803292505], + [-48.65824689240894, -24.694803293398298], + [-48.661279387217945, -24.6996280114771], + [-48.66163428562186, -24.704628736127642], + [-48.659811767381846, -24.70647436550939], + [-48.66095356270455, -24.707249451389394], + [-48.661852483233204, -24.707199816846913], + [-48.66185273423284, -24.707199421846102], + [-48.66491301824549, -24.707030648189452], + [-48.667945201969125, -24.70504145337513], + [-48.668975615208886, -24.70386263531474], + [-48.67033400188782, -24.70359565244679], + [-48.671750421951415, -24.703961775496527], + [-48.67547520757508, -24.702284990766977], + [-48.67766151509345, -24.698903580161055], + [-48.67655674036151, -24.69825686119632], + [-48.67361062679959, -24.69930226864565], + [-48.671974981600926, -24.699161572243273], + [-48.67235911458737, -24.697806809984485], + [-48.67410961933564, -24.69708553395181], + [-48.676810333466626, -24.694440713990073], + [-48.677525539586796, -24.693019310789047], + [-48.67676414959977, -24.691880601791212], + [-48.67327397464829, -24.689338256310545], + [-48.672578071582684, -24.68780124807512], + [-48.672832700188486, -24.686490509187667], + [-48.67541633921096, -24.68454553164952], + [-48.67491436103378, -24.683330469908743], + [-48.672839238193724, -24.681464727520165], + [-48.67193941984307, -24.6797944788415], + [-48.67478546400171, -24.678162154605722], + [-48.677358204781044, -24.675863836054873], + [-48.676689766434606, -24.67391370768862], + [-48.6774401323868, -24.67210372833984], + [-48.67919029512099, -24.67138053031215], + [-48.68514225955399, -24.67138352752748], + [-48.68827909972139, -24.66999522150229], + [-48.688694009189355, -24.66963084028541], + [-48.69013392780691, -24.668364518062344], + [-48.69013476781098, -24.668364682059913], + [-48.69177242961326, -24.668685116480763], + [-48.69297339453641, -24.66927477116739], + [-48.69394143494612, -24.66999485452732], + [-48.69455376845903, -24.671175944949074], + [-48.694498095677496, -24.672488358272552], + [-48.69393615329604, -24.67394138904251], + [-48.68874872462113, -24.677957385191668], + [-48.68908262679674, -24.680850858617728], + [-48.690776068272335, -24.683071158120217], + [-48.69130868922188, -24.684476319795216], + [-48.69086500313819, -24.68705340737488], + [-48.68954984733977, -24.689589861410134], + [-48.6893570283053, -24.69040297405798], + [-48.689164356266936, -24.691214723705148], + [-48.689164399269, -24.691215279705073], + [-48.68916431826993, -24.69121562270536], + [-48.689304753999984, -24.6930300795395], + [-48.69035743378116, -24.694344657733758], + [-48.69197043202784, -24.69452846220171], + [-48.69302785805582, -24.693846431128737], + [-48.69572244209121, -24.69000635203249], + [-48.69714110338552, -24.688966099894383], + [-48.69986091383269, -24.685807400814248], + [-48.70047241004852, -24.68218285963091], + [-48.70160889725155, -24.6808679442559], + [-48.704278351223955, -24.680874488717368], + [-48.70647112596066, -24.68345160284599], + [-48.707889879934946, -24.68408663191697], + [-48.711216047500606, -24.683179852405324], + [-48.71286129925769, -24.68318269475621], + [-48.715832076471926, -24.683781196434175], + [-48.71905629176245, -24.68350715528594], + [-48.72210861458073, -24.68477460581242], + [-48.72682940974982, -24.68530907652759], + [-48.72844545773802, -24.686004852041755], + [-48.730586339607434, -24.68750403016872], + [-48.73230819696754, -24.68700428523595], + [-48.73500225810994, -24.684973797365465], + [-48.7350029501137, -24.684974054363572], + [-48.73658043357004, -24.68556013197103], + [-48.73758563823578, -24.68660359025305], + [-48.74044271871015, -24.687417332264808], + [-48.74153200772191, -24.68846100630748], + [-48.74241463872217, -24.69122063514211], + [-48.743567716079305, -24.69258253304139], + [-48.745216844781815, -24.693742064510865], + [-48.750727134149614, -24.695736686141263], + [-48.75288661077981, -24.69567241201494], + [-48.75429785310789, -24.694657418894916], + [-48.75621282126263, -24.693279120304073], + [-48.75583837764008, -24.690608353046922], + [-48.75363614644935, -24.688207038999465], + [-48.75355294700994, -24.682886001599197], + [-48.753552999010004, -24.682885959599062], + [-48.753552985007026, -24.682885101598913], + [-48.755006729934635, -24.681701404340277], + [-48.7577530205718, -24.680346601400334], + [-48.75933814449536, -24.680768188960442], + [-48.76178031091337, -24.68530049157941], + [-48.763095964612894, -24.687743121140347], + [-48.76580270626974, -24.69026179276583], + [-48.769522530264204, -24.69577139686718], + [-48.77094167340281, -24.696454521922487], + [-48.7738902438443, -24.695681782468274], + [-48.77575819565823, -24.69573040517486], + [-48.77758861568483, -24.696180150034134], + [-48.77911829950649, -24.697224473815268], + [-48.78022125939626, -24.69586719852769], + [-48.781309600462606, -24.69369910018755], + [-48.78169538727036, -24.692298940930307], + [-48.78161171861988, -24.691034668020826], + [-48.78264296937574, -24.688550354806665], + [-48.78411387386256, -24.68692667744518], + [-48.78505725593525, -24.684934482537958], + [-48.78700490258365, -24.684253725933452], + [-48.787525069101285, -24.682900505301216], + [-48.78867342664567, -24.68168156190245], + [-48.795164827955915, -24.678970880170944], + [-48.79606015569368, -24.676939109397257], + [-48.80124773649305, -24.675352632493404], + [-48.80292126498507, -24.67671769589836], + [-48.80425339278304, -24.677114790161735], + [-48.80822390009882, -24.676554338824847], + [-48.80826359771373, -24.676393774693885], + [-48.808697784068286, -24.67627068644712], + [-48.81039861327603, -24.675759745559585], + [-48.810982964196945, -24.675622856884658], + [-48.811018336459334, -24.675657429788195], + [-48.811019019464446, -24.67565809678631], + [-48.81127550286065, -24.675466967036385], + [-48.81239069057933, -24.67463471977552], + [-48.81330278853392, -24.671475222829677], + [-48.814695057675074, -24.669848460692975], + [-48.815581890222155, -24.667773013941524], + [-48.81600344083628, -24.665687854510292], + [-48.81683048550804, -24.664600745039824], + [-48.81828226637304, -24.664875766948324], + [-48.81961096803187, -24.664064295084373], + [-48.820333969805255, -24.66283852789412], + [-48.82038932895979, -24.659590079373615], + [-48.82125493033785, -24.657783959713985], + [-48.823303710900106, -24.655788876674084], + [-48.82445228488653, -24.655289892357334], + [-48.82778111529594, -24.65494586086629], + [-48.830191883155365, -24.655833120117755], + [-48.830354731024315, -24.65589311666182], + [-48.830354790024415, -24.655893076661677], + [-48.83092146004715, -24.65610163407516], + [-48.832750031855596, -24.657377152021727], + [-48.83583304753336, -24.661218531685], + [-48.83725218948838, -24.66185330872164], + [-48.84086772157487, -24.66546885484026], + [-48.84338362552421, -24.665376695676798], + [-48.84483392914815, -24.664705102479566], + [-48.84908596165398, -24.660358410915986], + [-48.85022920122718, -24.6582815354399], + [-48.85377583613471, -24.656654993178066], + [-48.85547512550462, -24.6561988722961], + [-48.858971825561255, -24.658191936563778], + [-48.85966542017203, -24.659592888740573], + [-48.858718371119366, -24.66217210771178], + [-48.85680574764624, -24.665195241478475], + [-48.855864360357394, -24.666234591268854], + [-48.85263826014146, -24.66768121660391], + [-48.848587318594, -24.670309700412933], + [-48.847703236431634, -24.67161116006916], + [-48.84770000852276, -24.673105713240393], + [-48.84834297346529, -24.674370254548197], + [-48.85236803873848, -24.675497394216137], + [-48.85434066426583, -24.675637724616752], + [-48.85714205775935, -24.673608430424807], + [-48.86003446148443, -24.670661057875655], + [-48.86409234501427, -24.668315203073405], + [-48.86586165452882, -24.667818146983233], + [-48.87000861546053, -24.67016633242365], + [-48.87266597281073, -24.67002538584004], + [-48.87511384499766, -24.669501801811943], + [-48.876272546872435, -24.66925396348505], + [-48.878935585774364, -24.66868359183825], + [-48.88544485698741, -24.67093158352285], + [-48.8886219187784, -24.670302432400888], + [-48.88862205577772, -24.67030206640052], + [-48.891129177290836, -24.669805315201423], + [-48.89556255945432, -24.67012837659306], + [-48.89556260445404, -24.670128235592905], + [-48.898107606453685, -24.670313608353595], + [-48.89858624052218, -24.670348470991915], + [-48.89858627252315, -24.670348715991864], + [-48.89921306923219, -24.670394389208646], + [-48.901362776521495, -24.670550707092413], + [-48.901644865740536, -24.670571253289793], + [-48.90578301762063, -24.670872128513846], + [-48.91039524454686, -24.67120751038547], + [-48.91275232921275, -24.672687340806515], + [-48.913253590751715, -24.67400003050763], + [-48.91281445056097, -24.674466045808256], + [-48.91250944542734, -24.674789387711588], + [-48.91207175236763, -24.675875522070573], + [-48.911325842886946, -24.676621432275294], + [-48.91069805930645, -24.678365027243462], + [-48.91093641403473, -24.678877841614632], + [-48.91093904006484, -24.678883493607714], + [-48.91134878995193, -24.67953072350304], + [-48.91314089895459, -24.682361493670438], + [-48.91444947624493, -24.68322510901977], + [-48.91572756606404, -24.683404235387123], + [-48.91796657990421, -24.680990622749956], + [-48.91796726290369, -24.680989643747942], + [-48.91852572011283, -24.68038757809255], + [-48.91978404458441, -24.67903121636267], + [-48.91984300960648, -24.67896765718796], + [-48.91984397260757, -24.678966830185054], + [-48.922894252748236, -24.675678688144288], + [-48.924339939526774, -24.6753564179824], + [-48.93149082232604, -24.67614380562791], + [-48.933926579493985, -24.6747615745307], + [-48.94133569125801, -24.672904354169834], + [-48.94294183332275, -24.672768281564583], + [-48.94855762909858, -24.674207495644126], + [-48.95006615111607, -24.675338670438197], + [-48.95094633487802, -24.676556830037317], + [-48.95111700689345, -24.677815138669956], + [-48.95556913223661, -24.684579380576704], + [-48.957336399762205, -24.685550780610246], + [-48.958920249973616, -24.68577491109695], + [-48.961500299818056, -24.685004889636435], + [-48.961500337699576, -24.684970373633025], + [-48.96150258146358, -24.682862668426928], + [-48.961086521225816, -24.680085103354713], + [-48.96108663622499, -24.680084728354355], + [-48.96108655822289, -24.680084204354543], + [-48.96119273246444, -24.679737915017792], + [-48.96154654492826, -24.678581345895225], + [-48.96157113684588, -24.678528286819745], + [-48.96157122184635, -24.678528319819517], + [-48.96259252442486, -24.676324551687095], + [-48.96266943401909, -24.67466029030936], + [-48.96375679216271, -24.67370699610666], + [-48.96597788562109, -24.673250844705525], + [-48.96896190058306, -24.67378548921275], + [-48.973759207422965, -24.673014517403242], + [-48.97539421212231, -24.672158645640938], + [-48.975922501821834, -24.67057424798028], + [-48.97559003847252, -24.668537897742464], + [-48.9755658992293, -24.668495641807606], + [-48.97489727549157, -24.667325209613054], + [-48.97667038209168, -24.666277606438214], + [-48.97909436614486, -24.665465995421393], + [-48.986815423475434, -24.665461959305514], + [-48.98723175304827, -24.665718755136325], + [-48.98832623581205, -24.666393841062554], + [-48.98881161993902, -24.66585781862265], + [-48.98891994396732, -24.66573819430134], + [-48.989409603316666, -24.664680176801305], + [-48.989411335225405, -24.664651575793783], + [-48.98973504715457, -24.659304136376203], + [-48.98966314345654, -24.658604108518055], + [-48.989554088911255, -24.65770139974768], + [-48.9898599865674, -24.657240268829103], + [-48.98986638922981, -24.657134493801028], + [-48.99002848437797, -24.65698626432324], + [-48.99055243078886, -24.65619643075003], + [-48.99129084325396, -24.655751127594176], + [-48.9913783466115, -24.65575186234357], + [-48.99659390591815, -24.655795662406074], + [-49.0011746066282, -24.65583413128337], + [-49.003066465297216, -24.65670558593978], + [-49.003661201317335, -24.657173198277142], + [-49.00368096333777, -24.657155830218997], + [-49.00850478006067, -24.66098147673233], + [-49.00918628061992, -24.660922101772712], + [-49.009894543281334, -24.660860908736122], + [-49.01064217104485, -24.65991127350732], + [-49.011144195228965, -24.656467087760692], + [-49.01077318620481, -24.654862635681404], + [-49.00780049343961, -24.6497121297426], + [-49.007286655708675, -24.646906120963617], + [-49.00744123607122, -24.643920528252725], + [-49.00675534293883, -24.642654159104335], + [-49.00586992593786, -24.63962421636863], + [-49.00519894139498, -24.638802345216654], + [-49.00516941286729, -24.6386835742906], + [-49.00505941165184, -24.63845957458542], + [-49.00495341065546, -24.638294574874234], + [-49.00477740986331, -24.63827157537631], + [-49.004587409165644, -24.638292575922417], + [-49.004386408279046, -24.638271576496276], + [-49.00417540738637, -24.63826057709962], + [-49.00396340674722, -24.63832457771258], + [-49.00378340605226, -24.638334578229063], + [-49.00357240552709, -24.638430578842094], + [-49.00340340491451, -24.638451579328013], + [-49.00323340476848, -24.63860957982918], + [-49.00304340410854, -24.638641580376248], + [-49.002800403450316, -24.638736581080764], + [-49.00260940307826, -24.638853581638482], + [-49.002512536872885, -24.638908032920817], + [-49.00244040271988, -24.638948582131043], + [-49.002260402316885, -24.63904358265512], + [-49.002038401489365, -24.639064583292868], + [-49.00178440046012, -24.63906458402034], + [-49.001726583225825, -24.63906458418593], + [-49.00158339964556, -24.639064584595985], + [-49.00135139877764, -24.63908558526228], + [-49.00107639762877, -24.639075586048925], + [-49.00089639664515, -24.639001586557733], + [-49.0007066786138, -24.638925161094097], + [-49.00068539549811, -24.638916587154306], + [-49.00047339438481, -24.638842587754784], + [-49.00025139297668, -24.638694588377057], + [-49.000018391633965, -24.638578589033752], + [-48.99976439005847, -24.638419589746814], + [-48.99973706472307, -24.63835420381912], + [-48.999731496689236, -24.638350925834754], + [-48.9997339296846, -24.638346702827395], + [-49.0011767819254, -24.635841314468568], + [-49.003669660701966, -24.634000376163527], + [-49.00514513175194, -24.63373046091387], + [-49.0075979458385, -24.634356515945235], + [-49.00883027122908, -24.635054708477906], + [-49.011223157249766, -24.637187146813588], + [-49.012578071906084, -24.640145250195175], + [-49.01550419940261, -24.642368222006475], + [-49.018842261468535, -24.643108040502774], + [-49.02155867630785, -24.642479124658898], + [-49.02523251819795, -24.639866296894734], + [-49.03094685696561, -24.634817944066835], + [-49.032676299262114, -24.63432287706388], + [-49.03453098883326, -24.634632518771113], + [-49.03502113978446, -24.634913746389593], + [-49.03515043056285, -24.63498792902515], + [-49.03747833658863, -24.63632626246263], + [-49.040501179303014, -24.63733800187632], + [-49.04251032887608, -24.63979060532061], + [-49.042754450251216, -24.641064844728998], + [-49.04145032829884, -24.64377321670422], + [-49.040309557843884, -24.644401214032627], + [-49.0389828339821, -24.64425849482832], + [-49.03775695237868, -24.643491384280633], + [-49.03553536388608, -24.641312704467655], + [-49.03421156164382, -24.64134655626885], + [-49.033342172866064, -24.642433721857362], + [-49.035035164633676, -24.650541487700387], + [-49.03658095323301, -24.65209185239695], + [-49.03997566005761, -24.653856167802182], + [-49.03973410669918, -24.65548726263563], + [-49.03797666682197, -24.65787896288761], + [-49.03767678822417, -24.6595090298888], + [-49.03786735082804, -24.660911192462066], + [-49.043784129587316, -24.664621793782707], + [-49.04597591725784, -24.6665914046519], + [-49.0459752935634, -24.6681304737843], + [-49.04530597767758, -24.66952957382678], + [-49.04672305904732, -24.67319020706399], + [-49.04816869791471, -24.67638077117766], + [-49.05231387230179, -24.68118654266118], + [-49.05467551168821, -24.68287077100832], + [-49.061756340613584, -24.685832866877703], + [-49.0648725226033, -24.68651683196341], + [-49.069535565493254, -24.6853592444418], + [-49.0706182227575, -24.684456270250344], + [-49.07131420612029, -24.682877786117164], + [-49.071873372294114, -24.678221965126973], + [-49.07331537806532, -24.67559795976125], + [-49.0751426926229, -24.67390785236277], + [-49.080300516708256, -24.67310016544578], + [-49.08367524709938, -24.67273394069713], + [-49.084873347479906, -24.673466518305], + [-49.0846409119456, -24.67734417828534], + [-49.084838142661, -24.67934457487744], + [-49.085712192935304, -24.68042501944549], + [-49.08830715299278, -24.6811635360266], + [-49.089539291523465, -24.68103170646514], + [-49.09755483257494, -24.68236543046377], + [-49.098560549167736, -24.681649866507605], + [-49.099626989898574, -24.67830272617025], + [-49.10056115753428, -24.676816467360506], + [-49.101883395458096, -24.676115902493397], + [-49.10320428337659, -24.675415498630073], + [-49.10403872704873, -24.67521251620812], + [-49.10487218371661, -24.675009500788985], + [-49.10487285371975, -24.675009610787047], + [-49.106058886185124, -24.67520297938192], + [-49.10940873409027, -24.677040121862486], + [-49.10965227488035, -24.67929457533385], + [-49.1096522958812, -24.6792947643338], + [-49.10989576767431, -24.681549803805304], + [-49.10934267702639, -24.68633973377044], + [-49.10978280873427, -24.68747352158774], + [-49.11080996149333, -24.688513795703457], + [-49.11206265570355, -24.68884358111321], + [-49.11519490238324, -24.687403359961607], + [-49.11881522169172, -24.686730027458815], + [-49.11989369870207, -24.68605168229371], + [-49.121446932940124, -24.683442418611598], + [-49.12284173384442, -24.682941817546578], + [-49.122842500847874, -24.682941928544444], + [-49.124120790658274, -24.683127348867544], + [-49.12520016226652, -24.6843520588429], + [-49.1266412441874, -24.684668007704857], + [-49.13028720312541, -24.682418168006283], + [-49.1318979241874, -24.681423696279822], + [-49.13270572439592, -24.68025374285951], + [-49.13320424175254, -24.678621656298205], + [-49.133955967472986, -24.677087816013067], + [-49.13529140627448, -24.676051075079048], + [-49.13653935823167, -24.6757383274513], + [-49.13890670909682, -24.675825573619356], + [-49.1423569551567, -24.675573043632834], + [-49.14861929112083, -24.6757677185503], + [-49.15056983015979, -24.67408504479071], + [-49.15441378916739, -24.672496597565083], + [-49.15748097905523, -24.67235477368782], + [-49.1583442457856, -24.67242576219699], + [-49.15834436678584, -24.67242568619664], + [-49.1599006239248, -24.672673038714397], + [-49.161340434392386, -24.671997861502955], + [-49.16299122162511, -24.671874356720497], + [-49.16426116047256, -24.672370885082856], + [-49.166834590864646, -24.674389969781643], + [-49.1689689925671, -24.675568104689532], + [-49.17031591883118, -24.676094980829216], + [-49.17178138477939, -24.675241287529122], + [-49.172845355514426, -24.673928865358878], + [-49.17531075593577, -24.67262621013399], + [-49.17670298408046, -24.672490669095616], + [-49.178289160970174, -24.672632432514774], + [-49.17973498048946, -24.672542712323715], + [-49.18101277125772, -24.672144065597582], + [-49.18611914266056, -24.673241407889194], + [-49.18759129388957, -24.67418916369073], + [-49.18970495163229, -24.67655439472949], + [-49.1908393370279, -24.67736613749846], + [-49.19199754667487, -24.678510094220318], + [-49.19253319268257, -24.67990437976229], + [-49.19253350068364, -24.67990434876137], + [-49.19253428169383, -24.679906380759256], + [-49.19262220184362, -24.68013510051993], + [-49.194064287639236, -24.682717535514666], + [-49.19492809901287, -24.683548541067047], + [-49.195432583008674, -24.683824947623528], + [-49.20008933584137, -24.68441574716482], + [-49.204314718937866, -24.68558263599112], + [-49.20547961566637, -24.68645380867026], + [-49.20647975713608, -24.68772865285324], + [-49.20681850346268, -24.689440898982813], + [-49.206427649342245, -24.692156729294336], + [-49.205227932783295, -24.694821566949205], + [-49.20481094764161, -24.696412459263236], + [-49.20531381718396, -24.697995730908076], + [-49.20742751546508, -24.70022208992044], + [-49.20838510342247, -24.701397403218063], + [-49.21032272451643, -24.702338200655348], + [-49.21228747224455, -24.70285559998556], + [-49.215298739913756, -24.702719007234528], + [-49.22073429501038, -24.699901343271257], + [-49.22372730719886, -24.69907583152703], + [-49.225915972160024, -24.699115565172704], + [-49.22847034725282, -24.698770540731264], + [-49.23137203633535, -24.699455214344205], + [-49.23314750408147, -24.699051194160344], + [-49.23750987257783, -24.6996009725174], + [-49.244906523172034, -24.697249752873052], + [-49.247304759878645, -24.69754980791874], + [-49.2490886702318, -24.697311595717316], + [-49.25039780450348, -24.69759792892767], + [-49.251791402350854, -24.697378889861778], + [-49.253040277193584, -24.69675263319213], + [-49.25487722960684, -24.69675742684976], + [-49.256491100905016, -24.696986661169127], + [-49.257868217289555, -24.696940891160327], + [-49.25956595457489, -24.69649716419508], + [-49.261064347559184, -24.695051791750586], + [-49.26184092863687, -24.69360619540626], + [-49.26322725420159, -24.693029209339006], + [-49.264731441046436, -24.693255799975816], + [-49.26615215678275, -24.6941201978923], + [-49.26764444385074, -24.693851864534057], + [-49.27035453732386, -24.693728259639528], + [-49.27056627914187, -24.693718526022664], + [-49.270566814144225, -24.693718578021105], + [-49.2720942198066, -24.69386652458383], + [-49.27342234542202, -24.695089162787987], + [-49.2749252004729, -24.695090420412853], + [-49.276149816617966, -24.694866741834588], + [-49.27860066174365, -24.693512318621462], + [-49.284205402540266, -24.688149131998134], + [-49.28845057525943, -24.684902323454136], + [-49.289953070635576, -24.683281982988312], + [-49.2906515271778, -24.68206164488649], + [-49.29094883680921, -24.680755790948265], + [-49.29151981992289, -24.679559383219132], + [-49.292484097192634, -24.6788139563698], + [-49.294177981942, -24.678225546404512], + [-49.294631225290345, -24.676373266982427], + [-49.29772840371803, -24.67579713393093], + [-49.299903697843156, -24.67504983255435], + [-49.30023220376701, -24.674936677591262], + [-49.301704898604605, -24.674628624284875], + [-49.304231442816075, -24.673503067863958], + [-49.30586635760861, -24.674140469135192], + [-49.305486672497956, -24.671111839078357], + [-49.30548689395174, -24.669524629992164], + [-49.306736263097626, -24.668131292277838], + [-49.308367943746795, -24.667587601495555], + [-49.30836943638767, -24.666624686439622], + [-49.30854336461558, -24.66620402291043], + [-49.30995803163798, -24.666016576779487], + [-49.31248417480892, -24.66402336031416], + [-49.31178537610939, -24.66262247027537], + [-49.310150760058214, -24.662481501029273], + [-49.308620404971144, -24.661351974426168], + [-49.30759072138793, -24.660077688356438], + [-49.30765083802535, -24.65847342409511], + [-49.30497868262696, -24.658852275896102], + [-49.30308947424274, -24.658622230383855], + [-49.300093977139724, -24.655448064930297], + [-49.30035170797872, -24.654532785130133], + [-49.3017631435975, -24.653374236959138], + [-49.3021822718595, -24.65210816767029], + [-49.30213555044134, -24.650323122709015], + [-49.30321004316451, -24.64958192954169], + [-49.30465382889887, -24.649852127354578], + [-49.305980405823185, -24.649452065471877], + [-49.307703591613524, -24.64769871736174], + [-49.309012753889455, -24.647419691536236], + [-49.31020328158745, -24.646252165008175], + [-49.30871168284158, -24.645746527322583], + [-49.307477112046804, -24.644931593871796], + [-49.307295600727166, -24.64447550137544], + [-49.30684379196209, -24.643342667629046], + [-49.30881750838641, -24.642629422846976], + [-49.309873149263076, -24.64109487069247], + [-49.31114265992124, -24.64068486697596], + [-49.31287600906294, -24.64245933102576], + [-49.314176144601014, -24.642552868246174], + [-49.316896809810494, -24.639489125164], + [-49.31517732258243, -24.63853307511846], + [-49.31384606606499, -24.63848088199041], + [-49.31329136525496, -24.637166466534694], + [-49.313462126313425, -24.63698710902818], + [-49.313430557860876, -24.636033969069253], + [-49.313874984747066, -24.635777542762252], + [-49.31333964625282, -24.634817749268944], + [-49.31492476147286, -24.633920266608545], + [-49.31453988517444, -24.63255708565594], + [-49.31206550306529, -24.630781231760448], + [-49.31065094672998, -24.62743577169593], + [-49.31020631649257, -24.62558429088961], + [-49.308594280562076, -24.624588296523896], + [-49.30754416313028, -24.622228835449885], + [-49.309731703165276, -24.619725076954097], + [-49.31087483153292, -24.6188039625807], + [-49.31142393120735, -24.61865348297598], + [-49.31220265958132, -24.61843987570017], + [-49.31281465748254, -24.61713470185063], + [-49.31454140293804, -24.616142508776594], + [-49.31509318531187, -24.61475528009804], + [-49.31392936770628, -24.61247520136009], + [-49.312738436817106, -24.611292366758967], + [-49.31305827089908, -24.610374466779984], + [-49.314143769791066, -24.609670421586696], + [-49.314564937317876, -24.60876377231384], + [-49.31392361131813, -24.607204362094624], + [-49.312371600556936, -24.605611255520056], + [-49.31359651600718, -24.605194396937645], + [-49.31270940566483, -24.604105682457384], + [-49.31145620853943, -24.60378693508211], + [-49.31145468053203, -24.603786546086468], + [-49.31011569560141, -24.604770957030574], + [-49.308870827852154, -24.603976478604768], + [-49.30967119962828, -24.602705094210425], + [-49.30845410689042, -24.60188175170194], + [-49.306565428290384, -24.599571900062855], + [-49.30406554086356, -24.597439391206816], + [-49.30462514783436, -24.596212789514478], + [-49.30848525241798, -24.59337907914948], + [-49.310258361323655, -24.592750466965683], + [-49.3120659131659, -24.59148963064754], + [-49.31501497446082, -24.59077136004263], + [-49.31647492704505, -24.588974496705312], + [-49.317033285507, -24.588465743056226], + [-49.316823436200906, -24.588044270643238], + [-49.31640174158068, -24.587201220823054], + [-49.313850035164585, -24.586565329200344], + [-49.31328397545425, -24.58672431685288], + [-49.31282084503196, -24.586560402189026], + [-49.31283674003083, -24.583380122971267], + [-49.31324045338493, -24.583017917779415], + [-49.31134066446071, -24.58148610421274], + [-49.31198202348847, -24.580181823280064], + [-49.313067383996405, -24.579367852085067], + [-49.31242561188781, -24.57806156787766], + [-49.3124256921829, -24.576708548804223], + [-49.31217983566382, -24.57511638543174], + [-49.313569590737266, -24.57440283535918], + [-49.31423278373042, -24.572775823346348], + [-49.31383212557918, -24.57146711943868], + [-49.31401612088, -24.57047922885131], + [-49.315121154584595, -24.569699461602124], + [-49.31732924998448, -24.56813986510931], + [-49.318146166737684, -24.567130147684125], + [-49.31814462974395, -24.564544750550276], + [-49.31581430379264, -24.563784285272053], + [-49.31557693086088, -24.56350127494556], + [-49.31510688603867, -24.56294170527937], + [-49.315902422972066, -24.560569299843294], + [-49.315910198922595, -24.560546118819413], + [-49.31566816198437, -24.559115324444665], + [-49.31645774231248, -24.55599955098614], + [-49.313235933958644, -24.554995237277325], + [-49.31201119722034, -24.55417533878474], + [-49.31025445326166, -24.553903732864484], + [-49.30990088540885, -24.552048796788398], + [-49.31028458728071, -24.55041852258671], + [-49.30904323365091, -24.549648538143618], + [-49.3082624975264, -24.550510701454254], + [-49.307540235304856, -24.550413510542835], + [-49.30711776857422, -24.549824774735196], + [-49.306982841852374, -24.54833154604414], + [-49.3059302246357, -24.548327656094983], + [-49.306041392064564, -24.546882634692988], + [-49.30455696116854, -24.547467994027624], + [-49.30329482505882, -24.550617635860203], + [-49.301608998865376, -24.550485063738765], + [-49.300167942417204, -24.55115008995203], + [-49.298643550981446, -24.55018566031546], + [-49.29755839635141, -24.550100554454996], + [-49.2969399934551, -24.550554232272237], + [-49.29699981550125, -24.55193972517676], + [-49.29619647153051, -24.552584918540802], + [-49.29379880722328, -24.553528173541086], + [-49.29299940551749, -24.55338076684884], + [-49.29340164734307, -24.55229071862169], + [-49.29301062216387, -24.549806748613705], + [-49.292948324243625, -24.548171661701492], + [-49.29269039302363, -24.54725202139634], + [-49.29272806464386, -24.544792214147602], + [-49.29053142691392, -24.54336301742733], + [-49.29053089691057, -24.543362672428895], + [-49.29008690319776, -24.543668620731932], + [-49.289642291481414, -24.543974286036732], + [-49.28832558012699, -24.543370126814594], + [-49.28832543112605, -24.543370058815103], + [-49.28700795176748, -24.542765547594687], + [-49.286146164093765, -24.541833380035786], + [-49.28414007328918, -24.541316814812706], + [-49.283092658321856, -24.539936554764264], + [-49.28256437174659, -24.539513815268638], + [-49.282180378145924, -24.53920596036201], + [-49.28131228926675, -24.538509996833515], + [-49.28074016636665, -24.537755294444995], + [-49.28037363126334, -24.536416091427448], + [-49.28081633280512, -24.53519583007535], + [-49.281846281727745, -24.534563189058698], + [-49.28315172058216, -24.534748044292257], + [-49.28426064700286, -24.534168293049937], + [-49.28412655060707, -24.532765182356638], + [-49.28567076893117, -24.530500998757688], + [-49.28689771542606, -24.53096171523416], + [-49.28714682673294, -24.5296083794354], + [-49.28791875118692, -24.528849643158086], + [-49.28843126574869, -24.52755495360075], + [-49.28846459844087, -24.527138924480333], + [-49.288026009237434, -24.526430747708503], + [-49.28794772257361, -24.52575181089597], + [-49.28812579205328, -24.52481873032715], + [-49.287316572033355, -24.523724275605026], + [-49.28881150562694, -24.523327655257596], + [-49.28767334785068, -24.52210495347959], + [-49.28712020109256, -24.52079057600378], + [-49.28670480737068, -24.518749946087308], + [-49.287576767188064, -24.517980808521063], + [-49.28690160281599, -24.51662930239566], + [-49.287902063673485, -24.5157236394501], + [-49.287585113845665, -24.51469406730719], + [-49.28876687245827, -24.51379764683811], + [-49.29003634090898, -24.51390923417337], + [-49.29056276522235, -24.512526198571575], + [-49.290172246330904, -24.510984972612356], + [-49.291675996659784, -24.509924690203096], + [-49.29519429219642, -24.5068921268554], + [-49.29509714464085, -24.505976594084256], + [-49.296843511008305, -24.50378157190932], + [-49.296930095525376, -24.50238621557974], + [-49.29614218589879, -24.5008006387679], + [-49.29572892984207, -24.500393243939588], + [-49.295004864594574, -24.500288833027017], + [-49.295004266591846, -24.500288747028737], + [-49.293148239114906, -24.50055533040977], + [-49.29195979981284, -24.50039225683597], + [-49.290477687616836, -24.498285122998833], + [-49.2882550276826, -24.496817919337527], + [-49.28475252351197, -24.495311731369988], + [-49.28159607897217, -24.495614236505865], + [-49.280152620958795, -24.495250359653813], + [-49.27849116414996, -24.494618443415117], + [-49.27624698995646, -24.494258383874573], + [-49.274536767536986, -24.493506002768008], + [-49.27334260183667, -24.49323452119951], + [-49.27168084478891, -24.49340242300697], + [-49.27004101817075, -24.492800822704485], + [-49.26996188023379, -24.492620896922134], + [-49.26996211723313, -24.492620455921468], + [-49.26996191423079, -24.492619996922013], + [-49.27059649168369, -24.49143908001939], + [-49.27180988586666, -24.490669876470864], + [-49.27139867827273, -24.48836634551961], + [-49.27071382188296, -24.48614795036301], + [-49.2706865971892, -24.48510939937914], + [-49.27168828874493, -24.483823735411427], + [-49.27028660206621, -24.48176942133249], + [-49.26904242551277, -24.4818872969292], + [-49.26856383522926, -24.480619361233472], + [-49.266784565371886, -24.480398023352674], + [-49.26592002373404, -24.479762978807837], + [-49.26591996073368, -24.479762952807985], + [-49.265761831769154, -24.478216803170216], + [-49.26431910563952, -24.474918098129955], + [-49.26355000750573, -24.474318456311018], + [-49.26114186561801, -24.474235036248956], + [-49.25958065611682, -24.473284573691267], + [-49.25958055711631, -24.473284513691542], + [-49.25803892014531, -24.4733353501384], + [-49.25653292674798, -24.474381737543855], + [-49.25503643887991, -24.47441048885888], + [-49.25401015360287, -24.473776672777166], + [-49.25389618119536, -24.47350017008835], + [-49.25420540662005, -24.470944470038365], + [-49.25081821009556, -24.471229260815598], + [-49.24945297629416, -24.471996245796895], + [-49.24872466168059, -24.470629466809218], + [-49.247390922776354, -24.46958868958562], + [-49.248401993980565, -24.468187287585017], + [-49.249590780688386, -24.46701675708729], + [-49.24939503852899, -24.46516483553474], + [-49.24895838439776, -24.463890076712076], + [-49.2457851916358, -24.46560018495813], + [-49.24528667369764, -24.463872197284218], + [-49.246008609208985, -24.462023065088378], + [-49.246014011871836, -24.459885727937483], + [-49.245804198657666, -24.45890452247938], + [-49.24606469788692, -24.458669487714637], + [-49.24976626739971, -24.4583090440346], + [-49.25045456583702, -24.457929774028877], + [-49.2517316509216, -24.457928354351452], + [-49.25401670719749, -24.45623531866532], + [-49.25384236022392, -24.454702157071633], + [-49.25278039584054, -24.4534961020541], + [-49.25214543337402, -24.45206201079243], + [-49.253257998418036, -24.45136813154586], + [-49.253912678464204, -24.450042881578177], + [-49.2513567704183, -24.447757765792648], + [-49.25098504958067, -24.445910361746346], + [-49.25238568281468, -24.4431944205447], + [-49.25298679019549, -24.44202799074166], + [-49.25265148524837, -24.440396704604275], + [-49.25343629790914, -24.43909894326453], + [-49.25370650156237, -24.43810394342464], + [-49.25370033077137, -24.436427419337303], + [-49.2531298563639, -24.434643157866837], + [-49.25065119718644, -24.432226272845128], + [-49.24931972993129, -24.431948576657263], + [-49.24817342600563, -24.430970470892113], + [-49.24692206974734, -24.428271311319158], + [-49.24115082596655, -24.422505675540428], + [-49.24098420419807, -24.419563075829863], + [-49.23783311561042, -24.415180221599677], + [-49.23592818950887, -24.411531828833834], + [-49.23601674475264, -24.410042958482652], + [-49.236921221675274, -24.40897152181575], + [-49.23777181641508, -24.40586898217179], + [-49.23831782448167, -24.404963735545273], + [-49.2414709957873, -24.402562997336126], + [-49.243564253480905, -24.402379080313228], + [-49.24418549496378, -24.402674175548086], + [-49.246147847297784, -24.404868707052465], + [-49.24786643872847, -24.406790637238213], + [-49.25070206398127, -24.414355749569978], + [-49.253944780693644, -24.40993442497071], + [-49.25442784549513, -24.40815249147022], + [-49.2539677546595, -24.40552947662731], + [-49.25289396682088, -24.4044897426474], + [-49.24967843651813, -24.39792795846918], + [-49.24814294622523, -24.3932085425781], + [-49.23992412039558, -24.384992947639326], + [-49.23861558008603, -24.382042489201666], + [-49.23828651110613, -24.37951095398073], + [-49.2321152330279, -24.375552265417664], + [-49.230190297134, -24.37226716271853], + [-49.22883879175932, -24.37109699751436], + [-49.223927168885545, -24.363976347111304], + [-49.22078250250763, -24.36137794394245], + [-49.21662187690066, -24.356381285515248], + [-49.214338748153416, -24.354426895916305], + [-49.21311841719281, -24.35410114738614], + [-49.21189957480114, -24.354233009882734], + [-49.210597700775324, -24.353690298570243], + [-49.208928184935786, -24.352751381281834], + [-49.20780507056621, -24.349849859294075], + [-49.20703331616982, -24.34887436443385], + [-49.20464958388847, -24.34805071219343], + [-49.2015790293177, -24.345597558801327], + [-49.20114571423212, -24.34490473999162], + [-49.201677800499326, -24.34319122935076], + [-49.205149812952385, -24.341040787275798], + [-49.20426004615763, -24.340084986752785], + [-49.20426043915737, -24.34008447275159], + [-49.20426007915469, -24.340084086752643], + [-49.204447004066836, -24.33984074620132], + [-49.204734002927374, -24.33946581435482], + [-49.20522776190748, -24.33947146994392], + [-49.206413682138354, -24.33874502450336], + [-49.208467731536686, -24.338816041636246], + [-49.2092377314718, -24.339366321472905], + [-49.21014711100082, -24.338756337830745], + [-49.21040900007497, -24.338766385082607], + [-49.2108487171621, -24.339159437852405], + [-49.211884909995966, -24.339370402903974], + [-49.21245397165285, -24.340072873325035], + [-49.213836779938525, -24.33972006334638], + [-49.221476110558285, -24.340978075579862], + [-49.22475437368419, -24.3407189251821], + [-49.22934861898579, -24.334005662586065], + [-49.23106348000057, -24.332603807585624], + [-49.23137174229099, -24.33174514264638], + [-49.23168003957851, -24.330885577707093], + [-49.23652675709895, -24.330095196784665], + [-49.24001137715223, -24.33192101293013], + [-49.241839426949376, -24.33178911568794], + [-49.2451695441481, -24.33266607820971], + [-49.24623873765861, -24.33128258305827], + [-49.249342936007146, -24.331003017150195], + [-49.250925554392566, -24.329280606506742], + [-49.25089867817559, -24.327492639468982], + [-49.24987191682943, -24.325948198309955], + [-49.25090390210194, -24.319855166963134], + [-49.253514144374655, -24.319542951469604], + [-49.25470297120624, -24.318408112993033], + [-49.25602152213419, -24.31715119713733], + [-49.258624599109986, -24.31734670069554], + [-49.26117348330989, -24.313280686138846], + [-49.261592051644975, -24.31289376791574], + [-49.2626426245642, -24.312238267865833], + [-49.26587581366312, -24.310570604501457], + [-49.26664713997708, -24.310354441278694], + [-49.26814898947804, -24.309932353950654], + [-49.26915632094453, -24.308317019964694], + [-49.27028846619885, -24.307665792681252], + [-49.27236891591821, -24.30780877373055], + [-49.272681216894824, -24.30802565184934], + [-49.27309887447336, -24.309174515723818], + [-49.273967291911276, -24.308882595217707], + [-49.27433350231519, -24.30857688314966], + [-49.275179348758556, -24.30597191956578], + [-49.27866735267644, -24.30688542462785], + [-49.28050542887695, -24.308327834448416], + [-49.281584312368786, -24.31014845646682], + [-49.28350729926098, -24.30935498490653], + [-49.284276280562025, -24.30855367165365], + [-49.28337291766609, -24.307581652184364], + [-49.284107864788, -24.306474814010766], + [-49.28656700697422, -24.304562888846522], + [-49.28627053504952, -24.303172782612613], + [-49.287367701102625, -24.303089637462733], + [-49.28746821139601, -24.299548987961792], + [-49.28814695665262, -24.29854667595626], + [-49.28963269257998, -24.298562907699], + [-49.29049432159133, -24.29669245711745], + [-49.29126000515662, -24.294217293775013], + [-49.28990035837195, -24.29351136262914], + [-49.28917992133364, -24.292284707620023], + [-49.291916848963886, -24.291645975738994], + [-49.293111224682676, -24.29018303922904], + [-49.29433961149769, -24.28987958269069], + [-49.29433986849946, -24.289879792689916], + [-49.29571536377149, -24.29100304581441], + [-49.29722472887007, -24.290750580473162], + [-49.29914145806064, -24.288299172834563], + [-49.299507924592476, -24.286861070699512], + [-49.29800459814726, -24.287004753016753], + [-49.29800379214701, -24.287005602019033], + [-49.29800358114622, -24.287005622019663], + [-49.297040744807425, -24.28801904383909], + [-49.295673393238665, -24.285921176633366], + [-49.29648439916213, -24.284668865235172], + [-49.2977061740995, -24.284409309718594], + [-49.29861407474182, -24.28354822406596], + [-49.298399248849556, -24.28031578349079], + [-49.301702333857826, -24.276794577818933], + [-49.30169752571795, -24.275588236761905], + [-49.30059487461647, -24.274490377856612], + [-49.29956184316497, -24.271745267654104], + [-49.29917718772752, -24.268547224566966], + [-49.301064173512316, -24.26659658304756], + [-49.30167647713392, -24.265192446211152], + [-49.301427330121335, -24.263426092820737], + [-49.3026443765398, -24.263021293311546], + [-49.30309143473022, -24.25963087483219], + [-49.30606052131933, -24.2595961903274], + [-49.30883601202948, -24.260699536441912], + [-49.30914091497668, -24.259160402479264], + [-49.3066455101569, -24.257408086524343], + [-49.30608700391261, -24.25593066503744], + [-49.30608710491048, -24.255929944037156], + [-49.30626092634634, -24.254684777466686], + [-49.30536929490959, -24.253242433935384], + [-49.305369111907865, -24.253242137935853], + [-49.30584135726372, -24.251921657506514], + [-49.30852585931683, -24.2511809067771], + [-49.3086212025069, -24.24995421543279], + [-49.30967850981934, -24.248824670339797], + [-49.31215364279379, -24.247424307171613], + [-49.31317864148163, -24.245563167129262], + [-49.313173170742694, -24.243887460048242], + [-49.31636468757187, -24.244842168964347], + [-49.31767667911028, -24.24407169716299], + [-49.320091033388465, -24.244297124261056], + [-49.32053691456962, -24.24207763485785], + [-49.31997598379965, -24.240447937371616], + [-49.31997609679782, -24.240447270371266], + [-49.3199760167967, -24.240447037371393], + [-49.32029125171144, -24.238592882363182], + [-49.32167442345064, -24.239264983440357], + [-49.322446390480394, -24.237796868146297], + [-49.323145295694225, -24.236467039069495], + [-49.32918013639502, -24.23469346468543], + [-49.33065964682105, -24.233698332391896], + [-49.33253523689257, -24.232435914948873], + [-49.33520752230588, -24.231527595243108], + [-49.335704932455094, -24.229533008708007], + [-49.33737473894905, -24.228046283842456], + [-49.345170890767676, -24.224578140315515], + [-49.34682688570937, -24.22265395446627], + [-49.35114461102682, -24.221290985019102], + [-49.353676355553134, -24.219116809646994], + [-49.35642524830719, -24.21500241555022], + [-49.35730723963878, -24.212033857865677], + [-49.35717008368, -24.210738746190394], + [-49.35622976997913, -24.209564252822847], + [-49.353263383719046, -24.20879927028151], + [-49.34328522977082, -24.204765790640703], + [-49.34201140783573, -24.20361259122437], + [-49.34234037896345, -24.202097477199878], + [-49.34453842571108, -24.200370882813655], + [-49.34545394382318, -24.199055605121348], + [-49.34650789861032, -24.196018493939647], + [-49.346976673837354, -24.192904091428964], + [-49.34678472292306, -24.191682987912156], + [-49.34392627695287, -24.188233914903748], + [-49.3402930536106, -24.17528511158351], + [-49.34028489658093, -24.170583309347165], + [-49.341010301096475, -24.168722630170926], + [-49.340532494408585, -24.164073177279644], + [-49.340812528735825, -24.15767031712514], + [-49.33939906568441, -24.154872457007826], + [-49.33826323790373, -24.154187431213927], + [-49.33548152383707, -24.15355131512258], + [-49.33362307138895, -24.152326235360466], + [-49.33292644983257, -24.15061139025283], + [-49.33358057711884, -24.149057561297862], + [-49.33542135012412, -24.14722931793996], + [-49.33726242712566, -24.14539990458137], + [-49.337168473750744, -24.144809057816552], + [-49.337168468750626, -24.144809026816624], + [-49.33664461053092, -24.14152077312797], + [-49.33683919143895, -24.139796625475938], + [-49.337032791343354, -24.138072428826767], + [-49.33742927607796, -24.137536789665177], + [-49.33893251458991, -24.13742582936853], + [-49.340946562105074, -24.139377146728176], + [-49.342342789882906, -24.138879131714447], + [-49.34278631395102, -24.137209828355893], + [-49.34399451612061, -24.13557189281621], + [-49.34790493658341, -24.133849530557487], + [-49.34994948152791, -24.132948537670586], + [-49.34995026053126, -24.132948657668372], + [-49.352005164646975, -24.133264115817774], + [-49.35353512471397, -24.131815127370132], + [-49.35600501162247, -24.131591891304367], + [-49.35783993047993, -24.130907933026794], + [-49.36189499451281, -24.12860209532073], + [-49.36342139015734, -24.127328550892884], + [-49.36540020376531, -24.124346206082457], + [-49.36539511674049, -24.12257853200359], + [-49.363364314325096, -24.121850402765485], + [-49.362622593128826, -24.12058563481657], + [-49.36317933830129, -24.11999530519529], + [-49.363179744302165, -24.1199950801941], + [-49.363180353302305, -24.119994435192364], + [-49.365154664324876, -24.11890558649637], + [-49.36711550454276, -24.119362208920165], + [-49.368788498599706, -24.118630851103124], + [-49.369207709165956, -24.117431843842837], + [-49.369783816822675, -24.115784436111074], + [-49.37131360270991, -24.11487394169397], + [-49.37609155992961, -24.118272270220107], + [-49.37846020824444, -24.11858340846731], + [-49.38364805737215, -24.115598475488014], + [-49.38520180035751, -24.11645610709017], + [-49.38739998962227, -24.116361069801364], + [-49.38882077243006, -24.117907453816635], + [-49.38886560074816, -24.11912591574943], + [-49.389567125866215, -24.12011910679302], + [-49.392317294819996, -24.11753432179964], + [-49.39281368500872, -24.115549258281657], + [-49.39441576801691, -24.114593840652883], + [-49.40075724561181, -24.11219250239809], + [-49.40278874953877, -24.11042734950134], + [-49.40439606864163, -24.109789088872688], + [-49.40834063827722, -24.109565939576843], + [-49.409536188336816, -24.108799959119494], + [-49.409536302337685, -24.108800077119188], + [-49.4096197784815, -24.10874660787778], + [-49.40917545310859, -24.107382821084105], + [-49.405469711369975, -24.104066274525632], + [-49.405171278363, -24.102641992310495], + [-49.40789554294345, -24.09968669137715], + [-49.40828528215102, -24.098418173201726], + [-49.405151398647526, -24.09774764513105], + [-49.4053493496325, -24.096339149496995], + [-49.409347003309186, -24.09489317299674], + [-49.410765343744146, -24.095159081953398], + [-49.411477544295664, -24.093621822843403], + [-49.412677826059685, -24.09335234439801], + [-49.41515188590764, -24.095470570421735], + [-49.41672880475625, -24.094794302878984], + [-49.41617541837791, -24.09325879738987], + [-49.418286290522, -24.091763324281604], + [-49.41972921560803, -24.091310946132843], + [-49.42145417078213, -24.091443562204127], + [-49.42245503082572, -24.09266179139699], + [-49.42534691161789, -24.090757090034458], + [-49.42622541603896, -24.088992261439607], + [-49.42747923176175, -24.08776836879584], + [-49.43047796772279, -24.089026309271564], + [-49.43187052947215, -24.0873578472104], + [-49.43231105388121, -24.086091647892413], + [-49.43200412931956, -24.081573322566424], + [-49.431427066350146, -24.080478609167876], + [-49.42947934013293, -24.078527695651484], + [-49.430427649698395, -24.077313574883387], + [-49.43259552512596, -24.076721387654814], + [-49.43448268152462, -24.076442443243074], + [-49.43585707796008, -24.075585125272113], + [-49.43328385788974, -24.07409854356702], + [-49.43241860198268, -24.07305741799503], + [-49.432480361171706, -24.07245382879098], + [-49.43025335644289, -24.069199075012246], + [-49.43156415553468, -24.068607473236884], + [-49.435340077532935, -24.068108166415172], + [-49.43813780587939, -24.069420292470948], + [-49.43945021436576, -24.069237792708204], + [-49.440484698886166, -24.067324218663465], + [-49.440670225429265, -24.06344667096052], + [-49.438290608004756, -24.059276639580457], + [-49.44056629262052, -24.0583244230301], + [-49.44515996233515, -24.058280688889425], + [-49.45031492872533, -24.056911947082163], + [-49.45239272281, -24.05573744308639], + [-49.454313339615325, -24.05318969948136], + [-49.45800733804445, -24.049975458774316], + [-49.45840962300713, -24.048916126578163], + [-49.458066349886025, -24.047213066488037], + [-49.45812123071341, -24.04562810326367], + [-49.45884776192472, -24.04427113512746], + [-49.460037045836685, -24.043180119678784], + [-49.461454674588616, -24.040603851514277], + [-49.46267001693069, -24.039609912995452], + [-49.46267099893174, -24.03960910999256], + [-49.46312448445963, -24.038657583655265], + [-49.462502255697196, -24.036494901344334], + [-49.46195810154011, -24.034126404800922], + [-49.461730998655995, -24.033536769425655], + [-49.46173123365566, -24.033536394424928], + [-49.46291618980002, -24.031635629955733], + [-49.46389215421538, -24.02799213801148], + [-49.46389255321624, -24.027991918010276], + [-49.46391021606098, -24.027925999957063], + [-49.466807654074984, -24.02638622060647], + [-49.47005142116425, -24.02624048232279], + [-49.47155724742327, -24.02665789703244], + [-49.47359058140793, -24.02815850027689], + [-49.47422652367439, -24.027805143442887], + [-49.47540963549065, -24.024633891928712], + [-49.47435673419542, -24.02103816979417], + [-49.474356963195454, -24.021037942793512], + [-49.474356766192486, -24.021037269793982], + [-49.47484886644569, -24.0205499273665], + [-49.47816590241554, -24.020581848878912], + [-49.48007204859076, -24.01992978739912], + [-49.48082375266412, -24.020565473273827], + [-49.48105058787806, -24.023607543746586], + [-49.48203461288355, -24.02454648496796], + [-49.485005090790835, -24.02436715545886], + [-49.48762055838626, -24.025089822000197], + [-49.48825944516074, -24.02400059512852], + [-49.4880636056357, -24.022598315634188], + [-49.490512327346394, -24.02060337454641], + [-49.4906221388318, -24.01914970317546], + [-49.486622588446544, -24.01712304554349], + [-49.48781672274892, -24.015849899076024], + [-49.49198428419617, -24.015938023151556], + [-49.49233521399881, -24.015185525117865], + [-49.492335104997295, -24.015185181118156], + [-49.4925359933138, -24.014754997526488], + [-49.49012465843002, -24.01312371636443], + [-49.48800947441143, -24.012586788396252], + [-49.483954185107436, -24.012412671991942], + [-49.48148685896104, -24.009294812925017], + [-49.48103818528416, -24.006661570102263], + [-49.48188946936741, -24.00571444562989], + [-49.48528860914108, -24.00707122496247], + [-49.48664776838864, -24.00706610507448], + [-49.48729450443394, -24.00575254517263], + [-49.48767316059472, -24.004484266039437], + [-49.48687211542384, -24.000928884190067], + [-49.489770921056675, -23.99957600984621], + [-49.49056708919694, -23.998119950512073], + [-49.490883116234805, -23.997770629594513], + [-49.49137556209852, -23.996874177151028], + [-49.492046316749814, -23.99512250716432], + [-49.49273704016847, -23.99386876414005], + [-49.49370933779605, -23.993534171346393], + [-49.49670616442325, -23.99472120682052], + [-49.49819659420771, -23.994726121557022], + [-49.49859202828465, -23.994298017409417], + [-49.49881780003334, -23.99337750572841], + [-49.49738711627937, -23.988893707648778], + [-49.496913337561935, -23.988043708971052], + [-49.49611805912282, -23.987052748207056], + [-49.496819902683384, -23.98553350814152], + [-49.49624429469977, -23.983246989699087], + [-49.496200898947095, -23.983074605816547], + [-49.496109883381784, -23.98271693106292], + [-49.494735686042716, -23.979466620865285], + [-49.494151617102375, -23.978086130481135], + [-49.494151890102316, -23.978085801480308], + [-49.494151649099436, -23.978085230480893], + [-49.49537698282738, -23.976607457921254], + [-49.495957590155676, -23.976337045251267], + [-49.498038755082256, -23.974532018233013], + [-49.49904301325288, -23.972257564275008], + [-49.50106776335612, -23.969979610400504], + [-49.50494061531943, -23.96820883426306], + [-49.50770935291441, -23.96788335833558], + [-49.50864516899024, -23.96890358869817], + [-49.509702770080395, -23.971852816783773], + [-49.511237385023925, -23.97244631941683], + [-49.51231657319764, -23.971857917308625], + [-49.51556767528623, -23.97083458097193], + [-49.51689919996226, -23.97099142516866], + [-49.51722396193121, -23.970612554225884], + [-49.517195009419275, -23.970199948293693], + [-49.51509220587492, -23.96742301320735], + [-49.51417349472676, -23.96488781974185], + [-49.51385259704925, -23.964758628654682], + [-49.5111610060464, -23.9648747403551], + [-49.50958168337168, -23.964410587853173], + [-49.50762122670325, -23.963202776412217], + [-49.50610301331857, -23.961574479690366], + [-49.50067859440703, -23.96011221713493], + [-49.50013460090815, -23.959699871673227], + [-49.50009981212962, -23.95891949174263], + [-49.50050285915149, -23.958466362573777], + [-49.50181811802427, -23.957814648791334], + [-49.50475242837021, -23.956932715374293], + [-49.50613590929678, -23.955334198360887], + [-49.50612110417606, -23.954430060369], + [-49.50562895550553, -23.95331736773309], + [-49.50405479384702, -23.950784630133732], + [-49.50346995044129, -23.949264891746296], + [-49.50346968043958, -23.949264669747055], + [-49.50338044430802, -23.949032307992994], + [-49.50438925156708, -23.94766342005971], + [-49.50610781069013, -23.948102832167745], + [-49.508659581770154, -23.948465627892112], + [-49.510713906308034, -23.948349857018734], + [-49.511910315886134, -23.94774773157807], + [-49.51220022934086, -23.946075804687688], + [-49.5131258358636, -23.94517564700976], + [-49.51434291066708, -23.944911979522693], + [-49.52025810431638, -23.947516055713407], + [-49.52156683423347, -23.94659185193915], + [-49.523309498357335, -23.94110398676092], + [-49.523512385064585, -23.939015921106197], + [-49.52481713929471, -23.937008536305626], + [-49.524933100116314, -23.935643258925484], + [-49.523789012211424, -23.93490721316842], + [-49.51982720788346, -23.936958945562182], + [-49.51482412997162, -23.93825401890224], + [-49.512678336436075, -23.938177990028507], + [-49.51267735443208, -23.938177958031286], + [-49.5108392605391, -23.937645947260936], + [-49.50986975115576, -23.936865340000395], + [-49.508513004948405, -23.93421465977461], + [-49.508848917233635, -23.933029722770932], + [-49.510067731886835, -23.931833585246313], + [-49.515047256971066, -23.932093100037445], + [-49.51530016314477, -23.93185629030651], + [-49.5158673313407, -23.930972694654212], + [-49.515734192547, -23.92970830298778], + [-49.5145687228176, -23.928457102269473], + [-49.512949883335686, -23.92749993285576], + [-49.512071417193624, -23.926390427322243], + [-49.5120717891936, -23.926389958321092], + [-49.5120714481908, -23.9263895273221], + [-49.5130106658042, -23.925205030596718], + [-49.51737189400763, -23.92384262709555], + [-49.51882058628238, -23.922273760901852], + [-49.5193719876444, -23.92116172728687], + [-49.52064661192866, -23.919794108597785], + [-49.52187123318272, -23.919361178085506], + [-49.52279231004145, -23.918270684416136], + [-49.52280285796692, -23.917054616342043], + [-49.5240642127068, -23.916723646728638], + [-49.52509588958205, -23.91758074781368], + [-49.52661877573859, -23.921802102615505], + [-49.52745678075027, -23.922919372261624], + [-49.52995133954237, -23.922677317126954], + [-49.531228459561746, -23.92300179548971], + [-49.53164943497312, -23.92441600133646], + [-49.53123507932037, -23.927056597612975], + [-49.53123511932196, -23.927057049612934], + [-49.5312350483233, -23.927057497613095], + [-49.53136878404349, -23.928594020284788], + [-49.53162391102293, -23.929773654596953], + [-49.53267516585993, -23.93059583162111], + [-49.53267558986261, -23.930596163619917], + [-49.53626893509549, -23.92864420128124], + [-49.53740161737255, -23.92802828202224], + [-49.540652845184894, -23.927817895720366], + [-49.542208371284964, -23.92696459124409], + [-49.54420850953058, -23.92446893044141], + [-49.546900473954416, -23.923600682715264], + [-49.55123024897241, -23.923113076317037], + [-49.555763254088504, -23.923604335366587], + [-49.557456805306366, -23.92322068250917], + [-49.55747760741133, -23.921753477402802], + [-49.55479522417346, -23.91853416197219], + [-49.55409298638438, -23.917033484931853], + [-49.554931650387886, -23.91578720849322], + [-49.56363862986962, -23.912832202495423], + [-49.56551345662922, -23.91004424304524], + [-49.566535891741204, -23.90626220000303], + [-49.56881755820897, -23.903812064401016], + [-49.569289322547114, -23.9021965150018], + [-49.568987950169976, -23.90095160182545], + [-49.569985826627665, -23.89995487794082], + [-49.57312274226798, -23.90042253398254], + [-49.57567254548471, -23.899955998674148], + [-49.57784520395787, -23.89792786939762], + [-49.5779969236072, -23.896472339920255], + [-49.57737974712573, -23.89437423762317], + [-49.57684719005739, -23.893482226119808], + [-49.576128073862215, -23.890107839075323], + [-49.57626438794514, -23.883482626486078], + [-49.57406851445761, -23.878444868610476], + [-49.57515048554395, -23.877538801490648], + [-49.576323608686195, -23.878022977152224], + [-49.57847881680403, -23.880044582051916], + [-49.579154257882095, -23.880778486142763], + [-49.5817051145205, -23.884571180960908], + [-49.58456433244257, -23.890162205945654], + [-49.58581576581213, -23.89091889038698], + [-49.58750908506223, -23.88936975249714], + [-49.58881972496939, -23.88667789666991], + [-49.59193734689498, -23.878994353531755], + [-49.59231879005936, -23.875954602354582], + [-49.59239514628862, -23.875345457119007], + [-49.594566591811386, -23.873041244842753], + [-49.597643470390665, -23.871205259989974], + [-49.599518799617904, -23.87033064060086], + [-49.601952685411824, -23.86958184761703], + [-49.60293093441694, -23.86877171779609], + [-49.60298650239247, -23.86486438753124], + [-49.602428718128095, -23.86335089008573], + [-49.599674665146296, -23.860271783878236], + [-49.59937351063077, -23.85898365970389], + [-49.6001851699869, -23.85757947934423], + [-49.602681189915174, -23.855915111161238], + [-49.60610759324004, -23.854792601331926], + [-49.609290367190006, -23.854426305218833], + [-49.610592316652635, -23.853681180474954], + [-49.61120362092584, -23.85218472268697], + [-49.611036359387136, -23.85073821812742], + [-49.610434232542445, -23.84969295182196], + [-49.60937272539289, -23.84907706084151], + [-49.60695813123401, -23.84851187973121], + [-49.60081969656563, -23.849941945319763], + [-49.59801251954512, -23.849862838341682], + [-49.59634755295467, -23.848913379073657], + [-49.595948804932185, -23.847289071167385], + [-49.596462887832864, -23.846086370664594], + [-49.608086918511056, -23.841111789305682], + [-49.6085049709073, -23.83986935707735], + [-49.60449399719103, -23.837988224490605], + [-49.60152648055296, -23.837314436951768], + [-49.59899591075576, -23.837282003180746], + [-49.59733251343307, -23.83788698494956], + [-49.590068463503385, -23.842290573824023], + [-49.58761685981269, -23.842793633840376], + [-49.5871400598395, -23.842750275200707], + [-49.58681786008953, -23.84171024009036], + [-49.58697402195355, -23.84149301863802], + [-49.58712917581366, -23.84127580718857], + [-49.58828142243511, -23.84074554288271], + [-49.590583952669206, -23.839684960276475], + [-49.59313035717032, -23.837540078942457], + [-49.59373208018572, -23.83627140418769], + [-49.59447829105158, -23.8333155169724], + [-49.59351193912397, -23.83088079666224], + [-49.59347467668053, -23.830791802766093], + [-49.5907910625559, -23.828467948360583], + [-49.58796098488924, -23.827629355414004], + [-49.58584409698122, -23.827391382448322], + [-49.578508586558605, -23.828180931401622], + [-49.576908730783224, -23.82798890095947], + [-49.57690860878363, -23.827989165959842], + [-49.57602073402241, -23.827882314489052], + [-49.57602069402224, -23.827882310489155], + [-49.57314538384428, -23.827537186679105], + [-49.56867898752833, -23.82154776322515], + [-49.564174587157034, -23.82003001401417], + [-49.562894768697795, -23.818975083626796], + [-49.561358300146324, -23.816404409920544], + [-49.56101303548604, -23.815414147871657], + [-49.56053572856907, -23.812420655133206], + [-49.56156428544135, -23.806465382008877], + [-49.563571271500685, -23.802421370162016], + [-49.561308827091594, -23.795368762371908], + [-49.560148491374555, -23.794098312632418], + [-49.56118441311122, -23.79016880555473], + [-49.565033118425255, -23.78559098045305], + [-49.56553477049518, -23.78296165094004], + [-49.56628949465939, -23.781261351737378], + [-49.56753784722087, -23.780604199164184], + [-49.56923620869542, -23.78059877233137], + [-49.57048995600482, -23.78015800274953], + [-49.570930285419074, -23.779186644465465], + [-49.57101412562871, -23.778856551216407], + [-49.568419850704785, -23.77885436759812], + [-49.56695666722717, -23.778294350743096], + [-49.5665995519275, -23.77534125666309], + [-49.56701182167438, -23.772419078395554], + [-49.566315583971125, -23.771217077336665], + [-49.564497182040604, -23.770627951488756], + [-49.56362635276198, -23.77034529395573], + [-49.5628454534365, -23.76935157214341], + [-49.5626129064523, -23.767240935734886], + [-49.56388400392345, -23.76504363904872], + [-49.56429065328063, -23.764687657880934], + [-49.56340039761094, -23.76341778836994], + [-49.56238302190047, -23.763172814253767], + [-49.56136572819337, -23.762928767137293], + [-49.56097137788194, -23.761796547220353], + [-49.56137842439552, -23.761486539053216], + [-49.56499069619307, -23.759997871736807], + [-49.56834844296996, -23.75819816913319], + [-49.5722600543188, -23.757427916987645], + [-49.573929478673286, -23.75652951921226], + [-49.573533369962064, -23.754982779289193], + [-49.57138555079372, -23.754099604367152], + [-49.56798787953337, -23.754014127022124], + [-49.56648457802278, -23.75348723127743], + [-49.56503872005825, -23.75216452734271], + [-49.56427922380695, -23.750571330448167], + [-49.56424304427568, -23.748369905478235], + [-49.56775789773928, -23.742129733287822], + [-49.56807484089689, -23.740625013338285], + [-49.56794691034417, -23.739116434652306], + [-49.567790203543176, -23.73726852003684], + [-49.56621079643803, -23.734563401433384], + [-49.56451624175096, -23.732709185183438], + [-49.56286785360747, -23.732156506844788], + [-49.561941727057444, -23.732151615473704], + [-49.56068116341504, -23.733095865083694], + [-49.555706920956645, -23.737724382360202], + [-49.5541783697067, -23.738495086725226], + [-49.551790623035224, -23.73922399152718], + [-49.55035751521877, -23.738226831559494], + [-49.5492585671788, -23.736782428627404], + [-49.548899345787504, -23.735285381594082], + [-49.549290240317866, -23.73291063240188], + [-49.55365458374216, -23.728068401852052], + [-49.55417953413161, -23.72728873033594], + [-49.55417961913207, -23.727288766335715], + [-49.5551487980058, -23.725849611536663], + [-49.555982583363615, -23.722620710060315], + [-49.55590334751823, -23.720966806228265], + [-49.55444136645958, -23.714555347153222], + [-49.553511349939484, -23.71157773568675], + [-49.550673026907845, -23.707334381583504], + [-49.549665422600796, -23.70450681433932], + [-49.5496655885997, -23.704506293338785], + [-49.54990161801183, -23.703763015643794], + [-49.5506895715473, -23.703324276395687], + [-49.5514775250826, -23.70288553814749], + [-49.55480420463143, -23.703144887729216], + [-49.55618901451371, -23.70153310374863], + [-49.555951168631196, -23.700046582371304], + [-49.55514936405926, -23.69869726059669], + [-49.55467847742784, -23.69725199388072], + [-49.55556640034612, -23.695917738318588], + [-49.556984279419645, -23.694923029266704], + [-49.55786740275685, -23.694018421733148], + [-49.557673206881624, -23.692483769230524], + [-49.55677829501619, -23.69145076773026], + [-49.55765161734449, -23.690255737214898], + [-49.559270898438115, -23.690233598626467], + [-49.55971155364502, -23.690690428393662], + [-49.55971157764521, -23.690690453393596], + [-49.560152178855, -23.69114815916079], + [-49.560551211240615, -23.692602171079805], + [-49.56179619286968, -23.69256840055057], + [-49.563966741294024, -23.6884324122596], + [-49.56295446523701, -23.68747538209564], + [-49.5622025990603, -23.68618609318217], + [-49.565731515754344, -23.68596436817573], + [-49.56573188975594, -23.685964434174625], + [-49.567312096706694, -23.686243791705955], + [-49.56761979327725, -23.687558222877822], + [-49.56858742721733, -23.688531072167578], + [-49.56915056198149, -23.68722258152801], + [-49.5695663639402, -23.685542247293903], + [-49.57073749561345, -23.684411490937254], + [-49.57267789225545, -23.68359190841064], + [-49.57387034532128, -23.682554540996716], + [-49.5755354819435, -23.6820424442601], + [-49.5763196430871, -23.680895199000094], + [-49.57608781279065, -23.679277474604856], + [-49.575888588102465, -23.6787007021508], + [-49.5758885761023, -23.678700667150864], + [-49.57513784898573, -23.67653096520798], + [-49.57509954145646, -23.676416338312837], + [-49.57728824429064, -23.676867063124416], + [-49.57894915633492, -23.67947432250029], + [-49.579540322416996, -23.679424476822817], + [-49.580087832116135, -23.679011153257456], + [-49.58034248243939, -23.67881836352933], + [-49.582157712106145, -23.671576702153295], + [-49.58363718104371, -23.670773576934295], + [-49.58365915108442, -23.67076077287161], + [-49.58306552122155, -23.666694347425494], + [-49.580678247738646, -23.665077697138713], + [-49.58067791873664, -23.665077474139647], + [-49.581263212280014, -23.66397679044604], + [-49.58307513204349, -23.663640862301357], + [-49.58307564704587, -23.66364097529991], + [-49.58620393824616, -23.66433172645659], + [-49.58577371799838, -23.65936535251983], + [-49.58900702674557, -23.657410831296893], + [-49.59144096890304, -23.6573844043986], + [-49.594385958251586, -23.656536221025842], + [-49.59736438658056, -23.65474818652926], + [-49.602600256291815, -23.652605880622374], + [-49.60322033727361, -23.65159812783471], + [-49.602753932487424, -23.64561501798033], + [-49.60384788328696, -23.644014979832466], + [-49.61654152749281, -23.641042117760087], + [-49.61761118431498, -23.64007565369972], + [-49.61684733360067, -23.63863577082567], + [-49.613440814555325, -23.63770074945763], + [-49.61111699330469, -23.63667277801574], + [-49.61037389980421, -23.636169707107538], + [-49.60871267613166, -23.63456298276917], + [-49.60800673907618, -23.632655233714296], + [-49.60870864154385, -23.628110075593522], + [-49.60820473041173, -23.6268469169844], + [-49.60674099015043, -23.62543679908947], + [-49.60674104514762, -23.62543592108926], + [-49.60674102014743, -23.62543589708937], + [-49.6068184433262, -23.624204477833928], + [-49.608164849322456, -23.62387305401069], + [-49.61269246297005, -23.624018869188845], + [-49.61406381381759, -23.62361510729192], + [-49.614342845510095, -23.62200999445576], + [-49.61404086937458, -23.62021728626019], + [-49.61448118019982, -23.619067272980146], + [-49.61604116599653, -23.61723784450902], + [-49.614595737136405, -23.615925636566292], + [-49.614069686745836, -23.615207942035774], + [-49.61467977689978, -23.61396359127232], + [-49.618317248966186, -23.613451591954664], + [-49.61831724396603, -23.613451526954766], + [-49.61878706652456, -23.61338546162199], + [-49.620398305308804, -23.612691917038156], + [-49.62142466955825, -23.61160342610026], + [-49.6217446800656, -23.60899830112162], + [-49.62163840578234, -23.60753730738219], + [-49.62020983267042, -23.60073934723878], + [-49.61965137268409, -23.598081876745475], + [-49.61937659179754, -23.594832559432085], + [-49.61937562275563, -23.594821100434494], + [-49.61934628952543, -23.59478536851651], + [-49.619346003520086, -23.59478409451735], + [-49.61662591517372, -23.59147176112208], + [-49.614560411930356, -23.590744067945927], + [-49.610456974367374, -23.59043378754614], + [-49.60901370912715, -23.58930094959533], + [-49.60739439328609, -23.58668802909793], + [-49.603314802431726, -23.584463412566297], + [-49.602483156028704, -23.583186499878632], + [-49.602146144259386, -23.58153788278129], + [-49.60231330907472, -23.57829143621032], + [-49.60164344497895, -23.575721510025183], + [-49.602205486949856, -23.574474037398993], + [-49.60473076999513, -23.572220471195003], + [-49.60745349181157, -23.56877395139789], + [-49.60836087725537, -23.56727666278928], + [-49.60845577443719, -23.565722229474797], + [-49.60767491127454, -23.564157526634414], + [-49.60316656122139, -23.5608503932694], + [-49.6014868536516, -23.55988296998332], + [-49.60048054451423, -23.55888137779402], + [-49.60015438507376, -23.55791747768525], + [-49.599209380219385, -23.55512755926678], + [-49.59923191283315, -23.553482789152277], + [-49.60092749515268, -23.5528548263466], + [-49.60181683981542, -23.55204370081109], + [-49.6048103168258, -23.548045236238686], + [-49.60583940295712, -23.545713351262997], + [-49.60618323742076, -23.54215466918467], + [-49.6052003410261, -23.540746477915985], + [-49.60187742867337, -23.538700109229424], + [-49.60098045110764, -23.53774397373034], + [-49.60067223952714, -23.53611419954932], + [-49.604539927566904, -23.53353706055939], + [-49.60753288847704, -23.532216551075415], + [-49.611898143608855, -23.52910443266554], + [-49.615868846164666, -23.528073464430236], + [-49.61808200086312, -23.527275981161026], + [-49.62468295917954, -23.52379279242933], + [-49.62685753240242, -23.520190695189466], + [-49.62874166381281, -23.517576160797894], + [-49.62985315858542, -23.514743515581813], + [-49.62999093987396, -23.514072431174377], + [-49.62983639845751, -23.512317217561836], + [-49.62898262820696, -23.510200897912284], + [-49.62773194323988, -23.508920517405574], + [-49.622217077198165, -23.506433852892258], + [-49.62046577745232, -23.50699208484762], + [-49.61698391080468, -23.509845515750232], + [-49.61530122857798, -23.510784076523077], + [-49.614169331771095, -23.51062161370999], + [-49.61328280825424, -23.50876203815425], + [-49.61405944455079, -23.506463496896203], + [-49.61877186819354, -23.50221098848506], + [-49.61975609396774, -23.49982090564044], + [-49.619622255126735, -23.498213160970902], + [-49.61994859890211, -23.497172512020654], + [-49.620551133031846, -23.49592514228586], + [-49.62184529590312, -23.493814964576593], + [-49.62156265876914, -23.492588726337715], + [-49.620539900503154, -23.49155980819053], + [-49.616508713872214, -23.490520375519953], + [-49.61548565652346, -23.48976806638014], + [-49.61386550830601, -23.487321112871253], + [-49.61316828254069, -23.483358263716024], + [-49.616038671285274, -23.473987034352195], + [-49.615346135383184, -23.472690725263266], + [-49.61376563379844, -23.47310233772508], + [-49.603755253361, -23.478913440080504], + [-49.60199642299939, -23.479294674042276], + [-49.600323030689424, -23.478990748741516], + [-49.59904264041679, -23.47764719230147], + [-49.59926653390625, -23.476332482629687], + [-49.601956570996165, -23.47330030796528], + [-49.603038305880595, -23.47112934685361], + [-49.602149594624706, -23.468136103259205], + [-49.601686825753745, -23.461752273358627], + [-49.60123649131555, -23.460923203598576], + [-49.60053628893048, -23.460394378550504], + [-49.59912436985129, -23.459860838503143], + [-49.59853428386436, -23.45872241312545], + [-49.59836978019536, -23.458405042577628], + [-49.599515338638334, -23.456933346310098], + [-49.60083989545368, -23.45567302654633], + [-49.60211790992357, -23.45466369392154], + [-49.60273019422004, -23.454359217190646], + [-49.60372652452136, -23.453014845347177], + [-49.6036518471651, -23.451782735518204], + [-49.60211929088011, -23.44981127976343], + [-49.59862359431793, -23.446661811486024], + [-49.596105687714584, -23.44087255537141], + [-49.59289421635952, -23.437458871277844], + [-49.590572216000325, -23.436360795760354], + [-49.589241570705425, -23.436272862492785], + [-49.5892407257021, -23.436272806495225], + [-49.583585150382014, -23.437470324409382], + [-49.58045244579829, -23.437228685191833], + [-49.57959606022783, -23.437426161601557], + [-49.578375889282825, -23.43822789405286], + [-49.577074186363596, -23.44276591186343], + [-49.57608475295848, -23.44407424368562], + [-49.573417251104004, -23.444433881182995], + [-49.57039770427732, -23.442476992584407], + [-49.569484635286514, -23.440794054085142], + [-49.57010078244871, -23.43923100730117], + [-49.572336618122065, -23.438096758989865], + [-49.57284061749037, -23.436724255527558], + [-49.57226726607079, -23.435129337078905], + [-49.56772753539501, -23.429795291615825], + [-49.56703743647535, -23.42818084049165], + [-49.56703746947253, -23.42817994749158], + [-49.56708967448249, -23.42690999829917], + [-49.56753235187346, -23.426523357044438], + [-49.56961132479504, -23.425946954196675], + [-49.57254710620381, -23.429090096079282], + [-49.576008571448035, -23.431885824471653], + [-49.57897322400039, -23.432612980181727], + [-49.5812705393043, -23.43220753672316], + [-49.58156279940189, -23.431903970892716], + [-49.582255570892315, -23.42944462986451], + [-49.57896708610939, -23.42295224986227], + [-49.57884195461713, -23.42203591418116], + [-49.57884203361566, -23.42203537318094], + [-49.578841984614286, -23.42203501418105], + [-49.579060116507584, -23.4205408635173], + [-49.5799790533541, -23.417020125818137], + [-49.58006573687563, -23.415562808524477], + [-49.58075851159738, -23.41468848255202], + [-49.581482711171816, -23.414340373509784], + [-49.58378953449812, -23.415146148070416], + [-49.58481504561942, -23.415833766218718], + [-49.58637343651386, -23.416451699869928], + [-49.58979253095949, -23.416632745287203], + [-49.59092836892998, -23.416239416088093], + [-49.592170977954936, -23.41301242449477], + [-49.59306669177363, -23.407995079815276], + [-49.59390167327717, -23.407196769447157], + [-49.59497576259632, -23.40698008042791], + [-49.602984323208226, -23.408963182027776], + [-49.60414164437122, -23.408301816759252], + [-49.60520855797677, -23.403330597606832], + [-49.60420533271992, -23.401968805377585], + [-49.60014694150573, -23.401064596731292], + [-49.5999512984681, -23.40097259527698], + [-49.5987177203635, -23.399918791701822], + [-49.59874109934751, -23.399280647615313], + [-49.59874081434611, -23.39928055761616], + [-49.59874829172728, -23.399084326588692], + [-49.59898202025981, -23.39867638391996], + [-49.6008833675574, -23.39720871754066], + [-49.60553767741062, -23.39490015741405], + [-49.60553822241233, -23.394900043412516], + [-49.60585122507428, -23.394744636529747], + [-49.60761686780765, -23.39386798354982], + [-49.60831585731306, -23.393832608588262], + [-49.60954760656419, -23.39402392113947], + [-49.61209672429715, -23.39498563201878], + [-49.61576286653471, -23.398164682830195], + [-49.6187894026225, -23.39869090135184], + [-49.62147734212278, -23.397909080782952], + [-49.622147973321084, -23.394782897806557], + [-49.62175615823685, -23.390959291791336], + [-49.62107198389583, -23.38920821365851], + [-49.61806989134124, -23.38851063306085], + [-49.61327122078877, -23.388340337516865], + [-49.60847726338587, -23.386694004909288], + [-49.60552894543621, -23.38490555911813], + [-49.603788364225096, -23.38439452398072], + [-49.60378819322427, -23.384394472981203], + [-49.601565575095975, -23.38445737121276], + [-49.59847953267579, -23.38541511989278], + [-49.59688771881963, -23.386968066404847], + [-49.59527050912347, -23.38890234600094], + [-49.59293896320129, -23.39006409557306], + [-49.59209974325284, -23.389517854906146], + [-49.591536971352454, -23.388367539444136], + [-49.59086781709883, -23.383282735146494], + [-49.59086792909836, -23.383282460146223], + [-49.590867846095996, -23.38328183514649], + [-49.591454883549915, -23.381839466453343], + [-49.59256316647901, -23.380555025305853], + [-49.59522717947086, -23.378124837762535], + [-49.59645496575744, -23.376509408269676], + [-49.5969079808094, -23.372667205872943], + [-49.595859739710285, -23.369273044695095], + [-49.59587755721071, -23.367581270588605], + [-49.597227058001, -23.365980052756736], + [-49.59913882500208, -23.364714490362054], + [-49.60212259388714, -23.36310500095436], + [-49.60358919152489, -23.360413047759756], + [-49.604622372184785, -23.359437261834998], + [-49.60765899543638, -23.35788048928154], + [-49.612271556701565, -23.355143113276643], + [-49.61227239270506, -23.355143225274315], + [-49.61986995847868, -23.35615563902267], + [-49.62139611983501, -23.357262472779958], + [-49.623146570580275, -23.357321233876313], + [-49.62745794202812, -23.35650518976767], + [-49.63267051335191, -23.35705770417029], + [-49.63390228347662, -23.356910863712134], + [-49.63632310764385, -23.354516311854695], + [-49.637561353346534, -23.35210956131346], + [-49.63835563344234, -23.350022579026614], + [-49.63835567244076, -23.350022076026438], + [-49.63864361202679, -23.34926591219747], + [-49.63836696249658, -23.343042155795285], + [-49.636678401032114, -23.340262064448197], + [-49.63526746046818, -23.340477857408413], + [-49.63311668139846, -23.343507128523925], + [-49.63175983714589, -23.344667878360355], + [-49.62988250074039, -23.34424704960852], + [-49.628135471584315, -23.34253850645248], + [-49.62658254141169, -23.339388141708177], + [-49.62422059000562, -23.33647745023495], + [-49.62215989382503, -23.33237933887933], + [-49.6220605612044, -23.331086848117693], + [-49.62206050820191, -23.33108615311776], + [-49.62314638344121, -23.328403127995987], + [-49.623352495631664, -23.32700979437644], + [-49.62324938924773, -23.324880433599752], + [-49.62314608685562, -23.322748536823525], + [-49.62314614285468, -23.322748179823332], + [-49.623743933530854, -23.318926385033368], + [-49.624594378589606, -23.317064011596855], + [-49.62794804458138, -23.313552857106707], + [-49.62920184909662, -23.31167553854205], + [-49.629691139185496, -23.308710899083994], + [-49.63157008185061, -23.306168776751228], + [-49.63186277979396, -23.30490540989469], + [-49.63134564264288, -23.299965420193576], + [-49.62951390935885, -23.29586839619267], + [-49.627371637689954, -23.290176731008795], + [-49.626680787940614, -23.28890493990082], + [-49.6262681786119, -23.287139856999787], + [-49.62692725082471, -23.283405867043463], + [-49.62732754612382, -23.28273684290447], + [-49.62761104762545, -23.28226241809777], + [-49.627951357031534, -23.28169425112958], + [-49.62861440436233, -23.27921113120116], + [-49.6296145376413, -23.277243809347], + [-49.632755614083806, -23.2747222594947], + [-49.63286219525137, -23.274652186194903], + [-49.634234990776385, -23.27355669832632], + [-49.63563696022878, -23.2717960213567], + [-49.6355721211068, -23.27030733949356], + [-49.636010382373605, -23.268365235211267], + [-49.6360876805363, -23.26802192598511], + [-49.63679097067932, -23.267571283006937], + [-49.63731204852408, -23.267236741541296], + [-49.63758061167877, -23.26514812772916], + [-49.63819768323723, -23.262176138917596], + [-49.63879116702467, -23.260826453219966], + [-49.63946586348326, -23.25989444030801], + [-49.64053220636082, -23.256814127239114], + [-49.64164043342051, -23.255267810098676], + [-49.642992700096215, -23.254242795291905], + [-49.647569105440105, -23.252201234449878], + [-49.64761971534682, -23.250284078253838], + [-49.64706695285859, -23.247710422724246], + [-49.64695258443876, -23.245575133982467], + [-49.64654654243177, -23.24420226707691], + [-49.64526126322475, -23.24224006360908], + [-49.64494490008883, -23.24072549144849], + [-49.64539793928638, -23.239660243153], + [-49.65018434784098, -23.2380577997438], + [-49.652040356708966, -23.237436788543828], + [-49.65353167710822, -23.23494930330973], + [-49.655232457211326, -23.228773720388673], + [-49.65518171068303, -23.228364469518922], + [-49.655181224679914, -23.22836408152031], + [-49.654616438662046, -23.223805757969572], + [-49.652866969042925, -23.219490514730566], + [-49.65421671327898, -23.21252663176848], + [-49.656124744278, -23.209442283359223], + [-49.66192154986325, -23.202123133986195], + [-49.663661899019466, -23.19468950592918], + [-49.66610150842895, -23.191740346045407], + [-49.667170211315025, -23.18926895599851], + [-49.67174740041406, -23.185024816120485], + [-49.67592164469562, -23.177928947293797], + [-49.67817310987836, -23.175432172950572], + [-49.67961680937728, -23.1751725109177], + [-49.68298489533631, -23.175626959534952], + [-49.68373058811075, -23.174100921416567], + [-49.68215313436638, -23.171682246755648], + [-49.679816399822016, -23.169572616218268], + [-49.67928757810864, -23.168729052671157], + [-49.67848231899212, -23.16685057286797], + [-49.67878495886956, -23.165551241990922], + [-49.680347963594414, -23.164919933617437], + [-49.683788543191866, -23.164265154008575], + [-49.68892421952139, -23.165894250727032], + [-49.69054049108049, -23.16545894820816], + [-49.695063395780814, -23.166059988604868], + [-49.69795463155872, -23.165472824523544], + [-49.69895401507074, -23.164804330719196], + [-49.6990315837195, -23.164609081498185], + [-49.70006801398533, -23.161987786545247], + [-49.70167632342287, -23.159995768011527], + [-49.704009522134506, -23.158797584473312], + [-49.70425107400499, -23.157566803771434], + [-49.70229759524449, -23.15556614817623], + [-49.70162637537468, -23.15422311201787], + [-49.70183384200783, -23.15356998042409], + [-49.70284664178034, -23.153578617598814], + [-49.70351839630096, -23.15389609373208], + [-49.70511588398382, -23.15535804530815], + [-49.70628378335487, -23.15598640306343], + [-49.710394667265604, -23.157122804615415], + [-49.71173710481473, -23.156690638858763], + [-49.71369897714117, -23.15549032035596], + [-49.71506333461807, -23.154399931523745], + [-49.716594821690045, -23.152079397198825], + [-49.716595554693676, -23.152079660196787], + [-49.716705627555356, -23.151912974885946], + [-49.71711581307077, -23.150689434714916], + [-49.716958418583374, -23.14888273711586], + [-49.71914314811062, -23.148716662013832], + [-49.72184496428722, -23.146635955427858], + [-49.72339714621316, -23.14577766907684], + [-49.724283263761556, -23.144944596585823], + [-49.72695191540425, -23.143656862108877], + [-49.72859536323054, -23.143583248518436], + [-49.72965524912974, -23.142967527546496], + [-49.73095397954915, -23.141935576899503], + [-49.732840069477454, -23.139784833590447], + [-49.733840675391214, -23.13801750876203], + [-49.735368554614276, -23.13422041642242], + [-49.735369821867295, -23.1333787014028], + [-49.73051209462391, -23.126546908828832], + [-49.72925292661002, -23.12214735225436], + [-49.72662209738699, -23.117393496496472], + [-49.72581008749057, -23.114666074704875], + [-49.726016033786635, -23.10992759803317], + [-49.727591157882316, -23.10848403761213], + [-49.727591204881115, -23.108483617612013], + [-49.728792109715, -23.107382732241433], + [-49.73092684127043, -23.106367906269156], + [-49.735796706915345, -23.105050993663586], + [-49.737738285699876, -23.10309988221107], + [-49.73917612069842, -23.10086390115833], + [-49.74070441639025, -23.099657745873298], + [-49.745761028902805, -23.099931696774345], + [-49.74840014593449, -23.099109513396765], + [-49.75023094605033, -23.097999705269107], + [-49.7502317590537, -23.09799982926672], + [-49.75184710780542, -23.09824679176398], + [-49.755446595057165, -23.103147058803305], + [-49.76059303656343, -23.10454412345837], + [-49.76341339291434, -23.10606530460674], + [-49.76553788509237, -23.106175370674528], + [-49.76827803694898, -23.105494356009228], + [-49.77072099917801, -23.103732843157267], + [-49.7737671437893, -23.102633607629954], + [-49.77913831376986, -23.101785629608084], + [-49.78964435710073, -23.103834824264265], + [-49.79218082941542, -23.10291542315862], + [-49.792976221093326, -23.10039587590224], + [-49.794342002982944, -23.096994711040022], + [-49.79603830894862, -23.095079509272598], + [-49.79740076923344, -23.094553748455986], + [-49.79876322851781, -23.09402798863927], + [-49.79993066433801, -23.09388503537243], + [-49.80397726568408, -23.09494957006534], + [-49.80706882762404, -23.09482333341409], + [-49.80834424084132, -23.09315368782715], + [-49.80993390735905, -23.089696072342107], + [-49.810149408799816, -23.087755886718554], + [-49.81156648438098, -23.0835942677101], + [-49.812042019754564, -23.082869591372233], + [-49.81271118164342, -23.081474064485747], + [-49.81318724913715, -23.080479910143712], + [-49.81437189902051, -23.07911603181594], + [-49.81623247920478, -23.078308983602952], + [-49.81843895886337, -23.07787066742585], + [-49.81985522465794, -23.077442999459233], + [-49.82316872449606, -23.07612532617557], + [-49.82584447152263, -23.07588584968559], + [-49.827453120700156, -23.075360432178933], + [-49.82895621612061, -23.07411116896127], + [-49.82973776806947, -23.072609444761095], + [-49.83015467455909, -23.07137571658384], + [-49.834123544920445, -23.06643193243577], + [-49.83412416592422, -23.066432400434085], + [-49.83586949862961, -23.06774960655942], + [-49.837371183414135, -23.068447119361274], + [-49.838871541193456, -23.069144444166167], + [-49.840387066706974, -23.070048993929486], + [-49.84190188821869, -23.07095368069417], + [-49.845458141095556, -23.07182397174014], + [-49.85104122183515, -23.073744181110975], + [-49.853153474311675, -23.073665223191593], + [-49.854730890453745, -23.073166635768228], + [-49.856679185878356, -23.07203508830187], + [-49.85835343114231, -23.071465986606437], + [-49.86209844923254, -23.07127728010781], + [-49.86788076035869, -23.072180910898734], + [-49.86979112680724, -23.07171068253944], + [-49.87175934328599, -23.070880501016344], + [-49.87370425677536, -23.069470119556502], + [-49.87500984175281, -23.067702346889032], + [-49.87551538352981, -23.06646084146738], + [-49.878431144911744, -23.06119175927467], + [-49.87951551354001, -23.060174408230722], + [-49.881006546113085, -23.05990673104821], + [-49.881612848893305, -23.060993302350035], + [-49.88246232023216, -23.063198462972075], + [-49.883070389937224, -23.06425984026832], + [-49.88434771303429, -23.065304358686546], + [-49.88579462415458, -23.065557379626917], + [-49.88723259304919, -23.0651422515908], + [-49.88952259629084, -23.063579265161767], + [-49.8902645311584, -23.06210316707765], + [-49.891194542590085, -23.060894238466147], + [-49.89411893145888, -23.058207404256247], + [-49.89716194743334, -23.05633570371437], + [-49.899708676730874, -23.05450607256545], + [-49.90184594458759, -23.053912392566012], + [-49.90786186640964, -23.053564038675948], + [-49.90925997600466, -23.053104391750317], + [-49.91100478168071, -23.05228411585135], + [-49.91206777133928, -23.05160757386698], + [-49.91273677485358, -23.049497585990892], + [-49.91311423099545, -23.046988875934336], + [-49.91401261902376, -23.04478023441485], + [-49.914760101486145, -23.041652794320733], + [-49.91546116192603, -23.04009345035488], + [-49.91620766995529, -23.038967935260796], + [-49.91673819213644, -23.036909810774933], + [-49.916368882430596, -23.035276430814285], + [-49.91387396698123, -23.030596179823352], + [-49.913678961115316, -23.029329224372024], + [-49.913682252351556, -23.027872821364607], + [-49.913681948350025, -23.027872674365437], + [-49.91368535685848, -23.026499061357587], + [-49.91337506092441, -23.023813970231224], + [-49.91314379158124, -23.022746186881168], + [-49.912581308283855, -23.021755497459953], + [-49.910870119780874, -23.016791671263242], + [-49.90976685681739, -23.014061800358355], + [-49.90974506064589, -23.01403369541958], + [-49.90832657673771, -23.012281397396848], + [-49.90690590926194, -23.011273969379204], + [-49.90552717878988, -23.010526307243282], + [-49.90375672719652, -23.00956661420451], + [-49.901948497326345, -23.007953336270422], + [-49.90090611127122, -23.006347210189812], + [-49.90065445654825, -23.005795379894394], + [-49.90058402404384, -23.005414084091427], + [-49.90005077854689, -23.00249429258308], + [-49.9008232612271, -23.000925133418583], + [-49.90213553732868, -22.999800762742808], + [-49.90518987252622, -22.998600548187746], + [-49.9067307462682, -22.99772359687169], + [-49.90890185198591, -22.996138167790402], + [-49.90958868561867, -22.99526169986675], + [-49.91011557733683, -22.994589332391143], + [-49.91236297265236, -22.992185555096885], + [-49.913471835097724, -22.99139384799129], + [-49.91448939722326, -22.990911660141187], + [-49.91609354749418, -22.991044039646905], + [-49.91886920734402, -22.991273095869584], + [-49.92002313141244, -22.990927780636664], + [-49.92103191950074, -22.990444420810555], + [-49.92529382499124, -22.986774339874035], + [-49.92663897462104, -22.985777665106426], + [-49.93122502690668, -22.98352007625857], + [-49.93310653988619, -22.98295172198614], + [-49.93569941014212, -22.982900024717562], + [-49.937592144517446, -22.983356791409204], + [-49.940516569354976, -22.983115190209734], + [-49.95148199054379, -22.980168996466006], + [-49.95388260373418, -22.97939727373474], + [-49.95442500590449, -22.979153287214174], + [-49.95496740707481, -22.97890930069368], + [-49.95695211470409, -22.976901910136238], + [-49.958977781074765, -22.97354971447251], + [-49.961070744470334, -22.971046524615506], + [-49.96331291630371, -22.969427777334516], + [-49.966793393861586, -22.967269832582424], + [-49.96979809521641, -22.964967221166646], + [-49.97100870811373, -22.963290622781546], + [-49.972208094866296, -22.96097191043307], + [-49.972400415560394, -22.959749941902682], + [-49.972695410454044, -22.95939098707759], + [-49.9728429084009, -22.959211509665025], + [-49.972990405347645, -22.959032032252487], + [-49.97378681806163, -22.958063344025085], + [-49.97440448282922, -22.95700358630002], + [-49.97466328515701, -22.95498552958959], + [-49.97220446193467, -22.951226479516706], + [-49.96687766000801, -22.946760072487344], + [-49.96612251991668, -22.94512375961554], + [-49.96595805542137, -22.941792431098662], + [-49.96184302937205, -22.931352285695393], + [-49.96184310036961, -22.931351495695242], + [-49.96184305636918, -22.93135138469537], + [-49.962514822129634, -22.92380189985924], + [-49.964125890421286, -22.918738913378718], + [-49.96620675353925, -22.914632495578136], + [-49.96620913354055, -22.91463024857145], + [-49.96620978353868, -22.914628966569648], + [-49.97198207862266, -22.909179082444115], + [-49.97567500027507, -22.904983465134002], + [-49.98663026604306, -22.897993486510718], + [-49.98994839553047, -22.897227918223418], + [-49.992186647309836, -22.89744021495128], + [-49.99605631566981, -22.898475067098886], + [-49.99854385500474, -22.900723616104937], + [-49.99931838875548, -22.90223858791845], + [-49.998919221213924, -22.90404317901903], + [-49.9966445617242, -22.9085473343504], + [-49.99664434172345, -22.908547323351044], + [-49.99231943509791, -22.91711041239352], + [-49.99198073417273, -22.92056433431035], + [-49.990872978312794, -22.923970930384623], + [-49.990874681977076, -22.92569994336356], + [-49.99242922083059, -22.92821447897887], + [-49.99533916588324, -22.93020784479484], + [-49.99734712494024, -22.930144802160864], + [-50.0009823698868, -22.929167113968827], + [-50.002096375123394, -22.929841233834633], + [-50.00335774622314, -22.929394916298847], + [-50.004619644323725, -22.928948411761453], + [-50.00652340619353, -22.927417767434346], + [-50.01055428229172, -22.92238870117671], + [-50.01105287326734, -22.921220481790847], + [-50.013766713249446, -22.914861845249234], + [-50.013798995118414, -22.914786207159594], + [-50.01509947483891, -22.911739130546522], + [-50.01670595564358, -22.910823791048845], + [-50.018521188482374, -22.910605077956365], + [-50.0185233794908, -22.910605238950147], + [-50.0231663953727, -22.910946573910838], + [-50.03048851265509, -22.90937508137017], + [-50.032297488384394, -22.909436410288173], + [-50.034850717880275, -22.90952257111456], + [-50.03773356537676, -22.908636084028316], + [-50.04426247281274, -22.90310919176799], + [-50.04573701167926, -22.902361527636337], + [-50.04831824428456, -22.902452660380877], + [-50.05320496773605, -22.905757051589685], + [-50.05744295300602, -22.915812779498076], + [-50.05938773502918, -22.919471443961573], + [-50.062852870867545, -22.924143151124408], + [-50.067936173885364, -22.928003797739], + [-50.07030864246876, -22.928620459044843], + [-50.07201553759715, -22.928612133236648], + [-50.07354684187743, -22.92762582794175], + [-50.07856848472388, -22.92328812487982], + [-50.08133481138905, -22.922282586105727], + [-50.08987170869283, -22.92244755104186], + [-50.09329161680771, -22.92299314638822], + [-50.09518216090498, -22.92429628402855], + [-50.09518212290504, -22.924296348028665], + [-50.09531221066868, -22.924386022659885], + [-50.09531224266873, -22.924385997659694], + [-50.10559832907058, -22.931479884478296], + [-50.11017080820308, -22.936234683456917], + [-50.112009928577585, -22.937676139228405], + [-50.113498812245616, -22.93867898399896], + [-50.11587571808338, -22.940279596245247], + [-50.12153314557042, -22.94182951722086], + [-50.12759559679043, -22.942250428074157], + [-50.130567351554724, -22.941663788687958], + [-50.13356145227231, -22.94043297925492], + [-50.13398383421982, -22.940259343065247], + [-50.13494917749224, -22.940198067337118], + [-50.136117822765826, -22.93991543604002], + [-50.14851961419776, -22.935616572079766], + [-50.15189900845483, -22.935647899516706], + [-50.153459138580054, -22.93610667808825], + [-50.157771465724935, -22.93932766178644], + [-50.1653583180236, -22.946897424069558], + [-50.16915062936196, -22.948621622270252], + [-50.175728934854604, -22.94978259658732], + [-50.18105639614472, -22.953148289371143], + [-50.183859608906836, -22.95426147038305], + [-50.1855483687413, -22.95449225158447], + [-50.19136519247833, -22.952629334142774], + [-50.19296445509667, -22.952288662615917], + [-50.19362891101535, -22.952147121735187], + [-50.19530352769901, -22.95204657298586], + [-50.2043577932925, -22.953274681238117], + [-50.20435797129286, -22.953274595237634], + [-50.213460546654765, -22.948953138541665], + [-50.21734844173475, -22.948387542517935], + [-50.220336281974056, -22.949146556000255], + [-50.22117100727011, -22.949538771613483], + [-50.22472095131817, -22.95204398042908], + [-50.22799860444307, -22.953962016037543], + [-50.23107672361244, -22.954602174260028], + [-50.23800402257262, -22.95463469055523], + [-50.24144850725252, -22.953527853799798], + [-50.24371474153435, -22.9514662134349], + [-50.24463009007471, -22.95003802288822], + [-50.24580170305191, -22.94695867567972], + [-50.24643492319237, -22.940592770136963], + [-50.24707377908311, -22.93896597738602], + [-50.248077560424576, -22.938286393558652], + [-50.252313589770516, -22.937735000531323], + [-50.25231371977206, -22.937735321530962], + [-50.25515616972555, -22.93736532645932], + [-50.25703713064965, -22.937120487117493], + [-50.257874124285536, -22.93701153774028], + [-50.27060088883197, -22.932188289722394], + [-50.27385435615244, -22.931489256489968], + [-50.27603553995596, -22.93209114325249], + [-50.28009310617544, -22.935312164552784], + [-50.28180436200902, -22.936428771627536], + [-50.28456297343295, -22.937798866705485], + [-50.28568974425298, -22.938036183483717], + [-50.28988707212435, -22.938293785508797], + [-50.290463545937214, -22.938218873868895], + [-50.29615385982931, -22.937479630680244], + [-50.30091276598884, -22.938424474064725], + [-50.30216119506637, -22.93921002146666], + [-50.3039648606758, -22.943464591119053], + [-50.305180728514465, -22.94541432955665], + [-50.306657524076925, -22.946700179280533], + [-50.30951618996451, -22.94810106805355], + [-50.31604354140317, -22.949632083342085], + [-50.3189620329631, -22.951170359930764], + [-50.323780099129905, -22.951753478137658], + [-50.326073405815116, -22.95160002959272], + [-50.330161097618586, -22.95105879193854], + [-50.33662553613307, -22.95088424146909], + [-50.34065288876683, -22.948560478075105], + [-50.341742845859144, -22.94622221308075], + [-50.3423148284052, -22.94457444253154], + [-50.344042971643326, -22.94069720379405], + [-50.34588066540876, -22.935061422836995], + [-50.34732588049002, -22.933539188786227], + [-50.351077522786674, -22.93081380220651], + [-50.35482544229574, -22.927857386650196], + [-50.35557559941999, -22.926792524562764], + [-50.357909674242364, -22.924843287994932], + [-50.359518165842196, -22.923003644495804], + [-50.36010421740708, -22.92194671987762], + [-50.36004630514271, -22.920429610125392], + [-50.35975070379695, -22.919742050007688], + [-50.35905054901352, -22.917555597127333], + [-50.35971623002217, -22.91654648227926], + [-50.36509610221742, -22.91445486901494], + [-50.37954137510493, -22.905893182187924], + [-50.38085178889169, -22.905930196438167], + [-50.38216220167812, -22.90596721068811], + [-50.38650914740516, -22.907844009146118], + [-50.38735128061506, -22.90820777671574], + [-50.38760963490579, -22.908319144970097], + [-50.3965107498419, -22.90780136952584], + [-50.39865812706335, -22.907676846385836], + [-50.40056214233873, -22.90812751390805], + [-50.416893380542746, -22.913259160815905], + [-50.41941457638631, -22.914420573517894], + [-50.42044846397229, -22.916188741445254], + [-50.42061772482451, -22.918058287844932], + [-50.41874436404205, -22.931775123374468], + [-50.419409033756736, -22.934569306295714], + [-50.421288234743706, -22.93764693271351], + [-50.42312801705505, -22.939667699308078], + [-50.42504015436031, -22.942803693623862], + [-50.42504018436059, -22.94280374162379], + [-50.42617966167781, -22.944673476235394], + [-50.427820318714865, -22.945926837445697], + [-50.43076955445295, -22.946894863914416], + [-50.43213244087909, -22.946768561007502], + [-50.43304755285031, -22.94668359738423], + [-50.440356253891096, -22.942817465633077], + [-50.44220835047074, -22.94251716433053], + [-50.44882016229156, -22.942013948361055], + [-50.450213023478234, -22.942382328333178], + [-50.450574255082635, -22.942477866288392], + [-50.45416127560731, -22.944497658842742], + [-50.456651892751836, -22.945180847635203], + [-50.45989222297212, -22.94568862228167], + [-50.462678237782484, -22.945065728308787], + [-50.46546425259131, -22.944442833335152], + [-50.47651704616685, -22.940069056825315], + [-50.48320670002661, -22.93742184875092], + [-50.486077345006315, -22.93735983049016], + [-50.48607741300709, -22.93735998249], + [-50.486333554897186, -22.937354371752782], + [-50.486589695787394, -22.937348761015635], + [-50.491880934272636, -22.93815550272112], + [-50.49349346434648, -22.938855714026943], + [-50.498440028874136, -22.943014785479708], + [-50.5001427876158, -22.944115526493775], + [-50.50273586164249, -22.94495628595911], + [-50.50654634121409, -22.945864354907815], + [-50.508343828073805, -22.945710870735837], + [-50.51148656225308, -22.945126074715077], + [-50.51369380434493, -22.94401567443017], + [-50.514947590668385, -22.94338484485999], + [-50.519376899134755, -22.941531268219705], + [-50.520998622103065, -22.94100223358034], + [-50.52358791639965, -22.939551937217583], + [-50.52490773505253, -22.938356117498547], + [-50.52616387474327, -22.93694155097965], + [-50.52724025406427, -22.935309311995788], + [-50.527188787828706, -22.93232132836732], + [-50.530477743811545, -22.91963672282921], + [-50.53523354137278, -22.914798333477982], + [-50.5379995699614, -22.913847594572626], + [-50.5409608742946, -22.912616068124787], + [-50.54211201997761, -22.912500604813037], + [-50.54211238398133, -22.91250131581198], + [-50.54814469727478, -22.911895511455093], + [-50.55486731084942, -22.91213592703557], + [-50.5581569453775, -22.911215094611446], + [-50.56780196438512, -22.90614398816341], + [-50.57296823429636, -22.904559863369865], + [-50.576101067857635, -22.904708447308977], + [-50.57752466595099, -22.904431536218794], + [-50.57771027281694, -22.904494119677608], + [-50.5777102878171, -22.904494149677554], + [-50.58146144931847, -22.905758932737616], + [-50.58927602333839, -22.9109338257284], + [-50.59229232484036, -22.913560687790216], + [-50.59239660647749, -22.913640482482066], + [-50.59309817576374, -22.91417729940879], + [-50.60427601822788, -22.923665496274303], + [-50.60899171416445, -22.92464095253783], + [-50.612071196170085, -22.92408970366591], + [-50.61318469553638, -22.923034766530407], + [-50.61758051247171, -22.914869719494853], + [-50.62078311125902, -22.91264698141003], + [-50.63036263365387, -22.910168841874356], + [-50.63776439445787, -22.90742402066601], + [-50.645359529851426, -22.899624092342034], + [-50.648974340639995, -22.897571736047343], + [-50.657891770459194, -22.896224167315427], + [-50.65839474097147, -22.896148156863802], + [-50.6620531792166, -22.89596426827093], + [-50.66401388675958, -22.89615599756662], + [-50.67047059040835, -22.89791466467421], + [-50.673025002070915, -22.898707664188567], + [-50.67585379094148, -22.900163863843805], + [-50.67791172879491, -22.901529066743162], + [-50.680409344912, -22.903697121290065], + [-50.68255073255023, -22.906683886793008], + [-50.683109758598604, -22.909071233946523], + [-50.68461878026859, -22.911541197331747], + [-50.684618388268206, -22.91154150833279], + [-50.68831944580127, -22.917598437009172], + [-50.69179915776799, -22.921059436566633], + [-50.69397138151349, -22.924040421967657], + [-50.7006846782317, -22.93792456411131], + [-50.70318703201695, -22.942631422374223], + [-50.707600655558366, -22.948522440950935], + [-50.710306878455945, -22.953928849541516], + [-50.711683721728114, -22.95523090940216], + [-50.713551550539634, -22.956477275836036], + [-50.72409927745218, -22.959650882765644], + [-50.72999498754362, -22.962985165232613], + [-50.733207192563064, -22.963783671777517], + [-50.73683820151933, -22.963837587172325], + [-50.74108565659374, -22.962996694855267], + [-50.745691403181425, -22.96047003166104], + [-50.74813676767658, -22.956917653880378], + [-50.74918993554361, -22.954030356098688], + [-50.75079831823253, -22.951986022610193], + [-50.75419306123699, -22.949953822904224], + [-50.75913216340769, -22.948140663665065], + [-50.76863761646153, -22.94746026496471], + [-50.771374680376134, -22.948137378895137], + [-50.77619149179254, -22.946820877953602], + [-50.778415315558476, -22.946810064453576], + [-50.78016330176546, -22.9471251153097], + [-50.788114681899025, -22.95042050270544], + [-50.78958201466133, -22.950893945362107], + [-50.79243050980947, -22.951526060960063], + [-50.79640343421972, -22.95166576831819], + [-50.799518232663054, -22.950060753374224], + [-50.80446039688709, -22.94622299032249], + [-50.8058294019242, -22.943949500561704], + [-50.80661463187708, -22.94078570660676], + [-50.80564087308615, -22.936571798914095], + [-50.800967257207915, -22.92879992542738], + [-50.79897100820692, -22.92204973099143], + [-50.797997200295, -22.91544549054741], + [-50.79596969634707, -22.90991055406542], + [-50.79416114798423, -22.907257405632418], + [-50.793606318413026, -22.905603677429603], + [-50.79283234955269, -22.89909456138387], + [-50.7934199001328, -22.89483992612169], + [-50.796105705116766, -22.89089813370127], + [-50.79666976844939, -22.89041608810607], + [-50.79667019845246, -22.890416562104708], + [-50.79828525341247, -22.88903875453712], + [-50.802346280393394, -22.88750578684471], + [-50.80749248727486, -22.88541808504224], + [-50.809013694829645, -22.884312946719263], + [-50.815719684112, -22.88133254545655], + [-50.81748133382221, -22.880027365453078], + [-50.82127619026385, -22.874500709973038], + [-50.82409123829107, -22.866624470616205], + [-50.824090668287106, -22.86662390961789], + [-50.82421848351623, -22.86626619828394], + [-50.82625992670574, -22.86658019628696], + [-50.827866388710945, -22.86552254471128], + [-50.83113362336526, -22.862659582484262], + [-50.83338843200725, -22.859655550231086], + [-50.83519546569649, -22.854478608528293], + [-50.83601483983757, -22.84779908687856], + [-50.83809399266964, -22.840618651607524], + [-50.8399337093511, -22.838051847522888], + [-50.84285529156229, -22.831884752683465], + [-50.84610317564803, -22.82887846653948], + [-50.846583818988464, -22.828486561180398], + [-50.8493036420819, -22.826612642451128], + [-50.85075032768162, -22.824719856441142], + [-50.85236542904707, -22.823763090833943], + [-50.854940716759, -22.820454659689734], + [-50.863714294913926, -22.814175885787538], + [-50.87649875880488, -22.806965685279803], + [-50.88918715001039, -22.7970173863715], + [-50.89271885879803, -22.795411908240993], + [-50.89580160535754, -22.794786291306348], + [-50.90448847518426, -22.79558637981927], + [-50.90737068106944, -22.795556530395302], + [-50.91952233808841, -22.796416567746967], + [-50.92816026519247, -22.798235616244472], + [-50.93213432599487, -22.80147747821207], + [-50.9378153886397, -22.805285152103426], + [-50.93885315438586, -22.80562349802108], + [-50.94116369702433, -22.805811225227615], + [-50.94505689323157, -22.80514606090041], + [-50.946104815376415, -22.804418269919374], + [-50.952406782410584, -22.798034522243388], + [-50.95663018941952, -22.791701081657088], + [-50.95737445484515, -22.790777971591464], + [-50.959718486813536, -22.788392323020748], + [-50.96208376026624, -22.7867142942991], + [-50.9686431463244, -22.78389801642651], + [-50.972358067866146, -22.782933741656812], + [-50.97639634962486, -22.782586232859032], + [-50.979146544857635, -22.783095641727577], + [-50.98388015943256, -22.784922586606385], + [-50.98666102133745, -22.786477116245845], + [-50.991779746251765, -22.79064943468107], + [-50.995053984336394, -22.792635326808902], + [-50.99776904840922, -22.793426145731985], + [-51.00484578345835, -22.794195049841505], + [-51.00601715288356, -22.79430723238481], + [-51.00928726811852, -22.793415854892146], + [-51.01161071396892, -22.79278274814705], + [-51.01866972352551, -22.788458095970565], + [-51.03559196418231, -22.77978762237332], + [-51.045671820057706, -22.774284410468685], + [-51.05427777804703, -22.768258037971133], + [-51.058083687265615, -22.766542748007186], + [-51.062057879720996, -22.76560542044003], + [-51.067054692079246, -22.76507469380476], + [-51.07583023482751, -22.766416445777082], + [-51.09041969989156, -22.763193053245526], + [-51.099594570990824, -22.763662041132825], + [-51.10305031100026, -22.763414358978], + [-51.10372493488682, -22.763289451006294], + [-51.117567163569454, -22.760724803540935], + [-51.122979599700905, -22.76060117958557], + [-51.128392052828154, -22.760477554626103], + [-51.1450308443184, -22.756251871106755], + [-51.15004921105223, -22.7555393363848], + [-51.15477499044355, -22.753855601669752], + [-51.157136465632846, -22.753013873815814], + [-51.16033127297637, -22.751096570659293], + [-51.16488179487631, -22.749447742454507], + [-51.17088220748507, -22.744818184411272], + [-51.17643324046616, -22.73929172783416], + [-51.183003634424416, -22.732748116400227], + [-51.187485247579126, -22.730377364508847], + [-51.19244924736918, -22.72916891301192], + [-51.19514187576707, -22.729811620947775], + [-51.20316879516917, -22.728652881375034], + [-51.20591834507533, -22.727933999348707], + [-51.21110714246052, -22.725518041365024], + [-51.2120562303746, -22.725133783615167], + [-51.2142031493247, -22.72415431941203], + [-51.214206448330465, -22.7241527474025], + [-51.21420654733088, -22.724152769402192], + [-51.21639392519964, -22.723109952088997], + [-51.21639392319953, -22.723109920089005], + [-51.2210192423763, -22.720904863738813], + [-51.22880505075126, -22.716502345373822], + [-51.235002140270765, -22.710230435010505], + [-51.23557948922443, -22.709645806393134], + [-51.23610108469932, -22.70897720295412], + [-51.23610105269623, -22.70897633695438], + [-51.23823046953896, -22.706243057080986], + [-51.239922956662895, -22.701116628882716], + [-51.24058582739422, -22.69689366159107], + [-51.24334885429627, -22.6900613544972], + [-51.252873859799486, -22.679921756916038], + [-51.25565669077155, -22.676001170305724], + [-51.25917342519647, -22.672361049478678], + [-51.26566890787178, -22.668182463919443], + [-51.26948011257418, -22.667535500737102], + [-51.27326196751754, -22.66669756067139], + [-51.27798498550508, -22.666690284680232], + [-51.28189669570052, -22.666962366044455], + [-51.28718024822364, -22.66888532806827], + [-51.29766083228258, -22.673691168193656], + [-51.29867195674608, -22.673992438143944], + [-51.300282989858125, -22.674472538284366], + [-51.30696419122162, -22.67497472037311], + [-51.31137819446785, -22.674190243401412], + [-51.312307313044414, -22.674024927670754], + [-51.32116704478529, -22.671050290863082], + [-51.33351247453917, -22.667565576780984], + [-51.333539710730655, -22.667594378695256], + [-51.33978564283457, -22.665849775432388], + [-51.345141661383224, -22.66510839663988], + [-51.35388347674974, -22.6638984828571], + [-51.359563721284566, -22.661970868297015], + [-51.36008973914054, -22.66170414577863], + [-51.36008947213708, -22.661703406779594], + [-51.3626679773346, -22.66039682733638], + [-51.36830686504474, -22.659143156779045], + [-51.37411862284621, -22.65861760057701], + [-51.3786454139256, -22.66000818585962], + [-51.38114441002359, -22.661647985131683], + [-51.38539403232673, -22.665398940815937], + [-51.38657258289216, -22.66585850522439], + [-51.39759149949349, -22.668295436959465], + [-51.40248579932816, -22.66839014735256], + [-51.40573678532534, -22.667533199812503], + [-51.41045197002149, -22.66545276512445], + [-51.41173664502601, -22.66420297151752], + [-51.41364833003338, -22.66234362315043], + [-51.41689489204348, -22.659185943036164], + [-51.423423606148816, -22.654596806391904], + [-51.425195138031775, -22.653995394216555], + [-51.43572082176672, -22.65263988505777], + [-51.43702994692551, -22.65256876416372], + [-51.44379033594354, -22.65322528886332], + [-51.446879814068794, -22.6534369225998], + [-51.450253445337204, -22.654280176369706], + [-51.45356572925208, -22.656235036115397], + [-51.45639630386321, -22.65914594912047], + [-51.46650548337205, -22.67283831035531], + [-51.47237386389585, -22.67767125489472], + [-51.475420868199926, -22.679701853394395], + [-51.48683591867477, -22.685478893123218], + [-51.499371727084444, -22.691013694502352], + [-51.508791798965675, -22.692511383964153], + [-51.51265987177571, -22.692456887369623], + [-51.516575712967374, -22.69131833083826], + [-51.51768346965855, -22.690448422681605], + [-51.5202800082806, -22.688410362282298], + [-51.526211192267475, -22.68728198269811], + [-51.53230833898967, -22.68764132532292], + [-51.53810097437352, -22.688484876761883], + [-51.54396539334016, -22.690000733847352], + [-51.5485383802057, -22.692443279625177], + [-51.54925979169269, -22.693035486340328], + [-51.55271339318429, -22.69587320739928], + [-51.555807911547056, -22.697013313869064], + [-51.560039304012776, -22.697663519013734], + [-51.562897324639884, -22.697102401527314], + [-51.56571941039333, -22.69603983124779], + [-51.57330676394084, -22.692063374208818], + [-51.57330674494046, -22.692063285208906], + [-51.57781392879321, -22.68970121311626], + [-51.58500803936376, -22.68840471372088], + [-51.58964994781104, -22.686945867038286], + [-51.59194758808914, -22.685682689374282], + [-51.59440299216436, -22.683352432450654], + [-51.59820865566405, -22.678706814929768], + [-51.60477825281637, -22.67303480129564], + [-51.611814428955675, -22.66663030940807], + [-51.614322821926926, -22.664795939227318], + [-51.61631241556834, -22.66307745158574], + [-51.61945486730185, -22.661428398457325], + [-51.62605012232038, -22.659138235057878], + [-51.6283488685486, -22.658724622216543], + [-51.62894643032814, -22.6586630654285], + [-51.63093129781294, -22.658336826514297], + [-51.638718215567664, -22.65712683729345], + [-51.646856346659426, -22.65682500081791], + [-51.6628208790487, -22.657728110463836], + [-51.67276609637282, -22.659207540126978], + [-51.68156302373884, -22.6612220961278], + [-51.687955794873055, -22.66345874833282], + [-51.69081277150478, -22.664917754385158], + [-51.69492596384836, -22.667667311360326], + [-51.699641389218506, -22.669852326629485], + [-51.706313431914275, -22.670844131228854], + [-51.71203856814872, -22.67061007695163], + [-51.71791890610504, -22.669582010372274], + [-51.71864421324697, -22.669504791192914], + [-51.72315090867653, -22.666498508199712], + [-51.72495505801699, -22.664318370210875], + [-51.72633800728845, -22.661948120539336], + [-51.72719420592121, -22.658471121704444], + [-51.72851461680911, -22.650355407476038], + [-51.72928462375201, -22.6456226691773], + [-51.73200809495868, -22.63797621360377], + [-51.732968285198695, -22.632291245939847], + [-51.733507108786526, -22.62909850400704], + [-51.7348156710845, -22.625950012736475], + [-51.73617548747778, -22.624776055879806], + [-51.736817978311514, -22.624691250954857], + [-51.73746046814505, -22.62460644402981], + [-51.74495793814268, -22.62521464521123], + [-51.74593129184171, -22.62506405529858], + [-51.74776467145067, -22.62407534096737], + [-51.74798410319832, -22.623796136364785], + [-51.75209485946925, -22.618565594075903], + [-51.754272555827654, -22.617751293664583], + [-51.75428417185732, -22.617748787629925], + [-51.75428427085752, -22.61774874962962], + [-51.7618341931492, -22.616119484135034], + [-51.77063725475075, -22.614824360765258], + [-51.7720911418124, -22.614610462409374], + [-51.7749570933192, -22.61490110366296], + [-51.77948882108357, -22.616258080629088], + [-51.781888550261684, -22.616325543341752], + [-51.78456114714081, -22.617758679919838], + [-51.786819209542266, -22.61944599669552], + [-51.788039061868474, -22.61981299491457], + [-51.78997835645736, -22.62014656695933], + [-51.7952658298839, -22.620128102928433], + [-51.80387357192462, -22.621144114584926], + [-51.81222360619431, -22.622469349940296], + [-51.818571009780435, -22.623777792368603], + [-51.822793338155556, -22.626169140996247], + [-51.826686472725974, -22.627788750796494], + [-51.83267766731213, -22.628013267537522], + [-51.83916159327038, -22.629017697594417], + [-51.84304488910997, -22.630723442390664], + [-51.84430130901792, -22.631505704388037], + [-51.84756698904774, -22.63270934217464], + [-51.850737241602246, -22.632733779523594], + [-51.85284336427001, -22.63236935119996], + [-51.85629807500954, -22.632180864730532], + [-51.85629812301077, -22.632181165730312], + [-51.85665871713173, -22.63216152363743], + [-51.86603409226923, -22.631650832217083], + [-51.869095193819135, -22.63092882406561], + [-51.8741339395669, -22.62869947024519], + [-51.87944371443186, -22.62483623398417], + [-51.88237449906259, -22.621429741862237], + [-51.89051516925381, -22.613889244851975], + [-51.890647044849395, -22.61365170550663], + [-51.89259458987576, -22.610143704407452], + [-51.89370766963995, -22.609039088279513], + [-51.89509804452057, -22.607992253293325], + [-51.89937447443988, -22.603417010356164], + [-51.90199947450931, -22.6024070076005], + [-51.909969029132164, -22.595160996053302], + [-51.917292429931116, -22.58658835579824], + [-51.92125765298714, -22.583482032464293], + [-51.92522332103883, -22.58037536012963], + [-51.92678916771263, -22.579393662595077], + [-51.927680479306986, -22.57845018910694], + [-51.931452053728776, -22.576480514089557], + [-51.93484722568551, -22.571897351852833], + [-51.940983580431514, -22.5678258001393], + [-51.94751112495737, -22.566730410507688], + [-51.952546433464356, -22.565600415430705], + [-51.95601587392009, -22.565343063913154], + [-51.961345827416494, -22.563939425000317], + [-51.96873341226429, -22.560731063251684], + [-51.97085759244463, -22.560229830893846], + [-51.977734825056416, -22.556583132807987], + [-51.99165425171008, -22.551249573641638], + [-51.994374058107795, -22.54941412379449], + [-51.99732370756824, -22.546536223506145], + [-51.99868156643217, -22.546091862470757], + [-52.0010409366913, -22.546248453226273], + [-52.00306609336557, -22.54598294110742], + [-52.013122207738114, -22.54217906334266], + [-52.02582891127294, -22.540224090002408], + [-52.02882321622861, -22.539995678906156], + [-52.030006742768045, -22.53990539731047], + [-52.03339511789992, -22.53964692601522], + [-52.03493176728522, -22.53947071536075], + [-52.042873538715696, -22.53962522902903], + [-52.04654474062537, -22.539892775727942], + [-52.052349069236186, -22.539808746985997], + [-52.05444421415996, -22.539554709638093], + [-52.05653963208054, -22.539299738289056], + [-52.06051899631138, -22.538248279376408], + [-52.06526328859842, -22.536229223369606], + [-52.0699042470923, -22.53380077278429], + [-52.07950951910258, -22.526684288208383], + [-52.090088157924605, -22.521732507088426], + [-52.10004438312995, -22.51859426439688], + [-52.10632324336928, -22.517144456529355], + [-52.10968375097412, -22.516777710322017], + [-52.11251129743992, -22.516859606629613], + [-52.119092668417125, -22.517317512321682], + [-52.12302063626944, -22.51847544096354], + [-52.128073639512614, -22.520405520943918], + [-52.13602566314629, -22.52739704566699], + [-52.13935229540431, -22.531747701286687], + [-52.142569418376354, -22.53695911100742], + [-52.14382494136292, -22.54002629932742], + [-52.143825004363585, -22.540026455327187], + [-52.14508025735308, -22.5430939146467], + [-52.14804666768644, -22.546944686492164], + [-52.14923350447715, -22.54973594509263], + [-52.15242791863396, -22.569038970075056], + [-52.15280786228148, -22.569715845723103], + [-52.157343696837735, -22.577796496576553], + [-52.161437159462075, -22.589933228684963], + [-52.16296409031129, -22.601657803806056], + [-52.16299283460991, -22.60367382917196], + [-52.16299276660986, -22.603673859172147], + [-52.16302755142645, -22.606108835405927], + [-52.16240924917888, -22.61135727189348], + [-52.1601245451296, -22.62209035204131], + [-52.15732590432544, -22.62916426176843], + [-52.156183636046215, -22.641860161866287], + [-52.157149917159686, -22.645201298979142], + [-52.16396717410435, -22.649311819803266], + [-52.167321587398554, -22.650808043029514], + [-52.183243121403954, -22.655863797412827], + [-52.189269557613905, -22.65686175549027], + [-52.197653887073244, -22.65941249183287], + [-52.201539666848355, -22.661396049252], + [-52.20593668997748, -22.664406202799377], + [-52.20996020624784, -22.667793017393997], + [-52.21404543525714, -22.672440611441793], + [-52.21563295349537, -22.67301617235955], + [-52.218991363528126, -22.675267887318658], + [-52.223049476437126, -22.67601796452166], + [-52.22485033461895, -22.674995293219606], + [-52.22485329061569, -22.67499171721148], + [-52.22784853931737, -22.671366168930007], + [-52.22901797056506, -22.665096197052375], + [-52.228852322374195, -22.656850761867595], + [-52.229263201188374, -22.649472878652723], + [-52.22857079567596, -22.64299906460495], + [-52.230072151878645, -22.639192625014232], + [-52.231330402322435, -22.634002323564133], + [-52.23554960786258, -22.62616169668264], + [-52.240604139450475, -22.620365728645663], + [-52.247565569080315, -22.6170394990097], + [-52.25088524677931, -22.61590847304036], + [-52.26112456147475, -22.61688722502384], + [-52.27131094989603, -22.619231502765984], + [-52.27391072923013, -22.620042150469363], + [-52.27916691823547, -22.62087222892135], + [-52.287915372079894, -22.626575405131355], + [-52.28910393655875, -22.62758412815114], + [-52.29043282892102, -22.62871194570041], + [-52.290432468922006, -22.628712551701415], + [-52.29043281792425, -22.62871284870018], + [-52.2911524594581, -22.62904730536891], + [-52.29672388282178, -22.633303386836765], + [-52.30090795781825, -22.635926886077197], + [-52.304133949557624, -22.637119239704056], + [-52.30584692974976, -22.637298929325627], + [-52.31360838076818, -22.63699432927369], + [-52.319934581739055, -22.635748106952786], + [-52.32740768321525, -22.633616254315946], + [-52.335884937500886, -22.633307190016534], + [-52.34238168332628, -22.63159871828542], + [-52.34986893194612, -22.631165832090826], + [-52.35921438954762, -22.62990030134299], + [-52.369083665100014, -22.62981855460189], + [-52.370940084513016, -22.62938241794258], + [-52.38096338632313, -22.62702652138108], + [-52.39237862426422, -22.622642760072797], + [-52.396190082824425, -22.620785062733912], + [-52.40322361194735, -22.618427598487113], + [-52.40584893621474, -22.617547319555836], + [-52.41317329569732, -22.613929317776133], + [-52.42184343827389, -22.61107982455966], + [-52.426977007671496, -22.609392336034627], + [-52.43351853338144, -22.607648000125902], + [-52.438102386956494, -22.60732972789818], + [-52.4411825651753, -22.607695494159476], + [-52.446165074036536, -22.608760886258313], + [-52.446165208038224, -22.608761232257805], + [-52.44797948326875, -22.609148854466582], + [-52.45202125037837, -22.610013090562592], + [-52.45552045255976, -22.611102153283763], + [-52.46810710802571, -22.616359654278614], + [-52.47396466998839, -22.61998782081758], + [-52.479431397259965, -22.62459613426766], + [-52.49060531186143, -22.631133186214424], + [-52.49574636623096, -22.63357480133053], + [-52.499296559752565, -22.634711276838573], + [-52.5031495982971, -22.635037014646663], + [-52.5051250496503, -22.634491751617563], + [-52.50710024600102, -22.633946279588994], + [-52.51225417008559, -22.63080091839687], + [-52.521277563067635, -22.622296781741383], + [-52.523967297701894, -22.620377781901233], + [-52.52977979720329, -22.61814881135418], + [-52.538283540337076, -22.616477713176337], + [-52.539411572050376, -22.616231579711], + [-52.545850267062576, -22.612224631754977], + [-52.54960041470415, -22.608007163312905], + [-52.55435966916391, -22.601205771524718], + [-52.56361214008853, -22.593889209789108], + [-52.567601810682476, -22.589728481583528], + [-52.57201935266512, -22.58337666173694], + [-52.57624712041751, -22.572454679956202], + [-52.58180083940747, -22.567861386985257], + [-52.58539587859369, -22.56641420715658], + [-52.58981748726653, -22.566577635210848], + [-52.59493062510617, -22.56893095338127], + [-52.600353982779765, -22.57014291793887], + [-52.604781489931646, -22.572631711208814], + [-52.60743577874311, -22.573830224470633], + [-52.61038838177399, -22.574279207035676], + [-52.61183053581558, -22.57495254727902], + [-52.62042210541832, -22.58078846633556], + [-52.63055599001571, -22.591030354066437], + [-52.63335675916414, -22.59301338058944], + [-52.64463789033545, -22.598020452373593], + [-52.65167183422088, -22.603086862510438], + [-52.65642417712742, -22.60767977299154], + [-52.66350713990872, -22.612396702061464], + [-52.66351040592435, -22.61239813605069], + [-52.66351101292773, -22.612398540048687], + [-52.67814193996912, -22.618822510675194], + [-52.690473585210306, -22.624837318660312], + [-52.69757898950957, -22.627487255283484], + [-52.70216822251447, -22.628147412532428], + [-52.70824649116944, -22.628513664160785], + [-52.70872501379532, -22.628542497635443], + [-52.71569242835216, -22.627569151893486], + [-52.718469458815726, -22.628017506942992], + [-52.72290288401083, -22.62723305215974], + [-52.727377957669525, -22.625722896488945], + [-52.73289596464015, -22.62312566988047], + [-52.740131897873304, -22.618574382490603], + [-52.745414602400935, -22.61633690950391], + [-52.750775537577596, -22.612849381695796], + [-52.76478437822646, -22.609117391537104], + [-52.76478437022614, -22.609117307537172], + [-52.764785104227705, -22.609117111534868], + [-52.77561384012052, -22.604934909610712], + [-52.77561420912106, -22.604934761609577], + [-52.77583541448811, -22.604844264938762], + [-52.78047884383962, -22.60339345070019], + [-52.783312393696605, -22.602549678996336], + [-52.78333801974955, -22.602542048917684], + [-52.81591354018295, -22.597523483172857], + [-52.829534382923505, -22.603161380873726], + [-52.829534428927374, -22.60316236487321], + [-52.84533612387571, -22.609701989263996], + [-52.85524706481757, -22.608805955010453], + [-52.8588368539333, -22.608481184687314], + [-52.90583656865158, -22.572687329682967], + [-52.92521672213679, -22.566103962242682], + [-52.92847930659169, -22.566436539709667], + [-52.92847926559425, -22.566437244709523], + [-52.947997996097584, -22.568426214657446], + [-52.972899250433784, -22.5709645721235], + [-52.98533282704726, -22.57682950816771], + [-53.01214749016783, -22.599274652880926], + [-53.01451367265339, -22.600105440979217], + [-53.020310410338304, -22.60214000361609], + [-53.024991112404074, -22.604677747638988], + [-53.03128161973469, -22.60889099785496], + [-53.039000037077805, -22.618893164284252], + [-53.0391942118391, -22.618665883746033], + [-53.04565051938936, -22.62494099161695], + [-53.05627266401005, -22.63310226935039], + [-53.05758745049233, -22.63373844387716], + [-53.06383431107481, -22.636166348843737], + [-53.06955282924025, -22.638388907581003], + [-53.07519861269009, -22.64182022908274], + [-53.08441789779468, -22.655553594105104], + [-53.085778541387135, -22.657249859065857], + [-53.08826120841114, -22.658925412414053], + [-53.0882616394077, -22.658924144413124], + [-53.09013254068711, -22.65342087949156], + [-53.09197889321795, -22.645328340646085], + [-53.0950573691678, -22.63845808736024], + [-53.10183091510591, -22.626086971283275], + [-53.10557863184189, -22.622489094980917], + [-53.105146344988995, -22.621909436788464], + [-53.10866530208055, -22.615019706981393], + [-53.10981694766601, -22.604281961619282], + [-53.107822366350206, -22.595491546660288], + [-53.10639879030929, -22.593482951670964], + [-53.09826375214966, -22.582955679379054], + [-53.096323255626864, -22.579264682741773], + [-53.0779434471041, -22.553317806998102], + [-53.059621137571895, -22.53827327447415], + [-53.05847681706676, -22.53740951659654], + [-53.054633909732225, -22.53541946667345], + [-53.05172240145644, -22.534281781438125], + [-53.05016492595102, -22.533024724906134], + [-53.040275327098946, -22.527875256538902], + [-53.03874840924027, -22.52784628344057], + [-53.02494473812902, -22.524565954869285], + [-53.02110754733167, -22.522985096741508], + [-53.01483541399495, -22.521145477495768], + [-53.012062120315775, -22.518700476279196], + [-53.00753160907989, -22.51352675869555], + [-53.006265091132825, -22.51006837189862], + [-53.00562452871049, -22.509227223120853], + [-53.002873003383804, -22.502989787844193], + [-53.001690770520824, -22.501244975935155], + [-53.0001524916915, -22.49682199462646], + [-52.99864987516386, -22.49341506330161], + [-52.99762984088339, -22.492792937331366], + [-52.95923564277062, -22.477201536973276], + [-52.95560866301509, -22.47601839622283], + [-52.948665389336085, -22.473831901129227], + [-52.948119188001336, -22.47365989893072], + [-52.939133004588264, -22.47083007555974], + [-52.9347716706891, -22.469387251958587], + [-52.89950964587626, -22.457721816216935], + [-52.89568773031235, -22.456457443800687], + [-52.89568769931222, -22.456457433800875], + [-52.88866712288071, -22.45413374890824], + [-52.88631054466565, -22.453353762662065], + [-52.85831614853876, -22.44196292942832], + [-52.85523464524344, -22.43959262602276], + [-52.85499330861294, -22.43920653414291], + [-52.85472019290099, -22.439092622004683], + [-52.839927587526105, -22.415422242515756], + [-52.837920756628264, -22.4137100739052], + [-52.81888320297282, -22.397467859701973], + [-52.81141671746387, -22.39109769947166], + [-52.81141663246332, -22.391097627472032], + [-52.80868344444014, -22.388765236900422], + [-52.79889794735534, -22.378849184952877], + [-52.79879347132972, -22.378746923875262], + [-52.74630773539068, -22.34379360853742], + [-52.72503241962235, -22.33569940699235], + [-52.72474127331178, -22.33558863994206], + [-52.69560658921813, -22.315091417012745], + [-52.65736038261177, -22.304279749054988], + [-52.65581099740562, -22.303625018104015], + [-52.65581088640509, -22.303624971104384], + [-52.65074881884809, -22.301481957597368], + [-52.64627279906024, -22.298764030444698], + [-52.64538572035368, -22.297949292476737], + [-52.640507854979305, -22.29346921114408], + [-52.63867656338894, -22.29135071200716], + [-52.62999375980257, -22.2828759355575], + [-52.6281845427283, -22.281884297163394], + [-52.61304244464577, -22.276140657541355], + [-52.604906634207474, -22.273609174389716], + [-52.602463406336284, -22.272432499362875], + [-52.5979926679965, -22.269269143272734], + [-52.59597020266829, -22.266688594163732], + [-52.57985461905881, -22.252555007233457], + [-52.579659047310656, -22.252433961577108], + [-52.57671262420953, -22.251162469367653], + [-52.55930312432432, -22.24564533552734], + [-52.554500523604965, -22.244359043131894], + [-52.55394355132609, -22.244209890904326], + [-52.552429433130875, -22.24380442372229], + [-52.54908301044004, -22.24290876036879], + [-52.54255127024307, -22.240747602272045], + [-52.53382391335715, -22.236117868731252], + [-52.53195982540279, -22.234404590033495], + [-52.52370552704331, -22.229503240088366], + [-52.520668780188714, -22.228539812002882], + [-52.50545723846628, -22.225744808072378], + [-52.5039071189532, -22.225866309391698], + [-52.5035653224013, -22.225731737488786], + [-52.50140739160292, -22.224882119414684], + [-52.49924156876877, -22.22402939336485], + [-52.49350299187532, -22.220409231192964], + [-52.49261694547993, -22.219955541066803], + [-52.49039248044525, -22.218816531280773], + [-52.490313772054776, -22.21877622953597], + [-52.48818572650209, -22.21768751043573], + [-52.48468787447669, -22.213735741436587], + [-52.48467117308601, -22.21367928538994], + [-52.48417527920293, -22.21323488611443], + [-52.48000266099211, -22.20108998181865], + [-52.461146506590005, -22.189224981435014], + [-52.46114648258988, -22.189224966435095], + [-52.459231032385524, -22.187760294773614], + [-52.45696753614641, -22.186029486262296], + [-52.456656225325645, -22.18579143829222], + [-52.45559070688053, -22.18491641283488], + [-52.453404536657544, -22.18312108410251], + [-52.452971421037994, -22.182765400542117], + [-52.4462130559235, -22.177428550933293], + [-52.443534738099515, -22.17382116310939], + [-52.425288723818625, -22.157219007191827], + [-52.4154898850805, -22.149307662671966], + [-52.40865929227045, -22.142116980743516], + [-52.40863827249156, -22.142063256285294], + [-52.408147110542856, -22.141616107317546], + [-52.39638647688916, -22.118894255850947], + [-52.39237722922755, -22.115160693550198], + [-52.38890381521678, -22.113047057684476], + [-52.38576282584679, -22.111336283711427], + [-52.3793763845627, -22.108658335203373], + [-52.37768869100018, -22.107160059798375], + [-52.37746347745232, -22.1068154497183], + [-52.377176683824004, -22.106659213982496], + [-52.3604037124036, -22.083072797651813], + [-52.355601727356046, -22.077713352772793], + [-52.3472226650329, -22.064530319275157], + [-52.3453934453536, -22.061956566718607], + [-52.344811519916, -22.059978764653337], + [-52.339662223439426, -22.04830841379549], + [-52.33834835633775, -22.04201961659802], + [-52.33634920609091, -22.035442176564302], + [-52.33288776518745, -22.020818398273466], + [-52.32690816856487, -22.00278243258445], + [-52.32754657632984, -22.00128123907513], + [-52.32754892430161, -22.00127920370544], + [-52.32625132903298, -21.996864621930744], + [-52.32607156133429, -21.996580578891944], + [-52.325763955102445, -21.995206433447837], + [-52.318977864153666, -21.972113559993996], + [-52.31731043573009, -21.96926494289745], + [-52.316689695600225, -21.968310874375916], + [-52.31598867166323, -21.967233439805156], + [-52.31584303834528, -21.966757941933675], + [-52.301487413835375, -21.942226156197087], + [-52.2943073514451, -21.935700277302114], + [-52.288239846741746, -21.92913519647391], + [-52.28074211214024, -21.92330701774214], + [-52.27965064743783, -21.922066887382464], + [-52.27884596770343, -21.9191144136338], + [-52.27587173745281, -21.915898526696196], + [-52.275400766707705, -21.915414889120214], + [-52.27415011699824, -21.91505676893181], + [-52.271071047271704, -21.915313350148534], + [-52.26951580325903, -21.914979217932196], + [-52.264166749951706, -21.912781438671143], + [-52.26381042886022, -21.912317408325894], + [-52.26365545164355, -21.912281061589958], + [-52.258554384464134, -21.906382251942475], + [-52.25596143103413, -21.905754866342274], + [-52.24887570956437, -21.902762709509542], + [-52.24853531907103, -21.902325968659945], + [-52.2483644895564, -21.902262305030096], + [-52.233451413750984, -21.883810264938383], + [-52.233131318167345, -21.883507919368835], + [-52.22616733164639, -21.877400894808133], + [-52.20719815303167, -21.862621372713008], + [-52.19103063357394, -21.846627132479256], + [-52.190947943107524, -21.846502535591277], + [-52.19051973094353, -21.84612672748129], + [-52.19031795815352, -21.845553273795257], + [-52.189822971554655, -21.844807416583414], + [-52.18498070813598, -21.8307312918373], + [-52.184736880340395, -21.82968934906461], + [-52.18356123305869, -21.826347121911468], + [-52.18394360957977, -21.814442760437764], + [-52.162151883336584, -21.772977409796223], + [-52.16126903312216, -21.77087299345303], + [-52.16059195876347, -21.770310845592327], + [-52.14117189919404, -21.75653894449003], + [-52.14051757670597, -21.756212859198573], + [-52.13935692059953, -21.755775570768332], + [-52.13720906138658, -21.754966345741924], + [-52.13056038166775, -21.753192617684448], + [-52.12591966992877, -21.75231258865934], + [-52.12510479165774, -21.75173694562387], + [-52.11675429199368, -21.749508436944687], + [-52.112483083444, -21.750081794194244], + [-52.10425770673138, -21.74653657054876], + [-52.10333381725661, -21.745773991488612], + [-52.10181418822942, -21.743630578550512], + [-52.10180145686343, -21.743554584175076], + [-52.08620651821223, -21.723661168104137], + [-52.08242457115633, -21.721072162823464], + [-52.07696086675975, -21.715363042459458], + [-52.07691324778088, -21.715275303448276], + [-52.0764506011258, -21.714863655015403], + [-52.06689935617269, -21.696528796683776], + [-52.063932366633104, -21.691130890522068], + [-52.06333467378773, -21.690116999142436], + [-52.05629366566834, -21.677641736076612], + [-52.05528631151005, -21.675398201514977], + [-52.053725004297135, -21.672556753086635], + [-52.05289137080274, -21.670063491225555], + [-52.05117941625617, -21.666249579021212], + [-52.05033015461704, -21.663585530190893], + [-52.04951516262931, -21.659964809348057], + [-52.04829839648654, -21.656324911436755], + [-52.04947839257474, -21.643072922258373], + [-52.05163026403149, -21.639425997634643], + [-52.05256035612067, -21.637077115187992], + [-52.05603515644353, -21.631596528298232], + [-52.05695024339816, -21.63040899019828], + [-52.06274800556462, -21.620580758992585], + [-52.06883352418175, -21.598090713650603], + [-52.07100960605874, -21.596241662321273], + [-52.072894486698374, -21.593584188063225], + [-52.083292603065104, -21.58472162263245], + [-52.0846515242575, -21.583826355851116], + [-52.08615823573292, -21.58336758743234], + [-52.10212194568527, -21.569796950213934], + [-52.10325054735004, -21.559048722870052], + [-52.09592010788255, -21.542047195717522], + [-52.09293988459751, -21.537646579046985], + [-52.08839252321142, -21.533382570527706], + [-52.085812214660706, -21.528441899362164], + [-52.08079067069916, -21.522044966736114], + [-52.07850656994537, -21.51632952797306], + [-52.07774614624269, -21.51520621525617], + [-52.0670477592704, -21.505173346470755], + [-52.06692009302053, -21.50507449572835], + [-52.0646379649233, -21.504389935929098], + [-52.06010851623251, -21.503916119922103], + [-52.05753430277238, -21.504092678523026], + [-52.05208479284866, -21.50555582015194], + [-52.04297676119098, -21.507189921467486], + [-52.038059946295775, -21.509071388424903], + [-52.02230922538894, -21.511398053028397], + [-52.018525457572515, -21.512261385905607], + [-52.01852539657227, -21.512261399905867], + [-52.01435242384373, -21.51321298790057], + [-52.0008351410253, -21.51710960454768], + [-51.99740063083401, -21.516344462786922], + [-51.98762105665289, -21.51218356340347], + [-51.979469340272324, -21.50738443143451], + [-51.979083833417995, -21.507197186590787], + [-51.968370707868786, -21.502245307044515], + [-51.96806563804056, -21.501844939293314], + [-51.96786115980602, -21.501745600253418], + [-51.96689953034408, -21.500314535700376], + [-51.96399547118096, -21.49650305718062], + [-51.96312888779758, -21.494702854618996], + [-51.96218028283414, -21.493291002896797], + [-51.94915483228153, -21.469935200821382], + [-51.94863643860493, -21.469498252883245], + [-51.94183981525524, -21.464843224798667], + [-51.93659393822704, -21.462799799976725], + [-51.93098822403675, -21.45833164333289], + [-51.9300685838173, -21.45731554424475], + [-51.92914894359824, -21.456299446156283], + [-51.92907239264471, -21.45609719187841], + [-51.928639607318296, -21.455800685848395], + [-51.92724533598943, -21.451423064146745], + [-51.924689206907196, -21.44638398442115], + [-51.92457622881911, -21.446161262801045], + [-51.92435273584244, -21.445471980609987], + [-51.92372530348632, -21.443536891880797], + [-51.923526912844295, -21.442925028598705], + [-51.92293277993292, -21.441092640748487], + [-51.92287437815528, -21.44091252195982], + [-51.92228998821405, -21.437854384363266], + [-51.92133789789341, -21.43287210455156], + [-51.92030295273752, -21.429621553326985], + [-51.91816281115954, -21.41216627690561], + [-51.90553968439329, -21.383986214170147], + [-51.8696801265914, -21.35430940181293], + [-51.86922871141515, -21.35401377012754], + [-51.869066870132656, -21.353801704895552], + [-51.86871976235059, -21.353514341997275], + [-51.86852925675005, -21.3530972490946], + [-51.865727644517165, -21.349426045261374], + [-51.86242651525037, -21.342101102420067], + [-51.86171312071885, -21.338172216396767], + [-51.861020421045325, -21.336655243849847], + [-51.85847646625442, -21.300486961066525], + [-51.85338139132527, -21.283244618892457], + [-51.851907890694086, -21.28167931709435], + [-51.850217478107304, -21.27758959185763], + [-51.84983925494933, -21.276674533146863], + [-51.8496329588061, -21.274379198244908], + [-51.84927803679883, -21.27043021213368], + [-51.84913915154684, -21.26888494700931], + [-51.848470970863445, -21.266622920554585], + [-51.849768342797724, -21.265359995858148], + [-51.84977152771676, -21.265352870830725], + [-51.85098514344974, -21.264128928610674], + [-51.85106724687207, -21.26409554869456], + [-51.854318828737114, -21.260930087715185], + [-51.85486309267654, -21.258930483588628], + [-51.854710221480204, -21.257879780277253], + [-51.8547082124289, -21.257865970285962], + [-51.854691253995796, -21.257749411360447], + [-51.85467919268773, -21.257666516413373], + [-51.85465423505037, -21.257494973522935], + [-51.85464643385102, -21.257441357557163], + [-51.854778551845286, -21.25486748274439], + [-51.85478067471662, -21.25482611874744], + [-51.854856679807014, -21.254476269606062], + [-51.85566642411679, -21.25074901809998], + [-51.856016146628576, -21.24996454426777], + [-51.857061405180715, -21.2476198917808], + [-51.85761923280696, -21.246368607453622], + [-51.85871949944949, -21.24476070390082], + [-51.86363494667393, -21.226695847481107], + [-51.879677745603786, -21.1979018904224], + [-51.87571755906078, -21.18102912574672], + [-51.87894194089729, -21.148122974158106], + [-51.87588676510475, -21.136392962404468], + [-51.86593976762069, -21.13102366603455], + [-51.86500999091552, -21.131064759685323], + [-51.84505896983601, -21.131946553536675], + [-51.82405569363964, -21.12732357352361], + [-51.81492039904881, -21.12187291575869], + [-51.81475349721596, -21.121578766637896], + [-51.814410959488704, -21.121374391260833], + [-51.80817309954969, -21.110378123708674], + [-51.79013647293442, -21.102603342467628], + [-51.789965892636296, -21.102250429435774], + [-51.78962812835073, -21.102104807291408], + [-51.775601672132325, -21.07307989406072], + [-51.77243352547875, -21.0511067853696], + [-51.77121523392642, -21.042646208747684], + [-51.753168306987305, -21.014301161609083], + [-51.752593867077444, -21.01360085770642], + [-51.74932859616385, -21.01182094414096], + [-51.747341498839205, -21.009555119226], + [-51.7443450125932, -21.005777461472746], + [-51.7428823727393, -21.00190906239784], + [-51.74191419159173, -21.000579593419967], + [-51.72305086782944, -20.977572977410926], + [-51.722993205070594, -20.977520929507513], + [-51.722777742181265, -20.977326448467245], + [-51.71700540452715, -20.97360531530821], + [-51.71416058932306, -20.971942083535545], + [-51.711434475822635, -20.971567347314338], + [-51.68803183113356, -20.972868664053067], + [-51.68668342185596, -20.973308616668984], + [-51.686088543658855, -20.973502714305393], + [-51.686086661655, -20.973503328310528], + [-51.67919114936139, -20.9734285897331], + [-51.66714993870527, -20.971271268026655], + [-51.666198118947726, -20.971004603754924], + [-51.663154556436254, -20.969996174507937], + [-51.66011099492464, -20.96898774625874], + [-51.65535585807409, -20.965746059247916], + [-51.651750510025025, -20.96188011888036], + [-51.63871255357447, -20.95381030354387], + [-51.63677585617598, -20.953446773769524], + [-51.63330275562113, -20.95220717874761], + [-51.62863523179862, -20.94951394234751], + [-51.62405176919431, -20.94491721606494], + [-51.62390945041164, -20.944645656278183], + [-51.62354433475033, -20.94441958116281], + [-51.62289645908298, -20.942712725213067], + [-51.6213961959984, -20.93984990446191], + [-51.62014290266723, -20.935457882788445], + [-51.61895100088309, -20.932317317129463], + [-51.61446972889701, -20.897994648627865], + [-51.614141290487034, -20.89680360484842], + [-51.6140852577458, -20.89504911294883], + [-51.61343466443007, -20.890064449933245], + [-51.614379568733895, -20.88880950222032], + [-51.614475616009, -20.888424662482244], + [-51.615552623430375, -20.88657032982007], + [-51.61784668350546, -20.884204532596975], + [-51.62548725158483, -20.87405522500125], + [-51.630801351037825, -20.8497044762743], + [-51.63293397148881, -20.821544581813757], + [-51.631089776556244, -20.81256475029336], + [-51.63078759132151, -20.811647609377996], + [-51.630540799212994, -20.81089861320689], + [-51.6304952296391, -20.81076031235995], + [-51.63040341754068, -20.810500079664784], + [-51.63026707490962, -20.810113632117517], + [-51.62983248871112, -20.808881845560517], + [-51.62821476736316, -20.804296589930217], + [-51.62776206272218, -20.802305825565465], + [-51.62726202028332, -20.800106895371403], + [-51.62661328775058, -20.796750037808263], + [-51.62668582824164, -20.79620063170952], + [-51.627094397965614, -20.793106269023067], + [-51.62674566374147, -20.791407586508885], + [-51.62743963112599, -20.784683488036638], + [-51.62574920613636, -20.782082129080734], + [-51.62366049440267, -20.779136586328427], + [-51.62327158405531, -20.778269171871052], + [-51.62235507067901, -20.776858636481872], + [-51.63485587908611, -20.754835114888195], + [-51.62815862337536, -20.725067579183783], + [-51.59410462677364, -20.643834909974156], + [-51.57549648184728, -20.623787818923038], + [-51.57381224430349, -20.622513589765912], + [-51.56929470281744, -20.61948196266389], + [-51.56813862183925, -20.61883783834137], + [-51.56809501961979, -20.61880944646657], + [-51.56657645697496, -20.617820622825086], + [-51.564879857434306, -20.61671586869373], + [-51.552755662413226, -20.60882110345997], + [-51.533468246149745, -20.59747849946059], + [-51.53085278545051, -20.595276291025904], + [-51.528775632777936, -20.5935273370325], + [-51.521941856383336, -20.587773323782727], + [-51.521575397553406, -20.58737039249865], + [-51.52143524971972, -20.587276027878595], + [-51.501289929711156, -20.569200932581353], + [-51.5006852354099, -20.568701044307918], + [-51.50064548413597, -20.568622602019804], + [-51.5001787469143, -20.56820374404068], + [-51.49955274664947, -20.56646623680662], + [-51.498382398451994, -20.56415664038333], + [-51.496853737273845, -20.558974452586057], + [-51.494870187405326, -20.55346809407772], + [-51.4583646466175, -20.49700780908703], + [-51.4581506224122, -20.49686464743493], + [-51.45707431296756, -20.496144714483425], + [-51.45582345616359, -20.494499960158006], + [-51.45445939308974, -20.490964871727083], + [-51.449307794338125, -20.482992474868364], + [-51.44866526296736, -20.48247721845271], + [-51.43236616687641, -20.472263604880347], + [-51.43138420825668, -20.471828123281554], + [-51.42652393704913, -20.4696727478239], + [-51.423768901027984, -20.468450977497625], + [-51.42368654858087, -20.468385704731478], + [-51.42203289460228, -20.467075030428465], + [-51.41963548220885, -20.46570617215176], + [-51.419605575066655, -20.46568909623556], + [-51.41951354562932, -20.4656365494936], + [-51.41930971266068, -20.465520166065215], + [-51.41641880692138, -20.463869044170053], + [-51.416148469636624, -20.46371463792785], + [-51.416104999430075, -20.463689810049782], + [-51.4160876053474, -20.463679875098446], + [-51.41608175931959, -20.4636765361149], + [-51.41607679529602, -20.46367370112884], + [-51.41605149217571, -20.463659249199726], + [-51.41528439053016, -20.463221114349846], + [-51.415136832829006, -20.463136851763373], + [-51.415129439793816, -20.4631326297841], + [-51.41511698973467, -20.463125519819034], + [-51.41506206647365, -20.463094153972957], + [-51.41364117072128, -20.462282620955104], + [-51.413477563943836, -20.462189178413578], + [-51.41271215330643, -20.46175201755838], + [-51.41200796896014, -20.461349827531496], + [-51.40974198619258, -20.46005563787977], + [-51.409451659080936, -20.459681609060212], + [-51.40923603072406, -20.459558443515892], + [-51.403866694117944, -20.452640706572197], + [-51.40349526221043, -20.45191702708372], + [-51.3994201750313, -20.446246103013795], + [-51.39713994618949, -20.44198448285241], + [-51.38488333733328, -20.416675795923656], + [-51.38170324551865, -20.409444926420658], + [-51.37507180242748, -20.396515098811086], + [-51.362407841106844, -20.38558739399821], + [-51.36168642958682, -20.38502548434675], + [-51.361605113940776, -20.384894638254696], + [-51.361180774016844, -20.384528427682525], + [-51.36048223063957, -20.38308776467492], + [-51.35848236734495, -20.379869584756207], + [-51.35699271385278, -20.37589059484819], + [-51.35082490735287, -20.363167568419655], + [-51.34350322679179, -20.355623204498915], + [-51.34210499781206, -20.35439357458498], + [-51.34179488251605, -20.354174093496678], + [-51.33014701166986, -20.345933941006134], + [-51.321906710346035, -20.340104434978176], + [-51.31600514672344, -20.337274939193456], + [-51.299799881585734, -20.33026879734458], + [-51.29614615543375, -20.328967428642528], + [-51.28745194732658, -20.327061862461097], + [-51.21568195869763, -20.314699908689075], + [-51.19807341362842, -20.312756393720424], + [-51.181710493806406, -20.31025849657836], + [-51.180000672618704, -20.309914220169038], + [-51.17852086672627, -20.30977126712188], + [-51.17719267645219, -20.30934737970707], + [-51.17280715248047, -20.3084310664808], + [-51.16456769482885, -20.30649483061776], + [-51.16287523921286, -20.305990043176564], + [-51.16122753540167, -20.305709768587782], + [-51.14562855260764, -20.30078537960383], + [-51.1417454765476, -20.299332357082218], + [-51.13742935238351, -20.297947986696773], + [-51.13287535687384, -20.296017276004054], + [-51.123042365424645, -20.29073046469461], + [-51.11804394250301, -20.28743038532501], + [-51.115943209623715, -20.285570307107694], + [-51.11594317662352, -20.285570277107865], + [-51.11444743767099, -20.284079260244063], + [-51.11359858206911, -20.283394129571825], + [-51.112896975265755, -20.282827847495657], + [-51.11271337527046, -20.28267965999898], + [-51.11229375499578, -20.282340976149506], + [-51.11185021770426, -20.282020946360973], + [-51.10985046337307, -20.28057804182229], + [-51.10146561906316, -20.274528064706878], + [-51.09676114285116, -20.27082421957266], + [-51.095295604998086, -20.26967039757914], + [-51.09392819307887, -20.269068418261238], + [-51.0936236774829, -20.26884071509209], + [-51.083512976504984, -20.261280371660384], + [-51.07943157663732, -20.258739070720676], + [-51.06962378369895, -20.25053542451572], + [-51.069354081820066, -20.250212927754944], + [-51.06911967674765, -20.25003780452421], + [-51.06882001092473, -20.249574305818335], + [-51.06585079594588, -20.24602370396727], + [-51.05939337275223, -20.2356467001369], + [-51.05892575484285, -20.23426882519972], + [-51.058220067239354, -20.233177055854867], + [-51.056846244075246, -20.22814695802588], + [-51.05431954331288, -20.220708689150584], + [-51.05142345581997, -20.208288725391288], + [-51.04876853285387, -20.19856448261595], + [-51.04508538982581, -20.18960286380082], + [-51.040263728145334, -20.178707606679744], + [-51.038206902464594, -20.17514478346004], + [-51.03707041625049, -20.17113541587409], + [-51.03504142237417, -20.16747468158755], + [-51.03467925526697, -20.165427441757714], + [-51.0316527596255, -20.156909896609772], + [-51.029230428596655, -20.15101273807048], + [-51.001147547318475, -20.096323723778077], + [-51.00104468340748, -20.09474558389383], + [-51.00043139321357, -20.085373360623922], + [-51.00058456533178, -20.085152936653525], + [-51.00058447179555, -20.0851527451273], + [-51.000431379935485, -20.085373053601696], + [-50.98800519269813, -20.066798009009297], + [-50.98129941145924, -20.058342616198576], + [-50.97882201118578, -20.05306731225314], + [-50.96605776411215, -20.033977414725378], + [-50.9650112055193, -20.033537088326657], + [-50.95853588770717, -20.033184553867827], + [-50.95601286138757, -20.033881619238695], + [-50.953637577647996, -20.034363240348494], + [-50.94993971512003, -20.033186159044366], + [-50.947513761630105, -20.03173857146841], + [-50.945975521581, -20.03021241559901], + [-50.94433043774723, -20.027836231086393], + [-50.9442950051539, -20.027785075063786], + [-50.94382714487844, -20.0273388235386], + [-50.938681315848534, -20.02107974888694], + [-50.93767576452736, -20.020168116040683], + [-50.935076971161585, -20.016695256504725], + [-50.93393892824137, -20.015310822187818], + [-50.93226677839813, -20.014340428581413], + [-50.92791699415788, -20.013245517930976], + [-50.9251752578539, -20.011840934149145], + [-50.91236244141433, -20.003565326009916], + [-50.912341272344285, -20.003330457024784], + [-50.91185933184374, -20.00306791125923], + [-50.90824295170599, -19.99460204873405], + [-50.899289214797626, -19.990986791875976], + [-50.89765886190114, -19.990641601110237], + [-50.89275209831943, -19.990700141753244], + [-50.88939760921132, -19.991039296368207], + [-50.88645820890051, -19.990875878956366], + [-50.88492409503727, -19.990789412916364], + [-50.881986961219326, -19.991142065451676], + [-50.876635488607604, -19.991311446219346], + [-50.873332936130474, -19.990083056828713], + [-50.86843041785606, -19.987124715701334], + [-50.86351190235915, -19.982715132731165], + [-50.85923476756519, -19.97747639888181], + [-50.851710368022474, -19.97077375857585], + [-50.84608314322973, -19.968472340375246], + [-50.84454298334553, -19.968134279696898], + [-50.83701155394535, -19.966487296163766], + [-50.83545848530421, -19.96580263920461], + [-50.826067596149024, -19.961662747625354], + [-50.817795269083796, -19.958819845054894], + [-50.80509425076516, -19.950770591211036], + [-50.79646022968549, -19.94340828586576], + [-50.79262526737181, -19.94118607828288], + [-50.787410172815115, -19.938904243452573], + [-50.784060430052385, -19.937716195989946], + [-50.73587168962324, -19.930675836416665], + [-50.73358087257282, -19.92992649730186], + [-50.72557460293585, -19.92730561186107], + [-50.71680650019987, -19.92370141940811], + [-50.71355850091335, -19.922127651771067], + [-50.70945714348918, -19.920708572290224], + [-50.68893664027395, -19.917118302642596], + [-50.68686974867895, -19.916644123918292], + [-50.681004735126905, -19.91529897188374], + [-50.67666008568561, -19.91342990401843], + [-50.665544007792604, -19.91086666935321], + [-50.66178252650788, -19.909489026965566], + [-50.65856319651275, -19.9076343332295], + [-50.65256106422431, -19.901938396758172], + [-50.64786662366453, -19.8958041179899], + [-50.6404383125443, -19.88134371953072], + [-50.6361559428793, -19.875074317045605], + [-50.636119917843025, -19.875039082260816], + [-50.61515592515189, -19.861681862790952], + [-50.61463576538333, -19.861527712784905], + [-50.610226785372845, -19.860223501964427], + [-50.60780544506678, -19.858454502156803], + [-50.60600337932548, -19.856575464793142], + [-50.605830640661736, -19.856265743360566], + [-50.60550292908562, -19.856077671761724], + [-50.58631771206195, -19.82679482459425], + [-50.5749597106269, -19.814976695574206], + [-50.57362440599492, -19.814429508074568], + [-50.56499514919657, -19.813786486774752], + [-50.56249404835473, -19.814060432192555], + [-50.55808063675726, -19.813614736275518], + [-50.54875807213114, -19.811677900719157], + [-50.545331481836286, -19.81063212934638], + [-50.53860213488019, -19.806487028370473], + [-50.531725814751304, -19.80279530672946], + [-50.52928404905169, -19.801483689580824], + [-50.522883523696386, -19.79879663863241], + [-50.5176706687285, -19.796895469103724], + [-50.51136541083682, -19.79625132487818], + [-50.50315159140263, -19.796412185378998], + [-50.49942799672793, -19.79627175767753], + [-50.49808152101292, -19.795685268059596], + [-50.492398010344516, -19.790594489311232], + [-50.48815029275091, -19.787223652896692], + [-50.486656847800866, -19.78613821290149], + [-50.48388277488393, -19.784686446876524], + [-50.47454837575775, -19.780767785553593], + [-50.47237576283768, -19.780143300685136], + [-50.46993267824151, -19.780362707387336] + ] + ] + }, + "SE": { + "name": "Sergipe", + "coordinates": [ + [ + [-36.39391857764863, -10.500373496970136], + [-36.39390952269726, -10.504085954717382], + [-36.39992334353362, -10.511813815315959], + [-36.399992737154406, -10.519957863905834], + [-36.40628370272587, -10.517729392025814], + [-36.43565869829584, -10.521212782427678], + [-36.497717896141445, -10.538495665781456], + [-36.600323508226346, -10.580053175842481], + [-36.62047576306366, -10.589475957482065], + [-36.67369211716016, -10.628804304064882], + [-36.703878777312845, -10.642152152518301], + [-36.73395911803125, -10.655674139103786], + [-36.808330915291954, -10.704636577021656], + [-36.844201769006546, -10.735316990720431], + [-36.85410424516131, -10.74362657475497], + [-36.91308651162571, -10.805820960625512], + [-36.933036847950504, -10.826862797145436], + [-36.93632229669044, -10.830429581289739], + [-36.95690515079061, -10.855588739487592], + [-36.991658486314996, -10.900175919666149], + [-37.012358436803716, -10.927620070486519], + [-37.020092817356264, -10.940053476103168], + [-37.02196581818712, -10.943069698453588], + [-37.026674606033055, -10.951528971144004], + [-37.0262351166796, -10.964144478313612], + [-37.0561074707057, -10.998156802392236], + [-37.13093516956741, -11.10533646023387], + [-37.15445668884362, -11.1520492341205], + [-37.157479584682974, -11.15787357509459], + [-37.151893309984644, -11.16272820307442], + [-37.1977643714893, -11.212910845831967], + [-37.204934795804405, -11.220644384176637], + [-37.26126730246234, -11.288876998618823], + [-37.280993489914465, -11.320031426808713], + [-37.293166165782694, -11.345063668214868], + [-37.31931904200716, -11.426975936736799], + [-37.32569469340268, -11.431876829861071], + [-37.32999495145929, -11.445140552740352], + [-37.34118494283978, -11.442373582658494], + [-37.352766979013715, -11.442457423729627], + [-37.37329148139569, -11.454665803598997], + [-37.39256744434427, -11.478945523883588], + [-37.403114009721236, -11.488460496230026], + [-37.41194080543535, -11.49514322415083], + [-37.45021037222015, -11.520422106940565], + [-37.463722197228414, -11.523527507233448], + [-37.503624320101025, -11.524488187783962], + [-37.50973418846928, -11.530443456044459], + [-37.51612455757603, -11.535887512327704], + [-37.519933535821444, -11.548882364636356], + [-37.5529124397821, -11.547561713060114], + [-37.55855989667744, -11.550872413492542], + [-37.562316658210754, -11.543259729473904], + [-37.5688857757246, -11.539896503538136], + [-37.573786314863106, -11.542632393074346], + [-37.57258357975811, -11.548787631634806], + [-37.5788920382379, -11.55202805857619], + [-37.58569774871678, -11.542370881832444], + [-37.579165135307505, -11.534412185650353], + [-37.58148455987857, -11.53116620222052], + [-37.589411279103196, -11.52818143604091], + [-37.603360962969596, -11.540339117965814], + [-37.6086204931344, -11.536382272938562], + [-37.61666897385415, -11.538102563055952], + [-37.628202378347076, -11.529731268633256], + [-37.63196361729542, -11.518822535879389], + [-37.63711948130556, -11.517995538280646], + [-37.64391799171407, -11.524262304979903], + [-37.651736084091176, -11.51832435532324], + [-37.653850574614516, -11.529273828180697], + [-37.657502840961605, -11.533266628561238], + [-37.66494141402245, -11.5332617662707], + [-37.661890853206074, -11.543482514204271], + [-37.67260799269927, -11.559477904984567], + [-37.67019778123019, -11.564056391959816], + [-37.673555466645304, -11.56867867778645], + [-37.68473021245535, -11.562042564023738], + [-37.68820795389473, -11.566241016999998], + [-37.700438942312665, -11.562374525831574], + [-37.69583585727458, -11.549456315079107], + [-37.69654527660274, -11.545067289035899], + [-37.70287181771388, -11.540390309783238], + [-37.71229932885631, -11.55271905912471], + [-37.71942603147259, -11.550097934084322], + [-37.728014786236905, -11.552787890031308], + [-37.73108801480843, -11.537555411815024], + [-37.74856794526993, -11.538467761967876], + [-37.759632343797044, -11.525005127800156], + [-37.76337391807095, -11.524707045280099], + [-37.763250807146534, -11.528523332183335], + [-37.77070896795166, -11.531482972819498], + [-37.7750302775707, -11.524495516668294], + [-37.791172074272744, -11.523778314023003], + [-37.79511504399565, -11.51861845738333], + [-37.80081964464719, -11.520502534659071], + [-37.812344138439805, -11.516074921248665], + [-37.819588083290746, -11.501704989742445], + [-37.81853827743158, -11.499348059943319], + [-37.8132320981548, -11.501365548687929], + [-37.80901238654199, -11.496972438447896], + [-37.816290755344546, -11.492034465526554], + [-37.82490615882751, -11.491724582264643], + [-37.83310018875127, -11.483080383533714], + [-37.84015148165314, -11.48169394785981], + [-37.848452744121566, -11.469947497827441], + [-37.863135955326584, -11.467445133378405], + [-37.86371715207425, -11.455480309378208], + [-37.86315831477839, -11.452702130754663], + [-37.85348301208707, -11.45197642922913], + [-37.85258496328249, -11.446370100944161], + [-37.848466286151925, -11.444040991150096], + [-37.850864115358256, -11.440264070131335], + [-37.8678093133982, -11.44251963010137], + [-37.870145792919615, -11.435827387498914], + [-37.88108756116396, -11.433446666129504], + [-37.874246935135, -11.428326970838233], + [-37.8661298445943, -11.42870901297916], + [-37.86795241936883, -11.426292686794618], + [-37.883168101314375, -11.424919488639977], + [-37.892022847450285, -11.436443927745351], + [-37.8937592651194, -11.433770627200474], + [-37.90034570249745, -11.437090949467231], + [-37.90232699408649, -11.428114651381252], + [-37.90743597548503, -11.426756893774952], + [-37.90396439907982, -11.423041049122391], + [-37.90651321407413, -11.420215082551916], + [-37.90518461582713, -11.410372728424685], + [-37.9073674054504, -11.408205778003094], + [-37.91438990408723, -11.408171310205361], + [-37.91705312031752, -11.403038061758387], + [-37.92905499929235, -11.401967267119634], + [-37.9283887102629, -11.409935429700361], + [-37.93530523809902, -11.413629821823562], + [-37.936722173262154, -11.422611036691888], + [-37.94206132629385, -11.423268983495314], + [-37.945143367023455, -11.42302700479652], + [-37.94287274076869, -11.418640871474377], + [-37.945951952033504, -11.413324667358177], + [-37.955956988521805, -11.407559526525917], + [-37.95119948012258, -11.404472091202345], + [-37.95259713017238, -11.395914427371553], + [-37.95803334495695, -11.3965207924869], + [-37.96104246007987, -11.401781412627631], + [-37.96562887537675, -11.402788817691363], + [-37.96516204244814, -11.393165031433346], + [-37.96793177461872, -11.390558481884504], + [-37.97796060679882, -11.3935947274624], + [-37.981113003834416, -11.385360145798364], + [-37.9687720379658, -11.381874836739483], + [-37.969780021258636, -11.372979262582549], + [-37.97295553366083, -11.373815082014815], + [-37.9787982913936, -11.365803648407114], + [-37.98251835983118, -11.348216851171562], + [-37.99004098930076, -11.341794493575058], + [-37.993633093618726, -11.343428851401022], + [-38.00014488318497, -11.339355665860753], + [-37.9983199400457, -11.335854269507665], + [-37.98790141573521, -11.331612450454424], + [-37.99869809746886, -11.322373913121018], + [-37.990935385424834, -11.320920010197591], + [-37.99234685622863, -11.312800032401032], + [-37.995800488022645, -11.312386085552202], + [-38.00141567797354, -11.303103899356026], + [-38.00349600335267, -11.292783079204776], + [-38.01079066365612, -11.294085781535129], + [-38.01492802106971, -11.285695725077902], + [-38.00437283042586, -11.286198136984632], + [-37.99292218260244, -11.279487642483307], + [-37.99335807387977, -11.272975187325402], + [-37.987357563488004, -11.271973088357655], + [-37.98632436972515, -11.267182390220201], + [-37.99094202218175, -11.266254315995395], + [-37.996000330043046, -11.259528359665094], + [-37.987088608987385, -11.253744040013535], + [-37.98426996151522, -11.247826166387668], + [-37.9874775984027, -11.245958316093333], + [-37.99012310441957, -11.248702249034189], + [-37.99369277884112, -11.240504727616713], + [-37.98665931742078, -11.237541204662469], + [-37.99094669802776, -11.228628044359795], + [-37.97785332751765, -11.221953141887148], + [-37.97748410567452, -11.214730432947176], + [-37.98194287780571, -11.21036239218057], + [-37.979324903103524, -11.205230253009557], + [-37.98126747039493, -11.19890522508154], + [-37.97413536853662, -11.195360355896351], + [-37.98012435251827, -11.19191033127009], + [-37.984934254942274, -11.195918630721282], + [-37.9873544324405, -11.196043703371238], + [-37.99642210372442, -11.19111825702824], + [-38.00085932483055, -11.195121287904085], + [-38.01395867823702, -11.18479762143906], + [-38.02323060412823, -11.17797805563975], + [-38.04682089419059, -11.178711138403873], + [-38.061769335374926, -11.172128549670267], + [-38.06243972153298, -11.164099969652774], + [-38.066784656417, -11.16092048561055], + [-38.066360109415214, -11.14912781779972], + [-38.07078203336672, -11.142342657438716], + [-38.06515726542923, -11.131473318144044], + [-38.065486674597466, -11.123082521551044], + [-38.06916618635537, -11.119087231905837], + [-38.08384612513948, -11.11974796664168], + [-38.08915177860421, -11.115268678650544], + [-38.08895691398826, -11.106339760192297], + [-38.09400837467055, -11.101837452573314], + [-38.0922341682779, -11.09839586978745], + [-38.086422956167375, -11.097764725088794], + [-38.074918820517404, -11.076572873030486], + [-38.081375607808006, -11.064420697707293], + [-38.08451485442858, -11.065245182617335], + [-38.08530002387108, -11.060266373499807], + [-38.09092697233963, -11.058085897128704], + [-38.0911081318945, -11.051626748492787], + [-38.09634372844416, -11.049556970314287], + [-38.10032035132688, -11.04150443737281], + [-38.09805905563002, -11.038789206374142], + [-38.105900782766824, -11.025873676129098], + [-38.10099175265789, -11.020683201433718], + [-38.10175865846584, -11.015092988355255], + [-38.12110973952405, -11.007395904566946], + [-38.1249770673492, -11.010206763439275], + [-38.123865426479064, -11.018361931250643], + [-38.1293794941462, -11.018905630564024], + [-38.13993350249574, -11.009035506765787], + [-38.14412213331635, -11.00231689348834], + [-38.14945288775944, -11.001536099889218], + [-38.18056171869253, -10.974769333428656], + [-38.17991637802542, -10.969753070665496], + [-38.18740332096004, -10.962659511144931], + [-38.18034392066434, -10.950302478272913], + [-38.180947324085395, -10.944230488087891], + [-38.201049649377126, -10.938421641551296], + [-38.20283177257442, -10.935360568090692], + [-38.199182766702194, -10.92741532639329], + [-38.20557677679, -10.922024256662096], + [-38.21116187622116, -10.931267433876334], + [-38.21517314049664, -10.923561382181914], + [-38.2263756215674, -10.916613587316396], + [-38.23014875010007, -10.894281653463233], + [-38.23648980896764, -10.881674222112105], + [-38.237809312953814, -10.859540047518133], + [-38.232226363848724, -10.83994290918315], + [-38.2396021929697, -10.826410695566512], + [-38.24294746971937, -10.827996304075896], + [-38.24507813223008, -10.823008072295735], + [-38.23498994506337, -10.812134331136129], + [-38.23668115045392, -10.808028280129852], + [-38.23638068292751, -10.796267957122412], + [-38.23310753920003, -10.79316449190086], + [-38.21847605619524, -10.782568358280033], + [-38.210376608493775, -10.756653773161352], + [-38.21039248774655, -10.756613520375412], + [-38.21745987404401, -10.73824391825288], + [-38.218155545047516, -10.736266490251264], + [-38.215456694419636, -10.725083363940946], + [-38.210833923726675, -10.717267078600317], + [-38.199019110044894, -10.711022462826714], + [-38.186332140909094, -10.707518260670797], + [-38.175387666179454, -10.706294563395403], + [-38.170395534097125, -10.712362565999774], + [-38.156764909136584, -10.712554801439873], + [-38.14513848319403, -10.717934800532285], + [-38.12293504746185, -10.718383965311924], + [-38.11246224787187, -10.713283055217243], + [-38.10076407518808, -10.712887241170508], + [-38.06765852534728, -10.715697263948243], + [-38.04929255252335, -10.705974448365565], + [-38.04712012698056, -10.69353696446641], + [-38.04212627825121, -10.700823676618988], + [-38.04070313356357, -10.702901220260728], + [-38.03408970609714, -10.71254913150003], + [-38.021462186338134, -10.730966350917774], + [-38.012638777250345, -10.735270896047478], + [-37.9908616725876, -10.756971414797773], + [-37.98522321184946, -10.759114736649753], + [-37.97451880248154, -10.755246096188333], + [-37.972643914352375, -10.754568460163881], + [-37.9395709678693, -10.741337407996541], + [-37.92027423372285, -10.733616722348474], + [-37.909300888978535, -10.729227450171628], + [-37.901040814117934, -10.725922921715897], + [-37.898227495197816, -10.72479663522698], + [-37.88220773390686, -10.718387886121462], + [-37.86702975540828, -10.712315026896416], + [-37.84494483397317, -10.70347970019127], + [-37.844533613339244, -10.703315360292198], + [-37.82886482073604, -10.697046604881143], + [-37.81396600339356, -10.691085726632782], + [-37.814898036795626, -10.685106818260678], + [-37.82121521765756, -10.644548635389063], + [-37.83050445287698, -10.58478748094599], + [-37.83051292064596, -10.584732122918705], + [-37.82591730437887, -10.580388055685326], + [-37.831561940191065, -10.579006718475345], + [-37.83067753179327, -10.573058583825402], + [-37.835366834208145, -10.57116441875012], + [-37.83314984821514, -10.560633477688599], + [-37.83969891157665, -10.556109732485035], + [-37.84060953737331, -10.549599777918301], + [-37.831823858329784, -10.551359800229486], + [-37.827979998148884, -10.547665285648293], + [-37.829443444460615, -10.54128661531165], + [-37.82382404376452, -10.538561982641799], + [-37.819558585968885, -10.539475250306214], + [-37.82234331478897, -10.531004998195163], + [-37.8156773080689, -10.517430368343971], + [-37.81706374547892, -10.513126562009253], + [-37.813085628498854, -10.508520839628062], + [-37.81734765052154, -10.503980055244414], + [-37.82109548780482, -10.484690022862399], + [-37.84938836193264, -10.443121658607971], + [-37.858930099464004, -10.430241174580141], + [-37.851208180268756, -10.416128389250451], + [-37.85324517187369, -10.406526375361125], + [-37.83732187245965, -10.401065186059856], + [-37.842565893734545, -10.398538121723172], + [-37.84066336879077, -10.389936640093405], + [-37.83362988168349, -10.385380985827736], + [-37.83902424148573, -10.379246992896954], + [-37.834111239576615, -10.380153871072139], + [-37.83073249396079, -10.37500715315767], + [-37.82412040836736, -10.378035345128474], + [-37.822093925687064, -10.372353982222377], + [-37.813062614037136, -10.366244229808085], + [-37.807737069256675, -10.36668999117615], + [-37.78765019358554, -10.354520299396059], + [-37.785708036091535, -10.348769072882261], + [-37.77662047791533, -10.344277195465372], + [-37.762566031492156, -10.344464800381086], + [-37.74361273840231, -10.337786637766872], + [-37.73490898726655, -10.332843209370424], + [-37.74137912861729, -10.317967708510567], + [-37.74155903487482, -10.317381493457667], + [-37.765736082087244, -10.196253126298995], + [-37.780197679741704, -10.187909199490313], + [-37.78296688759764, -10.180676584414572], + [-37.774413172476926, -10.144832148861719], + [-37.77718499610375, -10.13383356944546], + [-37.7812292906772, -10.12820655309312], + [-37.798316176311324, -10.109068936605638], + [-37.80977223178316, -10.082946072671207], + [-37.821005289952794, -10.05732746212309], + [-37.82393092002298, -10.035842485122012], + [-37.823962879332335, -10.03457017197109], + [-37.82333187320343, -10.01569744554449], + [-37.8332548144341, -9.998383527244838], + [-37.84963301607549, -9.993147414761298], + [-37.875483895679494, -9.978808988747458], + [-37.88144082856418, -9.980765778712067], + [-37.91555334472492, -9.97589525341962], + [-37.922189262286594, -9.97325473455514], + [-37.92736952797211, -9.965620628269415], + [-37.93671110369906, -9.966055550335533], + [-37.94957793657855, -9.971493536499763], + [-37.957496606371514, -9.971319980911078], + [-37.968366360313574, -9.962821853011166], + [-37.98795383232173, -9.921873375947369], + [-37.997686888897356, -9.916749665913509], + [-37.99780013932175, -9.910841535205748], + [-37.991850530391105, -9.902663548021186], + [-37.985738184052394, -9.889897683477642], + [-37.98257471298543, -9.868833444418625], + [-37.97674561524788, -9.860552668347248], + [-37.972965371452915, -9.848164804782837], + [-37.97661886674486, -9.842134178951698], + [-37.97463393993293, -9.83007626921335], + [-37.96645974892058, -9.81992707396413], + [-37.966703115830676, -9.816088472888362], + [-37.97341970742656, -9.814502096470624], + [-37.99776579890274, -9.803385636156635], + [-38.0171798092499, -9.787454949970499], + [-38.0201488228449, -9.778005006794421], + [-38.0282339011235, -9.776114450555534], + [-38.03159587531225, -9.771072120649645], + [-38.02987828435077, -9.765538370893697], + [-38.033641196839795, -9.760162549511168], + [-38.0391213686583, -9.734534661675337], + [-38.03978581554359, -9.733405684144637], + [-38.04338673822543, -9.712269452583145], + [-38.041852450318075, -9.691421239395508], + [-38.039931894541816, -9.686628887961], + [-38.02501746904144, -9.682915075874565], + [-38.0222037481767, -9.666830779979543], + [-38.00703976570442, -9.651765453474953], + [-37.997105722063154, -9.65042961793608], + [-37.99305197857602, -9.656855491507663], + [-37.99039724490119, -9.655998067995974], + [-37.99055149102835, -9.650423720029723], + [-37.987908217634185, -9.64742838345133], + [-37.99014293810849, -9.641699661916059], + [-38.00812116103035, -9.636455085863702], + [-38.00877569607472, -9.63181637811003], + [-38.01594514497341, -9.629422398135786], + [-38.018735444889664, -9.623591004549908], + [-38.0353206864202, -9.612681127422311], + [-38.040537576502906, -9.602619629629674], + [-38.03910982758282, -9.58351322783942], + [-38.03687009992152, -9.581155460235816], + [-38.04113255474759, -9.576222615796013], + [-38.04030484117913, -9.572484413887768], + [-38.03175537842079, -9.568096221202987], + [-38.03003024278716, -9.574507747840142], + [-38.026818222172516, -9.574913680857913], + [-38.02017551270173, -9.561888463834851], + [-38.01807674028365, -9.552414917479615], + [-38.02307510867198, -9.549104245182706], + [-38.021886773101784, -9.541039883120048], + [-38.01391891944164, -9.535002021761214], + [-38.013178177487376, -9.528385069259725], + [-38.00332047433408, -9.515065718648888], + [-37.98936083854769, -9.52739448520072], + [-37.95632599229841, -9.534118424225612], + [-37.917174701617334, -9.548989812137872], + [-37.89417283984187, -9.539562838851667], + [-37.886201089334534, -9.550202362178906], + [-37.84225753378364, -9.579452220851767], + [-37.83756845861332, -9.583318048552844], + [-37.83314217504554, -9.594921812356745], + [-37.82380673578377, -9.59133194856597], + [-37.81827992792873, -9.592929252418246], + [-37.80709967772943, -9.6101400746159], + [-37.793131969407995, -9.620643250202976], + [-37.787717526530656, -9.633077692919155], + [-37.78512009892186, -9.63865555262054], + [-37.77870854525794, -9.638754492044916], + [-37.746907170296964, -9.625781924720416], + [-37.737082258495825, -9.627024990329167], + [-37.71180049728359, -9.631334265018927], + [-37.68691051940106, -9.64461712709945], + [-37.68084646616329, -9.64807209646065], + [-37.6708842068746, -9.656677505494729], + [-37.66651080913581, -9.666078874647713], + [-37.660361459393584, -9.677300632821137], + [-37.65686860039044, -9.683672935128351], + [-37.64511960559783, -9.691724954120357], + [-37.60381640191163, -9.71826459287864], + [-37.60195785725043, -9.719250213440551], + [-37.58172503673606, -9.734117016980743], + [-37.57193429971479, -9.73875903516963], + [-37.5535685092257, -9.740687558319252], + [-37.527646472635645, -9.744153741858822], + [-37.52425029892752, -9.744932148409786], + [-37.47373771843512, -9.746871973324911], + [-37.466891379865004, -9.7495588916467], + [-37.4503250633048, -9.753379205565277], + [-37.41779235248069, -9.762990841301242], + [-37.40892546140158, -9.768563390595062], + [-37.3976377863996, -9.777575374107926], + [-37.37302430455189, -9.784192103258901], + [-37.362849907268156, -9.786918916690174], + [-37.34834673189003, -9.793154965674777], + [-37.34010335727701, -9.800567295380539], + [-37.32115683575601, -9.820495620101271], + [-37.31171795049345, -9.824527665543197], + [-37.297234370767285, -9.827633301292831], + [-37.28545616742687, -9.830996713987975], + [-37.26423619240992, -9.850468367104934], + [-37.25697309177673, -9.86030240260467], + [-37.24722893176085, -9.884678724630179], + [-37.235577803313916, -9.896071295666063], + [-37.226627623011744, -9.899509759305174], + [-37.19533179658688, -9.898088142210598], + [-37.15300170100624, -9.900886094332698], + [-37.13268125157411, -9.913833444638973], + [-37.080711384053544, -9.961317165083322], + [-37.07511459711814, -9.966720915786494], + [-37.06528260633403, -9.97575650825326], + [-37.06258220486056, -9.97790401172007], + [-37.06184226679473, -9.978492196467455], + [-37.04424822477241, -9.98872568305704], + [-37.02995424899043, -9.986324095413186], + [-37.00555532496499, -9.976260158376448], + [-36.99491814013946, -9.975404994776133], + [-36.96764175711828, -9.992915173908914], + [-36.95912204654809, -10.01115764101624], + [-36.95847707122715, -10.01296308668761], + [-36.957911525251134, -10.014547665674547], + [-36.95788045775514, -10.01463291861814], + [-36.9575503405654, -10.01555825415794], + [-36.95644948185974, -10.02365020981579], + [-36.95644970740854, -10.0237309272513], + [-36.95913790791544, -10.050562829939034], + [-36.95394187082236, -10.071681466540085], + [-36.952297679167124, -10.074821441285764], + [-36.95085524485312, -10.077573896991604], + [-36.94713640578546, -10.086582318661748], + [-36.930612092339054, -10.105803313809467], + [-36.92159960641296, -10.128346032149166], + [-36.9185634118404, -10.132185277137236], + [-36.918459385953575, -10.132283347122826], + [-36.91093150643292, -10.137975584619912], + [-36.88764261081876, -10.143054101375252], + [-36.880634619650806, -10.145100759434232], + [-36.86741128464145, -10.157584337585586], + [-36.84864513712212, -10.162819561629318], + [-36.847302806645665, -10.176304794580645], + [-36.84715680274785, -10.180172244828816], + [-36.846623075007734, -10.186549610562375], + [-36.84568935086579, -10.189432793409638], + [-36.835694518637396, -10.204108965574672], + [-36.819690835585206, -10.21538014938366], + [-36.818937836139504, -10.2158737812072], + [-36.80845180000004, -10.220908387347423], + [-36.77690702205392, -10.225962983017823], + [-36.75621533050547, -10.23176886382663], + [-36.75078243592113, -10.237499103307522], + [-36.75619489208721, -10.24637719861375], + [-36.74459812777524, -10.252194031714751], + [-36.73661415234246, -10.252098878815278], + [-36.72043340905058, -10.26497580465887], + [-36.70202940402439, -10.271006023490624], + [-36.68514478569463, -10.275290813487212], + [-36.681702164377704, -10.27349463986284], + [-36.67941124857845, -10.269843582431852], + [-36.65797940944219, -10.265365767175696], + [-36.644508001382974, -10.252573535123494], + [-36.63262351822694, -10.253598776642713], + [-36.631012794872746, -10.254038839916852], + [-36.625446966428925, -10.256408871740048], + [-36.62197952462003, -10.25924066157445], + [-36.61227355147693, -10.271040306150631], + [-36.59959625283698, -10.281906900632446], + [-36.595544717873125, -10.28415311984269], + [-36.591221722116465, -10.287416267699781], + [-36.588988112418825, -10.301860424850572], + [-36.57416976043501, -10.315262848554765], + [-36.56596493707686, -10.329511019886], + [-36.56594161273938, -10.329551396677859], + [-36.568532245489266, -10.362610085954337], + [-36.564415410967364, -10.380160709435074], + [-36.56164002955871, -10.385728130502384], + [-36.5620090214446, -10.404447292450522], + [-36.56562204351863, -10.411902623440572], + [-36.56306709316009, -10.419730313447184], + [-36.54468453031258, -10.430063353933457], + [-36.53861612681036, -10.422394066954588], + [-36.51058057785073, -10.421436966369987], + [-36.51934839987112, -10.424734254548868], + [-36.52227005343731, -10.433128082046835], + [-36.51006942463966, -10.43284584506848], + [-36.4896534600731, -10.424029570435724], + [-36.48745452553054, -10.422950407893882], + [-36.487433285832424, -10.422938036103904], + [-36.463570176018266, -10.406767319231255], + [-36.45689626672917, -10.407383041009625], + [-36.44364675628887, -10.418051767345142], + [-36.43796961401282, -10.418459282558006], + [-36.43049955198683, -10.425341335856286], + [-36.41742207277067, -10.45407199011291], + [-36.40528836555916, -10.481727769594434], + [-36.4051396647103, -10.482286085005443], + [-36.39391857764863, -10.500373496970136] + ] + ] + }, + "TO": { + "name": "Tocantins", + "coordinates": [ + [ + [-48.35615548078725, -5.171865964800251], + [-48.32088953763001, -5.201401987011756], + [-48.2933884914083, -5.204062374925382], + [-48.27300319670649, -5.21597946112495], + [-48.234913313226464, -5.228320965562305], + [-48.224937529143155, -5.23554299265284], + [-48.206485334325194, -5.248998248385324], + [-48.19028124323483, -5.253411910557472], + [-48.17853007731769, -5.260790285726379], + [-48.10713857478528, -5.267177598125361], + [-48.07925149437796, -5.275078683457856], + [-48.05233900783068, -5.2675732372732], + [-48.014646315694684, -5.238044339484464], + [-48.00404592775868, -5.2346344951787955], + [-47.937336169655595, -5.239589763496719], + [-47.8855592659524, -5.260714442223854], + [-47.87291135677385, -5.272372363353902], + [-47.87039977680488, -5.280520604791489], + [-47.86667478259649, -5.305327917611087], + [-47.86761170742371, -5.342830090444693], + [-47.84374707840902, -5.376222932324981], + [-47.82752872523513, -5.386602343466007], + [-47.79297737348181, -5.384725702171242], + [-47.76832589152887, -5.378216461058825], + [-47.744302068866624, -5.38014666424783], + [-47.736539895491596, -5.383710113780074], + [-47.68575390722918, -5.412733047163935], + [-47.66676200845352, -5.421801063470116], + [-47.666760988000505, -5.421801550674216], + [-47.656169521872606, -5.43014749383353], + [-47.6186086374652, -5.459740447290367], + [-47.60245390725702, -5.465362204144592], + [-47.580498149405365, -5.470030879082727], + [-47.56413929874289, -5.4631506948892365], + [-47.55535866976508, -5.465749545474453], + [-47.523595228528734, -5.5005322422087035], + [-47.50010990302704, -5.525619143555439], + [-47.4940394061551, -5.539769277197485], + [-47.48325085523164, -5.5649131531662785], + [-47.483360280204046, -5.567859817352107], + [-47.484390694758304, -5.595618248156712], + [-47.48020402262244, -5.618812292805565], + [-47.479678447064465, -5.621723601543031], + [-47.477219237795154, -5.635054833918048], + [-47.473693747146065, -5.661993943477377], + [-47.48182937140403, -5.678637685905518], + [-47.48182945625646, -5.678637850394088], + [-47.4930832091107, -5.710052701713375], + [-47.49336340481269, -5.730544916264083], + [-47.48369554751649, -5.756419945425246], + [-47.4704509984511, -5.7719145698711545], + [-47.465288787071614, -5.7827020664667925], + [-47.44226749772407, -5.8308002369022995], + [-47.44033771258855, -5.842620711269617], + [-47.43784555693448, -5.857883708349901], + [-47.43105224459552, -5.869224953713471], + [-47.4328583382616, -5.893909636245726], + [-47.42980443366433, -5.911506047638142], + [-47.43006324528131, -5.935349601285146], + [-47.44797258572439, -5.992998133110359], + [-47.43873600569298, -6.01281198131039], + [-47.428030382467625, -6.039238836245157], + [-47.43021805418744, -6.068367005893544], + [-47.434465963017615, -6.093129567007303], + [-47.43309505208658, -6.112147812384177], + [-47.42319202334099, -6.160200409956446], + [-47.394661266713136, -6.219351031814373], + [-47.38535645584885, -6.230405888445068], + [-47.380734225679326, -6.250037020080953], + [-47.3772237996362, -6.26678268428446], + [-47.40339117826665, -6.319964541348873], + [-47.40339120977915, -6.319964597066931], + [-47.40339126328175, -6.319964705799578], + [-47.40399218096126, -6.320898540838784], + [-47.41082910272518, -6.334791463269394], + [-47.41082918774535, -6.334791627721392], + [-47.411811107538256, -6.3446211292549295], + [-47.410985046367216, -6.3545230347207555], + [-47.40970996108866, -6.366366104038792], + [-47.4122435469189, -6.376463309036657], + [-47.41992580044317, -6.401636270870216], + [-47.43188615230609, -6.425482448362017], + [-47.43188623796493, -6.4254826125392475], + [-47.434192838739826, -6.4312029084374345], + [-47.41632959478614, -6.483890882481873], + [-47.41632958825382, -6.483890901745141], + [-47.425235003999795, -6.497376412471175], + [-47.43419235966286, -6.504393933506356], + [-47.45648424200414, -6.538288638406447], + [-47.45648432184362, -6.538288759796775], + [-47.458799898437064, -6.549648012517909], + [-47.45992286278765, -6.5593296548722035], + [-47.46102384490769, -6.562123026877557], + [-47.46102604553052, -6.562138337031739], + [-47.46439395449197, -6.585570493682328], + [-47.46322141221161, -6.607029172852889], + [-47.46321808552681, -6.607090049893747], + [-47.49862995495204, -6.671245570922049], + [-47.498630043835604, -6.671245732680123], + [-47.49327406414611, -6.689757174510867], + [-47.496202863567, -6.697173882660456], + [-47.497173902443045, -6.72103677677232], + [-47.493641097932745, -6.751283805641761], + [-47.516687400061116, -6.790274054112418], + [-47.51668741217402, -6.7902740813934015], + [-47.51668749131495, -6.790274215279299], + [-47.52963115265739, -6.831403240233559], + [-47.527414651078075, -6.837817773377778], + [-47.52047684320801, -6.84048472982906], + [-47.50702444681141, -6.8720242663304045], + [-47.5051884279127, -6.893700644111812], + [-47.507609743605315, -6.907204269629804], + [-47.529555507330166, -6.946026989877954], + [-47.52955559646774, -6.946027149262533], + [-47.52830090083252, -6.973418562433157], + [-47.535491974198834, -6.987494738950791], + [-47.53549206047184, -6.987494902923156], + [-47.54492135642302, -7.012786761304289], + [-47.54492138576635, -7.012786840009454], + [-47.55783482675694, -7.03125489778377], + [-47.57476623495057, -7.050351808143171], + [-47.594673608213974, -7.0619350908460605], + [-47.618413276346914, -7.0911742586800335], + [-47.61841334105923, -7.091174338379234], + [-47.62617061360464, -7.11859477846075], + [-47.62617063302718, -7.118594847114949], + [-47.64443946941762, -7.143625411101232], + [-47.66035821350835, -7.151381878029061], + [-47.675169353542195, -7.147726132713521], + [-47.69404605940671, -7.136977660330042], + [-47.70471736107831, -7.13587287457507], + [-47.73843721362723, -7.156035418911517], + [-47.74790780344159, -7.167805398353468], + [-47.74790788451224, -7.16780549910523], + [-47.75043254489373, -7.189517543489682], + [-47.74722808070817, -7.198392729654771], + [-47.743635148569766, -7.208343098447073], + [-47.73836126457191, -7.2150774674317795], + [-47.73596616778199, -7.218135715966033], + [-47.73505261329889, -7.218913469596674], + [-47.69099190020118, -7.238312238880347], + [-47.674513201621124, -7.2598426269709675], + [-47.6539131887325, -7.298216653528019], + [-47.64769504885163, -7.304136766130984], + [-47.63914648568057, -7.305450756567107], + [-47.63410788612996, -7.304824680406735], + [-47.622972660763246, -7.2964561114719295], + [-47.60735598305473, -7.272136160694442], + [-47.60010596704994, -7.266747982301428], + [-47.587517201090854, -7.263732203418763], + [-47.542881447270496, -7.265397643502294], + [-47.53180464735685, -7.269311747575321], + [-47.50382877208755, -7.290108776846356], + [-47.48531824511061, -7.317654859190777], + [-47.4829019628605, -7.322360958713159], + [-47.478186298916086, -7.336767941689754], + [-47.478814662174976, -7.345945864822308], + [-47.480434398948795, -7.352984289339016], + [-47.483114224320744, -7.361233964499474], + [-47.483114256038334, -7.361234062139649], + [-47.49824139447861, -7.378744920385813], + [-47.509800503220546, -7.385587625680194], + [-47.563888961899465, -7.406838935104406], + [-47.57747191015807, -7.416078605412807], + [-47.59092165511452, -7.439528184342015], + [-47.59092174650867, -7.439528345990014], + [-47.5632488965035, -7.450015948683577], + [-47.55036539675429, -7.439590984211461], + [-47.52027198313669, -7.4321025468151936], + [-47.50469378556161, -7.436647851334795], + [-47.499573051978594, -7.453742724679994], + [-47.497940427757236, -7.479199319334592], + [-47.480264695618445, -7.492144415169907], + [-47.480100493916574, -7.5259377416764375], + [-47.4751960058077, -7.533378933928925], + [-47.46863446870074, -7.531382248601495], + [-47.46863437661321, -7.531382087926891], + [-47.46131294126381, -7.519309837127361], + [-47.43816326147272, -7.521543358980024], + [-47.427633110614714, -7.525777558102411], + [-47.424328112855434, -7.531119105080876], + [-47.425332434804034, -7.541806897658425], + [-47.42533244001333, -7.541806953096664], + [-47.430153775498646, -7.5480622079524196], + [-47.439443410759324, -7.5562448660815855], + [-47.439443566319156, -7.55624500310147], + [-47.422387859897334, -7.562829189759935], + [-47.40565974268691, -7.563880168195103], + [-47.39781098029213, -7.572759894714113], + [-47.40416215690593, -7.587161136237251], + [-47.3820789092031, -7.599983043628571], + [-47.38221827436664, -7.61900589806274], + [-47.387272462910545, -7.63514687544446], + [-47.38188925999197, -7.654074100044757], + [-47.365081658485934, -7.655847839574694], + [-47.35219411999485, -7.6468549958262075], + [-47.35219414163819, -7.646854909363237], + [-47.35382735953948, -7.640330166377285], + [-47.3647443275964, -7.635467845586002], + [-47.37285944824186, -7.625380578852162], + [-47.372110828145885, -7.621330102002521], + [-47.37211076528042, -7.62133007558779], + [-47.35979715210386, -7.616155960565858], + [-47.35162879236156, -7.621027206384784], + [-47.34849290735388, -7.631357810761914], + [-47.33576934243235, -7.637040895034094], + [-47.3330600458817, -7.640976944262523], + [-47.3233833397982, -7.655034167154942], + [-47.317708924869315, -7.658494472278868], + [-47.31419221410897, -7.660638910523855], + [-47.31419213625553, -7.660638957997024], + [-47.32018823922985, -7.66481492828166], + [-47.32955227486047, -7.663118484479738], + [-47.33770524428818, -7.667038222969806], + [-47.33770541144953, -7.667038303334817], + [-47.33096888507667, -7.674083386762157], + [-47.333522410685156, -7.678076011479225], + [-47.33352250208754, -7.678076162828253], + [-47.33150131381307, -7.68523145551925], + [-47.3025241295216, -7.689067414486084], + [-47.30266344580171, -7.702023159819415], + [-47.302663447085834, -7.70202327931386], + [-47.305936464391, -7.7036657791823515], + [-47.31049361151329, -7.698320812297947], + [-47.31602207655641, -7.701512610855362], + [-47.31602220133844, -7.701512682895853], + [-47.31404009205946, -7.706428769028072], + [-47.305907264020504, -7.713447282601599], + [-47.305907169643895, -7.713447364044365], + [-47.315088389610345, -7.7175539404404105], + [-47.315088499432655, -7.717553989560382], + [-47.312412783317946, -7.73157757007889], + [-47.31193914530542, -7.731720222733695], + [-47.301490258056226, -7.73486709085851], + [-47.301485840581, -7.734868421186945], + [-47.293348506216404, -7.727922989744229], + [-47.28243541458536, -7.734960892284213], + [-47.27354309730009, -7.7310421709896415], + [-47.270883324645276, -7.7348439400680205], + [-47.27388130934065, -7.745274094410736], + [-47.261243775508014, -7.7411708337254], + [-47.26124295370268, -7.741170566882016], + [-47.261323532681814, -7.750757240094642], + [-47.26133205282693, -7.75177139289329], + [-47.26674482564413, -7.761296230763895], + [-47.26674491544684, -7.761296392837514], + [-47.25894273921466, -7.755927430189434], + [-47.255658731067584, -7.759273551244326], + [-47.2462160512922, -7.75853300236405], + [-47.246214917072585, -7.758532913399762], + [-47.25502120416801, -7.765160803396701], + [-47.25502133152827, -7.765160899249955], + [-47.24543644714515, -7.781548382253537], + [-47.24743518598975, -7.785808329112184], + [-47.24743526930525, -7.785808494382281], + [-47.24088389201382, -7.794043195899872], + [-47.24088386483322, -7.794043230063112], + [-47.247047579136094, -7.800939022296882], + [-47.24704836046258, -7.800939896409951], + [-47.23583846943915, -7.803898518887611], + [-47.23513894268017, -7.804083132116653], + [-47.246939283023295, -7.809270309086582], + [-47.24693940515135, -7.809270362769521], + [-47.24499229579984, -7.815519360339874], + [-47.239187288674685, -7.813874268848734], + [-47.234267241279134, -7.819577362137171], + [-47.22965614900204, -7.816667720168227], + [-47.229656110878224, -7.8166676961114545], + [-47.23455303037469, -7.823930515300438], + [-47.2345531277742, -7.823930676001462], + [-47.223547349454435, -7.826711045897332], + [-47.214966233823894, -7.835571262942263], + [-47.20660292743529, -7.834650762372776], + [-47.207436617594496, -7.839809238685496], + [-47.200524948350065, -7.840344227547647], + [-47.200961311083226, -7.845058030563131], + [-47.19649458130514, -7.849303377500883], + [-47.18723763941419, -7.843125136172619], + [-47.18713355812846, -7.85779580315439], + [-47.18266352467406, -7.8585132122647], + [-47.17921731748359, -7.854975106958407], + [-47.17452534391896, -7.857008939572147], + [-47.17452527893418, -7.857008967740551], + [-47.180023015694395, -7.8618561712794985], + [-47.18002313394693, -7.861856275538101], + [-47.175273397817065, -7.871093141199152], + [-47.163440503228536, -7.879588312746794], + [-47.16080504641306, -7.887826112932542], + [-47.15277493266807, -7.895060221734762], + [-47.14277268212654, -7.894849975311096], + [-47.14394617836089, -7.9033251746277635], + [-47.14526970412439, -7.9128842313384276], + [-47.14526982954405, -7.912885137187591], + [-47.14107904517413, -7.92529316368602], + [-47.131710532611315, -7.92200704370965], + [-47.12551823940924, -7.925160765897404], + [-47.12151860511672, -7.9219821210987265], + [-47.116491853271405, -7.938917223027402], + [-47.10721564130902, -7.936996794769636], + [-47.11590902111835, -7.9525991852204605], + [-47.11590876634495, -7.9525996474551], + [-47.113618258254256, -7.956755237233073], + [-47.11226870502278, -7.9592036169902824], + [-47.10574819258015, -7.953215765609418], + [-47.10243808380349, -7.95439690686843], + [-47.101998429033316, -7.954553785337024], + [-47.10472470958575, -7.961030185385449], + [-47.10478456363249, -7.961172370362421], + [-47.10168761407456, -7.966517552121603], + [-47.101687564601036, -7.966517637508539], + [-47.106680004395955, -7.96933948515443], + [-47.106680156267885, -7.969339570994931], + [-47.09777485642423, -7.98010271621702], + [-47.097774834035505, -7.980102743275231], + [-47.10646447399024, -7.990812878898671], + [-47.10646461046088, -7.990813047097472], + [-47.083665039624364, -7.9884058891093845], + [-47.072158369543615, -7.996537734393752], + [-47.07193745809065, -8.000041038084726], + [-47.06491290304516, -8.002712671104154], + [-47.06062788087412, -8.010886816225446], + [-47.05899604467762, -8.027853522722424], + [-47.050967390184766, -8.03582894255878], + [-47.05351407308449, -8.041724489850811], + [-47.044855224148336, -8.046887768939838], + [-47.04348705319151, -8.053604502714604], + [-47.024552123838326, -8.056757963556535], + [-47.020800683276455, -8.06047505690044], + [-47.01452066255132, -8.057647845485265], + [-47.0085236600982, -8.062192169913258], + [-47.00205382458716, -8.057645168537524], + [-47.00124199468206, -8.066349144506075], + [-46.99741287479501, -8.067243854148936], + [-46.9974127983224, -8.067243688395944], + [-46.98921665410278, -8.047886876888247], + [-46.98195854896341, -8.05053585066826], + [-46.981958488868074, -8.050535677442236], + [-46.980238726832276, -8.045578413065199], + [-46.980238691185754, -8.045578400647544], + [-46.96280014085965, -8.03950320411868], + [-46.962800214201835, -8.039503097227428], + [-46.96607185454119, -8.03473480674155], + [-46.96607172103812, -8.034734710127555], + [-46.95429766078175, -8.026213759312535], + [-46.954297679774584, -8.026213673610117], + [-46.956433159764856, -8.016577130613614], + [-46.953384776728356, -8.006658700184213], + [-46.95338474356596, -8.006658715239853], + [-46.94947934873799, -8.00843172128297], + [-46.94563256502215, -8.00534330377133], + [-46.94563248317115, -8.005343144052832], + [-46.941379536965066, -7.99689379639934], + [-46.923655273262504, -7.991978496481484], + [-46.92138420719761, -7.995349771363197], + [-46.92138451167717, -7.995347664937353], + [-46.92282097425155, -7.985409369092174], + [-46.922820874313615, -7.985409289298696], + [-46.91827263065136, -7.98177779226476], + [-46.909378359196914, -7.9804877049482394], + [-46.907947688044345, -7.9826832129275065], + [-46.905184458837226, -7.986923546325421], + [-46.89783143428208, -7.986922456753717], + [-46.896198791573696, -7.986922197006528], + [-46.89619870107519, -7.986922035465649], + [-46.88929535326836, -7.975057021152565], + [-46.882656370641655, -7.973147105554881], + [-46.88265637063293, -7.97314696778835], + [-46.88265574634295, -7.96409406481674], + [-46.882655658465644, -7.964093989324814], + [-46.87274352190332, -7.955578660554276], + [-46.86939687357099, -7.956430786521782], + [-46.87110359789196, -7.961731623682638], + [-46.86629763668619, -7.969341829795796], + [-46.86629754768821, -7.969341667372445], + [-46.861654837528285, -7.961005937374094], + [-46.85076887877845, -7.957383712586347], + [-46.84392712337708, -7.965352527244146], + [-46.839930709649245, -7.965534470309839], + [-46.83993066001522, -7.965534305529727], + [-46.8381292446012, -7.959553772238838], + [-46.83812921128387, -7.959553790299964], + [-46.83133946781877, -7.963234362752489], + [-46.82440764800003, -7.959419131843408], + [-46.80977703801401, -7.952297752592697], + [-46.80651936475638, -7.951223303706177], + [-46.802014884360645, -7.949967691008843], + [-46.80013646902135, -7.955439684054983], + [-46.79233240619049, -7.953378812721716], + [-46.79233232338242, -7.953378650033122], + [-46.78921281901074, -7.947127316492457], + [-46.78658111401095, -7.951839572098507], + [-46.78605026016579, -7.951762633252343], + [-46.78340523510511, -7.951379269008573], + [-46.781772411663866, -7.945081661565511], + [-46.78177236296639, -7.945081649554593], + [-46.77385240641299, -7.943128169883985], + [-46.768254226279915, -7.935624598786737], + [-46.767408372432584, -7.938694857855023], + [-46.76332401327062, -7.938784123956486], + [-46.76332393642114, -7.938783960692323], + [-46.76319143845255, -7.938480558248593], + [-46.75615921366052, -7.922378143101271], + [-46.75615913068281, -7.922377953095753], + [-46.75452507841536, -7.923127301579185], + [-46.74669294950916, -7.926718828351299], + [-46.741986709466545, -7.922931988798726], + [-46.73937277748832, -7.923858077441626], + [-46.737450159093065, -7.924539225514761], + [-46.73744943111596, -7.9245394834210865], + [-46.732848586147526, -7.91894657900504], + [-46.72651977891544, -7.92354296177797], + [-46.726519692517265, -7.923542798027937], + [-46.722072967221735, -7.914934596693963], + [-46.71301706619466, -7.914168660615323], + [-46.708439562654604, -7.909942667907353], + [-46.696988198989175, -7.916820829341755], + [-46.69198833834397, -7.915052745753741], + [-46.68543602140996, -7.912735577619966], + [-46.68543567143267, -7.912735626793274], + [-46.673219591503454, -7.914451837856188], + [-46.6732195069096, -7.9144516732845585], + [-46.66815161774728, -7.9041053794596285], + [-46.660551833495056, -7.900578539228399], + [-46.65689723802612, -7.904013440751913], + [-46.65062429602435, -7.90890872558396], + [-46.64074808445023, -7.906547477143325], + [-46.63129816742313, -7.898749567998929], + [-46.614743560726964, -7.8968211448425905], + [-46.597020719084675, -7.899359144969905], + [-46.59082862624747, -7.906235723300021], + [-46.58138138392712, -7.908492045113565], + [-46.57602123733989, -7.916285007291363], + [-46.572297013501625, -7.914466737156994], + [-46.562374939538884, -7.920549954354417], + [-46.561390593652796, -7.921841138226134], + [-46.55810774938411, -7.926147193611266], + [-46.55775535646551, -7.937394909625815], + [-46.557715156519976, -7.9386776307316245], + [-46.54944182962891, -7.949519116611317], + [-46.543811568993156, -7.948707783792667], + [-46.518715541205744, -7.95909391524303], + [-46.49029703780213, -7.9832598573584415], + [-46.48576616372956, -7.9952635977550885], + [-46.486378058139806, -8.003122855577441], + [-46.476950595042894, -8.012233661989365], + [-46.47976011738231, -8.042805333848028], + [-46.47758834028154, -8.053154411772413], + [-46.466605048164624, -8.066212332843687], + [-46.466923210092425, -8.074315325654325], + [-46.47040342147443, -8.084759831694047], + [-46.47040347203994, -8.084759983446292], + [-46.48237558688909, -8.08838870819242], + [-46.489154964647035, -8.097740596501025], + [-46.489155043959265, -8.097740705907459], + [-46.491959036521415, -8.115647036070213], + [-46.50857669090008, -8.15754496029472], + [-46.50857672170725, -8.157545037966237], + [-46.51462376956317, -8.16661648757481], + [-46.51462385716763, -8.166616618992286], + [-46.51465400306097, -8.175951024997739], + [-46.5087587948913, -8.183594583659277], + [-46.49851040943332, -8.185385191042345], + [-46.48754846091938, -8.199927444034948], + [-46.48995642701215, -8.207911623240436], + [-46.4899564600311, -8.20791173272236], + [-46.50248530732073, -8.220184078262172], + [-46.50248534760199, -8.220184117717563], + [-46.509096675133726, -8.237416946312868], + [-46.50757633828721, -8.270786843925436], + [-46.50757633706537, -8.270786870727884], + [-46.522459755943444, -8.293593808204845], + [-46.533850811019924, -8.300596298032183], + [-46.54365378900178, -8.318939516017815], + [-46.543653876237784, -8.318939678992352], + [-46.55879859715194, -8.3252579803488], + [-46.57732093859649, -8.322352920668425], + [-46.59058953204303, -8.328235776015301], + [-46.60679655769274, -8.328451885821572], + [-46.61555956792739, -8.327484253569429], + [-46.63070493067523, -8.31877592387485], + [-46.641293849961066, -8.321517149613582], + [-46.65965250685755, -8.33312029366515], + [-46.66269030652245, -8.33368143263942], + [-46.67826556411171, -8.336558120213748], + [-46.68489844191823, -8.34395023180135], + [-46.68540795283978, -8.34451805367668], + [-46.70679582377676, -8.351548927824254], + [-46.71271563128639, -8.362423057096798], + [-46.71271571944419, -8.362423219978556], + [-46.72163303645026, -8.368541667042765], + [-46.721633078177376, -8.368541695672327], + [-46.72663692748704, -8.383157854466551], + [-46.72663697979087, -8.383158007243765], + [-46.73435297311286, -8.38540479536046], + [-46.74068357677506, -8.3769706190497], + [-46.75265644754571, -8.374155134338393], + [-46.76119966446922, -8.378456843456938], + [-46.7768754116392, -8.368448649137934], + [-46.782417503556005, -8.368100487321085], + [-46.782418349219526, -8.368100434189154], + [-46.7864360585365, -8.374338731682734], + [-46.7865148919275, -8.37446113496094], + [-46.78651497928365, -8.37446127059731], + [-46.78652641423929, -8.37519305296543], + [-46.78663671763006, -8.382254048556435], + [-46.79171123179511, -8.38616678364935], + [-46.79171136092238, -8.386166883212384], + [-46.7857148325575, -8.395384910492508], + [-46.787001368252454, -8.399115893397541], + [-46.787001414057606, -8.399116026233214], + [-46.79498610405526, -8.404874772277475], + [-46.80681914633926, -8.398987545768778], + [-46.80681940605427, -8.398987416547138], + [-46.79870721652178, -8.412781527281059], + [-46.79870719629393, -8.412781561674722], + [-46.79872781038235, -8.41301274804569], + [-46.79959482505508, -8.422736735364596], + [-46.7954647956555, -8.429985720280236], + [-46.80196057432097, -8.444021772383644], + [-46.80196065703726, -8.444021937833368], + [-46.7965480432999, -8.446647377947068], + [-46.79654759959047, -8.446647593167116], + [-46.81551688745715, -8.470372678760649], + [-46.8207715016244, -8.46549340997881], + [-46.820771532177794, -8.465493381607155], + [-46.823467305260124, -8.474512694381884], + [-46.82346735747515, -8.474512869078318], + [-46.82843413390165, -8.47289833315974], + [-46.83231478272722, -8.464971271071997], + [-46.8351168679461, -8.469074976964194], + [-46.84179808041272, -8.465905653224414], + [-46.84179818771666, -8.465905602321712], + [-46.84110450704739, -8.473516658750015], + [-46.84952639896041, -8.475762039433906], + [-46.85107103448547, -8.476173838459774], + [-46.85107114693716, -8.476173868439108], + [-46.8488840077276, -8.487992951655292], + [-46.8510225145833, -8.48968855342606], + [-46.851022053108665, -8.48968900434892], + [-46.848248749452694, -8.492398857116246], + [-46.84715618093782, -8.493466407498975], + [-46.84632556839659, -8.501433889536628], + [-46.84632555651135, -8.50143400353535], + [-46.85098710513839, -8.503732012143045], + [-46.850987245925836, -8.503732081546184], + [-46.84691130599983, -8.510942249213818], + [-46.84691127677814, -8.51094230090408], + [-46.85214593851318, -8.51592789236923], + [-46.85214607200425, -8.51592801950685], + [-46.843335626247345, -8.522870253403497], + [-46.84333551789916, -8.522870338773414], + [-46.85081901268797, -8.5258376011327], + [-46.85081916808615, -8.525837662747602], + [-46.84662334528684, -8.532139086260097], + [-46.84601472633926, -8.53359517285517], + [-46.84601468819014, -8.533595264124235], + [-46.85207118848172, -8.537051728315808], + [-46.85207123855601, -8.537051756892847], + [-46.85433908372411, -8.545142355510535], + [-46.854339129014434, -8.545142517084528], + [-46.86008209221663, -8.545355287565211], + [-46.860082226192674, -8.545355292527884], + [-46.85827283021352, -8.551553280258062], + [-46.86282655124901, -8.559103430078043], + [-46.86282664294417, -8.559103590901161], + [-46.87543664164644, -8.555315365529683], + [-46.875436801954734, -8.555315317367274], + [-46.87287901649863, -8.562769663549071], + [-46.87287896930254, -8.562769801091214], + [-46.876904748282264, -8.563533575683898], + [-46.876904906977586, -8.563533605790933], + [-46.87476954089399, -8.56754107225115], + [-46.87476939041588, -8.567541354650091], + [-46.87865697899446, -8.56559583138661], + [-46.878657064210124, -8.565595788740103], + [-46.87874432068768, -8.572539292628953], + [-46.87874432406459, -8.572539561436068], + [-46.88332612225742, -8.566805713947717], + [-46.889019205100624, -8.576958363829956], + [-46.88901968124496, -8.576957603382459], + [-46.892191983329376, -8.571891020741171], + [-46.89301891138216, -8.570570269867748], + [-46.893018980007874, -8.57057016025963], + [-46.893572376826555, -8.57844066666467], + [-46.893572449616244, -8.578441726926034], + [-46.89782142230094, -8.57675393201067], + [-46.89782151826026, -8.576753893892489], + [-46.89755000143374, -8.583458815645537], + [-46.89754999708092, -8.583458923122405], + [-46.90223876616818, -8.586291864302378], + [-46.90223893907255, -8.58629196876927], + [-46.89915751663712, -8.588418301609577], + [-46.899157259441296, -8.588418479084812], + [-46.900486810678046, -8.59199399270375], + [-46.9005984514447, -8.592294223058149], + [-46.900598511453175, -8.592294384436103], + [-46.906519093227395, -8.592674553732627], + [-46.914351715534686, -8.587133420135787], + [-46.91435190929638, -8.587133283055445], + [-46.91268368595268, -8.591860795757933], + [-46.91268366805197, -8.591860846484908], + [-46.916381697734316, -8.595794010098617], + [-46.91638185319768, -8.595794175445194], + [-46.9105421173422, -8.595606768039497], + [-46.909920190063104, -8.59800937516559], + [-46.90976652041188, -8.59860301682444], + [-46.906597636602, -8.596042708873897], + [-46.90624075132063, -8.595754359693075], + [-46.90094180076606, -8.59745256204151], + [-46.897711068762085, -8.601032878150681], + [-46.897710994909964, -8.601032959992578], + [-46.90384885647497, -8.60412056178982], + [-46.90384908291822, -8.604120675698043], + [-46.89776643116455, -8.606281807256018], + [-46.897766236533876, -8.60628187640496], + [-46.905349831655364, -8.608807104520967], + [-46.90535055028341, -8.608807343806294], + [-46.901881707127785, -8.61320458857001], + [-46.90188167523418, -8.613204628998801], + [-46.90501804263141, -8.616420572977386], + [-46.907879582616, -8.61402725169539], + [-46.9078796997508, -8.614027153725429], + [-46.90723954957862, -8.619727306647185], + [-46.907239530441316, -8.619727477045378], + [-46.91187767759176, -8.619413928865729], + [-46.91187776542154, -8.619413922927718], + [-46.91187687639514, -8.626833115678647], + [-46.91187687638765, -8.62683317593541], + [-46.91707743685261, -8.632927709796112], + [-46.917077549500036, -8.632927841805666], + [-46.91167817598848, -8.639702404583335], + [-46.91637699859276, -8.648423275572194], + [-46.916376617648886, -8.648423496837735], + [-46.908625123171255, -8.652925674300803], + [-46.9061593373606, -8.65435776970123], + [-46.902600956919436, -8.653233178871584], + [-46.90387768633969, -8.66172865594849], + [-46.895678730475474, -8.659757350231171], + [-46.896215241769994, -8.665279013487401], + [-46.889156697332425, -8.669805100125812], + [-46.88693219942509, -8.686506287643281], + [-46.88693219328008, -8.686506333773304], + [-46.887155167464286, -8.686784115097007], + [-46.89073941806372, -8.691249327986581], + [-46.899133023071855, -8.693988512612968], + [-46.900603021830406, -8.694468214689378], + [-46.90169624936435, -8.695591952822502], + [-46.91435120688013, -8.7085995979059], + [-46.91401786896316, -8.722460842694497], + [-46.914017867481995, -8.722460904261714], + [-46.91723957139014, -8.726127913705806], + [-46.92254350990451, -8.727691853471644], + [-46.928580176028504, -8.723437612151347], + [-46.93122696908585, -8.726602879820225], + [-46.9312270715793, -8.726603002389949], + [-46.92485040767006, -8.744237655002625], + [-46.91793079741981, -8.751301637313937], + [-46.91729506881874, -8.762457497228493], + [-46.90957407758808, -8.764548805460628], + [-46.91126404909994, -8.768788954792416], + [-46.90735053741455, -8.77117986455341], + [-46.904213167670534, -8.778575572211935], + [-46.90293588401032, -8.792178322543352], + [-46.90293587926857, -8.792178373035325], + [-46.90654351721102, -8.796572800284833], + [-46.90654361436495, -8.796572918625836], + [-46.902789068929735, -8.814552421573381], + [-46.90278905157799, -8.81455250465745], + [-46.913658957411066, -8.822835862727509], + [-46.91365910395723, -8.822835974398796], + [-46.907267376385924, -8.828441774845928], + [-46.90979237285433, -8.835292507354024], + [-46.90979243313632, -8.8352926709079], + [-46.91426491708677, -8.835236533524316], + [-46.918069427047826, -8.83971317743854], + [-46.918296693200034, -8.843692827983677], + [-46.91343355162109, -8.847842615585005], + [-46.9181288139367, -8.857011425701288], + [-46.918128898664676, -8.85701158910175], + [-46.92213591997066, -8.85743682602065], + [-46.94153980204704, -8.859495428806479], + [-46.955576205651404, -8.873236731683859], + [-46.956872366328945, -8.874505586290171], + [-46.95971003229913, -8.875466226215787], + [-46.965543843506445, -8.867683940312984], + [-46.97809619647135, -8.867785382207554], + [-46.993570472309635, -8.880256517727961], + [-46.9935706090396, -8.8802566279174], + [-46.986050393678056, -8.888410322895165], + [-46.98605038027134, -8.888410337430656], + [-46.98615709830927, -8.888567073578876], + [-46.988926745396014, -8.892634802268935], + [-46.988926286412855, -8.892635016390908], + [-46.987077130203936, -8.893497665430829], + [-46.98412578507274, -8.894874463712798], + [-46.98412535460528, -8.894874664522339], + [-46.98637918463241, -8.898740857077721], + [-46.98637927600262, -8.898741016962179], + [-46.98548975324157, -8.899779548790033], + [-46.98276949352965, -8.902955428381583], + [-46.98276937649103, -8.902955565021026], + [-46.97560358629754, -8.903053039568903], + [-46.97027031552619, -8.914507942365443], + [-46.97027026804962, -8.914508044331129], + [-46.98237172873801, -8.919988255854852], + [-46.982371799695386, -8.919988287986895], + [-46.98390506963949, -8.931918628176529], + [-46.9839050901361, -8.93191878766397], + [-46.9970411430248, -8.932650717460945], + [-46.997041406928446, -8.932650732160841], + [-46.99465851908382, -8.945542137967841], + [-46.99465849031138, -8.945542293614102], + [-46.997564700389134, -8.945731376751231], + [-47.011236437260195, -8.946620582899163], + [-47.01299143020854, -8.952323516323512], + [-47.01299147901208, -8.9523236749123], + [-47.01826064445043, -8.952951994564476], + [-47.01826078609447, -8.952952011453814], + [-47.01743693099385, -8.955191676869344], + [-47.013159770965224, -8.9668184402486], + [-47.01522918098928, -8.975804740357379], + [-47.01535073910585, -8.976332599426588], + [-47.01535076749809, -8.976332722718274], + [-47.02154287112043, -8.980496015309473], + [-47.02154295894351, -8.980496074356694], + [-47.02154248024071, -8.988656665667541], + [-47.021542480230174, -8.988656831267736], + [-47.03177041700572, -8.988382821246399], + [-47.031769498987295, -8.979950736373924], + [-47.0356812036782, -8.978959262626365], + [-47.03568138495002, -8.97895921667941], + [-47.032404467210206, -8.98629477101753], + [-47.03885521211937, -9.000971642297253], + [-47.0388552675678, -9.000971768452091], + [-47.044013780295785, -9.006882752785646], + [-47.06207112074629, -9.007708560806801], + [-47.06848179695201, -9.012037508310181], + [-47.0684819682676, -9.012037623992457], + [-47.05646160808462, -9.018887587277131], + [-47.04860237165917, -9.015664215747364], + [-47.04873959503267, -9.021821374129189], + [-47.043989033614544, -9.022926249115626], + [-47.04346415207892, -9.026565010525688], + [-47.04346413846375, -9.026565104910853], + [-47.05407229968495, -9.033767419183967], + [-47.05407238633183, -9.0337674780102], + [-47.054235074217154, -9.048180613367396], + [-47.05423507606276, -9.048180776994787], + [-47.06171153476444, -9.048148997643514], + [-47.06171268581856, -9.048148992739055], + [-47.05770806055505, -9.052970425720117], + [-47.05770796927335, -9.052970535617614], + [-47.06797176616494, -9.056028542050692], + [-47.06797184066637, -9.056028564246624], + [-47.06803101765352, -9.056655634265045], + [-47.068713777028854, -9.063890708802218], + [-47.0597425333991, -9.067174782395691], + [-47.04840244614508, -9.071325551468343], + [-47.04565537028959, -9.068527259906402], + [-47.03435571269464, -9.069480030727659], + [-47.02354532741864, -9.076061779632607], + [-47.01018669366023, -9.07031591365355], + [-47.01359710147327, -9.078100464903068], + [-47.00732223948607, -9.082209708200596], + [-47.00040524632109, -9.081494643374166], + [-47.00040519219516, -9.081494483592278], + [-46.99868294720461, -9.076410320820392], + [-46.99868291483998, -9.076410321199027], + [-46.985502450212046, -9.076564285722696], + [-46.975907346383714, -9.08174595300066], + [-46.94026957487455, -9.063757672760977], + [-46.92332009928493, -9.065679412295534], + [-46.912130826230836, -9.08274090663939], + [-46.91213077765722, -9.082740980698862], + [-46.91292553943907, -9.083260849007438], + [-46.918955458041985, -9.087205047273692], + [-46.92684166672789, -9.084204673813991], + [-46.92907675420815, -9.083354269905003], + [-46.93151929967258, -9.085904532445488], + [-46.93151941041455, -9.085904648070365], + [-46.9309340052695, -9.087117895294803], + [-46.928292308722924, -9.092592616973818], + [-46.930570495733654, -9.095680087838279], + [-46.930570610008104, -9.095680242705518], + [-46.92353996913614, -9.097905575848806], + [-46.92353993158664, -9.097905587733466], + [-46.9302374525152, -9.105996880766398], + [-46.93023776166815, -9.10599725424732], + [-46.92617841527399, -9.11765959634942], + [-46.92617838326255, -9.117659688311708], + [-46.9314626913329, -9.12080538057228], + [-46.93146277406535, -9.120805429821218], + [-46.93178375224092, -9.128082292119137], + [-46.9262897601893, -9.134960455573218], + [-46.917658137440355, -9.132109701423015], + [-46.90671590982225, -9.135505141573336], + [-46.89880222591657, -9.125754107638782], + [-46.89353930885755, -9.12231856156264], + [-46.888763937825736, -9.128722271940642], + [-46.89165564471916, -9.140509268994592], + [-46.86109848045291, -9.146439704109433], + [-46.85240175117896, -9.154466321039253], + [-46.85168068867761, -9.15658725504714], + [-46.84779109802783, -9.16802731732228], + [-46.85211365481477, -9.18521851534696], + [-46.85234864788959, -9.186153099455188], + [-46.85068652552638, -9.1918561615758], + [-46.839267877876075, -9.197602276054806], + [-46.82779381325046, -9.194286277923043], + [-46.81935342470184, -9.20936849536273], + [-46.81935557635025, -9.209372507648332], + [-46.826847987273176, -9.223344105317537], + [-46.82778843954501, -9.231118497559274], + [-46.82887569925389, -9.240106861899713], + [-46.818926700582544, -9.260074388239387], + [-46.822741136549496, -9.266341319518746], + [-46.82274122852466, -9.266341480227222], + [-46.83173240382429, -9.26873947782806], + [-46.831732478601545, -9.268739497770634], + [-46.832712322231885, -9.279607916674072], + [-46.83271233432977, -9.279608050869703], + [-46.84462520194674, -9.284191097077942], + [-46.844625246827796, -9.284191114343482], + [-46.84704423554925, -9.292439257564057], + [-46.842237683796455, -9.304462925756738], + [-46.83529335779519, -9.308235654509199], + [-46.818732829939485, -9.303454886333634], + [-46.81326241392392, -9.304778743540162], + [-46.80811977276651, -9.32172812420285], + [-46.799152727355505, -9.338860475843918], + [-46.78816486128682, -9.347358216603435], + [-46.783318934121546, -9.351105634286903], + [-46.78032436448547, -9.35715976817504], + [-46.77965243202018, -9.35851816805956], + [-46.76829627206177, -9.36552195806889], + [-46.75865561358072, -9.38123494661678], + [-46.76593434091382, -9.401913160206622], + [-46.76108708690006, -9.41018110209909], + [-46.74600953490946, -9.414411471528934], + [-46.7410168097982, -9.412039487417974], + [-46.741016733071596, -9.412039329307015], + [-46.74088433836276, -9.411731661831633], + [-46.73793156116443, -9.404870186479501], + [-46.72329331914945, -9.39638215070229], + [-46.69620942112895, -9.398605581487413], + [-46.674904796079105, -9.390802531630714], + [-46.665957531565454, -9.391936441058922], + [-46.651566264323996, -9.406085123226589], + [-46.632765439939874, -9.411606302174148], + [-46.63276534315351, -9.41160633059369], + [-46.633960871850704, -9.412480713265618], + [-46.643738730982484, -9.419631777335555], + [-46.64790609474012, -9.427162815944268], + [-46.64790618257499, -9.427162975920446], + [-46.64954610517972, -9.444108974787472], + [-46.63998687227084, -9.457739130452163], + [-46.62757320864777, -9.465740954216702], + [-46.613436514510504, -9.465299870366273], + [-46.60046147654814, -9.470473567229657], + [-46.59395842070822, -9.482707846575208], + [-46.573237690082436, -9.477779938979344], + [-46.56095810745245, -9.484051305692338], + [-46.559179772024535, -9.49301083145817], + [-46.559179758135784, -9.493010901427755], + [-46.57576385935238, -9.50826857539412], + [-46.57572218584706, -9.51246247332585], + [-46.575671428650026, -9.517567183049922], + [-46.55801889987546, -9.534198283887328], + [-46.55727093003902, -9.539045560329471], + [-46.540461090232256, -9.550180814394254], + [-46.536737570397484, -9.557127735998133], + [-46.536737527260854, -9.557127816474768], + [-46.57928711080658, -9.5840951627008], + [-46.59236957985783, -9.587218749893998], + [-46.592369666885716, -9.587218770671255], + [-46.592445024335746, -9.607755220369642], + [-46.60609972660905, -9.630181476944518], + [-46.60609981598653, -9.63018162861297], + [-46.60684517343197, -9.651905390100396], + [-46.61303866567337, -9.665826270782434], + [-46.613038731801275, -9.665826419412554], + [-46.65331819461803, -9.693460074655578], + [-46.653318305304, -9.693460150581616], + [-46.650384725239874, -9.704553321383683], + [-46.645601127862015, -9.71660537257775], + [-46.646385398541845, -9.73371901467204], + [-46.64223873079772, -9.742743109098804], + [-46.63220953705807, -9.748895035402352], + [-46.59611962965025, -9.747269597449526], + [-46.575067587392354, -9.758593868558679], + [-46.56932273646238, -9.76974260038673], + [-46.570789030880086, -9.781122648000004], + [-46.579645856206724, -9.796363754551685], + [-46.579645946383906, -9.79636391291259], + [-46.576986731428576, -9.805197028932863], + [-46.56245913393903, -9.810707973490128], + [-46.54237110299531, -9.81033044198034], + [-46.51284858219793, -9.797522160702583], + [-46.50942989415276, -9.801385400780816], + [-46.50885134943612, -9.809281070656352], + [-46.49362528900478, -9.827442999890222], + [-46.49712086010272, -9.843697561614828], + [-46.49301415874173, -9.849178114784166], + [-46.480315033015316, -9.855274105449357], + [-46.48031493056839, -9.855274154623825], + [-46.49012047210498, -9.861169151023594], + [-46.49012053876567, -9.861169191098053], + [-46.491626341890715, -9.870088906589283], + [-46.47288061091677, -9.877459230022158], + [-46.470821177429904, -9.898066194201336], + [-46.4756405306158, -9.90653281987883], + [-46.47564061794679, -9.906532975727833], + [-46.478592620363635, -9.923887668465213], + [-46.47859242216533, -9.923887871309258], + [-46.46942834741476, -9.9332662345508], + [-46.46570495358282, -9.937076399463162], + [-46.46570493628502, -9.93707641716368], + [-46.47698910018774, -9.952767756267683], + [-46.476989195298394, -9.952767888520004], + [-46.471846666889824, -9.973673521825047], + [-46.47756484251824, -9.98832035253516], + [-46.45706596705757, -10.018036463311683], + [-46.457402163722755, -10.047300476282915], + [-46.443339493264126, -10.078157384869343], + [-46.42067600482169, -10.080898529031172], + [-46.38395021203997, -10.120161900722264], + [-46.36787056121245, -10.168833719583697], + [-46.34819296784464, -10.17311238762811], + [-46.33938239388996, -10.17762811495855], + [-46.32750714709111, -10.183713902362616], + [-46.32750654390055, -10.183714211463549], + [-46.313063158869085, -10.172843622066058], + [-46.30142623122939, -10.178345780985557], + [-46.27298470828682, -10.181635441698061], + [-46.24081591069126, -10.171905940879162], + [-46.21998555885798, -10.17080757443788], + [-46.210851053965776, -10.169755288812626], + [-46.20199185959723, -10.174029453292414], + [-46.194843991379614, -10.183005008324503], + [-46.16568134781431, -10.213164444271994], + [-46.14039524503521, -10.206778102677024], + [-46.127022000147775, -10.207246441250748], + [-46.099708513820595, -10.21292135851969], + [-46.05084154262005, -10.181692418245618], + [-46.03898976466059, -10.176755295283455], + [-46.028261293697696, -10.176890838688891], + [-46.023203795018375, -10.18340198982347], + [-46.01770708845875, -10.240413201120429], + [-46.0040344524946, -10.261679827582661], + [-45.99490233333809, -10.250130849324467], + [-45.97393032055464, -10.248391415514662], + [-45.94630161889323, -10.258850614079222], + [-45.92576172706484, -10.250284300807596], + [-45.87784332074579, -10.239358066121392], + [-45.84320169651555, -10.259277224289626], + [-45.79372762848957, -10.26769428452062], + [-45.74400985332364, -10.239978530054659], + [-45.73383682512516, -10.228618464606924], + [-45.733836791042975, -10.228618360414266], + [-45.72680657552348, -10.207125990729198], + [-45.734242222868104, -10.18505807769267], + [-45.7349819755849, -10.172187875456993], + [-45.734981888021444, -10.172187714090184], + [-45.726624255676114, -10.156877379880278], + [-45.72307625432109, -10.155180846860846], + [-45.71583718639636, -10.16692296166992], + [-45.69926476992787, -10.166876593719476], + [-45.70017321542891, -10.178488050913858], + [-45.705899908225966, -10.188301059821754], + [-45.70589999817773, -10.188301217502474], + [-45.69812717468534, -10.215466612004839], + [-45.69751418707827, -10.263588974806012], + [-45.69751418591257, -10.263589066027873], + [-45.70559368461686, -10.270196242008165], + [-45.714486449735794, -10.284515235205252], + [-45.724035299244186, -10.31724473227955], + [-45.724035314349095, -10.317244784052278], + [-45.74305866779334, -10.346755753445713], + [-45.75323394326939, -10.352333908112705], + [-45.797451476370384, -10.352726793931044], + [-45.80601698234463, -10.355925207546516], + [-45.81825463498181, -10.360494394896124], + [-45.82629100250221, -10.367345786076719], + [-45.827366710848864, -10.368262852292183], + [-45.82736678438016, -10.368262914979091], + [-45.8308407680774, -10.394089074039645], + [-45.8211167714386, -10.405756440970116], + [-45.8203418877497, -10.413911782125782], + [-45.83075478576997, -10.438757556689172], + [-45.830754860425365, -10.438757720032154], + [-45.86478479247166, -10.43890386853533], + [-45.887620692234925, -10.449205503813241], + [-45.900699892752215, -10.460895902959694], + [-45.906672667249715, -10.473706272663241], + [-45.906672744274175, -10.473706432010143], + [-45.962066472060776, -10.509728981749495], + [-45.97116975632095, -10.52859696796624], + [-45.97116983739376, -10.528597131707697], + [-45.98411694420777, -10.530038034500507], + [-45.994308247079566, -10.536386887995613], + [-46.01395351170093, -10.535478929750946], + [-46.025008601446046, -10.54279947314615], + [-46.02500867569089, -10.542799522308263], + [-46.02775613588808, -10.56711432643256], + [-46.027756151896874, -10.567114468121098], + [-46.036479691403066, -10.569782045246724], + [-46.05986371387537, -10.574514906858113], + [-46.05986380421813, -10.574514925139907], + [-46.059449684754576, -10.593471783620402], + [-46.06448432280225, -10.602784893603717], + [-46.064484410439164, -10.602785056815637], + [-46.07706407876845, -10.60713921543129], + [-46.09562149064304, -10.604597191424517], + [-46.11604378736352, -10.61955625770853], + [-46.137315866686336, -10.62230407559635], + [-46.15634408644495, -10.629960077220975], + [-46.16737116428708, -10.619363671501485], + [-46.18786891898419, -10.626557944955115], + [-46.18786897006711, -10.626557962882329], + [-46.189171019839726, -10.631799842699092], + [-46.189171048493826, -10.63179995805658], + [-46.21095447246881, -10.649691238919473], + [-46.21095453549833, -10.649691290683307], + [-46.212013596649356, -10.654577091989559], + [-46.18792582823397, -10.68305351795393], + [-46.19070831664451, -10.710471705857293], + [-46.19254244075157, -10.71973694093244], + [-46.192542466774434, -10.719737072389567], + [-46.19913866254353, -10.723189487157848], + [-46.21785579507386, -10.732984965293475], + [-46.23925136127185, -10.748358571262678], + [-46.2514099109932, -10.757093949151928], + [-46.25141002202837, -10.757094028922285], + [-46.24994190941471, -10.762263859331062], + [-46.227598363040805, -10.766816384327138], + [-46.229781250487804, -10.798600013505215], + [-46.229781252797444, -10.798600047142001], + [-46.23383850445691, -10.804804262983296], + [-46.24628506487327, -10.812415769268776], + [-46.27307612943292, -10.820713275848583], + [-46.283923492211315, -10.832075691632891], + [-46.28392353370729, -10.832075735097503], + [-46.29734438839376, -10.867277520719421], + [-46.283500752847594, -10.897546211988741], + [-46.28339699095079, -10.906769761527741], + [-46.28339698972178, -10.90676987071005], + [-46.317335277888446, -10.927614799789499], + [-46.32870105195687, -10.94264030295186], + [-46.355170767004154, -10.957767430871215], + [-46.35702092941279, -10.959648029250996], + [-46.37791123335869, -10.980880215189249], + [-46.39891562046873, -10.994411695911387], + [-46.40611236269789, -11.019710675585928], + [-46.406112392091174, -11.019710778910873], + [-46.42172135314832, -11.035944619021256], + [-46.447538201208886, -11.092336187845845], + [-46.45335455666229, -11.15620801264372], + [-46.4723389436772, -11.1912015884173], + [-46.47233903157191, -11.19120175173338], + [-46.48811912171569, -11.205081349149257], + [-46.50028674674597, -11.206948789192433], + [-46.58204016933014, -11.24678978503477], + [-46.60902504194731, -11.255748403689553], + [-46.60902522807767, -11.25574846547313], + [-46.59963167685589, -11.265439187771626], + [-46.60913710684649, -11.284739485458235], + [-46.60913718805475, -11.284739646880327], + [-46.617072598787345, -11.289468663917502], + [-46.61707269575507, -11.289468721702455], + [-46.61592203165499, -11.302217682706921], + [-46.6099031617494, -11.30833494570734], + [-46.60536061501319, -11.32185177215516], + [-46.601653671123074, -11.347203513466251], + [-46.58628597470836, -11.366494963181802], + [-46.56736665554395, -11.372572123038655], + [-46.56176564516708, -11.374518270800316], + [-46.549285372432976, -11.380737971051866], + [-46.54887141885128, -11.408408313260242], + [-46.54306139942797, -11.415763349082393], + [-46.52815404933671, -11.422528656055796], + [-46.525231670945956, -11.432828741285826], + [-46.52681800101892, -11.466044847015239], + [-46.521924477458796, -11.479782740369041], + [-46.502228088236485, -11.499545123855956], + [-46.486254887040495, -11.505107517206035], + [-46.4792896725768, -11.516409841838684], + [-46.46845263775318, -11.518582028385925], + [-46.4582901770656, -11.514396516571134], + [-46.445508453801786, -11.514679402550868], + [-46.427013021670454, -11.526067698087688], + [-46.41717318677671, -11.539198973439182], + [-46.41130990347612, -11.541970451536615], + [-46.40184392728644, -11.541129596359415], + [-46.3926061438564, -11.534846115884566], + [-46.38033475118646, -11.534395481198207], + [-46.360037442948176, -11.535634298650429], + [-46.34622844058724, -11.544894474930715], + [-46.31343022125847, -11.53951059399766], + [-46.28986325386218, -11.55137769542734], + [-46.2703112360598, -11.557416015022547], + [-46.25881010315107, -11.556770395040616], + [-46.23625862941361, -11.565361782092857], + [-46.226171041968904, -11.571238382027031], + [-46.21825780075202, -11.582447352034285], + [-46.2134474743385, -11.59573203560411], + [-46.2096199418735, -11.598193845210812], + [-46.20275103776068, -11.602611532817475], + [-46.19948772399833, -11.603347967073429], + [-46.187027830056, -11.606159389581153], + [-46.166373993037226, -11.59940384607265], + [-46.158427318290165, -11.607253743098974], + [-46.14114861752861, -11.608187337676373], + [-46.1411478817543, -11.608187134825847], + [-46.1356808778518, -11.606679846184763], + [-46.12703940884642, -11.604297116827082], + [-46.09525340230699, -11.615019358490127], + [-46.08665352414185, -11.622158073541756], + [-46.087499180701165, -11.624972408607562], + [-46.08749899355683, -11.624972891930721], + [-46.08519826987749, -11.630914577623694], + [-46.08317159270509, -11.636148180862719], + [-46.08697337610979, -11.642655023320602], + [-46.086973466402085, -11.64265518516791], + [-46.1317945961531, -11.646479087191409], + [-46.140990362569454, -11.648670059214888], + [-46.153978979544085, -11.656999446893765], + [-46.172642854326206, -11.652437624117553], + [-46.18775398023301, -11.655504795685161], + [-46.22172627974951, -11.644745558957476], + [-46.25625487670451, -11.621193658523543], + [-46.2657526258694, -11.624309457959445], + [-46.27733494913887, -11.62331541763162], + [-46.29145278700897, -11.62874869907349], + [-46.3045919539127, -11.625395785086361], + [-46.31150547842798, -11.62723986143631], + [-46.316455471488624, -11.637275547107768], + [-46.31645555608625, -11.637275712048316], + [-46.315312632067354, -11.643412398041388], + [-46.315075763501135, -11.644684141316205], + [-46.30153695568582, -11.661600672148273], + [-46.29797236270739, -11.670741904739062], + [-46.29486837908571, -11.678701110355755], + [-46.294040191477684, -11.6927784370485], + [-46.29747748113651, -11.698279368297985], + [-46.29747757380783, -11.69827952867391], + [-46.30895006859914, -11.704091366127061], + [-46.32934417423361, -11.737320487463215], + [-46.329344266307764, -11.737320648274034], + [-46.36614647528683, -11.745764863443297], + [-46.37345040447208, -11.75114543643647], + [-46.373450514877355, -11.75114551776614], + [-46.370867754007634, -11.760331499591038], + [-46.3568630286305, -11.759249709318707], + [-46.34734125277803, -11.75389134618655], + [-46.339069518822015, -11.766554557805057], + [-46.32269682937085, -11.770761309698388], + [-46.32279033432329, -11.771107431974539], + [-46.32467835143183, -11.77809615362365], + [-46.33553471587378, -11.786810221362787], + [-46.33553482220294, -11.786810306706215], + [-46.33159147665247, -11.802980719452535], + [-46.337870876065494, -11.81645226688954], + [-46.34910113288288, -11.821457394053791], + [-46.35089356578326, -11.822256199916161], + [-46.35089368081567, -11.822256251180425], + [-46.347501909159035, -11.835972535746109], + [-46.34750188976065, -11.835972614185664], + [-46.35536623571299, -11.842262986461519], + [-46.368480632274235, -11.834733583103029], + [-46.37339797510613, -11.836693006031474], + [-46.373398076778656, -11.83669304654411], + [-46.37131437257859, -11.854477467053723], + [-46.37455669930335, -11.868622045364578], + [-46.36545393275257, -11.884462726518267], + [-46.35125451704351, -11.88257644487426], + [-46.32669603673325, -11.896725020367219], + [-46.31795263026641, -11.89850735653176], + [-46.28497648974483, -11.88595915812699], + [-46.25641767158274, -11.898687596721592], + [-46.23811252887672, -11.90262896816361], + [-46.21339597221945, -11.898625574250667], + [-46.193701854147214, -11.884541896331399], + [-46.181088523895134, -11.885427660951486], + [-46.172306406568424, -11.897916470525695], + [-46.17509043728051, -11.910043492000934], + [-46.17509045780136, -11.91004358138763], + [-46.192536593199904, -11.929517860849078], + [-46.210488830712144, -11.930417797065674], + [-46.24794617375086, -11.947546400619093], + [-46.29545676062529, -11.949280731182435], + [-46.32567704816503, -11.958506833457854], + [-46.34303365872843, -11.975424050592373], + [-46.35617217009036, -11.981493680513994], + [-46.37351030803151, -12.004344570492197], + [-46.373510394904386, -12.004344684978037], + [-46.3735907964098, -12.015492403335129], + [-46.37359079728122, -12.015492524283479], + [-46.39539914619768, -12.02630320197613], + [-46.395399210533725, -12.026303233865113], + [-46.39784059640784, -12.040359779475619], + [-46.38181807464885, -12.052951839349639], + [-46.378509999103294, -12.059827606255656], + [-46.37850998375145, -12.059827638162844], + [-46.379061235150076, -12.060536193766813], + [-46.38842421268458, -12.072570450936986], + [-46.388423896514674, -12.072570921626742], + [-46.38385905199159, -12.079366435085474], + [-46.381484384087095, -12.082901292734306], + [-46.385592347517566, -12.092443451457315], + [-46.36811660490166, -12.098295934209919], + [-46.366345588512836, -12.111269957266034], + [-46.37120626874703, -12.122553548086316], + [-46.370034879322624, -12.134717246985662], + [-46.37534028216179, -12.153161637872032], + [-46.37928411252157, -12.160802358606567], + [-46.37928419728627, -12.160802521526998], + [-46.389678269561024, -12.16692579861254], + [-46.38967835064145, -12.16692584637584], + [-46.38987051717683, -12.170552022568423], + [-46.38301251642151, -12.174076935325399], + [-46.38200288401248, -12.176409005216614], + [-46.380700114746766, -12.179418071589632], + [-46.38070024146091, -12.179418250200706], + [-46.39097106749039, -12.193894906760844], + [-46.39097053513951, -12.193895047836014], + [-46.37331189190645, -12.198573949066184], + [-46.368612106629456, -12.19981898197829], + [-46.368285970491534, -12.21474862103285], + [-46.35983064685087, -12.224059846245174], + [-46.35983040645304, -12.22406011096109], + [-46.36599165664882, -12.240292820679038], + [-46.36644417769332, -12.241485012412681], + [-46.366444235162625, -12.241485163818407], + [-46.38075960914299, -12.247452142932307], + [-46.380759731867144, -12.24745219408278], + [-46.378591651236704, -12.254331169972751], + [-46.366109252215026, -12.266671533797819], + [-46.366814504248914, -12.275815562260593], + [-46.37434630001867, -12.289825187533461], + [-46.3743463877669, -12.289825351143827], + [-46.35039613504061, -12.297378686586418], + [-46.329342973365186, -12.298129237582915], + [-46.323396223430834, -12.303556792742427], + [-46.32514368275078, -12.308463040056441], + [-46.32514373758968, -12.30846319402323], + [-46.34623342734019, -12.314883959203819], + [-46.35150807048794, -12.320809211859977], + [-46.351508173004255, -12.320809327018704], + [-46.350455179819946, -12.324153671128904], + [-46.349566132711224, -12.326977203879446], + [-46.34956621966448, -12.32697729983191], + [-46.352773972518925, -12.330516988131878], + [-46.3530269694462, -12.330796160738647], + [-46.353027062684205, -12.330796263623178], + [-46.35237017710747, -12.337423086077415], + [-46.3404815062187, -12.33693627755726], + [-46.33411824740705, -12.342633650015205], + [-46.33302205128442, -12.344543359259513], + [-46.33260141048323, -12.345275817377596], + [-46.32470269568962, -12.35614005603505], + [-46.312868428964386, -12.356372184659833], + [-46.2959692596159, -12.367537700432015], + [-46.2856433164349, -12.37907097977217], + [-46.285643256063715, -12.379071047196854], + [-46.2943029517202, -12.384729591469792], + [-46.294303023501406, -12.384729638372324], + [-46.29601062858432, -12.39771380647104], + [-46.29601064126748, -12.397713902912416], + [-46.29681098363095, -12.39843799854995], + [-46.304674714865165, -12.405552307389867], + [-46.304674489051656, -12.405552937868025], + [-46.30282269369864, -12.410723036990642], + [-46.30100452145996, -12.415798932774031], + [-46.292825065128014, -12.41769692045598], + [-46.292824605201105, -12.417696603915147], + [-46.285007335895806, -12.412316251627589], + [-46.283393491850454, -12.411205454023547], + [-46.27380988707147, -12.414442090287771], + [-46.264920966205196, -12.412682956602868], + [-46.25637820190127, -12.42434192878725], + [-46.24780963755179, -12.438956894284566], + [-46.24759256833317, -12.448541022409369], + [-46.25355778759846, -12.46023261322309], + [-46.25355787331632, -12.460232777759275], + [-46.254775382032854, -12.494328830007614], + [-46.22783286853763, -12.49837378560427], + [-46.18683524762842, -12.477577583471296], + [-46.15969540855792, -12.474513686686922], + [-46.15386126940635, -12.483375168419578], + [-46.15386094753631, -12.483375657281226], + [-46.16202719341609, -12.495576339979646], + [-46.16202728558357, -12.495576494557158], + [-46.15819421021947, -12.502543007745448], + [-46.151957602964735, -12.513876593314071], + [-46.15195775200568, -12.51387684643658], + [-46.15621553183255, -12.52110786194672], + [-46.16062103434345, -12.528589438200802], + [-46.201697403656894, -12.530299809508636], + [-46.22697248640822, -12.536331432293833], + [-46.245948345964216, -12.54637476067368], + [-46.256394052273485, -12.54719000983046], + [-46.26112186910125, -12.549733099349424], + [-46.261121925616564, -12.549733129748306], + [-46.26631295653123, -12.572358469479909], + [-46.27853855864606, -12.58364520804571], + [-46.279917878647694, -12.584918527934196], + [-46.27991800258103, -12.58491864234264], + [-46.27771507447499, -12.587879463933067], + [-46.27317939985755, -12.593975232545635], + [-46.27317956195953, -12.59397559317251], + [-46.29070378178648, -12.632957928551086], + [-46.290703863295334, -12.632958094870387], + [-46.27358555526571, -12.638066729375527], + [-46.271370402365605, -12.643745250931977], + [-46.26141004991924, -12.646419871175297], + [-46.25613432613775, -12.655161039292265], + [-46.256134311486974, -12.655161063565297], + [-46.265532096607025, -12.668051870873132], + [-46.284655061561075, -12.679377826258985], + [-46.29322652033295, -12.692839407646096], + [-46.293226615022824, -12.692839565362615], + [-46.2861883171958, -12.698594515774408], + [-46.286666248323975, -12.70527857734635], + [-46.27664359684295, -12.70582420333085], + [-46.26489535918994, -12.716968236285645], + [-46.267537244005005, -12.739276293701895], + [-46.279123524280074, -12.749661942588778], + [-46.280314946145765, -12.750729842750726], + [-46.28031506159624, -12.750729946231234], + [-46.27630047392264, -12.75929481452747], + [-46.27496390114582, -12.774973018489012], + [-46.27496389539541, -12.77497308592897], + [-46.283228938254574, -12.78355674912754], + [-46.283229051505515, -12.783556866739954], + [-46.278016079143114, -12.792795933329652], + [-46.2808415697863, -12.805944125195202], + [-46.28084114404922, -12.805944432118944], + [-46.27350743985931, -12.811231213703728], + [-46.27241731523654, -12.812017028152267], + [-46.27004055350017, -12.82160337038058], + [-46.26228342396722, -12.831692476321091], + [-46.262283408563356, -12.83169249635442], + [-46.27331108282925, -12.84716804225316], + [-46.28783376478351, -12.856220635231711], + [-46.29303091738099, -12.860365219185056], + [-46.29303103683073, -12.860365314440694], + [-46.28450400076219, -12.878482651846458], + [-46.28551526914519, -12.888633979158891], + [-46.28617273988445, -12.895234164960666], + [-46.29753301807602, -12.907304686533509], + [-46.29753312590877, -12.907304801101944], + [-46.29522937284451, -12.912798895218899], + [-46.292389849304634, -12.919570191074182], + [-46.29238994405441, -12.919570423264181], + [-46.30476356511155, -12.949890586813387], + [-46.279670688159285, -12.94298672324692], + [-46.279670602314084, -12.942986559411978], + [-46.275640262607574, -12.935257701450517], + [-46.2667230808758, -12.932369048095207], + [-46.22049264574411, -12.940579177601656], + [-46.198108820561224, -12.925322356974137], + [-46.18436423733349, -12.923830342388117], + [-46.138935075206234, -12.909408541187998], + [-46.12566884403294, -12.910003195784963], + [-46.11388428021596, -12.918271920707657], + [-46.119921219338515, -12.925891228569744], + [-46.149015621076984, -12.93704037588441], + [-46.161302948598404, -12.934029400371855], + [-46.16130350543101, -12.934029263905208], + [-46.17697420113195, -12.939647585423577], + [-46.17987222494814, -12.947372451057243], + [-46.187836095905375, -12.94974337369531], + [-46.194527148316034, -12.956692730115241], + [-46.22366546411551, -12.956970233395225], + [-46.22366645934833, -12.956970248347647], + [-46.277142570926145, -12.971386630408269], + [-46.27714262169653, -12.97138664408972], + [-46.28033843710832, -12.968567796233115], + [-46.28033847594859, -12.96856776197358], + [-46.28725976828339, -12.973978373917175], + [-46.28725979165687, -12.973978392188444], + [-46.29026399148891, -12.972490516484633], + [-46.2902640317595, -12.972490496539592], + [-46.31158322402661, -12.980807844980946], + [-46.33406551985459, -12.980901875504001], + [-46.33406559381959, -12.980901872254883], + [-46.33553012503905, -12.983796901742402], + [-46.33553013477572, -12.983796920989336], + [-46.338780688982, -12.982478788682657], + [-46.33878073224028, -12.982478771140599], + [-46.36425234623899, -12.99137895777772], + [-46.364252389829325, -12.991378973006512], + [-46.37333783722084, -12.984789863883423], + [-46.36823015718657, -12.97252755191785], + [-46.376898573637, -12.963411365312774], + [-46.37145171914228, -12.95845216608387], + [-46.37221991891571, -12.944769911648216], + [-46.36672668593917, -12.93967861590201], + [-46.36456176188409, -12.931516755838196], + [-46.36550494203716, -12.913234290718263], + [-46.360671684767325, -12.90885466919975], + [-46.368193432362794, -12.903073524320515], + [-46.3619804075306, -12.89046993837122], + [-46.36753956463518, -12.887661721017817], + [-46.36422593657664, -12.882060176156068], + [-46.36911897836095, -12.877567374289555], + [-46.36616768530802, -12.864872681299568], + [-46.37422975026971, -12.859805649837126], + [-46.37625089893739, -12.85027193634134], + [-46.376250956602, -12.850271664319088], + [-46.37644213409208, -12.853386964492287], + [-46.37644213634827, -12.853387001258273], + [-46.38366556808606, -12.848992913838906], + [-46.38366559330297, -12.848992898498478], + [-46.397532991223066, -12.851411832671413], + [-46.39753303682374, -12.851411840624483], + [-46.40825870849682, -12.845810757912446], + [-46.406697459385384, -12.838856719273066], + [-46.40669736972652, -12.838856319916617], + [-46.411064504534984, -12.840543612976726], + [-46.41106457740339, -12.840543641129585], + [-46.411447433523726, -12.827971795299733], + [-46.417597693354544, -12.823477260876393], + [-46.41759776123683, -12.82347721126684], + [-46.43276645631323, -12.930738802711716], + [-46.4373588547223, -12.935508360824603], + [-46.44599041023232, -12.936261261310094], + [-46.454622380673136, -12.97117132031981], + [-46.550568856378725, -12.970559936440484], + [-46.55056893039351, -12.970559935955196], + [-46.633834965286525, -12.970000706251433], + [-46.63383503930033, -12.97000070574857], + [-46.63597548816641, -12.96998633235666], + [-46.635975562180256, -12.969986331853363], + [-46.70690067893836, -12.969488597167622], + [-46.70690075295241, -12.969488596637854], + [-46.75058171990864, -12.969172140085602], + [-46.75058179389819, -12.969172136349437], + [-46.81966842509522, -13.002486430738317], + [-46.82311242508215, -13.008143884571433], + [-46.81886686318205, -13.014035432154254], + [-46.82892885639708, -13.018668361504808], + [-46.83421412343435, -13.033792741076835], + [-46.840137383299144, -13.034544978969858], + [-46.84747715762571, -13.04548940277314], + [-46.844869521797314, -13.04970921239293], + [-46.84743076730239, -13.053890358062077], + [-46.847430809655826, -13.053890427201628], + [-46.84866986369668, -13.050910373890835], + [-46.84866988362728, -13.050910325954787], + [-46.85495090738963, -13.055672858387787], + [-46.854529349897824, -13.067323859749596], + [-46.85452931983897, -13.067324690308181], + [-46.868588978378476, -13.06851419911034], + [-46.868811881721534, -13.068533055994564], + [-46.868811951824426, -13.068533057521439], + [-46.871111203698774, -13.063522629707112], + [-46.871699296022115, -13.05995273500846], + [-46.87169930174071, -13.059952700293932], + [-46.87664792153094, -13.061964993212582], + [-46.87664796288116, -13.061965010026638], + [-46.8802290053081, -13.059357415181099], + [-46.87900863573184, -13.048849525564984], + [-46.87900863207147, -13.048849494047984], + [-46.89289268461954, -13.053240883914308], + [-46.90231153141163, -13.067320941281666], + [-46.91075729239348, -13.069078908466134], + [-46.928866578863584, -13.083101976043146], + [-46.9290654969167, -13.092899813015235], + [-46.94630608047075, -13.099311485342389], + [-46.953925059464815, -13.111154293201189], + [-46.96367162238644, -13.11216387743878], + [-46.97855158554049, -13.121609695695785], + [-46.978841500786686, -13.1315913678989], + [-46.97884150135266, -13.131591387388475], + [-46.98839195917971, -13.128149989658883], + [-46.987283611503656, -13.121815486770949], + [-46.9872836030771, -13.121815438610787], + [-46.992039245330496, -13.124191276974333], + [-46.992039264935485, -13.1241912867684], + [-47.001113207078575, -13.121393568560302], + [-47.001113272191525, -13.121393553762358], + [-47.0053707617664, -13.125135782738525], + [-47.005033075705406, -13.132112034541064], + [-47.00970440668197, -13.140838783748695], + [-47.01936128026407, -13.145796092860962], + [-47.01936132636234, -13.145796116524114], + [-47.02280888992749, -13.142011090478714], + [-47.02280891654452, -13.142011061255525], + [-47.03552846380459, -13.147978914555752], + [-47.035890167061254, -13.15087452590276], + [-47.03589016953267, -13.150874545687685], + [-47.041840001237446, -13.148647931697456], + [-47.041840069981376, -13.148647916325158], + [-47.047500439074796, -13.157652753923587], + [-47.04750045216032, -13.157652774740113], + [-47.05128728082707, -13.155924556895963], + [-47.05128732747199, -13.155924535607772], + [-47.062561577827886, -13.161813344687758], + [-47.06256162124325, -13.161813367363314], + [-47.069059316412925, -13.155513297480978], + [-47.06905936430822, -13.15551325104027], + [-47.072368349872484, -13.160510235892366], + [-47.077461742398846, -13.161559895504745], + [-47.08081338915967, -13.16197558053491], + [-47.080204588512125, -13.166450139717174], + [-47.08478106231448, -13.170554349117854], + [-47.08012597711631, -13.178128203692507], + [-47.08731569731658, -13.182436266894525], + [-47.08731575777841, -13.18243630312184], + [-47.08995406510559, -13.174026145543735], + [-47.09728075533297, -13.17180187785794], + [-47.097280820179606, -13.171801865905184], + [-47.102532852260204, -13.174636219939782], + [-47.105336565888464, -13.18171034683897], + [-47.10803616231897, -13.181464528927595], + [-47.108036236352945, -13.181464522053945], + [-47.108929672957075, -13.171054103110729], + [-47.10892967791637, -13.171054045317977], + [-47.11822928655222, -13.177892748614495], + [-47.13256119564243, -13.178514970143093], + [-47.132561269431875, -13.178514968232781], + [-47.14033528954182, -13.18759655867525], + [-47.13378355445365, -13.18985522228301], + [-47.13520046825962, -13.203166617096613], + [-47.15381271682089, -13.20990891175178], + [-47.15381275161241, -13.209908924353572], + [-47.16208597636304, -13.205772731140442], + [-47.162086030055434, -13.2057727042955], + [-47.16769930544675, -13.211245721043618], + [-47.16769933949182, -13.21124575423713], + [-47.17245010296645, -13.206467825497665], + [-47.18315720290002, -13.205715710810138], + [-47.18315727699353, -13.205715704692988], + [-47.184671899724364, -13.203623514845713], + [-47.17520221335017, -13.195152158971421], + [-47.1828177077131, -13.188120685897967], + [-47.18281773517678, -13.188120660539113], + [-47.19683802198119, -13.19364092517735], + [-47.211415535860986, -13.192563655990854], + [-47.211415609942954, -13.192563649733337], + [-47.21752973878461, -13.19654822058369], + [-47.21752975831797, -13.196548233313196], + [-47.22589256169641, -13.193514676534257], + [-47.22589262823949, -13.193514662301995], + [-47.23195142762096, -13.199342565515165], + [-47.23200384449727, -13.204620242149181], + [-47.25150576004553, -13.212394288347266], + [-47.248174675180714, -13.230136822818615], + [-47.25276280776492, -13.235144763832304], + [-47.26781593701839, -13.238390549365333], + [-47.26739991948842, -13.248177480519985], + [-47.2753339422616, -13.250938315306879], + [-47.28211856983197, -13.26492319787176], + [-47.28989574527509, -13.262243926494493], + [-47.28561972985701, -13.256325246800753], + [-47.293532695372726, -13.25654374639137], + [-47.293532769282116, -13.256543743884686], + [-47.29450526476939, -13.2489439501886], + [-47.30891881504096, -13.249741149058158], + [-47.30891888875838, -13.249741147559362], + [-47.32295967012213, -13.25831877713263], + [-47.32295970755286, -13.258318799997772], + [-47.33761992526772, -13.246334776997063], + [-47.337619945177586, -13.246334760720096], + [-47.352390924941815, -13.248848524089997], + [-47.35239097897585, -13.248848533284033], + [-47.368006042630775, -13.236151612737698], + [-47.371567199291015, -13.228731326920535], + [-47.37156721180472, -13.228731300844926], + [-47.37930878747317, -13.23112211580936], + [-47.38371399007901, -13.24147655355016], + [-47.38795162416148, -13.240584714953052], + [-47.387951697302675, -13.24058470380987], + [-47.393757455355235, -13.245592281475199], + [-47.39237615093428, -13.262365142462452], + [-47.39237592505032, -13.262367884821423], + [-47.397482341439705, -13.261109344063588], + [-47.39748240727624, -13.261109330628695], + [-47.41611814435155, -13.270340048575921], + [-47.42565538894637, -13.289748230041171], + [-47.42565639007047, -13.289750267188193], + [-47.432833766047224, -13.288088773813575], + [-47.432833838944234, -13.288088761965042], + [-47.4377307426163, -13.279045129699398], + [-47.4348125079765, -13.26823864765656], + [-47.455064072496725, -13.249390314338466], + [-47.44825611087727, -13.240753684724224], + [-47.431253440496825, -13.238047997257066], + [-47.43572489266593, -13.227114201951917], + [-47.44342973024133, -13.222434093792623], + [-47.443429761562236, -13.222434074766587], + [-47.46159018445344, -13.227505282954974], + [-47.48558590715061, -13.222171429716376], + [-47.4855859801448, -13.22217141816006], + [-47.48777065890973, -13.208134789989803], + [-47.47809168952649, -13.1876927410253], + [-47.48456832613676, -13.182468122773399], + [-47.48456835234632, -13.182468101629603], + [-47.50983682907599, -13.189881228164127], + [-47.509836869504724, -13.189881240022668], + [-47.523872826729196, -13.181947092395635], + [-47.52387285566672, -13.181947076036536], + [-47.53303168468582, -13.183822422211298], + [-47.54136853274579, -13.192379768846871], + [-47.541368547478775, -13.192379783968887], + [-47.56304033056087, -13.184242342863046], + [-47.5684527089632, -13.149546536739416], + [-47.5613128313629, -13.124685443997276], + [-47.561312635854385, -13.12468476319674], + [-47.57106699484991, -13.117209389632832], + [-47.571648929450035, -13.116763388711293], + [-47.59289752954866, -13.116679330397075], + [-47.592897603550334, -13.116679326669681], + [-47.61794806261878, -13.104719686078191], + [-47.61794811039645, -13.104719663264277], + [-47.62758493637539, -13.11047305457446], + [-47.62758497945689, -13.110473080293785], + [-47.63440686262267, -13.103212304094226], + [-47.63440692804453, -13.103212234459921], + [-47.63593076132761, -13.114331216067123], + [-47.64664129523178, -13.120617628637726], + [-47.64547711010777, -13.128589379133603], + [-47.65067711568141, -13.133363475485508], + [-47.6455381418361, -13.138731493374726], + [-47.649034095539015, -13.139436693166498], + [-47.6438147430277, -13.145799523424731], + [-47.644474343253414, -13.14987072273342], + [-47.6518686454116, -13.150106349713027], + [-47.65186871924983, -13.15010634730043], + [-47.65447864466423, -13.158331772517359], + [-47.659757433410775, -13.159038494499827], + [-47.66995279452005, -13.168313081125314], + [-47.65531193531168, -13.177887717737999], + [-47.65786944437446, -13.192451260222242], + [-47.66584088156618, -13.19675637614369], + [-47.66086961522085, -13.19886257124821], + [-47.66539142794301, -13.203820007632146], + [-47.66109127919463, -13.207371964295493], + [-47.66886233083664, -13.209415921101444], + [-47.66500656853717, -13.214050395069776], + [-47.66622523245183, -13.218664112359534], + [-47.666225158695674, -13.218664121259215], + [-47.65459090491605, -13.220346943667506], + [-47.65358982283752, -13.229042719346293], + [-47.6574191093488, -13.234727682799596], + [-47.646642210091095, -13.242014129994393], + [-47.64806140381773, -13.250606022301108], + [-47.640450597980234, -13.263219773554177], + [-47.649479544739926, -13.2741406596747], + [-47.656782917406986, -13.27691316976604], + [-47.65916741883303, -13.295815665101138], + [-47.656975255617425, -13.299901807023664], + [-47.66217301574417, -13.303860131737608], + [-47.654174044839515, -13.315662436259764], + [-47.65625170608296, -13.32235802518402], + [-47.649698935711655, -13.342657305605838], + [-47.65009372432456, -13.351260824984562], + [-47.63722517226144, -13.364807262838886], + [-47.637225098937556, -13.364807273573392], + [-47.62269645000598, -13.367675297496909], + [-47.627142869053095, -13.38440524620906], + [-47.63381220955559, -13.390896037969181], + [-47.63889694089349, -13.391047607074935], + [-47.63889701482122, -13.39104760460661], + [-47.642950830488935, -13.40297959274611], + [-47.65455950111879, -13.41504408337937], + [-47.656836411407326, -13.427724728105817], + [-47.66218815327481, -13.433408635015207], + [-47.66769673094698, -13.436267458549802], + [-47.67579441840864, -13.449241271306105], + [-47.678950919723434, -13.467724616555063], + [-47.67895093040511, -13.467724679101668], + [-47.770623188175605, -13.36692035701794], + [-47.80078689755587, -13.333715550325335], + [-47.80133127683788, -13.330508729529804], + [-47.801755491162815, -13.328009672665019], + [-47.81512482498884, -13.31855527781737], + [-47.81584613921785, -13.31804513962443], + [-47.81694720935668, -13.317697741013133], + [-47.82395510318954, -13.311877835937606], + [-47.82395513047869, -13.311877813273503], + [-47.84442788969804, -13.318647527436326], + [-47.861309174894366, -13.31439492968784], + [-47.86130924752661, -13.314394917108961], + [-47.86659106688989, -13.315091022365271], + [-47.87031214947259, -13.319862789583816], + [-47.88354339338469, -13.320520010183017], + [-47.883543467146595, -13.320520008397523], + [-47.88886640596274, -13.31805123243569], + [-47.89314678127101, -13.307254250127297], + [-47.89314679607856, -13.307254212773817], + [-47.90214390107366, -13.311830657269713], + [-47.902143968369295, -13.311830691498468], + [-47.903677786742115, -13.302402084305923], + [-47.90825298411649, -13.298946274608703], + [-47.91998505837592, -13.298783049680468], + [-47.91998513245605, -13.298783045547511], + [-47.924285365297614, -13.291428886410364], + [-47.924285386786906, -13.291428849658294], + [-47.92986689979149, -13.294564250670215], + [-47.92986693322372, -13.294564269450122], + [-47.93584478913762, -13.290733661599656], + [-47.9358448482664, -13.290733623708496], + [-47.943789380848216, -13.30707264170291], + [-47.94378939018775, -13.30707266090989], + [-47.94803593588271, -13.305336766666445], + [-47.94803600328713, -13.305336750624695], + [-47.95176079362265, -13.310279771169588], + [-47.95645161388541, -13.308721545026444], + [-47.95645167922882, -13.308721531995717], + [-47.966287298260774, -13.31526956767499], + [-47.96628733366958, -13.315269591247112], + [-47.97097609999394, -13.311529063967106], + [-47.972035046010426, -13.300851982992107], + [-47.97884324444663, -13.294750677530827], + [-47.98676254516683, -13.276879132405027], + [-47.99923870735339, -13.274940306603495], + [-47.999238775412486, -13.274940297086554], + [-48.022531212327934, -13.279846650582675], + [-48.022531271018465, -13.279846662942505], + [-48.02906218590658, -13.271488117387236], + [-48.02906221559188, -13.27148807939276], + [-48.0327009317882, -13.274009577646552], + [-48.03270099609593, -13.274009622208666], + [-48.03422998439318, -13.265852593644468], + [-48.02894944454296, -13.26441363683317], + [-48.033088764155806, -13.253986824151065], + [-48.05242754410989, -13.255831236760827], + [-48.052427619588904, -13.255831239178411], + [-48.051839716108226, -13.251930747924], + [-48.0565689165638, -13.248376586024326], + [-48.054953020388105, -13.238968773578197], + [-48.05495301299088, -13.238968730510685], + [-48.05884124128604, -13.24067789271311], + [-48.05884129446733, -13.240677916089657], + [-48.062422135395515, -13.235407638435953], + [-48.06242215878465, -13.23540760401081], + [-48.07179427671205, -13.240432272446848], + [-48.07179430054504, -13.240432285223767], + [-48.076316202285525, -13.238624234718522], + [-48.07631627061463, -13.238624218549887], + [-48.0790924622435, -13.24296300521082], + [-48.07226316118893, -13.267625897500318], + [-48.07734028886991, -13.266429981495879], + [-48.077340361712096, -13.266429969412998], + [-48.07811728833652, -13.27775545766691], + [-48.08081024037484, -13.27937489154713], + [-48.078030443000394, -13.282008389633404], + [-48.08298045784923, -13.28878870665543], + [-48.09323368752737, -13.286310742353939], + [-48.09323376029409, -13.286310730068855], + [-48.097508407045304, -13.29191487691803], + [-48.09750842169634, -13.291914896125341], + [-48.106728628003, -13.287800454304579], + [-48.10672867883271, -13.287800431620834], + [-48.113117449554885, -13.292039882912087], + [-48.1183163464519, -13.290747120366575], + [-48.1183164191253, -13.29074710785198], + [-48.121837934143244, -13.297439438380549], + [-48.150844220496346, -13.307031329653745], + [-48.150844264745416, -13.307031344283228], + [-48.15628395709357, -13.303025474401377], + [-48.156284024258, -13.30302542493876], + [-48.15750746172427, -13.310538583741588], + [-48.15750748663145, -13.310538736695412], + [-48.15998282837127, -13.302463164122091], + [-48.15998284206771, -13.30246311943655], + [-48.16536694108442, -13.30579888436241], + [-48.165366989564625, -13.305798914397899], + [-48.169772726295946, -13.29935960353826], + [-48.15370025215584, -13.279205029600469], + [-48.15645206873505, -13.25028654770377], + [-48.16861810761483, -13.24362682236469], + [-48.16889713381088, -13.24009735966847], + [-48.15329055032998, -13.21968047913132], + [-48.16264333971912, -13.207043751290634], + [-48.16505263200628, -13.197094758641665], + [-48.163753341768505, -13.182947395840515], + [-48.155511926222566, -13.174916321198712], + [-48.155838119593106, -13.166212144588442], + [-48.14508849257504, -13.15439246532838], + [-48.146617400755346, -13.152021461367214], + [-48.146617420710726, -13.152021430420316], + [-48.15792170311732, -13.156964729574012], + [-48.15792173972877, -13.156964745582929], + [-48.16245528566165, -13.154134361647843], + [-48.162455339607035, -13.15413432796767], + [-48.16534421643127, -13.157934200681234], + [-48.165344247934456, -13.157934242118172], + [-48.17389987907043, -13.148112941358432], + [-48.17389991279425, -13.148112902643286], + [-48.18372779066428, -13.155775045245425], + [-48.19056809570748, -13.154480522931554], + [-48.19056816905553, -13.154480512384202], + [-48.18631149350111, -13.156850830109674], + [-48.19686546793729, -13.163602397149218], + [-48.193589792564936, -13.172591690502312], + [-48.211535995426956, -13.174145092350942], + [-48.211536061286346, -13.174145093469987], + [-48.216869694341625, -13.168596311279302], + [-48.21686972644771, -13.168596277876855], + [-48.22512019876606, -13.173730793232034], + [-48.22512023588115, -13.17373081632888], + [-48.23184588507769, -13.168178585573264], + [-48.231845938234564, -13.168178541688743], + [-48.23884580262291, -13.180458841624976], + [-48.24542187686141, -13.18451093445052], + [-48.24284460823135, -13.187425392738135], + [-48.24715302648543, -13.19213587371501], + [-48.250854456219365, -13.197001058329976], + [-48.26270149671729, -13.197246522567465], + [-48.26270157061452, -13.197246519656789], + [-48.26540094777937, -13.204999317207733], + [-48.265400959823786, -13.204999351799302], + [-48.26862173463504, -13.202818863829028], + [-48.26862176649596, -13.202818842258516], + [-48.28000581058183, -13.206660792741872], + [-48.280005903687176, -13.206660824161188], + [-48.27648355466087, -13.199514158446624], + [-48.28053810550404, -13.199676292983558], + [-48.28500109246711, -13.205904375931079], + [-48.28500111273869, -13.205904404219199], + [-48.28787385078252, -13.203998464484672], + [-48.28787392174176, -13.203998417405385], + [-48.28875972690266, -13.215592161523738], + [-48.29308877176522, -13.215388665661688], + [-48.293088845857646, -13.215388660239865], + [-48.29256885714282, -13.219561515144925], + [-48.30895230477722, -13.22692878196679], + [-48.306760521933505, -13.228473010078762], + [-48.31065606753807, -13.232355111837894], + [-48.306310951152064, -13.23418364556707], + [-48.309889519957245, -13.234915424938528], + [-48.31659349871913, -13.234593312885446], + [-48.31659357281716, -13.23459330742231], + [-48.317481846377966, -13.22996948314446], + [-48.317481850929106, -13.229969459453283], + [-48.32842470512503, -13.232542205364886], + [-48.32842473306651, -13.23254221193351], + [-48.342090506612756, -13.228407993381055], + [-48.34209058240988, -13.228407975454932], + [-48.34065492997953, -13.236842957676473], + [-48.34389148787471, -13.24162911375761], + [-48.33689824077053, -13.24709221630716], + [-48.342181260395364, -13.249794337617253], + [-48.34218130271377, -13.249794359261337], + [-48.3508401923802, -13.241866838085386], + [-48.35084021072895, -13.241866821285495], + [-48.35806242546857, -13.243090420174063], + [-48.3709578072106, -13.249484606961557], + [-48.3740411187278, -13.255901678933972], + [-48.37940220402263, -13.255878920602543], + [-48.379402278046214, -13.255878916756663], + [-48.38564478384648, -13.266082203708288], + [-48.38564482059715, -13.266082263774276], + [-48.38840319652299, -13.261089281217842], + [-48.38840324131802, -13.261089200131337], + [-48.39112588231682, -13.26795828910065], + [-48.40187260607227, -13.270447130439102], + [-48.40187264935451, -13.270447140461886], + [-48.407203137647, -13.26742797536504], + [-48.407203185828, -13.267427948074594], + [-48.41667681033846, -13.274728841344958], + [-48.42981695729153, -13.271588675144502], + [-48.42981703009211, -13.271588662894334], + [-48.43250683604631, -13.275381552642795], + [-48.43079347840087, -13.280193807230773], + [-48.43681719699663, -13.284241986624291], + [-48.4351818181217, -13.288871461655466], + [-48.44167414175555, -13.29237626061895], + [-48.441674194426284, -13.292376289051596], + [-48.44682002657848, -13.283740224885985], + [-48.457535606453405, -13.282861967421006], + [-48.457535680523854, -13.282861960683956], + [-48.461568744013746, -13.2746953710634], + [-48.46186822078771, -13.263180507392182], + [-48.45640362642018, -13.259668007902686], + [-48.46137402022615, -13.258561298526526], + [-48.4613740932308, -13.258561286809499], + [-48.46070087250056, -13.249591600787753], + [-48.45706898098583, -13.248702106781199], + [-48.46798180762624, -13.244303142617033], + [-48.47042780899609, -13.236136930909447], + [-48.475238489742, -13.235740998352785], + [-48.475238563796665, -13.235740991598707], + [-48.47248378844538, -13.223165497891658], + [-48.475316029375925, -13.216215377876347], + [-48.471789783887935, -13.211564229874025], + [-48.47278486156943, -13.202390901701701], + [-48.477700356074415, -13.196947208907451], + [-48.47509752456463, -13.191695817817997], + [-48.477536710616555, -13.178722428849271], + [-48.4719510916268, -13.173138009409604], + [-48.472369598091795, -13.166430291062115], + [-48.46858860170741, -13.162375201149535], + [-48.469702674799755, -13.149594936251841], + [-48.475900291106164, -13.1345956323346], + [-48.47959153374878, -13.133220819185704], + [-48.47959160661353, -13.133220802110586], + [-48.480585529575784, -13.141930097140222], + [-48.48798623475703, -13.142786643481086], + [-48.487986292819, -13.14278665020025], + [-48.49496091754821, -13.136585740642484], + [-48.50648884080446, -13.133512206884667], + [-48.506488913181485, -13.133512193732367], + [-48.508732440477786, -13.128915952541666], + [-48.50873246566924, -13.128915900931496], + [-48.522039696423754, -13.140969080708038], + [-48.5212073448849, -13.166784070279006], + [-48.53012119977247, -13.184867479660154], + [-48.53034623715575, -13.192568955631183], + [-48.54692317791147, -13.19566912799797], + [-48.554570698421514, -13.204975646760694], + [-48.55367361032354, -13.225348643874149], + [-48.54984631770763, -13.230577851091986], + [-48.5556893742437, -13.238556389645726], + [-48.5554237145899, -13.263503369325937], + [-48.55970308364708, -13.273949753583944], + [-48.55381957092146, -13.280520498135637], + [-48.553570762619415, -13.301990157423838], + [-48.56764552929508, -13.311873986496547], + [-48.57816496783602, -13.31477418032386], + [-48.586371289492945, -13.317622228337836], + [-48.586371353134396, -13.317622250423765], + [-48.5895135066892, -13.308686151394113], + [-48.59722894595996, -13.302802357939534], + [-48.60070059565056, -13.292542244301277], + [-48.59819211214603, -13.284242586279579], + [-48.58953911087573, -13.263922229306054], + [-48.59163920561727, -13.256415051274013], + [-48.58760017268543, -13.254757868348094], + [-48.59790176283301, -13.246684533842572], + [-48.6005346218329, -13.238636477385944], + [-48.59373112337034, -13.235505126866059], + [-48.583273422310405, -13.222155919229989], + [-48.583646798309765, -13.210536813682102], + [-48.57971104578958, -13.20741274475177], + [-48.58045475393385, -13.191389296519306], + [-48.57789402986459, -13.187474133596078], + [-48.583677843843894, -13.180895186163008], + [-48.578457119566465, -13.172799104364472], + [-48.58720290933946, -13.167059155001409], + [-48.58642918115689, -13.15908359010137], + [-48.592507903510395, -13.158670937580478], + [-48.59250797756684, -13.158670931337431], + [-48.59672668772099, -13.152636484016496], + [-48.590649803514864, -13.150871561485173], + [-48.58920719111153, -13.145152467158436], + [-48.58220215413534, -13.14193385529935], + [-48.581761109808404, -13.128431390436093], + [-48.57795747096256, -13.127772767419494], + [-48.57742520195947, -13.12387247132922], + [-48.582482876376375, -13.118378812939852], + [-48.58100889167286, -13.114385865005733], + [-48.58561864145627, -13.10608282827537], + [-48.59631668927025, -13.107420878155311], + [-48.59631676771763, -13.10742088239631], + [-48.594153482699866, -13.101786751910796], + [-48.588896337867844, -13.099579317296449], + [-48.59616948574384, -13.088724244704814], + [-48.59643180835419, -13.078615884279742], + [-48.60273606512102, -13.078296986527159], + [-48.602736139164406, -13.078296980919319], + [-48.60137248416942, -13.060891123353432], + [-48.60435223502791, -13.058472743085657], + [-48.60435226290742, -13.058472720458097], + [-48.610238060842164, -13.060409908855425], + [-48.61023810745062, -13.060409924195021], + [-48.61981824313393, -13.052414747325543], + [-48.62769079376613, -13.052163462440696], + [-48.62769086778782, -13.052163457519992], + [-48.637118224074825, -13.03467455366881], + [-48.63895590629701, -13.02617625517044], + [-48.63649387992277, -13.021264605028554], + [-48.64023456723157, -13.013956068841107], + [-48.647817169842796, -13.010838239569425], + [-48.64781720767105, -13.010838224014346], + [-48.656518046726944, -13.012783256750229], + [-48.65651811886678, -13.012783272875474], + [-48.65707202039943, -13.005451221862462], + [-48.66434600454998, -13.001522387592065], + [-48.66434604888576, -13.001522363644275], + [-48.66812541294337, -13.003624591844648], + [-48.668125460713505, -13.003624618415719], + [-48.67534574575818, -12.994218985457627], + [-48.68337361964973, -12.993898263074737], + [-48.683373693661146, -12.993898257844872], + [-48.68658996823092, -13.002477123895599], + [-48.690565155202954, -13.003317123729422], + [-48.69056521917375, -13.00331713724665], + [-48.693358288727964, -12.997416844516227], + [-48.70171573135458, -12.998123363389576], + [-48.70792512515637, -13.005112491609697], + [-48.70792516011583, -13.00511253095779], + [-48.71237401461344, -12.999762357682311], + [-48.712374040020904, -12.99976232712639], + [-48.717772194083885, -13.002327207341992], + [-48.717772246278734, -13.002327232141129], + [-48.72518334923872, -12.991305255796691], + [-48.73070815328182, -12.989796947754225], + [-48.73070822552745, -12.989796934363618], + [-48.734402927518225, -12.975496389176715], + [-48.73068101033269, -12.961529866413203], + [-48.737502936635615, -12.949694512950044], + [-48.739176708565104, -12.946155065614859], + [-48.73354345612979, -12.93017733720149], + [-48.73653761496136, -12.921032827984563], + [-48.74884828679434, -12.91765783250459], + [-48.748848359003325, -12.91765781907318], + [-48.754509752121606, -12.908073613039695], + [-48.762565193613376, -12.905936366072304], + [-48.76256526595013, -12.905936352915717], + [-48.77110374823253, -12.894541165619643], + [-48.785986512905446, -12.880589534094911], + [-48.78598657813924, -12.880589472936594], + [-48.78671655809647, -12.885116541747841], + [-48.79132128311721, -12.88423702144708], + [-48.79132135636944, -12.884237010739962], + [-48.794871724960444, -12.876463527549088], + [-48.800040857776814, -12.876756648720944], + [-48.8000409313102, -12.876756647023008], + [-48.7997904781703, -12.87340342824602], + [-48.80599999236817, -12.869947210596584], + [-48.80526098470668, -12.866909436115394], + [-48.81451274003684, -12.86413342006973], + [-48.8115644856341, -12.860040788580111], + [-48.81798419386457, -12.853549692734125], + [-48.82090327066654, -12.844311270312812], + [-48.820903278140584, -12.844311246657467], + [-48.825869753385774, -12.845515550295632], + [-48.82586979933601, -12.8455155614375], + [-48.83123220231667, -12.84192382456482], + [-48.83123227440072, -12.841923776281364], + [-48.83134272042747, -12.844447616950163], + [-48.84232185988856, -12.844412208753397], + [-48.842321933767515, -12.844412204852759], + [-48.84528989954027, -12.840708366246725], + [-48.84212413165078, -12.830468674876908], + [-48.847510012865826, -12.818243490094877], + [-48.84673020415139, -12.80981021001817], + [-48.85746271468781, -12.805426895434701], + [-48.857462779505745, -12.805426880257896], + [-48.86254137031297, -12.809701789735616], + [-48.86254144023579, -12.809701848591725], + [-48.86282050455139, -12.804987928824062], + [-48.869814525461805, -12.80440048549229], + [-48.869814599374735, -12.804400478598316], + [-48.8739862111016, -12.807392275870534], + [-48.86851931358449, -12.815888295496162], + [-48.87498315207737, -12.814655569928048], + [-48.87498322531266, -12.814655559216284], + [-48.879678905350154, -12.81748188494661], + [-48.97558895099968, -12.957201094916492], + [-48.97558899113458, -12.957201153349205], + [-48.9801714384534, -12.948239880569043], + [-49.004845126912905, -12.932551425762991], + [-49.00987001582244, -12.916688246169587], + [-49.02076453412124, -12.912063231389933], + [-49.022981206818834, -12.90713086835334], + [-49.03351678559565, -12.903465820640724], + [-49.03351684966727, -12.90346580739608], + [-49.050023717762535, -12.91294752433526], + [-49.05002376441886, -12.912947551132815], + [-49.053433068661946, -12.908638110837625], + [-49.07769941031788, -12.904166506869478], + [-49.07769948364119, -12.904166496351234], + [-49.085170003738874, -12.894464902026423], + [-49.08254975988103, -12.892498719772554], + [-49.087650137811686, -12.891528373312633], + [-49.08765021107305, -12.891528362587568], + [-49.08781489131689, -12.888430484803505], + [-49.08715284321463, -12.888001692259644], + [-49.08089970273391, -12.883951540266091], + [-49.0849555300524, -12.8794924824156], + [-49.08526759126741, -12.879149385912205], + [-49.073846904894054, -12.869566321030165], + [-49.07055391982057, -12.859613711092715], + [-49.07229402074538, -12.852758907181087], + [-49.06748239836121, -12.847341888348781], + [-49.08304957074955, -12.84548409763141], + [-49.083049644536935, -12.845484089415963], + [-49.096678757632745, -12.836002535774822], + [-49.106181239178994, -12.836111435735576], + [-49.10618131298481, -12.836111432337981], + [-49.12098939137871, -12.790402666555998], + [-49.120989406420534, -12.79040262011482], + [-49.136904826504626, -12.80090185068611], + [-49.14114906027895, -12.810393345332649], + [-49.14590384448375, -12.820030312525063], + [-49.15133080898401, -12.821345459929345], + [-49.16134563282691, -12.834506388571741], + [-49.193069408525474, -12.85712688807486], + [-49.195184316909014, -12.863401879843192], + [-49.196485381240684, -12.867262043977673], + [-49.2081792984677, -12.873199661703355], + [-49.20879051953173, -12.873509989979388], + [-49.21100827254752, -12.878365672920323], + [-49.222566555905914, -12.876618815178539], + [-49.222566629502765, -12.876618805802023], + [-49.22853709463304, -12.877924755544655], + [-49.23142069439239, -12.88379451079582], + [-49.23737189133692, -12.884080838920903], + [-49.2373719649239, -12.884080836847797], + [-49.23531616948477, -12.893653743147762], + [-49.24952258207282, -12.902586095346503], + [-49.24643317399376, -12.916905515803698], + [-49.252577582167596, -12.931758167669345], + [-49.25721423893346, -12.935088907007485], + [-49.25778481071607, -12.941803561749733], + [-49.26309941016924, -12.940197609398297], + [-49.26309947669754, -12.94019759417828], + [-49.26742781924205, -12.944638267187381], + [-49.27898510093419, -12.969168932402317], + [-49.27971691827063, -12.976831975085371], + [-49.27567953618685, -12.9807095351658], + [-49.278821662034204, -12.989019968417018], + [-49.28385229019616, -12.9916630367693], + [-49.30061076070304, -13.023132495447397], + [-49.32217865595083, -13.052087182947702], + [-49.33742737856016, -13.066297787585384], + [-49.35435350189117, -13.102990426955184], + [-49.35393742253586, -13.110747028443178], + [-49.34479173991956, -13.117430861263651], + [-49.34190642531531, -13.127211104654256], + [-49.35268391406407, -13.143996842821377], + [-49.354789828698095, -13.153784255993827], + [-49.34481931409775, -13.177326170827433], + [-49.34829621786567, -13.18967176169969], + [-49.34457728629986, -13.203613828282247], + [-49.34890291232585, -13.213923735543222], + [-49.33987541649596, -13.234592321678148], + [-49.340291824242726, -13.253897468583824], + [-49.369486512303716, -13.274625035989226], + [-49.369486538011365, -13.274625054238207], + [-49.4318123527059, -13.241147226998665], + [-49.5297447721039, -13.18757120092437], + [-49.5300223923885, -13.187414830210914], + [-49.79697937293065, -13.036808047873915], + [-49.7976472335501, -13.036430663334336], + [-49.897332965905946, -12.980563218952264], + [-49.90914979560947, -12.974043745755472], + [-49.91142943712215, -12.966774622597953], + [-49.939380953921265, -12.956929736545703], + [-49.93938099580377, -12.95692972179123], + [-49.952722825893886, -12.959800929011399], + [-49.95272287572811, -12.959800939734505], + [-49.979132126118586, -12.939362353085857], + [-49.9791321647152, -12.939362323210656], + [-49.989734322225324, -12.945973781051803], + [-49.989734361221274, -12.945973805368107], + [-50.002968674511244, -12.933749758696075], + [-50.01790863662551, -12.929223464389736], + [-50.017908698235985, -12.929223452963216], + [-50.03887993290195, -12.935269184264994], + [-50.0388799588251, -12.935269191737092], + [-50.044414881826505, -12.93349399280907], + [-50.05029226343915, -12.922549838346974], + [-50.07121876995256, -12.917985828838487], + [-50.07121884291845, -12.91798581702055], + [-50.07885061634128, -12.905941202428838], + [-50.10390346617331, -12.908043968031231], + [-50.10967190258327, -12.911406735967635], + [-50.10967192245581, -12.911406747552169], + [-50.12691283012813, -12.905174640062906], + [-50.149791223726616, -12.90293268561037], + [-50.14979129760597, -12.902932678019058], + [-50.16060603466598, -12.893662746869387], + [-50.16060605999509, -12.893662725156979], + [-50.17293859008345, -12.897163527777272], + [-50.172938647508516, -12.897163544076797], + [-50.17646330588867, -12.89195844132747], + [-50.181014826811136, -12.892365720617079], + [-50.183381600843894, -12.89677263967534], + [-50.18338161298214, -12.896772662276254], + [-50.195744082164794, -12.890651902214806], + [-50.19996782764873, -12.884266581507934], + [-50.19996784232432, -12.884266559321114], + [-50.20468330679316, -12.88540107927693], + [-50.204683365126954, -12.88540109331122], + [-50.21112644532078, -12.876262721211045], + [-50.21112647759442, -12.876262675434386], + [-50.21329624083695, -12.87823715403135], + [-50.22507594792876, -12.874301101526397], + [-50.22537760801154, -12.86160323694797], + [-50.231737021598086, -12.858453933328793], + [-50.23149623756971, -12.854157213611233], + [-50.23149623378447, -12.854157146064304], + [-50.236079027326426, -12.857675282158679], + [-50.23607905987676, -12.857675307146446], + [-50.242294751365996, -12.852713008366345], + [-50.242294770779665, -12.85271299286689], + [-50.25080423934264, -12.85389083684344], + [-50.25080431245348, -12.853890840899558], + [-50.25104744979863, -12.849803867513476], + [-50.26348596155691, -12.847772262786103], + [-50.26348603504356, -12.847772252824507], + [-50.2622431175455, -12.844788234611256], + [-50.27163100358257, -12.841060019736037], + [-50.27163106777289, -12.841060004913636], + [-50.275906218196575, -12.84409863114264], + [-50.27590624071733, -12.84409864714925], + [-50.28326927540744, -12.840656183756389], + [-50.283269344046154, -12.840656164931836], + [-50.28460283753568, -12.843446467168183], + [-50.2846028757652, -12.843446547161589], + [-50.28721380348047, -12.836992971305426], + [-50.287213819421126, -12.836992931902866], + [-50.29260546540045, -12.839919829848093], + [-50.292605528515125, -12.839919864109389], + [-50.29532396947708, -12.829192940382585], + [-50.30201700618951, -12.824396930086893], + [-50.30179353279919, -12.820337490907082], + [-50.30179352912334, -12.82033742413413], + [-50.30448951655212, -12.822382633302688], + [-50.30448955483394, -12.82238266234334], + [-50.30712848309491, -12.819632673077589], + [-50.305883033049184, -12.80586626966447], + [-50.311237441335315, -12.798550104580437], + [-50.309298661557584, -12.78942136474421], + [-50.30399831675593, -12.78602621558698], + [-50.3066366815319, -12.767322094397144], + [-50.29546166932233, -12.753489271169038], + [-50.30221409425844, -12.745707199423077], + [-50.29663326967355, -12.742595151091782], + [-50.29834729653154, -12.739860100130077], + [-50.28871246527798, -12.735249605395621], + [-50.28418805699625, -12.718186931333214], + [-50.297101716885514, -12.711041232590796], + [-50.29948781903359, -12.705941732493946], + [-50.295551060799454, -12.705074019015617], + [-50.29424111023293, -12.695653778359834], + [-50.29727072217593, -12.69188407773009], + [-50.300383986493244, -12.682259158727806], + [-50.29521282167004, -12.676243477154893], + [-50.2952128060807, -12.676243552837851], + [-50.2926854302108, -12.688512734835665], + [-50.29268538266728, -12.688512615493895], + [-50.29049195768122, -12.683006653858296], + [-50.28596841138623, -12.68205674492463], + [-50.28596839719088, -12.682056765429705], + [-50.28116166518297, -12.688999807142576], + [-50.28116164669028, -12.688999735283362], + [-50.2783476433874, -12.678064597718649], + [-50.27834758233767, -12.678064655153701], + [-50.272886677354215, -12.683202060833851], + [-50.27288661157179, -12.683202061305076], + [-50.27284543437612, -12.683197031523624], + [-50.266785747828976, -12.682458021322269], + [-50.266787494275434, -12.682455734885934], + [-50.27048865562234, -12.67761007489924], + [-50.264150746872176, -12.663897339211738], + [-50.26977314433108, -12.654853937938542], + [-50.25951933106208, -12.645817599725554], + [-50.26237972810019, -12.637716295357595], + [-50.25707325269189, -12.634960740490275], + [-50.255126729983346, -12.625013084431053], + [-50.25512666616455, -12.625013143214957], + [-50.248547701571454, -12.631072840352987], + [-50.248547662316014, -12.631072816560021], + [-50.23693413142583, -12.624033349596356], + [-50.245662992526555, -12.59736864127562], + [-50.23816140064359, -12.579590908786939], + [-50.23491456460509, -12.577812325569079], + [-50.23491454822979, -12.577812364983288], + [-50.23177342274115, -12.585372574932473], + [-50.231773350262124, -12.58537258781674], + [-50.22718329743008, -12.586518758840647], + [-50.20830194429163, -12.573034421819125], + [-50.20401330870506, -12.564197855667706], + [-50.20401323492432, -12.564197860044889], + [-50.19312996294682, -12.564311838141432], + [-50.19787376361219, -12.555454215057631], + [-50.203463261231775, -12.553587294522455], + [-50.20346330165244, -12.553587281021246], + [-50.20604022049241, -12.554014271893822], + [-50.206404452904955, -12.561990709633468], + [-50.212014702849, -12.5614744298514], + [-50.21201477664591, -12.561474422461709], + [-50.21374217389329, -12.548403210967354], + [-50.22290914875385, -12.543584645203573], + [-50.22934999609203, -12.53390635725638], + [-50.2198502704615, -12.517605713371006], + [-50.21762950193719, -12.48890058764377], + [-50.21443086554624, -12.482369347179192], + [-50.20493141116356, -12.477094879979092], + [-50.20521301107248, -12.465855447600667], + [-50.19656534564668, -12.458489960970665], + [-50.18420858956926, -12.455304889007882], + [-50.18297086007536, -12.451056238734395], + [-50.17971708117428, -12.439886651103494], + [-50.165139333217766, -12.437115250014134], + [-50.164776088233076, -12.437046182221241], + [-50.15951541711232, -12.43104407720184], + [-50.158179238157366, -12.412371589020465], + [-50.1426343209021, -12.395934464342002], + [-50.14263366818039, -12.39593377409756], + [-50.172373672178445, -12.408495197834073], + [-50.17118424306528, -12.420006522799747], + [-50.17504894398464, -12.423733472874474], + [-50.18523237797832, -12.422953840919815], + [-50.18523245177139, -12.422953834097795], + [-50.18859993026496, -12.420677233155798], + [-50.18899334412063, -12.413689463389728], + [-50.196539468254215, -12.413345010872895], + [-50.19653954206088, -12.41334500519039], + [-50.19802416282343, -12.419600440659158], + [-50.18693433691829, -12.423756267379042], + [-50.18396037016172, -12.43145561326984], + [-50.1986385355136, -12.432118065755702], + [-50.198638608953, -12.432118063411444], + [-50.21229270686651, -12.437121932034858], + [-50.21568946219237, -12.441390504629606], + [-50.21568938866795, -12.441390513848953], + [-50.20813184050205, -12.442466753427151], + [-50.207569564400366, -12.448810886907815], + [-50.22251907182673, -12.446114702919106], + [-50.222519145054285, -12.446114692360489], + [-50.230151184407305, -12.455738770789091], + [-50.253855979550686, -12.4623017188947], + [-50.26315860361036, -12.478183501766832], + [-50.274573807210636, -12.481463517239513], + [-50.274573836873, -12.481463525761892], + [-50.281327870946434, -12.478929277956826], + [-50.28132793797444, -12.47892926263141], + [-50.289690786195166, -12.488080768030745], + [-50.307796700253256, -12.494379154099297], + [-50.32512773387043, -12.508808834779654], + [-50.325127660044124, -12.508808841320597], + [-50.31876550330915, -12.509244507404063], + [-50.312846784929015, -12.516475438753814], + [-50.31409882621169, -12.521542379371924], + [-50.314098831110314, -12.52154239919597], + [-50.330199609859804, -12.515029468018069], + [-50.33019967700589, -12.51502945175678], + [-50.334487870358615, -12.520402984463042], + [-50.33123966491293, -12.53548963953453], + [-50.34654410358866, -12.533869738335126], + [-50.34654417732862, -12.53386973041966], + [-50.346296869829935, -12.543113739459958], + [-50.35967946931286, -12.541680929932198], + [-50.359679543049964, -12.541680921970762], + [-50.36609708204304, -12.548237051873587], + [-50.35848620740485, -12.553763459683191], + [-50.36654324904791, -12.554667368059178], + [-50.3697354621131, -12.559987984622426], + [-50.36646280488796, -12.571448824645154], + [-50.37072209339962, -12.57557034009163], + [-50.382220057794676, -12.5772621567072], + [-50.38726755660559, -12.590249347877688], + [-50.3987687442434, -12.602168436859051], + [-50.39135104921931, -12.606697470339906], + [-50.392707720338706, -12.613664428937184], + [-50.40712650023503, -12.614681262480895], + [-50.41860470682186, -12.624604637969561], + [-50.41166095423076, -12.64617910505091], + [-50.41329666365803, -12.650143342291566], + [-50.4184689118606, -12.65163393902643], + [-50.41846896349208, -12.651633953905584], + [-50.42732391558711, -12.64246488435327], + [-50.427323952127956, -12.642464846514134], + [-50.44082427526553, -12.65327476834202], + [-50.438492449916936, -12.658108221632457], + [-50.43849240839103, -12.658108162853384], + [-50.432770162410826, -12.650008137977228], + [-50.43277010686152, -12.650008171793374], + [-50.427906840472616, -12.652968651279231], + [-50.43695945913179, -12.66129830307383], + [-50.43235719858912, -12.669232443416522], + [-50.43679793872633, -12.678073467821758], + [-50.43251613287028, -12.689999263231474], + [-50.43982521901047, -12.697983643499144], + [-50.461737351856165, -12.694281236919352], + [-50.46173742525129, -12.694281226727576], + [-50.46435192479378, -12.703498491054077], + [-50.47801952467899, -12.70995323045238], + [-50.47874246353137, -12.716287601203156], + [-50.46807597529823, -12.72130847020186], + [-50.46618248992408, -12.731489984742074], + [-50.46826436817107, -12.736093626575963], + [-50.482348057915786, -12.739277580298454], + [-50.48596699751013, -12.748573214274172], + [-50.48315864454667, -12.752598493515489], + [-50.48315857090836, -12.752598496488332], + [-50.47188217164306, -12.752276225347583], + [-50.46848832549539, -12.755401031643222], + [-50.477433407956745, -12.760282889851396], + [-50.47571594963668, -12.77209199786401], + [-50.48462946358806, -12.775973526724353], + [-50.493827789859225, -12.785660074696132], + [-50.484794716161716, -12.811963671414214], + [-50.49110432910808, -12.814060000229297], + [-50.49413417686856, -12.819377470602005], + [-50.49102097521736, -12.82883999969592], + [-50.49543419379243, -12.842029428313294], + [-50.511236432878356, -12.860807140344145], + [-50.511236497234286, -12.860807216810484], + [-50.513046366578116, -12.844644786489132], + [-50.520294486229226, -12.836397058103385], + [-50.520294516858286, -12.836397023248587], + [-50.531938751064196, -12.8436247363296], + [-50.56690732162377, -12.843426249170692], + [-50.566907395459694, -12.843426244927754], + [-50.59779949919944, -12.826777802502312], + [-50.60060379250075, -12.818887500326458], + [-50.5836507763433, -12.809746562405797], + [-50.579017335882604, -12.802715885826407], + [-50.58448612143988, -12.799779690215075], + [-50.603266162850225, -12.800465107005586], + [-50.60326623644572, -12.800465104305932], + [-50.613461950359294, -12.818404997836124], + [-50.61807031622379, -12.821604829044327], + [-50.61807033603375, -12.821604842799093], + [-50.622684715096334, -12.81973897591418], + [-50.62652489009809, -12.81188221263224], + [-50.62531214041697, -12.800022244106412], + [-50.61171869630299, -12.775899577047557], + [-50.61479719432405, -12.771654877653186], + [-50.61479721187499, -12.771654853453043], + [-50.63020912425238, -12.776071748022536], + [-50.63020916938682, -12.776071760956087], + [-50.63594683108316, -12.771863287111575], + [-50.627160187811945, -12.760896952310642], + [-50.62291459322526, -12.734641333392398], + [-50.63716246611968, -12.71978461446749], + [-50.63007899141827, -12.704533521367994], + [-50.63315784021923, -12.701548215552451], + [-50.645074547860126, -12.702242156566022], + [-50.64507462125584, -12.702242154644173], + [-50.65471845591796, -12.679182103430954], + [-50.654830454364046, -12.67349844877822], + [-50.6463021883479, -12.663796473636312], + [-50.64688216546216, -12.65112414992551], + [-50.65615673513885, -12.645995889745114], + [-50.65615675647689, -12.645995877945902], + [-50.682476772182454, -12.64785137022886], + [-50.68247684549506, -12.647851372257653], + [-50.699641005280654, -12.647778028034708], + [-50.69964107904874, -12.647778023818924], + [-50.70109909506363, -12.624205465328467], + [-50.706097927866786, -12.613521885604738], + [-50.70407454517382, -12.599802157515839], + [-50.70001808622989, -12.59514727996247], + [-50.68985377661655, -12.59338917689599], + [-50.689853741429324, -12.593389191679222], + [-50.67382581875698, -12.600122354338117], + [-50.67382579830256, -12.600122340066624], + [-50.66793495793201, -12.596012047187607], + [-50.66938171418137, -12.580767912101344], + [-50.686431204231575, -12.56920689341173], + [-50.67754550185954, -12.552110944105884], + [-50.663663298323364, -12.537435994180337], + [-50.659550810087396, -12.506090144981094], + [-50.645972598887994, -12.482113711421475], + [-50.652992004002215, -12.460076733998372], + [-50.642216133150825, -12.452506414344136], + [-50.64221607844066, -12.452506435794156], + [-50.627138174117974, -12.458417411427018], + [-50.62713815760966, -12.458417397116577], + [-50.62352668638568, -12.455286689916218], + [-50.61820810907408, -12.428995089325147], + [-50.62225692805102, -12.422814538000122], + [-50.63262829573752, -12.41710674489396], + [-50.62682557784134, -12.384034900771056], + [-50.632243391530146, -12.366817650988216], + [-50.64425663118576, -12.347671307806502], + [-50.63776923872918, -12.325288959135694], + [-50.643524618916345, -12.31895703739283], + [-50.648868546989355, -12.299092539060851], + [-50.629492640193035, -12.280973084889833], + [-50.63029043789172, -12.27188627423444], + [-50.64990722931179, -12.24912847431548], + [-50.6436630083153, -12.222967933841707], + [-50.655385075976675, -12.218209563887433], + [-50.6786302470736, -12.218852489805853], + [-50.678630320555506, -12.218852486749102], + [-50.68682484124541, -12.202156754785886], + [-50.67913444628964, -12.188080747425252], + [-50.678988473802846, -12.155337132239302], + [-50.67030914596247, -12.137605763829683], + [-50.67598271285583, -12.123898688169142], + [-50.66723086638613, -12.08117176490593], + [-50.66757602907911, -12.064563169573804], + [-50.686551003976106, -12.045136208387289], + [-50.687029426734426, -12.035636718497345], + [-50.67780253659052, -12.019516359930886], + [-50.68402170916816, -12.010831374517194], + [-50.68219133185211, -11.990890526453367], + [-50.65678732932785, -11.966852452161971], + [-50.6546898811359, -11.947989164938615], + [-50.66784900521981, -11.927770420752847], + [-50.65906801316144, -11.914321132172622], + [-50.64052460631182, -11.902692797244086], + [-50.639241839721336, -11.884569589448787], + [-50.665326295532374, -11.86446095245096], + [-50.68260262380646, -11.862905438089179], + [-50.68260269740455, -11.86290543068884], + [-50.686257986805664, -11.858998424416956], + [-50.687998261994856, -11.825044062943808], + [-50.70054054253476, -11.803469486096455], + [-50.707814708048325, -11.768236966428098], + [-50.7139319937086, -11.757418167771025], + [-50.72199548627121, -11.739701848928556], + [-50.721544958617706, -11.731715630315382], + [-50.692434484702424, -11.701133725053001], + [-50.67402232869767, -11.692678595206653], + [-50.663655926761734, -11.677530403926799], + [-50.662104215544566, -11.668469424505096], + [-50.6628031048937, -11.646912073449469], + [-50.66457496415373, -11.626614434766678], + [-50.65813760302527, -11.616584565539643], + [-50.65742780550709, -11.592809567880426], + [-50.67004060729548, -11.581589374645583], + [-50.67004062468298, -11.581589359176878], + [-50.68209249303103, -11.583155429798822], + [-50.715940291342505, -11.578956353069653], + [-50.7159403647332, -11.578956344421378], + [-50.740942205329304, -11.537242398860958], + [-50.73474982123526, -11.511825656776386], + [-50.73929685178973, -11.49915632148501], + [-50.73906559577323, -11.471369095400705], + [-50.742017743811274, -11.460352535594781], + [-50.73921342472545, -11.43538812389807], + [-50.72693920049826, -11.411148971798745], + [-50.72846504225425, -11.382569082303974], + [-50.7122145932086, -11.359848494243115], + [-50.70571039351122, -11.341501295489062], + [-50.70705325590926, -11.328168984282296], + [-50.698643978219145, -11.310556224144857], + [-50.69676773242898, -11.30466102959268], + [-50.67894960410727, -11.294923299408632], + [-50.67006189256403, -11.284588212641392], + [-50.65599160273143, -11.240240088836039], + [-50.65424137501643, -11.218649355177508], + [-50.661775784236845, -11.203142069166402], + [-50.659845112797655, -11.187377362779134], + [-50.66449019931417, -11.154635637758629], + [-50.65860702742222, -11.128819042622466], + [-50.64740852127812, -11.126618614164721], + [-50.64384091593941, -11.1231860472385], + [-50.63699749089435, -11.100550542008278], + [-50.61754771934245, -11.085814523033326], + [-50.609412398075214, -11.067449202198562], + [-50.61141076273719, -11.042979585392986], + [-50.61738009320881, -11.03200415654132], + [-50.61754804945793, -11.002428764820696], + [-50.624795696204544, -10.98384207605843], + [-50.6201965357525, -10.968911278064793], + [-50.632900635903965, -10.935946558157582], + [-50.62207996951451, -10.918209940625827], + [-50.60074441563232, -10.900687442615517], + [-50.599359888447125, -10.884467548934344], + [-50.60490812543117, -10.87247598048849], + [-50.61899899986166, -10.864098061717257], + [-50.62196188306708, -10.839421488597381], + [-50.61167234467603, -10.821509103298212], + [-50.61215378043084, -10.810325163424768], + [-50.607133537698616, -10.804685981971302], + [-50.60713346443245, -10.804685986224426], + [-50.597691176616884, -10.804722307031936], + [-50.59155098113466, -10.799980453222672], + [-50.590157290895625, -10.786454759424522], + [-50.57054343060236, -10.752507952229525], + [-50.57771695127399, -10.733387950859248], + [-50.57687452720189, -10.719374784235512], + [-50.58582580838546, -10.70419528572045], + [-50.58755959729802, -10.686013251006278], + [-50.60277604316717, -10.67376390326116], + [-50.60334747160844, -10.660010384178467], + [-50.58252242668338, -10.644085204098229], + [-50.57726698091301, -10.629181041701772], + [-50.56312786662913, -10.611325415471358], + [-50.54368642772836, -10.60987632842418], + [-50.5373799905483, -10.605221421709254], + [-50.53152616845934, -10.580757684700446], + [-50.51968560196946, -10.562482705641445], + [-50.522990513961126, -10.54080023675112], + [-50.5149077762735, -10.525964691428065], + [-50.51674499552813, -10.505549517952774], + [-50.50371700663022, -10.495915138272897], + [-50.50371693347224, -10.495915142225257], + [-50.50032331787846, -10.495900427058515], + [-50.50032324548972, -10.495900423536659], + [-50.4877433852492, -10.49463202676115], + [-50.48232844650966, -10.488764866746202], + [-50.48665742769114, -10.477214918291361], + [-50.48782397365218, -10.46797647836539], + [-50.486738930921966, -10.461963076726493], + [-50.4736822731062, -10.404909772715197], + [-50.44824282441258, -10.391576478000935], + [-50.44101853856069, -10.375570387967734], + [-50.42460545193705, -10.364564910470621], + [-50.41824255068024, -10.356285887315991], + [-50.42454142565167, -10.333971165462454], + [-50.406160593066936, -10.288255334679894], + [-50.398051682370884, -10.254434620752136], + [-50.38294059556334, -10.225043303245226], + [-50.38191040950927, -10.212119627777614], + [-50.386716963446624, -10.187453542403235], + [-50.389358658579404, -10.174932139967456], + [-50.396860241189046, -10.170887019560775], + [-50.39871225665993, -10.164105018020996], + [-50.39210556632806, -10.134035849586551], + [-50.377768137704095, -10.11072052880839], + [-50.35935513795302, -10.094507209633402], + [-50.35463065812617, -10.07717393437065], + [-50.3397992923622, -10.060943044797522], + [-50.31241017172986, -10.0456637376674], + [-50.30260398300401, -10.035416280312647], + [-50.29423766811637, -10.016112045136353], + [-50.29062910506045, -9.990823504820987], + [-50.27789057819917, -9.970778002780037], + [-50.2789022473925, -9.955254396630844], + [-50.26716437961618, -9.934659065977039], + [-50.26423928968097, -9.908502679053694], + [-50.24374628638081, -9.871247422797994], + [-50.22540862194778, -9.853963457593029], + [-50.22718747920733, -9.845623039252176], + [-50.2247657124554, -9.841158794827294], + [-50.217575426442494, -9.83457253279619], + [-50.21435405477, -9.813228399585794], + [-50.203744399385855, -9.790919687328188], + [-50.197856067633566, -9.758840364651816], + [-50.16123898513632, -9.712833284088559], + [-50.15907658604301, -9.699395360441947], + [-50.15096537209039, -9.695613775098124], + [-50.15012742935688, -9.674732473832492], + [-50.14001751348108, -9.654509963123262], + [-50.13896520643576, -9.627465591759892], + [-50.1254088949369, -9.618743599297048], + [-50.12010374674163, -9.606995945850594], + [-50.10733022912954, -9.594286011183], + [-50.107292725576315, -9.572513370266329], + [-50.10343477308894, -9.562770433096354], + [-50.08952304869876, -9.545698854592015], + [-50.09413580562711, -9.526040851024046], + [-50.107910162195516, -9.50863608340737], + [-50.107829826697, -9.504549391459156], + [-50.101386905354836, -9.500290052087529], + [-50.10526891751943, -9.489559857940064], + [-50.10529849217925, -9.475416440468846], + [-50.09007781395745, -9.431601721754065], + [-50.06549467303937, -9.400807811162528], + [-50.058519735909464, -9.37985217830469], + [-50.0535281586869, -9.373455017284083], + [-50.055429530836015, -9.334705126525908], + [-50.050714520709235, -9.31307408539956], + [-50.04795128193611, -9.307457823136112], + [-50.037747481830735, -9.289411641481143], + [-50.019083051662996, -9.281218817304369], + [-50.00496761442396, -9.268766087847222], + [-49.99402157924371, -9.234102648811003], + [-49.96611056995577, -9.230870586683702], + [-49.94343746421226, -9.20089234593182], + [-49.90765888948811, -9.173829642276758], + [-49.90521434139815, -9.165312098186936], + [-49.91001717538855, -9.153529133690892], + [-49.89684233069713, -9.143680364678728], + [-49.86729486477003, -9.097098342194155], + [-49.862601613215126, -9.081505615877129], + [-49.850631678830744, -9.058907914088097], + [-49.850298635159774, -9.046722426183912], + [-49.842553181554045, -9.02733299623829], + [-49.79362752174341, -8.979440981416314], + [-49.78149605885656, -8.962103676778085], + [-49.77084825877001, -8.93849693929802], + [-49.75451616688864, -8.921969726977396], + [-49.74505258264788, -8.906170992142082], + [-49.72916808237186, -8.899338255372168], + [-49.68432322927836, -8.856482541094845], + [-49.6414631733653, -8.846726378530128], + [-49.6126317556816, -8.846235748712443], + [-49.59237687532675, -8.839499096420747], + [-49.58455044281035, -8.823330158376292], + [-49.57140760506083, -8.808598344913204], + [-49.56497368956604, -8.801045188772765], + [-49.543411780526135, -8.761403018184302], + [-49.489767033634095, -8.692045627070787], + [-49.481744245235724, -8.673739381359914], + [-49.47132800508294, -8.648104204494302], + [-49.46377215156983, -8.639428750926125], + [-49.45143888691974, -8.612505029899248], + [-49.40985558152627, -8.58001053898769], + [-49.40287580049224, -8.563486592736421], + [-49.39963057540224, -8.54712152817326], + [-49.391465204661344, -8.489787214100769], + [-49.37394601737017, -8.451230921689524], + [-49.349377704112925, -8.41838539638254], + [-49.33804815949068, -8.410745602882105], + [-49.31326754706776, -8.4029067370098], + [-49.29043390987253, -8.388438867330844], + [-49.28329234344985, -8.379565893192941], + [-49.276211917594, -8.363692973424167], + [-49.26999290655212, -8.3433388106151], + [-49.26510942317907, -8.323211635759773], + [-49.256000113728355, -8.287059849556616], + [-49.248629681919596, -8.255385692519035], + [-49.23635919393396, -8.232530816426769], + [-49.22208070010786, -8.205518089882464], + [-49.209551597735974, -8.175498743544978], + [-49.20383255239726, -8.140016502526523], + [-49.20729780530865, -8.122510227415669], + [-49.20165131918613, -8.108441191650991], + [-49.1993284270873, -8.087577958124202], + [-49.19313329699375, -8.076474731955635], + [-49.180138790262234, -8.067613228825886], + [-49.1748512646252, -8.050561837703425], + [-49.17325377264797, -8.020983441345239], + [-49.17560136967883, -8.009247837735467], + [-49.1819990766183, -7.976973322114762], + [-49.169612955618014, -7.954798680341215], + [-49.16321385301598, -7.92129319707631], + [-49.162747997574044, -7.900541160988085], + [-49.1663588170326, -7.880340617423494], + [-49.16774686980367, -7.854357269554546], + [-49.16679609322381, -7.849541748683487], + [-49.16488424748878, -7.832880303168123], + [-49.15862674595003, -7.824638629760006], + [-49.148414887713834, -7.8073248561098225], + [-49.15055222110537, -7.80220775088801], + [-49.15785571019114, -7.793796556705996], + [-49.2031127326022, -7.774506957457621], + [-49.22113436762281, -7.761609178227291], + [-49.23996787046377, -7.740734491626491], + [-49.263933969033424, -7.723468050495986], + [-49.29649844067575, -7.696452424886527], + [-49.32804974861242, -7.677804815833792], + [-49.3371088759611, -7.665416072975239], + [-49.34161627639052, -7.6572771350449464], + [-49.36093862766191, -7.614949651823057], + [-49.38204639204863, -7.566063331518599], + [-49.38392644768307, -7.546167394936312], + [-49.377939567136856, -7.497036844216362], + [-49.347220599790894, -7.461625574748645], + [-49.319686034319545, -7.431285024069345], + [-49.28432093247608, -7.388090960563276], + [-49.26579262280465, -7.367130379106398], + [-49.254305456038686, -7.349438245353898], + [-49.23144747788093, -7.325796634931105], + [-49.215896050291825, -7.297743891266217], + [-49.20675946553252, -7.2707398985331215], + [-49.18525722497378, -7.235182503918379], + [-49.183172851297016, -7.214610455645128], + [-49.187166315809016, -7.192491857750081], + [-49.18762717630719, -7.188117196140262], + [-49.18767243150954, -7.187689633350693], + [-49.19376928588396, -7.12982557911519], + [-49.1932866126342, -7.105023102275872], + [-49.1912783010759, -7.07493961693009], + [-49.19349891217408, -7.040712927117963], + [-49.19525250006148, -7.026275685858171], + [-49.20924212597138, -6.982999625762687], + [-49.215353428206384, -6.975744864932921], + [-49.21741881643117, -6.961480382289991], + [-49.21455812039936, -6.9382798867550965], + [-49.209501983911316, -6.925431703797091], + [-49.19226016631029, -6.913252471088488], + [-49.18389084298951, -6.907898444182432], + [-49.17946345720325, -6.898066780623081], + [-49.17191547345312, -6.892946357471839], + [-49.15043963560588, -6.888862178588715], + [-49.11524560468796, -6.869960892564894], + [-49.08338832776184, -6.84326241304192], + [-49.04374657612591, -6.815782954477271], + [-49.03113049761108, -6.801475032551924], + [-49.018859122715924, -6.784222155384695], + [-48.963688627552735, -6.779471422528255], + [-48.94608999093568, -6.769736160050856], + [-48.93948264245857, -6.766700461333151], + [-48.91382943904855, -6.757381254117302], + [-48.875025873615975, -6.752809489822474], + [-48.847057929553905, -6.748512330463175], + [-48.839855470449514, -6.750653948496095], + [-48.832190133873425, -6.754037939067062], + [-48.77797620037342, -6.736304580903997], + [-48.76907561222858, -6.730713593953616], + [-48.756586083992474, -6.7171126238309435], + [-48.73685763784179, -6.692793130417981], + [-48.682692671910544, -6.677919221538606], + [-48.66483473932998, -6.662775519125311], + [-48.655261878717496, -6.650552950090666], + [-48.65193897424883, -6.6399635450715415], + [-48.652196099269254, -6.612065410668623], + [-48.66433584239755, -6.570583853565267], + [-48.6639169068824, -6.562652079996947], + [-48.65808275551637, -6.539425236074008], + [-48.64669308054146, -6.523845746491772], + [-48.64531956808711, -6.507020812210932], + [-48.63185854519619, -6.487896016149602], + [-48.62605876630934, -6.47852232365745], + [-48.61313385359733, -6.4537415558250215], + [-48.57027243041635, -6.420762217435578], + [-48.56504663679563, -6.415132501560679], + [-48.548926539554245, -6.406923722968124], + [-48.53077699591106, -6.389686558417357], + [-48.511219593928764, -6.356945077284353], + [-48.50019562631864, -6.3509404030648735], + [-48.44768781719788, -6.351191812666953], + [-48.42435462653938, -6.357018645886637], + [-48.38644363966316, -6.380174839706088], + [-48.38130105702223, -6.375637926441035], + [-48.37527871227811, -6.3467617813169905], + [-48.38116285402636, -6.328617229192155], + [-48.41202918568999, -6.306079020181159], + [-48.41710379261039, -6.298599593628556], + [-48.41727387210665, -6.289472056827971], + [-48.41269204848324, -6.281342624645614], + [-48.41896642962529, -6.268256579070179], + [-48.43641221909963, -6.19341204900062], + [-48.43191871717454, -6.177306713391266], + [-48.40825220644624, -6.15341537290088], + [-48.39127478570306, -6.14671663016787], + [-48.36547035820196, -6.147387116111688], + [-48.324498553211235, -6.1327325550903655], + [-48.30383582083685, -6.116903963505454], + [-48.285547437182444, -6.091527104388819], + [-48.283141506353275, -6.081570875416043], + [-48.28577116552338, -6.070405135737512], + [-48.30196623758684, -6.047319168510191], + [-48.33269422962341, -6.038282343707167], + [-48.33835922733406, -6.028375937749518], + [-48.33469897999464, -6.004288103160951], + [-48.31432773246029, -5.979186369105373], + [-48.30706453424297, -5.9748541142789104], + [-48.28684863318563, -5.967615705747479], + [-48.25194143650065, -5.960386764593996], + [-48.23161281559931, -5.946152352966118], + [-48.229383627294744, -5.930425366131126], + [-48.23389000020686, -5.914498180385985], + [-48.24558588519427, -5.896246708049082], + [-48.27895106031982, -5.861097518225109], + [-48.29079732567406, -5.8394417307077], + [-48.2954418928039, -5.82167551147766], + [-48.29983128714442, -5.784679441930507], + [-48.29349526807884, -5.751209072250338], + [-48.289148361408095, -5.7419574498573525], + [-48.27955573184477, -5.729381945353019], + [-48.272526173023735, -5.725504835404048], + [-48.22002667252167, -5.728175777024836], + [-48.193937377107446, -5.720156024837214], + [-48.17357924557906, -5.7099588164138515], + [-48.13924112787156, -5.64691415442999], + [-48.13544747516427, -5.6376494802365915], + [-48.13223427191501, -5.618143979593015], + [-48.138137163233786, -5.602704018140911], + [-48.18209137689629, -5.573255377054041], + [-48.21258599095411, -5.5542537730814], + [-48.2284759362575, -5.551080143755585], + [-48.23799486196613, -5.55278495444303], + [-48.26149804618913, -5.548085033113395], + [-48.27867354576, -5.540437155594092], + [-48.29122659285481, -5.529978768887352], + [-48.300691359054305, -5.5230204775564395], + [-48.31912208313292, -5.500261762086964], + [-48.32550570774197, -5.493762659887066], + [-48.328072936666935, -5.496646002387804], + [-48.32733119815663, -5.4869350590735255], + [-48.34106818642232, -5.467078497719344], + [-48.343309098426445, -5.444883281705579], + [-48.351581841451484, -5.427850365088966], + [-48.367700902985945, -5.415040200802153], + [-48.373469840439526, -5.4027509627295105], + [-48.381592779251946, -5.395996532430092], + [-48.39349447316691, -5.394226619934082], + [-48.40142602093523, -5.403423958455283], + [-48.41954768847767, -5.401839372811775], + [-48.441769180058124, -5.408173694918938], + [-48.45343362308503, -5.410752591866045], + [-48.46457332113016, -5.412305840841702], + [-48.47655293031492, -5.418737296768692], + [-48.491532240087615, -5.425955726255535], + [-48.51388566838364, -5.429833585997071], + [-48.53104455424832, -5.424808485042788], + [-48.55751941714067, -5.4167250180260575], + [-48.59671605055025, -5.422558334132653], + [-48.61167755574225, -5.418658500536164], + [-48.62910672455143, -5.410072718602563], + [-48.65047046239527, -5.384932239710078], + [-48.68053380666779, -5.378773241029022], + [-48.71674846816299, -5.3771794366347665], + [-48.720281641787786, -5.373651083072144], + [-48.726247155986655, -5.376205870619703], + [-48.74547639341523, -5.369734958205562], + [-48.75674645848036, -5.352899040276378], + [-48.755132525972506, -5.349179486834738], + [-48.74090616647357, -5.352832310045038], + [-48.730417367484236, -5.348008530217337], + [-48.71502429145451, -5.353126572411465], + [-48.70878081700441, -5.351018896200988], + [-48.70861846380259, -5.350783646661554], + [-48.70444908720854, -5.344742177620066], + [-48.69919232213977, -5.320137318628709], + [-48.69919224910204, -5.320137229667252], + [-48.692246728045035, -5.311677337938185], + [-48.679420863726676, -5.305834263277278], + [-48.67820263022207, -5.306078927218023], + [-48.65144606177773, -5.311451962049043], + [-48.638641744003756, -5.3200229902871286], + [-48.630084335249144, -5.3329719331695244], + [-48.61233297353279, -5.338443687465537], + [-48.6061145409924, -5.336514851910466], + [-48.58411565537037, -5.311309776062633], + [-48.58411556637031, -5.311309613344998], + [-48.56855584799871, -5.282946933082347], + [-48.568533861311664, -5.262809052444183], + [-48.5611005978367, -5.234860160029582], + [-48.561056962883356, -5.230213441698853], + [-48.561056874665006, -5.230213340566549], + [-48.53900131428183, -5.204928214745603], + [-48.52297867654794, -5.193342517360215], + [-48.48630620128401, -5.193834058107144], + [-48.46613887145393, -5.185459961931136], + [-48.38230794040164, -5.172476933344641], + [-48.36389473023762, -5.168394843138971], + [-48.35615548078725, -5.171865964800251] + ] + ] + } +} diff --git a/resources/css/app.css b/resources/css/app.css new file mode 100644 index 0000000..3e6abea --- /dev/null +++ b/resources/css/app.css @@ -0,0 +1,11 @@ +@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'; +} diff --git a/resources/js/app.js b/resources/js/app.js new file mode 100644 index 0000000..e59d6a0 --- /dev/null +++ b/resources/js/app.js @@ -0,0 +1 @@ +import './bootstrap'; diff --git a/resources/js/bootstrap.js b/resources/js/bootstrap.js new file mode 100644 index 0000000..5f1390b --- /dev/null +++ b/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/resources/views/filament/pages/dashboard.blade.php b/resources/views/filament/pages/dashboard.blade.php new file mode 100644 index 0000000..bb8ed15 --- /dev/null +++ b/resources/views/filament/pages/dashboard.blade.php @@ -0,0 +1,3 @@ + + {{-- Page content --}} + diff --git a/resources/views/filament/pages/thank-you.blade.php b/resources/views/filament/pages/thank-you.blade.php new file mode 100644 index 0000000..f96b8e1 --- /dev/null +++ b/resources/views/filament/pages/thank-you.blade.php @@ -0,0 +1,62 @@ +@use('Illuminate\Support\Facades\Storage') + +
+

+ Din bild och information har sparats. +

+
+ + @if($record) + @if(!empty($record['image_path'])) + {{ $record['title'] ?? '' }} +
+ @endif + +
+ @if(!empty($record['title'])) +
Titel
+
{{ $record['title'] }}
+
+ @endif + @if(!empty($record['uploaded_by'])) +
Uppladdad av
+
{{ $record['uploaded_by'] }}
+
+ @endif + @if(!empty($record['captured_at'])) +
Bild tagen
+
{{ $record['captured_at'] }}
+
+ @endif + @if(!empty($record['lat']) && !empty($record['lng'])) +
Plats
+
{{ $record['lat'] }}, {{ $record['lng'] }}
+
+ @endif + @if(!empty($record['desc'])) +
Kort beskrivning
+
{{ $record['desc'] }}
+
+ @endif + @if(!empty($record['story'])) +
Berättelse
+
{{ $record['story'] }}
+
+ @endif +
+ @endif + + + Lägg till en till bild + +
+
diff --git a/resources/views/filament/photo-geo-data/create-summary.blade.php b/resources/views/filament/photo-geo-data/create-summary.blade.php new file mode 100644 index 0000000..f95e961 --- /dev/null +++ b/resources/views/filament/photo-geo-data/create-summary.blade.php @@ -0,0 +1,30 @@ +
+ @if(!empty($data['title'])) +
Titel
+
{{ $data['title'] }}
+
+ @endif + + @if(!empty($data['uploaded_by'])) +
Uppladdad av
+
{{ $data['uploaded_by'] }}
+
+ @endif + + @if(!empty($data['captured_at'])) +
Bild tagen
+
{{ $data['captured_at'] }}
+
+ @endif + + @if(!empty($data['desc'])) +
Kort beskrivning
+
{{ $data['desc'] }}
+
+ @endif + @if(!empty($data['story'])) +
Berättelse
+
{{ $data['story'] }}
+
+ @endif +
diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php new file mode 100644 index 0000000..5f83753 --- /dev/null +++ b/resources/views/welcome.blade.php @@ -0,0 +1,225 @@ + + + + + + + {{ 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

+

With so many options available to you,
we suggest you start with the following:

+ + + +

+ v{{ app()->version() }} + + View changelog + + + + +

+
+
+ {{-- Laravel Logo --}} + + + + + + + + + + + {{-- 13 --}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + @if (Route::has('login')) + + @endif + + diff --git a/routes/console.php b/routes/console.php new file mode 100644 index 0000000..3c9adf1 --- /dev/null +++ b/routes/console.php @@ -0,0 +1,8 @@ +comment(Inspiring::quote()); +})->purpose('Display an inspiring quote'); diff --git a/routes/web.php b/routes/web.php new file mode 100644 index 0000000..0c3ffdc --- /dev/null +++ b/routes/web.php @@ -0,0 +1,8 @@ +get('/'); + + $response->assertStatus(200); + } +} diff --git a/tests/TestCase.php b/tests/TestCase.php new file mode 100644 index 0000000..fe1ffc2 --- /dev/null +++ b/tests/TestCase.php @@ -0,0 +1,10 @@ +assertTrue(true); + } +} diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..f35b4e7 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,18 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; +import tailwindcss from '@tailwindcss/vite'; + +export default defineConfig({ + plugins: [ + laravel({ + input: ['resources/css/app.css', 'resources/js/app.js'], + refresh: true, + }), + tailwindcss(), + ], + server: { + watch: { + ignored: ['**/storage/framework/views/**'], + }, + }, +});